diff --git a/package.json b/package.json index fd89542c..1551a057 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "meshcentral", - "version": "0.4.5-i", + "version": "0.4.5-j", "keywords": [ "Remote Management", "Intel AMT", diff --git a/public/scripts/common-0.0.1.js b/public/scripts/common-0.0.1.js index 53799a5c..b0375911 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/translator.htm b/public/translator.htm index 31e44af2..bb328cf8 100644 --- a/public/translator.htm +++ b/public/translator.htm @@ -18,6 +18,7 @@ margin: 4px; padding: 6px; text-align: left; + cursor: pointer; } .listItem:hover { @@ -35,12 +36,18 @@ } - -
+ +
+
+ Welcome to the MeshCentral translator. You can use this to help translate MeshCentral into other languages. Start by selecting a language, translate a few strings and save the strings to your server. Then, hit "Translate Server" to apply your changes to your server's web pages.

+ When ready, please mail the "meshcentral-data/translate.json" file to ylianst@gmail.com for inclusion in the MeshCentral official builds.

+ Close +
+
MeshCentral Translator
@@ -50,9 +57,9 @@
- + - @@ -82,17 +89,19 @@
- - + +
+
  - + +
@@ -120,6 +129,7 @@ var translations = null; var selectedLanguage = Q('langSelector').value; var selectedItem = 0; + var changes = false; function start() { window.onresize = deskAdjust; @@ -129,12 +139,20 @@ document.onkeypress = onkeypress; updateMasterList(); loadServerTranslations(); + QE('SaveServerButton', false); } + function onBeforeUnload(e) { + if (changes) { e.preventDefault(); e.resturnValue = ''; } + } + + function closeStartTips() { QV('startTips', false); } + function langSelectorChange() { selectedLanguage = Q('langSelector').value; updateMasterList(); onSearchChanged(true); + select(0, true, false); } function cleanup() { @@ -233,14 +251,17 @@ if (translations[i][selectedLanguage] != null) { target = EscapeHtml(translations[i][selectedLanguage]); } var comment = ''; // - x.push('
' + source + '
' + target + '
' + comment + '
'); + x.push('
' + source + '
' + target + '
' + comment + '
'); } } QH('masterListArea', x.join('')); updateButtons(); } - function select(i, scroll) { + function select(i, scroll, nofocus) { + // Hold selection is a change was made but not commited. + if ((scroll == null) && (isTargetChanged() == true)) { return; } + Q('nx' + selectedItem).classList.remove('listItemSel'); Q('nx' + selectedItem).classList.add('listItem'); selectedItem = i; @@ -253,22 +274,22 @@ } onLocChanged(); if (translations[i][selectedLanguage] != null) { - QH('translatedTextArea', translations[selectedItem][selectedLanguage]); + Q('translatedTextArea').value = translations[selectedItem][selectedLanguage]; } else { - QH('translatedTextArea', ''); + Q('translatedTextArea').value = ''; } - Q('translatedTextArea').focus(); + if (nofocus == true) { Q('translatedTextArea').focus(); } updateButtons(); } function next() { select(selectedItem + 1, true); } function prev() { select(selectedItem - 1, true); } - function copySource() { QH('translatedTextArea', translations[selectedItem].en); Q('translatedTextArea').focus(); } + function copySource() { Q('translatedTextArea').value = translations[selectedItem].en; Q('translatedTextArea').focus(); } function updateButtons() { QE('SaveFileButton', translations != null); - QE('NextButton', (translations != null) && (selectedItem < (translations.length - 1))); - QE('PrevButton', (translations != null) && (selectedItem > 0)); + QE('NextButton', (isTargetChanged() == false) && (translations != null) && (selectedItem < (translations.length - 1))); + QE('PrevButton', (isTargetChanged() == false) && (translations != null) && (selectedItem > 0)); QE('CopySource', translations != null); if (translations == null) { QH('status', ''); @@ -277,6 +298,7 @@ QH('status', (selectedItem + 1) + ' / ' + translations.length); QS('progressbar').width = Math.floor(100 * ((selectedItem + 1) / translations.length)) + '%'; } + onSourceChange(); } function enSort(a, b) { if (a.en.toLowerCase() > b.en.toLowerCase()) return 1; if (a.en.toLowerCase() < b.en.toLowerCase()) return -1; return 0; } @@ -285,12 +307,13 @@ function onSearchChanged(force) { if ((force != true) && (currentSearchFilter == Q('searchInput').value)) return; currentSearchFilter = Q('searchInput').value; + var currentSearchFilterLower = currentSearchFilter.toLowerCase(); if (translations != null) { for (var i in translations) { if (currentSearchFilter == '') { QV('nx' + i, true); } else { - QV('nx' + i, ((translations[i][selectedLanguage] != null) && (translations[i][selectedLanguage].indexOf(currentSearchFilter) >= 0)) || (translations[i]['en'].indexOf(currentSearchFilter) >= 0)); + QV('nx' + i, ((translations[i][selectedLanguage] != null) && (translations[i][selectedLanguage].toLowerCase().indexOf(currentSearchFilterLower) >= 0)) || (translations[i]['en'].toLowerCase().indexOf(currentSearchFilterLower) >= 0)); } } } @@ -346,8 +369,14 @@ xdr.onload = function () { var x = null; try { x = JSON.parse(this.responseText); } catch (ex) { } - if ((x == null) || (typeof x.strings != 'object')) { messagebox('Translations', 'ERROR: Unable to parse server response.'); return; } - // x + if ((x == null) || (x.response == null)) { messagebox('Translations', 'ERROR: Unable to parse server response.'); return; } + if (x.response == 'ok') { + changes = false; + QE('SaveServerButton', false); + QS('SaveServerButton')['background-color'] = null; + } else { + messagebox('Translations', 'ERROR: ' + x.response); + } }; xdr.onerror = function () { messagebox('Translations', 'ERROR: Unable to save translations to server.'); }; xdr.send(JSON.stringify({ 'action': 'setTranslations', strings: translations })); @@ -357,6 +386,73 @@ saveAs(data2blob(JSON.stringify({ strings: translations })), 'translate.json'); } + function setTranslation() { + if (Q('translatedTextArea').value == '') { + delete translations[selectedItem][selectedLanguage]; + QH('nt' + selectedItem, ''); + } else { + translations[selectedItem][selectedLanguage] = Q('translatedTextArea').value; + QH('nt' + selectedItem, translations[selectedItem][selectedLanguage]); + } + onSourceChange(); + changes = true; + QE('SaveServerButton', true); + QS('SaveServerButton')['background-color'] = '#F93'; + } + + function cancelTranslation() { + Q('translatedTextArea').value = translations[selectedItem][selectedLanguage]; + } + + function isTargetChanged() { + if (translations == null) { return false; } + var source = ''; + if (translations[selectedItem][selectedLanguage] != null) { source = translations[selectedItem][selectedLanguage]; } + return (source != Q('translatedTextArea').value); + } + + function onSourceChange() { + var x = isTargetChanged(); + QE('SetButton', x); + QE('CancelButton', x); + QE('NextButton', (isTargetChanged() == false) && (translations != null) && (selectedItem < (translations.length - 1))); + QE('PrevButton', (isTargetChanged() == false) && (translations != null) && (selectedItem > 0)); + QS('translatedTextArea')['background-color'] = ((x == true) ? 'white' : '#EFE'); + QE('SaveFileButton', !x); + QE('searchInput', !x); + QE('showLocCheck', !x); + QE('langSelector', !x); + QE('TransServerButton', !x); + QE('SaveServerButton', changes && !x); + } + + function translateServer() { + var x = 'Perform server translation? The MeshCentral server will reset for 10 to 30 seconds to perform this operation.'; + setDialogMode(2, "Translate Server", 3, translateServerEx, x); + } + + function translateServerEx() { + QE('TransServerButton', false); + setTimeout(function () { QE('TransServerButton', true); }, 5000); + var xdr = null; + try { xdr = new XDomainRequest(); } catch (e) { } + if (!xdr) xdr = new XMLHttpRequest(); + xdr.open('POST', window.location.origin + '/translations'); + xdr.timeout = 30000; + xdr.onload = function () { + var x = null; + try { x = JSON.parse(this.responseText); } catch (ex) { } + if ((x == null) || (x.response == null)) { messagebox('Server Translation', 'ERROR: Unable to parse server response.'); return; } + if (x.response == 'ok') { + messagebox('Server Translation', 'Server translation initiated, this will take a minute or two. Once done, you can refresh the MeshCentral web pages to see the changes.

When ready, please mail the file "meshcentral-data/translate.json" to ylianst@gmail.com for inclusion on the official build.'); + } else { + messagebox('Server Translation', 'ERROR: ' + x.response); + } + }; + xdr.onerror = function () { messagebox('Translations', 'ERROR: Unable to save translations to server.'); }; + xdr.send(JSON.stringify({ 'action': 'translateServer', strings: translations })); + } + // // POPUP DIALOG // diff --git a/translate/translate.js b/translate/translate.js index a158c543..56186861 100644 --- a/translate/translate.js +++ b/translate/translate.js @@ -72,7 +72,7 @@ function start() { console.log(' TRANSLATE [language] [languagefile] [files]'); console.log(' Use a language (.json) file to translate web pages to a give language.'); console.log(''); - console.log(' TRANSLATEALL'); + console.log(' TRANSLATEALL (languagefile)'); console.log(' Translate all MeshCentral strings using the languages.json file.'); console.log(''); console.log(' MINIFYALL'); @@ -110,7 +110,20 @@ function start() { if (command == 'translateall') { if (fs.existsSync("../views/translations") == false) { fs.mkdirSync("../views/translations"); } if (fs.existsSync("../public/translations") == false) { fs.mkdirSync("../public/translations"); } - translate(null, "translate.json", meshCentralSourceFiles, "translations"); + if ((process.argv.length > 3)) { + if (fs.existsSync(process.argv[3]) == false) { + console.log('Unable to find: ' + process.argv[3]); + } else { + translate(null, process.argv[3], meshCentralSourceFiles, "translations"); + } + } else { + if (fs.existsSync("translate.json") == false) { + console.log('Unable to find translate.json.'); + } else { + translate(null, "translate.json", meshCentralSourceFiles, "translations"); + } + } + return; } // Translate web pages to a given language given a language file diff --git a/translate/translate.json b/translate/translate.json index a9b15454..78661c0f 100644 --- a/translate/translate.json +++ b/translate/translate.json @@ -1 +1,6373 @@ -{"strings":[{"xloc":["default.handlebars-\u003e17-\u003e781"],"en":"Kirghiz"},{"xloc":["default.handlebars-\u003e17-\u003e141"],"en":"Plugin Error"},{"xloc":["default.handlebars-\u003e17-\u003e1087"],"en":"Storage limit exceed","cs":"Překročen limit pro ukládání"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep2-\u003ep2AccountActions-\u003e3-\u003e5","default.handlebars-\u003e17-\u003e880"],"en":"Localization Settings"},{"xloc":[],"en":"Focus All"},{"xloc":["login-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e1-\u003e1-\u003e0-\u003e1-\u003eresetpasswordpanel-\u003e1-\u003e7-\u003e1-\u003e6-\u003e1-\u003e1","login.handlebars-\u003econtainer-\u003ecolumn_l-\u003ecentralTable-\u003e1-\u003e0-\u003elogincell-\u003eresetpasswordpanel-\u003e1-\u003e7-\u003e1-\u003e6-\u003e1-\u003e1"],"en":"Reset Password","cs":"Reset hesla","fr":"Réinitialiser le mot de passe"},{"xloc":["default-mobile.handlebars-\u003e9-\u003e248","default.handlebars-\u003e17-\u003e1108","default.handlebars-\u003e17-\u003e623","default-mobile.handlebars-\u003e9-\u003e80"],"en":"Delete selected item?","cs":"Smazat vybraný prvek?"},{"xloc":["default.handlebars-\u003e17-\u003e741"],"en":"Faeroese"},{"xloc":["default.handlebars-\u003e17-\u003e233"],"en":"MeshServerRootCert.cer"},{"xloc":["default.handlebars-\u003e17-\u003e863"],"en":"Turkmen"},{"xloc":["default.handlebars-\u003e17-\u003e834"],"en":"Spanish (Colombia)"},{"xloc":["default.handlebars-\u003econtainer-\u003etopbar-\u003e1-\u003e1-\u003eServerSubMenuSpan-\u003eServerSubMenu-\u003e1-\u003e0-\u003eServerConsole","default.handlebars-\u003econtextMenu-\u003ecxconsole","default.handlebars-\u003econtainer-\u003etopbar-\u003e1-\u003e1-\u003eMainSubMenuSpan-\u003eMainSubMenu-\u003e1-\u003e0-\u003eMainDevConsole"],"en":"Console","cs":"Konzole"},{"xloc":["default-mobile.handlebars-\u003e9-\u003e162","default.handlebars-\u003e17-\u003e422"],"en":"Windows MinCore service"},{"xloc":["default.handlebars-\u003e17-\u003e474"],"en":"Perform power actions on the device","cs":"Akce napájení","fr":"Effectuer des actions d\u0027alimentation sur le périphérique"},{"xloc":["default.handlebars-\u003e17-\u003e126"],"en":"Unable to scan this address range.","cs":"Nelze skenovat tento rozsah."},{"xloc":["login-mobile.handlebars-\u003e5-\u003e5","login.handlebars-\u003e5-\u003e5"],"en":"Invalid account creation token."},{"xloc":["default-mobile.handlebars-\u003e9-\u003e142","default.handlebars-\u003e17-\u003e402"],"en":"Windows 64bit console"},{"xloc":["default.handlebars-\u003e17-\u003e187","default.handlebars-\u003e17-\u003e971"],"en":"Add a new Intel® AMT computer that is located on the internet."},{"xloc":["default.handlebars-\u003e17-\u003e719"],"en":"Corsican"},{"xloc":["default-mobile.handlebars-\u003e9-\u003e227"],"en":"Special Keys"},{"xloc":["default.handlebars-\u003e17-\u003e950"],"en":"Terminal Notify"},{"xloc":["default.handlebars-\u003e17-\u003e312"],"en":"{0} nodes","cs":"{0} zařízení","fr":"{0} appareil"},{"xloc":["default.handlebars-\u003e17-\u003e816"],"en":"Romanian (Moldavia)","fr":"Roumain (Moldavie)"},{"xloc":["default.handlebars-\u003e17-\u003e353"],"en":"Reset devices","cs":"Reset zařízení","fr":"Réinitialiser les appareils"},{"xloc":["default.handlebars-\u003e17-\u003e574","default.handlebars-\u003e17-\u003e573","default.handlebars-\u003e17-\u003e571"],"en":"All Focus"},{"xloc":["default.handlebars-\u003e17-\u003e1184"],"en":"Administrative Realms"},{"xloc":["default.handlebars-\u003e17-\u003e903","default.handlebars-\u003e17-\u003e915","default-mobile.handlebars-\u003e9-\u003e47","default.handlebars-\u003e17-\u003e541"],"en":"New Device Group","cs":"Nová skupina zařízení","fr":"Nouveau Group"},{"xloc":["default.handlebars-\u003e17-\u003e325"],"en":"Device is detected but power state could not be obtained.","cs":"Zařízení je detekováno, ale nelze zjistit stav."},{"xloc":["default.handlebars-\u003e17-\u003e36"],"en":"Serial"},{"xloc":["default-mobile.handlebars-\u003edialog-\u003e3-\u003edialog3-\u003edeskkeys-\u003e15","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep11-\u003edeskarea0-\u003edeskarea4-\u003e3-\u003edeskkeys-\u003e13"],"en":"Shift+Win+M"},{"xloc":["player.htm-\u003ep11-\u003edeskarea0-\u003edeskarea4-\u003e3-\u003ePlaySpeed-\u003e9"],"en":"4x Speed","fr":"4x vitesse"},{"xloc":["default.handlebars-\u003e17-\u003e412","default-mobile.handlebars-\u003e9-\u003e152"],"en":"Android x86"},{"xloc":["default.handlebars-\u003e17-\u003e616","default.handlebars-\u003e17-\u003e618","default.handlebars-\u003emeshContextMenu-\u003ecxselectall","default.handlebars-\u003e17-\u003e346","default.handlebars-\u003e17-\u003e1101"],"en":"Select All","cs":"Vybrat vše","fr":"Tout Sélectionner"},{"xloc":[],"en":"HW Connect","fr":"Connexion AMT"},{"xloc":["default.handlebars-\u003e17-\u003e435","default-mobile.handlebars-\u003e9-\u003e175"],"en":"Unknown State","fr":"Etat inconnu"},{"xloc":["default.handlebars-\u003e17-\u003e1288"],"en":"Are you sure you want to {0} the plugin: {1}"},{"xloc":["default.handlebars-\u003e17-\u003e459"],"en":"Antivirus","fr":"Antivirus"},{"xloc":[],"en":"Toggle F1 to F10 keys emulation type"},{"xloc":["default.handlebars-\u003e17-\u003e335","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep15-\u003econsoleTable-\u003e1-\u003e6-\u003e1-\u003e1-\u003e1-\u003e0-\u003ep15outputselecttd-\u003ep15outputselect-\u003e1","default-mobile.handlebars-\u003e9-\u003e171","default.handlebars-\u003e17-\u003e149","default-mobile.handlebars-\u003e9-\u003e118","default-mobile.handlebars-\u003e9-\u003e187"],"en":"Agent","cs":"Agent","fr":"Agent"},{"xloc":["default.handlebars-\u003e17-\u003e454"],"en":"Intel® AMT Tag"},{"xloc":["default.handlebars-\u003e17-\u003e382"],"en":"No location found."},{"xloc":["default.handlebars-\u003e17-\u003e288"],"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."},{"xloc":["default.handlebars-\u003econtainer-\u003epage_leftbar","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep6-\u003e3","default.handlebars-\u003econtainer-\u003etopbar-\u003e1-\u003e1-\u003eMainMenuSpan-\u003e1-\u003e0-\u003eMainMenuMyServer"],"en":"My Server","cs":"Můj server","fr":"Mon Serveur"},{"xloc":[],"en":"Reset map view","fr":"Réinitialiser l\u0027affichage de la carte"},{"xloc":[],"en":"Power Actions...","cs":"Akce napájení"},{"xloc":["default.handlebars-\u003e17-\u003e38"],"en":"Identifier","fr":"Identifiant"},{"xloc":["default.handlebars-\u003e17-\u003e846"],"en":"Spanish (Puerto Rico)"},{"xloc":["default.handlebars-\u003e17-\u003e680"],"en":"Albanian"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep6-\u003eserverWarningsDiv-\u003e2"],"en":"Server Warnings","fr":"Avertissements du serveur"},{"xloc":["player.htm-\u003ep11-\u003edeskarea0-\u003edeskarea4-\u003e3-\u003ePlaySpeed-\u003e11"],"en":"10x Speed","fr":"10x vitesse"},{"xloc":["default.handlebars-\u003e17-\u003e724"],"en":"Dutch (Standard)"},{"xloc":["default.handlebars-\u003e17-\u003e1182"],"en":"Realms"},{"xloc":["default.handlebars-\u003e17-\u003e602"],"en":"UTF8 Terminal","fr":"Terminal UTF8"},{"xloc":["default.handlebars-\u003e17-\u003e605","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep12-\u003etermTable-\u003e1-\u003e1-\u003e6-\u003e1-\u003e1-\u003eterminalSettingsButtons"],"en":"Intel (F10 = ESC+[OM)"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep2-\u003ep2AccountActions-\u003e3-\u003everifyEmailId-\u003e0","default-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003ep3-\u003ep3info-\u003e1-\u003ep3AccountActions-\u003e7-\u003e1-\u003everifyEmailId-\u003e0"],"en":"Verify email","fr":"Vérifier le courriel"},{"xloc":["default.handlebars-\u003e17-\u003e125"],"en":"MQTT disconnected"},{"xloc":["default.handlebars-\u003e17-\u003e1197"],"en":"Access to server files"},{"xloc":["default.handlebars-\u003e17-\u003e675"],"en":"YubiKey™ OTP"},{"xloc":["default.handlebars-\u003e17-\u003e532"],"en":"Send MQTT message","fr":"Envoyer un message MQTT"},{"xloc":["default.handlebars-\u003e17-\u003e507"],"en":"This will add an entry to this device\\\u0027s event log."},{"xloc":["default-mobile.handlebars-\u003e9-\u003e192","default.handlebars-\u003e17-\u003e144","default.handlebars-\u003e17-\u003e471","default.handlebars-\u003e17-\u003e161"],"en":"Connectivity"},{"xloc":["default.handlebars-\u003e17-\u003e279"],"en":"Windows"},{"xloc":[],"en":"licensed under the"},{"xloc":["default.handlebars-\u003e17-\u003e782"],"en":"Klingon"},{"xloc":["default.handlebars-\u003e17-\u003e309"],"en":"To remove a mesh agent, run the following command. Root credentials will be needed."},{"xloc":["default-mobile.handlebars-\u003e9-\u003e223"],"en":"Group1, Group2, Group3","cs":"Skupina1, Skupina2, Skupina3","fr":"Groupe1, Groupe2, Groupe3"},{"xloc":["player.htm-\u003e3-\u003e6"],"en":"SessionID","fr":"ID de session"},{"xloc":["default.handlebars-\u003e17-\u003e1129","default.handlebars-\u003e17-\u003e1124"],"en":"eventslist.csv"},{"xloc":["default.handlebars-\u003e17-\u003e113"],"en":"ERROR: Unable to add key.","fr":"ERREUR: Impossible d\u0027ajouter la clé."},{"xloc":["default.handlebars-\u003e17-\u003e132","default.handlebars-\u003e17-\u003e258","default.handlebars-\u003e17-\u003e272"],"en":"1 day","cs":"1 den","fr":"1 jour"},{"xloc":["default.handlebars-\u003e17-\u003e575"],"en":"Small Focus"},{"xloc":["default.handlebars-\u003e17-\u003e695"],"en":"Arabic (Tunisia)"},{"xloc":["default.handlebars-\u003e17-\u003e587"],"en":"KernelDriver"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep41-\u003e3-\u003e3"],"en":"Tracing"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep40-\u003e3-\u003e1-\u003ep40type-\u003e1"],"en":"Connections"},{"xloc":["default.handlebars-\u003e17-\u003e974"],"en":"Install local"},{"xloc":[],"en":"ESC"},{"xloc":[],"en":"Change the power state of the remote machine"},{"xloc":["default.handlebars-\u003e17-\u003e1013"],"en":"* Leave blank to assign a random password to each device."},{"xloc":["default.handlebars-\u003e17-\u003e289","default.handlebars-\u003e17-\u003e300","default-mobile.handlebars-\u003e9-\u003e197","default.handlebars-\u003e17-\u003e303","default.handlebars-\u003e17-\u003e306","default.handlebars-\u003e17-\u003e431","default.handlebars-\u003e17-\u003e292","default.handlebars-\u003e17-\u003e462"],"en":"Mesh Agent"},{"xloc":["default.handlebars-\u003e17-\u003e1127"],"en":"Event List Export"},{"xloc":["default.handlebars-\u003e17-\u003e1088"],"en":"{0} bytes remaining","fr":"{0} octets restants"},{"xloc":["default.handlebars-\u003e17-\u003e610","default-mobile.handlebars-\u003e9-\u003e84","default.handlebars-\u003e17-\u003e632","default-mobile.handlebars-\u003e9-\u003e257","default.handlebars-\u003e17-\u003e1113"],"en":"Paste","cs":"Vložit","fr":"Coller"},{"xloc":["agentinvite.handlebars-\u003e3-\u003e1"],"en":":"},{"xloc":["default-mobile.handlebars-\u003e9-\u003e124"],"en":" node","cs":" zařízení","fr":"nœud"},{"xloc":["default.handlebars-\u003e17-\u003e487"],"en":"Traffic router used to connect to a device thru this server"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep31-\u003e5-\u003e1-\u003e0-\u003e5","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep3-\u003e3-\u003e1-\u003e0-\u003e3","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep16-\u003e3-\u003e1-\u003e0-\u003e5"],"en":"Show","cs":"Zobrazit","fr":"Afficher"},{"xloc":["default.handlebars-\u003e17-\u003e135","default.handlebars-\u003e17-\u003e275","default.handlebars-\u003e17-\u003e261"],"en":"Unlimited","cs":"Bez limitu","fr":"Illimité"},{"xloc":["login-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e1-\u003e1-\u003e0-\u003e1-\u003eloginpanel-\u003e1-\u003e7-\u003e1-\u003e4-\u003e3","login.handlebars-\u003econtainer-\u003ecolumn_l-\u003ecentralTable-\u003e1-\u003e0-\u003elogincell-\u003eloginpanel-\u003e1-\u003e7-\u003e1-\u003e4-\u003e3","login-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e1-\u003e1-\u003e0-\u003e1-\u003eloginpanel-\u003e1-\u003e5-\u003e1","login.handlebars-\u003econtainer-\u003ecolumn_l-\u003ecentralTable-\u003e1-\u003e0-\u003elogincell-\u003eloginpanel-\u003e1-\u003e5-\u003e1"],"en":"Log In","cs":"Přihlásit"},{"xloc":["default-mobile.handlebars-\u003e9-\u003e266"],"en":"3"},{"xloc":["default.handlebars-\u003econtainer-\u003emasthead-\u003e5-\u003enotificationCount","default-mobile.handlebars-\u003e9-\u003e229"],"en":"0"},{"xloc":["default-mobile.handlebars-\u003e9-\u003e139","default.handlebars-\u003e17-\u003e1021","default.handlebars-\u003e17-\u003e398","default.handlebars-\u003e17-\u003e938","default.handlebars-\u003e17-\u003e399","default.handlebars-\u003e17-\u003e914","default-mobile.handlebars-\u003e9-\u003e274","default-mobile.handlebars-\u003e9-\u003e57","default.handlebars-\u003e17-\u003e59","default.handlebars-\u003e17-\u003e564","default-mobile.handlebars-\u003e9-\u003e221","default-mobile.handlebars-\u003e9-\u003e138","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep42-\u003ep42tbl-\u003e1-\u003e0-\u003e3","default-mobile.handlebars-\u003e9-\u003e287"],"en":"Description","cs":"Popis"},{"xloc":["default-mobile.handlebars-\u003e9-\u003e107","default.handlebars-\u003e17-\u003e320"],"en":"Deep Sleep"},{"xloc":["default.handlebars-\u003e17-\u003e206"],"en":"admin"},{"xloc":[],"en":"("},{"xloc":["default.handlebars-\u003e17-\u003e486"],"en":"Location"},{"xloc":["login.handlebars-\u003econtainer-\u003ecolumn_l-\u003ecentralTable-\u003e1-\u003e0-\u003elogincell-\u003eloginpanel-\u003e1-\u003eresetAccountDiv","login-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e1-\u003e1-\u003e0-\u003e1-\u003eloginpanel-\u003e1-\u003eresetAccountDiv"],"en":"."},{"xloc":["login-mobile.handlebars-\u003e5-\u003e16","login.handlebars-\u003e5-\u003e16"],"en":"IP address blocked, try again later."},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep0-\u003ep0message","default-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003ep0-\u003e1-\u003ep0message"],"en":","},{"xloc":["default-mobile.handlebars-\u003e9-\u003e228"],"en":"-"},{"xloc":["default.handlebars-\u003e17-\u003e210","default.handlebars-\u003e17-\u003e528","default-mobile.handlebars-\u003e9-\u003e213"],"en":"TLS security required","cs":"TLS vyžadováno","fr":"Sécurité TLS requise"},{"xloc":["default.handlebars-\u003e17-\u003e219"],"en":"Scan","cs":"Skenovat","fr":"Analyse"},{"xloc":["default.handlebars-\u003e17-\u003e230"],"en":" and authenticate to the server using this username and password.","fr":"et authentifiez-vous sur le serveur en utilisant ce nom d\u0027utilisateur et mot de passe."},{"xloc":["default.handlebars-\u003e17-\u003e1090"],"en":"{0} megabytes remaining","cs":"{0} megabytů zbývá"},{"xloc":["default.handlebars-\u003e17-\u003e323"],"en":"Device is in powered off state (S5).","cs":"Zařízení je vypnuto (S5)."},{"xloc":["default.handlebars-\u003e17-\u003e99"],"en":"Generate New Tokens","cs":"Generovat nové tokeny","fr":"Générer de nouveaux jetons"},{"xloc":["default.handlebars-\u003e17-\u003e359"],"en":"Confirm delete selected devices(s)?","cs":"Potvrdit smázání vybraných zařízení?"},{"xloc":["default.handlebars-\u003e17-\u003e488","default.handlebars-\u003e17-\u003e173"],"en":"Router"},{"xloc":["default.handlebars-\u003e17-\u003e316","default.handlebars-\u003e17-\u003e318","default-mobile.handlebars-\u003e9-\u003e105","default-mobile.handlebars-\u003e9-\u003e106"],"en":"Sleeping","fr":"Dormir"},{"xloc":["default.handlebars-\u003e17-\u003e447","default.handlebars-\u003e17-\u003e444","default-mobile.handlebars-\u003e9-\u003e214","default.handlebars-\u003e17-\u003e529"],"en":"Edit Intel® AMT credentials"},{"xloc":["default.handlebars-\u003e17-\u003e882"],"en":"Device connections."},{"xloc":["terms.handlebars-\u003econtainer-\u003ecolumn_l-\u003e3","terms-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e3"],"en":"Please contact the site administrator for terms of use."},{"xloc":["default-mobile.handlebars-\u003e9-\u003e150","default.handlebars-\u003e17-\u003e410"],"en":"Linux ARM"},{"xloc":["default.handlebars-\u003e17-\u003e904","default-mobile.handlebars-\u003e9-\u003e48"],"en":"This account does not have the rights to create a new device group."},{"xloc":["default.handlebars-\u003e17-\u003e819"],"en":"Sami (Lappish)"},{"xloc":["default.handlebars-\u003e17-\u003e754"],"en":"Gaelic (Scots)","fr":"Gaélique (écossais)"},{"xloc":["default-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003ep3-\u003ep3info-\u003e1-\u003e3","default.handlebars-\u003e17-\u003e1218","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep2-\u003e9"],"en":"Device Groups"},{"xloc":["default.handlebars-\u003e17-\u003e557"],"en":"MacOS (64bit)"},{"xloc":["default.handlebars-\u003econtainer-\u003etopbar-\u003e1-\u003e1-\u003eMainMenuSpan-\u003e1-\u003e0-\u003eMainMenuMyUsers","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep4-\u003e1"],"en":"My Users","cs":"Uživatelé","fr":"Mes Utilisateurs"},{"xloc":["default.handlebars-\u003e17-\u003e1228"],"en":"Notify"},{"xloc":["default.handlebars-\u003e17-\u003e1227"],"en":"View notes about this user"},{"xloc":[],"en":"Share a file","fr":"Partager un fichier"},{"xloc":["player.htm-\u003e3-\u003e2"],"en":"Duration"},{"xloc":["login-mobile.handlebars-\u003e5-\u003e31","login.handlebars-\u003e5-\u003e31"],"en":"{0} lower case"},{"xloc":["default.handlebars-\u003e17-\u003e774"],"en":"Italian (Standard)","fr":"Italien (standard)"},{"xloc":["default.handlebars-\u003e17-\u003e919"],"en":"Good","fr":"Bien"},{"xloc":["default.handlebars-\u003e17-\u003e942"],"en":"Hostname Sync"},{"xloc":["default-mobile.handlebars-\u003e9-\u003e260","default.handlebars-\u003e17-\u003e635"],"en":"Holding 1 entrie for copy"},{"xloc":["default-mobile.handlebars-\u003e9-\u003e96"],"en":"Use the desktop version of this website to add devices.","fr":"Utilisez la version complète de ce site pour ajouter des appareils."},{"xloc":["default.handlebars-\u003econtainer-\u003edialog-\u003edialogBody-\u003edialog7-\u003ed7meshkvm-\u003e5-\u003ed7bitmapscaling-\u003e7","default-mobile.handlebars-\u003edialog-\u003e3-\u003edialog7-\u003ed7meshkvm-\u003e5-\u003ed7bitmapscaling-\u003e7"],"en":"62.5%"},{"xloc":["default.handlebars-\u003e17-\u003e1155"],"en":"Invalid JSON file: {0}."},{"xloc":["default.handlebars-\u003e17-\u003e652"],"en":"Access Denied","fr":"Accès refusé"},{"xloc":["default-mobile.handlebars-\u003e9-\u003e291","default.handlebars-\u003e17-\u003e1041","default.handlebars-\u003e17-\u003e1060","default-mobile.handlebars-\u003e9-\u003e309"],"en":"Manage Device Group Users"},{"xloc":["default.handlebars-\u003e17-\u003e1034"],"en":"Edit Device Group Features"},{"xloc":["login-mobile.handlebars-\u003e5-\u003e30","login.handlebars-\u003e5-\u003e30"],"en":"{0} upper case"},{"xloc":["default.handlebars-\u003e17-\u003e723"],"en":"Danish"},{"xloc":["default.handlebars-\u003e17-\u003e1243","default.handlebars-\u003e17-\u003e646","default.handlebars-\u003e17-\u003e1121"],"en":"No Events Found","fr":"Aucun événement trouvé"},{"xloc":["default.handlebars-\u003e17-\u003e775"],"en":"Italian (Switzerland)","fr":"Italien (Suisse)"},{"xloc":["default.handlebars-\u003e17-\u003e117"],"en":"ERROR: ","fr":"ERREUR:"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep20-\u003e5","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep10-\u003e1-\u003e1-\u003e0-\u003e1-\u003ep10title-\u003e3","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep30-\u003e1-\u003e1-\u003e0-\u003e1-\u003ep30title-\u003e3"],"en":"General -","cs":"Obecné -","fr":"Général -"},{"xloc":["login.handlebars-\u003e5-\u003e1","login-mobile.handlebars-\u003e5-\u003e1"],"en":"Hold on, reset mail sent.","fr":"Attends, le courrier est envoyé."},{"xloc":["default.handlebars-\u003e17-\u003e254"],"en":"Linux only"},{"xloc":["default.handlebars-\u003e17-\u003e357"],"en":"Group Action","cs":"Akce skupiny","fr":"Action de groupe"},{"xloc":["default.handlebars-\u003e17-\u003e495"],"en":"Get MQTT login credentials for this device."},{"xloc":[],"en":"Hang up","fr":"Raccrocher"},{"xloc":["default.handlebars-\u003e17-\u003e1105","default-mobile.handlebars-\u003e9-\u003e245","default.handlebars-\u003e17-\u003e620","default-mobile.handlebars-\u003e9-\u003e77"],"en":"Recursive delete","fr":"Suppression récursive"},{"xloc":["default.handlebars-\u003e17-\u003e918"],"en":"Strong"},{"xloc":["default.handlebars-\u003e17-\u003e956"],"en":"User Consent","fr":"Consentement de l\u0027utilisateur"},{"xloc":["default-mobile.handlebars-\u003e9-\u003e17"],"en":"\u003cb style=color:red\u003e2-step login activation failed\u003c/b\u003e. Clear the secret from the application and try again. You only have a few minutes to enter the proper code."},{"xloc":["default.handlebars-\u003e17-\u003e448","default-mobile.handlebars-\u003e9-\u003e183"],"en":"Intel® ME"},{"xloc":["default-mobile.handlebars-\u003e9-\u003e305","default.handlebars-\u003e17-\u003e1055","default.handlebars-\u003e17-\u003e518","default.handlebars-\u003e17-\u003e348"],"en":"Uninstall Agent"},{"xloc":["default.handlebars-\u003e17-\u003e251"],"en":"Any supported"},{"xloc":["default.handlebars-\u003e17-\u003e715"],"en":"Chinese (PRC)"},{"xloc":["default.handlebars-\u003e17-\u003e894","default-mobile.handlebars-\u003e9-\u003e40"],"en":"Delete Account","cs":"Smazat účet"},{"xloc":["default.handlebars-\u003e17-\u003e1066","default-mobile.handlebars-\u003e9-\u003e315"],"en":"Edit Notes","fr":"Modifier les notes"},{"xloc":["login-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e1-\u003e1-\u003e0-\u003e1-\u003eloginpanel-\u003e1-\u003eresetAccountDiv-\u003eresetAccountSpan"],"en":"Forgot user/password?"},{"xloc":["default.handlebars-\u003e17-\u003e1118","default.handlebars-\u003econtainer-\u003edialog-\u003edialogBody-\u003edialog3-\u003ed3localmode-\u003e1","default.handlebars-\u003e17-\u003e625","default-mobile.handlebars-\u003e9-\u003e250","default-mobile.handlebars-\u003e9-\u003e268","default.handlebars-\u003e17-\u003e644","default.handlebars-\u003e17-\u003e642","default-mobile.handlebars-\u003e9-\u003e82","default.handlebars-\u003e17-\u003e1110"],"en":"Upload File","cs":"Nahrát soubor"},{"xloc":["default-mobile.handlebars-\u003e9-\u003e24"],"en":"New Tokens","fr":"Nouveaux Jetons"},{"xloc":["login-mobile.handlebars-\u003e5-\u003e10","login.handlebars-\u003e5-\u003e10"],"en":"Invalid token, try again."},{"xloc":["default.handlebars-\u003e17-\u003e806"],"en":"Persian/Iran"},{"xloc":["messenger.handlebars-\u003e13-\u003e3"],"en":"Connection closed."},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep11-\u003edeskarea0-\u003edeskarea4-\u003e3-\u003edeskkeys-\u003e7","default-mobile.handlebars-\u003edialog-\u003e3-\u003edialog3-\u003edeskkeys-\u003e9"],"en":"Win+Up"},{"xloc":[],"en":"Save...","fr":"Sauver..."},{"xloc":["default.handlebars-\u003e17-\u003e761"],"en":"German (Liechtenstein)"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep12-\u003ep12warning-\u003e3","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep11-\u003ep11warning-\u003e3"],"en":"Intel® AMT Redirection port or KVM feature is disabled"},{"xloc":["default.handlebars-\u003e17-\u003e887","default-mobile.handlebars-\u003e9-\u003e32"],"en":"Please wait a few minute to receive the verification."},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep11-\u003edeskarea0-\u003edeskarea4-\u003e3-\u003edeskkeys-\u003e5","default-mobile.handlebars-\u003edialog-\u003e3-\u003edialog3-\u003edeskkeys-\u003e7"],"en":"Win+Down"},{"xloc":["default.handlebars-\u003e17-\u003e484"],"en":"Interfaces","fr":"Interfaces"},{"xloc":["default.handlebars-\u003e17-\u003e592"],"en":"Start","fr":"Lancé"},{"xloc":["default.handlebars-\u003e17-\u003e388"],"en":"Click here to edit the server-side device name"},{"xloc":["default.handlebars-\u003e17-\u003e221"],"en":"Scanning...","fr":"Balayage..."},{"xloc":["default.handlebars-\u003e17-\u003e810"],"en":"Punjabi"},{"xloc":["default.handlebars-\u003e17-\u003e172"],"en":"Download MeshCentral Router, a TCP port mapping tool."},{"xloc":["default.handlebars-\u003e17-\u003e535"],"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-\u003e17-\u003e780"],"en":"Khmer"},{"xloc":["default.handlebars-\u003etermShellContextMenu-\u003ecxtermnorm-\u003e0"],"en":"Normal Connect","fr":"Connexion normale"},{"xloc":["default.handlebars-\u003e17-\u003e1134"],"en":"Online Users","cs":"Online uživatelů","fr":"Utilisateurs en ligne"},{"xloc":["default.handlebars-\u003econtainer-\u003etopbar-\u003e1-\u003e1-\u003eMainSubMenuSpan-\u003eMainSubMenu-\u003e1-\u003e0-\u003eMainDevAmt"],"en":"Intel® AMT"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep13-\u003ep13toolbar-\u003e1-\u003e2-\u003e1-\u003e3","default-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003ep5-\u003ep5myfiles-\u003ep5toolbar-\u003e1-\u003e0-\u003e1-\u003e3","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep5-\u003ep5toolbar-\u003e1-\u003e0-\u003ep5filehead-\u003e3","default-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003ep10-\u003ep10files-\u003ep13toolbar-\u003e1-\u003e2-\u003e1-\u003e3"],"en":"Copy","cs":"Kopírovat"},{"xloc":["default-mobile.handlebars-\u003e9-\u003e149","default.handlebars-\u003e17-\u003e409"],"en":"Android ARM"},{"xloc":["default.handlebars-\u003e17-\u003e701"],"en":"Asturian"},{"xloc":["default.handlebars-\u003e17-\u003e29"],"en":"No information for this device."},{"xloc":["default-mobile.handlebars-\u003e9-\u003e69"],"en":"{0}m left"},{"xloc":["default.handlebars-\u003e17-\u003e1284"],"en":"servertrace.csv"},{"xloc":["default.handlebars-\u003e17-\u003e688"],"en":"Arabic (Lebanon)"},{"xloc":["default.handlebars-\u003e17-\u003e1016"],"en":"During activation, the agent will have access to admin password infomation."},{"xloc":["default.handlebars-\u003e17-\u003e830"],"en":"Spanish","fr":"Espagnol"},{"xloc":["default.handlebars-\u003e17-\u003e789"],"en":"Luxembourgish","fr":"Luxembourgeois"},{"xloc":["login.handlebars-\u003e5-\u003e12","login-mobile.handlebars-\u003e5-\u003e12"],"en":"Account locked."},{"xloc":["default-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003ep3-\u003ep3info-\u003e1-\u003ep3noMeshFound-\u003ep3createMeshLink2-\u003e1-\u003e0","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep2-\u003ep2noMeshFound-\u003ep2createMeshLink2-\u003e1-\u003e0"],"en":"Get started here!","fr":"Commencez ici!"},{"xloc":["default.handlebars-\u003e17-\u003e170"],"en":"Download MeshCmd, a command line tool that performs many functions."},{"xloc":["default.handlebars-\u003e17-\u003e1216"],"en":"1 group","fr":"1 groupe"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep11-\u003edeskarea0-\u003edeskarea4-\u003e3-\u003e9"],"en":"Toggle mouse and keyboard input","fr":"Basculer la souris et le clavier"},{"xloc":["default.handlebars-\u003e17-\u003e1220"],"en":"Admin Realms"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep16-\u003e3-\u003e1-\u003e0-\u003e5-\u003e3","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep3-\u003e3-\u003e1-\u003e0-\u003e3-\u003e3","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep31-\u003e5-\u003e1-\u003e0-\u003e5-\u003e3"],"en":"Download Events"},{"xloc":["default.handlebars-\u003e17-\u003e22","default-mobile.handlebars-\u003e9-\u003e11"],"en":" - Reset in {0} minute{1}.","fr":"- Réinitialisation en {0} minute {1}."},{"xloc":["default.handlebars-\u003e17-\u003e1107","default-mobile.handlebars-\u003e9-\u003e247","default-mobile.handlebars-\u003e9-\u003e79","default.handlebars-\u003e17-\u003e622"],"en":"Delete {0} selected items?","cs":"Smazat {0} vybrané prvky?"},{"xloc":["default.handlebars-\u003e17-\u003e866"],"en":"Urdu"},{"xloc":["default.handlebars-\u003e17-\u003e1270"],"en":"MeshCentral Server Peering"},{"xloc":["default.handlebars-\u003e17-\u003e284","default.handlebars-\u003e17-\u003e262"],"en":"Installation Type","cs":"Typ instalace"},{"xloc":["default.handlebars-\u003e17-\u003e582"],"en":"Display name"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep6-\u003ep2ServerActions-\u003e3-\u003ep2ServerActionsVersion-\u003e0"],"en":"Check server version","cs":"Zkontrolovat verzi serveru"},{"xloc":["default.handlebars-\u003e17-\u003e795"],"en":"Marathi","fr":"Marathi"},{"xloc":["default.handlebars-\u003e17-\u003e167","default.handlebars-\u003e17-\u003e165"],"en":"add one","cs":"přidat","fr":"ajoute un"},{"xloc":[],"en":"Fixed width interface","fr":"Interface à largeur fixe"},{"xloc":[],"en":"Toggle night mode","fr":"Basculer mode nuit"},{"xloc":["default.handlebars-\u003e17-\u003e884"],"en":"Intel® AMT desktop and serial events."},{"xloc":["default.handlebars-\u003e17-\u003e727"],"en":"English (Australia)"},{"xloc":["error404-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e3","error404.handlebars-\u003econtainer-\u003ecolumn_l-\u003e3"],"en":"This page does not exist","cs":"Tato stránka neexistuje"},{"xloc":["default.handlebars-\u003e17-\u003e1111"],"en":"Confirm overwrite?"},{"xloc":["default-mobile.handlebars-\u003edialog-\u003e3-\u003edialog7-\u003ed7amtkvm-\u003e3-\u003e3"],"en":"Encoding"},{"xloc":["default-mobile.handlebars-\u003e9-\u003e199","default.handlebars-\u003e17-\u003e502","default.handlebars-\u003e17-\u003e501"],"en":"Intel® AMT detected"},{"xloc":["default.handlebars-\u003e17-\u003e513","default-mobile.handlebars-\u003e9-\u003e203"],"en":"Wake-up","cs":"Probudit"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep1-\u003edevListToolbarSpan-\u003e1-\u003e0-\u003ekvmListToolbar","default.handlebars-\u003e17-\u003e181"],"en":"Connect All"},{"xloc":["default-mobile.handlebars-\u003edialog-\u003e3-\u003edialog7-\u003ed7meshkvm-\u003e5-\u003e3","default.handlebars-\u003econtainer-\u003edialog-\u003edialogBody-\u003edialog7-\u003ed7meshkvm-\u003e5-\u003e1"],"en":"Scaling","cs":"Škálování","fr":"Mise à l\u0027échelle"},{"xloc":["default.handlebars-\u003e17-\u003e545"],"en":"Are you sure you want to delete node {0}?","fr":"Êtes-vous sûr de vouloir supprimer le noeud {0}?"},{"xloc":["default.handlebars-\u003e17-\u003e237","default.handlebars-\u003e17-\u003e242"],"en":"MPS Server","fr":"Serveur MPS"},{"xloc":["default.handlebars-\u003e17-\u003e659"],"en":"Clear the core"},{"xloc":["default.handlebars-\u003e17-\u003e101"],"en":"Copy valid codes to clipboard"},{"xloc":["default.handlebars-\u003e17-\u003e647"],"en":"Event Details"},{"xloc":["default.handlebars-\u003e17-\u003e354"],"en":"Power off devices","cs":"Vypnout zařízení","fr":"Éteindre les appareils"},{"xloc":["agentinvite.handlebars-\u003econtainer-\u003ecolumn_l-\u003e5-\u003emacostab-\u003e1"],"en":"Apple™ MacOS"},{"xloc":["default.handlebars-\u003e17-\u003e137"],"en":"These settings can be used to connect MQTT for this device."},{"xloc":["default.handlebars-\u003e17-\u003e793"],"en":"Maltese"},{"xloc":["default.handlebars-\u003e17-\u003e423","default-mobile.handlebars-\u003e9-\u003e163"],"en":"NodeJS"},{"xloc":["login.handlebars-\u003e5-\u003e33","login-mobile.handlebars-\u003e5-\u003e33"],"en":"{0} non-alphanumeric"},{"xloc":["default.handlebars-\u003e17-\u003e1136"],"en":"1 more user not shown, use search box to look for users..."},{"xloc":["default.handlebars-\u003e17-\u003e796"],"en":"Moldavian"},{"xloc":["default.handlebars-\u003e17-\u003e720"],"en":"Cree"},{"xloc":["default.handlebars-\u003e17-\u003e282"],"en":"Windows (UnInstall)"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep42-\u003epluginRestartNotice-\u003e1"],"en":"Refresh Agent Cores"},{"xloc":["default.handlebars-\u003e17-\u003e1063","default-mobile.handlebars-\u003e9-\u003e312"],"en":"Agent Console"},{"xloc":["default.handlebars-\u003e17-\u003e714"],"en":"Chinese (Hong Kong)"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep11-\u003edeskarea0-\u003edeskarea4-\u003e3-\u003edeskkeys-\u003e19","default-mobile.handlebars-\u003edialog-\u003e3-\u003edialog3-\u003edeskkeys-\u003e21"],"en":"Ctrl-W"},{"xloc":["default.handlebars-\u003e17-\u003e1035"],"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."},{"xloc":["default.handlebars-\u003e17-\u003e84"],"en":"Install \u003ca href=\\\"https://play.google.com/store/apps/details?id=com.google.android.apps.authenticator2\\\" rel=\\\"noreferrer noopener\\\" target=_blank\u003eGoogle Authenticator\u003c/a\u003e or a compatible application and scan the barcode, use \u003ca href=\\\"\u0027 + message.url + \u0027\\\" rel=\\\"noreferrer noopener\\\" target=_blank\u003e this link\u003c/a\u003e or enter the secret. Then, enter the current 6 digit token below to activate 2-Step login."},{"xloc":["default.handlebars-\u003e17-\u003e224"],"en":"Manual Certificate","fr":"Certificat manuel"},{"xloc":[],"en":"Rotate Right","fr":"Tourner à droite"},{"xloc":["default.handlebars-\u003e17-\u003e698"],"en":"Aragonese"},{"xloc":["default.handlebars-\u003e17-\u003e50"],"en":"No network interface information available for this device."},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep6-\u003ep2ServerActions-\u003e3-\u003ep2ServerActionsErrors-\u003e0"],"en":"Show server error log","cs":"Zobrazit chyby serveru","fr":"Afficher le journal des erreurs du serveur"},{"xloc":["default.handlebars-\u003e17-\u003e324","default-mobile.handlebars-\u003e9-\u003e109"],"en":"Soft-Off"},{"xloc":["default.handlebars-\u003e17-\u003e1160"],"en":"Download the list of users with one of the file formats below."},{"xloc":["default.handlebars-\u003e17-\u003e437","default-mobile.handlebars-\u003e9-\u003e177"],"en":"Unknown Version & State","fr":"Version et état inconnus"},{"xloc":["default.handlebars-\u003e17-\u003e373"],"en":"Center map here","fr":"Centré la carte ici"},{"xloc":["default.handlebars-\u003e17-\u003e831"],"en":"Spanish (Argentina)"},{"xloc":["default.handlebars-\u003e17-\u003e168"],"en":"Create a new group of devices.","cs":"Vytvořit novou skupinu zařízení."},{"xloc":[],"en":"Send","cs":"Odeslat","fr":"Envoyer"},{"xloc":["default.handlebars-\u003e17-\u003e464","default-mobile.handlebars-\u003e9-\u003e188"],"en":"Intel® AMT CIRA"},{"xloc":["default.handlebars-\u003e17-\u003e96","default-mobile.handlebars-\u003e9-\u003e21"],"en":"One time tokens can be used as secondary authentication. Generate a set, print them and keep them in a safe place."},{"xloc":["default-mobile.handlebars-\u003edialog-\u003e3-\u003edialog7-\u003ed7amtkvm-\u003e3-\u003ed7desktopmode-\u003e5","default.handlebars-\u003econtainer-\u003edialog-\u003edialogBody-\u003edialog7-\u003ed7amtkvm-\u003e3-\u003ed7desktopmode-\u003e5"],"en":"RAW8, Slow","fr":"RAW8, lent"},{"xloc":["login-mobile.handlebars-\u003e5-\u003e3","login.handlebars-\u003e5-\u003e3"],"en":"Account limit reached."},{"xloc":["default.handlebars-\u003e17-\u003e832"],"en":"Spanish (Bolivia)"},{"xloc":["default.handlebars-\u003e17-\u003e468"],"en":"Mesh Relay"},{"xloc":["default.handlebars-\u003e17-\u003e1145","default.handlebars-\u003e17-\u003e159","default.handlebars-\u003e17-\u003e988","default.handlebars-\u003e17-\u003e142","default-mobile.handlebars-\u003e9-\u003e325"],"en":"User","fr":"Utilisateur"},{"xloc":["default.handlebars-\u003e17-\u003e199","default.handlebars-\u003e17-\u003e981"],"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\u0027un à installer l\u0027agent de maillage sur ce maillage."},{"xloc":["default.handlebars-\u003e17-\u003e338","default.handlebars-\u003e17-\u003e152"],"en":"Intel® AMT is routable."},{"xloc":["default.handlebars-\u003e17-\u003e1229"],"en":"Send user notification","fr":"Envoyer une notification utilisateur"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep1-\u003edevListToolbarSpan-\u003e1-\u003e0-\u003edevListToolbar-\u003e7"],"en":"Show devices operating system name"},{"xloc":["default.handlebars-\u003e17-\u003e853"],"en":"Swedish (Finland)"},{"xloc":["default.handlebars-\u003e17-\u003e481"],"en":"Remove this device","fr":"Retirer ce périphérique"},{"xloc":["default.handlebars-\u003e17-\u003e1010","default.handlebars-\u003e17-\u003e337","default.handlebars-\u003e17-\u003e151","default.handlebars-\u003e17-\u003e1005","default-mobile.handlebars-\u003e9-\u003e119"],"en":"CIRA"},{"xloc":[],"en":"Edit remote desktop settings"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep2-\u003ep2AccountSecurity-\u003e3-\u003emanageHardwareOtp-\u003e1-\u003e0"],"en":"Manage security keys"},{"xloc":["default.handlebars-\u003e17-\u003e1175"],"en":"Randomize the password.","fr":"Mot de passe aléatoire."},{"xloc":["default-mobile.handlebars-\u003e9-\u003e5","default.handlebars-\u003e17-\u003e12"],"en":"Intel® AMT Connected"},{"xloc":["default.handlebars-\u003econtextMenu-\u003ecxinfo-\u003e0"],"en":"Information","fr":"Information"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep5-\u003ep5filetable-\u003ep5PublicShare-\u003e0"],"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."},{"xloc":["default.handlebars-\u003e17-\u003e1166"],"en":"id, name, email, creation, lastlogin, groups, authfactors"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep40-\u003e3-\u003e1"],"en":"Download data points (.csv)"},{"xloc":["default-mobile.handlebars-\u003edialog-\u003e3-\u003edialog7-\u003ed7amtkvm-\u003e5-\u003e3"],"en":"Other","fr":"Autre"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep12-\u003etermTable-\u003e1-\u003e1-\u003e0-\u003e1-\u003e3-\u003econnectbutton2hspan","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep11-\u003edeskarea0-\u003edeskarea1-\u003e3-\u003econnectbutton1hspan"],"en":"Connect using Intel AMT hardware KVM"},{"xloc":["default.handlebars-\u003e17-\u003e873"],"en":"Yiddish"},{"xloc":["default.handlebars-\u003e17-\u003e307","default.handlebars-\u003e17-\u003e293"],"en":"64bit version of the MeshAgent"},{"xloc":["default.handlebars-\u003e17-\u003e734"],"en":"English (South Africa)"},{"xloc":["default.handlebars-\u003e17-\u003e1192"],"en":"No New Device Groups"},{"xloc":["default.handlebars-\u003e17-\u003e452","default-mobile.handlebars-\u003e9-\u003e185"],"en":"Intel® SM"},{"xloc":["default.handlebars-\u003e17-\u003e674","default.handlebars-\u003e17-\u003e671"],"en":"MyKey","fr":"MaClé"},{"xloc":["default.handlebars-\u003e17-\u003e1208"],"en":"Server Quota"},{"xloc":["default-mobile.handlebars-\u003e9-\u003e164","default.handlebars-\u003e17-\u003e424"],"en":"ARM-Linaro"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep11-\u003ep11warning2-\u003e3","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep12-\u003ep12warning2-\u003e3"],"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\u0027ordinateur distant n\u0027est pas sous tension, cliquez ici pour émettre une commande d\u0027alimentation."},{"xloc":["default.handlebars-\u003e17-\u003e1103","default-mobile.handlebars-\u003e9-\u003e75"],"en":"{0} bytes","cs":"{0} bytů","fr":"{0} octets"},{"xloc":["default.handlebars-\u003e17-\u003e931"],"en":"MeshCentral Errors"},{"xloc":["default.handlebars-\u003e17-\u003e267"],"en":"(optional)","cs":"(volitelné)"},{"xloc":["default.handlebars-\u003e17-\u003e190"],"en":"Add Local"},{"xloc":["default.handlebars-\u003e17-\u003e769"],"en":"Hungarian"},{"xloc":["default.handlebars-\u003e17-\u003e721"],"en":"Croatian"},{"xloc":["default.handlebars-\u003e17-\u003e821"],"en":"Sanskrit"},{"xloc":["default.handlebars-\u003e17-\u003e752"],"en":"Frisian","fr":"Frison"},{"xloc":["default.handlebars-\u003e17-\u003e1058"],"en":"Full Administrator (all rights)","cs":"Hlavní administrator (všechna práva)","fr":"Administrateur Complet (tous droits)"},{"xloc":["default.handlebars-\u003e17-\u003e812"],"en":"Punjabi (Pakistan)"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep11-\u003edeskarea0-\u003edeskarea4-\u003e3-\u003edeskkeys-\u003e21","default-mobile.handlebars-\u003edialog-\u003e3-\u003edialog3-\u003edeskkeys-\u003e23"],"en":"Alt-Tab"},{"xloc":["default.handlebars-\u003e17-\u003e114"],"en":"Press the key button now.","fr":"Appuyez sur le bouton de la clé maintenant."},{"xloc":["default.handlebars-\u003e17-\u003e1002"],"en":"Do nothing","cs":"Nic"},{"xloc":["default.handlebars-\u003e17-\u003e987"],"en":"Remove user rights to this device group","fr":"Supprimer les droits d\u0027utilisateur sur ce groupe de périphériques"},{"xloc":["default.handlebars-\u003e17-\u003e1273"],"en":"Server Certificate"},{"xloc":["default-mobile.handlebars-\u003e9-\u003e93"],"en":"No Intel® AMT devices in this group"},{"xloc":["default.handlebars-\u003e17-\u003e779"],"en":"Kazakh"},{"xloc":["default.handlebars-\u003e17-\u003e1233","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep42-\u003ep42tbl-\u003e1-\u003e0-\u003e7"],"en":"Status","fr":"Statut"},{"xloc":["login.handlebars-\u003econtainer-\u003etopbar","default.handlebars-\u003econtainer-\u003etopbar-\u003e1-\u003e1","terms.handlebars-\u003econtainer-\u003etopbar","agentinvite.handlebars-\u003econtainer-\u003etopbar","error404.handlebars-\u003econtainer-\u003etopbar"],"en":"User interface selection"},{"xloc":["default-mobile.handlebars-\u003edialog-\u003e3-\u003edialog3-\u003edeskkeys-\u003e13","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep11-\u003edeskarea0-\u003edeskarea4-\u003e3-\u003edeskkeys-\u003e11"],"en":"Win+M"},{"xloc":["default.handlebars-\u003e17-\u003e738"],"en":"English (Zimbabwe)","fr":"Anglais (Zimbabwe)"},{"xloc":["default.handlebars-\u003e17-\u003e380"],"en":"No devices found.","cs":"Žádné zařízení nalezeno.","fr":"Aucun périphérique trouvé."},{"xloc":["default.handlebars-\u003e17-\u003e55","default.handlebars-\u003e17-\u003e53","default.handlebars-\u003e17-\u003e52"],"en":"Last agent address","cs":"Poslední adresa agenta","fr":"Dernière adresse de l\u0027agent"},{"xloc":["default.handlebars-\u003e17-\u003e767"],"en":"Hebrew"},{"xloc":["default.handlebars-\u003e17-\u003e478"],"en":"Write an event for this device","fr":"Écrire un événement pour ce périphérique"},{"xloc":["default-mobile.handlebars-\u003e9-\u003e246","default.handlebars-\u003e17-\u003e621","default.handlebars-\u003e17-\u003e1106","player.htm-\u003ep11-\u003edialog-\u003eidx_dlgButtonBar-\u003e5","default.handlebars-\u003econtainer-\u003edialog-\u003eidx_dlgButtonBar-\u003e5","default-mobile.handlebars-\u003e9-\u003e78"],"en":"Delete","cs":"Smazat"},{"xloc":["default.handlebars-\u003e17-\u003e519","default.handlebars-\u003e17-\u003e350","default-mobile.handlebars-\u003e9-\u003e207"],"en":"Operation","cs":"Operace","fr":"Opération"},{"xloc":["default.handlebars-\u003e17-\u003e60"],"en":"DNS suffix"},{"xloc":["default.handlebars-\u003e17-\u003e710"],"en":"Catalan"},{"xloc":["default.handlebars-\u003e17-\u003e870"],"en":"Walloon"},{"xloc":["default.handlebars-\u003e17-\u003e205","player.htm-\u003e3-\u003e4","default.handlebars-\u003e17-\u003e235","default.handlebars-\u003e17-\u003e524","default-mobile.handlebars-\u003e9-\u003e209"],"en":"Username","cs":"Uživatel","fr":"Nom d\u0027utilisateur"},{"xloc":["default.handlebars-\u003e17-\u003e446","default.handlebars-\u003e17-\u003e445","default-mobile.handlebars-\u003e9-\u003e181","default-mobile.handlebars-\u003e9-\u003e182"],"en":"No Credentials","cs":"Žádné přihlašovací údaje"},{"xloc":["default.handlebars-\u003e17-\u003e579"],"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."},{"xloc":["default.handlebars-\u003e17-\u003e1248","default.handlebars-\u003e17-\u003e1250"],"en":"Free","fr":"Libre"},{"xloc":["login-mobile.handlebars-\u003e5-\u003e28","login.handlebars-\u003e5-\u003e28"],"en":"Minimum length of {0}"},{"xloc":["terms-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e47-\u003e1","terms.handlebars-\u003econtainer-\u003ecolumn_l-\u003e47-\u003e1"],"en":"Copyright 2013 jQuery Foundation and other contributors"},{"xloc":["default.handlebars-\u003e17-\u003e1052","default-mobile.handlebars-\u003e9-\u003e302"],"en":"Edit Device Notes","cs":"Upravit popis zařízení"},{"xloc":["default.handlebars-\u003e17-\u003e1189"],"en":"Server Updates","fr":"Mises à jour du serveur"},{"xloc":["terms.handlebars-\u003econtainer-\u003etopbar-\u003euiMenuButton","login.handlebars-\u003econtainer-\u003etopbar-\u003euiMenuButton","agentinvite.handlebars-\u003econtainer-\u003etopbar-\u003euiMenuButton","default.handlebars-\u003econtainer-\u003etopbar-\u003e1-\u003e1-\u003euiMenuButton","error404.handlebars-\u003econtainer-\u003etopbar-\u003euiMenuButton"],"en":"♦"},{"xloc":["login.handlebars-\u003econtainer-\u003ecolumn_l-\u003ecentralTable-\u003e1-\u003e0-\u003elogincell-\u003eloginpanel-\u003e1-\u003eresetAccountDiv-\u003e3","login-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e1-\u003e1-\u003e0-\u003e1-\u003eloginpanel-\u003e1-\u003eresetAccountDiv-\u003e3"],"en":"Reset account","cs":"Reset účtu","fr":"Réinitialiser le compte"},{"xloc":["default.handlebars-\u003e17-\u003e875","default.handlebars-\u003e17-\u003e877"],"en":"User browser value"},{"xloc":["default.handlebars-\u003e17-\u003e93"],"en":"You can reactivate this feature at any time.","fr":"Vous pouvez réactiver cette fonctionnalité à tout moment."},{"xloc":["login-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e1-\u003e1-\u003e0-\u003e1-\u003ecreatepanel-\u003e1-\u003e1-\u003e9-\u003e1-\u003ecreatePanelHint-\u003e1"],"en":"Pass Hint:","cs":"Nápověda k heslu:"},{"xloc":["default.handlebars-\u003e17-\u003e773"],"en":"Irish","fr":"Irlandais"},{"xloc":["player.htm-\u003e3-\u003e18"],"en":"Drag & drop a .mcrec file or click \\\"Open File...\\\""},{"xloc":["login-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e1-\u003e1-\u003e0-\u003e1-\u003ecreatepanel-\u003e1-\u003e1-\u003e9-\u003e1-\u003enuUserRow-\u003e1","login.handlebars-\u003econtainer-\u003ecolumn_l-\u003ecentralTable-\u003e1-\u003e0-\u003elogincell-\u003eloginpanel-\u003e1-\u003e7-\u003e1-\u003e0-\u003eloginusername","login-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e1-\u003e1-\u003e0-\u003e1-\u003eloginpanel-\u003e1-\u003e7-\u003e1-\u003e0-\u003eloginusername","login.handlebars-\u003econtainer-\u003ecolumn_l-\u003ecentralTable-\u003e1-\u003e0-\u003elogincell-\u003ecreatepanel-\u003e1-\u003e9-\u003e1-\u003enuUserRow-\u003enuUser"],"en":"Username:","cs":"Uživatel:","fr":"Nom d\u0027utilisateur:"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep1-\u003e2-\u003e0","default.handlebars-\u003econtainer-\u003etopbar-\u003e1-\u003e1-\u003eMainMenuSpan-\u003e1-\u003e0-\u003eMainMenuMyDevices"],"en":"My Devices","cs":"Moje zařízení","fr":"Mes Appareils"},{"xloc":["default.handlebars-\u003e17-\u003e854"],"en":"Swedish (Sweden)"},{"xloc":["default.handlebars-\u003e17-\u003e606"],"en":"Alternate (F10 = ESC+0)"},{"xloc":[],"en":"Ctl-X"},{"xloc":["default.handlebars-\u003e17-\u003e183","default-mobile.handlebars-\u003e9-\u003e1","default-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003ep10-\u003ep10desktop-\u003edeskarea1-\u003e1-\u003e3-\u003edeskstatus","default-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003ep10-\u003ep10files-\u003ep13toolbar-\u003e1-\u003e0-\u003e1-\u003e3-\u003ep13Status","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep13-\u003ep13toolbar-\u003e1-\u003e0-\u003e1-\u003e3-\u003ep13Status","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep11-\u003edeskarea0-\u003edeskarea1-\u003e3-\u003edeskstatus","default.handlebars-\u003e17-\u003e158","default.handlebars-\u003e17-\u003e177","default.handlebars-\u003e17-\u003e174","default.handlebars-\u003e17-\u003e8","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep12-\u003etermTable-\u003e1-\u003e1-\u003e0-\u003e1-\u003e3-\u003etermstatus"],"en":"Disconnected","cs":"Odpojeno","fr":"Débranché"},{"xloc":["default.handlebars-\u003e17-\u003e897","default-mobile.handlebars-\u003e9-\u003e41"],"en":"Old password:","cs":"Staré heslo:","fr":"Ancien mot de passe:"},{"xloc":["login-mobile.handlebars-\u003e5-\u003e2","login.handlebars-\u003e5-\u003e2"],"en":"Unable to create account."},{"xloc":["default.handlebars-\u003e17-\u003e404","default-mobile.handlebars-\u003e9-\u003e144"],"en":"Windows 64bit service"},{"xloc":[],"en":"Ctl-C"},{"xloc":["default.handlebars-\u003e17-\u003e841"],"en":"Spanish (Mexico)"},{"xloc":["default.handlebars-\u003e17-\u003e1007"],"en":"Don\\\u0027t connect to server"},{"xloc":["default.handlebars-\u003e17-\u003e106","default.handlebars-\u003e17-\u003e591","default.handlebars-\u003e17-\u003e98","default-mobile.handlebars-\u003e9-\u003e23"],"en":"Close"},{"xloc":["default.handlebars-\u003e17-\u003e1132"],"en":"Last Access","fr":"Dernier accès"},{"xloc":["default.handlebars-\u003e17-\u003e28"],"en":"WARNING: ","fr":"ATTENTION:"},{"xloc":["default.handlebars-\u003e17-\u003e868"],"en":"Vietnamese","fr":"Vietnamien"},{"xloc":["player.htm-\u003e3-\u003e3"],"en":"{0} second{1}"},{"xloc":["default.handlebars-\u003e17-\u003e657","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep42-\u003ep42tbl-\u003e1-\u003e0-\u003e8"],"en":"Action"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep11-\u003edeskarea0-\u003edeskarea4-\u003e3-\u003edeskkeys-\u003e23"],"en":"Win+Left"},{"xloc":["default.handlebars-\u003e17-\u003e1057"],"en":"Edit User Device Group Permissions"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep13-\u003ep13toolbar-\u003e1-\u003e4-\u003e1-\u003e1-\u003ep13sortdropdown-\u003e7","default-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003ep10-\u003ep10files-\u003ep13toolbar-\u003e1-\u003e4-\u003e1-\u003e1-\u003e1-\u003e0-\u003e3-\u003ep13sortdropdown-\u003e7","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep5-\u003ep5toolbar-\u003e1-\u003e2-\u003ep5filesubhead-\u003e1-\u003ep5sortdropdown-\u003e7","default-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003ep5-\u003ep5myfiles-\u003ep5toolbar-\u003e1-\u003e2-\u003e1-\u003e1-\u003e1-\u003e0-\u003e3-\u003ep5sortdropdown-\u003e7"],"en":"Descend by name"},{"xloc":["default.handlebars-\u003econtainer-\u003etopbar-\u003e1-\u003e1-\u003eMainSubMenuSpan-\u003eMainSubMenu-\u003e1-\u003e0-\u003eMainDevInfo"],"en":"Details","cs":"Detaily"},{"xloc":[],"en":"Pause","fr":"Pause"},{"xloc":["default.handlebars-\u003e17-\u003e886","default-mobile.handlebars-\u003e9-\u003e31"],"en":"Click ok to send a verification mail to:"},{"xloc":["default.handlebars-\u003e17-\u003e192"],"en":"Scan Network","fr":"Scan réseau"},{"xloc":["default.handlebars-\u003e17-\u003e1170"],"en":"Broadcast Message","fr":"Diffusion d\u0027un Message"},{"xloc":["default-mobile.handlebars-\u003e9-\u003e208","default.handlebars-\u003e17-\u003e520"],"en":"Device Action","cs":"Akce zařízení"},{"xloc":["default.handlebars-\u003e17-\u003e1037"],"en":"User Names","fr":"Noms"},{"xloc":["default.handlebars-\u003e17-\u003e189","default.handlebars-\u003e17-\u003e973"],"en":"Add a new Intel® AMT computer that is located on the local network."},{"xloc":["terms.handlebars-\u003econtainer-\u003ecolumn_l-\u003e63-\u003e1","terms-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e63-\u003e1"],"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":["default.handlebars-\u003e17-\u003e1207"],"en":"Server Rights","fr":"Droits du serveur"},{"xloc":["default.handlebars-\u003e17-\u003e551"],"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-\u003e17-\u003e747"],"en":"French (Canada)","fr":"Français (Canada)"},{"xloc":["default.handlebars-\u003e17-\u003e379"],"en":"Device name","cs":"Název zařízení"},{"xloc":["default-mobile.handlebars-\u003e9-\u003e226","default.handlebars-\u003e17-\u003e186","default.handlebars-\u003e17-\u003e572"],"en":"Remote Desktop Settings","fr":"Paramètres du bureau à distance"},{"xloc":["default.handlebars-\u003e17-\u003e1179","default.handlebars-\u003e17-\u003e1238","default-mobile.handlebars-\u003e9-\u003e45"],"en":"Requirements: {0}.","fr":"Exigences: {0}."},{"xloc":["default.handlebars-\u003e17-\u003e314","default-mobile.handlebars-\u003e9-\u003e97","default.handlebars-\u003e17-\u003e1","default-mobile.handlebars-\u003e9-\u003e104"],"en":"Powered","cs":"Zapnuto","fr":"Alimenté"},{"xloc":["default.handlebars-\u003e17-\u003e1277"],"en":"Web Socket Relay","fr":"Relais Web Socket"},{"xloc":["default-mobile.handlebars-\u003edialog-\u003e3-\u003edialog7-\u003ed7meshkvm-\u003e3-\u003e3","default.handlebars-\u003econtainer-\u003edialog-\u003edialogBody-\u003edialog7-\u003ed7meshkvm-\u003e3-\u003e1"],"en":"Quality","cs":"Kvalita","fr":"Qualité"},{"xloc":["default-mobile.handlebars-\u003e9-\u003e38","default.handlebars-\u003e17-\u003e926"],"en":"Cancel","cs":"Zrušit","fr":"Annuler"},{"xloc":["default.handlebars-\u003e17-\u003e1245"],"en":"There are currently no notifications","fr":"Il n\u0027y a actuellement aucune notification"},{"xloc":["default.handlebars-\u003e17-\u003e867"],"en":"Venda"},{"xloc":["agentinvite.handlebars-\u003econtainer-\u003ecolumn_l-\u003e5-\u003emacostab-\u003e3"],"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í."},{"xloc":["default.handlebars-\u003e17-\u003e787"],"en":"Latvian"},{"xloc":[],"en":"Toggle remote desktop background"},{"xloc":["default.handlebars-\u003e17-\u003e1214"],"en":"Last changed: {0}","cs":"Poslední změna: {0}","fr":"Dernière modification: {0}"},{"xloc":["default.handlebars-\u003e17-\u003e827"],"en":"Slovenian","fr":"Slovène"},{"xloc":["default.handlebars-\u003e17-\u003e1267"],"en":"Cookie encoder"},{"xloc":["terms-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e11-\u003e1","terms.handlebars-\u003econtainer-\u003ecolumn_l-\u003e11-\u003e1"],"en":"Copyright (c) 2009, CodePlex Foundation. All rights reserved."},{"xloc":["default.handlebars-\u003e17-\u003e890","default-mobile.handlebars-\u003e9-\u003e35"],"en":"Email Address Change","cs":"Změna emailové adresy"},{"xloc":["default-mobile.handlebars-\u003e9-\u003e290","default.handlebars-\u003e17-\u003e1040","default.handlebars-\u003e17-\u003e1022","default.handlebars-\u003e17-\u003e1059","default-mobile.handlebars-\u003e9-\u003e308","default-mobile.handlebars-\u003e9-\u003e288"],"en":"Edit Device Group","cs":"Editovat skupinu zařízení"},{"xloc":["default.handlebars-\u003e17-\u003e699"],"en":"Armenian"},{"xloc":["default.handlebars-\u003e17-\u003e164"],"en":"No Intel® AMT devices in this mesh"},{"xloc":["default.handlebars-\u003e17-\u003e71","default.handlebars-\u003e17-\u003e63"],"en":"Copy MAC address to clipboard","cs":"Kopírovat MAC adresu do schránky"},{"xloc":["default.handlebars-\u003e17-\u003e1026"],"en":"Show connection toolbar","fr":"Afficher la barre d\u0027outils de connexion"},{"xloc":["terms.handlebars-\u003econtainer-\u003ecolumn_l-\u003e1","terms-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e1"],"en":"Terms of use","fr":"Conditions d\u0027utilisation"},{"xloc":["default-mobile.handlebars-\u003e9-\u003e95"],"en":"No devices","cs":"Žádné zařízení","fr":"Aucun appareil"},{"xloc":["default.handlebars-\u003e17-\u003e255","default.handlebars-\u003e17-\u003e269"],"en":"Link Expiration","cs":"Platnost linku","fr":"Expiration du lien"},{"xloc":["default.handlebars-\u003e17-\u003e1289"],"en":"Call Error","fr":"Erreur d\u0027appel"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep40-\u003e3-\u003e3-\u003e3"],"en":"Log-X"},{"xloc":["default.handlebars-\u003e17-\u003e797"],"en":"Navajo","fr":"Navajo"},{"xloc":["default.handlebars-\u003e17-\u003e917","default.handlebars-\u003e17-\u003e916"],"en":"Enter"},{"xloc":["default.handlebars-\u003e17-\u003e765"],"en":"Gujurati","fr":"Gujarati"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep41-\u003e3-\u003e1-\u003ep41limitdropdown-\u003e7","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep3-\u003e3-\u003e1-\u003e0-\u003e3-\u003ep3limitdropdown-\u003e9","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep16-\u003e3-\u003e1-\u003e0-\u003e5-\u003ep16limitdropdown-\u003e9","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep31-\u003e5-\u003e1-\u003e0-\u003e5-\u003ep31limitdropdown-\u003e9"],"en":"Last 1000","cs":"Posledních 1000","fr":"1000 derniers"},{"xloc":["default.handlebars-\u003e17-\u003e311"],"en":"1 node","fr":"1 appareil"},{"xloc":["default.handlebars-\u003e17-\u003e881"],"en":"Notification sound."},{"xloc":[],"en":"Extended Ascii"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep1-\u003edevListToolbarSpan-\u003e1-\u003e0-\u003e9-\u003edevListToolbarSize-\u003esizeselect-\u003e5"],"en":"Large","cs":"Velký","fr":"Grand"},{"xloc":["default.handlebars-\u003e17-\u003e807"],"en":"Polish"},{"xloc":[],"en":"New Account...","cs":"Nový účet...","fr":"Nouveau Compte..."},{"xloc":["default.handlebars-\u003e17-\u003e1223"],"en":"Backup Codes"},{"xloc":["default.handlebars-\u003e17-\u003e549"],"en":"Network Interfaces","fr":"Interfaces réseau"},{"xloc":["default.handlebars-\u003e17-\u003e912"],"en":"Manage using a software agent","fr":"Gérer à l\u0027aide d\u0027un agent logiciel"},{"xloc":["default.handlebars-\u003e17-\u003e133","default.handlebars-\u003e17-\u003e259","default.handlebars-\u003e17-\u003e273"],"en":"1 week","cs":"1 týden","fr":"1 semaine"},{"xloc":["default.handlebars-\u003e17-\u003e1137"],"en":"{0} more users not shown, use search box to look for users..."},{"xloc":["default.handlebars-\u003e17-\u003e1095"],"en":"{0} Mb"},{"xloc":["default.handlebars-\u003e17-\u003e556"],"en":"Linux x86 (64bit)"},{"xloc":["default.handlebars-\u003e17-\u003e750"],"en":"French (Monaco)","fr":"Français (Monaco)"},{"xloc":["login.handlebars-\u003econtainer-\u003ecolumn_l-\u003ecentralTable-\u003e1-\u003e0-\u003elogincell-\u003eresetpasswordpanel-\u003e1-\u003e7-\u003e1-\u003e2-\u003ernuPass2","login-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e1-\u003e1-\u003e0-\u003e1-\u003ecreatepanel-\u003e1-\u003e1-\u003e9-\u003e1-\u003e6-\u003e1","login.handlebars-\u003econtainer-\u003ecolumn_l-\u003ecentralTable-\u003e1-\u003e0-\u003elogincell-\u003ecreatepanel-\u003e1-\u003e9-\u003e1-\u003e4-\u003enuPass1","default.handlebars-\u003e17-\u003e892","default.handlebars-\u003e17-\u003e893","default-mobile.handlebars-\u003e9-\u003e36","login-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e1-\u003e1-\u003e0-\u003e1-\u003eresetpasswordpanel-\u003e1-\u003e7-\u003e1-\u003e2-\u003ernuPass2","login.handlebars-\u003econtainer-\u003ecolumn_l-\u003ecentralTable-\u003e1-\u003e0-\u003elogincell-\u003ecreatepanel-\u003e1-\u003e9-\u003e1-\u003e6-\u003enuPass2","default-mobile.handlebars-\u003e9-\u003e37","login.handlebars-\u003econtainer-\u003ecolumn_l-\u003ecentralTable-\u003e1-\u003e0-\u003elogincell-\u003eresetpasswordpanel-\u003e1-\u003e7-\u003e1-\u003e0-\u003ernuPass1","login-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e1-\u003e1-\u003e0-\u003e1-\u003ecreatepanel-\u003e1-\u003e1-\u003e9-\u003e1-\u003e4-\u003e1","login-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e1-\u003e1-\u003e0-\u003e1-\u003eloginpanel-\u003e1-\u003e7-\u003e1-\u003e2-\u003e1","login-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e1-\u003e1-\u003e0-\u003e1-\u003eresetpasswordpanel-\u003e1-\u003e7-\u003e1-\u003e0-\u003ernuPass1","login.handlebars-\u003econtainer-\u003ecolumn_l-\u003ecentralTable-\u003e1-\u003e0-\u003elogincell-\u003eloginpanel-\u003e1-\u003e7-\u003e1-\u003e2-\u003e1"],"en":"Password:","cs":"Heslo:","fr":"Mot de passe:"},{"xloc":["default.handlebars-\u003e17-\u003e583","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep11-\u003edeskarea0-\u003edeskarea3x-\u003eDeskTools-\u003edeskToolsArea-\u003eDeskToolsServiceTab-\u003edeskToolsServiceHeader-\u003e1"],"en":"State","cs":"Stav"},{"xloc":["default.handlebars-\u003e17-\u003e996"],"en":"Deactivate Client Control Mode (CCM)"},{"xloc":["default.handlebars-\u003e17-\u003e1094"],"en":"{0} Kb"},{"xloc":["default.handlebars-\u003e17-\u003e203","default.handlebars-\u003e17-\u003e396","default.handlebars-\u003e17-\u003e394","default-mobile.handlebars-\u003e9-\u003e220","default.handlebars-\u003e17-\u003e393","default-mobile.handlebars-\u003e9-\u003e134","default-mobile.handlebars-\u003e9-\u003e136","default-mobile.handlebars-\u003e9-\u003e133","default.handlebars-\u003e17-\u003e563"],"en":"Hostname"},{"xloc":["default.handlebars-\u003e17-\u003e1202"],"en":"Email is verified","cs":"Email ověřen"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep11-\u003ep11title-\u003ep11deviceNameHeader-\u003edevListToolbarViewIcons","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep14-\u003ep14title-\u003edevListToolbarViewIcons"],"en":"Full Screen. Hold shift to browser full screen.","fr":"Plein écran. Maintenez la touche Maj enfoncée dans le navigateur en plein écran."},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep1-\u003exdevicesmap-\u003exmapSearchResultsDlg-\u003exmapSearchResultsBck-\u003e3"],"en":"Location Results"},{"xloc":["default.handlebars-\u003e17-\u003e771"],"en":"Indonesian"},{"xloc":["default.handlebars-\u003e17-\u003e717"],"en":"Chinese (Taiwan)"},{"xloc":["default.handlebars-\u003e17-\u003e1236","default.handlebars-\u003e17-\u003e1235","default.handlebars-\u003e17-\u003e207","default.handlebars-\u003e17-\u003e1173","default.handlebars-\u003e17-\u003e1174","default.handlebars-\u003e17-\u003e236","default.handlebars-\u003e17-\u003e525","default.handlebars-\u003e17-\u003e1213","default.handlebars-\u003e17-\u003e1211","default-mobile.handlebars-\u003e9-\u003e210"],"en":"Password","cs":"Heslo","fr":"Mot de passe"},{"xloc":["login-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e1-\u003e1-\u003e0-\u003e1-\u003ecreatepanel-\u003e1-\u003e1-\u003e9-\u003e1-\u003e12-\u003e1-\u003e1","login.handlebars-\u003econtainer-\u003ecolumn_l-\u003ecentralTable-\u003e1-\u003e0-\u003elogincell-\u003ecreatepanel-\u003e1-\u003e9-\u003e1-\u003e12-\u003e1-\u003e1","default.handlebars-\u003e17-\u003e1180"],"en":"Create Account"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep43-\u003e3"],"en":"My Server Plugins -","fr":"Mes plugins serveur -"},{"xloc":["terms-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e73-\u003e1-\u003e0","terms.handlebars-\u003econtainer-\u003ecolumn_l-\u003e73-\u003e1-\u003e0"],"en":"7.Webtoolkit Javascript Base 64 – Creative Commons Attribution 2.0 UK License"},{"xloc":["default.handlebars-\u003e17-\u003e576"],"en":"Large Focus","fr":"Grande mise au point"},{"xloc":["default.handlebars-\u003e17-\u003e547","default-mobile.handlebars-\u003e9-\u003e215"],"en":"Delete Node"},{"xloc":["default.handlebars-\u003e17-\u003e372"],"en":"Zoom to fit extent"},{"xloc":["default.handlebars-\u003e17-\u003e801"],"en":"Norwegian (Bokmal)","fr":"Norvégien (Bokmal)"},{"xloc":["default.handlebars-\u003e17-\u003e969"],"en":"View notes about this device group"},{"xloc":["default.handlebars-\u003e17-\u003e1247","default.handlebars-\u003e17-\u003e1249"],"en":"Used","cs":"Použito"},{"xloc":["default.handlebars-\u003e17-\u003e386","default.handlebars-\u003e17-\u003e908"],"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-\u003e17-\u003e682"],"en":"Arabic (Algeria)"},{"xloc":["default.handlebars-\u003e17-\u003e226"],"en":"To add a new Intel® AMT device to device group \\\"{0}\\\" with CIRA, download the following script files and use \u003ca href=\u0027http://meshcommander.com\u0027 rel=\u0027noreferrer noopener\u0027 target=\u0027_blank\u0027\u003eMeshCommander\u003c/a\u003e to run the script to configure computers."},{"xloc":["default-mobile.handlebars-\u003e9-\u003e59","default.handlebars-\u003e17-\u003e921"],"en":"Policy","fr":"Politique"},{"xloc":["default.handlebars-\u003e17-\u003e685"],"en":"Arabic (Iraq)"},{"xloc":["default.handlebars-\u003e17-\u003e829"],"en":"Sorbian"},{"xloc":["default.handlebars-\u003e17-\u003e947"],"en":"Desktop Prompt"},{"xloc":["default.handlebars-\u003e17-\u003e746"],"en":"French (Belgium)","fr":"Français (Belgique)"},{"xloc":["default.handlebars-\u003e17-\u003e924","default.handlebars-\u003e17-\u003e986","default.handlebars-\u003e17-\u003e1075","default-mobile.handlebars-\u003e9-\u003e324","default-mobile.handlebars-\u003e9-\u003e62","default-mobile.handlebars-\u003e9-\u003e281"],"en":"No Rights"},{"xloc":["default.handlebars-\u003e17-\u003e299"],"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ě."},{"xloc":["default.handlebars-\u003e17-\u003e802"],"en":"Norwegian (Nynorsk)","fr":"Norvégien (Nynorsk)"},{"xloc":["default.handlebars-\u003e17-\u003e722"],"en":"Czech"},{"xloc":["terms.handlebars-\u003econtainer-\u003ecolumn_l-\u003e15-\u003e1","terms-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e15-\u003e1","terms-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e31-\u003e1","terms.handlebars-\u003econtainer-\u003ecolumn_l-\u003e31-\u003e1"],"en":"1.Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer."},{"xloc":["default.handlebars-\u003e17-\u003e740"],"en":"Estonian"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep41-\u003e1"],"en":"My Server Tracing","fr":"Suivi de mon serveur"},{"xloc":["default.handlebars-\u003e17-\u003e456"],"en":"Disabled"},{"xloc":["default.handlebars-\u003e17-\u003e668","default-mobile.handlebars-\u003e9-\u003e30"],"en":"Confirm removal of authenticator application 2-step login?"},{"xloc":["login.handlebars-\u003econtainer-\u003ecolumn_l-\u003ecentralTable-\u003e1-\u003e0-\u003elogincell-\u003etokenpanel-\u003e1-\u003e7-\u003e1-\u003e2-\u003e1-\u003e1","login-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e1-\u003e1-\u003e0-\u003e1-\u003etokenpanel-\u003e1-\u003e7-\u003e1-\u003e2-\u003e1-\u003e1"],"en":"Remember this device for 30 days.","fr":"Rappelez cet appareil pour 30 jours."},{"xloc":[],"en":"Search Location","fr":"Recherche de lieu"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep40-\u003e3-\u003e1-\u003ep40time-\u003e1"],"en":"Last 3 hours","fr":"3 dernières heures"},{"xloc":["default.handlebars-\u003e17-\u003e1069","default-mobile.handlebars-\u003e9-\u003e318"],"en":"No Files","fr":"Aucun fichier"},{"xloc":["default.handlebars-\u003e17-\u003e530"],"en":"Topic"},{"xloc":["default.handlebars-\u003e17-\u003e1271"],"en":"MeshAgent traffic"},{"xloc":["default.handlebars-\u003e17-\u003e694"],"en":"Arabic (Syria)"},{"xloc":["default.handlebars-\u003e17-\u003e407","default-mobile.handlebars-\u003e9-\u003e147"],"en":"MIPS"},{"xloc":[],"en":"Left bar interface"},{"xloc":["default-mobile.handlebars-\u003e9-\u003e158","default.handlebars-\u003e17-\u003e418"],"en":"Linux Poky x86-64bit"},{"xloc":["default-mobile.handlebars-\u003e9-\u003e264","default.handlebars-\u003e17-\u003e639"],"en":"Holding 1 entrie for move"},{"xloc":["default.handlebars-\u003e17-\u003e707"],"en":"Bosnian"},{"xloc":["default.handlebars-\u003econtainer-\u003etopbar-\u003e1-\u003e1-\u003eUserSubMenuSpan-\u003eUserSubMenu-\u003e1-\u003e0-\u003eUserEvents","default.handlebars-\u003econtainer-\u003etopbar-\u003e1-\u003e1-\u003eMainSubMenuSpan-\u003eMainSubMenu-\u003e1-\u003e0-\u003eMainDevEvents","default.handlebars-\u003econtextMenu-\u003ecxevents"],"en":"Events","cs":"Události","fr":"Événements"},{"xloc":["default-mobile.handlebars-\u003e9-\u003e259","default-mobile.handlebars-\u003e9-\u003e265","default-mobile.handlebars-\u003e9-\u003e263","default-mobile.handlebars-\u003e9-\u003e261","default.handlebars-\u003e17-\u003e634","default.handlebars-\u003e17-\u003e636","default.handlebars-\u003e17-\u003e638","default-mobile.handlebars-\u003e9-\u003e25","default.handlebars-\u003e17-\u003e1117","messenger.handlebars-\u003exbottom","default.handlebars-\u003e17-\u003e640","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep15-\u003econsoleTable-\u003e1-\u003e6-\u003e1-\u003e1-\u003e1-\u003e0-\u003e7","default-mobile.handlebars-\u003e9-\u003e88"],"en":"Clear"},{"xloc":["default.handlebars-\u003e17-\u003e813"],"en":"Quechua"},{"xloc":["default.handlebars-\u003econtainer-\u003edialog-\u003edialogBody-\u003edialog7-\u003ed7amtkvm-\u003e1","default-mobile.handlebars-\u003edialog-\u003e3-\u003edialog7-\u003ed7amtkvm-\u003e1"],"en":"Intel® AMT Hardware KVM"},{"xloc":["default.handlebars-\u003e17-\u003e725"],"en":"Dutch (Belgian)"},{"xloc":["default.handlebars-\u003e17-\u003e555"],"en":"Linux x86 (32bit)"},{"xloc":["default.handlebars-\u003e17-\u003e689"],"en":"Arabic (Libya)"},{"xloc":["default.handlebars-\u003e17-\u003e86","default-mobile.handlebars-\u003e9-\u003e29","default.handlebars-\u003e17-\u003e91","default-mobile.handlebars-\u003e9-\u003e15","default-mobile.handlebars-\u003e9-\u003e27","default.handlebars-\u003e17-\u003e665","default.handlebars-\u003e17-\u003e667","default-mobile.handlebars-\u003e9-\u003e18"],"en":"Authenticator App"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep2-\u003ep2AccountActions-\u003e3-\u003eaccountChangeEmailAddressSpan-\u003e0","default-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003ep3-\u003ep3info-\u003e1-\u003ep3AccountActions-\u003e7-\u003e3-\u003echangeEmailId-\u003e0"],"en":"Change email address"},{"xloc":["default-mobile.handlebars-\u003edialog-\u003e3-\u003edialog7-\u003ed7meshkvm-\u003e7-\u003e3"],"en":"Rate"},{"xloc":["default.handlebars-\u003e17-\u003e473","default-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003ep10-\u003ep10files-\u003ep13toolbar-\u003e1-\u003e0-\u003e1-\u003e1"],"en":"Actions","cs":"Akce"},{"xloc":["default.handlebars-\u003e17-\u003e74"],"en":"Current Version"},{"xloc":["default.handlebars-\u003e17-\u003e1281"],"en":"CIRA Server Commands"},{"xloc":["default-mobile.handlebars-\u003e9-\u003e19"],"en":"\u003cb style=color:green\u003e2-step login activation removed\u003c/b\u003e. You can reactivate this feature at any time."},{"xloc":["terms-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e9-\u003e1-\u003e0","terms.handlebars-\u003econtainer-\u003ecolumn_l-\u003e9-\u003e1-\u003e0"],"en":"1.AJAX Control Toolkit - New BSD License"},{"xloc":[],"en":"Display a notification on the remote computer"},{"xloc":["default.handlebars-\u003e17-\u003e1115","default-mobile.handlebars-\u003e9-\u003e86"],"en":"copy"},{"xloc":["default.handlebars-\u003e17-\u003e436","default.handlebars-\u003e17-\u003e434","default-mobile.handlebars-\u003e9-\u003e174","default-mobile.handlebars-\u003e9-\u003e176"],"en":"Activated","fr":"Activé"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep14-\u003ep14title-\u003e5"],"en":"Intel® AMT -"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep11-\u003ep11title-\u003ep11deviceNameHeader-\u003e5"],"en":"Desktop -"},{"xloc":["default-mobile.handlebars-\u003e9-\u003e251","default.handlebars-\u003e17-\u003e626"],"en":"File Editor","fr":"Éditeur de fichier"},{"xloc":["default.handlebars-\u003e17-\u003e1188"],"en":"Server Restore"},{"xloc":["default.handlebars-\u003e17-\u003e112","default.handlebars-\u003e17-\u003e110","default.handlebars-\u003e17-\u003e116","default.handlebars-\u003e17-\u003e115","default.handlebars-\u003e17-\u003e676","default.handlebars-\u003e17-\u003e677"],"en":"Add Security Key","fr":"Ajouter une clé de sécurité"},{"xloc":["default.handlebars-\u003e17-\u003e577"],"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-\u003e17-\u003e792"],"en":"Malayalam"},{"xloc":["default.handlebars-\u003econtextMenu-\u003ecxdesktop","default.handlebars-\u003econtainer-\u003etopbar-\u003e1-\u003e1-\u003eMainSubMenuSpan-\u003eMainSubMenu-\u003e1-\u003e0-\u003eMainDevDesktop","default.handlebars-\u003e17-\u003e1023","default.handlebars-\u003e17-\u003e366"],"en":"Desktop","cs":"Plocha"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep1-\u003edevListToolbarSpan-\u003e1-\u003e0-\u003e9-\u003edevListToolbarSize-\u003esizeselect-\u003e3","default.handlebars-\u003econtainer-\u003edialog-\u003edialogBody-\u003edialog7-\u003ed7meshkvm-\u003e7-\u003ed7framelimiter-\u003e3","default-mobile.handlebars-\u003edialog-\u003e3-\u003edialog7-\u003ed7meshkvm-\u003e7-\u003ed7framelimiter-\u003e3"],"en":"Medium","cs":"Středně","fr":"Moyen"},{"xloc":["default.handlebars-\u003e17-\u003e9","default-mobile.handlebars-\u003e9-\u003e269","default.handlebars-\u003e17-\u003e184","default-mobile.handlebars-\u003e9-\u003e6","default-mobile.handlebars-\u003e9-\u003e2","default.handlebars-\u003e17-\u003e645","default.handlebars-\u003e17-\u003e175","default.handlebars-\u003e17-\u003e178"],"en":"Connecting..."},{"xloc":["default.handlebars-\u003e17-\u003e1122"],"en":"Download the list of events with one of the file formats below."},{"xloc":["default-mobile.handlebars-\u003e9-\u003e125"],"en":" nodes","fr":"noeuds"},{"xloc":["player.htm-\u003ep11-\u003edeskarea0-\u003edeskarea4-\u003e3-\u003ePlaySpeed-\u003e1"],"en":"1/4 Speed","fr":"1/4 vitesse"},{"xloc":[],"en":"Rotate Left","fr":"Tourne à gauche"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep6-\u003ep2ServerActions-\u003e1-\u003e0"],"en":"Server actions"},{"xloc":["default.handlebars-\u003e17-\u003e1119","default.handlebars-\u003e17-\u003e643"],"en":"Upload will overwrite {0} file{1}. Continue?"},{"xloc":["default.handlebars-\u003e17-\u003e229"],"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-\u003econtainer-\u003edialog-\u003edialogBody-\u003edialog7-\u003ed7meshkvm-\u003e5-\u003ed7bitmapscaling-\u003e1","default-mobile.handlebars-\u003edialog-\u003e3-\u003edialog7-\u003ed7meshkvm-\u003e5-\u003ed7bitmapscaling-\u003e1"],"en":"100%"},{"xloc":[],"en":"Download console text"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep1-\u003eNoMeshesPanel-\u003e1-\u003e1-\u003e0-\u003e3-\u003egetStarted1"],"en":"To get started,"},{"xloc":["player.htm-\u003ep11-\u003edeskarea0-\u003edeskarea3x-\u003ebigok-\u003e0","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep2-\u003ep2AccountSecurity-\u003e3-\u003emanageOtp-\u003e0-\u003eauthCodesSetupCheck-\u003e0","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep2-\u003ep2AccountSecurity-\u003e3-\u003emanageAuthApp-\u003e0-\u003eauthAppSetupCheck-\u003e0","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep13-\u003ep13filetable-\u003ep13bigok-\u003e0","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep2-\u003ep2AccountSecurity-\u003e3-\u003emanageHardwareOtp-\u003e0-\u003eauthKeySetupCheck-\u003e0","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep5-\u003ep5filetable-\u003ebigok-\u003e0"],"en":"✓"},{"xloc":["default.handlebars-\u003e17-\u003e408","default-mobile.handlebars-\u003e9-\u003e148"],"en":"XENx86"},{"xloc":["default.handlebars-\u003e17-\u003e1241"],"en":"Change Password for {0}"},{"xloc":["default-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003ep3-\u003ep3info-\u003e1-\u003ep3AccountActions-\u003e3-\u003emanageAuthApp-\u003e0","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep2-\u003ep2AccountSecurity-\u003e3-\u003emanageAuthApp-\u003e1-\u003e0"],"en":"Manage authenticator app"},{"xloc":["default.handlebars-\u003e17-\u003e1291"],"en":"Less","fr":"Moins"},{"xloc":["default.handlebars-\u003e17-\u003e238"],"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-\u003e17-\u003e906","default.handlebars-\u003e17-\u003e384"],"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-\u003e17-\u003e214"],"en":"Perform Intel AMT admin control mode (ACM) activation to group \\\"{0}\\\" by downloading the MeshCMD tool and running it like this:"},{"xloc":["login.handlebars-\u003econtainer-\u003ecolumn_l-\u003ecentralTable-\u003e1-\u003e0-\u003elogincell-\u003eloginpanel-\u003e1-\u003eresetAccountDiv-\u003eresetAccountSpan"],"en":"Forgot username/password?"},{"xloc":["default.handlebars-\u003e17-\u003e1183"],"en":"Name1, Name2, Name3","fr":"Nom1, Nom2, Nom3"},{"xloc":["default.handlebars-\u003e17-\u003e858"],"en":"Thai"},{"xloc":["default.handlebars-\u003e17-\u003e414","default-mobile.handlebars-\u003e9-\u003e154"],"en":"Android APK"},{"xloc":["default.handlebars-\u003e17-\u003e1085","default.handlebars-\u003e17-\u003e615","default.handlebars-\u003e17-\u003e1244","default-mobile.handlebars-\u003e9-\u003e64","default-mobile.handlebars-\u003e9-\u003e240"],"en":"..."},{"xloc":["default.handlebars-\u003e17-\u003e304","default.handlebars-\u003e17-\u003e290"],"en":"32bit version of the MeshAgent"},{"xloc":["default.handlebars-\u003e17-\u003e136"],"en":"Invitation Link ({0})","cs":"Link pro pozvání ({0})"},{"xloc":["default.handlebars-\u003e17-\u003e849"],"en":"Spanish (Venezuela)"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep2-\u003ep2AccountActions-\u003e1-\u003e0"],"en":"Account actions"},{"xloc":["default.handlebars-\u003e17-\u003e376","default.handlebars-\u003e17-\u003e369"],"en":"Zoom-in to extent"},{"xloc":["login-mobile.handlebars-\u003e5-\u003e6","login.handlebars-\u003e5-\u003e6"],"en":"Username already exists.","fr":"Ce nom d\u0027utilisateur existe déjà."},{"xloc":["default.handlebars-\u003e17-\u003e1017","default-mobile.handlebars-\u003e9-\u003e283"],"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."},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep11-\u003edeskarea0-\u003edeskarea4-\u003e3-\u003edeskkeys-\u003e3","default-mobile.handlebars-\u003edialog-\u003e3-\u003edialog3-\u003edeskkeys-\u003e5"],"en":"Win"},{"xloc":["default.handlebars-\u003e17-\u003e1222"],"en":"Security Key","fr":"Clef de sécurité"},{"xloc":["default.handlebars-\u003e17-\u003e248"],"en":"example@email.com"},{"xloc":["default.handlebars-\u003e17-\u003e954"],"en":"Always Prompt"},{"xloc":["default.handlebars-\u003e17-\u003e66"],"en":"IPv4 mask"},{"xloc":["default.handlebars-\u003e17-\u003e1212"],"en":"Will be changed on next login.","fr":"Sera changé lors de la prochaine connexion."},{"xloc":["login.handlebars-\u003econtainer-\u003ecolumn_l-\u003ecentralTable-\u003e1-\u003e0-\u003elogincell-\u003etokenpanel-\u003e1-\u003e7-\u003e1-\u003e4-\u003e1-\u003e3","login-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e1-\u003e1-\u003e0-\u003e1-\u003etokenpanel-\u003e1-\u003e7-\u003e1-\u003e4-\u003e1-\u003e3"],"en":"Use Security Key","fr":"Utiliser clé de sécurité"},{"xloc":["default.handlebars-\u003e17-\u003e198"],"en":"Add Agent","cs":"Přidat agenta","fr":"Ajouter un agent"},{"xloc":["default-mobile.handlebars-\u003e9-\u003e201"],"en":"Device Toast"},{"xloc":["default.handlebars-\u003econtainer-\u003etopbar-\u003e1-\u003e1-\u003eServerSubMenuSpan-\u003eServerSubMenu-\u003e1-\u003e0-\u003eServerTrace"],"en":"Trace","fr":"Trace"},{"xloc":["default.handlebars-\u003e17-\u003e188"],"en":"Add CIRA","cs":"Přidat CIRA","fr":"Ajouter CIRA"},{"xloc":["default.handlebars-\u003e17-\u003e1116","default-mobile.handlebars-\u003e9-\u003e87"],"en":"move"},{"xloc":["default.handlebars-\u003e17-\u003e313"],"en":"Device is powered on."},{"xloc":["default.handlebars-\u003e17-\u003e211"],"en":"Add Intel® AMT device"},{"xloc":["default.handlebars-\u003e17-\u003e826"],"en":"Slovak","fr":"Slovaque"},{"xloc":[],"en":"Sort by process id","fr":"Trier par identifiant de processus"},{"xloc":["default.handlebars-\u003e17-\u003e180"],"en":"{0} users"},{"xloc":["default.handlebars-\u003e17-\u003e953"],"en":"Always Notify","fr":"Toujours aviser"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep13-\u003ep13toolbar-\u003e1-\u003e4-\u003e1-\u003e1-\u003ep13sortdropdown-\u003e11","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep5-\u003ep5toolbar-\u003e1-\u003e2-\u003ep5filesubhead-\u003e1-\u003ep5sortdropdown-\u003e11","default-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003ep5-\u003ep5myfiles-\u003ep5toolbar-\u003e1-\u003e2-\u003e1-\u003e1-\u003e1-\u003e0-\u003e3-\u003ep5sortdropdown-\u003e11","default-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003ep10-\u003ep10files-\u003ep13toolbar-\u003e1-\u003e4-\u003e1-\u003e1-\u003e1-\u003e0-\u003e3-\u003ep13sortdropdown-\u003e11"],"en":"Descend by date"},{"xloc":["default.handlebars-\u003e17-\u003e633","default-mobile.handlebars-\u003e9-\u003e258"],"en":"Holding {0} entries for copy"},{"xloc":["default.handlebars-\u003e17-\u003e1252"],"en":"CPU load in the last 5 minutes"},{"xloc":["default.handlebars-\u003e17-\u003e663"],"en":"Hard disconnect agent","fr":"Déconnexion forcée de l\u0027agent"},{"xloc":["default.handlebars-\u003econtainer-\u003edialog-\u003edialogBody-\u003edialog3-\u003ed3servermode-\u003ed3serveraction"],"en":"Up","cs":"Nahoru","fr":"Up"},{"xloc":["default.handlebars-\u003econtainer-\u003etopbar-\u003e1-\u003e1-\u003eMainSubMenuSpan-\u003eMainSubMenu-\u003e1-\u003e0-\u003eMainDev","default.handlebars-\u003econtainer-\u003etopbar-\u003e1-\u003e1-\u003eMeshSubMenuSpan-\u003eMeshSubMenu-\u003e1-\u003e0-\u003eMeshGeneral","default.handlebars-\u003econtainer-\u003etopbar-\u003e1-\u003e1-\u003eUserSubMenuSpan-\u003eUserSubMenu-\u003e1-\u003e0-\u003eUserGeneral","default.handlebars-\u003econtainer-\u003etopbar-\u003e1-\u003e1-\u003eServerSubMenuSpan-\u003eServerSubMenu-\u003e1-\u003e0-\u003eServerGeneral"],"en":"General","cs":"Obecné","fr":"Général"},{"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"},{"xloc":["default-mobile.handlebars-\u003e9-\u003e54","default.handlebars-\u003e17-\u003e590","default.handlebars-\u003e17-\u003e991","default.handlebars-\u003e17-\u003e911","default.handlebars-\u003e17-\u003e994","default-mobile.handlebars-\u003e9-\u003e276","default.handlebars-\u003e17-\u003e940"],"en":"Type","cs":"Typ"},{"xloc":["default.handlebars-\u003e17-\u003e246"],"en":"Name (optional)","cs":"Jméno (volitelné)","fr":"Nom: (optionnel)"},{"xloc":["default.handlebars-\u003e17-\u003e843"],"en":"Spanish (Panama)"},{"xloc":["default.handlebars-\u003e17-\u003e539"],"en":"Select a new group for this device","cs":"Vyber novou skupinu pro toto zařízení"},{"xloc":["default.handlebars-\u003e17-\u003e381"],"en":"Select a node to place"},{"xloc":["default.handlebars-\u003e17-\u003e70"],"en":"Gateway MAC","cs":"MAC brány","fr":"Passerelle MAC"},{"xloc":["default-mobile.handlebars-\u003edialog-\u003e3-\u003edialog3-\u003edeskkeys-\u003e3"],"en":"Tab"},{"xloc":["default.handlebars-\u003e17-\u003e1146"],"en":"User + Files","cs":"Uživatel + Soubory"},{"xloc":["default.handlebars-\u003e17-\u003e934","default-mobile.handlebars-\u003e9-\u003e270"],"en":"Unknown #{0}","fr":" #{0} Inconnue"},{"xloc":["default.handlebars-\u003e17-\u003e537","default.handlebars-\u003e17-\u003e1018","default.handlebars-\u003e17-\u003e546","default-mobile.handlebars-\u003e9-\u003e217","default.handlebars-\u003e17-\u003e360","default-mobile.handlebars-\u003e9-\u003e284"],"en":"Confirm"},{"xloc":["default.handlebars-\u003e17-\u003e815"],"en":"Romanian","fr":"Roumain"},{"xloc":["default.handlebars-\u003e17-\u003e321"],"en":"Device is in hibernating state (S4)."},{"xloc":["default.handlebars-\u003e17-\u003e1196"],"en":"No server rights"},{"xloc":["default.handlebars-\u003e17-\u003e603"],"en":"Extended ASCII"},{"xloc":["default.handlebars-\u003e17-\u003e155","default.handlebars-\u003e17-\u003e341","default-mobile.handlebars-\u003e9-\u003e121"],"en":"Relay"},{"xloc":["default.handlebars-\u003e17-\u003e1150"],"en":"Notify {0}"},{"xloc":["default.handlebars-\u003e17-\u003e227"],"en":"Setup CIRA"},{"xloc":["default.handlebars-\u003e17-\u003e533"],"en":"Are you sure you want to uninstall the selected {0} agents?"},{"xloc":["default-mobile.handlebars-\u003etopMenu-\u003e3","default.handlebars-\u003econtainer-\u003etopbar-\u003e1-\u003e1-\u003eMainMenuSpan-\u003e1-\u003e0-\u003eMainMenuMyAccount","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep2-\u003e1"],"en":"My Account","cs":"Můj účet","fr":"Mon Compte"},{"xloc":["default-mobile.handlebars-\u003e9-\u003e108","default.handlebars-\u003e17-\u003e5","default.handlebars-\u003e17-\u003e322","default-mobile.handlebars-\u003e9-\u003e101"],"en":"Hibernating","fr":"Hibernation"},{"xloc":["default.handlebars-\u003e17-\u003e64"],"en":"IPv4 address"},{"xloc":["default.handlebars-\u003etermShellContextMenuLinux-\u003ecxtermnorm-\u003e0"],"en":"Root Shell"},{"xloc":["default.handlebars-\u003e17-\u003e332","default-mobile.handlebars-\u003e9-\u003e116"],"en":"Device is in soft-off state (S5)"},{"xloc":["default.handlebars-\u003e17-\u003e81","default.handlebars-\u003e17-\u003e79"],"en":"MeshCentral Server Errors"},{"xloc":["default.handlebars-\u003e17-\u003e554"],"en":"Windows (64bit)"},{"xloc":["default.handlebars-\u003econtainer-\u003edialog-\u003edialogBody-\u003edialog7-\u003ed7meshkvm-\u003e5-\u003ed7bitmapscaling-\u003e5","default-mobile.handlebars-\u003edialog-\u003e3-\u003edialog7-\u003ed7meshkvm-\u003e5-\u003ed7bitmapscaling-\u003e5"],"en":"75%"},{"xloc":["default.handlebars-\u003e17-\u003e614","default.handlebars-\u003e17-\u003e1084","default-mobile.handlebars-\u003e9-\u003e239","default-mobile.handlebars-\u003e9-\u003e63"],"en":"Root","fr":"Racine"},{"xloc":["default.handlebars-\u003e17-\u003e127"],"en":"Sample IP range values\u003cbr /\u003e192.168.0.100\u003cbr /\u003e192.168.1.0/24\u003cbr /\u003e192.167.0.1-192.168.0.100"},{"xloc":["terms.handlebars-\u003econtainer-\u003ecolumn_l-\u003e35-\u003e1","terms-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e35-\u003e1"],"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/)\""},{"xloc":["default.handlebars-\u003e17-\u003e1051","default.handlebars-\u003e17-\u003e1065","default-mobile.handlebars-\u003e9-\u003e301","default-mobile.handlebars-\u003e9-\u003e314"],"en":"Wake Devices"},{"xloc":["default.handlebars-\u003e17-\u003e743"],"en":"Fijian"},{"xloc":["player.htm-\u003e3-\u003e8"],"en":"{0} to {1}"},{"xloc":["default.handlebars-\u003e17-\u003e356"],"en":"Delete devices"},{"xloc":["default.handlebars-\u003e17-\u003e1162","default.handlebars-\u003e17-\u003e1167"],"en":"userlist.csv"},{"xloc":["default.handlebars-\u003e17-\u003e509"],"en":"Device group notes can be viewed and changed by other device group administrators."},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep1-\u003edevListToolbarSpan-\u003e1-\u003e0-\u003edevListToolbar","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep4-\u003e3-\u003e1-\u003e0-\u003e3-\u003e3"],"en":"Filter","cs":"Filtr","fr":"Filtre"},{"xloc":[],"en":"Session time","fr":"Temps de session"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep12-\u003etermTable-\u003e1-\u003e1-\u003e0-\u003e1-\u003e3","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep11-\u003edeskarea0-\u003edeskarea1-\u003e3"],"en":"AutoConnect"},{"xloc":["default.handlebars-\u003e17-\u003e46"],"en":"Architecture","cs":"Architektura","fr":"Architecture"},{"xloc":["default.handlebars-\u003econtainer-\u003edialog-\u003edialogBody-\u003edialog7-\u003ed7amtkvm-\u003e5-\u003ed7otherset-\u003e1","default-mobile.handlebars-\u003edialog-\u003e3-\u003edialog7-\u003ed7amtkvm-\u003e5-\u003e1-\u003e1"],"en":"Show Focus Tool"},{"xloc":["default.handlebars-\u003e17-\u003e852"],"en":"Swedish"},{"xloc":["login-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e1-\u003e1-\u003e0-\u003e1-\u003eresetpanel-\u003e1-\u003e7-\u003e1-\u003e0-\u003e1","login.handlebars-\u003econtainer-\u003ecolumn_l-\u003ecentralTable-\u003e1-\u003e0-\u003elogincell-\u003eresetpanel-\u003e1-\u003e7-\u003e1-\u003e0-\u003e1","login.handlebars-\u003e5-\u003e17","login-mobile.handlebars-\u003e5-\u003e17","login.handlebars-\u003econtainer-\u003ecolumn_l-\u003ecentralTable-\u003e1-\u003e0-\u003elogincell-\u003ecreatepanel-\u003e1-\u003e9-\u003e1-\u003e2-\u003enuEmail","login-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e1-\u003e1-\u003e0-\u003e1-\u003ecreatepanel-\u003e1-\u003e1-\u003e9-\u003e1-\u003e2-\u003e1"],"en":"Email:"},{"xloc":["default.handlebars-\u003e17-\u003e836"],"en":"Spanish (Dominican Republic)"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep41-\u003e3-\u003e1-\u003ep41limitdropdown-\u003e1"],"en":"Last 100","cs":"Posledních 100","fr":"100 dernières"},{"xloc":["default-mobile.handlebars-\u003e9-\u003e330","default.handlebars-\u003e17-\u003e1082"],"en":"Confirm removal of user {0}?"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep3-\u003e3-\u003e1-\u003e0-\u003e3-\u003ep3limitdropdown-\u003e3","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep16-\u003e3-\u003e1-\u003e0-\u003e5-\u003ep16limitdropdown-\u003e3","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep31-\u003e5-\u003e1-\u003e0-\u003e5-\u003ep31limitdropdown-\u003e3"],"en":"Last 120","cs":"Posledních 120","fr":"120 dernières"},{"xloc":["default.handlebars-\u003e17-\u003e690"],"en":"Arabic (Morocco)"},{"xloc":["default.handlebars-\u003e17-\u003e820"],"en":"Sango"},{"xloc":["default.handlebars-\u003e17-\u003e786"],"en":"Latin","fr":"Latin"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep2-\u003ep2AccountSecurity-\u003e1-\u003e0"],"en":"Account security","cs":"Nastavení bezpečnosti"},{"xloc":["login.handlebars-\u003econtainer-\u003ecolumn_l-\u003ewelcomeText-\u003e1"],"en":"MeshCentral","cs":"MeshCentral"},{"xloc":["default.handlebars-\u003e17-\u003e433","default-mobile.handlebars-\u003e9-\u003e173"],"en":"Not Activated (In)"},{"xloc":["default.handlebars-\u003e17-\u003e120"],"en":"Intel AMT CIRA connected"},{"xloc":["default.handlebars-\u003e17-\u003e751"],"en":"French (Switzerland)","fr":"Français (Suisse)"},{"xloc":["default.handlebars-\u003e17-\u003e566"],"en":"Tag1, Tag2, Tag3"},{"xloc":["agentinvite.handlebars-\u003econtainer-\u003ecolumn_l-\u003e5-\u003elinuxtab-\u003e9"],"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."},{"xloc":["default.handlebars-\u003e17-\u003e896"],"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\u0027est pas recommandé."},{"xloc":["default.handlebars-\u003e17-\u003e25"],"en":"{0} second{1} until disconnect","cs":"{0} sekund{1} do odpojení"},{"xloc":["default.handlebars-\u003e17-\u003e349"],"en":"Select an operation to perform on all selected devices. Actions will be performed only with proper rights."},{"xloc":["default.handlebars-\u003e17-\u003e191"],"en":"Add a new Intel® AMT computer by scanning the local network."},{"xloc":["default.handlebars-\u003e17-\u003e105"],"en":"No Keys Configured","cs":"Žádný klíč není zkonfigurován"},{"xloc":["default.handlebars-\u003e17-\u003e842"],"en":"Spanish (Nicaragua)"},{"xloc":["default.handlebars-\u003e17-\u003e18"],"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\u0027y a pas moyen de récupérer ce compte."},{"xloc":["login.handlebars-\u003econtainer-\u003ecolumn_l-\u003ecentralTable-\u003e1-\u003e0-\u003elogincell-\u003eloginpanel-\u003e1-\u003enewAccountDiv-\u003e1","login-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e1-\u003e1-\u003e0-\u003e1-\u003eloginpanel-\u003e1-\u003enewAccountDiv-\u003e1"],"en":"Create one","cs":"Vytvořit"},{"xloc":["default.handlebars-\u003e17-\u003e449"],"en":"Intel® Active Management Technology"},{"xloc":["default.handlebars-\u003e17-\u003e848"],"en":"Spanish (Uruguay)"},{"xloc":["default.handlebars-\u003e17-\u003e589"],"en":"SharedProcess"},{"xloc":["default.handlebars-\u003e17-\u003e631","default-mobile.handlebars-\u003e9-\u003e256"],"en":"Confirm move of 1 entrie to this location?"},{"xloc":["default.handlebars-\u003e17-\u003e278","default.handlebars-\u003e17-\u003e455","default.handlebars-\u003e17-\u003e43","default.handlebars-\u003e17-\u003e249"],"en":"Operating System","cs":"Operační systém","fr":"Système opérateur"},{"xloc":["default.handlebars-\u003e17-\u003e134","default.handlebars-\u003e17-\u003e274","default.handlebars-\u003e17-\u003e260"],"en":"1 month","cs":"1 měsíc","fr":"1 mois"},{"xloc":["agentinvite.handlebars-\u003econtainer-\u003ecolumn_l-\u003e3"],"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."},{"xloc":["default.handlebars-\u003e17-\u003e427","default-mobile.handlebars-\u003e9-\u003e167"],"en":"ARMv6l / ARMv7l / NoKVM"},{"xloc":["default.handlebars-\u003e17-\u003e1287","default.handlebars-\u003e17-\u003e139"],"en":"Plugin Action"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep13-\u003ep13toolbar-\u003e1-\u003e4-\u003e1-\u003e1-\u003ep13sortdropdown-\u003e3","default-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003ep5-\u003ep5myfiles-\u003ep5toolbar-\u003e1-\u003e2-\u003e1-\u003e1-\u003e1-\u003e0-\u003e3-\u003ep5sortdropdown-\u003e3","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep5-\u003ep5toolbar-\u003e1-\u003e2-\u003ep5filesubhead-\u003e1-\u003ep5sortdropdown-\u003e3","default-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003ep10-\u003ep10files-\u003ep13toolbar-\u003e1-\u003e4-\u003e1-\u003e1-\u003e1-\u003e0-\u003e3-\u003ep13sortdropdown-\u003e3"],"en":"Sort by size","cs":"Třídit podle velikosti","fr":"Trier par taille"},{"xloc":["default.handlebars-\u003e17-\u003e1242"],"en":"Delete User {0}","cs":"Smazat uživatele {0}"},{"xloc":["default.handlebars-\u003e17-\u003e100"],"en":"Clear Tokens"},{"xloc":["default.handlebars-\u003e17-\u003e1164","default.handlebars-\u003e17-\u003e1168"],"en":"userlist.json"},{"xloc":["default.handlebars-\u003e17-\u003e708"],"en":"Breton"},{"xloc":["default.handlebars-\u003e17-\u003e840"],"en":"Spanish (Honduras)"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep12-\u003ep12warning-\u003e3-\u003ep12warninga","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep11-\u003ep11warning-\u003e3-\u003ep11warninga"],"en":", click here to enable it.","cs":", zde kliknout pro aktivaci."},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep1-\u003edevListToolbarSpan-\u003e1-\u003e0-\u003e9-\u003edevListToolbarView-\u003eviewselect-\u003e1"],"en":"Columns","cs":"Buňky"},{"xloc":["default.handlebars-\u003e17-\u003e608","default.handlebars-\u003e17-\u003e599"],"en":"CR+LF"},{"xloc":["default.handlebars-\u003e17-\u003e61"],"en":"Copy name to clipboard","cs":"Zkopírovat jméno do schránky"},{"xloc":["default.handlebars-\u003e17-\u003e891"],"en":"To delete this account, type in the account password in both boxes below and hit ok."},{"xloc":["default-mobile.handlebars-\u003e9-\u003e194","default-mobile.handlebars-\u003e9-\u003e195","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep1-\u003edevListToolbarSpan-\u003e1-\u003e0-\u003e9-\u003edevListToolbarSort-\u003esortselect-\u003e7","default.handlebars-\u003e17-\u003e565","default-mobile.handlebars-\u003e9-\u003e222"],"en":"Tags","cs":"Tagy"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep1-\u003edevListToolbarSpan-\u003e1-\u003e0-\u003e9-\u003edevListToolbarSize"],"en":"Size","cs":"Velikost","fr":"Taille"},{"xloc":["default.handlebars-\u003e17-\u003e712"],"en":"Chechen"},{"xloc":["default.handlebars-\u003e17-\u003e609","default.handlebars-\u003e17-\u003e600"],"en":"LF"},{"xloc":["default.handlebars-\u003e17-\u003e1033"],"en":"Edit Device Group User Consent"},{"xloc":[],"en":"Disconnect All"},{"xloc":["default-mobile.handlebars-\u003edialog-\u003e3-\u003edialog3-\u003edeskkeys-\u003e11","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep11-\u003edeskarea0-\u003edeskarea4-\u003e3-\u003edeskkeys-\u003e9"],"en":"Win+L"},{"xloc":["default-mobile.handlebars-\u003edialog-\u003e3-\u003edialog3-\u003edeskkeys-\u003e17","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep11-\u003edeskarea0-\u003edeskarea4-\u003e3-\u003edeskkeys-\u003e15"],"en":"Win+R"},{"xloc":["default.handlebars-\u003e17-\u003e415","default-mobile.handlebars-\u003e9-\u003e155"],"en":"Linux Poky x86-32bit"},{"xloc":["default.handlebars-\u003e17-\u003e457"],"en":"Out of date","fr":"Périmé"},{"xloc":["default.handlebars-\u003e17-\u003e1265"],"en":"ServerStats.csv"},{"xloc":["agentinvite.handlebars-\u003econtainer-\u003ecolumn_l-\u003e5-\u003ewintab64-\u003e3-\u003ewin64url","agentinvite.handlebars-\u003econtainer-\u003ecolumn_l-\u003e5-\u003ewintab32-\u003e3-\u003ewin32url"],"en":"Download the software here"},{"xloc":["default.handlebars-\u003e17-\u003e1204","default.handlebars-\u003e17-\u003e1077"],"en":"User Identifier"},{"xloc":["default.handlebars-\u003e17-\u003e1285","default.handlebars-\u003e17-\u003e678"],"en":"Checking...","cs":"Kontrola..."},{"xloc":["default-mobile.handlebars-\u003e9-\u003e191","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep15-\u003econsoleTable-\u003e1-\u003e6-\u003e1-\u003e1-\u003e1-\u003e0-\u003ep15outputselecttd-\u003ep15outputselect-\u003e3","default.handlebars-\u003e17-\u003e157","default.handlebars-\u003e17-\u003e654","default.handlebars-\u003e17-\u003e653","default.handlebars-\u003e17-\u003e343","default.handlebars-\u003e17-\u003e470","default-mobile.handlebars-\u003e9-\u003e122"],"en":"MQTT"},{"xloc":["default-mobile.handlebars-\u003e9-\u003e306"],"en":"Add User to Mesh","fr":"Ajouter un utilisateur au groupe"},{"xloc":["default.handlebars-\u003e17-\u003e252"],"en":"Windows only"},{"xloc":[],"en":"Change the agent Java Script code module"},{"xloc":["terms.handlebars-\u003econtainer-\u003ecolumn_l-\u003e67-\u003e1-\u003e0","terms-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e67-\u003e1-\u003e0"],"en":"https://github.com/ryrych/rcarousel/blob/master/widget/license"},{"xloc":["default.handlebars-\u003e17-\u003e837"],"en":"Spanish (Ecuador)"},{"xloc":["player.htm-\u003ep11-\u003edeskarea0-\u003edeskarea1-\u003e1"],"en":"Toggle View Mode"},{"xloc":["default.handlebars-\u003e17-\u003e548"],"en":"Device Location"},{"xloc":["default.handlebars-\u003e17-\u003e222"],"en":"MeshCommander Script"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep40-\u003e3-\u003e1-\u003ep40time-\u003e3"],"en":"Last 8 hours","cs":"Posledních 8 hodin","fr":"8 dernières heures"},{"xloc":["default.handlebars-\u003e17-\u003e1239","default.handlebars-\u003e17-\u003e1176"],"en":"Force password reset on next login."},{"xloc":["default-mobile.handlebars-\u003e9-\u003e14"],"en":"Install \u003ca href=\\\"https://play.google.com/store/apps/details?id=com.google.android.apps.authenticator2\\\" rel=\\\"noreferrer noopener\\\" target=_blank\u003eGoogle Authenticator\u003c/a\u003e or a compatible application, use \u003ca href=\\\"\u0027 + message.url + \u0027\\\" rel=\\\"noreferrer noopener\\\" target=_blank\u003e this link\u003c/a\u003e or enter the secret below. Then, enter the current 6 digit token to activate 2-Step login."},{"xloc":["default.handlebars-\u003e17-\u003e578"],"en":"Remote Keyboard Entry","fr":"Entrée au clavier à distance"},{"xloc":["default.handlebars-\u003e17-\u003e651"],"en":", MQTT is online"},{"xloc":["default.handlebars-\u003e17-\u003e315"],"en":"Device is in sleep state (S1)."},{"xloc":["default.handlebars-\u003e17-\u003e310"],"en":"Add Mesh Agent","cs":"Přidat agenta"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep41-\u003e3-\u003e1-\u003ep41limitdropdown-\u003e5","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep3-\u003e3-\u003e1-\u003e0-\u003e3-\u003ep3limitdropdown-\u003e7","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep16-\u003e3-\u003e1-\u003e0-\u003e5-\u003ep16limitdropdown-\u003e7","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep31-\u003e5-\u003e1-\u003e0-\u003e5-\u003ep31limitdropdown-\u003e7"],"en":"Last 500","cs":"Posledních 500","fr":"500 dernières"},{"xloc":["default.handlebars-\u003e17-\u003e1072","default-mobile.handlebars-\u003e9-\u003e321"],"en":"Self Events Only"},{"xloc":["default.handlebars-\u003e17-\u003e1098"],"en":"{0}k in 1 file. {1}k maximum"},{"xloc":["default.handlebars-\u003e17-\u003e733"],"en":"English (Philippines)"},{"xloc":["default-mobile.handlebars-\u003e9-\u003e56"],"en":"Intel® AMT only"},{"xloc":["default.handlebars-\u003e17-\u003e649"],"en":"Agent is online","cs":"Agent je online"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep1-\u003edevListToolbarSpan-\u003e1-\u003e0-\u003e9-\u003edevListToolbarSort-\u003esortselect-\u003e3"],"en":"Power","cs":"Napájení"},{"xloc":["login.handlebars-\u003econtainer-\u003ecolumn_l-\u003ecentralTable-\u003e1-\u003e0-\u003elogincell-\u003etokenpanel-\u003e1-\u003e10","login.handlebars-\u003econtainer-\u003ecolumn_l-\u003ecentralTable-\u003e1-\u003e0-\u003elogincell-\u003eresettokenpanel-\u003e1-\u003e8","login.handlebars-\u003econtainer-\u003ecolumn_l-\u003ecentralTable-\u003e1-\u003e0-\u003elogincell-\u003ecreatepanel-\u003e1-\u003e12","login-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e1-\u003e1-\u003e0-\u003e1-\u003eresetpasswordpanel-\u003e1-\u003e10","login.handlebars-\u003econtainer-\u003ecolumn_l-\u003ecentralTable-\u003e1-\u003e0-\u003elogincell-\u003eresetpanel-\u003e1-\u003e10","login-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e1-\u003e1-\u003e0-\u003e1-\u003eresetpanel-\u003e1-\u003e10","login.handlebars-\u003econtainer-\u003ecolumn_l-\u003ecentralTable-\u003e1-\u003e0-\u003elogincell-\u003eresetpasswordpanel-\u003e1-\u003e10","login-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e1-\u003e1-\u003e0-\u003e1-\u003etokenpanel-\u003e1-\u003e10","login-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e1-\u003e1-\u003e0-\u003e1-\u003ecreatepanel-\u003e1-\u003e1-\u003e12","login-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e1-\u003e1-\u003e0-\u003e1-\u003eresettokenpanel-\u003e1-\u003e8"],"en":"Back to login"},{"xloc":["default.handlebars-\u003e17-\u003e78"],"en":"Check and click OK to start server self-update."},{"xloc":["default.handlebars-\u003e17-\u003e7","default.handlebars-\u003e17-\u003e326","default-mobile.handlebars-\u003e9-\u003e103","default-mobile.handlebars-\u003e9-\u003e110"],"en":"Present","fr":"Présent"},{"xloc":["default.handlebars-\u003e17-\u003e687"],"en":"Arabic (Kuwait)"},{"xloc":["default-mobile.handlebars-\u003edialog-\u003e3-\u003edialog3-\u003edeskkeys-\u003e19","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep11-\u003edeskarea0-\u003edeskarea4-\u003e3-\u003edeskkeys-\u003e17"],"en":"Alt-F4"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep31-\u003e3","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep16-\u003ep16title-\u003e3"],"en":"Events -","fr":"Événements -"},{"xloc":["default.handlebars-\u003e17-\u003e118","default.handlebars-\u003e17-\u003e498","default.handlebars-\u003e17-\u003e497"],"en":"Agent connected","cs":"Agent připojen"},{"xloc":["default-mobile.handlebars-\u003e9-\u003e296","default.handlebars-\u003e17-\u003e1046"],"en":"No Terminal Access"},{"xloc":["terms.handlebars-\u003e3-\u003e1","default.handlebars-\u003e17-\u003e13"],"en":"Welcome {0}.","fr":"Bienvenue {0}."},{"xloc":["login-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e1-\u003e1-\u003e0-\u003e1-\u003ecreatepanel-\u003e1-\u003e1-\u003e9-\u003e1-\u003enewAccountPass-\u003e1","login.handlebars-\u003econtainer-\u003ecolumn_l-\u003ecentralTable-\u003e1-\u003e0-\u003elogincell-\u003ecreatepanel-\u003e1-\u003e9-\u003e1-\u003enewAccountPass-\u003enuToken"],"en":"Creation Token:"},{"xloc":["default.handlebars-\u003e17-\u003e26"],"en":"{0} minute{1} until disconnect"},{"xloc":["default-mobile.handlebars-\u003e9-\u003e190"],"en":"Agent Relay"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep2-\u003ep2AccountActions-\u003e3-\u003e8","default.handlebars-\u003e17-\u003e1083","default.handlebars-\u003e17-\u003e885"],"en":"Notification Settings"},{"xloc":["default.handlebars-\u003e17-\u003e1114","default-mobile.handlebars-\u003e9-\u003e85"],"en":"Holding {0} entrie{1} for {2}"},{"xloc":[],"en":"Search for location","fr":"Recherche de lieu"},{"xloc":["player.htm-\u003e3-\u003e1"],"en":"Time","fr":"Temps"},{"xloc":["default.handlebars-\u003e17-\u003e1053","default-mobile.handlebars-\u003e9-\u003e303"],"en":"Show Only Own Events"},{"xloc":["default.handlebars-\u003e17-\u003e76","default.handlebars-\u003e17-\u003e929","default.handlebars-\u003e17-\u003e77"],"en":"MeshCentral Version"},{"xloc":["login-mobile.handlebars-\u003e5-\u003e21","login.handlebars-\u003e5-\u003e21","login-mobile.handlebars-\u003e5-\u003e25","login.handlebars-\u003e5-\u003e25"],"en":"Good Password","cs":"Dobré heslo","fr":"Bon mot de passe"},{"xloc":["default.handlebars-\u003e17-\u003e1254","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep40-\u003e3-\u003e1-\u003ep40type-\u003e3","default.handlebars-\u003e17-\u003e39"],"en":"Memory","cs":"Paměť","fr":"Mémoire"},{"xloc":[],"en":"Toggle what the return key will send"},{"xloc":["default.handlebars-\u003e17-\u003e403","default-mobile.handlebars-\u003e9-\u003e143"],"en":"Windows 32bit service"},{"xloc":["default.handlebars-\u003e17-\u003e540"],"en":"Select a new group for selected devices"},{"xloc":["default.handlebars-\u003e17-\u003e123"],"en":"Intel AMT not detected","fr":"Intel AMT non détecté"},{"xloc":["default.handlebars-\u003e17-\u003e1093"],"en":"{0} b"},{"xloc":["default.handlebars-\u003e17-\u003e477"],"en":"Log Event","cs":"Log udalostí"},{"xloc":["default.handlebars-\u003e17-\u003e561","default-mobile.handlebars-\u003e9-\u003e218"],"en":"Icon Selection","fr":"Sélection de l\u0027icôn"},{"xloc":["agentinvite.handlebars-\u003econtainer-\u003ecolumn_l-\u003e5-\u003e1-\u003etmacostab"],"en":"MacOS"},{"xloc":["default-mobile.handlebars-\u003e9-\u003e279","default.handlebars-\u003e17-\u003e984","default-mobile.handlebars-\u003e9-\u003e60","default.handlebars-\u003e17-\u003e922"],"en":"Partial Rights"},{"xloc":["default.handlebars-\u003econtainer-\u003edialog-\u003edialogBody-\u003edialog7-\u003ed7amtkvm-\u003e5-\u003ed7otherset-\u003e3","default-mobile.handlebars-\u003edialog-\u003e3-\u003edialog7-\u003ed7amtkvm-\u003e5-\u003e1-\u003e4"],"en":"Show Local Mouse Cursor"},{"xloc":["default.handlebars-\u003econtainer-\u003edialog-\u003edialogBody-\u003edialog7-\u003ed7meshkvm-\u003e7-\u003e1"],"en":"Frame rate","cs":"Obnovování"},{"xloc":["player.htm-\u003ep11-\u003edialog-\u003eidx_dlgButtonBar","default.handlebars-\u003econtainer-\u003edialog-\u003eidx_dlgButtonBar","default-mobile.handlebars-\u003e9-\u003e39","login-mobile.handlebars-\u003edialog-\u003eidx_dlgButtonBar","default.handlebars-\u003e17-\u003e927","default-mobile.handlebars-\u003edialog-\u003eidx_dlgButtonBar","default.handlebars-\u003e17-\u003e458","login.handlebars-\u003edialog-\u003eidx_dlgButtonBar"],"en":"OK"},{"xloc":["default.handlebars-\u003econtainer-\u003etopbar-\u003e1-\u003e1-\u003eServerSubMenuSpan-\u003eServerSubMenu-\u003e1-\u003e0-\u003eServerPlugins","default.handlebars-\u003econtainer-\u003etopbar-\u003e1-\u003e1-\u003eMainSubMenuSpan-\u003eMainSubMenu-\u003e1-\u003e0-\u003eMainDevPlugins"],"en":"Plugins","cs":"Pluginy"},{"xloc":["default.handlebars-\u003e17-\u003e581","default.handlebars-\u003e17-\u003e1020","default.handlebars-\u003e17-\u003e937","default-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003ep10-\u003ep10desktop-\u003edeskarea3-\u003edeskarea3x-\u003eDeskTools-\u003e5-\u003e1-\u003e1","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep11-\u003edeskarea0-\u003edeskarea3x-\u003eDeskTools-\u003edeskToolsArea-\u003eDeskToolsServiceTab-\u003edeskToolsServiceHeader-\u003e3","default.handlebars-\u003e17-\u003e910","default-mobile.handlebars-\u003e9-\u003e273","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep11-\u003edeskarea0-\u003edeskarea3x-\u003eDeskTools-\u003edeskToolsArea-\u003eDeskToolsProcessTab-\u003edeskToolsHeader-\u003e3","default.handlebars-\u003e17-\u003e35","default.handlebars-\u003e17-\u003e44","default.handlebars-\u003e17-\u003e58","default-mobile.handlebars-\u003e9-\u003e132","default-mobile.handlebars-\u003e9-\u003e53","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep42-\u003ep42tbl-\u003e1-\u003e0-\u003e2","default-mobile.handlebars-\u003e9-\u003e286","default.handlebars-\u003e17-\u003e1131","default.handlebars-\u003e17-\u003e1171"],"en":"Name","cs":"Jméno","fr":"Nom"},{"xloc":["default.handlebars-\u003e17-\u003e1067","default.handlebars-\u003e17-\u003e1044","default-mobile.handlebars-\u003e9-\u003e294","default-mobile.handlebars-\u003e9-\u003e316"],"en":"Remote View Only"},{"xloc":["default.handlebars-\u003e17-\u003e317"],"en":"Device is in sleep state (S2)."},{"xloc":["default.handlebars-\u003econtainer-\u003edialog-\u003edialogBody-\u003edialog7-\u003ed7amtkvm-\u003e5-\u003ed7otherset-\u003e5"],"en":"Local Keyboard Map"},{"xloc":[],"en":"Information about current core running on this agent","fr":"Informations sur le noyau en cours d\u0027exécution sur cet agent"},{"xloc":["default.handlebars-\u003e17-\u003e1128"],"en":"time, type, action, user, message"},{"xloc":["default.handlebars-\u003e17-\u003e286","default.handlebars-\u003e17-\u003e264"],"en":"Background only"},{"xloc":["default.handlebars-\u003e17-\u003e1253"],"en":"CPU load in the last 15 minutes"},{"xloc":["default-mobile.handlebars-\u003edialog-\u003e3-\u003edialog7-\u003ed7amtkvm-\u003e3-\u003ed7desktopmode-\u003e3","default.handlebars-\u003econtainer-\u003edialog-\u003edialogBody-\u003edialog7-\u003ed7amtkvm-\u003e3-\u003ed7desktopmode-\u003e3"],"en":"RLE16, Recommended","fr":"RLE16, recommandé"},{"xloc":["default-mobile.handlebars-\u003edialog-\u003e3-\u003edialog3-\u003edeskkeys-\u003e1","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep11-\u003edeskarea0-\u003edeskarea4-\u003e3-\u003edeskkeys-\u003e1"],"en":"Ctrl+Alt+Del"},{"xloc":["default.handlebars-\u003e17-\u003e1143"],"en":"Locked","cs":"Zamknuto","fr":"Verrouiller"},{"xloc":[],"en":"and its source can be downloaded from"},{"xloc":["default-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003ep5-\u003ep5myfiles-\u003ep5toolbar-\u003e1-\u003e2-\u003e1-\u003e1-\u003e1-\u003e0-\u003e3-\u003ep5sortdropdown-\u003e5","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep13-\u003ep13toolbar-\u003e1-\u003e4-\u003e1-\u003e1-\u003ep13sortdropdown-\u003e5","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep5-\u003ep5toolbar-\u003e1-\u003e2-\u003ep5filesubhead-\u003e1-\u003ep5sortdropdown-\u003e5","default-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003ep10-\u003ep10files-\u003ep13toolbar-\u003e1-\u003e4-\u003e1-\u003e1-\u003e1-\u003e0-\u003e3-\u003ep13sortdropdown-\u003e5"],"en":"Sort by date","fr":"Trier par date"},{"xloc":["default.handlebars-\u003econtainer-\u003edialog-\u003edialogBody-\u003edialog7-\u003ed7amtkvm-\u003e5-\u003e1"],"en":"Other Settings","fr":"Autres réglages"},{"xloc":["default.handlebars-\u003e17-\u003e697"],"en":"Arabic (Yemen)"},{"xloc":[],"en":"Edit"},{"xloc":["default-mobile.handlebars-\u003e9-\u003e12","default.handlebars-\u003e17-\u003e23"],"en":" - Reset in {0} hour{1}.","fr":"- Réinitialisation dans {0} heure {1}."},{"xloc":["player.htm-\u003e3-\u003e13"],"en":"Intel® AMT WSMAN"},{"xloc":["default.handlebars-\u003e17-\u003e711"],"en":"Chamorro"},{"xloc":["default.handlebars-\u003e17-\u003e1144","default.handlebars-\u003e17-\u003e1194"],"en":"Server Permissions"},{"xloc":["default.handlebars-\u003e17-\u003e839"],"en":"Spanish (Guatemala)"},{"xloc":["default.handlebars-\u003e17-\u003e492"],"en":"Putty"},{"xloc":["default.handlebars-\u003e17-\u003e20","default-mobile.handlebars-\u003e9-\u003e9","default.handlebars-\u003e17-\u003e21","default-mobile.handlebars-\u003e9-\u003e10"],"en":" - Reset on next login.","fr":"- Réinitialiser à la prochaine connexion."},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep1-\u003edevListToolbarSpan-\u003e1-\u003e0-\u003edevMapToolbar","default.handlebars-\u003e17-\u003e378"],"en":"Search","fr":"Chercher"},{"xloc":["default.handlebars-\u003econtainer-\u003edialog-\u003edialogBody-\u003edialog3-\u003ed3upload-\u003ed3uploadMode-\u003e1"],"en":"Local file upload"},{"xloc":["default-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003ep10-\u003ep10files-\u003ep13toolbar-\u003e1-\u003e4-\u003e1-\u003e1-\u003e1-\u003e0-\u003e3-\u003ep13sortdropdown-\u003e9","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep5-\u003ep5toolbar-\u003e1-\u003e2-\u003ep5filesubhead-\u003e1-\u003ep5sortdropdown-\u003e9","default-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003ep5-\u003ep5myfiles-\u003ep5toolbar-\u003e1-\u003e2-\u003e1-\u003e1-\u003e1-\u003e0-\u003e3-\u003ep5sortdropdown-\u003e9","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep13-\u003ep13toolbar-\u003e1-\u003e4-\u003e1-\u003e1-\u003ep13sortdropdown-\u003e9"],"en":"Descend by size"},{"xloc":["default.handlebars-\u003e17-\u003e1280"],"en":"CIRA Server"},{"xloc":["default.handlebars-\u003e17-\u003e580"],"en":"Remote Clipboard","fr":"Presse-papier à distance"},{"xloc":["default.handlebars-\u003e17-\u003e650"],"en":"Agent is offline"},{"xloc":["default.handlebars-\u003e17-\u003e662"],"en":"Soft disconnect agent"},{"xloc":["agentinvite.handlebars-\u003econtainer-\u003ecolumn_l-\u003e5-\u003e1-\u003etlinuxtab","agentinvite.handlebars-\u003econtainer-\u003ecolumn_l-\u003e5-\u003elinuxtab-\u003e1"],"en":"Linux"},{"xloc":[],"en":"Cut","cs":"Vyjmout"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep1-\u003edevListToolbarSpan-\u003e1-\u003e0-\u003e9-\u003edevListToolbarView"],"en":"View","fr":"Vue"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep1-\u003edevListToolbarSpan-\u003e1-\u003e0-\u003ekvmListToolbar-\u003e5"],"en":"Automatic connect","fr":"Connexion automatique"},{"xloc":["default.handlebars-\u003e17-\u003e1259"],"en":"Users","fr":"Utilisateurs"},{"xloc":["login.handlebars-\u003econtainer-\u003ecolumn_l-\u003ecentralTable-\u003e1-\u003e0-\u003elogincell-\u003ecreatepanel-\u003e1-\u003e9-\u003e1-\u003ecreatePanelHint-\u003enuHint","login-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e1-\u003e1-\u003e0-\u003e1-\u003eresetpasswordpanel-\u003e1-\u003e7-\u003e1-\u003eresetpasswordpanelHint-\u003ernuHint","login.handlebars-\u003econtainer-\u003ecolumn_l-\u003ecentralTable-\u003e1-\u003e0-\u003elogincell-\u003eresetpasswordpanel-\u003e1-\u003e7-\u003e1-\u003eresetpasswordpanelHint-\u003ernuHint"],"en":"Password Hint:"},{"xloc":["default.handlebars-\u003e17-\u003e770"],"en":"Icelandic","fr":"Islandais"},{"xloc":["default-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003ep10-\u003ep10files-\u003ep13toolbar-\u003e1-\u003e4-\u003e1-\u003e1-\u003e1-\u003e0-\u003e3-\u003ep13sortdropdown-\u003e1","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep13-\u003ep13toolbar-\u003e1-\u003e4-\u003e1-\u003e1-\u003ep13sortdropdown-\u003e1","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep11-\u003edeskarea0-\u003edeskarea3x-\u003eDeskTools-\u003edeskToolsArea-\u003eDeskToolsProcessTab-\u003edeskToolsHeader","default-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003ep5-\u003ep5myfiles-\u003ep5toolbar-\u003e1-\u003e2-\u003e1-\u003e1-\u003e1-\u003e0-\u003e3-\u003ep5sortdropdown-\u003e1","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep11-\u003edeskarea0-\u003edeskarea3x-\u003eDeskTools-\u003edeskToolsArea-\u003eDeskToolsServiceTab-\u003edeskToolsServiceHeader","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep5-\u003ep5toolbar-\u003e1-\u003e2-\u003ep5filesubhead-\u003e1-\u003ep5sortdropdown-\u003e1"],"en":"Sort by name","cs":"Třídit podle jména","fr":"Trier par nom"},{"xloc":["default.handlebars-\u003e17-\u003e776"],"en":"Japanese","fr":"Japonais"},{"xloc":["default.handlebars-\u003e17-\u003e243"],"en":"Add Intel® AMT CIRA device"},{"xloc":["default.handlebars-\u003e17-\u003e75"],"en":"Latest Version","fr":"Dernière version"},{"xloc":["default.handlebars-\u003e17-\u003e930","default.handlebars-\u003e17-\u003e932","default.handlebars-\u003e17-\u003e550","default.handlebars-\u003e17-\u003e666","default-mobile.handlebars-\u003e9-\u003e28"],"en":"Loading...","fr":"Chargement..."},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep2-\u003ep2AccountSecurity-\u003e3-\u003emanageOtp-\u003e1-\u003e0","default-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003ep3-\u003ep3info-\u003e1-\u003ep3AccountActions-\u003e3-\u003emanageOtp-\u003e0"],"en":"Manage backup codes"},{"xloc":["messenger.handlebars-\u003e13-\u003e8"],"en":"Error: No connection key specified."},{"xloc":["player.htm-\u003ep11-\u003edeskarea0-\u003edeskarea4-\u003e3-\u003ePlaySpeed-\u003e7"],"en":"2x Speed","cs":"2x rychlost","fr":"2x vitesse"},{"xloc":["default.handlebars-\u003e17-\u003e32","default.handlebars-\u003e17-\u003e45","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep42-\u003ep42tbl-\u003e1-\u003e0-\u003e5","default.handlebars-\u003e17-\u003e37"],"en":"Version","fr":"Version"},{"xloc":["default.handlebars-\u003e17-\u003e460"],"en":"Active User{0}"},{"xloc":["default-mobile.handlebars-\u003e9-\u003e196","default.handlebars-\u003e17-\u003e482"],"en":"Delete Device","cs":"Smazat zařízení"},{"xloc":["login-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e1-\u003e1-\u003e0-\u003e1-\u003eresetpanel-\u003e1-\u003e7-\u003e1-\u003e2-\u003e1-\u003e1","login.handlebars-\u003econtainer-\u003ecolumn_l-\u003ecentralTable-\u003e1-\u003e0-\u003elogincell-\u003eresetpanel-\u003e1-\u003e7-\u003e1-\u003e2-\u003e1-\u003e1"],"en":"Reset Account","cs":"Reset účtu","fr":"Réinitialiser le Compte"},{"xloc":["default-mobile.handlebars-\u003e9-\u003e236","default-mobile.handlebars-\u003e9-\u003e237","default-mobile.handlebars-\u003e9-\u003e238"],"en":"\\\\"},{"xloc":["default.handlebars-\u003e17-\u003e480","default.handlebars-\u003e17-\u003e543","default.handlebars-\u003e17-\u003e542"],"en":"Change Group","cs":"Změnit skupinu"},{"xloc":["default.handlebars-\u003e17-\u003e443","default-mobile.handlebars-\u003e9-\u003e180"],"en":"TLS","fr":"TLS"},{"xloc":["default.handlebars-\u003e17-\u003e596"],"en":"DeskControl"},{"xloc":["default.handlebars-\u003e17-\u003e790"],"en":"FYRO Macedonian","fr":"ARY Macédonien"},{"xloc":["default.handlebars-\u003e17-\u003e419","default-mobile.handlebars-\u003e9-\u003e159"],"en":"Linux NoKVM x86-32bit"},{"xloc":["default.handlebars-\u003e17-\u003e490"],"en":"RDP"},{"xloc":["default-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003ep3-\u003ep3info-\u003e1-\u003ep3createMeshLink1-\u003e1","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep2-\u003ep2createMeshLink1-\u003e1"],"en":"New","fr":"Nouveau"},{"xloc":["default.handlebars-\u003e17-\u003e748"],"en":"French (France)","fr":"Français (France)"},{"xloc":["error404-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e1-\u003e0","error404.handlebars-\u003econtainer-\u003ecolumn_l-\u003e1-\u003e0"],"en":"404"},{"xloc":["default.handlebars-\u003e17-\u003e10","default.handlebars-\u003e17-\u003e185","default-mobile.handlebars-\u003e9-\u003e3","default.handlebars-\u003e17-\u003e176","default.handlebars-\u003e17-\u003e179"],"en":"Setup...","fr":"Traitement..."},{"xloc":["default.handlebars-\u003e17-\u003e102","default-mobile.handlebars-\u003e9-\u003e26"],"en":"Manage Backup Codes"},{"xloc":["default.handlebars-\u003e17-\u003e301"],"en":"Copy MacOS agent URL to clipboard","cs":"Kopírovat odkaz pro MacOS agenta do schránky"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep1-\u003edevListToolbarSpan-\u003e1-\u003e0-\u003edevListToolbar-\u003e7-\u003e1"],"en":"OS Name","cs":"Jméno operačního systému","fr":"Nom du système"},{"xloc":["default.handlebars-\u003e17-\u003e686"],"en":"Arabic (Jordan)"},{"xloc":["default-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003ep3-\u003ep3info-\u003e1-\u003ep3AccountActions-\u003e1-\u003e0","default.handlebars-\u003e17-\u003e907","default.handlebars-\u003e17-\u003e905","default-mobile.handlebars-\u003e9-\u003e126","default.handlebars-\u003e17-\u003e383","default.handlebars-\u003e17-\u003e385","default-mobile.handlebars-\u003e9-\u003e49","default-mobile.handlebars-\u003e9-\u003e128","default-mobile.handlebars-\u003e9-\u003e51"],"en":"Account Security"},{"xloc":[],"en":"Backspace","fr":"Retour arrière"},{"xloc":["default.handlebars-\u003e17-\u003e766"],"en":"Haitian","fr":"Haïtien"},{"xloc":["default.handlebars-\u003e17-\u003e1260"],"en":"User Sessions"},{"xloc":["default.handlebars-\u003econtextMenu-\u003ecxmdesktop"],"en":"Multi-Desktop","fr":"Multi-bureau"},{"xloc":["default.handlebars-\u003econtainer-\u003edialog-\u003edialogBody-\u003edialog3-\u003ed3upload-\u003ed3uploadMode-\u003e3"],"en":"Server file selection"},{"xloc":["default.handlebars-\u003e17-\u003e1200"],"en":"Restrictions","cs":"Omezení","fr":"Restrictions"},{"xloc":["default.handlebars-\u003e17-\u003e630","default-mobile.handlebars-\u003e9-\u003e255"],"en":"Confirm move of {0} entries\u0027s to this location?"},{"xloc":["player.htm-\u003e3-\u003e9","default.handlebars-\u003e17-\u003e202","default.handlebars-\u003e17-\u003e562","default-mobile.handlebars-\u003e9-\u003e219"],"en":"Device Name"},{"xloc":["login-mobile.handlebars-\u003e5-\u003e11","login.handlebars-\u003e5-\u003e11"],"en":"Unable to sent email."},{"xloc":["default.handlebars-\u003e17-\u003e584","default-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003ep10-\u003ep10desktop-\u003edeskarea3-\u003edeskarea3x-\u003eDeskTools-\u003e5-\u003e1-\u003e0","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep11-\u003edeskarea0-\u003edeskarea3x-\u003eDeskTools-\u003edeskToolsArea-\u003eDeskToolsProcessTab-\u003edeskToolsHeader-\u003e1"],"en":"PID"},{"xloc":["default-mobile.handlebars-\u003e9-\u003e68"],"en":"{0}k left","cs":"{0}k zbývá"},{"xloc":["default.handlebars-\u003e17-\u003e805"],"en":"Oromo"},{"xloc":["default.handlebars-\u003e17-\u003e1275","default.handlebars-\u003e17-\u003e1274"],"en":"Web Server","fr":"Serveur Web"},{"xloc":["default.handlebars-\u003e17-\u003e505","default.handlebars-\u003e17-\u003e47"],"en":"Last seen:","cs":"Naposledy spatřen:","fr":"Dernière connexion:"},{"xloc":["default.handlebars-\u003e17-\u003e430","default-mobile.handlebars-\u003e9-\u003e170"],"en":"FreeBSD x86-64"},{"xloc":["terms-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e27-\u003e1","terms.handlebars-\u003econtainer-\u003ecolumn_l-\u003e27-\u003e1"],"en":"Copyright (c) 1998-2011 The OpenSSL Project. All rights reserved."},{"xloc":["default.handlebars-\u003e17-\u003e558"],"en":"Linux ARM, Raspberry Pi (32bit)"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep12-\u003etermTable-\u003e1-\u003e1-\u003e6-\u003e1-\u003e1-\u003eterminalSizeDropDown-\u003etermSizeList-\u003e0"],"en":"80x25"},{"xloc":["default.handlebars-\u003e17-\u003e823"],"en":"Sindhi","fr":"Sindhi"},{"xloc":["default.handlebars-\u003e17-\u003e1096"],"en":"{0} Gb"},{"xloc":["default.handlebars-\u003e17-\u003e62"],"en":"MAC address","cs":"MAC adresa","fr":"Adresse MAC"},{"xloc":["default.handlebars-\u003e17-\u003e351"],"en":"Wake-up devices","cs":"Probudit zařízení"},{"xloc":["terms-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e51-\u003e1-\u003e0","terms.handlebars-\u003econtainer-\u003ecolumn_l-\u003e51-\u003e1-\u003e0"],"en":"4.jQuery User Interface - MIT License"},{"xloc":["default.handlebars-\u003e17-\u003e732"],"en":"English (New Zealand)"},{"xloc":["default.handlebars-\u003econtainer-\u003edialog-\u003edialogBody-\u003edialog7-\u003ed7meshkvm-\u003e5-\u003ed7bitmapscaling-\u003e13","default-mobile.handlebars-\u003edialog-\u003e3-\u003edialog7-\u003ed7meshkvm-\u003e5-\u003ed7bitmapscaling-\u003e13"],"en":"25%"},{"xloc":["default.handlebars-\u003e17-\u003e1209"],"en":"Creation"},{"xloc":["default.handlebars-\u003e17-\u003e1091"],"en":"{0} gigabytes remaining","cs":"{0} gigabytů zbývá"},{"xloc":["default.handlebars-\u003e17-\u003e336","default.handlebars-\u003e17-\u003e150","default.handlebars-\u003e17-\u003e463"],"en":"Intel® AMT CIRA is connected and ready for use."},{"xloc":["default.handlebars-\u003e17-\u003e92"],"en":"Authenticator application removed."},{"xloc":["login.handlebars-\u003econtainer-\u003ecolumn_l-\u003ecentralTable-\u003e1-\u003e0-\u003elogincell-\u003eloginpanel-\u003e1-\u003enewAccountDiv","login-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e1-\u003e1-\u003e0-\u003e1-\u003eloginpanel-\u003e1-\u003enewAccountDiv"],"en":"Don\u0027t have an account?","cs":"Nemáte účet?"},{"xloc":["default.handlebars-\u003e17-\u003e503","default.handlebars-\u003e17-\u003e121"],"en":"MQTT connected","cs":"MQTT připojeno"},{"xloc":["default.handlebars-\u003e17-\u003e691"],"en":"Arabic (Oman)"},{"xloc":["default.handlebars-\u003e17-\u003e208","default.handlebars-\u003e17-\u003e1224","default.handlebars-\u003e17-\u003e526","default-mobile.handlebars-\u003e9-\u003e211"],"en":"Security","cs":"Bezpečnost","fr":"Sécurité"},{"xloc":["default.handlebars-\u003e17-\u003e785"],"en":"Korean (South Korea)","fr":"Coréen (Corée du Sud)"},{"xloc":["default.handlebars-\u003e17-\u003e909"],"en":"Create a new device group using the options below.","cs":"Vytvořit novou skupinu zařízení podle nastavení níže."},{"xloc":["messenger.handlebars-\u003extop-\u003e3-\u003e0-\u003extitle","messenger.handlebars-\u003e13-\u003e2","messenger.handlebars-\u003e13-\u003e1"],"en":"MeshMessenger"},{"xloc":["default.handlebars-\u003e17-\u003e869"],"en":"Volapuk"},{"xloc":["player.htm-\u003ep11-\u003edeskarea0-\u003edeskarea4-\u003e1-\u003etimespan"],"en":"00:00:00"},{"xloc":["default.handlebars-\u003e17-\u003e672"],"en":"Type in a key name, select the OTP box and press the button on the YubiKey™."},{"xloc":["default.handlebars-\u003e17-\u003e874"],"en":"Zulu"},{"xloc":["default.handlebars-\u003e17-\u003e664"],"en":"Upload Mesh Agent Core"},{"xloc":["login.handlebars-\u003e5-\u003e34","login-mobile.handlebars-\u003e5-\u003e27","login-mobile.handlebars-\u003e5-\u003e23","login.handlebars-\u003e5-\u003e23","login.handlebars-\u003e5-\u003e27"],"en":"Password Policy"},{"xloc":[],"en":"Sort by state","cs":"Třídit podle stavu","fr":"Trier par état"},{"xloc":["default.handlebars-\u003econtainer-\u003edialog-\u003edialogBody-\u003edialog7-\u003ed7meshkvm-\u003e5-\u003ed7bitmapscaling-\u003e15","default-mobile.handlebars-\u003edialog-\u003e3-\u003edialog7-\u003ed7meshkvm-\u003e5-\u003ed7bitmapscaling-\u003e15"],"en":"12.5%"},{"xloc":["default.handlebars-\u003e17-\u003e1286"],"en":"Up to date"},{"xloc":["default.handlebars-\u003e17-\u003e1246"],"en":"Occured at {0}","fr":"Survenu à {0}"},{"xloc":["default.handlebars-\u003e17-\u003e30"],"en":"BIOS"},{"xloc":["player.htm-\u003ep11-\u003edeskarea0-\u003edeskarea4-\u003e3-\u003ePlaySpeed-\u003e5"],"en":"Normal Speed","cs":"Normalní rychlost","fr":"Vitesse normale"},{"xloc":["default.handlebars-\u003e17-\u003e753"],"en":"Friulian","fr":"Frioulan"},{"xloc":["default.handlebars-\u003e17-\u003e1102","default-mobile.handlebars-\u003e9-\u003e74","default-mobile.handlebars-\u003e9-\u003e331"],"en":"1 byte","cs":"1 byte","fr":"1 octet"},{"xloc":["terms.handlebars-\u003econtainer-\u003ecolumn_l-\u003e53-\u003e1-\u003e1","terms-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e53-\u003e1-\u003e1"],"en":"http://jqueryui.com/"},{"xloc":["default.handlebars-\u003e17-\u003e1141"],"en":"{0} sessions"},{"xloc":["default.handlebars-\u003e17-\u003e1234"],"en":"Change Email for {0}"},{"xloc":["terms.handlebars-\u003econtainer-\u003ecolumn_l-\u003e65-\u003e1-\u003e0","terms-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e65-\u003e1-\u003e0"],"en":"6.Rcarousel - MIT LIcense"},{"xloc":["agentinvite.handlebars-\u003econtainer-\u003ecolumn_l-\u003e1"],"en":"Remote Agent Installation","cs":"Instalace agenta pro vzdálený přístup","fr":"Installation de l\u0027agent"},{"xloc":["default.handlebars-\u003e17-\u003e204"],"en":"Same as device name","fr":"Identique au nom de l\u0027appareil"},{"xloc":["default.handlebars-\u003econtainer-\u003edialog-\u003edialogBody-\u003edialog7-\u003ed7meshkvm-\u003e5-\u003ed7bitmapscaling-\u003e11","default-mobile.handlebars-\u003edialog-\u003e3-\u003edialog7-\u003ed7meshkvm-\u003e5-\u003ed7bitmapscaling-\u003e11"],"en":"37.5%"},{"xloc":["default.handlebars-\u003e17-\u003e57"],"en":"Last interfaces update","cs":"Poslední změna rozhraní","fr":"Dernière mise à jour des interfaces"},{"xloc":["default.handlebars-\u003e17-\u003e791"],"en":"Malay"},{"xloc":["default.handlebars-\u003e17-\u003e389"],"en":"Console - ","cs":"Konzole - "},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep1-\u003edevListToolbarSpan-\u003e1-\u003e0-\u003e9-\u003edevListToolbarView-\u003eviewselect-\u003eviewselectmapoption"],"en":"Map","cs":"Mapa","fr":"Carte"},{"xloc":["default.handlebars-\u003e17-\u003e48"],"en":"Success","cs":"Úspěch","fr":"Succès"},{"xloc":["default.handlebars-\u003e17-\u003e245"],"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\u0027un à installer l\u0027agent 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-\u003e17-\u003e1133","default.handlebars-\u003e17-\u003e1078","default-mobile.handlebars-\u003e9-\u003e326"],"en":"Permissions","cs":"Práva","fr":"Permissions"},{"xloc":["default.handlebars-\u003e17-\u003e783"],"en":"Korean","fr":"Coréen"},{"xloc":["default.handlebars-\u003e17-\u003e764"],"en":"Greek","fr":"Grec"},{"xloc":["default.handlebars-\u003e17-\u003e1080","default-mobile.handlebars-\u003e9-\u003e328"],"en":"Device Group User"},{"xloc":["default-mobile.handlebars-\u003e9-\u003e94","default.handlebars-\u003e17-\u003e166"],"en":"No devices in this group","cs":"Žádné zařízení v této skupině","fr":"Aucun appareil dans ce groupe"},{"xloc":["default-mobile.handlebars-\u003e9-\u003e216"],"en":"Delete {0}?"},{"xloc":["default.handlebars-\u003e17-\u003e489"],"en":"Requires Microsoft ClickOnce support in your browser","fr":"Requiert Microsoft ClickOnce dans votre navigateur"},{"xloc":["default.handlebars-\u003econtextMenu-\u003ecxterminal","default.handlebars-\u003e17-\u003e1027","default.handlebars-\u003e17-\u003e367","default.handlebars-\u003econtainer-\u003etopbar-\u003e1-\u003e1-\u003eMainSubMenuSpan-\u003eMainSubMenu-\u003e1-\u003e0-\u003eMainDevTerminal"],"en":"Terminal","cs":"Terminál","fr":"Terminal"},{"xloc":["default.handlebars-\u003e17-\u003e1032","default.handlebars-\u003e17-\u003e1025","default.handlebars-\u003e17-\u003e1029"],"en":"Prompt for user consent","fr":"Demander le consentement de l\u0027utilisateur"},{"xloc":["default.handlebars-\u003e17-\u003e760"],"en":"German (Germany)"},{"xloc":["default.handlebars-\u003e17-\u003e439","default-mobile.handlebars-\u003e9-\u003e178"],"en":"CCM"},{"xloc":["default.handlebars-\u003e17-\u003e735"],"en":"English (Trinidad & Tobago)"},{"xloc":["login.handlebars-\u003econtainer-\u003ecolumn_l-\u003e1"],"en":"Welcome","cs":"Vítejte","fr":"Bienvenue"},{"xloc":["default.handlebars-\u003e17-\u003e692"],"en":"Arabic (Qatar)"},{"xloc":[],"en":"Toggle terminal emulation type","fr":"Basculer le type d\u0027émulation de terminal"},{"xloc":["login.handlebars-\u003econtainer-\u003ecolumn_l-\u003ewelcomeText"],"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."},{"xloc":["login-mobile.handlebars-\u003e5-\u003e9","login.handlebars-\u003e5-\u003e9"],"en":"Account not found."},{"xloc":["default.handlebars-\u003e17-\u003e512","default-mobile.handlebars-\u003e9-\u003e202"],"en":"Select an operation to perform on this device.","cs":"Vyber operaci na tomto zařízení."},{"xloc":["default.handlebars-\u003e17-\u003e521"],"en":"Day","cs":"Den"},{"xloc":["default.handlebars-\u003e17-\u003e613","default.handlebars-\u003e17-\u003e601","default.handlebars-\u003e17-\u003e570","default-mobile.handlebars-\u003e9-\u003e225","default-mobile.handlebars-\u003e9-\u003e235"],"en":", WebRTC"},{"xloc":["default.handlebars-\u003e17-\u003e104"],"en":"Remove","cs":"Odstranit","fr":"Retirer"},{"xloc":["terms-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e53-\u003e1","terms.handlebars-\u003econtainer-\u003ecolumn_l-\u003e53-\u003e1"],"en":"Copyright 2013 jQuery Foundation and other contributors,"},{"xloc":["default.handlebars-\u003e17-\u003e883"],"en":"Device disconnections."},{"xloc":["default-mobile.handlebars-\u003e9-\u003e50","default-mobile.handlebars-\u003e9-\u003e127"],"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.handlebars-\u003e17-\u003e1015"],"en":"This is not a secure policy as agents will be performing activation."},{"xloc":["default.handlebars-\u003e17-\u003e94"],"en":"2-step login activation removal failed."},{"xloc":["default.handlebars-\u003e17-\u003e215"],"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-\u003e17-\u003e352"],"en":"Sleep devices"},{"xloc":["default.handlebars-\u003e17-\u003e1237"],"en":"Password hint"},{"xloc":["default.handlebars-\u003e17-\u003e946"],"en":"Desktop Toolbar"},{"xloc":["default.handlebars-\u003e17-\u003e889"],"en":"Change your account email address here."},{"xloc":["default.handlebars-\u003e17-\u003e1225"],"en":"2nd factor authentication enabled","fr":"Authentification 2e facteur activée"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep40-\u003e3-\u003e1-\u003ep40time-\u003e9"],"en":"Last 30 days","fr":"30 derniers jours"},{"xloc":["default-mobile.handlebars-\u003e9-\u003e145","default.handlebars-\u003e17-\u003e405"],"en":"Linux 32bit"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep4-\u003e3-\u003e1-\u003e0-\u003e3-\u003e1"],"en":"Broadcast","fr":"Diffuser"},{"xloc":["default.handlebars-\u003e17-\u003e1187"],"en":"Server Backup"},{"xloc":["default.handlebars-\u003e17-\u003e876"],"en":"Changing the language will require a refresh of the page."},{"xloc":["default.handlebars-\u003e17-\u003e684"],"en":"Arabic (Egypt)"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep1-\u003edevListToolbarSpan-\u003e1-\u003e0-\u003e9-\u003edevListToolbarView-\u003eviewselect-\u003e3"],"en":"List","fr":"Liste"},{"xloc":["default.handlebars-\u003e17-\u003e1056"],"en":"Add Users to Device Group"},{"xloc":["login-mobile.handlebars-\u003e5-\u003e19","login.handlebars-\u003e5-\u003e19"],"en":"Password Hint"},{"xloc":["terms.handlebars-\u003econtainer-\u003ecolumn_l-\u003e69-\u003e1","terms-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e69-\u003e1"],"en":"Copyright (c) 2010 Wojciech \u0027RRH\u0027 Ryrych"},{"xloc":["login.handlebars-\u003edialog-\u003edialogHeader-\u003eid_dialogclose-\u003e0","login-mobile.handlebars-\u003edialog-\u003e1-\u003eid_dialogclose-\u003e0","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep1-\u003exdevicesmap-\u003exmapSearchResultsDlg-\u003exmapSearchResultsBck-\u003exmapSearchClose-\u003e0","default-mobile.handlebars-\u003edialog-\u003e1-\u003eid_dialogclose-\u003e0"],"en":"X"},{"xloc":["default.handlebars-\u003e17-\u003e1142"],"en":"Last login: {0}"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep1-\u003eNoMeshesPanel-\u003e1-\u003e1-\u003e0-\u003e3-\u003egetStarted1-\u003e1-\u003e0"],"en":"click here to create a device group"},{"xloc":["default.handlebars-\u003e17-\u003e1257"],"en":"Connection Count"},{"xloc":["default.handlebars-\u003e17-\u003e223"],"en":"Manual Username/Password","fr":"Nom d\u0027utilisateur / mot de passe manuel"},{"xloc":["default.handlebars-\u003e17-\u003e567","default-mobile.handlebars-\u003e9-\u003e224"],"en":"Edit Device"},{"xloc":["default.handlebars-\u003econtainer-\u003emasthead-\u003e5"],"en":"Click to view current notifications"},{"xloc":["default.handlebars-\u003e17-\u003e933"],"en":"servererrors.txt"},{"xloc":["default.handlebars-\u003e17-\u003e1264"],"en":"time, conn.agent, conn.users, conn.usersessions, conn.relaysession, conn.intelamt, mem.external, mem.heapused, mem.heaptotal, mem.rss"},{"xloc":["default.handlebars-\u003e17-\u003e374"],"en":"Place node here"},{"xloc":["default.handlebars-\u003econtainer-\u003edialog-\u003edialogBody-\u003edialog7-\u003ed7meshkvm-\u003e7-\u003ed7framelimiter-\u003e1","default-mobile.handlebars-\u003edialog-\u003e3-\u003edialog7-\u003ed7meshkvm-\u003e7-\u003ed7framelimiter-\u003e1"],"en":"Fast","cs":"Rychle","fr":"Vite"},{"xloc":["player.htm-\u003e3-\u003e7"],"en":"Addresses"},{"xloc":["default.handlebars-\u003e17-\u003e1266"],"en":"Core Server"},{"xloc":["default.handlebars-\u003e17-\u003e1186","default.handlebars-\u003e17-\u003e1039","default.handlebars-\u003e17-\u003e985","default-mobile.handlebars-\u003e9-\u003e307","default-mobile.handlebars-\u003e9-\u003e61","default.handlebars-\u003e17-\u003e923","default-mobile.handlebars-\u003e9-\u003e280","default-mobile.handlebars-\u003e9-\u003e289"],"en":"Full Administrator","fr":"Administrateur Complet"},{"xloc":["default.handlebars-\u003e17-\u003e857"],"en":"Teluga"},{"xloc":["default.handlebars-\u003e17-\u003e696"],"en":"Arabic (U.A.E.)"},{"xloc":["download.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e1"],"en":"Download","cs":"Stažení","fr":"Télécharger"},{"xloc":["default.handlebars-\u003e17-\u003e713"],"en":"Chinese"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep11-\u003edeskarea0-\u003edeskarea3x-\u003eDeskTools-\u003edeskToolsAreaTop-\u003edeskToolsTopTabService"],"en":"Services","cs":"Služby"},{"xloc":["default.handlebars-\u003e17-\u003e68"],"en":"IPv4 gateway"},{"xloc":["default.handlebars-\u003e17-\u003e479"],"en":"Move this device to a different device group"},{"xloc":["default.handlebars-\u003econtainer-\u003edialog-\u003edialogBody-\u003edialog3-\u003ed3upload-\u003e1"],"en":"File Selection","fr":"Sélection de fichier"},{"xloc":["default.handlebars-\u003e17-\u003e107"],"en":"Add Key"},{"xloc":["default.handlebars-\u003e17-\u003e755"],"en":"Gaelic (Irish)","fr":"Gaélique (irlandais)"},{"xloc":["default.handlebars-\u003e17-\u003e16","default-mobile.handlebars-\u003e9-\u003e7"],"en":"Unable to perform authentication"},{"xloc":["player.htm-\u003e3-\u003e15"],"en":"Protocol","cs":"Protokol","fr":"Protocole"},{"xloc":["default.handlebars-\u003e17-\u003e511"],"en":"Device Notification"},{"xloc":["default.handlebars-\u003e17-\u003e655"],"en":"console.txt"},{"xloc":["default.handlebars-\u003e17-\u003e1181"],"en":"Enter a comma seperate list of administrative realms names."},{"xloc":["default-mobile.handlebars-\u003e9-\u003e230"],"en":"All Displays"},{"xloc":["default.handlebars-\u003e17-\u003e11","default-mobile.handlebars-\u003e9-\u003e4"],"en":"Connected"},{"xloc":["login.handlebars-\u003econtainer-\u003ecolumn_l-\u003ecentralTable-\u003e1-\u003e0-\u003elogincell-\u003ecreatepanel-\u003e1-\u003e9-\u003e1","login-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e1-\u003e1-\u003e0-\u003e1-\u003ecreatepanel-\u003e1-\u003e1-\u003e9-\u003e1"],"en":"Enter the account creation token"},{"xloc":["default.handlebars-\u003e17-\u003e1009","default.handlebars-\u003e17-\u003e1004"],"en":"Client Initiated Remote Access"},{"xloc":["default.handlebars-\u003e17-\u003e156","default.handlebars-\u003e17-\u003e342","default.handlebars-\u003e17-\u003e469"],"en":"MQTT connection to the device is active."},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep6-\u003ep2ServerActions-\u003e3-\u003ep2ServerActionsRestore-\u003e0"],"en":"Restore server with backup","fr":"Restaurer le serveur avec sauvegarde"},{"xloc":["default.handlebars-\u003e17-\u003e1255"],"en":"free","fr":"libre"},{"xloc":["default.handlebars-\u003e17-\u003e972"],"en":"Install CIRA","fr":"Installer CIRA"},{"xloc":["default.handlebars-\u003e17-\u003e1169"],"en":"Broadcast a message to all connected users."},{"xloc":["default-mobile.handlebars-\u003e9-\u003e65","default.handlebars-\u003e17-\u003e1086","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep42-\u003ep42tbl-\u003e1-\u003e0-\u003e4"],"en":"Link","fr":"Lien"},{"xloc":["default.handlebars-\u003e17-\u003e833"],"en":"Spanish (Chile)"},{"xloc":["default.handlebars-\u003e17-\u003e898","default.handlebars-\u003e17-\u003e899","default-mobile.handlebars-\u003e9-\u003e42","default-mobile.handlebars-\u003e9-\u003e43"],"en":"New password:","cs":"Nové heslo:","fr":"Nouveau mot de passe:"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep11-\u003edeskarea0-\u003edeskarea4-\u003e3"],"en":"Clipboard"},{"xloc":["default-mobile.handlebars-\u003e9-\u003e293","default.handlebars-\u003e17-\u003e1043","default.handlebars-\u003e17-\u003e1062","default-mobile.handlebars-\u003e9-\u003e311"],"en":"Remote Control","fr":"Télécommande"},{"xloc":["default-mobile.handlebars-\u003e9-\u003e278","default.handlebars-\u003e17-\u003e983"],"en":"User Authorizations"},{"xloc":["default.handlebars-\u003e17-\u003e865"],"en":"Upper Sorbian"},{"xloc":["default.handlebars-\u003e17-\u003e970"],"en":"Add Users","fr":"Ajouter des utilisateurs"},{"xloc":["default.handlebars-\u003e17-\u003e729"],"en":"English (Canada)"},{"xloc":["default.handlebars-\u003e17-\u003e612","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep11-\u003edeskarea0-\u003edeskarea1-\u003e3-\u003edisconnectbutton1span","default.handlebars-\u003e17-\u003e958","default-mobile.handlebars-\u003e9-\u003e234","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep12-\u003etermTable-\u003e1-\u003e1-\u003e0-\u003e1-\u003e3-\u003edisconnectbutton2span"],"en":"Disconnect"},{"xloc":["agentinvite.handlebars-\u003econtainer-\u003ecolumn_l-\u003e5-\u003ewintab32-\u003e1"],"en":"Microsoft™ Windows 32bit"},{"xloc":["default.handlebars-\u003e17-\u003e476"],"en":"View notes about this device"},{"xloc":["default.handlebars-\u003e17-\u003e828"],"en":"Somani"},{"xloc":["default.handlebars-\u003e17-\u003e552"],"en":"MeshCentral Router"},{"xloc":["default.handlebars-\u003e17-\u003e209","default.handlebars-\u003e17-\u003e527","default-mobile.handlebars-\u003e9-\u003e212"],"en":"No TLS security","cs":"Žádné TLS","fr":"Pas de sécurité TLS"},{"xloc":["default.handlebars-\u003e17-\u003e594"],"en":"Restart","fr":"Redémarrer"},{"xloc":["default-mobile.handlebars-\u003e9-\u003e91"],"en":" / "},{"xloc":["default.handlebars-\u003e17-\u003e1099","default-mobile.handlebars-\u003e9-\u003e71"],"en":"Public Link","cs":"Veřejný odkaz","fr":"Lien public"},{"xloc":["default.handlebars-\u003e17-\u003e1193"],"en":"No Tools (MeshCmd/Router)","cs":"Žádné nástroje (MeshCmd/Router)"},{"xloc":["default.handlebars-\u003e17-\u003e648"],"en":"My Server Console","fr":"Console de mon serveur"},{"xloc":["agentinvite.handlebars-\u003econtainer-\u003ecolumn_l-\u003e5-\u003elinuxtab-\u003e3"],"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."},{"xloc":["default.handlebars-\u003e17-\u003e1126","default.handlebars-\u003e17-\u003e1130"],"en":"eventslist.json"},{"xloc":["default.handlebars-\u003e17-\u003e333","default-mobile.handlebars-\u003e9-\u003e117"],"en":"Device is present, but power state cannot be determined"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep11-\u003edeskarea0-\u003edeskarea3x-\u003eDeskTools-\u003edeskToolsAreaTop-\u003edeskToolsTopTabProcess","default-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003ep10-\u003ep10desktop-\u003edeskarea3-\u003edeskarea3x-\u003eDeskTools-\u003eDeskToolsBar"],"en":"Processes","cs":"Procesy","fr":"Processus"},{"xloc":["default.handlebars-\u003e17-\u003e253"],"en":"Apple MacOS only"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep3-\u003e3-\u003e1-\u003e0-\u003e3-\u003ep3limitdropdown-\u003e5","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep41-\u003e3-\u003e1-\u003ep41limitdropdown-\u003e3","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep16-\u003e3-\u003e1-\u003e0-\u003e5-\u003ep16limitdropdown-\u003e5","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep31-\u003e5-\u003e1-\u003e0-\u003e5-\u003ep31limitdropdown-\u003e5"],"en":"Last 250","cs":"Posledních 250","fr":"250 dernières"},{"xloc":["default.handlebars-\u003e17-\u003e363"],"en":"Remove node location"},{"xloc":["default.handlebars-\u003e17-\u003e742"],"en":"Farsi (Persian)","fr":"Farsi (Persan)"},{"xloc":["default.handlebars-\u003e17-\u003e268"],"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\u0027un à installer l\u0027agent de maillage en partageant un lien d\u0027invitation. Ce lien renvoie l\u0027utilisateur aux instructions d\u0027installation du groupe de périphériques \\\"{0}\\\". Le lien est public et aucun compte n\u0027est requis pour ce serveur."},{"xloc":["default.handlebars-\u003e17-\u003e900","default-mobile.handlebars-\u003e9-\u003e44"],"en":"Password hint:"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep11-\u003edeskarea0-\u003edeskarea4-\u003e3-\u003e9-\u003eDeskControlSpan","default-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003ep10-\u003ep10desktop-\u003edeskarea4-\u003e1-\u003e3-\u003e11-\u003eDeskControlSpan"],"en":"Input","cs":"Vstup"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep1-\u003edevListToolbarSpan-\u003e1-\u003e0-\u003e9-\u003edevListToolbarSort-\u003esortselect-\u003e5"],"en":"Device","cs":"Zařízení"},{"xloc":["default.handlebars-\u003e17-\u003e319"],"en":"Device is in deep sleep state (S3).","cs":"Zařízení je v hlubokém spánku (S3)."},{"xloc":["default.handlebars-\u003e17-\u003e416","default-mobile.handlebars-\u003e9-\u003e156"],"en":"MacOS 64bit"},{"xloc":["default-mobile.handlebars-\u003edialog-\u003e3-\u003edialog7-\u003ed7meshkvm-\u003e7-\u003ed7framelimiter-\u003e7","default.handlebars-\u003econtainer-\u003edialog-\u003edialogBody-\u003edialog7-\u003ed7meshkvm-\u003e7-\u003ed7framelimiter-\u003e7"],"en":"Very slow","cs":"Velmi pomalu","fr":"Très lent"},{"xloc":["default.handlebars-\u003e17-\u003e1076"],"en":"User Name","cs":"Uživatel","fr":"Nom"},{"xloc":["default.handlebars-\u003e17-\u003e510"],"en":"Open Page on Device"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep2-\u003ep2createMeshLink1","default-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003ep3-\u003ep3info-\u003e1-\u003ep3createMeshLink1"],"en":")"},{"xloc":["default.handlebars-\u003e17-\u003e814"],"en":"Rhaeto-Romanic"},{"xloc":["terms-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e61-\u003e1-\u003e0","terms.handlebars-\u003econtainer-\u003ecolumn_l-\u003e61-\u003e1-\u003e0"],"en":"https://github.com/kanaka/noVNC/blob/master/LICENSE.txt"},{"xloc":["default.handlebars-\u003e17-\u003e90"],"en":"Clear the secret from the application and try again. You only have a few minutes to enter the proper code."},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep30-\u003e1-\u003e1-\u003e0-\u003e1-\u003ep30title-\u003e1","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep15-\u003ep15title-\u003ep15BackButton","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep12-\u003ep12title-\u003ep12BackButton","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep11-\u003ep11title-\u003ep11deviceNameHeader-\u003ep11BackButton","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep14-\u003ep14title-\u003ep14BackButton","terms-mobile.handlebars-\u003econtainer-\u003efooter-\u003e1-\u003e1-\u003e0-\u003e3-\u003e1","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep43-\u003ep43BackButton","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep13-\u003ep13title-\u003ep13BackButton","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep20-\u003e3","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep10-\u003e1-\u003e1-\u003e0-\u003e1-\u003ep10title-\u003ep10BackButton","error404-mobile.handlebars-\u003econtainer-\u003efooter-\u003e1-\u003e1-\u003e0-\u003e3-\u003e1","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep16-\u003ep16title-\u003ep16BackButton","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep31-\u003e1","terms.handlebars-\u003econtainer-\u003efooter-\u003e1-\u003e1-\u003e0-\u003e3-\u003e0","error404.handlebars-\u003econtainer-\u003efooter-\u003e1-\u003e1-\u003e0-\u003e3-\u003e0","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep17-\u003ep17title-\u003ep17BackButton"],"en":"Back","cs":"Zpět","fr":"Retour"},{"xloc":["default.handlebars-\u003e17-\u003e1276"],"en":"Web Server Requests","fr":"Demandes de serveur Web"},{"xloc":["default.handlebars-\u003e17-\u003e250"],"en":"Send installation link","cs":"Odeslat odkaz na instalaci","fr":"Envoyer le lien d\u0027installation"},{"xloc":["default.handlebars-\u003e17-\u003e850"],"en":"Sutu"},{"xloc":["default.handlebars-\u003e17-\u003e506"],"en":"Add Device Event","fr":"Ajouter un événement"},{"xloc":["default.handlebars-\u003e17-\u003e1269"],"en":"Main Server Messages"},{"xloc":["default.handlebars-\u003e17-\u003e200","default.handlebars-\u003e17-\u003e982","default.handlebars-\u003e17-\u003e277"],"en":"Invite","cs":"Pozvat","fr":"Inviter"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep13-\u003ep13toolbar-\u003e1-\u003e0-\u003e1-\u003e1","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep12-\u003etermTable-\u003e1-\u003e1-\u003e0-\u003e1-\u003e1"],"en":"Server is recording this session"},{"xloc":["default.handlebars-\u003e17-\u003e607"],"en":"VT100+ (F10 = ESC+[OY)"},{"xloc":["default.handlebars-\u003e17-\u003e31","default.handlebars-\u003e17-\u003e34"],"en":"Vendor","fr":"Vendeur"},{"xloc":["player.htm-\u003e3-\u003e14"],"en":"Intel® AMT Redirection"},{"xloc":["default.handlebars-\u003e17-\u003e559"],"en":"Download MeshCmd"},{"xloc":["default.handlebars-\u003e17-\u003e331","default-mobile.handlebars-\u003e9-\u003e115"],"en":"Device is hibernating (S4)"},{"xloc":["default.handlebars-\u003e17-\u003e514","default-mobile.handlebars-\u003e9-\u003e99","default.handlebars-\u003e17-\u003e2","default.handlebars-\u003e17-\u003e3","default.handlebars-\u003e17-\u003e4","default-mobile.handlebars-\u003e9-\u003e100","default-mobile.handlebars-\u003e9-\u003e204","default-mobile.handlebars-\u003e9-\u003e98"],"en":"Sleep","cs":"Spánek","fr":"Endormir"},{"xloc":["default-mobile.handlebars-\u003e9-\u003e179","default.handlebars-\u003e17-\u003e441"],"en":"ACM"},{"xloc":["default.handlebars-\u003e17-\u003e287","default.handlebars-\u003e17-\u003e265"],"en":"Interactive only"},{"xloc":["default-mobile.handlebars-\u003e9-\u003e277"],"en":" Add User","fr":"Ajouter un utilisateur"},{"xloc":["default.handlebars-\u003e17-\u003e485"],"en":"Show device locations information"},{"xloc":["default.handlebars-\u003e17-\u003e1231"],"en":"{0} active sessions","fr":"{0} sessions actives"},{"xloc":["default.handlebars-\u003e17-\u003e703"],"en":"Basque"},{"xloc":["default.handlebars-\u003e17-\u003e82"],"en":"Download error log"},{"xloc":["default.handlebars-\u003e17-\u003e902","default-mobile.handlebars-\u003e9-\u003e46"],"en":"Change Password","cs":"Změnit heslo"},{"xloc":["default.handlebars-\u003e17-\u003e928"],"en":"Restore Server","fr":"Restaurer le serveur"},{"xloc":["default.handlebars-\u003e17-\u003e453","default-mobile.handlebars-\u003e9-\u003e186"],"en":"Agent Tag"},{"xloc":["default.handlebars-\u003e17-\u003e1199"],"en":"Partial rights"},{"xloc":["default.handlebars-\u003e17-\u003e1071","default-mobile.handlebars-\u003e9-\u003e320"],"en":"Limited Input"},{"xloc":["default.handlebars-\u003e17-\u003e702"],"en":"Azerbaijani"},{"xloc":["default.handlebars-\u003e17-\u003e989","default.handlebars-\u003e17-\u003e1019","default-mobile.handlebars-\u003e9-\u003e285","default-mobile.handlebars-\u003e9-\u003e282"],"en":"Delete Group"},{"xloc":["default-mobile.handlebars-\u003e9-\u003e55"],"en":"Software Agent Group","fr":"Groupe d\u0027agents logiciels"},{"xloc":["default.handlebars-\u003e17-\u003e169"],"en":"Add Device Group","cs":"Přidat skupinu zařízení","fr":"Ajouter un groupe"},{"xloc":["default.handlebars-\u003e17-\u003e1073","default-mobile.handlebars-\u003e9-\u003e304","default.handlebars-\u003e17-\u003e1054","default-mobile.handlebars-\u003e9-\u003e322"],"en":"Chat & Notify"},{"xloc":["default.handlebars-\u003e17-\u003e799"],"en":"Nepali","fr":"Népalais"},{"xloc":["default.handlebars-\u003e17-\u003e1163","default.handlebars-\u003e17-\u003e1125"],"en":"JSON Format","fr":"Format JSON"},{"xloc":["default.handlebars-\u003e17-\u003e1068","default-mobile.handlebars-\u003e9-\u003e317"],"en":"No Terminal","cs":"Žádný terminál"},{"xloc":["default.handlebars-\u003e17-\u003e749"],"en":"French (Luxembourg)","fr":"Français (Luxembourg)"},{"xloc":["default.handlebars-\u003econtainer-\u003edialog-\u003edialogBody-\u003edialog7-\u003ed7meshkvm-\u003e5-\u003ed7bitmapscaling-\u003e3","default-mobile.handlebars-\u003edialog-\u003e3-\u003edialog7-\u003ed7meshkvm-\u003e5-\u003ed7bitmapscaling-\u003e3"],"en":"87.5%"},{"xloc":["default.handlebars-\u003e17-\u003e744"],"en":"Finnish","fr":"Finlandais"},{"xloc":["default.handlebars-\u003e17-\u003e1074","default-mobile.handlebars-\u003e9-\u003e323"],"en":"Uninstall"},{"xloc":[],"en":"Upload","cs":"Nahrát","fr":"Télécharger"},{"xloc":["default.handlebars-\u003e17-\u003e809"],"en":"Portuguese (Brazil)"},{"xloc":["default.handlebars-\u003e17-\u003e276"],"en":"Copy link to clipboard"},{"xloc":["default-mobile.handlebars-\u003etopMenu-\u003e1","default-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003ep5-\u003e1-\u003e1-\u003e0-\u003e5-\u003e1-\u003e1","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep5-\u003e1","default.handlebars-\u003econtainer-\u003etopbar-\u003e1-\u003e1-\u003eMainMenuSpan-\u003e1-\u003e0-\u003eMainMenuMyFiles"],"en":"My Files","cs":"Moje soubory","fr":"Mes Dossiers"},{"xloc":["default.handlebars-\u003e17-\u003e681"],"en":"Arabic (Standard)"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep11-\u003edeskarea0-\u003edeskarea1-\u003e1-\u003e3","player.htm-\u003ep11-\u003edeskarea0-\u003edeskarea1-\u003e1-\u003e1"],"en":"⇲"},{"xloc":["default.handlebars-\u003e17-\u003e375"],"en":"open"},{"xloc":["login.handlebars-\u003econtainer-\u003ecolumn_l-\u003ecentralTable-\u003e1-\u003e0-\u003elogincell-\u003eloginpanel-\u003e1-\u003e7-\u003e1-\u003e4-\u003e1-\u003eshowPassHintLink-\u003e0","login-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e1-\u003e1-\u003e0-\u003e1-\u003eloginpanel-\u003e1-\u003e7-\u003e1-\u003e4-\u003e1-\u003eshowPassHintLink-\u003e0"],"en":"Show Hint","fr":"Dévoiler indice"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep40-\u003e3-\u003e1-\u003ep40time-\u003e7"],"en":"Last week","cs":"Poslední týden","fr":"Dernière semaine"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep1-\u003edevListToolbarSpan-\u003e1-\u003e0-\u003e9-\u003edevListToolbarSort"],"en":"Sort","cs":"Třídit","fr":"Trier"},{"xloc":["default.handlebars-\u003e17-\u003e1210"],"en":"Last Login","fr":"Dernière connexion"},{"xloc":["default.handlebars-\u003e17-\u003e1031","default.handlebars-\u003e17-\u003e1028","default.handlebars-\u003e17-\u003e1024"],"en":"Notify user","fr":"Notifier l\u0027utilisateur"},{"xloc":["default.handlebars-\u003e17-\u003e451"],"en":"Intel® Standard Manageability"},{"xloc":["terms.handlebars-\u003econtainer-\u003ecolumn_l-\u003e19-\u003e1","terms-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e19-\u003e1"],"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."},{"xloc":["default.handlebars-\u003e17-\u003e56","default.handlebars-\u003e17-\u003e54","default.handlebars-\u003e17-\u003e65","default.handlebars-\u003e17-\u003e69","default.handlebars-\u003e17-\u003e67"],"en":"Copy address to clipboard"},{"xloc":["default.handlebars-\u003e17-\u003e1195"],"en":"Locked account","fr":"Compte verrouillé"},{"xloc":["default-mobile.handlebars-\u003e9-\u003e102","default.handlebars-\u003e17-\u003e516","default.handlebars-\u003e17-\u003e6","default-mobile.handlebars-\u003e9-\u003e206"],"en":"Power off","cs":"Vypnout","fr":"Éteindre"},{"xloc":["default.handlebars-\u003e17-\u003e604"],"en":"Intel ASCII"},{"xloc":["default.handlebars-\u003e17-\u003e111"],"en":"Error, Unable to add key."},{"xloc":["default.handlebars-\u003e17-\u003e241"],"en":"Organization","fr":"Organisation"},{"xloc":["default.handlebars-\u003e17-\u003e803"],"en":"Occitan"},{"xloc":["default-mobile.handlebars-\u003e9-\u003e67"],"en":"{0}b left"},{"xloc":["terms.handlebars-\u003econtainer-\u003ecolumn_l-\u003e25-\u003e1-\u003e0","terms-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e25-\u003e1-\u003e0"],"en":"http://www.openssl.org/source/license.html"},{"xloc":["default.handlebars-\u003e17-\u003e736"],"en":"English (United Kingdom)","fr":"Anglais (Royaume Uni)"},{"xloc":["default.handlebars-\u003e17-\u003e515","default-mobile.handlebars-\u003e9-\u003e205"],"en":"Reset","fr":"Réinitialiser"},{"xloc":["default-mobile.handlebars-\u003e9-\u003e300","default.handlebars-\u003e17-\u003e1185","default.handlebars-\u003e17-\u003e1050","default.handlebars-\u003e17-\u003e1064","default-mobile.handlebars-\u003e9-\u003e313"],"en":"Server Files"},{"xloc":["default.handlebars-\u003e17-\u003e339","default.handlebars-\u003e17-\u003e153"],"en":"AMT"},{"xloc":["default.handlebars-\u003e17-\u003e162"],"en":"No devices are included in any groups, click on a device\\\u0027s \\\"Groups\\\" to add to a group."},{"xloc":["agentinvite.handlebars-\u003econtainer-\u003ecolumn_l-\u003e5-\u003ewintab64-\u003e1"],"en":"Microsoft™ Windows 64bit"},{"xloc":["default-mobile.handlebars-\u003e9-\u003e70"],"en":"{0}g left"},{"xloc":["default-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003ep3-\u003ep3info-\u003e1-\u003ep3AccountActions-\u003e7-\u003e5-\u003e0","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep2-\u003ep2AccountActions-\u003e3-\u003e13"],"en":"Change password","cs":"Změnit heslo"},{"xloc":["default.handlebars-\u003e17-\u003e800"],"en":"Norwegian","fr":"Norvégien"},{"xloc":["default.handlebars-\u003e17-\u003e670","default.handlebars-\u003e17-\u003e673"],"en":"Key Name","fr":"Nom de la clé"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep11-\u003edeskarea0-\u003edeskarea1-\u003e3-\u003econnectbutton1span","default-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003ep10-\u003ep10desktop-\u003edeskarea1-\u003e1-\u003e3","default-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003ep10-\u003ep10files-\u003ep13toolbar-\u003e1-\u003e0-\u003e1-\u003e3","default.handlebars-\u003e17-\u003e611","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep13-\u003ep13toolbar-\u003e1-\u003e0-\u003e1-\u003e3","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep12-\u003etermTable-\u003e1-\u003e1-\u003e0-\u003e1-\u003e3-\u003econnectbutton2span","default.handlebars-\u003e17-\u003e957","default-mobile.handlebars-\u003e9-\u003e233"],"en":"Connect","cs":"Připojit"},{"xloc":["default.handlebars-\u003e17-\u003e83"],"en":"Check and click OK to clear error log."},{"xloc":["terms.handlebars-\u003econtainer-\u003ecolumn_l-\u003e43-\u003e1","terms-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e43-\u003e1"],"en":"THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS\u0027\u0027 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":["default.handlebars-\u003e17-\u003e109"],"en":"Manage Security Keys"},{"xloc":["default.handlebars-\u003e17-\u003e595"],"en":"Service Details"},{"xloc":["default.handlebars-\u003e17-\u003e975","default.handlebars-\u003e17-\u003e193"],"en":"Perform Intel AMT client control mode (CCM) activation."},{"xloc":["default.handlebars-\u003e17-\u003e1001"],"en":"Password mismatch"},{"xloc":["default.handlebars-\u003e17-\u003e568"],"en":"DataChannel"},{"xloc":["default.handlebars-\u003e17-\u003e861"],"en":"Tswana"},{"xloc":["default.handlebars-\u003e17-\u003e531","default.handlebars-\u003e17-\u003e266"],"en":"Message"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep11-\u003edeskarea0-\u003edeskarea1-\u003e1-\u003e5"],"en":"↺"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep11-\u003edeskarea0-\u003edeskarea1-\u003e1-\u003e7"],"en":"↻"},{"xloc":["default.handlebars-\u003e17-\u003e1177"],"en":"Email is verified.","cs":"Email je ověřen."},{"xloc":["default.handlebars-\u003e17-\u003e347","default.handlebars-\u003e17-\u003e517"],"en":"Send MQTT Message","fr":"Envoyer un Message MQTT"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep12-\u003etermTable-\u003e1-\u003e1-\u003e6-\u003e1-\u003e1-\u003eterminalSizeDropDown-\u003etermSizeList-\u003e2"],"en":"Auto","fr":"Automatique"},{"xloc":["default.handlebars-\u003e17-\u003e80"],"en":"Server has no error log."},{"xloc":["default.handlebars-\u003econtainer-\u003etopbar-\u003e1-\u003e1-\u003eMainMenuSpan-\u003e1-\u003e0-\u003eMainMenuMyEvents","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep3-\u003e1"],"en":"My Events","cs":"Moje události","fr":"Mes Événements"},{"xloc":["default.handlebars-\u003econtainer-\u003etopbar-\u003e1-\u003e1-\u003eServerSubMenuSpan-\u003eServerSubMenu-\u003e1-\u003e0-\u003eServerStats"],"en":"Stats","cs":"Statistiky"},{"xloc":["default.handlebars-\u003e17-\u003e1139"],"en":"Chat"},{"xloc":["default.handlebars-\u003e17-\u003e438"],"en":"Intel AMT is activated in Client Control Mode"},{"xloc":["default-mobile.handlebars-\u003etopMenu-\u003elogoutMenuOption-\u003e0-\u003e0","default.handlebars-\u003e17-\u003e14","terms.handlebars-\u003e3-\u003e2"],"en":"Logout","cs":"Odhlásit","fr":"Déconnexion"},{"xloc":["default.handlebars-\u003e17-\u003e768"],"en":"Hindi"},{"xloc":["default.handlebars-\u003e17-\u003e879"],"en":"Dates & Time","cs":"Datum & čas"},{"xloc":["default.handlebars-\u003e17-\u003e417","default-mobile.handlebars-\u003e9-\u003e157"],"en":"ChromeOS"},{"xloc":["default.handlebars-\u003e17-\u003e597","default-mobile.handlebars-\u003e9-\u003e231"],"en":"Process Control"},{"xloc":["default.handlebars-\u003e17-\u003e522"],"en":"Download power events"},{"xloc":[],"en":"Tools","cs":"Nástroje","fr":"Outils"},{"xloc":["default-mobile.handlebars-\u003e9-\u003e253","default.handlebars-\u003e17-\u003e628"],"en":"Confirm copy of {0} entries\u0027s to this location?"},{"xloc":["default.handlebars-\u003e17-\u003e425","default-mobile.handlebars-\u003e9-\u003e165"],"en":"ARMv6l / ARMv7l"},{"xloc":["default-mobile.handlebars-\u003e9-\u003e267","default.handlebars-\u003e17-\u003e641"],"en":"Download File","cs":"Stáhnout soubor"},{"xloc":["default.handlebars-\u003e17-\u003e757"],"en":"Georgian","fr":"Géorgien"},{"xloc":["default.handlebars-\u003e17-\u003e536"],"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":["player.htm-\u003ep11-\u003edeskarea0-\u003edeskarea4-\u003e3-\u003ePlaySpeed-\u003e3"],"en":"1/2 Speed","fr":"1/2 vitesse"},{"xloc":["default.handlebars-\u003e17-\u003e295"],"en":"Settings File","fr":"Fichier de Paramètres"},{"xloc":["default.handlebars-\u003e17-\u003e143","default.handlebars-\u003e17-\u003e160"],"en":"Address","cs":"Adresa"},{"xloc":["default.handlebars-\u003e17-\u003e494"],"en":"WinSCP"},{"xloc":["login.handlebars-\u003e5-\u003e14","login-mobile.handlebars-\u003e5-\u003e14"],"en":"Login failed, check username and password."},{"xloc":["default.handlebars-\u003e17-\u003e598","default-mobile.handlebars-\u003e9-\u003e232"],"en":"Stop process #{0} \\\"{1}\\\"?"},{"xloc":["default.handlebars-\u003e17-\u003e244"],"en":"Invitation Type","fr":"Type d\u0027invitation"},{"xloc":["default-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003ep3-\u003ep3info-\u003e1-\u003ep3AccountActions-\u003e7-\u003e7-\u003e0","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep2-\u003ep2AccountActions-\u003e3-\u003e17"],"en":"Delete account","cs":"Smazat účet"},{"xloc":["default.handlebars-\u003e17-\u003e400","default-mobile.handlebars-\u003e9-\u003e169","default-mobile.handlebars-\u003e9-\u003e140","default.handlebars-\u003e17-\u003e429","default-mobile.handlebars-\u003e9-\u003e168","default.handlebars-\u003e17-\u003e73","default.handlebars-\u003e17-\u003e344","default.handlebars-\u003e17-\u003e72","default-mobile.handlebars-\u003e9-\u003e123","default.handlebars-\u003e17-\u003e428"],"en":"Unknown","fr":"Inconnue"},{"xloc":["default.handlebars-\u003e17-\u003e888","default-mobile.handlebars-\u003e9-\u003e33"],"en":"Email Verification"},{"xloc":["terms.handlebars-\u003econtainer-\u003ecolumn_l-\u003e23-\u003e1-\u003e0","terms-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e23-\u003e1-\u003e0"],"en":"2.OpenSSL – OpenSSL and SSLeay License"},{"xloc":["default.handlebars-\u003e17-\u003e585"],"en":"FileSystemDriver"},{"xloc":["default.handlebars-\u003e17-\u003e217"],"en":"Enter a range of IP addresses to scan for Intel AMT devices."},{"xloc":["default.handlebars-\u003e17-\u003e302"],"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\\\"."},{"xloc":["default.handlebars-\u003e17-\u003e1190"],"en":"Manage Users","fr":"Gérer les utilisateurs"},{"xloc":["default.handlebars-\u003e17-\u003e728"],"en":"English (Belize)"},{"xloc":["default.handlebars-\u003e17-\u003e1149"],"en":"Partial","fr":"Partiel"},{"xloc":["terms.handlebars-\u003econtainer-\u003ecolumn_l-\u003e41-\u003e1","terms-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e41-\u003e1"],"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/)\"."},{"xloc":["default.handlebars-\u003e17-\u003e40"],"en":"Capacity / Speed"},{"xloc":["default.handlebars-\u003e17-\u003e218"],"en":"IP Range"},{"xloc":["default.handlebars-\u003e17-\u003e124"],"en":"Intel AMT CIRA disconnected"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep0-\u003ep0message-\u003ep0span","default-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003ep0-\u003e1-\u003ep0message-\u003ep0span"],"en":"Server disconnected"},{"xloc":["default.handlebars-\u003e17-\u003e128"],"en":" with TLS.","fr":"avec TLS."},{"xloc":["default.handlebars-\u003e17-\u003e1123","default.handlebars-\u003e17-\u003e1161"],"en":"CSV Format"},{"xloc":["default.handlebars-\u003e17-\u003e504","default-mobile.handlebars-\u003e9-\u003e200"],"en":"MQTT channel connected"},{"xloc":["default.handlebars-\u003e17-\u003e1152"],"en":"Create many accounts at once by importing a JSON file with the following format:"},{"xloc":["default.handlebars-\u003e17-\u003e660"],"en":"Upload recovery core"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep2-\u003ep2noMeshFound","default-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003ep3-\u003ep3info-\u003e1-\u003ep3noMeshFound","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep1-\u003eNoMeshesPanel-\u003e1-\u003e1-\u003e0-\u003e3-\u003egetStarted2"],"en":"No device groups.","fr":"Aucun groupe d\u0027appareils."},{"xloc":["terms.handlebars-\u003econtainer-\u003ecolumn_l-\u003e17-\u003e1","terms-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e33-\u003e1","terms.handlebars-\u003econtainer-\u003ecolumn_l-\u003e33-\u003e1","terms-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e17-\u003e1"],"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."},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep42-\u003epluginRestartNotice-\u003e3-\u003e1"],"en":"Plugins have been altered, this may require agent core update."},{"xloc":["default.handlebars-\u003e17-\u003e1081","default-mobile.handlebars-\u003e9-\u003e329"],"en":"Remote Mesh User"},{"xloc":["default-mobile.handlebars-\u003e9-\u003e113","default.handlebars-\u003e17-\u003e329"],"en":"Device is in sleep state (S2)"},{"xloc":["error404-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e5-\u003e0-\u003e0","error404.handlebars-\u003econtainer-\u003ecolumn_l-\u003e5-\u003e0-\u003e0"],"en":"Go to main site","fr":"Aller sur le site principal"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep15-\u003econsoleTable-\u003e1-\u003e0-\u003e1-\u003e1"],"en":"Agent Action"},{"xloc":["default.handlebars-\u003e17-\u003e1048","default.handlebars-\u003e17-\u003e1070","default-mobile.handlebars-\u003e9-\u003e298","default-mobile.handlebars-\u003e9-\u003e319"],"en":"No Intel® AMT"},{"xloc":[],"en":"Activate microphone","fr":"Activer le microphone"},{"xloc":["default.handlebars-\u003e17-\u003e838"],"en":"Spanish (El Salvador)"},{"xloc":["login.handlebars-\u003econtainer-\u003etopbar-\u003euiMenuButton-\u003euiMenu","default.handlebars-\u003econtainer-\u003etopbar-\u003e1-\u003e1-\u003euiMenuButton-\u003euiMenu","agentinvite.handlebars-\u003econtainer-\u003etopbar-\u003euiMenuButton-\u003euiMenu","error404.handlebars-\u003econtainer-\u003etopbar-\u003euiMenuButton-\u003euiMenu","terms.handlebars-\u003econtainer-\u003etopbar-\u003euiMenuButton-\u003euiMenu"],"en":"Top bar interface"},{"xloc":["default.handlebars-\u003e17-\u003e1036"],"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.."},{"xloc":["login-mobile.handlebars-\u003e5-\u003e26","login-mobile.handlebars-\u003e5-\u003e22","login.handlebars-\u003e5-\u003e22","login.handlebars-\u003e5-\u003e26"],"en":"Weak Password","cs":"Slabé heslo","fr":"Mot de passe faible"},{"xloc":["default.handlebars-\u003e17-\u003e878"],"en":"Language","cs":"Jazyk","fr":"Langages"},{"xloc":["default.handlebars-\u003e17-\u003e496"],"en":"MQTT Login"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep4-\u003e3-\u003e1-\u003e0-\u003e3-\u003e1-\u003e3"],"en":"Download user information"},{"xloc":["default.handlebars-\u003e17-\u003e835"],"en":"Spanish (Costa Rica)"},{"xloc":[],"en":"Settings","cs":"Nastavení","fr":"Paramètres"},{"xloc":["default.handlebars-\u003e17-\u003e1097"],"en":"{0}k in {1} files. {2}k maximum"},{"xloc":["default.handlebars-\u003e17-\u003e936","default-mobile.handlebars-\u003e9-\u003e272"],"en":"Managed using a software agent","fr":"Géré à l\u0027aide d\u0027un agent logiciel"},{"xloc":["default.handlebars-\u003e17-\u003e1148"],"en":"Manager"},{"xloc":["message.handlebars-\u003econtainer-\u003epage_content-\u003efooter-\u003e1-\u003e1-\u003e0-\u003e3-\u003e1","default.handlebars-\u003econtainer-\u003efooter-\u003e3-\u003e3","login.handlebars-\u003econtainer-\u003efooter-\u003e3-\u003e1","login-mobile.handlebars-\u003econtainer-\u003efooter-\u003e1-\u003e1-\u003e0-\u003e3-\u003e1","download.handlebars-\u003econtainer-\u003epage_content-\u003efooter-\u003e1-\u003e1-\u003e0-\u003e3-\u003e1"],"en":"Terms & Privacy"},{"xloc":["default.handlebars-\u003e17-\u003e901"],"en":"Requirements: ","cs":"Požadavky: ","fr":"Exigences:"},{"xloc":["default.handlebars-\u003e17-\u003e979","default.handlebars-\u003e17-\u003e197"],"en":"Add a new computer to this mesh by installing the mesh agent."},{"xloc":["default-mobile.handlebars-\u003e9-\u003e20"],"en":"\u003cb style=color:red\u003e2-step login activation removal failed\u003c/b\u003e. Try again."},{"xloc":["default.handlebars-\u003e17-\u003e122"],"en":"Agent disconnected"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep12-\u003etermTable-\u003e1-\u003e1-\u003e6-\u003e1-\u003e1"],"en":"Send the selected special key"},{"xloc":["default.handlebars-\u003e17-\u003e33"],"en":"Motherboard","fr":"Carte mère"},{"xloc":["default.handlebars-\u003e17-\u003e811"],"en":"Punjabi (India)"},{"xloc":["default.handlebars-\u003e17-\u003e365"],"en":"General information","cs":"Obecné informace","fr":"Informations générales"},{"xloc":["agentinvite.handlebars-\u003econtainer-\u003ecolumn_l-\u003e5-\u003ewintab64-\u003e3","agentinvite.handlebars-\u003econtainer-\u003ecolumn_l-\u003e5-\u003ewintab32-\u003e3"],"en":", run it and press \"Install\" or \"Connect\".","cs":", spusťte soubor a zvolte \"Install\" nebo \"Connect\"."},{"xloc":["player.htm-\u003e3-\u003e12"],"en":"MeshCentral Desktop"},{"xloc":["login-mobile.handlebars-\u003e5-\u003e29","login.handlebars-\u003e5-\u003e29"],"en":"Maximum length of {0}","fr":"Longueur maximale de {0}"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep42-\u003ep42tbl-\u003e1-\u003e0-\u003e6"],"en":"Latest","fr":"Dernier"},{"xloc":["default.handlebars-\u003e17-\u003e704"],"en":"Bulgarian"},{"xloc":["default.handlebars-\u003e17-\u003e432","default-mobile.handlebars-\u003e9-\u003e172"],"en":"Not Activated (Pre)"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep12-\u003etermTable-\u003e1-\u003e1-\u003e6-\u003e1-\u003e3"],"en":"Paste text into the terminal","fr":"Coller du texte dans le terminal"},{"xloc":["default.handlebars-\u003e17-\u003e658"],"en":"Upload default server core"},{"xloc":["login.handlebars-\u003econtainer-\u003ecolumn_l-\u003ecentralTable-\u003e1-\u003e0-\u003elogincell-\u003etokenpanel-\u003e1-\u003e7-\u003e1-\u003e4-\u003e1-\u003e1","login-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e1-\u003e1-\u003e0-\u003e1-\u003etokenpanel-\u003e1-\u003e7-\u003e1-\u003e4-\u003e1-\u003e1","login-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e1-\u003e1-\u003e0-\u003e1-\u003eresettokenpanel-\u003e1-\u003e5-\u003e1-\u003e2-\u003e1-\u003e1","login.handlebars-\u003econtainer-\u003ecolumn_l-\u003ecentralTable-\u003e1-\u003e0-\u003elogincell-\u003eresettokenpanel-\u003e1-\u003e5-\u003e1-\u003e2-\u003e1-\u003e1"],"en":"Login"},{"xloc":["default.handlebars-\u003e17-\u003e297"],"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."},{"xloc":[],"en":"Activate camera & microphone","fr":"Activer caméra et microphone"},{"xloc":["default.handlebars-\u003e17-\u003e961"],"en":"Notifications"},{"xloc":["default.handlebars-\u003e17-\u003e856"],"en":"Tatar"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep0-\u003ep0message-\u003e2-\u003e0","default-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003ep0-\u003e1-\u003ep0message-\u003e2-\u003e0"],"en":"click to reconnect","cs":"klikni pro opětovné připojení"},{"xloc":["default.handlebars-\u003e17-\u003e716"],"en":"Chinese (Singapore)"},{"xloc":["messenger.handlebars-\u003eremoteVideo-\u003e1"],"en":"Remote","cs":"Vzdálený"},{"xloc":["default.handlebars-\u003e17-\u003e798"],"en":"Ndonga","fr":"Ndonga"},{"xloc":["default.handlebars-\u003e17-\u003e739"],"en":"Esperanto"},{"xloc":["default.handlebars-\u003e17-\u003e256","default.handlebars-\u003e17-\u003e270"],"en":"1 hour","cs":"1 hodina","fr":"1 heure"},{"xloc":["default.handlebars-\u003e17-\u003e679"],"en":"Afrikaans"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep19-\u003e1"],"en":"Plugins -","cs":"Pluginy -"},{"xloc":["messenger.handlebars-\u003e13-\u003e6"],"en":"Waiting for other user...","cs":"Čekání na ostatní uživatele..."},{"xloc":["default.handlebars-\u003e17-\u003e669"],"en":"Type in the name of the key to add."},{"xloc":["default.handlebars-\u003econtainer-\u003edialog-\u003edialogBody-\u003edialog7-\u003ed7amtkvm-\u003e3-\u003e1"],"en":"Image Encoding","cs":"Kódovaní obrazu"},{"xloc":["default.handlebars-\u003e17-\u003e355"],"en":"Move to device group","cs":"Přesunout do skupiny zařízení","fr":"Déplacer vers un groupe d\u0027appareils"},{"xloc":["default.handlebars-\u003e17-\u003e41"],"en":"{0} Mb, {1} Mhz"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep42-\u003e3-\u003e3"],"en":"Download Plugin"},{"xloc":["default.handlebars-\u003e17-\u003e19"],"en":"Two factor authentication"},{"xloc":["default-mobile.handlebars-\u003e9-\u003e8","default.handlebars-\u003e17-\u003e17"],"en":"Unable to connect web socket"},{"xloc":["default.handlebars-\u003e17-\u003e1104","default-mobile.handlebars-\u003e9-\u003e244","default.handlebars-\u003e17-\u003e619","default-mobile.handlebars-\u003e9-\u003e76"],"en":"New Folder","cs":"Nový adresář","fr":"Nouveau Dossier"},{"xloc":["default.handlebars-\u003e17-\u003e944"],"en":"Features","cs":"Funkce"},{"xloc":["default.handlebars-\u003e17-\u003e726"],"en":"English"},{"xloc":["default.handlebars-\u003e17-\u003e523"],"en":"7 Day Power State","cs":"7 denní statistika provozu"},{"xloc":["agentinvite.handlebars-\u003econtainer-\u003ecolumn_l-\u003e5-\u003elinuxtab"],"en":"Copy to clipboard","cs":"Zkopírovat do schránky"},{"xloc":["default.handlebars-\u003e17-\u003e1003"],"en":"Reactivate Intel® AMT"},{"xloc":["default-mobile.handlebars-\u003e9-\u003e295","default.handlebars-\u003e17-\u003e1045"],"en":"Limited Input Only"},{"xloc":["default.handlebars-\u003e17-\u003e844"],"en":"Spanish (Paraguay)"},{"xloc":["messenger.handlebars-\u003elocalVideo-\u003e1"],"en":"Local","cs":"Lokální"},{"xloc":["default.handlebars-\u003e17-\u003e1191"],"en":"Lock Account","cs":"Uzamknout účet","fr":"Verrouiller le compte"},{"xloc":["default.handlebars-\u003econtainer-\u003edialog-\u003edialogBody-\u003edialog7-\u003ed7meshkvm-\u003e7-\u003ed7framelimiter-\u003e5","default-mobile.handlebars-\u003edialog-\u003e3-\u003edialog7-\u003ed7meshkvm-\u003e7-\u003ed7framelimiter-\u003e5"],"en":"Slow","cs":"Pomalu","fr":"Lent"},{"xloc":["default.handlebars-\u003e17-\u003e762"],"en":"German (Luxembourg)"},{"xloc":["default.handlebars-\u003econtainer-\u003edialog-\u003edialogBody-\u003edialog7-\u003ed7meshkvm-\u003e5-\u003ed7bitmapscaling-\u003e9","default-mobile.handlebars-\u003edialog-\u003e3-\u003edialog7-\u003ed7meshkvm-\u003e5-\u003ed7bitmapscaling-\u003e9"],"en":"50%"},{"xloc":["default.handlebars-\u003e17-\u003e298"],"en":"* For BSD, run \\\"pkg install wget sudo bash\\\" first."},{"xloc":["default.handlebars-\u003e17-\u003e390"],"en":"The name of the device group this computer belong to."},{"xloc":["default.handlebars-\u003e17-\u003e966","default.handlebars-\u003e17-\u003e964"],"en":" + CIRA","fr":"+ CIRA"},{"xloc":["default.handlebars-\u003e17-\u003e871"],"en":"Welsh","fr":"Gallois"},{"xloc":["default.handlebars-\u003e17-\u003e358"],"en":"DeviceCheckbox"},{"xloc":["default.handlebars-\u003e17-\u003e108"],"en":"Add YubiKey® OTP"},{"xloc":["default.handlebars-\u003e17-\u003e138"],"en":"MQTT Credentials"},{"xloc":["default.handlebars-\u003e17-\u003e49"],"en":"Failed","cs":"Selhalo","fr":"Échoué"},{"xloc":["default.handlebars-\u003e17-\u003e593"],"en":"Stop","fr":"Arrêtez"},{"xloc":["login.handlebars-\u003e5-\u003e13","login-mobile.handlebars-\u003e5-\u003e13"],"en":"Access denied."},{"xloc":["player.htm-\u003e3-\u003e16","player.htm-\u003e3-\u003e17"],"en":"Press [space] to play/pause.","fr":"Appuyez sur [espace] pour jouer/mettre en pause."},{"xloc":["default.handlebars-\u003e17-\u003e370","default.handlebars-\u003e17-\u003e377"],"en":"Zoom-out to extent"},{"xloc":["default-mobile.handlebars-\u003e9-\u003e299","default.handlebars-\u003e17-\u003e1049"],"en":"Mesh Agent Console","cs":"Konzole agenta"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep6-\u003e8"],"en":"Server Statistics","cs":"Statistiky serveru","fr":"Statistiques du serveur"},{"xloc":[],"en":"SelectAll","cs":"Vybrat vše","fr":"ToutSélectionner"},{"xloc":["default.handlebars-\u003e17-\u003e305","default.handlebars-\u003e17-\u003e291"],"en":"Windows (.exe)"},{"xloc":["default.handlebars-\u003e17-\u003e784"],"en":"Korean (North Korea)","fr":"Coréen (Corée du Nord)"},{"xloc":["default.handlebars-\u003e17-\u003e220"],"en":"Scan for Intel® AMT devices","fr":"Rechercher des périphériques Intel® AMT"},{"xloc":["default.handlebars-\u003e17-\u003e718"],"en":"Chuvash"},{"xloc":["default.handlebars-\u003e17-\u003e281"],"en":"Apple MacOS"},{"xloc":["default-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003ep10-\u003ep10desktop-\u003edeskarea4-\u003e1-\u003e3"],"en":"Keyboard","cs":"Klávesnice","fr":"Clavier"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep42-\u003epluginRestartNotice-\u003e3-\u003e1-\u003e0"],"en":"Notice:"},{"xloc":["default-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003ep10-\u003ep10desktop-\u003edeskarea3-\u003edeskarea3x-\u003eDeskTools-\u003eDeskToolsRefreshButton","default.handlebars-\u003e17-\u003e371","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep11-\u003edeskarea0-\u003edeskarea3x-\u003eDeskTools-\u003edeskToolsAreaTop-\u003eDeskToolsRefreshButton","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep40-\u003e3-\u003e3"],"en":"Refresh","cs":"Obnovit","fr":"Rafraîchir"},{"xloc":["default.handlebars-\u003e17-\u003e1263"],"en":"Megabytes","cs":"Megabytů","fr":"Mégaoctets"},{"xloc":["default.handlebars-\u003e17-\u003e824"],"en":"Singhalese","fr":"Cingalais"},{"xloc":["default.handlebars-\u003e17-\u003e683"],"en":"Arabic (Bahrain)"},{"xloc":["default.handlebars-\u003e17-\u003e788"],"en":"Lithuanian","fr":"Lituanien"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep17-\u003ep17title-\u003e3"],"en":"Details -","cs":"Detaily -"},{"xloc":["default.handlebars-\u003e17-\u003e328","default-mobile.handlebars-\u003e9-\u003e112"],"en":"Device is in sleep state (S1)","cs":"Zařízení je ve stavu spánku (S1)"},{"xloc":["default.handlebars-\u003e17-\u003e998"],"en":"Intel® AMT Policy"},{"xloc":["default.handlebars-\u003e17-\u003e225"],"en":"Setup Method","cs":"Setup"},{"xloc":[],"en":"Open chat window to this computer","fr":"Ouvrir la fenêtre de discussion sur cet ordinateur"},{"xloc":["default.handlebars-\u003e17-\u003e421","default-mobile.handlebars-\u003e9-\u003e161"],"en":"Windows MinCore console"},{"xloc":["default.handlebars-\u003e17-\u003e119"],"en":"Intel AMT detected","fr":"Intel AMT détecté"},{"xloc":["default.handlebars-\u003e17-\u003e392"],"en":"The name of the device group this computer belong to","fr":"Le nom du groupe de périphériques auquel cet ordinateur appartient"},{"xloc":["default.handlebars-\u003e17-\u003e308","default.handlebars-\u003e17-\u003e294"],"en":"Windows x64 (.exe)"},{"xloc":["default.handlebars-\u003e17-\u003e330","default-mobile.handlebars-\u003e9-\u003e114"],"en":"Device is in deep sleep state (S3)","cs":"Zařízení je v hlubokém spánku (S3)"},{"xloc":["default.handlebars-\u003e17-\u003e103"],"en":"\u003ca href=\\\"https://www.yubico.com/\\\" rel=\\\"noreferrer noopener\\\" target=\\\"_blank\\\"\u003eHardware keys\u003c/a\u003e are used as secondary login authentication."},{"xloc":[],"en":"Open a web address on the remote computer"},{"xloc":["player.htm-\u003ep11-\u003edeskarea0-\u003edeskarea1-\u003e3","player.htm-\u003e3-\u003e19"],"en":"Open File...","cs":"Otevřít soubor..."},{"xloc":["default.handlebars-\u003e17-\u003e413","default-mobile.handlebars-\u003e9-\u003e153"],"en":"PogoPlug ARM"},{"xloc":["default.handlebars-\u003e17-\u003e860"],"en":"Tsonga"},{"xloc":["default.handlebars-\u003e17-\u003e234","default.handlebars-\u003e17-\u003e240"],"en":"Root Certificate File","fr":"Fichier de Certificate Racine"},{"xloc":["default-mobile.handlebars-\u003e9-\u003e22","default.handlebars-\u003e17-\u003e97"],"en":"No Active Tokens"},{"xloc":["default.handlebars-\u003e17-\u003e1283"],"en":"time, source, message"},{"xloc":["agentinvite.handlebars-\u003econtainer-\u003ecolumn_l-\u003e5-\u003emacostab-\u003e3-\u003emacosurl"],"en":"Download the installer here","cs":"Stáhnout instalaci zde"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep41-\u003e3-\u003e1"],"en":"Download trace (.csv)"},{"xloc":["default-mobile.handlebars-\u003e9-\u003e129","default-mobile.handlebars-\u003e9-\u003e52"],"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.handlebars-\u003e17-\u003e978","default.handlebars-\u003e17-\u003e976","default.handlebars-\u003e17-\u003e196","default.handlebars-\u003e17-\u003e194"],"en":"Activation","cs":"Aktivace"},{"xloc":["default.handlebars-\u003e17-\u003e334","default.handlebars-\u003e17-\u003e461","default.handlebars-\u003e17-\u003e148"],"en":"Mesh agent is connected and ready for use.","cs":"Agent je připojen a připraven."},{"xloc":["agentinvite.handlebars-\u003econtainer-\u003ecolumn_l-\u003e5-\u003e1-\u003etwintab64"],"en":"Windows 64bit"},{"xloc":["login-mobile.handlebars-\u003e5-\u003e8","login.handlebars-\u003e5-\u003e8"],"en":"Invalid email."},{"xloc":["default.handlebars-\u003e17-\u003e794"],"en":"Maori"},{"xloc":["terms-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e59-\u003e1-\u003e0","terms.handlebars-\u003econtainer-\u003ecolumn_l-\u003e59-\u003e1-\u003e0"],"en":"5.noVNC - Mozilla Public License 2.0"},{"xloc":["login-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e1-\u003e1-\u003e0-\u003e1-\u003ecreatepanel-\u003e1-\u003e1-\u003e5-\u003e1","login.handlebars-\u003econtainer-\u003ecolumn_l-\u003ecentralTable-\u003e1-\u003e0-\u003elogincell-\u003ecreatepanel-\u003e1-\u003e5-\u003e1"],"en":"Account Creation"},{"xloc":["terms-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e21-\u003e1","terms.handlebars-\u003econtainer-\u003ecolumn_l-\u003e21-\u003e1"],"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":["default.handlebars-\u003e17-\u003e569"],"en":", Soft-KVM"},{"xloc":["player.htm-\u003ep11-\u003edeskarea0-\u003edeskarea4-\u003e3"],"en":"Play","fr":"Jouer"},{"xloc":["default.handlebars-\u003e17-\u003e1151"],"en":"Send a text notification to this user.","fr":"Envoyez une notification à cet utilisateur."},{"xloc":["default.handlebars-\u003e17-\u003e85"],"en":"Enter the token here for 2-step login:"},{"xloc":["default.handlebars-\u003e17-\u003e993","default.handlebars-\u003e17-\u003e997","default.handlebars-\u003e17-\u003e963"],"en":"Simple Client Control Mode (CCM)"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep13-\u003ep13title-\u003e3"],"en":"Files -","cs":"Soubory -","fr":"Dossiers -"},{"xloc":[],"en":"Toggle focus mode, when active only the region around the mouse is updated"},{"xloc":["default.handlebars-\u003e17-\u003e401","default-mobile.handlebars-\u003e9-\u003e141"],"en":"Windows 32bit console"},{"xloc":["default.handlebars-\u003e17-\u003e872"],"en":"Xhosa"},{"xloc":["default.handlebars-\u003e17-\u003e51"],"en":"Last agent connection","fr":"Dernière connexion de l\u0027agent"},{"xloc":["default.handlebars-\u003e17-\u003e808"],"en":"Portuguese"},{"xloc":["default.handlebars-\u003e17-\u003e1206","default.handlebars-\u003e17-\u003e1205","default.handlebars-\u003e17-\u003e1172","default-mobile.handlebars-\u003e9-\u003e34","default.handlebars-\u003e17-\u003e247","default.handlebars-\u003e17-\u003e1232"],"en":"Email"},{"xloc":["default.handlebars-\u003e17-\u003e656"],"en":"Perform Agent Action","cs":"Akce agenta","fr":"Effectuer une action sur l\u0027agent"},{"xloc":["default.handlebars-\u003e17-\u003e1203"],"en":"Email not verified","cs":"Email není ověřen"},{"xloc":["default.handlebars-\u003e17-\u003e442"],"en":"Intel AMT is setup with TLS network security"},{"xloc":["default.handlebars-\u003e17-\u003e637","default-mobile.handlebars-\u003e9-\u003e262"],"en":"Holding {0} entries for move"},{"xloc":["default.handlebars-\u003e17-\u003e847"],"en":"Spanish (Spain)"},{"xloc":["default.handlebars-\u003e17-\u003e1014"],"en":"This policy will not impact devices with Intel® AMT in ACM mode."},{"xloc":["default.handlebars-\u003e17-\u003e818"],"en":"Russian (Moldavia)","fr":"Russe (Moldavie)"},{"xloc":["player.htm-\u003e3-\u003e5"],"en":"UserID","fr":"Identifiant d\u0027utilisateur"},{"xloc":["default.handlebars-\u003e17-\u003e212"],"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-\u003e17-\u003e1278","default.handlebars-\u003e17-\u003e1262"],"en":"Intel AMT"},{"xloc":["login.handlebars-\u003econtainer-\u003ecolumn_l-\u003ecentralTable-\u003e1-\u003e0-\u003elogincell-\u003eresetpanel-\u003e1-\u003e5-\u003e1","login-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e1-\u003e1-\u003e0-\u003e1-\u003eresetpanel-\u003e1-\u003e5-\u003e1"],"en":"Account Reset","cs":"Reset hesla"},{"xloc":["default.handlebars-\u003e17-\u003e361"],"en":"Delete Nodes","cs":"Smazat nody"},{"xloc":["default.handlebars-\u003e17-\u003e1012","default.handlebars-\u003e17-\u003e1008"],"en":"Connect to server","cs":"Připojit se na server"},{"xloc":["default.handlebars-\u003e17-\u003e588"],"en":"OwnProcess"},{"xloc":["messenger.handlebars-\u003extop-\u003e1"],"en":"Enable browser notification","cs":"Zapnout notifikace v prohlížeči"},{"xloc":["default.handlebars-\u003e17-\u003e627","default-mobile.handlebars-\u003e9-\u003e252"],"en":"Only files less than 200k can be edited.","cs":"Jen soubory menší než 200k mohou být editovány."},{"xloc":["default.handlebars-\u003e17-\u003e705"],"en":"Belarusian"},{"xloc":["default.handlebars-\u003e17-\u003e1038"],"en":"Group permissions for user {0}.","fr":"Autorisations de groupe pour l\u0027utilisateur {0}."},{"xloc":["default.handlebars-\u003e17-\u003e1100","default.handlebars-\u003e17-\u003e617","default.handlebars-\u003e17-\u003e345","default.handlebars-\u003emeshContextMenu-\u003ecxselectnone"],"en":"Select None","cs":"Vybrat nic","fr":"Rien sélectionner"},{"xloc":["default.handlebars-\u003e17-\u003e1154","default.handlebars-\u003e17-\u003e1158","default.handlebars-\u003e17-\u003e1156","default.handlebars-\u003e17-\u003e1153"],"en":"User Account Import"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep1-\u003edevListToolbarViewIcons","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep1-\u003edevListToolbarSpan-\u003e1-\u003e0-\u003e9-\u003edevListToolbarView-\u003eviewselect-\u003e5"],"en":"Desktops","cs":"Desktopy"},{"xloc":["default.handlebars-\u003e17-\u003e1251"],"en":"CPU load in the last minute","cs":"CPU zatížení v poslední minutě"},{"xloc":["default.handlebars-\u003e17-\u003e804"],"en":"Oriya"},{"xloc":["default.handlebars-\u003e17-\u003e201"],"en":"Add a new Intel® AMT device to device group \\\"{0}\\\"."},{"xloc":["default.handlebars-\u003e17-\u003e544"],"en":"No other device group of same type exists."},{"xloc":["default.handlebars-\u003e17-\u003e95"],"en":"Try again.","cs":"Zkusit znovu."},{"xloc":["default.handlebars-\u003e17-\u003e283"],"en":"Linux / BSD (UnInstall)"},{"xloc":["default.handlebars-\u003e17-\u003e895"],"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."},{"xloc":["default.handlebars-\u003e17-\u003e1000","default.handlebars-\u003e17-\u003e999"],"en":"Password*","cs":"Heslo*","fr":"Mot de passe*"},{"xloc":["default.handlebars-\u003econtainer-\u003edialog-\u003edialogBody-\u003edialog7-\u003ed7meshkvm-\u003e1","default-mobile.handlebars-\u003edialog-\u003e3-\u003edialog7-\u003ed7meshkvm-\u003e1"],"en":"Agent Remote Desktop"},{"xloc":["default.handlebars-\u003e17-\u003e756"],"en":"Galacian","fr":"Galicien"},{"xloc":["default.handlebars-\u003e17-\u003e420","default-mobile.handlebars-\u003e9-\u003e160"],"en":"Linux NoKVM x86-64bit"},{"xloc":["default.handlebars-\u003e17-\u003e271","default.handlebars-\u003e17-\u003e257"],"en":"8 hours","cs":"8 hodin","fr":"8 heures"},{"xloc":["default.handlebars-\u003e17-\u003e817"],"en":"Russian","fr":"Russe"},{"xloc":["default-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003ep20-\u003e1-\u003e1-\u003e0-\u003e1-\u003e3","default-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003ep3-\u003e1-\u003e1-\u003e0-\u003e1-\u003e3","default-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003ep5-\u003e1-\u003e1-\u003e0-\u003e1-\u003e3","default-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003ep10-\u003e1-\u003e1-\u003e0-\u003e1-\u003e3"],"en":"◀"},{"xloc":["default.handlebars-\u003e17-\u003e131"],"en":"{0} hour{1}","cs":"{0} hodina{1}"},{"xloc":["default.handlebars-\u003etermShellContextMenuLinux-\u003ecxtermps"],"en":"User Shell","fr":"Shell utilisateur"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep11-\u003edeskarea0-\u003edeskarea1-\u003e1"],"en":"Settings...","cs":"Nastavení...","fr":"Paramètres..."},{"xloc":[],"en":"Save a screenshot of the remote desktop","cs":"Uložit screenshot vzdáleného počítače","fr":"Enregistrer une capture d\u0027écran du bureau distant"},{"xloc":["default.handlebars-\u003e17-\u003e586"],"en":"Interactive"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep6-\u003ep2ServerActions-\u003e3-\u003ep2ServerActionsBackup-\u003e0"],"en":"Download server backup"},{"xloc":["terms-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e55-\u003e1","terms.handlebars-\u003econtainer-\u003ecolumn_l-\u003e55-\u003e1"],"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":["default.handlebars-\u003e17-\u003e1217"],"en":"{0} groups"},{"xloc":["player.htm-\u003ep11-\u003edialog-\u003edialogHeader-\u003eid_dialogclose","default.handlebars-\u003econtainer-\u003edialog-\u003edialogHeader-\u003eid_dialogclose","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep11-\u003edeskarea0-\u003edeskarea1-\u003e3-\u003eidx_deskFullBtn2"],"en":"✖"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep5-\u003ep5filetable-\u003ebigfail-\u003e0","player.htm-\u003ep11-\u003edeskarea0-\u003edeskarea3x-\u003ebigfail-\u003e0","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep13-\u003ep13filetable-\u003ep13bigfail-\u003e0"],"en":"✗"},{"xloc":["default-mobile.handlebars-\u003e9-\u003e89","default.handlebars-\u003e17-\u003e145"],"en":", Intel® AMT only"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep4-\u003e3-\u003e1-\u003e0-\u003e3-\u003e1-\u003e5"],"en":"Batch create many user accounts"},{"xloc":["login.handlebars-\u003e5-\u003e32","login-mobile.handlebars-\u003e5-\u003e32"],"en":"{0} numeric"},{"xloc":["default.handlebars-\u003e17-\u003e1201"],"en":"Not set"},{"xloc":["login-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e1-\u003e1-\u003e0-\u003e1-\u003eresettokenpanel-\u003e1-\u003e5-\u003e1-\u003e0-\u003e1","login.handlebars-\u003econtainer-\u003ecolumn_l-\u003ecentralTable-\u003e1-\u003e0-\u003elogincell-\u003eresettokenpanel-\u003e1-\u003e5-\u003e1-\u003e0-\u003e1","login-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e1-\u003e1-\u003e0-\u003e1-\u003etokenpanel-\u003e1-\u003e7-\u003e1-\u003e0-\u003e1","login.handlebars-\u003econtainer-\u003ecolumn_l-\u003ecentralTable-\u003e1-\u003e0-\u003elogincell-\u003etokenpanel-\u003e1-\u003e7-\u003e1-\u003e0-\u003e1"],"en":"Login token:"},{"xloc":["default-mobile.handlebars-\u003e9-\u003e58"],"en":"Create Device Group","cs":"Vytvořit skupinu zařízení"},{"xloc":["default.handlebars-\u003e17-\u003e1261"],"en":"Relay Sessions"},{"xloc":["default.handlebars-\u003e17-\u003e1159","default.handlebars-\u003e17-\u003e1157"],"en":"Invalid JSON file format."},{"xloc":["default.handlebars-\u003e17-\u003e500","default-mobile.handlebars-\u003e9-\u003e198","default.handlebars-\u003e17-\u003e499"],"en":"Intel® AMT connected"},{"xloc":["default.handlebars-\u003e17-\u003e945"],"en":"Desktop Prompt+Toolbar"},{"xloc":["default.handlebars-\u003e17-\u003e1120"],"en":"p5filetable"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep1-\u003edevListToolbarSpan-\u003e1-\u003e0-\u003e9-\u003edevListToolbarSize-\u003esizeselect-\u003e1"],"en":"Small","cs":"Malé","fr":"Petit"},{"xloc":["default.handlebars-\u003e17-\u003e1230"],"en":"1 active session","cs":"1 session aktivní","fr":"1 session active"},{"xloc":["login.handlebars-\u003e5-\u003e7","login-mobile.handlebars-\u003e5-\u003e7"],"en":"Password rejected, use a different one.","fr":"Mot de passe rejeté, utilisez-en un autre."},{"xloc":["default.handlebars-\u003e17-\u003e232","default.handlebars-\u003e17-\u003e239"],"en":"Root Certificate","fr":"Certificat Racine"},{"xloc":["default.handlebars-\u003e17-\u003e1092","default.handlebars-\u003e17-\u003e1215","default.handlebars-\u003e17-\u003e1219","default-mobile.handlebars-\u003e9-\u003e193","default.handlebars-\u003e17-\u003e397","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep41-\u003e3-\u003e3-\u003ep41traceStatus","default.handlebars-\u003e17-\u003e395","default.handlebars-\u003e17-\u003e939","default-mobile.handlebars-\u003e9-\u003e275","default-mobile.handlebars-\u003e9-\u003e72","default.handlebars-\u003e17-\u003e130","default-mobile.handlebars-\u003e9-\u003e242","default.handlebars-\u003e17-\u003e387","default.handlebars-\u003e17-\u003e955","default.handlebars-\u003e17-\u003e147","default.handlebars-\u003e17-\u003e146","default.handlebars-\u003e17-\u003e472","default.handlebars-\u003e17-\u003e943","default.handlebars-\u003e17-\u003e960","default-mobile.handlebars-\u003e9-\u003e90","default-mobile.handlebars-\u003e9-\u003e135","default-mobile.handlebars-\u003e9-\u003e137","default-mobile.handlebars-\u003e9-\u003e130","default-mobile.handlebars-\u003e9-\u003e92","default.handlebars-\u003e17-\u003e27"],"en":"None","cs":"Nic","fr":"Aucun"},{"xloc":["default.handlebars-\u003e17-\u003e493","default.handlebars-\u003e17-\u003e491"],"en":"Requires Microsoft ClickOnce support in your browser.","fr":"Requiert Microsoft ClickOnce dans votre navigateur."},{"xloc":["default.handlebars-\u003e17-\u003e845"],"en":"Spanish (Peru)"},{"xloc":["terms.handlebars-\u003econtainer-\u003ecolumn_l-\u003e7","terms-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e7"],"en":"The following are the required disclosures of open source components and software incorporated into this software."},{"xloc":["default-mobile.handlebars-\u003edialog-\u003e3-\u003edialog7-\u003ed7amtkvm-\u003e3-\u003ed7desktopmode-\u003e7","default.handlebars-\u003econtainer-\u003edialog-\u003edialogBody-\u003edialog7-\u003ed7amtkvm-\u003e3-\u003ed7desktopmode-\u003e7"],"en":"RAW16, Very Slow","fr":"RAW16, très lent"},{"xloc":["default.handlebars-\u003e17-\u003e1268"],"en":"Message Dispatcher"},{"xloc":["default.handlebars-\u003e17-\u003e661"],"en":"Upload a core file"},{"xloc":["default.handlebars-\u003e17-\u003e855"],"en":"Tamil"},{"xloc":["default.handlebars-\u003e17-\u003e864"],"en":"Ukrainian"},{"xloc":["default.handlebars-\u003e17-\u003e1272"],"en":"MeshAgent update"},{"xloc":["terms-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e37-\u003e1","terms.handlebars-\u003econtainer-\u003ecolumn_l-\u003e37-\u003e1"],"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":["default.handlebars-\u003e17-\u003e1089"],"en":"{0} kilobytes remaining","cs":"{0} kilobytů zbývá"},{"xloc":["default.handlebars-\u003e17-\u003e42"],"en":"Part Number","fr":"Numéro d\u0027article"},{"xloc":["default-mobile.handlebars-\u003e9-\u003e292","default.handlebars-\u003e17-\u003e1061","default.handlebars-\u003e17-\u003e1042","default-mobile.handlebars-\u003e9-\u003e310"],"en":"Manage Device Group Computers","cs":"Správa skupin zařízení"},{"xloc":["default.handlebars-\u003e17-\u003e1221"],"en":"Authentication App"},{"xloc":["default.handlebars-\u003e17-\u003e362"],"en":"Modify node location"},{"xloc":["default.handlebars-\u003e17-\u003e1112","default-mobile.handlebars-\u003e9-\u003e83"],"en":"Confim {0} of {1} entrie{2} to this location?"},{"xloc":["default.handlebars-\u003e17-\u003e89"],"en":"2-step login activation failed."},{"xloc":["default-mobile.handlebars-\u003e9-\u003e254","default.handlebars-\u003e17-\u003e629"],"en":"Confirm copy of 1 entrie to this location?"},{"xloc":["default.handlebars-\u003e17-\u003e534"],"en":"Are you sure you want to uninstall selected agent?"},{"xloc":["default.handlebars-\u003e17-\u003e87"],"en":"Authenticator app activation successful."},{"xloc":["default.handlebars-\u003e17-\u003e364"],"en":"Save node location","fr":"Enregistrer l\u0027emplacement"},{"xloc":["default.handlebars-\u003e17-\u003e778"],"en":"Kashmiri"},{"xloc":["terms.handlebars-\u003econtainer-\u003ecolumn_l-\u003e75-\u003e1","terms-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e75-\u003e1"],"en":"This software uses code from"},{"xloc":["default.handlebars-\u003e17-\u003e216","default.handlebars-\u003e17-\u003e213"],"en":"Intel® AMT activation"},{"xloc":["default.handlebars-\u003e17-\u003e965","default.handlebars-\u003e17-\u003e990"],"en":"Simple Admin Control Mode (ACM)"},{"xloc":["default.handlebars-\u003e17-\u003e731"],"en":"English (Jamaica)"},{"xloc":["default.handlebars-\u003e17-\u003e1256"],"en":"total","cs":"celkově","fr":"total"},{"xloc":["default.handlebars-\u003e17-\u003e1178"],"en":"Send invitation email.","cs":"Zaslat pozvánku emailem.","fr":"Envoyer un email d\u0027invitation."},{"xloc":["default.handlebars-\u003e17-\u003e745"],"en":"French (Standard)","fr":"Français (standard)"},{"xloc":["default-mobile.handlebars-\u003e9-\u003e243","default-mobile.handlebars-\u003e9-\u003e241","default-mobile.handlebars-\u003e9-\u003e73"],"en":"All","cs":"Vše","fr":"Tout"},{"xloc":["default.handlebars-\u003e17-\u003e1198"],"en":"Full administrator","cs":"Hlavní administrator","fr":"Administrateur complet"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep12-\u003ep12title-\u003e3"],"en":"Terminal -","fr":"Terminal -"},{"xloc":["default-mobile.handlebars-\u003e9-\u003e66"],"en":"Storage exceed","cs":"Uložiště plné","fr":"Stockage dépassent"},{"xloc":["login-mobile.handlebars-\u003e5-\u003e24","login.handlebars-\u003e5-\u003e24","login-mobile.handlebars-\u003e5-\u003e20","login.handlebars-\u003e5-\u003e20"],"en":"Strong Password","cs":"Silné heslo","fr":"Mot de passe fort"},{"xloc":["default.handlebars-\u003e17-\u003e1138"],"en":"No users found.","cs":"Žádný uživatele nalezen."},{"xloc":["default-mobile.handlebars-\u003e9-\u003e249","default.handlebars-\u003e17-\u003e1109","default.handlebars-\u003e17-\u003e624","default-mobile.handlebars-\u003e9-\u003e81"],"en":"Rename","cs":"Přejmenovat","fr":"Renommer"},{"xloc":["default.handlebars-\u003e17-\u003e925"],"en":"Restore the server using a backup, \u003cspan style=color:red\u003ethis will delete the existing server data\u003c/span\u003e. Only do this if you know what you are doing."},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep2-\u003ep2AccountActions-\u003e3-\u003eaccountEnableNotificationsSpan-\u003e0"],"en":"Enable web notifications","cs":"Zapnout notifikace prohlížeče"},{"xloc":["default.handlebars-\u003e17-\u003e440"],"en":"Intel AMT is activated in Admin Control Mode"},{"xloc":["default.handlebars-\u003e17-\u003e935","default.handlebars-\u003e17-\u003e913","default-mobile.handlebars-\u003e9-\u003e271"],"en":"Intel® AMT only, no agent"},{"xloc":["default.handlebars-\u003e17-\u003e327","default-mobile.handlebars-\u003e9-\u003e111"],"en":"Device is powered","cs":"Zařízení je zapnuto"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep40-\u003e1"],"en":"My Server Stats","cs":"Statistika serveru","fr":"Statistiques de mon serveur"},{"xloc":["default.handlebars-\u003e17-\u003e859"],"en":"Tigre"},{"xloc":["default.handlebars-\u003e17-\u003e952"],"en":"Files Notify"},{"xloc":["default.handlebars-\u003econtainer-\u003efooter-\u003e3-\u003everifyEmailId2"],"en":"Verify Email","cs":"Ověřit Email","fr":"Vérifier le Courriel"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep11-\u003edeskarea0-\u003edeskarea4-\u003e1"],"en":"Toggle tools view","cs":"Přepnout zobrazení nástrojů"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep16-\u003e3-\u003e1-\u003e0-\u003e5-\u003ep16limitdropdown-\u003e1","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep3-\u003e3-\u003e1-\u003e0-\u003e3-\u003ep3limitdropdown-\u003e1","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep31-\u003e5-\u003e1-\u003e0-\u003e5-\u003ep31limitdropdown-\u003e1"],"en":"Last 60","cs":"Posledních 60","fr":"60 dernières"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep42-\u003e1"],"en":"My Server Plugins","fr":"Mes plugins serveur"},{"xloc":["default.handlebars-\u003e17-\u003e15"],"en":"Ctrl"},{"xloc":["terms.handlebars-\u003econtainer-\u003ecolumn_l-\u003e75-\u003e1-\u003e3","terms-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e75-\u003e1-\u003e3"],"en":"http://creativecommons.org/licenses/by/2.0/uk/legalcode"},{"xloc":["default.handlebars-\u003e17-\u003e129"],"en":" without TLS.","cs":" bez TLS.","fr":"sans TLS."},{"xloc":["default.handlebars-\u003e17-\u003e920"],"en":"Weak","cs":"Slabé","fr":"Faible"},{"xloc":["default.handlebars-\u003e17-\u003e285"],"en":"Background & interactive"},{"xloc":["default.handlebars-\u003e17-\u003e182"],"en":"Are you sure you want to connect to {0} devices?"},{"xloc":["default.handlebars-\u003e17-\u003e140"],"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-\u003e17-\u003e1279"],"en":"Connection Relay"},{"xloc":["terms.handlebars-\u003econtainer-\u003ecolumn_l-\u003e75-\u003e1-\u003e1","terms-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e75-\u003e1-\u003e1","terms-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e75-\u003e1-\u003e5","terms.handlebars-\u003econtainer-\u003ecolumn_l-\u003e75-\u003e1-\u003e5"],"en":"http://www.webtoolkit.info/javascript-base64.html"},{"xloc":["login-mobile.handlebars-\u003e5-\u003e4","login.handlebars-\u003e5-\u003e4"],"en":"Existing account with this email address."},{"xloc":["default.handlebars-\u003e17-\u003e1258"],"en":"Agents","cs":"Agenti"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep12-\u003etermTable-\u003e1-\u003e1-\u003e6-\u003e1-\u003e1-\u003eterminalSizeDropDown-\u003etermSizeList-\u003e1"],"en":"100x30"},{"xloc":["terms.handlebars-\u003econtainer-\u003ecolumn_l-\u003e49-\u003e1","terms-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e57-\u003e1","terms-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e49-\u003e1","terms.handlebars-\u003econtainer-\u003ecolumn_l-\u003e71-\u003e1","terms-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e71-\u003e1","terms.handlebars-\u003econtainer-\u003ecolumn_l-\u003e57-\u003e1"],"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":["default.handlebars-\u003e17-\u003e822"],"en":"Sardinian"},{"xloc":["default.handlebars-\u003e17-\u003e949"],"en":"Terminal Prompt"},{"xloc":["default.handlebars-\u003e17-\u003e951"],"en":"Files Prompt"},{"xloc":["default.handlebars-\u003e17-\u003e163"],"en":"No devices matching this search.","fr":"Aucun appareil ne correspond à cette recherche."},{"xloc":["default.handlebars-\u003e17-\u003e737"],"en":"English (United States)","fr":"Anglais (États Unis)"},{"xloc":["player.htm-\u003e3-\u003e11"],"en":"MeshCentral Terminal"},{"xloc":["default.handlebars-\u003e17-\u003e693"],"en":"Arabic (Saudi Arabia)"},{"xloc":["default.handlebars-\u003e17-\u003e1006","default.handlebars-\u003e17-\u003e1011"],"en":"Don\\\u0027t configure"},{"xloc":["default.handlebars-\u003e17-\u003e1282"],"en":"Server Tracing","fr":"Suivi du serveur"},{"xloc":["default-mobile.handlebars-\u003e9-\u003e184","default.handlebars-\u003e17-\u003e450","default.handlebars-\u003e17-\u003e959","default.handlebars-\u003e17-\u003e967","default.handlebars-\u003e17-\u003e368","default-mobile.handlebars-\u003e9-\u003e120","default-mobile.handlebars-\u003e9-\u003e189","default.handlebars-\u003e17-\u003e466"],"en":"Intel® AMT"},{"xloc":["default.handlebars-\u003e17-\u003e706"],"en":"Bengali"},{"xloc":["default.handlebars-\u003e17-\u003e1140"],"en":"1 session","fr":"1 session"},{"xloc":["default.handlebars-\u003e17-\u003e538"],"en":"Uninstall agent"},{"xloc":["default.handlebars-\u003e17-\u003e24","default-mobile.handlebars-\u003e9-\u003e13"],"en":" - Reset in {0} day{1}.","cs":" - Reset v {0} den{1}.","fr":"- Réinitialiser dans le {0} jour {1}."},{"xloc":["default.handlebars-\u003e17-\u003e1226","default.handlebars-\u003e17-\u003e508","default.handlebars-\u003e17-\u003e475","default.handlebars-\u003e17-\u003e968"],"en":"Notes","cs":"Poznámky","fr":"Remarques"},{"xloc":["terms-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e39-\u003e1","terms.handlebars-\u003econtainer-\u003ecolumn_l-\u003e39-\u003e1"],"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."},{"xloc":["default-mobile.handlebars-\u003e9-\u003e151","default.handlebars-\u003e17-\u003e411"],"en":"MacOS 32bit"},{"xloc":["default-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003ep3-\u003ep3info-\u003e1-\u003ep3AccountActions-\u003e5-\u003e0"],"en":"Account Actions"},{"xloc":["default-mobile.handlebars-\u003e9-\u003e166","default.handlebars-\u003e17-\u003e426"],"en":"ARMv8 64bit"},{"xloc":["default.handlebars-\u003e17-\u003e862"],"en":"Turkish"},{"xloc":["default.handlebars-\u003e17-\u003e391","default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep1-\u003edevListToolbarSpan-\u003e1-\u003e0-\u003e9-\u003edevListToolbarSort-\u003esortselect-\u003e1","default-mobile.handlebars-\u003e9-\u003e131"],"en":"Group","cs":"Skupina","fr":"Groupe"},{"xloc":["default.handlebars-\u003e17-\u003e1240"],"en":"Remove all 2nd factor authentication."},{"xloc":["default.handlebars-\u003e17-\u003e730"],"en":"English (Ireland)"},{"xloc":["default.handlebars-\u003e17-\u003e231"],"en":" and authenticate to the server using this username and any password.","fr":"et vous authentifier sur le serveur en utilisant ce nom d\u0027utilisateur et n\u0027importe quel mot de passe."},{"xloc":["default.handlebars-\u003e17-\u003e1147"],"en":"Administrator"},{"xloc":["default.handlebars-\u003e17-\u003e1030","default.handlebars-\u003econtainer-\u003etopbar-\u003e1-\u003e1-\u003eMainSubMenuSpan-\u003eMainSubMenu-\u003e1-\u003e0-\u003eMainDevFiles","default.handlebars-\u003econtextMenu-\u003ecxfiles"],"en":"Files","cs":"Soubory","fr":"Dossiers"},{"xloc":["default.handlebars-\u003e17-\u003e1135"],"en":"Offline Users","fr":"Utilisateurs hors ligne"},{"xloc":["default.handlebars-\u003e17-\u003e560"],"en":"Network Router","fr":"Routeur réseau"},{"xloc":["default.handlebars-\u003e17-\u003e700"],"en":"Assamese"},{"xloc":["default.handlebars-\u003e17-\u003e280"],"en":"Linux / BSD"},{"xloc":["default.handlebars-\u003e17-\u003e296"],"en":"{0} settings (.msh)"},{"xloc":["default.handlebars-\u003e17-\u003e1079","default-mobile.handlebars-\u003e9-\u003e327"],"en":", "},{"xloc":["terms-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e13-\u003e1","terms.handlebars-\u003econtainer-\u003ecolumn_l-\u003e13-\u003e1","terms.handlebars-\u003econtainer-\u003ecolumn_l-\u003e29-\u003e1","terms-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e29-\u003e1"],"en":"Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:"},{"xloc":["default-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003ep5-\u003ep5myfiles-\u003ep5toolbar-\u003e1-\u003e0-\u003e1-\u003e1","default-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003ep10-\u003ep10files-\u003ep13toolbar-\u003e1-\u003e2-\u003e1-\u003e1"],"en":"Folder","cs":"Adresář","fr":"Dossier"},{"xloc":["terms.handlebars-\u003econtainer-\u003ecolumn_l-\u003e47-\u003e1-\u003e1","terms-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e47-\u003e1-\u003e1"],"en":"http://jquery.com/"},{"xloc":["default.handlebars-\u003e17-\u003e228"],"en":"Cleanup CIRA"},{"xloc":["default.handlebars-\u003e17-\u003e1290"],"en":"More","cs":"Více","fr":"Plus"},{"xloc":["default.handlebars-\u003e17-\u003e483"],"en":"Show device network interface information"},{"xloc":["default.handlebars-\u003etermShellContextMenu-\u003ecxtermps"],"en":"PowerShell Connect","cs":"PowerShell připojen"},{"xloc":["default.handlebars-\u003e17-\u003e825"],"en":"Serbian"},{"xloc":["default.handlebars-\u003e17-\u003e553"],"en":"Windows (32bit)"},{"xloc":["default.handlebars-\u003e17-\u003e980"],"en":"Install","cs":"Instalace","fr":"Installer"},{"xloc":["player.htm-\u003e3-\u003e10"],"en":"NodeID"},{"xloc":["messenger.handlebars-\u003e13-\u003e7"],"en":"Connected.","cs":"Připojeno."},{"xloc":["messenger.handlebars-\u003e13-\u003e5","messenger.handlebars-\u003e13-\u003e4"],"en":"Limit of 10 file uploads at the same time.","cs":"Max. 10 souběžně nahrávaných souborů."},{"xloc":["login-mobile.handlebars-\u003e5-\u003e18","login.handlebars-\u003e5-\u003e18"],"en":"Forgot password?","cs":"Zapomenuté heslo?","fr":"Mot de passe oublié?"},{"xloc":["login.handlebars-\u003e5-\u003e15","login-mobile.handlebars-\u003e5-\u003e15"],"en":"Password change requested.","fr":"Changement de mot de passe demandé."},{"xloc":["default.handlebars-\u003e17-\u003e406","default-mobile.handlebars-\u003e9-\u003e146"],"en":"Linux 64bit"},{"xloc":["default.handlebars-\u003e17-\u003e88"],"en":"You will now need a valid token to login again.","fr":"Vous aurez maintenant besoin d\u0027un jeton valide pour vous connecter à nouveau."},{"xloc":["default.handlebars-\u003e17-\u003e154","default.handlebars-\u003e17-\u003e340","default.handlebars-\u003e17-\u003e467"],"en":"Mesh agent is reachable using another agent as relay."},{"xloc":["default.handlebars-\u003e17-\u003e992","default.handlebars-\u003e17-\u003e995","default.handlebars-\u003e17-\u003e962"],"en":"No Policy"},{"xloc":["default.handlebars-\u003e17-\u003e941"],"en":"Auto-Remove"},{"xloc":["default.handlebars-\u003e17-\u003e948"],"en":"Desktop Notify"},{"xloc":["default.handlebars-\u003e17-\u003e777"],"en":"Kannada"},{"xloc":["terms-mobile.handlebars-\u003econtainer-\u003epage_content-\u003ecolumn_l-\u003e45-\u003e1-\u003e0","terms.handlebars-\u003econtainer-\u003ecolumn_l-\u003e45-\u003e1-\u003e0"],"en":"3.jQuery Foundation - MIT License"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep11-\u003edeskarea0-\u003edeskarea4-\u003e3-\u003edeskkeys-\u003e25"],"en":"Win+Right"},{"xloc":["default.handlebars-\u003e17-\u003e759"],"en":"German (Austria)"},{"xloc":["default.handlebars-\u003e17-\u003e758"],"en":"German (Standard)"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep42-\u003epluginNoneNotice-\u003e0"],"en":"No plugins on server."},{"xloc":["default-mobile.handlebars-\u003edialog-\u003e3-\u003edialog7-\u003ed7amtkvm-\u003e3-\u003ed7desktopmode-\u003e1","default.handlebars-\u003econtainer-\u003edialog-\u003edialogBody-\u003edialog7-\u003ed7amtkvm-\u003e3-\u003ed7desktopmode-\u003e1"],"en":"RLE8, Fastest","fr":"RLE8, le plus rapide"},{"xloc":["default.handlebars-\u003e17-\u003e1165"],"en":"User List Export"},{"xloc":["default.handlebars-\u003e17-\u003e195","default.handlebars-\u003e17-\u003e977"],"en":"Perform Intel AMT admin control mode (ACM) activation."},{"xloc":["default.handlebars-\u003e17-\u003e851"],"en":"Swahili"},{"xloc":["default.handlebars-\u003e17-\u003e465"],"en":"Intel® AMT is routable and ready for use."},{"xloc":["default.handlebars-\u003e17-\u003e772"],"en":"Inuktitut","fr":"Inuktitut"},{"xloc":["default.handlebars-\u003e17-\u003e171"],"en":"MeshCmd"},{"xloc":["default.handlebars-\u003e17-\u003e709"],"en":"Burmese"},{"xloc":["default-mobile.handlebars-\u003e9-\u003e16"],"en":"\u003cb style=color:green\u003e2-step login activation successful\u003c/b\u003e. You will now need a valid token to login again."},{"xloc":["default.handlebars-\u003e17-\u003e1047","default-mobile.handlebars-\u003e9-\u003e297"],"en":"No File Access","fr":"Pas d\u0027accès au fichier"},{"xloc":["default.handlebars-\u003econtainer-\u003ecolumn_l-\u003ep40-\u003e3-\u003e1-\u003ep40time-\u003e5"],"en":"Last day","cs":"Poslední den","fr":"Dernier jour"},{"xloc":["default.handlebars-\u003e17-\u003e763"],"en":"German (Switzerland)"},{"xloc":["agentinvite.handlebars-\u003econtainer-\u003ecolumn_l-\u003e5-\u003e1-\u003etwintab32"],"en":"Windows 32bit"},{"xloc":["default.handlebars-\u003e17-\u003e263"],"en":"Background and interactive"}]} \ No newline at end of file +{ + "strings": [ + { + "xloc": [ "default.handlebars->17->966", "default.handlebars->17->964" ], + "en": " + CIRA", + "fr": "+ CIRA" + }, + { + "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}." + }, + { + "xloc": [ "default-mobile.handlebars->9->12", "default.handlebars->17->23" ], + "en": " - Reset in {0} hour{1}.", + "fr": "- Réinitialisation dans {0} heure {1}." + }, + { + "xloc": [ "default.handlebars->17->22", "default-mobile.handlebars->9->11" ], + "en": " - Reset in {0} minute{1}.", + "fr": "- Réinitialisation en {0} minute {1}." + }, + { + "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." + }, + { + "xloc": [ "default-mobile.handlebars->9->91" ], + "en": " / " + }, + { + "xloc": [ "default-mobile.handlebars->9->277" ], + "en": " Add User", + "fr": "Ajouter un utilisateur" + }, + { + "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." + }, + { + "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." + }, + { + "xloc": [ "default-mobile.handlebars->9->124" ], + "en": " node", + "cs": " zařízení", + "fr": "nœud" + }, + { + "xloc": [ "default-mobile.handlebars->9->125" ], + "en": " nodes", + "fr": "noeuds" + }, + { + "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é." + }, + { + "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.." + }, + { + "xloc": [ "default.handlebars->17->128" ], + "en": " with TLS.", + "fr": "avec TLS." + }, + { + "xloc": [ "default.handlebars->17->129" ], + "en": " without TLS.", + "cs": " bez TLS.", + "fr": "sans TLS." + }, + { + "xloc": [ ], + "en": "(" + }, + { + "xloc": [ "default.handlebars->17->267" ], + "en": "(optional)", + "cs": "(volitelné)" + }, + { + "xloc": [ "default.handlebars->container->column_l->p2->p2createMeshLink1", "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3createMeshLink1" ], + "en": ")" + }, + { + "xloc": [ "default.handlebars->17->298" ], + "en": "* For BSD, run \\\"pkg install wget sudo bash\\\" first." + }, + { + "xloc": [ "default.handlebars->17->1013" ], + "en": "* Leave blank to assign a random password to each device." + }, + { + "xloc": [ "default.handlebars->container->column_l->p0->p0message", "default-mobile.handlebars->container->page_content->column_l->p0->1->p0message" ], + "en": "," + }, + { + "xloc": [ "default.handlebars->17->1079", "default-mobile.handlebars->9->327" ], + "en": ", " + }, + { + "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." + }, + { + "xloc": [ "default-mobile.handlebars->9->89", "default.handlebars->17->145" ], + "en": ", Intel® AMT only" + }, + { + "xloc": [ "default.handlebars->17->651" ], + "en": ", MQTT is online" + }, + { + "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í." + }, + { + "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\"." + }, + { + "xloc": [ "default.handlebars->17->569" ], + "en": ", Soft-KVM" + }, + { + "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." + }, + { + "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" + }, + { + "xloc": [ "default-mobile.handlebars->9->228" ], + "en": "-" + }, + { + "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": "." + }, + { + "xloc": [ "default.handlebars->17->1085", "default.handlebars->17->615", "default.handlebars->17->1244", "default-mobile.handlebars->9->64", "default-mobile.handlebars->9->240" ], + "en": "..." + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->1102", "default-mobile.handlebars->9->74", "default-mobile.handlebars->9->331" ], + "en": "1 byte", + "cs": "1 byte", + "fr": "1 octet" + }, + { + "xloc": [ "default.handlebars->17->132", "default.handlebars->17->258", "default.handlebars->17->272" ], + "en": "1 day", + "cs": "1 den", + "fr": "1 jour" + }, + { + "xloc": [ "default.handlebars->17->1216" ], + "en": "1 group", + "fr": "1 groupe" + }, + { + "xloc": [ "default.handlebars->17->256", "default.handlebars->17->270" ], + "en": "1 hour", + "cs": "1 hodina", + "fr": "1 heure" + }, + { + "xloc": [ "default.handlebars->17->134", "default.handlebars->17->274", "default.handlebars->17->260" ], + "en": "1 month", + "cs": "1 měsíc", + "fr": "1 mois" + }, + { + "xloc": [ "default.handlebars->17->1136" ], + "en": "1 more user not shown, use search box to look for users..." + }, + { + "xloc": [ "default.handlebars->17->311" ], + "en": "1 node", + "fr": "1 appareil" + }, + { + "xloc": [ "default.handlebars->17->1140" ], + "en": "1 session", + "fr": "1 session" + }, + { + "xloc": [ "default.handlebars->17->133", "default.handlebars->17->259", "default.handlebars->17->273" ], + "en": "1 week", + "cs": "1 týden", + "fr": "1 semaine" + }, + { + "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" + }, + { + "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." + }, + { + "xloc": [ "player.htm->p11->deskarea0->deskarea4->3->PlaySpeed->3" ], + "en": "1/2 Speed", + "fr": "1/2 vitesse" + }, + { + "xloc": [ "player.htm->p11->deskarea0->deskarea4->3->PlaySpeed->1" ], + "en": "1/4 Speed", + "fr": "1/4 vitesse" + }, + { + "xloc": [ "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->5->d7bitmapscaling->1", "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->5->d7bitmapscaling->1" ], + "en": "100%" + }, + { + "xloc": [ "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSizeDropDown->termSizeList->1" ], + "en": "100x30" + }, + { + "xloc": [ "player.htm->p11->deskarea0->deskarea4->3->PlaySpeed->11" ], + "en": "10x Speed", + "fr": "10x vitesse" + }, + { + "xloc": [ "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->5->d7bitmapscaling->15", "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->5->d7bitmapscaling->15" ], + "en": "12.5%" + }, + { + "xloc": [ "default.handlebars->17->89" ], + "en": "2-step login activation failed." + }, + { + "xloc": [ "default.handlebars->17->94" ], + "en": "2-step login activation removal failed." + }, + { + "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" + }, + { + "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." + }, + { + "xloc": [ "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->5->d7bitmapscaling->13", "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->5->d7bitmapscaling->13" ], + "en": "25%" + }, + { + "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" + }, + { + "xloc": [ "default-mobile.handlebars->9->266" ], + "en": "3" + }, + { + "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/)\"" + }, + { + "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" + }, + { + "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." + }, + { + "xloc": [ "default.handlebars->17->304", "default.handlebars->17->290" ], + "en": "32bit version of the MeshAgent" + }, + { + "xloc": [ "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->5->d7bitmapscaling->11", "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->5->d7bitmapscaling->11" ], + "en": "37.5%" + }, + { + "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" + }, + { + "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" + }, + { + "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" + }, + { + "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." + }, + { + "xloc": [ "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->5->d7bitmapscaling->9", "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->5->d7bitmapscaling->9" ], + "en": "50%" + }, + { + "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" + }, + { + "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/)\"." + }, + { + "xloc": [ "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->5->d7bitmapscaling->7", "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->5->d7bitmapscaling->7" ], + "en": "62.5%" + }, + { + "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" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->5->d7bitmapscaling->5", "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->5->d7bitmapscaling->5" ], + "en": "75%" + }, + { + "xloc": [ "default.handlebars->17->271", "default.handlebars->17->257" ], + "en": "8 hours", + "cs": "8 hodin", + "fr": "8 heures" + }, + { + "xloc": [ "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSizeDropDown->termSizeList->0" ], + "en": "80x25" + }, + { + "xloc": [ "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->5->d7bitmapscaling->3", "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->5->d7bitmapscaling->3" ], + "en": "87.5%" + }, + { + "xloc": [ "agentinvite.handlebars->3->1" ], + "en": ":" + }, + { + "xloc": [ "default.handlebars->17->103" ], + "en": "Hardware keys are used as secondary login authentication." + }, + { + "xloc": [ "default-mobile.handlebars->9->19" ], + "en": "2-step login activation removed. You can reactivate this feature at any time." + }, + { + "xloc": [ "default-mobile.handlebars->9->16" ], + "en": "2-step login activation successful. You will now need a valid token to login again." + }, + { + "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." + }, + { + "xloc": [ "default-mobile.handlebars->9->20" ], + "en": "2-step login activation removal failed. Try again." + }, + { + "xloc": [ "default-mobile.handlebars->9->236", "default-mobile.handlebars->9->237", "default-mobile.handlebars->9->238" ], + "en": "\\\\" + }, + { + "xloc": [ "default.handlebars->17->652" ], + "en": "Access Denied", + "fr": "Accès refusé" + }, + { + "xloc": [ "login.handlebars->5->13", "login-mobile.handlebars->5->13" ], + "en": "Access denied." + }, + { + "xloc": [ "default.handlebars->17->1197" ], + "en": "Access to server files" + }, + { + "xloc": [ "default.handlebars->container->column_l->p2->p2AccountActions->1->0" ], + "en": "Account actions" + }, + { + "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->5->0" ], + "en": "Account Actions" + }, + { + "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" + }, + { + "xloc": [ "login-mobile.handlebars->5->3", "login.handlebars->5->3" ], + "en": "Account limit reached." + }, + { + "xloc": [ "login.handlebars->5->12", "login-mobile.handlebars->5->12" ], + "en": "Account locked." + }, + { + "xloc": [ "login-mobile.handlebars->5->9", "login.handlebars->5->9" ], + "en": "Account not found." + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->container->column_l->p2->p2AccountSecurity->1->0" ], + "en": "Account security", + "cs": "Nastavení bezpečnosti" + }, + { + "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" + }, + { + "xloc": [ "default-mobile.handlebars->9->179", "default.handlebars->17->441" ], + "en": "ACM" + }, + { + "xloc": [ "default.handlebars->17->657", "default.handlebars->container->column_l->p42->p42tbl->1->0->8" ], + "en": "Action" + }, + { + "xloc": [ "default.handlebars->17->473", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->1" ], + "en": "Actions", + "cs": "Akce" + }, + { + "xloc": [ ], + "en": "Activate camera & microphone", + "fr": "Activer caméra et microphone" + }, + { + "xloc": [ ], + "en": "Activate microphone", + "fr": "Activer le microphone" + }, + { + "xloc": [ "default.handlebars->17->436", "default.handlebars->17->434", "default-mobile.handlebars->9->174", "default-mobile.handlebars->9->176" ], + "en": "Activated", + "fr": "Activé" + }, + { + "xloc": [ "default.handlebars->17->978", "default.handlebars->17->976", "default.handlebars->17->196", "default.handlebars->17->194" ], + "en": "Activation", + "cs": "Aktivace" + }, + { + "xloc": [ "default.handlebars->17->460" ], + "en": "Active User{0}" + }, + { + "xloc": [ "default.handlebars->17->979", "default.handlebars->17->197" ], + "en": "Add a new computer to this mesh by installing the mesh agent." + }, + { + "xloc": [ "default.handlebars->17->191" ], + "en": "Add a new Intel® AMT computer by scanning the local network." + }, + { + "xloc": [ "default.handlebars->17->187", "default.handlebars->17->971" ], + "en": "Add a new Intel® AMT computer that is located on the internet." + }, + { + "xloc": [ "default.handlebars->17->189", "default.handlebars->17->973" ], + "en": "Add a new Intel® AMT computer that is located on the local network." + }, + { + "xloc": [ "default.handlebars->17->201" ], + "en": "Add a new Intel® AMT device to device group \\\"{0}\\\"." + }, + { + "xloc": [ "default.handlebars->17->198" ], + "en": "Add Agent", + "cs": "Přidat agenta", + "fr": "Ajouter un agent" + }, + { + "xloc": [ "default.handlebars->17->188" ], + "en": "Add CIRA", + "cs": "Přidat CIRA", + "fr": "Ajouter CIRA" + }, + { + "xloc": [ "default.handlebars->17->506" ], + "en": "Add Device Event", + "fr": "Ajouter un événement" + }, + { + "xloc": [ "default.handlebars->17->169" ], + "en": "Add Device Group", + "cs": "Přidat skupinu zařízení", + "fr": "Ajouter un groupe" + }, + { + "xloc": [ "default.handlebars->17->243" ], + "en": "Add Intel® AMT CIRA device" + }, + { + "xloc": [ "default.handlebars->17->211" ], + "en": "Add Intel® AMT device" + }, + { + "xloc": [ "default.handlebars->17->107" ], + "en": "Add Key" + }, + { + "xloc": [ "default.handlebars->17->190" ], + "en": "Add Local" + }, + { + "xloc": [ "default.handlebars->17->310" ], + "en": "Add Mesh Agent", + "cs": "Přidat agenta" + }, + { + "xloc": [ "default.handlebars->17->167", "default.handlebars->17->165" ], + "en": "add one", + "cs": "přidat", + "fr": "ajoute un" + }, + { + "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é" + }, + { + "xloc": [ "default-mobile.handlebars->9->306" ], + "en": "Add User to Mesh", + "fr": "Ajouter un utilisateur au groupe" + }, + { + "xloc": [ "default.handlebars->17->970" ], + "en": "Add Users", + "fr": "Ajouter des utilisateurs" + }, + { + "xloc": [ "default.handlebars->17->1056" ], + "en": "Add Users to Device Group" + }, + { + "xloc": [ "default.handlebars->17->108" ], + "en": "Add YubiKey® OTP" + }, + { + "xloc": [ "default.handlebars->17->143", "default.handlebars->17->160" ], + "en": "Address", + "cs": "Adresa" + }, + { + "xloc": [ "player.htm->3->7" ], + "en": "Addresses" + }, + { + "xloc": [ "default.handlebars->17->206" ], + "en": "admin" + }, + { + "xloc": [ "default.handlebars->17->1220" ], + "en": "Admin Realms" + }, + { + "xloc": [ "default.handlebars->17->1184" ], + "en": "Administrative Realms" + }, + { + "xloc": [ "default.handlebars->17->1147" ], + "en": "Administrator" + }, + { + "xloc": [ "default.handlebars->17->679" ], + "en": "Afrikaans" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->container->column_l->p15->consoleTable->1->0->1->1" ], + "en": "Agent Action" + }, + { + "xloc": [ "default.handlebars->17->118", "default.handlebars->17->498", "default.handlebars->17->497" ], + "en": "Agent connected", + "cs": "Agent připojen" + }, + { + "xloc": [ "default.handlebars->17->1063", "default-mobile.handlebars->9->312" ], + "en": "Agent Console" + }, + { + "xloc": [ "default.handlebars->17->122" ], + "en": "Agent disconnected" + }, + { + "xloc": [ "default.handlebars->17->650" ], + "en": "Agent is offline" + }, + { + "xloc": [ "default.handlebars->17->649" ], + "en": "Agent is online", + "cs": "Agent je online" + }, + { + "xloc": [ "default-mobile.handlebars->9->190" ], + "en": "Agent Relay" + }, + { + "xloc": [ "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->1", "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->1" ], + "en": "Agent Remote Desktop" + }, + { + "xloc": [ "default.handlebars->17->453", "default-mobile.handlebars->9->186" ], + "en": "Agent Tag" + }, + { + "xloc": [ "default.handlebars->17->1258" ], + "en": "Agents", + "cs": "Agenti" + }, + { + "xloc": [ "default.handlebars->17->680" ], + "en": "Albanian" + }, + { + "xloc": [ "default-mobile.handlebars->9->243", "default-mobile.handlebars->9->241", "default-mobile.handlebars->9->73" ], + "en": "All", + "cs": "Vše", + "fr": "Tout" + }, + { + "xloc": [ "default-mobile.handlebars->9->230" ], + "en": "All Displays" + }, + { + "xloc": [ "default.handlebars->17->574", "default.handlebars->17->573", "default.handlebars->17->571" ], + "en": "All Focus" + }, + { + "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." + }, + { + "xloc": [ "default-mobile.handlebars->dialog->3->dialog3->deskkeys->19", "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3->deskkeys->17" ], + "en": "Alt-F4" + }, + { + "xloc": [ "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3->deskkeys->21", "default-mobile.handlebars->dialog->3->dialog3->deskkeys->23" ], + "en": "Alt-Tab" + }, + { + "xloc": [ "default.handlebars->17->606" ], + "en": "Alternate (F10 = ESC+0)" + }, + { + "xloc": [ "default.handlebars->17->953" ], + "en": "Always Notify", + "fr": "Toujours aviser" + }, + { + "xloc": [ "default.handlebars->17->954" ], + "en": "Always Prompt" + }, + { + "xloc": [ "default.handlebars->17->339", "default.handlebars->17->153" ], + "en": "AMT" + }, + { + "xloc": [ ], + "en": "and its source can be downloaded from" + }, + { + "xloc": [ "default.handlebars->17->414", "default-mobile.handlebars->9->154" ], + "en": "Android APK" + }, + { + "xloc": [ "default-mobile.handlebars->9->149", "default.handlebars->17->409" ], + "en": "Android ARM" + }, + { + "xloc": [ "default.handlebars->17->412", "default-mobile.handlebars->9->152" ], + "en": "Android x86" + }, + { + "xloc": [ "default.handlebars->17->459" ], + "en": "Antivirus", + "fr": "Antivirus" + }, + { + "xloc": [ "default.handlebars->17->251" ], + "en": "Any supported" + }, + { + "xloc": [ "default.handlebars->17->281" ], + "en": "Apple MacOS" + }, + { + "xloc": [ "default.handlebars->17->253" ], + "en": "Apple MacOS only" + }, + { + "xloc": [ "agentinvite.handlebars->container->column_l->5->macostab->1" ], + "en": "Apple™ MacOS" + }, + { + "xloc": [ "default.handlebars->17->682" ], + "en": "Arabic (Algeria)" + }, + { + "xloc": [ "default.handlebars->17->683" ], + "en": "Arabic (Bahrain)" + }, + { + "xloc": [ "default.handlebars->17->684" ], + "en": "Arabic (Egypt)" + }, + { + "xloc": [ "default.handlebars->17->685" ], + "en": "Arabic (Iraq)" + }, + { + "xloc": [ "default.handlebars->17->686" ], + "en": "Arabic (Jordan)" + }, + { + "xloc": [ "default.handlebars->17->687" ], + "en": "Arabic (Kuwait)" + }, + { + "xloc": [ "default.handlebars->17->688" ], + "en": "Arabic (Lebanon)" + }, + { + "xloc": [ "default.handlebars->17->689" ], + "en": "Arabic (Libya)" + }, + { + "xloc": [ "default.handlebars->17->690" ], + "en": "Arabic (Morocco)" + }, + { + "xloc": [ "default.handlebars->17->691" ], + "en": "Arabic (Oman)" + }, + { + "xloc": [ "default.handlebars->17->692" ], + "en": "Arabic (Qatar)" + }, + { + "xloc": [ "default.handlebars->17->693" ], + "en": "Arabic (Saudi Arabia)" + }, + { + "xloc": [ "default.handlebars->17->681" ], + "en": "Arabic (Standard)" + }, + { + "xloc": [ "default.handlebars->17->694" ], + "en": "Arabic (Syria)" + }, + { + "xloc": [ "default.handlebars->17->695" ], + "en": "Arabic (Tunisia)" + }, + { + "xloc": [ "default.handlebars->17->696" ], + "en": "Arabic (U.A.E.)" + }, + { + "xloc": [ "default.handlebars->17->697" ], + "en": "Arabic (Yemen)" + }, + { + "xloc": [ "default.handlebars->17->698" ], + "en": "Aragonese" + }, + { + "xloc": [ "default.handlebars->17->46" ], + "en": "Architecture", + "cs": "Architektura", + "fr": "Architecture" + }, + { + "xloc": [ "default.handlebars->17->182" ], + "en": "Are you sure you want to connect to {0} devices?" + }, + { + "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." + }, + { + "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}?" + }, + { + "xloc": [ "default.handlebars->17->534" ], + "en": "Are you sure you want to uninstall selected agent?" + }, + { + "xloc": [ "default.handlebars->17->533" ], + "en": "Are you sure you want to uninstall the selected {0} agents?" + }, + { + "xloc": [ "default.handlebars->17->1288" ], + "en": "Are you sure you want to {0} the plugin: {1}" + }, + { + "xloc": [ "default-mobile.handlebars->9->164", "default.handlebars->17->424" ], + "en": "ARM-Linaro" + }, + { + "xloc": [ "default.handlebars->17->699" ], + "en": "Armenian" + }, + { + "xloc": [ "default.handlebars->17->425", "default-mobile.handlebars->9->165" ], + "en": "ARMv6l / ARMv7l" + }, + { + "xloc": [ "default.handlebars->17->427", "default-mobile.handlebars->9->167" ], + "en": "ARMv6l / ARMv7l / NoKVM" + }, + { + "xloc": [ "default-mobile.handlebars->9->166", "default.handlebars->17->426" ], + "en": "ARMv8 64bit" + }, + { + "xloc": [ "default.handlebars->17->700" ], + "en": "Assamese" + }, + { + "xloc": [ "default.handlebars->17->701" ], + "en": "Asturian" + }, + { + "xloc": [ "default.handlebars->17->1221" ], + "en": "Authentication App" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->87" ], + "en": "Authenticator app activation successful." + }, + { + "xloc": [ "default.handlebars->17->92" ], + "en": "Authenticator application removed." + }, + { + "xloc": [ "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSizeDropDown->termSizeList->2" ], + "en": "Auto", + "fr": "Automatique" + }, + { + "xloc": [ "default.handlebars->17->941" ], + "en": "Auto-Remove" + }, + { + "xloc": [ "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3" ], + "en": "AutoConnect" + }, + { + "xloc": [ "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->kvmListToolbar->5" ], + "en": "Automatic connect", + "fr": "Connexion automatique" + }, + { + "xloc": [ "default.handlebars->17->702" ], + "en": "Azerbaijani" + }, + { + "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" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->285" ], + "en": "Background & interactive" + }, + { + "xloc": [ "default.handlebars->17->263" ], + "en": "Background and interactive" + }, + { + "xloc": [ "default.handlebars->17->286", "default.handlebars->17->264" ], + "en": "Background only" + }, + { + "xloc": [ ], + "en": "Backspace", + "fr": "Retour arrière" + }, + { + "xloc": [ "default.handlebars->17->1223" ], + "en": "Backup Codes" + }, + { + "xloc": [ "default.handlebars->17->703" ], + "en": "Basque" + }, + { + "xloc": [ "default.handlebars->container->column_l->p4->3->1->0->3->1->5" ], + "en": "Batch create many user accounts" + }, + { + "xloc": [ "default.handlebars->17->705" ], + "en": "Belarusian" + }, + { + "xloc": [ "default.handlebars->17->706" ], + "en": "Bengali" + }, + { + "xloc": [ "default.handlebars->17->30" ], + "en": "BIOS" + }, + { + "xloc": [ "default.handlebars->17->707" ], + "en": "Bosnian" + }, + { + "xloc": [ "default.handlebars->17->708" ], + "en": "Breton" + }, + { + "xloc": [ "default.handlebars->container->column_l->p4->3->1->0->3->1" ], + "en": "Broadcast", + "fr": "Diffuser" + }, + { + "xloc": [ "default.handlebars->17->1169" ], + "en": "Broadcast a message to all connected users." + }, + { + "xloc": [ "default.handlebars->17->1170" ], + "en": "Broadcast Message", + "fr": "Diffusion d'un Message" + }, + { + "xloc": [ "default.handlebars->17->704" ], + "en": "Bulgarian" + }, + { + "xloc": [ "default.handlebars->17->709" ], + "en": "Burmese" + }, + { + "xloc": [ "default.handlebars->17->1289" ], + "en": "Call Error", + "fr": "Erreur d'appel" + }, + { + "xloc": [ "default-mobile.handlebars->9->38", "default.handlebars->17->926" ], + "en": "Cancel", + "cs": "Zrušit", + "fr": "Annuler" + }, + { + "xloc": [ "default.handlebars->17->40" ], + "en": "Capacity / Speed" + }, + { + "xloc": [ "default.handlebars->17->710" ], + "en": "Catalan" + }, + { + "xloc": [ "default.handlebars->17->439", "default-mobile.handlebars->9->178" ], + "en": "CCM" + }, + { + "xloc": [ "default.handlebars->17->373" ], + "en": "Center map here", + "fr": "Centré la carte ici" + }, + { + "xloc": [ "default.handlebars->17->711" ], + "en": "Chamorro" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->1234" ], + "en": "Change Email for {0}" + }, + { + "xloc": [ "default.handlebars->17->480", "default.handlebars->17->543", "default.handlebars->17->542" ], + "en": "Change Group", + "cs": "Změnit skupinu" + }, + { + "xloc": [ "default.handlebars->17->902", "default-mobile.handlebars->9->46" ], + "en": "Change Password", + "cs": "Změnit heslo" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->1241" ], + "en": "Change Password for {0}" + }, + { + "xloc": [ ], + "en": "Change the agent Java Script code module" + }, + { + "xloc": [ ], + "en": "Change the power state of the remote machine" + }, + { + "xloc": [ "default.handlebars->17->889" ], + "en": "Change your account email address here." + }, + { + "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." + }, + { + "xloc": [ "default.handlebars->17->876" ], + "en": "Changing the language will require a refresh of the page." + }, + { + "xloc": [ "default.handlebars->17->1139" ], + "en": "Chat" + }, + { + "xloc": [ "default.handlebars->17->1073", "default-mobile.handlebars->9->304", "default.handlebars->17->1054", "default-mobile.handlebars->9->322" ], + "en": "Chat & Notify" + }, + { + "xloc": [ "default.handlebars->17->712" ], + "en": "Chechen" + }, + { + "xloc": [ "default.handlebars->17->83" ], + "en": "Check and click OK to clear error log." + }, + { + "xloc": [ "default.handlebars->17->78" ], + "en": "Check and click OK to start server self-update." + }, + { + "xloc": [ "default.handlebars->container->column_l->p6->p2ServerActions->3->p2ServerActionsVersion->0" ], + "en": "Check server version", + "cs": "Zkontrolovat verzi serveru" + }, + { + "xloc": [ "default.handlebars->17->1285", "default.handlebars->17->678" ], + "en": "Checking...", + "cs": "Kontrola..." + }, + { + "xloc": [ "default.handlebars->17->713" ], + "en": "Chinese" + }, + { + "xloc": [ "default.handlebars->17->714" ], + "en": "Chinese (Hong Kong)" + }, + { + "xloc": [ "default.handlebars->17->715" ], + "en": "Chinese (PRC)" + }, + { + "xloc": [ "default.handlebars->17->716" ], + "en": "Chinese (Singapore)" + }, + { + "xloc": [ "default.handlebars->17->717" ], + "en": "Chinese (Taiwan)" + }, + { + "xloc": [ "default.handlebars->17->417", "default-mobile.handlebars->9->157" ], + "en": "ChromeOS" + }, + { + "xloc": [ "default.handlebars->17->718" ], + "en": "Chuvash" + }, + { + "xloc": [ "default.handlebars->17->1010", "default.handlebars->17->337", "default.handlebars->17->151", "default.handlebars->17->1005", "default-mobile.handlebars->9->119" ], + "en": "CIRA" + }, + { + "xloc": [ "default.handlebars->17->1280" ], + "en": "CIRA Server" + }, + { + "xloc": [ "default.handlebars->17->1281" ], + "en": "CIRA Server Commands" + }, + { + "xloc": [ "default.handlebars->17->228" ], + "en": "Cleanup CIRA" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->659" ], + "en": "Clear the core" + }, + { + "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." + }, + { + "xloc": [ "default.handlebars->17->100" ], + "en": "Clear Tokens" + }, + { + "xloc": [ "default.handlebars->container->column_l->p1->NoMeshesPanel->1->1->0->3->getStarted1->1->0" ], + "en": "click here to create a device group" + }, + { + "xloc": [ "default.handlebars->17->388" ], + "en": "Click here to edit the server-side device name" + }, + { + "xloc": [ "default.handlebars->17->886", "default-mobile.handlebars->9->31" ], + "en": "Click ok to send a verification mail to:" + }, + { + "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í" + }, + { + "xloc": [ "default.handlebars->container->masthead->5" ], + "en": "Click to view current notifications" + }, + { + "xloc": [ "default.handlebars->17->1009", "default.handlebars->17->1004" ], + "en": "Client Initiated Remote Access" + }, + { + "xloc": [ "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3" ], + "en": "Clipboard" + }, + { + "xloc": [ "default.handlebars->17->106", "default.handlebars->17->591", "default.handlebars->17->98", "default-mobile.handlebars->9->23" ], + "en": "Close" + }, + { + "xloc": [ "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarView->viewselect->1" ], + "en": "Columns", + "cs": "Buňky" + }, + { + "xloc": [ "default.handlebars->17->1112", "default-mobile.handlebars->9->83" ], + "en": "Confim {0} of {1} entrie{2} to this location?" + }, + { + "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" + }, + { + "xloc": [ "default-mobile.handlebars->9->254", "default.handlebars->17->629" ], + "en": "Confirm copy of 1 entrie to this location?" + }, + { + "xloc": [ "default-mobile.handlebars->9->253", "default.handlebars->17->628" ], + "en": "Confirm copy of {0} entries's to this location?" + }, + { + "xloc": [ "default.handlebars->17->359" ], + "en": "Confirm delete selected devices(s)?", + "cs": "Potvrdit smázání vybraných zařízení?" + }, + { + "xloc": [ "default.handlebars->17->631", "default-mobile.handlebars->9->256" ], + "en": "Confirm move of 1 entrie to this location?" + }, + { + "xloc": [ "default.handlebars->17->630", "default-mobile.handlebars->9->255" ], + "en": "Confirm move of {0} entries's to this location?" + }, + { + "xloc": [ "default.handlebars->17->1111" ], + "en": "Confirm overwrite?" + }, + { + "xloc": [ "default.handlebars->17->668", "default-mobile.handlebars->9->30" ], + "en": "Confirm removal of authenticator application 2-step login?" + }, + { + "xloc": [ "default-mobile.handlebars->9->330", "default.handlebars->17->1082" ], + "en": "Confirm removal of user {0}?" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->kvmListToolbar", "default.handlebars->17->181" ], + "en": "Connect All" + }, + { + "xloc": [ "default.handlebars->17->1012", "default.handlebars->17->1008" ], + "en": "Connect to server", + "cs": "Připojit se na server" + }, + { + "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" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->11", "default-mobile.handlebars->9->4" ], + "en": "Connected" + }, + { + "xloc": [ "messenger.handlebars->13->7" ], + "en": "Connected.", + "cs": "Připojeno." + }, + { + "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..." + }, + { + "xloc": [ "messenger.handlebars->13->3" ], + "en": "Connection closed." + }, + { + "xloc": [ "default.handlebars->17->1257" ], + "en": "Connection Count" + }, + { + "xloc": [ "default.handlebars->17->1279" ], + "en": "Connection Relay" + }, + { + "xloc": [ "default.handlebars->container->column_l->p40->3->1->p40type->1" ], + "en": "Connections" + }, + { + "xloc": [ "default-mobile.handlebars->9->192", "default.handlebars->17->144", "default.handlebars->17->471", "default.handlebars->17->161" ], + "en": "Connectivity" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->389" ], + "en": "Console - ", + "cs": "Konzole - " + }, + { + "xloc": [ "default.handlebars->17->655" ], + "en": "console.txt" + }, + { + "xloc": [ "default.handlebars->17->1267" ], + "en": "Cookie encoder" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->1115", "default-mobile.handlebars->9->86" ], + "en": "copy" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->276" ], + "en": "Copy link to clipboard" + }, + { + "xloc": [ "default.handlebars->17->71", "default.handlebars->17->63" ], + "en": "Copy MAC address to clipboard", + "cs": "Kopírovat MAC adresu do schránky" + }, + { + "xloc": [ "default.handlebars->17->301" ], + "en": "Copy MacOS agent URL to clipboard", + "cs": "Kopírovat odkaz pro MacOS agenta do schránky" + }, + { + "xloc": [ "default.handlebars->17->61" ], + "en": "Copy name to clipboard", + "cs": "Zkopírovat jméno do schránky" + }, + { + "xloc": [ "agentinvite.handlebars->container->column_l->5->linuxtab" ], + "en": "Copy to clipboard", + "cs": "Zkopírovat do schránky" + }, + { + "xloc": [ "default.handlebars->17->101" ], + "en": "Copy valid codes to clipboard" + }, + { + "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." + }, + { + "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." + }, + { + "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" + }, + { + "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/." + }, + { + "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" + }, + { + "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," + }, + { + "xloc": [ "default.handlebars->17->1266" ], + "en": "Core Server" + }, + { + "xloc": [ "default.handlebars->17->719" ], + "en": "Corsican" + }, + { + "xloc": [ "default.handlebars->17->1253" ], + "en": "CPU load in the last 15 minutes" + }, + { + "xloc": [ "default.handlebars->17->1252" ], + "en": "CPU load in the last 5 minutes" + }, + { + "xloc": [ "default.handlebars->17->1251" ], + "en": "CPU load in the last minute", + "cs": "CPU zatížení v poslední minutě" + }, + { + "xloc": [ "default.handlebars->17->608", "default.handlebars->17->599" ], + "en": "CR+LF" + }, + { + "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." + }, + { + "xloc": [ "default.handlebars->17->168" ], + "en": "Create a new group of devices.", + "cs": "Vytvořit novou skupinu zařízení." + }, + { + "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" + }, + { + "xloc": [ "default-mobile.handlebars->9->58" ], + "en": "Create Device Group", + "cs": "Vytvořit skupinu zařízení" + }, + { + "xloc": [ "default.handlebars->17->1152" ], + "en": "Create many accounts at once by importing a JSON file with the following format:" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->1209" ], + "en": "Creation" + }, + { + "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:" + }, + { + "xloc": [ "default.handlebars->17->720" ], + "en": "Cree" + }, + { + "xloc": [ "default.handlebars->17->721" ], + "en": "Croatian" + }, + { + "xloc": [ "default.handlebars->17->1123", "default.handlebars->17->1161" ], + "en": "CSV Format" + }, + { + "xloc": [ ], + "en": "Ctl-C" + }, + { + "xloc": [ ], + "en": "Ctl-X" + }, + { + "xloc": [ "default.handlebars->17->15" ], + "en": "Ctrl" + }, + { + "xloc": [ "default-mobile.handlebars->dialog->3->dialog3->deskkeys->1", "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3->deskkeys->1" ], + "en": "Ctrl+Alt+Del" + }, + { + "xloc": [ "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3->deskkeys->19", "default-mobile.handlebars->dialog->3->dialog3->deskkeys->21" ], + "en": "Ctrl-W" + }, + { + "xloc": [ "default.handlebars->17->74" ], + "en": "Current Version" + }, + { + "xloc": [ ], + "en": "Cut", + "cs": "Vyjmout" + }, + { + "xloc": [ "default.handlebars->17->722" ], + "en": "Czech" + }, + { + "xloc": [ "default.handlebars->17->723" ], + "en": "Danish" + }, + { + "xloc": [ "default.handlebars->17->568" ], + "en": "DataChannel" + }, + { + "xloc": [ "default.handlebars->17->879" ], + "en": "Dates & Time", + "cs": "Datum & čas" + }, + { + "xloc": [ "default.handlebars->17->521" ], + "en": "Day", + "cs": "Den" + }, + { + "xloc": [ "default.handlebars->17->996" ], + "en": "Deactivate Client Control Mode (CCM)" + }, + { + "xloc": [ "default-mobile.handlebars->9->107", "default.handlebars->17->320" ], + "en": "Deep Sleep" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->894", "default-mobile.handlebars->9->40" ], + "en": "Delete Account", + "cs": "Smazat účet" + }, + { + "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" + }, + { + "xloc": [ "default-mobile.handlebars->9->196", "default.handlebars->17->482" ], + "en": "Delete Device", + "cs": "Smazat zařízení" + }, + { + "xloc": [ "default.handlebars->17->356" ], + "en": "Delete devices" + }, + { + "xloc": [ "default.handlebars->17->989", "default.handlebars->17->1019", "default-mobile.handlebars->9->285", "default-mobile.handlebars->9->282" ], + "en": "Delete Group" + }, + { + "xloc": [ "default.handlebars->17->547", "default-mobile.handlebars->9->215" ], + "en": "Delete Node" + }, + { + "xloc": [ "default.handlebars->17->361" ], + "en": "Delete Nodes", + "cs": "Smazat nody" + }, + { + "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?" + }, + { + "xloc": [ "default.handlebars->17->1242" ], + "en": "Delete User {0}", + "cs": "Smazat uživatele {0}" + }, + { + "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?" + }, + { + "xloc": [ "default-mobile.handlebars->9->216" ], + "en": "Delete {0}?" + }, + { + "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" + }, + { + "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" + }, + { + "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" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->596" ], + "en": "DeskControl" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->container->column_l->p11->p11title->p11deviceNameHeader->5" ], + "en": "Desktop -" + }, + { + "xloc": [ "default.handlebars->17->948" ], + "en": "Desktop Notify" + }, + { + "xloc": [ "default.handlebars->17->947" ], + "en": "Desktop Prompt" + }, + { + "xloc": [ "default.handlebars->17->945" ], + "en": "Desktop Prompt+Toolbar" + }, + { + "xloc": [ "default.handlebars->17->946" ], + "en": "Desktop Toolbar" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevInfo" ], + "en": "Details", + "cs": "Detaily" + }, + { + "xloc": [ "default.handlebars->container->column_l->p17->p17title->3" ], + "en": "Details -", + "cs": "Detaily -" + }, + { + "xloc": [ "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5" ], + "en": "Device", + "cs": "Zařízení" + }, + { + "xloc": [ "default-mobile.handlebars->9->208", "default.handlebars->17->520" ], + "en": "Device Action", + "cs": "Akce zařízení" + }, + { + "xloc": [ "default.handlebars->17->882" ], + "en": "Device connections." + }, + { + "xloc": [ "default.handlebars->17->883" ], + "en": "Device disconnections." + }, + { + "xloc": [ "default.handlebars->17->509" ], + "en": "Device group notes can be viewed and changed by other device group administrators." + }, + { + "xloc": [ "default.handlebars->17->1080", "default-mobile.handlebars->9->328" ], + "en": "Device Group User" + }, + { + "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" + }, + { + "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." + }, + { + "xloc": [ "default.handlebars->17->331", "default-mobile.handlebars->9->115" ], + "en": "Device is hibernating (S4)" + }, + { + "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)" + }, + { + "xloc": [ "default.handlebars->17->319" ], + "en": "Device is in deep sleep state (S3).", + "cs": "Zařízení je v hlubokém spánku (S3)." + }, + { + "xloc": [ "default.handlebars->17->321" ], + "en": "Device is in hibernating state (S4)." + }, + { + "xloc": [ "default.handlebars->17->323" ], + "en": "Device is in powered off state (S5).", + "cs": "Zařízení je vypnuto (S5)." + }, + { + "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)" + }, + { + "xloc": [ "default.handlebars->17->315" ], + "en": "Device is in sleep state (S1)." + }, + { + "xloc": [ "default-mobile.handlebars->9->113", "default.handlebars->17->329" ], + "en": "Device is in sleep state (S2)" + }, + { + "xloc": [ "default.handlebars->17->317" ], + "en": "Device is in sleep state (S2)." + }, + { + "xloc": [ "default.handlebars->17->332", "default-mobile.handlebars->9->116" ], + "en": "Device is in soft-off state (S5)" + }, + { + "xloc": [ "default.handlebars->17->327", "default-mobile.handlebars->9->111" ], + "en": "Device is powered", + "cs": "Zařízení je zapnuto" + }, + { + "xloc": [ "default.handlebars->17->313" ], + "en": "Device is powered on." + }, + { + "xloc": [ "default.handlebars->17->333", "default-mobile.handlebars->9->117" ], + "en": "Device is present, but power state cannot be determined" + }, + { + "xloc": [ "default.handlebars->17->548" ], + "en": "Device Location" + }, + { + "xloc": [ "default.handlebars->17->379" ], + "en": "Device name", + "cs": "Název zařízení" + }, + { + "xloc": [ "player.htm->3->9", "default.handlebars->17->202", "default.handlebars->17->562", "default-mobile.handlebars->9->219" ], + "en": "Device Name" + }, + { + "xloc": [ "default.handlebars->17->511" ], + "en": "Device Notification" + }, + { + "xloc": [ "default-mobile.handlebars->9->201" ], + "en": "Device Toast" + }, + { + "xloc": [ "default.handlebars->17->358" ], + "en": "DeviceCheckbox" + }, + { + "xloc": [ "default.handlebars->17->456" ], + "en": "Disabled" + }, + { + "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" + }, + { + "xloc": [ ], + "en": "Disconnect All" + }, + { + "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é" + }, + { + "xloc": [ ], + "en": "Display a notification on the remote computer" + }, + { + "xloc": [ "default.handlebars->17->582" ], + "en": "Display name" + }, + { + "xloc": [ "default.handlebars->17->60" ], + "en": "DNS suffix" + }, + { + "xloc": [ "default.handlebars->17->1002" ], + "en": "Do nothing", + "cs": "Nic" + }, + { + "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?" + }, + { + "xloc": [ "default.handlebars->17->1006", "default.handlebars->17->1011" ], + "en": "Don\\'t configure" + }, + { + "xloc": [ "default.handlebars->17->1007" ], + "en": "Don\\'t connect to server" + }, + { + "xloc": [ "download.handlebars->container->page_content->column_l->1" ], + "en": "Download", + "cs": "Stažení", + "fr": "Télécharger" + }, + { + "xloc": [ ], + "en": "Download console text" + }, + { + "xloc": [ "default.handlebars->container->column_l->p40->3->1" ], + "en": "Download data points (.csv)" + }, + { + "xloc": [ "default.handlebars->17->82" ], + "en": "Download error log" + }, + { + "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" + }, + { + "xloc": [ "default-mobile.handlebars->9->267", "default.handlebars->17->641" ], + "en": "Download File", + "cs": "Stáhnout soubor" + }, + { + "xloc": [ "default.handlebars->17->172" ], + "en": "Download MeshCentral Router, a TCP port mapping tool." + }, + { + "xloc": [ "default.handlebars->17->559" ], + "en": "Download MeshCmd" + }, + { + "xloc": [ "default.handlebars->17->170" ], + "en": "Download MeshCmd, a command line tool that performs many functions." + }, + { + "xloc": [ "default.handlebars->container->column_l->p42->3->3" ], + "en": "Download Plugin" + }, + { + "xloc": [ "default.handlebars->17->522" ], + "en": "Download power events" + }, + { + "xloc": [ "default.handlebars->container->column_l->p6->p2ServerActions->3->p2ServerActionsBackup->0" ], + "en": "Download server backup" + }, + { + "xloc": [ "agentinvite.handlebars->container->column_l->5->macostab->3->macosurl" ], + "en": "Download the installer here", + "cs": "Stáhnout instalaci zde" + }, + { + "xloc": [ "default.handlebars->17->1122" ], + "en": "Download the list of events with one of the file formats below." + }, + { + "xloc": [ "default.handlebars->17->1160" ], + "en": "Download the list of users with one of the file formats below." + }, + { + "xloc": [ "agentinvite.handlebars->container->column_l->5->wintab64->3->win64url", "agentinvite.handlebars->container->column_l->5->wintab32->3->win32url" ], + "en": "Download the software here" + }, + { + "xloc": [ "default.handlebars->container->column_l->p41->3->1" ], + "en": "Download trace (.csv)" + }, + { + "xloc": [ "default.handlebars->container->column_l->p4->3->1->0->3->1->3" ], + "en": "Download user information" + }, + { + "xloc": [ "player.htm->3->18" ], + "en": "Drag & drop a .mcrec file or click \\\"Open File...\\\"" + }, + { + "xloc": [ "player.htm->3->2" ], + "en": "Duration" + }, + { + "xloc": [ "default.handlebars->17->1016" ], + "en": "During activation, the agent will have access to admin password infomation." + }, + { + "xloc": [ "default.handlebars->17->725" ], + "en": "Dutch (Belgian)" + }, + { + "xloc": [ "default.handlebars->17->724" ], + "en": "Dutch (Standard)" + }, + { + "xloc": [ ], + "en": "Edit" + }, + { + "xloc": [ "default.handlebars->17->567", "default-mobile.handlebars->9->224" ], + "en": "Edit Device" + }, + { + "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í" + }, + { + "xloc": [ "default.handlebars->17->1034" ], + "en": "Edit Device Group Features" + }, + { + "xloc": [ "default.handlebars->17->1033" ], + "en": "Edit Device Group User Consent" + }, + { + "xloc": [ "default.handlebars->17->1052", "default-mobile.handlebars->9->302" ], + "en": "Edit Device Notes", + "cs": "Upravit popis zařízení" + }, + { + "xloc": [ "default.handlebars->17->447", "default.handlebars->17->444", "default-mobile.handlebars->9->214", "default.handlebars->17->529" ], + "en": "Edit Intel® AMT credentials" + }, + { + "xloc": [ "default.handlebars->17->1066", "default-mobile.handlebars->9->315" ], + "en": "Edit Notes", + "fr": "Modifier les notes" + }, + { + "xloc": [ ], + "en": "Edit remote desktop settings" + }, + { + "xloc": [ "default.handlebars->17->1057" ], + "en": "Edit User Device Group Permissions" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->890", "default-mobile.handlebars->9->35" ], + "en": "Email Address Change", + "cs": "Změna emailové adresy" + }, + { + "xloc": [ "default.handlebars->17->1202" ], + "en": "Email is verified", + "cs": "Email ověřen" + }, + { + "xloc": [ "default.handlebars->17->1177" ], + "en": "Email is verified.", + "cs": "Email je ověřen." + }, + { + "xloc": [ "default.handlebars->17->1203" ], + "en": "Email not verified", + "cs": "Email není ověřen" + }, + { + "xloc": [ "default.handlebars->17->888", "default-mobile.handlebars->9->33" ], + "en": "Email Verification" + }, + { + "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:" + }, + { + "xloc": [ "messenger.handlebars->xtop->1" ], + "en": "Enable browser notification", + "cs": "Zapnout notifikace v prohlížeči" + }, + { + "xloc": [ "default.handlebars->container->column_l->p2->p2AccountActions->3->accountEnableNotificationsSpan->0" ], + "en": "Enable web notifications", + "cs": "Zapnout notifikace prohlížeče" + }, + { + "xloc": [ "default-mobile.handlebars->dialog->3->dialog7->d7amtkvm->3->3" ], + "en": "Encoding" + }, + { + "xloc": [ "default.handlebars->17->726" ], + "en": "English" + }, + { + "xloc": [ "default.handlebars->17->727" ], + "en": "English (Australia)" + }, + { + "xloc": [ "default.handlebars->17->728" ], + "en": "English (Belize)" + }, + { + "xloc": [ "default.handlebars->17->729" ], + "en": "English (Canada)" + }, + { + "xloc": [ "default.handlebars->17->730" ], + "en": "English (Ireland)" + }, + { + "xloc": [ "default.handlebars->17->731" ], + "en": "English (Jamaica)" + }, + { + "xloc": [ "default.handlebars->17->732" ], + "en": "English (New Zealand)" + }, + { + "xloc": [ "default.handlebars->17->733" ], + "en": "English (Philippines)" + }, + { + "xloc": [ "default.handlebars->17->734" ], + "en": "English (South Africa)" + }, + { + "xloc": [ "default.handlebars->17->735" ], + "en": "English (Trinidad & Tobago)" + }, + { + "xloc": [ "default.handlebars->17->736" ], + "en": "English (United Kingdom)", + "fr": "Anglais (Royaume Uni)" + }, + { + "xloc": [ "default.handlebars->17->737" ], + "en": "English (United States)", + "fr": "Anglais (États Unis)" + }, + { + "xloc": [ "default.handlebars->17->738" ], + "en": "English (Zimbabwe)", + "fr": "Anglais (Zimbabwe)" + }, + { + "xloc": [ "default.handlebars->17->917", "default.handlebars->17->916" ], + "en": "Enter" + }, + { + "xloc": [ "default.handlebars->17->1181" ], + "en": "Enter a comma seperate list of administrative realms names." + }, + { + "xloc": [ "default.handlebars->17->217" ], + "en": "Enter a range of IP addresses to scan for Intel AMT devices." + }, + { + "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." + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->85" ], + "en": "Enter the token here for 2-step login:" + }, + { + "xloc": [ "default.handlebars->17->111" ], + "en": "Error, Unable to add key." + }, + { + "xloc": [ "default.handlebars->17->117" ], + "en": "ERROR: ", + "fr": "ERREUR:" + }, + { + "xloc": [ "messenger.handlebars->13->8" ], + "en": "Error: No connection key specified." + }, + { + "xloc": [ "default.handlebars->17->113" ], + "en": "ERROR: Unable to add key.", + "fr": "ERREUR: Impossible d'ajouter la clé." + }, + { + "xloc": [ ], + "en": "ESC" + }, + { + "xloc": [ "default.handlebars->17->739" ], + "en": "Esperanto" + }, + { + "xloc": [ "default.handlebars->17->740" ], + "en": "Estonian" + }, + { + "xloc": [ "default.handlebars->17->647" ], + "en": "Event Details" + }, + { + "xloc": [ "default.handlebars->17->1127" ], + "en": "Event List Export" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->container->column_l->p31->3", "default.handlebars->container->column_l->p16->p16title->3" ], + "en": "Events -", + "fr": "Événements -" + }, + { + "xloc": [ "default.handlebars->17->1129", "default.handlebars->17->1124" ], + "en": "eventslist.csv" + }, + { + "xloc": [ "default.handlebars->17->1126", "default.handlebars->17->1130" ], + "en": "eventslist.json" + }, + { + "xloc": [ "default.handlebars->17->248" ], + "en": "example@email.com" + }, + { + "xloc": [ "login-mobile.handlebars->5->4", "login.handlebars->5->4" ], + "en": "Existing account with this email address." + }, + { + "xloc": [ ], + "en": "Extended Ascii" + }, + { + "xloc": [ "default.handlebars->17->603" ], + "en": "Extended ASCII" + }, + { + "xloc": [ "default.handlebars->17->741" ], + "en": "Faeroese" + }, + { + "xloc": [ "default.handlebars->17->49" ], + "en": "Failed", + "cs": "Selhalo", + "fr": "Échoué" + }, + { + "xloc": [ "default.handlebars->17->742" ], + "en": "Farsi (Persian)", + "fr": "Farsi (Persan)" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->944" ], + "en": "Features", + "cs": "Funkce" + }, + { + "xloc": [ "default.handlebars->17->743" ], + "en": "Fijian" + }, + { + "xloc": [ "default-mobile.handlebars->9->251", "default.handlebars->17->626" ], + "en": "File Editor", + "fr": "Éditeur de fichier" + }, + { + "xloc": [ "default.handlebars->container->dialog->dialogBody->dialog3->d3upload->1" ], + "en": "File Selection", + "fr": "Sélection de fichier" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->container->column_l->p13->p13title->3" ], + "en": "Files -", + "cs": "Soubory -", + "fr": "Dossiers -" + }, + { + "xloc": [ "default.handlebars->17->952" ], + "en": "Files Notify" + }, + { + "xloc": [ "default.handlebars->17->951" ], + "en": "Files Prompt" + }, + { + "xloc": [ "default.handlebars->17->585" ], + "en": "FileSystemDriver" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->744" ], + "en": "Finnish", + "fr": "Finlandais" + }, + { + "xloc": [ ], + "en": "Fixed width interface", + "fr": "Interface à largeur fixe" + }, + { + "xloc": [ ], + "en": "Focus All" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->1239", "default.handlebars->17->1176" ], + "en": "Force password reset on next login." + }, + { + "xloc": [ "login-mobile.handlebars->5->18", "login.handlebars->5->18" ], + "en": "Forgot password?", + "cs": "Zapomenuté heslo?", + "fr": "Mot de passe oublié?" + }, + { + "xloc": [ "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->loginpanel->1->resetAccountDiv->resetAccountSpan" ], + "en": "Forgot user/password?" + }, + { + "xloc": [ "login.handlebars->container->column_l->centralTable->1->0->logincell->loginpanel->1->resetAccountDiv->resetAccountSpan" ], + "en": "Forgot username/password?" + }, + { + "xloc": [ "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->7->1" ], + "en": "Frame rate", + "cs": "Obnovování" + }, + { + "xloc": [ "default.handlebars->17->1248", "default.handlebars->17->1250" ], + "en": "Free", + "fr": "Libre" + }, + { + "xloc": [ "default.handlebars->17->1255" ], + "en": "free", + "fr": "libre" + }, + { + "xloc": [ "default.handlebars->17->430", "default-mobile.handlebars->9->170" ], + "en": "FreeBSD x86-64" + }, + { + "xloc": [ "default.handlebars->17->746" ], + "en": "French (Belgium)", + "fr": "Français (Belgique)" + }, + { + "xloc": [ "default.handlebars->17->747" ], + "en": "French (Canada)", + "fr": "Français (Canada)" + }, + { + "xloc": [ "default.handlebars->17->748" ], + "en": "French (France)", + "fr": "Français (France)" + }, + { + "xloc": [ "default.handlebars->17->749" ], + "en": "French (Luxembourg)", + "fr": "Français (Luxembourg)" + }, + { + "xloc": [ "default.handlebars->17->750" ], + "en": "French (Monaco)", + "fr": "Français (Monaco)" + }, + { + "xloc": [ "default.handlebars->17->745" ], + "en": "French (Standard)", + "fr": "Français (standard)" + }, + { + "xloc": [ "default.handlebars->17->751" ], + "en": "French (Switzerland)", + "fr": "Français (Suisse)" + }, + { + "xloc": [ "default.handlebars->17->752" ], + "en": "Frisian", + "fr": "Frison" + }, + { + "xloc": [ "default.handlebars->17->753" ], + "en": "Friulian", + "fr": "Frioulan" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->1198" ], + "en": "Full administrator", + "cs": "Hlavní administrator", + "fr": "Administrateur complet" + }, + { + "xloc": [ "default.handlebars->17->1058" ], + "en": "Full Administrator (all rights)", + "cs": "Hlavní administrator (všechna práva)", + "fr": "Administrateur Complet (tous droits)" + }, + { + "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." + }, + { + "xloc": [ "default.handlebars->17->790" ], + "en": "FYRO Macedonian", + "fr": "ARY Macédonien" + }, + { + "xloc": [ "default.handlebars->17->755" ], + "en": "Gaelic (Irish)", + "fr": "Gaélique (irlandais)" + }, + { + "xloc": [ "default.handlebars->17->754" ], + "en": "Gaelic (Scots)", + "fr": "Gaélique (écossais)" + }, + { + "xloc": [ "default.handlebars->17->756" ], + "en": "Galacian", + "fr": "Galicien" + }, + { + "xloc": [ "default.handlebars->17->70" ], + "en": "Gateway MAC", + "cs": "MAC brány", + "fr": "Passerelle MAC" + }, + { + "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" + }, + { + "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 -" + }, + { + "xloc": [ "default.handlebars->17->365" ], + "en": "General information", + "cs": "Obecné informace", + "fr": "Informations générales" + }, + { + "xloc": [ "default.handlebars->17->99" ], + "en": "Generate New Tokens", + "cs": "Generovat nové tokeny", + "fr": "Générer de nouveaux jetons" + }, + { + "xloc": [ "default.handlebars->17->757" ], + "en": "Georgian", + "fr": "Géorgien" + }, + { + "xloc": [ "default.handlebars->17->759" ], + "en": "German (Austria)" + }, + { + "xloc": [ "default.handlebars->17->760" ], + "en": "German (Germany)" + }, + { + "xloc": [ "default.handlebars->17->761" ], + "en": "German (Liechtenstein)" + }, + { + "xloc": [ "default.handlebars->17->762" ], + "en": "German (Luxembourg)" + }, + { + "xloc": [ "default.handlebars->17->758" ], + "en": "German (Standard)" + }, + { + "xloc": [ "default.handlebars->17->763" ], + "en": "German (Switzerland)" + }, + { + "xloc": [ "default.handlebars->17->495" ], + "en": "Get MQTT login credentials for this device." + }, + { + "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!" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->919" ], + "en": "Good", + "fr": "Bien" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->764" ], + "en": "Greek", + "fr": "Grec" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->357" ], + "en": "Group Action", + "cs": "Akce skupiny", + "fr": "Action de groupe" + }, + { + "xloc": [ "default.handlebars->17->1038" ], + "en": "Group permissions for user {0}.", + "fr": "Autorisations de groupe pour l'utilisateur {0}." + }, + { + "xloc": [ "default-mobile.handlebars->9->223" ], + "en": "Group1, Group2, Group3", + "cs": "Skupina1, Skupina2, Skupina3", + "fr": "Groupe1, Groupe2, Groupe3" + }, + { + "xloc": [ "default.handlebars->17->765" ], + "en": "Gujurati", + "fr": "Gujarati" + }, + { + "xloc": [ "default.handlebars->17->766" ], + "en": "Haitian", + "fr": "Haïtien" + }, + { + "xloc": [ ], + "en": "Hang up", + "fr": "Raccrocher" + }, + { + "xloc": [ "default.handlebars->17->663" ], + "en": "Hard disconnect agent", + "fr": "Déconnexion forcée de l'agent" + }, + { + "xloc": [ "default.handlebars->17->767" ], + "en": "Hebrew" + }, + { + "xloc": [ "default-mobile.handlebars->9->108", "default.handlebars->17->5", "default.handlebars->17->322", "default-mobile.handlebars->9->101" ], + "en": "Hibernating", + "fr": "Hibernation" + }, + { + "xloc": [ "default.handlebars->17->768" ], + "en": "Hindi" + }, + { + "xloc": [ "login.handlebars->5->1", "login-mobile.handlebars->5->1" ], + "en": "Hold on, reset mail sent.", + "fr": "Attends, le courrier est envoyé." + }, + { + "xloc": [ "default-mobile.handlebars->9->260", "default.handlebars->17->635" ], + "en": "Holding 1 entrie for copy" + }, + { + "xloc": [ "default-mobile.handlebars->9->264", "default.handlebars->17->639" ], + "en": "Holding 1 entrie for move" + }, + { + "xloc": [ "default.handlebars->17->633", "default-mobile.handlebars->9->258" ], + "en": "Holding {0} entries for copy" + }, + { + "xloc": [ "default.handlebars->17->637", "default-mobile.handlebars->9->262" ], + "en": "Holding {0} entries for move" + }, + { + "xloc": [ "default.handlebars->17->1114", "default-mobile.handlebars->9->85" ], + "en": "Holding {0} entrie{1} for {2}" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->942" ], + "en": "Hostname Sync" + }, + { + "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" + }, + { + "xloc": [ "terms.handlebars->container->column_l->47->1->1", "terms-mobile.handlebars->container->page_content->column_l->47->1->1" ], + "en": "http://jquery.com/" + }, + { + "xloc": [ "terms.handlebars->container->column_l->53->1->1", "terms-mobile.handlebars->container->page_content->column_l->53->1->1" ], + "en": "http://jqueryui.com/" + }, + { + "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" + }, + { + "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" + }, + { + "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" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->769" ], + "en": "Hungarian" + }, + { + "xloc": [ ], + "en": "HW Connect", + "fr": "Connexion AMT" + }, + { + "xloc": [ "default.handlebars->17->770" ], + "en": "Icelandic", + "fr": "Islandais" + }, + { + "xloc": [ "default.handlebars->17->561", "default-mobile.handlebars->9->218" ], + "en": "Icon Selection", + "fr": "Sélection de l'icôn" + }, + { + "xloc": [ "default.handlebars->17->1166" ], + "en": "id, name, email, creation, lastlogin, groups, authfactors" + }, + { + "xloc": [ "default.handlebars->17->38" ], + "en": "Identifier", + "fr": "Identifiant" + }, + { + "xloc": [ "default.handlebars->container->dialog->dialogBody->dialog7->d7amtkvm->3->1" ], + "en": "Image Encoding", + "cs": "Kódovaní obrazu" + }, + { + "xloc": [ "default.handlebars->17->771" ], + "en": "Indonesian" + }, + { + "xloc": [ "default.handlebars->contextMenu->cxinfo->0" ], + "en": "Information", + "fr": "Information" + }, + { + "xloc": [ ], + "en": "Information about current core running on this agent", + "fr": "Informations sur le noyau en cours d'exécution sur cet agent" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->980" ], + "en": "Install", + "cs": "Instalace", + "fr": "Installer" + }, + { + "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." + }, + { + "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." + }, + { + "xloc": [ "default.handlebars->17->972" ], + "en": "Install CIRA", + "fr": "Installer CIRA" + }, + { + "xloc": [ "default.handlebars->17->974" ], + "en": "Install local" + }, + { + "xloc": [ "default.handlebars->17->284", "default.handlebars->17->262" ], + "en": "Installation Type", + "cs": "Typ instalace" + }, + { + "xloc": [ "default.handlebars->17->605", "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons" ], + "en": "Intel (F10 = ESC+[OM)" + }, + { + "xloc": [ "default.handlebars->17->1278", "default.handlebars->17->1262" ], + "en": "Intel AMT" + }, + { + "xloc": [ "default.handlebars->17->120" ], + "en": "Intel AMT CIRA connected" + }, + { + "xloc": [ "default.handlebars->17->124" ], + "en": "Intel AMT CIRA disconnected" + }, + { + "xloc": [ "default.handlebars->17->119" ], + "en": "Intel AMT detected", + "fr": "Intel AMT détecté" + }, + { + "xloc": [ "default.handlebars->17->440" ], + "en": "Intel AMT is activated in Admin Control Mode" + }, + { + "xloc": [ "default.handlebars->17->438" ], + "en": "Intel AMT is activated in Client Control Mode" + }, + { + "xloc": [ "default.handlebars->17->442" ], + "en": "Intel AMT is setup with TLS network security" + }, + { + "xloc": [ "default.handlebars->17->123" ], + "en": "Intel AMT not detected", + "fr": "Intel AMT non détecté" + }, + { + "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:" + }, + { + "xloc": [ "default.handlebars->17->604" ], + "en": "Intel ASCII" + }, + { + "xloc": [ "default.handlebars->17->449" ], + "en": "Intel® Active Management Technology" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->216", "default.handlebars->17->213" ], + "en": "Intel® AMT activation" + }, + { + "xloc": [ "default.handlebars->17->464", "default-mobile.handlebars->9->188" ], + "en": "Intel® AMT CIRA" + }, + { + "xloc": [ "default.handlebars->17->336", "default.handlebars->17->150", "default.handlebars->17->463" ], + "en": "Intel® AMT CIRA is connected and ready for use." + }, + { + "xloc": [ "default-mobile.handlebars->9->5", "default.handlebars->17->12" ], + "en": "Intel® AMT Connected" + }, + { + "xloc": [ "default.handlebars->17->500", "default-mobile.handlebars->9->198", "default.handlebars->17->499" ], + "en": "Intel® AMT connected" + }, + { + "xloc": [ "default.handlebars->17->884" ], + "en": "Intel® AMT desktop and serial events." + }, + { + "xloc": [ "default-mobile.handlebars->9->199", "default.handlebars->17->502", "default.handlebars->17->501" ], + "en": "Intel® AMT detected" + }, + { + "xloc": [ "default.handlebars->17->465" ], + "en": "Intel® AMT is routable and ready for use." + }, + { + "xloc": [ "default.handlebars->17->338", "default.handlebars->17->152" ], + "en": "Intel® AMT is routable." + }, + { + "xloc": [ "default-mobile.handlebars->9->56" ], + "en": "Intel® AMT only" + }, + { + "xloc": [ "default.handlebars->17->935", "default.handlebars->17->913", "default-mobile.handlebars->9->271" ], + "en": "Intel® AMT only, no agent" + }, + { + "xloc": [ "default.handlebars->17->998" ], + "en": "Intel® AMT Policy" + }, + { + "xloc": [ "player.htm->3->14" ], + "en": "Intel® AMT Redirection" + }, + { + "xloc": [ "default.handlebars->17->454" ], + "en": "Intel® AMT Tag" + }, + { + "xloc": [ "player.htm->3->13" ], + "en": "Intel® AMT WSMAN" + }, + { + "xloc": [ "default.handlebars->17->448", "default-mobile.handlebars->9->183" ], + "en": "Intel® ME" + }, + { + "xloc": [ "default.handlebars->17->452", "default-mobile.handlebars->9->185" ], + "en": "Intel® SM" + }, + { + "xloc": [ "default.handlebars->17->451" ], + "en": "Intel® Standard Manageability" + }, + { + "xloc": [ "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevAmt" ], + "en": "Intel® AMT" + }, + { + "xloc": [ "default.handlebars->container->column_l->p14->p14title->5" ], + "en": "Intel® AMT -" + }, + { + "xloc": [ "default.handlebars->container->dialog->dialogBody->dialog7->d7amtkvm->1", "default-mobile.handlebars->dialog->3->dialog7->d7amtkvm->1" ], + "en": "Intel® AMT Hardware KVM" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->586" ], + "en": "Interactive" + }, + { + "xloc": [ "default.handlebars->17->287", "default.handlebars->17->265" ], + "en": "Interactive only" + }, + { + "xloc": [ "default.handlebars->17->484" ], + "en": "Interfaces", + "fr": "Interfaces" + }, + { + "xloc": [ "default.handlebars->17->772" ], + "en": "Inuktitut", + "fr": "Inuktitut" + }, + { + "xloc": [ "login-mobile.handlebars->5->5", "login.handlebars->5->5" ], + "en": "Invalid account creation token." + }, + { + "xloc": [ "login-mobile.handlebars->5->8", "login.handlebars->5->8" ], + "en": "Invalid email." + }, + { + "xloc": [ "default.handlebars->17->1159", "default.handlebars->17->1157" ], + "en": "Invalid JSON file format." + }, + { + "xloc": [ "default.handlebars->17->1155" ], + "en": "Invalid JSON file: {0}." + }, + { + "xloc": [ "login-mobile.handlebars->5->10", "login.handlebars->5->10" ], + "en": "Invalid token, try again." + }, + { + "xloc": [ "default.handlebars->17->136" ], + "en": "Invitation Link ({0})", + "cs": "Link pro pozvání ({0})" + }, + { + "xloc": [ "default.handlebars->17->244" ], + "en": "Invitation Type", + "fr": "Type d'invitation" + }, + { + "xloc": [ "default.handlebars->17->200", "default.handlebars->17->982", "default.handlebars->17->277" ], + "en": "Invite", + "cs": "Pozvat", + "fr": "Inviter" + }, + { + "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." + }, + { + "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." + }, + { + "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}\\\"." + }, + { + "xloc": [ "login-mobile.handlebars->5->16", "login.handlebars->5->16" ], + "en": "IP address blocked, try again later." + }, + { + "xloc": [ "default.handlebars->17->218" ], + "en": "IP Range" + }, + { + "xloc": [ "default.handlebars->17->64" ], + "en": "IPv4 address" + }, + { + "xloc": [ "default.handlebars->17->68" ], + "en": "IPv4 gateway" + }, + { + "xloc": [ "default.handlebars->17->66" ], + "en": "IPv4 mask" + }, + { + "xloc": [ "default.handlebars->17->773" ], + "en": "Irish", + "fr": "Irlandais" + }, + { + "xloc": [ "default.handlebars->17->774" ], + "en": "Italian (Standard)", + "fr": "Italien (standard)" + }, + { + "xloc": [ "default.handlebars->17->775" ], + "en": "Italian (Switzerland)", + "fr": "Italien (Suisse)" + }, + { + "xloc": [ "default.handlebars->17->776" ], + "en": "Japanese", + "fr": "Japonais" + }, + { + "xloc": [ "default.handlebars->17->1163", "default.handlebars->17->1125" ], + "en": "JSON Format", + "fr": "Format JSON" + }, + { + "xloc": [ "default.handlebars->17->777" ], + "en": "Kannada" + }, + { + "xloc": [ "default.handlebars->17->778" ], + "en": "Kashmiri" + }, + { + "xloc": [ "default.handlebars->17->779" ], + "en": "Kazakh" + }, + { + "xloc": [ "default.handlebars->17->587" ], + "en": "KernelDriver" + }, + { + "xloc": [ "default.handlebars->17->670", "default.handlebars->17->673" ], + "en": "Key Name", + "fr": "Nom de la clé" + }, + { + "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea4->1->3" ], + "en": "Keyboard", + "cs": "Klávesnice", + "fr": "Clavier" + }, + { + "xloc": [ "default.handlebars->17->780" ], + "en": "Khmer" + }, + { + "xloc": [ "default.handlebars->17->781" ], + "en": "Kirghiz" + }, + { + "xloc": [ "default.handlebars->17->782" ], + "en": "Klingon" + }, + { + "xloc": [ "default.handlebars->17->783" ], + "en": "Korean", + "fr": "Coréen" + }, + { + "xloc": [ "default.handlebars->17->784" ], + "en": "Korean (North Korea)", + "fr": "Coréen (Corée du Nord)" + }, + { + "xloc": [ "default.handlebars->17->785" ], + "en": "Korean (South Korea)", + "fr": "Coréen (Corée du Sud)" + }, + { + "xloc": [ "default.handlebars->17->878" ], + "en": "Language", + "cs": "Jazyk", + "fr": "Langages" + }, + { + "xloc": [ "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSize->sizeselect->5" ], + "en": "Large", + "cs": "Velký", + "fr": "Grand" + }, + { + "xloc": [ "default.handlebars->17->576" ], + "en": "Large Focus", + "fr": "Grande mise au point" + }, + { + "xloc": [ "default.handlebars->container->column_l->p41->3->1->p41limitdropdown->1" ], + "en": "Last 100", + "cs": "Posledních 100", + "fr": "100 dernières" + }, + { + "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" + }, + { + "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" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->container->column_l->p40->3->1->p40time->1" ], + "en": "Last 3 hours", + "fr": "3 dernières heures" + }, + { + "xloc": [ "default.handlebars->container->column_l->p40->3->1->p40time->9" ], + "en": "Last 30 days", + "fr": "30 derniers jours" + }, + { + "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" + }, + { + "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" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->1132" ], + "en": "Last Access", + "fr": "Dernier accès" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->51" ], + "en": "Last agent connection", + "fr": "Dernière connexion de l'agent" + }, + { + "xloc": [ "default.handlebars->17->1214" ], + "en": "Last changed: {0}", + "cs": "Poslední změna: {0}", + "fr": "Dernière modification: {0}" + }, + { + "xloc": [ "default.handlebars->container->column_l->p40->3->1->p40time->5" ], + "en": "Last day", + "cs": "Poslední den", + "fr": "Dernier jour" + }, + { + "xloc": [ "default.handlebars->17->57" ], + "en": "Last interfaces update", + "cs": "Poslední změna rozhraní", + "fr": "Dernière mise à jour des interfaces" + }, + { + "xloc": [ "default.handlebars->17->1210" ], + "en": "Last Login", + "fr": "Dernière connexion" + }, + { + "xloc": [ "default.handlebars->17->1142" ], + "en": "Last login: {0}" + }, + { + "xloc": [ "default.handlebars->17->505", "default.handlebars->17->47" ], + "en": "Last seen:", + "cs": "Naposledy spatřen:", + "fr": "Dernière connexion:" + }, + { + "xloc": [ "default.handlebars->container->column_l->p40->3->1->p40time->7" ], + "en": "Last week", + "cs": "Poslední týden", + "fr": "Dernière semaine" + }, + { + "xloc": [ "default.handlebars->container->column_l->p42->p42tbl->1->0->6" ], + "en": "Latest", + "fr": "Dernier" + }, + { + "xloc": [ "default.handlebars->17->75" ], + "en": "Latest Version", + "fr": "Dernière version" + }, + { + "xloc": [ "default.handlebars->17->786" ], + "en": "Latin", + "fr": "Latin" + }, + { + "xloc": [ "default.handlebars->17->787" ], + "en": "Latvian" + }, + { + "xloc": [ ], + "en": "Left bar interface" + }, + { + "xloc": [ "default.handlebars->17->1291" ], + "en": "Less", + "fr": "Moins" + }, + { + "xloc": [ "default.handlebars->17->609", "default.handlebars->17->600" ], + "en": "LF" + }, + { + "xloc": [ ], + "en": "licensed under the" + }, + { + "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ů." + }, + { + "xloc": [ "default.handlebars->17->1071", "default-mobile.handlebars->9->320" ], + "en": "Limited Input" + }, + { + "xloc": [ "default-mobile.handlebars->9->295", "default.handlebars->17->1045" ], + "en": "Limited Input Only" + }, + { + "xloc": [ "default-mobile.handlebars->9->65", "default.handlebars->17->1086", "default.handlebars->container->column_l->p42->p42tbl->1->0->4" ], + "en": "Link", + "fr": "Lien" + }, + { + "xloc": [ "default.handlebars->17->255", "default.handlebars->17->269" ], + "en": "Link Expiration", + "cs": "Platnost linku", + "fr": "Expiration du lien" + }, + { + "xloc": [ "agentinvite.handlebars->container->column_l->5->1->tlinuxtab", "agentinvite.handlebars->container->column_l->5->linuxtab->1" ], + "en": "Linux" + }, + { + "xloc": [ "default.handlebars->17->280" ], + "en": "Linux / BSD" + }, + { + "xloc": [ "default.handlebars->17->283" ], + "en": "Linux / BSD (UnInstall)" + }, + { + "xloc": [ "default-mobile.handlebars->9->145", "default.handlebars->17->405" ], + "en": "Linux 32bit" + }, + { + "xloc": [ "default.handlebars->17->406", "default-mobile.handlebars->9->146" ], + "en": "Linux 64bit" + }, + { + "xloc": [ "default-mobile.handlebars->9->150", "default.handlebars->17->410" ], + "en": "Linux ARM" + }, + { + "xloc": [ "default.handlebars->17->558" ], + "en": "Linux ARM, Raspberry Pi (32bit)" + }, + { + "xloc": [ "default.handlebars->17->419", "default-mobile.handlebars->9->159" ], + "en": "Linux NoKVM x86-32bit" + }, + { + "xloc": [ "default.handlebars->17->420", "default-mobile.handlebars->9->160" ], + "en": "Linux NoKVM x86-64bit" + }, + { + "xloc": [ "default.handlebars->17->254" ], + "en": "Linux only" + }, + { + "xloc": [ "default.handlebars->17->415", "default-mobile.handlebars->9->155" ], + "en": "Linux Poky x86-32bit" + }, + { + "xloc": [ "default-mobile.handlebars->9->158", "default.handlebars->17->418" ], + "en": "Linux Poky x86-64bit" + }, + { + "xloc": [ "default.handlebars->17->555" ], + "en": "Linux x86 (32bit)" + }, + { + "xloc": [ "default.handlebars->17->556" ], + "en": "Linux x86 (64bit)" + }, + { + "xloc": [ "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarView->viewselect->3" ], + "en": "List", + "fr": "Liste" + }, + { + "xloc": [ "default.handlebars->17->788" ], + "en": "Lithuanian", + "fr": "Lituanien" + }, + { + "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..." + }, + { + "xloc": [ "messenger.handlebars->localVideo->1" ], + "en": "Local", + "cs": "Lokální" + }, + { + "xloc": [ "default.handlebars->container->dialog->dialogBody->dialog3->d3upload->d3uploadMode->1" ], + "en": "Local file upload" + }, + { + "xloc": [ "default.handlebars->container->dialog->dialogBody->dialog7->d7amtkvm->5->d7otherset->5" ], + "en": "Local Keyboard Map" + }, + { + "xloc": [ "default.handlebars->container->column_l->p2->p2AccountActions->3->5", "default.handlebars->17->880" ], + "en": "Localization Settings" + }, + { + "xloc": [ "default.handlebars->17->486" ], + "en": "Location" + }, + { + "xloc": [ "default.handlebars->container->column_l->p1->xdevicesmap->xmapSearchResultsDlg->xmapSearchResultsBck->3" ], + "en": "Location Results" + }, + { + "xloc": [ "default.handlebars->17->1191" ], + "en": "Lock Account", + "cs": "Uzamknout účet", + "fr": "Verrouiller le compte" + }, + { + "xloc": [ "default.handlebars->17->1143" ], + "en": "Locked", + "cs": "Zamknuto", + "fr": "Verrouiller" + }, + { + "xloc": [ "default.handlebars->17->1195" ], + "en": "Locked account", + "fr": "Compte verrouillé" + }, + { + "xloc": [ "default.handlebars->17->477" ], + "en": "Log Event", + "cs": "Log udalostí" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->container->column_l->p40->3->3->3" ], + "en": "Log-X" + }, + { + "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" + }, + { + "xloc": [ "login.handlebars->5->14", "login-mobile.handlebars->5->14" ], + "en": "Login failed, check username and password." + }, + { + "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:" + }, + { + "xloc": [ "default-mobile.handlebars->topMenu->logoutMenuOption->0->0", "default.handlebars->17->14", "terms.handlebars->3->2" ], + "en": "Logout", + "cs": "Odhlásit", + "fr": "Déconnexion" + }, + { + "xloc": [ "default.handlebars->17->789" ], + "en": "Luxembourgish", + "fr": "Luxembourgeois" + }, + { + "xloc": [ "default.handlebars->17->62" ], + "en": "MAC address", + "cs": "MAC adresa", + "fr": "Adresse MAC" + }, + { + "xloc": [ "agentinvite.handlebars->container->column_l->5->1->tmacostab" ], + "en": "MacOS" + }, + { + "xloc": [ "default.handlebars->17->557" ], + "en": "MacOS (64bit)" + }, + { + "xloc": [ "default-mobile.handlebars->9->151", "default.handlebars->17->411" ], + "en": "MacOS 32bit" + }, + { + "xloc": [ "default.handlebars->17->416", "default-mobile.handlebars->9->156" ], + "en": "MacOS 64bit" + }, + { + "xloc": [ "default.handlebars->17->1269" ], + "en": "Main Server Messages" + }, + { + "xloc": [ "default.handlebars->17->791" ], + "en": "Malay" + }, + { + "xloc": [ "default.handlebars->17->792" ], + "en": "Malayalam" + }, + { + "xloc": [ "default.handlebars->17->793" ], + "en": "Maltese" + }, + { + "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" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->102", "default-mobile.handlebars->9->26" ], + "en": "Manage Backup Codes" + }, + { + "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í" + }, + { + "xloc": [ "default-mobile.handlebars->9->291", "default.handlebars->17->1041", "default.handlebars->17->1060", "default-mobile.handlebars->9->309" ], + "en": "Manage Device Group Users" + }, + { + "xloc": [ "default.handlebars->container->column_l->p2->p2AccountSecurity->3->manageHardwareOtp->1->0" ], + "en": "Manage security keys" + }, + { + "xloc": [ "default.handlebars->17->109" ], + "en": "Manage Security Keys" + }, + { + "xloc": [ "default.handlebars->17->1190" ], + "en": "Manage Users", + "fr": "Gérer les utilisateurs" + }, + { + "xloc": [ "default.handlebars->17->912" ], + "en": "Manage using a software agent", + "fr": "Gérer à l'aide d'un agent logiciel" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->1148" ], + "en": "Manager" + }, + { + "xloc": [ "default.handlebars->17->224" ], + "en": "Manual Certificate", + "fr": "Certificat manuel" + }, + { + "xloc": [ "default.handlebars->17->223" ], + "en": "Manual Username/Password", + "fr": "Nom d'utilisateur / mot de passe manuel" + }, + { + "xloc": [ "default.handlebars->17->794" ], + "en": "Maori" + }, + { + "xloc": [ "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarView->viewselect->viewselectmapoption" ], + "en": "Map", + "cs": "Mapa", + "fr": "Carte" + }, + { + "xloc": [ "default.handlebars->17->795" ], + "en": "Marathi", + "fr": "Marathi" + }, + { + "xloc": [ "login-mobile.handlebars->5->29", "login.handlebars->5->29" ], + "en": "Maximum length of {0}", + "fr": "Longueur maximale de {0}" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->1263" ], + "en": "Megabytes", + "cs": "Megabytů", + "fr": "Mégaoctets" + }, + { + "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" + }, + { + "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" + }, + { + "xloc": [ "default-mobile.handlebars->9->299", "default.handlebars->17->1049" ], + "en": "Mesh Agent Console", + "cs": "Konzole agenta" + }, + { + "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." + }, + { + "xloc": [ "default.handlebars->17->154", "default.handlebars->17->340", "default.handlebars->17->467" ], + "en": "Mesh agent is reachable using another agent as relay." + }, + { + "xloc": [ "default.handlebars->17->468" ], + "en": "Mesh Relay" + }, + { + "xloc": [ "default.handlebars->17->1271" ], + "en": "MeshAgent traffic" + }, + { + "xloc": [ "default.handlebars->17->1272" ], + "en": "MeshAgent update" + }, + { + "xloc": [ "login.handlebars->container->column_l->welcomeText->1" ], + "en": "MeshCentral", + "cs": "MeshCentral" + }, + { + "xloc": [ "player.htm->3->12" ], + "en": "MeshCentral Desktop" + }, + { + "xloc": [ "default.handlebars->17->931" ], + "en": "MeshCentral Errors" + }, + { + "xloc": [ "default.handlebars->17->552" ], + "en": "MeshCentral Router" + }, + { + "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." + }, + { + "xloc": [ "default.handlebars->17->81", "default.handlebars->17->79" ], + "en": "MeshCentral Server Errors" + }, + { + "xloc": [ "default.handlebars->17->1270" ], + "en": "MeshCentral Server Peering" + }, + { + "xloc": [ "player.htm->3->11" ], + "en": "MeshCentral Terminal" + }, + { + "xloc": [ "default.handlebars->17->76", "default.handlebars->17->929", "default.handlebars->17->77" ], + "en": "MeshCentral Version" + }, + { + "xloc": [ "default.handlebars->17->171" ], + "en": "MeshCmd" + }, + { + "xloc": [ "default.handlebars->17->222" ], + "en": "MeshCommander Script" + }, + { + "xloc": [ "messenger.handlebars->xtop->3->0->xtitle", "messenger.handlebars->13->2", "messenger.handlebars->13->1" ], + "en": "MeshMessenger" + }, + { + "xloc": [ "default.handlebars->17->233" ], + "en": "MeshServerRootCert.cer" + }, + { + "xloc": [ "default.handlebars->17->531", "default.handlebars->17->266" ], + "en": "Message" + }, + { + "xloc": [ "default.handlebars->17->1268" ], + "en": "Message Dispatcher" + }, + { + "xloc": [ "agentinvite.handlebars->container->column_l->5->wintab32->1" ], + "en": "Microsoft™ Windows 32bit" + }, + { + "xloc": [ "agentinvite.handlebars->container->column_l->5->wintab64->1" ], + "en": "Microsoft™ Windows 64bit" + }, + { + "xloc": [ "login-mobile.handlebars->5->28", "login.handlebars->5->28" ], + "en": "Minimum length of {0}" + }, + { + "xloc": [ "default.handlebars->17->407", "default-mobile.handlebars->9->147" ], + "en": "MIPS" + }, + { + "xloc": [ "default.handlebars->17->362" ], + "en": "Modify node location" + }, + { + "xloc": [ "default.handlebars->17->796" ], + "en": "Moldavian" + }, + { + "xloc": [ "default.handlebars->17->1290" ], + "en": "More", + "cs": "Více", + "fr": "Plus" + }, + { + "xloc": [ "default.handlebars->17->33" ], + "en": "Motherboard", + "fr": "Carte mère" + }, + { + "xloc": [ "default.handlebars->17->1116", "default-mobile.handlebars->9->87" ], + "en": "move" + }, + { + "xloc": [ "default.handlebars->17->479" ], + "en": "Move this device to a different device group" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->237", "default.handlebars->17->242" ], + "en": "MPS Server", + "fr": "Serveur MPS" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->504", "default-mobile.handlebars->9->200" ], + "en": "MQTT channel connected" + }, + { + "xloc": [ "default.handlebars->17->503", "default.handlebars->17->121" ], + "en": "MQTT connected", + "cs": "MQTT připojeno" + }, + { + "xloc": [ "default.handlebars->17->156", "default.handlebars->17->342", "default.handlebars->17->469" ], + "en": "MQTT connection to the device is active." + }, + { + "xloc": [ "default.handlebars->17->138" ], + "en": "MQTT Credentials" + }, + { + "xloc": [ "default.handlebars->17->125" ], + "en": "MQTT disconnected" + }, + { + "xloc": [ "default.handlebars->17->496" ], + "en": "MQTT Login" + }, + { + "xloc": [ "default.handlebars->contextMenu->cxmdesktop" ], + "en": "Multi-Desktop", + "fr": "Multi-bureau" + }, + { + "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" + }, + { + "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" + }, + { + "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" + }, + { + "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" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->648" ], + "en": "My Server Console", + "fr": "Console de mon serveur" + }, + { + "xloc": [ "default.handlebars->container->column_l->p42->1" ], + "en": "My Server Plugins", + "fr": "Mes plugins serveur" + }, + { + "xloc": [ "default.handlebars->container->column_l->p43->3" ], + "en": "My Server Plugins -", + "fr": "Mes plugins serveur -" + }, + { + "xloc": [ "default.handlebars->container->column_l->p40->1" ], + "en": "My Server Stats", + "cs": "Statistika serveru", + "fr": "Statistiques de mon serveur" + }, + { + "xloc": [ "default.handlebars->container->column_l->p41->1" ], + "en": "My Server Tracing", + "fr": "Suivi de mon serveur" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->674", "default.handlebars->17->671" ], + "en": "MyKey", + "fr": "MaClé" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->246" ], + "en": "Name (optional)", + "cs": "Jméno (volitelné)", + "fr": "Nom: (optionnel)" + }, + { + "xloc": [ "default.handlebars->17->1183" ], + "en": "Name1, Name2, Name3", + "fr": "Nom1, Nom2, Nom3" + }, + { + "xloc": [ "default.handlebars->17->797" ], + "en": "Navajo", + "fr": "Navajo" + }, + { + "xloc": [ "default.handlebars->17->798" ], + "en": "Ndonga", + "fr": "Ndonga" + }, + { + "xloc": [ "default.handlebars->17->799" ], + "en": "Nepali", + "fr": "Népalais" + }, + { + "xloc": [ "default.handlebars->17->549" ], + "en": "Network Interfaces", + "fr": "Interfaces réseau" + }, + { + "xloc": [ "default.handlebars->17->560" ], + "en": "Network Router", + "fr": "Routeur réseau" + }, + { + "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" + }, + { + "xloc": [ ], + "en": "New Account...", + "cs": "Nový účet...", + "fr": "Nouveau Compte..." + }, + { + "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" + }, + { + "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" + }, + { + "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:" + }, + { + "xloc": [ "default-mobile.handlebars->9->24" ], + "en": "New Tokens", + "fr": "Nouveaux Jetons" + }, + { + "xloc": [ "default-mobile.handlebars->9->22", "default.handlebars->17->97" ], + "en": "No Active Tokens" + }, + { + "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" + }, + { + "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." + }, + { + "xloc": [ "default-mobile.handlebars->9->95" ], + "en": "No devices", + "cs": "Žádné zařízení", + "fr": "Aucun appareil" + }, + { + "xloc": [ "default.handlebars->17->162" ], + "en": "No devices are included in any groups, click on a device\\'s \\\"Groups\\\" to add to a group." + }, + { + "xloc": [ "default.handlebars->17->380" ], + "en": "No devices found.", + "cs": "Žádné zařízení nalezeno.", + "fr": "Aucun périphérique trouvé." + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->163" ], + "en": "No devices matching this search.", + "fr": "Aucun appareil ne correspond à cette recherche." + }, + { + "xloc": [ "default.handlebars->17->1243", "default.handlebars->17->646", "default.handlebars->17->1121" ], + "en": "No Events Found", + "fr": "Aucun événement trouvé" + }, + { + "xloc": [ "default.handlebars->17->1047", "default-mobile.handlebars->9->297" ], + "en": "No File Access", + "fr": "Pas d'accès au fichier" + }, + { + "xloc": [ "default.handlebars->17->1069", "default-mobile.handlebars->9->318" ], + "en": "No Files", + "fr": "Aucun fichier" + }, + { + "xloc": [ "default.handlebars->17->29" ], + "en": "No information for this device." + }, + { + "xloc": [ "default.handlebars->17->1048", "default.handlebars->17->1070", "default-mobile.handlebars->9->298", "default-mobile.handlebars->9->319" ], + "en": "No Intel® AMT" + }, + { + "xloc": [ "default-mobile.handlebars->9->93" ], + "en": "No Intel® AMT devices in this group" + }, + { + "xloc": [ "default.handlebars->17->164" ], + "en": "No Intel® AMT devices in this mesh" + }, + { + "xloc": [ "default.handlebars->17->105" ], + "en": "No Keys Configured", + "cs": "Žádný klíč není zkonfigurován" + }, + { + "xloc": [ "default.handlebars->17->382" ], + "en": "No location found." + }, + { + "xloc": [ "default.handlebars->17->50" ], + "en": "No network interface information available for this device." + }, + { + "xloc": [ "default.handlebars->17->1192" ], + "en": "No New Device Groups" + }, + { + "xloc": [ "default.handlebars->17->544" ], + "en": "No other device group of same type exists." + }, + { + "xloc": [ "default.handlebars->container->column_l->p42->pluginNoneNotice->0" ], + "en": "No plugins on server." + }, + { + "xloc": [ "default.handlebars->17->992", "default.handlebars->17->995", "default.handlebars->17->962" ], + "en": "No Policy" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->1196" ], + "en": "No server rights" + }, + { + "xloc": [ "default.handlebars->17->1068", "default-mobile.handlebars->9->317" ], + "en": "No Terminal", + "cs": "Žádný terminál" + }, + { + "xloc": [ "default-mobile.handlebars->9->296", "default.handlebars->17->1046" ], + "en": "No Terminal Access" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->1193" ], + "en": "No Tools (MeshCmd/Router)", + "cs": "Žádné nástroje (MeshCmd/Router)" + }, + { + "xloc": [ "default.handlebars->17->1138" ], + "en": "No users found.", + "cs": "Žádný uživatele nalezen." + }, + { + "xloc": [ "player.htm->3->10" ], + "en": "NodeID" + }, + { + "xloc": [ "default.handlebars->17->423", "default-mobile.handlebars->9->163" ], + "en": "NodeJS" + }, + { + "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" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->800" ], + "en": "Norwegian", + "fr": "Norvégien" + }, + { + "xloc": [ "default.handlebars->17->801" ], + "en": "Norwegian (Bokmal)", + "fr": "Norvégien (Bokmal)" + }, + { + "xloc": [ "default.handlebars->17->802" ], + "en": "Norwegian (Nynorsk)", + "fr": "Norvégien (Nynorsk)" + }, + { + "xloc": [ "default.handlebars->17->433", "default-mobile.handlebars->9->173" ], + "en": "Not Activated (In)" + }, + { + "xloc": [ "default.handlebars->17->432", "default-mobile.handlebars->9->172" ], + "en": "Not Activated (Pre)" + }, + { + "xloc": [ "default.handlebars->17->1201" ], + "en": "Not set" + }, + { + "xloc": [ "default.handlebars->17->1226", "default.handlebars->17->508", "default.handlebars->17->475", "default.handlebars->17->968" ], + "en": "Notes", + "cs": "Poznámky", + "fr": "Remarques" + }, + { + "xloc": [ "default.handlebars->container->column_l->p42->pluginRestartNotice->3->1->0" ], + "en": "Notice:" + }, + { + "xloc": [ "default.handlebars->container->column_l->p2->p2AccountActions->3->8", "default.handlebars->17->1083", "default.handlebars->17->885" ], + "en": "Notification Settings" + }, + { + "xloc": [ "default.handlebars->17->881" ], + "en": "Notification sound." + }, + { + "xloc": [ "default.handlebars->17->961" ], + "en": "Notifications" + }, + { + "xloc": [ "default.handlebars->17->1228" ], + "en": "Notify" + }, + { + "xloc": [ "default.handlebars->17->1031", "default.handlebars->17->1028", "default.handlebars->17->1024" ], + "en": "Notify user", + "fr": "Notifier l'utilisateur" + }, + { + "xloc": [ "default.handlebars->17->1150" ], + "en": "Notify {0}" + }, + { + "xloc": [ "default.handlebars->17->803" ], + "en": "Occitan" + }, + { + "xloc": [ "default.handlebars->17->1246" ], + "en": "Occured at {0}", + "fr": "Survenu à {0}" + }, + { + "xloc": [ "default.handlebars->17->1135" ], + "en": "Offline Users", + "fr": "Utilisateurs hors ligne" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->897", "default-mobile.handlebars->9->41" ], + "en": "Old password:", + "cs": "Staré heslo:", + "fr": "Ancien mot de passe:" + }, + { + "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." + }, + { + "xloc": [ "default.handlebars->17->1134" ], + "en": "Online Users", + "cs": "Online uživatelů", + "fr": "Utilisateurs en ligne" + }, + { + "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." + }, + { + "xloc": [ "default.handlebars->17->375" ], + "en": "open" + }, + { + "xloc": [ ], + "en": "Open a web address on the remote computer" + }, + { + "xloc": [ ], + "en": "Open chat window to this computer", + "fr": "Ouvrir la fenêtre de discussion sur cet ordinateur" + }, + { + "xloc": [ "player.htm->p11->deskarea0->deskarea1->3", "player.htm->3->19" ], + "en": "Open File...", + "cs": "Otevřít soubor..." + }, + { + "xloc": [ "default.handlebars->17->510" ], + "en": "Open Page on Device" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->519", "default.handlebars->17->350", "default-mobile.handlebars->9->207" ], + "en": "Operation", + "cs": "Operace", + "fr": "Opération" + }, + { + "xloc": [ "default.handlebars->17->241" ], + "en": "Organization", + "fr": "Organisation" + }, + { + "xloc": [ "default.handlebars->17->804" ], + "en": "Oriya" + }, + { + "xloc": [ "default.handlebars->17->805" ], + "en": "Oromo" + }, + { + "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" + }, + { + "xloc": [ "default-mobile.handlebars->dialog->3->dialog7->d7amtkvm->5->3" ], + "en": "Other", + "fr": "Autre" + }, + { + "xloc": [ "default.handlebars->container->dialog->dialogBody->dialog7->d7amtkvm->5->1" ], + "en": "Other Settings", + "fr": "Autres réglages" + }, + { + "xloc": [ "default.handlebars->17->457" ], + "en": "Out of date", + "fr": "Périmé" + }, + { + "xloc": [ "default.handlebars->17->588" ], + "en": "OwnProcess" + }, + { + "xloc": [ "default.handlebars->17->1120" ], + "en": "p5filetable" + }, + { + "xloc": [ "default.handlebars->17->42" ], + "en": "Part Number", + "fr": "Numéro d'article" + }, + { + "xloc": [ "default.handlebars->17->1149" ], + "en": "Partial", + "fr": "Partiel" + }, + { + "xloc": [ "default-mobile.handlebars->9->279", "default.handlebars->17->984", "default-mobile.handlebars->9->60", "default.handlebars->17->922" ], + "en": "Partial Rights" + }, + { + "xloc": [ "default.handlebars->17->1199" ], + "en": "Partial rights" + }, + { + "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:" + }, + { + "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" + }, + { + "xloc": [ "login.handlebars->5->15", "login-mobile.handlebars->5->15" ], + "en": "Password change requested.", + "fr": "Changement de mot de passe demandé." + }, + { + "xloc": [ "default.handlebars->17->1237" ], + "en": "Password hint" + }, + { + "xloc": [ "login-mobile.handlebars->5->19", "login.handlebars->5->19" ], + "en": "Password Hint" + }, + { + "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:" + }, + { + "xloc": [ "default.handlebars->17->900", "default-mobile.handlebars->9->44" ], + "en": "Password hint:" + }, + { + "xloc": [ "default.handlebars->17->1001" ], + "en": "Password mismatch" + }, + { + "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" + }, + { + "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." + }, + { + "xloc": [ "default.handlebars->17->1000", "default.handlebars->17->999" ], + "en": "Password*", + "cs": "Heslo*", + "fr": "Mot de passe*" + }, + { + "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:" + }, + { + "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" + }, + { + "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" + }, + { + "xloc": [ ], + "en": "Pause", + "fr": "Pause" + }, + { + "xloc": [ "default.handlebars->17->656" ], + "en": "Perform Agent Action", + "cs": "Akce agenta", + "fr": "Effectuer une action sur l'agent" + }, + { + "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:" + }, + { + "xloc": [ "default.handlebars->17->195", "default.handlebars->17->977" ], + "en": "Perform Intel AMT admin control mode (ACM) activation." + }, + { + "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:" + }, + { + "xloc": [ "default.handlebars->17->975", "default.handlebars->17->193" ], + "en": "Perform Intel AMT client control mode (CCM) activation." + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->1133", "default.handlebars->17->1078", "default-mobile.handlebars->9->326" ], + "en": "Permissions", + "cs": "Práva", + "fr": "Permissions" + }, + { + "xloc": [ "default.handlebars->17->806" ], + "en": "Persian/Iran" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->374" ], + "en": "Place node here" + }, + { + "xloc": [ "player.htm->p11->deskarea0->deskarea4->3" ], + "en": "Play", + "fr": "Jouer" + }, + { + "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." + }, + { + "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." + }, + { + "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." + }, + { + "xloc": [ "default.handlebars->17->887", "default-mobile.handlebars->9->32" ], + "en": "Please wait a few minute to receive the verification." + }, + { + "xloc": [ "default.handlebars->17->1287", "default.handlebars->17->139" ], + "en": "Plugin Action" + }, + { + "xloc": [ "default.handlebars->17->141" ], + "en": "Plugin Error" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->container->column_l->p19->1" ], + "en": "Plugins -", + "cs": "Pluginy -" + }, + { + "xloc": [ "default.handlebars->container->column_l->p42->pluginRestartNotice->3->1" ], + "en": "Plugins have been altered, this may require agent core update." + }, + { + "xloc": [ "default.handlebars->17->413", "default-mobile.handlebars->9->153" ], + "en": "PogoPlug ARM" + }, + { + "xloc": [ "default-mobile.handlebars->9->59", "default.handlebars->17->921" ], + "en": "Policy", + "fr": "Politique" + }, + { + "xloc": [ "default.handlebars->17->807" ], + "en": "Polish" + }, + { + "xloc": [ "default.handlebars->17->808" ], + "en": "Portuguese" + }, + { + "xloc": [ "default.handlebars->17->809" ], + "en": "Portuguese (Brazil)" + }, + { + "xloc": [ "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->3" ], + "en": "Power", + "cs": "Napájení" + }, + { + "xloc": [ ], + "en": "Power Actions...", + "cs": "Akce napájení" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->354" ], + "en": "Power off devices", + "cs": "Vypnout zařízení", + "fr": "Éteindre les appareils" + }, + { + "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é" + }, + { + "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" + }, + { + "xloc": [ "player.htm->3->16", "player.htm->3->17" ], + "en": "Press [space] to play/pause.", + "fr": "Appuyez sur [espace] pour jouer/mettre en pause." + }, + { + "xloc": [ "default.handlebars->17->114" ], + "en": "Press the key button now.", + "fr": "Appuyez sur le bouton de la clé maintenant." + }, + { + "xloc": [ "default.handlebars->17->597", "default-mobile.handlebars->9->231" ], + "en": "Process Control" + }, + { + "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" + }, + { + "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" + }, + { + "xloc": [ "player.htm->3->15" ], + "en": "Protocol", + "cs": "Protokol", + "fr": "Protocole" + }, + { + "xloc": [ "default.handlebars->17->1099", "default-mobile.handlebars->9->71" ], + "en": "Public Link", + "cs": "Veřejný odkaz", + "fr": "Lien public" + }, + { + "xloc": [ "default.handlebars->17->810" ], + "en": "Punjabi" + }, + { + "xloc": [ "default.handlebars->17->811" ], + "en": "Punjabi (India)" + }, + { + "xloc": [ "default.handlebars->17->812" ], + "en": "Punjabi (Pakistan)" + }, + { + "xloc": [ "default.handlebars->17->492" ], + "en": "Putty" + }, + { + "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é" + }, + { + "xloc": [ "default.handlebars->17->813" ], + "en": "Quechua" + }, + { + "xloc": [ "default.handlebars->17->1175" ], + "en": "Randomize the password.", + "fr": "Mot de passe aléatoire." + }, + { + "xloc": [ "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->7->3" ], + "en": "Rate" + }, + { + "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" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->490" ], + "en": "RDP" + }, + { + "xloc": [ "default.handlebars->17->1003" ], + "en": "Reactivate Intel® AMT" + }, + { + "xloc": [ "default.handlebars->17->1182" ], + "en": "Realms" + }, + { + "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" + }, + { + "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:" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->container->column_l->p42->pluginRestartNotice->1" ], + "en": "Refresh Agent Cores" + }, + { + "xloc": [ "default.handlebars->17->155", "default.handlebars->17->341", "default-mobile.handlebars->9->121" ], + "en": "Relay" + }, + { + "xloc": [ "default.handlebars->17->1261" ], + "en": "Relay Sessions" + }, + { + "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." + }, + { + "xloc": [ "messenger.handlebars->remoteVideo->1" ], + "en": "Remote", + "cs": "Vzdálený" + }, + { + "xloc": [ "agentinvite.handlebars->container->column_l->1" ], + "en": "Remote Agent Installation", + "cs": "Instalace agenta pro vzdálený přístup", + "fr": "Installation de l'agent" + }, + { + "xloc": [ "default.handlebars->17->580" ], + "en": "Remote Clipboard", + "fr": "Presse-papier à distance" + }, + { + "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." + }, + { + "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." + }, + { + "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" + }, + { + "xloc": [ "default-mobile.handlebars->9->226", "default.handlebars->17->186", "default.handlebars->17->572" ], + "en": "Remote Desktop Settings", + "fr": "Paramètres du bureau à distance" + }, + { + "xloc": [ "default.handlebars->17->578" ], + "en": "Remote Keyboard Entry", + "fr": "Entrée au clavier à distance" + }, + { + "xloc": [ "default.handlebars->17->1081", "default-mobile.handlebars->9->329" ], + "en": "Remote Mesh User" + }, + { + "xloc": [ "default.handlebars->17->1067", "default.handlebars->17->1044", "default-mobile.handlebars->9->294", "default-mobile.handlebars->9->316" ], + "en": "Remote View Only" + }, + { + "xloc": [ "default.handlebars->17->104" ], + "en": "Remove", + "cs": "Odstranit", + "fr": "Retirer" + }, + { + "xloc": [ "default.handlebars->17->1240" ], + "en": "Remove all 2nd factor authentication." + }, + { + "xloc": [ "default.handlebars->17->363" ], + "en": "Remove node location" + }, + { + "xloc": [ "default.handlebars->17->481" ], + "en": "Remove this device", + "fr": "Retirer ce périphérique" + }, + { + "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" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->901" ], + "en": "Requirements: ", + "cs": "Požadavky: ", + "fr": "Exigences:" + }, + { + "xloc": [ "default.handlebars->17->1179", "default.handlebars->17->1238", "default-mobile.handlebars->9->45" ], + "en": "Requirements: {0}.", + "fr": "Exigences: {0}." + }, + { + "xloc": [ "default.handlebars->17->489" ], + "en": "Requires Microsoft ClickOnce support in your browser", + "fr": "Requiert Microsoft ClickOnce dans votre navigateur" + }, + { + "xloc": [ "default.handlebars->17->493", "default.handlebars->17->491" ], + "en": "Requires Microsoft ClickOnce support in your browser.", + "fr": "Requiert Microsoft ClickOnce dans votre navigateur." + }, + { + "xloc": [ "default.handlebars->17->515", "default-mobile.handlebars->9->205" ], + "en": "Reset", + "fr": "Réinitialiser" + }, + { + "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" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->353" ], + "en": "Reset devices", + "cs": "Reset zařízení", + "fr": "Réinitialiser les appareils" + }, + { + "xloc": [ ], + "en": "Reset map view", + "fr": "Réinitialiser l'affichage de la carte" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->594" ], + "en": "Restart", + "fr": "Redémarrer" + }, + { + "xloc": [ "default.handlebars->17->928" ], + "en": "Restore Server", + "fr": "Restaurer le serveur" + }, + { + "xloc": [ "default.handlebars->container->column_l->p6->p2ServerActions->3->p2ServerActionsRestore->0" ], + "en": "Restore server with backup", + "fr": "Restaurer le serveur avec sauvegarde" + }, + { + "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." + }, + { + "xloc": [ "default.handlebars->17->1200" ], + "en": "Restrictions", + "cs": "Omezení", + "fr": "Restrictions" + }, + { + "xloc": [ "default.handlebars->17->814" ], + "en": "Rhaeto-Romanic" + }, + { + "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é" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->815" ], + "en": "Romanian", + "fr": "Roumain" + }, + { + "xloc": [ "default.handlebars->17->816" ], + "en": "Romanian (Moldavia)", + "fr": "Roumain (Moldavie)" + }, + { + "xloc": [ "default.handlebars->17->614", "default.handlebars->17->1084", "default-mobile.handlebars->9->239", "default-mobile.handlebars->9->63" ], + "en": "Root", + "fr": "Racine" + }, + { + "xloc": [ "default.handlebars->17->232", "default.handlebars->17->239" ], + "en": "Root Certificate", + "fr": "Certificat Racine" + }, + { + "xloc": [ "default.handlebars->17->234", "default.handlebars->17->240" ], + "en": "Root Certificate File", + "fr": "Fichier de Certificate Racine" + }, + { + "xloc": [ "default.handlebars->termShellContextMenuLinux->cxtermnorm->0" ], + "en": "Root Shell" + }, + { + "xloc": [ ], + "en": "Rotate Left", + "fr": "Tourne à gauche" + }, + { + "xloc": [ ], + "en": "Rotate Right", + "fr": "Tourner à droite" + }, + { + "xloc": [ "default.handlebars->17->488", "default.handlebars->17->173" ], + "en": "Router" + }, + { + "xloc": [ "default.handlebars->17->817" ], + "en": "Russian", + "fr": "Russe" + }, + { + "xloc": [ "default.handlebars->17->818" ], + "en": "Russian (Moldavia)", + "fr": "Russe (Moldavie)" + }, + { + "xloc": [ "default.handlebars->17->204" ], + "en": "Same as device name", + "fr": "Identique au nom de l'appareil" + }, + { + "xloc": [ "default.handlebars->17->819" ], + "en": "Sami (Lappish)" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->820" ], + "en": "Sango" + }, + { + "xloc": [ "default.handlebars->17->821" ], + "en": "Sanskrit" + }, + { + "xloc": [ "default.handlebars->17->822" ], + "en": "Sardinian" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->364" ], + "en": "Save node location", + "fr": "Enregistrer l'emplacement" + }, + { + "xloc": [ ], + "en": "Save...", + "fr": "Sauver..." + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->219" ], + "en": "Scan", + "cs": "Skenovat", + "fr": "Analyse" + }, + { + "xloc": [ "default.handlebars->17->220" ], + "en": "Scan for Intel® AMT devices", + "fr": "Rechercher des périphériques Intel® AMT" + }, + { + "xloc": [ "default.handlebars->17->192" ], + "en": "Scan Network", + "fr": "Scan réseau" + }, + { + "xloc": [ "default.handlebars->17->221" ], + "en": "Scanning...", + "fr": "Balayage..." + }, + { + "xloc": [ "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devMapToolbar", "default.handlebars->17->378" ], + "en": "Search", + "fr": "Chercher" + }, + { + "xloc": [ ], + "en": "Search for location", + "fr": "Recherche de lieu" + }, + { + "xloc": [ ], + "en": "Search Location", + "fr": "Recherche de lieu" + }, + { + "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é" + }, + { + "xloc": [ "default.handlebars->17->1222" ], + "en": "Security Key", + "fr": "Clef de sécurité" + }, + { + "xloc": [ "default.handlebars->17->540" ], + "en": "Select a new group for selected devices" + }, + { + "xloc": [ "default.handlebars->17->539" ], + "en": "Select a new group for this device", + "cs": "Vyber novou skupinu pro toto zařízení" + }, + { + "xloc": [ "default.handlebars->17->381" ], + "en": "Select a node to place" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->349" ], + "en": "Select an operation to perform on all selected devices. Actions will be performed only with proper rights." + }, + { + "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í." + }, + { + "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" + }, + { + "xloc": [ ], + "en": "SelectAll", + "cs": "Vybrat vše", + "fr": "ToutSélectionner" + }, + { + "xloc": [ "default.handlebars->17->1072", "default-mobile.handlebars->9->321" ], + "en": "Self Events Only" + }, + { + "xloc": [ ], + "en": "Send", + "cs": "Odeslat", + "fr": "Envoyer" + }, + { + "xloc": [ "default.handlebars->17->1151" ], + "en": "Send a text notification to this user.", + "fr": "Envoyez une notification à cet utilisateur." + }, + { + "xloc": [ "default.handlebars->17->250" ], + "en": "Send installation link", + "cs": "Odeslat odkaz na instalaci", + "fr": "Envoyer le lien d'installation" + }, + { + "xloc": [ "default.handlebars->17->1178" ], + "en": "Send invitation email.", + "cs": "Zaslat pozvánku emailem.", + "fr": "Envoyer un email d'invitation." + }, + { + "xloc": [ "default.handlebars->17->532" ], + "en": "Send MQTT message", + "fr": "Envoyer un message MQTT" + }, + { + "xloc": [ "default.handlebars->17->347", "default.handlebars->17->517" ], + "en": "Send MQTT Message", + "fr": "Envoyer un Message MQTT" + }, + { + "xloc": [ "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1" ], + "en": "Send the selected special key" + }, + { + "xloc": [ "default.handlebars->17->1229" ], + "en": "Send user notification", + "fr": "Envoyer une notification utilisateur" + }, + { + "xloc": [ "default.handlebars->17->825" ], + "en": "Serbian" + }, + { + "xloc": [ "default.handlebars->17->36" ], + "en": "Serial" + }, + { + "xloc": [ "default.handlebars->container->column_l->p6->p2ServerActions->1->0" ], + "en": "Server actions" + }, + { + "xloc": [ "default.handlebars->17->1187" ], + "en": "Server Backup" + }, + { + "xloc": [ "default.handlebars->17->1273" ], + "en": "Server Certificate" + }, + { + "xloc": [ "default.handlebars->container->column_l->p0->p0message->p0span", "default-mobile.handlebars->container->page_content->column_l->p0->1->p0message->p0span" ], + "en": "Server disconnected" + }, + { + "xloc": [ "default.handlebars->container->dialog->dialogBody->dialog3->d3upload->d3uploadMode->3" ], + "en": "Server file selection" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->80" ], + "en": "Server has no error log." + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->1144", "default.handlebars->17->1194" ], + "en": "Server Permissions" + }, + { + "xloc": [ "default.handlebars->17->1208" ], + "en": "Server Quota" + }, + { + "xloc": [ "default.handlebars->17->1188" ], + "en": "Server Restore" + }, + { + "xloc": [ "default.handlebars->17->1207" ], + "en": "Server Rights", + "fr": "Droits du serveur" + }, + { + "xloc": [ "default.handlebars->container->column_l->p6->8" ], + "en": "Server Statistics", + "cs": "Statistiky serveru", + "fr": "Statistiques du serveur" + }, + { + "xloc": [ "default.handlebars->17->1282" ], + "en": "Server Tracing", + "fr": "Suivi du serveur" + }, + { + "xloc": [ "default.handlebars->17->1189" ], + "en": "Server Updates", + "fr": "Mises à jour du serveur" + }, + { + "xloc": [ "default.handlebars->container->column_l->p6->serverWarningsDiv->2" ], + "en": "Server Warnings", + "fr": "Avertissements du serveur" + }, + { + "xloc": [ "default.handlebars->17->933" ], + "en": "servererrors.txt" + }, + { + "xloc": [ "default.handlebars->17->1265" ], + "en": "ServerStats.csv" + }, + { + "xloc": [ "default.handlebars->17->1284" ], + "en": "servertrace.csv" + }, + { + "xloc": [ "default.handlebars->17->595" ], + "en": "Service Details" + }, + { + "xloc": [ "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsAreaTop->deskToolsTopTabService" ], + "en": "Services", + "cs": "Služby" + }, + { + "xloc": [ ], + "en": "Session time", + "fr": "Temps de session" + }, + { + "xloc": [ "player.htm->3->6" ], + "en": "SessionID", + "fr": "ID de session" + }, + { + "xloc": [ ], + "en": "Settings", + "cs": "Nastavení", + "fr": "Paramètres" + }, + { + "xloc": [ "default.handlebars->17->295" ], + "en": "Settings File", + "fr": "Fichier de Paramètres" + }, + { + "xloc": [ "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1" ], + "en": "Settings...", + "cs": "Nastavení...", + "fr": "Paramètres..." + }, + { + "xloc": [ "default.handlebars->17->227" ], + "en": "Setup CIRA" + }, + { + "xloc": [ "default.handlebars->17->225" ], + "en": "Setup Method", + "cs": "Setup" + }, + { + "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..." + }, + { + "xloc": [ ], + "en": "Share a file", + "fr": "Partager un fichier" + }, + { + "xloc": [ "default.handlebars->17->589" ], + "en": "SharedProcess" + }, + { + "xloc": [ "default-mobile.handlebars->dialog->3->dialog3->deskkeys->15", "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3->deskkeys->13" ], + "en": "Shift+Win+M" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->1026" ], + "en": "Show connection toolbar", + "fr": "Afficher la barre d'outils de connexion" + }, + { + "xloc": [ "default.handlebars->17->485" ], + "en": "Show device locations information" + }, + { + "xloc": [ "default.handlebars->17->483" ], + "en": "Show device network interface information" + }, + { + "xloc": [ "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar->7" ], + "en": "Show devices operating system name" + }, + { + "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" + }, + { + "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" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->1053", "default-mobile.handlebars->9->303" ], + "en": "Show Only Own Events" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->965", "default.handlebars->17->990" ], + "en": "Simple Admin Control Mode (ACM)" + }, + { + "xloc": [ "default.handlebars->17->993", "default.handlebars->17->997", "default.handlebars->17->963" ], + "en": "Simple Client Control Mode (CCM)" + }, + { + "xloc": [ "default.handlebars->17->823" ], + "en": "Sindhi", + "fr": "Sindhi" + }, + { + "xloc": [ "default.handlebars->17->824" ], + "en": "Singhalese", + "fr": "Cingalais" + }, + { + "xloc": [ "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSize" ], + "en": "Size", + "cs": "Velikost", + "fr": "Taille" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->352" ], + "en": "Sleep devices" + }, + { + "xloc": [ "default.handlebars->17->316", "default.handlebars->17->318", "default-mobile.handlebars->9->105", "default-mobile.handlebars->9->106" ], + "en": "Sleeping", + "fr": "Dormir" + }, + { + "xloc": [ "default.handlebars->17->826" ], + "en": "Slovak", + "fr": "Slovaque" + }, + { + "xloc": [ "default.handlebars->17->827" ], + "en": "Slovenian", + "fr": "Slovène" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSize->sizeselect->1" ], + "en": "Small", + "cs": "Malé", + "fr": "Petit" + }, + { + "xloc": [ "default.handlebars->17->575" ], + "en": "Small Focus" + }, + { + "xloc": [ "default.handlebars->17->662" ], + "en": "Soft disconnect agent" + }, + { + "xloc": [ "default.handlebars->17->324", "default-mobile.handlebars->9->109" ], + "en": "Soft-Off" + }, + { + "xloc": [ "default-mobile.handlebars->9->55" ], + "en": "Software Agent Group", + "fr": "Groupe d'agents logiciels" + }, + { + "xloc": [ "default.handlebars->17->828" ], + "en": "Somani" + }, + { + "xloc": [ "default.handlebars->17->829" ], + "en": "Sorbian" + }, + { + "xloc": [ "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort" ], + "en": "Sort", + "cs": "Třídit", + "fr": "Trier" + }, + { + "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" + }, + { + "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" + }, + { + "xloc": [ ], + "en": "Sort by process id", + "fr": "Trier par identifiant de processus" + }, + { + "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" + }, + { + "xloc": [ ], + "en": "Sort by state", + "cs": "Třídit podle stavu", + "fr": "Trier par état" + }, + { + "xloc": [ "default.handlebars->17->830" ], + "en": "Spanish", + "fr": "Espagnol" + }, + { + "xloc": [ "default.handlebars->17->831" ], + "en": "Spanish (Argentina)" + }, + { + "xloc": [ "default.handlebars->17->832" ], + "en": "Spanish (Bolivia)" + }, + { + "xloc": [ "default.handlebars->17->833" ], + "en": "Spanish (Chile)" + }, + { + "xloc": [ "default.handlebars->17->834" ], + "en": "Spanish (Colombia)" + }, + { + "xloc": [ "default.handlebars->17->835" ], + "en": "Spanish (Costa Rica)" + }, + { + "xloc": [ "default.handlebars->17->836" ], + "en": "Spanish (Dominican Republic)" + }, + { + "xloc": [ "default.handlebars->17->837" ], + "en": "Spanish (Ecuador)" + }, + { + "xloc": [ "default.handlebars->17->838" ], + "en": "Spanish (El Salvador)" + }, + { + "xloc": [ "default.handlebars->17->839" ], + "en": "Spanish (Guatemala)" + }, + { + "xloc": [ "default.handlebars->17->840" ], + "en": "Spanish (Honduras)" + }, + { + "xloc": [ "default.handlebars->17->841" ], + "en": "Spanish (Mexico)" + }, + { + "xloc": [ "default.handlebars->17->842" ], + "en": "Spanish (Nicaragua)" + }, + { + "xloc": [ "default.handlebars->17->843" ], + "en": "Spanish (Panama)" + }, + { + "xloc": [ "default.handlebars->17->844" ], + "en": "Spanish (Paraguay)" + }, + { + "xloc": [ "default.handlebars->17->845" ], + "en": "Spanish (Peru)" + }, + { + "xloc": [ "default.handlebars->17->846" ], + "en": "Spanish (Puerto Rico)" + }, + { + "xloc": [ "default.handlebars->17->847" ], + "en": "Spanish (Spain)" + }, + { + "xloc": [ "default.handlebars->17->848" ], + "en": "Spanish (Uruguay)" + }, + { + "xloc": [ "default.handlebars->17->849" ], + "en": "Spanish (Venezuela)" + }, + { + "xloc": [ "default-mobile.handlebars->9->227" ], + "en": "Special Keys" + }, + { + "xloc": [ "default.handlebars->17->592" ], + "en": "Start", + "fr": "Lancé" + }, + { + "xloc": [ "default.handlebars->17->583", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsServiceTab->deskToolsServiceHeader->1" ], + "en": "State", + "cs": "Stav" + }, + { + "xloc": [ "default.handlebars->container->topbar->1->1->ServerSubMenuSpan->ServerSubMenu->1->0->ServerStats" ], + "en": "Stats", + "cs": "Statistiky" + }, + { + "xloc": [ "default.handlebars->17->1233", "default.handlebars->container->column_l->p42->p42tbl->1->0->7" ], + "en": "Status", + "fr": "Statut" + }, + { + "xloc": [ "default.handlebars->17->593" ], + "en": "Stop", + "fr": "Arrêtez" + }, + { + "xloc": [ "default.handlebars->17->598", "default-mobile.handlebars->9->232" ], + "en": "Stop process #{0} \\\"{1}\\\"?" + }, + { + "xloc": [ "default-mobile.handlebars->9->66" ], + "en": "Storage exceed", + "cs": "Uložiště plné", + "fr": "Stockage dépassent" + }, + { + "xloc": [ "default.handlebars->17->1087" ], + "en": "Storage limit exceed", + "cs": "Překročen limit pro ukládání" + }, + { + "xloc": [ "default.handlebars->17->918" ], + "en": "Strong" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->48" ], + "en": "Success", + "cs": "Úspěch", + "fr": "Succès" + }, + { + "xloc": [ "default.handlebars->17->850" ], + "en": "Sutu" + }, + { + "xloc": [ "default.handlebars->17->851" ], + "en": "Swahili" + }, + { + "xloc": [ "default.handlebars->17->852" ], + "en": "Swedish" + }, + { + "xloc": [ "default.handlebars->17->853" ], + "en": "Swedish (Finland)" + }, + { + "xloc": [ "default.handlebars->17->854" ], + "en": "Swedish (Sweden)" + }, + { + "xloc": [ "default-mobile.handlebars->dialog->3->dialog3->deskkeys->3" ], + "en": "Tab" + }, + { + "xloc": [ "default.handlebars->17->566" ], + "en": "Tag1, Tag2, Tag3" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->855" ], + "en": "Tamil" + }, + { + "xloc": [ "default.handlebars->17->856" ], + "en": "Tatar" + }, + { + "xloc": [ "default.handlebars->17->857" ], + "en": "Teluga" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->container->column_l->p12->p12title->3" ], + "en": "Terminal -", + "fr": "Terminal -" + }, + { + "xloc": [ "default.handlebars->17->950" ], + "en": "Terminal Notify" + }, + { + "xloc": [ "default.handlebars->17->949" ], + "en": "Terminal Prompt" + }, + { + "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" + }, + { + "xloc": [ "terms.handlebars->container->column_l->1", "terms-mobile.handlebars->container->page_content->column_l->1" ], + "en": "Terms of use", + "fr": "Conditions d'utilisation" + }, + { + "xloc": [ "default.handlebars->17->858" ], + "en": "Thai" + }, + { + "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." + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->390" ], + "en": "The name of the device group this computer belong to." + }, + { + "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." + }, + { + "xloc": [ "default.handlebars->17->1245" ], + "en": "There are currently no notifications", + "fr": "Il n'y a actuellement aucune notification" + }, + { + "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." + }, + { + "xloc": [ "default.handlebars->17->137" ], + "en": "These settings can be used to connect MQTT for this device." + }, + { + "xloc": [ "default.handlebars->17->904", "default-mobile.handlebars->9->48" ], + "en": "This account does not have the rights to create a new device group." + }, + { + "xloc": [ "default.handlebars->17->1015" ], + "en": "This is not a secure policy as agents will be performing activation." + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->1014" ], + "en": "This policy will not impact devices with Intel® AMT in ACM mode." + }, + { + "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/" + }, + { + "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." + }, + { + "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." + }, + { + "xloc": [ "terms.handlebars->container->column_l->75->1", "terms-mobile.handlebars->container->page_content->column_l->75->1" ], + "en": "This software uses code from" + }, + { + "xloc": [ "default.handlebars->17->507" ], + "en": "This will add an entry to this device\\'s event log." + }, + { + "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." + }, + { + "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." + }, + { + "xloc": [ "default.handlebars->17->859" ], + "en": "Tigre" + }, + { + "xloc": [ "player.htm->3->1" ], + "en": "Time", + "fr": "Temps" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->1283" ], + "en": "time, source, message" + }, + { + "xloc": [ "default.handlebars->17->1128" ], + "en": "time, type, action, user, message" + }, + { + "xloc": [ "default.handlebars->17->443", "default-mobile.handlebars->9->180" ], + "en": "TLS", + "fr": "TLS" + }, + { + "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" + }, + { + "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." + }, + { + "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." + }, + { + "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ě." + }, + { + "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." + }, + { + "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" + }, + { + "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." + }, + { + "xloc": [ "default.handlebars->17->891" ], + "en": "To delete this account, type in the account password in both boxes below and hit ok." + }, + { + "xloc": [ "default.handlebars->container->column_l->p1->NoMeshesPanel->1->1->0->3->getStarted1" ], + "en": "To get started," + }, + { + "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." + }, + { + "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\\\"." + }, + { + "xloc": [ "default.handlebars->17->309" ], + "en": "To remove a mesh agent, run the following command. Root credentials will be needed." + }, + { + "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." + }, + { + "xloc": [ ], + "en": "Toggle F1 to F10 keys emulation type" + }, + { + "xloc": [ ], + "en": "Toggle focus mode, when active only the region around the mouse is updated" + }, + { + "xloc": [ "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3->9" ], + "en": "Toggle mouse and keyboard input", + "fr": "Basculer la souris et le clavier" + }, + { + "xloc": [ ], + "en": "Toggle night mode", + "fr": "Basculer mode nuit" + }, + { + "xloc": [ ], + "en": "Toggle remote desktop background" + }, + { + "xloc": [ ], + "en": "Toggle terminal emulation type", + "fr": "Basculer le type d'émulation de terminal" + }, + { + "xloc": [ "default.handlebars->container->column_l->p11->deskarea0->deskarea4->1" ], + "en": "Toggle tools view", + "cs": "Přepnout zobrazení nástrojů" + }, + { + "xloc": [ "player.htm->p11->deskarea0->deskarea1->1" ], + "en": "Toggle View Mode" + }, + { + "xloc": [ ], + "en": "Toggle what the return key will send" + }, + { + "xloc": [ ], + "en": "Tools", + "cs": "Nástroje", + "fr": "Outils" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->530" ], + "en": "Topic" + }, + { + "xloc": [ "default.handlebars->17->1256" ], + "en": "total", + "cs": "celkově", + "fr": "total" + }, + { + "xloc": [ "default.handlebars->container->topbar->1->1->ServerSubMenuSpan->ServerSubMenu->1->0->ServerTrace" ], + "en": "Trace", + "fr": "Trace" + }, + { + "xloc": [ "default.handlebars->container->column_l->p41->3->3" ], + "en": "Tracing" + }, + { + "xloc": [ "default.handlebars->17->487" ], + "en": "Traffic router used to connect to a device thru this server" + }, + { + "xloc": [ "default.handlebars->17->95" ], + "en": "Try again.", + "cs": "Zkusit znovu." + }, + { + "xloc": [ "default.handlebars->17->860" ], + "en": "Tsonga" + }, + { + "xloc": [ "default.handlebars->17->861" ], + "en": "Tswana" + }, + { + "xloc": [ "default.handlebars->17->862" ], + "en": "Turkish" + }, + { + "xloc": [ "default.handlebars->17->863" ], + "en": "Turkmen" + }, + { + "xloc": [ "default.handlebars->17->19" ], + "en": "Two factor authentication" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->672" ], + "en": "Type in a key name, select the OTP box and press the button on the YubiKey™." + }, + { + "xloc": [ "default.handlebars->17->669" ], + "en": "Type in the name of the key to add." + }, + { + "xloc": [ "default.handlebars->17->864" ], + "en": "Ukrainian" + }, + { + "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." + }, + { + "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." + }, + { + "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." + }, + { + "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." + }, + { + "xloc": [ "default-mobile.handlebars->9->8", "default.handlebars->17->17" ], + "en": "Unable to connect web socket" + }, + { + "xloc": [ "login-mobile.handlebars->5->2", "login.handlebars->5->2" ], + "en": "Unable to create account." + }, + { + "xloc": [ "default.handlebars->17->16", "default-mobile.handlebars->9->7" ], + "en": "Unable to perform authentication" + }, + { + "xloc": [ "default.handlebars->17->126" ], + "en": "Unable to scan this address range.", + "cs": "Nelze skenovat tento rozsah." + }, + { + "xloc": [ "login-mobile.handlebars->5->11", "login.handlebars->5->11" ], + "en": "Unable to sent email." + }, + { + "xloc": [ "default.handlebars->17->1074", "default-mobile.handlebars->9->323" ], + "en": "Uninstall" + }, + { + "xloc": [ "default-mobile.handlebars->9->305", "default.handlebars->17->1055", "default.handlebars->17->518", "default.handlebars->17->348" ], + "en": "Uninstall Agent" + }, + { + "xloc": [ "default.handlebars->17->538" ], + "en": "Uninstall agent" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->934", "default-mobile.handlebars->9->270" ], + "en": "Unknown #{0}", + "fr": " #{0} Inconnue" + }, + { + "xloc": [ "default.handlebars->17->435", "default-mobile.handlebars->9->175" ], + "en": "Unknown State", + "fr": "Etat inconnu" + }, + { + "xloc": [ "default.handlebars->17->437", "default-mobile.handlebars->9->177" ], + "en": "Unknown Version & State", + "fr": "Version et état inconnus" + }, + { + "xloc": [ "default.handlebars->17->135", "default.handlebars->17->275", "default.handlebars->17->261" ], + "en": "Unlimited", + "cs": "Bez limitu", + "fr": "Illimité" + }, + { + "xloc": [ "default.handlebars->container->dialog->dialogBody->dialog3->d3servermode->d3serveraction" ], + "en": "Up", + "cs": "Nahoru", + "fr": "Up" + }, + { + "xloc": [ "default.handlebars->17->1286" ], + "en": "Up to date" + }, + { + "xloc": [ ], + "en": "Upload", + "cs": "Nahrát", + "fr": "Télécharger" + }, + { + "xloc": [ "default.handlebars->17->661" ], + "en": "Upload a core file" + }, + { + "xloc": [ "default.handlebars->17->658" ], + "en": "Upload default server core" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->664" ], + "en": "Upload Mesh Agent Core" + }, + { + "xloc": [ "default.handlebars->17->660" ], + "en": "Upload recovery core" + }, + { + "xloc": [ "default.handlebars->17->1119", "default.handlebars->17->643" ], + "en": "Upload will overwrite {0} file{1}. Continue?" + }, + { + "xloc": [ "default.handlebars->17->865" ], + "en": "Upper Sorbian" + }, + { + "xloc": [ "default.handlebars->17->866" ], + "en": "Urdu" + }, + { + "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é" + }, + { + "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." + }, + { + "xloc": [ "default.handlebars->17->1247", "default.handlebars->17->1249" ], + "en": "Used", + "cs": "Použito" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->1146" ], + "en": "User + Files", + "cs": "Uživatel + Soubory" + }, + { + "xloc": [ "default.handlebars->17->1154", "default.handlebars->17->1158", "default.handlebars->17->1156", "default.handlebars->17->1153" ], + "en": "User Account Import" + }, + { + "xloc": [ "default-mobile.handlebars->9->278", "default.handlebars->17->983" ], + "en": "User Authorizations" + }, + { + "xloc": [ "default.handlebars->17->875", "default.handlebars->17->877" ], + "en": "User browser value" + }, + { + "xloc": [ "default.handlebars->17->956" ], + "en": "User Consent", + "fr": "Consentement de l'utilisateur" + }, + { + "xloc": [ "default.handlebars->17->1204", "default.handlebars->17->1077" ], + "en": "User Identifier" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->1165" ], + "en": "User List Export" + }, + { + "xloc": [ "default.handlebars->17->1076" ], + "en": "User Name", + "cs": "Uživatel", + "fr": "Nom" + }, + { + "xloc": [ "default.handlebars->17->1037" ], + "en": "User Names", + "fr": "Noms" + }, + { + "xloc": [ "default.handlebars->17->1260" ], + "en": "User Sessions" + }, + { + "xloc": [ "default.handlebars->termShellContextMenuLinux->cxtermps" ], + "en": "User Shell", + "fr": "Shell utilisateur" + }, + { + "xloc": [ "player.htm->3->5" ], + "en": "UserID", + "fr": "Identifiant d'utilisateur" + }, + { + "xloc": [ "default.handlebars->17->1162", "default.handlebars->17->1167" ], + "en": "userlist.csv" + }, + { + "xloc": [ "default.handlebars->17->1164", "default.handlebars->17->1168" ], + "en": "userlist.json" + }, + { + "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" + }, + { + "xloc": [ "login-mobile.handlebars->5->6", "login.handlebars->5->6" ], + "en": "Username already exists.", + "fr": "Ce nom d'utilisateur existe déjà." + }, + { + "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:" + }, + { + "xloc": [ "default.handlebars->17->1259" ], + "en": "Users", + "fr": "Utilisateurs" + }, + { + "xloc": [ "default.handlebars->17->602" ], + "en": "UTF8 Terminal", + "fr": "Terminal UTF8" + }, + { + "xloc": [ "default.handlebars->17->867" ], + "en": "Venda" + }, + { + "xloc": [ "default.handlebars->17->31", "default.handlebars->17->34" ], + "en": "Vendor", + "fr": "Vendeur" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->container->footer->3->verifyEmailId2" ], + "en": "Verify Email", + "cs": "Ověřit Email", + "fr": "Vérifier le Courriel" + }, + { + "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" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->868" ], + "en": "Vietnamese", + "fr": "Vietnamien" + }, + { + "xloc": [ "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarView" ], + "en": "View", + "fr": "Vue" + }, + { + "xloc": [ "default.handlebars->17->476" ], + "en": "View notes about this device" + }, + { + "xloc": [ "default.handlebars->17->969" ], + "en": "View notes about this device group" + }, + { + "xloc": [ "default.handlebars->17->1227" ], + "en": "View notes about this user" + }, + { + "xloc": [ "default.handlebars->17->869" ], + "en": "Volapuk" + }, + { + "xloc": [ "default.handlebars->17->607" ], + "en": "VT100+ (F10 = ESC+[OY)" + }, + { + "xloc": [ "messenger.handlebars->13->6" ], + "en": "Waiting for other user...", + "cs": "Čekání na ostatní uživatele..." + }, + { + "xloc": [ "default.handlebars->17->1051", "default.handlebars->17->1065", "default-mobile.handlebars->9->301", "default-mobile.handlebars->9->314" ], + "en": "Wake Devices" + }, + { + "xloc": [ "default.handlebars->17->513", "default-mobile.handlebars->9->203" ], + "en": "Wake-up", + "cs": "Probudit" + }, + { + "xloc": [ "default.handlebars->17->351" ], + "en": "Wake-up devices", + "cs": "Probudit zařízení" + }, + { + "xloc": [ "default.handlebars->17->870" ], + "en": "Walloon" + }, + { + "xloc": [ "default.handlebars->17->28" ], + "en": "WARNING: ", + "fr": "ATTENTION:" + }, + { + "xloc": [ "default.handlebars->17->920" ], + "en": "Weak", + "cs": "Slabé", + "fr": "Faible" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->1275", "default.handlebars->17->1274" ], + "en": "Web Server", + "fr": "Serveur Web" + }, + { + "xloc": [ "default.handlebars->17->1276" ], + "en": "Web Server Requests", + "fr": "Demandes de serveur Web" + }, + { + "xloc": [ "default.handlebars->17->1277" ], + "en": "Web Socket Relay", + "fr": "Relais Web Socket" + }, + { + "xloc": [ "login.handlebars->container->column_l->1" ], + "en": "Welcome", + "cs": "Vítejte", + "fr": "Bienvenue" + }, + { + "xloc": [ "terms.handlebars->3->1", "default.handlebars->17->13" ], + "en": "Welcome {0}.", + "fr": "Bienvenue {0}." + }, + { + "xloc": [ "default.handlebars->17->871" ], + "en": "Welsh", + "fr": "Gallois" + }, + { + "xloc": [ "default.handlebars->17->1212" ], + "en": "Will be changed on next login.", + "fr": "Sera changé lors de la prochaine connexion." + }, + { + "xloc": [ "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3->deskkeys->3", "default-mobile.handlebars->dialog->3->dialog3->deskkeys->5" ], + "en": "Win" + }, + { + "xloc": [ "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3->deskkeys->5", "default-mobile.handlebars->dialog->3->dialog3->deskkeys->7" ], + "en": "Win+Down" + }, + { + "xloc": [ "default-mobile.handlebars->dialog->3->dialog3->deskkeys->11", "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3->deskkeys->9" ], + "en": "Win+L" + }, + { + "xloc": [ "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3->deskkeys->23" ], + "en": "Win+Left" + }, + { + "xloc": [ "default-mobile.handlebars->dialog->3->dialog3->deskkeys->13", "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3->deskkeys->11" ], + "en": "Win+M" + }, + { + "xloc": [ "default-mobile.handlebars->dialog->3->dialog3->deskkeys->17", "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3->deskkeys->15" ], + "en": "Win+R" + }, + { + "xloc": [ "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3->deskkeys->25" ], + "en": "Win+Right" + }, + { + "xloc": [ "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3->deskkeys->7", "default-mobile.handlebars->dialog->3->dialog3->deskkeys->9" ], + "en": "Win+Up" + }, + { + "xloc": [ "default.handlebars->17->279" ], + "en": "Windows" + }, + { + "xloc": [ "default.handlebars->17->305", "default.handlebars->17->291" ], + "en": "Windows (.exe)" + }, + { + "xloc": [ "default.handlebars->17->553" ], + "en": "Windows (32bit)" + }, + { + "xloc": [ "default.handlebars->17->554" ], + "en": "Windows (64bit)" + }, + { + "xloc": [ "default.handlebars->17->282" ], + "en": "Windows (UnInstall)" + }, + { + "xloc": [ "agentinvite.handlebars->container->column_l->5->1->twintab32" ], + "en": "Windows 32bit" + }, + { + "xloc": [ "default.handlebars->17->401", "default-mobile.handlebars->9->141" ], + "en": "Windows 32bit console" + }, + { + "xloc": [ "default.handlebars->17->403", "default-mobile.handlebars->9->143" ], + "en": "Windows 32bit service" + }, + { + "xloc": [ "agentinvite.handlebars->container->column_l->5->1->twintab64" ], + "en": "Windows 64bit" + }, + { + "xloc": [ "default-mobile.handlebars->9->142", "default.handlebars->17->402" ], + "en": "Windows 64bit console" + }, + { + "xloc": [ "default.handlebars->17->404", "default-mobile.handlebars->9->144" ], + "en": "Windows 64bit service" + }, + { + "xloc": [ "default.handlebars->17->421", "default-mobile.handlebars->9->161" ], + "en": "Windows MinCore console" + }, + { + "xloc": [ "default-mobile.handlebars->9->162", "default.handlebars->17->422" ], + "en": "Windows MinCore service" + }, + { + "xloc": [ "default.handlebars->17->252" ], + "en": "Windows only" + }, + { + "xloc": [ "default.handlebars->17->308", "default.handlebars->17->294" ], + "en": "Windows x64 (.exe)" + }, + { + "xloc": [ "default.handlebars->17->494" ], + "en": "WinSCP" + }, + { + "xloc": [ "default.handlebars->17->478" ], + "en": "Write an event for this device", + "fr": "Écrire un événement pour ce périphérique" + }, + { + "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" + }, + { + "xloc": [ "default.handlebars->17->408", "default-mobile.handlebars->9->148" ], + "en": "XENx86" + }, + { + "xloc": [ "default.handlebars->17->872" ], + "en": "Xhosa" + }, + { + "xloc": [ "default.handlebars->17->873" ], + "en": "Yiddish" + }, + { + "xloc": [ "default.handlebars->17->93" ], + "en": "You can reactivate this feature at any time.", + "fr": "Vous pouvez réactiver cette fonctionnalité à tout moment." + }, + { + "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." + }, + { + "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." + }, + { + "xloc": [ "default.handlebars->17->675" ], + "en": "YubiKey™ OTP" + }, + { + "xloc": [ "default.handlebars->17->372" ], + "en": "Zoom to fit extent" + }, + { + "xloc": [ "default.handlebars->17->376", "default.handlebars->17->369" ], + "en": "Zoom-in to extent" + }, + { + "xloc": [ "default.handlebars->17->370", "default.handlebars->17->377" ], + "en": "Zoom-out to extent" + }, + { + "xloc": [ "default.handlebars->17->874" ], + "en": "Zulu" + }, + { + "xloc": [ "default.handlebars->17->1231" ], + "en": "{0} active sessions", + "fr": "{0} sessions actives" + }, + { + "xloc": [ "default.handlebars->17->1093" ], + "en": "{0} b" + }, + { + "xloc": [ "default.handlebars->17->1103", "default-mobile.handlebars->9->75" ], + "en": "{0} bytes", + "cs": "{0} bytů", + "fr": "{0} octets" + }, + { + "xloc": [ "default.handlebars->17->1088" ], + "en": "{0} bytes remaining", + "fr": "{0} octets restants" + }, + { + "xloc": [ "default.handlebars->17->1096" ], + "en": "{0} Gb" + }, + { + "xloc": [ "default.handlebars->17->1091" ], + "en": "{0} gigabytes remaining", + "cs": "{0} gigabytů zbývá" + }, + { + "xloc": [ "default.handlebars->17->1217" ], + "en": "{0} groups" + }, + { + "xloc": [ "default.handlebars->17->131" ], + "en": "{0} hour{1}", + "cs": "{0} hodina{1}" + }, + { + "xloc": [ "default.handlebars->17->1094" ], + "en": "{0} Kb" + }, + { + "xloc": [ "default.handlebars->17->1089" ], + "en": "{0} kilobytes remaining", + "cs": "{0} kilobytů zbývá" + }, + { + "xloc": [ "login-mobile.handlebars->5->31", "login.handlebars->5->31" ], + "en": "{0} lower case" + }, + { + "xloc": [ "default.handlebars->17->1095" ], + "en": "{0} Mb" + }, + { + "xloc": [ "default.handlebars->17->41" ], + "en": "{0} Mb, {1} Mhz" + }, + { + "xloc": [ "default.handlebars->17->1090" ], + "en": "{0} megabytes remaining", + "cs": "{0} megabytů zbývá" + }, + { + "xloc": [ "default.handlebars->17->26" ], + "en": "{0} minute{1} until disconnect" + }, + { + "xloc": [ "default.handlebars->17->1137" ], + "en": "{0} more users not shown, use search box to look for users..." + }, + { + "xloc": [ "default.handlebars->17->312" ], + "en": "{0} nodes", + "cs": "{0} zařízení", + "fr": "{0} appareil" + }, + { + "xloc": [ "login.handlebars->5->33", "login-mobile.handlebars->5->33" ], + "en": "{0} non-alphanumeric" + }, + { + "xloc": [ "login.handlebars->5->32", "login-mobile.handlebars->5->32" ], + "en": "{0} numeric" + }, + { + "xloc": [ "player.htm->3->3" ], + "en": "{0} second{1}" + }, + { + "xloc": [ "default.handlebars->17->25" ], + "en": "{0} second{1} until disconnect", + "cs": "{0} sekund{1} do odpojení" + }, + { + "xloc": [ "default.handlebars->17->1141" ], + "en": "{0} sessions" + }, + { + "xloc": [ "default.handlebars->17->296" ], + "en": "{0} settings (.msh)" + }, + { + "xloc": [ "player.htm->3->8" ], + "en": "{0} to {1}" + }, + { + "xloc": [ "login-mobile.handlebars->5->30", "login.handlebars->5->30" ], + "en": "{0} upper case" + }, + { + "xloc": [ "default.handlebars->17->180" ], + "en": "{0} users" + }, + { + "xloc": [ "default-mobile.handlebars->9->67" ], + "en": "{0}b left" + }, + { + "xloc": [ "default-mobile.handlebars->9->70" ], + "en": "{0}g left" + }, + { + "xloc": [ "default.handlebars->17->1098" ], + "en": "{0}k in 1 file. {1}k maximum" + }, + { + "xloc": [ "default.handlebars->17->1097" ], + "en": "{0}k in {1} files. {2}k maximum" + }, + { + "xloc": [ "default-mobile.handlebars->9->68" ], + "en": "{0}k left", + "cs": "{0}k zbývá" + }, + { + "xloc": [ "default-mobile.handlebars->9->69" ], + "en": "{0}m left" + }, + { + "xloc": [ "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1->5" ], + "en": "↺" + }, + { + "xloc": [ "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1->7" ], + "en": "↻" + }, + { + "xloc": [ "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1->3", "player.htm->p11->deskarea0->deskarea1->1->1" ], + "en": "⇲" + }, + { + "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": "◀" + }, + { + "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": "♦" + }, + { + "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": "✓" + }, + { + "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": "✖" + }, + { + "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": "✗" + } + ] +} \ No newline at end of file diff --git a/views/default-min.handlebars b/views/default-min.handlebars index 749921bf..a3ed927c 100644 --- a/views/default-min.handlebars +++ b/views/default-min.handlebars @@ -5958,6 +5958,11 @@ y += addHtmlValue("Language", z); } y += addHtmlValue("Dates & Time", x); + + if ((userinfo.siteadmin == 0xFFFFFFFF) && (domain == '')) { + y += '
' + "Help translate MeshCentral" + ''; + } + setDialogMode(2, "Localization Settings", 3, account_showLocalizationSettingsEx, y); return false; } diff --git a/views/default.handlebars b/views/default.handlebars index 939503c2..a3d1feaa 100644 --- a/views/default.handlebars +++ b/views/default.handlebars @@ -6969,6 +6969,11 @@ y += addHtmlValue("Language", z); } y += addHtmlValue("Dates & Time", x); + + if ((userinfo.siteadmin == 0xFFFFFFFF) && (domain == '')) { + y += '
' + "Help translate MeshCentral" + ''; + } + setDialogMode(2, "Localization Settings", 3, account_showLocalizationSettingsEx, y); return false; } diff --git a/views/translations/default-min_cs.handlebars b/views/translations/default-min_cs.handlebars index 9a75322b..90668db6 100644 --- a/views/translations/default-min_cs.handlebars +++ b/views/translations/default-min_cs.handlebars @@ -5958,6 +5958,11 @@ y += addHtmlValue("Jazyk", z); } y += addHtmlValue("Datum & čas", x); + + if ((userinfo.siteadmin == 0xFFFFFFFF) && (domain == '')) { + y += '
' + "Help translate MeshCentral" + ''; + } + setDialogMode(2, "Localization Settings", 3, account_showLocalizationSettingsEx, y); return false; } diff --git a/views/translations/default-min_fr.handlebars b/views/translations/default-min_fr.handlebars index cf233910..1654bb9e 100644 --- a/views/translations/default-min_fr.handlebars +++ b/views/translations/default-min_fr.handlebars @@ -5958,6 +5958,11 @@ y += addHtmlValue("Langages", z); } y += addHtmlValue("Dates & Time", x); + + if ((userinfo.siteadmin == 0xFFFFFFFF) && (domain == '')) { + y += '
' + "Help translate MeshCentral" + ''; + } + setDialogMode(2, "Localization Settings", 3, account_showLocalizationSettingsEx, y); return false; } diff --git a/views/translations/default_cs.handlebars b/views/translations/default_cs.handlebars index 9dde0185..5f10e2fa 100644 --- a/views/translations/default_cs.handlebars +++ b/views/translations/default_cs.handlebars @@ -6967,6 +6967,11 @@ y += addHtmlValue("Jazyk", z); } y += addHtmlValue("Datum & čas", x); + + if ((userinfo.siteadmin == 0xFFFFFFFF) && (domain == '')) { + y += '
' + "Help translate MeshCentral" + ''; + } + setDialogMode(2, "Localization Settings", 3, account_showLocalizationSettingsEx, y); return false; } diff --git a/views/translations/default_fr.handlebars b/views/translations/default_fr.handlebars index af05b551..509c9e82 100644 --- a/views/translations/default_fr.handlebars +++ b/views/translations/default_fr.handlebars @@ -6967,6 +6967,11 @@ y += addHtmlValue("Langages", z); } y += addHtmlValue("Dates & Time", x); + + if ((userinfo.siteadmin == 0xFFFFFFFF) && (domain == '')) { + y += '
' + "Help translate MeshCentral" + ''; + } + setDialogMode(2, "Localization Settings", 3, account_showLocalizationSettingsEx, y); return false; } diff --git a/views/translations/login-min_fr.handlebars b/views/translations/login-min_fr.handlebars index 17ab763f..bec55762 100644 --- a/views/translations/login-min_fr.handlebars +++ b/views/translations/login-min_fr.handlebars @@ -1 +1 @@ -{{{title}}} - Login
{{{title}}}
{{{title2}}}

Bienvenue


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

Bienvenue


\ No newline at end of file diff --git a/views/translations/login_fr.handlebars b/views/translations/login_fr.handlebars index 2e2535a1..deb74fe7 100644 --- a/views/translations/login_fr.handlebars +++ b/views/translations/login_fr.handlebars @@ -29,7 +29,7 @@

Bienvenue

- +
diff --git a/webserver.js b/webserver.js index 59c27c2d..8809aef8 100644 --- a/webserver.js +++ b/webserver.js @@ -574,7 +574,7 @@ module.exports.CreateWebServer = function (parent, db, args, certificates) { fmt: "fido-u2f", publicKey: webAuthnKey.publicKey, prevCounter: webAuthnKey.counter, - userHandle: Buffer(user._id, 'binary').toString('base64') + userHandle: Buffer.from(user._id, 'binary').toString('base64') }; var webauthnResponse = null; @@ -1973,7 +1973,26 @@ module.exports.CreateWebServer = function (parent, db, args, certificates) { try { res.sendFile(obj.path.join(__dirname, 'translate', 'translate.json')); } catch (ex) { res.sendStatus(404); } } else { res.sendStatus(404); } } else if (data.action == 'setTranslations') { - obj.fs.writeFile(obj.path.join(obj.parent.datapath, 'translate.json'), JSON.stringify({ strings: data.strings } ), function (err) { res.send(JSON.stringify({ response:err })); }); + obj.fs.writeFile(obj.path.join(obj.parent.datapath, 'translate.json'), JSON.stringify({ strings: data.strings }), function (err) { if (err == null) { res.send(JSON.stringify({ response: 'ok' })); } else { res.send(JSON.stringify({ response: err })); } }); + } else if (data.action == 'translateServer') { + if (obj.pendingTranslation === true) { res.send(JSON.stringify({ response: 'Server is already performing a translation.' })); return; } + const nodeVersion = Number(process.version.match(/^v(\d+\.\d+)/)[1]); + if (nodeVersion < 8) { res.send(JSON.stringify({ response: 'Server requires NodeJS 8.x or better.' })); return; } + var translateFile = obj.path.join(obj.parent.datapath, 'translate.json'); + if (obj.fs.existsSync(translateFile) == false) { translateFile = obj.path.join(__dirname, 'translate', 'translate.json'); } + if (obj.fs.existsSync(translateFile) == false) { res.send(JSON.stringify({ response: 'Unable to find translate.js file on the server.' })); return; } + res.send(JSON.stringify({ response: 'ok' })); + console.log('Started server translation...'); + obj.pendingTranslation = true; + require('child_process').exec('node translate.js translateall \"' + translateFile + '\"', { maxBuffer: 512000, timeout: 120000, cwd: obj.path.join(__dirname, 'translate') }, function (error, stdout, stderr) { + delete obj.pendingTranslation; + //console.log('error', error); + //console.log('stdout', stdout); + //console.log('stderr', stderr); + //console.log('Server restart...'); // Perform a server restart + //process.exit(0); + console.log('Server translation completed.'); + }); } else { // Unknown request res.sendStatus(404);