From c6bd8c3a19f5bb205250f5bdc6b940053fdbf3b4 Mon Sep 17 00:00:00 2001 From: Ylian Saint-Hilaire Date: Fri, 14 Feb 2020 11:20:06 -0800 Subject: [PATCH] Added file context menu for device files. --- certoperations.js | 21 +- mcrec.js | 34 +- meshaccelerator.js | 12 +- meshcentral.js | 3 + meshrelay.js | 12 +- package.json | 2 +- sample-config.json | 1 + translate/translate.json | 3776 +++++++++++++++++++++----------------- views/default.handlebars | 42 +- 9 files changed, 2208 insertions(+), 1695 deletions(-) diff --git a/certoperations.js b/certoperations.js index f4096891..425a4206 100644 --- a/certoperations.js +++ b/certoperations.js @@ -803,7 +803,7 @@ module.exports.CertificateOperations = function (parent) { accelerator.accid = acceleratorCreateCount; accelerator.on('message', function (message) { acceleratorMessage++; - this.x.func(this.x.tag, message); + if (this.x.func) { this.x.func(this.x.tag, message); } delete this.x; if (pendingAccelerator.length > 0) { this.send(this.x = pendingAccelerator.shift()); } else { freeAccelerators.push(this); } }); @@ -850,5 +850,24 @@ module.exports.CertificateOperations = function (parent) { } }; + // Perform any general operation + obj.acceleratorPerformOperation = function (operation, data, tag, func) { + if (acceleratorTotalCount <= 1) { + // No accelerators available + program.processMessage({ action: operation, data: data, tag: tag, func: func }); + } else { + var acc = obj.getAccelerator(); + if (acc == null) { + // Add to pending accelerator workload + acceleratorPerformSignaturePushFuncCall++; + pendingAccelerator.push({ action: operation, data: data, tag: tag, func: func }); + } else { + // Send to accelerator now + acceleratorPerformSignatureRunFuncCall++; + acc.send(acc.x = { action: operation, data: data, tag: tag, func: func }); + } + } + }; + return obj; }; diff --git a/mcrec.js b/mcrec.js index c1d4cda0..f1fa9112 100644 --- a/mcrec.js +++ b/mcrec.js @@ -12,24 +12,24 @@ var path = require('path'); var worker = null; const NodeJSVer = Number(process.version.match(/^v(\d+\.\d+)/)[1]); var directRun = (require.main === module); -function log() { if (directRun) { console.log(...arguments); } else { if (worker != null) { worker.parentPort.postMessage({ msg: arguments[0] }); } } } +function log() { if (directRun) { console.log(...arguments); } /*else { if (worker != null) { worker.parentPort.postMessage({ msg: arguments[0] }); } } */ } if (directRun && (NodeJSVer >= 12)) { const xworker = require('worker_threads'); try { if (xworker.isMainThread == false) { worker = xworker; } } catch (ex) { log(ex); } } function start() { startEx(process.argv); } if (directRun) { setup(); } function setup() { InstallModules(['image-size'], start); } function start() { startEx(process.argv); } - function startEx(argv) { - var state = { recFileName: null, recFile: null, recFileSize: 0, recFilePtr: 0 }; - var infile = null; - if (argv.length > 2) { infile = argv[2]; } else { - log('MeshCentral Session Recodings Processor'); - log('This tool will index a .mcrec file so that the player can seek thru the file.'); - log(''); - log(' Usage: node mcrec [file]'); - return; + if (argv.length > 2) { indexFile(argv[2]); } else { + log("MeshCentral Session Recodings Processor"); + log("This tool will index a .mcrec file so that the player can seek thru the file."); + log(""); + log(" Usage: node mcrec [file]"); } +} + +function indexFile(infile) { + var state = { recFileName: null, recFile: null, recFileSize: 0, recFilePtr: 0 }; if (fs.existsSync(infile) == false) { log("Missing file: " + infile); return; } state.recFileName = infile; state.recFileSize = fs.statSync(infile).size; @@ -64,7 +64,16 @@ function createIndex(state, ptr) { } function processBlock(state, block) { - if (block == null) { writeIndex(state, function () { log("Done."); }); return; } + if (block == null) { + // We are done, close this file. + writeIndex(state, function () { + fs.close(state.recFile, function () { + for (var i in state) { delete state[i]; } // Clear the state. + log("Done."); + }); + }); + return; + } var elapseMilliSeconds = 0; if (state.startTime != null) { elapseMilliSeconds = (block.time - state.startTime); } var flagBinary = (block.flags & 1) != 0; @@ -310,4 +319,5 @@ function InstallModule(modulename, func, tag1, tag2) { } // Export table -module.exports.startEx = startEx; \ No newline at end of file +module.exports.startEx = startEx; +module.exports.indexFile = indexFile; \ No newline at end of file diff --git a/meshaccelerator.js b/meshaccelerator.js index 4432c951..bd7635c3 100644 --- a/meshaccelerator.js +++ b/meshaccelerator.js @@ -21,7 +21,10 @@ var certStore = null; process.on('disconnect', function () { process.exit(); }); // Handle parent messages -process.on('message', function (message) { +process.on('message', function (message) { module.exports.processMessage(message); }); + +// Process an incoming message +module.exports.processMessage = function(message) { switch (message.action) { case 'sign': { if (typeof message.key == 'number') { message.key = certStore[message.key].key; } @@ -36,9 +39,14 @@ process.on('message', function (message) { certStore = message.certs; break; } + case 'indexMcRec': { + //console.log('indexMcRec', message.data); + require(require('path').join(__dirname, 'mcrec.js')).indexFile(message.data); + break; + } default: { console.log('Unknown accelerator action: ' + message.action + '.'); break; } } -}); \ No newline at end of file +} \ No newline at end of file diff --git a/meshcentral.js b/meshcentral.js index 5efe7118..0f6b3798 100644 --- a/meshcentral.js +++ b/meshcentral.js @@ -2333,12 +2333,14 @@ function mainStart() { var ldap = false; var allsspi = true; var yubikey = false; + var recordingIndex = false; var domainCount = 0; if (require('os').platform() == 'win32') { for (var i in config.domains) { domainCount++; if (config.domains[i].auth == 'sspi') { sspi = true; } else { allsspi = false; } } } else { allsspi = false; } if (domainCount == 0) { allsspi = false; } for (var i in config.domains) { if (config.domains[i].yubikey != null) { yubikey = true; } if (config.domains[i].auth == 'ldap') { ldap = true; } + if ((config.domains[i].sessionrecording != null) && (config.domains[i].sessionrecording.index == true)) { recordingIndex = true; } } // Get the current node version @@ -2348,6 +2350,7 @@ function mainStart() { var modules = ['ws', 'cbor', 'nedb', 'https', 'yauzl', 'xmldom', 'ipcheck', 'express', 'archiver', 'multiparty', 'node-forge', 'express-ws', 'compression', 'body-parser', 'connect-redis', 'cookie-session', 'express-handlebars']; if (require('os').platform() == 'win32') { modules.push('node-windows'); if (sspi == true) { modules.push('node-sspi'); } } // Add Windows modules if (ldap == true) { modules.push('ldapauth-fork'); } + if (recordingIndex == true) { modules.push('image-size'); } // Need to get the remote desktop JPEG sizes to index the recodring file. if (config.letsencrypt != null) { if ((nodeVersion < 10) || (require('crypto').generateKeyPair == null)) { addServerWarning("Let's Encrypt support requires Node v10.12 or higher.", !args.launch); } else { modules.push('greenlock'); } } // Add Greenlock Module if (config.settings.mqtt != null) { modules.push('aedes'); } // Add MQTT Modules if (config.settings.mysql != null) { modules.push('mysql'); } // Add MySQL, official driver. diff --git a/meshrelay.js b/meshrelay.js index 4d8617e9..f9da3299 100644 --- a/meshrelay.js +++ b/meshrelay.js @@ -228,7 +228,7 @@ module.exports.CreateMeshRelay = function (parent, ws, req, domain, user, cookie if (xdevicename2 != null) { metadata.devicename = xdevicename2; } var firstBlock = JSON.stringify(metadata); recordingEntry(fd, 1, ((obj.req.query.browser) ? 2 : 0), firstBlock, function () { - try { relayinfo.peer1.ws.logfile = ws.logfile = { fd: fd, lock: false }; } catch (ex) { + try { relayinfo.peer1.ws.logfile = ws.logfile = { fd: fd, lock: false, filename: recFullFilename }; } catch (ex) { try { ws.send('c'); } catch (ex) { } // Send connect to both peers, 'cr' indicates the session is being recorded. try { relayinfo.peer1.ws.send('c'); } catch (ex) { } return; @@ -331,7 +331,15 @@ module.exports.CreateMeshRelay = function (parent, ws, req, domain, user, cookie var peer = (relayinfo.peer1 == obj) ? relayinfo.peer2 : relayinfo.peer1; // Close the recording file - if (ws.logfile != null) { recordingEntry(ws.logfile.fd, 3, 0, 'MeshCentralMCREC', function (fd, tag) { parent.parent.fs.close(fd); tag.ws.logfile = null; tag.pws.logfile = null; }, { ws: ws, pws: peer.ws }); } + if (ws.logfile != null) { + recordingEntry(ws.logfile.fd, 3, 0, 'MeshCentralMCREC', function (fd, tag) { + parent.parent.fs.close(fd); + tag.ws.logfile = null; + tag.pws.logfile = null; + // Now that the recording file is closed, check if we need to index this file. + if (domain.sessionrecording.index == true) { parent.parent.certificateOperations.acceleratorPerformOperation('indexMcRec', tag.logfile.filename); } + }, { ws: ws, pws: peer.ws, logfile: ws.logfile }); + } // Disconnect the peer try { if (peer.relaySessionCounted) { parent.relaySessionCount--; delete peer.relaySessionCounted; } } catch (ex) { console.log(ex); } diff --git a/package.json b/package.json index 1ecdaed2..35adf5b7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "meshcentral", - "version": "0.4.9-d", + "version": "0.4.9-e", "keywords": [ "Remote Management", "Intel AMT", diff --git a/sample-config.json b/sample-config.json index 06f05072..64ecf26b 100644 --- a/sample-config.json +++ b/sample-config.json @@ -121,6 +121,7 @@ "_agentConfig": [ "webSocketMaskOverride=1" ], "_SessionRecording": { "_filepath": "C:\\temp", + "_index": true, "__protocols__": "Is an array: 1 = Terminal, 2 = Desktop, 5 = Files, 100 = Intel AMT WSMAN, 101 = Intel AMT Redirection", "protocols": [ 1, 2, 101 ] } diff --git a/translate/translate.json b/translate/translate.json index 32355a3f..add9db63 100644 --- a/translate/translate.json +++ b/translate/translate.json @@ -11,8 +11,8 @@ "pt": " + CIRA", "ru": " + CIRA", "xloc": [ - "default.handlebars->25->1019", - "default.handlebars->25->1021" + "default.handlebars->27->1024", + "default.handlebars->27->1026" ] }, { @@ -24,7 +24,7 @@ "ru": "- Сброс через 1 день.", "xloc": [ "default-mobile.handlebars->9->15", - "default.handlebars->25->57" + "default.handlebars->27->57" ] }, { @@ -36,7 +36,7 @@ "ru": "- Сброс через 1 час.", "xloc": [ "default-mobile.handlebars->9->13", - "default.handlebars->25->55" + "default.handlebars->27->55" ] }, { @@ -48,7 +48,7 @@ "ru": "- Сброс через 1 минуту.", "xloc": [ "default-mobile.handlebars->9->11", - "default.handlebars->25->53" + "default.handlebars->27->53" ] }, { @@ -60,7 +60,7 @@ "ru": "- Сброс через {0} дней.", "xloc": [ "default-mobile.handlebars->9->16", - "default.handlebars->25->58" + "default.handlebars->27->58" ] }, { @@ -83,7 +83,7 @@ "ru": "- Сброс через {0} часов.", "xloc": [ "default-mobile.handlebars->9->14", - "default.handlebars->25->56" + "default.handlebars->27->56" ] }, { @@ -106,7 +106,7 @@ "ru": "- Сброс через {0} минут.", "xloc": [ "default-mobile.handlebars->9->12", - "default.handlebars->25->54" + "default.handlebars->27->54" ] }, { @@ -114,7 +114,7 @@ "de": " - Zurücksetzen in {0} Minute{1}.", "en": " - Reset in {0} minute{1}.", "es": "- Reiniciar en {0} minutos{1}.", - "fr": " - Réinitialisation en {0} minute {1}.", + "fr": "- Réinitialisation en {0} minute {1}.", "ja": " - {0}分でリセット{1}。", "nl": " - Reset in {0} minuten{1}.", "pt": " - Redefinir em {0} minuto {1}.", @@ -133,8 +133,8 @@ "xloc": [ "default-mobile.handlebars->9->10", "default-mobile.handlebars->9->9", - "default.handlebars->25->51", - "default.handlebars->25->52" + "default.handlebars->27->51", + "default.handlebars->27->52" ] }, { @@ -142,11 +142,11 @@ "de": " / ", "en": " / ", "es": " / ", + "fr": " / ", "ja": " / ", "nl": " / ", "pt": " / ", "ru": " / ", - "fr": " / ", "xloc": [ "default-mobile.handlebars->9->94" ] @@ -176,7 +176,7 @@ "pt": " Dica de senha pode ser usada, mas não é recomendada.", "ru": "Может быть использована подсказка пароля, но не рекоммендуется.", "xloc": [ - "default.handlebars->25->951" + "default.handlebars->27->956" ] }, { @@ -190,8 +190,8 @@ "pt": " Os usuários precisam fazer login neste servidor uma vez antes de poderem ser adicionados a um grupo de dispositivos.", "ru": " Для добавления в группу устройств, пользователь должен зайти на сервер хотя бы один раз.", "xloc": [ - "default.handlebars->25->1094", - "default.handlebars->25->1324" + "default.handlebars->27->1099", + "default.handlebars->27->1329" ] }, { @@ -205,7 +205,7 @@ "pt": " e autenticar no servidor usando esse nome de usuário e qualquer senha.", "ru": " и задайте указанное ниже имя пользователя и любой пароль.", "xloc": [ - "default.handlebars->25->267" + "default.handlebars->27->267" ] }, { @@ -219,7 +219,7 @@ "pt": " e autenticar no servidor usando esse nome de usuário e senha.", "ru": " и задайте указанные ниже имя пользователя и пароль.", "xloc": [ - "default.handlebars->25->266" + "default.handlebars->27->266" ] }, { @@ -261,7 +261,7 @@ "pt": " com TLS.", "ru": " с TLS.", "xloc": [ - "default.handlebars->25->164" + "default.handlebars->27->164" ] }, { @@ -275,7 +275,7 @@ "pt": " sem TLS.", "ru": " без TLS", "xloc": [ - "default.handlebars->25->165" + "default.handlebars->27->165" ] }, { @@ -283,9 +283,9 @@ "de": "(", "en": "(", "es": "(", + "fr": "(", "ja": "(", "nl": "(", - "fr": "(", "pt": "(", "ru": "(", "xloc": [ @@ -298,12 +298,13 @@ "de": "(optional)", "en": "(optional)", "es": "(opcional)", + "fr": "(optionnel)", "ja": "(オプション)", "nl": "(optioneel)", "pt": "(opcional)", "ru": "(необязательно)", "xloc": [ - "default.handlebars->25->303" + "default.handlebars->27->303" ] }, { @@ -311,11 +312,11 @@ "de": ")", "en": ")", "es": ")", + "fr": ")", "ja": ")", "nl": ")", "pt": ")", "ru": ")", - "fr": ")", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3createMeshLink1", "default.handlebars->container->column_l->p2->p2createMeshLink1" @@ -325,13 +326,14 @@ "cs": "* Pro BSD, nejprve spusťte „pkg install wget sudo bash“.", "de": "* Unter BSD, führe zunächst \\\"pkg install wget sudo bash\\\" aus.", "en": "* For BSD, run \\\"pkg install wget sudo bash\\\" first.", - "es": "* Para BSD, ejecute \\\"pkg install wget sudo bash\\\" ", + "es": "* Para BSD, ejecute \\\"pkg install wget sudo bash\\\".", + "fr": "* Pour BSD, exécuter d'abord la commande \\\"pkg install wget sudo bash\\\".", "ja": "* BSDの場合、最初に\\\"pkg install wget sudo bash\\\"を実行します。", "nl": "* Voor BSD, start eerst \\\"pkg install wget sudo bash\\\" .", "pt": "* Para o BSD, execute \\\"pkg install wget sudo bash\\\".", "ru": "* Для BSD сначала запустите \\\"pkg install wget sudo bash\\\".", "xloc": [ - "default.handlebars->25->334" + "default.handlebars->27->334" ] }, { @@ -339,12 +341,13 @@ "de": "* Frei lassen, um jedem Gerät ein zufälliges Passwort zuzuweisen.", "en": "* Leave blank to assign a random password to each device.", "es": "* Deje en blanco para asignar una contraseña random a cada dispositivo.", + "fr": "* Laisser vide pour créer un mot de passe aléatoire pour chaque appareil", "ja": "*空白のままにして、各デバイスにランダムなパスワードを割り当てます。", "nl": "* Laat leeg om een willekeurig wachtwoord toe te wijzen aan elk apparaat.", "pt": "* Deixe em branco para atribuir uma senha aleatória a cada dispositivo.", "ru": "* Оставьте пустым для установления случайного пароля каждому устройству.", "xloc": [ - "default.handlebars->25->1069" + "default.handlebars->27->1074" ] }, { @@ -352,11 +355,11 @@ "de": ",", "en": ",", "es": ",", + "fr": ",", "ja": "、", "nl": ",", "pt": ",", "ru": ",", - "fr": ",", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p0->1->p0message", "default.handlebars->container->column_l->p0->p0message" @@ -367,14 +370,14 @@ "de": ", ", "en": ", ", "es": ", ", + "fr": ", ", "ja": "、", "nl": ", ", "pt": ", ", "ru": ", ", - "fr": ", ", "xloc": [ "default-mobile.handlebars->9->330", - "default.handlebars->25->1145" + "default.handlebars->27->1150" ] }, { @@ -382,13 +385,14 @@ "de": ", nur Intel® AMT", "en": ", Intel® AMT only", "es": ", Intel® solo AMT.", + "fr": ", Intel® AMT uniquement", "ja": "、Intel® AMTのみ", "nl": ", Intel® AMT alleen", "pt": ", Intel® AMT only", "ru": ", только для Intel® AMT", "xloc": [ "default-mobile.handlebars->9->92", - "default.handlebars->25->180" + "default.handlebars->27->180" ] }, { @@ -396,12 +400,13 @@ "de": ", MQTT ist verbunden", "en": ", MQTT is online", "es": ", MQQT esta en linea.", + "fr": ", MQTT est connecté", "ja": "、MQTTはオンラインです", "nl": ", MQTT is online", "pt": ", O MQTT está online", "ru": ", MQTT онлайн", "xloc": [ - "default.handlebars->25->704" + "default.handlebars->27->709" ] }, { @@ -409,13 +414,13 @@ "de": ", Soft-KVM", "en": ", Soft-KVM", "es": ", Soft-KVM", + "fr": ", Soft-KVM", "ja": "、Soft-KVM", "nl": ", Soft-KVM", "pt": ", Soft-KVM", "ru": ", Soft-KVM", - "fr": ", Soft-KVM", "xloc": [ - "default.handlebars->25->616" + "default.handlebars->27->621" ] }, { @@ -423,17 +428,17 @@ "de": ", WebRTC", "en": ", WebRTC", "es": ", WebRTC", + "fr": ", WebRTC", "ja": "、WebRTC", "nl": ", WebRTC", "pt": ", WebRTC", "ru": ", WebRTC", - "fr": ", WebRTC", "xloc": [ "default-mobile.handlebars->9->228", "default-mobile.handlebars->9->238", - "default.handlebars->25->617", - "default.handlebars->25->647", - "default.handlebars->25->659", + "default.handlebars->27->622", + "default.handlebars->27->652", + "default.handlebars->27->664", "xterm.handlebars->9->6" ] }, @@ -442,6 +447,7 @@ "de": ", zum Einschalten hier klicken.", "en": ", click here to enable it.", "es": ", haga click aquí para habilitarlo.", + "fr": ", cliquez ici pour l'activer", "ja": "、ここをクリックして有効にします。", "nl": ", klik hier om in te schakelen", "pt": ", clique aqui para habilitá-lo.", @@ -469,6 +475,7 @@ "de": ", ausführen und \"Installieren\" oder \"Verbinden\" wählen.", "en": ", run it and press \"Install\" or \"Connect\".", "es": ", execute y presione \"Instalar\" o \"Conectar\".", + "fr": ", exécutez le puis cliquez sur \"Install\" or \"Connect.", "ja": "、実行して「インストール」または「接続」を押します。", "nl": ", open het en klik op \"installeren\" of \"verbinden\".", "pt": ", execute-o e pressione \"Install\" or \"Connect\".", @@ -483,11 +490,11 @@ "de": "-", "en": "-", "es": "-", + "fr": "-", "ja": "-", "nl": "-", "pt": "-", "ru": "-", - "fr": "-", "xloc": [ "default-mobile.handlebars->9->231", "xterm.handlebars->p11->deskarea0->deskarea1->3" @@ -498,11 +505,11 @@ "de": ".", "en": ".", "es": ".", + "fr": ".", "ja": "。", "nl": ".", "pt": ".", "ru": ".", - "fr": ".", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p0->1->p0message", "default.handlebars->container->column_l->p0->p0message", @@ -520,17 +527,17 @@ "de": "...", "en": "...", "es": "...", + "fr": "...", "ja": "...", "nl": "...", "pt": "...", "ru": "...", - "fr": "...", "xloc": [ "default-mobile.handlebars->9->243", "default-mobile.handlebars->9->67", - "default.handlebars->25->1167", - "default.handlebars->25->1400", - "default.handlebars->25->661" + "default.handlebars->27->1172", + "default.handlebars->27->1405", + "default.handlebars->27->666" ] }, { @@ -538,11 +545,11 @@ "de": "0", "en": "0", "es": "0", + "fr": "0", "ja": "0", "nl": "0", "pt": "0", "ru": "0", - "fr": "0", "xloc": [ "default-mobile.handlebars->9->232", "default.handlebars->container->masthead->7->notificationCount" @@ -553,11 +560,11 @@ "de": "00:00:00", "en": "00:00:00", "es": "00:00:00", + "fr": "00:00:00", "ja": "00:00:00", "nl": "00:00:00", "pt": "00:00:00", "ru": "00:00:00", - "fr": "00:00:00", "xloc": [ "player.handlebars->p11->deskarea0->deskarea4->1->timespan" ] @@ -573,7 +580,7 @@ "pt": "1 sessão ativa", "ru": "1 активная сессия", "xloc": [ - "default.handlebars->25->1364" + "default.handlebars->27->1369" ] }, { @@ -589,7 +596,7 @@ "xloc": [ "default-mobile.handlebars->9->334", "default-mobile.handlebars->9->77", - "default.handlebars->25->1184" + "default.handlebars->27->1189" ] }, { @@ -603,9 +610,9 @@ "pt": "1 dia", "ru": "1 день", "xloc": [ - "default.handlebars->25->170", - "default.handlebars->25->294", - "default.handlebars->25->308" + "default.handlebars->27->170", + "default.handlebars->27->294", + "default.handlebars->27->308" ] }, { @@ -619,7 +626,7 @@ "pt": "1 grupo", "ru": "1 группа", "xloc": [ - "default.handlebars->25->1348" + "default.handlebars->27->1353" ] }, { @@ -633,9 +640,9 @@ "pt": "1 hora", "ru": "1 час", "xloc": [ - "default.handlebars->25->168", - "default.handlebars->25->292", - "default.handlebars->25->306" + "default.handlebars->27->168", + "default.handlebars->27->292", + "default.handlebars->27->306" ] }, { @@ -646,7 +653,7 @@ "nl": "1 minuut totdat de verbinding wordt verbroken", "ru": "1 минута до разъединения", "xloc": [ - "default.handlebars->25->61" + "default.handlebars->27->61" ] }, { @@ -660,9 +667,9 @@ "pt": "1 mês", "ru": "1 месяц", "xloc": [ - "default.handlebars->25->172", - "default.handlebars->25->296", - "default.handlebars->25->310" + "default.handlebars->27->172", + "default.handlebars->27->296", + "default.handlebars->27->310" ] }, { @@ -670,12 +677,13 @@ "de": "1 weiterer Benutzer nicht angezeigt, Suchfeld verwenden um weitere Benutzer zu suchen...", "en": "1 more user not shown, use search box to look for users...", "es": "No se muestra un usuario más, use el cuadro de búsqueda para buscar usuarios...", + "fr": "au moins 1 utilisateur non affiché, utilisez la recherche pour les trouver...", "ja": "さらに1人のユーザーが表示されていません。検索ボックスを使用してユーザーを検索してください...", "nl": "1 gebruiker niet getoond, gebruik de zoekfunctie om gebruikers te vinden...", "pt": "Mais 1 usuário não mostrado, use a caixa de pesquisa para procurar usuários...", "ru": "Еще 1 пользователь не показан, используйте поиск чтобы найти пользователей...", "xloc": [ - "default.handlebars->25->1219" + "default.handlebars->27->1224" ] }, { @@ -689,7 +697,7 @@ "pt": "1 nó", "ru": "1 устройство", "xloc": [ - "default.handlebars->25->347" + "default.handlebars->27->347" ] }, { @@ -700,7 +708,7 @@ "nl": "1 seconde totdat de verbinding wordt verbroken", "ru": "1 секунда до разъединения", "xloc": [ - "default.handlebars->25->59" + "default.handlebars->27->59" ] }, { @@ -714,7 +722,7 @@ "pt": "1 sessão", "ru": "1 сессия", "xloc": [ - "default.handlebars->25->1223" + "default.handlebars->27->1228" ] }, { @@ -728,9 +736,9 @@ "pt": "1 semana", "ru": "1 неделя", "xloc": [ - "default.handlebars->25->171", - "default.handlebars->25->295", - "default.handlebars->25->309" + "default.handlebars->27->171", + "default.handlebars->27->295", + "default.handlebars->27->309" ] }, { @@ -750,6 +758,7 @@ "cs": "1. Při šíření zdrojového kódu dál musí být zachováno výše uvedené upozornění o autorských právech, tento seznam podmínek a následující vyloučení odpovědnosti.", "en": "1.Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.", "es": "1. Las redistribuciones del código fuente deben conservar el aviso de copyright anterior, esta lista de condiciones y el siguiente descargo de responsabilidad.", + "fr": "1. La redistribution du code source doit contenir le copyright, la liste des conditions et le la décharge de responsabilité suivante.", "ja": "1.ソースコードの再配布には、上記の著作権表示、この条件リスト、および以下の免責事項を保持する必要があります。", "nl": "1.Herdistributies van broncode moeten de bovenstaande copyright kennisgeving en deze lijst met voorwaarden en de volgende disclaimer bevatten.", "pt": "1.As redistribuições do código-fonte devem manter o aviso de direitos autorais acima, esta lista de condições e o aviso de isenção de responsabilidade a seguir.", @@ -794,11 +803,11 @@ "de": "100%", "en": "100%", "es": "100%", + "fr": "100%", "ja": "100%", "nl": "100%", "pt": "100%", "ru": "100%", - "fr": "100%", "xloc": [ "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->5->d7bitmapscaling->1", "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->5->d7bitmapscaling->1" @@ -809,11 +818,11 @@ "de": "100x30", "en": "100x30", "es": "100x30", + "fr": "100x30", "ja": "100x30", "nl": "100x30", "pt": "100x30", "ru": "100x30", - "fr": "100x30", "xloc": [ "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSizeDropDown->termSizeList->1" ] @@ -837,11 +846,11 @@ "de": "12.5%", "en": "12.5%", "es": "12.5%", + "fr": "12.5%", "ja": "12.5%", "nl": "12.5%", "pt": "12.5%", "ru": "12.5%", - "fr": "12.5%", "xloc": [ "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->5->d7bitmapscaling->15", "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->5->d7bitmapscaling->15" @@ -852,12 +861,13 @@ "de": "Aktivierung der Zweifaktor-Anmeldung fehlgeschlagen.", "en": "2-step login activation failed.", "es": "La activación de inicio de sesión en 2 pasos falló.", + "fr": "Echec de l'activitation de l'authentifcation à double facteur.", "ja": "2段階ログインのアクティベーションに失敗しました。", "nl": "Tweestapsverificatie is msilukt.", "pt": "Falha na ativação do login em duas etapas.", "ru": "Активация двухэтапного входа не удалась.", "xloc": [ - "default.handlebars->25->125" + "default.handlebars->27->125" ] }, { @@ -865,12 +875,13 @@ "de": "Entfernung der Aktivierung der Zweifaktor-Anmeldung fehlgeschlagen.", "en": "2-step login activation removal failed.", "es": "La eliminación de activación de inicio de sesión en 2 pasos falló.", + "fr": "Echec de la suppression de l'authenfication à double facteur.", "ja": "2段階ログインアクティベーションの削除に失敗しました。", "nl": "Tweestapsverificatie verwijdering is mislukt.", "pt": "A remoção da ativação do login em duas etapas falhou.", "ru": "Удаление активации двухэтапного входа не удалось.", "xloc": [ - "default.handlebars->25->130" + "default.handlebars->27->130" ] }, { @@ -906,11 +917,11 @@ "de": "25%", "en": "25%", "es": "25%", + "fr": "25%", "ja": "25%", "nl": "25%", "pt": "25%", "ru": "25%", - "fr": "25%", "xloc": [ "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->5->d7bitmapscaling->13", "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->5->d7bitmapscaling->13" @@ -921,12 +932,13 @@ "de": "Zweifaktorauthentifizierung eingeschaltet", "en": "2nd factor authentication enabled", "es": "Segundo factor de autenticación habilitado.", + "fr": "Authenfitication à double facteur activée", "ja": "二要素認証が有効", "nl": "Tweestapsverificatie ingeschakeld", "pt": "Autenticação de segundo fator ativada", "ru": "двухфакторная аутентификация включена", "xloc": [ - "default.handlebars->25->1357" + "default.handlebars->27->1362" ] }, { @@ -948,11 +960,11 @@ "de": "3", "en": "3", "es": "3", + "fr": "3", "ja": "3", "nl": "3", "pt": "3", "ru": "3", - "fr": "3", "xloc": [ "default-mobile.handlebars->9->269" ] @@ -1001,13 +1013,14 @@ "de": "32bit-Version des MeshAgents", "en": "32bit version of the MeshAgent", "es": "Version 32bits del MeshAgent", + "fr": "Version 32bits de MeshAgent", "ja": "MeshAgentの32ビットバージョン", "nl": "32bit versie van de MeshAgent", "pt": "Versão de 32 bits do MeshAgent", "ru": "32-разрядная версия MeshAgent", "xloc": [ - "default.handlebars->25->326", - "default.handlebars->25->340" + "default.handlebars->27->326", + "default.handlebars->27->340" ] }, { @@ -1015,11 +1028,11 @@ "de": "37.5%", "en": "37.5%", "es": "37.5%", + "fr": "37.5%", "ja": "37.5%", "nl": "37.5%", "pt": "37..5%", "ru": "37.5%", - "fr": "37.5%", "xloc": [ "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->5->d7bitmapscaling->11", "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->5->d7bitmapscaling->11" @@ -1055,11 +1068,11 @@ "de": "404", "en": "404", "es": "404", + "fr": "404", "ja": "404", "nl": "404", "pt": "404", "ru": "404", - "fr": "404", "xloc": [ "error404-mobile.handlebars->container->page_content->column_l->1->0", "error404.handlebars->container->column_l->1->0" @@ -1109,11 +1122,11 @@ "de": "50%", "en": "50%", "es": "50%", + "fr": "50%", "ja": "50%", "nl": "50%", "pt": "50%", "ru": "50%", - "fr": "50%", "xloc": [ "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->5->d7bitmapscaling->9", "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->5->d7bitmapscaling->9" @@ -1150,11 +1163,11 @@ "de": "62.5%", "en": "62.5%", "es": "62.5%", + "fr": "62.5%", "ja": "62.5%", "nl": "62.5%", "pt": "62.5%", "ru": "62.5%", - "fr": "62.5%", "xloc": [ "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->5->d7bitmapscaling->7", "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->5->d7bitmapscaling->7" @@ -1165,13 +1178,14 @@ "de": "64bit-Version des MeshAgents", "en": "64bit version of the MeshAgent", "es": "Version 64bits del MeshAgent", + "fr": "Version 64bits de MeshAgent", "ja": "MeshAgentの64ビットバージョン", "nl": "64bit versie van de MeshAgent", "pt": "Versão de 64 bits do MeshAgent", "ru": "64-разрядная версия MeshAgent", "xloc": [ - "default.handlebars->25->329", - "default.handlebars->25->343" + "default.handlebars->27->329", + "default.handlebars->27->343" ] }, { @@ -1187,12 +1201,13 @@ "de": "7-Tage-Energiezustand", "en": "7 Day Power State", "es": "Estado de energía de 7 días", + "fr": "Alimentation sur les 7 derniers jours", "ja": "7日間の電源状態", "nl": "7 dagen stroom status", "pt": "Estado de energia de 7 dias", "ru": "7-дневная статистика работы", "xloc": [ - "default.handlebars->25->556" + "default.handlebars->27->561" ] }, { @@ -1213,11 +1228,11 @@ "de": "75%", "en": "75%", "es": "75%", + "fr": "75%", "ja": "75%", "nl": "75%", "pt": "75%", "ru": "75%", - "fr": "75%", "xloc": [ "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->5->d7bitmapscaling->5", "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->5->d7bitmapscaling->5" @@ -1234,8 +1249,8 @@ "pt": "8 horas", "ru": "8 часов", "xloc": [ - "default.handlebars->25->293", - "default.handlebars->25->307" + "default.handlebars->27->293", + "default.handlebars->27->307" ] }, { @@ -1243,11 +1258,11 @@ "de": "80x25", "en": "80x25", "es": "80x25", + "fr": "80x25", "ja": "80x25", "nl": "80x25", "pt": "80x25", "ru": "80x25", - "fr": "80x25", "xloc": [ "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSizeDropDown->termSizeList->0" ] @@ -1257,11 +1272,11 @@ "de": "87.5%", "en": "87.5%", "es": "87.5%", + "fr": "87.5%", "ja": "87.5%", "nl": "87.5%", "pt": "87.5%", "ru": "87.5%", - "fr": "87.5%", "xloc": [ "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->5->d7bitmapscaling->3", "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->5->d7bitmapscaling->3" @@ -1272,25 +1287,25 @@ "de": ":", "en": ":", "es": ":", + "fr": ":", "ja": ":", "nl": ":", "pt": ":", "ru": ":", - "fr": ":", "xloc": [ "agentinvite.handlebars->3->4" ] }, { - "en": "<<", - "nl": "<<", "cs": "<<", + "de": "<<", + "en": "<<", "es": "<<", + "fr": "<<", "ja": "<<", + "nl": "<<", "pt": "<<", "ru": "<<", - "de": "<<", - "fr": "<<", "xloc": [ "player.handlebars->p11->deskarea0->deskarea4->3" ] @@ -1300,12 +1315,13 @@ "de": "Hardware-Schlüssel werden für Zweifaktor-Anmeldung verwendet.", "en": "Hardware keys are used as secondary login authentication.", "es": "Las claves de Hardware son usadas como segundo factor de autenticación.", + "fr": "Les clés physiques (Yubikeys) sont utilisées pour l'authentification à double facteur.", "ja": "ハードウェアキーは、セカンダリログイン認証として使用されます。", "nl": "Hardware sleutels worden gebruikt als secundaire inlogverificatie.", "pt": "Chaves Hardware são usados como autenticação de login secundária.", "ru": "Аппаратные ключи используются в качестве дополнительной аутентификации.", "xloc": [ - "default.handlebars->25->139" + "default.handlebars->27->139" ] }, { @@ -1313,6 +1329,7 @@ "de": "Aktivierung der Zweifaktor-Anmeldung entfernt. Sie können dieses Merkmal jederzeit reaktivieren.", "en": "2-step login activation removed. You can reactivate this feature at any time.", "es": "Activación de inicio de sesión de 2 pasos eliminada. Puede reactivar esta funcion en cualqueir momento.", + "fr": "Authentification à double facteur supprimée. Vous pouvez la réactiver à n'importe quel moment.", "ja": " 2段階のログインアクティベーションが削除されました。この機能はいつでも再アクティブ化できます。", "nl": "Tweestapsverificatie verwijderd. Je kan deze functie ten allen tijde weer inschakelen.", "pt": "Ativação de login em duas etapas removida. Você pode reativar esse recurso a qualquer momento.", @@ -1326,6 +1343,7 @@ "de": "Aktivierung der Zweifaktor-Anmeldung erfolgreich. Sie werden nun ein gültiges Token benötigen, um sich erneut einzuloggen.", "en": "2-step login activation successful. You will now need a valid token to login again.", "es": "Segundo-factor de autentcacion activado exitosamente. Ahora necesitará un token válido para iniciar sesión nuevamente.", + "fr": "Authentification à double facteur activée. Vous aurez besoin maintenant d'un jeton de connexion pour vous connecter. ", "ja": " 2段階ログインの有効化に成功。再度ログインするには、有効なトークンが必要になります。", "nl": "Tweestapsverificatie successvol. U hebt nu een geldig token nodig om opnieuw in te loggen.", "pt": " ativação de login em duas etapas . Agora você precisará de um token válido para fazer login novamente.", @@ -1339,6 +1357,7 @@ "de": "Aktivierung der Zweifaktor-Anmeldung fehlgeschlagen. Entfernen Sie das Geheimnis aus der Applikation und versuchen Sie es erneut. Sie haben nur wenige Minuten Zeit, um einen gültigen Code einzugeben.", "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.", "es": " Error de activación de inicio de sesión usando el segundo factor de autenticación. Borre el código de la aplicación e intente nuevamente. Solo tiene unos minutos para ingresar el código adecuado.", + "fr": "Echec de l'authentification à double facteur. Essayez à nouveau. Vous disposez de quelques minutes pour taper le bon code.", "ja": " 2段階ログインの有効化に失敗しました。アプリケーションから秘密をクリアして、再試行してください。適切なコードを入力するのに数分しかかかりません。", "nl": "Tweestapsverificatie mislukt. Wis het geheim van de applicatie en probeer het opnieuw. Je hebt maar een paar minuten om de juiste code in te voeren.", "pt": " falha na ativação do login em duas etapas . Limpe o segredo do aplicativo e tente novamente. Você tem apenas alguns minutos para inserir o código correto.", @@ -1352,6 +1371,7 @@ "de": "Entfernen der Aktivierung der Zweifaktor-Anmeldung fehlgeschlagen. Versuchen Sie es erneut.", "en": "2-step login activation removal failed. Try again.", "es": " Error al eliminar la activación del segundo factor de autenticación. Inténtalo de nuevo.", + "fr": "Echec de la suppression de l'authentification à double facteur. Essayer à nouveau.", "ja": " 2段階のログインアクティベーションの削除に失敗しました。再試行する。", "nl": "Tweestapsverificatie verwijdering mislukt. Probeer het opnieuw.", "pt": " falha na remoção da ativação do login em duas etapas . Tente novamente.", @@ -1361,15 +1381,15 @@ ] }, { - "en": ">>", - "nl": ">>", "cs": ">>", + "de": ">>", + "en": ">>", "es": ">>", + "fr": ">>", "ja": ">>", + "nl": ">>", "pt": ">>", "ru": ">>", - "de": ">>", - "fr": ">>", "xloc": [ "player.handlebars->p11->deskarea0->deskarea4->3" ] @@ -1379,14 +1399,14 @@ "de": "ACM", "en": "ACM", "es": "ACM", + "fr": "ACM", "ja": "ACM", "nl": "ACM", "pt": "ACM", "ru": "ACM", - "fr": "ACM", "xloc": [ "default-mobile.handlebars->9->182", - "default.handlebars->25->472" + "default.handlebars->27->477" ] }, { @@ -1394,14 +1414,14 @@ "de": "AMT", "en": "AMT", "es": "AMT", + "fr": "AMT", "ja": "AMT", "nl": "AMT", "pt": "AMT", "ru": "AMT", - "fr": "AMT", "xloc": [ - "default.handlebars->25->188", - "default.handlebars->25->375" + "default.handlebars->27->188", + "default.handlebars->27->375" ] }, { @@ -1415,7 +1435,7 @@ "ru": "ARM-Linaro", "xloc": [ "default-mobile.handlebars->9->167", - "default.handlebars->25->37" + "default.handlebars->27->37" ] }, { @@ -1423,14 +1443,14 @@ "de": "ARMv6l / ARMv7l", "en": "ARMv6l / ARMv7l", "es": "ARMv6l / ARMv7l", + "fr": "ARMv6l / ARMv7l", "ja": "ARMv6l / ARMv7l", "nl": "ARMv6l / ARMv7l", "pt": "ARMv6l / ARMv7l", "ru": "ARMv6l / ARMv7l", - "fr": "ARMv6l / ARMv7l", "xloc": [ "default-mobile.handlebars->9->168", - "default.handlebars->25->38" + "default.handlebars->27->38" ] }, { @@ -1438,14 +1458,14 @@ "de": "ARMv6l / ARMv7l / NoKVM", "en": "ARMv6l / ARMv7l / NoKVM", "es": "ARMv6l / ARMv7l / Sin KVM", + "fr": "ARMv6l / ARMv7l / NoKVM", "ja": "ARMv6l / ARMv7l / NoKVM", "nl": "ARMv6l / ARMv7l / NoKVM", "pt": "ARMv6l / ARMv7l / NoKVM", "ru": "ARMv6l / ARMv7l / NoKVM", - "fr": "ARMv6l / ARMv7l / NoKVM", "xloc": [ "default-mobile.handlebars->9->170", - "default.handlebars->25->40" + "default.handlebars->27->40" ] }, { @@ -1453,14 +1473,14 @@ "de": "ARMv8 64bit", "en": "ARMv8 64bit", "es": "ARMv8 64bits", + "fr": "ARMv8 64bit", "ja": "ARMv8 64ビット", "nl": "ARMv8 64bit", "pt": "ARMv8 64bit", "ru": "ARMv8 64bit", - "fr": "ARMv8 64bit", "xloc": [ "default-mobile.handlebars->9->169", - "default.handlebars->25->39" + "default.handlebars->27->39" ] }, { @@ -1474,7 +1494,7 @@ "pt": "Acesso Negado", "ru": "Отказано в доступе", "xloc": [ - "default.handlebars->25->705" + "default.handlebars->27->710" ] }, { @@ -1482,6 +1502,7 @@ "de": "Zugriff verweigert.", "en": "Access denied.", "es": "Acceso Negado", + "fr": "Accès refusé.", "ja": "アクセスが拒否されました。", "nl": "Toegang geweigerd.", "ru": "Отказано в доступе.", @@ -1495,12 +1516,13 @@ "de": "Zugriff auf Server-Dateien", "en": "Access to server files", "es": "Acceso a archivos del servidor", + "fr": "Accès au serveur de fichiers", "ja": "サーバーファイルへのアクセス", "nl": "Toegang tot de server bestanden", "pt": "Acesso aos arquivos do servidor", "ru": "Доступ к файлам сервера", "xloc": [ - "default.handlebars->25->1329" + "default.handlebars->27->1334" ] }, { @@ -1508,6 +1530,7 @@ "de": "Konto-Aktionen", "en": "Account Actions", "es": "Acciones de la cuenta", + "fr": "Actions du compte", "ja": "アカウントアクション", "nl": "gebruikersacties", "pt": "Ações da Conta", @@ -1521,6 +1544,7 @@ "de": "Konto-Erzeugung", "en": "Account Creation", "es": "Creación de Cuenta", + "fr": "Création de compte", "ja": "アカウント作成", "nl": "Gebruikersaccount aanmaken", "pt": "Criação de conta", @@ -1535,6 +1559,7 @@ "de": "Konto-Rücksetzung", "en": "Account Reset", "es": "Restablecimiento de cuenta", + "fr": "Réinitialisation du compte", "ja": "アカウントのリセット", "nl": "Gebruikersaccount resetten", "pt": "Redefinição de conta", @@ -1549,6 +1574,7 @@ "de": "Konto-Sicherheit", "en": "Account Security", "es": "Seguridad de la cuenta", + "fr": "Sécurité du compte", "ja": "アカウントのセキュリティ", "nl": "Gebruikersaccount beveiliging", "pt": "Segurança da Conta", @@ -1559,10 +1585,10 @@ "default-mobile.handlebars->9->52", "default-mobile.handlebars->9->54", "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->1->0", - "default.handlebars->25->445", - "default.handlebars->25->447", - "default.handlebars->25->960", - "default.handlebars->25->962" + "default.handlebars->27->450", + "default.handlebars->27->452", + "default.handlebars->27->965", + "default.handlebars->27->967" ] }, { @@ -1570,6 +1596,7 @@ "de": "Konto-Aktionen", "en": "Account actions", "es": "Acciones de la cuenta", + "fr": "Actions du compte", "ja": "アカウントアクション", "nl": "gebruikersacties", "pt": "Ações da conta", @@ -1583,6 +1610,7 @@ "de": "Konten-Obergrenze erreicht.", "en": "Account limit reached.", "es": "Límite de cuenta alcanzado.", + "fr": "Limite du compte atteinte.", "ja": "アカウントの上限に達しました。", "nl": "Gebruikersaccount limiet bereikt.", "ru": "Достигнуто ограничение учетных записей.", @@ -1596,6 +1624,7 @@ "de": "Konto gesperrt.", "en": "Account locked.", "es": "Cuenta Bloqueada.", + "fr": "Compte bloqué", "ja": "アカウントがロックされました。", "nl": "Gebruikersaccount vergrendeld", "ru": "Учетная запись заблокирована.", @@ -1609,6 +1638,7 @@ "de": "Konto nicht gefunden.", "en": "Account not found.", "es": "Cuenta no encontrada.", + "fr": "Compte introuvable", "ja": "アカウントが見つかりませんでした。", "nl": "Gebruikersaccount niet gevonden", "ru": "Учетная запись не найдена.", @@ -1622,6 +1652,7 @@ "de": "Konto-Sicherheit", "en": "Account security", "es": "Seguridad de la cuenta", + "fr": "Sécurité du compte", "ja": "アカウントのセキュリティ", "nl": "Gebruikersaccount beveiliging", "pt": "Segurança da conta", @@ -1640,7 +1671,7 @@ "pt": "Ação", "ru": "Действиe", "xloc": [ - "default.handlebars->25->710", + "default.handlebars->27->715", "default.handlebars->container->column_l->p42->p42tbl->1->0->8" ] }, @@ -1650,8 +1681,8 @@ "nl": "Actie bestand", "ru": "Файл действий", "xloc": [ - "default.handlebars->25->596", - "default.handlebars->25->598" + "default.handlebars->27->601", + "default.handlebars->27->603" ] }, { @@ -1666,7 +1697,7 @@ "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea4->1->3", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->1", - "default.handlebars->25->504", + "default.handlebars->27->509", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->1", "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->1" @@ -1713,8 +1744,8 @@ "xloc": [ "default-mobile.handlebars->9->177", "default-mobile.handlebars->9->179", - "default.handlebars->25->465", - "default.handlebars->25->467" + "default.handlebars->27->470", + "default.handlebars->27->472" ] }, { @@ -1727,10 +1758,10 @@ "pt": "Ativação", "ru": "Активация", "xloc": [ - "default.handlebars->25->1032", - "default.handlebars->25->1034", - "default.handlebars->25->230", - "default.handlebars->25->232" + "default.handlebars->27->1037", + "default.handlebars->27->1039", + "default.handlebars->27->230", + "default.handlebars->27->232" ] }, { @@ -1738,12 +1769,13 @@ "de": "Aktive Benutzer{0}", "en": "Active User{0}", "es": "Usuario Activo {0}", + "fr": "Utilisateur(s) acti(s) {0}", "ja": "アクティブユーザー{0}", "nl": "Actieve gebruikers{0}", "pt": "Usuário ativo {0}", "ru": "Активный пользователь", "xloc": [ - "default.handlebars->25->491" + "default.handlebars->27->496" ] }, { @@ -1757,7 +1789,7 @@ "pt": "Adicionar agente", "ru": "Добавить агент", "xloc": [ - "default.handlebars->25->234" + "default.handlebars->27->234" ] }, { @@ -1771,7 +1803,7 @@ "pt": "Adicionar CIRA", "ru": "Добавить CIRA", "xloc": [ - "default.handlebars->25->224" + "default.handlebars->27->224" ] }, { @@ -1785,7 +1817,7 @@ "pt": "Adicionar evento do dispositivo", "ru": "Добавить событие к устройству", "xloc": [ - "default.handlebars->25->539" + "default.handlebars->27->544" ] }, { @@ -1799,11 +1831,11 @@ "pt": "Adicionar grupo de dispositivos", "ru": "Добавить группу устройств", "xloc": [ - "default.handlebars->25->1119", - "default.handlebars->25->1121", - "default.handlebars->25->1303", - "default.handlebars->25->1377", - "default.handlebars->25->205" + "default.handlebars->27->1124", + "default.handlebars->27->1126", + "default.handlebars->27->1308", + "default.handlebars->27->1382", + "default.handlebars->27->205" ] }, { @@ -1811,12 +1843,13 @@ "de": "Intel®-AMT-CIRA-Gerät hinzufügen", "en": "Add Intel® AMT CIRA device", "es": "Agregar Dispositivo con Intel AMT CIRA", + "fr": "Ajouter un appareil Intel® AMT CIRA", "ja": "Intel®を追加AMT CIRAデバイス", "nl": "Toevoegen Intel® AMT CIRA apparaat", "pt": "Adicione Intelreg; AMT", "ru": "Добавить Intel® AMT CIRA устройство", "xloc": [ - "default.handlebars->25->279" + "default.handlebars->27->279" ] }, { @@ -1824,12 +1857,13 @@ "de": "Intel®-AMT-Gerät hinzufügen", "en": "Add Intel® AMT device", "es": "Agregar Dispositivo con Intel AMT", + "fr": "Ajouter un nouvel ordinateur Intel® AMT", "ja": "Intel®を追加AMTデバイス", "nl": "Add Intel® AMT apparaat", "pt": "Adicione Intelreg; dispositivo AMT", "ru": "Добавить Intel® AMT устройство", "xloc": [ - "default.handlebars->25->247" + "default.handlebars->27->247" ] }, { @@ -1837,12 +1871,13 @@ "de": "Schlüssel hinzufügen", "en": "Add Key", "es": "Agregar Llave", + "fr": "Ajouter une clé", "ja": "キーを追加", "nl": "Sleutel toevoegen", "pt": "Adicionar chave", "ru": "Добавить ключ", "xloc": [ - "default.handlebars->25->143" + "default.handlebars->27->143" ] }, { @@ -1855,7 +1890,7 @@ "pt": "Adicionar local", "ru": "Добавить локально", "xloc": [ - "default.handlebars->25->226" + "default.handlebars->27->226" ] }, { @@ -1866,7 +1901,7 @@ "nl": "Lidmaatschap toevoegen", "ru": "Добавить участие", "xloc": [ - "default.handlebars->25->1396" + "default.handlebars->27->1401" ] }, { @@ -1874,12 +1909,13 @@ "de": "Mesh Agent hinzufügen", "en": "Add Mesh Agent", "es": "Agregar Agente Mesh", + "fr": "Ajouter un agent", "ja": "メッシュエージェントを追加", "nl": "Toevoegen Mesh agent", "pt": "Adicionar agente de malha", "ru": "Добавить Mesh Agent", "xloc": [ - "default.handlebars->25->346" + "default.handlebars->27->346" ] }, { @@ -1893,12 +1929,12 @@ "pt": "Adicionar chave de segurança", "ru": "Добавить ключ безопасности", "xloc": [ - "default.handlebars->25->146", - "default.handlebars->25->148", - "default.handlebars->25->151", - "default.handlebars->25->152", - "default.handlebars->25->729", - "default.handlebars->25->730" + "default.handlebars->27->146", + "default.handlebars->27->148", + "default.handlebars->27->151", + "default.handlebars->27->152", + "default.handlebars->27->734", + "default.handlebars->27->735" ] }, { @@ -1909,9 +1945,9 @@ "nl": "Gebruikersgroep toevoegen", "ru": "Добавить группу пользователей", "xloc": [ - "default.handlebars->25->1026", - "default.handlebars->25->1120", - "default.handlebars->25->1386" + "default.handlebars->27->1031", + "default.handlebars->27->1125", + "default.handlebars->27->1391" ] }, { @@ -1939,8 +1975,8 @@ "pt": "Adicionar usuários", "ru": "Добавить пользователей", "xloc": [ - "default.handlebars->25->1025", - "default.handlebars->25->1298" + "default.handlebars->27->1030", + "default.handlebars->27->1303" ] }, { @@ -1948,12 +1984,13 @@ "de": "Benutzer zu Gerätegruppe hinzufügen", "en": "Add Users to Device Group", "es": "Agregar Usuarios al Grupo de Dispositivos", + "fr": "Ajouter des utilisateurs au groupe d'appareils", "ja": "ユーザーをデバイスグループに追加する", "nl": "Gebruikers toevoegen aan apparaatgroep", "pt": "Adicionar usuários ao grupo de dispositivos", "ru": "Добавить пользователей в группу устройств", "xloc": [ - "default.handlebars->25->1118" + "default.handlebars->27->1123" ] }, { @@ -1964,7 +2001,7 @@ "nl": "Voeg gebruikers toe aan de gebruikersgroep", "ru": "Добавить пользователей в группу", "xloc": [ - "default.handlebars->25->1326" + "default.handlebars->27->1331" ] }, { @@ -1972,12 +2009,13 @@ "de": "YubiKey® OTP hinzufügen", "en": "Add YubiKey® OTP", "es": "Agregar YubiKey OTP", + "fr": "Ajouter une clé YubiKey® OTP", "ja": "YubiKey®を追加OTP", "nl": "Voeg YubiKey® OTP toe", "pt": "Adicione YubiKeyreg; OTP", "ru": "Добавить YubiKey® OTP", "xloc": [ - "default.handlebars->25->144" + "default.handlebars->27->144" ] }, { @@ -1985,12 +2023,13 @@ "de": "Füge einen neuen Intel®-AMT-Rechner durch Scannen des lokalen Netzwerks hinzu.", "en": "Add a new Intel® AMT computer by scanning the local network.", "es": "Agregue una nueva computadora Intel AMT escaneando la red Local.", + "fr": "Ajouter un nouvel ordinateur Intel® AMT en scannant le réseau local.", "ja": "新しいIntel®を追加しますローカルネットワークをスキャンしてAMTコンピューター。", "nl": "Voeg een nieuwe Intel® AMT computer toe door het lokale netwerk te scannen.", "pt": "Adicione um novo Intelreg; Computador AMT digitalizando a rede local.", "ru": "Добавить новый Intel® AMT компьютер сканированием локальной сети.", "xloc": [ - "default.handlebars->25->227" + "default.handlebars->27->227" ] }, { @@ -1998,13 +2037,14 @@ "de": "Füge einen neuen Intel®-AMT-Rechner hinzu, der sich im Internet befindet.", "en": "Add a new Intel® AMT computer that is located on the internet.", "es": "Agregue una nueva computadora Intel AMT localizada en el internet", + "fr": "Ajouter un nouvel ordinateur Intel® AMT connecté à internet.", "ja": "新しいIntel®を追加しますインターネット上にあるAMTコンピューター。", "nl": "Voeg een nieuwe Intel® AMT computer toe welke zich op het internet bevind.", "pt": "Adicione um novo Intel® Computador AMT localizado na Internet.", "ru": "Добавить новый Intel® AMT компьютер, находящийся в интернете.", "xloc": [ - "default.handlebars->25->1027", - "default.handlebars->25->223" + "default.handlebars->27->1032", + "default.handlebars->27->223" ] }, { @@ -2012,13 +2052,14 @@ "de": "Füge einen neuen Intel®-AMT-Rechner hinzu, der sich im lokalen Netzwerk befindet.", "en": "Add a new Intel® AMT computer that is located on the local network.", "es": "Agregue una nueva computadora Intel AMT localizada en la red Local.", + "fr": "Ajouter un nouvel ordinateur Intel® AMT du réseau local.", "ja": "新しいIntel®を追加しますローカルネットワーク上にあるAMTコンピューター。", "nl": "Voeg een nieuwe Intel® AMT computer toe welke zich op het lokale netwerk bevind.", "pt": "Adicione um novo Intel® AMT computer that is located on the local network.", "ru": "Добавить новый Intel® AMT компьютер, находящийся в локальной сети.", "xloc": [ - "default.handlebars->25->1029", - "default.handlebars->25->225" + "default.handlebars->27->1034", + "default.handlebars->27->225" ] }, { @@ -2026,12 +2067,13 @@ "de": "Füge ein neues Intel®-AMT-Gerät zur Gerätegruppe \\\"{0}\\\" hinzu.", "en": "Add a new Intel® AMT device to device group \\\"{0}\\\".", "es": "Agregue un nuevo dispositivo AMT al grupo de dispositivos.", + "fr": "Ajouter un appareil Intel® AM au groupe d'appareils \\\"{0}\\\".", "ja": "新しいIntel®を追加しますAMTデバイスからデバイスグループ\\\"{0}\\\"へ。", "nl": "Voeg een nieuwe Intel® AMT computer toe aan een apparaatgroep \\\"{0}\\\".", "pt": "Adicione um novo Intel® Dispositivo AMT para grupo de dispositivos \\\"{0}\\\".", "ru": "Добавить новое Intel® AMT устройство к группе устройств \\\"{0}\\\".", "xloc": [ - "default.handlebars->25->237" + "default.handlebars->27->237" ] }, { @@ -2039,13 +2081,14 @@ "de": "Füge einen neuen Rechner durch Installation des Mesh-Agenten zu diesem Mesh hinzu.", "en": "Add a new computer to this mesh by installing the mesh agent.", "es": "Agregue una nueva computadora al MESH instalando el agente.", + "fr": "Ajouter un nouvel ordinateur à ce groupe en installant l'agent", "ja": "メッシュエージェントをインストールして、このメッシュに新しいコンピューターを追加します。", "nl": "Voeg een nieuwe computer toe aan deze mesh door de mesh-agent te installeren.", "pt": "Adicione um novo computador a essa malha instalando o agente de malha.", "ru": "Добавить новый компьютер к этой сети установкой Mesh Agent.", "xloc": [ - "default.handlebars->25->1035", - "default.handlebars->25->233" + "default.handlebars->27->1040", + "default.handlebars->27->233" ] }, { @@ -2053,12 +2096,13 @@ "de": "Adresse", "en": "Address", "es": "Dirección", + "fr": "Adresse", "ja": "住所", "nl": "Adres", "pt": "Endereço", "ru": "Адрес", "xloc": [ - "default.handlebars->25->201" + "default.handlebars->27->201" ] }, { @@ -2066,6 +2110,7 @@ "de": "Adressen", "en": "Addresses", "es": "Direcciónes", + "fr": "Adresses", "ja": "住所", "nl": "Adressen", "pt": "Endereços", @@ -2079,6 +2124,7 @@ "de": "Admin-PowerShell", "en": "Admin PowerShell", "es": "Administrar Powershell", + "fr": "Powershell administateur", "ja": "管理者PowerShell", "nl": "Beheerder PowerShell", "ru": "Admin PowerShell", @@ -2097,7 +2143,7 @@ "pt": "Admin Realms", "ru": "Области администратора", "xloc": [ - "default.handlebars->25->1352" + "default.handlebars->27->1357" ] }, { @@ -2105,6 +2151,7 @@ "de": "Admin-Shell", "en": "Admin Shell", "es": "Administrar Shell", + "fr": "Console administrateur", "ja": "管理シェル", "nl": "Beheerder Shell", "ru": "Admin Shell", @@ -2123,7 +2170,7 @@ "pt": "Domínios Administrativos", "ru": "Административные области", "xloc": [ - "default.handlebars->25->1268" + "default.handlebars->27->1273" ] }, { @@ -2131,12 +2178,13 @@ "de": "Administrator", "en": "Administrator", "es": "Administrator", + "fr": "Administrateur", "ja": "管理者", "nl": "Beheerder", "pt": "Administrador", "ru": "Администратор", "xloc": [ - "default.handlebars->25->1230" + "default.handlebars->27->1235" ] }, { @@ -2149,7 +2197,7 @@ "pt": "afrikaans", "ru": "Африканский", "xloc": [ - "default.handlebars->25->732" + "default.handlebars->27->737" ] }, { @@ -2166,10 +2214,10 @@ "default-mobile.handlebars->9->121", "default-mobile.handlebars->9->174", "default-mobile.handlebars->9->190", - "default.handlebars->25->1155", - "default.handlebars->25->1161", - "default.handlebars->25->184", - "default.handlebars->25->371", + "default.handlebars->27->1160", + "default.handlebars->27->1166", + "default.handlebars->27->184", + "default.handlebars->27->371", "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->1" ] }, @@ -2181,8 +2229,8 @@ "nl": "Agent + Intel AMT", "ru": "Агент + Intel AMT", "xloc": [ - "default.handlebars->25->1157", - "default.handlebars->25->1163" + "default.handlebars->27->1162", + "default.handlebars->27->1168" ] }, { @@ -2209,7 +2257,7 @@ "ru": "Консоль агента", "xloc": [ "default-mobile.handlebars->9->315", - "default.handlebars->25->1129" + "default.handlebars->27->1134" ] }, { @@ -2220,7 +2268,7 @@ "nl": "Agent fout tellers", "ru": "Счетчик ошибок агента", "xloc": [ - "default.handlebars->25->1408" + "default.handlebars->27->1413" ] }, { @@ -2266,7 +2314,7 @@ "nl": "Agent Sessies", "ru": "Сессии агентов", "xloc": [ - "default.handlebars->25->1424" + "default.handlebars->27->1429" ] }, { @@ -2280,7 +2328,7 @@ "ru": "Тег агента", "xloc": [ "default-mobile.handlebars->9->189", - "default.handlebars->25->484" + "default.handlebars->27->489" ] }, { @@ -2291,7 +2339,7 @@ "nl": "Agent Type", "ru": "Типы агента", "xloc": [ - "default.handlebars->25->1159", + "default.handlebars->27->1164", "default.handlebars->container->column_l->p21->3->1->meshOsChartDiv->1" ] }, @@ -2300,14 +2348,15 @@ "de": "Agent verbunden", "en": "Agent connected", "es": "Agente Conectado", + "fr": "Agent connecté", "ja": "接続されたエージェント", "nl": "Agent verbonden", "pt": "Agente conectado", "ru": "Агент подключен", "xloc": [ - "default.handlebars->25->154", - "default.handlebars->25->530", - "default.handlebars->25->531" + "default.handlebars->27->154", + "default.handlebars->27->535", + "default.handlebars->27->536" ] }, { @@ -2315,12 +2364,13 @@ "de": "Agent getrennt", "en": "Agent disconnected", "es": "Agente Desconectado", + "fr": "Agent déconnecté", "ja": "エージェントが切断されました", "nl": "Agent niet verbonden", "pt": "Agente desconectado", "ru": "Агент отключился", "xloc": [ - "default.handlebars->25->158" + "default.handlebars->27->158" ] }, { @@ -2328,12 +2378,13 @@ "de": "Agent ist offline", "en": "Agent is offline", "es": "Agente desconectado", + "fr": "Agent déconnecté", "ja": "エージェントはオフラインです", "nl": "Agent is offline", "pt": "O agente está offline", "ru": "Агент оффлайн", "xloc": [ - "default.handlebars->25->703" + "default.handlebars->27->708" ] }, { @@ -2341,12 +2392,13 @@ "de": "Agent ist online", "en": "Agent is online", "es": "Agente Conectado", + "fr": "Agent connecté", "ja": "エージェントはオンラインです", "nl": "Agent is online", "pt": "Agente está online", "ru": "Агент онлайн", "xloc": [ - "default.handlebars->25->702" + "default.handlebars->27->707" ] }, { @@ -2359,7 +2411,7 @@ "pt": "Agentes", "ru": "Агенты", "xloc": [ - "default.handlebars->25->1437" + "default.handlebars->27->1442" ] }, { @@ -2372,7 +2424,7 @@ "pt": "albanês", "ru": "Албанский", "xloc": [ - "default.handlebars->25->733" + "default.handlebars->27->738" ] }, { @@ -2396,6 +2448,7 @@ "de": "Alle Bildschirme", "en": "All Displays", "es": "Todos los Displays", + "fr": "Tous affichages", "ja": "すべてのディスプレイ", "nl": "alle schermen", "pt": "Todas as telas", @@ -2414,9 +2467,9 @@ "pt": "All Focus", "ru": "Фокусирование всех", "xloc": [ - "default.handlebars->25->618", - "default.handlebars->25->620", - "default.handlebars->25->621" + "default.handlebars->27->623", + "default.handlebars->27->625", + "default.handlebars->27->626" ] }, { @@ -2430,8 +2483,8 @@ "pt": "Permitir que os usuários gerenciem esse grupo de dispositivos e dispositivos neste grupo.", "ru": "Разрешить пользователям управлять этой группой и устройствами этой группы.", "xloc": [ - "default.handlebars->25->1093", - "default.handlebars->25->1323" + "default.handlebars->27->1098", + "default.handlebars->27->1328" ] }, { @@ -2439,11 +2492,11 @@ "de": "Alt+F4", "en": "Alt-F4", "es": "Alt+F4", + "fr": "Alt-F4", "ja": "Alt-F4", "nl": "Alt-F4", "pt": "Alt-F4", "ru": "Alt-F4", - "fr": "Alt-F4", "xloc": [ "default-mobile.handlebars->dialog->3->dialog3->deskkeys->19", "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3->deskkeys->17" @@ -2454,11 +2507,11 @@ "de": "Alt+Tab", "en": "Alt-Tab", "es": "Alt+Tab", + "fr": "Alt-Tab", "ja": "Alt-Tab", "nl": "Alt-Tab", "pt": "Alt-Tab", "ru": "Alt-Tab", - "fr": "Alt-Tab", "xloc": [ "default-mobile.handlebars->dialog->3->dialog3->deskkeys->23", "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3->deskkeys->21" @@ -2469,12 +2522,13 @@ "de": "Alternativ (F10 = ESC+0)", "en": "Alternate (F10 = ESC+0)", "es": "Alternativo (F10 = ESC + 0)", + "fr": "Alternative (F10 = ESC+0)", "ja": "代替(F10 = ESC + 0)", "nl": "Alternatief (F10 = ESC + 0)", "pt": "Alternativo (F10 = ESC + 0)", "ru": "Поменять (F10 = ESC+0)", "xloc": [ - "default.handlebars->25->652" + "default.handlebars->27->657" ] }, { @@ -2496,7 +2550,7 @@ "pt": "Notificar sempre", "ru": "Всегда уведомлять", "xloc": [ - "default.handlebars->25->1008" + "default.handlebars->27->1013" ] }, { @@ -2504,12 +2558,13 @@ "de": "Immer nachfragen", "en": "Always Prompt", "es": "Simepre Preguntar", + "fr": "Toujours demander", "ja": "常にプロンプ​​ト", "nl": "Altijd prompt", "pt": "Sempre alerta", "ru": "Всегда запрашивать", "xloc": [ - "default.handlebars->25->1009" + "default.handlebars->27->1014" ] }, { @@ -2517,14 +2572,14 @@ "de": "Android-APK", "en": "Android APK", "es": "Android APK", + "fr": "Android APK", "ja": "Android APK", "nl": "Android APK", "pt": "Android APK", "ru": "Android APK", - "fr": "Android APK", "xloc": [ "default-mobile.handlebars->9->157", - "default.handlebars->25->27" + "default.handlebars->27->27" ] }, { @@ -2532,14 +2587,14 @@ "de": "Android ARM", "en": "Android ARM", "es": "Android ARM", + "fr": "Android ARM", "ja": "Android ARM", "nl": "Android ARM", "pt": "Android ARM", "ru": "Android ARM", - "fr": "Android ARM", "xloc": [ "default-mobile.handlebars->9->152", - "default.handlebars->25->22" + "default.handlebars->27->22" ] }, { @@ -2547,14 +2602,14 @@ "de": "Android x86", "en": "Android x86", "es": "Android x86", + "fr": "Android x86", "ja": "Android x86", "nl": "Android x86", "pt": "Android x86", "ru": "Android x86", - "fr": "Android x86", "xloc": [ "default-mobile.handlebars->9->155", - "default.handlebars->25->25" + "default.handlebars->27->25" ] }, { @@ -2568,7 +2623,7 @@ "pt": "Antivírus", "ru": "Антивирус", "xloc": [ - "default.handlebars->25->490" + "default.handlebars->27->495" ] }, { @@ -2581,7 +2636,7 @@ "pt": "Qualquer suportado", "ru": "Любые поддерживаемые", "xloc": [ - "default.handlebars->25->287" + "default.handlebars->27->287" ] }, { @@ -2589,13 +2644,13 @@ "de": "Apple MacOS", "en": "Apple MacOS", "es": "Apple MacOS", + "fr": "Apple MacOS", "ja": "Apple MacOS", "nl": "Apple MacOS", "pt": "Apple MacOS", "ru": "Apple MacOS", - "fr": "Apple MacOS", "xloc": [ - "default.handlebars->25->317" + "default.handlebars->27->317" ] }, { @@ -2603,12 +2658,13 @@ "de": "Nur Apple MacOS", "en": "Apple MacOS only", "es": "Solo Apple MacOS", + "fr": "Apple MacOS seulement", "ja": "Apple MacOSのみ", "nl": "Alleen Apple MacOS", "pt": "Apenas Apple MacOS ", "ru": "Только Apple MacOS", "xloc": [ - "default.handlebars->25->289" + "default.handlebars->27->289" ] }, { @@ -2616,11 +2672,11 @@ "de": "Apple™ MacOS", "en": "Apple™ MacOS", "es": "Apple™ MacOS", + "fr": "Apple™ MacOS", "ja": "Apple™MacOS", "nl": "Apple™ MacOS", "pt": "Apple™ MacOS", "ru": "Apple™ MacOS", - "fr": "Apple™ MacOS", "xloc": [ "agentinvite.handlebars->container->column_l->5->macostab->1" ] @@ -2629,12 +2685,13 @@ "cs": "arabština (Alžír)", "de": "Arabisch (Algerien)", "en": "Arabic (Algeria)", + "fr": "Arabe (Algérie)", "ja": "アラビア語(アルジェリア)", "nl": "Arabisch (Algerije)", "pt": "Árabe (Argélia)", "ru": "Арабский (Алжир)", "xloc": [ - "default.handlebars->25->735" + "default.handlebars->27->740" ] }, { @@ -2646,43 +2703,46 @@ "pt": "Árabe (Bahrain)", "ru": "Арабский (Бахрейн)", "xloc": [ - "default.handlebars->25->736" + "default.handlebars->27->741" ] }, { "cs": "arabština (Egypt)", "de": "Arabisch (Ägypten)", "en": "Arabic (Egypt)", + "fr": "Arabe (Egypte)", "ja": "アラビア語(エジプト)", "nl": "Arabisch (Egypte)", "pt": "Árabe (Egito)", "ru": "Арабский (Египет)", "xloc": [ - "default.handlebars->25->737" + "default.handlebars->27->742" ] }, { "cs": "arabština (Irák)", "de": "Arabisch (Irak)", "en": "Arabic (Iraq)", + "fr": "Arabe (Iraq)", "ja": "アラビア語(イラク)", "nl": "Arabisch (Irak)", "pt": "Árabe (Iraque)", "ru": "Арабский (Ирак)", "xloc": [ - "default.handlebars->25->738" + "default.handlebars->27->743" ] }, { "cs": "arabština (Jordánsko)", "de": "Arabisch (Jordanien)", "en": "Arabic (Jordan)", + "fr": "Arabe (Jordanie)", "ja": "アラビア語(ヨルダン)", "nl": "Arabisch (Jordanië)", "pt": "Árabe (Jordânia)", "ru": "Арабский (Иордания)", "xloc": [ - "default.handlebars->25->739" + "default.handlebars->27->744" ] }, { @@ -2694,7 +2754,7 @@ "pt": "Árabe (Kuwait)", "ru": "Арабский (Кувейт)", "xloc": [ - "default.handlebars->25->740" + "default.handlebars->27->745" ] }, { @@ -2706,31 +2766,33 @@ "pt": "Árabe (Líbano)", "ru": "Арабский (Ливан)", "xloc": [ - "default.handlebars->25->741" + "default.handlebars->27->746" ] }, { "cs": "arabština (Libye)", "de": "Arabisch (Libyen)", "en": "Arabic (Libya)", + "fr": "Arabe (Lybie)", "ja": "アラビア語(リビア)", "nl": "Arabisch (Libië)", "pt": "Árabe (Líbia)", "ru": "Арабский (Ливия)", "xloc": [ - "default.handlebars->25->742" + "default.handlebars->27->747" ] }, { "cs": "arabština (Maroko)", "de": "Arabisch (Marokko)", "en": "Arabic (Morocco)", + "fr": "Arabe (Maroc)", "ja": "アラビア語(モロッコ)", "nl": "Arabisch (Marokko)", "pt": "Árabe (Marrocos)", "ru": "Арабский (Марокко)", "xloc": [ - "default.handlebars->25->743" + "default.handlebars->27->748" ] }, { @@ -2742,67 +2804,72 @@ "pt": "Árabe (Omã)", "ru": "Арабский (Оман)", "xloc": [ - "default.handlebars->25->744" + "default.handlebars->27->749" ] }, { "cs": "arabština (Katar)", "de": "Arabisch (Katar)", "en": "Arabic (Qatar)", + "fr": "Arabe (Qatar)", "ja": "アラビア語(カタール)", "nl": "Arabisch (Qatar)", "pt": "Árabe (Catar)", "ru": "Арабский (Катар)", "xloc": [ - "default.handlebars->25->745" + "default.handlebars->27->750" ] }, { "cs": "arabština (Saudská Arábie)", "de": "Arabisch (Saudi-Arabien)", "en": "Arabic (Saudi Arabia)", + "fr": "Arabe (Arabie Saoudite)", "ja": "アラビア語(サウジアラビア)", "nl": "Arabisch (Saoedi-Arabië)", "pt": "Árabe (Arábia Saudita)", "ru": "Арабский (Саудовская Аравия)", "xloc": [ - "default.handlebars->25->746" + "default.handlebars->27->751" ] }, { "cs": "arabština (standardní)", "de": "Arabisch (Standard)", "en": "Arabic (Standard)", + "fr": "Arabe (Standard)", "ja": "アラビア語(標準)", "nl": "Arabisch (Standaard)", "pt": "Árabe (padrão)", "ru": "Арабский (стандартный)", "xloc": [ - "default.handlebars->25->734" + "default.handlebars->27->739" ] }, { "cs": "arabština (Sýrie)", "de": "Arabisch (Syrien)", "en": "Arabic (Syria)", + "fr": "Arabe (Syrie)", "ja": "アラビア語(シリア)", "nl": "Arabisch (Syrië)", "pt": "Árabe (Síria)", "ru": "Арабский (Сирия)", "xloc": [ - "default.handlebars->25->747" + "default.handlebars->27->752" ] }, { "cs": "arabština (Tunisko)", "de": "Arabisch (Tunesien)", "en": "Arabic (Tunisia)", + "fr": "Arabe (Tunisie)", "ja": "アラビア語(チュニジア)", "nl": "Arabisch (Tunesië)", "pt": "Árabe (Tunísia)", "ru": "Арабский (Тунис)", "xloc": [ - "default.handlebars->25->748" + "default.handlebars->27->753" ] }, { @@ -2814,31 +2881,33 @@ "pt": "Árabe (U.A.E)", "ru": "Арабский (О.А.Э.)", "xloc": [ - "default.handlebars->25->749" + "default.handlebars->27->754" ] }, { "cs": "arabština (Jemen)", "de": "Arabisch (Jemen)", "en": "Arabic (Yemen)", + "fr": "Arabe (Yemen)", "ja": "アラビア語(イエメン)", "nl": "Arabisch (Jemen)", "pt": "Árabe (Iêmen)", "ru": "Арабский (Йемен)", "xloc": [ - "default.handlebars->25->750" + "default.handlebars->27->755" ] }, { "cs": "aragonština", "de": "Aragonesisch", "en": "Aragonese", + "fr": "Aragonais", "ja": "アラゴン語", "nl": "Aragonese", "pt": "Aragonês", "ru": "Арагонский", "xloc": [ - "default.handlebars->25->751" + "default.handlebars->27->756" ] }, { @@ -2852,7 +2921,7 @@ "pt": "Arquitetura", "ru": "Архитектура", "xloc": [ - "default.handlebars->25->82" + "default.handlebars->27->82" ] }, { @@ -2860,11 +2929,12 @@ "de": "Möchten Sie wirklich eine Verbindung zu {0} Geräten herstellen?", "en": "Are you sure you want to connect to {0} devices?", "es": "¿Está seguro de que desea conectarse a {0} dispositivos?", + "fr": "Êtes vous sur de vouloir vous connecter à ces {0} appareils ?", "ja": "{0}台のデバイスに接続してもよろしいですか?", "nl": "Weet u zeker dat u verbinding wilt maken met {0} apparaten?", "ru": "Вы действительно хотите подключиться к {0} устройствам?", "xloc": [ - "default.handlebars->25->218" + "default.handlebars->27->218" ] }, { @@ -2879,7 +2949,7 @@ "ru": "Вы действительно хотите удалить группу \\\"{0}\\\"? Удаление группы приведет к удалению всей информации связанной с устройствами в этой группе.", "xloc": [ "default-mobile.handlebars->9->286", - "default.handlebars->25->1073" + "default.handlebars->27->1078" ] }, { @@ -2893,7 +2963,7 @@ "pt": "Tem certeza de que deseja excluir o nó {0}?", "ru": "Вы действительно хотите удалить устройство \\\"{0}\\\"?", "xloc": [ - "default.handlebars->25->578" + "default.handlebars->27->583" ] }, { @@ -2901,11 +2971,12 @@ "de": "Möchten Sie den ausgewählten Agenten wirklich deinstallieren?", "en": "Are you sure you want to uninstall selected agent?", "es": "¿Está seguro de que desea desinstalar el agente seleccionado?", + "fr": "Êtes vous sur de vouloir désinstaller l'agent sélectionné ?", "ja": "選択したエージェントをアンインストールしてもよろしいですか?", "nl": "Weet u zeker dat u de geselecteerde agent wilt verwijderen?", "ru": "Вы действительно хотите деинсталировать выбранного агента?", "xloc": [ - "default.handlebars->25->567" + "default.handlebars->27->572" ] }, { @@ -2913,11 +2984,12 @@ "de": "Möchten Sie die ausgewählten {0} Agenten wirklich deinstallieren?", "en": "Are you sure you want to uninstall the selected {0} agents?", "es": "¿Está seguro de que desea desinstalar los {0} agentes seleccionados?", + "fr": "Êtes vous sur de vouloir désinstaller ces {0} agents ?", "ja": "選択した{0}エージェントをアンインストールしてもよろしいですか?", "nl": "Weet u zeker dat u de geselecteerde {0} agenten wilt verwijderen?", "ru": "Вы действительно хотите деинсталлировать выбранных {0} агентов?", "xloc": [ - "default.handlebars->25->566" + "default.handlebars->27->571" ] }, { @@ -2925,23 +2997,25 @@ "de": "Möchten Sie wirklich das Plugin {0}: {1}", "en": "Are you sure you want to {0} the plugin: {1}", "es": "Está seguro de que desea {0} el plugin: {1}?", + "fr": "Êtes vous sur de vouloir {0} le module: {1}", "ja": "プラグインを{0}してもよろしいですか:{1}", "nl": "Weet u zeker dat u de plug-in {0} wilt gebruiken: {1}", "ru": "Вы уверенны, что {0} плагин: {1}", "xloc": [ - "default.handlebars->25->1472" + "default.handlebars->27->1477" ] }, { "cs": "arménština", "de": "Armenisch", "en": "Armenian", + "fr": "Arménien", "ja": "アルメニア人", "nl": "Armeens", "pt": "Armênio", "ru": "Армянский", "xloc": [ - "default.handlebars->25->752" + "default.handlebars->27->757" ] }, { @@ -2953,7 +3027,7 @@ "pt": "Assamese", "ru": "Ассамский", "xloc": [ - "default.handlebars->25->753" + "default.handlebars->27->758" ] }, { @@ -2965,7 +3039,7 @@ "pt": "Asturiano", "ru": "Астурии", "xloc": [ - "default.handlebars->25->754" + "default.handlebars->27->759" ] }, { @@ -2978,7 +3052,7 @@ "pt": "Aplicativo de autenticação", "ru": "Приложение аутентификации", "xloc": [ - "default.handlebars->25->1353" + "default.handlebars->27->1358" ] }, { @@ -2986,6 +3060,7 @@ "de": "Authentifikator-Anwendung", "en": "Authenticator App", "es": "Aplicación de autenticación", + "fr": "Application d'authentification", "ja": "認証アプリ", "nl": "Verificatie-app", "pt": "Autenticador de aplicativo", @@ -2995,10 +3070,10 @@ "default-mobile.handlebars->9->21", "default-mobile.handlebars->9->30", "default-mobile.handlebars->9->32", - "default.handlebars->25->122", - "default.handlebars->25->127", - "default.handlebars->25->718", - "default.handlebars->25->720" + "default.handlebars->27->122", + "default.handlebars->27->127", + "default.handlebars->27->723", + "default.handlebars->27->725" ] }, { @@ -3011,7 +3086,7 @@ "pt": "Ativação do aplicativo autenticador bem-sucedida.", "ru": "Приложение для аутентификации активированно успешно.", "xloc": [ - "default.handlebars->25->123" + "default.handlebars->27->123" ] }, { @@ -3024,7 +3099,7 @@ "pt": "Aplicativo autenticador removido.", "ru": "Приложение для аутентификации удалено.", "xloc": [ - "default.handlebars->25->128" + "default.handlebars->27->128" ] }, { @@ -3046,12 +3121,13 @@ "de": "Auto-Entfernen", "en": "Auto-Remove", "es": "Eliminar automáticamente", + "fr": "Suppression automatique", "ja": "自動削除", "nl": "Geautomatiseerde verwijdering", "pt": "Remover automaticamente", "ru": "Автоудаление", "xloc": [ - "default.handlebars->25->996" + "default.handlebars->27->1001" ] }, { @@ -3059,6 +3135,7 @@ "de": "Auto-Verbindung", "en": "AutoConnect", "es": "Auto Conectarse", + "fr": "Connection automatique", "ja": "自動接続", "nl": "Automatisch verbinden", "pt": "Conexão automática", @@ -3088,12 +3165,13 @@ "cs": "azerbájdžánština", "de": "Aserbaidschanisch", "en": "Azerbaijani", + "fr": "Azerbaïdjanais", "ja": "アゼルバイジャン語", "nl": "Azerbeidzjaanse", "pt": "Azerbaijão", "ru": "Азербайджанский", "xloc": [ - "default.handlebars->25->755" + "default.handlebars->27->760" ] }, { @@ -3101,13 +3179,13 @@ "de": "BIOS", "en": "BIOS", "es": "BIOS", + "fr": "BIOS", "ja": "BIOS", "nl": "BIOS", "pt": "BIOS", "ru": "BIOS", - "fr": "BIOS", "xloc": [ - "default.handlebars->25->66" + "default.handlebars->27->66" ] }, { @@ -3147,6 +3225,7 @@ "de": "Zurück zur Anmeldung", "en": "Back to login", "es": "Regresar al Inicio de Sesion", + "fr": "Revenir à l'authentification", "ja": "ログインに戻る", "nl": "Terug naar inloggen", "pt": "Volte ao login", @@ -3174,7 +3253,7 @@ "pt": "Segundo plano e interativo", "ru": "Фоновый и интерактивный", "xloc": [ - "default.handlebars->25->321" + "default.handlebars->27->321" ] }, { @@ -3187,7 +3266,7 @@ "pt": "Segundo plano e interativo", "ru": "Фоновый и интерактивный", "xloc": [ - "default.handlebars->25->299" + "default.handlebars->27->299" ] }, { @@ -3200,8 +3279,8 @@ "pt": "Apenas em segundo plano", "ru": "Только фоновый", "xloc": [ - "default.handlebars->25->300", - "default.handlebars->25->322" + "default.handlebars->27->300", + "default.handlebars->27->322" ] }, { @@ -3223,12 +3302,13 @@ "de": "Sicherungscodes", "en": "Backup Codes", "es": "Codigos de Respaldo", + "fr": "Codes de récupération", "ja": "バックアップコード", "nl": "Back-up codes", "pt": "Códigos de backup", "ru": "Резервные коды", "xloc": [ - "default.handlebars->25->1355" + "default.handlebars->27->1360" ] }, { @@ -3239,7 +3319,7 @@ "nl": "Ongeldige handtening", "ru": "Плохой ключ", "xloc": [ - "default.handlebars->25->1415" + "default.handlebars->27->1420" ] }, { @@ -3250,7 +3330,7 @@ "nl": "Onjuist webcertificaat", "ru": "Плохой веб-сертификат", "xloc": [ - "default.handlebars->25->1414" + "default.handlebars->27->1419" ] }, { @@ -3262,7 +3342,7 @@ "pt": "Basco", "ru": "Баскский", "xloc": [ - "default.handlebars->25->756" + "default.handlebars->27->761" ] }, { @@ -3270,6 +3350,7 @@ "de": "Stapel-Erzeugung vieler Benutzerkonten", "en": "Batch create many user accounts", "es": "Crear Muchas Cuentas de Usuario (Batch)", + "fr": "Création par lots de comptes utilisateurs", "ja": "多数のユーザーアカウントをバッチ作成する", "nl": "Gebruikersaccounts aanmaken in batch", "pt": "Lote criar muitas contas de usuário", @@ -3282,36 +3363,39 @@ "cs": "běloruština", "de": "Belarussisch", "en": "Belarusian", + "fr": "Biélorusse", "ja": "ベラルーシ語", "nl": "Wit-Rusland", "pt": "Bielorrusso", "ru": "Белорусский", "xloc": [ - "default.handlebars->25->758" + "default.handlebars->27->763" ] }, { "cs": "bengálština", "de": "Bengali", "en": "Bengali", + "fr": "Bengalais", "ja": "ベンガル語", "nl": "Bengalees", "pt": "Bengali", "ru": "Бенгальский", "xloc": [ - "default.handlebars->25->759" + "default.handlebars->27->764" ] }, { "cs": "bosenština", "de": "Bosnisch", "en": "Bosnian", + "fr": "Bosniaque", "ja": "ボスニア語", "nl": "Bosnisch", "pt": "Bósnia", "ru": "Боснийский", "xloc": [ - "default.handlebars->25->760" + "default.handlebars->27->765" ] }, { @@ -3323,7 +3407,7 @@ "pt": "Breton", "ru": "Бретонский", "xloc": [ - "default.handlebars->25->761" + "default.handlebars->27->766" ] }, { @@ -3337,7 +3421,7 @@ "pt": "Broadcast", "ru": "Отправить сообщение", "xloc": [ - "default.handlebars->25->1296", + "default.handlebars->27->1301", "default.handlebars->container->column_l->p4->3->1->0->3->1" ] }, @@ -3352,7 +3436,7 @@ "pt": "Mensagem de transmissão", "ru": "Отправить сообщение", "xloc": [ - "default.handlebars->25->1253" + "default.handlebars->27->1258" ] }, { @@ -3360,36 +3444,39 @@ "de": "Eine Nachricht an alle verbundenen Benutzer senden.", "en": "Broadcast a message to all connected users.", "es": "Mensaje de Broadcast a todos los usuarios conectados.", + "fr": "Diffuser un message à tous les utilisateurs connectés", "ja": "接続されているすべてのユーザーにメッセージをブロードキャストします。", "nl": "Verzend een bericht naar alle verbonden gebruikers.", "pt": "Transmita uma mensagem para todos os usuários conectados.", "ru": "Отправить сообщение всем подключенным пользователям.", "xloc": [ - "default.handlebars->25->1252" + "default.handlebars->27->1257" ] }, { "cs": "bulharština", "de": "Bulgarisch", "en": "Bulgarian", + "fr": "Bulgare", "ja": "ブルガリア語", "nl": "Bulgaars", "pt": "Búlgaria", "ru": "Болгарский", "xloc": [ - "default.handlebars->25->757" + "default.handlebars->27->762" ] }, { "cs": "barmština", "de": "Birmanisch", "en": "Burmese", + "fr": "Birman", "ja": "ビルマ語", "nl": "Birmaans", "pt": "Birmanês", "ru": "Бирманский", "xloc": [ - "default.handlebars->25->762" + "default.handlebars->27->767" ] }, { @@ -3397,14 +3484,14 @@ "de": "CCM", "en": "CCM", "es": "CCM", + "fr": "CCM", "ja": "CCM", "nl": "CCM", "pt": "CCM", "ru": "CCM", - "fr": "CCM", "xloc": [ "default-mobile.handlebars->9->181", - "default.handlebars->25->470" + "default.handlebars->27->475" ] }, { @@ -3412,17 +3499,17 @@ "de": "CIRA", "en": "CIRA", "es": "CIRA", + "fr": "CIRA", "ja": "CIRA", "nl": "CIRA", "pt": "CIRA", "ru": "CIRA", - "fr": "CIRA", "xloc": [ "default-mobile.handlebars->9->122", - "default.handlebars->25->1061", - "default.handlebars->25->1066", - "default.handlebars->25->186", - "default.handlebars->25->373" + "default.handlebars->27->1066", + "default.handlebars->27->1071", + "default.handlebars->27->186", + "default.handlebars->27->373" ] }, { @@ -3430,12 +3517,13 @@ "de": "CIRA-Server", "en": "CIRA Server", "es": "Servidor CIRA", + "fr": "Serveur CIRA", "ja": "CIRAサーバー", "nl": "CIRA Server", "pt": "Servidor CIRA", "ru": "CIRA Сервер", "xloc": [ - "default.handlebars->25->1463" + "default.handlebars->27->1468" ] }, { @@ -3443,12 +3531,13 @@ "de": "CIRA-Serverbefehle", "en": "CIRA Server Commands", "es": "Comandos del servidor CIRA", + "fr": "Commandes du serveur CIRA", "ja": "CIRAサーバーコマンド", "nl": "CIRA Server opdrachten", "pt": "Comandos do servidor CIRA", "ru": "CIRA Сервер команды", "xloc": [ - "default.handlebars->25->1464" + "default.handlebars->27->1469" ] }, { @@ -3459,7 +3548,7 @@ "nl": "CPU gebruik", "ru": "Загрузка CPU", "xloc": [ - "default.handlebars->25->1429" + "default.handlebars->27->1434" ] }, { @@ -3467,12 +3556,13 @@ "de": "CPU-Auslastung der vergangenen 15 Minuten", "en": "CPU load in the last 15 minutes", "es": "Carga en el CPU en los ultimos 15 minutos", + "fr": "Charge CPU dans les 15 dernières minutes", "ja": "過去15分間のCPU負荷", "nl": "CPU-belasting in de afgelopen 15 minuten", "pt": "Carga da CPU nos últimos 15 minutos", "ru": "Загрузка CPU за последние 15 минут", "xloc": [ - "default.handlebars->25->1432" + "default.handlebars->27->1437" ] }, { @@ -3480,12 +3570,13 @@ "de": "CPU-Auslastung der vergangenen 5 Minuten", "en": "CPU load in the last 5 minutes", "es": "Carga en el CPU en los ultimos 5 minutos", + "fr": "Charge CPU dans les 5 dernières minutes", "ja": "過去5分間のCPU負荷", "nl": "CPU-belasting in de afgelopen 5 minuten", "pt": "Carga da CPU nos últimos 5 minutos", "ru": "Загрузка CPU за последние 5 минут", "xloc": [ - "default.handlebars->25->1431" + "default.handlebars->27->1436" ] }, { @@ -3493,12 +3584,13 @@ "de": "CPU-Auslastung der vergangenen Minute", "en": "CPU load in the last minute", "es": "Carga en el CPU en el ultimo minuto", + "fr": "Charge CPU dans la dernière minute", "ja": "直前のCPU負荷", "nl": "CPU-belasting in de laatste minuut", "pt": "Carga da CPU no último minuto", "ru": "Загрузка CPU за последнюю минуту", "xloc": [ - "default.handlebars->25->1430" + "default.handlebars->27->1435" ] }, { @@ -3506,14 +3598,14 @@ "de": "CR+LF", "en": "CR+LF", "es": "CR+LF", + "fr": "CR+LF", "ja": "CR + LF", "nl": "CR+LF", "pt": "CR + LF", "ru": "CR+LF", - "fr": "CR+LF", "xloc": [ - "default.handlebars->25->645", - "default.handlebars->25->654", + "default.handlebars->27->650", + "default.handlebars->27->659", "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons" ] }, @@ -3522,14 +3614,15 @@ "de": "CSV-Format", "en": "CSV Format", "es": "Formato CSV", + "fr": "Format CSV", "ja": "CSV形式", "nl": "CSV Formaat", "pt": "Formato CSV", "ru": "Формат CSV", "xloc": [ - "default.handlebars->25->1205", - "default.handlebars->25->1244", - "default.handlebars->25->400" + "default.handlebars->27->1210", + "default.handlebars->27->1249", + "default.handlebars->27->400" ] }, { @@ -3543,7 +3636,7 @@ "pt": "Erro de chamada", "ru": "Ошибка вызова", "xloc": [ - "default.handlebars->25->1476" + "default.handlebars->27->1481" ] }, { @@ -3559,7 +3652,7 @@ "xloc": [ "default-mobile.handlebars->9->41", "default-mobile.handlebars->dialog->idx_dlgButtonBar", - "default.handlebars->25->981", + "default.handlebars->27->986", "default.handlebars->container->dialog->idx_dlgButtonBar", "login-mobile.handlebars->dialog->idx_dlgButtonBar", "login.handlebars->dialog->idx_dlgButtonBar", @@ -3572,12 +3665,13 @@ "de": "Kapazität / Geschwindigkeit", "en": "Capacity / Speed", "es": "Capacidad / Velocidad", + "fr": "Capcité / Vitesse", "ja": "容量/速度", "nl": "Capaciteit / snelheid", "pt": "Capacidade / velocidade", "ru": "Объем / Скорость", "xloc": [ - "default.handlebars->25->76" + "default.handlebars->27->76" ] }, { @@ -3590,7 +3684,7 @@ "pt": "Catalão", "ru": "Каталонский", "xloc": [ - "default.handlebars->25->763" + "default.handlebars->27->768" ] }, { @@ -3598,13 +3692,13 @@ "de": "Karte hier zentrieren", "en": "Center map here", "es": "Centrar mapa aqui", - "fr": "Centré la carte ici", + "fr": "Centrer la carte ici", "ja": "センターマップはこちら", "nl": "Centreer kaart hier", "pt": "Centralize o mapa aqui", "ru": "Установить центр карты здесь", "xloc": [ - "default.handlebars->25->436" + "default.handlebars->27->441" ] }, { @@ -3617,7 +3711,7 @@ "pt": "Chamorro", "ru": "Чаморро", "xloc": [ - "default.handlebars->25->764" + "default.handlebars->27->769" ] }, { @@ -3625,12 +3719,13 @@ "de": "E-Mail für {0} ändern", "en": "Change Email for {0}", "es": "Cambiar dirección de correo para {0}", + "fr": "Changer l'email pour {0]", "ja": "{0}のメールを変更", "nl": "Verander e-mail voor {0}", "pt": "Alterar email para {0}", "ru": "Смена email для {0}", "xloc": [ - "default.handlebars->25->1368" + "default.handlebars->27->1373" ] }, { @@ -3638,14 +3733,15 @@ "de": "Gruppe wechseln", "en": "Change Group", "es": "Cambiar Grupo", + "fr": "Changer de groupe", "ja": "グループを変更", "nl": "verander groep", "pt": "Alterar grupo", "ru": "Смена группы", "xloc": [ - "default.handlebars->25->511", - "default.handlebars->25->575", - "default.handlebars->25->576" + "default.handlebars->27->516", + "default.handlebars->27->580", + "default.handlebars->27->581" ] }, { @@ -3653,14 +3749,15 @@ "de": "Passwort ändern", "en": "Change Password", "es": "Cambiar contraseña", + "fr": "Changer le mot de passe", "ja": "パスワードを変更する", "nl": "Verander wachtwoord", "pt": "Mudar senha", "ru": "Смена пароля", "xloc": [ "default-mobile.handlebars->9->49", - "default.handlebars->25->1363", - "default.handlebars->25->957" + "default.handlebars->27->1368", + "default.handlebars->27->962" ] }, { @@ -3668,12 +3765,13 @@ "de": "Passwort für {0} ändern", "en": "Change Password for {0}", "es": "Cambiar contraseña para {0}", + "fr": "Changer le mot de passe pour {0}", "ja": "{0}のパスワードを変更", "nl": "Verander wachtwoord voor {0}", "pt": "Alterar senha para {0}", "ru": "Смена пароля для {0}", "xloc": [ - "default.handlebars->25->1375" + "default.handlebars->27->1380" ] }, { @@ -3681,6 +3779,7 @@ "de": "E-Mail-Adresse ändern", "en": "Change email address", "es": "Cambiar dirección de correo", + "fr": "Modifier l'adresse mail", "ja": "メールアドレスを変更する", "nl": "Verander e-mailadres", "pt": "Mude o endereço de email", @@ -3695,6 +3794,7 @@ "de": "Passwort ändern", "en": "Change password", "es": "Cambiar contraseña", + "fr": "Changer le mot de passe", "ja": "パスワードを変更する", "nl": "Verander wachtwoord", "pt": "Mudar senha", @@ -3722,6 +3822,7 @@ "de": "Den Energiezustand der entfernten Maschine ändern", "en": "Change the power state of the remote machine", "es": "Cambiar el estado de energía de la máquina remota", + "fr": "Allumer/Éteindre la machine distante", "ja": "リモートマシンの電源状態を変更する", "nl": "Wijzig de stroomstatus van het externe apparaat", "pt": "Alterar o estado de energia da máquina remota", @@ -3735,12 +3836,13 @@ "de": "Ändern Sie hier Ihre Konto-E-Mail-Adresse.", "en": "Change your account email address here.", "es": "Cambie la dirección de correo electrónico de su cuenta aquí.", + "fr": "Changer l'adresse email de votre compte ici.", "ja": "ここでアカウントのメールアドレスを変更します。", "nl": "Wijzig hier het e-mailadres van uw account.", "pt": "Mude o endereço de e-mail da sua conta aqui.", "ru": "Измените адрес электронной почты вашей учетной записи здесь.", "xloc": [ - "default.handlebars->25->944" + "default.handlebars->27->949" ] }, { @@ -3748,12 +3850,13 @@ "de": "Ändern Sie Ihr Kontopasswort, indem Sie das alte und das neue Passwort zweimal in die Felder unten eingeben.", "en": "Change your account password by entering the old password and new password twice in the boxes below.", "es": "Cambie la contraseña de su cuenta ingresando la contraseña anterior y la contraseña nueva dos veces en los sigueintes cuadros.", + "fr": "Changer votre mot de passe en entrant l'actuel puis deux fois le nouveau.", "ja": "下のボックスに古いパスワードと新しいパスワードを2回入力して、アカウントのパスワードを変更します。", "nl": "Wijzig uw wachtwoord door het invoeren van het oude en het nieuwe wachtwoord twee keer in de vakken hieronder.", "pt": "Altere a senha da sua conta digitando a senha antiga e a nova senha duas vezes nas caixas abaixo.", "ru": "Измените пароль своей учетной записи, введя старый пароль и дважды новый пароль в поля ниже.", "xloc": [ - "default.handlebars->25->950" + "default.handlebars->27->955" ] }, { @@ -3761,12 +3864,13 @@ "de": "Das Ändern der Sprache erfordert eine Aktualisierung der Seite.", "en": "Changing the language will require a refresh of the page.", "es": "Cambiar el idioma requerirá una actualización de la página.", + "fr": "Changer de langue requiert de rafraîchir la page.", "ja": "言語を変更するには、ページを更新する必要があります。", "nl": "Als u de taal wilt wijzigen, moet de pagina worden ververst.", "pt": "Alterar o idioma exigirá uma atualização da página.", "ru": "Изменение языка потребует перезагрузить страницу.", "xloc": [ - "default.handlebars->25->929" + "default.handlebars->27->934" ] }, { @@ -3774,12 +3878,13 @@ "de": "Chat", "en": "Chat", "es": "Chat", + "fr": "Discussion instantanée", "ja": "チャット", "nl": "Chat", "pt": "Chat", "ru": "Чат", "xloc": [ - "default.handlebars->25->1222" + "default.handlebars->27->1227" ] }, { @@ -3787,6 +3892,7 @@ "de": "Chat & Benachrichtigen", "en": "Chat & Notify", "es": "Chatear y Notificar", + "fr": "Discussion instantanée et notification", "ja": "チャットと通知", "nl": "Chat & Melden", "pt": "Chat & Notificação", @@ -3794,8 +3900,8 @@ "xloc": [ "default-mobile.handlebars->9->307", "default-mobile.handlebars->9->325", - "default.handlebars->25->1116", - "default.handlebars->25->1139" + "default.handlebars->27->1121", + "default.handlebars->27->1144" ] }, { @@ -3803,12 +3909,13 @@ "de": "Tschetschenisch", "en": "Chechen", "es": "Checheno", + "fr": "Tchétchène", "ja": "チェチェン", "nl": "Tsjetsjeense", "pt": "Checheno", "ru": "Чеченский", "xloc": [ - "default.handlebars->25->765" + "default.handlebars->27->770" ] }, { @@ -3816,12 +3923,13 @@ "de": "Haken setzen und OK klicken, um das Fehlerprotokoll zu löschen.", "en": "Check and click OK to clear error log.", "es": "Verifique y haga clic en Aceptar para borrar el registro de errores.", + "fr": "Cocher la case et cliquer sur OK pour nettoyer les journaux d'erreurs", "ja": "チェックして[OK]をクリックし、エラーログをクリアします。", "nl": "Controleer en klik op OK om het foutenlogboek te wissen.", "pt": "Verifique e clique em OK para limpar o log de erros.", "ru": "Установите флажок и нажмите ОК для очищения журнала ошибок.", "xloc": [ - "default.handlebars->25->119" + "default.handlebars->27->119" ] }, { @@ -3829,12 +3937,13 @@ "de": "Haken setzen und OK klicken, um die Server-Selbstaktualisierung zu starten.", "en": "Check and click OK to start server self-update.", "es": "Marque y haga clic en Aceptar para iniciar la actualización automática del servidor.", + "fr": "Cocher la case et cliquer sur OK pour activer les mises à jour automatiques du serveur.", "ja": "チェックして[OK]をクリックし、サーバーの自己更新を開始します。", "nl": "Controleer en klik op OK om de serverupdate te starten.", "pt": "Marque e clique em OK para iniciar a atualização automática do servidor.", "ru": "Установите флажок и нажмите ОК для начала самообновления.", "xloc": [ - "default.handlebars->25->114" + "default.handlebars->27->114" ] }, { @@ -3842,6 +3951,7 @@ "de": "Server auf Aktualisierung überprüfen", "en": "Check server version", "es": "Verifique la versión del servidor", + "fr": "Vérifier la version de meshcentral", "ja": "サーバーのバージョンを確認する", "nl": "Controleer server versie", "pt": "Verifique a versão do servidor", @@ -3855,13 +3965,14 @@ "de": "Überprüfen...", "en": "Checking...", "es": "Comprobando...", + "fr": "Vérification ...", "ja": "確認しています...", "nl": "Controleren...", "pt": "Verificando ...", "ru": "Проверка...", "xloc": [ - "default.handlebars->25->1469", - "default.handlebars->25->731" + "default.handlebars->27->1474", + "default.handlebars->27->736" ] }, { @@ -3869,60 +3980,65 @@ "de": "Chinesisch", "en": "Chinese", "es": "Chino", + "fr": "Chinois", "ja": "中国語", "nl": "Chinees", "pt": "Chinês", "ru": "Китайский", "xloc": [ - "default.handlebars->25->766" + "default.handlebars->27->771" ] }, { "cs": "čínština (Hong Kong)", "de": "Chinesisch (Hong Kong)", "en": "Chinese (Hong Kong)", + "fr": "Chinois (Hong Kong)", "ja": "中国語(香港)", "nl": "Chinees (Hong Kong)", "pt": "Chinês (Hong Kong)", "ru": "Китайский (Гонконг)", "xloc": [ - "default.handlebars->25->767" + "default.handlebars->27->772" ] }, { "cs": "čínština (PRC)", "de": "Chinesisch (VR China)", "en": "Chinese (PRC)", + "fr": "Chinois (continental)", "ja": "中国語(PRC)", "nl": "Chinees (PRC)", "pt": "Chinês (PRC)", "ru": "Китайский (КНР)", "xloc": [ - "default.handlebars->25->768" + "default.handlebars->27->773" ] }, { "cs": "čínština (Singapur)", "de": "Chinesisch (Singapur)", "en": "Chinese (Singapore)", + "fr": "Chinois (Singapore)", "ja": "中国語(シンガポール)", "nl": "Chinees (Singapore)", "pt": "Chinês (Singapura)", "ru": "Китайский (Сингапур)", "xloc": [ - "default.handlebars->25->769" + "default.handlebars->27->774" ] }, { "cs": "čínština (Taiwan)", "de": "Chinesisch (Taiwan)", "en": "Chinese (Taiwan)", + "fr": "Chinois (Taiwan)", "ja": "中国語(台湾)", "nl": "Chinees (Taiwan)", "pt": "Chinês (Taiwan)", "ru": "Китайский (Тайвань)", "xloc": [ - "default.handlebars->25->770" + "default.handlebars->27->775" ] }, { @@ -3930,14 +4046,14 @@ "de": "ChromeOS", "en": "ChromeOS", "es": "ChromeOS", + "fr": "ChromeOS", "ja": "ChromeOS", "nl": "ChromeOS", "pt": "ChromeOS", "ru": "ChromeOS", - "fr": "ChromeOS", "xloc": [ "default-mobile.handlebars->9->160", - "default.handlebars->25->30" + "default.handlebars->27->30" ] }, { @@ -3949,7 +4065,7 @@ "pt": "Chuvash", "ru": "Чувашский", "xloc": [ - "default.handlebars->25->771" + "default.handlebars->27->776" ] }, { @@ -3957,12 +4073,13 @@ "de": "CIRA bereinigen", "en": "Cleanup CIRA", "es": "Limpiar CIRA", + "fr": "Nettoyage CIRA", "ja": "CIRAのクリーンアップ", "nl": "Opruimen CIRA", "pt": "Limpeza CIRA", "ru": "Очистка CIRA", "xloc": [ - "default.handlebars->25->264" + "default.handlebars->27->264" ] }, { @@ -3970,6 +4087,7 @@ "de": "Leeren", "en": "Clear", "es": "Borrar", + "fr": "Nettoyer", "ja": "クリア", "nl": "Wissen", "pt": "Limpo", @@ -3981,11 +4099,11 @@ "default-mobile.handlebars->9->268", "default-mobile.handlebars->9->28", "default-mobile.handlebars->9->91", - "default.handlebars->25->1199", - "default.handlebars->25->680", - "default.handlebars->25->682", - "default.handlebars->25->684", - "default.handlebars->25->686", + "default.handlebars->27->1204", + "default.handlebars->27->685", + "default.handlebars->27->687", + "default.handlebars->27->689", + "default.handlebars->27->691", "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7", "default.handlebars->container->column_l->p41->3->1", "messenger.handlebars->xbottom" @@ -3996,12 +4114,13 @@ "de": "Token löschen", "en": "Clear Tokens", "es": "Borrar Tokens", + "fr": "Nettoyer les jetons", "ja": "クリアトークン", "nl": "Wis Tokens", "pt": "Limpar Tokens", "ru": "Очистить токены", "xloc": [ - "default.handlebars->25->136" + "default.handlebars->27->136" ] }, { @@ -4009,12 +4128,13 @@ "de": "Den Kern löschen", "en": "Clear the core", "es": "Inicializar", + "fr": "Nettoyer le coeur", "ja": "コアをクリアする", "nl": "Maak de kern leeg", "pt": "Limpe o núcleo", "ru": "Очистить ядро", "xloc": [ - "default.handlebars->25->712" + "default.handlebars->27->717" ] }, { @@ -4027,7 +4147,7 @@ "pt": "Limpe o segredo do aplicativo e tente novamente. Você tem apenas alguns minutos para inserir o código correto.", "ru": "Удалите ключ из приложения и попробуйте еще раз. У вас есть всего несколько минут, чтобы ввести правильный код.", "xloc": [ - "default.handlebars->25->126" + "default.handlebars->27->126" ] }, { @@ -4035,12 +4155,13 @@ "de": "Hier klicken, um den serverseitigen Gerätenamen zu bearbeiten", "en": "Click here to edit the server-side device name", "es": "Haga clic aquí para editar el nombre del dispositivo del lado del servidor", + "fr": "Cliquez ici pour modifier le nom de l'appareil sur le serveur", "ja": "サーバー側のデバイス名を編集するにはここをクリックしてください", "nl": "Klik hier om de apparaatnaam van de server te bewerken", "pt": "clique aqui para criar um grupo de dispositivos", "ru": "Для изменения имени устройства на сервере нажмите сюда", "xloc": [ - "default.handlebars->25->450" + "default.handlebars->27->455" ] }, { @@ -4048,13 +4169,14 @@ "de": "Auf OK klicken, um eine Bestätigungsmail an folgende Adresse zu senden:", "en": "Click ok to send a verification mail to:", "es": "Haga clic en Aceptar para enviar un correo de verificación a:", + "fr": "Envoyer un mail de confirmation à :", "ja": "[OK]をクリックして確認メールを送信します:", "nl": "Klik op OK om een verificatiebericht te sturen naar:", "pt": "Clique em ok para enviar um email de verificação para:", "ru": "Нажмите ОК для отправки подтверждения по электронной почте:", "xloc": [ "default-mobile.handlebars->9->34", - "default.handlebars->25->941" + "default.handlebars->27->946" ] }, { @@ -4062,6 +4184,7 @@ "de": "Hier klicken, um aktuelle Benachrichtigungen anzuzeigen", "en": "Click to view current notifications", "es": "Haga clic para ver las notificaciones actuales", + "fr": "Voir les dernières notifications", "ja": "クリックして現在の通知を表示します", "nl": "Klik om de huidige meldingen te bekijken", "pt": "Clique para visualizar as notificações atuais", @@ -4075,13 +4198,14 @@ "de": "Client Initiated Remote Access", "en": "Client Initiated Remote Access", "es": "Acceso Remoto Iniciado por el Cliente (CIRA)", + "fr": "Accès distant démaré", "ja": "クライアントが開始したリモートアクセス", "nl": "Gebruiker geïnitieerde externe toegang", "pt": "Acesso remoto iniciado pelo cliente", "ru": "Клиент инициировал удаленный доступ", "xloc": [ - "default.handlebars->25->1060", - "default.handlebars->25->1065" + "default.handlebars->27->1065", + "default.handlebars->27->1070" ] }, { @@ -4089,6 +4213,7 @@ "de": "Zwischenablage", "en": "Clipboard", "es": "Portapapeles", + "fr": "Presse-papiers", "ja": "クリップボード", "nl": "Klembord", "pt": "Área de transferência", @@ -4102,15 +4227,16 @@ "de": "Schließen", "en": "Close", "es": "Cerrar", + "fr": "Fermer", "ja": "閉じる", "nl": "Sluiten", "pt": "Fechar", "ru": "Закрыть", "xloc": [ "default-mobile.handlebars->9->26", - "default.handlebars->25->134", - "default.handlebars->25->142", - "default.handlebars->25->638" + "default.handlebars->27->134", + "default.handlebars->27->142", + "default.handlebars->27->643" ] }, { @@ -4118,6 +4244,7 @@ "de": "Spalten", "en": "Columns", "es": "Columnas", + "fr": "Colonnes", "ja": "列", "nl": "kolommen", "pt": "Colunas", @@ -4135,8 +4262,8 @@ "nl": "Gemeenschappelijke apparaatgroepen", "ru": "Общие группы устройств", "xloc": [ - "default.handlebars->25->1304", - "default.handlebars->25->1378" + "default.handlebars->27->1309", + "default.handlebars->27->1383" ] }, { @@ -4150,7 +4277,7 @@ "ru": "Подтвердить {0} из {1} записей в это расположение?", "xloc": [ "default-mobile.handlebars->9->86", - "default.handlebars->25->1194" + "default.handlebars->27->1199" ] }, { @@ -4158,6 +4285,7 @@ "de": "Bestätigen", "en": "Confirm", "es": "Confirme", + "fr": "Confirmer", "ja": "確認する", "nl": "Bevestig", "pt": "Confirme", @@ -4165,11 +4293,11 @@ "xloc": [ "default-mobile.handlebars->9->220", "default-mobile.handlebars->9->287", - "default.handlebars->25->1074", - "default.handlebars->25->1319", - "default.handlebars->25->397", - "default.handlebars->25->570", - "default.handlebars->25->579" + "default.handlebars->27->1079", + "default.handlebars->27->1324", + "default.handlebars->27->397", + "default.handlebars->27->575", + "default.handlebars->27->584" ] }, { @@ -4183,7 +4311,7 @@ "ru": "Подтвердить копирование 1 записи в это расположение?", "xloc": [ "default-mobile.handlebars->9->257", - "default.handlebars->25->675" + "default.handlebars->27->680" ] }, { @@ -4197,7 +4325,7 @@ "ru": "Подтвердить копирование {0} записей в это расположение?", "xloc": [ "default-mobile.handlebars->9->256", - "default.handlebars->25->674" + "default.handlebars->27->679" ] }, { @@ -4205,12 +4333,13 @@ "de": "Bestätigen Sie das Löschen der ausgewählten Geräte?", "en": "Confirm delete selected devices(s)?", "es": "¿Eliminar dispositivos seleccionados?", + "fr": "Supprimer les appareils sélectionnés ?", "ja": "選択したデバイスの削除を確認しますか?", "nl": "Bevestig geselecteerde apparaten verwijderen?", "pt": "Confirmar a exclusão dos dispositivos selecionados?", "ru": "Подтвердить удаление выбранных устройств?", "xloc": [ - "default.handlebars->25->396" + "default.handlebars->27->396" ] }, { @@ -4224,7 +4353,7 @@ "ru": "Подтвердить перемещение 1 записи в это расположение?", "xloc": [ "default-mobile.handlebars->9->259", - "default.handlebars->25->677" + "default.handlebars->27->682" ] }, { @@ -4238,7 +4367,7 @@ "ru": "Подтвердить перемещение {0} записей в это расположение?", "xloc": [ "default-mobile.handlebars->9->258", - "default.handlebars->25->676" + "default.handlebars->27->681" ] }, { @@ -4246,11 +4375,12 @@ "de": "Bestätigen Sie das Überschreiben?", "en": "Confirm overwrite?", "es": "¿Sobrescribir?", + "fr": "Ecraser ?", "ja": "上書きを確認しますか?", "nl": "Bevestig overschrijven?", "ru": "Подтвердить перезапись?", "xloc": [ - "default.handlebars->25->1193" + "default.handlebars->27->1198" ] }, { @@ -4258,13 +4388,14 @@ "de": "Bestätigen Sie das Entfernen der Zweifaktor-Anmeldung mittels Authentifikator-Applikation?", "en": "Confirm removal of authenticator application 2-step login?", "es": "¿Eliminar el inicio de sesión usando autenticación de 2 pasos?", + "fr": "Confirmer la suppression de l'authentification à double facteur?", "ja": "認証アプリケーションの削除2段階ログインを確認しますか?", "nl": "Bevestig de verwijdering van de Tweestapsverificatie applicatie?", "pt": "Confirmar remoção do login do aplicativo autenticador em duas etapas?", "ru": "Подтвердить удаление приложения аутентификации двухэтапного входа в систему?", "xloc": [ "default-mobile.handlebars->9->33", - "default.handlebars->25->721" + "default.handlebars->27->726" ] }, { @@ -4275,8 +4406,8 @@ "nl": "Bevestig het verwijderen van de apparaatgroep {0}?", "ru": "Подтвердить удаление группы устройств {0}?", "xloc": [ - "default.handlebars->25->1314", - "default.handlebars->25->1398" + "default.handlebars->27->1319", + "default.handlebars->27->1403" ] }, { @@ -4287,7 +4418,7 @@ "nl": "Bevestig het verwijderen van de groep {0}?", "ru": "Подтвердить удаление группы {0}?", "xloc": [ - "default.handlebars->25->1394" + "default.handlebars->27->1399" ] }, { @@ -4295,14 +4426,15 @@ "de": "Bestätigen Sie das Entfernen des Benutzers {0}?", "en": "Confirm removal of user {0}?", "es": "¿Eliminae el usuario {0}?", + "fr": "Supprimer l'utilisateur {0} ?", "ja": "ユーザー{0}の削除を確認しますか?", "nl": "Bevestig de verwijdering van gebruiker {0}?", "pt": "Confirmar remoção do usuário {0}?", "ru": "Подтвердить удаление пользователя {0}?", "xloc": [ "default-mobile.handlebars->9->333", - "default.handlebars->25->1148", - "default.handlebars->25->1322" + "default.handlebars->27->1153", + "default.handlebars->27->1327" ] }, { @@ -4310,6 +4442,7 @@ "de": "Verbinden", "en": "Connect", "es": "Conectar", + "fr": "Se connecter", "ja": "つなぐ", "nl": "Verbinden", "pt": "Conectar", @@ -4318,8 +4451,8 @@ "default-mobile.handlebars->9->236", "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->25->1012", - "default.handlebars->25->657", + "default.handlebars->27->1017", + "default.handlebars->27->662", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1span", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2span", "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3", @@ -4331,12 +4464,13 @@ "de": "Alle verbinden", "en": "Connect All", "es": "Conectar con Todos", + "fr": "Se connecter à tous", "ja": "すべて接続", "nl": "Alles verbinden", "pt": "Conectar todos", "ru": "Подключиться ко всем", "xloc": [ - "default.handlebars->25->217", + "default.handlebars->27->217", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->kvmListToolbar" ] }, @@ -4345,13 +4479,14 @@ "de": "Mit Server verbinden", "en": "Connect to server", "es": "Conectar al Servidor", + "fr": "Se connecter au serveur", "ja": "サーバーに接続する", "nl": "Verbinden met de server", "pt": "Conecte-se ao servidor", "ru": "Подключиться к серверу", "xloc": [ - "default.handlebars->25->1064", - "default.handlebars->25->1068" + "default.handlebars->27->1069", + "default.handlebars->27->1073" ] }, { @@ -4372,6 +4507,7 @@ "de": "Verbinden per Intel-AMT-Hardware-KVM", "en": "Connect using Intel AMT hardware KVM", "es": "Conectar usando el hardware Intel AMT KVM", + "fr": "Se connecter en utilisant le KVM d'Intel AMT", "ja": "Intel AMTハードウェアKVMを使用して接続する", "nl": "Maak verbinding met Intel AMT hardware KVM", "ru": "Подключение с использованием аппаратного обеспечения Intel AMT KVM", @@ -4385,13 +4521,14 @@ "de": "Verbunden", "en": "Connected", "es": "Conectado", + "fr": "Connecté", "ja": "接続済み", "nl": "Verbonden", "pt": "Conectado", "ru": "Подключено", "xloc": [ "default-mobile.handlebars->9->4", - "default.handlebars->25->11", + "default.handlebars->27->11", "xterm.handlebars->9->4" ] }, @@ -4403,7 +4540,7 @@ "nl": "Verbonden Intel® AMT", "ru": "Подключено Intel® AMT", "xloc": [ - "default.handlebars->25->1420" + "default.handlebars->27->1425" ] }, { @@ -4414,7 +4551,7 @@ "nl": "Verbonden gebruikers", "ru": "Подключенные пользователи", "xloc": [ - "default.handlebars->25->1425" + "default.handlebars->27->1430" ] }, { @@ -4422,6 +4559,7 @@ "de": "Verbunden.", "en": "Connected.", "es": "Conectado.", + "fr": "Connecté.", "ja": "接続済み。", "nl": "Verbonden.", "pt": "Conectado.", @@ -4435,6 +4573,7 @@ "de": "Verbinden...", "en": "Connecting...", "es": "Conectando....", + "fr": "En cours de connexion ...", "ja": "接続しています...", "nl": "Verbinden...", "pt": "Conectando...", @@ -4443,11 +4582,11 @@ "default-mobile.handlebars->9->2", "default-mobile.handlebars->9->272", "default-mobile.handlebars->9->6", - "default.handlebars->25->211", - "default.handlebars->25->214", - "default.handlebars->25->220", - "default.handlebars->25->698", - "default.handlebars->25->9", + "default.handlebars->27->211", + "default.handlebars->27->214", + "default.handlebars->27->220", + "default.handlebars->27->703", + "default.handlebars->27->9", "xterm.handlebars->9->2" ] }, @@ -4456,12 +4595,13 @@ "de": "Verbindungsanzahl", "en": "Connection Count", "es": "Conteo de Conexion.", + "fr": "Nombre de connexions", "ja": "接続数", "nl": "Aantal verbindingen", "pt": "Contagem de conexões", "ru": "Подключений ", "xloc": [ - "default.handlebars->25->1436" + "default.handlebars->27->1441" ] }, { @@ -4469,12 +4609,13 @@ "de": "Verbindungsweiterleitung", "en": "Connection Relay", "es": "Relay de Conexion", + "fr": "Relais de connexion", "ja": "接続リレー", "nl": "Verbindings Relay", "pt": "Encaminhador de conexão", "ru": "Ретранслятор подключения", "xloc": [ - "default.handlebars->25->1462" + "default.handlebars->27->1467" ] }, { @@ -4482,6 +4623,7 @@ "de": "Verbindung geschlossen.", "en": "Connection closed.", "es": "Conexión cerrada.", + "fr": "Connection terminée.", "ja": "接続が閉じられました。", "nl": "Verbinding gesloten.", "pt": "Conexão fechada.", @@ -4495,6 +4637,7 @@ "de": "Verbindungen", "en": "Connections", "es": "Conexiones", + "fr": "Connections", "ja": "接続", "nl": "Verbindingen", "pt": "Conexões", @@ -4508,15 +4651,16 @@ "de": "Konnektivität", "en": "Connectivity", "es": "Conectividad", + "fr": "Connectivité", "ja": "接続性", "nl": "connectiviteit", "pt": "Conectividade", "ru": "Связь", "xloc": [ "default-mobile.handlebars->9->195", - "default.handlebars->25->1164", - "default.handlebars->25->202", - "default.handlebars->25->502", + "default.handlebars->27->1169", + "default.handlebars->27->202", + "default.handlebars->27->507", "default.handlebars->container->column_l->p21->3->1->meshConnChartDiv->1" ] }, @@ -4545,7 +4689,7 @@ "pt": "Console - ", "ru": "Консоль - ", "xloc": [ - "default.handlebars->25->451" + "default.handlebars->27->456" ] }, { @@ -4558,7 +4702,7 @@ "pt": "Codificador de cookies", "ru": "Cookie-кодировщик", "xloc": [ - "default.handlebars->25->1450" + "default.handlebars->27->1455" ] }, { @@ -4566,6 +4710,7 @@ "de": "Kopie", "en": "Copy", "es": "Copiar", + "fr": "Copier", "ja": "コピー", "nl": "Kopiëren", "pt": "Copiar", @@ -4582,13 +4727,14 @@ "de": "MAC-Adresse in Zwischenablage kopieren", "en": "Copy MAC address to clipboard", "es": "Copiar Direccion MAC al portapapeles", + "fr": "Copier l'adresse MAC dans le presse-papiers", "ja": "MACアドレスをクリップボードにコピー", "nl": "Kopieer MAC adres naar het klembord", "pt": "Copiar endereço MAC para a área de transferência", "ru": "Скопировать МАС адрес в буфер обмена", "xloc": [ - "default.handlebars->25->107", - "default.handlebars->25->99" + "default.handlebars->27->107", + "default.handlebars->27->99" ] }, { @@ -4596,12 +4742,13 @@ "de": "MacOS-Agenten-URL in Zwischenablage kopieren", "en": "Copy MacOS agent URL to clipboard", "es": "Copiar URL del Agente para MacOS al portapapeles", + "fr": "Copier l'URL de l'agent MacOS dans le presse-papiers", "ja": "MacOSエージェントのURLをクリップボードにコピーします", "nl": "Kopieer MacOS agent link naar het klembord", "pt": "Copiar o URL do agente MacOS para a área de transferência", "ru": "Скопировать ссылку MacOS agent в буфер обмена", "xloc": [ - "default.handlebars->25->337" + "default.handlebars->27->337" ] }, { @@ -4609,16 +4756,17 @@ "de": "Adresse in Zwischenablage kopieren", "en": "Copy address to clipboard", "es": "Copiar direccion al portapapeles", + "fr": "Copier l'adresse dans la presse-papiers", "ja": "クリップボードにアドレスをコピー", "nl": "Kopieer adres naar het klembord", "pt": "Copiar endereço para a área de transferência", "ru": "Скопировать адрес в буфер обмена", "xloc": [ - "default.handlebars->25->101", - "default.handlebars->25->103", - "default.handlebars->25->105", - "default.handlebars->25->90", - "default.handlebars->25->92" + "default.handlebars->27->101", + "default.handlebars->27->103", + "default.handlebars->27->105", + "default.handlebars->27->90", + "default.handlebars->27->92" ] }, { @@ -4626,12 +4774,13 @@ "de": "Link in Zwischenablage kopieren", "en": "Copy link to clipboard", "es": "Copiar enlance al portapapeles", + "fr": "Copier le lien dans le presse-papiers", "ja": "リンクをクリップボードにコピー", "nl": "Kopieer link naar het klembord", "pt": "Copiar link para a área de transferência", "ru": "Скопировать ссылку в буфер обмена", "xloc": [ - "default.handlebars->25->312" + "default.handlebars->27->312" ] }, { @@ -4639,12 +4788,13 @@ "de": "Name in Zwischenablage kopieren", "en": "Copy name to clipboard", "es": "Copiar nombre al portapapeles", + "fr": "Copier le nom dans le presse-papiers", "ja": "名前をクリップボードにコピー", "nl": "Kopieer de naam naar het klembord", "pt": "Copiar nome para a área de transferência", "ru": "Скопировать имя в буфер обмена", "xloc": [ - "default.handlebars->25->97" + "default.handlebars->27->97" ] }, { @@ -4652,6 +4802,7 @@ "de": "In Zwischenablage kopieren", "en": "Copy to clipboard", "es": "Copiar al portapapeles", + "fr": "Copier dans le presse-papiers", "ja": "クリップボードにコピー", "nl": "Kopieer naar het klembord", "pt": "Copiar para área de transferência", @@ -4666,12 +4817,13 @@ "de": "Gültige Codes in Zwischenablage kopieren", "en": "Copy valid codes to clipboard", "es": "Copiar codigos validos al portapapeles", + "fr": "Copier les codes dans le presse-papiers", "ja": "有効なコードをクリップボードにコピー", "nl": "Kopieer de geldige code's naar het klembord", "pt": "Copiar códigos válidos para a área de transferência", "ru": "Скопировать действительные коды в буфер обмена", "xloc": [ - "default.handlebars->25->137" + "default.handlebars->27->137" ] }, { @@ -4689,6 +4841,7 @@ { "cs": "Autorská práva © 1998-2011 The OpenSSL Project. Všechna práva vyhrazena.", "en": "Copyright (c) 1998-2011 The OpenSSL Project. All rights reserved.", + "fr": "Copyright (c) 1998-2011 The OpenSSL Project. Tous droits réservés.", "ja": "Copyright(c)1998-2011 The OpenSSL Project。全著作権所有。", "nl": "Copyright (c) 1998-2011 The OpenSSL Project. Alle rechten voorbehouden.", "pt": "Copyright (c) 1998-2011 O Projeto OpenSSL.Todos os direitos reservados.", @@ -4701,6 +4854,7 @@ { "cs": "Autorská práva © 2009, CodePlex Foundation. Všechna práva vyhrazena.", "en": "Copyright (c) 2009, CodePlex Foundation. All rights reserved.", + "fr": "Copyright (c) 2009, CodePlex Foundation. Tous droits réservés.", "ja": "Copyright(c)2009、CodePlex Foundation。全著作権所有。", "nl": "Copyright (c) 2009, CodePlex Foundation. Alle rechten voorbehouden.", "pt": "Direitos autorais (c) 2009, CodePlex Foundation.Todos os direitos reservados.", @@ -4751,24 +4905,26 @@ "de": "Kernserver", "en": "Core Server", "es": "Servidor central", + "fr": "Serveur central", "ja": "コアサーバー", "nl": "Core Server", "pt": "Servidor Core", "ru": "Основной сервер", "xloc": [ - "default.handlebars->25->1449" + "default.handlebars->27->1454" ] }, { "cs": "korsičtina", "de": "Korsisch", "en": "Corsican", + "fr": "Corse", "ja": "コルシカ", "nl": "Corsicaans", "pt": "Corso", "ru": "Kорсиканский", "xloc": [ - "default.handlebars->25->772" + "default.handlebars->27->777" ] }, { @@ -4776,12 +4932,13 @@ "de": "Konto erstellen", "en": "Create Account", "es": "Crear una cuenta", + "fr": "Créer un compte", "ja": "アカウントを作成する", "nl": "Account aanmaken", "pt": "Criar conta", "ru": "Создать учетную запись", "xloc": [ - "default.handlebars->25->1264", + "default.handlebars->27->1269", "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" ] @@ -4791,6 +4948,7 @@ "de": "Gerätegruppe erstellen", "en": "Create Device Group", "es": "Crear grupo de dispositivos", + "fr": "Créer un groupe d'appareils", "ja": "デバイスグループを作成する", "nl": "Apparaatgroep aanmaken", "pt": "Criar grupo de dispositivo", @@ -4807,7 +4965,7 @@ "nl": "Maak een gebruikersgroep.", "ru": "Создать группу пользователей", "xloc": [ - "default.handlebars->25->1287" + "default.handlebars->27->1292" ] }, { @@ -4815,12 +4973,13 @@ "de": "Eine neue Gerätegruppe mit den folgenden Optionen erstellen.", "en": "Create a new device group using the options below.", "es": "Cree un nuevo grupo de dispositivos utilizando las siguientes opciones.", + "fr": "Créer un nouveau groupe d'appareils avec les options suivantes.", "ja": "以下のオプションを使用して、新しいデバイスグループを作成します。", "nl": "Maak een nieuwe apparaatgroep met behulp van de onderstaande opties.", "pt": "Crie um novo grupo de dispositivos usando as opções abaixo.", "ru": "Создайте новую группу устройств, используя параметры ниже.", "xloc": [ - "default.handlebars->25->964" + "default.handlebars->27->969" ] }, { @@ -4828,12 +4987,13 @@ "de": "Eine neue Gerätegruppe erstellen.", "en": "Create a new group of devices.", "es": "Crea un nuevo grupo de dispositivos.", + "fr": "Créer un groupe d'appareils", "ja": "デバイスの新しいグループを作成します。", "nl": "Maak een nieuwe apparaatgroep.", "pt": "Crie um novo grupo de dispositivos.", "ru": "Создать новую группу устройств.", "xloc": [ - "default.handlebars->25->204" + "default.handlebars->27->204" ] }, { @@ -4841,12 +5001,13 @@ "de": "Erzeuge viele Konten auf einmal durch Import einer JSON-Datei mit dem folgenden Format:", "en": "Create many accounts at once by importing a JSON file with the following format:", "es": "Cree muchas cuentas a la vez importando un archivo JSON con el siguiente formato:", + "fr": "Créer des comptes en important un fichier JSON au format suivant :", "ja": "次の形式のJSONファイルをインポートして、一度に多くのアカウントを作成します。", "nl": "Maak meerdere accounts tegelijk door een JSON-bestand met de volgende indeling te importeren:", "pt": "Crie várias contas ao mesmo tempo importando um arquivo JSON com o seguinte formato:", "ru": "Создайте сразу несколько учетных записей, импортировав файл JSON в следующем формате:", "xloc": [ - "default.handlebars->25->1235" + "default.handlebars->27->1240" ] }, { @@ -4854,6 +5015,7 @@ "de": "Erstelle eines", "en": "Create one", "es": "Crea uno", + "fr": "Créer un", "ja": "一つ作る", "nl": "Creëer er een", "pt": "Crie um", @@ -4868,12 +5030,13 @@ "de": "Erzeugung", "en": "Creation", "es": "Creación", + "fr": "Création", "ja": "作成", "nl": "Aanmaken", "pt": "Criação", "ru": "Создано", "xloc": [ - "default.handlebars->25->1341" + "default.handlebars->27->1346" ] }, { @@ -4899,7 +5062,7 @@ "pt": "Cree", "ru": "Кри (Канадский язык)", "xloc": [ - "default.handlebars->25->773" + "default.handlebars->27->778" ] }, { @@ -4911,7 +5074,7 @@ "pt": "Croata", "ru": "Хорватский", "xloc": [ - "default.handlebars->25->774" + "default.handlebars->27->779" ] }, { @@ -4919,11 +5082,11 @@ "de": "Strg+C", "en": "Ctl-C", "es": "Ctl-C", + "fr": "Ctl-C", "ja": "Ctl-C", "nl": "Ctl-C", "pt": "CTRL-C", "ru": "Ctl-C", - "fr": "Ctl-C", "xloc": [ "default.handlebars->container->column_l->p12->termTable->1->1->6->1->3" ] @@ -4933,11 +5096,11 @@ "de": "Strg+X", "en": "Ctl-X", "es": "Ctl-X", + "fr": "Ctl-X", "ja": "Ctl-X", "nl": "Ctl-X", "pt": "CTRL-X", "ru": "Ctl-X", - "fr": "Ctl-X", "xloc": [ "default.handlebars->container->column_l->p12->termTable->1->1->6->1->3" ] @@ -4947,13 +5110,13 @@ "de": "Strg", "en": "Ctrl", "es": "Ctrl", + "fr": "Ctrl", "ja": "Ctrl", "nl": "Ctrl", "pt": "CTRL", "ru": "Ctrl", - "fr": "Ctrl", "xloc": [ - "default.handlebars->25->46" + "default.handlebars->27->46" ] }, { @@ -4961,11 +5124,11 @@ "de": "Strg+Alt+Entf", "en": "Ctrl+Alt+Del", "es": "Ctrl+Alt+Del", + "fr": "Ctrl+Alt+Del", "ja": "Ctrl + Alt + Del", "nl": "Ctrl+Alt+Del", "pt": "CTRL+ALT+DEL", "ru": "Ctrl+Alt+Del", - "fr": "Ctrl+Alt+Del", "xloc": [ "default-mobile.handlebars->dialog->3->dialog3->deskkeys->1", "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3->deskkeys->1" @@ -4976,11 +5139,11 @@ "de": "Strg+W", "en": "Ctrl-W", "es": "Ctrl-W", + "fr": "Ctrl-W", "ja": "Ctrl-W", "nl": "Ctrl-W", "pt": "CTRL-W", "ru": "Ctrl-W", - "fr": "Ctrl-W", "xloc": [ "default-mobile.handlebars->dialog->3->dialog3->deskkeys->21", "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3->deskkeys->19" @@ -4991,12 +5154,13 @@ "de": "Aktuelle Version", "en": "Current Version", "es": "Version Actual", + "fr": "Version", "ja": "現行版", "nl": "Huidige versie", "pt": "Versão Atual", "ru": "Текущая версия", "xloc": [ - "default.handlebars->25->110" + "default.handlebars->27->110" ] }, { @@ -5004,6 +5168,7 @@ "de": "Ausschneiden", "en": "Cut", "es": "Cortar", + "fr": "Couper", "ja": "カット", "nl": "Knippen", "pt": "Cortar", @@ -5019,12 +5184,13 @@ "cs": "čeština", "de": "Tschechisch", "en": "Czech", + "fr": "Tchèque", "ja": "チェコ語", "nl": "Tsjechisch", "pt": "Tcheco", "ru": "Чешский", "xloc": [ - "default.handlebars->25->775" + "default.handlebars->27->780" ] }, { @@ -5032,24 +5198,26 @@ "de": "DNS-Suffix", "en": "DNS suffix", "es": "Sufijo DNS", + "fr": "Suffixe DNS", "ja": "DNSサフィックス", "nl": "DNS-achtervoegsel", "pt": "Sufixo DNS", "ru": "DNS-суффикс", "xloc": [ - "default.handlebars->25->96" + "default.handlebars->27->96" ] }, { "cs": "dánština", "de": "Dänisch", "en": "Danish", + "fr": "Danois", "ja": "デンマーク語", "nl": "Deens", "pt": "Dinamarquês", "ru": "Датский", "xloc": [ - "default.handlebars->25->776" + "default.handlebars->27->781" ] }, { @@ -5062,7 +5230,7 @@ "pt": "DataChannel", "ru": "DataChannel", "xloc": [ - "default.handlebars->25->615" + "default.handlebars->27->620" ] }, { @@ -5070,12 +5238,13 @@ "de": "Datum & Uhrzeit", "en": "Dates & Time", "es": "Fecha & Hora", + "fr": "dates et heure", "ja": "日時", "nl": "Datum & Tiid", "pt": "Datas e Horário", "ru": "Дата & Время", "xloc": [ - "default.handlebars->25->932" + "default.handlebars->27->937" ] }, { @@ -5083,12 +5252,13 @@ "de": "Tag", "en": "Day", "es": "Dia", + "fr": "Jour", "ja": "日", "nl": "Dag", "pt": "Dia", "ru": "День", "xloc": [ - "default.handlebars->25->554" + "default.handlebars->27->559" ] }, { @@ -5101,7 +5271,7 @@ "pt": "Desativar o modo de controle do cliente (CCM)", "ru": "Деактивировать режим управления клиентом (CCM)", "xloc": [ - "default.handlebars->25->1052" + "default.handlebars->27->1057" ] }, { @@ -5109,13 +5279,14 @@ "de": "Tiefschlaf", "en": "Deep Sleep", "es": "Sueño profundo", + "fr": "Veuille profonde", "ja": "深い眠り", "nl": "Slaapstand", "pt": "Deep Sleep", "ru": "Глубокий сон", "xloc": [ "default-mobile.handlebars->9->110", - "default.handlebars->25->356" + "default.handlebars->27->356" ] }, { @@ -5123,6 +5294,7 @@ "de": "Löschen", "en": "Delete", "es": "Borrar", + "fr": "Supprimer", "ja": "削除する", "nl": "Verwijderen", "pt": "Deletar", @@ -5132,11 +5304,13 @@ "default-mobile.handlebars->9->81", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1", "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1", - "default.handlebars->25->1188", - "default.handlebars->25->667", + "default.handlebars->27->1193", + "default.handlebars->27->428", + "default.handlebars->27->672", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", "default.handlebars->container->dialog->idx_dlgButtonBar->5", + "default.handlebars->filesContextMenu->cxfiledelete->0", "player.handlebars->p11->dialog->idx_dlgButtonBar->5", "xterm.handlebars->p11->dialog->idx_dlgButtonBar->5" ] @@ -5146,13 +5320,14 @@ "de": "Konto löschen", "en": "Delete Account", "es": "Borrar cuenta", + "fr": "Supprimer mon compte", "ja": "アカウントを削除する", "nl": "Verwijder account", "pt": "Deletar Conta", "ru": "Удалить учетную запись", "xloc": [ "default-mobile.handlebars->9->43", - "default.handlebars->25->949" + "default.handlebars->27->954" ] }, { @@ -5160,13 +5335,14 @@ "de": "Gerät löschen", "en": "Delete Device", "es": "Borrar dispositivo", + "fr": "Supprimer l'appareil", "ja": "デバイスを削除", "nl": "Verwijder apparaat", "pt": "Excluir dispositivo", "ru": "Удалить устройство", "xloc": [ "default-mobile.handlebars->9->199", - "default.handlebars->25->513" + "default.handlebars->27->518" ] }, { @@ -5174,6 +5350,7 @@ "de": "Gruppe löschen", "en": "Delete Group", "es": "Borrar Grupo", + "fr": "Supprimer le groupe", "ja": "グループを削除", "nl": "Verwijder groep", "pt": "Excluir grupo", @@ -5181,8 +5358,8 @@ "xloc": [ "default-mobile.handlebars->9->285", "default-mobile.handlebars->9->288", - "default.handlebars->25->1045", - "default.handlebars->25->1075" + "default.handlebars->27->1050", + "default.handlebars->27->1080" ] }, { @@ -5190,13 +5367,14 @@ "de": "Knoten löschen", "en": "Delete Node", "es": "Borrar Nodo", + "fr": "Supprimer le noeud", "ja": "ノードを削除", "nl": "Verwijder apparaat", "pt": "Excluir nó", "ru": "Удалить устройство", "xloc": [ "default-mobile.handlebars->9->218", - "default.handlebars->25->580" + "default.handlebars->27->585" ] }, { @@ -5204,12 +5382,13 @@ "de": "Knoten löschen", "en": "Delete Nodes", "es": "Borrar Nodos", + "fr": "Supprimer les noeuds", "ja": "ノードを削除する", "nl": "Verwijder apparaten", "pt": "Excluir nós", "ru": "Удалить устройства", "xloc": [ - "default.handlebars->25->398" + "default.handlebars->27->398" ] }, { @@ -5220,7 +5399,7 @@ "nl": "Verwijder gebruiker", "ru": "Удалить пользователя", "xloc": [ - "default.handlebars->25->1362" + "default.handlebars->27->1367" ] }, { @@ -5231,8 +5410,8 @@ "nl": "Verwijder de gebruikersgroep", "ru": "Удалить группу пользователей", "xloc": [ - "default.handlebars->25->1312", - "default.handlebars->25->1320" + "default.handlebars->27->1317", + "default.handlebars->27->1325" ] }, { @@ -5240,12 +5419,13 @@ "de": "Benutzer {0} löschen", "en": "Delete User {0}", "es": "Borrar usuario {0}", + "fr": "Supprimer l'utilisateur {0}", "ja": "ユーザーを削除{0}", "nl": "Verwijder gebruiker {0}", "pt": "Excluir usuário {0}", "ru": "Удалить пользователя {0}", "xloc": [ - "default.handlebars->25->1376" + "default.handlebars->27->1381" ] }, { @@ -5253,6 +5433,7 @@ "de": "Konto löschen", "en": "Delete account", "es": "Borrar cuenta", + "fr": "Supprimer le compte", "ja": "アカウントを削除する", "nl": "Verwijder account", "pt": "Deletar conta", @@ -5267,12 +5448,19 @@ "de": "Geräte löschen", "en": "Delete devices", "es": "Borrar dispositivos", + "fr": "Supprimer les appareils", "ja": "デバイスを削除する", "nl": "Verwijder apparaten", "pt": "Excluir Dispositivos", "ru": "Удалить устройства", "xloc": [ - "default.handlebars->25->393" + "default.handlebars->27->393" + ] + }, + { + "en": "Delete item?", + "xloc": [ + "default.handlebars->27->429" ] }, { @@ -5280,6 +5468,7 @@ "de": "Ausgewähltes Element löschen?", "en": "Delete selected item?", "es": "¿Eliminar elemento seleccionado?", + "fr": "Supprimer cet élément ?", "ja": "選択したアイテムを削除しますか?", "nl": "Verwijder geselecteerde item?", "pt": "Excluir item selecionado?", @@ -5287,8 +5476,8 @@ "xloc": [ "default-mobile.handlebars->9->251", "default-mobile.handlebars->9->83", - "default.handlebars->25->1190", - "default.handlebars->25->669" + "default.handlebars->27->1195", + "default.handlebars->27->674" ] }, { @@ -5299,7 +5488,7 @@ "nl": "Verwijder gebruikersgroep {0}?", "ru": "Удалить группу пользователей {0}?", "xloc": [ - "default.handlebars->25->1318" + "default.handlebars->27->1323" ] }, { @@ -5307,6 +5496,7 @@ "de": "{0} ausgewählte Elemente löschen?", "en": "Delete {0} selected items?", "es": "¿Eliminar {0} elementos seleccionados?", + "fr": "Supprimer ces {0} éléments ?", "ja": "選択したアイテム{0}を削除しますか?", "nl": "Verwijder {0} gelecteerde items?", "pt": "Excluir {0} itens selecionados?", @@ -5314,8 +5504,8 @@ "xloc": [ "default-mobile.handlebars->9->250", "default-mobile.handlebars->9->82", - "default.handlebars->25->1189", - "default.handlebars->25->668" + "default.handlebars->27->1194", + "default.handlebars->27->673" ] }, { @@ -5323,6 +5513,7 @@ "de": "{0} löschen?", "en": "Delete {0}?", "es": "Borrar {0}?", + "fr": "Supprimer {0}?", "ja": "{0}を削除しますか?", "nl": "Verwijder {0}?", "pt": "Excluir {0}?", @@ -5336,6 +5527,7 @@ "de": "Nach Datum absteigend", "en": "Descend by date", "es": "Descendente por fecha", + "fr": "Tri décroissant par date", "ja": "日付で降順", "nl": "Aflopend op datum", "pt": "Descrescente por data", @@ -5352,6 +5544,7 @@ "de": "Nach Name absteigend", "en": "Descend by name", "es": "Descendente por nombre", + "fr": "Tri décroissant par nom", "ja": "名前で降順", "nl": "Aflopend op naam", "pt": "Decrescente por nome", @@ -5368,6 +5561,7 @@ "de": "Nach Größe absteigend", "en": "Descend by size", "es": "Descendente por tamano", + "fr": "Tri décroissant par taille", "ja": "サイズで降順", "nl": "Aflopend op grootte", "pt": "Decrescente por tamanho", @@ -5395,17 +5589,17 @@ "default-mobile.handlebars->9->277", "default-mobile.handlebars->9->290", "default-mobile.handlebars->9->60", - "default.handlebars->25->1077", - "default.handlebars->25->1286", - "default.handlebars->25->1291", - "default.handlebars->25->1293", - "default.handlebars->25->1316", - "default.handlebars->25->460", - "default.handlebars->25->461", - "default.handlebars->25->611", - "default.handlebars->25->95", - "default.handlebars->25->969", - "default.handlebars->25->993", + "default.handlebars->27->1082", + "default.handlebars->27->1291", + "default.handlebars->27->1296", + "default.handlebars->27->1298", + "default.handlebars->27->1321", + "default.handlebars->27->465", + "default.handlebars->27->466", + "default.handlebars->27->616", + "default.handlebars->27->95", + "default.handlebars->27->974", + "default.handlebars->27->998", "default.handlebars->container->column_l->p42->p42tbl->1->0->3" ] }, @@ -5424,13 +5618,14 @@ "de": "Desktop", "en": "Desktop", "es": "Escritorio", + "fr": "Bureau", "ja": "デスクトップ", "nl": "Bureaublad", "pt": "Área de Trabalho", "ru": "Рабочий стол", "xloc": [ - "default.handlebars->25->1079", - "default.handlebars->25->429", + "default.handlebars->27->1084", + "default.handlebars->27->434", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop", "default.handlebars->contextMenu->cxdesktop" ] @@ -5440,6 +5635,7 @@ "de": "Desktop -", "en": "Desktop -", "es": "Escritorio -", + "fr": "Bureau -", "ja": "デスクトップ-", "nl": "Bureaublad - ", "pt": "Área de Trabalho - ", @@ -5458,7 +5654,7 @@ "pt": "Notificação na área de trabalho", "ru": "Уведомление на рабочем столе", "xloc": [ - "default.handlebars->25->1003" + "default.handlebars->27->1008" ] }, { @@ -5471,7 +5667,7 @@ "pt": "Prompt da área de trabalho", "ru": "Запрос рабочего стола", "xloc": [ - "default.handlebars->25->1002" + "default.handlebars->27->1007" ] }, { @@ -5484,7 +5680,7 @@ "pt": "Prompt da área de trabalho + barra de ferramentas", "ru": "Запрос рабочего стола + панель инструментов", "xloc": [ - "default.handlebars->25->1000" + "default.handlebars->27->1005" ] }, { @@ -5497,7 +5693,7 @@ "pt": "Barra de ferramentas da área de trabalho", "ru": "Панель инструментов рабочего стола", "xloc": [ - "default.handlebars->25->1001" + "default.handlebars->27->1006" ] }, { @@ -5505,6 +5701,7 @@ "de": "Desktops", "en": "Desktops", "es": "Escritorios", + "fr": "Bureaux", "ja": "デスクトップ", "nl": "Bureaubladen", "pt": "Áreas de trabalho", @@ -5545,6 +5742,7 @@ "de": "Gerät", "en": "Device", "es": "Dispositivo", + "fr": "Appareil", "ja": "デバイス", "nl": "Apparaat", "pt": "Dispositivo", @@ -5564,7 +5762,7 @@ "ru": "Управление устройством", "xloc": [ "default-mobile.handlebars->9->211", - "default.handlebars->25->553" + "default.handlebars->27->558" ] }, { @@ -5575,11 +5773,11 @@ "nl": "Apparaat Groep", "ru": "Группа устройства", "xloc": [ - "default.handlebars->25->1096", - "default.handlebars->25->1098", - "default.handlebars->25->1310", - "default.handlebars->25->1384", - "default.handlebars->25->1390" + "default.handlebars->27->1101", + "default.handlebars->27->1103", + "default.handlebars->27->1315", + "default.handlebars->27->1389", + "default.handlebars->27->1395" ] }, { @@ -5587,13 +5785,14 @@ "de": "Gerätegruppenbenutzer", "en": "Device Group User", "es": "Usuario de grupo de dispositivos", + "fr": "Utilisateur du groupe", "ja": "デバイスグループユーザー", "nl": "Apparaatgroep gebruiker", "pt": "Usuário do grupo de dispositivos", "ru": "Пользователь группы устройств", "xloc": [ "default-mobile.handlebars->9->331", - "default.handlebars->25->1146" + "default.handlebars->27->1151" ] }, { @@ -5601,16 +5800,17 @@ "de": "Gerätegruppen", "en": "Device Groups", "es": "Grupos de dispositivos", + "fr": "Groupes d'appareils", "ja": "デバイスグループ", "nl": "Apparaatgroepen", "pt": "Grupos de dispositivos", "ru": "Группы устройств", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->3", - "default.handlebars->25->1282", - "default.handlebars->25->1295", - "default.handlebars->25->1350", - "default.handlebars->25->1423", + "default.handlebars->27->1287", + "default.handlebars->27->1300", + "default.handlebars->27->1355", + "default.handlebars->27->1428", "default.handlebars->container->column_l->p2->9" ] }, @@ -5618,7 +5818,7 @@ "en": "Device Information Export", "nl": "Apparaat informatie export", "xloc": [ - "default.handlebars->25->404" + "default.handlebars->27->404" ] }, { @@ -5626,12 +5826,13 @@ "de": "Gerätestandort", "en": "Device Location", "es": "Ubicación del dispositivo", + "fr": "Emplacement de l'appareil", "ja": "デバイスの場所", "nl": "Apparaat locatie", "pt": "Localização do dispositivo", "ru": "Местонахождение устройства", "xloc": [ - "default.handlebars->25->581" + "default.handlebars->27->586" ] }, { @@ -5639,14 +5840,15 @@ "de": "Gerätename", "en": "Device Name", "es": "Nombre del dispositivo", + "fr": "Nom de l'appareil", "ja": "装置名", "nl": "Apparaat naam", "pt": "Nome do Dispositivo", "ru": "Имя устройства", "xloc": [ "default-mobile.handlebars->9->222", - "default.handlebars->25->238", - "default.handlebars->25->609", + "default.handlebars->27->238", + "default.handlebars->27->614", "player.handlebars->3->9" ] }, @@ -5655,12 +5857,13 @@ "de": "Gerätebenachrichtigung", "en": "Device Notification", "es": "Notificación de dispositivo", + "fr": "Notification de l'appareil", "ja": "デバイス通知", "nl": "Apparaatmelding", "pt": "Notificação de dispositivo", "ru": "Уведомление устройства", "xloc": [ - "default.handlebars->25->544" + "default.handlebars->27->549" ] }, { @@ -5681,13 +5884,14 @@ "de": "Geräteverbindungen.", "en": "Device connections.", "es": "Conexiones de dispositivo.", + "fr": "Connexions des appareils.", "ja": "デバイス接続。", "nl": "Apparaat verbindingen.", "pt": "Conexões de dispositivos.", "ru": "Подключения устройств.", "xloc": [ - "default.handlebars->25->1150", - "default.handlebars->25->937" + "default.handlebars->27->1155", + "default.handlebars->27->942" ] }, { @@ -5695,13 +5899,14 @@ "de": "Gerätetrennungen.", "en": "Device disconnections.", "es": "Desconexiones de dispositivos.", + "fr": "Déconnexions des appareils.", "ja": "デバイスの切断。", "nl": "Apparaat verbroken.", "pt": "Desconexões de dispositivos.", "ru": "Отключения устройств.", "xloc": [ - "default.handlebars->25->1151", - "default.handlebars->25->938" + "default.handlebars->27->1156", + "default.handlebars->27->943" ] }, { @@ -5709,12 +5914,13 @@ "de": "Gerätegruppennotizen können von anderen Gerätegruppenadministratoren eingesehen und verändert werden.", "en": "Device group notes can be viewed and changed by other device group administrators.", "es": "Las notas del grupo de dispositivos pueden ser vistas y modificadas por otros administradores de grupos de dispositivos.", + "fr": "Les notes de groupes peuvent être vues et modifiées par les autres administrateurs de groupes.", "ja": "デバイスグループのメモは、他のデバイスグループ管理者が表示および変更できます。", "nl": "Apparaatgroepnotities kunnen worden bekeken en gewijzigd door andere apparaatgroepbeheerders.", "pt": "As notas do grupo de dispositivos podem ser visualizadas e alteradas por outros administradores do grupo de dispositivos.", "ru": "Примечания могут быть просмотрены и изменены другими администраторами.", "xloc": [ - "default.handlebars->25->542" + "default.handlebars->27->547" ] }, { @@ -5722,12 +5928,13 @@ "de": "Gerät wurde erkannt, aber der Energiezustand konnte nicht ermittelt werden.", "en": "Device is detected but power state could not be obtained.", "es": "Se detecta el dispositivo pero no se pudo obtener el estado de alimentación.", + "fr": "L'appareil est détecté mais impossible de déterminer l'état de l'alimentation.", "ja": "デバイスは検出されましたが、電源状態を取得できませんでした。", "nl": "Apparaat is gedetecteerd, maar de status kon niet worden verkregen.", "pt": "O dispositivo foi detectado, mas não foi possível obter o estado de energia.", "ru": "Устройство обнаружено, но состояние питания не может быть получено.", "xloc": [ - "default.handlebars->25->361" + "default.handlebars->27->361" ] }, { @@ -5735,13 +5942,14 @@ "de": "Gerät ist im Ruhezustand (S4)", "en": "Device is hibernating (S4)", "es": "El dispositivo está hibernando (S4)", + "fr": "L'appareil est en veille profonde (S4)", "ja": "デバイスは休止状態です(S4)", "nl": "Apparaat is in slaapstand (S4)", "pt": "O dispositivo está hibernando (S4)", "ru": "Устройство находится в режиме гибернации (S4)", "xloc": [ "default-mobile.handlebars->9->118", - "default.handlebars->25->367" + "default.handlebars->27->367" ] }, { @@ -5749,13 +5957,14 @@ "de": "Gerät befindet sich im Tiefschlafzustand (S3)", "en": "Device is in deep sleep state (S3)", "es": "El dispositivo está en estado de reposo (S3)", + "fr": "L'appareil est en veille profonde (S3)", "ja": "デバイスはディープスリープ状態です(S3)", "nl": "Apparaat bevindt zich in diepe slaapstand (S3)", "pt": "O dispositivo está no estado de sono profundo (S3)", "ru": "Устройство находится в состоянии глубокого сна (S3)", "xloc": [ "default-mobile.handlebars->9->117", - "default.handlebars->25->366" + "default.handlebars->27->366" ] }, { @@ -5763,12 +5972,13 @@ "de": "Gerät befindet sich im Tiefschlafzustand (S3).", "en": "Device is in deep sleep state (S3).", "es": "El dispositivo está en estado de reposo (S3)", + "fr": "L'appareil est en veille profonde (S3).", "ja": "デバイスはディープスリープ状態(S3)です。", "nl": "Apparaat bevindt zich in diepe slaapstand (S3).", "pt": "O dispositivo está no estado de suspensão profunda (S3).", "ru": "Устройство находится в состоянии глубокого сна (S3).", "xloc": [ - "default.handlebars->25->355" + "default.handlebars->27->355" ] }, { @@ -5776,12 +5986,13 @@ "de": "Gerät befindet sich im Ruhezustand (S4).", "en": "Device is in hibernating state (S4).", "es": "El dispositivo está en estado de hibernacion (S4)", + "fr": "L'appareil est en veille profonde (S4).", "ja": "デバイスは休止状態です(S4)。", "nl": "Apparaat bevindt zich in de slaapstand (S4).", "pt": "O dispositivo está no estado de hibernação (S4).", "ru": "Устройство находится в режиме гибернации (S4).", "xloc": [ - "default.handlebars->25->357" + "default.handlebars->27->357" ] }, { @@ -5789,12 +6000,13 @@ "de": "Gerät ist ausgeschaltet (S5).", "en": "Device is in powered off state (S5).", "es": "El dispositivo está apagado (S5)", + "fr": "L'appareil est arrêté (S5)", "ja": "デバイスは電源オフ状態です(S5)。", "nl": "Apparaat is uitgeschakeld (S5).", "pt": "O dispositivo está no estado desligado (S5).", "ru": "Устройство находится в выключенном состоянии (S5).", "xloc": [ - "default.handlebars->25->359" + "default.handlebars->27->359" ] }, { @@ -5802,13 +6014,14 @@ "de": "Gerät befindet sich im Schlafzustand (S1)", "en": "Device is in sleep state (S1)", "es": "El dispositivo está en estado de suspensión (S1)", + "fr": "L'appareil est en veille (S1)", "ja": "デバイスはスリープ状態です(S1)", "nl": "Apparaat bevindt zich in slaapstand (S1)", "pt": "O dispositivo está no estado de suspensão (S1)", "ru": "Устройство находится в спящем режиме (S1)", "xloc": [ "default-mobile.handlebars->9->115", - "default.handlebars->25->364" + "default.handlebars->27->364" ] }, { @@ -5816,12 +6029,13 @@ "de": "Gerät befindet sich im Schlafzustand (S1).", "en": "Device is in sleep state (S1).", "es": "El dispositivo está en estado de suspensión (S1)", + "fr": "L'appareil est en veille (S1).", "ja": "デバイスはスリープ状態(S1)です。", "nl": "Apparaat bevindt zich in slaapstand (S1).", "pt": "O dispositivo está no estado de suspensão (S1).", "ru": "Устройство находится в спящем режиме (S1).", "xloc": [ - "default.handlebars->25->351" + "default.handlebars->27->351" ] }, { @@ -5829,13 +6043,14 @@ "de": "Gerät befindet sich im Schlafzustand (S2)", "en": "Device is in sleep state (S2)", "es": "El dispositivo está en estado de suspensión (S2)", + "fr": "L'appareil est en veille (S2)", "ja": "デバイスはスリープ状態です(S2)", "nl": "Apparaat bevindt zich in slaapstand (S2)", "pt": "O dispositivo está no estado de suspensão (S2)", "ru": "Устройство находится в спящем режиме (S2)", "xloc": [ "default-mobile.handlebars->9->116", - "default.handlebars->25->365" + "default.handlebars->27->365" ] }, { @@ -5843,12 +6058,13 @@ "de": "Gerät befindet sich im Schlafzustand (S2).", "en": "Device is in sleep state (S2).", "es": "El dispositivo está en estado de suspensión (S2)", + "fr": "L'appareil est en veille (S2).", "ja": "デバイスはスリープ状態(S2)です。", "nl": "Apparaat bevindt zich in slaapstand (S2).", "pt": "O dispositivo está no estado de suspensão (S2).", "ru": "Устройство находится в спящем режиме (S2).", "xloc": [ - "default.handlebars->25->353" + "default.handlebars->27->353" ] }, { @@ -5862,7 +6078,7 @@ "ru": "Устройство находится в выключенном состоянии (S5)", "xloc": [ "default-mobile.handlebars->9->119", - "default.handlebars->25->368" + "default.handlebars->27->368" ] }, { @@ -5870,13 +6086,14 @@ "de": "Gerät ist eingeschaltet", "en": "Device is powered", "es": "El dispositivo está conectado", + "fr": "L'appareil est allumé", "ja": "デバイスに電源が入っています", "nl": "Apparaat is ingeschakeld", "pt": "O dispositivo está ligado", "ru": "Устройство включено", "xloc": [ "default-mobile.handlebars->9->114", - "default.handlebars->25->363" + "default.handlebars->27->363" ] }, { @@ -5884,12 +6101,13 @@ "de": "Gerät ist eingeschaltet.", "en": "Device is powered on.", "es": "El dispositivo está prendido.", + "fr": "L'appareil est mis sous tension.", "ja": "デバイスの電源が入っています。", "nl": "Apparaat is ingeschakeld.", "pt": "O dispositivo está ligado.", "ru": "Устройство включено.", "xloc": [ - "default.handlebars->25->349" + "default.handlebars->27->349" ] }, { @@ -5897,13 +6115,14 @@ "de": "Gerät ist präsent, aber der Energiezustand kann nicht ermittelt werden", "en": "Device is present, but power state cannot be determined", "es": "El dispositivo está presente, pero no se puede determinar el estado de energía", + "fr": "L'appareil est connecté mais impossible de déterminer l'état de l'alimentation", "ja": "デバイスは存在しますが、電源状態を判別できません", "nl": "Apparaat is aanwezig, maar de status kan niet worden bepaald", "pt": "O dispositivo está presente, mas o estado de energia não pode ser determinado", "ru": "Устройство присутствует, но состояние питания не может быть определено", "xloc": [ "default-mobile.handlebars->9->120", - "default.handlebars->25->369" + "default.handlebars->27->369" ] }, { @@ -5911,12 +6130,13 @@ "de": "Gerätename", "en": "Device name", "es": "Nombre del dispositivo", + "fr": "Nom de l'appareil", "ja": "装置名", "nl": "Apparaat naam", "pt": "Nome do dispositivo", "ru": "Имя устройства", "xloc": [ - "default.handlebars->25->441" + "default.handlebars->27->446" ] }, { @@ -5929,7 +6149,7 @@ "pt": "DeviceCheckbox", "ru": "DeviceCheckbox", "xloc": [ - "default.handlebars->25->395" + "default.handlebars->27->395" ] }, { @@ -5937,12 +6157,13 @@ "de": "Deaktiviert", "en": "Disabled", "es": "Deshabilitado", + "fr": "Désactivé", "ja": "無効", "nl": "Uitgeschakeld", "pt": "Desativado", "ru": "Отключено", "xloc": [ - "default.handlebars->25->487" + "default.handlebars->27->492" ] }, { @@ -5950,6 +6171,7 @@ "de": "Trennen", "en": "Disconnect", "es": "Desconectar", + "fr": "Déconnecter", "ja": "切断する", "nl": "Verbreken", "pt": "Desconectar", @@ -5957,8 +6179,8 @@ "xloc": [ "default-mobile.handlebars->9->237", "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3", - "default.handlebars->25->1013", - "default.handlebars->25->658", + "default.handlebars->27->1018", + "default.handlebars->27->663", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->disconnectbutton1span", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->disconnectbutton2span", "xterm.handlebars->p11->deskarea0->deskarea1->3" @@ -5969,6 +6191,7 @@ "de": "Alle trennen", "en": "Disconnect All", "es": "Desconectar Todo", + "fr": "Déconnecter tout", "ja": "すべて切断", "nl": "Verbreek alles", "pt": "Desconectar todos", @@ -5991,11 +6214,11 @@ "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->25->193", - "default.handlebars->25->210", - "default.handlebars->25->213", - "default.handlebars->25->219", - "default.handlebars->25->8", + "default.handlebars->27->193", + "default.handlebars->27->210", + "default.handlebars->27->213", + "default.handlebars->27->219", + "default.handlebars->27->8", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->deskstatus", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->termstatus", "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3->p13Status", @@ -6007,6 +6230,7 @@ "de": "Eine Benachrichtigung auf dem entfernten Rechner anzeigen", "en": "Display a notification on the remote computer", "es": "Mostrar una notificación en la computadora remota", + "fr": "Afficher une notification sur l'ordinateur distant", "ja": "リモートコンピューターに通知を表示する", "nl": "Toon een melding op de externe computer", "pt": "Exibir uma notificação no computador remoto", @@ -6023,7 +6247,7 @@ "nl": "Toon apparaatgroepsnaam", "ru": "Отобразить имя группы устройств", "xloc": [ - "default.handlebars->25->936" + "default.handlebars->27->941" ] }, { @@ -6031,12 +6255,13 @@ "de": "Anzeigename", "en": "Display name", "es": "Nombre para mostrar", + "fr": "Nom", "ja": "表示名", "nl": "Schermnaam", "pt": "Mostrar nome", "ru": "Отображаемое имя", "xloc": [ - "default.handlebars->25->629" + "default.handlebars->27->634" ] }, { @@ -6044,12 +6269,13 @@ "de": "Nichts tun", "en": "Do nothing", "es": "No Hacer Nada...", + "fr": "Ne rien faire", "ja": "何もしない", "nl": "Doe niets", "pt": "Fazer nada", "ru": "Ничего не делать", "xloc": [ - "default.handlebars->25->1058" + "default.handlebars->27->1063" ] }, { @@ -6057,6 +6283,7 @@ "de": "Sie haben kein Konto?", "en": "Don't have an account?", "es": "No tienes una cuenta?", + "fr": "Pas encore de compte ?", "ja": "アカウントを持っていないのですか?", "nl": "Heb je nog geen account?", "pt": "Não possui uma conta?", @@ -6071,13 +6298,14 @@ "de": "Nicht konfigurieren", "en": "Don\\'t configure", "es": "No configurar", + "fr": "Ne pas configurer", "ja": "設定しないでください", "nl": "Niet configureren", "pt": "Não configure", "ru": "Не настраивать", "xloc": [ - "default.handlebars->25->1062", - "default.handlebars->25->1067" + "default.handlebars->27->1067", + "default.handlebars->27->1072" ] }, { @@ -6085,12 +6313,13 @@ "de": "Nicht mit Server verbinden", "en": "Don\\'t connect to server", "es": "No te conectes al servidor", + "fr": "Ne pas se connecter au serveur", "ja": "サーバーに接続しない", "nl": "Maak geen verbinding met de server", "pt": "Não conecte ao servidor", "ru": "Не подключаться к серверу", "xloc": [ - "default.handlebars->25->1063" + "default.handlebars->27->1068" ] }, { @@ -6112,6 +6341,7 @@ "de": "Ereignisse herunterladen", "en": "Download Events", "es": "Descargar eventos", + "fr": "Télécharger les évènements", "ja": "イベントをダウンロードする", "nl": "Download gebeurtenissen", "pt": "Download de Eventos", @@ -6127,13 +6357,14 @@ "de": "Datei herunterladen", "en": "Download File", "es": "Descargar Archivo", + "fr": "Télécharger le fichier", "ja": "ダウンロードファイル", "nl": "Download Bestand", "pt": "⇬ Fazer download do arquivo", "ru": "Скачать файл", "xloc": [ "default-mobile.handlebars->9->270", - "default.handlebars->25->687" + "default.handlebars->27->692" ] }, { @@ -6146,7 +6377,7 @@ "pt": "Faça o download do MeshCentral Router, uma ferramenta de mapeamento de portas TCP.", "ru": "Скачать MeshCentral Router, инструмент сопоставления TCP портов.", "xloc": [ - "default.handlebars->25->208" + "default.handlebars->27->208" ] }, { @@ -6154,12 +6385,13 @@ "de": "MeshCmd herunterladen", "en": "Download MeshCmd", "es": "Descargar MeshCmd", + "fr": "Télécharger MeshCmd", "ja": "MeshCmdをダウンロード", "nl": "Download MeshCmd", "pt": "Baixar MeshCmd", "ru": "Скачать MeshCmd", "xloc": [ - "default.handlebars->25->600" + "default.handlebars->27->605" ] }, { @@ -6172,7 +6404,7 @@ "pt": "Faça o download do MeshCmd, uma ferramenta de linha de comando que executa muitas funções.", "ru": "Скачать MeshCmd, инструмент командной строки, выполняющий множество функций.", "xloc": [ - "default.handlebars->25->206" + "default.handlebars->27->206" ] }, { @@ -6180,6 +6412,7 @@ "de": "Plugin herunterladen", "en": "Download Plugin", "es": "Descargar plugin", + "fr": "Télécharger le module", "ja": "プラグインをダウンロード", "nl": "Download Plugin", "ru": "Скачать плагин", @@ -6193,7 +6426,7 @@ "nl": "Download \\\"meshcmd\\\" met het actiebestand om verkeer via deze server naar dit apparaat te leiden. Zorg ervoor dat u meshaction.txt bewerkt en uw accountwachtwoord toevoegt of breng de nodige wijzigingen aan.", "ru": "Скачайте \\\"meshcmd\\\" с файлом команд для маршрутизации трафика к этому устройству через сервер. Не забудьте указать пароль от своей учетной записи в meshaction.txt и сделать другие правки при необходимости.", "xloc": [ - "default.handlebars->25->593" + "default.handlebars->27->598" ] }, { @@ -6201,6 +6434,7 @@ "de": "Konsolentext herunterladen", "en": "Download console text", "es": "Descargar texto de consola", + "fr": "Télécharger le texte de la console", "ja": "コンソールテキストをダウンロードする", "nl": "Consoletekst downloaden", "pt": "Baixar do texto do console", @@ -6214,6 +6448,7 @@ "de": "Datenpunkte herunterladen (.csv)", "en": "Download data points (.csv)", "es": "Descargar puntos de datos (.csv)", + "fr": "Télécharger (.csv)", "ja": "データポイント(.csv)をダウンロードする", "nl": "Gegevenspunten downloaden (.csv)", "pt": "Baixar pontos de dados (.csv)", @@ -6227,12 +6462,13 @@ "de": "Fehlerprotokoll herunterladen", "en": "Download error log", "es": "Descargar registro de errores", + "fr": "Télécharger le journal d'erreurs", "ja": "エラーログをダウンロードする", "nl": "Foutenlogboek downloaden", "pt": "Baixar log de erro", "ru": "Скачать журнал ошибок", "xloc": [ - "default.handlebars->25->118" + "default.handlebars->27->118" ] }, { @@ -6240,12 +6476,13 @@ "de": "Energiezustandsereignisse herunterladen", "en": "Download power events", "es": "Descargar eventos de encendido", + "fr": "Télécharger les données sur l'alimentation", "ja": "電源イベントをダウンロードする", "nl": "Downloaden Power gebeurtenissen", "pt": "Download de eventos de energia", "ru": "Скачать события состояния питания", "xloc": [ - "default.handlebars->25->555" + "default.handlebars->27->560" ] }, { @@ -6253,6 +6490,7 @@ "de": "Server-Datensicherung herunterladen", "en": "Download server backup", "es": "Descargar copia de seguridad del servidor", + "fr": "Télécharger une sauvegarde", "ja": "サーバーのバックアップをダウンロード", "nl": "Download server back-up", "pt": "Fazer o download do backup do servidor", @@ -6266,6 +6504,7 @@ "de": "Den Installer hier herunterladen", "en": "Download the installer here", "es": "Descargue el instalador aquí", + "fr": "Télécharger l'installeur ici", "ja": "ここからインストーラーをダウンロードしてください", "nl": "Download het installatieprogramma hier", "pt": "Faça o download do instalador aqui", @@ -6278,7 +6517,7 @@ "en": "Download the list of devices with one of the file formats below.", "nl": "Download de lijst met apparaten in een van de onderstaande bestandsindelingen.", "xloc": [ - "default.handlebars->25->399" + "default.handlebars->27->399" ] }, { @@ -6286,12 +6525,13 @@ "de": "Die Ereignisliste in einem der folgenden Dateiformate herunterladen.", "en": "Download the list of events with one of the file formats below.", "es": "Descargue la lista de eventos con uno de los formatos de archivo a continuación.", + "fr": "Télécharger les évènements au format :", "ja": "以下のファイル形式のいずれかでイベントのリストをダウンロードします。", "nl": "Download de lijst met gebeurtenissen in een van de onderstaande bestandsindelingen.", "pt": "Faça o download da lista de eventos com um dos formatos de arquivo abaixo.", "ru": "Скачать список событий в одном из форматов ниже.", "xloc": [ - "default.handlebars->25->1204" + "default.handlebars->27->1209" ] }, { @@ -6299,12 +6539,13 @@ "de": "Die Benutzerliste in einem der folgenden Dateiformate herunterladen.", "en": "Download the list of users with one of the file formats below.", "es": "Descargue la lista de usuarios con uno de los formatos de archivo a continuación.", + "fr": "Télécharger la liste des utilisateurs au format :", "ja": "以下のファイル形式のいずれかでユーザーのリストをダウンロードします。", "nl": "Download de lijst met gebruikers in een van de onderstaande bestandsindelingen.", "pt": "Baixe a lista de usuários com um dos formatos de arquivo abaixo.", "ru": "Скачать список пользователей в одном из форматов ниже.", "xloc": [ - "default.handlebars->25->1243" + "default.handlebars->27->1248" ] }, { @@ -6312,6 +6553,7 @@ "de": "Die Software hier herunterladen", "en": "Download the software here", "es": "Descargue el software aquí", + "fr": "Télécharger le logiciel ici", "ja": "ここからソフトウェアをダウンロードしてください", "nl": "Download de software hier", "pt": "Faça o download do software aqui", @@ -6326,6 +6568,7 @@ "de": "Trace herunterladen (.csv)", "en": "Download trace (.csv)", "es": "Descargar trace (.csv)", + "fr": "Télécharger la trace (.csv)", "ja": "トレースのダウンロード(.csv)", "nl": "Download sporen (.csv)", "pt": "Rastreio de download (.csv)", @@ -6339,6 +6582,7 @@ "de": "Benutzerinformationen herunterladen", "en": "Download user information", "es": "Descargar información del usuario", + "fr": "Télécharger les informations utilisateurs", "ja": "ユーザー情報をダウンロードする", "nl": "Download gebruikers informatie", "pt": "Baixar informações do usuário", @@ -6352,6 +6596,7 @@ "de": "Lassen Sie eine .mcrec-Datei hier fallen oder klicken Sie auf \\\"Datei öffnen...\\\"", "en": "Drag & drop a .mcrec file or click \\\"Open File...\\\"", "es": "Arrastre y suelte un archivo .mcrec o haga clic en \\\"Abrir archivo...\\\"", + "fr": "Glisser & Déposer un fichier .mcrec ou cliquer sur \"\\Ouvrir fichier...\\\"", "ja": ".mcrecファイルをドラッグアンドドロップするか、[ファイルを開く...]をクリックします", "nl": "Sleep een .mcrec-bestand of klik op \\\"Bestand openen ...\\\"", "pt": "Arraste e solte um arquivo .mcrec ou clique em \\\"Abrir arquivo...\\\"", @@ -6368,7 +6613,7 @@ "nl": "Duplicaat Agent", "ru": "Скопировать агент", "xloc": [ - "default.handlebars->25->1419" + "default.handlebars->27->1424" ] }, { @@ -6390,7 +6635,7 @@ "nl": "Dupliceer Gebruikers Groep", "ru": "Скопировать группу пользователей", "xloc": [ - "default.handlebars->25->1288" + "default.handlebars->27->1293" ] }, { @@ -6398,6 +6643,7 @@ "de": "Dauer", "en": "Duration", "es": "Duración", + "fr": "Durée", "ja": "期間", "nl": "Looptijd", "pt": "Duração", @@ -6411,36 +6657,39 @@ "de": "Während der Aktivierung hat der Agent Zugriff auf das Administratorkennwort.", "en": "During activation, the agent will have access to admin password infomation.", "es": "Durante la activación, el agente tendrá acceso a la información de contraseña de administrador.", + "fr": "Pendant l'activation, l'agent aura accès au mot de passe administateur.", "ja": "アクティベーション中、エージェントは管理者パスワード情報にアクセスできます。", "nl": "Tijdens activering heeft de agent toegang tot beheerderswachtwoordinformatie.", "pt": "Durante a ativação, o agente terá acesso às informações da senha do administrador.", "ru": "Во время активации агент будет иметь доступ к паролю администратора.", "xloc": [ - "default.handlebars->25->1072" + "default.handlebars->27->1077" ] }, { "cs": "nizozemština (Belgie)", "de": "Niederländisch (Belgisch)", "en": "Dutch (Belgian)", + "fr": "Néerlandais (Belgique)", "ja": "オランダ語(ベルギー)", "nl": "Nederlands (Belgisch)", "pt": "Holandês (belga)", "ru": "Голландский (Бельгийский)", "xloc": [ - "default.handlebars->25->778" + "default.handlebars->27->783" ] }, { "cs": "nizozemština (standardní)", "de": "Niederländisch (Standard)", "en": "Dutch (Standard)", + "fr": "Néerlandais (Standard)", "ja": "オランダ語(標準)", "nl": "Nederlands (Standaard)", "pt": "Holandês (padrão)", "ru": "Голландский (Стандартный)", "xloc": [ - "default.handlebars->25->777" + "default.handlebars->27->782" ] }, { @@ -6454,7 +6703,7 @@ "pt": "ERRO:", "ru": "ОШИБКА:", "xloc": [ - "default.handlebars->25->153" + "default.handlebars->27->153" ] }, { @@ -6468,7 +6717,7 @@ "pt": "ERRO: Não foi possível adicionar a chave.", "ru": "ОШИБКА: Невозможно добавить ключ.", "xloc": [ - "default.handlebars->25->149" + "default.handlebars->27->149" ] }, { @@ -6476,11 +6725,11 @@ "de": "Esc", "en": "ESC", "es": "ESC", + "fr": "ESC", "ja": "ESC", "nl": "ESC", "pt": "ESC", "ru": "ESC", - "fr": "ESC", "xloc": [ "default.handlebars->container->column_l->p12->termTable->1->1->6->1->3" ] @@ -6490,12 +6739,14 @@ "de": "Bearbeiten", "en": "Edit", "es": "Editar", + "fr": "Modifier", "ja": "編集", "nl": "Bewerk", "pt": "Editar", "ru": "Редактировать", "xloc": [ - "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3" + "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", + "default.handlebars->filesContextMenu->cxfileedit->0" ] }, { @@ -6503,13 +6754,14 @@ "de": "Gerät bearbeiten", "en": "Edit Device", "es": "Editar dispositivo", + "fr": "Modifier l'appareil", "ja": "デバイスを編集", "nl": "Bewerk apparaat", "pt": "Editar dispositivo", "ru": "Редактировать устройство", "xloc": [ "default-mobile.handlebars->9->227", - "default.handlebars->25->614" + "default.handlebars->27->619" ] }, { @@ -6517,6 +6769,7 @@ "de": "Gerätegruppe bearbeiten", "en": "Edit Device Group", "es": "Editar grupo de dispositivos", + "fr": "Modifier le groupe d'appareil", "ja": "デバイスグループの編集", "nl": "Bewerk apparaatgroep", "pt": "Editar grupo de dispositivos", @@ -6525,9 +6778,9 @@ "default-mobile.handlebars->9->291", "default-mobile.handlebars->9->293", "default-mobile.handlebars->9->311", - "default.handlebars->25->1078", - "default.handlebars->25->1102", - "default.handlebars->25->1125" + "default.handlebars->27->1083", + "default.handlebars->27->1107", + "default.handlebars->27->1130" ] }, { @@ -6535,12 +6788,13 @@ "de": "Gerätegruppenmerkmale bearbeiten", "en": "Edit Device Group Features", "es": "Editar características del grupo de dispositivos", + "fr": "Modifier les fonctionnalités du groupe d'appareils", "ja": "デバイスグループ機能の編集", "nl": "Functies van apparaatgroep bewerken", "pt": "Editar recursos do grupo de dispositivos", "ru": "Редактировать функции группы устройств", "xloc": [ - "default.handlebars->25->1092" + "default.handlebars->27->1097" ] }, { @@ -6551,7 +6805,7 @@ "nl": "Bewerk apparaatgroep rechten", "ru": "Редактировать права группы устройств", "xloc": [ - "default.handlebars->25->1122" + "default.handlebars->27->1127" ] }, { @@ -6564,7 +6818,7 @@ "pt": "Editar consentimento do usuário do grupo de dispositivos", "ru": "Редактировать согласие пользователя группы устройств", "xloc": [ - "default.handlebars->25->1089" + "default.handlebars->27->1094" ] }, { @@ -6572,13 +6826,14 @@ "de": "Geräte-Notizen bearbeiten", "en": "Edit Device Notes", "es": "Editar notas del dispositivo", + "fr": "Modifier les notes sur l'appareil", "ja": "デバイスノートの編集", "nl": "Apparaatnotities bewerken", "pt": "Editar notas do dispositivo", "ru": "Редактировать примечания устройства", "xloc": [ "default-mobile.handlebars->9->305", - "default.handlebars->25->1114" + "default.handlebars->27->1119" ] }, { @@ -6592,9 +6847,9 @@ "ru": "Редактировать учетные данные Intel® AMT", "xloc": [ "default-mobile.handlebars->9->217", - "default.handlebars->25->475", - "default.handlebars->25->478", - "default.handlebars->25->562" + "default.handlebars->27->480", + "default.handlebars->27->483", + "default.handlebars->27->567" ] }, { @@ -6609,7 +6864,7 @@ "ru": "Редактировать примечания", "xloc": [ "default-mobile.handlebars->9->318", - "default.handlebars->25->1132" + "default.handlebars->27->1137" ] }, { @@ -6622,7 +6877,7 @@ "pt": "Editar permissões do grupo de dispositivos do usuário", "ru": "Редактировать права пользователя для группы устройств", "xloc": [ - "default.handlebars->25->1123" + "default.handlebars->27->1128" ] }, { @@ -6633,7 +6888,7 @@ "nl": "Bewerk de gebruikersgroep", "ru": "Редактировать группу пользователей", "xloc": [ - "default.handlebars->25->1317" + "default.handlebars->27->1322" ] }, { @@ -6660,11 +6915,11 @@ "ru": "Email", "xloc": [ "default-mobile.handlebars->9->37", - "default.handlebars->25->1255", - "default.handlebars->25->1337", - "default.handlebars->25->1338", - "default.handlebars->25->1366", - "default.handlebars->25->283" + "default.handlebars->27->1260", + "default.handlebars->27->1342", + "default.handlebars->27->1343", + "default.handlebars->27->1371", + "default.handlebars->27->283" ] }, { @@ -6672,13 +6927,14 @@ "de": "E-Mail-Adresse ändern", "en": "Email Address Change", "es": "Cambio de dirección de correo electrónico", + "fr": "Changement d'adresse mail", "ja": "メールアドレスの変更", "nl": "E-mailadres wijzigen", "pt": "Alteração de endereço de email", "ru": "Изменение адреса email", "xloc": [ "default-mobile.handlebars->9->38", - "default.handlebars->25->945" + "default.handlebars->27->950" ] }, { @@ -6686,13 +6942,14 @@ "de": "E-Mail-Verifizierung", "en": "Email Verification", "es": "Verificacion de Correo electrónico", + "fr": "Vérification de l'email", "ja": "メール確認", "nl": "E-mail verificatie", "pt": "verificação de e-mail", "ru": "Подтверждение email", "xloc": [ "default-mobile.handlebars->9->36", - "default.handlebars->25->943" + "default.handlebars->27->948" ] }, { @@ -6700,12 +6957,13 @@ "de": "E-Mail ist bestätigt", "en": "Email is verified", "es": "Correo electrónico verificado", + "fr": "Email vérifié", "ja": "メールが確認されました", "nl": "E-mail is geverifieerd", "pt": "O email foi verificado", "ru": "Email подтвержден", "xloc": [ - "default.handlebars->25->1334" + "default.handlebars->27->1339" ] }, { @@ -6713,12 +6971,13 @@ "de": "E-Mail ist bestätigt.", "en": "Email is verified.", "es": "Correo electrónico verificado.", + "fr": "Email vérifié.", "ja": "メールが確認されました。", "nl": "E-mail is geverifieerd.", "pt": "O email foi verificado.", "ru": "Email подтвержден.", "xloc": [ - "default.handlebars->25->1261" + "default.handlebars->27->1266" ] }, { @@ -6726,12 +6985,13 @@ "de": "E-Mail nicht bestätigt", "en": "Email not verified", "es": "Correo electrónico no verificado", + "fr": "Email non vérifié", "ja": "メールが確認されていません", "nl": "E-mail is niet geverifieerd", "pt": "Email não verificado", "ru": "Email не подтвержден", "xloc": [ - "default.handlebars->25->1335" + "default.handlebars->27->1340" ] }, { @@ -6757,6 +7017,7 @@ "de": "Browser-Benachrichtigung aktivieren", "en": "Enable browser notification", "es": "Habilitar notificación del navegador", + "fr": "Autoriser les notifications", "ja": "ブラウザ通知を有効にする", "nl": "Schakel browsermelding in", "pt": "Ativar notificação do navegador", @@ -6770,6 +7031,7 @@ "de": "Web-Benachrichtigungen aktivieren", "en": "Enable web notifications", "es": "Habilitar notificaciones web", + "fr": "Autoriser les notifications web", "ja": "Web通知を有効にする", "nl": "Schakel webmeldingen in", "pt": "Ativar notificações da web", @@ -6783,6 +7045,7 @@ "de": "Kodierung", "en": "Encoding", "es": "Codificación", + "fr": "Encodage", "ja": "エンコーディング", "nl": "codering", "pt": "Codificação", @@ -6796,108 +7059,117 @@ "de": "Englisch", "en": "English", "es": "Ingles", + "fr": "Anglais", "ja": "英語", "nl": "Engels", "pt": "Inglês", "ru": "Английский", "xloc": [ - "default.handlebars->25->779" + "default.handlebars->27->784" ] }, { "cs": "angličtina (Austrálie)", "de": "Englisch (Australien)", "en": "English (Australia)", + "fr": "Anglais (Australie)", "ja": "英語(オーストラリア)", "nl": "Engels (Australië)", "pt": "Inglês (Austrália)", "ru": "Английский (Австралия)", "xloc": [ - "default.handlebars->25->780" + "default.handlebars->27->785" ] }, { "cs": "angličtina (Belize)", "de": "Englisch (Belize)", "en": "English (Belize)", + "fr": "English (Bélize)", "ja": "英語(ベリーズ)", "nl": "Engels (Belize)", "pt": "Inglês (Belize)", "ru": "Английский (Белиз)", "xloc": [ - "default.handlebars->25->781" + "default.handlebars->27->786" ] }, { "cs": "angličtina (Kanada)", "de": "Englisch (Kanada)", "en": "English (Canada)", + "fr": "Anglais (Canada)", "ja": "英語(カナダ)", "nl": "Engels (Canada)", "pt": "Inglês (Canadá)", "ru": "Английский (Канада)", "xloc": [ - "default.handlebars->25->782" + "default.handlebars->27->787" ] }, { "cs": "angličtina (Irsko)", "de": "Englisch (Irland)", "en": "English (Ireland)", + "fr": "Anglais (Irelande)", "ja": "英語(アイルランド)", "nl": "Engels (Ierland)", "pt": "Inglês (Irlanda)", "ru": "Английский (Ирландия)", "xloc": [ - "default.handlebars->25->783" + "default.handlebars->27->788" ] }, { "cs": "angličtina (Jamajka)", "de": "Englisch (Jamaika)", "en": "English (Jamaica)", + "fr": "Anglais (Jamaïque)", "ja": "英語(ジャマイカ)", "nl": "Engels (Jamaica)", "pt": "Inglês (Jamaica)", "ru": "Английский (Ямайка)", "xloc": [ - "default.handlebars->25->784" + "default.handlebars->27->789" ] }, { "cs": "angličtina (Nový Zéland)", "de": "Englisch (Neuseeland)", "en": "English (New Zealand)", + "fr": "Anglais (Nouvelle-Zélande)", "ja": "英語(ニュージーランド)", "nl": "Engels (Nieuw Zeeland)", "pt": "Inglês (Nova Zelândia)", "ru": "Английский (Новая Зеландия)", "xloc": [ - "default.handlebars->25->785" + "default.handlebars->27->790" ] }, { "cs": "angličtina (Filipíny)", "de": "Englisch (Philippinen)", "en": "English (Philippines)", + "fr": "Anglais (Philippines)", "ja": "英語(フィリピン)", "nl": "Engels (Filippijnen)", "pt": "Inglês (Filipinas)", "ru": "Английский (Филиппины)", "xloc": [ - "default.handlebars->25->786" + "default.handlebars->27->791" ] }, { "cs": "angličtina (Jihoafrická Republika)", "de": "Englisch (Südafrika)", "en": "English (South Africa)", + "fr": "Anglais (Afrique du Sud)", "ja": "英語(南アフリカ)", "nl": "Engels (Zuid Africa)", "pt": "Inglês (África do Sul)", "ru": "Английский (Южная Африка)", "xloc": [ - "default.handlebars->25->787" + "default.handlebars->27->792" ] }, { @@ -6909,7 +7181,7 @@ "pt": "Inglês (Trinidad Tobago)", "ru": "Английский (Тринидад и Тобаго)", "xloc": [ - "default.handlebars->25->788" + "default.handlebars->27->793" ] }, { @@ -6922,7 +7194,7 @@ "pt": "Inglês (Reino Unido)", "ru": "Английский (Великобритания)", "xloc": [ - "default.handlebars->25->789" + "default.handlebars->27->794" ] }, { @@ -6935,7 +7207,7 @@ "pt": "Inglês (Estados Unidos)", "ru": "Английский (Соединенные Штаты)", "xloc": [ - "default.handlebars->25->790" + "default.handlebars->27->795" ] }, { @@ -6948,7 +7220,7 @@ "pt": "Inglês (Zimbábue)", "ru": "Английский (Зимбабве)", "xloc": [ - "default.handlebars->25->791" + "default.handlebars->27->796" ] }, { @@ -6961,8 +7233,8 @@ "pt": "Entrar", "ru": "Ввод", "xloc": [ - "default.handlebars->25->971", - "default.handlebars->25->972" + "default.handlebars->27->976", + "default.handlebars->27->977" ] }, { @@ -6970,12 +7242,13 @@ "de": "Geben Sie eine durch Kommas getrennte Liste der Namen der Verwaltungsbereiche ein.", "en": "Enter a comma seperate list of administrative realms names.", "es": "Ingrese una lista separada por comas de nombres de reinos administrativos.", + "fr": "Saisir une liste séparée par des virgules de noms de domaines administratifs.", "ja": "管理レルム名のコンマ区切りリストを入力します。", "nl": "Voer een door komma's gescheiden lijst met beheerdersnamen in.", "pt": "Insira uma lista separada por vírgulas de nomes de regiões administrativas.", "ru": "Введите разделенный запятыми список имен административных областей.", "xloc": [ - "default.handlebars->25->1265" + "default.handlebars->27->1270" ] }, { @@ -6983,12 +7256,13 @@ "de": "Geben Sie einen Bereich von IP-Adressen ein, um nach Intel-AMT-Geräten zu suchen.", "en": "Enter a range of IP addresses to scan for Intel AMT devices.", "es": "Ingrese un rango de direcciones IP para buscar dispositivos Intel AMT.", + "fr": "Saisir une plage d'adresse IP pour détecter les appareils Intel AMT.", "ja": "IPアドレスの範囲を入力して、Intel AMTデバイスをスキャンします。", "nl": "Voer een reeks IP-adressen in om te scannen op Intel AMT-apparaten.", "pt": "Digite um intervalo de endereços IP para procurar dispositivos Intel AMT.", "ru": "Введите диапазон IP-адресов для сканирования Intel AMT устройств.", "xloc": [ - "default.handlebars->25->253" + "default.handlebars->27->253" ] }, { @@ -6996,12 +7270,13 @@ "de": "Geben Sie Text ein und klicken Sie auf OK, um ihn über eine US-englische Tastatur aus der Ferne einzugeben. Stellen Sie sicher, dass sich der Remote-Cursor an der richtigen Position befindet, bevor Sie fortfahren.", "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.", "es": "Ingrese el texto y haga clic en Aceptar para escribirlo de forma remota con un teclado de inglés de EE. UU. Asegúrese de colocar el cursor remoto en la posición correcta antes de continuar.", + "fr": "Entrer le texte et cliquer sur OK pour le saisir avec un clavier américain. Vérifier avant la position du curseur distant.", "ja": "テキストを入力し、[OK]をクリックして、米国英語キーボードを使用してリモートで入力します。続行する前に、リモートカーソルを正しい位置に配置してください。", "nl": "Voer tekst in en klik op OK om deze op afstand te typen met een Amerikaans Engels toetsenbord. Zorg ervoor dat u de externe cursor op de juiste positie plaatst voordat u doorgaat.", "pt": "Digite o texto e clique em OK para digitá-lo remotamente usando um teclado em inglês dos EUA.Certifique-se de colocar o cursor remoto na posição correta antes de continuar.", "ru": "Для удаленного набора введите текст, используя английскую раскладку и нажмите OK. Перед продолжением убедитесь, что курсор на удаленном компьютере установлен в правильное положение.", "xloc": [ - "default.handlebars->25->624" + "default.handlebars->27->629" ] }, { @@ -7009,6 +7284,7 @@ "de": "Geben Sie das Kontoerstellungstoken ein", "en": "Enter the account creation token", "es": "Ingrese el token de creación de cuenta", + "fr": "Saisissez le jeton de création de compte", "ja": "アカウント作成トークンを入力してください", "nl": "Voer het token voor het maken van een account in", "pt": "Insira o token de criação da conta", @@ -7023,12 +7299,13 @@ "de": "Geben Sie hier den Token für Zweifaktor-Anmeldung ein:", "en": "Enter the token here for 2-step login:", "es": "Ingrese el token aquí para iniciar sesión en 2 pasos:", + "fr": "Saisir le jeton de double authentification ici:", "ja": "2段階ログインのトークンをここに入力します。", "nl": "Voer hier het token in voor tweestaps-aanmelding:", "pt": "Digite o token aqui para o login em duas etapas:", "ru": "Для двухэтапного входа введите токен здесь:", "xloc": [ - "default.handlebars->25->121" + "default.handlebars->27->121" ] }, { @@ -7036,12 +7313,13 @@ "de": "Fehler, Schlüssel kann nicht hinzugefügt werden.", "en": "Error, Unable to add key.", "es": "Error, no se puede agregar la llave.", + "fr": "Erreur, impossible d'ajouter la clé.", "ja": "エラー、キーを追加できません。", "nl": "Fout, kan sleutel niet toevoegen.", "pt": "Erro, não foi possível adicionar a chave.", "ru": "Ошибка, Невозможно добавить код.", "xloc": [ - "default.handlebars->25->147" + "default.handlebars->27->147" ] }, { @@ -7049,6 +7327,7 @@ "de": "Fehler: Kein Verbindungsschlüssel angegeben.", "en": "Error: No connection key specified.", "es": "Error: No se ha especificado una clave de conexión.", + "fr": "Erreur : la clé de connexion n'a pas été spécifiée.", "ja": "エラー:接続キーが指定されていません。", "nl": "Fout: geen verbindingssleutel opgegeven.", "pt": "Erro: Nenhuma chave de conexão especificada.", @@ -7066,19 +7345,20 @@ "pt": "Esperanto", "ru": "Эсперанто", "xloc": [ - "default.handlebars->25->792" + "default.handlebars->27->797" ] }, { "cs": "estonština", "de": "Estnisch", "en": "Estonian", + "fr": "Estonien", "ja": "エストニア語", "nl": "Estlands", "pt": "Estoniano", "ru": "Эстонский", "xloc": [ - "default.handlebars->25->793" + "default.handlebars->27->798" ] }, { @@ -7086,12 +7366,13 @@ "de": "Ereignisdetails", "en": "Event Details", "es": "Detalles del evento", + "fr": "Détails de l'évènement", "ja": "イベントの詳細", "nl": "Gebeurtenis details", "pt": "Detalhes do evento", "ru": "Детали события", "xloc": [ - "default.handlebars->25->700" + "default.handlebars->27->705" ] }, { @@ -7099,12 +7380,13 @@ "de": "Ereignisliste exportieren", "en": "Event List Export", "es": "Exportar lista de eventos", + "fr": "Export de la liste des évènements", "ja": "イベントリストのエクスポート", "nl": "Gebeurtenissenlijst exporteren", "pt": "Exportação da lista de eventos", "ru": "Экспорт списка событий", "xloc": [ - "default.handlebars->25->1209" + "default.handlebars->27->1214" ] }, { @@ -7143,6 +7425,7 @@ "de": "Bestehendes Konto mit dieser E-Mail-Adresse.", "en": "Existing account with this email address.", "es": "Cuenta existente con esta dirección de correo electrónico.", + "fr": "Un compte existe déjà avec cet email.", "ja": "このメールアドレスを持つ既存のアカウント。", "nl": "Bestaand account met dit e-mailadres.", "ru": "Существующий аккаунт с этим адресом email.", @@ -7155,7 +7438,7 @@ "en": "Export device information", "nl": "Exporteer apparaat informatie", "xloc": [ - "default.handlebars->25->391" + "default.handlebars->27->391" ] }, { @@ -7163,12 +7446,13 @@ "de": "Erweitertes ASCII", "en": "Extended ASCII", "es": "ASCII extendido", + "fr": "ASCII étendu", "ja": "拡張ASCII", "nl": "Extended ASCII", "pt": "ASCII estendido", "ru": "Расширенный ASCII", "xloc": [ - "default.handlebars->25->649" + "default.handlebars->27->654" ] }, { @@ -7176,6 +7460,7 @@ "de": "Erweitertes ASCII", "en": "Extended Ascii", "es": "Ascii extendido", + "fr": "Ascii étendu", "ja": "拡張アスキー", "nl": "Extended Ascii", "pt": "Ascii estendido", @@ -7192,7 +7477,7 @@ "nl": "Extern", "ru": "Внешний", "xloc": [ - "default.handlebars->25->1443" + "default.handlebars->27->1448" ] }, { @@ -7205,19 +7490,20 @@ "pt": "FYRO Macedonian", "ru": "Mакедонский (БЮР)", "xloc": [ - "default.handlebars->25->843" + "default.handlebars->27->848" ] }, { "cs": "faerština", "de": "Färöisch", "en": "Faeroese", + "fr": "Féroïen", "ja": "フェロー語", "nl": "Faeroese", "pt": "O servidor remoto retornou um erro: (429) Too Many Requests.", "ru": "Фарерский", "xloc": [ - "default.handlebars->25->794" + "default.handlebars->27->799" ] }, { @@ -7231,7 +7517,7 @@ "pt": "Falhou", "ru": "Не удалось", "xloc": [ - "default.handlebars->25->85" + "default.handlebars->27->85" ] }, { @@ -7244,7 +7530,7 @@ "pt": "Persa (persa)", "ru": "Фарси (Персидский)", "xloc": [ - "default.handlebars->25->795" + "default.handlebars->27->800" ] }, { @@ -7267,24 +7553,26 @@ "de": "Eigenschaften", "en": "Features", "es": "Caracteristicas", + "fr": "Fonctionnalités", "ja": "特徴", "nl": "Kenmerken", "pt": "Recursos", "ru": "Функции", "xloc": [ - "default.handlebars->25->999" + "default.handlebars->27->1004" ] }, { "cs": "fidžijština", "de": "Fidschianisch", "en": "Fijian", + "fr": "Fidjien", "ja": "フィジー人", "nl": "Fijian", "pt": "Fijiano", "ru": "Фиджи", "xloc": [ - "default.handlebars->25->796" + "default.handlebars->27->801" ] }, { @@ -7299,7 +7587,8 @@ "ru": "Редактор файлов", "xloc": [ "default-mobile.handlebars->9->254", - "default.handlebars->25->672" + "default.handlebars->27->426", + "default.handlebars->27->677" ] }, { @@ -7326,7 +7615,7 @@ "pt": "Driver do sistema de arquivos", "ru": "Драйвер файловой системы", "xloc": [ - "default.handlebars->25->632" + "default.handlebars->27->637" ] }, { @@ -7340,7 +7629,7 @@ "pt": "Arquivos", "ru": "Файлы", "xloc": [ - "default.handlebars->25->1086", + "default.handlebars->27->1091", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles", "default.handlebars->contextMenu->cxfiles" ] @@ -7350,7 +7639,7 @@ "de": "Dateien -", "en": "Files -", "es": "Archivos -", - "fr": "Dossiers –", + "fr": "Dossiers -", "ja": "ファイル-", "nl": "Bestanden -", "pt": "Arquivos - ", @@ -7364,12 +7653,13 @@ "de": "Dateien-Benachrichtigung", "en": "Files Notify", "es": "Notificación de archivos", + "fr": "Notifier les fichiers", "ja": "ファイル通知", "nl": "Bestanden Melden", "pt": "Notificação arquivos", "ru": "Уведомление файлов", "xloc": [ - "default.handlebars->25->1007" + "default.handlebars->27->1012" ] }, { @@ -7382,7 +7672,7 @@ "pt": "Arquivos do prompt", "ru": "Запрос файлов", "xloc": [ - "default.handlebars->25->1006" + "default.handlebars->27->1011" ] }, { @@ -7411,7 +7701,7 @@ "pt": "Finlandês", "ru": "Финский", "xloc": [ - "default.handlebars->25->797" + "default.handlebars->27->802" ] }, { @@ -7465,13 +7755,14 @@ "de": "Passwort beim nächsten Login zurücksetzen.", "en": "Force password reset on next login.", "es": "Forzar restablecimiento de contraseña en el próximo inicio de sesión.", + "fr": "Forcer la réinitialisation du mot de passe à la prochaine connexion.", "ja": "次回ログイン時にパスワードを強制的にリセットします。", "nl": "Forceer wachtwoord wijziging bij de volgende aanmelding.", "pt": "Forçar redefinição de senha no próximo login.", "ru": "Принудительно сбросить пароль при следующем входе в систему.", "xloc": [ - "default.handlebars->25->1259", - "default.handlebars->25->1373" + "default.handlebars->27->1264", + "default.handlebars->27->1378" ] }, { @@ -7494,6 +7785,7 @@ "de": "Benutzername/Passwort vergessen?", "en": "Forgot user/password?", "es": "¿Olvidó su usuario / contraseña?", + "fr": "Identifiant / Mot de passe oubliés ?", "ja": "ユーザー/パスワードを忘れましたか?", "nl": "Gebruikersnaam/wachtwoord vergeten?", "pt": "Esqueceu usuário / senha?", @@ -7507,6 +7799,7 @@ "de": "Benutzername/Passwort vergessen?", "en": "Forgot username/password?", "es": "¿Olvidó su nombre de usuario / contraseña?", + "fr": "Nom d'utilisateur / Mot de passe oublié ?", "ja": "ユーザー名/パスワードを忘れましたか?", "nl": "Gebruikersnaam/wachtwoord vergeten?", "pt": "Esqueceu seu nome de usuário / senha?", @@ -7539,8 +7832,8 @@ "pt": "Livre", "ru": "Свободно", "xloc": [ - "default.handlebars->25->1404", - "default.handlebars->25->1406" + "default.handlebars->27->1409", + "default.handlebars->27->1411" ] }, { @@ -7548,14 +7841,14 @@ "de": "FreeBSD x86-64", "en": "FreeBSD x86-64", "es": "FreeBSD x86-64", + "fr": "FreeBSD x86-64", "ja": "FreeBSD x86-64", "nl": "FreeBSD x86-64", "pt": "FreeBSD x86-64", "ru": "FreeBSD x86-64", - "fr": "FreeBSD x86-64", "xloc": [ "default-mobile.handlebars->9->173", - "default.handlebars->25->43" + "default.handlebars->27->43" ] }, { @@ -7568,7 +7861,7 @@ "pt": "Francês (Bélgica)", "ru": "Французский (Бельгия)", "xloc": [ - "default.handlebars->25->799" + "default.handlebars->27->804" ] }, { @@ -7581,7 +7874,7 @@ "pt": "Francês (Canadá)", "ru": "Французский (Канада)", "xloc": [ - "default.handlebars->25->800" + "default.handlebars->27->805" ] }, { @@ -7594,7 +7887,7 @@ "pt": "Francês (França)", "ru": "Французский (Франция)", "xloc": [ - "default.handlebars->25->801" + "default.handlebars->27->806" ] }, { @@ -7607,7 +7900,7 @@ "pt": "Francês (Luxemburgo)", "ru": "Французский (Люксембург)", "xloc": [ - "default.handlebars->25->802" + "default.handlebars->27->807" ] }, { @@ -7620,7 +7913,7 @@ "pt": "Francês (Mônaco)", "ru": "Французский (Монако)", "xloc": [ - "default.handlebars->25->803" + "default.handlebars->27->808" ] }, { @@ -7633,7 +7926,7 @@ "pt": "Francês (Padrão)", "ru": "Французский (Стандартный)", "xloc": [ - "default.handlebars->25->798" + "default.handlebars->27->803" ] }, { @@ -7646,7 +7939,7 @@ "pt": "Francês (Suíça)", "ru": "Французский (Швейцария)", "xloc": [ - "default.handlebars->25->804" + "default.handlebars->27->809" ] }, { @@ -7659,7 +7952,7 @@ "pt": "Frísio", "ru": "Фризский", "xloc": [ - "default.handlebars->25->805" + "default.handlebars->27->810" ] }, { @@ -7672,7 +7965,7 @@ "pt": "Friuliano", "ru": "Фриульский", "xloc": [ - "default.handlebars->25->806" + "default.handlebars->27->811" ] }, { @@ -7690,9 +7983,9 @@ "default-mobile.handlebars->9->292", "default-mobile.handlebars->9->310", "default-mobile.handlebars->9->64", - "default.handlebars->25->1101", - "default.handlebars->25->1270", - "default.handlebars->25->978" + "default.handlebars->27->1106", + "default.handlebars->27->1275", + "default.handlebars->27->983" ] }, { @@ -7706,7 +7999,7 @@ "pt": "Administrador Pleno (todos os direitos)", "ru": "Администратор с полным доступом (все права)", "xloc": [ - "default.handlebars->25->1124" + "default.handlebars->27->1129" ] }, { @@ -7717,9 +8010,9 @@ "nl": "Volledige apparaatgroep beheerder", "ru": "Администратор группы устройств с полным доступом", "xloc": [ - "default.handlebars->25->1041", - "default.handlebars->25->1307", - "default.handlebars->25->1381" + "default.handlebars->27->1046", + "default.handlebars->27->1312", + "default.handlebars->27->1386" ] }, { @@ -7749,7 +8042,7 @@ "pt": "Administrador completo", "ru": "Администратор с полным доступом", "xloc": [ - "default.handlebars->25->1330" + "default.handlebars->27->1335" ] }, { @@ -7762,7 +8055,7 @@ "pt": "Gaélico (irlandês)", "ru": "Гэльский (Ирландский)", "xloc": [ - "default.handlebars->25->808" + "default.handlebars->27->813" ] }, { @@ -7775,7 +8068,7 @@ "pt": "Gaélico (escocês)", "ru": "Гэльский (Шотландия)", "xloc": [ - "default.handlebars->25->807" + "default.handlebars->27->812" ] }, { @@ -7788,7 +8081,7 @@ "pt": "Galego", "ru": "Галицкий", "xloc": [ - "default.handlebars->25->809" + "default.handlebars->27->814" ] }, { @@ -7802,7 +8095,7 @@ "pt": "Gateway MAC", "ru": "MAC шлюза", "xloc": [ - "default.handlebars->25->106" + "default.handlebars->27->106" ] }, { @@ -7849,7 +8142,7 @@ "pt": "Informações gerais", "ru": "Общая информация", "xloc": [ - "default.handlebars->25->428" + "default.handlebars->27->433" ] }, { @@ -7863,7 +8156,7 @@ "pt": "Gere novos tokens", "ru": "Генерация новых токенов", "xloc": [ - "default.handlebars->25->135" + "default.handlebars->27->135" ] }, { @@ -7876,79 +8169,85 @@ "pt": "Georgiano", "ru": "Грузинский", "xloc": [ - "default.handlebars->25->810" + "default.handlebars->27->815" ] }, { "cs": "němčina (Rakousko)", "de": "Deutsch (Österreich)", "en": "German (Austria)", + "fr": "Allemand (Autriche)", "ja": "ドイツ語(オーストリア)", "nl": "Duits (Oostenrijk)", "pt": "Alemão (Áustria)", "ru": "Немецкий (Австрия)", "xloc": [ - "default.handlebars->25->812" + "default.handlebars->27->817" ] }, { "cs": "němčina (Německo)", "de": "Deutsch (Deutschland)", "en": "German (Germany)", + "fr": "Allemand (Allemagne)", "ja": "ドイツ語(ドイツ)", "nl": "Duits (duitsland)", "pt": "Alemão (Alemanha)", "ru": "Немецкий (Германия)", "xloc": [ - "default.handlebars->25->813" + "default.handlebars->27->818" ] }, { "cs": "němčina (Lichtenštejnsko)", "de": "Deutsch (Liechtenstein)", "en": "German (Liechtenstein)", + "fr": "Allemand (Liechtenstein)", "ja": "ドイツ語(リヒテンシュタイン)", "nl": "Duits (Liechtenstein)", "pt": "Alemão (Liechtenstein)", "ru": "Немецкий (Лихтенштейн)", "xloc": [ - "default.handlebars->25->814" + "default.handlebars->27->819" ] }, { "cs": "němčina (Lucembursko)", "de": "Deutsch (Luxemburg)", "en": "German (Luxembourg)", + "fr": "Allemand (Luxembourg)", "ja": "ドイツ語(ルクセンブルグ)", "nl": "Duits (Luxemburg)", "pt": "Alemão (Luxemburgo)", "ru": "Немецкий (Люксембург)", "xloc": [ - "default.handlebars->25->815" + "default.handlebars->27->820" ] }, { "cs": "němčina (standardní)", "de": "Deutsch (Standard)", "en": "German (Standard)", + "fr": "Allemand (Standard)", "ja": "ドイツ語(標準)", "nl": "Duits (standaard)", "pt": "Alemão (Padrão)", "ru": "Немецкий (Стандартный)", "xloc": [ - "default.handlebars->25->811" + "default.handlebars->27->816" ] }, { "cs": "němčina (Švýcarsko)", "de": "Deutsch (Schweiz)", "en": "German (Switzerland)", + "fr": "Allemand (Suisse)", "ja": "ドイツ語(スイス)", "nl": "Duits (Zwitserland)", "pt": "Alemão (Suíça)", "ru": "Немецкий (Швейцария)", "xloc": [ - "default.handlebars->25->816" + "default.handlebars->27->821" ] }, { @@ -7956,12 +8255,13 @@ "de": "MQTT-Zugangsdaten für dieses Gerät abrufen.", "en": "Get MQTT login credentials for this device.", "es": "Obtenga Credenciales de inicio de sesión MQTT para este dispositivo.", + "fr": "Obtenir des identifiants MQTT pour cet appareil.", "ja": "このデバイスのMQTTログイン資格情報を取得します。", "nl": "Ontvang MQTT-inloggegevens voor dit apparaat.", "pt": "Obtenha credenciais de login do MQTT para este dispositivo.", "ru": "Получить учетные данные MQTT для этого устройства.", "xloc": [ - "default.handlebars->25->528" + "default.handlebars->27->533" ] }, { @@ -8005,7 +8305,7 @@ "pt": "Bom", "ru": "Хорошо", "xloc": [ - "default.handlebars->25->974" + "default.handlebars->27->979" ] }, { @@ -8035,7 +8335,7 @@ "pt": "Grego", "ru": "Греческий", "xloc": [ - "default.handlebars->25->817" + "default.handlebars->27->822" ] }, { @@ -8050,7 +8350,7 @@ "ru": "Группа", "xloc": [ "default-mobile.handlebars->9->134", - "default.handlebars->25->453", + "default.handlebars->27->458", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->1" ] }, @@ -8065,7 +8365,7 @@ "pt": "Ações do grupo", "ru": "Групповое действие", "xloc": [ - "default.handlebars->25->394", + "default.handlebars->27->394", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar" ] }, @@ -8077,7 +8377,7 @@ "nl": "Groeps leden", "ru": "Члены группы", "xloc": [ - "default.handlebars->25->1299" + "default.handlebars->27->1304" ] }, { @@ -8091,7 +8391,7 @@ "pt": "Permissões de grupo para o usuário {0}.", "ru": "Права на группу для пользователя {0}.", "xloc": [ - "default.handlebars->25->1100" + "default.handlebars->27->1105" ] }, { @@ -8102,7 +8402,7 @@ "nl": "Groepsrechten voor {0}.", "ru": "Права на группу для {0}.", "xloc": [ - "default.handlebars->25->1099" + "default.handlebars->27->1104" ] }, { @@ -8127,7 +8427,7 @@ "nl": "Groepen", "ru": "Группы", "xloc": [ - "default.handlebars->25->1214", + "default.handlebars->27->1219", "default.handlebars->container->topbar->1->1->UsersSubMenuSpan->UsersSubMenu->1->0->UsersGroups" ] }, @@ -8141,7 +8441,7 @@ "pt": "Gujarati", "ru": "Гуджарати", "xloc": [ - "default.handlebars->25->818" + "default.handlebars->27->823" ] }, { @@ -8170,7 +8470,7 @@ "pt": "Haitiano", "ru": "Гаитянский", "xloc": [ - "default.handlebars->25->819" + "default.handlebars->27->824" ] }, { @@ -8198,7 +8498,7 @@ "pt": "Forçar desconexão do agente", "ru": "Жесткое отключение агента", "xloc": [ - "default.handlebars->25->716" + "default.handlebars->27->721" ] }, { @@ -8208,7 +8508,7 @@ "es": "Heap Total", "nl": "Heap Totaal", "xloc": [ - "default.handlebars->25->1445" + "default.handlebars->27->1450" ] }, { @@ -8218,7 +8518,7 @@ "es": "Heap Used", "nl": "Heap gebruikt", "xloc": [ - "default.handlebars->25->1444" + "default.handlebars->27->1449" ] }, { @@ -8226,12 +8526,13 @@ "de": "Hebräisch", "en": "Hebrew", "es": "Hebreo", + "fr": "Hébreu", "ja": "ヘブライ語", "nl": "Hebreeuws", "pt": "Hebraico", "ru": "Иврит", "xloc": [ - "default.handlebars->25->820" + "default.handlebars->27->825" ] }, { @@ -8239,11 +8540,12 @@ "de": "Hilf bei der Übersetzung von MeshCentral", "en": "Help translate MeshCentral", "es": "Ayuda traducir MeshCentral", + "fr": "Traduire MeshCentral", "ja": "MeshCentralの翻訳を支援", "nl": "Help bij het vertalen van MeshCentral", "ru": "Помочь перевести MeshCentral", "xloc": [ - "default.handlebars->25->933" + "default.handlebars->27->938" ] }, { @@ -8251,7 +8553,7 @@ "de": "Ruhezustand", "en": "Hibernating", "es": "Hibernando", - "fr": "Hibernation", + "fr": "Veille prolongée", "ja": "冬眠", "nl": "Slaapstand", "pt": "Hibernando", @@ -8259,8 +8561,8 @@ "xloc": [ "default-mobile.handlebars->9->104", "default-mobile.handlebars->9->111", - "default.handlebars->25->358", - "default.handlebars->25->5" + "default.handlebars->27->358", + "default.handlebars->27->5" ] }, { @@ -8273,7 +8575,7 @@ "pt": "Hindi", "ru": "Хинди", "xloc": [ - "default.handlebars->25->821" + "default.handlebars->27->826" ] }, { @@ -8301,7 +8603,7 @@ "ru": "Задержана 1 запись для копирования", "xloc": [ "default-mobile.handlebars->9->263", - "default.handlebars->25->681" + "default.handlebars->27->686" ] }, { @@ -8315,7 +8617,7 @@ "ru": "Задержана 1 запись для перемещения", "xloc": [ "default-mobile.handlebars->9->267", - "default.handlebars->25->685" + "default.handlebars->27->690" ] }, { @@ -8329,7 +8631,7 @@ "ru": "Задержано {0} записей для копирования", "xloc": [ "default-mobile.handlebars->9->261", - "default.handlebars->25->679" + "default.handlebars->27->684" ] }, { @@ -8343,7 +8645,7 @@ "ru": "Задержано {0} записей для перемещения", "xloc": [ "default-mobile.handlebars->9->265", - "default.handlebars->25->683" + "default.handlebars->27->688" ] }, { @@ -8357,7 +8659,7 @@ "ru": "Задержано {0} записей для {2}", "xloc": [ "default-mobile.handlebars->9->88", - "default.handlebars->25->1196" + "default.handlebars->27->1201" ] }, { @@ -8365,6 +8667,7 @@ "de": "Hostname", "en": "Hostname", "es": "Nombre de host", + "fr": "Nom d'hôte", "ja": "ホスト名", "nl": "Hostnaam", "pt": "Hostname", @@ -8374,11 +8677,11 @@ "default-mobile.handlebars->9->137", "default-mobile.handlebars->9->139", "default-mobile.handlebars->9->223", - "default.handlebars->25->239", - "default.handlebars->25->455", - "default.handlebars->25->456", - "default.handlebars->25->458", - "default.handlebars->25->610" + "default.handlebars->27->239", + "default.handlebars->27->460", + "default.handlebars->27->461", + "default.handlebars->27->463", + "default.handlebars->27->615" ] }, { @@ -8391,19 +8694,20 @@ "pt": "Sincronização de nome de host", "ru": "Синхронизация имени хоста", "xloc": [ - "default.handlebars->25->997" + "default.handlebars->27->1002" ] }, { "cs": "maďarština", "de": "Ungarisch", "en": "Hungarian", + "fr": "Hongrois", "ja": "ハンガリー語", "nl": "Hongaars", "pt": "Húngaro", "ru": "Венгерский", "xloc": [ - "default.handlebars->25->822" + "default.handlebars->27->827" ] }, { @@ -8411,12 +8715,13 @@ "de": "IP-Bereich", "en": "IP Range", "es": "Rango de IP", + "fr": "Plage IP", "ja": "IP範囲", "nl": "IP-bereik", "pt": "IP Range", "ru": "Диапазон IP", "xloc": [ - "default.handlebars->25->254" + "default.handlebars->27->254" ] }, { @@ -8424,6 +8729,7 @@ "de": "IP-Adresse gesperrt, versuchen Sie es später erneut.", "en": "IP address blocked, try again later.", "es": "Dirección IP bloqueada, intente nuevamente más tarde.", + "fr": "Adresse IP bloquée, réessayez plus tard.", "ja": "IPアドレスがブロックされています。しばらくしてからもう一度お試しください。", "nl": "IP-adres geblokkeerd, probeer het later opnieuw.", "ru": "IP адрес заблокирован, повторите попытку позже.", @@ -8437,12 +8743,13 @@ "de": "IPv4-Adresse", "en": "IPv4 address", "es": "Dirección IPv4", + "fr": "Adresse IPv4", "ja": "IPv4アドレス", "nl": "IPv4 adres", "pt": "Endereço IPv4", "ru": "IPv4 адрес", "xloc": [ - "default.handlebars->25->100" + "default.handlebars->27->100" ] }, { @@ -8450,12 +8757,13 @@ "de": "IPv4-Gateway", "en": "IPv4 gateway", "es": "Puerta de enlace IPv4", + "fr": "Passerelle IPv4", "ja": "IPv4ゲートウェイ", "nl": "IPv4 gateway", "pt": "Gateway IPv4", "ru": "IPv4 шлюз", "xloc": [ - "default.handlebars->25->104" + "default.handlebars->27->104" ] }, { @@ -8463,12 +8771,13 @@ "de": "IPv4-Netzmaske", "en": "IPv4 mask", "es": "Mascara IPv4", + "fr": "MAsque IPv4", "ja": "IPv4マスク", "nl": "IPv4 mask", "pt": "Máscara IPv4", "ru": "IPv4 маска", "xloc": [ - "default.handlebars->25->102" + "default.handlebars->27->102" ] }, { @@ -8481,7 +8790,7 @@ "pt": "islandês", "ru": "Исландский", "xloc": [ - "default.handlebars->25->823" + "default.handlebars->27->828" ] }, { @@ -8496,7 +8805,7 @@ "ru": "Выбор иконки", "xloc": [ "default-mobile.handlebars->9->221", - "default.handlebars->25->608" + "default.handlebars->27->613" ] }, { @@ -8510,14 +8819,14 @@ "pt": "Identificador", "ru": "Идентификатор", "xloc": [ - "default.handlebars->25->74" + "default.handlebars->27->74" ] }, { "en": "Illegal invocation", "nl": "Ongeldige aanroep", "xloc": [ - "default.handlebars->25->1474" + "default.handlebars->27->1479" ] }, { @@ -8544,12 +8853,13 @@ "cs": "indonézština", "de": "Indonesisch", "en": "Indonesian", + "fr": "Indonésien", "ja": "インドネシア人", "nl": "Indonesisch", "pt": "Indonésia", "ru": "Индонезийский", "xloc": [ - "default.handlebars->25->824" + "default.handlebars->27->829" ] }, { @@ -8585,6 +8895,7 @@ "de": "Eingabe", "en": "Input", "es": "Entrada", + "fr": "Entrée", "ja": "入力", "nl": "Invoer", "pt": "Entrada", @@ -8605,7 +8916,7 @@ "pt": "Instalar", "ru": "Установка", "xloc": [ - "default.handlebars->25->1036" + "default.handlebars->27->1041" ] }, { @@ -8617,7 +8928,7 @@ "nl": "Installeer Google Authenticator of een compatibele applicatie en scan de streepjescode, gebruik deze link of voer de link in geheim. Voer vervolgens het huidige 6-cijferige token hieronder in om 2-staps aanmelding te activeren.", "ru": "Установите Google Authenticator или совместимое приложение и отсканируйте штрих-код, используйте эту ссылку или введите код. Затем введите ниже текущий токен из 6 цифр для активации двухшаговой авторизации.", "xloc": [ - "default.handlebars->25->120" + "default.handlebars->27->120" ] }, { @@ -8643,7 +8954,7 @@ "pt": "Instalar CIRA", "ru": "Установка CIRA", "xloc": [ - "default.handlebars->25->1028" + "default.handlebars->27->1033" ] }, { @@ -8651,12 +8962,13 @@ "de": "Lokal installieren", "en": "Install local", "es": "Instalar local", + "fr": "Installation locale", "ja": "ローカルにインストール", "nl": "Installeer lokaal", "pt": "Instalação local", "ru": "Локальная установка", "xloc": [ - "default.handlebars->25->1030" + "default.handlebars->27->1035" ] }, { @@ -8664,13 +8976,14 @@ "de": "Installationstyp", "en": "Installation Type", "es": "Tipo de instalación", + "fr": "Type d'installation", "ja": "設置タイプ", "nl": "Installatie type", "pt": "Tipo de instalação ", "ru": "Тип установки", "xloc": [ - "default.handlebars->25->298", - "default.handlebars->25->320" + "default.handlebars->27->298", + "default.handlebars->27->320" ] }, { @@ -8683,7 +8996,7 @@ "pt": "Intel (F10 = ESC+[OM)", "ru": "Intel (F10 = ESC+[OM)", "xloc": [ - "default.handlebars->25->651", + "default.handlebars->27->656", "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons" ] }, @@ -8697,10 +9010,10 @@ "pt": "Intel AMT", "ru": "Intel AMT", "xloc": [ - "default.handlebars->25->1156", - "default.handlebars->25->1162", - "default.handlebars->25->1441", - "default.handlebars->25->1461" + "default.handlebars->27->1161", + "default.handlebars->27->1167", + "default.handlebars->27->1446", + "default.handlebars->27->1466" ] }, { @@ -8708,12 +9021,13 @@ "de": "Intel AMT CIRA verbunden", "en": "Intel AMT CIRA connected", "es": "Intel AMT CIRA conectado", + "fr": "Intel AMT CIRA connecté", "ja": "Intel AMT CIRAが接続されました", "nl": "Intel AMT CIRA verbonden", "pt": "Intel AMT CIRA conectado", "ru": "Подключен Intel AMT CIRA", "xloc": [ - "default.handlebars->25->156" + "default.handlebars->27->156" ] }, { @@ -8721,12 +9035,13 @@ "de": "Intel AMT CIRA getrennt", "en": "Intel AMT CIRA disconnected", "es": "Intel AMT CIRA desconectado", + "fr": "Intel AMT CIRA déconnecté", "ja": "Intel AMT CIRAが切断されました", "nl": "Intel AMT CIRA verbroken", "pt": "Intel AMT CIRA desconectado", "ru": "Отключен Intel AMT CIRA", "xloc": [ - "default.handlebars->25->160" + "default.handlebars->27->160" ] }, { @@ -8740,7 +9055,7 @@ "pt": "Intel AMT detectado", "ru": "Обнаружен Intel AMT", "xloc": [ - "default.handlebars->25->155" + "default.handlebars->27->155" ] }, { @@ -8753,7 +9068,7 @@ "pt": "O Intel AMT é ativado no modo de controle de administrador", "ru": "Intel AMT активирован в режиме администратора", "xloc": [ - "default.handlebars->25->471" + "default.handlebars->27->476" ] }, { @@ -8766,7 +9081,7 @@ "pt": "O Intel AMT é ativado no modo de controle do cliente", "ru": "Intel AMT активирован в режиме клиента", "xloc": [ - "default.handlebars->25->469" + "default.handlebars->27->474" ] }, { @@ -8779,7 +9094,7 @@ "pt": "O Intel AMT está configurado com segurança de rede TLS", "ru": "Intel AMT настроен с TLS безопасностью сети", "xloc": [ - "default.handlebars->25->473" + "default.handlebars->27->478" ] }, { @@ -8793,7 +9108,7 @@ "pt": "Intel AMT não detectado", "ru": "Intel AMT не обнаружен", "xloc": [ - "default.handlebars->25->159" + "default.handlebars->27->159" ] }, { @@ -8806,7 +9121,7 @@ "pt": "A Intel AMT precisará ser configurada com um FQDN confiável na MEBx ou ter uma LAN com fio na rede:", "ru": "Intel AMT необходимо установить с доверенным FQDN в MEBx или иметь кабельное подключение к локальной сети:", "xloc": [ - "default.handlebars->25->251" + "default.handlebars->27->251" ] }, { @@ -8814,13 +9129,13 @@ "de": "Intel ASCII", "en": "Intel ASCII", "es": "Intel ASCII", + "fr": "Intel ASCII", "ja": "Intel ASCII", "nl": "Intel ASCII", "pt": "Intel ASCII", "ru": "Intel ASCII", - "fr": "Intel ASCII", "xloc": [ - "default.handlebars->25->650" + "default.handlebars->27->655" ] }, { @@ -8828,20 +9143,20 @@ "de": "Intel® AMT", "en": "Intel® AMT", "es": "Intel® AMT", + "fr": "Intel® AMT", "ja": "Intel® AMT", "nl": "Intel® AMT", "pt": "Intel® AMT", "ru": "Intel® AMT", - "fr": "Intel® AMT", "xloc": [ "default-mobile.handlebars->9->123", "default-mobile.handlebars->9->187", "default-mobile.handlebars->9->192", - "default.handlebars->25->1014", - "default.handlebars->25->1022", - "default.handlebars->25->431", - "default.handlebars->25->481", - "default.handlebars->25->497" + "default.handlebars->27->1019", + "default.handlebars->27->1027", + "default.handlebars->27->436", + "default.handlebars->27->486", + "default.handlebars->27->502" ] }, { @@ -8849,14 +9164,14 @@ "de": "Intel® AMT CIRA", "en": "Intel® AMT CIRA", "es": "Intel® AMT CIRA", + "fr": "Intel® AMT CIRA", "ja": "Intel® AMT CIRA", "nl": "Intel® AMT CIRA", "pt": "Intel® AMT CIRA", "ru": "Intel® AMT CIRA", - "fr": "Intel® AMT CIRA", "xloc": [ "default-mobile.handlebars->9->191", - "default.handlebars->25->495" + "default.handlebars->27->500" ] }, { @@ -8864,14 +9179,15 @@ "de": "Intel® AMT CIRA ist verbunden und einsatzbereit.", "en": "Intel® AMT CIRA is connected and ready for use.", "es": "Intel & reg; AMT CIRA está conectado y listo para usar.", + "fr": "Intel® AMT CIRA est connecté et prêt à être utilisé.", "ja": "Intel® AMT CIRAが接続され、使用できる状態になりました。", "nl": "Intel® AMT CIRA is verbonden en klaar voor gebruik.", "pt": "Intel® O AMT CIRA está conectado e pronto para uso.", "ru": "Intel® AMT CIRA подключен и готов к использованию.", "xloc": [ - "default.handlebars->25->185", - "default.handlebars->25->372", - "default.handlebars->25->494" + "default.handlebars->27->185", + "default.handlebars->27->372", + "default.handlebars->27->499" ] }, { @@ -8879,13 +9195,14 @@ "de": "Intel® AMT verbunden", "en": "Intel® AMT Connected", "es": "Intel® AMT Conectado", + "fr": "Intel® AMT Connecté", "ja": "Intel®接続されたAMT", "nl": "Intel® AMT verbonden", "pt": "Intel® AMT conectado", "ru": "Intel® AMT подключен", "xloc": [ "default-mobile.handlebars->9->5", - "default.handlebars->25->12", + "default.handlebars->27->12", "xterm.handlebars->9->5" ] }, @@ -8899,7 +9216,7 @@ "pt": "Intel® Política da AMT", "ru": "Политика Intel® AMT", "xloc": [ - "default.handlebars->25->1054" + "default.handlebars->27->1059" ] }, { @@ -8925,7 +9242,7 @@ "pt": "Intel® Tag AMT ", "ru": "Intel® AMT Тег", "xloc": [ - "default.handlebars->25->485" + "default.handlebars->27->490" ] }, { @@ -8951,8 +9268,8 @@ "pt": "Intel® Ativação AMT", "ru": "Активация Intel® AMT", "xloc": [ - "default.handlebars->25->249", - "default.handlebars->25->252" + "default.handlebars->27->249", + "default.handlebars->27->252" ] }, { @@ -8960,14 +9277,15 @@ "de": "Intel® AMT verbunden", "en": "Intel® AMT connected", "es": "Intel® AMT conectado", + "fr": "Intel® AMT connecté", "ja": "Intel®接続されたAMT", "nl": "Intel® AMT verbonden", "pt": "Intel® AMT conectado", "ru": "Intel® AMT подключен", "xloc": [ "default-mobile.handlebars->9->201", - "default.handlebars->25->532", - "default.handlebars->25->533" + "default.handlebars->27->537", + "default.handlebars->27->538" ] }, { @@ -8980,8 +9298,8 @@ "pt": "Intel® Área de trabalho AMT e eventos seriais.", "ru": "События Intel® AMT desktop или serial.", "xloc": [ - "default.handlebars->25->1152", - "default.handlebars->25->939" + "default.handlebars->27->1157", + "default.handlebars->27->944" ] }, { @@ -8989,14 +9307,15 @@ "de": "Intel® AMT erkannt", "en": "Intel® AMT detected", "es": "Intel & reg; AMT detectado", + "fr": "Intel® AMT detecté", "ja": "Intel® AMTが検出されました", "nl": "Intel® AMT gedetecteerd", "pt": "Intel® AMT detectado", "ru": "Intel® AMT обнаружен", "xloc": [ "default-mobile.handlebars->9->202", - "default.handlebars->25->534", - "default.handlebars->25->535" + "default.handlebars->27->539", + "default.handlebars->27->540" ] }, { @@ -9009,7 +9328,7 @@ "pt": "Intel® O AMT é roteável e pronto para uso.", "ru": "Intel® AMT маршрутизируется и готов к использованию.", "xloc": [ - "default.handlebars->25->496" + "default.handlebars->27->501" ] }, { @@ -9022,8 +9341,8 @@ "pt": "Intel® AMT é roteável.", "ru": "Intel® AMT маршрутизируется.", "xloc": [ - "default.handlebars->25->187", - "default.handlebars->25->374" + "default.handlebars->27->187", + "default.handlebars->27->374" ] }, { @@ -9050,8 +9369,8 @@ "ru": "Только Intel® AMT, без агента", "xloc": [ "default-mobile.handlebars->9->274", - "default.handlebars->25->968", - "default.handlebars->25->990" + "default.handlebars->27->973", + "default.handlebars->27->995" ] }, { @@ -9064,7 +9383,7 @@ "pt": "Intel® Tecnologia de gerenciamento ativo", "ru": "Технология Intel® Active Management", "xloc": [ - "default.handlebars->25->480" + "default.handlebars->27->485" ] }, { @@ -9078,7 +9397,7 @@ "ru": "Intel® ME", "xloc": [ "default-mobile.handlebars->9->186", - "default.handlebars->25->479" + "default.handlebars->27->484" ] }, { @@ -9086,14 +9405,14 @@ "de": "Intel® SM", "en": "Intel® SM", "es": "Intel® SM", + "fr": "Intel® SM", "ja": "Intel® SM", "nl": "Intel® SM", "pt": "Intel® SM", "ru": "Intel® SM", - "fr": "Intel® SM", "xloc": [ "default-mobile.handlebars->9->188", - "default.handlebars->25->483" + "default.handlebars->27->488" ] }, { @@ -9106,7 +9425,7 @@ "pt": "Intel® Gerenciamento padrão", "ru": "Intel® Standard Manageability", "xloc": [ - "default.handlebars->25->482" + "default.handlebars->27->487" ] }, { @@ -9114,22 +9433,22 @@ "de": "Intel® AMT", "en": "Intel® AMT", "es": "Intel® AMT", + "fr": "Intel® AMT", "ja": "Intel® AMT", "nl": "Intel® AMT", "pt": "Intel® AMT", "ru": "Intel® AMT" - "fr": "Intel® AMT" }, { "cs": "Intel® AMT –", "de": "Intel® AMT -", "en": "Intel® AMT -", "es": "Intel® AMT -", + "fr": "Intel® AMT -", "ja": "Intel® AMT -", "nl": "Intel® AMT -", "pt": "Intel® AMT -", "ru": "Intel® AMT -", - "ru": "Intel® AMT -" "xloc": [ "default.handlebars->container->column_l->p14->p14title->5" ] @@ -9139,11 +9458,11 @@ "de": "Intel® AMT Hardware-KVM", "en": "Intel® AMT Hardware KVM", "es": "Intel® AMT Hardware KVM", + "fr": "Intel® AMT Hardware KVM", "ja": "Intel® AMTハードウェアKVM", "nl": "Intel® AMT Hardware KVM", "pt": "Intel® AMT Hardware KVM", "ru": "Intel® AMT Hardware KVM", - "fr": "Intel® AMT Hardware KVM", "xloc": [ "default-mobile.handlebars->dialog->3->dialog7->d7amtkvm->1", "default.handlebars->container->dialog->dialogBody->dialog7->d7amtkvm->1" @@ -9168,9 +9487,9 @@ "de": "Intel® AMT", "en": "Intel®AMT", "es": "Intel®AMT", + "fr": "Intel®AMT", "nl": "Intel®AMT", "ru": "Intel®AMT", - "fr": "Intel®AMT", "xloc": [ "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevAmt" ] @@ -9180,12 +9499,13 @@ "de": "Interaktiv", "en": "Interactive", "es": "Interactivo", + "fr": "Interactif", "ja": "インタラクティブ", "nl": "Interactief", "pt": "Interativo", "ru": "Интерактивный", "xloc": [ - "default.handlebars->25->633" + "default.handlebars->27->638" ] }, { @@ -9193,13 +9513,14 @@ "de": "Nur interaktiv", "en": "Interactive only", "es": "Solo Interactivo", + "fr": "Interactif seulement", "ja": "インタラクティブのみ", "nl": "Alleen interactief", "pt": "Apenas interativo", "ru": "Только интерактивный режим", "xloc": [ - "default.handlebars->25->301", - "default.handlebars->25->323" + "default.handlebars->27->301", + "default.handlebars->27->323" ] }, { @@ -9213,7 +9534,7 @@ "pt": "Interfaces", "ru": "Интерфейсы", "xloc": [ - "default.handlebars->25->515" + "default.handlebars->27->520" ] }, { @@ -9226,7 +9547,7 @@ "pt": "Inuktitut", "ru": "Инуктитут", "xloc": [ - "default.handlebars->25->825" + "default.handlebars->27->830" ] }, { @@ -9237,7 +9558,7 @@ "nl": "Ongeldige apparaatgroep type", "ru": "Некорректный тип группы устройств", "xloc": [ - "default.handlebars->25->1418" + "default.handlebars->27->1423" ] }, { @@ -9248,7 +9569,7 @@ "nl": "Onjuiste JSON", "ru": "Некорректный JSON", "xloc": [ - "default.handlebars->25->1412" + "default.handlebars->27->1417" ] }, { @@ -9256,13 +9577,14 @@ "de": "Ungültiges JSON-Dateiformat.", "en": "Invalid JSON file format.", "es": "Formato de Archivo JSON inválido.", + "fr": "Fichier JSON invalide.", "ja": "JSONファイル形式が無効です。", "nl": "Ongeldige JSON-bestandsindeling.", "pt": "Formato de arquivo JSON inválido.", "ru": "Некорректный формат файла JSON.", "xloc": [ - "default.handlebars->25->1240", - "default.handlebars->25->1242" + "default.handlebars->27->1245", + "default.handlebars->27->1247" ] }, { @@ -9270,12 +9592,13 @@ "de": "Ungültige JSON-Datei: {0}.", "en": "Invalid JSON file: {0}.", "es": "Formato de Archivo JSON: {0}.", + "fr": "Fichier JSON Invalide : {0}.", "ja": "無効なJSONファイル:{0}。", "nl": "Ongeldig JSON-bestand: {0}.", "pt": "Arquivo JSON inválido: {0}.", "ru": "Некорректный файл JSON: {0}.", "xloc": [ - "default.handlebars->25->1238" + "default.handlebars->27->1243" ] }, { @@ -9286,7 +9609,7 @@ "nl": "Onjuiste PKCS handtekening", "ru": "Некорректная сигнатура PKCS", "xloc": [ - "default.handlebars->25->1410" + "default.handlebars->27->1415" ] }, { @@ -9297,7 +9620,7 @@ "nl": "Ongeldige RSA handtekening", "ru": "Некорректная сигнатура RSA", "xloc": [ - "default.handlebars->25->1411" + "default.handlebars->27->1416" ] }, { @@ -9305,6 +9628,7 @@ "de": "Ungültiges Kontoerstellungstoken.", "en": "Invalid account creation token.", "es": "Token de creación de cuenta no válido.", + "fr": "Jeton de création de compte invalide.", "ja": "アカウント作成トークンが無効です。", "nl": "Ongeldig token voor het maken van een account.", "ru": "Некорректный токен создания учетной записи.", @@ -9318,6 +9642,7 @@ "de": "Ungültige E-Mail.", "en": "Invalid email.", "es": "Correo Electronico inválido.", + "fr": "Email invalide.", "ja": "無効なメール。", "nl": "Ongeldige e-mail.", "ru": "Некорректный email.", @@ -9331,6 +9656,7 @@ "de": "Ungültiges Token, versuchen Sie es erneut.", "en": "Invalid token, try again.", "es": "Token no válido, intente nuevamente.", + "fr": "Jeton invalide, réessayer.", "ja": "トークンが無効です。もう一度お試しください。", "nl": "Ongeldig token, probeer het opnieuw.", "ru": "Некорректный токен, попробуйте еще.", @@ -9344,12 +9670,13 @@ "de": "Einladungslink ({0})", "en": "Invitation Link ({0})", "es": "Enlace de invitación ({0})", + "fr": "Lien de l'invitation ({0})", "ja": "招待リンク({0})", "nl": "Uitnodigingslink ({0})", "pt": "Link de convite ({0})", "ru": "Ссылка для приглашения ({0})", "xloc": [ - "default.handlebars->25->174" + "default.handlebars->27->174" ] }, { @@ -9363,7 +9690,7 @@ "pt": "Tipo de convite", "ru": "Тип приглашения", "xloc": [ - "default.handlebars->25->280" + "default.handlebars->27->280" ] }, { @@ -9377,9 +9704,9 @@ "pt": "Convite", "ru": "Пригласить", "xloc": [ - "default.handlebars->25->1038", - "default.handlebars->25->236", - "default.handlebars->25->313" + "default.handlebars->27->1043", + "default.handlebars->27->236", + "default.handlebars->27->313" ] }, { @@ -9393,7 +9720,7 @@ "pt": "Convide alguém para instalar o agente de malha compartilhando um link de convite.Este link indica ao usuário instruções de instalação para o grupo de dispositivos \\\"{0}\\\". O link é público e nenhuma conta para este servidor é necessária.", "ru": "Пригласите установить Mesh Agent поделившись ссылкой. Эта ссылка ведет на инструкции для установки для группы устройств \\\"{0}\\\". Ссылка общедоступна и не требует наличия учетной записи на сервере.", "xloc": [ - "default.handlebars->25->304" + "default.handlebars->27->304" ] }, { @@ -9407,8 +9734,8 @@ "pt": "Convide alguém para instalar o agente de malha nessa malha.", "ru": "Отправить приглашение на установку Mesh Agent", "xloc": [ - "default.handlebars->25->1037", - "default.handlebars->25->235" + "default.handlebars->27->1042", + "default.handlebars->27->235" ] }, { @@ -9422,7 +9749,7 @@ "pt": "Convide alguém para instalar o agente de malha.Um email será enviado com o link para a instalação do agente de malha para o grupo de dispositivos \\\"{0}\\\".", "ru": "Пригласите установить Mesh Agent. Ссылка на установку для группы \\\"{0}\\\" будет отправлена по электронной почте.", "xloc": [ - "default.handlebars->25->281" + "default.handlebars->27->281" ] }, { @@ -9436,7 +9763,7 @@ "pt": "Irish", "ru": "Ирландский", "xloc": [ - "default.handlebars->25->826" + "default.handlebars->27->831" ] }, { @@ -9449,7 +9776,7 @@ "pt": "Italiano (Padrão)", "ru": "Итальянский (Стандартный)", "xloc": [ - "default.handlebars->25->827" + "default.handlebars->27->832" ] }, { @@ -9462,7 +9789,7 @@ "pt": "Italiano (Suíça)", "ru": "Итальянский (Швейцария)", "xloc": [ - "default.handlebars->25->828" + "default.handlebars->27->833" ] }, { @@ -9476,9 +9803,9 @@ "pt": "Formato JSON", "ru": "Формат JSON", "xloc": [ - "default.handlebars->25->1207", - "default.handlebars->25->1246", - "default.handlebars->25->402" + "default.handlebars->27->1212", + "default.handlebars->27->1251", + "default.handlebars->27->402" ] }, { @@ -9492,7 +9819,7 @@ "pt": "japonês", "ru": "Японский", "xloc": [ - "default.handlebars->25->829" + "default.handlebars->27->834" ] }, { @@ -9504,7 +9831,7 @@ "pt": "Kannada", "ru": "Каннада", "xloc": [ - "default.handlebars->25->830" + "default.handlebars->27->835" ] }, { @@ -9516,7 +9843,7 @@ "pt": "Caxemira", "ru": "Кашмирский", "xloc": [ - "default.handlebars->25->831" + "default.handlebars->27->836" ] }, { @@ -9528,7 +9855,7 @@ "pt": "Cazaque", "ru": "Казахский", "xloc": [ - "default.handlebars->25->832" + "default.handlebars->27->837" ] }, { @@ -9541,7 +9868,7 @@ "pt": "KernelDriver", "ru": "Драйвер ядра", "xloc": [ - "default.handlebars->25->634" + "default.handlebars->27->639" ] }, { @@ -9555,8 +9882,8 @@ "pt": "Nome da chave", "ru": "Имя ключа", "xloc": [ - "default.handlebars->25->723", - "default.handlebars->25->726" + "default.handlebars->27->728", + "default.handlebars->27->731" ] }, { @@ -9582,7 +9909,7 @@ "pt": "Khmer", "ru": "Кхмерский", "xloc": [ - "default.handlebars->25->833" + "default.handlebars->27->838" ] }, { @@ -9594,7 +9921,7 @@ "pt": "Kirghiz", "ru": "Киргизский", "xloc": [ - "default.handlebars->25->834" + "default.handlebars->27->839" ] }, { @@ -9606,7 +9933,7 @@ "pt": "Klingon", "ru": "Клингонский", "xloc": [ - "default.handlebars->25->835" + "default.handlebars->27->840" ] }, { @@ -9619,7 +9946,7 @@ "pt": "coreano", "ru": "Korean", "xloc": [ - "default.handlebars->25->836" + "default.handlebars->27->841" ] }, { @@ -9632,7 +9959,7 @@ "pt": "Coreano (Coréia do Norte)", "ru": "Корейский (Северная Корея)", "xloc": [ - "default.handlebars->25->837" + "default.handlebars->27->842" ] }, { @@ -9645,22 +9972,22 @@ "pt": "Coreano (Coréia do Sul)", "ru": "Корейский (Южная Корея)", "xloc": [ - "default.handlebars->25->838" + "default.handlebars->27->843" ] }, { "cs": "LF", + "de": "LF", "en": "LF", "es": "LF", + "fr": "LF", "ja": "LF", "nl": "LF", "pt": "LF", - "de": "LF", "ru": "LF", - "fr": "LF", "xloc": [ - "default.handlebars->25->646", - "default.handlebars->25->655" + "default.handlebars->27->651", + "default.handlebars->27->660" ] }, { @@ -9674,7 +10001,7 @@ "pt": "Língua", "ru": "Язык", "xloc": [ - "default.handlebars->25->931" + "default.handlebars->27->936" ] }, { @@ -9702,7 +10029,7 @@ "pt": "Foco grande", "ru": "Большой Фокус", "xloc": [ - "default.handlebars->25->623" + "default.handlebars->27->628" ] }, { @@ -9855,7 +10182,7 @@ "pt": "Último acesso", "ru": "Последний доступ", "xloc": [ - "default.handlebars->25->1215" + "default.handlebars->27->1220" ] }, { @@ -9869,7 +10196,7 @@ "pt": "Último login", "ru": "Последний вход в систему", "xloc": [ - "default.handlebars->25->1342" + "default.handlebars->27->1347" ] }, { @@ -9883,9 +10210,9 @@ "pt": "Último endereço do agente", "ru": "Последний адрес агента", "xloc": [ - "default.handlebars->25->88", - "default.handlebars->25->89", - "default.handlebars->25->91" + "default.handlebars->27->88", + "default.handlebars->27->89", + "default.handlebars->27->91" ] }, { @@ -9899,7 +10226,7 @@ "pt": "Última conexão do agente", "ru": "Последнее подключение агента", "xloc": [ - "default.handlebars->25->87" + "default.handlebars->27->87" ] }, { @@ -9913,7 +10240,7 @@ "pt": "Última alteração: {0}", "ru": "Последнее изменение: {0}", "xloc": [ - "default.handlebars->25->1346" + "default.handlebars->27->1351" ] }, { @@ -9941,7 +10268,7 @@ "pt": "Última atualização de interfaces", "ru": "Последнее обновление интерфейсов", "xloc": [ - "default.handlebars->25->93" + "default.handlebars->27->93" ] }, { @@ -9949,12 +10276,13 @@ "de": "Letzte Anmeldung: {0}", "en": "Last login: {0}", "es": "Último acceso: {0}", + "fr": "Dernière connexion: {0}", "ja": "最終ログイン:{0}", "nl": "Laatste inlog: {0}", "pt": "Último login: {0}", "ru": "Последний вход в систему: {0}", "xloc": [ - "default.handlebars->25->1225" + "default.handlebars->27->1230" ] }, { @@ -9968,8 +10296,8 @@ "pt": "Visto pela última vez:", "ru": "Последнее посещение:", "xloc": [ - "default.handlebars->25->538", - "default.handlebars->25->83" + "default.handlebars->27->543", + "default.handlebars->27->83" ] }, { @@ -10010,7 +10338,7 @@ "pt": "Última versão", "ru": "Последняя версия", "xloc": [ - "default.handlebars->25->111" + "default.handlebars->27->111" ] }, { @@ -10024,7 +10352,7 @@ "pt": "Latim", "ru": "Латинский", "xloc": [ - "default.handlebars->25->839" + "default.handlebars->27->844" ] }, { @@ -10037,7 +10365,7 @@ "pt": "letão", "ru": "Латышский", "xloc": [ - "default.handlebars->25->840" + "default.handlebars->27->845" ] }, { @@ -10045,6 +10373,7 @@ "de": "Oberfläche mit Leiste links", "en": "Left bar interface", "es": "Interfaz de barra izquierda", + "fr": "Barre de gauche", "ja": "左バーインターフェイス", "nl": "Linkerbalk interface", "pt": "Interface da barra esquerda", @@ -10068,7 +10397,7 @@ "pt": "Menos", "ru": "Меньше", "xloc": [ - "default.handlebars->25->1478" + "default.handlebars->27->1483" ] }, { @@ -10076,6 +10405,7 @@ "de": "Es können maximal 10 Dateien gleichzeitig hochgeladen werden.", "en": "Limit of 10 file uploads at the same time.", "es": "Límite de 10 cargas de archivos al mismo tiempo.", + "fr": "10 chargements maximum en même temps", "ja": "同時にアップロードできるファイルの上限は10です。", "nl": "Limiet van 10 bestandsuploads tegelijkertijd.", "pt": "Limite de 10 uploads de arquivos ao mesmo tempo.", @@ -10096,7 +10426,7 @@ "ru": "Ограниченный ввод", "xloc": [ "default-mobile.handlebars->9->323", - "default.handlebars->25->1137" + "default.handlebars->27->1142" ] }, { @@ -10110,7 +10440,7 @@ "ru": "Ограничить элементы ввода", "xloc": [ "default-mobile.handlebars->9->298", - "default.handlebars->25->1107" + "default.handlebars->27->1112" ] }, { @@ -10125,7 +10455,7 @@ "ru": "Ссылка", "xloc": [ "default-mobile.handlebars->9->68", - "default.handlebars->25->1168", + "default.handlebars->27->1173", "default.handlebars->container->column_l->p42->p42tbl->1->0->4" ] }, @@ -10140,8 +10470,8 @@ "pt": "Expiração do link", "ru": "Срок действия ссылки", "xloc": [ - "default.handlebars->25->291", - "default.handlebars->25->305" + "default.handlebars->27->291", + "default.handlebars->27->305" ] }, { @@ -10149,11 +10479,11 @@ "de": "Linux", "en": "Linux", "es": "Linux", + "fr": "Linux", "ja": "Linux", "nl": "Linux", "pt": "Linux", "ru": "Linux", - "fr": "Linux", "xloc": [ "agentinvite.handlebars->container->column_l->5->1->tlinuxtab", "agentinvite.handlebars->container->column_l->5->linuxtab->1" @@ -10164,13 +10494,13 @@ "de": "Linux / BSD", "en": "Linux / BSD", "es": "Linux / BSD", + "fr": "Linux / BSD", "ja": "Linux / BSD", "nl": "Linux / BSD", "pt": "Linux / BSD", "ru": "Linux / BSD", - "fr": "Linux / BSD", "xloc": [ - "default.handlebars->25->316" + "default.handlebars->27->316" ] }, { @@ -10183,7 +10513,7 @@ "pt": "Linux / BSD (desinstalação)", "ru": "Linux / BSD (Удаление)", "xloc": [ - "default.handlebars->25->319" + "default.handlebars->27->319" ] }, { @@ -10191,14 +10521,14 @@ "de": "Linux 32bit", "en": "Linux 32bit", "es": "Linux 32bit", + "fr": "Linux 32bit", "ja": "Linux 32ビット", "nl": "Linux 32bit", "pt": "Linux 32 bits", "ru": "Linux 32bit", - "fr": "Linux 32bit", "xloc": [ "default-mobile.handlebars->9->148", - "default.handlebars->25->18" + "default.handlebars->27->18" ] }, { @@ -10206,14 +10536,14 @@ "de": "Linux 64bit", "en": "Linux 64bit", "es": "Linux 64bit", + "fr": "Linux 64bit", "ja": "Linux 64ビット", "nl": "Linux 64bit", "pt": "Linux 64 bits", "ru": "Linux 64bit", - "fr": "Linux 64bit", "xloc": [ "default-mobile.handlebars->9->149", - "default.handlebars->25->19" + "default.handlebars->27->19" ] }, { @@ -10221,14 +10551,14 @@ "de": "Linux ARM", "en": "Linux ARM", "es": "Linux ARM", + "fr": "Linux ARM", "ja": "Linux ARM", "nl": "Linux ARM", "pt": "Linux ARM", "ru": "Linux ARM", - "fr": "Linux ARM", "xloc": [ "default-mobile.handlebars->9->153", - "default.handlebars->25->23" + "default.handlebars->27->23" ] }, { @@ -10236,13 +10566,13 @@ "de": "Linux ARM, Raspberry Pi (32bit)", "en": "Linux ARM, Raspberry Pi (32bit)", "es": "Linux ARM, Raspberry Pi (32bit)", + "fr": "Linux ARM, Raspberry Pi (32bit)", "ja": "Linux ARM、Raspberry Pi(32ビット)", "nl": "Linux ARM, Raspberry Pi (32bit)", "pt": "Linux ARM, Raspberry Pi (32 bits)", "ru": "Linux ARM, Raspberry Pi (32bit)", - "fr": "Linux ARM, Raspberry Pi (32bit)", "xloc": [ - "default.handlebars->25->591" + "default.handlebars->27->596" ] }, { @@ -10250,14 +10580,14 @@ "de": "Linux NoKVM x86-32bit", "en": "Linux NoKVM x86-32bit", "es": "Linux NoKVM x86-32bit", + "fr": "Linux NoKVM x86-32bit", "ja": "Linux NoKVM x86-32bit", "nl": "Linux NoKVM x86-32bit", "pt": "Linux NoKVM x86-32 bits", "ru": "Linux NoKVM x86-32bit", - "fr": "Linux NoKVM x86-32bit", "xloc": [ "default-mobile.handlebars->9->162", - "default.handlebars->25->32" + "default.handlebars->27->32" ] }, { @@ -10265,14 +10595,14 @@ "de": "Linux NoKVM x86-64bit", "en": "Linux NoKVM x86-64bit", "es": "Linux NoKVM x86-64bit", + "fr": "Linux NoKVM x86-64bit", "ja": "Linux NoKVM x86-64ビット", "nl": "Linux NoKVM x86-64bit", "pt": "Linux NoKVM x86-64 bits", "ru": "Linux NoKVM x86-64bit", - "fr": "Linux NoKVM x86-64bit", "xloc": [ "default-mobile.handlebars->9->163", - "default.handlebars->25->33" + "default.handlebars->27->33" ] }, { @@ -10280,14 +10610,14 @@ "de": "Linux Poky x86-32bit", "en": "Linux Poky x86-32bit", "es": "Linux Poky x86-32bit", + "fr": "Linux Poky x86-32bit", "ja": "Linux Poky x86-32bit", "nl": "Linux Poky x86-32bit", "pt": "Linux Poky x86-32 bits", "ru": "Linux Poky x86-32bit", - "fr": "Linux Poky x86-32bit", "xloc": [ "default-mobile.handlebars->9->158", - "default.handlebars->25->28" + "default.handlebars->27->28" ] }, { @@ -10295,14 +10625,14 @@ "de": "Linux Poky x86-64bit", "en": "Linux Poky x86-64bit", "es": "Linux Poky x86-64bit", + "fr": "Linux Poky x86-64bit", "ja": "Linux Poky x86-64bit", "nl": "Linux Poky x86-64bit", "pt": "Linux Poky x86-64 bits", "ru": "Linux Poky x86-64bit", - "fr": "Linux Poky x86-64bit", "xloc": [ "default-mobile.handlebars->9->161", - "default.handlebars->25->31" + "default.handlebars->27->31" ] }, { @@ -10310,12 +10640,13 @@ "de": "nur Linux", "en": "Linux only", "es": "Solo Linux", + "fr": "Linux seulement", "ja": "Linuxのみ", "nl": "alleen Linux", "pt": "Apenas Linux", "ru": "Только Linux", "xloc": [ - "default.handlebars->25->290" + "default.handlebars->27->290" ] }, { @@ -10323,13 +10654,13 @@ "de": "Linux x86 (32bit)", "en": "Linux x86 (32bit)", "es": "Linux x86 (32bit)", + "fr": "Linux x86 (32bit)", "ja": "Linux x86(32ビット)", "nl": "Linux x86 (32bit)", "pt": "Linux x86 (32 bits)", "ru": "Linux x86 (32bit)", - "fr": "Linux x86 (32bit)", "xloc": [ - "default.handlebars->25->588" + "default.handlebars->27->593" ] }, { @@ -10337,13 +10668,13 @@ "de": "Linux x86 (64bit)", "en": "Linux x86 (64bit)", "es": "Linux x86 (64bit)", + "fr": "Linux x86 (64bit)", "ja": "Linux x86(64ビット)", "nl": "Linux x86 (64bit)", "pt": "Linux x86 (64 bits)", "ru": "Linux x86 (64bit)", - "fr": "Linux x86 (64bit)", "xloc": [ - "default.handlebars->25->589" + "default.handlebars->27->594" ] }, { @@ -10372,7 +10703,7 @@ "pt": "Lituano", "ru": "Литовский", "xloc": [ - "default.handlebars->25->841" + "default.handlebars->27->846" ] }, { @@ -10387,10 +10718,10 @@ "ru": "Загрузка...", "xloc": [ "default-mobile.handlebars->9->31", - "default.handlebars->25->583", - "default.handlebars->25->719", - "default.handlebars->25->985", - "default.handlebars->25->987" + "default.handlebars->27->588", + "default.handlebars->27->724", + "default.handlebars->27->990", + "default.handlebars->27->992" ] }, { @@ -10424,6 +10755,7 @@ "de": "Lokale Datei hochladen", "en": "Local file upload", "es": "Carga local de archivos", + "fr": "Charger un fichier local", "ja": "ローカルファイルのアップロード", "nl": "Lokaal bestand uploaden", "pt": "Upload de arquivo local", @@ -10437,12 +10769,13 @@ "de": "Lokalisierungseinstellungen", "en": "Localization Settings", "es": "Configuraciones de localización", + "fr": "Paramètres de localisation", "ja": "ローカリゼーション設定", "nl": "Lokalisatie instellingen", "pt": "Configurações de localização", "ru": "Настройки локализации", "xloc": [ - "default.handlebars->25->934", + "default.handlebars->27->939", "default.handlebars->container->column_l->p2->p2AccountActions->3->5" ] }, @@ -10456,7 +10789,7 @@ "pt": "Localização", "ru": "Местонахождение", "xloc": [ - "default.handlebars->25->517" + "default.handlebars->27->522" ] }, { @@ -10483,7 +10816,7 @@ "pt": "Bloquear conta", "ru": "Заблокировать учетную запись", "xloc": [ - "default.handlebars->25->1276" + "default.handlebars->27->1281" ] }, { @@ -10497,7 +10830,7 @@ "pt": "Bloqueado", "ru": "Заблокирован", "xloc": [ - "default.handlebars->25->1226" + "default.handlebars->27->1231" ] }, { @@ -10511,7 +10844,7 @@ "pt": "Conta bloqueada", "ru": "Заблокированная учетная запись", "xloc": [ - "default.handlebars->25->1327" + "default.handlebars->27->1332" ] }, { @@ -10519,12 +10852,13 @@ "de": "Ereignis eintragen", "en": "Log Event", "es": "Registro de Evento", + "fr": "Journal des évènements", "ja": "ログイベント", "nl": "Gebeurtenissenlog", "pt": "Log de Evento", "ru": "Добавить событие", "xloc": [ - "default.handlebars->25->508" + "default.handlebars->27->513" ] }, { @@ -10548,11 +10882,11 @@ "de": "Logarithmische Skala", "en": "Log-X", "es": "Log-X", + "fr": "Log-X", "ja": "Log-X", "nl": "Log-X", "pt": "Log-X", "ru": "Log-X", - "fr": "Log-X", "xloc": [ "default.handlebars->container->column_l->p40->3->3->3" ] @@ -10562,6 +10896,7 @@ "de": "Anmeldung", "en": "Login", "es": "Iniciar sesión", + "fr": "Connexion", "ja": "ログイン", "nl": "Inloggen", "pt": "Entrar", @@ -10586,6 +10921,7 @@ "de": "Anmeldung fehlgeschlagen, Benutzername und Passwort prüfen.", "en": "Login failed, check username and password.", "es": "Error de inicio de sesión, verifique nombre de usuario y contraseña.", + "fr": "Erreur de connexion, vérifiez vos identifiants.", "ja": "ログインに失敗しました。ユーザー名とパスワードを確認してください。", "nl": "Inloggen mislukt, controleer gebruikersnaam en wachtwoord.", "ru": "Вход не выполнен, проверьте имя пользователя и пароль.", @@ -10599,6 +10935,7 @@ "de": "Anmelde-Token:", "en": "Login token:", "es": "Token de inicio de sesión:", + "fr": "Jeton de connexion:", "ja": "ログイントークン:", "nl": "Inlog token:", "pt": "Token de logon:", @@ -10622,7 +10959,7 @@ "ru": "Выйти", "xloc": [ "default-mobile.handlebars->topMenu->logoutMenuOption->0->0", - "default.handlebars->25->45", + "default.handlebars->27->45", "terms.handlebars->3->2" ] }, @@ -10637,7 +10974,7 @@ "pt": "Luxemburguês", "ru": "Люксембургский", "xloc": [ - "default.handlebars->25->842" + "default.handlebars->27->847" ] }, { @@ -10651,7 +10988,7 @@ "pt": "Endereço MAC", "ru": "MAC адрес", "xloc": [ - "default.handlebars->25->98" + "default.handlebars->27->98" ] }, { @@ -10659,14 +10996,14 @@ "de": "MIPS", "en": "MIPS", "es": "MIPS", + "fr": "MIPS", "ja": "MIPS", "nl": "MIPS", "pt": "MIPS", "ru": "MIPS", - "fr": "MIPS", "xloc": [ "default-mobile.handlebars->9->150", - "default.handlebars->25->20" + "default.handlebars->27->20" ] }, { @@ -10680,8 +11017,8 @@ "pt": "Servidor MPS", "ru": "MPS Сервер", "xloc": [ - "default.handlebars->25->273", - "default.handlebars->25->278" + "default.handlebars->27->273", + "default.handlebars->27->278" ] }, { @@ -10689,19 +11026,19 @@ "de": "MQTT", "en": "MQTT", "es": "MQTT", + "fr": "MQTT", "ja": "MQTT", "nl": "MQTT", "pt": "MQTT", "ru": "MQTT", - "fr": "MQTT", "xloc": [ "default-mobile.handlebars->9->125", "default-mobile.handlebars->9->194", - "default.handlebars->25->192", - "default.handlebars->25->379", - "default.handlebars->25->501", - "default.handlebars->25->706", - "default.handlebars->25->707", + "default.handlebars->27->192", + "default.handlebars->27->379", + "default.handlebars->27->506", + "default.handlebars->27->711", + "default.handlebars->27->712", "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->3" ] }, @@ -10715,7 +11052,7 @@ "pt": "Credenciais MQTT", "ru": "MQTT Учетные данные", "xloc": [ - "default.handlebars->25->176" + "default.handlebars->27->176" ] }, { @@ -10723,12 +11060,13 @@ "de": "MQTT-Anmeldung", "en": "MQTT Login", "es": "Inicio de sesión MQTT", + "fr": "Connexion MQTT", "ja": "MQTTログイン", "nl": "MQTT Login", "pt": "Login do MQTT", "ru": "MQTT Вход", "xloc": [ - "default.handlebars->25->529" + "default.handlebars->27->534" ] }, { @@ -10742,7 +11080,7 @@ "ru": "Подключен MQTT канал", "xloc": [ "default-mobile.handlebars->9->203", - "default.handlebars->25->537" + "default.handlebars->27->542" ] }, { @@ -10750,13 +11088,14 @@ "de": "MQTT verbunden", "en": "MQTT connected", "es": "MQTT conectado", + "fr": "MQTT connecté", "ja": "MQTT接続済み", "nl": "MQTT verbonden", "pt": "MQTT conectado", "ru": "Подключен MQTT", "xloc": [ - "default.handlebars->25->157", - "default.handlebars->25->536" + "default.handlebars->27->157", + "default.handlebars->27->541" ] }, { @@ -10764,14 +11103,15 @@ "de": "MQTT-Verbindung zum Gerät ist aktiv.", "en": "MQTT connection to the device is active.", "es": "La conexión MQTT al dispositivo está activa.", + "fr": "La connection MQTT est active pour cet appareil.", "ja": "デバイスへのMQTT接続がアクティブです。", "nl": "MQTT verbinding met het apparaat is actief.", "pt": "A conexão MQTT com o dispositivo está ativa.", "ru": "MQTT подключение к устройству активно.", "xloc": [ - "default.handlebars->25->191", - "default.handlebars->25->378", - "default.handlebars->25->500" + "default.handlebars->27->191", + "default.handlebars->27->378", + "default.handlebars->27->505" ] }, { @@ -10779,12 +11119,13 @@ "de": "MQTT getrennt", "en": "MQTT disconnected", "es": "MQTT desconectado", + "fr": "MQTT déconnecté", "ja": "MQTTが切断されました", "nl": "MQTT verbroken", "pt": "MQTT desconectado", "ru": "MQTT отключено", "xloc": [ - "default.handlebars->25->161" + "default.handlebars->27->161" ] }, { @@ -10792,11 +11133,11 @@ "de": "MacOS", "en": "MacOS", "es": "MacOS", + "fr": "MacOS", "ja": "マックOS", "nl": "MacOS", "pt": "MacOS", "ru": "MacOS", - "fr": "MacOS", "xloc": [ "agentinvite.handlebars->container->column_l->5->1->tmacostab" ] @@ -10806,13 +11147,13 @@ "de": "MacOS (64bit)", "en": "MacOS (64bit)", "es": "MacOS (64bit)", + "fr": "MacOS (64bit)", "ja": "MacOS(64ビット)", "nl": "MacOS (64bit)", "pt": "MacOS (64 bits)", "ru": "MacOS (64bit)", - "fr": "MacOS (64bit)", "xloc": [ - "default.handlebars->25->590" + "default.handlebars->27->595" ] }, { @@ -10826,7 +11167,7 @@ "ru": "MacOS 32bit", "xloc": [ "default-mobile.handlebars->9->154", - "default.handlebars->25->24" + "default.handlebars->27->24" ] }, { @@ -10840,7 +11181,7 @@ "ru": "MacOS 64bit", "xloc": [ "default-mobile.handlebars->9->159", - "default.handlebars->25->29" + "default.handlebars->27->29" ] }, { @@ -10848,12 +11189,13 @@ "de": "Hauptserver-Nachrichten", "en": "Main Server Messages", "es": "Mensajes del Servidor Principal", + "fr": "Messages du serveur principal", "ja": "メインサーバーメッセージ", "nl": "Hoofdserver berichten", "pt": "Mensagens do servidor principal", "ru": "Сообщения главного сервера", "xloc": [ - "default.handlebars->25->1452" + "default.handlebars->27->1457" ] }, { @@ -10866,7 +11208,7 @@ "pt": "Malaio", "ru": "Малайский", "xloc": [ - "default.handlebars->25->844" + "default.handlebars->27->849" ] }, { @@ -10878,19 +11220,20 @@ "pt": "Malaiala", "ru": "Малаяламский", "xloc": [ - "default.handlebars->25->845" + "default.handlebars->27->850" ] }, { "cs": "maltština", "de": "Maltesisch", "en": "Maltese", + "fr": "Maltais", "ja": "マルタ語", "nl": "Maltese", "pt": "Maltês", "ru": "Мальтийский", "xloc": [ - "default.handlebars->25->846" + "default.handlebars->27->851" ] }, { @@ -10898,13 +11241,14 @@ "de": "Sicherungscodes verwalten", "en": "Manage Backup Codes", "es": "Administrar códigos de respaldo", + "fr": "Gérer les codes de récupérations", "ja": "バックアップコードの管理", "nl": "Beheer back-up codes", "pt": "Gerenciar códigos de backup", "ru": "Управление резервными кодами", "xloc": [ "default-mobile.handlebars->9->29", - "default.handlebars->25->138" + "default.handlebars->27->138" ] }, { @@ -10919,8 +11263,8 @@ "xloc": [ "default-mobile.handlebars->9->295", "default-mobile.handlebars->9->313", - "default.handlebars->25->1104", - "default.handlebars->25->1127" + "default.handlebars->27->1109", + "default.handlebars->27->1132" ] }, { @@ -10935,8 +11279,8 @@ "xloc": [ "default-mobile.handlebars->9->294", "default-mobile.handlebars->9->312", - "default.handlebars->25->1103", - "default.handlebars->25->1126" + "default.handlebars->27->1108", + "default.handlebars->27->1131" ] }, { @@ -10944,12 +11288,13 @@ "de": "Sicherheitsschlüssel verwalten", "en": "Manage Security Keys", "es": "Administrar claves de seguridad", + "fr": "Gérer les clés de sécurité", "ja": "セキュリティキーを管理する", "nl": "Beheer beveiligingssleutels", "pt": "Gerenciar chaves de segurança", "ru": "Управление ключами безопасности", "xloc": [ - "default.handlebars->25->145" + "default.handlebars->27->145" ] }, { @@ -10960,7 +11305,7 @@ "nl": "Beheer gebruikersgroepen.", "ru": "Управление группами пользователя", "xloc": [ - "default.handlebars->25->1275" + "default.handlebars->27->1280" ] }, { @@ -10974,7 +11319,7 @@ "pt": "Gerenciar Usuários", "ru": "Управление пользователями", "xloc": [ - "default.handlebars->25->1274" + "default.handlebars->27->1279" ] }, { @@ -10982,6 +11327,7 @@ "de": "Authentifikator-App verwalten", "en": "Manage authenticator app", "es": "Administrar la aplicación de autenticación", + "fr": "Gérer la double authentification", "ja": "認証アプリを管理する", "nl": "Beheer authenticator-app", "pt": "Gerenciar aplicativo autenticador", @@ -10996,6 +11342,7 @@ "de": "Sicherungscodes verwalten", "en": "Manage backup codes", "es": "Administrar códigos de respaldo", + "fr": "Gérer les codes de récupérations", "ja": "バックアップコードを管理する", "nl": "Beheer back-up codes", "pt": "Gerenciar códigos de backup", @@ -11010,6 +11357,7 @@ "de": "Sicherheitsschlüssel verwalten", "en": "Manage security keys", "es": "Administrar claves de seguridad", + "fr": "Gérer les clés de sécurité", "ja": "セキュリティキーを管理する", "nl": "Beheer beveiligingssleutels", "pt": "Gerenciar chaves de segurança", @@ -11029,7 +11377,7 @@ "pt": "Gerenciar usando um agente de software", "ru": "Управление с помощью программного агента", "xloc": [ - "default.handlebars->25->967" + "default.handlebars->27->972" ] }, { @@ -11044,7 +11392,7 @@ "ru": "Управляется с помощью программного агента", "xloc": [ "default-mobile.handlebars->9->275", - "default.handlebars->25->991" + "default.handlebars->27->996" ] }, { @@ -11057,7 +11405,7 @@ "pt": "Gerenciador", "ru": "Менеджер", "xloc": [ - "default.handlebars->25->1231" + "default.handlebars->27->1236" ] }, { @@ -11071,7 +11419,7 @@ "pt": "Certificado manual", "ru": "Ручной Сертификат", "xloc": [ - "default.handlebars->25->260" + "default.handlebars->27->260" ] }, { @@ -11085,7 +11433,7 @@ "pt": "Nome de usuário / senha manual", "ru": "Ручной Имя пользователя/Пароль", "xloc": [ - "default.handlebars->25->259" + "default.handlebars->27->259" ] }, { @@ -11097,7 +11445,7 @@ "pt": "Maori", "ru": "Маори", "xloc": [ - "default.handlebars->25->847" + "default.handlebars->27->852" ] }, { @@ -11125,7 +11473,7 @@ "pt": "Marathi", "ru": "Маратхи", "xloc": [ - "default.handlebars->25->848" + "default.handlebars->27->853" ] }, { @@ -11136,7 +11484,7 @@ "nl": "Max Sessies bereikt", "ru": "Достигнуто максимальное число сессий", "xloc": [ - "default.handlebars->25->1416" + "default.handlebars->27->1421" ] }, { @@ -11181,7 +11529,7 @@ "pt": "Megabytes", "ru": "Мегабайт", "xloc": [ - "default.handlebars->25->1442" + "default.handlebars->27->1447" ] }, { @@ -11195,8 +11543,8 @@ "pt": "Memória", "ru": "ОЗУ", "xloc": [ - "default.handlebars->25->1433", - "default.handlebars->25->75", + "default.handlebars->27->1438", + "default.handlebars->27->75", "default.handlebars->container->column_l->p40->3->1->p40type->3" ] }, @@ -11211,13 +11559,13 @@ "ru": "Mesh Agent", "xloc": [ "default-mobile.handlebars->9->200", - "default.handlebars->25->325", - "default.handlebars->25->328", - "default.handlebars->25->336", - "default.handlebars->25->339", - "default.handlebars->25->342", - "default.handlebars->25->462", - "default.handlebars->25->493" + "default.handlebars->27->325", + "default.handlebars->27->328", + "default.handlebars->27->336", + "default.handlebars->27->339", + "default.handlebars->27->342", + "default.handlebars->27->467", + "default.handlebars->27->498" ] }, { @@ -11231,19 +11579,20 @@ "ru": "Консоль Mesh Agent", "xloc": [ "default-mobile.handlebars->9->302", - "default.handlebars->25->1111" + "default.handlebars->27->1116" ] }, { "cs": "Mesh předávání (relay)", "en": "Mesh Relay", "es": "Relé de Mesh", + "fr": "Relais Mesh", "ja": "メッシュリレー", "nl": "Mesh Relay", "pt": "Mesh Relay", "ru": "Ретранслятор Mesh", "xloc": [ - "default.handlebars->25->499" + "default.handlebars->27->504" ] }, { @@ -11251,14 +11600,15 @@ "de": "Mesh Agent ist verbunden und bereit.", "en": "Mesh agent is connected and ready for use.", "es": "El agente Mesh está conectado y listo para usar.", + "fr": "L'agent est connecté et prêt à être utilisé.", "ja": "メッシュエージェントが接続され、使用できる状態になりました。", "nl": "Mesh-agent is verbonden en klaar voor gebruik.", "pt": "O agente de malha está conectado e pronto para uso.", "ru": "Mesh Agent подключен и готов к использованию.", "xloc": [ - "default.handlebars->25->183", - "default.handlebars->25->370", - "default.handlebars->25->492" + "default.handlebars->27->183", + "default.handlebars->27->370", + "default.handlebars->27->497" ] }, { @@ -11271,20 +11621,20 @@ "pt": "O agente de malha é alcançável usando outro agente como retransmissão.", "ru": "Mesh Agent доступен с использованием другого агента в качестве ретранслятора.", "xloc": [ - "default.handlebars->25->189", - "default.handlebars->25->376", - "default.handlebars->25->498" + "default.handlebars->27->189", + "default.handlebars->27->376", + "default.handlebars->27->503" ] }, { "en": "MeshAction (.txt)", "es": "MeshAction (.txt)", + "fr": "MeshAction (.txt)", "nl": "MeshAction (.txt)", "ru": "MeshAction (.txt)", - "fr": "MeshAction (.txt)", "xloc": [ - "default.handlebars->25->597", - "default.handlebars->25->599" + "default.handlebars->27->602", + "default.handlebars->27->604" ] }, { @@ -11296,7 +11646,7 @@ "nl": "MeshAgent verkeer", "ru": "Трафик MeshAgent", "xloc": [ - "default.handlebars->25->1454" + "default.handlebars->27->1459" ] }, { @@ -11304,11 +11654,12 @@ "de": "Mesh-Agent-Aktualisierung", "en": "MeshAgent update", "es": "Actualización de MeshAgent", + "fr": "Mise à jour de l'agent", "ja": "MeshAgentの更新", "nl": "MeshAgent update", "ru": "Обновление MeshAgent", "xloc": [ - "default.handlebars->25->1455" + "default.handlebars->27->1460" ] }, { @@ -11334,7 +11685,7 @@ "pt": "MeshCentral Errors", "ru": "Ошибки MeshCentral", "xloc": [ - "default.handlebars->25->986" + "default.handlebars->27->991" ] }, { @@ -11347,7 +11698,7 @@ "pt": "MeshCentral Router", "ru": "MeshCentral Router ", "xloc": [ - "default.handlebars->25->585" + "default.handlebars->27->590" ] }, { @@ -11360,7 +11711,7 @@ "pt": "O MeshCentral Router é uma ferramenta do Windows para mapeamento de portas TCP. Você pode, por exemplo, RDP em um dispositivo remoto através deste servidor.", "ru": "MeshCentral Router это инструмент Windows для сопоставления портов TCP. Например, через этот сервер можно установить подключение по RDP к удаленному устройству.", "xloc": [ - "default.handlebars->25->584" + "default.handlebars->27->589" ] }, { @@ -11368,13 +11719,14 @@ "de": "MeshCentral-Serverfehler", "en": "MeshCentral Server Errors", "es": "Errores del servidor MeshCentral", + "fr": "Erreurs du serveur MeshCentral", "ja": "MeshCentralサーバーエラー", "nl": "MeshCentral serverfouten", "pt": "Erros do servidor MeshCentral", "ru": "Ошибки сервера MeshCentral", "xloc": [ - "default.handlebars->25->115", - "default.handlebars->25->117" + "default.handlebars->27->115", + "default.handlebars->27->117" ] }, { @@ -11387,7 +11739,7 @@ "pt": "Peering do servidor MeshCentral", "ru": "Соединения сервера MeshCentral", "xloc": [ - "default.handlebars->25->1453" + "default.handlebars->27->1458" ] }, { @@ -11408,14 +11760,15 @@ "de": "MeshCentral-Version", "en": "MeshCentral Version", "es": "Version MeshCentral", + "fr": "Version de MeshCentral", "ja": "MeshCentralバージョン", "nl": "MeshCentral Versie", "pt": "Versão MeshCentral", "ru": "Версия MeshCentral", "xloc": [ - "default.handlebars->25->112", - "default.handlebars->25->113", - "default.handlebars->25->984" + "default.handlebars->27->112", + "default.handlebars->27->113", + "default.handlebars->27->989" ] }, { @@ -11423,65 +11776,65 @@ "de": "MeshCmd", "en": "MeshCmd", "es": "MeshCmd", + "fr": "MeshCmd", "ja": "MeshCmd", "nl": "MeshCmd", "pt": "MeshCmd", "ru": "MeshCmd", - "fr": "MeshCmd", "xloc": [ - "default.handlebars->25->207", - "default.handlebars->25->595" + "default.handlebars->27->207", + "default.handlebars->27->600" ] }, { - "en": "MeshCmd (Linux ARM, 32bit)", - "es": "MeshCmd (Linux ARM, 32bit)", - "nl": "MeshCmd (Linux ARM, 32bit)", - "ru": "MeshCmd (Linux ARM, 32bit)", "cs": "MeshCmd (Linux ARM, 32bit)", "de": "MeshCmd (Linux ARM, 32bit)", + "en": "MeshCmd (Linux ARM, 32bit)", + "es": "MeshCmd (Linux ARM, 32bit)", "fr": "MeshCmd (Linux ARM, 32bit)", + "nl": "MeshCmd (Linux ARM, 32bit)", + "ru": "MeshCmd (Linux ARM, 32bit)", "xloc": [ - "default.handlebars->25->607" + "default.handlebars->27->612" ] }, { + "cs": "MeshCmd (Linux x86, 32bit)", + "de": "MeshCmd (Linux x86, 32bit)", "en": "MeshCmd (Linux x86, 32bit)", "es": "MeshCmd (Linux x86, 32bit)", + "fr": "MeshCmd (Linux x86, 32bit)", "nl": "MeshCmd (Linux x86, 32bit)", - "ru": "MeshCmd (Linux x86, 32bit)", - "cs": "MeshCmd (Linux x86, 32bit)", "pt": "MeshCmd (Linux x86, 32bit)", - "de": "MeshCmd (Linux x86, 32bit)", - "fr": "MeshCmd (Linux x86, 32bit)", + "ru": "MeshCmd (Linux x86, 32bit)", "xloc": [ - "default.handlebars->25->604" + "default.handlebars->27->609" ] }, { + "cs": "MeshCmd (Linux x86, 64bit)", + "de": "MeshCmd (Linux x86, 64bit)", "en": "MeshCmd (Linux x86, 64bit)", "es": "MeshCmd (Linux x86, 64bit)", - "nl": "MeshCmd (Linux x86, 64bit)", - "ru": "MeshCmd (Linux x86, 64bit)", - "cs": "MeshCmd (Linux x86, 64bit)", - "pt": "MeshCmd (Linux x86, 64bit)", - "de": "MeshCmd (Linux x86, 64bit)", "fr": "MeshCmd (Linux x86, 64bit)", + "nl": "MeshCmd (Linux x86, 64bit)", + "pt": "MeshCmd (Linux x86, 64bit)", + "ru": "MeshCmd (Linux x86, 64bit)", "xloc": [ - "default.handlebars->25->605" + "default.handlebars->27->610" ] }, { - "en": "MeshCmd (MacOS, 64bit)", - "es": "MeshCmd (MacOS, 64bit)", - "nl": "MeshCmd (MacOS, 64bit)", - "ru": "MeshCmd (MacOS, 64bit)", "cs": "MeshCmd (MacOS, 64bit)", "de": "MeshCmd (MacOS, 64bit)", - "pt": "MeshCmd (MacOS, 64bit)", + "en": "MeshCmd (MacOS, 64bit)", + "es": "MeshCmd (MacOS, 64bit)", "fr": "MeshCmd (MacOS, 64bit)", + "nl": "MeshCmd (MacOS, 64bit)", + "pt": "MeshCmd (MacOS, 64bit)", + "ru": "MeshCmd (MacOS, 64bit)", "xloc": [ - "default.handlebars->25->606" + "default.handlebars->27->611" ] }, { @@ -11490,7 +11843,7 @@ "nl": "MeshCmd (Win32 executable)", "ru": "MeshCmd (приложение Win32)", "xloc": [ - "default.handlebars->25->602" + "default.handlebars->27->607" ] }, { @@ -11499,7 +11852,7 @@ "nl": "MeshCmd (Win64 executable)", "ru": "MeshCmd (приложение Win64)", "xloc": [ - "default.handlebars->25->603" + "default.handlebars->27->608" ] }, { @@ -11508,7 +11861,7 @@ "nl": "MeshCmd is een opdrachtregelprogramma dat veel verschillende bewerkingen uitvoert. Het actiebestand is optioneel, en kan worden gedownload en bewerkt om serverinformatie en referenties te verstrekken.", "ru": "MeshCmd это утилита с командной строкой, которая позволяет выполнить множество операций. Файл с командами может быть опционально скачан и отредактирован для указания информации о сервере и учетных данных.", "xloc": [ - "default.handlebars->25->592" + "default.handlebars->27->597" ] }, { @@ -11521,7 +11874,7 @@ "pt": "MeshCommander Script", "ru": "MeshCommander Script", "xloc": [ - "default.handlebars->25->258" + "default.handlebars->27->258" ] }, { @@ -11529,11 +11882,11 @@ "de": "MeshMessenger", "en": "MeshMessenger", "es": "MeshMessenger", + "fr": "MeshMessenger", "ja": "MeshMessenger", "nl": "MeshMessenger", "pt": "MeshMessenger", "ru": "MeshMessenger", - "fr": "MeshMessenger", "xloc": [ "messenger.handlebars->13->1", "messenger.handlebars->13->2", @@ -11544,13 +11897,13 @@ "cs": "MeshServerRootCert.cer", "en": "MeshServerRootCert.cer", "es": "MeshServerRootCert.cer", + "fr": "MeshServerRootCert.cer", "ja": "MeshServerRootCert.cer", "nl": "MeshServerRootCert.cer", "pt": "MeshServerRootCert.cer", "ru": "MeshServerRootCert.cer", - "fr": "MeshServerRootCert.cer", "xloc": [ - "default.handlebars->25->269" + "default.handlebars->27->269" ] }, { @@ -11563,8 +11916,8 @@ "pt": "Mensagem", "ru": "Сообщение", "xloc": [ - "default.handlebars->25->302", - "default.handlebars->25->564" + "default.handlebars->27->302", + "default.handlebars->27->569" ] }, { @@ -11577,7 +11930,7 @@ "pt": "Despachante de mensagens", "ru": "Диспетчер сообщения", "xloc": [ - "default.handlebars->25->1451" + "default.handlebars->27->1456" ] }, { @@ -11585,11 +11938,11 @@ "de": "Microsoft™ Windows 32bit", "en": "Microsoft™ Windows 32bit", "es": "Microsoft™ Windows 32bits", + "fr": "Microsoft™ Windows 32bit", "ja": "Microsoft™Windows 32ビット", "nl": "Microsoft™ Windows 32bit", "pt": "Microsoft™ Windows 32 bits", "ru": "Microsoft™ Windows 32-разрядная", - "fr": "Microsoft™ Windows 32bit", "xloc": [ "agentinvite.handlebars->container->column_l->5->wintab32->1" ] @@ -11599,11 +11952,11 @@ "de": "Microsoft™ Windows 64bit", "en": "Microsoft™ Windows 64bit", "es": "Microsoft™ Windows 64bits", + "fr": "Microsoft™ Windows 64bit", "ja": "Microsoft™Windows 64ビット", "nl": "Microsoft™ Windows 64bit", "pt": "Microsoft™ Windows 64 bits", "ru": "Microsoft™ Windows 64-разрядная", - "fr": "Microsoft™ Windows 64bit", "xloc": [ "agentinvite.handlebars->container->column_l->5->wintab64->1" ] @@ -11627,12 +11980,13 @@ "de": "Knotenstandort ändern", "en": "Modify node location", "es": "Modificar ubicación del nodo", + "fr": "Modifier la localisation du noeud", "ja": "ノードの場所を変更する", "nl": "Wijzig knooppuntlocatie", "pt": "Modificar localização do nó", "ru": "Изменить позицию узла", "xloc": [ - "default.handlebars->25->425" + "default.handlebars->27->430" ] }, { @@ -11644,7 +11998,7 @@ "pt": "Moldavian", "ru": "Молдавский", "xloc": [ - "default.handlebars->25->849" + "default.handlebars->27->854" ] }, { @@ -11658,7 +12012,7 @@ "pt": "Mais", "ru": "Еще", "xloc": [ - "default.handlebars->25->1477" + "default.handlebars->27->1482" ] }, { @@ -11672,7 +12026,7 @@ "pt": "Placa-mãe", "ru": "Материнская плата", "xloc": [ - "default.handlebars->25->69" + "default.handlebars->27->69" ] }, { @@ -11680,12 +12034,13 @@ "de": "Dieses Gerät in eine andere Gerätegruppe verschieben", "en": "Move this device to a different device group", "es": "Mover este dispositivo a un grupo de dispositivos diferente", + "fr": "Déplacer l'appareil dans un autre groupe", "ja": "このデバイスを別のデバイスグループに移動する", "nl": "Verplaats dit apparaat naar een andere apparaatgroep", "pt": "Mova este dispositivo para um grupo de dispositivos diferente", "ru": "Переместить это устройство в другую группу устройств", "xloc": [ - "default.handlebars->25->510" + "default.handlebars->27->515" ] }, { @@ -11699,7 +12054,7 @@ "pt": "Mover para o grupo de dispositivos", "ru": "Переместить в группу устройств", "xloc": [ - "default.handlebars->25->392" + "default.handlebars->27->392" ] }, { @@ -11738,7 +12093,7 @@ "de": "Meine Geräte", "en": "My Devices", "es": "Mis dispositivos", - "fr": "Mes Appareils", + "fr": "Mes ordinateurs", "ja": "私のデバイス", "nl": "Mijn apparaten", "pt": "Meus dispositivos", @@ -11810,7 +12165,7 @@ "pt": "Console do meu servidor", "ru": "Консоль моего сервера", "xloc": [ - "default.handlebars->25->701" + "default.handlebars->27->706" ] }, { @@ -11818,7 +12173,7 @@ "de": "Meine Server-Plugins", "en": "My Server Plugins", "es": "Mis Plugins de Server ", - "fr": "Mes plugins serveur", + "fr": "Mes modules complémentaires", "ja": "私のサーバープラグイン", "nl": "Mijn serverplug-ins", "ru": "Плагины моего сервера", @@ -11831,7 +12186,7 @@ "de": "Meine Server-Plugins -", "en": "My Server Plugins -", "es": "Mis Plugins de Server -", - "fr": "Mes plugins serveur -", + "fr": "Mes modules complémentaires -", "ja": "私のサーバープラグイン-", "nl": "Mijn serverplug-ins -", "ru": "Плагины моего сервера - ", @@ -11905,8 +12260,8 @@ "pt": "Minha chave", "ru": "Мой ключ", "xloc": [ - "default.handlebars->25->724", - "default.handlebars->25->727" + "default.handlebars->27->729", + "default.handlebars->27->732" ] }, { @@ -11925,19 +12280,19 @@ "default-mobile.handlebars->9->289", "default-mobile.handlebars->9->56", "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea3->deskarea3x->DeskTools->5->1->1", - "default.handlebars->25->1076", - "default.handlebars->25->1213", - "default.handlebars->25->1281", - "default.handlebars->25->1285", - "default.handlebars->25->1290", - "default.handlebars->25->1292", - "default.handlebars->25->1315", - "default.handlebars->25->628", - "default.handlebars->25->71", - "default.handlebars->25->80", - "default.handlebars->25->94", - "default.handlebars->25->965", - "default.handlebars->25->992", + "default.handlebars->27->1081", + "default.handlebars->27->1218", + "default.handlebars->27->1286", + "default.handlebars->27->1290", + "default.handlebars->27->1295", + "default.handlebars->27->1297", + "default.handlebars->27->1320", + "default.handlebars->27->633", + "default.handlebars->27->71", + "default.handlebars->27->80", + "default.handlebars->27->94", + "default.handlebars->27->970", + "default.handlebars->27->997", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader->3", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsServiceTab->deskToolsServiceHeader->3", "default.handlebars->container->column_l->p42->p42tbl->1->0->2" @@ -11954,7 +12309,7 @@ "pt": "Nome (Opcional)", "ru": "Имя (не обязательно)", "xloc": [ - "default.handlebars->25->282" + "default.handlebars->27->282" ] }, { @@ -11968,7 +12323,7 @@ "pt": "Nome1, Nome2, Nome3", "ru": "Имя1, Имя2, Имя3", "xloc": [ - "default.handlebars->25->1267" + "default.handlebars->27->1272" ] }, { @@ -11981,7 +12336,7 @@ "pt": "Navajo", "ru": "Навахо", "xloc": [ - "default.handlebars->25->850" + "default.handlebars->27->855" ] }, { @@ -11994,7 +12349,7 @@ "pt": "Ndonga", "ru": "Ндонга", "xloc": [ - "default.handlebars->25->851" + "default.handlebars->27->856" ] }, { @@ -12007,7 +12362,7 @@ "pt": "Nepali", "ru": "Непальский", "xloc": [ - "default.handlebars->25->852" + "default.handlebars->27->857" ] }, { @@ -12021,7 +12376,7 @@ "pt": "Interfaces de rede", "ru": "Сетевые интерфейсы", "xloc": [ - "default.handlebars->25->582" + "default.handlebars->27->587" ] }, { @@ -12035,7 +12390,7 @@ "pt": "Roteador de rede", "ru": "Network Router", "xloc": [ - "default.handlebars->25->601" + "default.handlebars->27->606" ] }, { @@ -12079,9 +12434,9 @@ "ru": "Новая группа устройств", "xloc": [ "default-mobile.handlebars->9->50", - "default.handlebars->25->574", - "default.handlebars->25->958", - "default.handlebars->25->970" + "default.handlebars->27->579", + "default.handlebars->27->963", + "default.handlebars->27->975" ] }, { @@ -12097,8 +12452,8 @@ "xloc": [ "default-mobile.handlebars->9->247", "default-mobile.handlebars->9->79", - "default.handlebars->25->1186", - "default.handlebars->25->665", + "default.handlebars->27->1191", + "default.handlebars->27->670", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3" ] @@ -12141,8 +12496,8 @@ "xloc": [ "default-mobile.handlebars->9->45", "default-mobile.handlebars->9->46", - "default.handlebars->25->953", - "default.handlebars->25->954" + "default.handlebars->27->958", + "default.handlebars->27->959" ] }, { @@ -12150,13 +12505,14 @@ "de": "Keine aktiven Token", "en": "No Active Tokens", "es": "No hay tokens activos", + "fr": "Aucun jeton actif", "ja": "アクティブなトークンがありません", "nl": "geen actieve tokens", "pt": "Nenhum token ativo", "ru": "Активных токенов нет", "xloc": [ "default-mobile.handlebars->9->25", - "default.handlebars->25->133" + "default.handlebars->27->133" ] }, { @@ -12171,8 +12527,8 @@ "xloc": [ "default-mobile.handlebars->9->184", "default-mobile.handlebars->9->185", - "default.handlebars->25->476", - "default.handlebars->25->477" + "default.handlebars->27->481", + "default.handlebars->27->482" ] }, { @@ -12186,9 +12542,9 @@ "pt": "Nenhum evento encontrado", "ru": "События не найдены", "xloc": [ - "default.handlebars->25->1203", - "default.handlebars->25->1399", - "default.handlebars->25->699" + "default.handlebars->27->1208", + "default.handlebars->27->1404", + "default.handlebars->27->704" ] }, { @@ -12203,7 +12559,7 @@ "ru": "Нет доступа к файлам", "xloc": [ "default-mobile.handlebars->9->300", - "default.handlebars->25->1109" + "default.handlebars->27->1114" ] }, { @@ -12218,7 +12574,7 @@ "ru": "Файлов нет", "xloc": [ "default-mobile.handlebars->9->321", - "default.handlebars->25->1135" + "default.handlebars->27->1140" ] }, { @@ -12233,8 +12589,8 @@ "xloc": [ "default-mobile.handlebars->9->301", "default-mobile.handlebars->9->322", - "default.handlebars->25->1110", - "default.handlebars->25->1136" + "default.handlebars->27->1115", + "default.handlebars->27->1141" ] }, { @@ -12242,6 +12598,7 @@ "de": "Keine Intel®-AMT-Geräte in dieser Gruppe", "en": "No Intel® AMT devices in this group", "es": "Sin Intel & reg; Dispositivos AMT en este grupo", + "fr": "Aucun appareil Intel® AMT dans ce groupe", "ja": "Intel®なしこのグループのAMTデバイス", "nl": "Geen Intel® AMT-apparaten in deze groep", "pt": "Nenhum Intel® AMT devices in this group", @@ -12260,7 +12617,7 @@ "pt": "Nenhum Intel® dispositivos AMT nessa malha", "ru": "Intel® AMT устройств в этой сети нет", "xloc": [ - "default.handlebars->25->196" + "default.handlebars->27->196" ] }, { @@ -12268,12 +12625,13 @@ "de": "Keine Schlüssel konfiguriert", "en": "No Keys Configured", "es": "No hay claves configuradas", + "fr": "Aucun clé configurée", "ja": "キーが設定されていません", "nl": "Geen sleutels geconfigureerd", "pt": "Nenhuma chave configurada", "ru": "Ключи не настроены", "xloc": [ - "default.handlebars->25->141" + "default.handlebars->27->141" ] }, { @@ -12284,7 +12642,7 @@ "nl": "Geen leden", "ru": "Нет членов", "xloc": [ - "default.handlebars->25->1302" + "default.handlebars->27->1307" ] }, { @@ -12297,7 +12655,7 @@ "pt": "Não há novos grupos de dispositivos", "ru": "Запретить создание групп устройств", "xloc": [ - "default.handlebars->25->1277" + "default.handlebars->27->1282" ] }, { @@ -12310,9 +12668,9 @@ "pt": "Nenhuma política", "ru": "Политик нет", "xloc": [ - "default.handlebars->25->1017", - "default.handlebars->25->1048", - "default.handlebars->25->1051" + "default.handlebars->27->1022", + "default.handlebars->27->1053", + "default.handlebars->27->1056" ] }, { @@ -12328,11 +12686,11 @@ "default-mobile.handlebars->9->284", "default-mobile.handlebars->9->327", "default-mobile.handlebars->9->65", - "default.handlebars->25->1042", - "default.handlebars->25->1141", - "default.handlebars->25->1308", - "default.handlebars->25->1382", - "default.handlebars->25->979" + "default.handlebars->27->1047", + "default.handlebars->27->1146", + "default.handlebars->27->1313", + "default.handlebars->27->1387", + "default.handlebars->27->984" ] }, { @@ -12347,8 +12705,8 @@ "ru": "Нет безопасности TLS", "xloc": [ "default-mobile.handlebars->9->215", - "default.handlebars->25->245", - "default.handlebars->25->560" + "default.handlebars->27->245", + "default.handlebars->27->565" ] }, { @@ -12362,7 +12720,7 @@ "ru": "Нет терминала", "xloc": [ "default-mobile.handlebars->9->320", - "default.handlebars->25->1134" + "default.handlebars->27->1139" ] }, { @@ -12376,7 +12734,7 @@ "ru": "Нет доступа к терминалу", "xloc": [ "default-mobile.handlebars->9->299", - "default.handlebars->25->1108" + "default.handlebars->27->1113" ] }, { @@ -12389,7 +12747,7 @@ "pt": "Sem ferramentas (MeshCmd / Roteador)", "ru": "Нет инструментов (MeshCmd/Router)", "xloc": [ - "default.handlebars->25->1278" + "default.handlebars->27->1283" ] }, { @@ -12400,8 +12758,8 @@ "nl": "Geen gemeenschappelijke apparaatgroepen", "ru": "Нет общих групп устройств", "xloc": [ - "default.handlebars->25->1311", - "default.handlebars->25->1385" + "default.handlebars->27->1316", + "default.handlebars->27->1390" ] }, { @@ -12444,7 +12802,7 @@ "pt": "Nenhum dispositivo está incluído em nenhum grupo, clique no \\\"Grupo\\\" de um dispositivo para adicionar a um grupo", "ru": "Ни одно устройство не включено ни в одну из групп, чтобы добавить группу нажмите \\\"Группы\\\" устройств.", "xloc": [ - "default.handlebars->25->194" + "default.handlebars->27->194" ] }, { @@ -12458,7 +12816,7 @@ "pt": "Nenhum dispositivo encontrado.", "ru": "Устройства не найдены.", "xloc": [ - "default.handlebars->25->442" + "default.handlebars->27->447" ] }, { @@ -12469,7 +12827,7 @@ "nl": "Geen apparaten in deze apparaatgroep.", "ru": "В группе нет устройств.", "xloc": [ - "default.handlebars->25->1165" + "default.handlebars->27->1170" ] }, { @@ -12484,7 +12842,7 @@ "ru": "В этой группе нет устройств", "xloc": [ "default-mobile.handlebars->9->97", - "default.handlebars->25->198" + "default.handlebars->27->198" ] }, { @@ -12498,7 +12856,7 @@ "pt": "Nenhum dispositivo correspondente a esta pesquisa.", "ru": "Нет устройств, соответствующих этому запросу.", "xloc": [ - "default.handlebars->25->195" + "default.handlebars->27->195" ] }, { @@ -12509,7 +12867,7 @@ "nl": "Geen apparaten tags gevonden.", "ru": "Не найдено устройств с тегом.", "xloc": [ - "default.handlebars->25->203" + "default.handlebars->27->203" ] }, { @@ -12520,7 +12878,7 @@ "nl": "Geen groepen gevonden.", "ru": "Группы не найдены.", "xloc": [ - "default.handlebars->25->1280" + "default.handlebars->27->1285" ] }, { @@ -12528,12 +12886,13 @@ "de": "Keine Informationen zu diesem Gerät.", "en": "No information for this device.", "es": "No hay información para este dispositivo.", + "fr": "Aucune information sur cet appareil.", "ja": "このデバイスに関する情報はありません。", "nl": "Geen informatie over dit apparaat.", "pt": "Nenhuma informação para este dispositivo.", "ru": "Информации об этом устройстве нет", "xloc": [ - "default.handlebars->25->65" + "default.handlebars->27->65" ] }, { @@ -12546,7 +12905,7 @@ "pt": "Nenhum local encontrado.", "ru": "Местоположение не найдено.", "xloc": [ - "default.handlebars->25->444" + "default.handlebars->27->449" ] }, { @@ -12559,7 +12918,7 @@ "pt": "Nenhuma informação de interface de rede disponível para este dispositivo.", "ru": "Информации о сетевых интерфейсах этого устройства нет.", "xloc": [ - "default.handlebars->25->86" + "default.handlebars->27->86" ] }, { @@ -12572,7 +12931,7 @@ "pt": "Não existe outro grupo de dispositivos do mesmo tipo.", "ru": "Других групп устройств такого же типа не существует.", "xloc": [ - "default.handlebars->25->577" + "default.handlebars->27->582" ] }, { @@ -12580,6 +12939,7 @@ "de": "Keine Plugins auf dem Server.", "en": "No plugins on server.", "es": "No hay plugins en el servidor.", + "fr": "Aucun module sur le serveur.", "ja": "サーバーにプラグインはありません。", "nl": "Geen plug-ins op server.", "ru": "Плагинов на сервере нет.", @@ -12597,7 +12957,7 @@ "pt": "Sem direitos de servidor", "ru": "Нет серверных прав", "xloc": [ - "default.handlebars->25->1328" + "default.handlebars->27->1333" ] }, { @@ -12608,7 +12968,7 @@ "nl": "Geen gebruikersgroep lidmaatschap", "ru": "Нет членства в группах пользователей", "xloc": [ - "default.handlebars->25->1391" + "default.handlebars->27->1396" ] }, { @@ -12616,12 +12976,13 @@ "de": "Keine Benutzer gefunden.", "en": "No users found.", "es": "No se encontraron usuarios.", + "fr": "Aucun utilisateur trouvé.", "ja": "ユーザが見つかりませんでした。", "nl": "Geen gebruikers gevonden", "pt": "Usuários não encontrados.", "ru": "Пользователи не найдены.", "xloc": [ - "default.handlebars->25->1221" + "default.handlebars->27->1226" ] }, { @@ -12648,7 +13009,7 @@ "ru": "NodeJS", "xloc": [ "default-mobile.handlebars->9->166", - "default.handlebars->25->36" + "default.handlebars->27->36" ] }, { @@ -12671,22 +13032,22 @@ "default-mobile.handlebars->9->75", "default-mobile.handlebars->9->93", "default-mobile.handlebars->9->95", - "default.handlebars->25->1010", - "default.handlebars->25->1015", - "default.handlebars->25->1174", - "default.handlebars->25->1289", - "default.handlebars->25->1347", - "default.handlebars->25->1351", - "default.handlebars->25->166", - "default.handlebars->25->181", - "default.handlebars->25->182", - "default.handlebars->25->449", - "default.handlebars->25->457", - "default.handlebars->25->459", - "default.handlebars->25->503", - "default.handlebars->25->63", - "default.handlebars->25->994", - "default.handlebars->25->998", + "default.handlebars->27->1003", + "default.handlebars->27->1015", + "default.handlebars->27->1020", + "default.handlebars->27->1179", + "default.handlebars->27->1294", + "default.handlebars->27->1352", + "default.handlebars->27->1356", + "default.handlebars->27->166", + "default.handlebars->27->181", + "default.handlebars->27->182", + "default.handlebars->27->454", + "default.handlebars->27->462", + "default.handlebars->27->464", + "default.handlebars->27->508", + "default.handlebars->27->63", + "default.handlebars->27->999", "default.handlebars->container->column_l->p41->3->3->p41traceStatus" ] }, @@ -12714,7 +13075,7 @@ "pt": "norueguês", "ru": "Норвежский", "xloc": [ - "default.handlebars->25->853" + "default.handlebars->27->858" ] }, { @@ -12727,7 +13088,7 @@ "pt": "Norueguês (Bokmal)", "ru": "Норвежский (Букмол)", "xloc": [ - "default.handlebars->25->854" + "default.handlebars->27->859" ] }, { @@ -12740,7 +13101,7 @@ "pt": "Norueguês (Nynorsk)", "ru": "Норвежский (Нюнорск)", "xloc": [ - "default.handlebars->25->855" + "default.handlebars->27->860" ] }, { @@ -12753,7 +13114,7 @@ "ru": "Не активированно (In)", "xloc": [ "default-mobile.handlebars->9->176", - "default.handlebars->25->464" + "default.handlebars->27->469" ] }, { @@ -12766,7 +13127,7 @@ "ru": "Не активированно (Pre)", "xloc": [ "default-mobile.handlebars->9->175", - "default.handlebars->25->463" + "default.handlebars->27->468" ] }, { @@ -12777,8 +13138,8 @@ "nl": "Niet verbonden", "ru": "Не подключен", "xloc": [ - "default.handlebars->25->1154", - "default.handlebars->25->1160" + "default.handlebars->27->1159", + "default.handlebars->27->1165" ] }, { @@ -12786,12 +13147,13 @@ "de": "Nicht gesetzt", "en": "Not set", "es": "No establecido", + "fr": "Non défini", "ja": "設定されていません", "nl": "Niet ingesteld", "pt": "Não configurado", "ru": "Не задано", "xloc": [ - "default.handlebars->25->1333" + "default.handlebars->27->1338" ] }, { @@ -12805,10 +13167,10 @@ "pt": "Notas", "ru": "Примечания", "xloc": [ - "default.handlebars->25->1023", - "default.handlebars->25->1358", - "default.handlebars->25->506", - "default.handlebars->25->541" + "default.handlebars->27->1028", + "default.handlebars->27->1363", + "default.handlebars->27->511", + "default.handlebars->27->546" ] }, { @@ -12828,13 +13190,14 @@ "de": "Benachrichtungseinstellungen", "en": "Notification Settings", "es": "Configuración de las notificaciones", + "fr": "Paramètres de notifications", "ja": "通知設定", "nl": "meldingsinstellingen", "pt": "Configurações de notificação", "ru": "Настройки уведомлений", "xloc": [ - "default.handlebars->25->1153", - "default.handlebars->25->940", + "default.handlebars->27->1158", + "default.handlebars->27->945", "default.handlebars->container->column_l->p2->p2AccountActions->3->8" ] }, @@ -12846,7 +13209,7 @@ "nl": "Meldingsinstellingen moeten ook worden ingeschakeld in accountinstellingen.", "ru": "Уведомления также должны быть включены в настройках учетной записи.", "xloc": [ - "default.handlebars->25->1149" + "default.handlebars->27->1154" ] }, { @@ -12854,12 +13217,13 @@ "de": "Benachrichtigungston.", "en": "Notification sound.", "es": "Sonido de notificación.", + "fr": "Notification sonore.", "ja": "通知音。", "nl": "Meldingsgeluid.", "pt": "Som de notificação.", "ru": "Звук уведомления", "xloc": [ - "default.handlebars->25->935" + "default.handlebars->27->940" ] }, { @@ -12872,7 +13236,7 @@ "pt": "Notificações", "ru": "Уведомления", "xloc": [ - "default.handlebars->25->1016" + "default.handlebars->27->1021" ] }, { @@ -12880,12 +13244,13 @@ "de": "Benachrichtigen", "en": "Notify", "es": "Notificar", + "fr": "Notifier", "ja": "通知する", "nl": "Melden", "pt": "Notificar", "ru": "Уведомить", "xloc": [ - "default.handlebars->25->1360" + "default.handlebars->27->1365" ] }, { @@ -12899,9 +13264,9 @@ "pt": "Notificar usuário", "ru": "Уведомить пользователя", "xloc": [ - "default.handlebars->25->1080", - "default.handlebars->25->1084", - "default.handlebars->25->1087" + "default.handlebars->27->1085", + "default.handlebars->27->1089", + "default.handlebars->27->1092" ] }, { @@ -12909,12 +13274,13 @@ "de": "{0} benachrichtigen", "en": "Notify {0}", "es": "Notificar {0}", + "fr": "Notifier {0}", "ja": "{0}に通知", "nl": "Melden {0}", "pt": "Notificar {0}", "ru": "Уведомить {0}", "xloc": [ - "default.handlebars->25->1233" + "default.handlebars->27->1238" ] }, { @@ -12922,16 +13288,16 @@ "de": "OK", "en": "OK", "es": "OK", + "fr": "ОК", "ja": "OK", "nl": "OK", "pt": "Ok", "ru": "ОК", - "fr": "ОК", "xloc": [ "default-mobile.handlebars->9->42", "default-mobile.handlebars->dialog->idx_dlgButtonBar", - "default.handlebars->25->489", - "default.handlebars->25->982", + "default.handlebars->27->494", + "default.handlebars->27->987", "default.handlebars->container->dialog->idx_dlgButtonBar", "login-mobile.handlebars->dialog->idx_dlgButtonBar", "login.handlebars->dialog->idx_dlgButtonBar", @@ -12962,7 +13328,7 @@ "pt": "Occitânico", "ru": "Окситанский", "xloc": [ - "default.handlebars->25->856" + "default.handlebars->27->861" ] }, { @@ -12976,7 +13342,7 @@ "pt": "Ocorreu em {0}", "ru": "Произошло в {0}", "xloc": [ - "default.handlebars->25->1402" + "default.handlebars->27->1407" ] }, { @@ -12990,7 +13356,7 @@ "pt": "Usuários offline", "ru": "Оффлайн пользователи", "xloc": [ - "default.handlebars->25->1218" + "default.handlebars->27->1223" ] }, { @@ -13005,7 +13371,7 @@ "ru": "Старый пароль:", "xloc": [ "default-mobile.handlebars->9->44", - "default.handlebars->25->952" + "default.handlebars->27->957" ] }, { @@ -13013,13 +13379,14 @@ "de": "Einmal-Token können als sekundäre Authentifizierung verwendet werden. Erstellen Sie ein Set, drucken Sie es aus und bewahren Sie es an einem sicheren Ort auf.", "en": "One time tokens can be used as secondary authentication. Generate a set, print them and keep them in a safe place.", "es": "Los tokens únicos se pueden usar como autenticación secundaria. Genere un conjunto, imprímalos y guárdelos en un lugar seguro.", + "fr": "Les jetons à usage unique peuvent être utilisé pour la double authentification. Générez les et gardez les dans un endroit sur.", "ja": "ワンタイムトークンは、セカンダリ認証として使用できます。セットを生成して印刷し、安全な場所に保管してください。", "nl": "Eenmalige tokens kunnen worden gebruikt als secundaire authenticatie. Genereer een set, druk ze af en bewaar ze op een veilige plaats.", "pt": "Os tokens únicos podem ser usados como autenticação secundária. Gere um conjunto, imprima-os e mantenha-os em um local seguro.", "ru": "Однократные токены можно использовать как вторичную аутентификацию. Сгенерируйте, распечатайте и храните их в надежном месте.", "xloc": [ "default-mobile.handlebars->9->24", - "default.handlebars->25->132" + "default.handlebars->27->132" ] }, { @@ -13033,7 +13400,7 @@ "pt": "Usuários Online", "ru": "Онлайн пользователи", "xloc": [ - "default.handlebars->25->1217" + "default.handlebars->27->1222" ] }, { @@ -13041,13 +13408,15 @@ "de": "Nur Dateien kleiner als 200 kB können bearbeitet werden.", "en": "Only files less than 200k can be edited.", "es": "Solo se pueden editar archivos de menos de 200k.", + "fr": "Seuls les fichiers de moins de 200k peuvent être modifiés.", "ja": "編集できるのは200k未満のファイルのみです。", "nl": "Alleen bestanden kleiner dan 200k kunnen worden bewerkt.", "pt": "Somente arquivos com menos de 200k podem ser editados.", "ru": "Редактировать файлы можно только размером менее 200КБ.", "xloc": [ "default-mobile.handlebars->9->255", - "default.handlebars->25->673" + "default.handlebars->27->427", + "default.handlebars->27->678" ] }, { @@ -13055,6 +13424,7 @@ "de": "Datei öffnen...", "en": "Open File...", "es": "Abrir archivo...", + "fr": "Ouvrir le fichier...", "ja": "ファイルを開く...", "nl": "Open bestand...", "pt": "Abrir arquivo...", @@ -13074,7 +13444,7 @@ "pt": "Abrir página no dispositivo", "ru": "Открыть страницу на устройстве", "xloc": [ - "default.handlebars->25->543" + "default.handlebars->27->548" ] }, { @@ -13082,7 +13452,7 @@ "nl": "Open XTerm terminal", "ru": "Открыть терминал XTerm", "xloc": [ - "default.handlebars->25->520" + "default.handlebars->27->525" ] }, { @@ -13090,6 +13460,7 @@ "de": "Eine Web-Adresse auf dem entfernten Rechner öffnen", "en": "Open a web address on the remote computer", "es": "Abra una dirección web en la computadora remota", + "fr": "Ouvrir une url sur l'ordinateur distant", "ja": "リモートコンピューターでWebアドレスを開く", "nl": "Open een webadres op de externe computer", "ru": "Открыть ссылку на удаленном компьютере", @@ -13116,17 +13487,17 @@ "de": "Betriebssystem", "en": "Operating System", "es": "Sistema operativo", - "fr": "Système opérateur", + "fr": "Système d'exploitation", "ja": "オペレーティング・システム", "nl": "Besturingssysteem", "pt": "Sistema operacional", "ru": "Операционная система", "xloc": [ - "default.handlebars->25->285", - "default.handlebars->25->314", - "default.handlebars->25->486", - "default.handlebars->25->594", - "default.handlebars->25->79" + "default.handlebars->27->285", + "default.handlebars->27->314", + "default.handlebars->27->491", + "default.handlebars->27->599", + "default.handlebars->27->79" ] }, { @@ -13141,8 +13512,8 @@ "ru": "Операция", "xloc": [ "default-mobile.handlebars->9->210", - "default.handlebars->25->386", - "default.handlebars->25->552" + "default.handlebars->27->386", + "default.handlebars->27->557" ] }, { @@ -13156,7 +13527,7 @@ "pt": "Organização", "ru": "Организация", "xloc": [ - "default.handlebars->25->277" + "default.handlebars->27->277" ] }, { @@ -13168,7 +13539,7 @@ "pt": "Oriya", "ru": "Ория", "xloc": [ - "default.handlebars->25->857" + "default.handlebars->27->862" ] }, { @@ -13180,7 +13551,7 @@ "pt": "Oromo", "ru": "Оромо", "xloc": [ - "default.handlebars->25->858" + "default.handlebars->27->863" ] }, { @@ -13222,7 +13593,7 @@ "pt": "Desatualizado", "ru": "Устаревший", "xloc": [ - "default.handlebars->25->488" + "default.handlebars->27->493" ] }, { @@ -13235,7 +13606,7 @@ "pt": "Processo próprio", "ru": "Собственный процесс", "xloc": [ - "default.handlebars->25->635" + "default.handlebars->27->640" ] }, { @@ -13249,7 +13620,7 @@ "ru": "PID", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea3->deskarea3x->DeskTools->5->1->0", - "default.handlebars->25->631", + "default.handlebars->27->636", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader->1" ] }, @@ -13264,7 +13635,7 @@ "pt": "Número Parcial", "ru": "Part Number", "xloc": [ - "default.handlebars->25->78" + "default.handlebars->27->78" ] }, { @@ -13278,7 +13649,7 @@ "pt": "Parcial", "ru": "Частично", "xloc": [ - "default.handlebars->25->1232" + "default.handlebars->27->1237" ] }, { @@ -13289,9 +13660,9 @@ "nl": "Gedeeltelijke apparaatgroep rechten", "ru": "Частичные права на группу устройств", "xloc": [ - "default.handlebars->25->1040", - "default.handlebars->25->1305", - "default.handlebars->25->1379" + "default.handlebars->27->1045", + "default.handlebars->27->1310", + "default.handlebars->27->1384" ] }, { @@ -13306,7 +13677,7 @@ "xloc": [ "default-mobile.handlebars->9->282", "default-mobile.handlebars->9->63", - "default.handlebars->25->977" + "default.handlebars->27->982" ] }, { @@ -13319,7 +13690,7 @@ "pt": "Direitos parciais", "ru": "Частичные права", "xloc": [ - "default.handlebars->25->1331" + "default.handlebars->27->1336" ] }, { @@ -13347,15 +13718,15 @@ "ru": "Пароль", "xloc": [ "default-mobile.handlebars->9->213", - "default.handlebars->25->1256", - "default.handlebars->25->1257", - "default.handlebars->25->1343", - "default.handlebars->25->1345", - "default.handlebars->25->1369", - "default.handlebars->25->1370", - "default.handlebars->25->243", - "default.handlebars->25->272", - "default.handlebars->25->558" + "default.handlebars->27->1261", + "default.handlebars->27->1262", + "default.handlebars->27->1348", + "default.handlebars->27->1350", + "default.handlebars->27->1374", + "default.handlebars->27->1375", + "default.handlebars->27->243", + "default.handlebars->27->272", + "default.handlebars->27->563" ] }, { @@ -13363,6 +13734,7 @@ "de": "Passwort-Tipp", "en": "Password Hint", "es": "Pista de la contraseña:", + "fr": "Indice pour le mot de passe", "ja": "パスワードのヒント", "nl": "wachtwoord hint", "pt": "Dica de Senha", @@ -13377,6 +13749,7 @@ "de": "Passwort-Tipp:", "en": "Password Hint:", "es": "Pista de la contraseña:", + "fr": "Indice pour le mot de passe:", "ja": "パスワードのヒント:", "nl": "wachtwoord hint:", "pt": "Dica de senha", @@ -13392,6 +13765,7 @@ "de": "Passwort-Richtlinie", "en": "Password Policy", "es": "Política de contraseñas", + "fr": "Politique de mots de passe", "ja": "パスワードポリシー", "nl": "Wachtwoord beleid", "pt": "Política de senha", @@ -13423,12 +13797,13 @@ "de": "Passwort-Tipp", "en": "Password hint", "es": "Pista de la contraseña:", + "fr": "Indice pour le mot de passe", "ja": "パスワードのヒント", "nl": "wachtwoord hint", "pt": "Dica de senha", "ru": "Подсказка пароля", "xloc": [ - "default.handlebars->25->1371" + "default.handlebars->27->1376" ] }, { @@ -13436,13 +13811,14 @@ "de": "Passwort-Tipp:", "en": "Password hint:", "es": "Pista de la contraseña:", + "fr": "Indice pour le mot de passe:", "ja": "パスワードのヒント:", "nl": "wachtwoord hint:", "pt": "Dica de senha", "ru": "Подсказка пароля:", "xloc": [ "default-mobile.handlebars->9->47", - "default.handlebars->25->955" + "default.handlebars->27->960" ] }, { @@ -13450,12 +13826,13 @@ "de": "Passwörter stimmen nicht überein", "en": "Password mismatch", "es": "Contraseña no coincide", + "fr": "Le mot de passe ne concorde pas", "ja": "パスワード", "nl": "Wachtwoord komt niet overeen", "pt": "Senha incorreta", "ru": "Пароль не совпадает", "xloc": [ - "default.handlebars->25->1057" + "default.handlebars->27->1062" ] }, { @@ -13483,8 +13860,8 @@ "pt": "Senha*", "ru": "Пароль*", "xloc": [ - "default.handlebars->25->1055", - "default.handlebars->25->1056" + "default.handlebars->27->1060", + "default.handlebars->27->1061" ] }, { @@ -13500,8 +13877,8 @@ "xloc": [ "default-mobile.handlebars->9->39", "default-mobile.handlebars->9->40", - "default.handlebars->25->947", - "default.handlebars->25->948", + "default.handlebars->27->952", + "default.handlebars->27->953", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->4->1", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->6->1", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->loginpanel->1->7->1->2->1", @@ -13529,9 +13906,9 @@ "default-mobile.handlebars->9->87", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->3", "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->3", - "default.handlebars->25->1195", - "default.handlebars->25->656", - "default.handlebars->25->678", + "default.handlebars->27->1200", + "default.handlebars->27->661", + "default.handlebars->27->683", "default.handlebars->container->column_l->p12->termTable->1->1->6->1->3", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3" @@ -13576,7 +13953,7 @@ "pt": "Executar ação do agente", "ru": "Произвести действие агента", "xloc": [ - "default.handlebars->25->709" + "default.handlebars->27->714" ] }, { @@ -13589,7 +13966,7 @@ "pt": "Execute a ativação do modo de controle de administração Intel AMT (ACM) para agrupar \\\"{0}\\\" baixando a ferramenta MeshCMD e executando-a assim:", "ru": "Выполнить активацию Intel AMT в режиме управления администратора (ACM) для группы \\\"{0}\\\",скачав инструмент MeshCMD и запустив его следующим образом:", "xloc": [ - "default.handlebars->25->250" + "default.handlebars->27->250" ] }, { @@ -13602,8 +13979,8 @@ "pt": "Execute a ativação do modo de controle de administração Intel AMT (ACM).", "ru": "Выполнить активацию Intel AMT в режиме управления администратора (ACM).", "xloc": [ - "default.handlebars->25->1033", - "default.handlebars->25->231" + "default.handlebars->27->1038", + "default.handlebars->27->231" ] }, { @@ -13616,7 +13993,7 @@ "pt": "Execute a ativação do modo de controle de cliente Intel AMT (CCM) para agrupar \\\"{0}\\\" baixando a ferramenta MeshCMD e executando-a assim:", "ru": "Выполнить активацию Intel AMT в режиме управления клиента (CCM) для группы \\\"{0}\\\",скачав инструмент MeshCMD и запустив его следующим образом:", "xloc": [ - "default.handlebars->25->248" + "default.handlebars->27->248" ] }, { @@ -13629,8 +14006,8 @@ "pt": "Execute a ativação do modo de controle do cliente Intel AMT (CCM).", "ru": "Выполнить активацию Intel AMT в режиме управления клиента (CCM).", "xloc": [ - "default.handlebars->25->1031", - "default.handlebars->25->229" + "default.handlebars->27->1036", + "default.handlebars->27->229" ] }, { @@ -13644,7 +14021,7 @@ "pt": "Execute ações de energia no dispositivo", "ru": "Управление питанием устройства", "xloc": [ - "default.handlebars->25->505", + "default.handlebars->27->510", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->1", "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->1" @@ -13662,8 +14039,8 @@ "ru": "Права", "xloc": [ "default-mobile.handlebars->9->329", - "default.handlebars->25->1144", - "default.handlebars->25->1216" + "default.handlebars->27->1149", + "default.handlebars->27->1221" ] }, { @@ -13671,12 +14048,13 @@ "de": "Persisch (Iran)", "en": "Persian/Iran", "es": "Persa / Irán", + "fr": "Perse/Iranien", "ja": "ペルシャ語/イラン", "nl": "Perzisch / Iran", "pt": "Persa / Irã", "ru": "Персидский/Иран", "xloc": [ - "default.handlebars->25->859" + "default.handlebars->27->864" ] }, { @@ -13690,12 +14068,13 @@ "de": "Knoten hier ablegen", "en": "Place node here", "es": "Coloque el nodo aquí", + "fr": "Placer un noeud ici", "ja": "ここにノードを配置", "nl": "Plaats hier een knooppunt", "pt": "Coloque o nó aqui", "ru": "Поместить узел сюда", "xloc": [ - "default.handlebars->25->437" + "default.handlebars->27->442" ] }, { @@ -13723,7 +14102,7 @@ "pt": "Adicione códigos de backup de dois fatores. Se o fator atual for perdido, não há como recuperar esta conta.", "ru": "Пожалуйста, добавьте двухфакторные резервные коды. Если текущий фактор потерян, восстановить эту учетную запись будет невозможно.", "xloc": [ - "default.handlebars->25->49" + "default.handlebars->27->49" ] }, { @@ -13735,7 +14114,7 @@ "nl": "Houd er rekening mee dat downgraden niet wordt aanbevolen. Doe dit alleen als een recente upgrade iets heeft gebroken.", "ru": "Внимание, понижение версии не рекомендуется. Делайте это только в том случае, если недавнее обновление что-то сломало.", "xloc": [ - "default.handlebars->25->178" + "default.handlebars->27->178" ] }, { @@ -13763,7 +14142,7 @@ "ru": "Подождите пару минут для получения подтверждения.", "xloc": [ "default-mobile.handlebars->9->35", - "default.handlebars->25->942" + "default.handlebars->27->947" ] }, { @@ -13775,8 +14154,8 @@ "nl": "Plugin Actie", "ru": "Действие плагина", "xloc": [ - "default.handlebars->25->1471", - "default.handlebars->25->177" + "default.handlebars->27->1476", + "default.handlebars->27->177" ] }, { @@ -13784,11 +14163,12 @@ "de": "Plugin-Fehler", "en": "Plugin Error", "es": "Error en el Plugin", + "fr": "Erreur du module", "ja": "プラグインエラー", "nl": "Plugin fout", "ru": "Ошибка плагина", "xloc": [ - "default.handlebars->25->179" + "default.handlebars->27->179" ] }, { @@ -13797,7 +14177,7 @@ "es": "PluginHandler no pudo enviar el mensaje de evento:", "nl": "PluginHandler kon geen gebeurtenisbericht weergeven: ", "xloc": [ - "default.handlebars->25->167" + "default.handlebars->27->167" ] }, { @@ -13805,6 +14185,7 @@ "de": "Plugins", "en": "Plugins", "es": "Plugins", + "fr": "Modules", "ja": "プラグイン", "nl": "Plugins", "pt": "Plugins", @@ -13819,6 +14200,7 @@ "de": "Plugins -", "en": "Plugins -", "es": "Plugins -", + "fr": "Modules -", "ja": "プラグイン-", "nl": "Plugins -", "pt": "Plugins -", @@ -13832,6 +14214,7 @@ "de": "Plugins wurden geändert. Dies erfordert möglicherweise eine Aktualisierung der Agentenkerne.", "en": "Plugins have been altered, this may require agent core update.", "es": "Se han modificado los plugins, esto puede requerir la actualización del núcleo del agente.", + "fr": "Les modules ont été modifiés, une mise à jour des agents est nécesssaire", "ja": "プラグインが変更されたため、エージェントコアの更新が必要になる場合があります。", "nl": "Plug-ins zijn gewijzigd, dit kan een update van de agent vereisen.", "ru": "Плагины были изменены, это может потребовать обновление ядра агента.", @@ -13850,7 +14233,7 @@ "ru": "PogoPlug ARM", "xloc": [ "default-mobile.handlebars->9->156", - "default.handlebars->25->26" + "default.handlebars->27->26" ] }, { @@ -13865,7 +14248,7 @@ "ru": "Политика", "xloc": [ "default-mobile.handlebars->9->62", - "default.handlebars->25->976" + "default.handlebars->27->981" ] }, { @@ -13878,7 +14261,7 @@ "pt": "polonês", "ru": "Польский", "xloc": [ - "default.handlebars->25->860" + "default.handlebars->27->865" ] }, { @@ -13891,7 +14274,7 @@ "pt": "Português", "ru": "Португальский", "xloc": [ - "default.handlebars->25->861" + "default.handlebars->27->866" ] }, { @@ -13904,7 +14287,7 @@ "pt": "Português (Brasil)", "ru": "Португальский (Бразилия)", "xloc": [ - "default.handlebars->25->862" + "default.handlebars->27->867" ] }, { @@ -13942,7 +14325,7 @@ "nl": "Power Status", "ru": "Состояния питания", "xloc": [ - "default.handlebars->25->1158", + "default.handlebars->27->1163", "default.handlebars->container->column_l->p21->3->1->meshPowerChartDiv->1" ] }, @@ -13959,8 +14342,8 @@ "xloc": [ "default-mobile.handlebars->9->105", "default-mobile.handlebars->9->209", - "default.handlebars->25->549", - "default.handlebars->25->6" + "default.handlebars->27->554", + "default.handlebars->27->6" ] }, { @@ -13974,7 +14357,7 @@ "pt": "Desligar dispositivos", "ru": "Выключить устройства", "xloc": [ - "default.handlebars->25->390" + "default.handlebars->27->390" ] }, { @@ -13990,8 +14373,8 @@ "xloc": [ "default-mobile.handlebars->9->100", "default-mobile.handlebars->9->107", - "default.handlebars->25->1", - "default.handlebars->25->350" + "default.handlebars->27->1", + "default.handlebars->27->350" ] }, { @@ -14007,8 +14390,8 @@ "xloc": [ "default-mobile.handlebars->9->106", "default-mobile.handlebars->9->113", - "default.handlebars->25->362", - "default.handlebars->25->7" + "default.handlebars->27->362", + "default.handlebars->27->7" ] }, { @@ -14037,7 +14420,7 @@ "pt": "Pressione o botão da tecla agora.", "ru": "Нажмите кнопку ключа сейчас.", "xloc": [ - "default.handlebars->25->150" + "default.handlebars->27->150" ] }, { @@ -14051,7 +14434,7 @@ "ru": "Управление процессами", "xloc": [ "default-mobile.handlebars->9->234", - "default.handlebars->25->643" + "default.handlebars->27->648" ] }, { @@ -14080,9 +14463,9 @@ "pt": "Solicitar consentimento do usuário", "ru": "Запрос согласия пользователя", "xloc": [ - "default.handlebars->25->1081", - "default.handlebars->25->1085", - "default.handlebars->25->1088" + "default.handlebars->27->1086", + "default.handlebars->27->1090", + "default.handlebars->27->1093" ] }, { @@ -14111,7 +14494,7 @@ "ru": "Публичная ссылка", "xloc": [ "default-mobile.handlebars->9->74", - "default.handlebars->25->1181" + "default.handlebars->27->1186" ] }, { @@ -14123,7 +14506,7 @@ "pt": "Punjabi", "ru": "Пенджаби", "xloc": [ - "default.handlebars->25->863" + "default.handlebars->27->868" ] }, { @@ -14135,7 +14518,7 @@ "pt": "Punjabi (Índia)", "ru": "Пенджаби (Индия)", "xloc": [ - "default.handlebars->25->864" + "default.handlebars->27->869" ] }, { @@ -14147,7 +14530,7 @@ "pt": "Punjabi (Paquistão)", "ru": "Пенджаби (Пакистан)", "xloc": [ - "default.handlebars->25->865" + "default.handlebars->27->870" ] }, { @@ -14155,13 +14538,13 @@ "de": "Putty", "en": "Putty", "es": "Putty", + "fr": "Putty", "ja": "パテ", "nl": "Putty", "pt": "Putty", "ru": "Putty", - "fr": "Putty", "xloc": [ - "default.handlebars->25->525" + "default.handlebars->27->530" ] }, { @@ -14188,7 +14571,7 @@ "pt": "Quechua", "ru": "Кечуа", "xloc": [ - "default.handlebars->25->866" + "default.handlebars->27->871" ] }, { @@ -14225,14 +14608,14 @@ "cs": "RDP", "de": "RDP", "en": "RDP", + "es": "RDP", + "fr": "RDP", "ja": "RDP", "nl": "RDP", "pt": "RDP", "ru": "RDP", - "fr": "RDP", - "es": "RDP", "xloc": [ - "default.handlebars->25->523" + "default.handlebars->27->528" ] }, { @@ -14240,7 +14623,7 @@ "nl": "RDP verbinding", "ru": "Подключение RDP", "xloc": [ - "default.handlebars->25->423" + "default.handlebars->27->423" ] }, { @@ -14248,22 +14631,21 @@ "nl": "RDP externe verbindings poort:", "ru": "Порт RDP:", "xloc": [ - "default.handlebars->25->422" + "default.handlebars->27->422" ] }, { - "en": "RDP2", - "nl": "RDP2", "cs": "RDP2", "de": "RDP2", + "en": "RDP2", "es": "RDP2", - "ru": "RDP2", "fr": "RDP2", "ja": "RDP2", + "nl": "RDP2", "pt": "RDP2", "ru": "RDP2", "xloc": [ - "default.handlebars->25->424" + "default.handlebars->27->424" ] }, { @@ -14301,12 +14683,12 @@ "de": "RSS", "en": "RSS", "es": "RSS", - "nl": "RSS", - "ru": "RSS", "fr": "RSS", + "nl": "RSS", "pt": "RSS", + "ru": "RSS", "xloc": [ - "default.handlebars->25->1446" + "default.handlebars->27->1451" ] }, { @@ -14320,7 +14702,7 @@ "pt": "Randomize a senha.", "ru": "Случайный пароль.", "xloc": [ - "default.handlebars->25->1258" + "default.handlebars->27->1263" ] }, { @@ -14346,7 +14728,7 @@ "pt": "Reativar Intel®AMT", "ru": "Реактивировать Intel® AMT", "xloc": [ - "default.handlebars->25->1059" + "default.handlebars->27->1064" ] }, { @@ -14359,7 +14741,7 @@ "pt": "Realms", "ru": "Области", "xloc": [ - "default.handlebars->25->1266" + "default.handlebars->27->1271" ] }, { @@ -14375,8 +14757,8 @@ "xloc": [ "default-mobile.handlebars->9->248", "default-mobile.handlebars->9->80", - "default.handlebars->25->1187", - "default.handlebars->25->666" + "default.handlebars->27->1192", + "default.handlebars->27->671" ] }, { @@ -14408,7 +14790,7 @@ "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea3->deskarea3x->DeskTools->DeskToolsRefreshButton", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->3", "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->3", - "default.handlebars->25->434", + "default.handlebars->27->439", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsAreaTop->DeskToolsRefreshButton", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p40->3->3" @@ -14437,8 +14819,8 @@ "ru": "Ретранслятор", "xloc": [ "default-mobile.handlebars->9->124", - "default.handlebars->25->190", - "default.handlebars->25->377" + "default.handlebars->27->190", + "default.handlebars->27->377" ] }, { @@ -14449,7 +14831,7 @@ "nl": "Relay geteld", "ru": "Число ретрансляций", "xloc": [ - "default.handlebars->25->1428" + "default.handlebars->27->1433" ] }, { @@ -14460,7 +14842,7 @@ "nl": "Relay fouten", "ru": "Ошибки ретранслятора", "xloc": [ - "default.handlebars->25->1421" + "default.handlebars->27->1426" ] }, { @@ -14473,8 +14855,8 @@ "pt": "Retransmissão de sessão ", "ru": "Сессии ретранслятора", "xloc": [ - "default.handlebars->25->1427", - "default.handlebars->25->1440" + "default.handlebars->27->1432", + "default.handlebars->27->1445" ] }, { @@ -14488,7 +14870,7 @@ "de": "Dieses Gerät für 30 Tage merken.", "en": "Remember this device for 30 days.", "es": "Recuerde este dispositivo por 30 días.", - "fr": "Rappelez cet appareil pour 30 jours.", + "fr": "Se souvenir de cet appareil pendant 30 jours.", "ja": "このデバイスを30日間記憶します。", "nl": "Onthoud dit apparaat gedurende 30 dagen.", "ru": "Запомнить это устройство на 30 дней.", @@ -14543,7 +14925,7 @@ "pt": "Área de transferência remota", "ru": "Удаленный буфер обмена", "xloc": [ - "default.handlebars->25->627" + "default.handlebars->27->632" ] }, { @@ -14559,8 +14941,8 @@ "xloc": [ "default-mobile.handlebars->9->296", "default-mobile.handlebars->9->314", - "default.handlebars->25->1105", - "default.handlebars->25->1128" + "default.handlebars->27->1110", + "default.handlebars->27->1133" ] }, { @@ -14575,8 +14957,8 @@ "ru": "Настройки удаленного рабочего стола", "xloc": [ "default-mobile.handlebars->9->229", - "default.handlebars->25->222", - "default.handlebars->25->619" + "default.handlebars->27->222", + "default.handlebars->27->624" ] }, { @@ -14590,7 +14972,7 @@ "pt": "Entrada remota do teclado", "ru": "Ввод с удаленной клавиатуры", "xloc": [ - "default.handlebars->25->625" + "default.handlebars->27->630" ] }, { @@ -14604,7 +14986,7 @@ "ru": "Удаленный пользователь Mesh", "xloc": [ "default-mobile.handlebars->9->332", - "default.handlebars->25->1147" + "default.handlebars->27->1152" ] }, { @@ -14615,7 +14997,7 @@ "nl": "Externe gebruiker", "ru": "Удаленный пользователь", "xloc": [ - "default.handlebars->25->1321" + "default.handlebars->27->1326" ] }, { @@ -14630,8 +15012,8 @@ "xloc": [ "default-mobile.handlebars->9->297", "default-mobile.handlebars->9->319", - "default.handlebars->25->1106", - "default.handlebars->25->1133" + "default.handlebars->27->1111", + "default.handlebars->27->1138" ] }, { @@ -14645,7 +15027,7 @@ "pt": "A área de transferência remota é válida por 60 segundos.", "ru": "Удаленный буфер обмена действителен в течении 60 секунд.", "xloc": [ - "default.handlebars->25->626" + "default.handlebars->27->631" ] }, { @@ -14674,7 +15056,7 @@ "pt": "Remover", "ru": "Удалить", "xloc": [ - "default.handlebars->25->140" + "default.handlebars->27->140" ] }, { @@ -14685,8 +15067,8 @@ "nl": "Verwijder apparaatgroep", "ru": "Удалить группу устройств.", "xloc": [ - "default.handlebars->25->1313", - "default.handlebars->25->1397" + "default.handlebars->27->1318", + "default.handlebars->27->1402" ] }, { @@ -14697,7 +15079,7 @@ "nl": "Verwijder gebruiker", "ru": "Удалить пользователя", "xloc": [ - "default.handlebars->25->1393" + "default.handlebars->27->1398" ] }, { @@ -14710,7 +15092,7 @@ "pt": "Remova toda a autenticação do segundo fator.", "ru": "Удалить все двухфакторные аутентификации.", "xloc": [ - "default.handlebars->25->1374" + "default.handlebars->27->1379" ] }, { @@ -14721,7 +15103,7 @@ "nl": "Verwijder alle eerdere gebeurtenissen voor dit gebruikers-ID.", "ru": "Удалить все прошлые события для этого userid.", "xloc": [ - "default.handlebars->25->1260" + "default.handlebars->27->1265" ] }, { @@ -14732,7 +15114,7 @@ "nl": "Verwijder apparaat bij verbreken", "ru": "Удалить устройство при отключении", "xloc": [ - "default.handlebars->25->1090" + "default.handlebars->27->1095" ] }, { @@ -14745,7 +15127,7 @@ "pt": "Remover localização do nó", "ru": "Удалить местоположение узла", "xloc": [ - "default.handlebars->25->426" + "default.handlebars->27->431" ] }, { @@ -14759,7 +15141,7 @@ "pt": "Remova este dispositivo", "ru": "Удалить это устройство", "xloc": [ - "default.handlebars->25->512" + "default.handlebars->27->517" ] }, { @@ -14770,7 +15152,7 @@ "nl": "Verwijder de groepslidmaatschap", "ru": "Удалить членство пользователя в группе", "xloc": [ - "default.handlebars->25->1389" + "default.handlebars->27->1394" ] }, { @@ -14781,7 +15163,7 @@ "nl": "Verwijder gebruikers groepsrechten van deze apparaatgroep", "ru": "Удалить права группы пользователей для этой группы устройств", "xloc": [ - "default.handlebars->25->1309" + "default.handlebars->27->1314" ] }, { @@ -14795,9 +15177,9 @@ "pt": "Remova os direitos de usuário deste grupo de dispositivos", "ru": "Удалить права пользователя для этой группы устройств", "xloc": [ - "default.handlebars->25->1043", - "default.handlebars->25->1300", - "default.handlebars->25->1383" + "default.handlebars->27->1048", + "default.handlebars->27->1305", + "default.handlebars->27->1388" ] }, { @@ -14815,10 +15197,12 @@ "default-mobile.handlebars->9->84", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1", "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1", - "default.handlebars->25->1191", - "default.handlebars->25->670", + "default.handlebars->27->1196", + "default.handlebars->27->425", + "default.handlebars->27->675", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", - "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3" + "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", + "default.handlebars->filesContextMenu->cxfilerename->0" ] }, { @@ -14832,7 +15216,7 @@ "pt": "Requisitos:", "ru": "Требования: ", "xloc": [ - "default.handlebars->25->956" + "default.handlebars->27->961" ] }, { @@ -14847,8 +15231,8 @@ "ru": "Требования: {0}.", "xloc": [ "default-mobile.handlebars->9->48", - "default.handlebars->25->1263", - "default.handlebars->25->1372" + "default.handlebars->27->1268", + "default.handlebars->27->1377" ] }, { @@ -14862,7 +15246,7 @@ "pt": "Requer o suporte Microsoft ClickOnce no seu navegador", "ru": "Требуется поддержка Microsoft ClickOnce в вашем браузере", "xloc": [ - "default.handlebars->25->522" + "default.handlebars->27->527" ] }, { @@ -14876,8 +15260,8 @@ "pt": "Requer o suporte Microsoft ClickOnce no seu navegador.", "ru": "Требуется поддержка Microsoft ClickOnce в вашем браузере.", "xloc": [ - "default.handlebars->25->524", - "default.handlebars->25->526" + "default.handlebars->27->529", + "default.handlebars->27->531" ] }, { @@ -14892,7 +15276,7 @@ "ru": "Перезагрузить", "xloc": [ "default-mobile.handlebars->9->208", - "default.handlebars->25->548", + "default.handlebars->27->553", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devMapToolbar" ] }, @@ -14952,7 +15336,7 @@ "pt": "Redefinir dispositivos", "ru": "Отправить в перезагрузку", "xloc": [ - "default.handlebars->25->389" + "default.handlebars->27->389" ] }, { @@ -14980,7 +15364,7 @@ "pt": "Reiniciar", "ru": "Перезапуск", "xloc": [ - "default.handlebars->25->641", + "default.handlebars->27->646", "player.handlebars->p11->deskarea0->deskarea4->3" ] }, @@ -14995,7 +15379,7 @@ "pt": "Restaurar servidor", "ru": "Восстановить сервер", "xloc": [ - "default.handlebars->25->983" + "default.handlebars->27->988" ] }, { @@ -15022,7 +15406,7 @@ "pt": "Restaurar o servidor usando um backup, isso excluirá os dados existentes do servidor. Faça isso apenas se você souber o que está fazendo.", "ru": "Восстановить сервер из резервной копии, это удалит существующие данные сервера . Продолжайте дальше только если знаете, что делаете.", "xloc": [ - "default.handlebars->25->980" + "default.handlebars->27->985" ] }, { @@ -15036,7 +15420,7 @@ "pt": "Restrições", "ru": "Ограничения", "xloc": [ - "default.handlebars->25->1332" + "default.handlebars->27->1337" ] }, { @@ -15048,7 +15432,7 @@ "pt": "Rhaeto-Romanic", "ru": "Ретороманский", "xloc": [ - "default.handlebars->25->867" + "default.handlebars->27->872" ] }, { @@ -15061,7 +15445,7 @@ "pt": "Romena", "ru": "Румынский", "xloc": [ - "default.handlebars->25->868" + "default.handlebars->27->873" ] }, { @@ -15074,7 +15458,7 @@ "pt": "Romeno (Moldávia)", "ru": "Румынский (Молдавия)", "xloc": [ - "default.handlebars->25->869" + "default.handlebars->27->874" ] }, { @@ -15090,8 +15474,8 @@ "xloc": [ "default-mobile.handlebars->9->242", "default-mobile.handlebars->9->66", - "default.handlebars->25->1166", - "default.handlebars->25->660" + "default.handlebars->27->1171", + "default.handlebars->27->665" ] }, { @@ -15105,8 +15489,8 @@ "pt": "Certificado raiz", "ru": "Корневой сертификат", "xloc": [ - "default.handlebars->25->268", - "default.handlebars->25->275" + "default.handlebars->27->268", + "default.handlebars->27->275" ] }, { @@ -15120,8 +15504,8 @@ "pt": "Arquivo de certificado raiz", "ru": "Файл корневого сертификата", "xloc": [ - "default.handlebars->25->270", - "default.handlebars->25->276" + "default.handlebars->27->270", + "default.handlebars->27->276" ] }, { @@ -15175,8 +15559,8 @@ "pt": "Roteador", "ru": "Router", "xloc": [ - "default.handlebars->25->209", - "default.handlebars->25->519" + "default.handlebars->27->209", + "default.handlebars->27->524" ] }, { @@ -15190,7 +15574,7 @@ "pt": "Russo", "ru": "Русский", "xloc": [ - "default.handlebars->25->870" + "default.handlebars->27->875" ] }, { @@ -15204,7 +15588,7 @@ "pt": "Russo (Moldávia)", "ru": "Русский (Молдавия)", "xloc": [ - "default.handlebars->25->871" + "default.handlebars->27->876" ] }, { @@ -15218,7 +15602,7 @@ "pt": "Igual ao nome do dispositivo", "ru": "Такое же как имя устройства", "xloc": [ - "default.handlebars->25->240" + "default.handlebars->27->240" ] }, { @@ -15230,7 +15614,7 @@ "pt": "Sami (lapão)", "ru": "Саамский", "xloc": [ - "default.handlebars->25->872" + "default.handlebars->27->877" ] }, { @@ -15243,7 +15627,7 @@ "pt": "Valores de intervalo de IP de amostra
192.168.0.100
192.168.1.0/24
192.167.0.1-192.168.0.100", "ru": "Пример значений диапазона IP
192.168.0.100
192.168.1.0/24
192.167.0.1-192.168.0.100", "xloc": [ - "default.handlebars->25->163" + "default.handlebars->27->163" ] }, { @@ -15255,7 +15639,7 @@ "pt": "Sango", "ru": "Санго", "xloc": [ - "default.handlebars->25->873" + "default.handlebars->27->878" ] }, { @@ -15267,7 +15651,7 @@ "pt": "Sanskrit", "ru": "Санскритский", "xloc": [ - "default.handlebars->25->874" + "default.handlebars->27->879" ] }, { @@ -15279,7 +15663,7 @@ "pt": "Sardinian", "ru": "Сардинский", "xloc": [ - "default.handlebars->25->875" + "default.handlebars->27->880" ] }, { @@ -15307,7 +15691,7 @@ "pt": "Salvar localização do nó", "ru": "Сохранить расположение узла", "xloc": [ - "default.handlebars->25->427" + "default.handlebars->27->432" ] }, { @@ -15350,7 +15734,7 @@ "pt": "Scan", "ru": "Сканировать", "xloc": [ - "default.handlebars->25->255" + "default.handlebars->27->255" ] }, { @@ -15364,7 +15748,7 @@ "pt": "Escaneamento via rede", "ru": "Сканировать сеть", "xloc": [ - "default.handlebars->25->228" + "default.handlebars->27->228" ] }, { @@ -15378,7 +15762,7 @@ "pt": "Digitalizar para Intel® dispositivos AMT", "ru": "Сканировать на наличие Intel® AMT устройств", "xloc": [ - "default.handlebars->25->256" + "default.handlebars->27->256" ] }, { @@ -15392,7 +15776,7 @@ "pt": "Escaneando...", "ru": "Сканирование...", "xloc": [ - "default.handlebars->25->257" + "default.handlebars->27->257" ] }, { @@ -15406,7 +15790,7 @@ "pt": "Procurar", "ru": "Поиск", "xloc": [ - "default.handlebars->25->440", + "default.handlebars->27->445", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devMapToolbar" ] }, @@ -15450,9 +15834,9 @@ "ru": "Защита", "xloc": [ "default-mobile.handlebars->9->214", - "default.handlebars->25->1356", - "default.handlebars->25->244", - "default.handlebars->25->559" + "default.handlebars->27->1361", + "default.handlebars->27->244", + "default.handlebars->27->564" ] }, { @@ -15466,7 +15850,7 @@ "pt": "Chave de segurança", "ru": "Ключ безопасности", "xloc": [ - "default.handlebars->25->1354" + "default.handlebars->27->1359" ] }, { @@ -15487,10 +15871,10 @@ "pt": "Selecionar tudo", "ru": "Выбрать все", "xloc": [ - "default.handlebars->25->1183", - "default.handlebars->25->382", - "default.handlebars->25->662", - "default.handlebars->25->664", + "default.handlebars->27->1188", + "default.handlebars->27->382", + "default.handlebars->27->667", + "default.handlebars->27->669", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", @@ -15508,9 +15892,9 @@ "pt": "Selecione nenhum", "ru": "Очистить все", "xloc": [ - "default.handlebars->25->1182", - "default.handlebars->25->381", - "default.handlebars->25->663", + "default.handlebars->27->1187", + "default.handlebars->27->381", + "default.handlebars->27->668", "default.handlebars->meshContextMenu->cxselectnone" ] }, @@ -15524,7 +15908,7 @@ "pt": "Selecione um novo grupo para dispositivos selecionados", "ru": "Выберите новую группу для выбранных устройств", "xloc": [ - "default.handlebars->25->573" + "default.handlebars->27->578" ] }, { @@ -15537,7 +15921,7 @@ "pt": "Selecione um novo grupo para este dispositivo", "ru": "Выберите новую группу для этого устройства", "xloc": [ - "default.handlebars->25->572" + "default.handlebars->27->577" ] }, { @@ -15550,7 +15934,7 @@ "pt": "Selecione um nó para colocar", "ru": "Выберите узел для размещения", "xloc": [ - "default.handlebars->25->443" + "default.handlebars->27->448" ] }, { @@ -15563,7 +15947,7 @@ "pt": "Selecione uma operação para executar em todos os dispositivos selecionados. As ações serão executadas apenas com os direitos adequados.", "ru": "Выберите действие для осуществления на всех выбранных устройствах. Действия будут выполнены только при наличии соответствующих прав.", "xloc": [ - "default.handlebars->25->385" + "default.handlebars->27->385" ] }, { @@ -15577,7 +15961,7 @@ "ru": "Выберите действие для осуществления на этом устройстве.", "xloc": [ "default-mobile.handlebars->9->205", - "default.handlebars->25->545" + "default.handlebars->27->550" ] }, { @@ -15606,7 +15990,7 @@ "ru": "Только собственные события", "xloc": [ "default-mobile.handlebars->9->324", - "default.handlebars->25->1138" + "default.handlebars->27->1143" ] }, { @@ -15636,8 +16020,8 @@ "pt": "Enviar Mensagem MQTT", "ru": "Отправить MQTT сообщение", "xloc": [ - "default.handlebars->25->383", - "default.handlebars->25->550" + "default.handlebars->27->383", + "default.handlebars->27->555" ] }, { @@ -15651,7 +16035,7 @@ "pt": "Enviar mensagem MQTT", "ru": "Отправить MQTT сообщение", "xloc": [ - "default.handlebars->25->565" + "default.handlebars->27->570" ] }, { @@ -15662,7 +16046,7 @@ "nl": "Stuur een bericht naar alle gebruikers in deze groep.", "ru": "Отправить уведомление всем пользователям этой группы.", "xloc": [ - "default.handlebars->25->1297" + "default.handlebars->27->1302" ] }, { @@ -15676,7 +16060,7 @@ "pt": "Envie uma notificação de texto para este usuário.", "ru": "Отправить текстовое уведомление этому пользователю.", "xloc": [ - "default.handlebars->25->1234" + "default.handlebars->27->1239" ] }, { @@ -15690,7 +16074,7 @@ "pt": "Enviar link de instalação", "ru": "Отправить ссылку для установки", "xloc": [ - "default.handlebars->25->286" + "default.handlebars->27->286" ] }, { @@ -15704,7 +16088,7 @@ "pt": "Enviar email de convite.", "ru": "Отправить приглашение по email.", "xloc": [ - "default.handlebars->25->1262" + "default.handlebars->27->1267" ] }, { @@ -15731,7 +16115,7 @@ "pt": "Enviar notificação do usuário", "ru": "Отправить уведомление пользователю", "xloc": [ - "default.handlebars->25->1361" + "default.handlebars->27->1366" ] }, { @@ -15743,7 +16127,7 @@ "pt": "Sérvia", "ru": "Сербский", "xloc": [ - "default.handlebars->25->878" + "default.handlebars->27->883" ] }, { @@ -15756,7 +16140,7 @@ "pt": "Serial", "ru": "Серийный номер", "xloc": [ - "default.handlebars->25->72" + "default.handlebars->27->72" ] }, { @@ -15769,7 +16153,7 @@ "pt": "Backup do servidor", "ru": "Резервное копирование сервера", "xloc": [ - "default.handlebars->25->1271" + "default.handlebars->27->1276" ] }, { @@ -15781,7 +16165,7 @@ "nl": "Server Certificaat", "ru": "Сертификат сервера", "xloc": [ - "default.handlebars->25->1456" + "default.handlebars->27->1461" ] }, { @@ -15796,9 +16180,9 @@ "xloc": [ "default-mobile.handlebars->9->303", "default-mobile.handlebars->9->316", - "default.handlebars->25->1112", - "default.handlebars->25->1130", - "default.handlebars->25->1269" + "default.handlebars->27->1117", + "default.handlebars->27->1135", + "default.handlebars->27->1274" ] }, { @@ -15806,13 +16190,14 @@ "de": "Server-Berechtigungen", "en": "Server Permissions", "es": "Permisos de servidor", + "fr": "Permissions du serveur", "ja": "サーバーの許可", "nl": "Serverrechten", "pt": "Permissões do servidor", "ru": "Разрешения сервера", "xloc": [ - "default.handlebars->25->1227", - "default.handlebars->25->1279" + "default.handlebars->27->1232", + "default.handlebars->27->1284" ] }, { @@ -15820,12 +16205,13 @@ "de": "Server-Kontingent", "en": "Server Quota", "es": "Cuota de servidor", + "fr": "Quota serveur", "ja": "サーバークォータ", "nl": "Serverquotum", "pt": "Cota do servidor", "ru": "Квота сервера", "xloc": [ - "default.handlebars->25->1340" + "default.handlebars->27->1345" ] }, { @@ -15833,12 +16219,13 @@ "de": "Server-Wiederherstellung", "en": "Server Restore", "es": "Restauración del servidor", + "fr": "Restauration du serveur", "ja": "サーバーの復元", "nl": "Server herstellen", "pt": "Restauração do servidor", "ru": "Восстановление сервера", "xloc": [ - "default.handlebars->25->1272" + "default.handlebars->27->1277" ] }, { @@ -15852,7 +16239,7 @@ "pt": "Direitos do servidor", "ru": "Права", "xloc": [ - "default.handlebars->25->1339" + "default.handlebars->27->1344" ] }, { @@ -15863,7 +16250,7 @@ "nl": "Server Status", "ru": "Состояние сервера", "xloc": [ - "default.handlebars->25->1407" + "default.handlebars->27->1412" ] }, { @@ -15891,7 +16278,7 @@ "pt": "Rastreamento de servidor", "ru": "Трассировка сервера", "xloc": [ - "default.handlebars->25->1465" + "default.handlebars->27->1470" ] }, { @@ -15905,7 +16292,7 @@ "pt": "Atualizações do Servidor", "ru": "Обновление сервера", "xloc": [ - "default.handlebars->25->1273" + "default.handlebars->27->1278" ] }, { @@ -15971,7 +16358,7 @@ "pt": "O servidor não possui log de erros.", "ru": "На сервере нет журнала ошибок.", "xloc": [ - "default.handlebars->25->116" + "default.handlebars->27->116" ] }, { @@ -15979,6 +16366,7 @@ "de": "Server zeichnet diese Sitzung auf", "en": "Server is recording this session", "es": "El servidor está grabando esta sesión.", + "fr": "Session en cours d'enregistrement", "ja": "サーバーはこのセッションを記録しています", "nl": "Server neemt deze sessie op", "pt": "O servidor está gravando esta sessão", @@ -15998,7 +16386,7 @@ "pt": "ServerStats.csv", "ru": "ServerStats.csv", "xloc": [ - "default.handlebars->25->1448" + "default.handlebars->27->1453" ] }, { @@ -16011,7 +16399,7 @@ "pt": "Detalhes do serviço", "ru": "Детали службы", "xloc": [ - "default.handlebars->25->642" + "default.handlebars->27->647" ] }, { @@ -16082,7 +16470,7 @@ "pt": "Arquivo de configurações", "ru": "Файл с настройками", "xloc": [ - "default.handlebars->25->331" + "default.handlebars->27->331" ] }, { @@ -16109,7 +16497,7 @@ "pt": "Configuração CIRA", "ru": "Установить CIRA", "xloc": [ - "default.handlebars->25->263" + "default.handlebars->27->263" ] }, { @@ -16122,7 +16510,7 @@ "pt": "Método de instalação", "ru": "Метод установки", "xloc": [ - "default.handlebars->25->261" + "default.handlebars->27->261" ] }, { @@ -16137,10 +16525,10 @@ "ru": "Установка...", "xloc": [ "default-mobile.handlebars->9->3", - "default.handlebars->25->10", - "default.handlebars->25->212", - "default.handlebars->25->215", - "default.handlebars->25->221", + "default.handlebars->27->10", + "default.handlebars->27->212", + "default.handlebars->27->215", + "default.handlebars->27->221", "xterm.handlebars->9->3" ] }, @@ -16163,12 +16551,13 @@ "de": "Geteilter Prozess", "en": "SharedProcess", "es": "Procesos compartidos", + "fr": "Processus partagés", "ja": "SharedProcess", "nl": "Gedeeld proces", "pt": "Processo compartilhado", "ru": "Общий процесс", "xloc": [ - "default.handlebars->25->636" + "default.handlebars->27->641" ] }, { @@ -16236,6 +16625,7 @@ "de": "Lokalen Mauszeiger anzeigen", "en": "Show Local Mouse Cursor", "es": "Mostrar cursor del mouse local", + "fr": "Afficher le curseur local", "ja": "ローカルマウスカーソルを表示", "nl": "Lokale muiscursor weergeven", "pt": "Mostrar Cursor do Mouse Local", @@ -16250,13 +16640,14 @@ "de": "Nur eigene Ereignisse anzeigen", "en": "Show Only Own Events", "es": "Mostrar solo eventos propios", + "fr": "Voir ses propres évènements", "ja": "自分のイベントのみを表示", "nl": "Toon alleen eigen gebeurtenissen", "pt": "Mostrar apenas eventos próprios", "ru": "Показывать только собственные события", "xloc": [ "default-mobile.handlebars->9->306", - "default.handlebars->25->1115" + "default.handlebars->27->1120" ] }, { @@ -16270,7 +16661,7 @@ "pt": "Mostrar barra de ferramentas de conexão", "ru": "Показывать панель-уведомление", "xloc": [ - "default.handlebars->25->1082" + "default.handlebars->27->1087" ] }, { @@ -16278,12 +16669,13 @@ "de": "Geräte-Standortinformationen anzeigen", "en": "Show device locations information", "es": "Mostrar información de ubicaciones del dispositivo", + "fr": "Voir l'emplacement", "ja": "デバイスの位置情報を表示する", "nl": "Informatie over apparaatlocaties weergeven", "pt": "Mostrar informações de localizações do dispositivo", "ru": "Показать информацию о расположении устройства", "xloc": [ - "default.handlebars->25->516" + "default.handlebars->27->521" ] }, { @@ -16291,12 +16683,13 @@ "de": "Geräte-Netzwerkschnittstelleninformationen anzeigen", "en": "Show device network interface information", "es": "Mostrar información de la interfaz de red del dispositivo", + "fr": "Voir les informations de l'interface réseau", "ja": "デバイスのネットワークインターフェイス情報を表示する", "nl": "Toon apparaat netwerk interface informatie", "pt": "Mostrar informações da interface de rede do dispositivo", "ru": "Показать информацию о сетевом интерфейсе устройства", "xloc": [ - "default.handlebars->25->514" + "default.handlebars->27->519" ] }, { @@ -16304,6 +16697,7 @@ "de": "Geräte-Betriebssystemname anzeigen", "en": "Show devices operating system name", "es": "Mostrar el nombre del sistema operativo de los dispositivos", + "fr": "Voir le nom de l'OS des appareils", "ja": "デバイスのオペレーティングシステム名を表示する", "nl": "Toon apparaten besturingssysteemnaam", "pt": "Mostrar o nome do sistema operacional dos dispositivos", @@ -16336,8 +16730,8 @@ "pt": "Modo de controle de administrador simples (ACM)", "ru": "Простой режим управления администратора (ACM)", "xloc": [ - "default.handlebars->25->1020", - "default.handlebars->25->1046" + "default.handlebars->27->1025", + "default.handlebars->27->1051" ] }, { @@ -16350,9 +16744,9 @@ "pt": "Modo de Controle de Cliente Simples (CCM)", "ru": "Простой режим управления клиента (CCM)", "xloc": [ - "default.handlebars->25->1018", - "default.handlebars->25->1049", - "default.handlebars->25->1053" + "default.handlebars->27->1023", + "default.handlebars->27->1054", + "default.handlebars->27->1058" ] }, { @@ -16365,7 +16759,7 @@ "pt": "Sindhi", "ru": "Синдхи", "xloc": [ - "default.handlebars->25->876" + "default.handlebars->27->881" ] }, { @@ -16378,7 +16772,7 @@ "pt": "Cingalês", "ru": "Сингальский", "xloc": [ - "default.handlebars->25->877" + "default.handlebars->27->882" ] }, { @@ -16403,7 +16797,7 @@ "nl": "Grootte: 150%", "ru": "Размер: 100%", "xloc": [ - "default.handlebars->25->690" + "default.handlebars->27->695" ] }, { @@ -16414,7 +16808,7 @@ "nl": "Grootte: 150%", "ru": "Размер: 125%", "xloc": [ - "default.handlebars->25->691" + "default.handlebars->27->696" ] }, { @@ -16425,7 +16819,7 @@ "nl": "Grootte: 150%", "ru": "Размер: 150%", "xloc": [ - "default.handlebars->25->692" + "default.handlebars->27->697" ] }, { @@ -16436,7 +16830,7 @@ "nl": "Grootte: 200%", "ru": "Размер: 200%", "xloc": [ - "default.handlebars->25->693" + "default.handlebars->27->698" ] }, { @@ -16444,7 +16838,7 @@ "de": "Schlafen", "en": "Sleep", "es": "Dormir", - "fr": "Endormir", + "fr": "Mettre en veille", "ja": "睡眠", "nl": "Slaapstand", "pt": "Hibernar", @@ -16454,10 +16848,10 @@ "default-mobile.handlebars->9->102", "default-mobile.handlebars->9->103", "default-mobile.handlebars->9->207", - "default.handlebars->25->2", - "default.handlebars->25->3", - "default.handlebars->25->4", - "default.handlebars->25->547" + "default.handlebars->27->2", + "default.handlebars->27->3", + "default.handlebars->27->4", + "default.handlebars->27->552" ] }, { @@ -16465,12 +16859,13 @@ "de": "Geräte schlafenlegen", "en": "Sleep devices", "es": "Dispositivos dormidos", + "fr": "Appareils en veille", "ja": "スリープデバイス", "nl": "Slaap apparaten", "pt": "Hibernar dispositivo", "ru": "Отправить в сон", "xloc": [ - "default.handlebars->25->388" + "default.handlebars->27->388" ] }, { @@ -16486,8 +16881,8 @@ "xloc": [ "default-mobile.handlebars->9->108", "default-mobile.handlebars->9->109", - "default.handlebars->25->352", - "default.handlebars->25->354" + "default.handlebars->27->352", + "default.handlebars->27->354" ] }, { @@ -16500,7 +16895,7 @@ "pt": "Eslovaco", "ru": "Словацкий", "xloc": [ - "default.handlebars->25->879" + "default.handlebars->27->884" ] }, { @@ -16513,7 +16908,7 @@ "pt": "Esloveno", "ru": "Словенский", "xloc": [ - "default.handlebars->25->880" + "default.handlebars->27->885" ] }, { @@ -16556,7 +16951,7 @@ "pt": "Foco pequeno", "ru": "Малая фокусировка", "xloc": [ - "default.handlebars->25->622" + "default.handlebars->27->627" ] }, { @@ -16564,12 +16959,13 @@ "de": "Agenten sanft trennen", "en": "Soft disconnect agent", "es": "Agente de desconexión suave", + "fr": "Déconnecter l'agent", "ja": "ソフト切断エージェント", "nl": "Softwarematig verbreken agent", "pt": "Agente de desconexão suave", "ru": "Програмное отключение агента", "xloc": [ - "default.handlebars->25->715" + "default.handlebars->27->720" ] }, { @@ -16583,7 +16979,7 @@ "ru": "Soft-Off", "xloc": [ "default-mobile.handlebars->9->112", - "default.handlebars->25->360" + "default.handlebars->27->360" ] }, { @@ -16609,7 +17005,7 @@ "pt": "Somani", "ru": "Сомани", "xloc": [ - "default.handlebars->25->881" + "default.handlebars->27->886" ] }, { @@ -16621,7 +17017,7 @@ "pt": "Sorbian", "ru": "Сорбский", "xloc": [ - "default.handlebars->25->882" + "default.handlebars->27->887" ] }, { @@ -16730,127 +17126,137 @@ "pt": "Espanhol", "ru": "Испанский", "xloc": [ - "default.handlebars->25->883" + "default.handlebars->27->888" ] }, { "cs": "španělština (Argentina)", "de": "Spanisch (Argentinien)", "en": "Spanish (Argentina)", + "fr": "Espagnol (Argentine)", "ja": "スペイン語(アルゼンチン)", "nl": "Spaans (Argentinië)", "pt": "Espanhol (Argentina)", "ru": "Испанский (Аргентина)", "xloc": [ - "default.handlebars->25->884" + "default.handlebars->27->889" ] }, { "cs": "španělština (Bolívie)", "de": "Spanisch (Bolivien)", "en": "Spanish (Bolivia)", + "fr": "Espagnol (Bolivie)", "ja": "スペイン語(ボリビア)", "nl": "Spaans (Bolivia)", "pt": "Espanhol (Bolívia)", "ru": "Испанский (Боливия)", "xloc": [ - "default.handlebars->25->885" + "default.handlebars->27->890" ] }, { "cs": "španělština (Chile)", "de": "Spanisch (Chile)", "en": "Spanish (Chile)", + "fr": "Espagnol (Chili)", "ja": "スペイン語(チリ)", "nl": "Spaans (Chili)", "pt": "Espanhol (Chile)", "ru": "Испанский (Чили)", "xloc": [ - "default.handlebars->25->886" + "default.handlebars->27->891" ] }, { "cs": "španělština (Kolumbie)", "de": "Spanisch (Kolumbien)", "en": "Spanish (Colombia)", + "fr": "Espagnol (Colombie)", "ja": "スペイン語(コロンビア)", "nl": "Spaans (Colombia)", "pt": "Espanhol (Colômbia)", "ru": "Испанский (Колумбия)", "xloc": [ - "default.handlebars->25->887" + "default.handlebars->27->892" ] }, { "cs": "španělština (Kostarika)", "de": "Spanisch (Costa Rica)", "en": "Spanish (Costa Rica)", + "fr": "Espagnol (Costa Rica)", "ja": "スペイン語(コスタリカ)", "nl": "Spaans (Costa Rica)", "pt": "Espanhol (Costa Rica)", "ru": "Испанский (Коста-Рика)", "xloc": [ - "default.handlebars->25->888" + "default.handlebars->27->893" ] }, { "cs": "španělština (Dominikánská republika)", "de": "Spanisch (Dominikanische Republik)", "en": "Spanish (Dominican Republic)", + "fr": "Espagnol (République dominicaine)", "ja": "スペイン語(ドミニカ共和国)", "nl": "Spaans (Dominicaanse Republiek)", "pt": "Espanhol (República Dominicana)", "ru": "Испанский (Доминиканская Республика)", "xloc": [ - "default.handlebars->25->889" + "default.handlebars->27->894" ] }, { "cs": "španělština (Ekvádor)", "de": "Spanisch (Ecuador)", "en": "Spanish (Ecuador)", + "fr": "Espagnol (Equateur)", "ja": "スペイン語(エクアドル)", "nl": "Spaans (Ecuador)", "pt": "Espanhol (Equador)", "ru": "Испанский (Эквадор)", "xloc": [ - "default.handlebars->25->890" + "default.handlebars->27->895" ] }, { "cs": "španělština (Salvador)", "de": "Spanisch (El Salvador)", "en": "Spanish (El Salvador)", + "fr": "Espagnol (Salvador)", "ja": "スペイン語(エルサルバドル)", "nl": "Spaans (El Salvador)", "pt": "Espanhol (El Salvador)", "ru": "Испанский (Сальвадор)", "xloc": [ - "default.handlebars->25->891" + "default.handlebars->27->896" ] }, { "cs": "španělština (Guatemala)", "de": "Spanisch (Guatemala)", "en": "Spanish (Guatemala)", + "fr": "Espagnol (Guatemala)", "ja": "スペイン語(グアテマラ)", "nl": "Spaans (Guatemala)", "pt": "Espanhol (Guatemala)", "ru": "Испанский (Гватемала)", "xloc": [ - "default.handlebars->25->892" + "default.handlebars->27->897" ] }, { "cs": "španělština (Honduras)", "de": "Spanisch (Honduras)", "en": "Spanish (Honduras)", + "fr": "Espagnol (Honduras)", "ja": "スペイン語(ホンジュラス)", "nl": "Spaans (Honduras)", "pt": "Espanhol (Honduras)", "ru": "Испанский (Гондурас)", "xloc": [ - "default.handlebars->25->893" + "default.handlebars->27->898" ] }, { @@ -16858,108 +17264,117 @@ "de": "Spanisch (Mexiko)", "en": "Spanish (Mexico)", "es": "Español (Mexico)", + "fr": "Espagnol (Mexique)", "ja": "スペイン語(メキシコ)", "nl": "Spaans (Mexico)", "pt": "Espanhol (México)", "ru": "Испанский (Мексика)", "xloc": [ - "default.handlebars->25->894" + "default.handlebars->27->899" ] }, { "cs": "španělština (Nikaragua)", "de": "Spanisch (Nicaragua)", "en": "Spanish (Nicaragua)", + "fr": "Espagnol (Nicaragua)", "ja": "スペイン語(ニカラグア)", "nl": "Spaans (Nicaragua)", "pt": "Espanhol (Nicarágua)", "ru": "Испанский (Никарагуа)", "xloc": [ - "default.handlebars->25->895" + "default.handlebars->27->900" ] }, { "cs": "španělština (Panama)", "de": "Spanisch (Panama)", "en": "Spanish (Panama)", + "fr": "Espagnol (Panama)", "ja": "スペイン語(パナマ)", "nl": "Spaans (Panama)", "pt": "Espanhol (Panamá)", "ru": "Испанский (Панама)", "xloc": [ - "default.handlebars->25->896" + "default.handlebars->27->901" ] }, { "cs": "španělština (Paraguay)", "de": "Spanisch (Paraguay)", "en": "Spanish (Paraguay)", + "fr": "Espagnol (Paraguay)", "ja": "スペイン語(パラグアイ)", "nl": "Spaans (Paraguay)", "pt": "Espanhol (Paraguai)", "ru": "Испанский (Парагвай)", "xloc": [ - "default.handlebars->25->897" + "default.handlebars->27->902" ] }, { "cs": "španělština (Peru)", "de": "Spanisch (Peru)", "en": "Spanish (Peru)", + "fr": "Espagnol (Perou)", "ja": "スペイン語(ペルー)", "nl": "Spaans (Peru)", "pt": "Espanhol (Peru)", "ru": "Испанский (Перу)", "xloc": [ - "default.handlebars->25->898" + "default.handlebars->27->903" ] }, { "cs": "španělština (Portoriko)", "de": "Spanisch (Puerto Rico)", "en": "Spanish (Puerto Rico)", + "fr": "Espagnol (Porto Rico)", "ja": "スペイン語(プエルトリコ)", "nl": "Spaans (Puerto Rico)", "pt": "Espanhol (Porto Rico)", "ru": "Испанский (Пуэрто-Рико)", "xloc": [ - "default.handlebars->25->899" + "default.handlebars->27->904" ] }, { "cs": "španělština (Španělsko)", "de": "Spanisch (Spanien)", "en": "Spanish (Spain)", + "fr": "Espagnol (Espagne)", "ja": "スペイン語(スペイン)", "nl": "Spaans (Spanje)", "pt": "Espanhol (Espanha)", "ru": "Испанский (Испания)", "xloc": [ - "default.handlebars->25->900" + "default.handlebars->27->905" ] }, { "cs": "španělština (Uruguay)", "de": "Spanisch (Uruguay)", "en": "Spanish (Uruguay)", + "fr": "Espagnol (Uruguay)", "ja": "スペイン語(ウルグアイ)", "nl": "Spaans (Uruguay)", "pt": "Espanhol (Uruguai)", "ru": "Испанский (Уругвай)", "xloc": [ - "default.handlebars->25->901" + "default.handlebars->27->906" ] }, { "cs": "španělština (Venezuela)", "de": "Spanisch (Venezuela)", "en": "Spanish (Venezuela)", + "fr": "Espagnol (Vénézuela)", "ja": "スペイン語(ベネズエラ)", "nl": "Spaans (Venezuela)", "pt": "Espanhol (Venezuela)", "ru": "Испанский (Венесуэла)", "xloc": [ - "default.handlebars->25->902" + "default.handlebars->27->907" ] }, { @@ -16967,6 +17382,7 @@ "de": "Spezielle Tasten", "en": "Special Keys", "es": "Teclas especiales", + "fr": "Touches spéciales", "ja": "特別なキー", "nl": "Speciale toetsen", "pt": "Chaves especiais", @@ -16987,7 +17403,7 @@ "pt": "Start", "ru": "Старт", "xloc": [ - "default.handlebars->25->639" + "default.handlebars->27->644" ] }, { @@ -16995,12 +17411,13 @@ "de": "Zustand", "en": "State", "es": "Estado", + "fr": "Etat", "ja": "状態", "nl": "Status", "pt": "Estado", "ru": "Состояние", "xloc": [ - "default.handlebars->25->630", + "default.handlebars->27->635", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsServiceTab->deskToolsServiceHeader->1" ] }, @@ -17028,7 +17445,7 @@ "pt": "Status", "ru": "Статус", "xloc": [ - "default.handlebars->25->1367", + "default.handlebars->27->1372", "default.handlebars->container->column_l->p42->p42tbl->1->0->7" ] }, @@ -17043,7 +17460,7 @@ "pt": "Pare", "ru": "Стоп", "xloc": [ - "default.handlebars->25->640" + "default.handlebars->27->645" ] }, { @@ -17051,13 +17468,14 @@ "de": "Prozess #{0} \\\"{1}\\\" beenden?", "en": "Stop process #{0} \\\"{1}\\\"?", "es": "Detener proceso #{0} \\\"{1}\\\"?", + "fr": "Arrêter le processus #{0} \\\"{1}\\\"?", "ja": "プロセス#{0} \\\"{1}\\\"を停止しますか?", "nl": "Stop process #{0} \\\"{1}\\\"?", "pt": "Parar processo #{0} \\\"{1}\\\"?", "ru": "Прервать процесс #{0} \\\"{1}\\\"?", "xloc": [ "default-mobile.handlebars->9->235", - "default.handlebars->25->644" + "default.handlebars->27->649" ] }, { @@ -17065,7 +17483,7 @@ "de": "Speicher überschritten", "en": "Storage exceed", "es": "El almacenamiento se excede", - "fr": "Stockage dépassent", + "fr": "Limite de stockage dépassée", "ja": "ストレージを超えています", "nl": "Opslag overschrijden", "pt": "Armazenamento excedido", @@ -17084,7 +17502,7 @@ "pt": "O limite de armazenamento excede", "ru": "Превышен лимит места для хранения", "xloc": [ - "default.handlebars->25->1169" + "default.handlebars->27->1174" ] }, { @@ -17092,12 +17510,13 @@ "de": "Stark", "en": "Strong", "es": "Fuerte", + "fr": "Fort", "ja": "強い", "nl": "Sterk", "pt": "Forte", "ru": "Надежный", "xloc": [ - "default.handlebars->25->973" + "default.handlebars->27->978" ] }, { @@ -17128,7 +17547,7 @@ "pt": "Sucesso", "ru": "Успешно", "xloc": [ - "default.handlebars->25->84" + "default.handlebars->27->84" ] }, { @@ -17162,7 +17581,7 @@ "pt": "Sutu", "ru": "Суту", "xloc": [ - "default.handlebars->25->903" + "default.handlebars->27->908" ] }, { @@ -17174,7 +17593,7 @@ "pt": "Suaíli", "ru": "Суахили", "xloc": [ - "default.handlebars->25->904" + "default.handlebars->27->909" ] }, { @@ -17186,7 +17605,7 @@ "pt": "Sueco", "ru": "Шведский", "xloc": [ - "default.handlebars->25->905" + "default.handlebars->27->910" ] }, { @@ -17198,7 +17617,7 @@ "pt": "Sueco (Finlândia)", "ru": "Шведский (Финляндия)", "xloc": [ - "default.handlebars->25->906" + "default.handlebars->27->911" ] }, { @@ -17210,7 +17629,7 @@ "pt": "Sueco (Suécia)", "ru": "Шведский (Швеция)", "xloc": [ - "default.handlebars->25->907" + "default.handlebars->27->912" ] }, { @@ -17221,7 +17640,7 @@ "nl": "Synchroniseer serverapparaatnaam met hostnaam", "ru": "Синхронизировать имя устройства на сервере с именем хоста", "xloc": [ - "default.handlebars->25->1091" + "default.handlebars->27->1096" ] }, { @@ -17279,7 +17698,7 @@ "ru": "TLS", "xloc": [ "default-mobile.handlebars->9->183", - "default.handlebars->25->474" + "default.handlebars->27->479" ] }, { @@ -17294,8 +17713,8 @@ "ru": "Требуется безопасность TLS", "xloc": [ "default-mobile.handlebars->9->216", - "default.handlebars->25->246", - "default.handlebars->25->561" + "default.handlebars->27->246", + "default.handlebars->27->566" ] }, { @@ -17320,7 +17739,7 @@ "pt": "Tag1, Tag2, Tag3", "ru": "Тег1, Тег2, Тег3", "xloc": [ - "default.handlebars->25->613" + "default.handlebars->27->618" ] }, { @@ -17336,7 +17755,7 @@ "default-mobile.handlebars->9->197", "default-mobile.handlebars->9->198", "default-mobile.handlebars->9->225", - "default.handlebars->25->612", + "default.handlebars->27->617", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->7" ] }, @@ -17349,7 +17768,7 @@ "pt": "Tâmil", "ru": "Тамильский", "xloc": [ - "default.handlebars->25->908" + "default.handlebars->27->913" ] }, { @@ -17361,7 +17780,7 @@ "pt": "Tatar", "ru": "Татарский", "xloc": [ - "default.handlebars->25->909" + "default.handlebars->27->914" ] }, { @@ -17373,7 +17792,7 @@ "pt": "Teluga", "ru": "Телугу", "xloc": [ - "default.handlebars->25->910" + "default.handlebars->27->915" ] }, { @@ -17387,8 +17806,8 @@ "pt": "Terminal", "ru": "Терминал", "xloc": [ - "default.handlebars->25->1083", - "default.handlebars->25->430", + "default.handlebars->27->1088", + "default.handlebars->27->435", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevTerminal", "default.handlebars->contextMenu->cxterminal" ] @@ -17417,7 +17836,7 @@ "pt": "Notificação - terminal", "ru": "Терминал уведомление", "xloc": [ - "default.handlebars->25->1005" + "default.handlebars->27->1010" ] }, { @@ -17430,7 +17849,7 @@ "pt": "Prompt do terminal", "ru": "Запрос терминала", "xloc": [ - "default.handlebars->25->1004" + "default.handlebars->27->1009" ] }, { @@ -17474,7 +17893,7 @@ "pt": "Thai", "ru": "Тайский", "xloc": [ - "default.handlebars->25->911" + "default.handlebars->27->916" ] }, { @@ -17501,7 +17920,7 @@ "pt": "O nome do grupo de dispositivos ao qual este computador pertence", "ru": "Имя группы устройств, к которой принадлежит этот компьютер", "xloc": [ - "default.handlebars->25->454" + "default.handlebars->27->459" ] }, { @@ -17514,7 +17933,7 @@ "pt": "O nome do grupo de dispositivos ao qual este computador pertence.", "ru": "Имя группы устройств, к которой принадлежит этот компьютер.", "xloc": [ - "default.handlebars->25->452" + "default.handlebars->27->457" ] }, { @@ -17528,7 +17947,7 @@ "pt": "Atualmente não há notificações", "ru": "На данный момент уведомлений нет", "xloc": [ - "default.handlebars->25->1401" + "default.handlebars->27->1406" ] }, { @@ -17555,7 +17974,7 @@ "pt": "Essas configurações podem ser usadas para conectar o MQTT a este dispositivo.", "ru": "Эти настройки можно использовать для подключения MQTT для этого устройства.", "xloc": [ - "default.handlebars->25->175" + "default.handlebars->27->175" ] }, { @@ -17569,7 +17988,7 @@ "ru": "Эта учетная запись не имеет прав для создания новой группы устройств.", "xloc": [ "default-mobile.handlebars->9->51", - "default.handlebars->25->959" + "default.handlebars->27->964" ] }, { @@ -17582,7 +18001,7 @@ "pt": "Esta não é uma política segura, pois os agentes estarão executando a ativação.", "ru": "Это не безопасная политика, так как агенты будут выполнять активацию.", "xloc": [ - "default.handlebars->25->1071" + "default.handlebars->27->1076" ] }, { @@ -17609,7 +18028,7 @@ "pt": "Esta política não afetará os dispositivos com Intel® AMT no modo ACM.", "ru": "Эта политика не повлияет на устройства с Intel® AMT в режиме ACM.", "xloc": [ - "default.handlebars->25->1070" + "default.handlebars->27->1075" ] }, { @@ -17648,7 +18067,7 @@ "pt": "Isso adicionará uma entrada ao log de eventos deste dispositivo.", "ru": "Это добавит запись в журнал событий данного устройства.", "xloc": [ - "default.handlebars->25->540" + "default.handlebars->27->545" ] }, { @@ -17660,7 +18079,7 @@ "nl": "Hiermee worden de apparaten niet van de server verwijderd, maar kunnen de apparaten geen verbinding meer maken met de server. Alle externe toegang tot de apparaten gaat verloren. De apparaten moeten zijn aangesloten om deze opdracht te laten werken.", "ru": "Это не приведет к удалению устройств с сервера, но они больше не смогут подключаться к серверу. Весь удаленный доступ к устройствам будет потерян. Устройства должны быть подключены, чтобы эта команда работала.", "xloc": [ - "default.handlebars->25->568" + "default.handlebars->27->573" ] }, { @@ -17672,7 +18091,7 @@ "nl": "Hiermee wordt dit apparaat niet van de server verwijderd, maar kan het apparaat geen verbinding meer maken met de server. Alle externe toegang tot het apparaat gaat verloren. Het apparaat moet verbonden zijn om dit commando te laten werken.", "ru": "Это не приведет к удалению этого устройства с сервера, но оно больше не сможет подключаться к серверу. Весь удаленный доступ к устройству будет потерян. Для работы этой команды устройство должно быть подключено.", "xloc": [ - "default.handlebars->25->569" + "default.handlebars->27->574" ] }, { @@ -17685,7 +18104,7 @@ "pt": "Tigre", "ru": "Тигровый", "xloc": [ - "default.handlebars->25->912" + "default.handlebars->27->917" ] }, { @@ -17712,7 +18131,7 @@ "pt": "Para adicionar um computador a {0}, execute o seguinte comando.Serão necessárias credenciais raiz.", "ru": "Чтобы добавить компьютер в группу \\\"{0}\\\", выполните следующую команду. Потребуются права root.", "xloc": [ - "default.handlebars->25->333" + "default.handlebars->27->333" ] }, { @@ -17725,7 +18144,7 @@ "pt": "Para adicionar um novo Intel® Dispositivo AMT para grupo de dispositivos \\\"{0}\\\" com CIRA, baixe os seguintes arquivos de script e use MeshCommander para executar o script para configurar computadores.", "ru": "Чтобы добавить новое устройство Intel® AMT в группу устройств \\\"{0}\\\" с CIRA, загрузите следующие файлы со скриптами и используйте MeshCommander, чтобы запустить скрипт для настройки компьютеров.", "xloc": [ - "default.handlebars->25->262" + "default.handlebars->27->262" ] }, { @@ -17738,7 +18157,7 @@ "pt": "Para adicionar um novo Intel® Dispositivo AMT para grupo de dispositivos \\\"{0}\\\" com CIRA, carregue o seguinte certificado como raiz confiável no Intel AMT", "ru": "Чтобы добавить новое устройство Intel® AMT в группу устройств \\\"{0}\\\" с CIRA, загрузите следующий сертификат в качестве доверенного в Intel AMT", "xloc": [ - "default.handlebars->25->265" + "default.handlebars->27->265" ] }, { @@ -17751,7 +18170,7 @@ "pt": "Para adicionar um novo Intel® Dispositivo AMT para grupo de dispositivos \\\"{0}\\\" com CIRA, carregue o seguinte certificado como raiz confiável no Intel AMT, autentique usando um certificado de cliente com o seguinte nome comum e conecte-se ao servidor a seguir.", "ru": "Чтобы добавить новое устройство Intel® AMT в группу устройств \\\"{0}\\\" с CIRA, загрузите следующий сертификат в качестве доверенного в Intel AMT, выполните аутентификацию с использованием сертификата клиента со следующим общим именем и подключитесь к серверу.", "xloc": [ - "default.handlebars->25->274" + "default.handlebars->27->274" ] }, { @@ -17764,7 +18183,7 @@ "pt": "Para adicionar um novo computador ao grupo de dispositivos \\\"{0}\\\", faça o download do agente de malha e instale-o no computador para gerenciar. Este agente possui informações de servidor e grupo de dispositivos incorporadas.", "ru": "Чтобы добавить новый компьютер в группу устройств \\\"{0}\\\", скачайте Mesh Agent и установите его для управления этим компьютером. В этот агент встроена информация о текущем сервере и группе устройств.", "xloc": [ - "default.handlebars->25->324" + "default.handlebars->27->324" ] }, { @@ -17777,7 +18196,7 @@ "pt": "Para adicionar um novo computador ao grupo de dispositivos \\\"{0}\\\", faça o download do agente de malha e instale-o no computador para gerenciar. Este instalador do agente possui informações de servidor e grupo de dispositivos incorporadas.", "ru": "Чтобы добавить новый компьютер в группу устройств \\\"{0}\\\", скачайте Mesh Agent и установите его для управления этим компьютером. В этот установщик агента встроена информация о текущем сервере и группе устройств.", "xloc": [ - "default.handlebars->25->335" + "default.handlebars->27->335" ] }, { @@ -17790,7 +18209,7 @@ "pt": "Para excluir esta conta, digite a senha da conta nas duas caixas abaixo e pressione ok.", "ru": "Чтобы удалить эту учетную запись, введите пароль учетной записи в оба поля и нажмите ОК.", "xloc": [ - "default.handlebars->25->946" + "default.handlebars->27->951" ] }, { @@ -17829,7 +18248,7 @@ "pt": "Para remover um agente de malha, faça o download do arquivo abaixo, execute-o e clique em \\\"uninstall\\\".", "ru": "Для удаления Mesh Agent скачайте файл ниже, запустите его и нажмите \\\"удалить\\\".", "xloc": [ - "default.handlebars->25->338" + "default.handlebars->27->338" ] }, { @@ -17842,7 +18261,7 @@ "pt": "Para remover um agente de malha, execute o seguinte comando. Serão necessárias credenciais raiz.", "ru": "Для удаления Mesh Agent выполните следующую команду. Потребуются учетные данные root.", "xloc": [ - "default.handlebars->25->345" + "default.handlebars->27->345" ] }, { @@ -18034,7 +18453,7 @@ "pt": "Tema", "ru": "Тема", "xloc": [ - "default.handlebars->25->563" + "default.handlebars->27->568" ] }, { @@ -18056,6 +18475,7 @@ "de": "Tracing", "en": "Tracing", "es": "Rastreo", + "fr": "Tracer", "ja": "トレース", "nl": "traceren", "pt": "Rastreamento", @@ -18074,7 +18494,7 @@ "pt": "Roteador de tráfego usado para conectar-se a um dispositivo através deste servidor", "ru": "Router используется для подключения к различным портам устройства через этот сервер", "xloc": [ - "default.handlebars->25->518" + "default.handlebars->27->523" ] }, { @@ -18087,7 +18507,7 @@ "pt": "Tente novamente.", "ru": "Попытайтесь снова.", "xloc": [ - "default.handlebars->25->131" + "default.handlebars->27->131" ] }, { @@ -18099,7 +18519,7 @@ "pt": "Tsonga", "ru": "Тсонга", "xloc": [ - "default.handlebars->25->913" + "default.handlebars->27->918" ] }, { @@ -18111,7 +18531,7 @@ "pt": "Tswana", "ru": "Тсвана", "xloc": [ - "default.handlebars->25->914" + "default.handlebars->27->919" ] }, { @@ -18123,7 +18543,7 @@ "pt": "turco", "ru": "Турецкий", "xloc": [ - "default.handlebars->25->915" + "default.handlebars->27->920" ] }, { @@ -18135,7 +18555,7 @@ "pt": "Turcomano", "ru": "Туркменский", "xloc": [ - "default.handlebars->25->916" + "default.handlebars->27->921" ] }, { @@ -18148,7 +18568,7 @@ "pt": "Autenticação de dois fatores", "ru": "Двухфакторная аутентификация", "xloc": [ - "default.handlebars->25->50" + "default.handlebars->27->50" ] }, { @@ -18163,11 +18583,11 @@ "xloc": [ "default-mobile.handlebars->9->279", "default-mobile.handlebars->9->57", - "default.handlebars->25->1047", - "default.handlebars->25->1050", - "default.handlebars->25->637", - "default.handlebars->25->966", - "default.handlebars->25->995", + "default.handlebars->27->1000", + "default.handlebars->27->1052", + "default.handlebars->27->1055", + "default.handlebars->27->642", + "default.handlebars->27->971", "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3" ] }, @@ -18181,7 +18601,7 @@ "pt": "Digite um nome de chave, selecione a caixa OTP e pressione o botão no YubiKeytrade;.", "ru": "Введите имя ключа, выберите поле OTP и нажмите кнопку на YubiKey™.", "xloc": [ - "default.handlebars->25->725" + "default.handlebars->27->730" ] }, { @@ -18194,7 +18614,7 @@ "pt": "Digite o nome da chave a ser adicionada.", "ru": "Введите имя ключа для добавления.", "xloc": [ - "default.handlebars->25->722" + "default.handlebars->27->727" ] }, { @@ -18208,7 +18628,7 @@ "pt": "Terminal UTF8", "ru": "Терминал UTF8", "xloc": [ - "default.handlebars->25->648" + "default.handlebars->27->653" ] }, { @@ -18221,7 +18641,7 @@ "pt": "ucraniano", "ru": "Украинский", "xloc": [ - "default.handlebars->25->917" + "default.handlebars->27->922" ] }, { @@ -18234,8 +18654,8 @@ "pt": "Não foi possível acessar um dispositivo até que um endereço de email seja verificado. Isso é necessário para a recuperação de senha. Vá para a guia \\\"Minha conta\\\" para alterar e verificar um endereço de email.", "ru": "Невозможно получить доступ к устройству, пока адрес email не подтвержден. Это необходимо для восстановления пароля. Перейдите на вкладку \\\"Моя учетная запись\\\", чтобы изменить и подтвердить адрес email.", "xloc": [ - "default.handlebars->25->446", - "default.handlebars->25->961" + "default.handlebars->27->451", + "default.handlebars->27->966" ] }, { @@ -18276,8 +18696,8 @@ "pt": "Não foi possível acessar um dispositivo até que a autenticação de dois fatores esteja ativada. Isso é necessário para segurança extra. Vá para a guia \\\"Minha conta\\\" e consulte a seção \\\"Segurança da conta\\\".", "ru": "Невозможно получить доступ к устройству, пока не включена двухфакторная аутентификация. Это требуется для дополнительной безопасности. Перейдите на вкладку \\\"Моя учетная запись\\\" и посмотрите \\\"Безопасность учетной записи\\\".", "xloc": [ - "default.handlebars->25->448", - "default.handlebars->25->963" + "default.handlebars->27->453", + "default.handlebars->27->968" ] }, { @@ -18291,7 +18711,7 @@ "ru": "Невозможно подключить веб-сокет", "xloc": [ "default-mobile.handlebars->9->8", - "default.handlebars->25->48" + "default.handlebars->27->48" ] }, { @@ -18318,7 +18738,7 @@ "ru": "Невозможно выполнить аутентификацию", "xloc": [ "default-mobile.handlebars->9->7", - "default.handlebars->25->47" + "default.handlebars->27->47" ] }, { @@ -18331,7 +18751,7 @@ "pt": "Não foi possível verificar este intervalo de endereços.", "ru": "Невозможно отсканировать этот диапазон адресов.", "xloc": [ - "default.handlebars->25->162" + "default.handlebars->27->162" ] }, { @@ -18357,7 +18777,7 @@ "ru": "Удаление", "xloc": [ "default-mobile.handlebars->9->326", - "default.handlebars->25->1140" + "default.handlebars->27->1145" ] }, { @@ -18370,9 +18790,9 @@ "ru": "Удаление агента", "xloc": [ "default-mobile.handlebars->9->308", - "default.handlebars->25->1117", - "default.handlebars->25->384", - "default.handlebars->25->551" + "default.handlebars->27->1122", + "default.handlebars->27->384", + "default.handlebars->27->556" ] }, { @@ -18384,7 +18804,7 @@ "nl": "deinstallatie agent", "ru": "Удалить агент", "xloc": [ - "default.handlebars->25->571" + "default.handlebars->27->576" ] }, { @@ -18402,13 +18822,13 @@ "default-mobile.handlebars->9->143", "default-mobile.handlebars->9->171", "default-mobile.handlebars->9->172", - "default.handlebars->25->108", - "default.handlebars->25->109", - "default.handlebars->25->13", - "default.handlebars->25->1392", - "default.handlebars->25->380", - "default.handlebars->25->41", - "default.handlebars->25->42" + "default.handlebars->27->108", + "default.handlebars->27->109", + "default.handlebars->27->13", + "default.handlebars->27->1397", + "default.handlebars->27->380", + "default.handlebars->27->41", + "default.handlebars->27->42" ] }, { @@ -18423,7 +18843,7 @@ "ru": "Неизвестно #{0}", "xloc": [ "default-mobile.handlebars->9->273", - "default.handlebars->25->989" + "default.handlebars->27->994" ] }, { @@ -18434,7 +18854,7 @@ "nl": "Onbekende actie", "ru": "Неизвестное действие", "xloc": [ - "default.handlebars->25->1413" + "default.handlebars->27->1418" ] }, { @@ -18445,9 +18865,9 @@ "nl": "Onbekende apparaatgroep", "ru": "Неизвестная группа устройств", "xloc": [ - "default.handlebars->25->1306", - "default.handlebars->25->1380", - "default.handlebars->25->1417" + "default.handlebars->27->1311", + "default.handlebars->27->1385", + "default.handlebars->27->1422" ] }, { @@ -18458,7 +18878,7 @@ "nl": "Onbekende groep", "ru": "Неизвестная группа", "xloc": [ - "default.handlebars->25->1409" + "default.handlebars->27->1414" ] }, { @@ -18473,7 +18893,7 @@ "ru": "Состояние неизвестно", "xloc": [ "default-mobile.handlebars->9->178", - "default.handlebars->25->466" + "default.handlebars->27->471" ] }, { @@ -18484,7 +18904,7 @@ "nl": "Onbekende gebruikersgroep", "ru": "Неизвестная группа пользователей", "xloc": [ - "default.handlebars->25->1388" + "default.handlebars->27->1393" ] }, { @@ -18499,7 +18919,7 @@ "ru": "Версия и состояние неизвестны", "xloc": [ "default-mobile.handlebars->9->180", - "default.handlebars->25->468" + "default.handlebars->27->473" ] }, { @@ -18513,9 +18933,9 @@ "pt": "Ilimitado", "ru": "Неограниченно", "xloc": [ - "default.handlebars->25->173", - "default.handlebars->25->297", - "default.handlebars->25->311" + "default.handlebars->27->173", + "default.handlebars->27->297", + "default.handlebars->27->311" ] }, { @@ -18545,7 +18965,7 @@ "nl": "Bijgewerkt", "ru": "Актуально", "xloc": [ - "default.handlebars->25->1470" + "default.handlebars->27->1475" ] }, { @@ -18578,11 +18998,11 @@ "default-mobile.handlebars->9->253", "default-mobile.handlebars->9->271", "default-mobile.handlebars->9->85", - "default.handlebars->25->1192", - "default.handlebars->25->1200", - "default.handlebars->25->671", - "default.handlebars->25->694", - "default.handlebars->25->697", + "default.handlebars->27->1197", + "default.handlebars->27->1205", + "default.handlebars->27->676", + "default.handlebars->27->699", + "default.handlebars->27->702", "default.handlebars->container->dialog->dialogBody->dialog3->d3localmode->1" ] }, @@ -18596,7 +19016,7 @@ "pt": "Carregar núcleo do agente de malha", "ru": "Загрузить ядро Mesh Agent", "xloc": [ - "default.handlebars->25->717" + "default.handlebars->27->722" ] }, { @@ -18609,7 +19029,7 @@ "pt": "Carregar um arquivo principal", "ru": "Загрузить файл ядра", "xloc": [ - "default.handlebars->25->714" + "default.handlebars->27->719" ] }, { @@ -18622,7 +19042,7 @@ "pt": "Carregar núcleo do servidor padrão", "ru": "Загрузить ядро по умолчанию с сервера ", "xloc": [ - "default.handlebars->25->711" + "default.handlebars->27->716" ] }, { @@ -18635,7 +19055,7 @@ "pt": "Carregar núcleo de recuperação", "ru": "Загрузить ядро восстановления", "xloc": [ - "default.handlebars->25->713" + "default.handlebars->27->718" ] }, { @@ -18646,8 +19066,8 @@ "nl": "Upload overschrijft {0} bestand. Doorgaan?", "ru": "Загрузка перезапишет 1 файл. Продолжить?", "xloc": [ - "default.handlebars->25->1201", - "default.handlebars->25->695" + "default.handlebars->27->1206", + "default.handlebars->27->700" ] }, { @@ -18658,8 +19078,8 @@ "nl": "Upload overschrijft {0} bestanden. Doorgaan?", "ru": "Загрузка перезапишет {0} файлов. Продолжить?", "xloc": [ - "default.handlebars->25->1202", - "default.handlebars->25->696" + "default.handlebars->27->1207", + "default.handlebars->27->701" ] }, { @@ -18681,7 +19101,7 @@ "pt": "Sorábio superior", "ru": "Верхний Сорбский", "xloc": [ - "default.handlebars->25->918" + "default.handlebars->27->923" ] }, { @@ -18693,7 +19113,7 @@ "pt": "urdu", "ru": "Урду", "xloc": [ - "default.handlebars->25->919" + "default.handlebars->27->924" ] }, { @@ -18734,8 +19154,8 @@ "pt": "Usava", "ru": "Использовано", "xloc": [ - "default.handlebars->25->1403", - "default.handlebars->25->1405" + "default.handlebars->27->1408", + "default.handlebars->27->1410" ] }, { @@ -18750,10 +19170,10 @@ "ru": "Пользователь", "xloc": [ "default-mobile.handlebars->9->328", - "default.handlebars->25->1044", - "default.handlebars->25->1228", - "default.handlebars->25->1301", - "default.handlebars->25->200" + "default.handlebars->27->1049", + "default.handlebars->27->1233", + "default.handlebars->27->1306", + "default.handlebars->27->200" ] }, { @@ -18766,7 +19186,7 @@ "pt": "Usuário + Arquivos", "ru": "Пользователь + Файлы", "xloc": [ - "default.handlebars->25->1229" + "default.handlebars->27->1234" ] }, { @@ -18779,10 +19199,10 @@ "pt": "Importação de conta de usuário", "ru": "Импорт учетной записи пользователя", "xloc": [ - "default.handlebars->25->1236", - "default.handlebars->25->1237", - "default.handlebars->25->1239", - "default.handlebars->25->1241" + "default.handlebars->27->1241", + "default.handlebars->27->1242", + "default.handlebars->27->1244", + "default.handlebars->27->1246" ] }, { @@ -18793,7 +19213,7 @@ "nl": "Gebruikersaccounts", "ru": "Учетные записи пользователей", "xloc": [ - "default.handlebars->25->1422" + "default.handlebars->27->1427" ] }, { @@ -18807,7 +19227,7 @@ "ru": "Полномочия пользователя", "xloc": [ "default-mobile.handlebars->9->281", - "default.handlebars->25->1039" + "default.handlebars->27->1044" ] }, { @@ -18821,7 +19241,7 @@ "pt": "Consentimento do Usuário", "ru": "Согласие пользователя", "xloc": [ - "default.handlebars->25->1011" + "default.handlebars->27->1016" ] }, { @@ -18832,9 +19252,9 @@ "nl": "Gebruikers Groep", "ru": "Группа пользователей", "xloc": [ - "default.handlebars->25->1097", - "default.handlebars->25->1284", - "default.handlebars->25->1395" + "default.handlebars->27->1102", + "default.handlebars->27->1289", + "default.handlebars->27->1400" ] }, { @@ -18856,7 +19276,7 @@ "nl": "Gebruikersgroeps lidmaatschap", "ru": "Членство в группах пользователей", "xloc": [ - "default.handlebars->25->1387" + "default.handlebars->27->1392" ] }, { @@ -18869,8 +19289,8 @@ "pt": "Identificador do usuário", "ru": "Идентификатор пользователя", "xloc": [ - "default.handlebars->25->1143", - "default.handlebars->25->1336" + "default.handlebars->27->1148", + "default.handlebars->27->1341" ] }, { @@ -18883,7 +19303,7 @@ "pt": "Exportação da lista de usuários", "ru": "Экспортировать список пользователей", "xloc": [ - "default.handlebars->25->1248" + "default.handlebars->27->1253" ] }, { @@ -18897,7 +19317,7 @@ "pt": "Nome de Usuário", "ru": "Имя пользователя", "xloc": [ - "default.handlebars->25->1142" + "default.handlebars->27->1147" ] }, { @@ -18911,8 +19331,8 @@ "pt": "Nomes de usuário", "ru": "Имена пользователей", "xloc": [ - "default.handlebars->25->1095", - "default.handlebars->25->1325" + "default.handlebars->27->1100", + "default.handlebars->27->1330" ] }, { @@ -18938,7 +19358,7 @@ "pt": "Sessões de Usuário", "ru": "Сессии пользователя", "xloc": [ - "default.handlebars->25->1439" + "default.handlebars->27->1444" ] }, { @@ -18967,8 +19387,8 @@ "pt": "Valor do navegador do usuário", "ru": "Использовать настройки браузера", "xloc": [ - "default.handlebars->25->928", - "default.handlebars->25->930" + "default.handlebars->27->933", + "default.handlebars->27->935" ] }, { @@ -19014,10 +19434,10 @@ "ru": "Имя пользователя", "xloc": [ "default-mobile.handlebars->9->212", - "default.handlebars->25->1254", - "default.handlebars->25->241", - "default.handlebars->25->271", - "default.handlebars->25->557", + "default.handlebars->27->1259", + "default.handlebars->27->241", + "default.handlebars->27->271", + "default.handlebars->27->562", "player.handlebars->3->4" ] }, @@ -19063,9 +19483,9 @@ "pt": "Usuários", "ru": "Пользователи", "xloc": [ - "default.handlebars->25->1283", - "default.handlebars->25->1294", - "default.handlebars->25->1438", + "default.handlebars->27->1288", + "default.handlebars->27->1299", + "default.handlebars->27->1443", "default.handlebars->container->topbar->1->1->UsersSubMenuSpan->UsersSubMenu->1->0->UsersGeneral" ] }, @@ -19077,7 +19497,7 @@ "nl": "gebruikers Sessies", "ru": "Сессии пользователей", "xloc": [ - "default.handlebars->25->1426" + "default.handlebars->27->1431" ] }, { @@ -19090,7 +19510,7 @@ "pt": "VT100+ (F10 = ESC+[OY)", "ru": "VT100+ (F10 = ESC+[OY)", "xloc": [ - "default.handlebars->25->653" + "default.handlebars->27->658" ] }, { @@ -19102,7 +19522,7 @@ "pt": "Venda", "ru": "Венда", "xloc": [ - "default.handlebars->25->920" + "default.handlebars->27->925" ] }, { @@ -19116,8 +19536,8 @@ "pt": "Fornecedor", "ru": "Вендор", "xloc": [ - "default.handlebars->25->67", - "default.handlebars->25->70" + "default.handlebars->27->67", + "default.handlebars->27->70" ] }, { @@ -19160,9 +19580,9 @@ "pt": "Versão", "ru": "Версия", "xloc": [ - "default.handlebars->25->68", - "default.handlebars->25->73", - "default.handlebars->25->81", + "default.handlebars->27->68", + "default.handlebars->27->73", + "default.handlebars->27->81", "default.handlebars->container->column_l->p42->p42tbl->1->0->5" ] }, @@ -19192,7 +19612,7 @@ "pt": "vietnamita", "ru": "Вьетнамский", "xloc": [ - "default.handlebars->25->921" + "default.handlebars->27->926" ] }, { @@ -19219,7 +19639,7 @@ "pt": "Ver notas sobre este dispositivo", "ru": "Посмотреть примечания этого устройства", "xloc": [ - "default.handlebars->25->507" + "default.handlebars->27->512" ] }, { @@ -19232,7 +19652,7 @@ "pt": "Ver notas sobre este grupo de dispositivos", "ru": "Посмотреть примечания этой группы устройств", "xloc": [ - "default.handlebars->25->1024" + "default.handlebars->27->1029" ] }, { @@ -19245,7 +19665,7 @@ "pt": "Ver notas sobre este usuário", "ru": "Посмотреть примечания об этом пользователе", "xloc": [ - "default.handlebars->25->1359" + "default.handlebars->27->1364" ] }, { @@ -19257,7 +19677,7 @@ "pt": "Volapuk", "ru": "Волапукский", "xloc": [ - "default.handlebars->25->922" + "default.handlebars->27->927" ] }, { @@ -19270,7 +19690,7 @@ "nl": "Waarschuwing", "ru": "ВНИМАНИЕ: ", "xloc": [ - "default.handlebars->25->64" + "default.handlebars->27->64" ] }, { @@ -19298,8 +19718,8 @@ "xloc": [ "default-mobile.handlebars->9->304", "default-mobile.handlebars->9->317", - "default.handlebars->25->1113", - "default.handlebars->25->1131" + "default.handlebars->27->1118", + "default.handlebars->27->1136" ] }, { @@ -19313,7 +19733,7 @@ "ru": "Разбудить", "xloc": [ "default-mobile.handlebars->9->206", - "default.handlebars->25->546" + "default.handlebars->27->551" ] }, { @@ -19326,7 +19746,7 @@ "pt": "Acordar dispositivo", "ru": "Разбудить устройства", "xloc": [ - "default.handlebars->25->387" + "default.handlebars->27->387" ] }, { @@ -19338,7 +19758,7 @@ "pt": "valão", "ru": "Валлонский", "xloc": [ - "default.handlebars->25->923" + "default.handlebars->27->928" ] }, { @@ -19352,7 +19772,7 @@ "pt": "Fraco", "ru": "Слабый", "xloc": [ - "default.handlebars->25->975" + "default.handlebars->27->980" ] }, { @@ -19383,8 +19803,8 @@ "pt": "Servidor web", "ru": "Веб-сервер", "xloc": [ - "default.handlebars->25->1457", - "default.handlebars->25->1458" + "default.handlebars->27->1462", + "default.handlebars->27->1463" ] }, { @@ -19398,7 +19818,7 @@ "pt": "Solicitações de servidor Web", "ru": "Запросы веб-сервера", "xloc": [ - "default.handlebars->25->1459" + "default.handlebars->27->1464" ] }, { @@ -19412,7 +19832,7 @@ "pt": "Encaminhador de soquete da Web", "ru": "Ретранслятор Web Socket", "xloc": [ - "default.handlebars->25->1460" + "default.handlebars->27->1465" ] }, { @@ -19439,7 +19859,7 @@ "nl": "Welkom {0}.", "ru": "Добро пожаловать {0}.", "xloc": [ - "default.handlebars->25->44", + "default.handlebars->27->44", "terms.handlebars->3->1" ] }, @@ -19453,7 +19873,7 @@ "pt": "galês", "ru": "Уэльский", "xloc": [ - "default.handlebars->25->924" + "default.handlebars->27->929" ] }, { @@ -19467,7 +19887,7 @@ "pt": "Será alterado no próximo login.", "ru": "Будет изменено при следующем входе в систему.", "xloc": [ - "default.handlebars->25->1344" + "default.handlebars->27->1349" ] }, { @@ -19590,7 +20010,7 @@ "pt": "WinSCP", "ru": "WinSCP", "xloc": [ - "default.handlebars->25->527" + "default.handlebars->27->532" ] }, { @@ -19598,13 +20018,13 @@ "de": "Windows", "en": "Windows", "es": "Windows", + "fr": "Windows", "ja": "窓", "nl": "Windows", "pt": "Windows", "ru": "Windows", - "fr": "Windows", "xloc": [ - "default.handlebars->25->315" + "default.handlebars->27->315" ] }, { @@ -19612,14 +20032,14 @@ "de": "Windows (.exe)", "en": "Windows (.exe)", "es": "Windows (.exe)", + "fr": "Windows (.exe)", "ja": "Windows(.exe)", "nl": "Windows (.exe)", "pt": "Windows (.exe)", "ru": "Windows (.exe)", - "fr": "Windows (.exe)", "xloc": [ - "default.handlebars->25->327", - "default.handlebars->25->341" + "default.handlebars->27->327", + "default.handlebars->27->341" ] }, { @@ -19627,13 +20047,13 @@ "de": "Windows (32bit)", "en": "Windows (32bit)", "es": "Windows (32bit)", + "fr": "Windows (32bit)", "ja": "Windows(32ビット)", "nl": "Windows (32bit)", "pt": "Windows (32 Bits)", "ru": "Windows (32bit)", - "fr": "Windows (32bit)", "xloc": [ - "default.handlebars->25->586" + "default.handlebars->27->591" ] }, { @@ -19641,13 +20061,13 @@ "de": "Windows (64bit)", "en": "Windows (64bit)", "es": "Windows (64bit)", + "fr": "Windows (64bit)", "ja": "Windows(64ビット)", "nl": "Windows (64bit)", "pt": "Windows (64 Bits)", "ru": "Windows (64bit)", - "fr": "Windows (64bit)", "xloc": [ - "default.handlebars->25->587" + "default.handlebars->27->592" ] }, { @@ -19660,7 +20080,7 @@ "pt": "Windows (Desinstalador)", "ru": "Windows (Удаление)", "xloc": [ - "default.handlebars->25->318" + "default.handlebars->27->318" ] }, { @@ -19668,11 +20088,11 @@ "de": "Windows 32bit", "en": "Windows 32bit", "es": "Windows 32bit", + "fr": "Windows 32bit", "ja": "Windows 32ビット", "nl": "Windows 32bit", "pt": "Windows 32 Bits", "ru": "Windows 32bit", - "fr": "Windows 32bit", "xloc": [ "agentinvite.handlebars->container->column_l->5->1->twintab32" ] @@ -19688,7 +20108,7 @@ "ru": "Консоль Windows 32bit", "xloc": [ "default-mobile.handlebars->9->144", - "default.handlebars->25->14" + "default.handlebars->27->14" ] }, { @@ -19702,7 +20122,7 @@ "ru": "Служба Windows 32bit", "xloc": [ "default-mobile.handlebars->9->146", - "default.handlebars->25->16" + "default.handlebars->27->16" ] }, { @@ -19710,11 +20130,11 @@ "de": "Windows 64bit", "en": "Windows 64bit", "es": "Windows 64bit", + "fr": "Windows 64bit", "ja": "Windows 64ビット", "nl": "Windows 64bit", "pt": "Windows 64 Bits", "ru": "Windows 64bit", - "fr": "Windows 64bit", "xloc": [ "agentinvite.handlebars->container->column_l->5->1->twintab64" ] @@ -19730,7 +20150,7 @@ "ru": "Консоль Windows 64bit", "xloc": [ "default-mobile.handlebars->9->145", - "default.handlebars->25->15" + "default.handlebars->27->15" ] }, { @@ -19744,7 +20164,7 @@ "ru": "Служба Windows 64bit", "xloc": [ "default-mobile.handlebars->9->147", - "default.handlebars->25->17" + "default.handlebars->27->17" ] }, { @@ -19758,7 +20178,7 @@ "ru": "Консоль Windows MinCore", "xloc": [ "default-mobile.handlebars->9->164", - "default.handlebars->25->34" + "default.handlebars->27->34" ] }, { @@ -19772,7 +20192,7 @@ "ru": "Служба Windows MinCore", "xloc": [ "default-mobile.handlebars->9->165", - "default.handlebars->25->35" + "default.handlebars->27->35" ] }, { @@ -19785,7 +20205,7 @@ "pt": "Apenas Windows", "ru": "Только Windows", "xloc": [ - "default.handlebars->25->288" + "default.handlebars->27->288" ] }, { @@ -19793,14 +20213,14 @@ "de": "Windows x64 (.exe)", "en": "Windows x64 (.exe)", "es": "Windows x64 (.exe)", + "fr": "Windows x64 (.exe)", "ja": "Windows x64(.exe)", "nl": "Windows x64 (.exe)", "pt": "Windows x64 (.exe)", "ru": "Windows x64 (.exe)", - "fr": "Windows x64 (.exe)", "xloc": [ - "default.handlebars->25->330", - "default.handlebars->25->344" + "default.handlebars->27->330", + "default.handlebars->27->344" ] }, { @@ -19821,7 +20241,7 @@ "nl": "Wrap: UIT", "ru": "Перенос строк: ВЫКЛ", "xloc": [ - "default.handlebars->25->689" + "default.handlebars->27->694" ] }, { @@ -19832,7 +20252,7 @@ "nl": "Wrap: AAN", "ru": "Перенос строк: ВКЛ", "xloc": [ - "default.handlebars->25->688" + "default.handlebars->27->693" ] }, { @@ -19846,7 +20266,7 @@ "pt": "Escreva um evento para este dispositivo", "ru": "Записать событие к этому устройству", "xloc": [ - "default.handlebars->25->509" + "default.handlebars->27->514" ] }, { @@ -19854,11 +20274,11 @@ "de": "X", "en": "X", "es": "X", + "fr": "X", "ja": "バツ", "nl": "X", "pt": "X", "ru": "X", - "fr": "X", "xloc": [ "default-mobile.handlebars->dialog->1->id_dialogclose->0", "default.handlebars->container->column_l->p1->xdevicesmap->xmapSearchResultsDlg->xmapSearchResultsBck->xmapSearchClose->0", @@ -19871,27 +20291,27 @@ "de": "XENx86", "en": "XENx86", "es": "XENx86", + "fr": "XENx86", "ja": "XENx86", "nl": "XENx86", "pt": "XENx86", "ru": "XENx86", - "fr": "XENx86", "xloc": [ "default-mobile.handlebars->9->151", - "default.handlebars->25->21" + "default.handlebars->27->21" ] }, { - "en": "XTerm", - "nl": "XTerm", - "ru": "XTerm", - "es": "XTerm", "cs": "XTerm", - "pt": "XTerm", "de": "XTerm", + "en": "XTerm", + "es": "XTerm", "fr": "XTerm", + "nl": "XTerm", + "pt": "XTerm", + "ru": "XTerm", "xloc": [ - "default.handlebars->25->521" + "default.handlebars->27->526" ] }, { @@ -19904,7 +20324,7 @@ "pt": "Xhosa", "ru": "Кос", "xloc": [ - "default.handlebars->25->925" + "default.handlebars->27->930" ] }, { @@ -19917,7 +20337,7 @@ "pt": "Iídiche", "ru": "Идиш", "xloc": [ - "default.handlebars->25->926" + "default.handlebars->27->931" ] }, { @@ -19931,7 +20351,7 @@ "pt": "Você pode reativar esse recurso a qualquer momento.", "ru": "Вы можете возобновить эту функцию в любое время.", "xloc": [ - "default.handlebars->25->129" + "default.handlebars->27->129" ] }, { @@ -19957,7 +20377,7 @@ "pt": "Agora você precisará de um token válido para fazer login novamente.", "ru": "Теперь вам понадобится действительный токен, чтобы снова войти в систему.", "xloc": [ - "default.handlebars->25->124" + "default.handlebars->27->124" ] }, { @@ -19965,13 +20385,13 @@ "de": "YubiKey™ OTP", "en": "YubiKey™ OTP", "es": "YubiKey™ OTP", + "fr": "YubiKey™ OTP", "ja": "YubiKey&trade; OTP", "nl": "YubiKey™ OTP", "pt": "YubiKey™ OTP", "ru": "YubiKey™ OTP", - "fr": "YubiKey™ OTP", "xloc": [ - "default.handlebars->25->728" + "default.handlebars->27->733" ] }, { @@ -19984,7 +20404,7 @@ "pt": "Zoom para ajustar a extensão", "ru": "Масштабирование по размеру", "xloc": [ - "default.handlebars->25->435" + "default.handlebars->27->440" ] }, { @@ -19997,8 +20417,8 @@ "pt": "Aumentar o zoom até o limite", "ru": "Масштабирование +", "xloc": [ - "default.handlebars->25->432", - "default.handlebars->25->438" + "default.handlebars->27->437", + "default.handlebars->27->443" ] }, { @@ -20011,8 +20431,8 @@ "pt": "Diminuir o zoom até o limite", "ru": "Масштабирование -", "xloc": [ - "default.handlebars->25->433", - "default.handlebars->25->439" + "default.handlebars->27->438", + "default.handlebars->27->444" ] }, { @@ -20025,7 +20445,7 @@ "pt": "Zulu", "ru": "Зулусский", "xloc": [ - "default.handlebars->25->927" + "default.handlebars->27->932" ] }, { @@ -20033,11 +20453,11 @@ "de": "\\\\", "en": "\\\\", "es": "\\\\", + "fr": "\\\\", "ja": "\\\\", "nl": "\\\\", - "ru": "\\\\", - "fr": "\\\\", "pt": "\\\\", + "ru": "\\\\", "xloc": [ "default-mobile.handlebars->9->239", "default-mobile.handlebars->9->240", @@ -20049,13 +20469,13 @@ "de": "\\\\'", "en": "\\\\'", "es": "\\\\'", + "fr": "\\\\'", "ja": "\\\\'", "nl": "\\\\'", - "ru": "\\\\'", - "fr": "\\\\'", "pt": "\\\\'", + "ru": "\\\\'", "xloc": [ - "default.handlebars->25->1468" + "default.handlebars->27->1473" ] }, { @@ -20069,8 +20489,8 @@ "pt": "Adicione um", "ru": "добавить", "xloc": [ - "default.handlebars->25->197", - "default.handlebars->25->199" + "default.handlebars->27->197", + "default.handlebars->27->199" ] }, { @@ -20083,13 +20503,14 @@ "pt": "správce", "ru": "админ", "xloc": [ - "default.handlebars->25->242" + "default.handlebars->27->242" ] }, { "cs": "a jeho zdroj může být stažen z", "en": "and its source can be downloaded from", "es": "y su codigo fuente se puede descargar desde", + "fr": "et les sources sont téléchargeables depuis", "ja": "そのソースはからダウンロードできます", "nl": "en de bron kan worden gedownload van", "pt": "e sua fonte pode ser baixada de", @@ -20104,6 +20525,7 @@ "de": "hier klicken, um eine Gerätegruppe zu erstellen", "en": "click here to create a device group", "es": "Haga clic aquí para crear un grupo de dispositivos", + "fr": "Créer un nouveau groupe d'appareils", "ja": "ここをクリックしてデバイスグループを作成します", "nl": "klik hier om een apparaatgroep te maken", "pt": "clique aqui para criar um grupo de dispositivos", @@ -20117,6 +20539,7 @@ "de": "zum Wiederverbinden klicken", "en": "click to reconnect", "es": "Haga clic para volver a conectar", + "fr": "Se reconnecter", "ja": "クリックして再接続", "nl": "klik om opnieuw verbinding te maken", "pt": "clique para reconectar", @@ -20130,13 +20553,13 @@ "cs": "console.txt", "en": "console.txt", "es": "Consola.txt", + "fr": "console.txt", "ja": "console.txt", "nl": "console.txt", "pt": "console.txt", "ru": "console.txt", - "fr": "console.txt", "xloc": [ - "default.handlebars->25->708" + "default.handlebars->27->713" ] }, { @@ -20144,78 +20567,79 @@ "de": "kopieren", "en": "copy", "es": "Copiar", + "fr": "Copier", "ja": "コピー", "nl": "kopiëren", "pt": "Copiar", "ru": "копировать", "xloc": [ "default-mobile.handlebars->9->89", - "default.handlebars->25->1197" + "default.handlebars->27->1202" ] }, { - "en": "devicelist.csv", - "nl": "devicelist.csv", "cs": "devicelist.csv", + "de": "devicelist.csv", + "en": "devicelist.csv", "es": "devicelist.csv", "fr": "devicelist.csv", - "ru": "devicelist.csv", + "nl": "devicelist.csv", "pt": "devicelist.csv", - "de": "devicelist.csv", + "ru": "devicelist.csv", "xloc": [ - "default.handlebars->25->401", - "default.handlebars->25->406" + "default.handlebars->27->401", + "default.handlebars->27->406" ] }, { - "en": "devicelist.json", - "nl": "devicelist.json", - "es": "devicelist.json", "cs": "devicelist.json", "de": "devicelist.json", + "en": "devicelist.json", + "es": "devicelist.json", "fr": "devicelist.json", - "ru": "devicelist.json", + "nl": "devicelist.json", "pt": "devicelist.json", + "ru": "devicelist.json", "xloc": [ - "default.handlebars->25->403", - "default.handlebars->25->407" + "default.handlebars->27->403", + "default.handlebars->27->407" ] }, { "en": "encoding", "nl": "codering", "xloc": [ - "default.handlebars->25->1473" + "default.handlebars->27->1478" ] }, { "cs": "eventslist.csv", + "de": "eventslist.csv", "en": "eventslist.csv", "es": "eventslist.csv", + "fr": "eventslist.csv", "ja": "eventslist.csv", "nl": "eventslist.csv", "pt": "eventslist.csv", "ru": "eventslist.csv", - "fr": "eventslist.csv", - "de": "eventslist.csv", "xloc": [ - "default.handlebars->25->1206", - "default.handlebars->25->1211" + "default.handlebars->27->1211", + "default.handlebars->27->1216" ] }, { "cs": "eventslist.json", + "de": "eventslist.csv", "en": "eventslist.json", "es": "eventslist.json", + "fr": "eventslist.csv", "ja": "eventslist.json", "nl": "eventslist.json", "pt": "eventslist.json", "ru": "eventslist.csv", - "fr": "eventslist.csv", - "de": "eventslist.csv", "xloc": [ - "default.handlebars->25->1208", - "default.handlebars->25->1212" + "default.handlebars->27->1213", + "default.handlebars->27->1217" ] }, { @@ -20227,7 +20651,7 @@ "pt": "example@email.com", "ru": "example@email.com", "xloc": [ - "default.handlebars->25->284" + "default.handlebars->27->284" ] }, { @@ -20241,21 +20665,21 @@ "pt": "livre", "ru": "свободно", "xloc": [ - "default.handlebars->25->1434" + "default.handlebars->27->1439" ] }, { "cs": "s:", + "de": "g:", "en": "g:", "es": "g:", - "nl": "g:", - "ru": "г:", - "de": "g:", - "pt": "g:", "fr": "g:", + "nl": "g:", + "pt": "g:", + "ru": "г:", "xloc": [ - "default.handlebars->25->416", - "default.handlebars->25->417" + "default.handlebars->27->416", + "default.handlebars->27->417" ] }, { @@ -20266,8 +20690,8 @@ "nl": "groep:", "ru": "группа:", "xloc": [ - "default.handlebars->25->414", - "default.handlebars->25->415" + "default.handlebars->27->414", + "default.handlebars->27->415" ] }, { @@ -20285,14 +20709,14 @@ }, { "cs": "http://jquery.com/", + "de": "http://jquery.com/", "en": "http://jquery.com/", "es": "http://jquery.com/", + "fr": "http://jquery.com/", "ja": "http://jquery.com/", "nl": "http://jquery.com/", "pt": "http://jquery.com/", "ru": "http://jquery.com/", - "fr": "http://jquery.com/", - "de": "http://jquery.com/", "xloc": [ "terms-mobile.handlebars->container->page_content->column_l->47->1->1", "terms.handlebars->container->column_l->47->1->1" @@ -20300,14 +20724,14 @@ }, { "cs": "http://jqueryui.com/", + "de": "http://jqueryui.com/", "en": "http://jqueryui.com/", "es": "http://jqueryui.com/", + "fr": "http://jqueryui.com/", "ja": "http://jqueryui.com/", "nl": "http://jqueryui.com/", "pt": "http://jqueryui.com/", "ru": "http://jqueryui.com/", - "fr": "http://jqueryui.com/", - "de": "http://jqueryui.com/", "xloc": [ "terms-mobile.handlebars->container->page_content->column_l->53->1->1", "terms.handlebars->container->column_l->53->1->1" @@ -20315,14 +20739,14 @@ }, { "cs": "http://www.openssl.org/source/license.html", + "de": "http://www.openssl.org/source/license.html", "en": "http://www.openssl.org/source/license.html", "es": "http://www.openssl.org/source/license.html", + "fr": "http://www.openssl.org/source/license.html", "ja": "http://www.openssl.org/source/license.html", "nl": "http://www.openssl.org/source/license.html", "pt": "http://www.openssl.org/source/license.html", "ru": "http://www.openssl.org/source/license.html", - "fr": "http://www.openssl.org/source/license.html", - "de": "http://www.openssl.org/source/license.html", "xloc": [ "terms-mobile.handlebars->container->page_content->column_l->25->1->0", "terms.handlebars->container->column_l->25->1->0" @@ -20330,14 +20754,14 @@ }, { "cs": "http://www.webtoolkit.info/javascript-base64.html", + "de": "http://www.webtoolkit.info/javascript-base64.html", "en": "http://www.webtoolkit.info/javascript-base64.html", "es": "http://www.webtoolkit.info/javascript-base64.html", + "fr": "http://www.webtoolkit.info/javascript-base64.html", "ja": "http://www.webtoolkit.info/javascript-base64.html", "nl": "http://www.webtoolkit.info/javascript-base64.html", "pt": "http://www.webtoolkit.info/javascript-base64.html", "ru": "http://www.webtoolkit.info/javascript-base64.html", - "fr": "http://www.webtoolkit.info/javascript-base64.html", - "de": "http://www.webtoolkit.info/javascript-base64.html", "xloc": [ "terms-mobile.handlebars->container->page_content->column_l->75->1->1", "terms-mobile.handlebars->container->page_content->column_l->75->1->5", @@ -20347,14 +20771,14 @@ }, { "cs": "https://github.com/kanaka/noVNC/blob/master/LICENSE.txt", + "de": "https://github.com/kanaka/noVNC/blob/master/LICENSE.txt", "en": "https://github.com/kanaka/noVNC/blob/master/LICENSE.txt", "es": "https://github.com/kanaka/noVNC/blob/master/LICENSE.txt", + "fr": "https://github.com/kanaka/noVNC/blob/master/LICENSE.txt", "ja": "https://github.com/kanaka/noVNC/blob/master/LICENSE.txt", "nl": "https://github.com/kanaka/noVNC/blob/master/LICENSE.txt", "pt": "https://github.com/kanaka/noVNC/blob/master/LICENSE.txt", "ru": "https://github.com/kanaka/noVNC/blob/master/LICENSE.txt", - "fr": "https://github.com/kanaka/noVNC/blob/master/LICENSE.txt", - "de": "https://github.com/kanaka/noVNC/blob/master/LICENSE.txt", "xloc": [ "terms-mobile.handlebars->container->page_content->column_l->61->1->0", "terms.handlebars->container->column_l->61->1->0" @@ -20362,14 +20786,14 @@ }, { "cs": "https://github.com/ryrych/rcarousel/blob/master/widget/license", + "de": "https://github.com/ryrych/rcarousel/blob/master/widget/license", "en": "https://github.com/ryrych/rcarousel/blob/master/widget/license", "es": "https://github.com/ryrych/rcarousel/blob/master/widget/license", + "fr": "https://github.com/ryrych/rcarousel/blob/master/widget/license", "ja": "https://github.com/ryrych/rcarousel/blob/master/widget/license", "nl": "https://github.com/ryrych/rcarousel/blob/master/widget/license", "pt": "https://github.com/ryrych/rcarousel/blob/master/widget/license", "ru": "https://github.com/ryrych/rcarousel/blob/master/widget/license", - "fr": "https://github.com/ryrych/rcarousel/blob/master/widget/license", - "de": "https://github.com/ryrych/rcarousel/blob/master/widget/license", "xloc": [ "terms-mobile.handlebars->container->page_content->column_l->67->1->0", "terms.handlebars->container->column_l->67->1->0" @@ -20384,28 +20808,28 @@ "pt": "id, nome, email, criação, último login, grupos, fatores de autenticação", "ru": "id, name, email, creation, lastlogin, groups, authfactors", "xloc": [ - "default.handlebars->25->1249" + "default.handlebars->27->1254" ] }, { "en": "id, name, rname, host, icon, ip, osdesc, state, groupname, conn, pwr", "nl": "id, naam, rname, host, icoon, ip, osdesc, status, groepsnaam, conn, pwr", "xloc": [ - "default.handlebars->25->405" + "default.handlebars->27->405" ] }, { "cs": "ip:", + "de": "ip:", "en": "ip:", "es": "IP:", - "nl": "ip:", - "ru": "ip:", "fr": "ip:", + "nl": "ip:", "pt": "ip:", - "de": "ip:", + "ru": "ip:", "xloc": [ - "default.handlebars->25->412", - "default.handlebars->25->413" + "default.handlebars->27->412", + "default.handlebars->27->413" ] }, { @@ -20426,13 +20850,14 @@ "de": "verschieben", "en": "move", "es": "Mover", + "fr": "Déplacer", "ja": "動く", "nl": "verplaatsen", "pt": "Mover", "ru": "переместить", "xloc": [ "default-mobile.handlebars->9->90", - "default.handlebars->25->1198" + "default.handlebars->27->1203" ] }, { @@ -20440,6 +20865,7 @@ "de": "öffnen", "en": "open", "es": "Abrir", + "fr": "ouvert", "ja": "開いた", "nl": "Open", "pt": "abrir", @@ -20447,44 +20873,44 @@ }, { "cs": "servererrors.txt", + "de": "servererrors.txt", "en": "servererrors.txt", "es": "servererrors.txt", + "fr": "servererrors.txt", "ja": "servererrors.txt", "nl": "servererrors.txt", "pt": "servererrors.txt", "ru": "servererrors.txt", - "fr": "servererrors.txt", - "de": "servererrors.txt", "xloc": [ - "default.handlebars->25->988" + "default.handlebars->27->993" ] }, { "cs": "servertrace.csv", + "de": "servertrace.csv", "en": "servertrace.csv", "es": "servertrace.csv", + "fr": "servertrace.csv", "ja": "servertrace.csv", "nl": "servertrace.csv", "pt": "servertrace.csv", "ru": "servertrace.csv", - "fr": "servertrace.csv", - "de": "servertrace.csv", "xloc": [ - "default.handlebars->25->1467" + "default.handlebars->27->1472" ] }, { "cs": "š:", + "de": "t:", "en": "t:", "es": "t:", - "nl": "t:", "fr": "t:", + "nl": "t:", "pt": "t:", - "de": "t:", "ru": "т:", "xloc": [ - "default.handlebars->25->420", - "default.handlebars->25->421" + "default.handlebars->27->420", + "default.handlebars->27->421" ] }, { @@ -20494,8 +20920,8 @@ "nl": "tag:", "ru": "тег:", "xloc": [ - "default.handlebars->25->418", - "default.handlebars->25->419" + "default.handlebars->27->418", + "default.handlebars->27->419" ] }, { @@ -20506,7 +20932,7 @@ "pt": "tempo, conn.agente, conn.usuários.usersessions, conn.relaysession, conn.intelamt, mem.externo mem.amontoado, mem.heaptotal, mem.rss", "ru": "time, conn.agent, conn.users, conn.usersessions, conn.relaysession, conn.intelamt, mem.external, mem.heapused, mem.heaptotal, mem.rss", "xloc": [ - "default.handlebars->25->1447" + "default.handlebars->27->1452" ] }, { @@ -20518,7 +20944,7 @@ "pt": "hora, fonte, mensagem", "ru": "time, source, message", "xloc": [ - "default.handlebars->25->1466" + "default.handlebars->27->1471" ] }, { @@ -20541,7 +20967,7 @@ "pt": "total", "ru": "всего", "xloc": [ - "default.handlebars->25->1435" + "default.handlebars->27->1440" ] }, { @@ -20551,15 +20977,15 @@ "nl": "u:", "ru": "п:", "xloc": [ - "default.handlebars->25->410", - "default.handlebars->25->411" + "default.handlebars->27->410", + "default.handlebars->27->411" ] }, { "en": "undefined", "nl": "onbepaald", "xloc": [ - "default.handlebars->25->1475" + "default.handlebars->27->1480" ] }, { @@ -20569,8 +20995,8 @@ "nl": "gebruiker:", "ru": "пользователь:", "xloc": [ - "default.handlebars->25->408", - "default.handlebars->25->409" + "default.handlebars->27->408", + "default.handlebars->27->409" ] }, { @@ -20582,8 +21008,8 @@ "pt": "Lista de usuários.csv", "ru": "userlist.csv", "xloc": [ - "default.handlebars->25->1245", - "default.handlebars->25->1250" + "default.handlebars->27->1250", + "default.handlebars->27->1255" ] }, { @@ -20595,15 +21021,15 @@ "pt": "Lista de usuários.json", "ru": "userlist.json", "xloc": [ - "default.handlebars->25->1247", - "default.handlebars->25->1251" + "default.handlebars->27->1252", + "default.handlebars->27->1256" ] }, { "en": "utc, time, type, action, user, device, message", "nl": "utc, tiid, type, actie, bebruiker, apparaat, bericht", "xloc": [ - "default.handlebars->25->1210" + "default.handlebars->27->1215" ] }, { @@ -20624,7 +21050,7 @@ "pt": "{0} Gb", "ru": "{0} Гб", "xloc": [ - "default.handlebars->25->1178" + "default.handlebars->27->1183" ] }, { @@ -20637,7 +21063,7 @@ "pt": "{0} Kb", "ru": "{0} Kб", "xloc": [ - "default.handlebars->25->1176" + "default.handlebars->27->1181" ] }, { @@ -20650,7 +21076,7 @@ "pt": "{0} Mb", "ru": "{0} Mб", "xloc": [ - "default.handlebars->25->1177" + "default.handlebars->27->1182" ] }, { @@ -20663,7 +21089,7 @@ "pt": "{0} Mb, {1} Mhz", "ru": "{0} Мб, {1} Мгц", "xloc": [ - "default.handlebars->25->77" + "default.handlebars->27->77" ] }, { @@ -20677,7 +21103,7 @@ "pt": "{0} sessões ativas", "ru": "{0} активных сессий", "xloc": [ - "default.handlebars->25->1365" + "default.handlebars->27->1370" ] }, { @@ -20690,7 +21116,7 @@ "pt": "{0} b", "ru": "{0} байт", "xloc": [ - "default.handlebars->25->1175" + "default.handlebars->27->1180" ] }, { @@ -20705,7 +21131,7 @@ "ru": "{0} байт", "xloc": [ "default-mobile.handlebars->9->78", - "default.handlebars->25->1185" + "default.handlebars->27->1190" ] }, { @@ -20719,7 +21145,7 @@ "pt": "{0} bytes restantes", "ru": "{0} байт осталось", "xloc": [ - "default.handlebars->25->1170" + "default.handlebars->27->1175" ] }, { @@ -20732,7 +21158,7 @@ "pt": "{0} gigabytes restantes", "ru": "{0} гигабайт осталось", "xloc": [ - "default.handlebars->25->1173" + "default.handlebars->27->1178" ] }, { @@ -20745,7 +21171,7 @@ "pt": "{0} grupos", "ru": "{0} групп", "xloc": [ - "default.handlebars->25->1349" + "default.handlebars->27->1354" ] }, { @@ -20756,7 +21182,7 @@ "nl": "{0} uur", "ru": "{0} часов", "xloc": [ - "default.handlebars->25->169" + "default.handlebars->27->169" ] }, { @@ -20779,7 +21205,7 @@ "pt": "{0} kilobytes restantes", "ru": "{0} килобайт осталось", "xloc": [ - "default.handlebars->25->1171" + "default.handlebars->27->1176" ] }, { @@ -20806,7 +21232,7 @@ "pt": "{0} megabytes restantes", "ru": "{0} мегабайт осталось", "xloc": [ - "default.handlebars->25->1172" + "default.handlebars->27->1177" ] }, { @@ -20817,7 +21243,7 @@ "nl": "{0} minuten totdat de verbinding wordt verbroken", "ru": "{0} минут до разъединения", "xloc": [ - "default.handlebars->25->62" + "default.handlebars->27->62" ] }, { @@ -20840,7 +21266,7 @@ "pt": "{0} mais usuários não exibidos, use a caixa de pesquisa para procurar usuários ...", "ru": "Еще {0} пользователей не показаны, используйте поиск для нахождения пользователей...", "xloc": [ - "default.handlebars->25->1220" + "default.handlebars->27->1225" ] }, { @@ -20854,7 +21280,7 @@ "pt": "{0} nós", "ru": "{0} устройств", "xloc": [ - "default.handlebars->25->348" + "default.handlebars->27->348" ] }, { @@ -20893,7 +21319,7 @@ "nl": "{0} seconden totdat de verbinding wordt verbroken", "ru": "{0} секунд до разъединения", "xloc": [ - "default.handlebars->25->60" + "default.handlebars->27->60" ] }, { @@ -20929,7 +21355,7 @@ "pt": "{0} sessões", "ru": "{0} сессий", "xloc": [ - "default.handlebars->25->1224" + "default.handlebars->27->1229" ] }, { @@ -20942,7 +21368,7 @@ "pt": "{0} configurações (.msh)", "ru": "{0} настройки (.msh)", "xloc": [ - "default.handlebars->25->332" + "default.handlebars->27->332" ] }, { @@ -20982,7 +21408,7 @@ "pt": "{0} usuários", "ru": "{0} пользователей", "xloc": [ - "default.handlebars->25->216" + "default.handlebars->27->216" ] }, { @@ -21021,7 +21447,7 @@ "pt": "{0} k em 1 arquivo. {1} k no máximo", "ru": "{0}k в 1 файле. {1}k максимум", "xloc": [ - "default.handlebars->25->1180" + "default.handlebars->27->1185" ] }, { @@ -21034,7 +21460,7 @@ "pt": "{0} k em {1} arquivos. {2} k no máximo", "ru": "{0}k в {1} файлах. {2}k максимум", "xloc": [ - "default.handlebars->25->1179" + "default.handlebars->27->1184" ] }, { @@ -21065,10 +21491,10 @@ }, { "cs": "↺", - "fr": "↺", "de": "↺", "en": "↺", "es": "↺", + "fr": "↺", "ja": "↺", "nl": "↺", "pt": "↺", @@ -21079,10 +21505,10 @@ }, { "cs": "↻", - "fr": "↻", "de": "↻", "en": "↻", "es": "↻", + "fr": "↻", "ja": "↻", "nl": "↻", "pt": "↻", @@ -21093,10 +21519,10 @@ }, { "cs": "⇲", - "fr": "⇲", "de": "⇲", "en": "⇲", "es": "⇲", + "fr": "⇲", "ja": "⇲", "nl": "⇲", "pt": "⇲", @@ -21108,10 +21534,10 @@ }, { "cs": "◀", - "fr": "◀", "de": "◀", "en": "◀", "es": "◀", + "fr": "◀", "ja": "◀", "nl": "◀", "pt": "◀", @@ -21125,10 +21551,10 @@ }, { "cs": "♦", - "fr": "♦", "de": "♦", "en": "♦", "es": "♦", + "fr": "♦", "ja": "♦", "nl": "♦", "pt": "♦", @@ -21143,10 +21569,10 @@ }, { "cs": "✓", - "fr": "✓", "de": "✓", "en": "✓", "es": "✓", + "fr": "✓", "ja": "✓", "nl": "✓", "pt": "✓", @@ -21163,10 +21589,10 @@ }, { "cs": "✖", - "fr": "✖", "de": "✖", "en": "✖", "es": "✖", + "fr": "✖", "ja": "✖", "nl": "✖", "pt": "✖", @@ -21181,10 +21607,10 @@ }, { "cs": "✗", - "fr": "✗", "de": "✗", "en": "✗", "es": "✗", + "fr": "✗", "ja": "✗", "nl": "✗", "pt": "✗", @@ -21197,4 +21623,4 @@ ] } ] -} +} \ No newline at end of file diff --git a/views/default.handlebars b/views/default.handlebars index c307e0be..1acbe725 100644 --- a/views/default.handlebars +++ b/views/default.handlebars @@ -72,6 +72,11 @@ +