From 2122ba262a88d185eba253cd30ddb9fd9ab6ad60 Mon Sep 17 00:00:00 2001 From: Ylian Saint-Hilaire Date: Tue, 7 Jan 2020 17:12:09 -0800 Subject: [PATCH] Fixed translation tools output format. --- agents/meshcore.js | 62 +- common.js | 1 + package.json | 2 +- public/translate.bat | 3 +- public/translator.htm | 11 +- translate/translate.js | 1 + translate/translate.json | 2186 +++++++++++++++++++------------------- 7 files changed, 1124 insertions(+), 1142 deletions(-) diff --git a/agents/meshcore.js b/agents/meshcore.js index cf27e02e..c8e0ca10 100644 --- a/agents/meshcore.js +++ b/agents/meshcore.js @@ -1131,67 +1131,48 @@ function createMeshCore(agent) { }; // Remote terminal using native pipes - if (process.platform == 'win32') - { - try - { + if (process.platform == 'win32') { + try { if (!require('win-terminal').PowerShellCapable() && (this.httprequest.protocol == 6 || this.httprequest.protocol == 9)) { throw ('PowerShell is not supported on this version of windows'); } - if ((this.httprequest.protocol == 1) || (this.httprequest.protocol == 6)) - { + if ((this.httprequest.protocol == 1) || (this.httprequest.protocol == 6)) { // Admin Terminal - if (require('win-virtual-terminal').supported) - { + if (require('win-virtual-terminal').supported) { // ConPTY PseudoTerminal - // this.httprequest._term = require('win-virtual-terminal')[this.httprequest.protocol == 6 ? 'StartPowerShell' : 'Start'](80, 25); - - // The above line is commented out, because there is a bug with ClosePseudoConsole() API, so this is the workaround - this.httprequest._dispatcher = require('win-dispatcher').dispatch({ modules: [{ name: 'win-virtual-terminal', script: getJSModule('win-virtual-terminal') }], launch: { module: 'win-virtual-terminal', method: (this.httprequest.protocol == 9 ? 'StartPowerShell' : 'Start'), args: [80, 25] } }); - this.httprequest._dispatcher.ws = this; - this.httprequest._dispatcher.on('connection', function (c) - { - console.log('client connected'); - this.ws._term = c; - c.pipe(this.ws, { dataTypeSkip: 1 }); - this.ws.pipe(c, { dataTypeSkip: 1 }); - }); + this.httprequest._term = require('win-virtual-terminal')[this.httprequest.protocol == 6 ? 'StartPowerShell' : 'Start'](80, 25); } - else - { + else { // Legacy Terminal this.httprequest._term = require('win-terminal')[this.httprequest.protocol == 6 ? 'StartPowerShell' : 'Start'](80, 25); } } - else - { + else { // Logged in user var userPromise = require('user-sessions').enumerateUsers(); userPromise.that = this; - userPromise.then(function (u) - { + userPromise.then(function (u) { var that = this.that; - if (u.Active.length > 0) - { + if (u.Active.length > 0) { var username = u.Active[0].Username; - if (require('win-virtual-terminal').supported) - { + if (require('win-virtual-terminal').supported) { // ConPTY PseudoTerminal that.httprequest._dispatcher = require('win-dispatcher').dispatch({ user: username, modules: [{ name: 'win-virtual-terminal', script: getJSModule('win-virtual-terminal') }], launch: { module: 'win-virtual-terminal', method: (that.httprequest.protocol == 9 ? 'StartPowerShell' : 'Start'), args: [80, 25] } }); } - else - { + else { // Legacy Terminal that.httprequest._dispatcher = require('win-dispatcher').dispatch({ user: username, modules: [{ name: 'win-terminal', script: getJSModule('win-terminal') }], launch: { module: 'win-terminal', method: (that.httprequest.protocol == 9 ? 'StartPowerShell' : 'Start'), args: [80, 25] } }); } that.httprequest._dispatcher.ws = that; - that.httprequest._dispatcher.on('connection', function (c) - { + that.httprequest._dispatcher.on('connection', function (c) { console.log('client connected'); this.ws._term = c; c.pipe(this.ws, { dataTypeSkip: 1 }); - this.ws.pipe(c, { dataTypeSkip: 1 }); + this.ws.pipe(c, { dataTypeSkip: 1, end: false }); + this.ws.prependListener('end', function () { + if (this.httprequest._term) { this.httprequest._term.end(function () { console.log("Terminal was closed"); }); } + }); }); } - }); + }); } } catch (e) { MeshServerLog('Failed to start remote terminal session, ' + e.toString() + ' (' + this.httprequest.remoteaddr + ')', this.httprequest); @@ -1199,17 +1180,14 @@ function createMeshCore(agent) { this.end(); return; } - if (!this.httprequest._dispatcher) - { + if (!this.httprequest._dispatcher) { this.httprequest._term.pipe(this, { dataTypeSkip: 1 }); this.pipe(this.httprequest._term, { dataTypeSkip: 1, end: false }); this.prependListener('end', function () { this.httprequest._term.end(function () { console.log("Terminal was closed"); }); }); } } - else - { - try - { + else { + try { var bash = fs.existsSync('/bin/bash') ? '/bin/bash' : false; var sh = fs.existsSync('/bin/sh') ? '/bin/sh' : false; var script = fs.existsSync('/usr/bin/script') ? '/usr/bin/script' : false; diff --git a/common.js b/common.js index 698a79d5..f8bb6de4 100644 --- a/common.js +++ b/common.js @@ -253,6 +253,7 @@ module.exports.translationsToJson = function(t) { for (var j in el) { names.push(j); } names.sort(); for (var j in names) { el2[names[j]] = el[names[j]]; } + if (el2.xloc != null) { el2.xloc.sort(); } arr2.push(el2); } arr2.sort(function (a, b) { if (a.en > b.en) return 1; if (a.en < b.en) return -1; return 0; }); diff --git a/package.json b/package.json index c0a774e6..35681a7b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "meshcentral", - "version": "0.4.6-z", + "version": "0.4.7-a", "keywords": [ "Remote Management", "Intel AMT", diff --git a/public/translate.bat b/public/translate.bat index 47fca5de..6fd0343c 100644 --- a/public/translate.bat +++ b/public/translate.bat @@ -2,4 +2,5 @@ CD ..\translate C:\Users\Default.DESKTOP-M9I88C9\AppData\Roaming\nvm\v12.13.0\node translate.js minifyall C:\Users\Default.DESKTOP-M9I88C9\AppData\Roaming\nvm\v12.13.0\node translate.js translateall -C:\Users\Default.DESKTOP-M9I88C9\AppData\Roaming\nvm\v12.13.0\node translate.js extractall \ No newline at end of file +C:\Users\Default.DESKTOP-M9I88C9\AppData\Roaming\nvm\v12.13.0\node translate.js extractall +pause \ No newline at end of file diff --git a/public/translator.htm b/public/translator.htm index 34682730..3b824e54 100644 --- a/public/translator.htm +++ b/public/translator.htm @@ -392,6 +392,7 @@ for (var j in el) { names.push(j); } names.sort(); for (var j in names) { el2[names[j]] = el[names[j]]; } + if (el2.xloc != null) { el2.xloc.sort(); } arr2.push(el2); } arr2.sort(function (a, b) { if (a.en > b.en) return 1; if (a.en < b.en) return -1; return 0; }); @@ -443,7 +444,7 @@ } function translateServer() { - var x = 'Perform server translation? The MeshCentral server will reset for 10 to 30 seconds to perform this operation.'; + var x = "Perform server translation? The MeshCentral server will reset for 10 to 30 seconds to perform this operation."; setDialogMode(2, "Translate Server", 3, translateServerEx, x); } @@ -458,14 +459,14 @@ xdr.onload = function () { var x = null; try { x = JSON.parse(this.responseText); } catch (ex) { } - if ((x == null) || (x.response == null)) { messagebox('Server Translation', 'ERROR: Unable to parse server response.'); return; } + if ((x == null) || (x.response == null)) { messagebox("Server Translation", "ERROR: Unable to parse server response."); return; } if (x.response == 'ok') { - messagebox('Server Translation', 'Server translation initiated, this will take a minute or two. Once done, you can refresh the MeshCentral web pages to see the changes.

When ready, please mail the file "meshcentral-data/translate.json" to ylianst@gmail.com for inclusion on the official build.'); + messagebox("Server Translation", "Server translation initiated, this will take a minute or two. Once done, you can refresh the MeshCentral web pages to see the changes.

When ready, please mail the file \"meshcentral-data/translate.json\" to ylianst@gmail.com for inclusion on the official build."); } else { - messagebox('Server Translation', 'ERROR: ' + x.response); + messagebox("Server Translation", "ERROR: " + x.response); } }; - xdr.onerror = function () { messagebox('Translations', 'ERROR: Unable to save translations to server.'); }; + xdr.onerror = function () { messagebox("Translations", "ERROR: Unable to save translations to server."); }; xdr.send(JSON.stringify({ 'action': 'translateServer', strings: translations })); } diff --git a/translate/translate.js b/translate/translate.js index 3334e5ea..0a5a9f3e 100644 --- a/translate/translate.js +++ b/translate/translate.js @@ -664,6 +664,7 @@ function translationsToJson(t) { for (var j in el) { names.push(j); } names.sort(); for (var j in names) { el2[names[j]] = el[names[j]]; } + if (el2.xloc != null) { el2.xloc.sort(); } arr2.push(el2); } arr2.sort(function (a, b) { if (a.en > b.en) return 1; if (a.en < b.en) return -1; return 0; }); diff --git a/translate/translate.json b/translate/translate.json index cdd24ab1..31645761 100644 --- a/translate/translate.json +++ b/translate/translate.json @@ -18,8 +18,8 @@ "en": " - Reset in 1 day.", "nl": " - Herstart in {0} dag.", "xloc": [ - "default.handlebars->23->57", - "default-mobile.handlebars->9->15" + "default-mobile.handlebars->9->15", + "default.handlebars->23->57" ] }, { @@ -27,8 +27,8 @@ "en": " - Reset in 1 hour.", "nl": " - Herstart in 1 uur.", "xloc": [ - "default.handlebars->23->55", - "default-mobile.handlebars->9->13" + "default-mobile.handlebars->9->13", + "default.handlebars->23->55" ] }, { @@ -36,8 +36,8 @@ "en": " - Reset in 1 minute.", "nl": " - Herstart in {0} days.", "xloc": [ - "default.handlebars->23->53", - "default-mobile.handlebars->9->11" + "default-mobile.handlebars->9->11", + "default.handlebars->23->53" ] }, { @@ -45,8 +45,8 @@ "en": " - Reset in {0} days.", "nl": " - Herstart in {0} dagen.", "xloc": [ - "default.handlebars->23->58", - "default-mobile.handlebars->9->16" + "default-mobile.handlebars->9->16", + "default.handlebars->23->58" ] }, { @@ -63,8 +63,8 @@ "en": " - Reset in {0} hours.", "nl": " - Herstart in {0} uren.", "xloc": [ - "default.handlebars->23->56", - "default-mobile.handlebars->9->14" + "default-mobile.handlebars->9->14", + "default.handlebars->23->56" ] }, { @@ -81,8 +81,8 @@ "en": " - Reset in {0} minutes.", "nl": " - Herstart in {0} minuten.", "xloc": [ - "default.handlebars->23->54", - "default-mobile.handlebars->9->12" + "default-mobile.handlebars->9->12", + "default.handlebars->23->54" ] }, { @@ -103,10 +103,10 @@ "nl": " - Reset bij volgende inlog.", "pt": " - Redefinir no próximo login.", "xloc": [ - "default.handlebars->23->51", - "default.handlebars->23->52", + "default-mobile.handlebars->9->10", "default-mobile.handlebars->9->9", - "default-mobile.handlebars->9->10" + "default.handlebars->23->51", + "default.handlebars->23->52" ] }, { @@ -237,8 +237,8 @@ "nl": "(", "pt": "(", "xloc": [ - "default.handlebars->container->column_l->p2->p2createMeshLink1", - "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3createMeshLink1" + "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3createMeshLink1", + "default.handlebars->container->column_l->p2->p2createMeshLink1" ] }, { @@ -260,8 +260,8 @@ "nl": ")", "pt": ")", "xloc": [ - "default.handlebars->container->column_l->p2->p2createMeshLink1", - "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3createMeshLink1" + "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3createMeshLink1", + "default.handlebars->container->column_l->p2->p2createMeshLink1" ] }, { @@ -294,8 +294,8 @@ "nl": ",", "pt": ",", "xloc": [ - "default.handlebars->container->column_l->p0->p0message", - "default-mobile.handlebars->container->page_content->column_l->p0->1->p0message" + "default-mobile.handlebars->container->page_content->column_l->p0->1->p0message", + "default.handlebars->container->column_l->p0->p0message" ] }, { @@ -306,8 +306,8 @@ "nl": ", ", "pt": ", ", "xloc": [ - "default.handlebars->23->1110", - "default-mobile.handlebars->9->330" + "default-mobile.handlebars->9->330", + "default.handlebars->23->1110" ] }, { @@ -318,8 +318,8 @@ "nl": ", Intel® AMT alleen", "pt": ", Intel® AMT only", "xloc": [ - "default.handlebars->23->180", - "default-mobile.handlebars->9->92" + "default-mobile.handlebars->9->92", + "default.handlebars->23->180" ] }, { @@ -352,11 +352,11 @@ "nl": ", WebRTC", "pt": ", WebRTC", "xloc": [ + "default-mobile.handlebars->9->228", + "default-mobile.handlebars->9->238", "default.handlebars->23->581", "default.handlebars->23->612", - "default.handlebars->23->624", - "default-mobile.handlebars->9->228", - "default-mobile.handlebars->9->238" + "default.handlebars->23->624" ] }, { @@ -390,8 +390,8 @@ "nl": ", open het en klik op \"installeren\" of \"verbinden\".", "pt": ", execute-o e pressione \"Install\" or \"Connect\".", "xloc": [ - "agentinvite.handlebars->container->column_l->5->wintab64->3", - "agentinvite.handlebars->container->column_l->5->wintab32->3" + "agentinvite.handlebars->container->column_l->5->wintab32->3", + "agentinvite.handlebars->container->column_l->5->wintab64->3" ] }, { @@ -413,15 +413,15 @@ "nl": ".", "pt": ".", "xloc": [ + "default-mobile.handlebars->container->page_content->column_l->p0->1->p0message", "default.handlebars->container->column_l->p0->p0message", "default.handlebars->container->column_l->p1->NoMeshesPanel->1->1->0->3->getStarted1", - "default-mobile.handlebars->container->page_content->column_l->p0->1->p0message", - "login.handlebars->container->column_l->centralTable->1->0->logincell->loginpanel->1->resetAccountDiv", - "login.handlebars->container->column_l->centralTable->1->0->logincell->loginpanel->1->newAccountDiv", - "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->loginpanel->1->resetAccountDiv", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->loginpanel->1->newAccountDiv", - "terms.handlebars->container->column_l->75->1", - "terms-mobile.handlebars->container->page_content->column_l->75->1" + "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->loginpanel->1->resetAccountDiv", + "login.handlebars->container->column_l->centralTable->1->0->logincell->loginpanel->1->newAccountDiv", + "login.handlebars->container->column_l->centralTable->1->0->logincell->loginpanel->1->resetAccountDiv", + "terms-mobile.handlebars->container->page_content->column_l->75->1", + "terms.handlebars->container->column_l->75->1" ] }, { @@ -432,11 +432,11 @@ "nl": "...", "pt": "...", "xloc": [ - "default.handlebars->23->626", + "default-mobile.handlebars->9->243", + "default-mobile.handlebars->9->67", "default.handlebars->23->1132", "default.handlebars->23->1365", - "default-mobile.handlebars->9->67", - "default-mobile.handlebars->9->243" + "default.handlebars->23->626" ] }, { @@ -447,8 +447,8 @@ "nl": "0", "pt": "0", "xloc": [ - "default.handlebars->container->masthead->7->notificationCount", - "default-mobile.handlebars->9->232" + "default-mobile.handlebars->9->232", + "default.handlebars->container->masthead->7->notificationCount" ] }, { @@ -483,9 +483,9 @@ "nl": "1 byte", "pt": "1 byte", "xloc": [ - "default.handlebars->23->1149", + "default-mobile.handlebars->9->334", "default-mobile.handlebars->9->77", - "default-mobile.handlebars->9->334" + "default.handlebars->23->1149" ] }, { @@ -614,8 +614,8 @@ "nl": "1.AJAX Control Toolkit - Nieuwe BSD Licentie", "pt": "1.AJAX Control Toolkit - Nova licença BSD", "xloc": [ - "terms.handlebars->container->column_l->9->1->0", - "terms-mobile.handlebars->container->page_content->column_l->9->1->0" + "terms-mobile.handlebars->container->page_content->column_l->9->1->0", + "terms.handlebars->container->column_l->9->1->0" ] }, { @@ -625,10 +625,10 @@ "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.", "xloc": [ - "terms.handlebars->container->column_l->15->1", - "terms.handlebars->container->column_l->31->1", "terms-mobile.handlebars->container->page_content->column_l->15->1", - "terms-mobile.handlebars->container->page_content->column_l->31->1" + "terms-mobile.handlebars->container->page_content->column_l->31->1", + "terms.handlebars->container->column_l->15->1", + "terms.handlebars->container->column_l->31->1" ] }, { @@ -663,8 +663,8 @@ "nl": "100%", "pt": "100%", "xloc": [ - "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->5->d7bitmapscaling->1", - "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->5->d7bitmapscaling->1" + "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->5->d7bitmapscaling->1", + "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->5->d7bitmapscaling->1" ] }, { @@ -698,8 +698,8 @@ "nl": "12.5%", "pt": "12.5%", "xloc": [ - "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->5->d7bitmapscaling->15", - "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->5->d7bitmapscaling->15" + "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->5->d7bitmapscaling->15", + "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->5->d7bitmapscaling->15" ] }, { @@ -731,8 +731,8 @@ "nl": "2.OpenSSL – OpenSSL en SSLeay Licentie", "pt": "2.OpenSSL - Licença OpenSSL e SSLeay", "xloc": [ - "terms.handlebars->container->column_l->23->1->0", - "terms-mobile.handlebars->container->page_content->column_l->23->1->0" + "terms-mobile.handlebars->container->page_content->column_l->23->1->0", + "terms.handlebars->container->column_l->23->1->0" ] }, { @@ -742,10 +742,10 @@ "nl": "2.Herdistributies in binaire vorm moeten de bovenstaande copyright kennisgeving, deze lijst met voorwaarden en de volgende disclaimer reproduceren in de documentatie en / of andere materialen die bij de distributie worden geleverd.", "pt": "2.As redistribuições em formato binário devem reproduzir o aviso de direitos autorais acima, esta lista de condições e o aviso de isenção de responsabilidade a seguir na documentação e / ou outros materiais fornecidos com a distribuição.", "xloc": [ - "terms.handlebars->container->column_l->17->1", - "terms.handlebars->container->column_l->33->1", "terms-mobile.handlebars->container->page_content->column_l->17->1", - "terms-mobile.handlebars->container->page_content->column_l->33->1" + "terms-mobile.handlebars->container->page_content->column_l->33->1", + "terms.handlebars->container->column_l->17->1", + "terms.handlebars->container->column_l->33->1" ] }, { @@ -756,8 +756,8 @@ "nl": "25%", "pt": "25%", "xloc": [ - "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->5->d7bitmapscaling->13", - "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->5->d7bitmapscaling->13" + "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->5->d7bitmapscaling->13", + "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->5->d7bitmapscaling->13" ] }, { @@ -801,8 +801,8 @@ "nl": "3.Alle advertentiematerialen die functies of gebruik van deze software maken, moeten de volgende tekst bevatten: \"Dit product bevat software die is ontwikkeld door het OpenSSL-project voor gebruik in de OpenSSL Toolkit. (Http://www.openssl.org/)\"", "pt": "3.Todos os materiais publicitários que mencionam os recursos ou o uso deste software devem exibir o seguinte reconhecimento: \"This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit. (http://www.openssl.org/)\"", "xloc": [ - "terms.handlebars->container->column_l->35->1", - "terms-mobile.handlebars->container->page_content->column_l->35->1" + "terms-mobile.handlebars->container->page_content->column_l->35->1", + "terms.handlebars->container->column_l->35->1" ] }, { @@ -812,8 +812,8 @@ "nl": "3.Noch de naam van CodePlex Foundation, noch de namen van haar bijdragers mogen worden gebruikt om producten die zijn afgeleid van deze software te ondersteunen of promoten zonder specifieke voorafgaande schriftelijke toestemming.", "pt": "3.Nem o nome da CodePlex Foundation nem os nomes de seus colaboradores podem ser usados \\u200b\\u200bpara endossar ou promover produtos derivados deste software sem permissão prévia por escrito específica.", "xloc": [ - "terms.handlebars->container->column_l->19->1", - "terms-mobile.handlebars->container->page_content->column_l->19->1" + "terms-mobile.handlebars->container->page_content->column_l->19->1", + "terms.handlebars->container->column_l->19->1" ] }, { @@ -823,8 +823,8 @@ "nl": "3.jQuery Foundation - MIT Licentie", "pt": "3.jQuery Foundation - Licença MIT", "xloc": [ - "terms.handlebars->container->column_l->45->1->0", - "terms-mobile.handlebars->container->page_content->column_l->45->1->0" + "terms-mobile.handlebars->container->page_content->column_l->45->1->0", + "terms.handlebars->container->column_l->45->1->0" ] }, { @@ -847,8 +847,8 @@ "nl": "37.5%", "pt": "37..5%", "xloc": [ - "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->5->d7bitmapscaling->11", - "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->5->d7bitmapscaling->11" + "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->5->d7bitmapscaling->11", + "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->5->d7bitmapscaling->11" ] }, { @@ -857,8 +857,8 @@ "ja": "4.「OpenSSL Toolkit」および「OpenSSL Project」という名前は、事前の書面による許可なしに、このソフトウェアから派生した製品を推奨または宣伝するために使用しないでください。書面による許可については、openssl-core @ openssl.orgにお問い合わせください。", "nl": "4.De namen \"OpenSSL Toolkit\" en \"OpenSSL Project\" mogen niet worden gebruikt om producten die zijn afgeleid van deze software te ondersteunen of promoten zonder voorafgaande schriftelijke toestemming. Neem voor schriftelijke toestemming contact op met openssl-core@openssl.org.", "xloc": [ - "terms.handlebars->container->column_l->37->1", - "terms-mobile.handlebars->container->page_content->column_l->37->1" + "terms-mobile.handlebars->container->page_content->column_l->37->1", + "terms.handlebars->container->column_l->37->1" ] }, { @@ -868,8 +868,8 @@ "nl": "4.jQuery Gebruikers Interface - MIT Licentie", "pt": "4.Interface do Usuário jQuery - Licença MIT", "xloc": [ - "terms.handlebars->container->column_l->51->1->0", - "terms-mobile.handlebars->container->page_content->column_l->51->1->0" + "terms-mobile.handlebars->container->page_content->column_l->51->1->0", + "terms.handlebars->container->column_l->51->1->0" ] }, { @@ -880,8 +880,8 @@ "nl": "404", "pt": "404", "xloc": [ - "error404.handlebars->container->column_l->1->0", - "error404-mobile.handlebars->container->page_content->column_l->1->0" + "error404-mobile.handlebars->container->page_content->column_l->1->0", + "error404.handlebars->container->column_l->1->0" ] }, { @@ -902,8 +902,8 @@ "ja": "5.このソフトウェアから派生した製品は、OpenSSL Projectの事前の書面による許可なしに、「OpenSSL」と呼ばれたり、名前に「OpenSSL」が表示されたりすることはありません。", "nl": "5.Producten die zijn afgeleid van deze software mogen niet \"OpenSSL\" worden genoemd, noch mag \"OpenSSL\" in hun naam worden weergegeven zonder voorafgaande schriftelijke toestemming van het OpenSSL-project.", "xloc": [ - "terms.handlebars->container->column_l->39->1", - "terms-mobile.handlebars->container->page_content->column_l->39->1" + "terms-mobile.handlebars->container->page_content->column_l->39->1", + "terms.handlebars->container->column_l->39->1" ] }, { @@ -913,8 +913,8 @@ "nl": "5.noVNC - Mozilla Public Licentie 2.0", "pt": "5.noVNC - Licença Pública Mozilla 2.0 0", "xloc": [ - "terms.handlebars->container->column_l->59->1->0", - "terms-mobile.handlebars->container->page_content->column_l->59->1->0" + "terms-mobile.handlebars->container->page_content->column_l->59->1->0", + "terms.handlebars->container->column_l->59->1->0" ] }, { @@ -925,8 +925,8 @@ "nl": "50%", "pt": "50%", "xloc": [ - "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->5->d7bitmapscaling->9", - "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->5->d7bitmapscaling->9" + "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->5->d7bitmapscaling->9", + "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->5->d7bitmapscaling->9" ] }, { @@ -936,8 +936,8 @@ "nl": "6.Rcarousel - MIT Licentie", "pt": "6.Rcarousel - License MIT", "xloc": [ - "terms.handlebars->container->column_l->65->1->0", - "terms-mobile.handlebars->container->page_content->column_l->65->1->0" + "terms-mobile.handlebars->container->page_content->column_l->65->1->0", + "terms.handlebars->container->column_l->65->1->0" ] }, { @@ -947,8 +947,8 @@ "nl": "6.Herdistributies in welke vorm dan ook moet de volgende tekst behouden: \"Dit product bevat software die is ontwikkeld door het OpenSSL-project voor gebruik in de OpenSSL Toolkit (http://www.openssl.org/)\".", "pt": "6.As redistribuições de qualquer forma devem manter o seguinte reconhecimento: \"Este produto inclui software desenvolvido pelo OpenSSL Project para uso no OpenSSL Toolkit (http://www.openssl.org/)\".", "xloc": [ - "terms.handlebars->container->column_l->41->1", - "terms-mobile.handlebars->container->page_content->column_l->41->1" + "terms-mobile.handlebars->container->page_content->column_l->41->1", + "terms.handlebars->container->column_l->41->1" ] }, { @@ -959,8 +959,8 @@ "nl": "62.5%", "pt": "62.5%", "xloc": [ - "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->5->d7bitmapscaling->7", - "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->5->d7bitmapscaling->7" + "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->5->d7bitmapscaling->7", + "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->5->d7bitmapscaling->7" ] }, { @@ -999,8 +999,8 @@ "nl": "7.Webtoolkit Javascript Base 64 – Creative Commons Attribution 2.0 UK Licentie", "pt": "7.Webtoolkit Javascript Base 64 - Licença Creative Commons Attribution 2.0 UK", "xloc": [ - "terms.handlebars->container->column_l->73->1->0", - "terms-mobile.handlebars->container->page_content->column_l->73->1->0" + "terms-mobile.handlebars->container->page_content->column_l->73->1->0", + "terms.handlebars->container->column_l->73->1->0" ] }, { @@ -1011,8 +1011,8 @@ "nl": "75%", "pt": "75%", "xloc": [ - "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->5->d7bitmapscaling->5", - "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->5->d7bitmapscaling->5" + "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->5->d7bitmapscaling->5", + "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->5->d7bitmapscaling->5" ] }, { @@ -1047,8 +1047,8 @@ "nl": "87.5%", "pt": "87.5%", "xloc": [ - "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->5->d7bitmapscaling->3", - "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->5->d7bitmapscaling->3" + "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->5->d7bitmapscaling->3", + "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->5->d7bitmapscaling->3" ] }, { @@ -1125,8 +1125,8 @@ "nl": "ACM", "pt": "ACM", "xloc": [ - "default.handlebars->23->452", - "default-mobile.handlebars->9->182" + "default-mobile.handlebars->9->182", + "default.handlebars->23->452" ] }, { @@ -1149,8 +1149,8 @@ "nl": "ARM-Linaro", "pt": "ARM-Linaro", "xloc": [ - "default.handlebars->23->37", - "default-mobile.handlebars->9->167" + "default-mobile.handlebars->9->167", + "default.handlebars->23->37" ] }, { @@ -1161,8 +1161,8 @@ "nl": "ARMv6l / ARMv7l", "pt": "ARMv6l / ARMv7l", "xloc": [ - "default.handlebars->23->38", - "default-mobile.handlebars->9->168" + "default-mobile.handlebars->9->168", + "default.handlebars->23->38" ] }, { @@ -1173,8 +1173,8 @@ "nl": "ARMv6l / ARMv7l / NoKVM", "pt": "ARMv6l / ARMv7l / NoKVM", "xloc": [ - "default.handlebars->23->40", - "default-mobile.handlebars->9->170" + "default-mobile.handlebars->9->170", + "default.handlebars->23->40" ] }, { @@ -1185,8 +1185,8 @@ "nl": "ARMv8 64bit", "pt": "ARMv8 64bit", "xloc": [ - "default.handlebars->23->39", - "default-mobile.handlebars->9->169" + "default-mobile.handlebars->9->169", + "default.handlebars->23->39" ] }, { @@ -1208,8 +1208,8 @@ "ja": "アクセスが拒否されました。", "nl": "Toegang geweigerd.", "xloc": [ - "login.handlebars->5->13", - "login-mobile.handlebars->5->13" + "login-mobile.handlebars->5->13", + "login.handlebars->5->13" ] }, { @@ -1242,8 +1242,8 @@ "nl": "Gebruikersaccount aanmaken", "pt": "Criação de conta", "xloc": [ - "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->5->1", - "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->5->1" + "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->5->1", + "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->5->1" ] }, { @@ -1254,8 +1254,8 @@ "nl": "Gebruikersaccount resetten", "pt": "Redefinição de conta", "xloc": [ - "login.handlebars->container->column_l->centralTable->1->0->logincell->resetpanel->1->5->1", - "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->resetpanel->1->5->1" + "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->resetpanel->1->5->1", + "login.handlebars->container->column_l->centralTable->1->0->logincell->resetpanel->1->5->1" ] }, { @@ -1266,15 +1266,15 @@ "nl": "Gebruikersaccount beveiliging", "pt": "Segurança da Conta", "xloc": [ + "default-mobile.handlebars->9->129", + "default-mobile.handlebars->9->131", + "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->23->425", "default.handlebars->23->427", "default.handlebars->23->925", - "default.handlebars->23->927", - "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->1->0", - "default-mobile.handlebars->9->52", - "default-mobile.handlebars->9->54", - "default-mobile.handlebars->9->129", - "default-mobile.handlebars->9->131" + "default.handlebars->23->927" ] }, { @@ -1295,8 +1295,8 @@ "ja": "アカウントの上限に達しました。", "nl": "Gebruikersaccount limiet bereikt.", "xloc": [ - "login.handlebars->5->3", - "login-mobile.handlebars->5->3" + "login-mobile.handlebars->5->3", + "login.handlebars->5->3" ] }, { @@ -1306,8 +1306,8 @@ "ja": "アカウントがロックされました。", "nl": "Gebruikersaccount vergrendeld", "xloc": [ - "login.handlebars->5->12", - "login-mobile.handlebars->5->12" + "login-mobile.handlebars->5->12", + "login.handlebars->5->12" ] }, { @@ -1317,8 +1317,8 @@ "ja": "アカウントが見つかりませんでした。", "nl": "Gebruikersaccount niet gevonden", "xloc": [ - "login.handlebars->5->9", - "login-mobile.handlebars->5->9" + "login-mobile.handlebars->5->9", + "login.handlebars->5->9" ] }, { @@ -1340,8 +1340,8 @@ "nl": "Actie", "pt": "Ação", "xloc": [ - "default.handlebars->container->column_l->p42->p42tbl->1->0->8", - "default.handlebars->23->675" + "default.handlebars->23->675", + "default.handlebars->container->column_l->p42->p42tbl->1->0->8" ] }, { @@ -1352,12 +1352,12 @@ "nl": "Acties", "pt": "Ações", "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->23->484", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->1", - "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->1", - "default.handlebars->23->484", - "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->container->column_l->p13->p13toolbar->1->0->1->1" ] }, { @@ -1393,10 +1393,10 @@ "nl": "Geactiveerd", "pt": "ativado", "xloc": [ - "default.handlebars->23->445", - "default.handlebars->23->447", "default-mobile.handlebars->9->177", - "default-mobile.handlebars->9->179" + "default-mobile.handlebars->9->179", + "default.handlebars->23->445", + "default.handlebars->23->447" ] }, { @@ -1469,11 +1469,11 @@ "nl": "Apparaatgroep toevoegen", "pt": "Adicionar grupo de dispositivos", "xloc": [ - "default.handlebars->23->205", "default.handlebars->23->1084", "default.handlebars->23->1086", "default.handlebars->23->1268", - "default.handlebars->23->1342" + "default.handlebars->23->1342", + "default.handlebars->23->205" ] }, { @@ -1561,9 +1561,9 @@ "en": "Add User Group", "nl": "Gebruikersgroep toevoegen", "xloc": [ - "default.handlebars->23->991", "default.handlebars->23->1085", - "default.handlebars->23->1351" + "default.handlebars->23->1351", + "default.handlebars->23->991" ] }, { @@ -1587,8 +1587,8 @@ "nl": "Gebruikers toevoegen", "pt": "Adicionar usuários", "xloc": [ - "default.handlebars->23->990", - "default.handlebars->23->1263" + "default.handlebars->23->1263", + "default.handlebars->23->990" ] }, { @@ -1675,8 +1675,8 @@ "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.", "xloc": [ - "default.handlebars->23->233", - "default.handlebars->23->1000" + "default.handlebars->23->1000", + "default.handlebars->23->233" ] }, { @@ -1774,14 +1774,14 @@ "nl": "Agent", "pt": "Agente", "xloc": [ - "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->1", - "default.handlebars->23->184", - "default.handlebars->23->371", - "default.handlebars->23->1120", - "default.handlebars->23->1126", "default-mobile.handlebars->9->121", "default-mobile.handlebars->9->174", - "default-mobile.handlebars->9->190" + "default-mobile.handlebars->9->190", + "default.handlebars->23->1120", + "default.handlebars->23->1126", + "default.handlebars->23->184", + "default.handlebars->23->371", + "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->1" ] }, { @@ -1812,8 +1812,8 @@ "nl": "Agent console", "pt": "Console do agente", "xloc": [ - "default.handlebars->23->1094", - "default-mobile.handlebars->9->315" + "default-mobile.handlebars->9->315", + "default.handlebars->23->1094" ] }, { @@ -1844,8 +1844,8 @@ "nl": "Agent Extern bureaublad", "pt": "Área de trabalho remota do agente", "xloc": [ - "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->1", - "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->1" + "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->1", + "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->1" ] }, { @@ -1865,8 +1865,8 @@ "nl": "Agent Tag", "pt": "Etiqueta do agente", "xloc": [ - "default.handlebars->23->464", - "default-mobile.handlebars->9->189" + "default-mobile.handlebars->9->189", + "default.handlebars->23->464" ] }, { @@ -1875,8 +1875,8 @@ "en": "Agent Types", "nl": "Agent Type", "xloc": [ - "default.handlebars->container->column_l->p21->3->1->meshOsChartDiv->1", - "default.handlebars->23->1124" + "default.handlebars->23->1124", + "default.handlebars->container->column_l->p21->3->1->meshOsChartDiv->1" ] }, { @@ -1956,9 +1956,9 @@ "nl": "alles", "pt": "Todos", "xloc": [ - "default-mobile.handlebars->9->76", "default-mobile.handlebars->9->244", - "default-mobile.handlebars->9->246" + "default-mobile.handlebars->9->246", + "default-mobile.handlebars->9->76" ] }, { @@ -2006,8 +2006,8 @@ "nl": "Alt-F4", "pt": "Alt-F4", "xloc": [ - "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3->deskkeys->17", - "default-mobile.handlebars->dialog->3->dialog3->deskkeys->19" + "default-mobile.handlebars->dialog->3->dialog3->deskkeys->19", + "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3->deskkeys->17" ] }, { @@ -2018,8 +2018,8 @@ "nl": "Alt-Tab", "pt": "Alt-Tab", "xloc": [ - "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3->deskkeys->21", - "default-mobile.handlebars->dialog->3->dialog3->deskkeys->23" + "default-mobile.handlebars->dialog->3->dialog3->deskkeys->23", + "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3->deskkeys->21" ] }, { @@ -2064,8 +2064,8 @@ "nl": "Android APK", "pt": "Android APK", "xloc": [ - "default.handlebars->23->27", - "default-mobile.handlebars->9->157" + "default-mobile.handlebars->9->157", + "default.handlebars->23->27" ] }, { @@ -2076,8 +2076,8 @@ "nl": "Android ARM", "pt": "Android ARM", "xloc": [ - "default.handlebars->23->22", - "default-mobile.handlebars->9->152" + "default-mobile.handlebars->9->152", + "default.handlebars->23->22" ] }, { @@ -2088,8 +2088,8 @@ "nl": "Android x86", "pt": "Android x86", "xloc": [ - "default.handlebars->23->25", - "default-mobile.handlebars->9->155" + "default-mobile.handlebars->9->155", + "default.handlebars->23->25" ] }, { @@ -2377,8 +2377,8 @@ "nl": "Weet je zeker dat je groep {0} wilt verwijderen? Als u de apparaatgroep verwijdert, wordt ook alle informatie over apparaten binnen deze groep verwijderd.", "pt": "Tem certeza de que deseja excluir o grupo {0}? A exclusão do grupo de dispositivos também excluirá todas as informações sobre os dispositivos desse grupo.", "xloc": [ - "default.handlebars->23->1038", - "default-mobile.handlebars->9->286" + "default-mobile.handlebars->9->286", + "default.handlebars->23->1038" ] }, { @@ -2475,14 +2475,14 @@ "nl": "Verificatie-app", "pt": "Autenticador de aplicativo", "xloc": [ - "default.handlebars->23->122", - "default.handlebars->23->127", - "default.handlebars->23->683", - "default.handlebars->23->685", "default-mobile.handlebars->9->18", "default-mobile.handlebars->9->21", "default-mobile.handlebars->9->30", - "default-mobile.handlebars->9->32" + "default-mobile.handlebars->9->32", + "default.handlebars->23->122", + "default.handlebars->23->127", + "default.handlebars->23->683", + "default.handlebars->23->685" ] }, { @@ -2539,10 +2539,10 @@ "nl": "Automatisch verbinden", "pt": "Conexão automática", "xloc": [ + "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3", - "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3", - "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3" + "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3" ] }, { @@ -2602,10 +2602,10 @@ "default.handlebars->container->column_l->p31->p31title->1", "default.handlebars->container->column_l->p43->p43BackButton", "default.handlebars->container->column_l->p51->1->1->0->1->p30title->1", - "error404.handlebars->container->footer->1->1->0->3->0", "error404-mobile.handlebars->container->footer->1->1->0->3->1", - "terms.handlebars->container->footer->1->1->0->3->0", - "terms-mobile.handlebars->container->footer->1->1->0->3->1" + "error404.handlebars->container->footer->1->1->0->3->0", + "terms-mobile.handlebars->container->footer->1->1->0->3->1", + "terms.handlebars->container->footer->1->1->0->3->0" ] }, { @@ -2616,16 +2616,16 @@ "nl": "Terug naar inloggen", "pt": "Volte ao login", "xloc": [ - "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->12", - "login.handlebars->container->column_l->centralTable->1->0->logincell->resetpanel->1->10", - "login.handlebars->container->column_l->centralTable->1->0->logincell->tokenpanel->1->10", - "login.handlebars->container->column_l->centralTable->1->0->logincell->resettokenpanel->1->8", - "login.handlebars->container->column_l->centralTable->1->0->logincell->resetpasswordpanel->1->10", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->12", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->resetpanel->1->10", - "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->10", + "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->resetpasswordpanel->1->10", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->resettokenpanel->1->8", - "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->resetpasswordpanel->1->10" + "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->10", + "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->12", + "login.handlebars->container->column_l->centralTable->1->0->logincell->resetpanel->1->10", + "login.handlebars->container->column_l->centralTable->1->0->logincell->resetpasswordpanel->1->10", + "login.handlebars->container->column_l->centralTable->1->0->logincell->resettokenpanel->1->8", + "login.handlebars->container->column_l->centralTable->1->0->logincell->tokenpanel->1->10" ] }, { @@ -2778,8 +2778,8 @@ "nl": "Uitzending", "pt": "Broadcast", "xloc": [ - "default.handlebars->container->column_l->p4->3->1->0->3->1", - "default.handlebars->23->1261" + "default.handlebars->23->1261", + "default.handlebars->container->column_l->p4->3->1->0->3->1" ] }, { @@ -2835,8 +2835,8 @@ "nl": "CCM", "pt": "CCM", "xloc": [ - "default.handlebars->23->450", - "default-mobile.handlebars->9->181" + "default-mobile.handlebars->9->181", + "default.handlebars->23->450" ] }, { @@ -2847,11 +2847,11 @@ "nl": "CIRA", "pt": "CIRA", "xloc": [ - "default.handlebars->23->186", - "default.handlebars->23->373", + "default-mobile.handlebars->9->122", "default.handlebars->23->1026", "default.handlebars->23->1031", - "default-mobile.handlebars->9->122" + "default.handlebars->23->186", + "default.handlebars->23->373" ] }, { @@ -2926,9 +2926,9 @@ "nl": "CR+LF", "pt": "CR + LF", "xloc": [ - "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons", "default.handlebars->23->610", - "default.handlebars->23->619" + "default.handlebars->23->619", + "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons" ] }, { @@ -2964,12 +2964,12 @@ "nl": "Annuleren", "pt": "Cancelar", "xloc": [ - "default.handlebars->container->dialog->idx_dlgButtonBar", - "default.handlebars->23->946", - "default-mobile.handlebars->dialog->idx_dlgButtonBar", "default-mobile.handlebars->9->41", - "login.handlebars->dialog->idx_dlgButtonBar", + "default-mobile.handlebars->dialog->idx_dlgButtonBar", + "default.handlebars->23->946", + "default.handlebars->container->dialog->idx_dlgButtonBar", "login-mobile.handlebars->dialog->idx_dlgButtonBar", + "login.handlebars->dialog->idx_dlgButtonBar", "player.htm->p11->dialog->idx_dlgButtonBar" ] }, @@ -3050,9 +3050,9 @@ "nl": "Verander wachtwoord", "pt": "Mudar senha", "xloc": [ - "default.handlebars->23->922", + "default-mobile.handlebars->9->49", "default.handlebars->23->1328", - "default-mobile.handlebars->9->49" + "default.handlebars->23->922" ] }, { @@ -3074,8 +3074,8 @@ "nl": "Verander e-mailadres", "pt": "Mude o endereço de email", "xloc": [ - "default.handlebars->container->column_l->p2->p2AccountActions->3->p2AccountPassActions->accountChangeEmailAddressSpan->0", - "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->7->3->changeEmailId->0" + "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->7->3->changeEmailId->0", + "default.handlebars->container->column_l->p2->p2AccountActions->3->p2AccountPassActions->accountChangeEmailAddressSpan->0" ] }, { @@ -3086,8 +3086,8 @@ "nl": "Verander wachtwoord", "pt": "Mudar senha", "xloc": [ - "default.handlebars->container->column_l->p2->p2AccountActions->3->p2AccountPassActions->3", - "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->7->5->0" + "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->7->5->0", + "default.handlebars->container->column_l->p2->p2AccountActions->3->p2AccountPassActions->3" ] }, { @@ -3164,10 +3164,10 @@ "nl": "Chat & Melden", "pt": "Chat & Notificação", "xloc": [ - "default.handlebars->23->1081", - "default.handlebars->23->1104", "default-mobile.handlebars->9->307", - "default-mobile.handlebars->9->325" + "default-mobile.handlebars->9->325", + "default.handlebars->23->1081", + "default.handlebars->23->1104" ] }, { @@ -3222,8 +3222,8 @@ "nl": "Controleren...", "pt": "Verificando ...", "xloc": [ - "default.handlebars->23->696", - "default.handlebars->23->1434" + "default.handlebars->23->1434", + "default.handlebars->23->696" ] }, { @@ -3289,8 +3289,8 @@ "nl": "ChromeOS", "pt": "ChromeOS", "xloc": [ - "default.handlebars->23->30", - "default-mobile.handlebars->9->160" + "default-mobile.handlebars->9->160", + "default.handlebars->23->30" ] }, { @@ -3323,19 +3323,19 @@ "nl": "Wissen", "pt": "Limpo", "xloc": [ - "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7", - "default.handlebars->container->column_l->p41->3->1", - "default.handlebars->23->645", - "default.handlebars->23->647", - "default.handlebars->23->649", - "default.handlebars->23->651", - "default.handlebars->23->1164", - "default-mobile.handlebars->9->28", - "default-mobile.handlebars->9->91", "default-mobile.handlebars->9->262", "default-mobile.handlebars->9->264", "default-mobile.handlebars->9->266", "default-mobile.handlebars->9->268", + "default-mobile.handlebars->9->28", + "default-mobile.handlebars->9->91", + "default.handlebars->23->1164", + "default.handlebars->23->645", + "default.handlebars->23->647", + "default.handlebars->23->649", + "default.handlebars->23->651", + "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" ] }, @@ -3391,8 +3391,8 @@ "nl": "Klik op OK om een verificatiebericht te sturen naar:", "pt": "Clique em ok para enviar um email de verificação para:", "xloc": [ - "default.handlebars->23->906", - "default-mobile.handlebars->9->34" + "default-mobile.handlebars->9->34", + "default.handlebars->23->906" ] }, { @@ -3437,10 +3437,10 @@ "nl": "Sluiten", "pt": "Fechar", "xloc": [ + "default-mobile.handlebars->9->26", "default.handlebars->23->134", "default.handlebars->23->142", - "default.handlebars->23->602", - "default-mobile.handlebars->9->26" + "default.handlebars->23->602" ] }, { @@ -3451,8 +3451,8 @@ "nl": "kolommen", "pt": "Colunas", "xloc": [ - "default.handlebars->container->column_l->p1->p1title->devListToolbarViewIcons", - "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarView->viewselect->1" + "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarView->viewselect->1", + "default.handlebars->container->column_l->p1->p1title->devListToolbarViewIcons" ] }, { @@ -3472,8 +3472,8 @@ "nl": "Bevestig {0} van {1} bestand {2} naar deze locatie?", "pt": "Confirme {0} da {1} entrada {2} para este local?", "xloc": [ - "default.handlebars->23->1159", - "default-mobile.handlebars->9->86" + "default-mobile.handlebars->9->86", + "default.handlebars->23->1159" ] }, { @@ -3484,13 +3484,13 @@ "nl": "Bevestig", "pt": "Confirme", "xloc": [ - "default.handlebars->23->396", - "default.handlebars->23->548", - "default.handlebars->23->557", + "default-mobile.handlebars->9->220", + "default-mobile.handlebars->9->287", "default.handlebars->23->1039", "default.handlebars->23->1284", - "default-mobile.handlebars->9->220", - "default-mobile.handlebars->9->287" + "default.handlebars->23->396", + "default.handlebars->23->548", + "default.handlebars->23->557" ] }, { @@ -3501,8 +3501,8 @@ "nl": "Bevestig kopie van 1 bestand naar deze locatie?", "pt": "Confirmar cópia de 1 entrada para este local?", "xloc": [ - "default.handlebars->23->640", - "default-mobile.handlebars->9->257" + "default-mobile.handlebars->9->257", + "default.handlebars->23->640" ] }, { @@ -3513,8 +3513,8 @@ "nl": "Bevestig kopieën van {0} bestanden naar deze locatie?", "pt": "Confirmar cópia de {0} entradas para este local?", "xloc": [ - "default.handlebars->23->639", - "default-mobile.handlebars->9->256" + "default-mobile.handlebars->9->256", + "default.handlebars->23->639" ] }, { @@ -3536,8 +3536,8 @@ "nl": "Verplaatsing van 1 bestand naar deze locatie bevestigen?", "pt": "Confirmar a movimentação de 1 entrada para este local?", "xloc": [ - "default.handlebars->23->642", - "default-mobile.handlebars->9->259" + "default-mobile.handlebars->9->259", + "default.handlebars->23->642" ] }, { @@ -3548,8 +3548,8 @@ "nl": "Verplaatsing van {0} bestanden naar deze locatie bevestigen?", "pt": "Confirmar a movimentação de {0} entradas para este local?", "xloc": [ - "default.handlebars->23->641", - "default-mobile.handlebars->9->258" + "default-mobile.handlebars->9->258", + "default.handlebars->23->641" ] }, { @@ -3570,8 +3570,8 @@ "nl": "Bevestig de verwijdering van de Tweestapsverificatie applicatie?", "pt": "Confirmar remoção do login do aplicativo autenticador em duas etapas?", "xloc": [ - "default.handlebars->23->686", - "default-mobile.handlebars->9->33" + "default-mobile.handlebars->9->33", + "default.handlebars->23->686" ] }, { @@ -3599,9 +3599,9 @@ "nl": "Bevestig de verwijdering van gebruiker {0}?", "pt": "Confirmar remoção do usuário {0}?", "xloc": [ + "default-mobile.handlebars->9->333", "default.handlebars->23->1113", - "default.handlebars->23->1287", - "default-mobile.handlebars->9->333" + "default.handlebars->23->1287" ] }, { @@ -3612,14 +3612,14 @@ "nl": "Verbinden", "pt": "Conectar", "xloc": [ - "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1span", - "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2span", - "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3", - "default.handlebars->23->622", - "default.handlebars->23->977", + "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-mobile.handlebars->9->236" + "default.handlebars->23->622", + "default.handlebars->23->977", + "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" ] }, { @@ -3630,8 +3630,8 @@ "nl": "Alles verbinden", "pt": "Conectar todos", "xloc": [ - "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->kvmListToolbar", - "default.handlebars->23->217" + "default.handlebars->23->217", + "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->kvmListToolbar" ] }, { @@ -3676,8 +3676,8 @@ "nl": "Verbonden", "pt": "Conectado", "xloc": [ - "default.handlebars->23->11", - "default-mobile.handlebars->9->4" + "default-mobile.handlebars->9->4", + "default.handlebars->23->11" ] }, { @@ -3717,14 +3717,14 @@ "nl": "Verbinden...", "pt": "Conectando...", "xloc": [ - "default.handlebars->23->9", + "default-mobile.handlebars->9->2", + "default-mobile.handlebars->9->272", + "default-mobile.handlebars->9->6", "default.handlebars->23->211", "default.handlebars->23->214", "default.handlebars->23->220", "default.handlebars->23->663", - "default-mobile.handlebars->9->2", - "default-mobile.handlebars->9->6", - "default-mobile.handlebars->9->272" + "default.handlebars->23->9" ] }, { @@ -3779,11 +3779,11 @@ "nl": "connectiviteit", "pt": "Conectividade", "xloc": [ - "default.handlebars->container->column_l->p21->3->1->meshConnChartDiv->1", + "default-mobile.handlebars->9->195", + "default.handlebars->23->1129", "default.handlebars->23->202", "default.handlebars->23->482", - "default.handlebars->23->1129", - "default-mobile.handlebars->9->195" + "default.handlebars->container->column_l->p21->3->1->meshConnChartDiv->1" ] }, { @@ -3794,9 +3794,9 @@ "nl": "Console", "pt": "Console", "xloc": [ - "default.handlebars->contextMenu->cxconsole", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevConsole", - "default.handlebars->container->topbar->1->1->ServerSubMenuSpan->ServerSubMenu->1->0->ServerConsole" + "default.handlebars->container->topbar->1->1->ServerSubMenuSpan->ServerSubMenu->1->0->ServerConsole", + "default.handlebars->contextMenu->cxconsole" ] }, { @@ -3829,10 +3829,10 @@ "nl": "Kopie", "pt": "Copiar", "xloc": [ - "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", - "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", + "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->3", "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->3", - "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->3" + "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", + "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3" ] }, { @@ -3843,8 +3843,8 @@ "nl": "Kopieer MAC adres naar het klembord", "pt": "Copiar endereço MAC para a área de transferência", "xloc": [ - "default.handlebars->23->99", - "default.handlebars->23->107" + "default.handlebars->23->107", + "default.handlebars->23->99" ] }, { @@ -3866,11 +3866,11 @@ "nl": "Kopieer adres naar het klembord", "pt": "Copiar endereço para a área de transferência", "xloc": [ - "default.handlebars->23->90", - "default.handlebars->23->92", "default.handlebars->23->101", "default.handlebars->23->103", - "default.handlebars->23->105" + "default.handlebars->23->105", + "default.handlebars->23->90", + "default.handlebars->23->92" ] }, { @@ -3925,8 +3925,8 @@ "nl": "Copyright (C) 2011 Joel Martin Dit broncodeformulier is onderworpen aan de voorwaarden van de Mozilla Public License, v. 2.0. Als een kopie van de MPL niet met dit bestand is verspreid, kunt u er een verkrijgen op http://mozilla.org/MPL/2.0/.", "pt": "Copyright (C) 2011 Joel Martin Este formulário de código-fonte está sujeito aos termos da Licença Pública Mozilla, v.2.0 0.Se uma cópia da MPL não foi distribuída com este arquivo, você pode obter uma em http: // mozilla.org / MPL / 2.0 /.", "xloc": [ - "terms.handlebars->container->column_l->63->1", - "terms-mobile.handlebars->container->page_content->column_l->63->1" + "terms-mobile.handlebars->container->page_content->column_l->63->1", + "terms.handlebars->container->column_l->63->1" ] }, { @@ -3936,8 +3936,8 @@ "nl": "Copyright (c) 1998-2011 The OpenSSL Project. Alle rechten voorbehouden.", "pt": "Copyright (c) 1998-2011 O Projeto OpenSSL.Todos os direitos reservados.", "xloc": [ - "terms.handlebars->container->column_l->27->1", - "terms-mobile.handlebars->container->page_content->column_l->27->1" + "terms-mobile.handlebars->container->page_content->column_l->27->1", + "terms.handlebars->container->column_l->27->1" ] }, { @@ -3947,8 +3947,8 @@ "nl": "Copyright (c) 2009, CodePlex Foundation. Alle rechten voorbehouden.", "pt": "Direitos autorais (c) 2009, CodePlex Foundation.Todos os direitos reservados.", "xloc": [ - "terms.handlebars->container->column_l->11->1", - "terms-mobile.handlebars->container->page_content->column_l->11->1" + "terms-mobile.handlebars->container->page_content->column_l->11->1", + "terms.handlebars->container->column_l->11->1" ] }, { @@ -3958,8 +3958,8 @@ "nl": "Copyright (c) 2010 Wojciech 'RRH' Ryrych", "pt": "Copyright (c) 2010 Wojciech 'RRH' Ryrych", "xloc": [ - "terms.handlebars->container->column_l->69->1", - "terms-mobile.handlebars->container->page_content->column_l->69->1" + "terms-mobile.handlebars->container->page_content->column_l->69->1", + "terms.handlebars->container->column_l->69->1" ] }, { @@ -3969,8 +3969,8 @@ "nl": "Copyright 2013 jQuery Foundation en andere bijdragers", "pt": "Copyright 2013 jQuery Foundation e outros colaboradores", "xloc": [ - "terms.handlebars->container->column_l->47->1", - "terms-mobile.handlebars->container->page_content->column_l->47->1" + "terms-mobile.handlebars->container->page_content->column_l->47->1", + "terms.handlebars->container->column_l->47->1" ] }, { @@ -3980,8 +3980,8 @@ "nl": "Copyright 2013 jQuery Foundation en andere bijdragers,", "pt": "Copyright 2013 jQuery Foundation e outros colaboradores,", "xloc": [ - "terms.handlebars->container->column_l->53->1", - "terms-mobile.handlebars->container->page_content->column_l->53->1" + "terms-mobile.handlebars->container->page_content->column_l->53->1", + "terms.handlebars->container->column_l->53->1" ] }, { @@ -4015,8 +4015,8 @@ "pt": "Criar conta", "xloc": [ "default.handlebars->23->1229", - "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1", - "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->12->1->1" + "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" ] }, { @@ -4079,8 +4079,8 @@ "nl": "Creëer er een", "pt": "Crie um", "xloc": [ - "login.handlebars->container->column_l->centralTable->1->0->logincell->loginpanel->1->newAccountDiv->1", - "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->loginpanel->1->newAccountDiv->1" + "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->loginpanel->1->newAccountDiv->1", + "login.handlebars->container->column_l->centralTable->1->0->logincell->loginpanel->1->newAccountDiv->1" ] }, { @@ -4102,8 +4102,8 @@ "nl": "Token aanmaken:", "pt": "Token de criação", "xloc": [ - "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->newAccountPass->nuToken", - "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->newAccountPass->1" + "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->newAccountPass->1", + "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->newAccountPass->nuToken" ] }, { @@ -4169,8 +4169,8 @@ "nl": "Ctrl+Alt+Del", "pt": "CTRL+ALT+DEL", "xloc": [ - "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3->deskkeys->1", - "default-mobile.handlebars->dialog->3->dialog3->deskkeys->1" + "default-mobile.handlebars->dialog->3->dialog3->deskkeys->1", + "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3->deskkeys->1" ] }, { @@ -4181,8 +4181,8 @@ "nl": "Ctrl-W", "pt": "CTRL-W", "xloc": [ - "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3->deskkeys->19", - "default-mobile.handlebars->dialog->3->dialog3->deskkeys->21" + "default-mobile.handlebars->dialog->3->dialog3->deskkeys->21", + "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3->deskkeys->19" ] }, { @@ -4204,10 +4204,10 @@ "nl": "Knippen", "pt": "Cortar", "xloc": [ - "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", - "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", + "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->3", "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->3", - "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->3" + "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", + "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3" ] }, { @@ -4295,8 +4295,8 @@ "nl": "Slaapstand", "pt": "Deep Sleep", "xloc": [ - "default.handlebars->23->356", - "default-mobile.handlebars->9->110" + "default-mobile.handlebars->9->110", + "default.handlebars->23->356" ] }, { @@ -4307,15 +4307,15 @@ "nl": "Verwijderen", "pt": "Deletar", "xloc": [ - "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", - "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", - "default.handlebars->container->dialog->idx_dlgButtonBar->5", - "default.handlebars->23->632", - "default.handlebars->23->1153", - "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1", - "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1", - "default-mobile.handlebars->9->81", "default-mobile.handlebars->9->249", + "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->23->1153", + "default.handlebars->23->632", + "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", "player.htm->p11->dialog->idx_dlgButtonBar->5" ] }, @@ -4327,8 +4327,8 @@ "nl": "Verwijder account", "pt": "Deletar Conta", "xloc": [ - "default.handlebars->23->914", - "default-mobile.handlebars->9->43" + "default-mobile.handlebars->9->43", + "default.handlebars->23->914" ] }, { @@ -4339,8 +4339,8 @@ "nl": "Verwijder apparaat", "pt": "Excluir dispositivo", "xloc": [ - "default.handlebars->23->493", - "default-mobile.handlebars->9->199" + "default-mobile.handlebars->9->199", + "default.handlebars->23->493" ] }, { @@ -4351,10 +4351,10 @@ "nl": "Verwijder groep", "pt": "Excluir grupo", "xloc": [ - "default.handlebars->23->1010", - "default.handlebars->23->1040", "default-mobile.handlebars->9->285", - "default-mobile.handlebars->9->288" + "default-mobile.handlebars->9->288", + "default.handlebars->23->1010", + "default.handlebars->23->1040" ] }, { @@ -4365,8 +4365,8 @@ "nl": "Verwijder apparaat", "pt": "Excluir nó", "xloc": [ - "default.handlebars->23->558", - "default-mobile.handlebars->9->218" + "default-mobile.handlebars->9->218", + "default.handlebars->23->558" ] }, { @@ -4417,8 +4417,8 @@ "nl": "Verwijder account", "pt": "Deletar conta", "xloc": [ - "default.handlebars->container->column_l->p2->p2AccountActions->3->p2AccountPassActions->7", - "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->7->7->0" + "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->7->7->0", + "default.handlebars->container->column_l->p2->p2AccountActions->3->p2AccountPassActions->7" ] }, { @@ -4440,10 +4440,10 @@ "nl": "Verwijder geselecteerde item?", "pt": "Excluir item selecionado?", "xloc": [ - "default.handlebars->23->634", - "default.handlebars->23->1155", + "default-mobile.handlebars->9->251", "default-mobile.handlebars->9->83", - "default-mobile.handlebars->9->251" + "default.handlebars->23->1155", + "default.handlebars->23->634" ] }, { @@ -4462,10 +4462,10 @@ "nl": "Verwijder {0} gelecteerde items?", "pt": "Excluir {0} itens selecionados?", "xloc": [ - "default.handlebars->23->633", - "default.handlebars->23->1154", + "default-mobile.handlebars->9->250", "default-mobile.handlebars->9->82", - "default-mobile.handlebars->9->250" + "default.handlebars->23->1154", + "default.handlebars->23->633" ] }, { @@ -4487,10 +4487,10 @@ "nl": "Aflopend op datum", "pt": "Descrescente por data", "xloc": [ - "default.handlebars->container->column_l->p5->p5toolbar->1->2->p5filesubhead->1->p5sortdropdown->11", - "default.handlebars->container->column_l->p13->p13toolbar->1->4->1->1->p13sortdropdown->11", + "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->4->1->1->1->0->3->p13sortdropdown->11", "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->2->1->1->1->0->3->p5sortdropdown->11", - "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->4->1->1->1->0->3->p13sortdropdown->11" + "default.handlebars->container->column_l->p13->p13toolbar->1->4->1->1->p13sortdropdown->11", + "default.handlebars->container->column_l->p5->p5toolbar->1->2->p5filesubhead->1->p5sortdropdown->11" ] }, { @@ -4501,10 +4501,10 @@ "nl": "Aflopend op naam", "pt": "Decrescente por nome", "xloc": [ - "default.handlebars->container->column_l->p5->p5toolbar->1->2->p5filesubhead->1->p5sortdropdown->7", - "default.handlebars->container->column_l->p13->p13toolbar->1->4->1->1->p13sortdropdown->7", + "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->4->1->1->1->0->3->p13sortdropdown->7", "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->2->1->1->1->0->3->p5sortdropdown->7", - "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->4->1->1->1->0->3->p13sortdropdown->7" + "default.handlebars->container->column_l->p13->p13toolbar->1->4->1->1->p13sortdropdown->7", + "default.handlebars->container->column_l->p5->p5toolbar->1->2->p5filesubhead->1->p5sortdropdown->7" ] }, { @@ -4515,10 +4515,10 @@ "nl": "Aflopend op grootte", "pt": "Decrescente por tamanho", "xloc": [ - "default.handlebars->container->column_l->p5->p5toolbar->1->2->p5filesubhead->1->p5sortdropdown->9", - "default.handlebars->container->column_l->p13->p13toolbar->1->4->1->1->p13sortdropdown->9", + "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->4->1->1->1->0->3->p13sortdropdown->9", "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->2->1->1->1->0->3->p5sortdropdown->9", - "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->4->1->1->1->0->3->p13sortdropdown->9" + "default.handlebars->container->column_l->p13->p13toolbar->1->4->1->1->p13sortdropdown->9", + "default.handlebars->container->column_l->p5->p5toolbar->1->2->p5filesubhead->1->p5sortdropdown->9" ] }, { @@ -4529,24 +4529,24 @@ "nl": "Omschrijving", "pt": "Descrição", "xloc": [ - "default.handlebars->container->column_l->p42->p42tbl->1->0->3", - "default.handlebars->23->95", - "default.handlebars->23->440", - "default.handlebars->23->441", - "default.handlebars->23->575", - "default.handlebars->23->934", - "default.handlebars->23->958", + "default-mobile.handlebars->9->141", + "default-mobile.handlebars->9->142", + "default-mobile.handlebars->9->224", + "default-mobile.handlebars->9->277", + "default-mobile.handlebars->9->290", + "default-mobile.handlebars->9->60", "default.handlebars->23->1042", "default.handlebars->23->1251", "default.handlebars->23->1256", "default.handlebars->23->1258", "default.handlebars->23->1281", - "default-mobile.handlebars->9->60", - "default-mobile.handlebars->9->141", - "default-mobile.handlebars->9->142", - "default-mobile.handlebars->9->224", - "default-mobile.handlebars->9->277", - "default-mobile.handlebars->9->290" + "default.handlebars->23->440", + "default.handlebars->23->441", + "default.handlebars->23->575", + "default.handlebars->23->934", + "default.handlebars->23->95", + "default.handlebars->23->958", + "default.handlebars->container->column_l->p42->p42tbl->1->0->3" ] }, { @@ -4568,10 +4568,10 @@ "nl": "Bureaublad", "pt": "Área de Trabalho", "xloc": [ - "default.handlebars->contextMenu->cxdesktop", - "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop", + "default.handlebars->23->1044", "default.handlebars->23->409", - "default.handlebars->23->1044" + "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop", + "default.handlebars->contextMenu->cxdesktop" ] }, { @@ -4637,8 +4637,8 @@ "nl": "Bureaubladen", "pt": "Áreas de trabalho", "xloc": [ - "default.handlebars->container->column_l->p1->p1title->devListToolbarViewIcons", - "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarView->viewselect->5" + "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarView->viewselect->5", + "default.handlebars->container->column_l->p1->p1title->devListToolbarViewIcons" ] }, { @@ -4682,8 +4682,8 @@ "nl": "Apparaatactie", "pt": "Ação do dispositivo", "xloc": [ - "default.handlebars->23->531", - "default-mobile.handlebars->9->211" + "default-mobile.handlebars->9->211", + "default.handlebars->23->531" ] }, { @@ -4706,8 +4706,8 @@ "nl": "Apparaatgroep gebruiker", "pt": "Usuário do grupo de dispositivos", "xloc": [ - "default.handlebars->23->1111", - "default-mobile.handlebars->9->331" + "default-mobile.handlebars->9->331", + "default.handlebars->23->1111" ] }, { @@ -4718,12 +4718,12 @@ "nl": "Apparaatgroepen", "pt": "Grupos de dispositivos", "xloc": [ - "default.handlebars->container->column_l->p2->9", + "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->3", "default.handlebars->23->1247", "default.handlebars->23->1260", "default.handlebars->23->1315", "default.handlebars->23->1388", - "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->3" + "default.handlebars->container->column_l->p2->9" ] }, { @@ -4745,9 +4745,9 @@ "nl": "Apparaat naam", "pt": "Nome do Dispositivo", "xloc": [ + "default-mobile.handlebars->9->222", "default.handlebars->23->238", "default.handlebars->23->573", - "default-mobile.handlebars->9->222", "player.htm->3->9" ] }, @@ -4781,8 +4781,8 @@ "nl": "Apparaat verbindingen.", "pt": "Conexões de dispositivos.", "xloc": [ - "default.handlebars->23->902", - "default.handlebars->23->1115" + "default.handlebars->23->1115", + "default.handlebars->23->902" ] }, { @@ -4793,8 +4793,8 @@ "nl": "Apparaat verbroken.", "pt": "Desconexões de dispositivos.", "xloc": [ - "default.handlebars->23->903", - "default.handlebars->23->1116" + "default.handlebars->23->1116", + "default.handlebars->23->903" ] }, { @@ -4827,8 +4827,8 @@ "nl": "Apparaat is in slaapstand (S4)", "pt": "O dispositivo está hibernando (S4)", "xloc": [ - "default.handlebars->23->367", - "default-mobile.handlebars->9->118" + "default-mobile.handlebars->9->118", + "default.handlebars->23->367" ] }, { @@ -4839,8 +4839,8 @@ "nl": "Apparaat bevindt zich in diepe slaapstand (S3)", "pt": "O dispositivo está no estado de sono profundo (S3)", "xloc": [ - "default.handlebars->23->366", - "default-mobile.handlebars->9->117" + "default-mobile.handlebars->9->117", + "default.handlebars->23->366" ] }, { @@ -4884,8 +4884,8 @@ "nl": "Apparaat bevindt zich in slaapstand (S1)", "pt": "O dispositivo está no estado de suspensão (S1)", "xloc": [ - "default.handlebars->23->364", - "default-mobile.handlebars->9->115" + "default-mobile.handlebars->9->115", + "default.handlebars->23->364" ] }, { @@ -4907,8 +4907,8 @@ "nl": "Apparaat bevindt zich in slaapstand (S2)", "pt": "O dispositivo está no estado de suspensão (S2)", "xloc": [ - "default.handlebars->23->365", - "default-mobile.handlebars->9->116" + "default-mobile.handlebars->9->116", + "default.handlebars->23->365" ] }, { @@ -4930,8 +4930,8 @@ "nl": "Apparaat is uitgeschakeld (S5)", "pt": "O dispositivo está no estado soft-off (S5)", "xloc": [ - "default.handlebars->23->368", - "default-mobile.handlebars->9->119" + "default-mobile.handlebars->9->119", + "default.handlebars->23->368" ] }, { @@ -4942,8 +4942,8 @@ "nl": "Apparaat is ingeschakeld", "pt": "O dispositivo está ligado", "xloc": [ - "default.handlebars->23->363", - "default-mobile.handlebars->9->114" + "default-mobile.handlebars->9->114", + "default.handlebars->23->363" ] }, { @@ -4965,8 +4965,8 @@ "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", "xloc": [ - "default.handlebars->23->369", - "default-mobile.handlebars->9->120" + "default-mobile.handlebars->9->120", + "default.handlebars->23->369" ] }, { @@ -5010,12 +5010,12 @@ "nl": "Verbreken", "pt": "Desconectar", "xloc": [ - "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->disconnectbutton1span", - "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->disconnectbutton2span", + "default-mobile.handlebars->9->237", + "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3", "default.handlebars->23->623", "default.handlebars->23->978", - "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3", - "default-mobile.handlebars->9->237" + "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->disconnectbutton1span", + "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->disconnectbutton2span" ] }, { @@ -5038,17 +5038,17 @@ "nl": "Verbroken", "pt": "Desconectado", "xloc": [ - "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->deskstatus", - "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->termstatus", - "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3->p13Status", - "default.handlebars->23->8", + "default-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->23->193", "default.handlebars->23->210", "default.handlebars->23->213", "default.handlebars->23->219", - "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3->deskstatus", - "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3->p13Status", - "default-mobile.handlebars->9->1" + "default.handlebars->23->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" ] }, { @@ -5101,8 +5101,8 @@ "nl": "Heb je nog geen account?", "pt": "Não possui uma conta?", "xloc": [ - "login.handlebars->container->column_l->centralTable->1->0->logincell->loginpanel->1->newAccountDiv", - "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->loginpanel->1->newAccountDiv" + "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->loginpanel->1->newAccountDiv", + "login.handlebars->container->column_l->centralTable->1->0->logincell->loginpanel->1->newAccountDiv" ] }, { @@ -5148,8 +5148,8 @@ "nl": "Download gebeurtenissen", "pt": "Download de Eventos", "xloc": [ - "default.handlebars->container->column_l->p3->3->1->0->3->3", "default.handlebars->container->column_l->p16->3->1->0->5->3", + "default.handlebars->container->column_l->p3->3->1->0->3->3", "default.handlebars->container->column_l->p31->3->1->0->5->3" ] }, @@ -5161,8 +5161,8 @@ "nl": "Download Bestand", "pt": "⇬ Fazer download do arquivo", "xloc": [ - "default.handlebars->23->652", - "default-mobile.handlebars->9->270" + "default-mobile.handlebars->9->270", + "default.handlebars->23->652" ] }, { @@ -5304,8 +5304,8 @@ "nl": "Download de software hier", "pt": "Faça o download do software aqui", "xloc": [ - "agentinvite.handlebars->container->column_l->5->wintab64->3->win64url", - "agentinvite.handlebars->container->column_l->5->wintab32->3->win32url" + "agentinvite.handlebars->container->column_l->5->wintab32->3->win32url", + "agentinvite.handlebars->container->column_l->5->wintab64->3->win64url" ] }, { @@ -5464,8 +5464,8 @@ "nl": "Bewerk apparaat", "pt": "Editar dispositivo", "xloc": [ - "default.handlebars->23->578", - "default-mobile.handlebars->9->227" + "default-mobile.handlebars->9->227", + "default.handlebars->23->578" ] }, { @@ -5476,12 +5476,12 @@ "nl": "Bewerk apparaatgroep", "pt": "Editar grupo de dispositivos", "xloc": [ - "default.handlebars->23->1043", - "default.handlebars->23->1067", - "default.handlebars->23->1090", "default-mobile.handlebars->9->291", "default-mobile.handlebars->9->293", - "default-mobile.handlebars->9->311" + "default-mobile.handlebars->9->311", + "default.handlebars->23->1043", + "default.handlebars->23->1067", + "default.handlebars->23->1090" ] }, { @@ -5522,8 +5522,8 @@ "nl": "Apparaatnotities bewerken", "pt": "Editar notas do dispositivo", "xloc": [ - "default.handlebars->23->1079", - "default-mobile.handlebars->9->305" + "default-mobile.handlebars->9->305", + "default.handlebars->23->1079" ] }, { @@ -5534,10 +5534,10 @@ "nl": "Bewerk Intel® AMT-gegevens", "pt": "Editar Intel & reg; Credenciais AMT", "xloc": [ + "default-mobile.handlebars->9->217", "default.handlebars->23->455", "default.handlebars->23->458", - "default.handlebars->23->540", - "default-mobile.handlebars->9->217" + "default.handlebars->23->540" ] }, { @@ -5549,8 +5549,8 @@ "nl": "Notities bewerken", "pt": "Editar notas", "xloc": [ - "default.handlebars->23->1097", - "default-mobile.handlebars->9->318" + "default-mobile.handlebars->9->318", + "default.handlebars->23->1097" ] }, { @@ -5591,12 +5591,12 @@ "nl": "E-mail", "pt": "Email", "xloc": [ - "default.handlebars->23->283", + "default-mobile.handlebars->9->37", "default.handlebars->23->1220", "default.handlebars->23->1302", "default.handlebars->23->1303", "default.handlebars->23->1331", - "default-mobile.handlebars->9->37" + "default.handlebars->23->283" ] }, { @@ -5607,8 +5607,8 @@ "nl": "E-mailadres wijzigen", "pt": "Alteração de endereço de email", "xloc": [ - "default.handlebars->23->910", - "default-mobile.handlebars->9->38" + "default-mobile.handlebars->9->38", + "default.handlebars->23->910" ] }, { @@ -5619,8 +5619,8 @@ "nl": "E-mail verificatie", "pt": "verificação de e-mail", "xloc": [ - "default.handlebars->23->908", - "default-mobile.handlebars->9->36" + "default-mobile.handlebars->9->36", + "default.handlebars->23->908" ] }, { @@ -5664,12 +5664,12 @@ "nl": "E-mail:", "pt": "Email:", "xloc": [ - "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->2->nuEmail", - "login.handlebars->container->column_l->centralTable->1->0->logincell->resetpanel->1->7->1->0->1", - "login.handlebars->5->17", + "login-mobile.handlebars->5->17", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->2->1", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->resetpanel->1->7->1->0->1", - "login-mobile.handlebars->5->17" + "login.handlebars->5->17", + "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->2->nuEmail", + "login.handlebars->container->column_l->centralTable->1->0->logincell->resetpanel->1->7->1->0->1" ] }, { @@ -5904,8 +5904,8 @@ "nl": "Voer het token voor het maken van een account in", "pt": "Insira o token de criação da conta", "xloc": [ - "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1", - "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1" + "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1", + "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1" ] }, { @@ -5994,9 +5994,9 @@ "nl": "Gebeurtenissen", "pt": "Eventos", "xloc": [ - "default.handlebars->contextMenu->cxevents", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevEvents", - "default.handlebars->container->topbar->1->1->UserSubMenuSpan->UserSubMenu->1->0->UserEvents" + "default.handlebars->container->topbar->1->1->UserSubMenuSpan->UserSubMenu->1->0->UserEvents", + "default.handlebars->contextMenu->cxevents" ] }, { @@ -6019,8 +6019,8 @@ "ja": "このメールアドレスを持つ既存のアカウント。", "nl": "Bestaand account met dit e-mailadres.", "xloc": [ - "login.handlebars->5->4", - "login-mobile.handlebars->5->4" + "login-mobile.handlebars->5->4", + "login.handlebars->5->4" ] }, { @@ -6110,8 +6110,8 @@ "nl": "Snel", "pt": "Rápido", "xloc": [ - "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->7->d7framelimiter->1", - "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->7->d7framelimiter->1" + "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->7->d7framelimiter->1", + "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->7->d7framelimiter->1" ] }, { @@ -6145,8 +6145,8 @@ "nl": "Bestandsberwerker", "pt": "Editor de Arquivos", "xloc": [ - "default.handlebars->23->637", - "default-mobile.handlebars->9->254" + "default-mobile.handlebars->9->254", + "default.handlebars->23->637" ] }, { @@ -6181,9 +6181,9 @@ "nl": "Bestanden", "pt": "Arquivos", "xloc": [ - "default.handlebars->contextMenu->cxfiles", + "default.handlebars->23->1051", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles", - "default.handlebars->23->1051" + "default.handlebars->contextMenu->cxfiles" ] }, { @@ -6281,8 +6281,8 @@ "nl": "Map", "pt": "Pasta", "xloc": [ - "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1", - "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1" + "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" ] }, { @@ -6306,8 +6306,8 @@ "nl": "Wachtwoord vergeten?", "pt": "Esqueceu a senha?", "xloc": [ - "login.handlebars->5->18", - "login-mobile.handlebars->5->18" + "login-mobile.handlebars->5->18", + "login.handlebars->5->18" ] }, { @@ -6364,8 +6364,8 @@ "nl": "FreeBSD x86-64", "pt": "FreeBSD x86-64", "xloc": [ - "default.handlebars->23->43", - "default-mobile.handlebars->9->173" + "default-mobile.handlebars->9->173", + "default.handlebars->23->43" ] }, { @@ -6485,13 +6485,13 @@ "nl": "Volledige beheerder", "pt": "Administrador completo", "xloc": [ - "default.handlebars->23->943", - "default.handlebars->23->1066", - "default.handlebars->23->1235", - "default-mobile.handlebars->9->64", "default-mobile.handlebars->9->283", "default-mobile.handlebars->9->292", - "default-mobile.handlebars->9->310" + "default-mobile.handlebars->9->310", + "default-mobile.handlebars->9->64", + "default.handlebars->23->1066", + "default.handlebars->23->1235", + "default.handlebars->23->943" ] }, { @@ -6600,8 +6600,8 @@ "xloc": [ "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDev", "default.handlebars->container->topbar->1->1->MeshSubMenuSpan->MeshSubMenu->1->0->MeshGeneral", - "default.handlebars->container->topbar->1->1->UserSubMenuSpan->UserSubMenu->1->0->UserGeneral", - "default.handlebars->container->topbar->1->1->ServerSubMenuSpan->ServerSubMenu->1->0->ServerGeneral" + "default.handlebars->container->topbar->1->1->ServerSubMenuSpan->ServerSubMenu->1->0->ServerGeneral", + "default.handlebars->container->topbar->1->1->UserSubMenuSpan->UserSubMenu->1->0->UserGeneral" ] }, { @@ -6740,8 +6740,8 @@ "nl": "Begin hier!", "pt": "Comece aqui!", "xloc": [ - "default.handlebars->container->column_l->p2->p2noMeshFound->p2createMeshLink2->1->0", - "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3noMeshFound->p3createMeshLink2->1->0" + "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3noMeshFound->p3createMeshLink2->1->0", + "default.handlebars->container->column_l->p2->p2noMeshFound->p2createMeshLink2->1->0" ] }, { @@ -6753,8 +6753,8 @@ "nl": "Ga naar hoofdsite", "pt": "Ir para o site principal", "xloc": [ - "error404.handlebars->container->column_l->5->0->0", - "error404-mobile.handlebars->container->page_content->column_l->5->0->0" + "error404-mobile.handlebars->container->page_content->column_l->5->0->0", + "error404.handlebars->container->column_l->5->0->0" ] }, { @@ -6778,10 +6778,10 @@ "nl": "Goed wachtwoord", "pt": "Boa senha", "xloc": [ - "login.handlebars->5->21", - "login.handlebars->5->25", "login-mobile.handlebars->5->21", - "login-mobile.handlebars->5->25" + "login-mobile.handlebars->5->25", + "login.handlebars->5->21", + "login.handlebars->5->25" ] }, { @@ -6805,9 +6805,9 @@ "nl": "Groep", "pt": "Grupo", "xloc": [ - "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->1", + "default-mobile.handlebars->9->134", "default.handlebars->23->433", - "default-mobile.handlebars->9->134" + "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->1" ] }, { @@ -6819,8 +6819,8 @@ "nl": "Groepsactie", "pt": "Ações do grupo", "xloc": [ - "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar", - "default.handlebars->23->393" + "default.handlebars->23->393", + "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar" ] }, { @@ -6869,8 +6869,8 @@ "en": "Groups", "nl": "Groepen", "xloc": [ - "default.handlebars->container->topbar->1->1->UsersSubMenuSpan->UsersSubMenu->1->0->UsersGroups", - "default.handlebars->23->1179" + "default.handlebars->23->1179", + "default.handlebars->container->topbar->1->1->UsersSubMenuSpan->UsersSubMenu->1->0->UsersGroups" ] }, { @@ -6894,9 +6894,9 @@ "nl": "HW verbinden", "pt": "Conectar HW", "xloc": [ + "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1hspan", - "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2hspan", - "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3" + "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2hspan" ] }, { @@ -6981,10 +6981,10 @@ "nl": "Slaapstand", "pt": "Hibernando", "xloc": [ - "default.handlebars->23->5", - "default.handlebars->23->358", "default-mobile.handlebars->9->104", - "default-mobile.handlebars->9->111" + "default-mobile.handlebars->9->111", + "default.handlebars->23->358", + "default.handlebars->23->5" ] }, { @@ -7006,8 +7006,8 @@ "ja": "お待ちください、送信されたメールをリセットします。", "nl": "even wachten, reset e-mail verzonden.", "xloc": [ - "login.handlebars->5->1", - "login-mobile.handlebars->5->1" + "login-mobile.handlebars->5->1", + "login.handlebars->5->1" ] }, { @@ -7018,8 +7018,8 @@ "nl": "1 item vasthouden voor kopiëren", "pt": "Mantendo 1 entrada para cópia", "xloc": [ - "default.handlebars->23->646", - "default-mobile.handlebars->9->263" + "default-mobile.handlebars->9->263", + "default.handlebars->23->646" ] }, { @@ -7030,8 +7030,8 @@ "nl": "1 item vasthouden voor verplaatsen", "pt": "Segurando 1 entrada para mover", "xloc": [ - "default.handlebars->23->650", - "default-mobile.handlebars->9->267" + "default-mobile.handlebars->9->267", + "default.handlebars->23->650" ] }, { @@ -7042,8 +7042,8 @@ "nl": "{0} items vasthouden voor kopiëren", "pt": "Mantendo {0} entradas para cópia", "xloc": [ - "default.handlebars->23->644", - "default-mobile.handlebars->9->261" + "default-mobile.handlebars->9->261", + "default.handlebars->23->644" ] }, { @@ -7054,8 +7054,8 @@ "nl": "{0} items vasthouden voor verplaatsen", "pt": "Manter {0} entradas para mover", "xloc": [ - "default.handlebars->23->648", - "default-mobile.handlebars->9->265" + "default-mobile.handlebars->9->265", + "default.handlebars->23->648" ] }, { @@ -7066,8 +7066,8 @@ "nl": "Houd {0} item {1} vast voor {2}", "pt": "Mantendo {0} entrada {1} para {2}", "xloc": [ - "default.handlebars->23->1161", - "default-mobile.handlebars->9->88" + "default-mobile.handlebars->9->88", + "default.handlebars->23->1161" ] }, { @@ -7078,15 +7078,15 @@ "nl": "Hostnaam", "pt": "Hostname", "xloc": [ + "default-mobile.handlebars->9->136", + "default-mobile.handlebars->9->137", + "default-mobile.handlebars->9->139", + "default-mobile.handlebars->9->223", "default.handlebars->23->239", "default.handlebars->23->435", "default.handlebars->23->436", "default.handlebars->23->438", - "default.handlebars->23->574", - "default-mobile.handlebars->9->136", - "default-mobile.handlebars->9->137", - "default-mobile.handlebars->9->139", - "default-mobile.handlebars->9->223" + "default.handlebars->23->574" ] }, { @@ -7129,8 +7129,8 @@ "ja": "IPアドレスがブロックされています。しばらくしてからもう一度お試しください。", "nl": "IP-adres geblokkeerd, probeer het later opnieuw.", "xloc": [ - "login.handlebars->5->16", - "login-mobile.handlebars->5->16" + "login-mobile.handlebars->5->16", + "login.handlebars->5->16" ] }, { @@ -7187,8 +7187,8 @@ "nl": "Pictogram selectie", "pt": "Seleção de ícone", "xloc": [ - "default.handlebars->23->572", - "default-mobile.handlebars->9->221" + "default-mobile.handlebars->9->221", + "default.handlebars->23->572" ] }, { @@ -7257,8 +7257,8 @@ "nl": "Invoer", "pt": "Entrada", "xloc": [ - "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3->9->DeskControlSpan", - "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea4->1->3->11->DeskControlSpan" + "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea4->1->3->11->DeskControlSpan", + "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3->9->DeskControlSpan" ] }, { @@ -7336,8 +7336,8 @@ "nl": "Intel (F10 = ESC+[OM)", "pt": "Intel (F10 = ESC+[OM)", "xloc": [ - "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons", - "default.handlebars->23->616" + "default.handlebars->23->616", + "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons" ] }, { @@ -7463,14 +7463,14 @@ "nl": "Intel® AMT", "pt": "Intel® AMT", "xloc": [ + "default-mobile.handlebars->9->123", + "default-mobile.handlebars->9->187", + "default-mobile.handlebars->9->192", "default.handlebars->23->411", "default.handlebars->23->461", "default.handlebars->23->477", "default.handlebars->23->979", - "default.handlebars->23->987", - "default-mobile.handlebars->9->123", - "default-mobile.handlebars->9->187", - "default-mobile.handlebars->9->192" + "default.handlebars->23->987" ] }, { @@ -7481,8 +7481,8 @@ "nl": "Intel® AMT CIRA", "pt": "Intel® AMT CIRA", "xloc": [ - "default.handlebars->23->475", - "default-mobile.handlebars->9->191" + "default-mobile.handlebars->9->191", + "default.handlebars->23->475" ] }, { @@ -7506,8 +7506,8 @@ "nl": "Intel® AMT verbonden", "pt": "Intel® AMT conectado", "xloc": [ - "default.handlebars->23->12", - "default-mobile.handlebars->9->5" + "default-mobile.handlebars->9->5", + "default.handlebars->23->12" ] }, { @@ -7574,9 +7574,9 @@ "nl": "Intel® AMT verbonden", "pt": "Intel® AMT conectado", "xloc": [ + "default-mobile.handlebars->9->201", "default.handlebars->23->510", - "default.handlebars->23->511", - "default-mobile.handlebars->9->201" + "default.handlebars->23->511" ] }, { @@ -7587,8 +7587,8 @@ "nl": "Intel® AMT desktop- en seriële gebeurtenissen.", "pt": "Intel® Área de trabalho AMT e eventos seriais.", "xloc": [ - "default.handlebars->23->904", - "default.handlebars->23->1117" + "default.handlebars->23->1117", + "default.handlebars->23->904" ] }, { @@ -7599,9 +7599,9 @@ "nl": "Intel® AMT gedetecteerd", "pt": "Intel® AMT detectado", "xloc": [ + "default-mobile.handlebars->9->202", "default.handlebars->23->512", - "default.handlebars->23->513", - "default-mobile.handlebars->9->202" + "default.handlebars->23->513" ] }, { @@ -7646,9 +7646,9 @@ "nl": "Alleen Intel® AMT, geen agent", "pt": "Intel® Apenas AMT, nenhum agente", "xloc": [ + "default-mobile.handlebars->9->274", "default.handlebars->23->933", - "default.handlebars->23->955", - "default-mobile.handlebars->9->274" + "default.handlebars->23->955" ] }, { @@ -7670,8 +7670,8 @@ "nl": "Intel® ME", "pt": "Intel® ME", "xloc": [ - "default.handlebars->23->459", - "default-mobile.handlebars->9->186" + "default-mobile.handlebars->9->186", + "default.handlebars->23->459" ] }, { @@ -7682,8 +7682,8 @@ "nl": "Intel® SM", "pt": "Intel® SM", "xloc": [ - "default.handlebars->23->463", - "default-mobile.handlebars->9->188" + "default-mobile.handlebars->9->188", + "default.handlebars->23->463" ] }, { @@ -7724,8 +7724,8 @@ "nl": "Intel® AMT Hardware KVM", "pt": "Intel® AMT Hardware KVM", "xloc": [ - "default.handlebars->container->dialog->dialogBody->dialog7->d7amtkvm->1", - "default-mobile.handlebars->dialog->3->dialog7->d7amtkvm->1" + "default-mobile.handlebars->dialog->3->dialog7->d7amtkvm->1", + "default.handlebars->container->dialog->dialogBody->dialog7->d7amtkvm->1" ] }, { @@ -7861,8 +7861,8 @@ "ja": "アカウント作成トークンが無効です。", "nl": "Ongeldig token voor het maken van een account.", "xloc": [ - "login.handlebars->5->5", - "login-mobile.handlebars->5->5" + "login-mobile.handlebars->5->5", + "login.handlebars->5->5" ] }, { @@ -7872,8 +7872,8 @@ "ja": "無効なメール。", "nl": "Ongeldige e-mail.", "xloc": [ - "login.handlebars->5->8", - "login-mobile.handlebars->5->8" + "login-mobile.handlebars->5->8", + "login.handlebars->5->8" ] }, { @@ -7883,8 +7883,8 @@ "ja": "トークンが無効です。もう一度お試しください。", "nl": "Ongeldig token, probeer het opnieuw.", "xloc": [ - "login.handlebars->5->10", - "login-mobile.handlebars->5->10" + "login-mobile.handlebars->5->10", + "login.handlebars->5->10" ] }, { @@ -7919,9 +7919,9 @@ "nl": "Uitnodigen", "pt": "Convite", "xloc": [ + "default.handlebars->23->1003", "default.handlebars->23->236", - "default.handlebars->23->313", - "default.handlebars->23->1003" + "default.handlebars->23->313" ] }, { @@ -7945,8 +7945,8 @@ "nl": "Nodig iemand uit om de mesh-agent op deze mesh te installeren.", "pt": "Convide alguém para instalar o agente de malha nessa malha.", "xloc": [ - "default.handlebars->23->235", - "default.handlebars->23->1002" + "default.handlebars->23->1002", + "default.handlebars->23->235" ] }, { @@ -8228,8 +8228,8 @@ "nl": "Laatste 1000", "pt": "Últimos 1000", "xloc": [ - "default.handlebars->container->column_l->p3->3->1->0->3->p3limitdropdown->9", "default.handlebars->container->column_l->p16->3->1->0->5->p16limitdropdown->9", + "default.handlebars->container->column_l->p3->3->1->0->3->p3limitdropdown->9", "default.handlebars->container->column_l->p31->3->1->0->5->p31limitdropdown->9", "default.handlebars->container->column_l->p41->3->1->p41limitdropdown->7" ] @@ -8243,8 +8243,8 @@ "nl": "Laatste 120", "pt": "Últimos 120", "xloc": [ - "default.handlebars->container->column_l->p3->3->1->0->3->p3limitdropdown->3", "default.handlebars->container->column_l->p16->3->1->0->5->p16limitdropdown->3", + "default.handlebars->container->column_l->p3->3->1->0->3->p3limitdropdown->3", "default.handlebars->container->column_l->p31->3->1->0->5->p31limitdropdown->3" ] }, @@ -8257,8 +8257,8 @@ "nl": "Laatste 250", "pt": "Últimos 250", "xloc": [ - "default.handlebars->container->column_l->p3->3->1->0->3->p3limitdropdown->5", "default.handlebars->container->column_l->p16->3->1->0->5->p16limitdropdown->5", + "default.handlebars->container->column_l->p3->3->1->0->3->p3limitdropdown->5", "default.handlebars->container->column_l->p31->3->1->0->5->p31limitdropdown->5", "default.handlebars->container->column_l->p41->3->1->p41limitdropdown->3" ] @@ -8296,8 +8296,8 @@ "nl": "Laatste 500", "pt": "Últimos 500", "xloc": [ - "default.handlebars->container->column_l->p3->3->1->0->3->p3limitdropdown->7", "default.handlebars->container->column_l->p16->3->1->0->5->p16limitdropdown->7", + "default.handlebars->container->column_l->p3->3->1->0->3->p3limitdropdown->7", "default.handlebars->container->column_l->p31->3->1->0->5->p31limitdropdown->7", "default.handlebars->container->column_l->p41->3->1->p41limitdropdown->5" ] @@ -8311,8 +8311,8 @@ "nl": "Laatste 60", "pt": "Últimos 60", "xloc": [ - "default.handlebars->container->column_l->p3->3->1->0->3->p3limitdropdown->1", "default.handlebars->container->column_l->p16->3->1->0->5->p16limitdropdown->1", + "default.handlebars->container->column_l->p3->3->1->0->3->p3limitdropdown->1", "default.handlebars->container->column_l->p31->3->1->0->5->p31limitdropdown->1" ] }, @@ -8434,8 +8434,8 @@ "nl": "Laatst gezien", "pt": "Visto pela última vez:", "xloc": [ - "default.handlebars->23->83", - "default.handlebars->23->516" + "default.handlebars->23->516", + "default.handlebars->23->83" ] }, { @@ -8543,8 +8543,8 @@ "nl": "Beperkte invoer", "pt": "Entrada limitada", "xloc": [ - "default.handlebars->23->1102", - "default-mobile.handlebars->9->323" + "default-mobile.handlebars->9->323", + "default.handlebars->23->1102" ] }, { @@ -8555,8 +8555,8 @@ "nl": "Alleen beperkte invoer", "pt": "Somente entrada limitada", "xloc": [ - "default.handlebars->23->1072", - "default-mobile.handlebars->9->298" + "default-mobile.handlebars->9->298", + "default.handlebars->23->1072" ] }, { @@ -8568,9 +8568,9 @@ "nl": "Link", "pt": "Ligação", "xloc": [ - "default.handlebars->container->column_l->p42->p42tbl->1->0->4", + "default-mobile.handlebars->9->68", "default.handlebars->23->1133", - "default-mobile.handlebars->9->68" + "default.handlebars->container->column_l->p42->p42tbl->1->0->4" ] }, { @@ -8628,8 +8628,8 @@ "nl": "Linux 32bit", "pt": "Linux 32 bits", "xloc": [ - "default.handlebars->23->18", - "default-mobile.handlebars->9->148" + "default-mobile.handlebars->9->148", + "default.handlebars->23->18" ] }, { @@ -8640,8 +8640,8 @@ "nl": "Linux 64bit", "pt": "Linux 64 bits", "xloc": [ - "default.handlebars->23->19", - "default-mobile.handlebars->9->149" + "default-mobile.handlebars->9->149", + "default.handlebars->23->19" ] }, { @@ -8652,8 +8652,8 @@ "nl": "Linux ARM", "pt": "Linux ARM", "xloc": [ - "default.handlebars->23->23", - "default-mobile.handlebars->9->153" + "default-mobile.handlebars->9->153", + "default.handlebars->23->23" ] }, { @@ -8675,8 +8675,8 @@ "nl": "Linux NoKVM x86-32bit", "pt": "Linux NoKVM x86-32 bits", "xloc": [ - "default.handlebars->23->32", - "default-mobile.handlebars->9->162" + "default-mobile.handlebars->9->162", + "default.handlebars->23->32" ] }, { @@ -8687,8 +8687,8 @@ "nl": "Linux NoKVM x86-64bit", "pt": "Linux NoKVM x86-64 bits", "xloc": [ - "default.handlebars->23->33", - "default-mobile.handlebars->9->163" + "default-mobile.handlebars->9->163", + "default.handlebars->23->33" ] }, { @@ -8699,8 +8699,8 @@ "nl": "Linux Poky x86-32bit", "pt": "Linux Poky x86-32 bits", "xloc": [ - "default.handlebars->23->28", - "default-mobile.handlebars->9->158" + "default-mobile.handlebars->9->158", + "default.handlebars->23->28" ] }, { @@ -8711,8 +8711,8 @@ "nl": "Linux Poky x86-64bit", "pt": "Linux Poky x86-64 bits", "xloc": [ - "default.handlebars->23->31", - "default-mobile.handlebars->9->161" + "default-mobile.handlebars->9->161", + "default.handlebars->23->31" ] }, { @@ -8757,8 +8757,8 @@ "nl": "Lijst", "pt": "Lista", "xloc": [ - "default.handlebars->container->column_l->p1->p1title->devListToolbarViewIcons", - "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarView->viewselect->3" + "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarView->viewselect->3", + "default.handlebars->container->column_l->p1->p1title->devListToolbarViewIcons" ] }, { @@ -8782,11 +8782,11 @@ "nl": "Laden...", "pt": "Carregando...", "xloc": [ + "default-mobile.handlebars->9->31", "default.handlebars->23->561", "default.handlebars->23->684", "default.handlebars->23->950", - "default.handlebars->23->952", - "default-mobile.handlebars->9->31" + "default.handlebars->23->952" ] }, { @@ -8830,8 +8830,8 @@ "nl": "Lokalisatie instellingen", "pt": "Configurações de localização", "xloc": [ - "default.handlebars->container->column_l->p2->p2AccountActions->3->5", - "default.handlebars->23->899" + "default.handlebars->23->899", + "default.handlebars->container->column_l->p2->p2AccountActions->3->5" ] }, { @@ -8911,10 +8911,10 @@ "nl": "Inloggen", "pt": "Entrar", "xloc": [ - "login.handlebars->container->column_l->centralTable->1->0->logincell->loginpanel->1->5->1", - "login.handlebars->container->column_l->centralTable->1->0->logincell->loginpanel->1->7->1->4->3", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->loginpanel->1->5->1", - "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->loginpanel->1->7->1->4->3" + "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->loginpanel->1->7->1->4->3", + "login.handlebars->container->column_l->centralTable->1->0->logincell->loginpanel->1->5->1", + "login.handlebars->container->column_l->centralTable->1->0->logincell->loginpanel->1->7->1->4->3" ] }, { @@ -8936,10 +8936,10 @@ "nl": "Inloggen", "pt": "Entrar", "xloc": [ - "login.handlebars->container->column_l->centralTable->1->0->logincell->tokenpanel->1->7->1->4->1->1", - "login.handlebars->container->column_l->centralTable->1->0->logincell->resettokenpanel->1->5->1->2->1->1", + "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->resettokenpanel->1->5->1->2->1->1", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->1", - "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->resettokenpanel->1->5->1->2->1->1" + "login.handlebars->container->column_l->centralTable->1->0->logincell->resettokenpanel->1->5->1->2->1->1", + "login.handlebars->container->column_l->centralTable->1->0->logincell->tokenpanel->1->7->1->4->1->1" ] }, { @@ -8949,8 +8949,8 @@ "ja": "ログインに失敗しました。ユーザー名とパスワードを確認してください。", "nl": "Inloggen mislukt, controleer gebruikersnaam en wachtwoord.", "xloc": [ - "login.handlebars->5->14", - "login-mobile.handlebars->5->14" + "login-mobile.handlebars->5->14", + "login.handlebars->5->14" ] }, { @@ -8961,10 +8961,10 @@ "nl": "Inlog token:", "pt": "Token de logon:", "xloc": [ - "login.handlebars->container->column_l->centralTable->1->0->logincell->tokenpanel->1->7->1->0->1", - "login.handlebars->container->column_l->centralTable->1->0->logincell->resettokenpanel->1->5->1->0->1", + "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->resettokenpanel->1->5->1->0->1", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->0->1", - "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->resettokenpanel->1->5->1->0->1" + "login.handlebars->container->column_l->centralTable->1->0->logincell->resettokenpanel->1->5->1->0->1", + "login.handlebars->container->column_l->centralTable->1->0->logincell->tokenpanel->1->7->1->0->1" ] }, { @@ -8976,8 +8976,8 @@ "nl": "Uitloggen", "pt": "Sair", "xloc": [ - "default.handlebars->23->45", "default-mobile.handlebars->topMenu->logoutMenuOption->0->0", + "default.handlebars->23->45", "terms.handlebars->3->2" ] }, @@ -9013,8 +9013,8 @@ "nl": "MIPS", "pt": "MIPS", "xloc": [ - "default.handlebars->23->20", - "default-mobile.handlebars->9->150" + "default-mobile.handlebars->9->150", + "default.handlebars->23->20" ] }, { @@ -9038,14 +9038,14 @@ "nl": "MQTT", "pt": "MQTT", "xloc": [ - "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->3", + "default-mobile.handlebars->9->125", + "default-mobile.handlebars->9->194", "default.handlebars->23->192", "default.handlebars->23->379", "default.handlebars->23->481", "default.handlebars->23->671", "default.handlebars->23->672", - "default-mobile.handlebars->9->125", - "default-mobile.handlebars->9->194" + "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->3" ] }, { @@ -9078,8 +9078,8 @@ "nl": "MQTT-kanaal verbonden", "pt": "Canal MQTT conectado", "xloc": [ - "default.handlebars->23->515", - "default-mobile.handlebars->9->203" + "default-mobile.handlebars->9->203", + "default.handlebars->23->515" ] }, { @@ -9148,8 +9148,8 @@ "nl": "MacOS 32bit", "pt": "MacOS 32 bits", "xloc": [ - "default.handlebars->23->24", - "default-mobile.handlebars->9->154" + "default-mobile.handlebars->9->154", + "default.handlebars->23->24" ] }, { @@ -9160,8 +9160,8 @@ "nl": "MacOS 64bit", "pt": "MacOS 64 bits", "xloc": [ - "default.handlebars->23->29", - "default-mobile.handlebars->9->159" + "default-mobile.handlebars->9->159", + "default.handlebars->23->29" ] }, { @@ -9216,8 +9216,8 @@ "nl": "Beheer back-up codes", "pt": "Gerenciar códigos de backup", "xloc": [ - "default.handlebars->23->138", - "default-mobile.handlebars->9->29" + "default-mobile.handlebars->9->29", + "default.handlebars->23->138" ] }, { @@ -9228,10 +9228,10 @@ "nl": "Beheer apparaatgroep computers", "pt": "Gerenciar computadores do grupo de dispositivos", "xloc": [ - "default.handlebars->23->1069", - "default.handlebars->23->1092", "default-mobile.handlebars->9->295", - "default-mobile.handlebars->9->313" + "default-mobile.handlebars->9->313", + "default.handlebars->23->1069", + "default.handlebars->23->1092" ] }, { @@ -9242,10 +9242,10 @@ "nl": "Beheer apparaatgroep gebruikers", "pt": "Gerenciar usuários do grupo de dispositivos", "xloc": [ - "default.handlebars->23->1068", - "default.handlebars->23->1091", "default-mobile.handlebars->9->294", - "default-mobile.handlebars->9->312" + "default-mobile.handlebars->9->312", + "default.handlebars->23->1068", + "default.handlebars->23->1091" ] }, { @@ -9287,8 +9287,8 @@ "nl": "Beheer authenticator-app", "pt": "Gerenciar aplicativo autenticador", "xloc": [ - "default.handlebars->container->column_l->p2->p2AccountSecurity->3->manageAuthApp->1->0", - "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->3->manageAuthApp->0" + "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->3->manageAuthApp->0", + "default.handlebars->container->column_l->p2->p2AccountSecurity->3->manageAuthApp->1->0" ] }, { @@ -9299,8 +9299,8 @@ "nl": "Beheer back-up codes", "pt": "Gerenciar códigos de backup", "xloc": [ - "default.handlebars->container->column_l->p2->p2AccountSecurity->3->manageOtp->1->0", - "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->3->manageOtp->0" + "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->3->manageOtp->0", + "default.handlebars->container->column_l->p2->p2AccountSecurity->3->manageOtp->1->0" ] }, { @@ -9335,8 +9335,8 @@ "nl": "Beheerd met behulp van een software-agent", "pt": "Gerenciado usando um agente de software", "xloc": [ - "default.handlebars->23->956", - "default-mobile.handlebars->9->275" + "default-mobile.handlebars->9->275", + "default.handlebars->23->956" ] }, { @@ -9394,8 +9394,8 @@ "nl": "Kaart", "pt": "Mapa", "xloc": [ - "default.handlebars->container->column_l->p1->p1title->devListToolbarViewIcons", - "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarView->viewselect->viewselectmapoption" + "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarView->viewselect->viewselectmapoption", + "default.handlebars->container->column_l->p1->p1title->devListToolbarViewIcons" ] }, { @@ -9428,8 +9428,8 @@ "nl": "Maximale lengte van {0}", "pt": "Comprimento máximo de {0}", "xloc": [ - "login.handlebars->5->29", - "login-mobile.handlebars->5->29" + "login-mobile.handlebars->5->29", + "login.handlebars->5->29" ] }, { @@ -9441,9 +9441,9 @@ "nl": "Gemiddeld", "pt": "Médio", "xloc": [ + "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->7->d7framelimiter->3", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSize->sizeselect->3", - "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->7->d7framelimiter->3", - "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->7->d7framelimiter->3" + "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->7->d7framelimiter->3" ] }, { @@ -9467,9 +9467,9 @@ "nl": "Geheugen", "pt": "Memória", "xloc": [ - "default.handlebars->container->column_l->p40->3->1->p40type->3", + "default.handlebars->23->1398", "default.handlebars->23->75", - "default.handlebars->23->1398" + "default.handlebars->container->column_l->p40->3->1->p40type->3" ] }, { @@ -9480,14 +9480,14 @@ "nl": "Mesh Agent", "pt": "Mesh Agent", "xloc": [ + "default-mobile.handlebars->9->200", "default.handlebars->23->325", "default.handlebars->23->328", "default.handlebars->23->336", "default.handlebars->23->339", "default.handlebars->23->342", "default.handlebars->23->442", - "default.handlebars->23->473", - "default-mobile.handlebars->9->200" + "default.handlebars->23->473" ] }, { @@ -9498,8 +9498,8 @@ "nl": "Mesh Agent Console", "pt": "Mesh Agent Console", "xloc": [ - "default.handlebars->23->1076", - "default-mobile.handlebars->9->302" + "default-mobile.handlebars->9->302", + "default.handlebars->23->1076" ] }, { @@ -9679,9 +9679,9 @@ "nl": "MeshMessenger", "pt": "MeshMessenger", "xloc": [ - "messenger.handlebars->xtop->3->0->xtitle", "messenger.handlebars->13->1", - "messenger.handlebars->13->2" + "messenger.handlebars->13->2", + "messenger.handlebars->xtop->3->0->xtitle" ] }, { @@ -9747,8 +9747,8 @@ "nl": "Minimale lengte van {0}", "pt": "Comprimento mínimo de {0}", "xloc": [ - "login.handlebars->5->28", - "login-mobile.handlebars->5->28" + "login-mobile.handlebars->5->28", + "login.handlebars->5->28" ] }, { @@ -9841,10 +9841,10 @@ "nl": "Mijn Account", "pt": "Minha conta", "xloc": [ - "default.handlebars->container->page_leftbar", - "default.handlebars->container->topbar->1->1->MainMenuSpan->1->0->MainMenuMyAccount", + "default-mobile.handlebars->topMenu->3", "default.handlebars->container->column_l->p2->p2title->0", - "default-mobile.handlebars->topMenu->3" + "default.handlebars->container->page_leftbar", + "default.handlebars->container->topbar->1->1->MainMenuSpan->1->0->MainMenuMyAccount" ] }, { @@ -9856,9 +9856,9 @@ "nl": "Mijn apparaten", "pt": "Meus dispositivos", "xloc": [ + "default.handlebars->container->column_l->p1->p1title->2->0", "default.handlebars->container->page_leftbar", - "default.handlebars->container->topbar->1->1->MainMenuSpan->1->0->MainMenuMyDevices", - "default.handlebars->container->column_l->p1->p1title->2->0" + "default.handlebars->container->topbar->1->1->MainMenuSpan->1->0->MainMenuMyDevices" ] }, { @@ -9870,9 +9870,9 @@ "nl": "Mijn gebeurtenissen", "pt": "Meus Eventos", "xloc": [ + "default.handlebars->container->column_l->p3->p3title->0", "default.handlebars->container->page_leftbar", - "default.handlebars->container->topbar->1->1->MainMenuSpan->1->0->MainMenuMyEvents", - "default.handlebars->container->column_l->p3->p3title->0" + "default.handlebars->container->topbar->1->1->MainMenuSpan->1->0->MainMenuMyEvents" ] }, { @@ -9884,11 +9884,11 @@ "nl": "Mijn bestanden", "pt": "Meus arquivos", "xloc": [ - "default.handlebars->container->page_leftbar", - "default.handlebars->container->topbar->1->1->MainMenuSpan->1->0->MainMenuMyFiles", - "default.handlebars->container->column_l->p5->p5title->0", "default-mobile.handlebars->container->page_content->column_l->p5->1->1->0->5->1->1", - "default-mobile.handlebars->topMenu->1" + "default-mobile.handlebars->topMenu->1", + "default.handlebars->container->column_l->p5->p5title->0", + "default.handlebars->container->page_leftbar", + "default.handlebars->container->topbar->1->1->MainMenuSpan->1->0->MainMenuMyFiles" ] }, { @@ -9900,9 +9900,9 @@ "nl": "Mijn server", "pt": "Meu servidor", "xloc": [ + "default.handlebars->container->column_l->p6->p6title->3", "default.handlebars->container->page_leftbar", - "default.handlebars->container->topbar->1->1->MainMenuSpan->1->0->MainMenuMyServer", - "default.handlebars->container->column_l->p6->p6title->3" + "default.handlebars->container->topbar->1->1->MainMenuSpan->1->0->MainMenuMyServer" ] }, { @@ -9980,9 +9980,9 @@ "nl": "Mijn gebruikers", "pt": "Meus usuários", "xloc": [ + "default.handlebars->container->column_l->p4->p4title->0", "default.handlebars->container->page_leftbar", - "default.handlebars->container->topbar->1->1->MainMenuSpan->1->0->MainMenuMyUsers", - "default.handlebars->container->column_l->p4->p4title->0" + "default.handlebars->container->topbar->1->1->MainMenuSpan->1->0->MainMenuMyUsers" ] }, { @@ -10007,15 +10007,11 @@ "nl": "Naam", "pt": "Nome", "xloc": [ - "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader->3", - "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsServiceTab->deskToolsServiceHeader->3", - "default.handlebars->container->column_l->p42->p42tbl->1->0->2", - "default.handlebars->23->71", - "default.handlebars->23->80", - "default.handlebars->23->94", - "default.handlebars->23->592", - "default.handlebars->23->930", - "default.handlebars->23->957", + "default-mobile.handlebars->9->135", + "default-mobile.handlebars->9->276", + "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->23->1041", "default.handlebars->23->1178", "default.handlebars->23->1219", @@ -10024,11 +10020,15 @@ "default.handlebars->23->1255", "default.handlebars->23->1257", "default.handlebars->23->1280", - "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea3->deskarea3x->DeskTools->5->1->1", - "default-mobile.handlebars->9->56", - "default-mobile.handlebars->9->135", - "default-mobile.handlebars->9->276", - "default-mobile.handlebars->9->289" + "default.handlebars->23->592", + "default.handlebars->23->71", + "default.handlebars->23->80", + "default.handlebars->23->930", + "default.handlebars->23->94", + "default.handlebars->23->957", + "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" ] }, { @@ -10124,8 +10124,8 @@ "nl": "Nieuw", "pt": "Novo", "xloc": [ - "default.handlebars->container->column_l->p2->p2createMeshLink1->1", - "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3createMeshLink1->1" + "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3createMeshLink1->1", + "default.handlebars->container->column_l->p2->p2createMeshLink1->1" ] }, { @@ -10149,10 +10149,10 @@ "nl": "Nieuwe apparaatgroep", "pt": "Novo grupo de dispositivos", "xloc": [ + "default-mobile.handlebars->9->50", "default.handlebars->23->552", "default.handlebars->23->923", - "default.handlebars->23->935", - "default-mobile.handlebars->9->50" + "default.handlebars->23->935" ] }, { @@ -10164,12 +10164,12 @@ "nl": "Nieuwe map", "pt": "Nova pasta", "xloc": [ - "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", - "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", - "default.handlebars->23->630", - "default.handlebars->23->1151", + "default-mobile.handlebars->9->247", "default-mobile.handlebars->9->79", - "default-mobile.handlebars->9->247" + "default.handlebars->23->1151", + "default.handlebars->23->630", + "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", + "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3" ] }, { @@ -10201,10 +10201,10 @@ "nl": "Nieuw wachtwoord:", "pt": "Nova senha:", "xloc": [ - "default.handlebars->23->918", - "default.handlebars->23->919", "default-mobile.handlebars->9->45", - "default-mobile.handlebars->9->46" + "default-mobile.handlebars->9->46", + "default.handlebars->23->918", + "default.handlebars->23->919" ] }, { @@ -10215,8 +10215,8 @@ "nl": "geen actieve tokens", "pt": "Nenhum token ativo", "xloc": [ - "default.handlebars->23->133", - "default-mobile.handlebars->9->25" + "default-mobile.handlebars->9->25", + "default.handlebars->23->133" ] }, { @@ -10227,10 +10227,10 @@ "nl": "Geen referenties", "pt": "Sem credenciais", "xloc": [ - "default.handlebars->23->456", - "default.handlebars->23->457", "default-mobile.handlebars->9->184", - "default-mobile.handlebars->9->185" + "default-mobile.handlebars->9->185", + "default.handlebars->23->456", + "default.handlebars->23->457" ] }, { @@ -10242,9 +10242,9 @@ "nl": "Geen gebeurtenissen gevonden", "pt": "Nenhum evento encontrado", "xloc": [ - "default.handlebars->23->664", "default.handlebars->23->1168", - "default.handlebars->23->1364" + "default.handlebars->23->1364", + "default.handlebars->23->664" ] }, { @@ -10256,8 +10256,8 @@ "nl": "Geen bestandstoegang", "pt": "Sem acesso a arquivos", "xloc": [ - "default.handlebars->23->1074", - "default-mobile.handlebars->9->300" + "default-mobile.handlebars->9->300", + "default.handlebars->23->1074" ] }, { @@ -10269,8 +10269,8 @@ "nl": "Geen bestanden", "pt": "Sem arquivos", "xloc": [ - "default.handlebars->23->1100", - "default-mobile.handlebars->9->321" + "default-mobile.handlebars->9->321", + "default.handlebars->23->1100" ] }, { @@ -10281,10 +10281,10 @@ "nl": "Geen Intel® AMT", "pt": "Nenhum Intel® AMT", "xloc": [ - "default.handlebars->23->1075", - "default.handlebars->23->1101", "default-mobile.handlebars->9->301", - "default-mobile.handlebars->9->322" + "default-mobile.handlebars->9->322", + "default.handlebars->23->1075", + "default.handlebars->23->1101" ] }, { @@ -10347,9 +10347,9 @@ "nl": "Geen beleid", "pt": "Nenhuma política", "xloc": [ - "default.handlebars->23->982", "default.handlebars->23->1013", - "default.handlebars->23->1016" + "default.handlebars->23->1016", + "default.handlebars->23->982" ] }, { @@ -10360,14 +10360,14 @@ "nl": "Geen rechten", "pt": "Sem direitos", "xloc": [ - "default.handlebars->23->944", + "default-mobile.handlebars->9->284", + "default-mobile.handlebars->9->327", + "default-mobile.handlebars->9->65", "default.handlebars->23->1007", "default.handlebars->23->1106", "default.handlebars->23->1273", "default.handlebars->23->1347", - "default-mobile.handlebars->9->65", - "default-mobile.handlebars->9->284", - "default-mobile.handlebars->9->327" + "default.handlebars->23->944" ] }, { @@ -10379,9 +10379,9 @@ "nl": "Geen TLS beveiliging", "pt": "Sem segurança TLS", "xloc": [ + "default-mobile.handlebars->9->215", "default.handlebars->23->245", - "default.handlebars->23->538", - "default-mobile.handlebars->9->215" + "default.handlebars->23->538" ] }, { @@ -10392,8 +10392,8 @@ "nl": "Geen terminal", "pt": "Sem terminal", "xloc": [ - "default.handlebars->23->1099", - "default-mobile.handlebars->9->320" + "default-mobile.handlebars->9->320", + "default.handlebars->23->1099" ] }, { @@ -10404,8 +10404,8 @@ "nl": "Geen terminal toegang", "pt": "Sem acesso ao terminal", "xloc": [ - "default.handlebars->23->1073", - "default-mobile.handlebars->9->299" + "default-mobile.handlebars->9->299", + "default.handlebars->23->1073" ] }, { @@ -10437,9 +10437,9 @@ "nl": "Geen apparaatgroepen.", "pt": "Nenhum grupo de dispositivos.", "xloc": [ + "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3noMeshFound", "default.handlebars->container->column_l->p1->NoMeshesPanel->1->1->0->3->getStarted2", - "default.handlebars->container->column_l->p2->p2noMeshFound", - "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3noMeshFound" + "default.handlebars->container->column_l->p2->p2noMeshFound" ] }, { @@ -10495,8 +10495,8 @@ "nl": "Geen apparaten in deze groep", "pt": "Nenhum dispositivo neste grupo", "xloc": [ - "default.handlebars->23->198", - "default-mobile.handlebars->9->97" + "default-mobile.handlebars->9->97", + "default.handlebars->23->198" ] }, { @@ -10631,8 +10631,8 @@ "nl": "NodeJS", "pt": "NodeJS", "xloc": [ - "default.handlebars->23->36", - "default-mobile.handlebars->9->166" + "default-mobile.handlebars->9->166", + "default.handlebars->23->36" ] }, { @@ -10644,8 +10644,19 @@ "nl": "Geen", "pt": "Nenhum", "xloc": [ - "default.handlebars->container->column_l->p41->3->3->p41traceStatus", - "default.handlebars->23->63", + "default-mobile.handlebars->9->133", + "default-mobile.handlebars->9->138", + "default-mobile.handlebars->9->140", + "default-mobile.handlebars->9->196", + "default-mobile.handlebars->9->245", + "default-mobile.handlebars->9->278", + "default-mobile.handlebars->9->75", + "default-mobile.handlebars->9->93", + "default-mobile.handlebars->9->95", + "default.handlebars->23->1139", + "default.handlebars->23->1254", + "default.handlebars->23->1312", + "default.handlebars->23->1316", "default.handlebars->23->166", "default.handlebars->23->181", "default.handlebars->23->182", @@ -10653,23 +10664,12 @@ "default.handlebars->23->437", "default.handlebars->23->439", "default.handlebars->23->483", + "default.handlebars->23->63", "default.handlebars->23->959", "default.handlebars->23->963", "default.handlebars->23->975", "default.handlebars->23->980", - "default.handlebars->23->1139", - "default.handlebars->23->1254", - "default.handlebars->23->1312", - "default.handlebars->23->1316", - "default-mobile.handlebars->9->75", - "default-mobile.handlebars->9->93", - "default-mobile.handlebars->9->95", - "default-mobile.handlebars->9->133", - "default-mobile.handlebars->9->138", - "default-mobile.handlebars->9->140", - "default-mobile.handlebars->9->196", - "default-mobile.handlebars->9->245", - "default-mobile.handlebars->9->278" + "default.handlebars->container->column_l->p41->3->3->p41traceStatus" ] }, { @@ -10728,8 +10728,8 @@ "nl": "Niet geactiveerd (In)", "pt": "Não ativado (entrada)", "xloc": [ - "default.handlebars->23->444", - "default-mobile.handlebars->9->176" + "default-mobile.handlebars->9->176", + "default.handlebars->23->444" ] }, { @@ -10740,8 +10740,8 @@ "nl": "Niet geactiveerd (Pre)", "pt": "Não ativado (pré)", "xloc": [ - "default.handlebars->23->443", - "default-mobile.handlebars->9->175" + "default-mobile.handlebars->9->175", + "default.handlebars->23->443" ] }, { @@ -10774,10 +10774,10 @@ "nl": "Notities", "pt": "Notas", "xloc": [ + "default.handlebars->23->1323", "default.handlebars->23->486", "default.handlebars->23->519", - "default.handlebars->23->988", - "default.handlebars->23->1323" + "default.handlebars->23->988" ] }, { @@ -10798,9 +10798,9 @@ "nl": "meldingsinstellingen", "pt": "Configurações de notificação", "xloc": [ - "default.handlebars->container->column_l->p2->p2AccountActions->3->8", + "default.handlebars->23->1118", "default.handlebars->23->905", - "default.handlebars->23->1118" + "default.handlebars->container->column_l->p2->p2AccountActions->3->8" ] }, { @@ -10878,13 +10878,13 @@ "nl": "OK", "pt": "Ok", "xloc": [ - "default.handlebars->container->dialog->idx_dlgButtonBar", + "default-mobile.handlebars->9->42", + "default-mobile.handlebars->dialog->idx_dlgButtonBar", "default.handlebars->23->469", "default.handlebars->23->947", - "default-mobile.handlebars->dialog->idx_dlgButtonBar", - "default-mobile.handlebars->9->42", - "login.handlebars->dialog->idx_dlgButtonBar", + "default.handlebars->container->dialog->idx_dlgButtonBar", "login-mobile.handlebars->dialog->idx_dlgButtonBar", + "login.handlebars->dialog->idx_dlgButtonBar", "player.htm->p11->dialog->idx_dlgButtonBar" ] }, @@ -10944,8 +10944,8 @@ "nl": "Oud wachtwoord:", "pt": "Senha Antiga:", "xloc": [ - "default.handlebars->23->917", - "default-mobile.handlebars->9->44" + "default-mobile.handlebars->9->44", + "default.handlebars->23->917" ] }, { @@ -10956,8 +10956,8 @@ "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.", "xloc": [ - "default.handlebars->23->132", - "default-mobile.handlebars->9->24" + "default-mobile.handlebars->9->24", + "default.handlebars->23->132" ] }, { @@ -10980,8 +10980,8 @@ "nl": "Alleen bestanden kleiner dan 200k kunnen worden bewerkt.", "pt": "Somente arquivos com menos de 200k podem ser editados.", "xloc": [ - "default.handlebars->23->638", - "default-mobile.handlebars->9->255" + "default-mobile.handlebars->9->255", + "default.handlebars->23->638" ] }, { @@ -10992,8 +10992,8 @@ "nl": "Open bestand...", "pt": "Abrir arquivo...", "xloc": [ - "player.htm->p11->deskarea0->deskarea1->3", - "player.htm->3->19" + "player.htm->3->19", + "player.htm->p11->deskarea0->deskarea1->3" ] }, { @@ -11038,10 +11038,10 @@ "nl": "Besturingssysteem", "pt": "Sistema operacional", "xloc": [ - "default.handlebars->23->79", "default.handlebars->23->285", "default.handlebars->23->314", - "default.handlebars->23->466" + "default.handlebars->23->466", + "default.handlebars->23->79" ] }, { @@ -11053,9 +11053,9 @@ "nl": "Operatie", "pt": "Operação", "xloc": [ + "default-mobile.handlebars->9->210", "default.handlebars->23->386", - "default.handlebars->23->530", - "default-mobile.handlebars->9->210" + "default.handlebars->23->530" ] }, { @@ -11147,9 +11147,9 @@ "nl": "PID", "pt": "PID", "xloc": [ - "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader->1", + "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea3->deskarea3x->DeskTools->5->1->0", "default.handlebars->23->595", - "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea3->deskarea3x->DeskTools->5->1->0" + "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader->1" ] }, { @@ -11194,9 +11194,9 @@ "nl": "Gedeeltelijke rechten", "pt": "Direitos parciais", "xloc": [ - "default.handlebars->23->942", + "default-mobile.handlebars->9->282", "default-mobile.handlebars->9->63", - "default-mobile.handlebars->9->282" + "default.handlebars->23->942" ] }, { @@ -11230,16 +11230,16 @@ "nl": "wachtwoord", "pt": "Senha", "xloc": [ - "default.handlebars->23->243", - "default.handlebars->23->272", - "default.handlebars->23->536", + "default-mobile.handlebars->9->213", "default.handlebars->23->1221", "default.handlebars->23->1222", "default.handlebars->23->1308", "default.handlebars->23->1310", "default.handlebars->23->1334", "default.handlebars->23->1335", - "default-mobile.handlebars->9->213" + "default.handlebars->23->243", + "default.handlebars->23->272", + "default.handlebars->23->536" ] }, { @@ -11250,8 +11250,8 @@ "nl": "wachtwoord hint", "pt": "Dica de Senha", "xloc": [ - "login.handlebars->5->19", - "login-mobile.handlebars->5->19" + "login-mobile.handlebars->5->19", + "login.handlebars->5->19" ] }, { @@ -11262,9 +11262,9 @@ "nl": "wachtwoord hint:", "pt": "Dica de senha", "xloc": [ + "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->resetpasswordpanel->1->7->1->resetpasswordpanelHint->rnuHint", "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->createPanelHint->nuHint", - "login.handlebars->container->column_l->centralTable->1->0->logincell->resetpasswordpanel->1->7->1->resetpasswordpanelHint->rnuHint", - "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->resetpasswordpanel->1->7->1->resetpasswordpanelHint->rnuHint" + "login.handlebars->container->column_l->centralTable->1->0->logincell->resetpasswordpanel->1->7->1->resetpasswordpanelHint->rnuHint" ] }, { @@ -11275,11 +11275,11 @@ "nl": "Wachtwoord beleid", "pt": "Política de senha", "xloc": [ + "login-mobile.handlebars->5->23", + "login-mobile.handlebars->5->27", "login.handlebars->5->23", "login.handlebars->5->27", - "login.handlebars->5->34", - "login-mobile.handlebars->5->23", - "login-mobile.handlebars->5->27" + "login.handlebars->5->34" ] }, { @@ -11290,8 +11290,8 @@ "ja": "パスワードの変更が要求されました。", "nl": "Wachtwoordwijziging aangevraagd.", "xloc": [ - "login.handlebars->5->15", - "login-mobile.handlebars->5->15" + "login-mobile.handlebars->5->15", + "login.handlebars->5->15" ] }, { @@ -11313,8 +11313,8 @@ "nl": "wachtwoord hint:", "pt": "Dica de senha", "xloc": [ - "default.handlebars->23->920", - "default-mobile.handlebars->9->47" + "default-mobile.handlebars->9->47", + "default.handlebars->23->920" ] }, { @@ -11336,8 +11336,8 @@ "ja": "パスワードが拒否されました。別のパスワードを使用してください。", "nl": "Wachtwoord geweigerd, gebruik een ander.", "xloc": [ - "login.handlebars->5->7", - "login-mobile.handlebars->5->7" + "login-mobile.handlebars->5->7", + "login.handlebars->5->7" ] }, { @@ -11362,20 +11362,20 @@ "nl": "Wachtwoord:", "pt": "Senha:", "xloc": [ - "default.handlebars->23->912", - "default.handlebars->23->913", "default-mobile.handlebars->9->39", "default-mobile.handlebars->9->40", - "login.handlebars->container->column_l->centralTable->1->0->logincell->loginpanel->1->7->1->2->1", - "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->4->nuPass1", - "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->6->nuPass2", - "login.handlebars->container->column_l->centralTable->1->0->logincell->resetpasswordpanel->1->7->1->0->rnuPass1", - "login.handlebars->container->column_l->centralTable->1->0->logincell->resetpasswordpanel->1->7->1->2->rnuPass2", - "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->loginpanel->1->7->1->2->1", + "default.handlebars->23->912", + "default.handlebars->23->913", "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", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->resetpasswordpanel->1->7->1->0->rnuPass1", - "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->resetpasswordpanel->1->7->1->2->rnuPass2" + "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->resetpasswordpanel->1->7->1->2->rnuPass2", + "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->4->nuPass1", + "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->6->nuPass2", + "login.handlebars->container->column_l->centralTable->1->0->logincell->loginpanel->1->7->1->2->1", + "login.handlebars->container->column_l->centralTable->1->0->logincell->resetpasswordpanel->1->7->1->0->rnuPass1", + "login.handlebars->container->column_l->centralTable->1->0->logincell->resetpasswordpanel->1->7->1->2->rnuPass2" ] }, { @@ -11387,16 +11387,16 @@ "nl": "Plakken", "pt": "Colar", "xloc": [ - "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", - "default.handlebars->container->column_l->p12->termTable->1->1->6->1->3", - "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", + "default-mobile.handlebars->9->260", + "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->23->1160", "default.handlebars->23->621", "default.handlebars->23->643", - "default.handlebars->23->1160", - "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->3", - "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->3", - "default-mobile.handlebars->9->87", - "default-mobile.handlebars->9->260" + "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" ] }, { @@ -11490,10 +11490,10 @@ "nl": "Voer power acties uit op het apparaat", "pt": "Execute ações de energia no dispositivo", "xloc": [ + "default.handlebars->23->485", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->1", - "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->1", - "default.handlebars->23->485" + "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->1" ] }, { @@ -11505,9 +11505,9 @@ "nl": "machtigingen", "pt": "Permissões", "xloc": [ + "default-mobile.handlebars->9->329", "default.handlebars->23->1109", - "default.handlebars->23->1181", - "default-mobile.handlebars->9->329" + "default.handlebars->23->1181" ] }, { @@ -11574,8 +11574,8 @@ "nl": "Neem contact op met de sitebeheerder voor gebruiksvoorwaarden.", "pt": "Entre em contato com o administrador do site para obter os termos de uso.", "xloc": [ - "terms.handlebars->container->column_l->3", - "terms-mobile.handlebars->container->page_content->column_l->3" + "terms-mobile.handlebars->container->page_content->column_l->3", + "terms.handlebars->container->column_l->3" ] }, { @@ -11586,8 +11586,8 @@ "nl": "Wacht enkele minuten om de verificatie te ontvangen.", "pt": "Aguarde alguns minutos para receber a verificação.", "xloc": [ - "default.handlebars->23->907", - "default-mobile.handlebars->9->35" + "default-mobile.handlebars->9->35", + "default.handlebars->23->907" ] }, { @@ -11597,8 +11597,8 @@ "ja": "プラグインアクション", "nl": "Plugin Actie", "xloc": [ - "default.handlebars->23->177", - "default.handlebars->23->1436" + "default.handlebars->23->1436", + "default.handlebars->23->177" ] }, { @@ -11660,8 +11660,8 @@ "nl": "PogoPlug ARM", "pt": "PogoPlug ARM", "xloc": [ - "default.handlebars->23->26", - "default-mobile.handlebars->9->156" + "default-mobile.handlebars->9->156", + "default.handlebars->23->26" ] }, { @@ -11673,8 +11673,8 @@ "nl": "Beleid", "pt": "Política", "xloc": [ - "default.handlebars->23->941", - "default-mobile.handlebars->9->62" + "default-mobile.handlebars->9->62", + "default.handlebars->23->941" ] }, { @@ -11729,8 +11729,8 @@ "nl": "Power Actie's...", "pt": "Ações de energia (Ligar/Desligar)", "xloc": [ - "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1", - "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea4->1->3" + "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea4->1->3", + "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1" ] }, { @@ -11739,8 +11739,8 @@ "en": "Power States", "nl": "Power Status", "xloc": [ - "default.handlebars->container->column_l->p21->3->1->meshPowerChartDiv->1", - "default.handlebars->23->1123" + "default.handlebars->23->1123", + "default.handlebars->container->column_l->p21->3->1->meshPowerChartDiv->1" ] }, { @@ -11752,10 +11752,10 @@ "nl": "Uitzetten", "pt": "Desligar", "xloc": [ - "default.handlebars->23->6", - "default.handlebars->23->527", "default-mobile.handlebars->9->105", - "default-mobile.handlebars->9->209" + "default-mobile.handlebars->9->209", + "default.handlebars->23->527", + "default.handlebars->23->6" ] }, { @@ -11779,10 +11779,10 @@ "nl": "ingeschakeld", "pt": "Ligado", "xloc": [ - "default.handlebars->23->1", - "default.handlebars->23->350", "default-mobile.handlebars->9->100", - "default-mobile.handlebars->9->107" + "default-mobile.handlebars->9->107", + "default.handlebars->23->1", + "default.handlebars->23->350" ] }, { @@ -11794,10 +11794,10 @@ "nl": "Aanwezig", "pt": "Presente", "xloc": [ - "default.handlebars->23->7", - "default.handlebars->23->362", "default-mobile.handlebars->9->106", - "default-mobile.handlebars->9->113" + "default-mobile.handlebars->9->113", + "default.handlebars->23->362", + "default.handlebars->23->7" ] }, { @@ -11833,8 +11833,8 @@ "nl": "Proces controle", "pt": "Controle do processo", "xloc": [ - "default.handlebars->23->608", - "default-mobile.handlebars->9->234" + "default-mobile.handlebars->9->234", + "default.handlebars->23->608" ] }, { @@ -11846,8 +11846,8 @@ "nl": "Processen", "pt": "Processos", "xloc": [ - "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsAreaTop->deskToolsTopTabProcess", - "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea3->deskarea3x->DeskTools->DeskToolsBar" + "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea3->deskarea3x->DeskTools->DeskToolsBar", + "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsAreaTop->deskToolsTopTabProcess" ] }, { @@ -11885,8 +11885,8 @@ "nl": "Publieke link", "pt": "Link Público", "xloc": [ - "default.handlebars->23->1146", - "default-mobile.handlebars->9->74" + "default-mobile.handlebars->9->74", + "default.handlebars->23->1146" ] }, { @@ -11942,8 +11942,8 @@ "nl": "Kwaliteit", "pt": "Qualidade", "xloc": [ - "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->3->1", - "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->3->3" + "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->3->3", + "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->3->1" ] }, { @@ -11966,8 +11966,8 @@ "nl": "RAW16, Zeer langzaam", "pt": "RAW16, muito lento", "xloc": [ - "default.handlebars->container->dialog->dialogBody->dialog7->d7amtkvm->3->d7desktopmode->7", - "default-mobile.handlebars->dialog->3->dialog7->d7amtkvm->3->d7desktopmode->7" + "default-mobile.handlebars->dialog->3->dialog7->d7amtkvm->3->d7desktopmode->7", + "default.handlebars->container->dialog->dialogBody->dialog7->d7amtkvm->3->d7desktopmode->7" ] }, { @@ -11979,8 +11979,8 @@ "nl": "RAW8, langzaam", "pt": "RAW8, lento", "xloc": [ - "default.handlebars->container->dialog->dialogBody->dialog7->d7amtkvm->3->d7desktopmode->5", - "default-mobile.handlebars->dialog->3->dialog7->d7amtkvm->3->d7desktopmode->5" + "default-mobile.handlebars->dialog->3->dialog7->d7amtkvm->3->d7desktopmode->5", + "default.handlebars->container->dialog->dialogBody->dialog7->d7amtkvm->3->d7desktopmode->5" ] }, { @@ -12003,8 +12003,8 @@ "nl": "RLE16, Aanbevolen", "pt": "RLE16, Recomendado", "xloc": [ - "default.handlebars->container->dialog->dialogBody->dialog7->d7amtkvm->3->d7desktopmode->3", - "default-mobile.handlebars->dialog->3->dialog7->d7amtkvm->3->d7desktopmode->3" + "default-mobile.handlebars->dialog->3->dialog7->d7amtkvm->3->d7desktopmode->3", + "default.handlebars->container->dialog->dialogBody->dialog7->d7amtkvm->3->d7desktopmode->3" ] }, { @@ -12016,8 +12016,8 @@ "nl": "RLE8, snelste", "pt": "RLE8, mais rápido", "xloc": [ - "default.handlebars->container->dialog->dialogBody->dialog7->d7amtkvm->3->d7desktopmode->1", - "default-mobile.handlebars->dialog->3->dialog7->d7amtkvm->3->d7desktopmode->1" + "default-mobile.handlebars->dialog->3->dialog7->d7amtkvm->3->d7desktopmode->1", + "default.handlebars->container->dialog->dialogBody->dialog7->d7amtkvm->3->d7desktopmode->1" ] }, { @@ -12082,10 +12082,10 @@ "nl": "Recursieve verwijdering", "pt": "Exclusão recursiva", "xloc": [ - "default.handlebars->23->631", - "default.handlebars->23->1152", + "default-mobile.handlebars->9->248", "default-mobile.handlebars->9->80", - "default-mobile.handlebars->9->248" + "default.handlebars->23->1152", + "default.handlebars->23->631" ] }, { @@ -12095,10 +12095,10 @@ "nl": "Herdistributie en gebruik in bron- en binaire vorm, met of zonder wijziging, zijn toegestaan mits aan de volgende voorwaarden wordt voldaan:", "pt": "A redistribuição e uso nas formas de origem e binárias, com ou sem modificação, são permitidas desde que as seguintes condições sejam atendidas:", "xloc": [ - "terms.handlebars->container->column_l->13->1", - "terms.handlebars->container->column_l->29->1", "terms-mobile.handlebars->container->page_content->column_l->13->1", - "terms-mobile.handlebars->container->page_content->column_l->29->1" + "terms-mobile.handlebars->container->page_content->column_l->29->1", + "terms.handlebars->container->column_l->13->1", + "terms.handlebars->container->column_l->29->1" ] }, { @@ -12110,13 +12110,13 @@ "nl": "Ververs", "pt": "Atualizar", "xloc": [ + "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->23->414", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsAreaTop->DeskToolsRefreshButton", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", - "default.handlebars->container->column_l->p40->3->3", - "default.handlebars->23->414", - "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->3", - "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea3->deskarea3x->DeskTools->DeskToolsRefreshButton", - "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->3" + "default.handlebars->container->column_l->p40->3->3" ] }, { @@ -12137,9 +12137,9 @@ "nl": "Relay", "pt": "Retransmissão", "xloc": [ + "default-mobile.handlebars->9->124", "default.handlebars->23->190", - "default.handlebars->23->377", - "default-mobile.handlebars->9->124" + "default.handlebars->23->377" ] }, { @@ -12183,8 +12183,8 @@ "ja": "このデバイスを30日間記憶します。", "nl": "Onthoud dit apparaat gedurende 30 dagen.", "xloc": [ - "login.handlebars->container->column_l->centralTable->1->0->logincell->tokenpanel->1->7->1->2->1->1", - "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->2->1->1" + "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->2->1->1", + "login.handlebars->container->column_l->centralTable->1->0->logincell->tokenpanel->1->7->1->2->1->1" ] }, { @@ -12231,10 +12231,10 @@ "nl": "Extern beheer", "pt": "Controle remoto", "xloc": [ - "default.handlebars->23->1070", - "default.handlebars->23->1093", "default-mobile.handlebars->9->296", - "default-mobile.handlebars->9->314" + "default-mobile.handlebars->9->314", + "default.handlebars->23->1070", + "default.handlebars->23->1093" ] }, { @@ -12246,9 +12246,9 @@ "nl": "Instellingen extern bureaublad", "pt": "Configurações da área de trabalho remota", "xloc": [ + "default-mobile.handlebars->9->229", "default.handlebars->23->222", - "default.handlebars->23->583", - "default-mobile.handlebars->9->229" + "default.handlebars->23->583" ] }, { @@ -12271,8 +12271,8 @@ "nl": "externe Mesh gebruiker", "pt": "Usuário de malha remota", "xloc": [ - "default.handlebars->23->1112", - "default-mobile.handlebars->9->332" + "default-mobile.handlebars->9->332", + "default.handlebars->23->1112" ] }, { @@ -12291,10 +12291,10 @@ "nl": "Alleen extern meekijken", "pt": "Somente visualização remota", "xloc": [ - "default.handlebars->23->1071", - "default.handlebars->23->1098", "default-mobile.handlebars->9->297", - "default-mobile.handlebars->9->319" + "default-mobile.handlebars->9->319", + "default.handlebars->23->1071", + "default.handlebars->23->1098" ] }, { @@ -12442,14 +12442,14 @@ "nl": "Hernoemen", "pt": "Renomear", "xloc": [ - "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", - "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", - "default.handlebars->23->635", - "default.handlebars->23->1156", - "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1", - "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1", + "default-mobile.handlebars->9->252", "default-mobile.handlebars->9->84", - "default-mobile.handlebars->9->252" + "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->23->1156", + "default.handlebars->23->635", + "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", + "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3" ] }, { @@ -12473,9 +12473,9 @@ "nl": "Vereisten: {0}.", "pt": "Requisitos: {0}.", "xloc": [ + "default-mobile.handlebars->9->48", "default.handlebars->23->1228", - "default.handlebars->23->1337", - "default-mobile.handlebars->9->48" + "default.handlebars->23->1337" ] }, { @@ -12512,9 +12512,9 @@ "nl": "Herstarten", "pt": "Redefinir", "xloc": [ - "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devMapToolbar", + "default-mobile.handlebars->9->208", "default.handlebars->23->526", - "default-mobile.handlebars->9->208" + "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devMapToolbar" ] }, { @@ -12526,8 +12526,8 @@ "nl": "Account opnieuw instellen", "pt": "Redefinir Conta", "xloc": [ - "login.handlebars->container->column_l->centralTable->1->0->logincell->resetpanel->1->7->1->2->1->1", - "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->resetpanel->1->7->1->2->1->1" + "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->resetpanel->1->7->1->2->1->1", + "login.handlebars->container->column_l->centralTable->1->0->logincell->resetpanel->1->7->1->2->1->1" ] }, { @@ -12539,8 +12539,8 @@ "nl": "Reset wachtwoord", "pt": "Redefinir senha", "xloc": [ - "login.handlebars->container->column_l->centralTable->1->0->logincell->resetpasswordpanel->1->7->1->6->1->1", - "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->resetpasswordpanel->1->7->1->6->1->1" + "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->resetpasswordpanel->1->7->1->6->1->1", + "login.handlebars->container->column_l->centralTable->1->0->logincell->resetpasswordpanel->1->7->1->6->1->1" ] }, { @@ -12552,8 +12552,8 @@ "nl": "Account opnieuw instellen", "pt": "Redefinir conta", "xloc": [ - "login.handlebars->container->column_l->centralTable->1->0->logincell->loginpanel->1->resetAccountDiv->3", - "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->loginpanel->1->resetAccountDiv->3" + "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->loginpanel->1->resetAccountDiv->3", + "login.handlebars->container->column_l->centralTable->1->0->logincell->loginpanel->1->resetAccountDiv->3" ] }, { @@ -12684,10 +12684,10 @@ "nl": "Root", "pt": "Raiz", "xloc": [ - "default.handlebars->23->625", - "default.handlebars->23->1131", + "default-mobile.handlebars->9->242", "default-mobile.handlebars->9->66", - "default-mobile.handlebars->9->242" + "default.handlebars->23->1131", + "default.handlebars->23->625" ] }, { @@ -12898,8 +12898,8 @@ "nl": "Schalen", "pt": "Dimensionamento", "xloc": [ - "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->5->1", - "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->5->3" + "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->5->3", + "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->5->1" ] }, { @@ -12959,8 +12959,8 @@ "nl": "Zoeken", "pt": "Procurar", "xloc": [ - "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devMapToolbar", - "default.handlebars->23->420" + "default.handlebars->23->420", + "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devMapToolbar" ] }, { @@ -12996,10 +12996,10 @@ "nl": "Veiligheid", "pt": "Segurança", "xloc": [ - "default.handlebars->23->244", - "default.handlebars->23->537", + "default-mobile.handlebars->9->214", "default.handlebars->23->1321", - "default-mobile.handlebars->9->214" + "default.handlebars->23->244", + "default.handlebars->23->537" ] }, { @@ -13023,14 +13023,14 @@ "nl": "Selecteer alles", "pt": "Selecionar tudo", "xloc": [ - "default.handlebars->meshContextMenu->cxselectall", - "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar", - "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", - "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", + "default.handlebars->23->1148", "default.handlebars->23->382", "default.handlebars->23->627", "default.handlebars->23->629", - "default.handlebars->23->1148" + "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", + "default.handlebars->meshContextMenu->cxselectall" ] }, { @@ -13042,10 +13042,10 @@ "nl": "Selecteer niets", "pt": "Selecione nenhum", "xloc": [ - "default.handlebars->meshContextMenu->cxselectnone", + "default.handlebars->23->1147", "default.handlebars->23->381", "default.handlebars->23->628", - "default.handlebars->23->1147" + "default.handlebars->meshContextMenu->cxselectnone" ] }, { @@ -13100,8 +13100,8 @@ "nl": "Selecteer een bewerking die u op dit apparaat wilt uitvoeren.", "pt": "Selecione uma operação para executar neste dispositivo.", "xloc": [ - "default.handlebars->23->523", - "default-mobile.handlebars->9->205" + "default-mobile.handlebars->9->205", + "default.handlebars->23->523" ] }, { @@ -13113,8 +13113,8 @@ "nl": "Selecteer alles", "pt": "Selecionar tudo", "xloc": [ - "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1", - "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1" + "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" ] }, { @@ -13125,8 +13125,8 @@ "nl": "Alleen eigen gebeurtenissen", "pt": "Somente Eventos Próprios", "xloc": [ - "default.handlebars->23->1103", - "default-mobile.handlebars->9->324" + "default-mobile.handlebars->9->324", + "default.handlebars->23->1103" ] }, { @@ -13286,11 +13286,11 @@ "nl": "Serverbestanden", "pt": "Arquivos do servidor", "xloc": [ + "default-mobile.handlebars->9->303", + "default-mobile.handlebars->9->316", "default.handlebars->23->1077", "default.handlebars->23->1095", - "default.handlebars->23->1234", - "default-mobile.handlebars->9->303", - "default-mobile.handlebars->9->316" + "default.handlebars->23->1234" ] }, { @@ -13414,8 +13414,8 @@ "nl": "Server verbroken", "pt": "Servidor desconectado", "xloc": [ - "default.handlebars->container->column_l->p0->p0message->p0span", - "default-mobile.handlebars->container->page_content->column_l->p0->1->p0message->p0span" + "default-mobile.handlebars->container->page_content->column_l->p0->1->p0message->p0span", + "default.handlebars->container->column_l->p0->p0message->p0span" ] }, { @@ -13519,8 +13519,8 @@ "nl": "Instellingen", "pt": "Configurações", "xloc": [ - "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->kvmListToolbar", - "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea4->1->3" + "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea4->1->3", + "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->kvmListToolbar" ] }, { @@ -13578,11 +13578,11 @@ "nl": "Setup...", "pt": "Configurando...", "xloc": [ + "default-mobile.handlebars->9->3", "default.handlebars->23->10", "default.handlebars->23->212", "default.handlebars->23->215", - "default.handlebars->23->221", - "default-mobile.handlebars->9->3" + "default.handlebars->23->221" ] }, { @@ -13616,8 +13616,8 @@ "nl": "Shift+Win+M", "pt": "Shift+Win+M", "xloc": [ - "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3->deskkeys->13", - "default-mobile.handlebars->dialog->3->dialog3->deskkeys->15" + "default-mobile.handlebars->dialog->3->dialog3->deskkeys->15", + "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3->deskkeys->13" ] }, { @@ -13629,8 +13629,8 @@ "nl": "Tonen", "pt": "Mostrar", "xloc": [ - "default.handlebars->container->column_l->p3->3->1->0->3", "default.handlebars->container->column_l->p16->3->1->0->5", + "default.handlebars->container->column_l->p3->3->1->0->3", "default.handlebars->container->column_l->p31->3->1->0->5", "default.handlebars->container->column_l->p41->3->1" ] @@ -13643,8 +13643,8 @@ "nl": "Toon focus tool", "pt": "Mostrar ferramenta de foco", "xloc": [ - "default.handlebars->container->dialog->dialogBody->dialog7->d7amtkvm->5->d7otherset->1", - "default-mobile.handlebars->dialog->3->dialog7->d7amtkvm->5->1->1" + "default-mobile.handlebars->dialog->3->dialog7->d7amtkvm->5->1->1", + "default.handlebars->container->dialog->dialogBody->dialog7->d7amtkvm->5->d7otherset->1" ] }, { @@ -13656,8 +13656,8 @@ "nl": "Toon hint", "pt": "Mostrar dica", "xloc": [ - "login.handlebars->container->column_l->centralTable->1->0->logincell->loginpanel->1->7->1->4->1->showPassHintLink->0", - "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->loginpanel->1->7->1->4->1->showPassHintLink->0" + "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->loginpanel->1->7->1->4->1->showPassHintLink->0", + "login.handlebars->container->column_l->centralTable->1->0->logincell->loginpanel->1->7->1->4->1->showPassHintLink->0" ] }, { @@ -13668,8 +13668,8 @@ "nl": "Lokale muiscursor weergeven", "pt": "Mostrar Cursor do Mouse Local", "xloc": [ - "default.handlebars->container->dialog->dialogBody->dialog7->d7amtkvm->5->d7otherset->3", - "default-mobile.handlebars->dialog->3->dialog7->d7amtkvm->5->1->4" + "default-mobile.handlebars->dialog->3->dialog7->d7amtkvm->5->1->4", + "default.handlebars->container->dialog->dialogBody->dialog7->d7amtkvm->5->d7otherset->3" ] }, { @@ -13680,8 +13680,8 @@ "nl": "Toon alleen eigen gebeurtenissen", "pt": "Mostrar apenas eventos próprios", "xloc": [ - "default.handlebars->23->1080", - "default-mobile.handlebars->9->306" + "default-mobile.handlebars->9->306", + "default.handlebars->23->1080" ] }, { @@ -13749,8 +13749,8 @@ "nl": "Simple Admin Control Mode (ACM)", "pt": "Modo de controle de administrador simples (ACM)", "xloc": [ - "default.handlebars->23->985", - "default.handlebars->23->1011" + "default.handlebars->23->1011", + "default.handlebars->23->985" ] }, { @@ -13761,9 +13761,9 @@ "nl": "Simple Client Control Mode (CCM)", "pt": "Modo de Controle de Cliente Simples (CCM)", "xloc": [ - "default.handlebars->23->983", "default.handlebars->23->1014", - "default.handlebars->23->1018" + "default.handlebars->23->1018", + "default.handlebars->23->983" ] }, { @@ -13847,14 +13847,14 @@ "nl": "Slaapstand", "pt": "Hibernar", "xloc": [ - "default.handlebars->23->2", - "default.handlebars->23->3", - "default.handlebars->23->4", - "default.handlebars->23->525", "default-mobile.handlebars->9->101", "default-mobile.handlebars->9->102", "default-mobile.handlebars->9->103", - "default-mobile.handlebars->9->207" + "default-mobile.handlebars->9->207", + "default.handlebars->23->2", + "default.handlebars->23->3", + "default.handlebars->23->4", + "default.handlebars->23->525" ] }, { @@ -13877,10 +13877,10 @@ "nl": "Slapen", "pt": "Hibernando", "xloc": [ - "default.handlebars->23->352", - "default.handlebars->23->354", "default-mobile.handlebars->9->108", - "default-mobile.handlebars->9->109" + "default-mobile.handlebars->9->109", + "default.handlebars->23->352", + "default.handlebars->23->354" ] }, { @@ -13916,8 +13916,8 @@ "nl": "Traag", "pt": "Lento", "xloc": [ - "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->7->d7framelimiter->5", - "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->7->d7framelimiter->5" + "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->7->d7framelimiter->5", + "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->7->d7framelimiter->5" ] }, { @@ -13963,8 +13963,8 @@ "nl": "softwarematig uit", "pt": "Soft-Off", "xloc": [ - "default.handlebars->23->360", - "default-mobile.handlebars->9->112" + "default-mobile.handlebars->9->112", + "default.handlebars->23->360" ] }, { @@ -14022,10 +14022,10 @@ "nl": "Sorteren op datum", "pt": "Classificar por data", "xloc": [ - "default.handlebars->container->column_l->p5->p5toolbar->1->2->p5filesubhead->1->p5sortdropdown->5", - "default.handlebars->container->column_l->p13->p13toolbar->1->4->1->1->p13sortdropdown->5", + "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->4->1->1->1->0->3->p13sortdropdown->5", "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->2->1->1->1->0->3->p5sortdropdown->5", - "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->4->1->1->1->0->3->p13sortdropdown->5" + "default.handlebars->container->column_l->p13->p13toolbar->1->4->1->1->p13sortdropdown->5", + "default.handlebars->container->column_l->p5->p5toolbar->1->2->p5filesubhead->1->p5sortdropdown->5" ] }, { @@ -14037,12 +14037,12 @@ "nl": "Sorteren op naam", "pt": "Classificar por nome", "xloc": [ - "default.handlebars->container->column_l->p5->p5toolbar->1->2->p5filesubhead->1->p5sortdropdown->1", + "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->4->1->1->1->0->3->p13sortdropdown->1", + "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->2->1->1->1->0->3->p5sortdropdown->1", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsServiceTab->deskToolsServiceHeader", "default.handlebars->container->column_l->p13->p13toolbar->1->4->1->1->p13sortdropdown->1", - "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->2->1->1->1->0->3->p5sortdropdown->1", - "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->4->1->1->1->0->3->p13sortdropdown->1" + "default.handlebars->container->column_l->p5->p5toolbar->1->2->p5filesubhead->1->p5sortdropdown->1" ] }, { @@ -14066,10 +14066,10 @@ "nl": "Sorteren op grootte", "pt": "Classificar por tamanho", "xloc": [ - "default.handlebars->container->column_l->p5->p5toolbar->1->2->p5filesubhead->1->p5sortdropdown->3", - "default.handlebars->container->column_l->p13->p13toolbar->1->4->1->1->p13sortdropdown->3", + "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->4->1->1->1->0->3->p13sortdropdown->3", "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->2->1->1->1->0->3->p5sortdropdown->3", - "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->4->1->1->1->0->3->p13sortdropdown->3" + "default.handlebars->container->column_l->p13->p13toolbar->1->4->1->1->p13sortdropdown->3", + "default.handlebars->container->column_l->p5->p5toolbar->1->2->p5filesubhead->1->p5sortdropdown->3" ] }, { @@ -14313,8 +14313,8 @@ "nl": "Speciale toetsen", "pt": "Chaves especiais", "xloc": [ - "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea4->1->3", - "default-mobile.handlebars->9->230" + "default-mobile.handlebars->9->230", + "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea4->1->3" ] }, { @@ -14337,8 +14337,8 @@ "nl": "Status", "pt": "Estado", "xloc": [ - "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsServiceTab->deskToolsServiceHeader->1", - "default.handlebars->23->594" + "default.handlebars->23->594", + "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsServiceTab->deskToolsServiceHeader->1" ] }, { @@ -14361,8 +14361,8 @@ "nl": "Status", "pt": "Status", "xloc": [ - "default.handlebars->container->column_l->p42->p42tbl->1->0->7", - "default.handlebars->23->1332" + "default.handlebars->23->1332", + "default.handlebars->container->column_l->p42->p42tbl->1->0->7" ] }, { @@ -14385,8 +14385,8 @@ "nl": "Stop process #{0} \\\"{1}\\\"?", "pt": "Parar processo #{0} \\\"{1}\\\"?", "xloc": [ - "default.handlebars->23->609", - "default-mobile.handlebars->9->235" + "default-mobile.handlebars->9->235", + "default.handlebars->23->609" ] }, { @@ -14432,10 +14432,10 @@ "nl": "Sterk wachtwoord", "pt": "Senha forte", "xloc": [ - "login.handlebars->5->20", - "login.handlebars->5->24", "login-mobile.handlebars->5->20", - "login-mobile.handlebars->5->24" + "login-mobile.handlebars->5->24", + "login.handlebars->5->20", + "login.handlebars->5->24" ] }, { @@ -14538,12 +14538,12 @@ "nl": "DE SOFTWARE WORDT \"ALS ZODANIG\" GELEVERD, ZONDER ENIGE VORM VAN GARANTIE, UITDRUKKELIJK OF IMPLICIET, INCLUSIEF MAAR NIET BEPERKT TOT DE GARANTIES VAN VERKOOPBAARHEID, GESCHIKTHEID VOOR EEN BEPAALD DOEL EN NIET-INBREUK. IN GEEN GEVAL ZULLEN DE AUTEURS OF AUTEURSRECHTHOUDERS AANSPRAKELIJK ZIJN VOOR ENIGE CLAIM, SCHADE OF ANDERE AANSPRAKELIJKHEID, OOK IN EEN HANDELING VAN CONTRACT, SCHORT OF ANDERSZINS DIE VOORTVLOEIEN UIT, IN OF IN VERBAND MET DE SOFTWARE OF HET GEBRUIK OF ANDERE HANDELINGEN IN DE SOFTWARE.", "pt": "O SOFTWARE É FORNECIDO \"TAL COMO ESTÁ\", SEM GARANTIA DE QUALQUER TIPO, EXPRESSA OU IMPLÍCITA, INCLUINDO MAS NÃO SE LIMITANDO A GARANTIAS DE COMERCIALIZAÇÃO, ADEQUAÇÃO A UMA FINALIDADE ESPECÍFICA E NÃO INFRACÇÃO. EM NENHUM CASO OS AUTORES OU TITULARES DE DIREITOS AUTORAIS RESPONSABILIZARÃO POR QUALQUER REIVINDICAÇÃO, DANOS OU OUTRA RESPONSABILIDADE, SEJA EM AÇÃO DE CONTRATO, TORT OU OUTRA FORMA, DECORRENTE DE, FORA OU EM CONEXÃO COM O SOFTWARE OU O USO OU OUTROS NEGÓCIOS NO PROGRAMAS.", "xloc": [ - "terms.handlebars->container->column_l->49->1", - "terms.handlebars->container->column_l->57->1", - "terms.handlebars->container->column_l->71->1", "terms-mobile.handlebars->container->page_content->column_l->49->1", "terms-mobile.handlebars->container->page_content->column_l->57->1", - "terms-mobile.handlebars->container->page_content->column_l->71->1" + "terms-mobile.handlebars->container->page_content->column_l->71->1", + "terms.handlebars->container->column_l->49->1", + "terms.handlebars->container->column_l->57->1", + "terms.handlebars->container->column_l->71->1" ] }, { @@ -14553,8 +14553,8 @@ "nl": "DEZE SOFTWARE WORDT GELEVERD DOOR DE AUTEURSRECHTHOUDERS EN BIJDRAGERS \"ALS ZODANIG\" EN ENIGE EXPLICIETE OF IMPLICIETE GARANTIES, INCLUSIEF, MAAR NIET BEPERKT TOT, DE IMPLICIETE GARANTIES VAN VERKOOPBAARHEID EN GESCHIKTHEID VOOR EEN BEPAALD DOEL. IN GEEN GEVAL ZULLEN DE EIGENAAR VAN HET AUTEURSRECHT OF DE BIJDRAGERS AANSPRAKELIJK ZIJN VOOR ENIGE DIRECTE, INDIRECTE, INCIDENTELE, SPECIALE, UITZONDERLIJKE OF GEVOLGSCHADE (INCLUSIEF, MAAR NIET BEPERKT TOT, AANSCHAF VAN VERVANGENDE GOEDEREN OF DIENSTEN; VERLIES VAN GEBRUIK, GEGEVENS OF GEGEVENS; OF ONDERBREKING VAN HET BEDRIJF) EVENWEL VEROORZAAKT EN OP ENIGE AANSPRAAK VAN AANSPRAKELIJKHEID, OF IN CONTRACT, STRIKTE AANSPRAKELIJKHEID OF STORT (INCLUSIEF NALATIGHEID OF ANDERSZINS) DIE VOORTVLOEIT OP ENIGE MANIER UIT HET GEBRUIK VAN DEZE SOFTWARE, ZELFS ALS GEADVISEERD VAN DE MOGELIJKHEID.", "pt": "ESTE SOFTWARE É FORNECIDO PELOS TITULARES DE DIREITOS AUTORAIS E CONTRIBUIDORES \"TAL COMO ESTÁ\" E QUALQUER GARANTIA EXPRESSA OU IMPLÍCITA, INCLUINDO, MAS NÃO SE LIMITANDO A, AS GARANTIAS IMPLÍCITAS DE COMERCIALIZAÇÃO E ADEQUAÇÃO A UM PROPÓSITO ESPECÍFICO. EM NENHUM CASO O DIVISOR DE DIREITOS AUTORAIS OU OS CONTRIBUIDORES SERÃO RESPONSÁVEIS POR QUALQUER DANO DIRETO, INDIRETO, INCIDENTAL, ESPECIAL, EXEMPLAR OU CONSEQÜENCIAL (INCLUINDO, MAS NÃO SE LIMITANDO A, PROCURAÇÃO DE BENS OU SERVIÇOS SUBSTITUTOS; PERDA DE USO, DADOS, LUCROS DE USO); OU INTERRUPÇÃO DE NEGÓCIOS), CAUSADA E QUALQUER TEORIA DE RESPONSABILIDADE, CONTRATADA, RESPONSABILIDADE ESTIMATIVA OU ATRIBUIÇÃO (INCLUINDO NEGLIGÊNCIA OU DE OUTRA FORMA), surgindo de qualquer maneira fora do uso deste software, mesmo que seja aconselhável a possibilidade de tal conteúdo.", "xloc": [ - "terms.handlebars->container->column_l->21->1", - "terms-mobile.handlebars->container->page_content->column_l->21->1" + "terms-mobile.handlebars->container->page_content->column_l->21->1", + "terms.handlebars->container->column_l->21->1" ] }, { @@ -14563,8 +14563,8 @@ "nl": "DEZE SOFTWARE WORDT GELEVERD DOOR HET OpenSSL-PROJECT `` ZOALS HET IS '' EN ELKE UITDRUKKELIJKE OF IMPLICIETE GARANTIES, INCLUSIEF MAAR NIET BEPERKT TOT DE IMPLICIETE GARANTIES VAN VERKOOPBAARHEID EN GESCHIKTHEID VOOR EEN BEPAALD DOEL WORDEN AFGEWEZEN. IN GEEN GEVAL ZAL HET PROJECT VAN DE OpenSSL OF HAAR BIJDRAGERS AANSPRAKELIJK ZIJN VOOR ENIGE DIRECTE, INDIRECTE, INCIDENTELE, SPECIALE, UITZONDERLIJKE OF GEVOLGSCHADE (INCLUSIEF, MAAR SPECIALE, UITZONDERLIJKE OF GEVOLGSCHADE (INCLUSIEF, MAAR NIET BEPERKT TOT SCHULDEN) OF DIENSTEN; VERLIES VAN GEBRUIK, GEGEVENS OF WINST; OF ONDERBREKING VAN HET BEDRIJF) EVENWEL OORZAAKT EN OP ENIGE AANSPRAAK VAN AANSPRAKELIJKHEID, OF IN CONTRACT, STRIKTE AANSPRAKELIJKHEID, OF TORT (INCLUSIEF NALATIGHEID OF ANDERSZINS) DIE OP ENIGE MANIER UIT DE GEBRUIKSVOORWAARDEN ONTSTAAN SOFTWARE, ZELFS INDIEN GEADVISEERD DOOR DE MOGELIJKHEID VAN DERGELIJKE SCHADE.", "pt": "ESTE SOFTWARE É FORNECIDO PELO PROJETO OpenSSL `` COMO ESTÁ '' E QUALQUER GARANTIA EXPRESSA OU IMPLÍCITA, INCLUINDO, MAS NÃO SE LIMITANDO A, AS GARANTIAS IMPLÍCITAS DE COMERCIALIZAÇÃO E ADEQUAÇÃO A UMA FINALIDADE ESPECÍFICA. EM NENHUM CASO O PROJETO OpenSSL OU SEUS CONTRIBUIDORES SERÃO RESPONSÁVEIS POR QUALQUER DANO DIRETO, INDIRETO, INCIDENTAL, ESPECIAL, EXEMPLAR OU CONSEQÜENCIAL (INCLUINDO DANOS ESPECIAIS, EXEMPLARES OU CONSEQÜENCIAIS (INCLUINDO, PROCESSOS, MAS NÃO LIMITADOS OU SERVIÇOS; PERDA DE USO, DADOS OU LUCROS; OU INTERRUPÇÃO DE NEGÓCIOS), CAUSADOS E QUALQUER TEORIA DE RESPONSABILIDADE, CONTRATOS, RESPONSABILIDADE ESTIMATIVA OU ATORT (INCLUINDO NEGLIGÊNCIA OU DE OUTRA FORMA) QUE POSSUEM DE QUALQUER FORMA DESTE USO SOFTWARE, MESMO SE AVISADO DA POSSIBILIDADE DE TAIS DANOS.", "xloc": [ - "terms.handlebars->container->column_l->43->1", - "terms-mobile.handlebars->container->page_content->column_l->43->1" + "terms-mobile.handlebars->container->page_content->column_l->43->1", + "terms.handlebars->container->column_l->43->1" ] }, { @@ -14576,8 +14576,8 @@ "nl": "TLS", "pt": "TLS", "xloc": [ - "default.handlebars->23->454", - "default-mobile.handlebars->9->183" + "default-mobile.handlebars->9->183", + "default.handlebars->23->454" ] }, { @@ -14589,9 +14589,9 @@ "nl": "TLS beveiliging vereist", "pt": "Segurança TLS necessária", "xloc": [ + "default-mobile.handlebars->9->216", "default.handlebars->23->246", - "default.handlebars->23->539", - "default-mobile.handlebars->9->216" + "default.handlebars->23->539" ] }, { @@ -14623,11 +14623,11 @@ "nl": "Tags", "pt": "Tags", "xloc": [ - "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->7", - "default.handlebars->23->576", "default-mobile.handlebars->9->197", "default-mobile.handlebars->9->198", - "default-mobile.handlebars->9->225" + "default-mobile.handlebars->9->225", + "default.handlebars->23->576", + "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->7" ] }, { @@ -14672,10 +14672,10 @@ "nl": "Terminal", "pt": "Terminal", "xloc": [ - "default.handlebars->contextMenu->cxterminal", - "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevTerminal", + "default.handlebars->23->1048", "default.handlebars->23->410", - "default.handlebars->23->1048" + "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevTerminal", + "default.handlebars->contextMenu->cxterminal" ] }, { @@ -14722,8 +14722,8 @@ "xloc": [ "default.handlebars->container->footer->3->3", "download.handlebars->container->page_content->footer->1->1->0->3->1", - "login.handlebars->container->footer->3->1", "login-mobile.handlebars->container->footer->1->1->0->3->1", + "login.handlebars->container->footer->3->1", "message.handlebars->container->page_content->footer->1->1->0->3->1" ] }, @@ -14736,8 +14736,8 @@ "nl": "Gebruiksvoorwaarden", "pt": "Termos de uso", "xloc": [ - "terms.handlebars->container->column_l->1", - "terms-mobile.handlebars->container->page_content->column_l->1" + "terms-mobile.handlebars->container->page_content->column_l->1", + "terms.handlebars->container->column_l->1" ] }, { @@ -14758,8 +14758,8 @@ "nl": "Hierna volgen de vereiste informatie over open source-componenten en software die in deze software is opgenomen.", "pt": "A seguir, são apresentadas as divulgações necessárias de componentes e software de código aberto incorporados neste software.", "xloc": [ - "terms.handlebars->container->column_l->7", - "terms-mobile.handlebars->container->page_content->column_l->7" + "terms-mobile.handlebars->container->page_content->column_l->7", + "terms.handlebars->container->column_l->7" ] }, { @@ -14828,8 +14828,8 @@ "nl": "Dit account heeft niet de rechten om een nieuwe apparaatgroep te maken.", "pt": "Esta conta não tem direitos para criar um novo grupo de dispositivos.", "xloc": [ - "default.handlebars->23->924", - "default-mobile.handlebars->9->51" + "default-mobile.handlebars->9->51", + "default.handlebars->23->924" ] }, { @@ -14851,8 +14851,8 @@ "nl": "", "pt": "Esta página não existe", "xloc": [ - "error404.handlebars->container->column_l->3", - "error404-mobile.handlebars->container->page_content->column_l->3" + "error404-mobile.handlebars->container->page_content->column_l->3", + "error404.handlebars->container->column_l->3" ] }, { @@ -14873,8 +14873,8 @@ "nl": "Deze software bestaat uit vrijwillige bijdragen van veel personen (AUTHORS.txt, http://jqueryui.com/about ). Voor de exacte contributiegeschiedenis, zie de revisiegeschiedenis en logboeken, beschikbaar op http://jquery-ui.googlecode.com/svn/", "pt": "Este software consiste em contribuições voluntárias feitas por muitos indivíduos (AUTORES.txt, http://jqueryui.com/about ). Para obter o histórico exato de contribuições, consulte o histórico de revisões e os logs, disponíveis em http://jquery-ui.googlecode.com/svn/", "xloc": [ - "terms.handlebars->container->column_l->55->1", - "terms-mobile.handlebars->container->page_content->column_l->55->1" + "terms-mobile.handlebars->container->page_content->column_l->55->1", + "terms.handlebars->container->column_l->55->1" ] }, { @@ -14884,8 +14884,8 @@ "nl": "Deze software maakt gebruik van code van", "pt": "Este software usa código de", "xloc": [ - "terms.handlebars->container->column_l->75->1", - "terms-mobile.handlebars->container->page_content->column_l->75->1" + "terms-mobile.handlebars->container->page_content->column_l->75->1", + "terms.handlebars->container->column_l->75->1" ] }, { @@ -15335,14 +15335,14 @@ "nl": "Type", "pt": "Tipo", "xloc": [ - "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3", + "default-mobile.handlebars->9->279", + "default-mobile.handlebars->9->57", + "default.handlebars->23->1012", + "default.handlebars->23->1015", "default.handlebars->23->601", "default.handlebars->23->931", "default.handlebars->23->960", - "default.handlebars->23->1012", - "default.handlebars->23->1015", - "default-mobile.handlebars->9->57", - "default-mobile.handlebars->9->279" + "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3" ] }, { @@ -15410,8 +15410,8 @@ "nl": "Geen toegang tot een apparaat totdat een e-mailadres is geverifieerd. Dit is vereist voor wachtwoordherstel. Ga naar de \\\"Mijn account\\\" om een e-mailadres te wijzigen en te verifiëren.", "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 \\\"Minha conta\\\" para alterar e verificar um endereço de email.", "xloc": [ - "default-mobile.handlebars->9->53", - "default-mobile.handlebars->9->130" + "default-mobile.handlebars->9->130", + "default-mobile.handlebars->9->53" ] }, { @@ -15422,8 +15422,8 @@ "nl": "Geen toegang tot een apparaat totdat tweefactorauthenticatie is ingeschakeld. Dit is vereist voor extra beveiliging. Ga naar de \\\"Mijn account\\\" en bekijk het gedeelte \\\"Accountbeveiliging\\\".", "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 \\\"Minha conta\\\" e veja a seção \\\"Segurança da conta\\\".", "xloc": [ - "default-mobile.handlebars->9->55", - "default-mobile.handlebars->9->132" + "default-mobile.handlebars->9->132", + "default-mobile.handlebars->9->55" ] }, { @@ -15446,8 +15446,8 @@ "nl": "Kan geen websocket aansluiten", "pt": "Não foi possível conectar o soquete da web", "xloc": [ - "default.handlebars->23->48", - "default-mobile.handlebars->9->8" + "default-mobile.handlebars->9->8", + "default.handlebars->23->48" ] }, { @@ -15457,8 +15457,8 @@ "ja": "アカウントを作成できません。", "nl": "Kan geen account maken.", "xloc": [ - "login.handlebars->5->2", - "login-mobile.handlebars->5->2" + "login-mobile.handlebars->5->2", + "login.handlebars->5->2" ] }, { @@ -15469,8 +15469,8 @@ "nl": "Kan authenticatie niet uitvoeren", "pt": "Não foi possível executar a autenticação", "xloc": [ - "default.handlebars->23->47", - "default-mobile.handlebars->9->7" + "default-mobile.handlebars->9->7", + "default.handlebars->23->47" ] }, { @@ -15491,8 +15491,8 @@ "ja": "メールを送信できません。", "nl": "Kan geen e-mail verzenden.", "xloc": [ - "login.handlebars->5->11", - "login-mobile.handlebars->5->11" + "login-mobile.handlebars->5->11", + "login.handlebars->5->11" ] }, { @@ -15502,8 +15502,8 @@ "ja": "アンインストール", "nl": "deinstallatie", "xloc": [ - "default.handlebars->23->1105", - "default-mobile.handlebars->9->326" + "default-mobile.handlebars->9->326", + "default.handlebars->23->1105" ] }, { @@ -15513,10 +15513,10 @@ "ja": "エージェントのアンインストール", "nl": "deinstallatie agent", "xloc": [ - "default.handlebars->23->384", - "default.handlebars->23->529", + "default-mobile.handlebars->9->308", "default.handlebars->23->1082", - "default-mobile.handlebars->9->308" + "default.handlebars->23->384", + "default.handlebars->23->529" ] }, { @@ -15538,17 +15538,17 @@ "nl": "Onbekend", "pt": "Desconhecido", "xloc": [ - "default.handlebars->23->13", - "default.handlebars->23->41", - "default.handlebars->23->42", - "default.handlebars->23->108", - "default.handlebars->23->109", - "default.handlebars->23->380", - "default.handlebars->23->1357", "default-mobile.handlebars->9->126", "default-mobile.handlebars->9->143", "default-mobile.handlebars->9->171", - "default-mobile.handlebars->9->172" + "default-mobile.handlebars->9->172", + "default.handlebars->23->108", + "default.handlebars->23->109", + "default.handlebars->23->13", + "default.handlebars->23->1357", + "default.handlebars->23->380", + "default.handlebars->23->41", + "default.handlebars->23->42" ] }, { @@ -15560,8 +15560,8 @@ "nl": "Onbekend #{0}", "pt": "Desconhecido # {0}", "xloc": [ - "default.handlebars->23->954", - "default-mobile.handlebars->9->273" + "default-mobile.handlebars->9->273", + "default.handlebars->23->954" ] }, { @@ -15602,8 +15602,8 @@ "nl": "Onbekende staat", "pt": "Estado desconhecido", "xloc": [ - "default.handlebars->23->446", - "default-mobile.handlebars->9->178" + "default-mobile.handlebars->9->178", + "default.handlebars->23->446" ] }, { @@ -15623,8 +15623,8 @@ "nl": "Onbekende versie en staat", "pt": "Estado da versão desconhecida", "xloc": [ - "default.handlebars->23->448", - "default-mobile.handlebars->9->180" + "default-mobile.handlebars->9->180", + "default.handlebars->23->448" ] }, { @@ -15650,11 +15650,11 @@ "nl": "Omhoog", "pt": "Acima", "xloc": [ - "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", - "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", - "default.handlebars->container->dialog->dialogBody->dialog3->d3servermode->d3serveraction", + "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1", "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1", - "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1" + "default.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->dialogBody->dialog3->d3servermode->d3serveraction" ] }, { @@ -15676,10 +15676,10 @@ "nl": "Uploaden", "pt": "Envio", "xloc": [ - "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", - "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", + "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->3", "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->3", - "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->3" + "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", + "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3" ] }, { @@ -15690,15 +15690,15 @@ "nl": "Upload bestand", "pt": "Subir arquivo", "xloc": [ - "default.handlebars->container->dialog->dialogBody->dialog3->d3localmode->1", + "default-mobile.handlebars->9->253", + "default-mobile.handlebars->9->271", + "default-mobile.handlebars->9->85", + "default.handlebars->23->1157", + "default.handlebars->23->1165", "default.handlebars->23->636", "default.handlebars->23->659", "default.handlebars->23->662", - "default.handlebars->23->1157", - "default.handlebars->23->1165", - "default-mobile.handlebars->9->85", - "default-mobile.handlebars->9->253", - "default-mobile.handlebars->9->271" + "default.handlebars->container->dialog->dialogBody->dialog3->d3localmode->1" ] }, { @@ -15750,8 +15750,8 @@ "en": "Upload will overwrite 1 file. Continue?", "nl": "Upload overschrijft {0} bestand. Doorgaan?", "xloc": [ - "default.handlebars->23->660", - "default.handlebars->23->1166" + "default.handlebars->23->1166", + "default.handlebars->23->660" ] }, { @@ -15759,8 +15759,8 @@ "en": "Upload will overwrite {0} files. Continue?", "nl": "Upload overschrijft {0} bestanden. Doorgaan?", "xloc": [ - "default.handlebars->23->661", - "default.handlebars->23->1167" + "default.handlebars->23->1167", + "default.handlebars->23->661" ] }, { @@ -15801,8 +15801,8 @@ "ja": "セキュリティキーを使用", "nl": "Gebruik beveiligingssleutel", "xloc": [ - "login.handlebars->container->column_l->centralTable->1->0->logincell->tokenpanel->1->7->1->4->1->3", - "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3" + "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3", + "login.handlebars->container->column_l->centralTable->1->0->logincell->tokenpanel->1->7->1->4->1->3" ] }, { @@ -15838,11 +15838,11 @@ "nl": "Gebruiker", "pt": "Do utilizador", "xloc": [ - "default.handlebars->23->200", + "default-mobile.handlebars->9->328", "default.handlebars->23->1009", "default.handlebars->23->1193", "default.handlebars->23->1266", - "default-mobile.handlebars->9->328" + "default.handlebars->23->200" ] }, { @@ -15887,8 +15887,8 @@ "nl": "Gebruikersautorisaties", "pt": "Autorizações de usuário", "xloc": [ - "default.handlebars->23->1004", - "default-mobile.handlebars->9->281" + "default-mobile.handlebars->9->281", + "default.handlebars->23->1004" ] }, { @@ -16058,10 +16058,10 @@ "nl": "Gebruikersnaam", "pt": "Nome de usuário", "xloc": [ + "default-mobile.handlebars->9->212", "default.handlebars->23->241", "default.handlebars->23->271", "default.handlebars->23->535", - "default-mobile.handlebars->9->212", "player.htm->3->4" ] }, @@ -16073,8 +16073,8 @@ "ja": "ユーザー名は既に存在します。", "nl": "Gebruikersnaam bestaat al.", "xloc": [ - "login.handlebars->5->6", - "login-mobile.handlebars->5->6" + "login-mobile.handlebars->5->6", + "login.handlebars->5->6" ] }, { @@ -16086,10 +16086,10 @@ "nl": "Gebruikersnaam:", "pt": "Nome de usuário:", "xloc": [ - "login.handlebars->container->column_l->centralTable->1->0->logincell->loginpanel->1->7->1->0->loginusername", - "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->nuUserRow->nuUser", + "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->nuUserRow->1", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->loginpanel->1->7->1->0->loginusername", - "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->nuUserRow->1" + "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->nuUserRow->nuUser", + "login.handlebars->container->column_l->centralTable->1->0->logincell->loginpanel->1->7->1->0->loginusername" ] }, { @@ -16101,10 +16101,10 @@ "nl": "Gebruikers", "pt": "Usuários", "xloc": [ - "default.handlebars->container->topbar->1->1->UsersSubMenuSpan->UsersSubMenu->1->0->UsersGeneral", "default.handlebars->23->1248", "default.handlebars->23->1259", - "default.handlebars->23->1403" + "default.handlebars->23->1403", + "default.handlebars->container->topbar->1->1->UsersSubMenuSpan->UsersSubMenu->1->0->UsersGeneral" ] }, { @@ -16172,8 +16172,8 @@ "nl": "Verifieer Email", "pt": "Verificar email", "xloc": [ - "default.handlebars->container->column_l->p2->p2AccountActions->3->verifyEmailId->0", - "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->7->1->verifyEmailId->0" + "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->7->1->verifyEmailId->0", + "default.handlebars->container->column_l->p2->p2AccountActions->3->verifyEmailId->0" ] }, { @@ -16185,10 +16185,10 @@ "nl": "Versie", "pt": "Versão", "xloc": [ - "default.handlebars->container->column_l->p42->p42tbl->1->0->5", "default.handlebars->23->68", "default.handlebars->23->73", - "default.handlebars->23->81" + "default.handlebars->23->81", + "default.handlebars->container->column_l->p42->p42tbl->1->0->5" ] }, { @@ -16200,8 +16200,8 @@ "nl": "erg traag", "pt": "Muito devagar", "xloc": [ - "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->7->d7framelimiter->7", - "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->7->d7framelimiter->7" + "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->7->d7framelimiter->7", + "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->7->d7framelimiter->7" ] }, { @@ -16302,10 +16302,10 @@ "nl": "apparaat wekken", "pt": "Reativar dispositivo", "xloc": [ - "default.handlebars->23->1078", - "default.handlebars->23->1096", "default-mobile.handlebars->9->304", - "default-mobile.handlebars->9->317" + "default-mobile.handlebars->9->317", + "default.handlebars->23->1078", + "default.handlebars->23->1096" ] }, { @@ -16316,8 +16316,8 @@ "nl": "Wakker worden", "pt": "Ligar", "xloc": [ - "default.handlebars->23->524", - "default-mobile.handlebars->9->206" + "default-mobile.handlebars->9->206", + "default.handlebars->23->524" ] }, { @@ -16363,10 +16363,10 @@ "nl": "Zwak wachtwoord", "pt": "Senha fraca", "xloc": [ - "login.handlebars->5->22", - "login.handlebars->5->26", "login-mobile.handlebars->5->22", - "login-mobile.handlebars->5->26" + "login-mobile.handlebars->5->26", + "login.handlebars->5->22", + "login.handlebars->5->26" ] }, { @@ -16462,8 +16462,8 @@ "nl": "Win", "pt": "Win", "xloc": [ - "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3->deskkeys->3", - "default-mobile.handlebars->dialog->3->dialog3->deskkeys->5" + "default-mobile.handlebars->dialog->3->dialog3->deskkeys->5", + "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3->deskkeys->3" ] }, { @@ -16474,8 +16474,8 @@ "nl": "Win+pijl naar omlaag", "pt": "Win+Down", "xloc": [ - "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3->deskkeys->5", - "default-mobile.handlebars->dialog->3->dialog3->deskkeys->7" + "default-mobile.handlebars->dialog->3->dialog3->deskkeys->7", + "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3->deskkeys->5" ] }, { @@ -16486,8 +16486,8 @@ "nl": "Win+L", "pt": "Win+L", "xloc": [ - "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3->deskkeys->9", - "default-mobile.handlebars->dialog->3->dialog3->deskkeys->11" + "default-mobile.handlebars->dialog->3->dialog3->deskkeys->11", + "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3->deskkeys->9" ] }, { @@ -16509,8 +16509,8 @@ "nl": "Win+M", "pt": "Win+M", "xloc": [ - "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3->deskkeys->11", - "default-mobile.handlebars->dialog->3->dialog3->deskkeys->13" + "default-mobile.handlebars->dialog->3->dialog3->deskkeys->13", + "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3->deskkeys->11" ] }, { @@ -16521,8 +16521,8 @@ "nl": "Win+R", "pt": "Win+R", "xloc": [ - "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3->deskkeys->15", - "default-mobile.handlebars->dialog->3->dialog3->deskkeys->17" + "default-mobile.handlebars->dialog->3->dialog3->deskkeys->17", + "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3->deskkeys->15" ] }, { @@ -16544,8 +16544,8 @@ "nl": "Win+ pijl omhoog", "pt": "Win+Up", "xloc": [ - "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3->deskkeys->7", - "default-mobile.handlebars->dialog->3->dialog3->deskkeys->9" + "default-mobile.handlebars->dialog->3->dialog3->deskkeys->9", + "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3->deskkeys->7" ] }, { @@ -16634,8 +16634,8 @@ "nl": "Windows 32bit console", "pt": "Windows 32 Bits console", "xloc": [ - "default.handlebars->23->14", - "default-mobile.handlebars->9->144" + "default-mobile.handlebars->9->144", + "default.handlebars->23->14" ] }, { @@ -16646,8 +16646,8 @@ "nl": "Windows 32bit service", "pt": "Serviço Windows 32 Bits", "xloc": [ - "default.handlebars->23->16", - "default-mobile.handlebars->9->146" + "default-mobile.handlebars->9->146", + "default.handlebars->23->16" ] }, { @@ -16669,8 +16669,8 @@ "nl": "Windows 64bit console", "pt": "Windows 64 Bits console", "xloc": [ - "default.handlebars->23->15", - "default-mobile.handlebars->9->145" + "default-mobile.handlebars->9->145", + "default.handlebars->23->15" ] }, { @@ -16681,8 +16681,8 @@ "nl": "Windows 64bit service", "pt": "Serviço Windows 64 Bits", "xloc": [ - "default.handlebars->23->17", - "default-mobile.handlebars->9->147" + "default-mobile.handlebars->9->147", + "default.handlebars->23->17" ] }, { @@ -16693,8 +16693,8 @@ "nl": "Windows MinCore console", "pt": "Windows MinCore console", "xloc": [ - "default.handlebars->23->34", - "default-mobile.handlebars->9->164" + "default-mobile.handlebars->9->164", + "default.handlebars->23->34" ] }, { @@ -16705,8 +16705,8 @@ "nl": "Windows MinCore service", "pt": "Windows MinCore service", "xloc": [ - "default.handlebars->23->35", - "default-mobile.handlebars->9->165" + "default-mobile.handlebars->9->165", + "default.handlebars->23->35" ] }, { @@ -16776,10 +16776,10 @@ "nl": "X", "pt": "X", "xloc": [ - "default.handlebars->container->column_l->p1->xdevicesmap->xmapSearchResultsDlg->xmapSearchResultsBck->xmapSearchClose->0", "default-mobile.handlebars->dialog->1->id_dialogclose->0", - "login.handlebars->dialog->dialogHeader->id_dialogclose->0", - "login-mobile.handlebars->dialog->1->id_dialogclose->0" + "default.handlebars->container->column_l->p1->xdevicesmap->xmapSearchResultsDlg->xmapSearchResultsBck->xmapSearchClose->0", + "login-mobile.handlebars->dialog->1->id_dialogclose->0", + "login.handlebars->dialog->dialogHeader->id_dialogclose->0" ] }, { @@ -16790,8 +16790,8 @@ "nl": "XENx86", "pt": "XENx86", "xloc": [ - "default.handlebars->23->21", - "default-mobile.handlebars->9->151" + "default-mobile.handlebars->9->151", + "default.handlebars->23->21" ] }, { @@ -16960,8 +16960,8 @@ "nl": "en de bron kan worden gedownload van", "pt": "e sua fonte pode ser baixada de", "xloc": [ - "terms.handlebars->container->column_l->75->1", - "terms-mobile.handlebars->container->page_content->column_l->75->1" + "terms-mobile.handlebars->container->page_content->column_l->75->1", + "terms.handlebars->container->column_l->75->1" ] }, { @@ -16983,8 +16983,8 @@ "nl": "klik om opnieuw verbinding te maken", "pt": "clique para reconectar", "xloc": [ - "default.handlebars->container->column_l->p0->p0message->2->0", - "default-mobile.handlebars->container->page_content->column_l->p0->1->p0message->2->0" + "default-mobile.handlebars->container->page_content->column_l->p0->1->p0message->2->0", + "default.handlebars->container->column_l->p0->p0message->2->0" ] }, { @@ -17005,8 +17005,8 @@ "nl": "kopieren", "pt": "Copiar", "xloc": [ - "default.handlebars->23->1162", - "default-mobile.handlebars->9->89" + "default-mobile.handlebars->9->89", + "default.handlebars->23->1162" ] }, { @@ -17077,8 +17077,8 @@ "nl": "http://creativecommons.org/licenses/by/2.0/uk/legalcode", "pt": "http://creativecommons.org/licenses/by/2.0/uk/legalcode", "xloc": [ - "terms.handlebars->container->column_l->75->1->3", - "terms-mobile.handlebars->container->page_content->column_l->75->1->3" + "terms-mobile.handlebars->container->page_content->column_l->75->1->3", + "terms.handlebars->container->column_l->75->1->3" ] }, { @@ -17088,8 +17088,8 @@ "nl": "http://jquery.com/", "pt": "http://jquery.com/", "xloc": [ - "terms.handlebars->container->column_l->47->1->1", - "terms-mobile.handlebars->container->page_content->column_l->47->1->1" + "terms-mobile.handlebars->container->page_content->column_l->47->1->1", + "terms.handlebars->container->column_l->47->1->1" ] }, { @@ -17099,8 +17099,8 @@ "nl": "http://jqueryui.com/", "pt": "http://jqueryui.com/", "xloc": [ - "terms.handlebars->container->column_l->53->1->1", - "terms-mobile.handlebars->container->page_content->column_l->53->1->1" + "terms-mobile.handlebars->container->page_content->column_l->53->1->1", + "terms.handlebars->container->column_l->53->1->1" ] }, { @@ -17110,8 +17110,8 @@ "nl": "http://www.openssl.org/source/license.html", "pt": "http://www.openssl.org/source/license.html", "xloc": [ - "terms.handlebars->container->column_l->25->1->0", - "terms-mobile.handlebars->container->page_content->column_l->25->1->0" + "terms-mobile.handlebars->container->page_content->column_l->25->1->0", + "terms.handlebars->container->column_l->25->1->0" ] }, { @@ -17121,10 +17121,10 @@ "nl": "http://www.webtoolkit.info/javascript-base64.html", "pt": "http://www.webtoolkit.info/javascript-base64.html", "xloc": [ - "terms.handlebars->container->column_l->75->1->1", - "terms.handlebars->container->column_l->75->1->5", "terms-mobile.handlebars->container->page_content->column_l->75->1->1", - "terms-mobile.handlebars->container->page_content->column_l->75->1->5" + "terms-mobile.handlebars->container->page_content->column_l->75->1->5", + "terms.handlebars->container->column_l->75->1->1", + "terms.handlebars->container->column_l->75->1->5" ] }, { @@ -17134,8 +17134,8 @@ "nl": "https://github.com/kanaka/noVNC/blob/master/LICENSE.txt", "pt": "https://github.com/kanaka/noVNC/blob/master/LICENSE.txt", "xloc": [ - "terms.handlebars->container->column_l->61->1->0", - "terms-mobile.handlebars->container->page_content->column_l->61->1->0" + "terms-mobile.handlebars->container->page_content->column_l->61->1->0", + "terms.handlebars->container->column_l->61->1->0" ] }, { @@ -17145,8 +17145,8 @@ "nl": "https://github.com/ryrych/rcarousel/blob/master/widget/license", "pt": "https://github.com/ryrych/rcarousel/blob/master/widget/license", "xloc": [ - "terms.handlebars->container->column_l->67->1->0", - "terms-mobile.handlebars->container->page_content->column_l->67->1->0" + "terms-mobile.handlebars->container->page_content->column_l->67->1->0", + "terms.handlebars->container->column_l->67->1->0" ] }, { @@ -17173,8 +17173,8 @@ "nl": "onder licentie van de", "pt": "licenciado sob o", "xloc": [ - "terms.handlebars->container->column_l->75->1", - "terms-mobile.handlebars->container->page_content->column_l->75->1" + "terms-mobile.handlebars->container->page_content->column_l->75->1", + "terms.handlebars->container->column_l->75->1" ] }, { @@ -17185,8 +17185,8 @@ "nl": "verplaatsen", "pt": "Mover", "xloc": [ - "default.handlebars->23->1163", - "default-mobile.handlebars->9->90" + "default-mobile.handlebars->9->90", + "default.handlebars->23->1163" ] }, { @@ -17388,8 +17388,8 @@ "nl": "{0} bytes", "pt": "{0} bytes", "xloc": [ - "default.handlebars->23->1150", - "default-mobile.handlebars->9->78" + "default-mobile.handlebars->9->78", + "default.handlebars->23->1150" ] }, { @@ -17461,8 +17461,8 @@ "nl": "{0} kleine letters", "pt": "{0} letras minúsculas", "xloc": [ - "login.handlebars->5->31", - "login-mobile.handlebars->5->31" + "login-mobile.handlebars->5->31", + "login.handlebars->5->31" ] }, { @@ -17523,8 +17523,8 @@ "nl": "{0} niet-alfanumeriek", "pt": "{0} não alfanumérico", "xloc": [ - "login.handlebars->5->33", - "login-mobile.handlebars->5->33" + "login-mobile.handlebars->5->33", + "login.handlebars->5->33" ] }, { @@ -17535,8 +17535,8 @@ "nl": "{0} numeriek", "pt": "{0} numérico", "xloc": [ - "login.handlebars->5->32", - "login-mobile.handlebars->5->32" + "login-mobile.handlebars->5->32", + "login.handlebars->5->32" ] }, { @@ -17607,8 +17607,8 @@ "nl": "{0} hoofdletters", "pt": "{0} maiúsculas", "xloc": [ - "login.handlebars->5->30", - "login-mobile.handlebars->5->30" + "login-mobile.handlebars->5->30", + "login.handlebars->5->30" ] }, { @@ -17730,10 +17730,10 @@ "nl": "◀", "pt": "◀", "xloc": [ - "default-mobile.handlebars->container->page_content->column_l->p3->1->1->0->1->3", - "default-mobile.handlebars->container->page_content->column_l->p5->1->1->0->1->3", "default-mobile.handlebars->container->page_content->column_l->p10->1->1->0->1->3", - "default-mobile.handlebars->container->page_content->column_l->p20->1->1->0->1->3" + "default-mobile.handlebars->container->page_content->column_l->p20->1->1->0->1->3", + "default-mobile.handlebars->container->page_content->column_l->p3->1->1->0->1->3", + "default-mobile.handlebars->container->page_content->column_l->p5->1->1->0->1->3" ] }, { @@ -17759,11 +17759,11 @@ "nl": "✓", "pt": "✓", "xloc": [ + "default.handlebars->container->column_l->p13->p13filetable->p13bigok->0", "default.handlebars->container->column_l->p2->p2AccountSecurity->3->manageAuthApp->0->authAppSetupCheck->0", "default.handlebars->container->column_l->p2->p2AccountSecurity->3->manageHardwareOtp->0->authKeySetupCheck->0", "default.handlebars->container->column_l->p2->p2AccountSecurity->3->manageOtp->0->authCodesSetupCheck->0", "default.handlebars->container->column_l->p5->p5filetable->bigok->0", - "default.handlebars->container->column_l->p13->p13filetable->p13bigok->0", "player.htm->p11->deskarea0->deskarea3x->bigok->0" ] }, @@ -17788,8 +17788,8 @@ "nl": "✗", "pt": "✗", "xloc": [ - "default.handlebars->container->column_l->p5->p5filetable->bigfail->0", "default.handlebars->container->column_l->p13->p13filetable->p13bigfail->0", + "default.handlebars->container->column_l->p5->p5filetable->bigfail->0", "player.htm->p11->deskarea0->deskarea3x->bigfail->0" ] }