From 2e81ba0bf979e367cc87e23630b8df3cc7ee2c4e Mon Sep 17 00:00:00 2001 From: Ylian Saint-Hilaire Date: Mon, 23 Dec 2019 14:25:27 -0800 Subject: [PATCH] Improved internalization. --- .gitignore | 6 + agents/meshcore.min.js | 4 +- meshuser.js | 72 +- package.json | 2 +- translate/translate.js | 19 +- translate/translate.json | 2066 ++++++++++-------- views/default-min.handlebars | 72 +- views/default.handlebars | 72 +- views/translations/default-min_cs.handlebars | 72 +- views/translations/default-min_fr.handlebars | 72 +- views/translations/default-min_ja.handlebars | 72 +- views/translations/default-min_nl.handlebars | 72 +- views/translations/default-min_pt.handlebars | 72 +- views/translations/default_cs.handlebars | 72 +- views/translations/default_fr.handlebars | 72 +- views/translations/default_ja.handlebars | 72 +- views/translations/default_nl.handlebars | 72 +- views/translations/default_pt.handlebars | 72 +- 18 files changed, 1805 insertions(+), 1228 deletions(-) diff --git a/.gitignore b/.gitignore index 5b91b9ba..5c7e698d 100644 --- a/.gitignore +++ b/.gitignore @@ -5,6 +5,12 @@ [Dd]aemon/ [Bb]in/ [Aa]gent/ +[Aa]gents/modules_meshcmd_min/ +[Aa]gents/modules_meshcore_min/ +[Aa]gents/meshcmd.min.js +[Aa]gents/meshcore.min.js +[Pu]ublic/translations/ +[Vv]iews/translations/ meshcentral.db meshcentral.db.json mesherrors.txt diff --git a/agents/meshcore.min.js b/agents/meshcore.min.js index c6873489..73ab3b43 100644 --- a/agents/meshcore.min.js +++ b/agents/meshcore.min.js @@ -1211,9 +1211,9 @@ function createMeshCore(agent) { var setupcommands = " alias ls='ls --color=auto'\n"; if (shell == sh) setupcommands += "stty erase ^H\n" - if (script && shell) { + if (script && shell && process.platform == 'linux') { this.httprequest.process = childProcess.execFile(script, ['script', '--return', '--quiet', '-c', '"' + shell + '"', '/dev/null'], options); // Start as active user - if (process.platform == 'linux') { this.httprequest.process.stdin.write(setupcommands); } + this.httprequest.process.stdin.write(setupcommands); } else if (python && shell) { this.httprequest.process = childProcess.execFile(python, ['python', '-c', 'import pty; pty.spawn(["' + shell + '"])'], options); // Start as active user if (process.platform == 'linux') { this.httprequest.process.stdin.write(setupcommands); } diff --git a/meshuser.js b/meshuser.js index 842c55cc..d9e8dfee 100644 --- a/meshuser.js +++ b/meshuser.js @@ -288,40 +288,66 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use // Take a look at server stats var os = require('os'); var stats = { action: 'serverstats', totalmem: os.totalmem(), freemem: os.freemem() }; - if (parent.parent.platform != 'win32') { stats.cpuavg = os.loadavg(); } // else { stats.cpuavg = [ 0.2435345, 0.523234234, 0.6435345345 ]; } + if (parent.parent.platform != 'win32') { stats.cpuavg = os.loadavg(); } var serverStats = { - "User Accounts": Object.keys(parent.users).length, - "Device Groups": Object.keys(parent.meshes).length, - "Agent Sessions": Object.keys(parent.wsagents).length, - "Connected Users": Object.keys(parent.wssessions).length, - "Users Sessions": Object.keys(parent.wssessions2).length, - "Relay Sessions": parent.relaySessionCount, - "Relay Count": Object.keys(parent.wsrelays).length + UserAccounts: Object.keys(parent.users).length, + DeviceGroups: Object.keys(parent.meshes).length, + AgentSessions: Object.keys(parent.wsagents).length, + ConnectedUsers: Object.keys(parent.wssessions).length, + UsersSessions: Object.keys(parent.wssessions2).length, + RelaySessions: parent.relaySessionCount, + RelayCount: Object.keys(parent.wsrelays).length }; - if (parent.relaySessionErrorCount != 0) { serverStats['Relay Errors'] = parent.relaySessionErrorCount; } - if (parent.parent.mpsserver != null) { serverStats['Connected Intel® AMT'] = Object.keys(parent.parent.mpsserver.ciraConnections).length; } + if (parent.relaySessionErrorCount != 0) { serverStats.RelayErrors = parent.relaySessionErrorCount; } + if (parent.parent.mpsserver != null) { serverStats.ConnectedIntelAMT = Object.keys(parent.parent.mpsserver.ciraConnections).length; } // Take a look at agent errors var agentstats = parent.getAgentStats(); var errorCounters = {}, errorCountersCount = 0; - if (agentstats.meshDoesNotExistCount > 0) { errorCountersCount++; errorCounters["Unknown Group"] = agentstats.meshDoesNotExistCount; } - if (agentstats.invalidPkcsSignatureCount > 0) { errorCountersCount++; errorCounters["Invalid PKCS signature"] = agentstats.invalidPkcsSignatureCount; } - if (agentstats.invalidRsaSignatureCount > 0) { errorCountersCount++; errorCounters["Invalid RSA siguature"] = agentstats.invalidRsaSignatureCount; } - if (agentstats.invalidJsonCount > 0) { errorCountersCount++; errorCounters["Invalid JSON"] = agentstats.invalidJsonCount; } - if (agentstats.unknownAgentActionCount > 0) { errorCountersCount++; errorCounters["Unknown Action"] = agentstats.unknownAgentActionCount; } - if (agentstats.agentBadWebCertHashCount > 0) { errorCountersCount++; errorCounters["Bad Web Certificate"] = agentstats.agentBadWebCertHashCount; } - if ((agentstats.agentBadSignature1Count + agentstats.agentBadSignature2Count) > 0) { errorCountersCount++; errorCounters["Bad Signature"] = (agentstats.agentBadSignature1Count + agentstats.agentBadSignature2Count); } - if (agentstats.agentMaxSessionHoldCount > 0) { errorCountersCount++; errorCounters["Max Sessions Reached"] = agentstats.agentMaxSessionHoldCount; } - if ((agentstats.invalidDomainMeshCount + agentstats.invalidDomainMesh2Count) > 0) { errorCountersCount++; errorCounters["Unknown Device Group"] = (agentstats.invalidDomainMeshCount + agentstats.invalidDomainMesh2Count); } - if ((agentstats.invalidMeshTypeCount + agentstats.invalidMeshType2Count) > 0) { errorCountersCount++; errorCounters["Invalid Device Group Type"] = (agentstats.invalidMeshTypeCount + agentstats.invalidMeshType2Count); } - //if (agentstats.duplicateAgentCount > 0) { errorCountersCount++; errorCounters["Duplicate Agent"] = agentstats.duplicateAgentCount; } + if (agentstats.meshDoesNotExistCount > 0) { errorCountersCount++; errorCounters.UnknownGroup = agentstats.meshDoesNotExistCount; } + if (agentstats.invalidPkcsSignatureCount > 0) { errorCountersCount++; errorCounters.InvalidPKCSsignature = agentstats.invalidPkcsSignatureCount; } + if (agentstats.invalidRsaSignatureCount > 0) { errorCountersCount++; errorCounters.InvalidRSAsiguature = agentstats.invalidRsaSignatureCount; } + if (agentstats.invalidJsonCount > 0) { errorCountersCount++; errorCounters.InvalidJSON = agentstats.invalidJsonCount; } + if (agentstats.unknownAgentActionCount > 0) { errorCountersCount++; errorCounters.UnknownAction = agentstats.unknownAgentActionCount; } + if (agentstats.agentBadWebCertHashCount > 0) { errorCountersCount++; errorCounters.BadWebCertificate = agentstats.agentBadWebCertHashCount; } + if ((agentstats.agentBadSignature1Count + agentstats.agentBadSignature2Count) > 0) { errorCountersCount++; errorCounters.BadSignature = (agentstats.agentBadSignature1Count + agentstats.agentBadSignature2Count); } + if (agentstats.agentMaxSessionHoldCount > 0) { errorCountersCount++; errorCounters.MaxSessionsReached = agentstats.agentMaxSessionHoldCount; } + if ((agentstats.invalidDomainMeshCount + agentstats.invalidDomainMesh2Count) > 0) { errorCountersCount++; errorCounters.UnknownDeviceGroup = (agentstats.invalidDomainMeshCount + agentstats.invalidDomainMesh2Count); } + if ((agentstats.invalidMeshTypeCount + agentstats.invalidMeshType2Count) > 0) { errorCountersCount++; errorCounters.InvalidDeviceGroupType = (agentstats.invalidMeshTypeCount + agentstats.invalidMeshType2Count); } + //if (agentstats.duplicateAgentCount > 0) { errorCountersCount++; errorCounters.DuplicateAgent = agentstats.duplicateAgentCount; } // Send out the stats - stats.values = { "Server State": serverStats } - if (errorCountersCount > 0) { stats.values["Agent Error Counters"] = errorCounters; } + stats.values = { ServerState: serverStats } + if (errorCountersCount > 0) { stats.values.AgentErrorCounters = errorCounters; } try { ws.send(JSON.stringify(stats)); } catch (ex) { } } + // + var serverStatsStrings = { + ServerState: "Server State", + AgentErrorCounters: "Agent Error Counters", + UnknownGroup: "Unknown Group", + InvalidPKCSsignature: "Invalid PKCS signature", + InvalidRSAsiguature: "Invalid RSA siguature", + InvalidJSON: "Invalid JSON", + UnknownAction: "Unknown Action", + BadWebCertificate: "Bad Web Certificate", + BadSignature: "Bad Signature", + MaxSessionsReached: "Max Sessions Reached", + UnknownDeviceGroup: "Unknown Device Group", + InvalidDeviceGroupType: "Invalid Device Group Type", + DuplicateAgent: "Duplicate Agent", + ConnectedIntelAMT: "Connected Intel® AMT", + RelayErrors: "Relay Errors", + UserAccounts: "User Accounts", + DeviceGroups: "Device Groups", + AgentSessions: "Agent Sessions", + ConnectedUsers: "Connected Users", + UsersSessions: "Users Sessions", + RelaySessions: "Relay Sessions", + RelayCount: "Relay Count" + }; + // When data is received from the web socket ws.on('message', processWebSocketData); diff --git a/package.json b/package.json index e88adfa9..6334e90d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "meshcentral", - "version": "0.4.6-j", + "version": "0.4.6-k", "keywords": [ "Remote Management", "Intel AMT", diff --git a/translate/translate.js b/translate/translate.js index a6c8a46f..da4168e3 100644 --- a/translate/translate.js +++ b/translate/translate.js @@ -235,22 +235,28 @@ function totext(source, target, lang) { // Generate raw text var output = []; + var outputCharCount = 0; // Google has a 5000 character limit var splitOutput = []; + var splitOutputPtr = 1; var count = 0; for (var i in sourceLangFileData.strings) { if ((sourceLangFileData.strings[i][lang] != null) && (sourceLangFileData.strings[i][lang].indexOf('\r') == -1) && (sourceLangFileData.strings[i][lang].indexOf('\n') == -1)) { output.push(sourceLangFileData.strings[i][lang]); - if (splitOutput[Math.floor(count / 1000) + 1] == null) { splitOutput[Math.floor(count / 1000) + 1] = []; } - splitOutput[Math.floor(count / 1000) + 1].push(sourceLangFileData.strings[i][lang]); + outputCharCount += (sourceLangFileData.strings[i][lang].length + 2); + if (outputCharCount > 4500) { outputCharCount = 0; splitOutputPtr++; } + if (splitOutput[splitOutputPtr] == null) { splitOutput[splitOutputPtr] = []; } + splitOutput[splitOutputPtr].push(sourceLangFileData.strings[i][lang]); } else { output.push(''); - if (splitOutput[Math.floor(count / 1000) + 1] == null) { splitOutput[Math.floor(count / 1000) + 1] = []; } - splitOutput[Math.floor(count / 1000) + 1].push(''); + outputCharCount += 2; + if (outputCharCount > 4500) { outputCharCount = 0; splitOutputPtr++; } + if (splitOutput[splitOutputPtr] == null) { splitOutput[splitOutputPtr] = []; } + splitOutput[splitOutputPtr].push(''); } count++; } - if (output.length <= 1000) { + if (splitOutputPtr == 1) { // Save the target back fs.writeFileSync(target + '-' + lang + '.txt', output.join('\r\n'), { flag: 'w+' }); console.log('Done.'); @@ -376,7 +382,8 @@ function extract(langFile, sources) { for (var i in sourceStrings) { count++; sourceStrings[i]['en'] = i; - if ((sourceStrings[i].xloc != null) && (sourceStrings[i].xloc.length > 0)) { output.push(sourceStrings[i]); } // Only save results that have a source location. + //if ((sourceStrings[i].xloc != null) && (sourceStrings[i].xloc.length > 0)) { output.push(sourceStrings[i]); } // Only save results that have a source location. + output.push(sourceStrings[i]); // Save all results } fs.writeFileSync(langFile, JSON.stringify({ 'strings': output }, null, ' '), { flag: 'w+' }); console.log(format("{0} strings in output file.", count)); diff --git a/translate/translate.json b/translate/translate.json index ff8e95dc..2954ebdf 100644 --- a/translate/translate.json +++ b/translate/translate.json @@ -40,8 +40,8 @@ "cs": " + CIRA", "nl": " + CIRA", "xloc": [ - "default.handlebars->23->971", - "default.handlebars->23->973" + "default.handlebars->23->975", + "default.handlebars->23->977" ] }, { @@ -167,7 +167,7 @@ "ja": " パスワードヒントは使用できますが、推奨されません。", "nl": " Een wachtwoord hint kan gebruikt worden maar wordt afgeraden", "xloc": [ - "default.handlebars->23->903" + "default.handlebars->23->907" ] }, { @@ -178,7 +178,7 @@ "ja": " ユーザーは、デバイスグループに追加する前にこのサーバーに1回ログインする必要があります。", "nl": " Gebruikers moeten inloggen bij de server voordat ze kunnen worden toegevoegd aan een apparaatgroep.", "xloc": [ - "default.handlebars->23->1043" + "default.handlebars->23->1049" ] }, { @@ -252,7 +252,7 @@ "ja": "*空白のままにして、各デバイスにランダムなパスワードを割り当てます。", "nl": "* Laat leeg om een willekeurig wachtwoord toe te wijzen aan elk apparaat.", "xloc": [ - "default.handlebars->23->1020" + "default.handlebars->23->1024" ] }, { @@ -273,7 +273,7 @@ "cs": ", ", "nl": ", ", "xloc": [ - "default.handlebars->23->1086", + "default.handlebars->23->1092", "default-mobile.handlebars->9->327" ] }, @@ -306,7 +306,7 @@ "ja": "、MQTTはオンラインです", "nl": ", MQTT is online", "xloc": [ - "default.handlebars->23->656" + "default.handlebars->23->660" ] }, { @@ -337,7 +337,7 @@ "cs": ", Soft-KVM", "nl": ", Soft-KVM", "xloc": [ - "default.handlebars->23->568" + "default.handlebars->23->572" ] }, { @@ -347,9 +347,9 @@ "cs": ", WebRTC", "nl": ", WebRTC", "xloc": [ - "default.handlebars->23->569", - "default.handlebars->23->600", - "default.handlebars->23->612", + "default.handlebars->23->573", + "default.handlebars->23->604", + "default.handlebars->23->616", "default-mobile.handlebars->9->225", "default-mobile.handlebars->9->235" ] @@ -389,9 +389,9 @@ "cs": "...", "nl": "...", "xloc": [ - "default.handlebars->23->614", - "default.handlebars->23->1104", - "default.handlebars->23->1262", + "default.handlebars->23->618", + "default.handlebars->23->1114", + "default.handlebars->23->1277", "default-mobile.handlebars->9->64", "default-mobile.handlebars->9->240" ] @@ -414,7 +414,7 @@ "ja": "1つのアクティブなセッション", "nl": "1 actieve sessie", "xloc": [ - "default.handlebars->23->1248" + "default.handlebars->23->1261" ] }, { @@ -425,7 +425,7 @@ "ja": "1バイト", "nl": "1 byte", "xloc": [ - "default.handlebars->23->1121", + "default.handlebars->23->1131", "default-mobile.handlebars->9->74", "default-mobile.handlebars->9->331" ] @@ -451,7 +451,7 @@ "ja": "1グループ", "nl": "1 groep", "xloc": [ - "default.handlebars->23->1234" + "default.handlebars->23->1245" ] }, { @@ -486,7 +486,7 @@ "ja": "さらに1人のユーザーが表示されていません。検索ボックスを使用してユーザーを検索してください...", "nl": "1 gebruiker niet getoond, gebruik de zoekfunctie om gebruikers te vinden...", "xloc": [ - "default.handlebars->23->1154" + "default.handlebars->23->1165" ] }, { @@ -508,7 +508,7 @@ "ja": "1セッション", "nl": "1 sessie", "xloc": [ - "default.handlebars->23->1158" + "default.handlebars->23->1169" ] }, { @@ -838,7 +838,7 @@ "ja": "7日間の電源状態", "nl": "7 dagen stroom status", "xloc": [ - "default.handlebars->23->522" + "default.handlebars->23->526" ] }, { @@ -975,7 +975,7 @@ "ja": "アクセスが拒否されました", "nl": "Toegang geweigerd", "xloc": [ - "default.handlebars->23->657" + "default.handlebars->23->661" ] }, { @@ -995,7 +995,7 @@ "ja": "サーバーファイルへのアクセス", "nl": "Toegang tot de server bestanden", "xloc": [ - "default.handlebars->23->1215" + "default.handlebars->23->1226" ] }, { @@ -1087,10 +1087,10 @@ "ja": "アカウントのセキュリティ", "nl": "Gebruikersaccount beveiliging", "xloc": [ - "default.handlebars->23->413", - "default.handlebars->23->415", - "default.handlebars->23->912", - "default.handlebars->23->914", + "default.handlebars->23->417", + "default.handlebars->23->419", + "default.handlebars->23->916", + "default.handlebars->23->918", "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->1->0", "default-mobile.handlebars->9->49", "default-mobile.handlebars->9->51", @@ -1105,7 +1105,7 @@ "cs": "ACM", "nl": "ACM", "xloc": [ - "default.handlebars->23->440", + "default.handlebars->23->444", "default-mobile.handlebars->9->179" ] }, @@ -1117,7 +1117,7 @@ "nl": "Actie", "xloc": [ "default.handlebars->container->column_l->p42->p42tbl->1->0->8", - "default.handlebars->23->662" + "default.handlebars->23->666" ] }, { @@ -1130,7 +1130,7 @@ "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->472", + "default.handlebars->23->476", "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" ] @@ -1165,8 +1165,8 @@ "ja": "有効化", "nl": "Geactiveerd", "xloc": [ - "default.handlebars->23->433", - "default.handlebars->23->435", + "default.handlebars->23->437", + "default.handlebars->23->439", "default-mobile.handlebars->9->174", "default-mobile.handlebars->9->176" ] @@ -1180,8 +1180,8 @@ "xloc": [ "default.handlebars->23->224", "default.handlebars->23->226", - "default.handlebars->23->983", - "default.handlebars->23->985" + "default.handlebars->23->987", + "default.handlebars->23->989" ] }, { @@ -1191,7 +1191,7 @@ "ja": "アクティブユーザー{0}", "nl": "Actieve gebruikers{0}", "xloc": [ - "default.handlebars->23->459" + "default.handlebars->23->463" ] }, { @@ -1202,7 +1202,7 @@ "nl": "Voeg een nieuwe computer toe aan deze mesh door de mesh-agent te installeren.", "xloc": [ "default.handlebars->23->227", - "default.handlebars->23->986" + "default.handlebars->23->990" ] }, { @@ -1223,7 +1223,7 @@ "nl": "Voeg een nieuwe Intel® AMT computer toe welke zich op het internet bevind.", "xloc": [ "default.handlebars->23->217", - "default.handlebars->23->978" + "default.handlebars->23->982" ] }, { @@ -1234,7 +1234,7 @@ "nl": "Voeg een nieuwe Intel® AMT computer toe welke zich op het lokale netwerk bevind.", "xloc": [ "default.handlebars->23->219", - "default.handlebars->23->980" + "default.handlebars->23->984" ] }, { @@ -1277,7 +1277,7 @@ "ja": "デバイスイベントを追加", "nl": "Apparaatgebeurtenis toevoegen", "xloc": [ - "default.handlebars->23->505" + "default.handlebars->23->509" ] }, { @@ -1365,8 +1365,8 @@ "default.handlebars->23->143", "default.handlebars->23->146", "default.handlebars->23->147", - "default.handlebars->23->681", - "default.handlebars->23->682" + "default.handlebars->23->685", + "default.handlebars->23->686" ] }, { @@ -1388,7 +1388,7 @@ "ja": "ユーザーを追加", "nl": "Gebruikers toevoegen", "xloc": [ - "default.handlebars->23->977" + "default.handlebars->23->981" ] }, { @@ -1398,7 +1398,7 @@ "ja": "ユーザーをデバイスグループに追加する", "nl": "Gebruikers toevoegen aan apparaatgroep", "xloc": [ - "default.handlebars->23->1063" + "default.handlebars->23->1069" ] }, { @@ -1448,7 +1448,7 @@ "ja": "管理レルム", "nl": "Beheerdersgebied", "xloc": [ - "default.handlebars->23->1238" + "default.handlebars->23->1249" ] }, { @@ -1458,7 +1458,7 @@ "ja": "管理レルム", "nl": "Administratieve gebieden", "xloc": [ - "default.handlebars->23->1202" + "default.handlebars->23->1213" ] }, { @@ -1468,7 +1468,7 @@ "cs": "Administrátor", "nl": "Beheerder", "xloc": [ - "default.handlebars->23->1165" + "default.handlebars->23->1176" ] }, { @@ -1478,7 +1478,7 @@ "cs": "Afrikaans", "nl": "Afrikaans", "xloc": [ - "default.handlebars->23->684" + "default.handlebars->23->688" ] }, { @@ -1492,8 +1492,8 @@ "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->1", "default.handlebars->23->178", "default.handlebars->23->365", - "default.handlebars->23->1092", - "default.handlebars->23->1098", + "default.handlebars->23->1102", + "default.handlebars->23->1108", "default-mobile.handlebars->9->118", "default-mobile.handlebars->9->171", "default-mobile.handlebars->9->187" @@ -1517,8 +1517,8 @@ "nl": "Agent verbonden", "xloc": [ "default.handlebars->23->149", - "default.handlebars->23->496", - "default.handlebars->23->497" + "default.handlebars->23->500", + "default.handlebars->23->501" ] }, { @@ -1528,7 +1528,7 @@ "ja": "エージェントコンソール", "nl": "Agent console", "xloc": [ - "default.handlebars->23->1070", + "default.handlebars->23->1076", "default-mobile.handlebars->9->312" ] }, @@ -1549,7 +1549,7 @@ "ja": "エージェントはオフラインです", "nl": "Agent is offline", "xloc": [ - "default.handlebars->23->655" + "default.handlebars->23->659" ] }, { @@ -1559,7 +1559,7 @@ "ja": "エージェントはオンラインです", "nl": "Agent is online", "xloc": [ - "default.handlebars->23->654" + "default.handlebars->23->658" ] }, { @@ -1590,7 +1590,7 @@ "cs": "Značka agenta", "nl": "Agent Tag", "xloc": [ - "default.handlebars->23->452", + "default.handlebars->23->456", "default-mobile.handlebars->9->186" ] }, @@ -1601,7 +1601,7 @@ "ja": "エージェント", "nl": "Agents", "xloc": [ - "default.handlebars->23->1276" + "default.handlebars->23->1314" ] }, { @@ -1611,7 +1611,7 @@ "cs": "Albanian", "nl": "Albanees", "xloc": [ - "default.handlebars->23->685" + "default.handlebars->23->689" ] }, { @@ -1644,9 +1644,9 @@ "cs": "Zaměřit vše", "nl": "All Focus", "xloc": [ - "default.handlebars->23->570", - "default.handlebars->23->572", - "default.handlebars->23->573" + "default.handlebars->23->574", + "default.handlebars->23->576", + "default.handlebars->23->577" ] }, { @@ -1657,7 +1657,7 @@ "cs": "Umožnit uživatelům spravovat tuto skupinu a zařízení v této skupině.", "nl": "Gebruikers toestaan deze apparaatgroep en apparaten in deze groep te beheren.", "xloc": [ - "default.handlebars->23->1042" + "default.handlebars->23->1048" ] }, { @@ -1689,7 +1689,7 @@ "cs": "Nebo (F10 = ESC+0)", "nl": "Alternatief (F10 = ESC + 0)", "xloc": [ - "default.handlebars->23->605" + "default.handlebars->23->609" ] }, { @@ -1700,7 +1700,7 @@ "cs": "Vždy upozorňovat", "nl": "Altijd informeren", "xloc": [ - "default.handlebars->23->960" + "default.handlebars->23->964" ] }, { @@ -1710,7 +1710,7 @@ "cs": "Vždy se dotázat", "nl": "Altijd prompt", "xloc": [ - "default.handlebars->23->961" + "default.handlebars->23->965" ] }, { @@ -1776,7 +1776,7 @@ "cs": "Antivir", "nl": "Anti-virus", "xloc": [ - "default.handlebars->23->458" + "default.handlebars->23->462" ] }, { @@ -1826,7 +1826,7 @@ "cs": "Arabic (Algeria)", "nl": "Arabisch (Algerije)", "xloc": [ - "default.handlebars->23->687" + "default.handlebars->23->691" ] }, { @@ -1836,7 +1836,7 @@ "cs": "Arabic (Bahrain)", "nl": "Arabisch (Bahrein)", "xloc": [ - "default.handlebars->23->688" + "default.handlebars->23->692" ] }, { @@ -1846,7 +1846,7 @@ "cs": "Arabic (Egypt)", "nl": "Arabisch (Egypte)", "xloc": [ - "default.handlebars->23->689" + "default.handlebars->23->693" ] }, { @@ -1856,7 +1856,7 @@ "cs": "Arabic (Iraq)", "nl": "Arabisch (Irak)", "xloc": [ - "default.handlebars->23->690" + "default.handlebars->23->694" ] }, { @@ -1866,7 +1866,7 @@ "cs": "Arabic (Jordan)", "nl": "Arabisch (Jordanië)", "xloc": [ - "default.handlebars->23->691" + "default.handlebars->23->695" ] }, { @@ -1876,7 +1876,7 @@ "cs": "Arabic (Kuwait)", "nl": "Arabisch (Koeweit)", "xloc": [ - "default.handlebars->23->692" + "default.handlebars->23->696" ] }, { @@ -1886,7 +1886,7 @@ "cs": "Arabic (Lebanon)", "nl": "Arabisch (Libanon)", "xloc": [ - "default.handlebars->23->693" + "default.handlebars->23->697" ] }, { @@ -1896,7 +1896,7 @@ "cs": "Arabic (Libya)", "nl": "Arabisch (Libië)", "xloc": [ - "default.handlebars->23->694" + "default.handlebars->23->698" ] }, { @@ -1906,7 +1906,7 @@ "cs": "Arabic (Morocco)", "nl": "Arabisch (Marokko)", "xloc": [ - "default.handlebars->23->695" + "default.handlebars->23->699" ] }, { @@ -1916,7 +1916,7 @@ "cs": "Arabic (Oman)", "nl": "Arabisch (Oman)", "xloc": [ - "default.handlebars->23->696" + "default.handlebars->23->700" ] }, { @@ -1926,7 +1926,7 @@ "cs": "Arabic (Qatar)", "nl": "Arabisch (Qatar)", "xloc": [ - "default.handlebars->23->697" + "default.handlebars->23->701" ] }, { @@ -1936,7 +1936,7 @@ "cs": "Arabic (Saudi Arabia)", "nl": "Arabisch (Saoedi-Arabië)", "xloc": [ - "default.handlebars->23->698" + "default.handlebars->23->702" ] }, { @@ -1946,7 +1946,7 @@ "cs": "Arabic (Standard)", "nl": "Arabisch (Standaard)", "xloc": [ - "default.handlebars->23->686" + "default.handlebars->23->690" ] }, { @@ -1956,7 +1956,7 @@ "cs": "Arabic (Syria)", "nl": "Arabisch (Syrië)", "xloc": [ - "default.handlebars->23->699" + "default.handlebars->23->703" ] }, { @@ -1966,7 +1966,7 @@ "cs": "Arabic (Tunisia)", "nl": "Arabisch (Tunesië)", "xloc": [ - "default.handlebars->23->700" + "default.handlebars->23->704" ] }, { @@ -1976,7 +1976,7 @@ "cs": "Arabic (U.A.E.)", "nl": "Arabisch (Verenigde Arabische Emiraten.)", "xloc": [ - "default.handlebars->23->701" + "default.handlebars->23->705" ] }, { @@ -1986,7 +1986,7 @@ "cs": "Arabic (Yemen)", "nl": "Arabisch (Jemen)", "xloc": [ - "default.handlebars->23->702" + "default.handlebars->23->706" ] }, { @@ -1996,7 +1996,7 @@ "cs": "Aragonese", "nl": "Aragonese", "xloc": [ - "default.handlebars->23->703" + "default.handlebars->23->707" ] }, { @@ -2027,7 +2027,7 @@ "cs": "Opravdu smazat skupinu {0}? Smazáním skupiny se smažou všechny informace o zařízeních v této skupině.", "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.", "xloc": [ - "default.handlebars->23->1024", + "default.handlebars->23->1028", "default-mobile.handlebars->9->283" ] }, @@ -2039,7 +2039,7 @@ "cs": "Opravdu smazat nód {0}?", "nl": "Weet u zeker dat u apparaat {0} wilt verwijderen?", "xloc": [ - "default.handlebars->23->544" + "default.handlebars->23->548" ] }, { @@ -2048,7 +2048,7 @@ "cs": "Opravdu odinstalovat vybraného agenta?", "nl": "Weet u zeker dat u de geselecteerde agent wilt verwijderen?", "xloc": [ - "default.handlebars->23->533" + "default.handlebars->23->537" ] }, { @@ -2057,7 +2057,7 @@ "cs": "Opravdu odinstalovat vybraných {0} agentů?", "nl": "Weet u zeker dat u de geselecteerde {0} agenten wilt verwijderen?", "xloc": [ - "default.handlebars->23->532" + "default.handlebars->23->536" ] }, { @@ -2066,7 +2066,7 @@ "cs": "Opravdu {0} plugin: {1}", "nl": "Weet u zeker dat u de plug-in {0} wilt gebruiken: {1}", "xloc": [ - "default.handlebars->23->1307" + "default.handlebars->23->1349" ] }, { @@ -2087,7 +2087,7 @@ "cs": "Armenian", "nl": "Armeens", "xloc": [ - "default.handlebars->23->704" + "default.handlebars->23->708" ] }, { @@ -2130,7 +2130,7 @@ "cs": "Assamese", "nl": "Assamees", "xloc": [ - "default.handlebars->23->705" + "default.handlebars->23->709" ] }, { @@ -2140,7 +2140,7 @@ "cs": "Asturian", "nl": "Asturische", "xloc": [ - "default.handlebars->23->706" + "default.handlebars->23->710" ] }, { @@ -2150,7 +2150,7 @@ "cs": "Autentizační aplikace", "nl": "Verificatie-app", "xloc": [ - "default.handlebars->23->1239" + "default.handlebars->23->1250" ] }, { @@ -2162,8 +2162,8 @@ "xloc": [ "default.handlebars->23->117", "default.handlebars->23->122", - "default.handlebars->23->670", - "default.handlebars->23->672", + "default.handlebars->23->674", + "default.handlebars->23->676", "default-mobile.handlebars->9->15", "default-mobile.handlebars->9->18", "default-mobile.handlebars->9->27", @@ -2209,7 +2209,7 @@ "cs": "Automatické odstranění", "nl": "Geautomatiseerde verwijdering", "xloc": [ - "default.handlebars->23->948" + "default.handlebars->23->952" ] }, { @@ -2243,7 +2243,7 @@ "cs": "Azerbaijani", "nl": "Azerbeidzjaanse", "xloc": [ - "default.handlebars->23->707" + "default.handlebars->23->711" ] }, { @@ -2341,7 +2341,7 @@ "cs": "Záloha kódu", "nl": "Back-up codes", "xloc": [ - "default.handlebars->23->1241" + "default.handlebars->23->1252" ] }, { @@ -2351,7 +2351,7 @@ "cs": "Basque", "nl": "baskisch", "xloc": [ - "default.handlebars->23->708" + "default.handlebars->23->712" ] }, { @@ -2371,7 +2371,7 @@ "cs": "Belarusian", "nl": "Wit-Rusland", "xloc": [ - "default.handlebars->23->710" + "default.handlebars->23->714" ] }, { @@ -2381,7 +2381,7 @@ "cs": "Bengali", "nl": "Bengalees", "xloc": [ - "default.handlebars->23->711" + "default.handlebars->23->715" ] }, { @@ -2401,7 +2401,7 @@ "cs": "Bosnian", "nl": "Bosnisch", "xloc": [ - "default.handlebars->23->712" + "default.handlebars->23->716" ] }, { @@ -2411,7 +2411,7 @@ "cs": "Breton", "nl": "Breton", "xloc": [ - "default.handlebars->23->713" + "default.handlebars->23->717" ] }, { @@ -2432,7 +2432,7 @@ "cs": "Zaslat hromadnou zprávu všem připojeným uživatelům.", "nl": "Verzend een bericht naar alle verbonden gebruikers.", "xloc": [ - "default.handlebars->23->1187" + "default.handlebars->23->1198" ] }, { @@ -2443,7 +2443,7 @@ "cs": "Hromadná zpráva", "nl": "Bericht uitzenden", "xloc": [ - "default.handlebars->23->1188" + "default.handlebars->23->1199" ] }, { @@ -2453,7 +2453,7 @@ "cs": "Bulgarian", "nl": "Bulgaars", "xloc": [ - "default.handlebars->23->709" + "default.handlebars->23->713" ] }, { @@ -2463,7 +2463,7 @@ "cs": "Burmese", "nl": "Birmaans", "xloc": [ - "default.handlebars->23->714" + "default.handlebars->23->718" ] }, { @@ -2474,7 +2474,7 @@ "cs": "Chybová volání", "nl": "Oproepfout", "xloc": [ - "default.handlebars->23->1308" + "default.handlebars->23->1350" ] }, { @@ -2486,7 +2486,7 @@ "nl": "Afbreken", "xloc": [ "default.handlebars->container->dialog->idx_dlgButtonBar", - "default.handlebars->23->933", + "default.handlebars->23->937", "default-mobile.handlebars->dialog->idx_dlgButtonBar", "default-mobile.handlebars->9->38", "login.handlebars->dialog->idx_dlgButtonBar", @@ -2511,7 +2511,7 @@ "cs": "Catalan", "nl": "Catalaans", "xloc": [ - "default.handlebars->23->715" + "default.handlebars->23->719" ] }, { @@ -2521,7 +2521,7 @@ "cs": "CCM", "nl": "CCM", "xloc": [ - "default.handlebars->23->438", + "default.handlebars->23->442", "default-mobile.handlebars->9->178" ] }, @@ -2533,7 +2533,7 @@ "cs": "Vycentrovat mapu zde", "nl": "Centreer kaart hier", "xloc": [ - "default.handlebars->23->403" + "default.handlebars->23->408" ] }, { @@ -2543,7 +2543,7 @@ "cs": "Chamorro", "nl": "Chamorro", "xloc": [ - "default.handlebars->23->716" + "default.handlebars->23->720" ] }, { @@ -2553,7 +2553,7 @@ "ja": "メールアドレスを変更する", "nl": "Verander e-mailadres", "xloc": [ - "default.handlebars->container->column_l->p2->p2AccountActions->p2AccountPassActions->accountChangeEmailAddressSpan->0", + "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" ] }, @@ -2564,7 +2564,7 @@ "ja": "{0}のメールを変更", "nl": "Verander e-mail voor {0}", "xloc": [ - "default.handlebars->23->1252" + "default.handlebars->23->1265" ] }, { @@ -2574,9 +2574,9 @@ "ja": "グループを変更", "nl": "verander groep", "xloc": [ - "default.handlebars->23->479", - "default.handlebars->23->541", - "default.handlebars->23->542" + "default.handlebars->23->483", + "default.handlebars->23->545", + "default.handlebars->23->546" ] }, { @@ -2586,7 +2586,8 @@ "ja": "パスワードを変更する", "nl": "Verander wachtwoord", "xloc": [ - "default.handlebars->23->909", + "default.handlebars->23->913", + "default.handlebars->23->1260", "default-mobile.handlebars->9->46" ] }, @@ -2597,7 +2598,7 @@ "ja": "パスワードを変更する", "nl": "Verander wachtwoord", "xloc": [ - "default.handlebars->container->column_l->p2->p2AccountActions->p2AccountPassActions->3", + "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" ] }, @@ -2608,7 +2609,7 @@ "cs": "Změnit heslo pro {0}", "nl": "Verander wachtwoord voor {0}", "xloc": [ - "default.handlebars->23->1259" + "default.handlebars->23->1272" ] }, { @@ -2638,7 +2639,7 @@ "cs": "Změň si svůj email zde.", "nl": "Wijzig hier het e-mailadres van uw account.", "xloc": [ - "default.handlebars->23->896" + "default.handlebars->23->900" ] }, { @@ -2648,7 +2649,7 @@ "ja": "下のボックスに古いパスワードと新しいパスワードを2回入力して、アカウントのパスワードを変更します。", "nl": "Wijzig uw wachtwoord door het invoeren van het oude en het nieuwe wachtwoord twee keer in de vakken hieronder.", "xloc": [ - "default.handlebars->23->902" + "default.handlebars->23->906" ] }, { @@ -2658,7 +2659,7 @@ "cs": "Změna jazyka vyžaduje obnovení stránky.", "nl": "Als u de taal wilt wijzigen, moet de pagina worden vernieuwd.", "xloc": [ - "default.handlebars->23->881" + "default.handlebars->23->885" ] }, { @@ -2668,7 +2669,7 @@ "cs": "Chat", "nl": "Chat", "xloc": [ - "default.handlebars->23->1157" + "default.handlebars->23->1168" ] }, { @@ -2678,8 +2679,8 @@ "cs": "Chat & Upozornění", "nl": "Chat & Melden", "xloc": [ - "default.handlebars->23->1061", - "default.handlebars->23->1080", + "default.handlebars->23->1067", + "default.handlebars->23->1086", "default-mobile.handlebars->9->304", "default-mobile.handlebars->9->322" ] @@ -2691,7 +2692,7 @@ "cs": "Chechen", "nl": "Tsjetsjeense", "xloc": [ - "default.handlebars->23->717" + "default.handlebars->23->721" ] }, { @@ -2731,8 +2732,8 @@ "ja": "確認しています...", "nl": "Controleren...", "xloc": [ - "default.handlebars->23->683", - "default.handlebars->23->1304" + "default.handlebars->23->687", + "default.handlebars->23->1346" ] }, { @@ -2742,7 +2743,7 @@ "cs": "Chinese", "nl": "Chinees", "xloc": [ - "default.handlebars->23->718" + "default.handlebars->23->722" ] }, { @@ -2752,7 +2753,7 @@ "cs": "Chinese (Hong Kong)", "nl": "Chinees (Hong Kong)", "xloc": [ - "default.handlebars->23->719" + "default.handlebars->23->723" ] }, { @@ -2762,7 +2763,7 @@ "cs": "Chinese (PRC)", "nl": "Chinees (PRC)", "xloc": [ - "default.handlebars->23->720" + "default.handlebars->23->724" ] }, { @@ -2772,7 +2773,7 @@ "cs": "Chinese (Singapore)", "nl": "Chinees (Singapore)", "xloc": [ - "default.handlebars->23->721" + "default.handlebars->23->725" ] }, { @@ -2782,7 +2783,7 @@ "cs": "Chinese (Taiwan)", "nl": "Chinees (Taiwan)", "xloc": [ - "default.handlebars->23->722" + "default.handlebars->23->726" ] }, { @@ -2803,7 +2804,7 @@ "cs": "Chuvash", "nl": "Chuvash", "xloc": [ - "default.handlebars->23->723" + "default.handlebars->23->727" ] }, { @@ -2815,8 +2816,8 @@ "xloc": [ "default.handlebars->23->180", "default.handlebars->23->367", - "default.handlebars->23->1012", - "default.handlebars->23->1017", + "default.handlebars->23->1016", + "default.handlebars->23->1021", "default-mobile.handlebars->9->119" ] }, @@ -2827,7 +2828,7 @@ "cs": "CIRA Server", "nl": "CIRA Server", "xloc": [ - "default.handlebars->23->1298" + "default.handlebars->23->1340" ] }, { @@ -2837,7 +2838,7 @@ "cs": "CIRA Server příkazy", "nl": "CIRA Server opdrachten", "xloc": [ - "default.handlebars->23->1299" + "default.handlebars->23->1341" ] }, { @@ -2859,11 +2860,11 @@ "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->633", - "default.handlebars->23->635", "default.handlebars->23->637", "default.handlebars->23->639", - "default.handlebars->23->1136", + "default.handlebars->23->641", + "default.handlebars->23->643", + "default.handlebars->23->1146", "default-mobile.handlebars->9->25", "default-mobile.handlebars->9->88", "default-mobile.handlebars->9->259", @@ -2880,7 +2881,7 @@ "cs": "Vymazat jádro", "nl": "Maak de kern leeg", "xloc": [ - "default.handlebars->23->664" + "default.handlebars->23->668" ] }, { @@ -2920,7 +2921,7 @@ "cs": "Klikni zde pro úpravu server-side jména zařízení", "nl": "Klik hier om de apparaatnaam van de server te bewerken", "xloc": [ - "default.handlebars->23->418" + "default.handlebars->23->422" ] }, { @@ -2930,7 +2931,7 @@ "cs": "Klikni na OK pro zaslání verifikačního emailu na:", "nl": "Klik op OK om een verificatiebericht te sturen naar:", "xloc": [ - "default.handlebars->23->893", + "default.handlebars->23->897", "default-mobile.handlebars->9->31" ] }, @@ -2962,8 +2963,8 @@ "cs": "Vzdálený přístup iniciováný klientem", "nl": "Gebruiker geïnitieerde externe toegang", "xloc": [ - "default.handlebars->23->1011", - "default.handlebars->23->1016" + "default.handlebars->23->1015", + "default.handlebars->23->1020" ] }, { @@ -2985,7 +2986,7 @@ "xloc": [ "default.handlebars->23->129", "default.handlebars->23->137", - "default.handlebars->23->590", + "default.handlebars->23->594", "default-mobile.handlebars->9->23" ] }, @@ -3007,7 +3008,7 @@ "cs": "Potvrdit {0} z {1} záznam{2} do tohoto umístění?", "nl": "Bevestig {0} van {1} vermelding {2} voor deze locatie?", "xloc": [ - "default.handlebars->23->1131", + "default.handlebars->23->1141", "default-mobile.handlebars->9->83" ] }, @@ -3019,9 +3020,9 @@ "nl": "Bevestig", "xloc": [ "default.handlebars->23->390", - "default.handlebars->23->536", - "default.handlebars->23->545", - "default.handlebars->23->1025", + "default.handlebars->23->540", + "default.handlebars->23->549", + "default.handlebars->23->1029", "default-mobile.handlebars->9->217", "default-mobile.handlebars->9->284" ] @@ -3033,7 +3034,7 @@ "cs": "Potvrdit kopírování jednoho záznamu do tohoto umístění?", "nl": "Bevestig kopie van 1 vermelding tot deze locatie?", "xloc": [ - "default.handlebars->23->628", + "default.handlebars->23->632", "default-mobile.handlebars->9->254" ] }, @@ -3044,7 +3045,7 @@ "cs": "Potvrdit kopírování {0} zaznámů do tohoto umístění?", "nl": "Bevestig kopieën van {0} vermeldingen tot deze locatie?", "xloc": [ - "default.handlebars->23->627", + "default.handlebars->23->631", "default-mobile.handlebars->9->253" ] }, @@ -3065,7 +3066,7 @@ "cs": "Potvrdit přesun jednoho záznamu do tohoto umístění?", "nl": "Verplaatsing van 1 vermelding naar deze locatie bevestigen?", "xloc": [ - "default.handlebars->23->630", + "default.handlebars->23->634", "default-mobile.handlebars->9->256" ] }, @@ -3076,7 +3077,7 @@ "cs": "Potvrdit přesun {0} záznamů do tohoto umístění?", "nl": "Verplaatsing van {0} vermeldingen naar deze locatie bevestigen?", "xloc": [ - "default.handlebars->23->629", + "default.handlebars->23->633", "default-mobile.handlebars->9->255" ] }, @@ -3086,7 +3087,7 @@ "cs": "Potvrdit přepsání?", "nl": "Bevestig overschrijven?", "xloc": [ - "default.handlebars->23->1130" + "default.handlebars->23->1140" ] }, { @@ -3096,7 +3097,7 @@ "cs": "Potvrdit odstranění autentizační aplikace pro 2-faktorové přihlašování?", "nl": "Bevestig de verwijdering van de Tweestapsverificatie applicatie?", "xloc": [ - "default.handlebars->23->673", + "default.handlebars->23->677", "default-mobile.handlebars->9->30" ] }, @@ -3107,7 +3108,7 @@ "cs": "Potvrdit odstranění uživatele {0}?", "nl": "Bevestig de verwijdering van gebruiker {0}?", "xloc": [ - "default.handlebars->23->1089", + "default.handlebars->23->1095", "default-mobile.handlebars->9->330" ] }, @@ -3121,8 +3122,8 @@ "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->610", - "default.handlebars->23->964", + "default.handlebars->23->614", + "default.handlebars->23->968", "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3", "default-mobile.handlebars->9->233" @@ -3146,8 +3147,8 @@ "ja": "サーバーに接続する", "nl": "Verbinden met de server", "xloc": [ - "default.handlebars->23->1015", - "default.handlebars->23->1019" + "default.handlebars->23->1019", + "default.handlebars->23->1023" ] }, { @@ -3192,7 +3193,7 @@ "default.handlebars->23->205", "default.handlebars->23->208", "default.handlebars->23->214", - "default.handlebars->23->650", + "default.handlebars->23->654", "default-mobile.handlebars->9->2", "default-mobile.handlebars->9->6", "default-mobile.handlebars->9->269" @@ -3215,7 +3216,7 @@ "cs": "Čítač připojení", "nl": "Aantal verbindingen", "xloc": [ - "default.handlebars->23->1275" + "default.handlebars->23->1313" ] }, { @@ -3225,7 +3226,7 @@ "cs": "Přesměrování spojení", "nl": "Verbindings Relay", "xloc": [ - "default.handlebars->23->1297" + "default.handlebars->23->1339" ] }, { @@ -3247,8 +3248,8 @@ "xloc": [ "default.handlebars->container->column_l->p21->3->1->meshConnChartDiv->1", "default.handlebars->23->196", - "default.handlebars->23->470", - "default.handlebars->23->1101", + "default.handlebars->23->474", + "default.handlebars->23->1111", "default-mobile.handlebars->9->192" ] }, @@ -3271,7 +3272,7 @@ "ja": "コンソール -", "nl": "Console - ", "xloc": [ - "default.handlebars->23->419" + "default.handlebars->23->423" ] }, { @@ -3281,7 +3282,7 @@ "cs": "console.txt", "nl": "console.txt", "xloc": [ - "default.handlebars->23->660" + "default.handlebars->23->664" ] }, { @@ -3291,7 +3292,7 @@ "cs": "Cookie dekodér", "nl": "Cookie encoder", "xloc": [ - "default.handlebars->23->1285" + "default.handlebars->23->1327" ] }, { @@ -3314,7 +3315,7 @@ "cs": "kopírovat", "nl": "kopie", "xloc": [ - "default.handlebars->23->1134", + "default.handlebars->23->1144", "default-mobile.handlebars->9->86" ] }, @@ -3467,7 +3468,7 @@ "cs": "Hlavní server", "nl": "Core Server", "xloc": [ - "default.handlebars->23->1284" + "default.handlebars->23->1326" ] }, { @@ -3477,7 +3478,7 @@ "cs": "Corsican", "nl": "Corsicaans", "xloc": [ - "default.handlebars->23->724" + "default.handlebars->23->728" ] }, { @@ -3487,7 +3488,7 @@ "cs": "CPU zatížení v posledních 15 minutách", "nl": "CPU-belasting in de afgelopen 15 minuten", "xloc": [ - "default.handlebars->23->1271" + "default.handlebars->23->1309" ] }, { @@ -3497,7 +3498,7 @@ "cs": "CPU zatížení v posledních 5 minutách", "nl": "CPU-belasting in de afgelopen 5 minuten", "xloc": [ - "default.handlebars->23->1270" + "default.handlebars->23->1308" ] }, { @@ -3507,7 +3508,7 @@ "ja": "直前のCPU負荷", "nl": "CPU-belasting in de laatste minuut", "xloc": [ - "default.handlebars->23->1269" + "default.handlebars->23->1307" ] }, { @@ -3518,8 +3519,8 @@ "nl": "CR+LF", "xloc": [ "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons", - "default.handlebars->23->598", - "default.handlebars->23->607" + "default.handlebars->23->602", + "default.handlebars->23->611" ] }, { @@ -3529,7 +3530,7 @@ "ja": "以下のオプションを使用して、新しいデバイスグループを作成します。", "nl": "Maak een nieuwe apparaatgroep met behulp van de onderstaande opties.", "xloc": [ - "default.handlebars->23->916" + "default.handlebars->23->920" ] }, { @@ -3549,7 +3550,7 @@ "cs": "Vytvořit účet", "nl": "Account aanmaken", "xloc": [ - "default.handlebars->23->1198", + "default.handlebars->23->1209", "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" ] @@ -3571,7 +3572,7 @@ "cs": "Vytvořit více účtu najednou pomocí importu JSON souboru s následujícím formátem:", "nl": "Maak meerdere accounts tegelijk door een JSON-bestand met de volgende indeling te importeren:", "xloc": [ - "default.handlebars->23->1170" + "default.handlebars->23->1181" ] }, { @@ -3592,7 +3593,7 @@ "cs": "Vytváření", "nl": "Aanmaken", "xloc": [ - "default.handlebars->23->1227" + "default.handlebars->23->1238" ] }, { @@ -3613,7 +3614,7 @@ "cs": "Cree", "nl": "Cree", "xloc": [ - "default.handlebars->23->725" + "default.handlebars->23->729" ] }, { @@ -3623,7 +3624,7 @@ "cs": "Croatian", "nl": "Kroatisch", "xloc": [ - "default.handlebars->23->726" + "default.handlebars->23->730" ] }, { @@ -3633,8 +3634,8 @@ "cs": "CSV formát", "nl": "CSV Formaat", "xloc": [ - "default.handlebars->23->1141", - "default.handlebars->23->1179" + "default.handlebars->23->1151", + "default.handlebars->23->1190" ] }, { @@ -3719,7 +3720,7 @@ "cs": "Czech", "nl": "Tsjechisch", "xloc": [ - "default.handlebars->23->727" + "default.handlebars->23->731" ] }, { @@ -3729,7 +3730,7 @@ "cs": "Danish", "nl": "Deens", "xloc": [ - "default.handlebars->23->728" + "default.handlebars->23->732" ] }, { @@ -3739,7 +3740,7 @@ "cs": "Datový kanál", "nl": "Data kanaal", "xloc": [ - "default.handlebars->23->567" + "default.handlebars->23->571" ] }, { @@ -3749,7 +3750,7 @@ "ja": "日時", "nl": "Datum & Tiid", "xloc": [ - "default.handlebars->23->884" + "default.handlebars->23->888" ] }, { @@ -3759,7 +3760,8 @@ "ja": "日", "nl": "Dag", "xloc": [ - "default.handlebars->23->520" + "default.handlebars->23->524", + "default.handlebars->23->1274" ] }, { @@ -3769,7 +3771,7 @@ "cs": "Deaktivace Client Control Mode (CCM)", "nl": "Deactiveer Client Control Mode (CCM)", "xloc": [ - "default.handlebars->23->1003" + "default.handlebars->23->1007" ] }, { @@ -3793,8 +3795,8 @@ "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->620", - "default.handlebars->23->1125", + "default.handlebars->23->624", + "default.handlebars->23->1135", "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1", "default-mobile.handlebars->9->78", @@ -3809,7 +3811,7 @@ "ja": "アカウントを削除する", "nl": "Verwijder account", "xloc": [ - "default.handlebars->23->901", + "default.handlebars->23->905", "default-mobile.handlebars->9->40" ] }, @@ -3820,7 +3822,7 @@ "ja": "アカウントを削除する", "nl": "Verwijder account", "xloc": [ - "default.handlebars->container->column_l->p2->p2AccountActions->p2AccountPassActions->7", + "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" ] }, @@ -3831,7 +3833,7 @@ "ja": "デバイスを削除", "nl": "Verwijder apparaat", "xloc": [ - "default.handlebars->23->481", + "default.handlebars->23->485", "default-mobile.handlebars->9->196" ] }, @@ -3852,8 +3854,8 @@ "ja": "グループを削除", "nl": "Verwijder groep", "xloc": [ - "default.handlebars->23->996", - "default.handlebars->23->1026", + "default.handlebars->23->1000", + "default.handlebars->23->1030", "default-mobile.handlebars->9->282", "default-mobile.handlebars->9->285" ] @@ -3865,7 +3867,7 @@ "ja": "ノードを削除", "nl": "Verwijder apparaat", "xloc": [ - "default.handlebars->23->546", + "default.handlebars->23->550", "default-mobile.handlebars->9->215" ] }, @@ -3886,8 +3888,8 @@ "ja": "選択したアイテムを削除しますか?", "nl": "Verwijder geselecteerde item?", "xloc": [ - "default.handlebars->23->622", - "default.handlebars->23->1127", + "default.handlebars->23->626", + "default.handlebars->23->1137", "default-mobile.handlebars->9->80", "default-mobile.handlebars->9->248" ] @@ -3899,7 +3901,7 @@ "ja": "ユーザーを削除{0}", "nl": "Verwijder gebruiker {0}", "xloc": [ - "default.handlebars->23->1260" + "default.handlebars->23->1273" ] }, { @@ -3909,8 +3911,8 @@ "ja": "選択したアイテム{0}を削除しますか?", "nl": "Verwijder {0} gelecteerde items?", "xloc": [ - "default.handlebars->23->621", - "default.handlebars->23->1126", + "default.handlebars->23->625", + "default.handlebars->23->1136", "default-mobile.handlebars->9->79", "default-mobile.handlebars->9->247" ] @@ -3973,12 +3975,12 @@ "xloc": [ "default.handlebars->container->column_l->p42->p42tbl->1->0->3", "default.handlebars->23->90", - "default.handlebars->23->428", - "default.handlebars->23->429", - "default.handlebars->23->563", - "default.handlebars->23->921", - "default.handlebars->23->945", - "default.handlebars->23->1028", + "default.handlebars->23->432", + "default.handlebars->23->433", + "default.handlebars->23->567", + "default.handlebars->23->925", + "default.handlebars->23->949", + "default.handlebars->23->1032", "default-mobile.handlebars->9->57", "default-mobile.handlebars->9->138", "default-mobile.handlebars->9->139", @@ -3994,7 +3996,7 @@ "cs": "DeskControl", "nl": "Besturing", "xloc": [ - "default.handlebars->23->595" + "default.handlebars->23->599" ] }, { @@ -4006,8 +4008,8 @@ "xloc": [ "default.handlebars->contextMenu->cxdesktop", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop", - "default.handlebars->23->396", - "default.handlebars->23->1030" + "default.handlebars->23->401", + "default.handlebars->23->1034" ] }, { @@ -4027,7 +4029,7 @@ "cs": "Informovat na ploše", "nl": "Bureaublad melding", "xloc": [ - "default.handlebars->23->955" + "default.handlebars->23->959" ] }, { @@ -4037,7 +4039,7 @@ "cs": "Výzva na ploše", "nl": "Bureaublad vraag", "xloc": [ - "default.handlebars->23->954" + "default.handlebars->23->958" ] }, { @@ -4047,7 +4049,7 @@ "cs": "Výzva na ploše+panel nástrojů", "nl": "Bureaublad vraag en werkbalk", "xloc": [ - "default.handlebars->23->952" + "default.handlebars->23->956" ] }, { @@ -4057,7 +4059,7 @@ "cs": "Panel nástrojů na ploše", "nl": "Bureaublad werkbalk", "xloc": [ - "default.handlebars->23->953" + "default.handlebars->23->957" ] }, { @@ -4108,7 +4110,7 @@ "ja": "デバイスアクション", "nl": "Apparaatactie", "xloc": [ - "default.handlebars->23->519", + "default.handlebars->23->523", "default-mobile.handlebars->9->208" ] }, @@ -4119,7 +4121,8 @@ "cs": "Připojení zařízení", "nl": "Apparaat verbindingen.", "xloc": [ - "default.handlebars->23->889" + "default.handlebars->23->893", + "default.handlebars->23->1097" ] }, { @@ -4129,7 +4132,8 @@ "cs": "Odpojení zařízení", "nl": "Apparaat verbroken.", "xloc": [ - "default.handlebars->23->890" + "default.handlebars->23->894", + "default.handlebars->23->1098" ] }, { @@ -4139,7 +4143,7 @@ "cs": "Poznámky pro skupinu zařízení si může prohlédnout nebo upravit jen jiný administrátor skupiny.", "nl": "Apparaatgroepnotities kunnen worden bekeken en gewijzigd door andere apparaatgroepbeheerders.", "xloc": [ - "default.handlebars->23->508" + "default.handlebars->23->512" ] }, { @@ -4149,7 +4153,7 @@ "ja": "デバイスグループユーザー", "nl": "Apparaatgroep gebruiker", "xloc": [ - "default.handlebars->23->1087", + "default.handlebars->23->1093", "default-mobile.handlebars->9->328" ] }, @@ -4161,7 +4165,8 @@ "nl": "Apparaatgroepen", "xloc": [ "default.handlebars->container->column_l->p2->9", - "default.handlebars->23->1236", + "default.handlebars->23->1247", + "default.handlebars->23->1300", "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->3" ] }, @@ -4319,7 +4324,7 @@ "cs": "Umístění zařízení", "nl": "Apparaat locatie", "xloc": [ - "default.handlebars->23->547" + "default.handlebars->23->551" ] }, { @@ -4329,7 +4334,7 @@ "ja": "装置名", "nl": "Apparaat naam", "xloc": [ - "default.handlebars->23->409" + "default.handlebars->23->413" ] }, { @@ -4340,7 +4345,7 @@ "nl": "Apparaat naam", "xloc": [ "default.handlebars->23->232", - "default.handlebars->23->561", + "default.handlebars->23->565", "default-mobile.handlebars->9->219", "player.htm->3->9" ] @@ -4352,7 +4357,7 @@ "cs": "Oznámení zařízení", "nl": "Apparaatmelding", "xloc": [ - "default.handlebars->23->510" + "default.handlebars->23->514" ] }, { @@ -4382,7 +4387,7 @@ "cs": "Zakázáno", "nl": "Uitgeschakeld", "xloc": [ - "default.handlebars->23->455" + "default.handlebars->23->459" ] }, { @@ -4394,8 +4399,8 @@ "xloc": [ "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->disconnectbutton1span", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->disconnectbutton2span", - "default.handlebars->23->611", - "default.handlebars->23->965", + "default.handlebars->23->615", + "default.handlebars->23->969", "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3", "default-mobile.handlebars->9->234" ] @@ -4448,7 +4453,7 @@ "cs": "Zobrazované jméno", "nl": "Schermnaam", "xloc": [ - "default.handlebars->23->581" + "default.handlebars->23->585" ] }, { @@ -4468,7 +4473,7 @@ "ja": "何もしない", "nl": "Doe niets", "xloc": [ - "default.handlebars->23->1009" + "default.handlebars->23->1013" ] }, { @@ -4489,8 +4494,8 @@ "cs": "Nekonfigurovat", "nl": "Niet configureren", "xloc": [ - "default.handlebars->23->1013", - "default.handlebars->23->1018" + "default.handlebars->23->1017", + "default.handlebars->23->1022" ] }, { @@ -4500,7 +4505,7 @@ "cs": "Nepřipojovat se k serveru", "nl": "Maak geen verbinding met de server", "xloc": [ - "default.handlebars->23->1014" + "default.handlebars->23->1018" ] }, { @@ -4563,7 +4568,7 @@ "ja": "ダウンロードファイル", "nl": "Download Bestand", "xloc": [ - "default.handlebars->23->640", + "default.handlebars->23->644", "default-mobile.handlebars->9->267" ] }, @@ -4584,7 +4589,7 @@ "cs": "Stáhnout MeshCmd", "nl": "Download MeshCmd", "xloc": [ - "default.handlebars->23->558" + "default.handlebars->23->562" ] }, { @@ -4613,7 +4618,7 @@ "cs": "Stáhnout události napájení", "nl": "Downloaden Power gebeurtenissen", "xloc": [ - "default.handlebars->23->521" + "default.handlebars->23->525" ] }, { @@ -4643,7 +4648,7 @@ "cs": "Stáhnout seznam událostí v níže uvedeném formátu.", "nl": "Download de lijst met gebeurtenissen in een van de onderstaande bestandsindelingen.", "xloc": [ - "default.handlebars->23->1140" + "default.handlebars->23->1150" ] }, { @@ -4653,7 +4658,7 @@ "cs": "Stáhnout seznam uživatelů v níže uvedeném formátu.", "nl": "Download de lijst met gebruikers in een van de onderstaande bestandsindelingen.", "xloc": [ - "default.handlebars->23->1178" + "default.handlebars->23->1189" ] }, { @@ -4714,7 +4719,7 @@ "cs": "Během aktivace bude mít agent administrátorská práva.", "nl": "Tijdens activering heeft de agent toegang tot beheerderswachtwoordinformatie.", "xloc": [ - "default.handlebars->23->1023" + "default.handlebars->23->1027" ] }, { @@ -4724,7 +4729,7 @@ "cs": "Dutch (Belgian)", "nl": "Nederlands (Belgisch)", "xloc": [ - "default.handlebars->23->730" + "default.handlebars->23->734" ] }, { @@ -4734,7 +4739,7 @@ "cs": "Dutch (Standard)", "nl": "Nederlands (Standaard)", "xloc": [ - "default.handlebars->23->729" + "default.handlebars->23->733" ] }, { @@ -4754,7 +4759,7 @@ "cs": "Upravit zařízení", "nl": "Bewerk apparaat", "xloc": [ - "default.handlebars->23->566", + "default.handlebars->23->570", "default-mobile.handlebars->9->224" ] }, @@ -4765,9 +4770,9 @@ "ja": "デバイスグループの編集", "nl": "Bewerk apparaatgroep", "xloc": [ - "default.handlebars->23->1029", - "default.handlebars->23->1047", - "default.handlebars->23->1066", + "default.handlebars->23->1033", + "default.handlebars->23->1053", + "default.handlebars->23->1072", "default-mobile.handlebars->9->288", "default-mobile.handlebars->9->290", "default-mobile.handlebars->9->308" @@ -4780,7 +4785,7 @@ "cs": "Upravit vlastnosti skupiny zařízení", "nl": "Functies van apparaatgroep bewerken", "xloc": [ - "default.handlebars->23->1041" + "default.handlebars->23->1047" ] }, { @@ -4790,7 +4795,7 @@ "cs": "Upravit souhlas uživatele skupiny zařízení", "nl": "Toestemming gebruikersgroep bewerken", "xloc": [ - "default.handlebars->23->1040" + "default.handlebars->23->1044" ] }, { @@ -4800,7 +4805,7 @@ "ja": "デバイスノートの編集", "nl": "Apparaatnotities bewerken", "xloc": [ - "default.handlebars->23->1059", + "default.handlebars->23->1065", "default-mobile.handlebars->9->302" ] }, @@ -4811,9 +4816,9 @@ "cs": "Upravit Intel® AMT pověření", "nl": "Bewerk Intel® AMT-gegevens", "xloc": [ - "default.handlebars->23->443", - "default.handlebars->23->446", - "default.handlebars->23->528", + "default.handlebars->23->447", + "default.handlebars->23->450", + "default.handlebars->23->532", "default-mobile.handlebars->9->214" ] }, @@ -4825,7 +4830,7 @@ "cs": "Upravit poznámky", "nl": "Notities bewerken", "xloc": [ - "default.handlebars->23->1073", + "default.handlebars->23->1079", "default-mobile.handlebars->9->315" ] }, @@ -4846,7 +4851,7 @@ "cs": "Upravit uživatelská práva pro skupinu zařízení ", "nl": "Gebruikersrechten apparaatgroep bewerken", "xloc": [ - "default.handlebars->23->1064" + "default.handlebars->23->1070" ] }, { @@ -4857,10 +4862,10 @@ "nl": "Email", "xloc": [ "default.handlebars->23->277", - "default.handlebars->23->1190", - "default.handlebars->23->1223", - "default.handlebars->23->1224", - "default.handlebars->23->1250", + "default.handlebars->23->1201", + "default.handlebars->23->1234", + "default.handlebars->23->1235", + "default.handlebars->23->1263", "default-mobile.handlebars->9->34" ] }, @@ -4871,7 +4876,7 @@ "ja": "メールアドレスの変更", "nl": "Email Adres wijzigen", "xloc": [ - "default.handlebars->23->897", + "default.handlebars->23->901", "default-mobile.handlebars->9->35" ] }, @@ -4882,7 +4887,7 @@ "ja": "メールが確認されました", "nl": "Email is geverifieerd", "xloc": [ - "default.handlebars->23->1220" + "default.handlebars->23->1231" ] }, { @@ -4892,7 +4897,7 @@ "ja": "メールが確認されました。", "nl": "Email is geverifieerd.", "xloc": [ - "default.handlebars->23->1195" + "default.handlebars->23->1206" ] }, { @@ -4902,7 +4907,7 @@ "ja": "メールが確認されていません", "nl": "Email is niet geverifieerd", "xloc": [ - "default.handlebars->23->1221" + "default.handlebars->23->1232" ] }, { @@ -4912,7 +4917,7 @@ "cs": "Ověření emailu", "nl": "email verificatie", "xloc": [ - "default.handlebars->23->895", + "default.handlebars->23->899", "default-mobile.handlebars->9->33" ] }, @@ -4968,7 +4973,7 @@ "cs": "English", "nl": "Engels", "xloc": [ - "default.handlebars->23->731" + "default.handlebars->23->735" ] }, { @@ -4978,7 +4983,7 @@ "cs": "English (Australia)", "nl": "Engels (Australië)", "xloc": [ - "default.handlebars->23->732" + "default.handlebars->23->736" ] }, { @@ -4988,7 +4993,7 @@ "cs": "English (Belize)", "nl": "Engels (Belize)", "xloc": [ - "default.handlebars->23->733" + "default.handlebars->23->737" ] }, { @@ -4998,7 +5003,7 @@ "cs": "English (Canada)", "nl": "Engels (Canada)", "xloc": [ - "default.handlebars->23->734" + "default.handlebars->23->738" ] }, { @@ -5008,7 +5013,7 @@ "cs": "English (Ireland)", "nl": "Engels (Ierland)", "xloc": [ - "default.handlebars->23->735" + "default.handlebars->23->739" ] }, { @@ -5018,7 +5023,7 @@ "cs": "English (Jamaica)", "nl": "Engels (Jamaica)", "xloc": [ - "default.handlebars->23->736" + "default.handlebars->23->740" ] }, { @@ -5028,7 +5033,7 @@ "cs": "English (New Zealand)", "nl": "Engels (Nieuw Zeeland)", "xloc": [ - "default.handlebars->23->737" + "default.handlebars->23->741" ] }, { @@ -5038,7 +5043,7 @@ "cs": "English (Philippines)", "nl": "Engels (Filippijnen)", "xloc": [ - "default.handlebars->23->738" + "default.handlebars->23->742" ] }, { @@ -5048,7 +5053,7 @@ "cs": "English (South Africa)", "nl": "Engels (Zuid Africa)", "xloc": [ - "default.handlebars->23->739" + "default.handlebars->23->743" ] }, { @@ -5058,7 +5063,7 @@ "cs": "English (Trinidad & Tobago)", "nl": "Engels (Trinidad & Tobago)", "xloc": [ - "default.handlebars->23->740" + "default.handlebars->23->744" ] }, { @@ -5069,7 +5074,7 @@ "cs": "English (United Kingdom)", "nl": "Engels (Verenigd Koninkrijk)", "xloc": [ - "default.handlebars->23->741" + "default.handlebars->23->745" ] }, { @@ -5080,7 +5085,7 @@ "cs": "English (United States)", "nl": "Engels (Verenigde staten van America)", "xloc": [ - "default.handlebars->23->742" + "default.handlebars->23->746" ] }, { @@ -5091,7 +5096,7 @@ "cs": "English (Zimbabwe)", "nl": "Engels (Zimbabwe)", "xloc": [ - "default.handlebars->23->743" + "default.handlebars->23->747" ] }, { @@ -5101,8 +5106,8 @@ "cs": "Zadání", "nl": "invoeren", "xloc": [ - "default.handlebars->23->923", - "default.handlebars->23->924" + "default.handlebars->23->927", + "default.handlebars->23->928" ] }, { @@ -5112,7 +5117,7 @@ "cs": "Zadejte seznam administrativních realmů oddělených čárkami.", "nl": "Voer een door komma's gescheiden lijst met beheerdersnamen in.", "xloc": [ - "default.handlebars->23->1199" + "default.handlebars->23->1210" ] }, { @@ -5132,7 +5137,7 @@ "cs": "Zadejte text a kliknutím na OK jej zadáte na dálku pomocí americké anglické klávesnice. Než budete pokračovat, nezapomeňte vzdálený kurzor na správnou pozici.", "nl": "Voer tekst in en klik op OK om deze op afstand te typen met een Amerikaans Engels toetsenbord. Zorg ervoor dat u de externe cursor op de juiste positie plaatst voordat u doorgaat.", "xloc": [ - "default.handlebars->23->576" + "default.handlebars->23->580" ] }, { @@ -5215,7 +5220,7 @@ "cs": "Esperanto", "nl": "Esperanto", "xloc": [ - "default.handlebars->23->744" + "default.handlebars->23->748" ] }, { @@ -5225,7 +5230,7 @@ "cs": "Estonian", "nl": "Estlands", "xloc": [ - "default.handlebars->23->745" + "default.handlebars->23->749" ] }, { @@ -5235,7 +5240,7 @@ "cs": "Detail události", "nl": "Gebeurtenis details", "xloc": [ - "default.handlebars->23->652" + "default.handlebars->23->656" ] }, { @@ -5245,7 +5250,7 @@ "cs": "Export seznamu událostí", "nl": "Gebeurtenis Lijst exporteren", "xloc": [ - "default.handlebars->23->1145" + "default.handlebars->23->1155" ] }, { @@ -5280,8 +5285,8 @@ "cs": "eventslist.csv", "nl": "eventslist.csv", "xloc": [ - "default.handlebars->23->1142", - "default.handlebars->23->1147" + "default.handlebars->23->1152", + "default.handlebars->23->1157" ] }, { @@ -5291,8 +5296,8 @@ "cs": "eventslist.json", "nl": "eventslist.json", "xloc": [ - "default.handlebars->23->1144", - "default.handlebars->23->1148" + "default.handlebars->23->1154", + "default.handlebars->23->1158" ] }, { @@ -5332,7 +5337,7 @@ "cs": "Rozšířené ASCII", "nl": "Extended ASCII", "xloc": [ - "default.handlebars->23->602" + "default.handlebars->23->606" ] }, { @@ -5342,7 +5347,7 @@ "cs": "Faeroese", "nl": "Faeroese", "xloc": [ - "default.handlebars->23->746" + "default.handlebars->23->750" ] }, { @@ -5364,7 +5369,7 @@ "cs": "Farsi (Persian)", "nl": "Perzisch (Perzisch)", "xloc": [ - "default.handlebars->23->747" + "default.handlebars->23->751" ] }, { @@ -5386,7 +5391,7 @@ "ja": "特徴", "nl": "Kenmerken", "xloc": [ - "default.handlebars->23->951" + "default.handlebars->23->955" ] }, { @@ -5396,7 +5401,7 @@ "cs": "Fijian", "nl": "Fijian", "xloc": [ - "default.handlebars->23->748" + "default.handlebars->23->752" ] }, { @@ -5407,7 +5412,7 @@ "cs": "Editor souborů", "nl": "Bestandsberwerker", "xloc": [ - "default.handlebars->23->625", + "default.handlebars->23->629", "default-mobile.handlebars->9->251" ] }, @@ -5432,7 +5437,7 @@ "xloc": [ "default.handlebars->contextMenu->cxfiles", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles", - "default.handlebars->23->1037" + "default.handlebars->23->1041" ] }, { @@ -5453,7 +5458,7 @@ "cs": "Upozornit na soubory", "nl": "Bestanden Melden", "xloc": [ - "default.handlebars->23->959" + "default.handlebars->23->963" ] }, { @@ -5463,7 +5468,7 @@ "cs": "Dotaz na soubory", "nl": "Bestanden vragen", "xloc": [ - "default.handlebars->23->958" + "default.handlebars->23->962" ] }, { @@ -5473,7 +5478,7 @@ "cs": "Ovladač souborového systému", "nl": "Bestandssysteem stuurprogramma", "xloc": [ - "default.handlebars->23->584" + "default.handlebars->23->588" ] }, { @@ -5496,7 +5501,7 @@ "cs": "Finnish", "nl": "Fins", "xloc": [ - "default.handlebars->23->749" + "default.handlebars->23->753" ] }, { @@ -5543,8 +5548,8 @@ "cs": "Vynutit reset hesla při dalším přihlášení.", "nl": "Forceer wachtwoord opnieuw instellen bij de volgende aanmelding.", "xloc": [ - "default.handlebars->23->1194", - "default.handlebars->23->1257" + "default.handlebars->23->1205", + "default.handlebars->23->1270" ] }, { @@ -5597,8 +5602,8 @@ "cs": "Volné", "nl": "Vrij", "xloc": [ - "default.handlebars->23->1266", - "default.handlebars->23->1268" + "default.handlebars->23->1281", + "default.handlebars->23->1283" ] }, { @@ -5609,7 +5614,7 @@ "cs": "volné", "nl": "vrij", "xloc": [ - "default.handlebars->23->1273" + "default.handlebars->23->1311" ] }, { @@ -5631,7 +5636,7 @@ "cs": "French (Belgium)", "nl": "Frans (België)", "xloc": [ - "default.handlebars->23->751" + "default.handlebars->23->755" ] }, { @@ -5642,7 +5647,7 @@ "cs": "French (Canada)", "nl": "Frans (Canada)", "xloc": [ - "default.handlebars->23->752" + "default.handlebars->23->756" ] }, { @@ -5653,7 +5658,7 @@ "cs": "French (France)", "nl": "Frans (Frankrijk)", "xloc": [ - "default.handlebars->23->753" + "default.handlebars->23->757" ] }, { @@ -5664,7 +5669,7 @@ "cs": "French (Luxembourg)", "nl": "Frans (Luxemburg)", "xloc": [ - "default.handlebars->23->754" + "default.handlebars->23->758" ] }, { @@ -5675,7 +5680,7 @@ "cs": "French (Monaco)", "nl": "Frans (Monaco)", "xloc": [ - "default.handlebars->23->755" + "default.handlebars->23->759" ] }, { @@ -5686,7 +5691,7 @@ "cs": "French (Standard)", "nl": "Frans (standaard)", "xloc": [ - "default.handlebars->23->750" + "default.handlebars->23->754" ] }, { @@ -5697,7 +5702,7 @@ "cs": "French (Switzerland)", "nl": "Frans (Zwitserland)", "xloc": [ - "default.handlebars->23->756" + "default.handlebars->23->760" ] }, { @@ -5708,7 +5713,7 @@ "cs": "Frisian", "nl": "Fries", "xloc": [ - "default.handlebars->23->757" + "default.handlebars->23->761" ] }, { @@ -5719,7 +5724,7 @@ "cs": "Friulian", "nl": "Friulian", "xloc": [ - "default.handlebars->23->758" + "default.handlebars->23->762" ] }, { @@ -5730,10 +5735,10 @@ "ja": "完全な管理者", "nl": "Volledige beheerder", "xloc": [ - "default.handlebars->23->930", - "default.handlebars->23->992", - "default.handlebars->23->1046", - "default.handlebars->23->1204", + "default.handlebars->23->934", + "default.handlebars->23->996", + "default.handlebars->23->1052", + "default.handlebars->23->1215", "default-mobile.handlebars->9->61", "default-mobile.handlebars->9->280", "default-mobile.handlebars->9->289", @@ -5748,7 +5753,7 @@ "ja": "完全な管理者", "nl": "Volledige beheerder", "xloc": [ - "default.handlebars->23->1216" + "default.handlebars->23->1227" ] }, { @@ -5759,7 +5764,7 @@ "ja": "完全な管理者(すべての権利)", "nl": "Volledige beheerder (alle rechten)", "xloc": [ - "default.handlebars->23->1065" + "default.handlebars->23->1071" ] }, { @@ -5782,7 +5787,7 @@ "cs": "FYRO Macedonian", "nl": "FYRO Macedonisch", "xloc": [ - "default.handlebars->23->795" + "default.handlebars->23->799" ] }, { @@ -5793,7 +5798,7 @@ "cs": "Gaelic (Irish)", "nl": "Gaelic (Iers)", "xloc": [ - "default.handlebars->23->760" + "default.handlebars->23->764" ] }, { @@ -5804,7 +5809,7 @@ "cs": "Gaelic (Scots)", "nl": "Gaelic (Schots)", "xloc": [ - "default.handlebars->23->759" + "default.handlebars->23->763" ] }, { @@ -5815,7 +5820,7 @@ "cs": "Galacian", "nl": "Galacian", "xloc": [ - "default.handlebars->23->761" + "default.handlebars->23->765" ] }, { @@ -5864,7 +5869,7 @@ "ja": "一般情報", "nl": "Algemene informatie", "xloc": [ - "default.handlebars->23->395" + "default.handlebars->23->400" ] }, { @@ -5886,7 +5891,7 @@ "cs": "Georgian", "nl": "Georgisch", "xloc": [ - "default.handlebars->23->762" + "default.handlebars->23->766" ] }, { @@ -5896,7 +5901,7 @@ "cs": "German (Austria)", "nl": "Duits (Oostenrijk)", "xloc": [ - "default.handlebars->23->764" + "default.handlebars->23->768" ] }, { @@ -5906,7 +5911,7 @@ "cs": "German (Germany)", "nl": "Duits (duitsland)", "xloc": [ - "default.handlebars->23->765" + "default.handlebars->23->769" ] }, { @@ -5916,7 +5921,7 @@ "cs": "German (Liechtenstein)", "nl": "Duits (Liechtenstein)", "xloc": [ - "default.handlebars->23->766" + "default.handlebars->23->770" ] }, { @@ -5926,7 +5931,7 @@ "cs": "German (Luxembourg)", "nl": "Duits (Luxemburg)", "xloc": [ - "default.handlebars->23->767" + "default.handlebars->23->771" ] }, { @@ -5936,7 +5941,7 @@ "cs": "German (Standard)", "nl": "Duits (standaard)", "xloc": [ - "default.handlebars->23->763" + "default.handlebars->23->767" ] }, { @@ -5946,7 +5951,7 @@ "cs": "German (Switzerland)", "nl": "Duits (Zwitserland)", "xloc": [ - "default.handlebars->23->768" + "default.handlebars->23->772" ] }, { @@ -5956,7 +5961,7 @@ "cs": "Získat přihlašovací údaje MQTT pro toto zařízení.", "nl": "Ontvang MQTT-inloggegevens voor dit apparaat.", "xloc": [ - "default.handlebars->23->494" + "default.handlebars->23->498" ] }, { @@ -5991,7 +5996,7 @@ "cs": "Dobré", "nl": "Goed", "xloc": [ - "default.handlebars->23->926" + "default.handlebars->23->930" ] }, { @@ -6016,7 +6021,7 @@ "cs": "Greek", "nl": "Grieks", "xloc": [ - "default.handlebars->23->769" + "default.handlebars->23->773" ] }, { @@ -6028,7 +6033,7 @@ "nl": "Groep", "xloc": [ "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->1", - "default.handlebars->23->421", + "default.handlebars->23->425", "default-mobile.handlebars->9->131" ] }, @@ -6052,7 +6057,7 @@ "cs": "Oprávnění skupiny pro uživatele {0}.", "nl": "Groepsrechten voor gebruiker {0}.", "xloc": [ - "default.handlebars->23->1045" + "default.handlebars->23->1051" ] }, { @@ -6074,7 +6079,7 @@ "cs": "Gujurati", "nl": "Gujurati", "xloc": [ - "default.handlebars->23->770" + "default.handlebars->23->774" ] }, { @@ -6085,7 +6090,7 @@ "cs": "Haitian", "nl": "Haïtiaanse", "xloc": [ - "default.handlebars->23->771" + "default.handlebars->23->775" ] }, { @@ -6107,7 +6112,7 @@ "cs": "Tvrdě odpojit aenta", "nl": "Harde ontkoppeling agent", "xloc": [ - "default.handlebars->23->668" + "default.handlebars->23->672" ] }, { @@ -6117,7 +6122,7 @@ "cs": "Hebrew", "nl": "Hebreeuws", "xloc": [ - "default.handlebars->23->772" + "default.handlebars->23->776" ] }, { @@ -6141,7 +6146,7 @@ "cs": "Hindi", "nl": "Hindi", "xloc": [ - "default.handlebars->23->773" + "default.handlebars->23->777" ] }, { @@ -6162,7 +6167,7 @@ "cs": "Držím jeden záznam pro kopii", "nl": "1 item vasthouden voor kopiëren", "xloc": [ - "default.handlebars->23->634", + "default.handlebars->23->638", "default-mobile.handlebars->9->260" ] }, @@ -6173,7 +6178,7 @@ "cs": "Držím jeden záznam pro přesun", "nl": "1 item vasthouden voor verplaatsen", "xloc": [ - "default.handlebars->23->638", + "default.handlebars->23->642", "default-mobile.handlebars->9->264" ] }, @@ -6184,7 +6189,7 @@ "cs": "Držím {0} záznamů pro kopii", "nl": "{0} items vasthouden voor kopiëren", "xloc": [ - "default.handlebars->23->632", + "default.handlebars->23->636", "default-mobile.handlebars->9->258" ] }, @@ -6195,7 +6200,7 @@ "cs": "Držím {0} zaznamů pro přesun", "nl": "{0} items vasthouden voor verplaatsen", "xloc": [ - "default.handlebars->23->636", + "default.handlebars->23->640", "default-mobile.handlebars->9->262" ] }, @@ -6206,7 +6211,7 @@ "cs": "Držím {0} zaznamů{1} pro {2}", "nl": "Houd {0} item {1} vast voor {2}", "xloc": [ - "default.handlebars->23->1133", + "default.handlebars->23->1143", "default-mobile.handlebars->9->85" ] }, @@ -6218,10 +6223,10 @@ "nl": "Hostname", "xloc": [ "default.handlebars->23->233", - "default.handlebars->23->423", - "default.handlebars->23->424", - "default.handlebars->23->426", - "default.handlebars->23->562", + "default.handlebars->23->427", + "default.handlebars->23->428", + "default.handlebars->23->430", + "default.handlebars->23->566", "default-mobile.handlebars->9->133", "default-mobile.handlebars->9->134", "default-mobile.handlebars->9->136", @@ -6235,7 +6240,7 @@ "cs": "Hostname Sync", "nl": "Hostname Sync", "xloc": [ - "default.handlebars->23->949" + "default.handlebars->23->953" ] }, { @@ -6324,7 +6329,7 @@ "cs": "Hungarian", "nl": "Hongaars", "xloc": [ - "default.handlebars->23->774" + "default.handlebars->23->778" ] }, { @@ -6348,7 +6353,7 @@ "cs": "Icelandic", "nl": "IJslands", "xloc": [ - "default.handlebars->23->775" + "default.handlebars->23->779" ] }, { @@ -6359,7 +6364,7 @@ "cs": "Výběr ikony", "nl": "Pictogram selectie", "xloc": [ - "default.handlebars->23->560", + "default.handlebars->23->564", "default-mobile.handlebars->9->218" ] }, @@ -6370,7 +6375,7 @@ "cs": "id, jméno, email, vytvoření, poslední přihlášení, skupiny, ověřovatel", "nl": "id, naam, e-mail, aanmaken, laatste inlog, groepen, authenticatiefactors", "xloc": [ - "default.handlebars->23->1184" + "default.handlebars->23->1195" ] }, { @@ -6401,7 +6406,7 @@ "cs": "Indonesian", "nl": "Indonesisch", "xloc": [ - "default.handlebars->23->776" + "default.handlebars->23->780" ] }, { @@ -6445,7 +6450,7 @@ "ja": "インストール", "nl": "Installeren", "xloc": [ - "default.handlebars->23->987" + "default.handlebars->23->991" ] }, { @@ -6474,7 +6479,7 @@ "cs": "Instalace CIRA", "nl": "Installeer CIRA", "xloc": [ - "default.handlebars->23->979" + "default.handlebars->23->983" ] }, { @@ -6484,7 +6489,7 @@ "cs": "Lokální instalace", "nl": "Installeer lokaal", "xloc": [ - "default.handlebars->23->981" + "default.handlebars->23->985" ] }, { @@ -6506,7 +6511,7 @@ "nl": "Intel (F10 = ESC+[OM)", "xloc": [ "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons", - "default.handlebars->23->604" + "default.handlebars->23->608" ] }, { @@ -6516,10 +6521,10 @@ "cs": "Intel AMT", "nl": "Intel AMT", "xloc": [ - "default.handlebars->23->1093", - "default.handlebars->23->1099", - "default.handlebars->23->1280", - "default.handlebars->23->1296" + "default.handlebars->23->1103", + "default.handlebars->23->1109", + "default.handlebars->23->1318", + "default.handlebars->23->1338" ] }, { @@ -6560,7 +6565,7 @@ "cs": "Intel AMT je aktivováno v režimu správce", "nl": "Intel AMT wordt geactiveerd in de beheerdersmodus", "xloc": [ - "default.handlebars->23->439" + "default.handlebars->23->443" ] }, { @@ -6570,7 +6575,7 @@ "cs": "Intel AMT je aktivováno v režimu uživatele", "nl": "Intel AMT wordt geactiveerd in Client Control Mode", "xloc": [ - "default.handlebars->23->437" + "default.handlebars->23->441" ] }, { @@ -6580,7 +6585,7 @@ "cs": "Intel AMT je nastaveno s TLS bezpečností", "nl": "Intel AMT is ingesteld met TLS-netwerkbeveiliging", "xloc": [ - "default.handlebars->23->441" + "default.handlebars->23->445" ] }, { @@ -6611,7 +6616,7 @@ "cs": "Intel ASCII", "nl": "Intel ASCII", "xloc": [ - "default.handlebars->23->603" + "default.handlebars->23->607" ] }, { @@ -6621,7 +6626,7 @@ "cs": "Intel® Active Management Technology", "nl": "Intel® Active Management Technology", "xloc": [ - "default.handlebars->23->448" + "default.handlebars->23->452" ] }, { @@ -6631,11 +6636,11 @@ "cs": "Intel® AMT", "nl": "Intel® AMT", "xloc": [ - "default.handlebars->23->398", - "default.handlebars->23->449", - "default.handlebars->23->465", - "default.handlebars->23->966", - "default.handlebars->23->974", + "default.handlebars->23->403", + "default.handlebars->23->453", + "default.handlebars->23->469", + "default.handlebars->23->970", + "default.handlebars->23->978", "default-mobile.handlebars->9->120", "default-mobile.handlebars->9->184", "default-mobile.handlebars->9->189" @@ -6659,7 +6664,7 @@ "cs": "Intel® AMT CIRA", "nl": "Intel® AMT CIRA", "xloc": [ - "default.handlebars->23->463", + "default.handlebars->23->467", "default-mobile.handlebars->9->188" ] }, @@ -6672,7 +6677,7 @@ "xloc": [ "default.handlebars->23->179", "default.handlebars->23->366", - "default.handlebars->23->462" + "default.handlebars->23->466" ] }, { @@ -6693,8 +6698,8 @@ "cs": "Intel® AMT připojeno", "nl": "Intel® AMT verbonden", "xloc": [ - "default.handlebars->23->498", - "default.handlebars->23->499", + "default.handlebars->23->502", + "default.handlebars->23->503", "default-mobile.handlebars->9->198" ] }, @@ -6705,7 +6710,8 @@ "cs": "Intel® AMT desktop and serial události.", "nl": "Intel® AMT desktop- en seriële gebeurtenissen.", "xloc": [ - "default.handlebars->23->891" + "default.handlebars->23->895", + "default.handlebars->23->1099" ] }, { @@ -6715,8 +6721,8 @@ "cs": "Intel® AMT detekováno", "nl": "Intel® AMT gedetecteerd", "xloc": [ - "default.handlebars->23->500", - "default.handlebars->23->501", + "default.handlebars->23->504", + "default.handlebars->23->505", "default-mobile.handlebars->9->199" ] }, @@ -6727,7 +6733,7 @@ "cs": "Intel® AMT je směrovatelný a připraven k použití.", "nl": "Intel® AMT is routeerbaar en klaar voor gebruik.", "xloc": [ - "default.handlebars->23->464" + "default.handlebars->23->468" ] }, { @@ -6758,8 +6764,8 @@ "cs": "Intel® AMT pouze, bez agenta", "nl": "Intel® AMT alleen, geen agent", "xloc": [ - "default.handlebars->23->920", - "default.handlebars->23->942", + "default.handlebars->23->924", + "default.handlebars->23->946", "default-mobile.handlebars->9->271" ] }, @@ -6770,7 +6776,7 @@ "cs": "Intel® AMT politika", "nl": "Intel® AMT beleid", "xloc": [ - "default.handlebars->23->1005" + "default.handlebars->23->1009" ] }, { @@ -6790,7 +6796,7 @@ "cs": "Intel® AMT značka", "nl": "Intel® AMT Tag", "xloc": [ - "default.handlebars->23->453" + "default.handlebars->23->457" ] }, { @@ -6810,7 +6816,7 @@ "cs": "Intel® ME", "nl": "Intel® ME", "xloc": [ - "default.handlebars->23->447", + "default.handlebars->23->451", "default-mobile.handlebars->9->183" ] }, @@ -6821,7 +6827,7 @@ "cs": "Intel® SM", "nl": "Intel® SM", "xloc": [ - "default.handlebars->23->451", + "default.handlebars->23->455", "default-mobile.handlebars->9->185" ] }, @@ -6832,7 +6838,7 @@ "cs": "Intel® Standard Manageability", "nl": "Standaard beheerbaarheid van Intel®", "xloc": [ - "default.handlebars->23->450" + "default.handlebars->23->454" ] }, { @@ -6884,7 +6890,7 @@ "cs": "Interaktivní", "nl": "Interactief", "xloc": [ - "default.handlebars->23->585" + "default.handlebars->23->589" ] }, { @@ -6906,7 +6912,7 @@ "cs": "Razhraní", "nl": "Interfaces", "xloc": [ - "default.handlebars->23->483" + "default.handlebars->23->487" ] }, { @@ -6917,7 +6923,7 @@ "cs": "Inuktitut", "nl": "Inuktitut", "xloc": [ - "default.handlebars->23->777" + "default.handlebars->23->781" ] }, { @@ -6947,8 +6953,8 @@ "cs": "Neplatný formát JSON souboru.", "nl": "Ongeldige JSON-bestandsindeling.", "xloc": [ - "default.handlebars->23->1175", - "default.handlebars->23->1177" + "default.handlebars->23->1186", + "default.handlebars->23->1188" ] }, { @@ -6958,7 +6964,7 @@ "cs": "Neplatný JSON soubor: {0}.", "nl": "Ongeldig JSON-bestand: {0}.", "xloc": [ - "default.handlebars->23->1173" + "default.handlebars->23->1184" ] }, { @@ -7002,7 +7008,7 @@ "xloc": [ "default.handlebars->23->230", "default.handlebars->23->307", - "default.handlebars->23->989" + "default.handlebars->23->993" ] }, { @@ -7025,7 +7031,7 @@ "nl": "Nodig iemand uit om de mesh-agent op deze mesh te installeren.", "xloc": [ "default.handlebars->23->229", - "default.handlebars->23->988" + "default.handlebars->23->992" ] }, { @@ -7097,7 +7103,7 @@ "cs": "Irish", "nl": "Iers", "xloc": [ - "default.handlebars->23->778" + "default.handlebars->23->782" ] }, { @@ -7108,7 +7114,7 @@ "cs": "Italian (Standard)", "nl": "Italiaans (standaard)", "xloc": [ - "default.handlebars->23->779" + "default.handlebars->23->783" ] }, { @@ -7119,7 +7125,7 @@ "cs": "Italian (Switzerland)", "nl": "Italiaans (Zwitserland)", "xloc": [ - "default.handlebars->23->780" + "default.handlebars->23->784" ] }, { @@ -7130,7 +7136,7 @@ "cs": "Japanese", "nl": "Japans", "xloc": [ - "default.handlebars->23->781" + "default.handlebars->23->785" ] }, { @@ -7141,8 +7147,8 @@ "cs": "JSON formát", "nl": "JSON-indeling", "xloc": [ - "default.handlebars->23->1143", - "default.handlebars->23->1181" + "default.handlebars->23->1153", + "default.handlebars->23->1192" ] }, { @@ -7152,7 +7158,7 @@ "cs": "Kannada", "nl": "Kannada", "xloc": [ - "default.handlebars->23->782" + "default.handlebars->23->786" ] }, { @@ -7162,7 +7168,7 @@ "cs": "Kashmiri", "nl": "kasjmier", "xloc": [ - "default.handlebars->23->783" + "default.handlebars->23->787" ] }, { @@ -7172,7 +7178,7 @@ "cs": "Kazakh", "nl": "Kazachse", "xloc": [ - "default.handlebars->23->784" + "default.handlebars->23->788" ] }, { @@ -7182,7 +7188,7 @@ "cs": "Ovladač jádra", "nl": "KernelDriver", "xloc": [ - "default.handlebars->23->586" + "default.handlebars->23->590" ] }, { @@ -7193,8 +7199,8 @@ "cs": "Jméno klíče", "nl": "Sleutelnaam", "xloc": [ - "default.handlebars->23->675", - "default.handlebars->23->678" + "default.handlebars->23->679", + "default.handlebars->23->682" ] }, { @@ -7215,7 +7221,7 @@ "cs": "Khmer", "nl": "Khmer", "xloc": [ - "default.handlebars->23->785" + "default.handlebars->23->789" ] }, { @@ -7225,7 +7231,7 @@ "cs": "Kirghiz", "nl": "Kirgizisch", "xloc": [ - "default.handlebars->23->786" + "default.handlebars->23->790" ] }, { @@ -7235,7 +7241,7 @@ "cs": "Klingon", "nl": "Klingon", "xloc": [ - "default.handlebars->23->787" + "default.handlebars->23->791" ] }, { @@ -7246,7 +7252,7 @@ "cs": "Korean", "nl": "Koreaans", "xloc": [ - "default.handlebars->23->788" + "default.handlebars->23->792" ] }, { @@ -7257,7 +7263,7 @@ "cs": "Korean (North Korea)", "nl": "Koreaans (Noord-Korea)", "xloc": [ - "default.handlebars->23->789" + "default.handlebars->23->793" ] }, { @@ -7268,7 +7274,7 @@ "cs": "Korean (South Korea)", "nl": "Koreaans (Zuid-Korea)", "xloc": [ - "default.handlebars->23->790" + "default.handlebars->23->794" ] }, { @@ -7279,7 +7285,7 @@ "ja": "言語", "nl": "Taal", "xloc": [ - "default.handlebars->23->883" + "default.handlebars->23->887" ] }, { @@ -7301,7 +7307,7 @@ "cs": "Velké zaměření", "nl": "Grote focus", "xloc": [ - "default.handlebars->23->575" + "default.handlebars->23->579" ] }, { @@ -7424,7 +7430,7 @@ "cs": "Poslední přístup", "nl": "Laatste toegang", "xloc": [ - "default.handlebars->23->1150" + "default.handlebars->23->1161" ] }, { @@ -7459,7 +7465,7 @@ "ja": "最終変更:{0}", "nl": "Laatst gewijzigd: {0}", "xloc": [ - "default.handlebars->23->1232" + "default.handlebars->23->1243" ] }, { @@ -7492,7 +7498,7 @@ "cs": "Poslední přihlášení", "nl": "Laatste inlog", "xloc": [ - "default.handlebars->23->1228" + "default.handlebars->23->1239" ] }, { @@ -7502,7 +7508,7 @@ "cs": "Poslední přihlášení: {0}", "nl": "Laatste inlog: {0}", "xloc": [ - "default.handlebars->23->1160" + "default.handlebars->23->1171" ] }, { @@ -7514,7 +7520,7 @@ "nl": "Laatst gezien", "xloc": [ "default.handlebars->23->78", - "default.handlebars->23->504" + "default.handlebars->23->508" ] }, { @@ -7557,7 +7563,7 @@ "cs": "Latin", "nl": "latijns", "xloc": [ - "default.handlebars->23->791" + "default.handlebars->23->795" ] }, { @@ -7567,7 +7573,7 @@ "cs": "Latvian", "nl": "Lets", "xloc": [ - "default.handlebars->23->792" + "default.handlebars->23->796" ] }, { @@ -7592,7 +7598,7 @@ "cs": "Méně", "nl": "Minder", "xloc": [ - "default.handlebars->23->1310" + "default.handlebars->23->1352" ] }, { @@ -7602,8 +7608,8 @@ "cs": "LF", "nl": "LF", "xloc": [ - "default.handlebars->23->599", - "default.handlebars->23->608" + "default.handlebars->23->603", + "default.handlebars->23->612" ] }, { @@ -7635,7 +7641,7 @@ "cs": "Omezené vstupy", "nl": "Beperkte invoer", "xloc": [ - "default.handlebars->23->1078", + "default.handlebars->23->1084", "default-mobile.handlebars->9->320" ] }, @@ -7646,7 +7652,7 @@ "cs": "Pouze omezené vstupy", "nl": "Alleen beperkte invoer", "xloc": [ - "default.handlebars->23->1052", + "default.handlebars->23->1058", "default-mobile.handlebars->9->295" ] }, @@ -7659,7 +7665,7 @@ "nl": "Link", "xloc": [ "default.handlebars->container->column_l->p42->p42tbl->1->0->4", - "default.handlebars->23->1105", + "default.handlebars->23->1115", "default-mobile.handlebars->9->65" ] }, @@ -7746,7 +7752,7 @@ "cs": "Linux ARM, Raspberry Pi (32bit)", "nl": "Linux ARM, Raspberry Pi (32bit)", "xloc": [ - "default.handlebars->23->557" + "default.handlebars->23->561" ] }, { @@ -7810,7 +7816,7 @@ "cs": "Linux x86 (32bit)", "nl": "Linux x86 (32bit)", "xloc": [ - "default.handlebars->23->554" + "default.handlebars->23->558" ] }, { @@ -7820,7 +7826,7 @@ "cs": "Linux x86 (64bit)", "nl": "Linux x86 (64bit)", "xloc": [ - "default.handlebars->23->555" + "default.handlebars->23->559" ] }, { @@ -7843,7 +7849,7 @@ "cs": "Lithuanian", "nl": "Litouws", "xloc": [ - "default.handlebars->23->793" + "default.handlebars->23->797" ] }, { @@ -7854,10 +7860,10 @@ "ja": "読み込み中...", "nl": "Laden...", "xloc": [ - "default.handlebars->23->549", - "default.handlebars->23->671", - "default.handlebars->23->937", - "default.handlebars->23->939", + "default.handlebars->23->553", + "default.handlebars->23->675", + "default.handlebars->23->941", + "default.handlebars->23->943", "default-mobile.handlebars->9->28" ] }, @@ -7899,7 +7905,7 @@ "nl": "Lokalisatie instellingen", "xloc": [ "default.handlebars->container->column_l->p2->p2AccountActions->3->5", - "default.handlebars->23->886" + "default.handlebars->23->890" ] }, { @@ -7909,7 +7915,7 @@ "cs": "Umístění", "nl": "Lokatie", "xloc": [ - "default.handlebars->23->485" + "default.handlebars->23->489" ] }, { @@ -7930,7 +7936,7 @@ "ja": "アカウントをロック", "nl": "Account vergrendelen", "xloc": [ - "default.handlebars->23->1209" + "default.handlebars->23->1220" ] }, { @@ -7941,7 +7947,7 @@ "ja": "ロック済み", "nl": "Vergrendeld", "xloc": [ - "default.handlebars->23->1161" + "default.handlebars->23->1172" ] }, { @@ -7952,7 +7958,7 @@ "cs": "Uzamknutý účet", "nl": "Vergrendeld account", "xloc": [ - "default.handlebars->23->1213" + "default.handlebars->23->1224" ] }, { @@ -7962,7 +7968,7 @@ "ja": "ログイベント", "nl": "Gebeurtenissenlog", "xloc": [ - "default.handlebars->23->476" + "default.handlebars->23->480" ] }, { @@ -8045,7 +8051,7 @@ "cs": "Luxembourgish", "nl": "Luxemburgs", "xloc": [ - "default.handlebars->23->794" + "default.handlebars->23->798" ] }, { @@ -8076,7 +8082,7 @@ "cs": "MacOS (64bit)", "nl": "MacOS (64bit)", "xloc": [ - "default.handlebars->23->556" + "default.handlebars->23->560" ] }, { @@ -8108,7 +8114,7 @@ "cs": "Zprávy hlavního serveru", "nl": "Hoofdserver berichten", "xloc": [ - "default.handlebars->23->1287" + "default.handlebars->23->1329" ] }, { @@ -8118,7 +8124,7 @@ "cs": "Malay", "nl": "Maleis", "xloc": [ - "default.handlebars->23->796" + "default.handlebars->23->800" ] }, { @@ -8128,7 +8134,7 @@ "cs": "Malayalam", "nl": "Malayalam", "xloc": [ - "default.handlebars->23->797" + "default.handlebars->23->801" ] }, { @@ -8138,7 +8144,7 @@ "cs": "Maltese", "nl": "Maltese", "xloc": [ - "default.handlebars->23->798" + "default.handlebars->23->802" ] }, { @@ -8181,8 +8187,8 @@ "ja": "デバイスグループコンピューターの管理", "nl": "Beheer apparaatgroep computers", "xloc": [ - "default.handlebars->23->1049", - "default.handlebars->23->1068", + "default.handlebars->23->1055", + "default.handlebars->23->1074", "default-mobile.handlebars->9->292", "default-mobile.handlebars->9->310" ] @@ -8194,8 +8200,8 @@ "ja": "デバイスグループユーザーの管理", "nl": "Beheer apparaatgroep gebruikers", "xloc": [ - "default.handlebars->23->1048", - "default.handlebars->23->1067", + "default.handlebars->23->1054", + "default.handlebars->23->1073", "default-mobile.handlebars->9->291", "default-mobile.handlebars->9->309" ] @@ -8228,7 +8234,7 @@ "ja": "ユーザーを管理する", "nl": "Beheer gebruikers", "xloc": [ - "default.handlebars->23->1208" + "default.handlebars->23->1219" ] }, { @@ -8239,7 +8245,7 @@ "cs": "Spravovat pomocí softwarového agenta", "nl": "Beheer met behulp van een software-agent", "xloc": [ - "default.handlebars->23->919" + "default.handlebars->23->923" ] }, { @@ -8250,7 +8256,7 @@ "cs": "Spravovat pomocí softwarového aenta", "nl": "Beheerd met behulp van een software-agent", "xloc": [ - "default.handlebars->23->943", + "default.handlebars->23->947", "default-mobile.handlebars->9->272" ] }, @@ -8261,7 +8267,7 @@ "cs": "Správce", "nl": "Beheerder", "xloc": [ - "default.handlebars->23->1166" + "default.handlebars->23->1177" ] }, { @@ -8293,7 +8299,7 @@ "cs": "Maori", "nl": "Maori", "xloc": [ - "default.handlebars->23->799" + "default.handlebars->23->803" ] }, { @@ -8316,7 +8322,7 @@ "cs": "Marathi", "nl": "Marathi", "xloc": [ - "default.handlebars->23->800" + "default.handlebars->23->804" ] }, { @@ -8352,7 +8358,7 @@ "ja": "メガバイト", "nl": "Megabytes", "xloc": [ - "default.handlebars->23->1281" + "default.handlebars->23->1319" ] }, { @@ -8365,7 +8371,7 @@ "xloc": [ "default.handlebars->container->column_l->p40->3->1->p40type->3", "default.handlebars->23->70", - "default.handlebars->23->1272" + "default.handlebars->23->1310" ] }, { @@ -8380,8 +8386,8 @@ "default.handlebars->23->330", "default.handlebars->23->333", "default.handlebars->23->336", - "default.handlebars->23->430", - "default.handlebars->23->461", + "default.handlebars->23->434", + "default.handlebars->23->465", "default-mobile.handlebars->9->197" ] }, @@ -8392,7 +8398,7 @@ "ja": "メッシュエージェントコンソール", "nl": "Mesh Agent Console", "xloc": [ - "default.handlebars->23->1056", + "default.handlebars->23->1062", "default-mobile.handlebars->9->299" ] }, @@ -8405,7 +8411,7 @@ "xloc": [ "default.handlebars->23->177", "default.handlebars->23->364", - "default.handlebars->23->460" + "default.handlebars->23->464" ] }, { @@ -8417,7 +8423,7 @@ "xloc": [ "default.handlebars->23->183", "default.handlebars->23->370", - "default.handlebars->23->466" + "default.handlebars->23->470" ] }, { @@ -8427,7 +8433,7 @@ "cs": "Mesh přesměrování", "nl": "Mesh Relay", "xloc": [ - "default.handlebars->23->467" + "default.handlebars->23->471" ] }, { @@ -8436,7 +8442,7 @@ "cs": "MeshAgent provoz", "nl": "MeshAgent verkeer", "xloc": [ - "default.handlebars->23->1289" + "default.handlebars->23->1331" ] }, { @@ -8445,7 +8451,7 @@ "cs": "MeshAgent aktualizace", "nl": "MeshAgent update", "xloc": [ - "default.handlebars->23->1290" + "default.handlebars->23->1332" ] }, { @@ -8465,7 +8471,7 @@ "cs": "MeshCentral chyby", "nl": "MeshCentral fouten", "xloc": [ - "default.handlebars->23->938" + "default.handlebars->23->942" ] }, { @@ -8475,7 +8481,7 @@ "cs": "MeshCentral Router", "nl": "MeshCentral Router", "xloc": [ - "default.handlebars->23->551" + "default.handlebars->23->555" ] }, { @@ -8485,7 +8491,7 @@ "cs": "MeshCentral Router je Windows nástroj pro přemapování portů. Múžete si například přesměrovat vzdálené RDP pomocí tohoto serveru. ", "nl": "MeshCentral Router is een Windows tool voor het toewijzen van TCP poorten. U kunt RDP bijvoorbeeld via deze server naar een extern apparaat sturen.", "xloc": [ - "default.handlebars->23->550" + "default.handlebars->23->554" ] }, { @@ -8506,7 +8512,7 @@ "cs": "MeshCentral Server Peering", "nl": "MeshCentral Server Peering", "xloc": [ - "default.handlebars->23->1288" + "default.handlebars->23->1330" ] }, { @@ -8528,7 +8534,7 @@ "xloc": [ "default.handlebars->23->107", "default.handlebars->23->108", - "default.handlebars->23->936" + "default.handlebars->23->940" ] }, { @@ -8581,7 +8587,7 @@ "nl": "Bericht", "xloc": [ "default.handlebars->23->296", - "default.handlebars->23->530" + "default.handlebars->23->534" ] }, { @@ -8591,7 +8597,7 @@ "cs": "Odesílatel", "nl": "Bericht Dispatcher", "xloc": [ - "default.handlebars->23->1286" + "default.handlebars->23->1328" ] }, { @@ -8643,7 +8649,7 @@ "cs": "Upravit umístění nódu", "nl": "Wijzig knooppuntlocatie", "xloc": [ - "default.handlebars->23->392" + "default.handlebars->23->397" ] }, { @@ -8653,7 +8659,7 @@ "cs": "Moldavian", "nl": "Moldavisch ", "xloc": [ - "default.handlebars->23->801" + "default.handlebars->23->805" ] }, { @@ -8664,7 +8670,7 @@ "ja": "もっと", "nl": "Meer", "xloc": [ - "default.handlebars->23->1309" + "default.handlebars->23->1351" ] }, { @@ -8685,7 +8691,7 @@ "cs": "přesun", "nl": "verplaatsen", "xloc": [ - "default.handlebars->23->1135", + "default.handlebars->23->1145", "default-mobile.handlebars->9->87" ] }, @@ -8696,7 +8702,7 @@ "cs": "Přesunout toto zařízení do jiné skupiny zařízení", "nl": "Verplaats dit apparaat naar een andere apparaatgroep", "xloc": [ - "default.handlebars->23->478" + "default.handlebars->23->482" ] }, { @@ -8732,9 +8738,9 @@ "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->3", "default.handlebars->23->186", "default.handlebars->23->373", - "default.handlebars->23->469", - "default.handlebars->23->658", - "default.handlebars->23->659", + "default.handlebars->23->473", + "default.handlebars->23->662", + "default.handlebars->23->663", "default-mobile.handlebars->9->122", "default-mobile.handlebars->9->191" ] @@ -8746,7 +8752,7 @@ "cs": "MQTT kanál připojen", "nl": "MQTT-kanaal verbonden", "xloc": [ - "default.handlebars->23->503", + "default.handlebars->23->507", "default-mobile.handlebars->9->200" ] }, @@ -8758,7 +8764,7 @@ "nl": "MQTT verbonden", "xloc": [ "default.handlebars->23->152", - "default.handlebars->23->502" + "default.handlebars->23->506" ] }, { @@ -8770,7 +8776,7 @@ "xloc": [ "default.handlebars->23->185", "default.handlebars->23->372", - "default.handlebars->23->468" + "default.handlebars->23->472" ] }, { @@ -8800,7 +8806,7 @@ "cs": "MQTT přihlášení", "nl": "MQTT Login", "xloc": [ - "default.handlebars->23->495" + "default.handlebars->23->499" ] }, { @@ -8890,7 +8896,7 @@ "cs": "Moje serverová konzole", "nl": "Mijn server console", "xloc": [ - "default.handlebars->23->653" + "default.handlebars->23->657" ] }, { @@ -8956,8 +8962,8 @@ "cs": "MyKey", "nl": "Mijn sleutel", "xloc": [ - "default.handlebars->23->676", - "default.handlebars->23->679" + "default.handlebars->23->680", + "default.handlebars->23->683" ] }, { @@ -8974,12 +8980,12 @@ "default.handlebars->23->66", "default.handlebars->23->75", "default.handlebars->23->89", - "default.handlebars->23->580", - "default.handlebars->23->917", - "default.handlebars->23->944", - "default.handlebars->23->1027", - "default.handlebars->23->1149", - "default.handlebars->23->1189", + "default.handlebars->23->584", + "default.handlebars->23->921", + "default.handlebars->23->948", + "default.handlebars->23->1031", + "default.handlebars->23->1159", + "default.handlebars->23->1200", "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea3->deskarea3x->DeskTools->5->1->1", "default-mobile.handlebars->9->53", "default-mobile.handlebars->9->132", @@ -9006,7 +9012,7 @@ "cs": "Jméno1, Jméno2, Jméno3", "nl": "Naam1, Naam2, Naam3", "xloc": [ - "default.handlebars->23->1201" + "default.handlebars->23->1212" ] }, { @@ -9017,7 +9023,7 @@ "cs": "Navajo", "nl": "Navajo", "xloc": [ - "default.handlebars->23->802" + "default.handlebars->23->806" ] }, { @@ -9028,7 +9034,7 @@ "cs": "Ndonga", "nl": "Ndonga", "xloc": [ - "default.handlebars->23->803" + "default.handlebars->23->807" ] }, { @@ -9039,7 +9045,7 @@ "cs": "Nepali", "nl": "Nepalees", "xloc": [ - "default.handlebars->23->804" + "default.handlebars->23->808" ] }, { @@ -9050,7 +9056,7 @@ "ja": "ネットワークインターフェース", "nl": "Netwerk Interfaces", "xloc": [ - "default.handlebars->23->548" + "default.handlebars->23->552" ] }, { @@ -9061,7 +9067,7 @@ "cs": "Síťový router", "nl": "Netwerk Router", "xloc": [ - "default.handlebars->23->559" + "default.handlebars->23->563" ] }, { @@ -9095,9 +9101,9 @@ "ja": "新しいデバイスグループ", "nl": "Nieuwe apparaatgroep", "xloc": [ - "default.handlebars->23->540", - "default.handlebars->23->910", - "default.handlebars->23->922", + "default.handlebars->23->544", + "default.handlebars->23->914", + "default.handlebars->23->926", "default-mobile.handlebars->9->47" ] }, @@ -9111,8 +9117,8 @@ "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->618", - "default.handlebars->23->1123", + "default.handlebars->23->622", + "default.handlebars->23->1133", "default-mobile.handlebars->9->76", "default-mobile.handlebars->9->244" ] @@ -9125,8 +9131,8 @@ "ja": "新しいパスワード:", "nl": "Nieuw wachtwoord:", "xloc": [ - "default.handlebars->23->905", - "default.handlebars->23->906", + "default.handlebars->23->909", + "default.handlebars->23->910", "default-mobile.handlebars->9->42", "default-mobile.handlebars->9->43" ] @@ -9160,8 +9166,8 @@ "ja": "資格情報なし", "nl": "Geen referenties", "xloc": [ - "default.handlebars->23->444", - "default.handlebars->23->445", + "default.handlebars->23->448", + "default.handlebars->23->449", "default-mobile.handlebars->9->181", "default-mobile.handlebars->9->182" ] @@ -9208,7 +9214,7 @@ "ja": "デバイスが見つかりません。", "nl": "Geen apparaten gevonden.", "xloc": [ - "default.handlebars->23->410" + "default.handlebars->23->414" ] }, { @@ -9242,9 +9248,9 @@ "cs": "Žádné události", "nl": "Geen gebeurtenissen gevonden", "xloc": [ - "default.handlebars->23->651", - "default.handlebars->23->1139", - "default.handlebars->23->1261" + "default.handlebars->23->655", + "default.handlebars->23->1149", + "default.handlebars->23->1276" ] }, { @@ -9255,7 +9261,7 @@ "cs": "Žádný přístup k souborům", "nl": "Geen bestandstoegang", "xloc": [ - "default.handlebars->23->1054", + "default.handlebars->23->1060", "default-mobile.handlebars->9->297" ] }, @@ -9267,7 +9273,7 @@ "cs": "Žádné soubory", "nl": "Geen bestanden", "xloc": [ - "default.handlebars->23->1076", + "default.handlebars->23->1082", "default-mobile.handlebars->9->318" ] }, @@ -9288,8 +9294,8 @@ "cs": "Žádné Intel® AMT", "nl": "Geen Intel® AMT", "xloc": [ - "default.handlebars->23->1055", - "default.handlebars->23->1077", + "default.handlebars->23->1061", + "default.handlebars->23->1083", "default-mobile.handlebars->9->298", "default-mobile.handlebars->9->319" ] @@ -9331,7 +9337,7 @@ "cs": "Žádné umístění.", "nl": "Geen locatie gevonden.", "xloc": [ - "default.handlebars->23->412" + "default.handlebars->23->416" ] }, { @@ -9351,7 +9357,7 @@ "cs": "Žádná nová skupina zařízení", "nl": "Geen nieuwe apparaatgroepen", "xloc": [ - "default.handlebars->23->1210" + "default.handlebars->23->1221" ] }, { @@ -9361,7 +9367,7 @@ "cs": "Žádná další podobná skupina zařízení.", "nl": "Er bestaat geen andere apparaatgroep van hetzelfde type.", "xloc": [ - "default.handlebars->23->543" + "default.handlebars->23->547" ] }, { @@ -9380,9 +9386,9 @@ "cs": "Žádná politika", "nl": "Geen beleid", "xloc": [ - "default.handlebars->23->969", - "default.handlebars->23->999", - "default.handlebars->23->1002" + "default.handlebars->23->973", + "default.handlebars->23->1003", + "default.handlebars->23->1006" ] }, { @@ -9392,9 +9398,9 @@ "cs": "Žádná práva", "nl": "Geen rechten", "xloc": [ - "default.handlebars->23->931", - "default.handlebars->23->993", - "default.handlebars->23->1082", + "default.handlebars->23->935", + "default.handlebars->23->997", + "default.handlebars->23->1088", "default-mobile.handlebars->9->62", "default-mobile.handlebars->9->281", "default-mobile.handlebars->9->324" @@ -9407,7 +9413,7 @@ "cs": "Žádná práva k serveru", "nl": "Geen server rechten", "xloc": [ - "default.handlebars->23->1214" + "default.handlebars->23->1225" ] }, { @@ -9417,7 +9423,7 @@ "ja": "ターミナルなし", "nl": "Geen terminal", "xloc": [ - "default.handlebars->23->1075", + "default.handlebars->23->1081", "default-mobile.handlebars->9->317" ] }, @@ -9428,7 +9434,7 @@ "cs": "Žádný přístup k terminálu", "nl": "Geen terminal toegang", "xloc": [ - "default.handlebars->23->1053", + "default.handlebars->23->1059", "default-mobile.handlebars->9->296" ] }, @@ -9441,7 +9447,7 @@ "nl": "Geen TLS beveiliging", "xloc": [ "default.handlebars->23->239", - "default.handlebars->23->526", + "default.handlebars->23->530", "default-mobile.handlebars->9->212" ] }, @@ -9452,7 +9458,7 @@ "ja": "ツールなし(MeshCmd / Router)", "nl": "Geen Tools (MeshCmd/Router)", "xloc": [ - "default.handlebars->23->1211" + "default.handlebars->23->1222" ] }, { @@ -9462,7 +9468,7 @@ "ja": "ユーザが見つかりませんでした。", "nl": "Geen gebruikers gevonden", "xloc": [ - "default.handlebars->23->1156" + "default.handlebars->23->1167" ] }, { @@ -9499,17 +9505,17 @@ "default.handlebars->23->161", "default.handlebars->23->175", "default.handlebars->23->176", - "default.handlebars->23->417", - "default.handlebars->23->425", - "default.handlebars->23->427", - "default.handlebars->23->471", - "default.handlebars->23->946", + "default.handlebars->23->421", + "default.handlebars->23->429", + "default.handlebars->23->431", + "default.handlebars->23->475", "default.handlebars->23->950", - "default.handlebars->23->962", - "default.handlebars->23->967", - "default.handlebars->23->1111", - "default.handlebars->23->1233", - "default.handlebars->23->1237", + "default.handlebars->23->954", + "default.handlebars->23->966", + "default.handlebars->23->971", + "default.handlebars->23->1121", + "default.handlebars->23->1244", + "default.handlebars->23->1248", "default-mobile.handlebars->9->72", "default-mobile.handlebars->9->90", "default-mobile.handlebars->9->92", @@ -9540,7 +9546,7 @@ "cs": "Norwegian", "nl": "Noors", "xloc": [ - "default.handlebars->23->805" + "default.handlebars->23->809" ] }, { @@ -9551,7 +9557,7 @@ "cs": "Norwegian (Bokmal)", "nl": "Noors (Bokmal)", "xloc": [ - "default.handlebars->23->806" + "default.handlebars->23->810" ] }, { @@ -9562,7 +9568,7 @@ "cs": "Norwegian (Nynorsk)", "nl": "Noors (Nynorsk)", "xloc": [ - "default.handlebars->23->807" + "default.handlebars->23->811" ] }, { @@ -9572,7 +9578,7 @@ "cs": "Neaktivováno", "nl": "Niet geactiveerd (In)", "xloc": [ - "default.handlebars->23->432", + "default.handlebars->23->436", "default-mobile.handlebars->9->173" ] }, @@ -9583,7 +9589,7 @@ "cs": "Neaktivováno (před)", "nl": "Niet geactiveerd (Pre)", "xloc": [ - "default.handlebars->23->431", + "default.handlebars->23->435", "default-mobile.handlebars->9->172" ] }, @@ -9594,7 +9600,7 @@ "ja": "設定されていません", "nl": "Niet ingesteld", "xloc": [ - "default.handlebars->23->1219" + "default.handlebars->23->1230" ] }, { @@ -9605,10 +9611,10 @@ "ja": "ノート", "nl": "Notities", "xloc": [ - "default.handlebars->23->474", - "default.handlebars->23->507", - "default.handlebars->23->975", - "default.handlebars->23->1244" + "default.handlebars->23->478", + "default.handlebars->23->511", + "default.handlebars->23->979", + "default.handlebars->23->1255" ] }, { @@ -9628,8 +9634,8 @@ "nl": "meldingsinstellingen", "xloc": [ "default.handlebars->container->column_l->p2->p2AccountActions->3->8", - "default.handlebars->23->892", - "default.handlebars->23->1090" + "default.handlebars->23->896", + "default.handlebars->23->1100" ] }, { @@ -9639,7 +9645,7 @@ "cs": "Zvuk notifikací", "nl": "Meldingsgeluid.", "xloc": [ - "default.handlebars->23->887" + "default.handlebars->23->891" ] }, { @@ -9649,7 +9655,7 @@ "ja": "通知", "nl": "Meldingen", "xloc": [ - "default.handlebars->23->968" + "default.handlebars->23->972" ] }, { @@ -9659,7 +9665,7 @@ "cs": "Oznámit", "nl": "Melden", "xloc": [ - "default.handlebars->23->1246" + "default.handlebars->23->1257" ] }, { @@ -9670,9 +9676,9 @@ "cs": "Informovat uživatele", "nl": "Gebruiker informeren", "xloc": [ - "default.handlebars->23->1031", "default.handlebars->23->1035", - "default.handlebars->23->1038" + "default.handlebars->23->1039", + "default.handlebars->23->1042" ] }, { @@ -9682,7 +9688,7 @@ "cs": "Informovat {0}", "nl": "Melden {0}", "xloc": [ - "default.handlebars->23->1168" + "default.handlebars->23->1179" ] }, { @@ -9692,7 +9698,7 @@ "cs": "Occitan", "nl": "Occitaans", "xloc": [ - "default.handlebars->23->808" + "default.handlebars->23->812" ] }, { @@ -9703,7 +9709,7 @@ "cs": "Došlo k {0}", "nl": "Heeft plaatsgevonden op {0}", "xloc": [ - "default.handlebars->23->1264" + "default.handlebars->23->1279" ] }, { @@ -9714,7 +9720,7 @@ "cs": "Nepřipojení uživatelé", "nl": "Offline gebruikers", "xloc": [ - "default.handlebars->23->1153" + "default.handlebars->23->1164" ] }, { @@ -9725,8 +9731,8 @@ "nl": "Oke", "xloc": [ "default.handlebars->container->dialog->idx_dlgButtonBar", - "default.handlebars->23->457", - "default.handlebars->23->934", + "default.handlebars->23->461", + "default.handlebars->23->938", "default-mobile.handlebars->dialog->idx_dlgButtonBar", "default-mobile.handlebars->9->39", "login.handlebars->dialog->idx_dlgButtonBar", @@ -9742,7 +9748,7 @@ "ja": "以前のパスワード:", "nl": "Oud wachtwoord:", "xloc": [ - "default.handlebars->23->904", + "default.handlebars->23->908", "default-mobile.handlebars->9->41" ] }, @@ -9765,7 +9771,7 @@ "ja": "オンラインユーザー", "nl": "Online gebruikers", "xloc": [ - "default.handlebars->23->1152" + "default.handlebars->23->1163" ] }, { @@ -9775,7 +9781,7 @@ "ja": "編集できるのは200k未満のファイルのみです。", "nl": "Alleen bestanden kleiner dan 200k kunnen worden bewerkt.", "xloc": [ - "default.handlebars->23->626", + "default.handlebars->23->630", "default-mobile.handlebars->9->252" ] }, @@ -9784,10 +9790,7 @@ "cs": "otevřít", "pt": "abrir", "ja": "開いた", - "nl": "Open", - "xloc": [ - "default.handlebars->23->405" - ] + "nl": "Open" }, { "en": "Open a web address on the remote computer", @@ -9827,7 +9830,7 @@ "cs": "Otevřít stránku na zařízení", "nl": "Open pagina op apparaat", "xloc": [ - "default.handlebars->23->509" + "default.handlebars->23->513" ] }, { @@ -9841,7 +9844,7 @@ "default.handlebars->23->74", "default.handlebars->23->279", "default.handlebars->23->308", - "default.handlebars->23->454" + "default.handlebars->23->458" ] }, { @@ -9853,7 +9856,7 @@ "nl": "Operatie", "xloc": [ "default.handlebars->23->380", - "default.handlebars->23->518", + "default.handlebars->23->522", "default-mobile.handlebars->9->207" ] }, @@ -9875,7 +9878,7 @@ "cs": "Oriya", "nl": "Oriya", "xloc": [ - "default.handlebars->23->809" + "default.handlebars->23->813" ] }, { @@ -9885,7 +9888,7 @@ "cs": "Oromo", "nl": "Oromo", "xloc": [ - "default.handlebars->23->810" + "default.handlebars->23->814" ] }, { @@ -9929,7 +9932,7 @@ "cs": "Zastaralý", "nl": "Verouderd", "xloc": [ - "default.handlebars->23->456" + "default.handlebars->23->460" ] }, { @@ -9939,7 +9942,7 @@ "cs": "OwnProcess", "nl": "Eigen proces", "xloc": [ - "default.handlebars->23->587" + "default.handlebars->23->591" ] }, { @@ -9961,7 +9964,7 @@ "cs": "Částečný", "nl": "Gedeeltelijk", "xloc": [ - "default.handlebars->23->1167" + "default.handlebars->23->1178" ] }, { @@ -9971,8 +9974,8 @@ "cs": "Částečné práva", "nl": "Gedeeltelijke rechten", "xloc": [ - "default.handlebars->23->929", - "default.handlebars->23->991", + "default.handlebars->23->933", + "default.handlebars->23->995", "default-mobile.handlebars->9->60", "default-mobile.handlebars->9->279" ] @@ -9984,7 +9987,7 @@ "cs": "Částečné práva", "nl": "Gedeeltelijke rechten", "xloc": [ - "default.handlebars->23->1217" + "default.handlebars->23->1228" ] }, { @@ -10007,13 +10010,13 @@ "xloc": [ "default.handlebars->23->237", "default.handlebars->23->266", - "default.handlebars->23->524", - "default.handlebars->23->1191", - "default.handlebars->23->1192", - "default.handlebars->23->1229", - "default.handlebars->23->1231", - "default.handlebars->23->1253", - "default.handlebars->23->1254", + "default.handlebars->23->528", + "default.handlebars->23->1202", + "default.handlebars->23->1203", + "default.handlebars->23->1240", + "default.handlebars->23->1242", + "default.handlebars->23->1266", + "default.handlebars->23->1267", "default-mobile.handlebars->9->210" ] }, @@ -10035,7 +10038,7 @@ "cs": "Nápověda k heslu", "nl": "wachtwoord hint", "xloc": [ - "default.handlebars->23->1255" + "default.handlebars->23->1268" ] }, { @@ -10068,7 +10071,7 @@ "cs": "Nápověda k heslu:", "nl": "wachtwoord hint:", "xloc": [ - "default.handlebars->23->907", + "default.handlebars->23->911", "default-mobile.handlebars->9->44" ] }, @@ -10079,7 +10082,7 @@ "cs": "Hesla nejsou stejná", "nl": "Wachtwoord komt niet overeen", "xloc": [ - "default.handlebars->23->1008" + "default.handlebars->23->1012" ] }, { @@ -10115,8 +10118,8 @@ "ja": "パスワード*", "nl": "Wachtwoord*", "xloc": [ - "default.handlebars->23->1006", - "default.handlebars->23->1007" + "default.handlebars->23->1010", + "default.handlebars->23->1011" ] }, { @@ -10127,8 +10130,8 @@ "ja": "パスワード:", "nl": "Wachtwoord:", "xloc": [ - "default.handlebars->23->899", - "default.handlebars->23->900", + "default.handlebars->23->903", + "default.handlebars->23->904", "default-mobile.handlebars->9->36", "default-mobile.handlebars->9->37", "login.handlebars->container->column_l->centralTable->1->0->logincell->loginpanel->1->7->1->2->1", @@ -10154,9 +10157,9 @@ "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", "default.handlebars->container->column_l->p12->termTable->1->1->6->1->3", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", - "default.handlebars->23->609", - "default.handlebars->23->631", - "default.handlebars->23->1132", + "default.handlebars->23->613", + "default.handlebars->23->635", + "default.handlebars->23->1142", "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->3", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->3", "default-mobile.handlebars->9->84", @@ -10193,7 +10196,7 @@ "ja": "エージェントアクションの実行", "nl": "Agentactie uitvoeren", "xloc": [ - "default.handlebars->23->661" + "default.handlebars->23->665" ] }, { @@ -10214,7 +10217,7 @@ "nl": "Voer Intel AMT admin control mode (ACM) activering uit.", "xloc": [ "default.handlebars->23->225", - "default.handlebars->23->984" + "default.handlebars->23->988" ] }, { @@ -10235,7 +10238,7 @@ "nl": "Voer Intel AMT client control mode (CCM) activering uit.", "xloc": [ "default.handlebars->23->223", - "default.handlebars->23->982" + "default.handlebars->23->986" ] }, { @@ -10249,7 +10252,7 @@ "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->1", "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->1", - "default.handlebars->23->473" + "default.handlebars->23->477" ] }, { @@ -10260,8 +10263,8 @@ "ja": "許可", "nl": "machtigingen", "xloc": [ - "default.handlebars->23->1085", - "default.handlebars->23->1151", + "default.handlebars->23->1091", + "default.handlebars->23->1162", "default-mobile.handlebars->9->326" ] }, @@ -10272,7 +10275,7 @@ "cs": "Persian/Iran", "nl": "Perzisch / Iran", "xloc": [ - "default.handlebars->23->811" + "default.handlebars->23->815" ] }, { @@ -10283,7 +10286,7 @@ "nl": "PID", "xloc": [ "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader->1", - "default.handlebars->23->583", + "default.handlebars->23->587", "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea3->deskarea3x->DeskTools->5->1->0" ] }, @@ -10294,7 +10297,7 @@ "cs": "Umístit nód zde", "nl": "Plaats hier een knooppunt", "xloc": [ - "default.handlebars->23->404" + "default.handlebars->23->409" ] }, { @@ -10346,7 +10349,7 @@ "cs": "Prosím počkejte pár minut než dojde k verifikaci.", "nl": "Wacht enkele minuten om de verificatie te ontvangen.", "xloc": [ - "default.handlebars->23->894", + "default.handlebars->23->898", "default-mobile.handlebars->9->32" ] }, @@ -10357,7 +10360,7 @@ "nl": "Plugin Actie", "xloc": [ "default.handlebars->23->171", - "default.handlebars->23->1306" + "default.handlebars->23->1348" ] }, { @@ -10418,7 +10421,7 @@ "cs": "Politika", "nl": "Beleid", "xloc": [ - "default.handlebars->23->928", + "default.handlebars->23->932", "default-mobile.handlebars->9->59" ] }, @@ -10429,7 +10432,7 @@ "cs": "Polish", "nl": "Pools", "xloc": [ - "default.handlebars->23->812" + "default.handlebars->23->816" ] }, { @@ -10439,7 +10442,7 @@ "cs": "Portuguese", "nl": "Portugees", "xloc": [ - "default.handlebars->23->813" + "default.handlebars->23->817" ] }, { @@ -10449,7 +10452,7 @@ "cs": "Portuguese (Brazil)", "nl": "Portugees (Brazilië)", "xloc": [ - "default.handlebars->23->814" + "default.handlebars->23->818" ] }, { @@ -10482,7 +10485,7 @@ "nl": "Uitzetten", "xloc": [ "default.handlebars->23->6", - "default.handlebars->23->515", + "default.handlebars->23->519", "default-mobile.handlebars->9->102", "default-mobile.handlebars->9->206" ] @@ -10556,7 +10559,7 @@ "cs": "Správa procesů", "nl": "Proces controle", "xloc": [ - "default.handlebars->23->596", + "default.handlebars->23->600", "default-mobile.handlebars->9->231" ] }, @@ -10580,9 +10583,9 @@ "cs": "Výzva k souhlasu uživatele", "nl": "Vraag gebruikerstoestemming", "xloc": [ - "default.handlebars->23->1032", "default.handlebars->23->1036", - "default.handlebars->23->1039" + "default.handlebars->23->1040", + "default.handlebars->23->1043" ] }, { @@ -10604,7 +10607,7 @@ "ja": "公開リンク", "nl": "Publieke link", "xloc": [ - "default.handlebars->23->1118", + "default.handlebars->23->1128", "default-mobile.handlebars->9->71" ] }, @@ -10615,7 +10618,7 @@ "cs": "Punjabi", "nl": "Punjabi", "xloc": [ - "default.handlebars->23->815" + "default.handlebars->23->819" ] }, { @@ -10625,7 +10628,7 @@ "cs": "Punjabi (India)", "nl": "Punjabi (India)", "xloc": [ - "default.handlebars->23->816" + "default.handlebars->23->820" ] }, { @@ -10635,7 +10638,7 @@ "cs": "Punjabi (Pakistan)", "nl": "Punjabi (Pakistan)", "xloc": [ - "default.handlebars->23->817" + "default.handlebars->23->821" ] }, { @@ -10645,7 +10648,7 @@ "cs": "Putty", "nl": "Putty", "xloc": [ - "default.handlebars->23->491" + "default.handlebars->23->495" ] }, { @@ -10667,7 +10670,7 @@ "cs": "Quechua", "nl": "Quechua", "xloc": [ - "default.handlebars->23->818" + "default.handlebars->23->822" ] }, { @@ -10678,7 +10681,7 @@ "cs": "Náhodné heslo", "nl": "Randomiseer het wachtwoord.", "xloc": [ - "default.handlebars->23->1193" + "default.handlebars->23->1204" ] }, { @@ -10722,7 +10725,7 @@ "cs": "RDP", "nl": "RDP", "xloc": [ - "default.handlebars->23->489" + "default.handlebars->23->493" ] }, { @@ -10732,7 +10735,7 @@ "cs": "ReaktivaceIntel® AMT", "nl": "Heractiveer Intel® AMT", "xloc": [ - "default.handlebars->23->1010" + "default.handlebars->23->1014" ] }, { @@ -10742,7 +10745,7 @@ "cs": "Realmy", "nl": "Realms", "xloc": [ - "default.handlebars->23->1200" + "default.handlebars->23->1211" ] }, { @@ -10753,8 +10756,8 @@ "cs": "Rekurzivní mazání", "nl": "Recursieve verwijdering", "xloc": [ - "default.handlebars->23->619", - "default.handlebars->23->1124", + "default.handlebars->23->623", + "default.handlebars->23->1134", "default-mobile.handlebars->9->77", "default-mobile.handlebars->9->245" ] @@ -10783,7 +10786,7 @@ "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->401", + "default.handlebars->23->406", "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" @@ -10817,7 +10820,8 @@ "cs": "Přesměrované relace", "nl": "Relay Sessies", "xloc": [ - "default.handlebars->23->1279" + "default.handlebars->23->1304", + "default.handlebars->23->1317" ] }, { @@ -10860,7 +10864,7 @@ "cs": "Vzdálená schránka", "nl": "extern klembord", "xloc": [ - "default.handlebars->23->579" + "default.handlebars->23->583" ] }, { @@ -10871,7 +10875,7 @@ "ja": "リモートクリップボードは60秒間有効です。", "nl": "Het externe klembord is 60 seconden geldig.", "xloc": [ - "default.handlebars->23->578" + "default.handlebars->23->582" ] }, { @@ -10894,8 +10898,8 @@ "cs": "Vzdálené ovládání", "nl": "Extern beheer", "xloc": [ - "default.handlebars->23->1050", - "default.handlebars->23->1069", + "default.handlebars->23->1056", + "default.handlebars->23->1075", "default-mobile.handlebars->9->293", "default-mobile.handlebars->9->311" ] @@ -10909,7 +10913,7 @@ "nl": "Instellingen extern bureaublad", "xloc": [ "default.handlebars->23->216", - "default.handlebars->23->571", + "default.handlebars->23->575", "default-mobile.handlebars->9->226" ] }, @@ -10921,7 +10925,7 @@ "cs": "Vzdálené zadání klávesnice", "nl": "Toetsenbordinvoer op afstand", "xloc": [ - "default.handlebars->23->577" + "default.handlebars->23->581" ] }, { @@ -10931,7 +10935,7 @@ "cs": "Vzdálený uživatel", "nl": "externe Mesh gebruiker", "xloc": [ - "default.handlebars->23->1088", + "default.handlebars->23->1094", "default-mobile.handlebars->9->329" ] }, @@ -10942,8 +10946,8 @@ "cs": "Pouze vzdálené prohlížení", "nl": "Alleen extern meekijken", "xloc": [ - "default.handlebars->23->1051", - "default.handlebars->23->1074", + "default.handlebars->23->1057", + "default.handlebars->23->1080", "default-mobile.handlebars->9->294", "default-mobile.handlebars->9->316" ] @@ -10966,7 +10970,7 @@ "cs": "Odstranit celou 2-faktorovou autentizaci.", "nl": "Verwijder alle Tweestapsverificatie.", "xloc": [ - "default.handlebars->23->1258" + "default.handlebars->23->1271" ] }, { @@ -10976,7 +10980,7 @@ "cs": "Odstranit umístění nódu", "nl": "Verwijder knooppuntlocatie", "xloc": [ - "default.handlebars->23->393" + "default.handlebars->23->398" ] }, { @@ -10987,7 +10991,7 @@ "cs": "Odstranit toto zařízení", "nl": "Verwijder dit apparaat", "xloc": [ - "default.handlebars->23->480" + "default.handlebars->23->484" ] }, { @@ -10998,7 +11002,7 @@ "cs": "Odstranit uživatelská práva pro tuto skupinu zařízení", "nl": "Gebruikersrechten voor deze apparaatgroep verwijderen", "xloc": [ - "default.handlebars->23->994" + "default.handlebars->23->998" ] }, { @@ -11011,8 +11015,8 @@ "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->623", - "default.handlebars->23->1128", + "default.handlebars->23->627", + "default.handlebars->23->1138", "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", @@ -11027,7 +11031,7 @@ "ja": "要件:", "nl": "Vereisten:", "xloc": [ - "default.handlebars->23->908" + "default.handlebars->23->912" ] }, { @@ -11038,8 +11042,8 @@ "cs": "Požadavky: {0}.", "nl": "Vereisten: {0}.", "xloc": [ - "default.handlebars->23->1197", - "default.handlebars->23->1256", + "default.handlebars->23->1208", + "default.handlebars->23->1269", "default-mobile.handlebars->9->45" ] }, @@ -11051,7 +11055,7 @@ "cs": "Vyžaduje Microsoft ClickOnce podporu v prohlížeči", "nl": "Vereist Microsoft ClickOnce-ondersteuning in uw browser", "xloc": [ - "default.handlebars->23->488" + "default.handlebars->23->492" ] }, { @@ -11062,8 +11066,8 @@ "cs": "Vyžaduje Microsoft ClickOnce podporu v prohlížeči.", "nl": "Vereist Microsoft ClickOnce-ondersteuning in uw browser", "xloc": [ - "default.handlebars->23->490", - "default.handlebars->23->492" + "default.handlebars->23->494", + "default.handlebars->23->496" ] }, { @@ -11075,7 +11079,7 @@ "nl": "Reset", "xloc": [ "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devMapToolbar", - "default.handlebars->23->514", + "default.handlebars->23->518", "default-mobile.handlebars->9->205" ] }, @@ -11145,7 +11149,7 @@ "cs": "Restart", "nl": "Herstarten", "xloc": [ - "default.handlebars->23->593", + "default.handlebars->23->597", "player.htm->p11->deskarea0->deskarea4->3" ] }, @@ -11157,7 +11161,7 @@ "cs": "Obnova serveru", "nl": "Server herstellen", "xloc": [ - "default.handlebars->23->935" + "default.handlebars->23->939" ] }, { @@ -11178,7 +11182,7 @@ "cs": "Obnova serveru ze zálohy, smaže všechny uživatele a data na tomto serveru.. Udělejte to, pouze pokud víte, co děláte.", "nl": "Herstel de server met een back-up, hiermee worden de bestaande servergegevens verwijderd . Doe dit alleen als je weet wat je doet.", "xloc": [ - "default.handlebars->23->932" + "default.handlebars->23->936" ] }, { @@ -11189,7 +11193,7 @@ "ja": "制限事項", "nl": "Beperkingen", "xloc": [ - "default.handlebars->23->1218" + "default.handlebars->23->1229" ] }, { @@ -11199,7 +11203,7 @@ "cs": "Rhaeto-Romanic", "nl": "Rhetoromaans", "xloc": [ - "default.handlebars->23->819" + "default.handlebars->23->823" ] }, { @@ -11234,7 +11238,7 @@ "cs": "Romanian", "nl": "Roemeense", "xloc": [ - "default.handlebars->23->820" + "default.handlebars->23->824" ] }, { @@ -11245,7 +11249,7 @@ "cs": "Romanian (Moldavia)", "nl": "Roemeens (Moldavië)", "xloc": [ - "default.handlebars->23->821" + "default.handlebars->23->825" ] }, { @@ -11256,8 +11260,8 @@ "cs": "Root", "nl": "Root", "xloc": [ - "default.handlebars->23->613", - "default.handlebars->23->1103", + "default.handlebars->23->617", + "default.handlebars->23->1113", "default-mobile.handlebars->9->63", "default-mobile.handlebars->9->239" ] @@ -11325,7 +11329,7 @@ "nl": "Router", "xloc": [ "default.handlebars->23->203", - "default.handlebars->23->487" + "default.handlebars->23->491" ] }, { @@ -11336,7 +11340,7 @@ "cs": "Russian", "nl": "Russisch", "xloc": [ - "default.handlebars->23->822" + "default.handlebars->23->826" ] }, { @@ -11347,7 +11351,7 @@ "cs": "Russian (Moldavia)", "nl": "Russisch (Moldavië)", "xloc": [ - "default.handlebars->23->823" + "default.handlebars->23->827" ] }, { @@ -11368,7 +11372,7 @@ "cs": "Sami (Lappish)", "nl": "Sami (Lapse)", "xloc": [ - "default.handlebars->23->824" + "default.handlebars->23->828" ] }, { @@ -11388,7 +11392,7 @@ "cs": "Sango", "nl": "Sango", "xloc": [ - "default.handlebars->23->825" + "default.handlebars->23->829" ] }, { @@ -11398,7 +11402,7 @@ "cs": "Sanskrit", "nl": "Sanskriet", "xloc": [ - "default.handlebars->23->826" + "default.handlebars->23->830" ] }, { @@ -11408,7 +11412,7 @@ "cs": "Sardinian", "nl": "Sardijns", "xloc": [ - "default.handlebars->23->827" + "default.handlebars->23->831" ] }, { @@ -11430,7 +11434,7 @@ "cs": "Uložit umístění nódu", "nl": "Knooppuntlocatie opslaan", "xloc": [ - "default.handlebars->23->394" + "default.handlebars->23->399" ] }, { @@ -11509,7 +11513,7 @@ "nl": "Zoeken", "xloc": [ "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devMapToolbar", - "default.handlebars->23->408" + "default.handlebars->23->412" ] }, { @@ -11543,8 +11547,8 @@ "nl": "Veiligheid", "xloc": [ "default.handlebars->23->238", - "default.handlebars->23->525", - "default.handlebars->23->1242", + "default.handlebars->23->529", + "default.handlebars->23->1253", "default-mobile.handlebars->9->211" ] }, @@ -11556,7 +11560,7 @@ "cs": "Bezpečnostní klíč", "nl": "Veiligheidssleutel", "xloc": [ - "default.handlebars->23->1240" + "default.handlebars->23->1251" ] }, { @@ -11566,7 +11570,7 @@ "cs": "Vybrat novou skupinu pro vybraná zařízení", "nl": "Selecteer een nieuwe groep voor geselecteerde apparaten", "xloc": [ - "default.handlebars->23->539" + "default.handlebars->23->543" ] }, { @@ -11576,7 +11580,7 @@ "ja": "このデバイスの新しいグループを選択してください", "nl": "Selecteer een nieuwe groep voor dit apparaat", "xloc": [ - "default.handlebars->23->538" + "default.handlebars->23->542" ] }, { @@ -11586,7 +11590,7 @@ "cs": "Vybrat kam umístit nód", "nl": "Selecteer een knooppunt om te plaatsen", "xloc": [ - "default.handlebars->23->411" + "default.handlebars->23->415" ] }, { @@ -11602,9 +11606,9 @@ "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->376", - "default.handlebars->23->615", - "default.handlebars->23->617", - "default.handlebars->23->1120" + "default.handlebars->23->619", + "default.handlebars->23->621", + "default.handlebars->23->1130" ] }, { @@ -11624,7 +11628,7 @@ "ja": "このデバイスで実行する操作を選択します。", "nl": "Selecteer een bewerking die u op dit apparaat wilt uitvoeren.", "xloc": [ - "default.handlebars->23->511", + "default.handlebars->23->515", "default-mobile.handlebars->9->202" ] }, @@ -11638,8 +11642,8 @@ "xloc": [ "default.handlebars->meshContextMenu->cxselectnone", "default.handlebars->23->375", - "default.handlebars->23->616", - "default.handlebars->23->1119" + "default.handlebars->23->620", + "default.handlebars->23->1129" ] }, { @@ -11661,7 +11665,7 @@ "cs": "Pouze vlastní události", "nl": "Alleen eigen gebeurtenissen", "xloc": [ - "default.handlebars->23->1079", + "default.handlebars->23->1085", "default-mobile.handlebars->9->321" ] }, @@ -11686,7 +11690,7 @@ "cs": "Poslat textovou notifikaci tomuto uživateli.", "nl": "Stuur een tekstbericht naar deze gebruiker.", "xloc": [ - "default.handlebars->23->1169" + "default.handlebars->23->1180" ] }, { @@ -11708,7 +11712,7 @@ "ja": "招待メールを送信します。", "nl": "Verzend uitnodigingsmail.", "xloc": [ - "default.handlebars->23->1196" + "default.handlebars->23->1207" ] }, { @@ -11719,7 +11723,7 @@ "cs": "Poslat MQTT zprávu", "nl": "Verzend MQTT bericht", "xloc": [ - "default.handlebars->23->531" + "default.handlebars->23->535" ] }, { @@ -11731,7 +11735,7 @@ "nl": "Verzend MQTT bericht", "xloc": [ "default.handlebars->23->377", - "default.handlebars->23->516" + "default.handlebars->23->520" ] }, { @@ -11752,7 +11756,7 @@ "cs": "Poslat notifikaci uživatelovi", "nl": "Stuur gebruikersmelding", "xloc": [ - "default.handlebars->23->1247" + "default.handlebars->23->1258" ] }, { @@ -11762,7 +11766,7 @@ "cs": "Serbian", "nl": "Servisch", "xloc": [ - "default.handlebars->23->830" + "default.handlebars->23->834" ] }, { @@ -11792,7 +11796,7 @@ "cs": "Záloha serveru", "nl": "Server Back-up", "xloc": [ - "default.handlebars->23->1205" + "default.handlebars->23->1216" ] }, { @@ -11801,7 +11805,7 @@ "cs": "Certifikáty serveru", "nl": "Server Certificaat", "xloc": [ - "default.handlebars->23->1291" + "default.handlebars->23->1333" ] }, { @@ -11832,9 +11836,9 @@ "cs": "Soubory serveru", "nl": "Serverbestanden", "xloc": [ - "default.handlebars->23->1057", - "default.handlebars->23->1071", - "default.handlebars->23->1203", + "default.handlebars->23->1063", + "default.handlebars->23->1077", + "default.handlebars->23->1214", "default-mobile.handlebars->9->300", "default-mobile.handlebars->9->313" ] @@ -11868,8 +11872,8 @@ "cs": "Oprávnění serveru", "nl": "Serverrechten", "xloc": [ - "default.handlebars->23->1162", - "default.handlebars->23->1212" + "default.handlebars->23->1173", + "default.handlebars->23->1223" ] }, { @@ -11879,7 +11883,7 @@ "cs": "Kvóta serveru", "nl": "Serverquotum", "xloc": [ - "default.handlebars->23->1226" + "default.handlebars->23->1237" ] }, { @@ -11889,7 +11893,7 @@ "cs": "Obnova serveru", "nl": "Server herstellen", "xloc": [ - "default.handlebars->23->1206" + "default.handlebars->23->1217" ] }, { @@ -11900,7 +11904,7 @@ "cs": "Práva serveru", "nl": "Serverrechten", "xloc": [ - "default.handlebars->23->1225" + "default.handlebars->23->1236" ] }, { @@ -11922,7 +11926,7 @@ "cs": "Trasování serveru", "nl": "Server traceren", "xloc": [ - "default.handlebars->23->1300" + "default.handlebars->23->1342" ] }, { @@ -11933,7 +11937,7 @@ "cs": "Aktualizace serveru", "nl": "Serverupdates", "xloc": [ - "default.handlebars->23->1207" + "default.handlebars->23->1218" ] }, { @@ -11953,7 +11957,7 @@ "cs": "servererrors.txt", "nl": "servererrors.txt", "xloc": [ - "default.handlebars->23->940" + "default.handlebars->23->944" ] }, { @@ -11963,7 +11967,7 @@ "cs": "ServerStats.csv", "nl": "ServerStats.csv", "xloc": [ - "default.handlebars->23->1283" + "default.handlebars->23->1325" ] }, { @@ -11973,7 +11977,7 @@ "cs": "servertrace.csv", "nl": "servertrace.csv", "xloc": [ - "default.handlebars->23->1302" + "default.handlebars->23->1344" ] }, { @@ -11983,7 +11987,7 @@ "cs": "Detaily serveru", "nl": "Servicegegevens", "xloc": [ - "default.handlebars->23->594" + "default.handlebars->23->598" ] }, { @@ -12106,7 +12110,7 @@ "cs": "SharedProcess", "nl": "Gedeeld proces", "xloc": [ - "default.handlebars->23->588" + "default.handlebars->23->592" ] }, { @@ -12142,7 +12146,7 @@ "cs": "Zobrazit panel nástrojů připojení", "nl": "Toon verbindingswerkbalk", "xloc": [ - "default.handlebars->23->1033" + "default.handlebars->23->1037" ] }, { @@ -12152,7 +12156,7 @@ "cs": "Zobrazit informace o umístění zařízení", "nl": "Informatie over apparaatlocaties weergeven", "xloc": [ - "default.handlebars->23->484" + "default.handlebars->23->488" ] }, { @@ -12162,7 +12166,7 @@ "cs": "Zobrazit informace o síťovém rozhraní zařízení", "nl": "Toon apparaat netwerk interface informatie", "xloc": [ - "default.handlebars->23->482" + "default.handlebars->23->486" ] }, { @@ -12216,7 +12220,7 @@ "cs": "Zobrazit pouze vlastní události", "nl": "Toon alleen eigen gebeurtenissen", "xloc": [ - "default.handlebars->23->1060", + "default.handlebars->23->1066", "default-mobile.handlebars->9->303" ] }, @@ -12238,8 +12242,8 @@ "cs": "Jednoduchý Admin Control Mode (ACM)", "nl": "Simple Admin Control Mode (ACM)", "xloc": [ - "default.handlebars->23->972", - "default.handlebars->23->997" + "default.handlebars->23->976", + "default.handlebars->23->1001" ] }, { @@ -12249,9 +12253,9 @@ "cs": "Jednoduchý Client Control Mode (CCM)", "nl": "Simple Client Control Mode (CCM)", "xloc": [ - "default.handlebars->23->970", - "default.handlebars->23->1000", - "default.handlebars->23->1004" + "default.handlebars->23->974", + "default.handlebars->23->1004", + "default.handlebars->23->1008" ] }, { @@ -12262,7 +12266,7 @@ "cs": "Sindhi", "nl": "Sindhi", "xloc": [ - "default.handlebars->23->828" + "default.handlebars->23->832" ] }, { @@ -12273,7 +12277,7 @@ "cs": "Singhalese", "nl": "Sinhalees", "xloc": [ - "default.handlebars->23->829" + "default.handlebars->23->833" ] }, { @@ -12298,7 +12302,7 @@ "default.handlebars->23->2", "default.handlebars->23->3", "default.handlebars->23->4", - "default.handlebars->23->513", + "default.handlebars->23->517", "default-mobile.handlebars->9->98", "default-mobile.handlebars->9->99", "default-mobile.handlebars->9->100", @@ -12337,7 +12341,7 @@ "cs": "Slovak", "nl": "Slowaaks", "xloc": [ - "default.handlebars->23->831" + "default.handlebars->23->835" ] }, { @@ -12348,7 +12352,7 @@ "cs": "Slovenian", "nl": "Sloveens", "xloc": [ - "default.handlebars->23->832" + "default.handlebars->23->836" ] }, { @@ -12382,7 +12386,7 @@ "cs": "malé zaměření", "nl": "Kleine focus", "xloc": [ - "default.handlebars->23->574" + "default.handlebars->23->578" ] }, { @@ -12392,7 +12396,7 @@ "cs": "Jemné odpojení agenta", "nl": "Softwarematig verbreken agent", "xloc": [ - "default.handlebars->23->667" + "default.handlebars->23->671" ] }, { @@ -12424,7 +12428,7 @@ "cs": "Somani", "nl": "Somani", "xloc": [ - "default.handlebars->23->833" + "default.handlebars->23->837" ] }, { @@ -12434,7 +12438,7 @@ "cs": "Sorbian", "nl": "Sorbisch", "xloc": [ - "default.handlebars->23->834" + "default.handlebars->23->838" ] }, { @@ -12522,7 +12526,7 @@ "cs": "Spanish", "nl": "Spaans", "xloc": [ - "default.handlebars->23->835" + "default.handlebars->23->839" ] }, { @@ -12532,7 +12536,7 @@ "cs": "Spanish (Argentina)", "nl": "Spaans (Argentinië)", "xloc": [ - "default.handlebars->23->836" + "default.handlebars->23->840" ] }, { @@ -12542,7 +12546,7 @@ "cs": "Spanish (Bolivia)", "nl": "Spaans (Bolivia)", "xloc": [ - "default.handlebars->23->837" + "default.handlebars->23->841" ] }, { @@ -12552,7 +12556,7 @@ "cs": "Spanish (Chile)", "nl": "Spaans (Chili)", "xloc": [ - "default.handlebars->23->838" + "default.handlebars->23->842" ] }, { @@ -12562,7 +12566,7 @@ "cs": "Spanish (Colombia)", "nl": "Spaans (Colombia)", "xloc": [ - "default.handlebars->23->839" + "default.handlebars->23->843" ] }, { @@ -12572,7 +12576,7 @@ "cs": "Spanish (Costa Rica)", "nl": "Spaans (Costa Rica)", "xloc": [ - "default.handlebars->23->840" + "default.handlebars->23->844" ] }, { @@ -12582,7 +12586,7 @@ "cs": "Spanish (Dominican Republic)", "nl": "Spaans (Dominicaanse Republiek)", "xloc": [ - "default.handlebars->23->841" + "default.handlebars->23->845" ] }, { @@ -12592,7 +12596,7 @@ "cs": "Spanish (Ecuador)", "nl": "Spaans (Ecuador)", "xloc": [ - "default.handlebars->23->842" + "default.handlebars->23->846" ] }, { @@ -12602,7 +12606,7 @@ "cs": "Spanish (El Salvador)", "nl": "Spaans (El Salvador)", "xloc": [ - "default.handlebars->23->843" + "default.handlebars->23->847" ] }, { @@ -12612,7 +12616,7 @@ "cs": "Spanish (Guatemala)", "nl": "Spaans (Guatemala)", "xloc": [ - "default.handlebars->23->844" + "default.handlebars->23->848" ] }, { @@ -12622,7 +12626,7 @@ "cs": "Spanish (Honduras)", "nl": "Spaans (Honduras)", "xloc": [ - "default.handlebars->23->845" + "default.handlebars->23->849" ] }, { @@ -12632,7 +12636,7 @@ "cs": "Spanish (Mexico)", "nl": "Spaans (Mexico)", "xloc": [ - "default.handlebars->23->846" + "default.handlebars->23->850" ] }, { @@ -12642,7 +12646,7 @@ "cs": "Spanish (Nicaragua)", "nl": "Spaans (Nicaragua)", "xloc": [ - "default.handlebars->23->847" + "default.handlebars->23->851" ] }, { @@ -12652,7 +12656,7 @@ "cs": "Spanish (Panama)", "nl": "Spaans (Panama)", "xloc": [ - "default.handlebars->23->848" + "default.handlebars->23->852" ] }, { @@ -12662,7 +12666,7 @@ "cs": "Spanish (Paraguay)", "nl": "Spaans (Paraguay)", "xloc": [ - "default.handlebars->23->849" + "default.handlebars->23->853" ] }, { @@ -12672,7 +12676,7 @@ "cs": "Spanish (Peru)", "nl": "Spaans (Peru)", "xloc": [ - "default.handlebars->23->850" + "default.handlebars->23->854" ] }, { @@ -12682,7 +12686,7 @@ "cs": "Spanish (Puerto Rico)", "nl": "Spaans (Puerto Rico)", "xloc": [ - "default.handlebars->23->851" + "default.handlebars->23->855" ] }, { @@ -12692,7 +12696,7 @@ "cs": "Spanish (Spain)", "nl": "Spaans (Spanje)", "xloc": [ - "default.handlebars->23->852" + "default.handlebars->23->856" ] }, { @@ -12702,7 +12706,7 @@ "cs": "Spanish (Uruguay)", "nl": "Spaans (Uruguay)", "xloc": [ - "default.handlebars->23->853" + "default.handlebars->23->857" ] }, { @@ -12712,7 +12716,7 @@ "cs": "Spanish (Venezuela)", "nl": "Spaans (Venezuela)", "xloc": [ - "default.handlebars->23->854" + "default.handlebars->23->858" ] }, { @@ -12734,7 +12738,7 @@ "cs": "Start", "nl": "Start", "xloc": [ - "default.handlebars->23->591" + "default.handlebars->23->595" ] }, { @@ -12745,7 +12749,7 @@ "nl": "Status", "xloc": [ "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsServiceTab->deskToolsServiceHeader->1", - "default.handlebars->23->582" + "default.handlebars->23->586" ] }, { @@ -12767,7 +12771,7 @@ "nl": "Status", "xloc": [ "default.handlebars->container->column_l->p42->p42tbl->1->0->7", - "default.handlebars->23->1251" + "default.handlebars->23->1264" ] }, { @@ -12778,7 +12782,7 @@ "cs": "Stop", "nl": "Stop", "xloc": [ - "default.handlebars->23->592" + "default.handlebars->23->596" ] }, { @@ -12788,7 +12792,7 @@ "cs": "Ukončit proces #{0} \\\"{1}\\\"?", "nl": "Stop process #{0} \\\"{1}\\\"?", "xloc": [ - "default.handlebars->23->597", + "default.handlebars->23->601", "default-mobile.handlebars->9->232" ] }, @@ -12810,7 +12814,7 @@ "ja": "ストレージ制限を超えています", "nl": "Opslaglimiet overschreden", "xloc": [ - "default.handlebars->23->1106" + "default.handlebars->23->1116" ] }, { @@ -12820,7 +12824,7 @@ "cs": "Silné", "nl": "Sterk", "xloc": [ - "default.handlebars->23->925" + "default.handlebars->23->929" ] }, { @@ -12855,7 +12859,7 @@ "cs": "Sutu", "nl": "Sutu", "xloc": [ - "default.handlebars->23->855" + "default.handlebars->23->859" ] }, { @@ -12865,7 +12869,7 @@ "cs": "Swahili", "nl": "Swahili", "xloc": [ - "default.handlebars->23->856" + "default.handlebars->23->860" ] }, { @@ -12875,7 +12879,7 @@ "cs": "Swedish", "nl": "Zweeds", "xloc": [ - "default.handlebars->23->857" + "default.handlebars->23->861" ] }, { @@ -12885,7 +12889,7 @@ "cs": "Swedish (Finland)", "nl": "Zweeds (Finland)", "xloc": [ - "default.handlebars->23->858" + "default.handlebars->23->862" ] }, { @@ -12895,7 +12899,7 @@ "cs": "Swedish (Sweden)", "nl": "Zweeds (Zweden)", "xloc": [ - "default.handlebars->23->859" + "default.handlebars->23->863" ] }, { @@ -12915,7 +12919,7 @@ "ja": "Tag1、Tag2、Tag3", "nl": "Tag1, Tag2, Tag3", "xloc": [ - "default.handlebars->23->565" + "default.handlebars->23->569" ] }, { @@ -12926,7 +12930,7 @@ "nl": "Tags", "xloc": [ "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->7", - "default.handlebars->23->564", + "default.handlebars->23->568", "default-mobile.handlebars->9->194", "default-mobile.handlebars->9->195", "default-mobile.handlebars->9->222" @@ -12939,7 +12943,7 @@ "cs": "Tamil", "nl": "Tamil", "xloc": [ - "default.handlebars->23->860" + "default.handlebars->23->864" ] }, { @@ -12949,7 +12953,7 @@ "cs": "Tatar", "nl": "Tartaar", "xloc": [ - "default.handlebars->23->861" + "default.handlebars->23->865" ] }, { @@ -12959,7 +12963,7 @@ "cs": "Teluga", "nl": "Teluga", "xloc": [ - "default.handlebars->23->862" + "default.handlebars->23->866" ] }, { @@ -12972,8 +12976,8 @@ "xloc": [ "default.handlebars->contextMenu->cxterminal", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevTerminal", - "default.handlebars->23->397", - "default.handlebars->23->1034" + "default.handlebars->23->402", + "default.handlebars->23->1038" ] }, { @@ -12994,7 +12998,7 @@ "cs": "Oznámení terminálu", "nl": "Terminal melding", "xloc": [ - "default.handlebars->23->957" + "default.handlebars->23->961" ] }, { @@ -13004,7 +13008,7 @@ "cs": "Výzva terminálu", "nl": "", "xloc": [ - "default.handlebars->23->956" + "default.handlebars->23->960" ] }, { @@ -13040,7 +13044,7 @@ "cs": "Thai", "nl": "Thais", "xloc": [ - "default.handlebars->23->863" + "default.handlebars->23->867" ] }, { @@ -13062,7 +13066,7 @@ "cs": "Název skupiny zařízení, do které tento počítač patří", "nl": "De naam van de apparaatgroep waartoe deze computer behoort", "xloc": [ - "default.handlebars->23->422" + "default.handlebars->23->426" ] }, { @@ -13072,7 +13076,7 @@ "cs": "Název skupiny zařízení, do které tento počítač patří.", "nl": "De naam van de apparaatgroep waartoe deze computer behoort", "xloc": [ - "default.handlebars->23->420" + "default.handlebars->23->424" ] }, { @@ -13098,7 +13102,7 @@ "cs": "Žádná notifikace", "nl": "Er zijn momenteel geen meldingen", "xloc": [ - "default.handlebars->23->1263" + "default.handlebars->23->1278" ] }, { @@ -13129,7 +13133,7 @@ "cs": "Tento účet nemá práva k vytvoření nové skupiny zařízení.", "nl": "Dit account heeft niet de rechten om een nieuwe apparaatgroep te maken.", "xloc": [ - "default.handlebars->23->911", + "default.handlebars->23->915", "default-mobile.handlebars->9->48" ] }, @@ -13140,7 +13144,7 @@ "cs": "Toto není bezpečná politika, protože agenti budou provádět aktivaci.", "nl": "Dit is geen veilig beleid omdat agenten activering zullen uitvoeren.", "xloc": [ - "default.handlebars->23->1022" + "default.handlebars->23->1026" ] }, { @@ -13161,7 +13165,7 @@ "cs": "Tato zásada nebude mít vliv na zařízení s Intel® AMT in ACM módem.", "nl": "", "xloc": [ - "default.handlebars->23->1021" + "default.handlebars->23->1025" ] }, { @@ -13214,7 +13218,7 @@ "cs": "Tím se přidá položka do tohoto logu událostí zařízení.", "nl": "Hiermee wordt een vermelding toegevoegd aan het gebeurtenislogboek van dit apparaat.", "xloc": [ - "default.handlebars->23->506" + "default.handlebars->23->510" ] }, { @@ -13223,7 +13227,7 @@ "cs": "To neodstraní zařízení ze serveru, ale zařízení se již nebudou moci připojit k serveru. Veškerý vzdálený přístup k zařízením bude ztracen. Aby tento příkaz fungoval, musí být připojena zařízení.", "nl": "Hiermee worden de apparaten niet van de server verwijderd, maar kunnen de apparaten geen verbinding meer maken met de server. Alle externe toegang tot de apparaten gaat verloren. De apparaten moeten zijn aangesloten om deze opdracht te laten werken.", "xloc": [ - "default.handlebars->23->534" + "default.handlebars->23->538" ] }, { @@ -13232,7 +13236,7 @@ "cs": "Toto zařízení ze serveru neodstraní, ale zařízení se již nebude moci připojit k serveru. Veškerý vzdálený přístup k zařízení bude ztracen. Aby mohl tento příkaz fungovat, musí být zařízení připojeno.", "nl": "Hiermee wordt dit apparaat niet van de server verwijderd, maar kan het apparaat geen verbinding meer maken met de server. Alle externe toegang tot het apparaat gaat verloren. Het apparaat moet verbonden zijn om dit commando te laten werken.", "xloc": [ - "default.handlebars->23->535" + "default.handlebars->23->539" ] }, { @@ -13242,7 +13246,7 @@ "cs": "Tigre", "nl": "Tigre", "xloc": [ - "default.handlebars->23->864" + "default.handlebars->23->868" ] }, { @@ -13263,7 +13267,7 @@ "cs": "time, conn.agent, conn.users, conn.usersessions, conn.relaysession, conn.intelamt, mem.external, mem.heapused, mem.heaptotal, mem.rss", "nl": "tijd, conn.agent, conn.gebruikers, conn.gebruikerssessies, conn.relaysessie, conn.intelamt, mem.extern, mem.heapused, mem.heaptotaal, mem.rss", "xloc": [ - "default.handlebars->23->1282" + "default.handlebars->23->1324" ] }, { @@ -13273,7 +13277,7 @@ "cs": "time, source, message", "nl": "tijd, bron, bericht", "xloc": [ - "default.handlebars->23->1301" + "default.handlebars->23->1343" ] }, { @@ -13283,7 +13287,7 @@ "cs": "time, type, action, user, message", "nl": "tijd, type, actie, gebruiker, bericht", "xloc": [ - "default.handlebars->23->1146" + "default.handlebars->23->1156" ] }, { @@ -13294,7 +13298,7 @@ "cs": "TLS", "nl": "TLS", "xloc": [ - "default.handlebars->23->442", + "default.handlebars->23->446", "default-mobile.handlebars->9->180" ] }, @@ -13307,7 +13311,7 @@ "nl": "TLS beveiliging vereist", "xloc": [ "default.handlebars->23->240", - "default.handlebars->23->527", + "default.handlebars->23->531", "default-mobile.handlebars->9->213" ] }, @@ -13378,7 +13382,7 @@ "cs": "Chcete-li tento účet smazat, zadejte do obou políček heslo k účtu a stiskněte OK.", "nl": "Om dit account te verwijderen, typt u het accountwachtwoord in beide onderstaande vakken en drukt u op OK.", "xloc": [ - "default.handlebars->23->898" + "default.handlebars->23->902" ] }, { @@ -13560,7 +13564,7 @@ "cs": "Téma", "nl": "Onderwerp", "xloc": [ - "default.handlebars->23->529" + "default.handlebars->23->533" ] }, { @@ -13571,7 +13575,7 @@ "ja": "合計", "nl": "totaal", "xloc": [ - "default.handlebars->23->1274" + "default.handlebars->23->1312" ] }, { @@ -13602,7 +13606,7 @@ "cs": "Traffic router je použit k připojení zařízení prostřednictvím tohoto serveru", "nl": "Verkeersrouter gebruikt om verbinding te maken met een apparaat via deze server", "xloc": [ - "default.handlebars->23->486" + "default.handlebars->23->490" ] }, { @@ -13622,7 +13626,7 @@ "cs": "Tsonga", "nl": "Tsonga", "xloc": [ - "default.handlebars->23->865" + "default.handlebars->23->869" ] }, { @@ -13632,7 +13636,7 @@ "cs": "Tswana", "nl": "Tswana", "xloc": [ - "default.handlebars->23->866" + "default.handlebars->23->870" ] }, { @@ -13642,7 +13646,7 @@ "cs": "Turkish", "nl": "Turks", "xloc": [ - "default.handlebars->23->867" + "default.handlebars->23->871" ] }, { @@ -13652,7 +13656,7 @@ "cs": "Turkmen", "nl": "Turkmeens", "xloc": [ - "default.handlebars->23->868" + "default.handlebars->23->872" ] }, { @@ -13673,11 +13677,11 @@ "nl": "Typen", "xloc": [ "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3", - "default.handlebars->23->589", - "default.handlebars->23->918", - "default.handlebars->23->947", - "default.handlebars->23->998", - "default.handlebars->23->1001", + "default.handlebars->23->593", + "default.handlebars->23->922", + "default.handlebars->23->951", + "default.handlebars->23->1002", + "default.handlebars->23->1005", "default-mobile.handlebars->9->54", "default-mobile.handlebars->9->276" ] @@ -13689,7 +13693,7 @@ "cs": "Zadejte název klíče, vyberte pole OTP a stiskněte tlačítko na YubiKey™.", "nl": "Typ een sleutelnaam, selecteer het vak OTP en druk op de knop op de YubiKey™.", "xloc": [ - "default.handlebars->23->677" + "default.handlebars->23->681" ] }, { @@ -13699,7 +13703,7 @@ "cs": "Napište jméno klíče pro přidání.", "nl": "Typ de naam van de sleutel die u wilt toevoegen.", "xloc": [ - "default.handlebars->23->674" + "default.handlebars->23->678" ] }, { @@ -13709,7 +13713,7 @@ "cs": "Ukrainian", "nl": "Oekraïens", "xloc": [ - "default.handlebars->23->869" + "default.handlebars->23->873" ] }, { @@ -13719,8 +13723,8 @@ "cs": "Nelze získat přístup k zařízení, dokud nebude ověřena e-mailová adresa. To je vyžadováno pro obnovení hesla. Jdi do \\\"Můj účet\\\" pro změnu a ověření emailu.", "nl": "Geen toegang tot een apparaat totdat een e-mailadres is geverifieerd. Dit is vereist voor wachtwoordherstel. Ga naar het tabblad \\\"Mijn account\\\" om een e-mailadres te wijzigen en te verifiëren.", "xloc": [ - "default.handlebars->23->414", - "default.handlebars->23->913" + "default.handlebars->23->418", + "default.handlebars->23->917" ] }, { @@ -13752,8 +13756,8 @@ "cs": "Nelze získat přístup k zařízení, dokud je 2-faktorová autentizace zapnuta. Toto je pro extra bezpečnost. Jdi do \\\"Můj účet\\\" a podívej se do sekce\\\"Nastavení bezpečnosti\\\".", "nl": "Geen toegang tot een apparaat totdat tweefactorauthenticatie is ingeschakeld. Dit is vereist voor extra beveiliging. Ga naar het tabblad \\\"Mijn account\\\" en bekijk het gedeelte \\\"Accountbeveiliging\\\".", "xloc": [ - "default.handlebars->23->416", - "default.handlebars->23->915" + "default.handlebars->23->420", + "default.handlebars->23->919" ] }, { @@ -13813,7 +13817,7 @@ "cs": "Odinstalace", "nl": "deinstallatie", "xloc": [ - "default.handlebars->23->1081", + "default.handlebars->23->1087", "default-mobile.handlebars->9->323" ] }, @@ -13824,8 +13828,8 @@ "nl": "deinstallatie agent", "xloc": [ "default.handlebars->23->378", - "default.handlebars->23->517", - "default.handlebars->23->1062", + "default.handlebars->23->521", + "default.handlebars->23->1068", "default-mobile.handlebars->9->305" ] }, @@ -13835,7 +13839,7 @@ "cs": "Odinstalovat agenta", "nl": "deinstallatie agent", "xloc": [ - "default.handlebars->23->537" + "default.handlebars->23->541" ] }, { @@ -13866,7 +13870,7 @@ "cs": "Neznámý #{0}", "nl": "Onbekend #{0}", "xloc": [ - "default.handlebars->23->941", + "default.handlebars->23->945", "default-mobile.handlebars->9->270" ] }, @@ -13878,7 +13882,7 @@ "cs": "Neznámý stav", "nl": "Onbekende staat", "xloc": [ - "default.handlebars->23->434", + "default.handlebars->23->438", "default-mobile.handlebars->9->175" ] }, @@ -13890,7 +13894,7 @@ "cs": "Neznámý stav & verze", "nl": "Onbekende versie en staat", "xloc": [ - "default.handlebars->23->436", + "default.handlebars->23->440", "default-mobile.handlebars->9->177" ] }, @@ -13928,7 +13932,7 @@ "cs": "Zastaralý", "nl": "Bijgewerkt", "xloc": [ - "default.handlebars->23->1305" + "default.handlebars->23->1347" ] }, { @@ -13952,7 +13956,7 @@ "cs": "Nahrát hlavní soubor", "nl": "Upload een kernbestand", "xloc": [ - "default.handlebars->23->666" + "default.handlebars->23->670" ] }, { @@ -13962,7 +13966,7 @@ "cs": "Nahrát defaultní nastavení", "nl": "Upload standaard serverkern", "xloc": [ - "default.handlebars->23->663" + "default.handlebars->23->667" ] }, { @@ -13973,11 +13977,11 @@ "nl": "Upload bestand", "xloc": [ "default.handlebars->container->dialog->dialogBody->dialog3->d3localmode->1", - "default.handlebars->23->624", - "default.handlebars->23->647", - "default.handlebars->23->649", - "default.handlebars->23->1129", - "default.handlebars->23->1137", + "default.handlebars->23->628", + "default.handlebars->23->651", + "default.handlebars->23->653", + "default.handlebars->23->1139", + "default.handlebars->23->1147", "default-mobile.handlebars->9->82", "default-mobile.handlebars->9->250", "default-mobile.handlebars->9->268" @@ -13990,7 +13994,7 @@ "cs": "Nahrát jádro agenta", "nl": "Upload Mesh Agent Core", "xloc": [ - "default.handlebars->23->669" + "default.handlebars->23->673" ] }, { @@ -14000,7 +14004,7 @@ "cs": "Nahrát jádro pro obnovu", "nl": "Upload herstelkern", "xloc": [ - "default.handlebars->23->665" + "default.handlebars->23->669" ] }, { @@ -14010,8 +14014,8 @@ "cs": "Nahrání přepíše {0} soubor{1}. Pokračovat?", "nl": "Uploaden overschrijft {0} bestand {1}. Doorgaan met?", "xloc": [ - "default.handlebars->23->648", - "default.handlebars->23->1138" + "default.handlebars->23->652", + "default.handlebars->23->1148" ] }, { @@ -14021,7 +14025,7 @@ "cs": "Upper Sorbian", "nl": "Sorbisch", "xloc": [ - "default.handlebars->23->870" + "default.handlebars->23->874" ] }, { @@ -14031,7 +14035,7 @@ "cs": "Urdu", "nl": "Urdu", "xloc": [ - "default.handlebars->23->871" + "default.handlebars->23->875" ] }, { @@ -14063,8 +14067,8 @@ "ja": "中古", "nl": "Gebruikt", "xloc": [ - "default.handlebars->23->1265", - "default.handlebars->23->1267" + "default.handlebars->23->1280", + "default.handlebars->23->1282" ] }, { @@ -14076,8 +14080,8 @@ "nl": "Gebruiker", "xloc": [ "default.handlebars->23->194", - "default.handlebars->23->995", - "default.handlebars->23->1163", + "default.handlebars->23->999", + "default.handlebars->23->1174", "default-mobile.handlebars->9->325" ] }, @@ -14088,7 +14092,7 @@ "ja": "ユーザー+ファイル", "nl": "Gebruiker + bestanden", "xloc": [ - "default.handlebars->23->1164" + "default.handlebars->23->1175" ] }, { @@ -14098,10 +14102,10 @@ "cs": "Import uživatelských účtů", "nl": "Gebruikersaccount importeren", "xloc": [ - "default.handlebars->23->1171", - "default.handlebars->23->1172", - "default.handlebars->23->1174", - "default.handlebars->23->1176" + "default.handlebars->23->1182", + "default.handlebars->23->1183", + "default.handlebars->23->1185", + "default.handlebars->23->1187" ] }, { @@ -14111,7 +14115,7 @@ "cs": "Uživatelská oprávnění", "nl": "Gebruikersautorisaties", "xloc": [ - "default.handlebars->23->990", + "default.handlebars->23->994", "default-mobile.handlebars->9->278" ] }, @@ -14122,8 +14126,8 @@ "cs": "Hodnota uživatelského prohlížeče", "nl": "Browserwaarde gebruiker", "xloc": [ - "default.handlebars->23->880", - "default.handlebars->23->882" + "default.handlebars->23->884", + "default.handlebars->23->886" ] }, { @@ -14134,7 +14138,7 @@ "cs": "Souhlas uživatele", "nl": "Toestemming van gebruiker", "xloc": [ - "default.handlebars->23->963" + "default.handlebars->23->967" ] }, { @@ -14144,8 +14148,8 @@ "cs": "Identifikátor uživatele", "nl": "gebruikersID", "xloc": [ - "default.handlebars->23->1084", - "default.handlebars->23->1222" + "default.handlebars->23->1090", + "default.handlebars->23->1233" ] }, { @@ -14169,7 +14173,7 @@ "cs": "Export seznamu uživatelů", "nl": "Gebruikerslijst exporteren", "xloc": [ - "default.handlebars->23->1183" + "default.handlebars->23->1194" ] }, { @@ -14180,7 +14184,7 @@ "ja": "ユーザー名", "nl": "Gebruikersnaam", "xloc": [ - "default.handlebars->23->1083" + "default.handlebars->23->1089" ] }, { @@ -14191,7 +14195,7 @@ "cs": "Uživatelé", "nl": "Gebruikersnamen", "xloc": [ - "default.handlebars->23->1044" + "default.handlebars->23->1050" ] }, { @@ -14201,7 +14205,7 @@ "cs": "Uživatelské spojení", "nl": "Gebruikerssessie", "xloc": [ - "default.handlebars->23->1278" + "default.handlebars->23->1316" ] }, { @@ -14233,8 +14237,8 @@ "cs": "userlist.csv", "nl": "userlist.csv", "xloc": [ - "default.handlebars->23->1180", - "default.handlebars->23->1185" + "default.handlebars->23->1191", + "default.handlebars->23->1196" ] }, { @@ -14244,8 +14248,8 @@ "cs": "userlist.json", "nl": "userlist.json", "xloc": [ - "default.handlebars->23->1182", - "default.handlebars->23->1186" + "default.handlebars->23->1193", + "default.handlebars->23->1197" ] }, { @@ -14258,7 +14262,7 @@ "xloc": [ "default.handlebars->23->235", "default.handlebars->23->265", - "default.handlebars->23->523", + "default.handlebars->23->527", "default-mobile.handlebars->9->209", "player.htm->3->4" ] @@ -14296,7 +14300,7 @@ "ja": "ユーザー", "nl": "Gebruikers", "xloc": [ - "default.handlebars->23->1277" + "default.handlebars->23->1315" ] }, { @@ -14307,7 +14311,7 @@ "cs": "UTF8 Terminál", "nl": "UTF8 Terminal", "xloc": [ - "default.handlebars->23->601" + "default.handlebars->23->605" ] }, { @@ -14317,7 +14321,7 @@ "cs": "Venda", "nl": "Venda", "xloc": [ - "default.handlebars->23->872" + "default.handlebars->23->876" ] }, { @@ -14389,7 +14393,7 @@ "cs": "Vietnamese", "nl": "Vietnamees", "xloc": [ - "default.handlebars->23->873" + "default.handlebars->23->877" ] }, { @@ -14410,7 +14414,7 @@ "cs": "Zobrazit poznámky k tomuto zařízení", "nl": "Bekijk opmerkingen over dit apparaat", "xloc": [ - "default.handlebars->23->475" + "default.handlebars->23->479" ] }, { @@ -14420,7 +14424,7 @@ "cs": "Zobrazit poznámky k této skupině zařízení", "nl": "Bekijk opmerkingen over deze apparaatgroep", "xloc": [ - "default.handlebars->23->976" + "default.handlebars->23->980" ] }, { @@ -14430,7 +14434,7 @@ "cs": "Zobrazit poznámky o tomto uživateli", "nl": "Bekijk opmerkingen over deze gebruiker", "xloc": [ - "default.handlebars->23->1245" + "default.handlebars->23->1256" ] }, { @@ -14440,7 +14444,7 @@ "cs": "Volapuk", "nl": "Volapuk", "xloc": [ - "default.handlebars->23->874" + "default.handlebars->23->878" ] }, { @@ -14450,7 +14454,7 @@ "cs": "VT100+ (F10 = ESC+[OY)", "nl": "VT100+ (F10 = ESC+[OY)", "xloc": [ - "default.handlebars->23->606" + "default.handlebars->23->610" ] }, { @@ -14470,8 +14474,8 @@ "cs": "Probudit zařízení", "nl": "apparaat wekken", "xloc": [ - "default.handlebars->23->1058", - "default.handlebars->23->1072", + "default.handlebars->23->1064", + "default.handlebars->23->1078", "default-mobile.handlebars->9->301", "default-mobile.handlebars->9->314" ] @@ -14483,7 +14487,7 @@ "ja": "目を覚ます", "nl": "Wakker worden", "xloc": [ - "default.handlebars->23->512", + "default.handlebars->23->516", "default-mobile.handlebars->9->203" ] }, @@ -14504,7 +14508,7 @@ "cs": "Walloon", "nl": "Waals", "xloc": [ - "default.handlebars->23->875" + "default.handlebars->23->879" ] }, { @@ -14525,7 +14529,7 @@ "ja": "弱い", "nl": "Zwak", "xloc": [ - "default.handlebars->23->927" + "default.handlebars->23->931" ] }, { @@ -14550,8 +14554,8 @@ "cs": "Webový server", "nl": "webserver", "xloc": [ - "default.handlebars->23->1292", - "default.handlebars->23->1293" + "default.handlebars->23->1334", + "default.handlebars->23->1335" ] }, { @@ -14562,7 +14566,7 @@ "cs": "Požadavky webového serveru", "nl": "Webserver Verzoeken", "xloc": [ - "default.handlebars->23->1294" + "default.handlebars->23->1336" ] }, { @@ -14573,7 +14577,7 @@ "cs": "Web Socket Relay", "nl": "Web Socket Relay", "xloc": [ - "default.handlebars->23->1295" + "default.handlebars->23->1337" ] }, { @@ -14606,7 +14610,7 @@ "cs": "Welsh", "nl": "Wels", "xloc": [ - "default.handlebars->23->876" + "default.handlebars->23->880" ] }, { @@ -14617,7 +14621,7 @@ "ja": "次回ログイン時に変更されます。", "nl": "Wordt bij de volgende aanmelding gewijzigd.", "xloc": [ - "default.handlebars->23->1230" + "default.handlebars->23->1241" ] }, { @@ -14734,7 +14738,7 @@ "cs": "Windows (32bit)", "nl": "Windows (32bit)", "xloc": [ - "default.handlebars->23->552" + "default.handlebars->23->556" ] }, { @@ -14744,7 +14748,7 @@ "cs": "Windows (64bit)", "nl": "Windows (64bit)", "xloc": [ - "default.handlebars->23->553" + "default.handlebars->23->557" ] }, { @@ -14871,7 +14875,7 @@ "cs": "WinSCP", "nl": "WinSCP", "xloc": [ - "default.handlebars->23->493" + "default.handlebars->23->497" ] }, { @@ -14882,7 +14886,7 @@ "cs": "Napište událost pro toto zařízení", "nl": "Schrijf een gebeurtenis voor dit apparaat", "xloc": [ - "default.handlebars->23->477" + "default.handlebars->23->481" ] }, { @@ -14916,7 +14920,7 @@ "cs": "Xhosa", "nl": "Xhosa", "xloc": [ - "default.handlebars->23->877" + "default.handlebars->23->881" ] }, { @@ -14926,7 +14930,7 @@ "cs": "Yiddish", "nl": "Jiddisch", "xloc": [ - "default.handlebars->23->878" + "default.handlebars->23->882" ] }, { @@ -14967,7 +14971,7 @@ "cs": "YubiKey™ OTP", "nl": "YubiKey™ OTP", "xloc": [ - "default.handlebars->23->680" + "default.handlebars->23->684" ] }, { @@ -14977,7 +14981,7 @@ "cs": "Přiblížit na míru", "nl": "Zoom in op maat", "xloc": [ - "default.handlebars->23->402" + "default.handlebars->23->407" ] }, { @@ -14987,8 +14991,8 @@ "cs": "Přiblížit", "nl": "Inzoomen tot maat", "xloc": [ - "default.handlebars->23->399", - "default.handlebars->23->406" + "default.handlebars->23->404", + "default.handlebars->23->410" ] }, { @@ -14998,8 +15002,8 @@ "cs": "Oddálit", "nl": "Uitzoomen naar maat", "xloc": [ - "default.handlebars->23->400", - "default.handlebars->23->407" + "default.handlebars->23->405", + "default.handlebars->23->411" ] }, { @@ -15009,7 +15013,7 @@ "cs": "Zulu", "nl": "Zoeloe", "xloc": [ - "default.handlebars->23->879" + "default.handlebars->23->883" ] }, { @@ -15020,7 +15024,7 @@ "cs": "{0} aktivních spojení", "nl": "{0} actieve sessies", "xloc": [ - "default.handlebars->23->1249" + "default.handlebars->23->1262" ] }, { @@ -15030,7 +15034,7 @@ "cs": "{0} b", "nl": "{0} b", "xloc": [ - "default.handlebars->23->1112" + "default.handlebars->23->1122" ] }, { @@ -15041,7 +15045,7 @@ "ja": "{0}バイト", "nl": "{0} bytes", "xloc": [ - "default.handlebars->23->1122", + "default.handlebars->23->1132", "default-mobile.handlebars->9->75" ] }, @@ -15053,7 +15057,7 @@ "cs": "{0} bytů zbývá", "nl": "{0} resterende bytes", "xloc": [ - "default.handlebars->23->1107" + "default.handlebars->23->1117" ] }, { @@ -15063,7 +15067,7 @@ "cs": "{0} Gb", "nl": "{0} Gb", "xloc": [ - "default.handlebars->23->1115" + "default.handlebars->23->1125" ] }, { @@ -15073,7 +15077,7 @@ "ja": "残り{0}ギガバイト", "nl": "{0} rsterende gigabytes", "xloc": [ - "default.handlebars->23->1110" + "default.handlebars->23->1120" ] }, { @@ -15083,7 +15087,7 @@ "cs": "{0} skupin", "nl": "{0} groepen", "xloc": [ - "default.handlebars->23->1235" + "default.handlebars->23->1246" ] }, { @@ -15103,7 +15107,7 @@ "cs": "{0} Kb", "nl": "{0} Kb", "xloc": [ - "default.handlebars->23->1113" + "default.handlebars->23->1123" ] }, { @@ -15113,7 +15117,7 @@ "ja": "残り{0}キロバイト", "nl": "{0} resterende kilobytes", "xloc": [ - "default.handlebars->23->1108" + "default.handlebars->23->1118" ] }, { @@ -15134,7 +15138,7 @@ "cs": "{0} Mb", "nl": "{0} Mb", "xloc": [ - "default.handlebars->23->1114" + "default.handlebars->23->1124" ] }, { @@ -15154,7 +15158,7 @@ "ja": "残り{0}メガバイト", "nl": "{0} resterende megabytes", "xloc": [ - "default.handlebars->23->1109" + "default.handlebars->23->1119" ] }, { @@ -15174,7 +15178,7 @@ "cs": "{0} dalších uživatelů není zobrazeno, použijte hledat uživatele pomocí vyhledávacího pole...", "nl": "{0} meer gebruikers niet getoond, gebruik zoekvak om gebruikers te zoeken ...", "xloc": [ - "default.handlebars->23->1155" + "default.handlebars->23->1166" ] }, { @@ -15237,7 +15241,7 @@ "cs": "{0} spojení", "nl": "{0} sessies", "xloc": [ - "default.handlebars->23->1159" + "default.handlebars->23->1170" ] }, { @@ -15308,7 +15312,7 @@ "cs": "{0}k v 1 souboru. {1}k maximum", "nl": "{0}k in 1 bestand. {1}k maximum", "xloc": [ - "default.handlebars->23->1117" + "default.handlebars->23->1127" ] }, { @@ -15318,7 +15322,7 @@ "cs": "{0}k v {1} souborech. {2}k maximum", "nl": "{0}k in 1 file. {2}k maximum", "xloc": [ - "default.handlebars->23->1116" + "default.handlebars->23->1126" ] }, { @@ -15471,7 +15475,7 @@ "cs": "Pomoct přeložit MeshCentral", "nl": "Help bij het vertalen van MeshCentral", "xloc": [ - "default.handlebars->23->885" + "default.handlebars->23->889" ] }, { @@ -15481,7 +15485,7 @@ "cs": "2-faktorová autentizace povolena", "nl": "Tweestapsverificatie ingeschakeld", "xloc": [ - "default.handlebars->23->1243" + "default.handlebars->23->1254" ] }, { @@ -15490,7 +15494,7 @@ "cs": "\\\\'", "nl": "\\\\'", "xloc": [ - "default.handlebars->23->1303" + "default.handlebars->23->1345" ] }, { @@ -15529,14 +15533,14 @@ "en": "Power States", "xloc": [ "default.handlebars->container->column_l->p21->3->1->meshPowerChartDiv->1", - "default.handlebars->23->1095" + "default.handlebars->23->1105" ] }, { "en": "Agent Types", "xloc": [ "default.handlebars->container->column_l->p21->3->1->meshOsChartDiv->1", - "default.handlebars->23->1096" + "default.handlebars->23->1106" ] }, { @@ -15560,63 +15564,285 @@ { "en": "Wrap: ON", "xloc": [ - "default.handlebars->23->641" + "default.handlebars->23->645" ] }, { "en": "Wrap: OFF", "xloc": [ - "default.handlebars->23->642" + "default.handlebars->23->646" ] }, { "en": "Size: 100%", "xloc": [ - "default.handlebars->23->643" + "default.handlebars->23->647" ] }, { "en": "Size: 125%", "xloc": [ - "default.handlebars->23->644" + "default.handlebars->23->648" ] }, { "en": "Size: 150%", "xloc": [ - "default.handlebars->23->645" + "default.handlebars->23->649" ] }, { "en": "Size: 200%", "xloc": [ - "default.handlebars->23->646" + "default.handlebars->23->650" ] }, { "en": "Display device group name", "xloc": [ - "default.handlebars->23->888" + "default.handlebars->23->892" ] }, { "en": "Not Connected", "xloc": [ - "default.handlebars->23->1091", - "default.handlebars->23->1097" + "default.handlebars->23->1101", + "default.handlebars->23->1107" ] }, { "en": "Agent + Intel AMT", "xloc": [ - "default.handlebars->23->1094", - "default.handlebars->23->1100" + "default.handlebars->23->1104", + "default.handlebars->23->1110" ] }, { "en": "No devices in this device group.", "xloc": [ - "default.handlebars->23->1102" + "default.handlebars->23->1112" + ] + }, + { + "en": "Toggle footer bar", + "xloc": [ + "default.handlebars->container->topbar->1->1->uiMenuButton->uiMenu" + ] + }, + { + "en": "Remove device on disconnect", + "xloc": [ + "default.handlebars->23->1045" + ] + }, + { + "en": "Sync server device name to hostname", + "xloc": [ + "default.handlebars->23->1046" + ] + }, + { + "en": "Notification settings must also be turned on in account settings.", + "xloc": [ + "default.handlebars->23->1096" + ] + }, + { + "en": "Groups", + "xloc": [ + "default.handlebars->23->1160" + ] + }, + { + "en": "Delete User", + "xloc": [ + "default.handlebars->23->1259" + ] + }, + { + "en": "7 Day Login State", + "xloc": [ + "default.handlebars->23->1275" + ] + }, + { + "en": "CPU Load", + "xloc": [ + "default.handlebars->23->1306" + ] + }, + { + "en": "Server State", + "xloc": [ + "default.handlebars->23->1284" + ] + }, + { + "en": "Agent Error Counters", + "xloc": [ + "default.handlebars->23->1285" + ] + }, + { + "en": "Unknown Group", + "xloc": [ + "default.handlebars->23->1286" + ] + }, + { + "en": "Invalid PKCS signature", + "xloc": [ + "default.handlebars->23->1287" + ] + }, + { + "en": "Invalid RSA siguature", + "xloc": [ + "default.handlebars->23->1288" + ] + }, + { + "en": "Invalid JSON", + "xloc": [ + "default.handlebars->23->1289" + ] + }, + { + "en": "Unknown Action", + "xloc": [ + "default.handlebars->23->1290" + ] + }, + { + "en": "Bad Web Certificate", + "xloc": [ + "default.handlebars->23->1291" + ] + }, + { + "en": "Bad Signature", + "xloc": [ + "default.handlebars->23->1292" + ] + }, + { + "en": "Max Sessions Reached", + "xloc": [ + "default.handlebars->23->1293" + ] + }, + { + "en": "Unknown Device Group", + "xloc": [ + "default.handlebars->23->1294" + ] + }, + { + "en": "Invalid Device Group Type", + "xloc": [ + "default.handlebars->23->1295" + ] + }, + { + "en": "Duplicate Agent", + "xloc": [ + "default.handlebars->23->1296" + ] + }, + { + "en": "Connected Intel® AMT", + "xloc": [ + "default.handlebars->23->1297" + ] + }, + { + "en": "Relay Errors", + "xloc": [ + "default.handlebars->23->1298" + ] + }, + { + "en": "User Accounts", + "xloc": [ + "default.handlebars->23->1299" + ] + }, + { + "en": "Agent Sessions", + "xloc": [ + "default.handlebars->23->1301" + ] + }, + { + "en": "Connected Users", + "xloc": [ + "default.handlebars->23->1302" + ] + }, + { + "en": "Users Sessions", + "xloc": [ + "default.handlebars->23->1303" + ] + }, + { + "en": "Relay Count", + "xloc": [ + "default.handlebars->23->1305" + ] + }, + { + "en": "user:", + "xloc": [ + "default.handlebars->23->392" + ] + }, + { + "en": "u:", + "xloc": [ + "default.handlebars->23->393" + ] + }, + { + "en": "ip:", + "xloc": [ + "default.handlebars->23->394" + ] + }, + { + "en": "group:", + "xloc": [ + "default.handlebars->23->395" + ] + }, + { + "en": "g:", + "xloc": [ + "default.handlebars->23->396" + ] + }, + { + "en": "External", + "xloc": [ + "default.handlebars->23->1320" + ] + }, + { + "en": "Heap Used", + "xloc": [ + "default.handlebars->23->1321" + ] + }, + { + "en": "Heap Total", + "xloc": [ + "default.handlebars->23->1322" + ] + }, + { + "en": "RSS", + "xloc": [ + "default.handlebars->23->1323" ] } ] diff --git a/views/default-min.handlebars b/views/default-min.handlebars index e737d294..23002061 100644 --- a/views/default-min.handlebars +++ b/views/default-min.handlebars @@ -2586,11 +2586,11 @@ function onSearchInputChanged() { var x = Q('SearchInput').value.toLowerCase().trim(); putstore('_search', x); var userSearch = null, ipSearch = null, groupSearch = null; - if (x.startsWith('user:')) { userSearch = x.substring(5); } - else if (x.startsWith('u:')) { userSearch = x.substring(2); } - else if (x.startsWith('ip:')) { ipSearch = x.substring(3); } - else if (x.startsWith('group:')) { groupSearch = x.substring(6); } - else if (x.startsWith('g:')) { groupSearch = x.substring(2); } + if (x.startsWith("user:")) { userSearch = x.substring(5); } + else if (x.startsWith("u:")) { userSearch = x.substring(2); } + else if (x.startsWith("ip:")) { ipSearch = x.substring(3); } + else if (x.startsWith("group:")) { groupSearch = x.substring(6); } + else if (x.startsWith("g:")) { groupSearch = x.substring(2); } if (x == '') { // No search @@ -2919,7 +2919,7 @@ }); // On right click open the context menu - contextmenu.on("open", function (evt) { + contextmenu.on('open', function (evt) { var feature = xxmap.map.forEachFeatureAtPixel(evt.pixel, function(ft, l){ return ft; }); xxmap.contextmenu.clear(); //Clear the context menu if (feature) { @@ -6656,8 +6656,8 @@ function p20editmeshfeatures() { if (xxdialogMode) return; var flags = (currentMesh.flags)?currentMesh.flags:0; - var x = '

'; - x += '

'; + var x = '

'; + x += '

'; setDialogMode(2, "Edit Device Group Features", 3, p20editmeshfeaturesEx, x); } @@ -6885,10 +6885,10 @@ if (xxdialogMode) return false; var meshNotify = 0; if (userinfo.links && userinfo.links[currentMesh._id] && userinfo.links[currentMesh._id].notify) { meshNotify = userinfo.links[currentMesh._id].notify; } - var x = 'Notification settings must also be turned on in account settings.

'; - x += '
'; - x += '
'; - x += '
'; + var x = "Notification settings must also be turned on in account settings." + '

'; + x += '
'; + x += '
'; + x += '
'; setDialogMode(2, "Notification Settings", 3, p20editMeshNotifyEx, x); Q('p20notifyIntelDeviceConnect').checked = (meshNotify & 2); Q('p20notifyIntelDeviceDisconnect').checked = (meshNotify & 4); @@ -7452,7 +7452,7 @@ // Display the users using the sorted list var x = '', addHeader = true; - x += '
' + "Name" + 'Groups' + nobreak("Last Access") + '' + "Permissions"; + x += '' + "Name" + '' + "Groups" + '' + nobreak("Last Access") + '' + "Permissions"; // Online users for (var i in sortedUserIds) { @@ -7909,9 +7909,9 @@ // Show bottom buttons x = '
'; - if (deletePossible) x += 'Delete User'; + if (deletePossible) x += '' + "Delete User" + ''; x += '
'; - if (userinfo.siteadmin == 0xFFFFFFFF) x += 'Change Password'; + if (userinfo.siteadmin == 0xFFFFFFFF) x += '' + "Change Password" + ''; x += '

' QH('p30html3', x); @@ -8052,7 +8052,7 @@ ++count; date = new Date(date.getTime() - (1000 * 60 * 60 * 24)); // Substract one day } - QH('p30html2', '' + x + '
Day7 Day Login State
'); + QH('p30html2', '' + x + '
' + "Day" + '' + "7 Day Login State" + '
'); } // @@ -8356,6 +8356,31 @@ }); } + var serverStatsStrings = { + ServerState: "Server State", + AgentErrorCounters: "Agent Error Counters", + UnknownGroup: "Unknown Group", + InvalidPKCSsignature: "Invalid PKCS signature", + InvalidRSAsiguature: "Invalid RSA siguature", + InvalidJSON: "Invalid JSON", + UnknownAction: "Unknown Action", + BadWebCertificate: "Bad Web Certificate", + BadSignature: "Bad Signature", + MaxSessionsReached: "Max Sessions Reached", + UnknownDeviceGroup: "Unknown Device Group", + InvalidDeviceGroupType: "Invalid Device Group Type", + DuplicateAgent: "Duplicate Agent", + ConnectedIntelAMT: "Connected Intel® AMT", + RelayErrors: "Relay Errors", + UserAccounts: "User Accounts", + DeviceGroups: "Device Groups", + AgentSessions: "Agent Sessions", + ConnectedUsers: "Connected Users", + UsersSessions: "Users Sessions", + RelaySessions: "Relay Sessions", + RelayCount: "Relay Count" + }; + var lastServerStats = null; function updateGeneralServerStats(message) { if (message != null) { lastServerStats = message; } else { message = lastServerStats; } @@ -8365,7 +8390,7 @@ if (typeof message.cpuavg == 'object') { var m = Math.min(message.cpuavg[0], 1); window.serverStatCpu.config.data.datasets[0].data = [m, 1 - m]; - QH('serverCpuChartText', '
CPU Load
' + (Math.round(message.cpuavg[0] * 100.0) / 100.0) + ', ' + (Math.round(message.cpuavg[1] * 100.0) / 100.0) + ', ' + (Math.round(message.cpuavg[2] * 100.0) / 100.0) + '
'); + QH('serverCpuChartText', '
' + "CPU Load" + '
' + (Math.round(message.cpuavg[0] * 100.0) / 100.0) + ', ' + (Math.round(message.cpuavg[1] * 100.0) / 100.0) + ', ' + (Math.round(message.cpuavg[2] * 100.0) / 100.0) + '
'); QS('serverCpuChartView')['display'] = 'inline-block'; window.serverStatCpu.update(); } @@ -8377,12 +8402,13 @@ } // Display all of the server values + // serverStatsStrings var x = '
'; if (typeof message.values == 'object') { for (var i in message.values) { - x += '
' + i + '
'; + x += '
' + (serverStatsStrings[i]?serverStatsStrings[i]:i) + '
'; for (var j in message.values[i]) { - x += '
' + j + '' + message.values[i][j] + '
'; + x += '
' + (serverStatsStrings[j]?serverStatsStrings[j]:j) + '' + message.values[i][j] + '
'; } } } @@ -8473,10 +8499,10 @@ data = { labels: [pastDate(0), timeAfter], datasets: [ - { label: 'External', data: [], backgroundColor: 'rgba(158, 151, 16, .1)', borderColor: 'rgb(158, 151, 16)', fill: true }, - { label: 'Heap Used', data: [], backgroundColor: 'rgba(16, 84, 158, .1)', borderColor: 'rgb(16, 84, 158)', fill: true }, - { label: 'Heap Total', data: [], backgroundColor: 'rgba(255, 99, 132, .1)', borderColor: 'rgb(255, 99, 132)', fill: true }, - { label: 'RSS', data: [], backgroundColor: 'rgba(39, 158, 16, .1)', borderColor: 'rgb(39, 158, 16)', fill: true } + { label: "External", data: [], backgroundColor: 'rgba(158, 151, 16, .1)', borderColor: 'rgb(158, 151, 16)', fill: true }, + { label: "Heap Used", data: [], backgroundColor: 'rgba(16, 84, 158, .1)', borderColor: 'rgb(16, 84, 158)', fill: true }, + { label: "Heap Total", data: [], backgroundColor: 'rgba(255, 99, 132, .1)', borderColor: 'rgb(255, 99, 132)', fill: true }, + { label: "RSS", data: [], backgroundColor: 'rgba(39, 158, 16, .1)', borderColor: 'rgb(39, 158, 16)', fill: true } ] }; for (var i = 0; i < serverTimelineStats.length; i++) { diff --git a/views/default.handlebars b/views/default.handlebars index e03b06af..da2f5c8c 100644 --- a/views/default.handlebars +++ b/views/default.handlebars @@ -3640,11 +3640,11 @@ function onSearchInputChanged() { var x = Q('SearchInput').value.toLowerCase().trim(); putstore('_search', x); var userSearch = null, ipSearch = null, groupSearch = null; - if (x.startsWith('user:')) { userSearch = x.substring(5); } - else if (x.startsWith('u:')) { userSearch = x.substring(2); } - else if (x.startsWith('ip:')) { ipSearch = x.substring(3); } - else if (x.startsWith('group:')) { groupSearch = x.substring(6); } - else if (x.startsWith('g:')) { groupSearch = x.substring(2); } + if (x.startsWith("user:")) { userSearch = x.substring(5); } + else if (x.startsWith("u:")) { userSearch = x.substring(2); } + else if (x.startsWith("ip:")) { ipSearch = x.substring(3); } + else if (x.startsWith("group:")) { groupSearch = x.substring(6); } + else if (x.startsWith("g:")) { groupSearch = x.substring(2); } if (x == '') { // No search @@ -3973,7 +3973,7 @@ }); // On right click open the context menu - contextmenu.on("open", function (evt) { + contextmenu.on('open', function (evt) { var feature = xxmap.map.forEachFeatureAtPixel(evt.pixel, function(ft, l){ return ft; }); xxmap.contextmenu.clear(); //Clear the context menu if (feature) { @@ -7710,8 +7710,8 @@ function p20editmeshfeatures() { if (xxdialogMode) return; var flags = (currentMesh.flags)?currentMesh.flags:0; - var x = '

'; - x += '

'; + var x = '

'; + x += '

'; setDialogMode(2, "Edit Device Group Features", 3, p20editmeshfeaturesEx, x); } @@ -7939,10 +7939,10 @@ if (xxdialogMode) return false; var meshNotify = 0; if (userinfo.links && userinfo.links[currentMesh._id] && userinfo.links[currentMesh._id].notify) { meshNotify = userinfo.links[currentMesh._id].notify; } - var x = 'Notification settings must also be turned on in account settings.

'; - x += '
'; - x += '
'; - x += '
'; + var x = "Notification settings must also be turned on in account settings." + '

'; + x += '
'; + x += '
'; + x += '
'; setDialogMode(2, "Notification Settings", 3, p20editMeshNotifyEx, x); Q('p20notifyIntelDeviceConnect').checked = (meshNotify & 2); Q('p20notifyIntelDeviceDisconnect').checked = (meshNotify & 4); @@ -8506,7 +8506,7 @@ // Display the users using the sorted list var x = '', addHeader = true; - x += '
' + "Name" + 'Groups' + nobreak("Last Access") + '' + "Permissions"; + x += '' + "Name" + '' + "Groups" + '' + nobreak("Last Access") + '' + "Permissions"; // Online users for (var i in sortedUserIds) { @@ -8963,9 +8963,9 @@ // Show bottom buttons x = '
'; - if (deletePossible) x += 'Delete User'; + if (deletePossible) x += '' + "Delete User" + ''; x += '
'; - if (userinfo.siteadmin == 0xFFFFFFFF) x += 'Change Password'; + if (userinfo.siteadmin == 0xFFFFFFFF) x += '' + "Change Password" + ''; x += '

' QH('p30html3', x); @@ -9106,7 +9106,7 @@ ++count; date = new Date(date.getTime() - (1000 * 60 * 60 * 24)); // Substract one day } - QH('p30html2', '' + x + '
Day7 Day Login State
'); + QH('p30html2', '' + x + '
' + "Day" + '' + "7 Day Login State" + '
'); } // @@ -9410,6 +9410,31 @@ }); } + var serverStatsStrings = { + ServerState: "Server State", + AgentErrorCounters: "Agent Error Counters", + UnknownGroup: "Unknown Group", + InvalidPKCSsignature: "Invalid PKCS signature", + InvalidRSAsiguature: "Invalid RSA siguature", + InvalidJSON: "Invalid JSON", + UnknownAction: "Unknown Action", + BadWebCertificate: "Bad Web Certificate", + BadSignature: "Bad Signature", + MaxSessionsReached: "Max Sessions Reached", + UnknownDeviceGroup: "Unknown Device Group", + InvalidDeviceGroupType: "Invalid Device Group Type", + DuplicateAgent: "Duplicate Agent", + ConnectedIntelAMT: "Connected Intel® AMT", + RelayErrors: "Relay Errors", + UserAccounts: "User Accounts", + DeviceGroups: "Device Groups", + AgentSessions: "Agent Sessions", + ConnectedUsers: "Connected Users", + UsersSessions: "Users Sessions", + RelaySessions: "Relay Sessions", + RelayCount: "Relay Count" + }; + var lastServerStats = null; function updateGeneralServerStats(message) { if (message != null) { lastServerStats = message; } else { message = lastServerStats; } @@ -9419,7 +9444,7 @@ if (typeof message.cpuavg == 'object') { var m = Math.min(message.cpuavg[0], 1); window.serverStatCpu.config.data.datasets[0].data = [m, 1 - m]; - QH('serverCpuChartText', '
CPU Load
' + (Math.round(message.cpuavg[0] * 100.0) / 100.0) + ', ' + (Math.round(message.cpuavg[1] * 100.0) / 100.0) + ', ' + (Math.round(message.cpuavg[2] * 100.0) / 100.0) + '
'); + QH('serverCpuChartText', '
' + "CPU Load" + '
' + (Math.round(message.cpuavg[0] * 100.0) / 100.0) + ', ' + (Math.round(message.cpuavg[1] * 100.0) / 100.0) + ', ' + (Math.round(message.cpuavg[2] * 100.0) / 100.0) + '
'); QS('serverCpuChartView')['display'] = 'inline-block'; window.serverStatCpu.update(); } @@ -9431,12 +9456,13 @@ } // Display all of the server values + // serverStatsStrings var x = '
'; if (typeof message.values == 'object') { for (var i in message.values) { - x += '
' + i + '
'; + x += '
' + (serverStatsStrings[i]?serverStatsStrings[i]:i) + '
'; for (var j in message.values[i]) { - x += '
' + j + '' + message.values[i][j] + '
'; + x += '
' + (serverStatsStrings[j]?serverStatsStrings[j]:j) + '' + message.values[i][j] + '
'; } } } @@ -9527,10 +9553,10 @@ data = { labels: [pastDate(0), timeAfter], datasets: [ - { label: 'External', data: [], backgroundColor: 'rgba(158, 151, 16, .1)', borderColor: 'rgb(158, 151, 16)', fill: true }, - { label: 'Heap Used', data: [], backgroundColor: 'rgba(16, 84, 158, .1)', borderColor: 'rgb(16, 84, 158)', fill: true }, - { label: 'Heap Total', data: [], backgroundColor: 'rgba(255, 99, 132, .1)', borderColor: 'rgb(255, 99, 132)', fill: true }, - { label: 'RSS', data: [], backgroundColor: 'rgba(39, 158, 16, .1)', borderColor: 'rgb(39, 158, 16)', fill: true } + { label: "External", data: [], backgroundColor: 'rgba(158, 151, 16, .1)', borderColor: 'rgb(158, 151, 16)', fill: true }, + { label: "Heap Used", data: [], backgroundColor: 'rgba(16, 84, 158, .1)', borderColor: 'rgb(16, 84, 158)', fill: true }, + { label: "Heap Total", data: [], backgroundColor: 'rgba(255, 99, 132, .1)', borderColor: 'rgb(255, 99, 132)', fill: true }, + { label: "RSS", data: [], backgroundColor: 'rgba(39, 158, 16, .1)', borderColor: 'rgb(39, 158, 16)', fill: true } ] }; for (var i = 0; i < serverTimelineStats.length; i++) { diff --git a/views/translations/default-min_cs.handlebars b/views/translations/default-min_cs.handlebars index fa050506..31f70739 100644 --- a/views/translations/default-min_cs.handlebars +++ b/views/translations/default-min_cs.handlebars @@ -2586,11 +2586,11 @@ function onSearchInputChanged() { var x = Q('SearchInput').value.toLowerCase().trim(); putstore('_search', x); var userSearch = null, ipSearch = null, groupSearch = null; - if (x.startsWith('user:')) { userSearch = x.substring(5); } - else if (x.startsWith('u:')) { userSearch = x.substring(2); } - else if (x.startsWith('ip:')) { ipSearch = x.substring(3); } - else if (x.startsWith('group:')) { groupSearch = x.substring(6); } - else if (x.startsWith('g:')) { groupSearch = x.substring(2); } + if (x.startsWith("user:")) { userSearch = x.substring(5); } + else if (x.startsWith("u:")) { userSearch = x.substring(2); } + else if (x.startsWith("ip:")) { ipSearch = x.substring(3); } + else if (x.startsWith("group:")) { groupSearch = x.substring(6); } + else if (x.startsWith("g:")) { groupSearch = x.substring(2); } if (x == '') { // No search @@ -2919,7 +2919,7 @@ }); // On right click open the context menu - contextmenu.on("otevřít", function (evt) { + contextmenu.on('open', function (evt) { var feature = xxmap.map.forEachFeatureAtPixel(evt.pixel, function(ft, l){ return ft; }); xxmap.contextmenu.clear(); //Clear the context menu if (feature) { @@ -6656,8 +6656,8 @@ function p20editmeshfeatures() { if (xxdialogMode) return; var flags = (currentMesh.flags)?currentMesh.flags:0; - var x = '

'; - x += '

'; + var x = '

'; + x += '

'; setDialogMode(2, "Upravit vlastnosti skupiny zařízení", 3, p20editmeshfeaturesEx, x); } @@ -6885,10 +6885,10 @@ if (xxdialogMode) return false; var meshNotify = 0; if (userinfo.links && userinfo.links[currentMesh._id] && userinfo.links[currentMesh._id].notify) { meshNotify = userinfo.links[currentMesh._id].notify; } - var x = 'Notification settings must also be turned on in account settings.

'; - x += '
'; - x += '
'; - x += '
'; + var x = "Notification settings must also be turned on in account settings." + '

'; + x += '
'; + x += '
'; + x += '
'; setDialogMode(2, "Nastavení notifikací", 3, p20editMeshNotifyEx, x); Q('p20notifyIntelDeviceConnect').checked = (meshNotify & 2); Q('p20notifyIntelDeviceDisconnect').checked = (meshNotify & 4); @@ -7452,7 +7452,7 @@ // Display the users using the sorted list var x = '', addHeader = true; - x += '
' + "Jméno" + 'Groups' + nobreak("Poslední přístup") + '' + "Práva"; + x += '' + "Jméno" + '' + "Groups" + '' + nobreak("Poslední přístup") + '' + "Práva"; // Online users for (var i in sortedUserIds) { @@ -7909,9 +7909,9 @@ // Show bottom buttons x = '
'; - if (deletePossible) x += 'Delete User'; + if (deletePossible) x += '' + "Delete User" + ''; x += '
'; - if (userinfo.siteadmin == 0xFFFFFFFF) x += 'Change Password'; + if (userinfo.siteadmin == 0xFFFFFFFF) x += '' + "Změnit heslo" + ''; x += '

' QH('p30html3', x); @@ -8052,7 +8052,7 @@ ++count; date = new Date(date.getTime() - (1000 * 60 * 60 * 24)); // Substract one day } - QH('p30html2', '' + x + '
Day7 Day Login State
'); + QH('p30html2', '' + x + '
' + "Den" + '' + "7 Day Login State" + '
'); } // @@ -8356,6 +8356,31 @@ }); } + var serverStatsStrings = { + ServerState: "Server State", + AgentErrorCounters: "Agent Error Counters", + UnknownGroup: "Unknown Group", + InvalidPKCSsignature: "Invalid PKCS signature", + InvalidRSAsiguature: "Invalid RSA siguature", + InvalidJSON: "Invalid JSON", + UnknownAction: "Unknown Action", + BadWebCertificate: "Bad Web Certificate", + BadSignature: "Bad Signature", + MaxSessionsReached: "Max Sessions Reached", + UnknownDeviceGroup: "Unknown Device Group", + InvalidDeviceGroupType: "Invalid Device Group Type", + DuplicateAgent: "Duplicate Agent", + ConnectedIntelAMT: "Connected Intel® AMT", + RelayErrors: "Relay Errors", + UserAccounts: "User Accounts", + DeviceGroups: "Skupiny zařízení", + AgentSessions: "Agent Sessions", + ConnectedUsers: "Connected Users", + UsersSessions: "Users Sessions", + RelaySessions: "Přesměrované relace", + RelayCount: "Relay Count" + }; + var lastServerStats = null; function updateGeneralServerStats(message) { if (message != null) { lastServerStats = message; } else { message = lastServerStats; } @@ -8365,7 +8390,7 @@ if (typeof message.cpuavg == 'object') { var m = Math.min(message.cpuavg[0], 1); window.serverStatCpu.config.data.datasets[0].data = [m, 1 - m]; - QH('serverCpuChartText', '
CPU Load
' + (Math.round(message.cpuavg[0] * 100.0) / 100.0) + ', ' + (Math.round(message.cpuavg[1] * 100.0) / 100.0) + ', ' + (Math.round(message.cpuavg[2] * 100.0) / 100.0) + '
'); + QH('serverCpuChartText', '
' + "CPU Load" + '
' + (Math.round(message.cpuavg[0] * 100.0) / 100.0) + ', ' + (Math.round(message.cpuavg[1] * 100.0) / 100.0) + ', ' + (Math.round(message.cpuavg[2] * 100.0) / 100.0) + '
'); QS('serverCpuChartView')['display'] = 'inline-block'; window.serverStatCpu.update(); } @@ -8377,12 +8402,13 @@ } // Display all of the server values + // serverStatsStrings var x = '
'; if (typeof message.values == 'object') { for (var i in message.values) { - x += '
' + i + '
'; + x += '
' + (serverStatsStrings[i]?serverStatsStrings[i]:i) + '
'; for (var j in message.values[i]) { - x += '
' + j + '' + message.values[i][j] + '
'; + x += '
' + (serverStatsStrings[j]?serverStatsStrings[j]:j) + '' + message.values[i][j] + '
'; } } } @@ -8473,10 +8499,10 @@ data = { labels: [pastDate(0), timeAfter], datasets: [ - { label: 'External', data: [], backgroundColor: 'rgba(158, 151, 16, .1)', borderColor: 'rgb(158, 151, 16)', fill: true }, - { label: 'Heap Used', data: [], backgroundColor: 'rgba(16, 84, 158, .1)', borderColor: 'rgb(16, 84, 158)', fill: true }, - { label: 'Heap Total', data: [], backgroundColor: 'rgba(255, 99, 132, .1)', borderColor: 'rgb(255, 99, 132)', fill: true }, - { label: 'RSS', data: [], backgroundColor: 'rgba(39, 158, 16, .1)', borderColor: 'rgb(39, 158, 16)', fill: true } + { label: "External", data: [], backgroundColor: 'rgba(158, 151, 16, .1)', borderColor: 'rgb(158, 151, 16)', fill: true }, + { label: "Heap Used", data: [], backgroundColor: 'rgba(16, 84, 158, .1)', borderColor: 'rgb(16, 84, 158)', fill: true }, + { label: "Heap Total", data: [], backgroundColor: 'rgba(255, 99, 132, .1)', borderColor: 'rgb(255, 99, 132)', fill: true }, + { label: "RSS", data: [], backgroundColor: 'rgba(39, 158, 16, .1)', borderColor: 'rgb(39, 158, 16)', fill: true } ] }; for (var i = 0; i < serverTimelineStats.length; i++) { diff --git a/views/translations/default-min_fr.handlebars b/views/translations/default-min_fr.handlebars index 718a9068..c84e561f 100644 --- a/views/translations/default-min_fr.handlebars +++ b/views/translations/default-min_fr.handlebars @@ -2586,11 +2586,11 @@ function onSearchInputChanged() { var x = Q('SearchInput').value.toLowerCase().trim(); putstore('_search', x); var userSearch = null, ipSearch = null, groupSearch = null; - if (x.startsWith('user:')) { userSearch = x.substring(5); } - else if (x.startsWith('u:')) { userSearch = x.substring(2); } - else if (x.startsWith('ip:')) { ipSearch = x.substring(3); } - else if (x.startsWith('group:')) { groupSearch = x.substring(6); } - else if (x.startsWith('g:')) { groupSearch = x.substring(2); } + if (x.startsWith("user:")) { userSearch = x.substring(5); } + else if (x.startsWith("u:")) { userSearch = x.substring(2); } + else if (x.startsWith("ip:")) { ipSearch = x.substring(3); } + else if (x.startsWith("group:")) { groupSearch = x.substring(6); } + else if (x.startsWith("g:")) { groupSearch = x.substring(2); } if (x == '') { // No search @@ -2919,7 +2919,7 @@ }); // On right click open the context menu - contextmenu.on("open", function (evt) { + contextmenu.on('open', function (evt) { var feature = xxmap.map.forEachFeatureAtPixel(evt.pixel, function(ft, l){ return ft; }); xxmap.contextmenu.clear(); //Clear the context menu if (feature) { @@ -6656,8 +6656,8 @@ function p20editmeshfeatures() { if (xxdialogMode) return; var flags = (currentMesh.flags)?currentMesh.flags:0; - var x = '

'; - x += '

'; + var x = '

'; + x += '

'; setDialogMode(2, "Edit Device Group Features", 3, p20editmeshfeaturesEx, x); } @@ -6885,10 +6885,10 @@ if (xxdialogMode) return false; var meshNotify = 0; if (userinfo.links && userinfo.links[currentMesh._id] && userinfo.links[currentMesh._id].notify) { meshNotify = userinfo.links[currentMesh._id].notify; } - var x = 'Notification settings must also be turned on in account settings.

'; - x += '
'; - x += '
'; - x += '
'; + var x = "Notification settings must also be turned on in account settings." + '

'; + x += '
'; + x += '
'; + x += '
'; setDialogMode(2, "Notification Settings", 3, p20editMeshNotifyEx, x); Q('p20notifyIntelDeviceConnect').checked = (meshNotify & 2); Q('p20notifyIntelDeviceDisconnect').checked = (meshNotify & 4); @@ -7452,7 +7452,7 @@ // Display the users using the sorted list var x = '', addHeader = true; - x += '
' + "Nom" + 'Groups' + nobreak("Dernier accès") + '' + "Permissions"; + x += '' + "Nom" + '' + "Groups" + '' + nobreak("Dernier accès") + '' + "Permissions"; // Online users for (var i in sortedUserIds) { @@ -7909,9 +7909,9 @@ // Show bottom buttons x = '
'; - if (deletePossible) x += 'Delete User'; + if (deletePossible) x += '' + "Delete User" + ''; x += '
'; - if (userinfo.siteadmin == 0xFFFFFFFF) x += 'Change Password'; + if (userinfo.siteadmin == 0xFFFFFFFF) x += '' + "Change Password" + ''; x += '

' QH('p30html3', x); @@ -8052,7 +8052,7 @@ ++count; date = new Date(date.getTime() - (1000 * 60 * 60 * 24)); // Substract one day } - QH('p30html2', '' + x + '
Day7 Day Login State
'); + QH('p30html2', '' + x + '
' + "Day" + '' + "7 Day Login State" + '
'); } // @@ -8356,6 +8356,31 @@ }); } + var serverStatsStrings = { + ServerState: "Server State", + AgentErrorCounters: "Agent Error Counters", + UnknownGroup: "Unknown Group", + InvalidPKCSsignature: "Invalid PKCS signature", + InvalidRSAsiguature: "Invalid RSA siguature", + InvalidJSON: "Invalid JSON", + UnknownAction: "Unknown Action", + BadWebCertificate: "Bad Web Certificate", + BadSignature: "Bad Signature", + MaxSessionsReached: "Max Sessions Reached", + UnknownDeviceGroup: "Unknown Device Group", + InvalidDeviceGroupType: "Invalid Device Group Type", + DuplicateAgent: "Duplicate Agent", + ConnectedIntelAMT: "Connected Intel® AMT", + RelayErrors: "Relay Errors", + UserAccounts: "User Accounts", + DeviceGroups: "Device Groups", + AgentSessions: "Agent Sessions", + ConnectedUsers: "Connected Users", + UsersSessions: "Users Sessions", + RelaySessions: "Relay Sessions", + RelayCount: "Relay Count" + }; + var lastServerStats = null; function updateGeneralServerStats(message) { if (message != null) { lastServerStats = message; } else { message = lastServerStats; } @@ -8365,7 +8390,7 @@ if (typeof message.cpuavg == 'object') { var m = Math.min(message.cpuavg[0], 1); window.serverStatCpu.config.data.datasets[0].data = [m, 1 - m]; - QH('serverCpuChartText', '
CPU Load
' + (Math.round(message.cpuavg[0] * 100.0) / 100.0) + ', ' + (Math.round(message.cpuavg[1] * 100.0) / 100.0) + ', ' + (Math.round(message.cpuavg[2] * 100.0) / 100.0) + '
'); + QH('serverCpuChartText', '
' + "CPU Load" + '
' + (Math.round(message.cpuavg[0] * 100.0) / 100.0) + ', ' + (Math.round(message.cpuavg[1] * 100.0) / 100.0) + ', ' + (Math.round(message.cpuavg[2] * 100.0) / 100.0) + '
'); QS('serverCpuChartView')['display'] = 'inline-block'; window.serverStatCpu.update(); } @@ -8377,12 +8402,13 @@ } // Display all of the server values + // serverStatsStrings var x = '
'; if (typeof message.values == 'object') { for (var i in message.values) { - x += '
' + i + '
'; + x += '
' + (serverStatsStrings[i]?serverStatsStrings[i]:i) + '
'; for (var j in message.values[i]) { - x += '
' + j + '' + message.values[i][j] + '
'; + x += '
' + (serverStatsStrings[j]?serverStatsStrings[j]:j) + '' + message.values[i][j] + '
'; } } } @@ -8473,10 +8499,10 @@ data = { labels: [pastDate(0), timeAfter], datasets: [ - { label: 'External', data: [], backgroundColor: 'rgba(158, 151, 16, .1)', borderColor: 'rgb(158, 151, 16)', fill: true }, - { label: 'Heap Used', data: [], backgroundColor: 'rgba(16, 84, 158, .1)', borderColor: 'rgb(16, 84, 158)', fill: true }, - { label: 'Heap Total', data: [], backgroundColor: 'rgba(255, 99, 132, .1)', borderColor: 'rgb(255, 99, 132)', fill: true }, - { label: 'RSS', data: [], backgroundColor: 'rgba(39, 158, 16, .1)', borderColor: 'rgb(39, 158, 16)', fill: true } + { label: "External", data: [], backgroundColor: 'rgba(158, 151, 16, .1)', borderColor: 'rgb(158, 151, 16)', fill: true }, + { label: "Heap Used", data: [], backgroundColor: 'rgba(16, 84, 158, .1)', borderColor: 'rgb(16, 84, 158)', fill: true }, + { label: "Heap Total", data: [], backgroundColor: 'rgba(255, 99, 132, .1)', borderColor: 'rgb(255, 99, 132)', fill: true }, + { label: "RSS", data: [], backgroundColor: 'rgba(39, 158, 16, .1)', borderColor: 'rgb(39, 158, 16)', fill: true } ] }; for (var i = 0; i < serverTimelineStats.length; i++) { diff --git a/views/translations/default-min_ja.handlebars b/views/translations/default-min_ja.handlebars index 6f9999aa..7aada321 100644 --- a/views/translations/default-min_ja.handlebars +++ b/views/translations/default-min_ja.handlebars @@ -2586,11 +2586,11 @@ function onSearchInputChanged() { var x = Q('SearchInput').value.toLowerCase().trim(); putstore('_search', x); var userSearch = null, ipSearch = null, groupSearch = null; - if (x.startsWith('user:')) { userSearch = x.substring(5); } - else if (x.startsWith('u:')) { userSearch = x.substring(2); } - else if (x.startsWith('ip:')) { ipSearch = x.substring(3); } - else if (x.startsWith('group:')) { groupSearch = x.substring(6); } - else if (x.startsWith('g:')) { groupSearch = x.substring(2); } + if (x.startsWith("user:")) { userSearch = x.substring(5); } + else if (x.startsWith("u:")) { userSearch = x.substring(2); } + else if (x.startsWith("ip:")) { ipSearch = x.substring(3); } + else if (x.startsWith("group:")) { groupSearch = x.substring(6); } + else if (x.startsWith("g:")) { groupSearch = x.substring(2); } if (x == '') { // No search @@ -2919,7 +2919,7 @@ }); // On right click open the context menu - contextmenu.on("開いた", function (evt) { + contextmenu.on('open', function (evt) { var feature = xxmap.map.forEachFeatureAtPixel(evt.pixel, function(ft, l){ return ft; }); xxmap.contextmenu.clear(); //Clear the context menu if (feature) { @@ -6656,8 +6656,8 @@ function p20editmeshfeatures() { if (xxdialogMode) return; var flags = (currentMesh.flags)?currentMesh.flags:0; - var x = '

'; - x += '

'; + var x = '

'; + x += '

'; setDialogMode(2, "デバイスグループ機能の編集", 3, p20editmeshfeaturesEx, x); } @@ -6885,10 +6885,10 @@ if (xxdialogMode) return false; var meshNotify = 0; if (userinfo.links && userinfo.links[currentMesh._id] && userinfo.links[currentMesh._id].notify) { meshNotify = userinfo.links[currentMesh._id].notify; } - var x = 'Notification settings must also be turned on in account settings.

'; - x += '
'; - x += '
'; - x += '
'; + var x = "Notification settings must also be turned on in account settings." + '

'; + x += '
'; + x += '
'; + x += '
'; setDialogMode(2, "通知設定", 3, p20editMeshNotifyEx, x); Q('p20notifyIntelDeviceConnect').checked = (meshNotify & 2); Q('p20notifyIntelDeviceDisconnect').checked = (meshNotify & 4); @@ -7452,7 +7452,7 @@ // Display the users using the sorted list var x = '', addHeader = true; - x += '
' + "名" + 'Groups' + nobreak("最終アクセス") + '' + "許可"; + x += '' + "名" + '' + "Groups" + '' + nobreak("最終アクセス") + '' + "許可"; // Online users for (var i in sortedUserIds) { @@ -7909,9 +7909,9 @@ // Show bottom buttons x = '
'; - if (deletePossible) x += 'Delete User'; + if (deletePossible) x += '' + "Delete User" + ''; x += '
'; - if (userinfo.siteadmin == 0xFFFFFFFF) x += 'Change Password'; + if (userinfo.siteadmin == 0xFFFFFFFF) x += '' + "パスワードを変更する" + ''; x += '

' QH('p30html3', x); @@ -8052,7 +8052,7 @@ ++count; date = new Date(date.getTime() - (1000 * 60 * 60 * 24)); // Substract one day } - QH('p30html2', '' + x + '
Day7 Day Login State
'); + QH('p30html2', '' + x + '
' + "日" + '' + "7 Day Login State" + '
'); } // @@ -8356,6 +8356,31 @@ }); } + var serverStatsStrings = { + ServerState: "Server State", + AgentErrorCounters: "Agent Error Counters", + UnknownGroup: "Unknown Group", + InvalidPKCSsignature: "Invalid PKCS signature", + InvalidRSAsiguature: "Invalid RSA siguature", + InvalidJSON: "Invalid JSON", + UnknownAction: "Unknown Action", + BadWebCertificate: "Bad Web Certificate", + BadSignature: "Bad Signature", + MaxSessionsReached: "Max Sessions Reached", + UnknownDeviceGroup: "Unknown Device Group", + InvalidDeviceGroupType: "Invalid Device Group Type", + DuplicateAgent: "Duplicate Agent", + ConnectedIntelAMT: "Connected Intel® AMT", + RelayErrors: "Relay Errors", + UserAccounts: "User Accounts", + DeviceGroups: "デバイスグループ", + AgentSessions: "Agent Sessions", + ConnectedUsers: "Connected Users", + UsersSessions: "Users Sessions", + RelaySessions: "中継セッション", + RelayCount: "Relay Count" + }; + var lastServerStats = null; function updateGeneralServerStats(message) { if (message != null) { lastServerStats = message; } else { message = lastServerStats; } @@ -8365,7 +8390,7 @@ if (typeof message.cpuavg == 'object') { var m = Math.min(message.cpuavg[0], 1); window.serverStatCpu.config.data.datasets[0].data = [m, 1 - m]; - QH('serverCpuChartText', '
CPU Load
' + (Math.round(message.cpuavg[0] * 100.0) / 100.0) + ', ' + (Math.round(message.cpuavg[1] * 100.0) / 100.0) + ', ' + (Math.round(message.cpuavg[2] * 100.0) / 100.0) + '
'); + QH('serverCpuChartText', '
' + "CPU Load" + '
' + (Math.round(message.cpuavg[0] * 100.0) / 100.0) + ', ' + (Math.round(message.cpuavg[1] * 100.0) / 100.0) + ', ' + (Math.round(message.cpuavg[2] * 100.0) / 100.0) + '
'); QS('serverCpuChartView')['display'] = 'inline-block'; window.serverStatCpu.update(); } @@ -8377,12 +8402,13 @@ } // Display all of the server values + // serverStatsStrings var x = '
'; if (typeof message.values == 'object') { for (var i in message.values) { - x += '
' + i + '
'; + x += '
' + (serverStatsStrings[i]?serverStatsStrings[i]:i) + '
'; for (var j in message.values[i]) { - x += '
' + j + '' + message.values[i][j] + '
'; + x += '
' + (serverStatsStrings[j]?serverStatsStrings[j]:j) + '' + message.values[i][j] + '
'; } } } @@ -8473,10 +8499,10 @@ data = { labels: [pastDate(0), timeAfter], datasets: [ - { label: 'External', data: [], backgroundColor: 'rgba(158, 151, 16, .1)', borderColor: 'rgb(158, 151, 16)', fill: true }, - { label: 'Heap Used', data: [], backgroundColor: 'rgba(16, 84, 158, .1)', borderColor: 'rgb(16, 84, 158)', fill: true }, - { label: 'Heap Total', data: [], backgroundColor: 'rgba(255, 99, 132, .1)', borderColor: 'rgb(255, 99, 132)', fill: true }, - { label: 'RSS', data: [], backgroundColor: 'rgba(39, 158, 16, .1)', borderColor: 'rgb(39, 158, 16)', fill: true } + { label: "External", data: [], backgroundColor: 'rgba(158, 151, 16, .1)', borderColor: 'rgb(158, 151, 16)', fill: true }, + { label: "Heap Used", data: [], backgroundColor: 'rgba(16, 84, 158, .1)', borderColor: 'rgb(16, 84, 158)', fill: true }, + { label: "Heap Total", data: [], backgroundColor: 'rgba(255, 99, 132, .1)', borderColor: 'rgb(255, 99, 132)', fill: true }, + { label: "RSS", data: [], backgroundColor: 'rgba(39, 158, 16, .1)', borderColor: 'rgb(39, 158, 16)', fill: true } ] }; for (var i = 0; i < serverTimelineStats.length; i++) { diff --git a/views/translations/default-min_nl.handlebars b/views/translations/default-min_nl.handlebars index 61e67db1..35588d6b 100644 --- a/views/translations/default-min_nl.handlebars +++ b/views/translations/default-min_nl.handlebars @@ -2586,11 +2586,11 @@ function onSearchInputChanged() { var x = Q('SearchInput').value.toLowerCase().trim(); putstore('_search', x); var userSearch = null, ipSearch = null, groupSearch = null; - if (x.startsWith('user:')) { userSearch = x.substring(5); } - else if (x.startsWith('u:')) { userSearch = x.substring(2); } - else if (x.startsWith('ip:')) { ipSearch = x.substring(3); } - else if (x.startsWith('group:')) { groupSearch = x.substring(6); } - else if (x.startsWith('g:')) { groupSearch = x.substring(2); } + if (x.startsWith("user:")) { userSearch = x.substring(5); } + else if (x.startsWith("u:")) { userSearch = x.substring(2); } + else if (x.startsWith("ip:")) { ipSearch = x.substring(3); } + else if (x.startsWith("group:")) { groupSearch = x.substring(6); } + else if (x.startsWith("g:")) { groupSearch = x.substring(2); } if (x == '') { // No search @@ -2919,7 +2919,7 @@ }); // On right click open the context menu - contextmenu.on("Open", function (evt) { + contextmenu.on('open', function (evt) { var feature = xxmap.map.forEachFeatureAtPixel(evt.pixel, function(ft, l){ return ft; }); xxmap.contextmenu.clear(); //Clear the context menu if (feature) { @@ -6656,8 +6656,8 @@ function p20editmeshfeatures() { if (xxdialogMode) return; var flags = (currentMesh.flags)?currentMesh.flags:0; - var x = '

'; - x += '

'; + var x = '

'; + x += '

'; setDialogMode(2, "Functies van apparaatgroep bewerken", 3, p20editmeshfeaturesEx, x); } @@ -6885,10 +6885,10 @@ if (xxdialogMode) return false; var meshNotify = 0; if (userinfo.links && userinfo.links[currentMesh._id] && userinfo.links[currentMesh._id].notify) { meshNotify = userinfo.links[currentMesh._id].notify; } - var x = 'Notification settings must also be turned on in account settings.

'; - x += '
'; - x += '
'; - x += '
'; + var x = "Notification settings must also be turned on in account settings." + '

'; + x += '
'; + x += '
'; + x += '
'; setDialogMode(2, "meldingsinstellingen", 3, p20editMeshNotifyEx, x); Q('p20notifyIntelDeviceConnect').checked = (meshNotify & 2); Q('p20notifyIntelDeviceDisconnect').checked = (meshNotify & 4); @@ -7452,7 +7452,7 @@ // Display the users using the sorted list var x = '', addHeader = true; - x += '
' + "Naam" + 'Groups' + nobreak("Laatste toegang") + '' + "machtigingen"; + x += '' + "Naam" + '' + "Groups" + '' + nobreak("Laatste toegang") + '' + "machtigingen"; // Online users for (var i in sortedUserIds) { @@ -7909,9 +7909,9 @@ // Show bottom buttons x = '
'; - if (deletePossible) x += 'Delete User'; + if (deletePossible) x += '' + "Delete User" + ''; x += '
'; - if (userinfo.siteadmin == 0xFFFFFFFF) x += 'Change Password'; + if (userinfo.siteadmin == 0xFFFFFFFF) x += '' + "Verander wachtwoord" + ''; x += '

' QH('p30html3', x); @@ -8052,7 +8052,7 @@ ++count; date = new Date(date.getTime() - (1000 * 60 * 60 * 24)); // Substract one day } - QH('p30html2', '' + x + '
Day7 Day Login State
'); + QH('p30html2', '' + x + '
' + "Dag" + '' + "7 Day Login State" + '
'); } // @@ -8356,6 +8356,31 @@ }); } + var serverStatsStrings = { + ServerState: "Server State", + AgentErrorCounters: "Agent Error Counters", + UnknownGroup: "Unknown Group", + InvalidPKCSsignature: "Invalid PKCS signature", + InvalidRSAsiguature: "Invalid RSA siguature", + InvalidJSON: "Invalid JSON", + UnknownAction: "Unknown Action", + BadWebCertificate: "Bad Web Certificate", + BadSignature: "Bad Signature", + MaxSessionsReached: "Max Sessions Reached", + UnknownDeviceGroup: "Unknown Device Group", + InvalidDeviceGroupType: "Invalid Device Group Type", + DuplicateAgent: "Duplicate Agent", + ConnectedIntelAMT: "Connected Intel® AMT", + RelayErrors: "Relay Errors", + UserAccounts: "User Accounts", + DeviceGroups: "Apparaatgroepen", + AgentSessions: "Agent Sessions", + ConnectedUsers: "Connected Users", + UsersSessions: "Users Sessions", + RelaySessions: "Relay Sessies", + RelayCount: "Relay Count" + }; + var lastServerStats = null; function updateGeneralServerStats(message) { if (message != null) { lastServerStats = message; } else { message = lastServerStats; } @@ -8365,7 +8390,7 @@ if (typeof message.cpuavg == 'object') { var m = Math.min(message.cpuavg[0], 1); window.serverStatCpu.config.data.datasets[0].data = [m, 1 - m]; - QH('serverCpuChartText', '
CPU Load
' + (Math.round(message.cpuavg[0] * 100.0) / 100.0) + ', ' + (Math.round(message.cpuavg[1] * 100.0) / 100.0) + ', ' + (Math.round(message.cpuavg[2] * 100.0) / 100.0) + '
'); + QH('serverCpuChartText', '
' + "CPU Load" + '
' + (Math.round(message.cpuavg[0] * 100.0) / 100.0) + ', ' + (Math.round(message.cpuavg[1] * 100.0) / 100.0) + ', ' + (Math.round(message.cpuavg[2] * 100.0) / 100.0) + '
'); QS('serverCpuChartView')['display'] = 'inline-block'; window.serverStatCpu.update(); } @@ -8377,12 +8402,13 @@ } // Display all of the server values + // serverStatsStrings var x = '
'; if (typeof message.values == 'object') { for (var i in message.values) { - x += '
' + i + '
'; + x += '
' + (serverStatsStrings[i]?serverStatsStrings[i]:i) + '
'; for (var j in message.values[i]) { - x += '
' + j + '' + message.values[i][j] + '
'; + x += '
' + (serverStatsStrings[j]?serverStatsStrings[j]:j) + '' + message.values[i][j] + '
'; } } } @@ -8473,10 +8499,10 @@ data = { labels: [pastDate(0), timeAfter], datasets: [ - { label: 'External', data: [], backgroundColor: 'rgba(158, 151, 16, .1)', borderColor: 'rgb(158, 151, 16)', fill: true }, - { label: 'Heap Used', data: [], backgroundColor: 'rgba(16, 84, 158, .1)', borderColor: 'rgb(16, 84, 158)', fill: true }, - { label: 'Heap Total', data: [], backgroundColor: 'rgba(255, 99, 132, .1)', borderColor: 'rgb(255, 99, 132)', fill: true }, - { label: 'RSS', data: [], backgroundColor: 'rgba(39, 158, 16, .1)', borderColor: 'rgb(39, 158, 16)', fill: true } + { label: "External", data: [], backgroundColor: 'rgba(158, 151, 16, .1)', borderColor: 'rgb(158, 151, 16)', fill: true }, + { label: "Heap Used", data: [], backgroundColor: 'rgba(16, 84, 158, .1)', borderColor: 'rgb(16, 84, 158)', fill: true }, + { label: "Heap Total", data: [], backgroundColor: 'rgba(255, 99, 132, .1)', borderColor: 'rgb(255, 99, 132)', fill: true }, + { label: "RSS", data: [], backgroundColor: 'rgba(39, 158, 16, .1)', borderColor: 'rgb(39, 158, 16)', fill: true } ] }; for (var i = 0; i < serverTimelineStats.length; i++) { diff --git a/views/translations/default-min_pt.handlebars b/views/translations/default-min_pt.handlebars index 5c0ea94e..e5256e2d 100644 --- a/views/translations/default-min_pt.handlebars +++ b/views/translations/default-min_pt.handlebars @@ -2586,11 +2586,11 @@ function onSearchInputChanged() { var x = Q('SearchInput').value.toLowerCase().trim(); putstore('_search', x); var userSearch = null, ipSearch = null, groupSearch = null; - if (x.startsWith('user:')) { userSearch = x.substring(5); } - else if (x.startsWith('u:')) { userSearch = x.substring(2); } - else if (x.startsWith('ip:')) { ipSearch = x.substring(3); } - else if (x.startsWith('group:')) { groupSearch = x.substring(6); } - else if (x.startsWith('g:')) { groupSearch = x.substring(2); } + if (x.startsWith("user:")) { userSearch = x.substring(5); } + else if (x.startsWith("u:")) { userSearch = x.substring(2); } + else if (x.startsWith("ip:")) { ipSearch = x.substring(3); } + else if (x.startsWith("group:")) { groupSearch = x.substring(6); } + else if (x.startsWith("g:")) { groupSearch = x.substring(2); } if (x == '') { // No search @@ -2919,7 +2919,7 @@ }); // On right click open the context menu - contextmenu.on("abrir", function (evt) { + contextmenu.on('open', function (evt) { var feature = xxmap.map.forEachFeatureAtPixel(evt.pixel, function(ft, l){ return ft; }); xxmap.contextmenu.clear(); //Clear the context menu if (feature) { @@ -6656,8 +6656,8 @@ function p20editmeshfeatures() { if (xxdialogMode) return; var flags = (currentMesh.flags)?currentMesh.flags:0; - var x = '

'; - x += '

'; + var x = '

'; + x += '

'; setDialogMode(2, "Editar recursos do grupo de dispositivos", 3, p20editmeshfeaturesEx, x); } @@ -6885,10 +6885,10 @@ if (xxdialogMode) return false; var meshNotify = 0; if (userinfo.links && userinfo.links[currentMesh._id] && userinfo.links[currentMesh._id].notify) { meshNotify = userinfo.links[currentMesh._id].notify; } - var x = 'Notification settings must also be turned on in account settings.

'; - x += '
'; - x += '
'; - x += '
'; + var x = "Notification settings must also be turned on in account settings." + '

'; + x += '
'; + x += '
'; + x += '
'; setDialogMode(2, "Configurações de notificação", 3, p20editMeshNotifyEx, x); Q('p20notifyIntelDeviceConnect').checked = (meshNotify & 2); Q('p20notifyIntelDeviceDisconnect').checked = (meshNotify & 4); @@ -7452,7 +7452,7 @@ // Display the users using the sorted list var x = '', addHeader = true; - x += '
' + "Nome" + 'Groups' + nobreak("Último acesso") + '' + "Permissões"; + x += '' + "Nome" + '' + "Groups" + '' + nobreak("Último acesso") + '' + "Permissões"; // Online users for (var i in sortedUserIds) { @@ -7909,9 +7909,9 @@ // Show bottom buttons x = '
'; - if (deletePossible) x += 'Delete User'; + if (deletePossible) x += '' + "Delete User" + ''; x += '
'; - if (userinfo.siteadmin == 0xFFFFFFFF) x += 'Change Password'; + if (userinfo.siteadmin == 0xFFFFFFFF) x += '' + "Mudar senha" + ''; x += '

' QH('p30html3', x); @@ -8052,7 +8052,7 @@ ++count; date = new Date(date.getTime() - (1000 * 60 * 60 * 24)); // Substract one day } - QH('p30html2', '' + x + '
Day7 Day Login State
'); + QH('p30html2', '' + x + '
' + "Dia" + '' + "7 Day Login State" + '
'); } // @@ -8356,6 +8356,31 @@ }); } + var serverStatsStrings = { + ServerState: "Server State", + AgentErrorCounters: "Agent Error Counters", + UnknownGroup: "Unknown Group", + InvalidPKCSsignature: "Invalid PKCS signature", + InvalidRSAsiguature: "Invalid RSA siguature", + InvalidJSON: "Invalid JSON", + UnknownAction: "Unknown Action", + BadWebCertificate: "Bad Web Certificate", + BadSignature: "Bad Signature", + MaxSessionsReached: "Max Sessions Reached", + UnknownDeviceGroup: "Unknown Device Group", + InvalidDeviceGroupType: "Invalid Device Group Type", + DuplicateAgent: "Duplicate Agent", + ConnectedIntelAMT: "Connected Intel® AMT", + RelayErrors: "Relay Errors", + UserAccounts: "User Accounts", + DeviceGroups: "Grupos de dispositivos", + AgentSessions: "Agent Sessions", + ConnectedUsers: "Connected Users", + UsersSessions: "Users Sessions", + RelaySessions: "Retransmissão de sessão ", + RelayCount: "Relay Count" + }; + var lastServerStats = null; function updateGeneralServerStats(message) { if (message != null) { lastServerStats = message; } else { message = lastServerStats; } @@ -8365,7 +8390,7 @@ if (typeof message.cpuavg == 'object') { var m = Math.min(message.cpuavg[0], 1); window.serverStatCpu.config.data.datasets[0].data = [m, 1 - m]; - QH('serverCpuChartText', '
CPU Load
' + (Math.round(message.cpuavg[0] * 100.0) / 100.0) + ', ' + (Math.round(message.cpuavg[1] * 100.0) / 100.0) + ', ' + (Math.round(message.cpuavg[2] * 100.0) / 100.0) + '
'); + QH('serverCpuChartText', '
' + "CPU Load" + '
' + (Math.round(message.cpuavg[0] * 100.0) / 100.0) + ', ' + (Math.round(message.cpuavg[1] * 100.0) / 100.0) + ', ' + (Math.round(message.cpuavg[2] * 100.0) / 100.0) + '
'); QS('serverCpuChartView')['display'] = 'inline-block'; window.serverStatCpu.update(); } @@ -8377,12 +8402,13 @@ } // Display all of the server values + // serverStatsStrings var x = '
'; if (typeof message.values == 'object') { for (var i in message.values) { - x += '
' + i + '
'; + x += '
' + (serverStatsStrings[i]?serverStatsStrings[i]:i) + '
'; for (var j in message.values[i]) { - x += '
' + j + '' + message.values[i][j] + '
'; + x += '
' + (serverStatsStrings[j]?serverStatsStrings[j]:j) + '' + message.values[i][j] + '
'; } } } @@ -8473,10 +8499,10 @@ data = { labels: [pastDate(0), timeAfter], datasets: [ - { label: 'External', data: [], backgroundColor: 'rgba(158, 151, 16, .1)', borderColor: 'rgb(158, 151, 16)', fill: true }, - { label: 'Heap Used', data: [], backgroundColor: 'rgba(16, 84, 158, .1)', borderColor: 'rgb(16, 84, 158)', fill: true }, - { label: 'Heap Total', data: [], backgroundColor: 'rgba(255, 99, 132, .1)', borderColor: 'rgb(255, 99, 132)', fill: true }, - { label: 'RSS', data: [], backgroundColor: 'rgba(39, 158, 16, .1)', borderColor: 'rgb(39, 158, 16)', fill: true } + { label: "External", data: [], backgroundColor: 'rgba(158, 151, 16, .1)', borderColor: 'rgb(158, 151, 16)', fill: true }, + { label: "Heap Used", data: [], backgroundColor: 'rgba(16, 84, 158, .1)', borderColor: 'rgb(16, 84, 158)', fill: true }, + { label: "Heap Total", data: [], backgroundColor: 'rgba(255, 99, 132, .1)', borderColor: 'rgb(255, 99, 132)', fill: true }, + { label: "RSS", data: [], backgroundColor: 'rgba(39, 158, 16, .1)', borderColor: 'rgb(39, 158, 16)', fill: true } ] }; for (var i = 0; i < serverTimelineStats.length; i++) { diff --git a/views/translations/default_cs.handlebars b/views/translations/default_cs.handlebars index c4e36faf..3a5042ed 100644 --- a/views/translations/default_cs.handlebars +++ b/views/translations/default_cs.handlebars @@ -3638,11 +3638,11 @@ function onSearchInputChanged() { var x = Q('SearchInput').value.toLowerCase().trim(); putstore('_search', x); var userSearch = null, ipSearch = null, groupSearch = null; - if (x.startsWith('user:')) { userSearch = x.substring(5); } - else if (x.startsWith('u:')) { userSearch = x.substring(2); } - else if (x.startsWith('ip:')) { ipSearch = x.substring(3); } - else if (x.startsWith('group:')) { groupSearch = x.substring(6); } - else if (x.startsWith('g:')) { groupSearch = x.substring(2); } + if (x.startsWith("user:")) { userSearch = x.substring(5); } + else if (x.startsWith("u:")) { userSearch = x.substring(2); } + else if (x.startsWith("ip:")) { ipSearch = x.substring(3); } + else if (x.startsWith("group:")) { groupSearch = x.substring(6); } + else if (x.startsWith("g:")) { groupSearch = x.substring(2); } if (x == '') { // No search @@ -3971,7 +3971,7 @@ }); // On right click open the context menu - contextmenu.on("otevřít", function (evt) { + contextmenu.on('open', function (evt) { var feature = xxmap.map.forEachFeatureAtPixel(evt.pixel, function(ft, l){ return ft; }); xxmap.contextmenu.clear(); //Clear the context menu if (feature) { @@ -7708,8 +7708,8 @@ function p20editmeshfeatures() { if (xxdialogMode) return; var flags = (currentMesh.flags)?currentMesh.flags:0; - var x = '

'; - x += '

'; + var x = '

'; + x += '

'; setDialogMode(2, "Upravit vlastnosti skupiny zařízení", 3, p20editmeshfeaturesEx, x); } @@ -7937,10 +7937,10 @@ if (xxdialogMode) return false; var meshNotify = 0; if (userinfo.links && userinfo.links[currentMesh._id] && userinfo.links[currentMesh._id].notify) { meshNotify = userinfo.links[currentMesh._id].notify; } - var x = 'Notification settings must also be turned on in account settings.

'; - x += '
'; - x += '
'; - x += '
'; + var x = "Notification settings must also be turned on in account settings." + '

'; + x += '
'; + x += '
'; + x += '
'; setDialogMode(2, "Nastavení notifikací", 3, p20editMeshNotifyEx, x); Q('p20notifyIntelDeviceConnect').checked = (meshNotify & 2); Q('p20notifyIntelDeviceDisconnect').checked = (meshNotify & 4); @@ -8504,7 +8504,7 @@ // Display the users using the sorted list var x = '', addHeader = true; - x += '
' + "Jméno" + 'Groups' + nobreak("Poslední přístup") + '' + "Práva"; + x += '' + "Jméno" + '' + "Groups" + '' + nobreak("Poslední přístup") + '' + "Práva"; // Online users for (var i in sortedUserIds) { @@ -8961,9 +8961,9 @@ // Show bottom buttons x = '
'; - if (deletePossible) x += 'Delete User'; + if (deletePossible) x += '' + "Delete User" + ''; x += '
'; - if (userinfo.siteadmin == 0xFFFFFFFF) x += 'Change Password'; + if (userinfo.siteadmin == 0xFFFFFFFF) x += '' + "Změnit heslo" + ''; x += '

' QH('p30html3', x); @@ -9104,7 +9104,7 @@ ++count; date = new Date(date.getTime() - (1000 * 60 * 60 * 24)); // Substract one day } - QH('p30html2', '' + x + '
Day7 Day Login State
'); + QH('p30html2', '' + x + '
' + "Den" + '' + "7 Day Login State" + '
'); } // @@ -9408,6 +9408,31 @@ }); } + var serverStatsStrings = { + ServerState: "Server State", + AgentErrorCounters: "Agent Error Counters", + UnknownGroup: "Unknown Group", + InvalidPKCSsignature: "Invalid PKCS signature", + InvalidRSAsiguature: "Invalid RSA siguature", + InvalidJSON: "Invalid JSON", + UnknownAction: "Unknown Action", + BadWebCertificate: "Bad Web Certificate", + BadSignature: "Bad Signature", + MaxSessionsReached: "Max Sessions Reached", + UnknownDeviceGroup: "Unknown Device Group", + InvalidDeviceGroupType: "Invalid Device Group Type", + DuplicateAgent: "Duplicate Agent", + ConnectedIntelAMT: "Connected Intel® AMT", + RelayErrors: "Relay Errors", + UserAccounts: "User Accounts", + DeviceGroups: "Skupiny zařízení", + AgentSessions: "Agent Sessions", + ConnectedUsers: "Connected Users", + UsersSessions: "Users Sessions", + RelaySessions: "Přesměrované relace", + RelayCount: "Relay Count" + }; + var lastServerStats = null; function updateGeneralServerStats(message) { if (message != null) { lastServerStats = message; } else { message = lastServerStats; } @@ -9417,7 +9442,7 @@ if (typeof message.cpuavg == 'object') { var m = Math.min(message.cpuavg[0], 1); window.serverStatCpu.config.data.datasets[0].data = [m, 1 - m]; - QH('serverCpuChartText', '
CPU Load
' + (Math.round(message.cpuavg[0] * 100.0) / 100.0) + ', ' + (Math.round(message.cpuavg[1] * 100.0) / 100.0) + ', ' + (Math.round(message.cpuavg[2] * 100.0) / 100.0) + '
'); + QH('serverCpuChartText', '
' + "CPU Load" + '
' + (Math.round(message.cpuavg[0] * 100.0) / 100.0) + ', ' + (Math.round(message.cpuavg[1] * 100.0) / 100.0) + ', ' + (Math.round(message.cpuavg[2] * 100.0) / 100.0) + '
'); QS('serverCpuChartView')['display'] = 'inline-block'; window.serverStatCpu.update(); } @@ -9429,12 +9454,13 @@ } // Display all of the server values + // serverStatsStrings var x = '
'; if (typeof message.values == 'object') { for (var i in message.values) { - x += '
' + i + '
'; + x += '
' + (serverStatsStrings[i]?serverStatsStrings[i]:i) + '
'; for (var j in message.values[i]) { - x += '
' + j + '' + message.values[i][j] + '
'; + x += '
' + (serverStatsStrings[j]?serverStatsStrings[j]:j) + '' + message.values[i][j] + '
'; } } } @@ -9525,10 +9551,10 @@ data = { labels: [pastDate(0), timeAfter], datasets: [ - { label: 'External', data: [], backgroundColor: 'rgba(158, 151, 16, .1)', borderColor: 'rgb(158, 151, 16)', fill: true }, - { label: 'Heap Used', data: [], backgroundColor: 'rgba(16, 84, 158, .1)', borderColor: 'rgb(16, 84, 158)', fill: true }, - { label: 'Heap Total', data: [], backgroundColor: 'rgba(255, 99, 132, .1)', borderColor: 'rgb(255, 99, 132)', fill: true }, - { label: 'RSS', data: [], backgroundColor: 'rgba(39, 158, 16, .1)', borderColor: 'rgb(39, 158, 16)', fill: true } + { label: "External", data: [], backgroundColor: 'rgba(158, 151, 16, .1)', borderColor: 'rgb(158, 151, 16)', fill: true }, + { label: "Heap Used", data: [], backgroundColor: 'rgba(16, 84, 158, .1)', borderColor: 'rgb(16, 84, 158)', fill: true }, + { label: "Heap Total", data: [], backgroundColor: 'rgba(255, 99, 132, .1)', borderColor: 'rgb(255, 99, 132)', fill: true }, + { label: "RSS", data: [], backgroundColor: 'rgba(39, 158, 16, .1)', borderColor: 'rgb(39, 158, 16)', fill: true } ] }; for (var i = 0; i < serverTimelineStats.length; i++) { diff --git a/views/translations/default_fr.handlebars b/views/translations/default_fr.handlebars index 564496ba..2f67c238 100644 --- a/views/translations/default_fr.handlebars +++ b/views/translations/default_fr.handlebars @@ -3638,11 +3638,11 @@ function onSearchInputChanged() { var x = Q('SearchInput').value.toLowerCase().trim(); putstore('_search', x); var userSearch = null, ipSearch = null, groupSearch = null; - if (x.startsWith('user:')) { userSearch = x.substring(5); } - else if (x.startsWith('u:')) { userSearch = x.substring(2); } - else if (x.startsWith('ip:')) { ipSearch = x.substring(3); } - else if (x.startsWith('group:')) { groupSearch = x.substring(6); } - else if (x.startsWith('g:')) { groupSearch = x.substring(2); } + if (x.startsWith("user:")) { userSearch = x.substring(5); } + else if (x.startsWith("u:")) { userSearch = x.substring(2); } + else if (x.startsWith("ip:")) { ipSearch = x.substring(3); } + else if (x.startsWith("group:")) { groupSearch = x.substring(6); } + else if (x.startsWith("g:")) { groupSearch = x.substring(2); } if (x == '') { // No search @@ -3971,7 +3971,7 @@ }); // On right click open the context menu - contextmenu.on("open", function (evt) { + contextmenu.on('open', function (evt) { var feature = xxmap.map.forEachFeatureAtPixel(evt.pixel, function(ft, l){ return ft; }); xxmap.contextmenu.clear(); //Clear the context menu if (feature) { @@ -7708,8 +7708,8 @@ function p20editmeshfeatures() { if (xxdialogMode) return; var flags = (currentMesh.flags)?currentMesh.flags:0; - var x = '

'; - x += '

'; + var x = '

'; + x += '

'; setDialogMode(2, "Edit Device Group Features", 3, p20editmeshfeaturesEx, x); } @@ -7937,10 +7937,10 @@ if (xxdialogMode) return false; var meshNotify = 0; if (userinfo.links && userinfo.links[currentMesh._id] && userinfo.links[currentMesh._id].notify) { meshNotify = userinfo.links[currentMesh._id].notify; } - var x = 'Notification settings must also be turned on in account settings.

'; - x += '
'; - x += '
'; - x += '
'; + var x = "Notification settings must also be turned on in account settings." + '

'; + x += '
'; + x += '
'; + x += '
'; setDialogMode(2, "Notification Settings", 3, p20editMeshNotifyEx, x); Q('p20notifyIntelDeviceConnect').checked = (meshNotify & 2); Q('p20notifyIntelDeviceDisconnect').checked = (meshNotify & 4); @@ -8504,7 +8504,7 @@ // Display the users using the sorted list var x = '', addHeader = true; - x += '
' + "Nom" + 'Groups' + nobreak("Dernier accès") + '' + "Permissions"; + x += '' + "Nom" + '' + "Groups" + '' + nobreak("Dernier accès") + '' + "Permissions"; // Online users for (var i in sortedUserIds) { @@ -8961,9 +8961,9 @@ // Show bottom buttons x = '
'; - if (deletePossible) x += 'Delete User'; + if (deletePossible) x += '' + "Delete User" + ''; x += '
'; - if (userinfo.siteadmin == 0xFFFFFFFF) x += 'Change Password'; + if (userinfo.siteadmin == 0xFFFFFFFF) x += '' + "Change Password" + ''; x += '

' QH('p30html3', x); @@ -9104,7 +9104,7 @@ ++count; date = new Date(date.getTime() - (1000 * 60 * 60 * 24)); // Substract one day } - QH('p30html2', '' + x + '
Day7 Day Login State
'); + QH('p30html2', '' + x + '
' + "Day" + '' + "7 Day Login State" + '
'); } // @@ -9408,6 +9408,31 @@ }); } + var serverStatsStrings = { + ServerState: "Server State", + AgentErrorCounters: "Agent Error Counters", + UnknownGroup: "Unknown Group", + InvalidPKCSsignature: "Invalid PKCS signature", + InvalidRSAsiguature: "Invalid RSA siguature", + InvalidJSON: "Invalid JSON", + UnknownAction: "Unknown Action", + BadWebCertificate: "Bad Web Certificate", + BadSignature: "Bad Signature", + MaxSessionsReached: "Max Sessions Reached", + UnknownDeviceGroup: "Unknown Device Group", + InvalidDeviceGroupType: "Invalid Device Group Type", + DuplicateAgent: "Duplicate Agent", + ConnectedIntelAMT: "Connected Intel® AMT", + RelayErrors: "Relay Errors", + UserAccounts: "User Accounts", + DeviceGroups: "Device Groups", + AgentSessions: "Agent Sessions", + ConnectedUsers: "Connected Users", + UsersSessions: "Users Sessions", + RelaySessions: "Relay Sessions", + RelayCount: "Relay Count" + }; + var lastServerStats = null; function updateGeneralServerStats(message) { if (message != null) { lastServerStats = message; } else { message = lastServerStats; } @@ -9417,7 +9442,7 @@ if (typeof message.cpuavg == 'object') { var m = Math.min(message.cpuavg[0], 1); window.serverStatCpu.config.data.datasets[0].data = [m, 1 - m]; - QH('serverCpuChartText', '
CPU Load
' + (Math.round(message.cpuavg[0] * 100.0) / 100.0) + ', ' + (Math.round(message.cpuavg[1] * 100.0) / 100.0) + ', ' + (Math.round(message.cpuavg[2] * 100.0) / 100.0) + '
'); + QH('serverCpuChartText', '
' + "CPU Load" + '
' + (Math.round(message.cpuavg[0] * 100.0) / 100.0) + ', ' + (Math.round(message.cpuavg[1] * 100.0) / 100.0) + ', ' + (Math.round(message.cpuavg[2] * 100.0) / 100.0) + '
'); QS('serverCpuChartView')['display'] = 'inline-block'; window.serverStatCpu.update(); } @@ -9429,12 +9454,13 @@ } // Display all of the server values + // serverStatsStrings var x = '
'; if (typeof message.values == 'object') { for (var i in message.values) { - x += '
' + i + '
'; + x += '
' + (serverStatsStrings[i]?serverStatsStrings[i]:i) + '
'; for (var j in message.values[i]) { - x += '
' + j + '' + message.values[i][j] + '
'; + x += '
' + (serverStatsStrings[j]?serverStatsStrings[j]:j) + '' + message.values[i][j] + '
'; } } } @@ -9525,10 +9551,10 @@ data = { labels: [pastDate(0), timeAfter], datasets: [ - { label: 'External', data: [], backgroundColor: 'rgba(158, 151, 16, .1)', borderColor: 'rgb(158, 151, 16)', fill: true }, - { label: 'Heap Used', data: [], backgroundColor: 'rgba(16, 84, 158, .1)', borderColor: 'rgb(16, 84, 158)', fill: true }, - { label: 'Heap Total', data: [], backgroundColor: 'rgba(255, 99, 132, .1)', borderColor: 'rgb(255, 99, 132)', fill: true }, - { label: 'RSS', data: [], backgroundColor: 'rgba(39, 158, 16, .1)', borderColor: 'rgb(39, 158, 16)', fill: true } + { label: "External", data: [], backgroundColor: 'rgba(158, 151, 16, .1)', borderColor: 'rgb(158, 151, 16)', fill: true }, + { label: "Heap Used", data: [], backgroundColor: 'rgba(16, 84, 158, .1)', borderColor: 'rgb(16, 84, 158)', fill: true }, + { label: "Heap Total", data: [], backgroundColor: 'rgba(255, 99, 132, .1)', borderColor: 'rgb(255, 99, 132)', fill: true }, + { label: "RSS", data: [], backgroundColor: 'rgba(39, 158, 16, .1)', borderColor: 'rgb(39, 158, 16)', fill: true } ] }; for (var i = 0; i < serverTimelineStats.length; i++) { diff --git a/views/translations/default_ja.handlebars b/views/translations/default_ja.handlebars index db72fd7b..85aa77a9 100644 --- a/views/translations/default_ja.handlebars +++ b/views/translations/default_ja.handlebars @@ -3638,11 +3638,11 @@ function onSearchInputChanged() { var x = Q('SearchInput').value.toLowerCase().trim(); putstore('_search', x); var userSearch = null, ipSearch = null, groupSearch = null; - if (x.startsWith('user:')) { userSearch = x.substring(5); } - else if (x.startsWith('u:')) { userSearch = x.substring(2); } - else if (x.startsWith('ip:')) { ipSearch = x.substring(3); } - else if (x.startsWith('group:')) { groupSearch = x.substring(6); } - else if (x.startsWith('g:')) { groupSearch = x.substring(2); } + if (x.startsWith("user:")) { userSearch = x.substring(5); } + else if (x.startsWith("u:")) { userSearch = x.substring(2); } + else if (x.startsWith("ip:")) { ipSearch = x.substring(3); } + else if (x.startsWith("group:")) { groupSearch = x.substring(6); } + else if (x.startsWith("g:")) { groupSearch = x.substring(2); } if (x == '') { // No search @@ -3971,7 +3971,7 @@ }); // On right click open the context menu - contextmenu.on("開いた", function (evt) { + contextmenu.on('open', function (evt) { var feature = xxmap.map.forEachFeatureAtPixel(evt.pixel, function(ft, l){ return ft; }); xxmap.contextmenu.clear(); //Clear the context menu if (feature) { @@ -7708,8 +7708,8 @@ function p20editmeshfeatures() { if (xxdialogMode) return; var flags = (currentMesh.flags)?currentMesh.flags:0; - var x = '

'; - x += '

'; + var x = '

'; + x += '

'; setDialogMode(2, "デバイスグループ機能の編集", 3, p20editmeshfeaturesEx, x); } @@ -7937,10 +7937,10 @@ if (xxdialogMode) return false; var meshNotify = 0; if (userinfo.links && userinfo.links[currentMesh._id] && userinfo.links[currentMesh._id].notify) { meshNotify = userinfo.links[currentMesh._id].notify; } - var x = 'Notification settings must also be turned on in account settings.

'; - x += '
'; - x += '
'; - x += '
'; + var x = "Notification settings must also be turned on in account settings." + '

'; + x += '
'; + x += '
'; + x += '
'; setDialogMode(2, "通知設定", 3, p20editMeshNotifyEx, x); Q('p20notifyIntelDeviceConnect').checked = (meshNotify & 2); Q('p20notifyIntelDeviceDisconnect').checked = (meshNotify & 4); @@ -8504,7 +8504,7 @@ // Display the users using the sorted list var x = '', addHeader = true; - x += '
' + "名" + 'Groups' + nobreak("最終アクセス") + '' + "許可"; + x += '' + "名" + '' + "Groups" + '' + nobreak("最終アクセス") + '' + "許可"; // Online users for (var i in sortedUserIds) { @@ -8961,9 +8961,9 @@ // Show bottom buttons x = '
'; - if (deletePossible) x += 'Delete User'; + if (deletePossible) x += '' + "Delete User" + ''; x += '
'; - if (userinfo.siteadmin == 0xFFFFFFFF) x += 'Change Password'; + if (userinfo.siteadmin == 0xFFFFFFFF) x += '' + "パスワードを変更する" + ''; x += '

' QH('p30html3', x); @@ -9104,7 +9104,7 @@ ++count; date = new Date(date.getTime() - (1000 * 60 * 60 * 24)); // Substract one day } - QH('p30html2', '' + x + '
Day7 Day Login State
'); + QH('p30html2', '' + x + '
' + "日" + '' + "7 Day Login State" + '
'); } // @@ -9408,6 +9408,31 @@ }); } + var serverStatsStrings = { + ServerState: "Server State", + AgentErrorCounters: "Agent Error Counters", + UnknownGroup: "Unknown Group", + InvalidPKCSsignature: "Invalid PKCS signature", + InvalidRSAsiguature: "Invalid RSA siguature", + InvalidJSON: "Invalid JSON", + UnknownAction: "Unknown Action", + BadWebCertificate: "Bad Web Certificate", + BadSignature: "Bad Signature", + MaxSessionsReached: "Max Sessions Reached", + UnknownDeviceGroup: "Unknown Device Group", + InvalidDeviceGroupType: "Invalid Device Group Type", + DuplicateAgent: "Duplicate Agent", + ConnectedIntelAMT: "Connected Intel® AMT", + RelayErrors: "Relay Errors", + UserAccounts: "User Accounts", + DeviceGroups: "デバイスグループ", + AgentSessions: "Agent Sessions", + ConnectedUsers: "Connected Users", + UsersSessions: "Users Sessions", + RelaySessions: "中継セッション", + RelayCount: "Relay Count" + }; + var lastServerStats = null; function updateGeneralServerStats(message) { if (message != null) { lastServerStats = message; } else { message = lastServerStats; } @@ -9417,7 +9442,7 @@ if (typeof message.cpuavg == 'object') { var m = Math.min(message.cpuavg[0], 1); window.serverStatCpu.config.data.datasets[0].data = [m, 1 - m]; - QH('serverCpuChartText', '
CPU Load
' + (Math.round(message.cpuavg[0] * 100.0) / 100.0) + ', ' + (Math.round(message.cpuavg[1] * 100.0) / 100.0) + ', ' + (Math.round(message.cpuavg[2] * 100.0) / 100.0) + '
'); + QH('serverCpuChartText', '
' + "CPU Load" + '
' + (Math.round(message.cpuavg[0] * 100.0) / 100.0) + ', ' + (Math.round(message.cpuavg[1] * 100.0) / 100.0) + ', ' + (Math.round(message.cpuavg[2] * 100.0) / 100.0) + '
'); QS('serverCpuChartView')['display'] = 'inline-block'; window.serverStatCpu.update(); } @@ -9429,12 +9454,13 @@ } // Display all of the server values + // serverStatsStrings var x = '
'; if (typeof message.values == 'object') { for (var i in message.values) { - x += '
' + i + '
'; + x += '
' + (serverStatsStrings[i]?serverStatsStrings[i]:i) + '
'; for (var j in message.values[i]) { - x += '
' + j + '' + message.values[i][j] + '
'; + x += '
' + (serverStatsStrings[j]?serverStatsStrings[j]:j) + '' + message.values[i][j] + '
'; } } } @@ -9525,10 +9551,10 @@ data = { labels: [pastDate(0), timeAfter], datasets: [ - { label: 'External', data: [], backgroundColor: 'rgba(158, 151, 16, .1)', borderColor: 'rgb(158, 151, 16)', fill: true }, - { label: 'Heap Used', data: [], backgroundColor: 'rgba(16, 84, 158, .1)', borderColor: 'rgb(16, 84, 158)', fill: true }, - { label: 'Heap Total', data: [], backgroundColor: 'rgba(255, 99, 132, .1)', borderColor: 'rgb(255, 99, 132)', fill: true }, - { label: 'RSS', data: [], backgroundColor: 'rgba(39, 158, 16, .1)', borderColor: 'rgb(39, 158, 16)', fill: true } + { label: "External", data: [], backgroundColor: 'rgba(158, 151, 16, .1)', borderColor: 'rgb(158, 151, 16)', fill: true }, + { label: "Heap Used", data: [], backgroundColor: 'rgba(16, 84, 158, .1)', borderColor: 'rgb(16, 84, 158)', fill: true }, + { label: "Heap Total", data: [], backgroundColor: 'rgba(255, 99, 132, .1)', borderColor: 'rgb(255, 99, 132)', fill: true }, + { label: "RSS", data: [], backgroundColor: 'rgba(39, 158, 16, .1)', borderColor: 'rgb(39, 158, 16)', fill: true } ] }; for (var i = 0; i < serverTimelineStats.length; i++) { diff --git a/views/translations/default_nl.handlebars b/views/translations/default_nl.handlebars index 5ca4babf..a110aab2 100644 --- a/views/translations/default_nl.handlebars +++ b/views/translations/default_nl.handlebars @@ -3638,11 +3638,11 @@ function onSearchInputChanged() { var x = Q('SearchInput').value.toLowerCase().trim(); putstore('_search', x); var userSearch = null, ipSearch = null, groupSearch = null; - if (x.startsWith('user:')) { userSearch = x.substring(5); } - else if (x.startsWith('u:')) { userSearch = x.substring(2); } - else if (x.startsWith('ip:')) { ipSearch = x.substring(3); } - else if (x.startsWith('group:')) { groupSearch = x.substring(6); } - else if (x.startsWith('g:')) { groupSearch = x.substring(2); } + if (x.startsWith("user:")) { userSearch = x.substring(5); } + else if (x.startsWith("u:")) { userSearch = x.substring(2); } + else if (x.startsWith("ip:")) { ipSearch = x.substring(3); } + else if (x.startsWith("group:")) { groupSearch = x.substring(6); } + else if (x.startsWith("g:")) { groupSearch = x.substring(2); } if (x == '') { // No search @@ -3971,7 +3971,7 @@ }); // On right click open the context menu - contextmenu.on("Open", function (evt) { + contextmenu.on('open', function (evt) { var feature = xxmap.map.forEachFeatureAtPixel(evt.pixel, function(ft, l){ return ft; }); xxmap.contextmenu.clear(); //Clear the context menu if (feature) { @@ -7708,8 +7708,8 @@ function p20editmeshfeatures() { if (xxdialogMode) return; var flags = (currentMesh.flags)?currentMesh.flags:0; - var x = '

'; - x += '

'; + var x = '

'; + x += '

'; setDialogMode(2, "Functies van apparaatgroep bewerken", 3, p20editmeshfeaturesEx, x); } @@ -7937,10 +7937,10 @@ if (xxdialogMode) return false; var meshNotify = 0; if (userinfo.links && userinfo.links[currentMesh._id] && userinfo.links[currentMesh._id].notify) { meshNotify = userinfo.links[currentMesh._id].notify; } - var x = 'Notification settings must also be turned on in account settings.

'; - x += '
'; - x += '
'; - x += '
'; + var x = "Notification settings must also be turned on in account settings." + '

'; + x += '
'; + x += '
'; + x += '
'; setDialogMode(2, "meldingsinstellingen", 3, p20editMeshNotifyEx, x); Q('p20notifyIntelDeviceConnect').checked = (meshNotify & 2); Q('p20notifyIntelDeviceDisconnect').checked = (meshNotify & 4); @@ -8504,7 +8504,7 @@ // Display the users using the sorted list var x = '', addHeader = true; - x += '
' + "Naam" + 'Groups' + nobreak("Laatste toegang") + '' + "machtigingen"; + x += '' + "Naam" + '' + "Groups" + '' + nobreak("Laatste toegang") + '' + "machtigingen"; // Online users for (var i in sortedUserIds) { @@ -8961,9 +8961,9 @@ // Show bottom buttons x = '
'; - if (deletePossible) x += 'Delete User'; + if (deletePossible) x += '' + "Delete User" + ''; x += '
'; - if (userinfo.siteadmin == 0xFFFFFFFF) x += 'Change Password'; + if (userinfo.siteadmin == 0xFFFFFFFF) x += '' + "Verander wachtwoord" + ''; x += '

' QH('p30html3', x); @@ -9104,7 +9104,7 @@ ++count; date = new Date(date.getTime() - (1000 * 60 * 60 * 24)); // Substract one day } - QH('p30html2', '' + x + '
Day7 Day Login State
'); + QH('p30html2', '' + x + '
' + "Dag" + '' + "7 Day Login State" + '
'); } // @@ -9408,6 +9408,31 @@ }); } + var serverStatsStrings = { + ServerState: "Server State", + AgentErrorCounters: "Agent Error Counters", + UnknownGroup: "Unknown Group", + InvalidPKCSsignature: "Invalid PKCS signature", + InvalidRSAsiguature: "Invalid RSA siguature", + InvalidJSON: "Invalid JSON", + UnknownAction: "Unknown Action", + BadWebCertificate: "Bad Web Certificate", + BadSignature: "Bad Signature", + MaxSessionsReached: "Max Sessions Reached", + UnknownDeviceGroup: "Unknown Device Group", + InvalidDeviceGroupType: "Invalid Device Group Type", + DuplicateAgent: "Duplicate Agent", + ConnectedIntelAMT: "Connected Intel® AMT", + RelayErrors: "Relay Errors", + UserAccounts: "User Accounts", + DeviceGroups: "Apparaatgroepen", + AgentSessions: "Agent Sessions", + ConnectedUsers: "Connected Users", + UsersSessions: "Users Sessions", + RelaySessions: "Relay Sessies", + RelayCount: "Relay Count" + }; + var lastServerStats = null; function updateGeneralServerStats(message) { if (message != null) { lastServerStats = message; } else { message = lastServerStats; } @@ -9417,7 +9442,7 @@ if (typeof message.cpuavg == 'object') { var m = Math.min(message.cpuavg[0], 1); window.serverStatCpu.config.data.datasets[0].data = [m, 1 - m]; - QH('serverCpuChartText', '
CPU Load
' + (Math.round(message.cpuavg[0] * 100.0) / 100.0) + ', ' + (Math.round(message.cpuavg[1] * 100.0) / 100.0) + ', ' + (Math.round(message.cpuavg[2] * 100.0) / 100.0) + '
'); + QH('serverCpuChartText', '
' + "CPU Load" + '
' + (Math.round(message.cpuavg[0] * 100.0) / 100.0) + ', ' + (Math.round(message.cpuavg[1] * 100.0) / 100.0) + ', ' + (Math.round(message.cpuavg[2] * 100.0) / 100.0) + '
'); QS('serverCpuChartView')['display'] = 'inline-block'; window.serverStatCpu.update(); } @@ -9429,12 +9454,13 @@ } // Display all of the server values + // serverStatsStrings var x = '
'; if (typeof message.values == 'object') { for (var i in message.values) { - x += '
' + i + '
'; + x += '
' + (serverStatsStrings[i]?serverStatsStrings[i]:i) + '
'; for (var j in message.values[i]) { - x += '
' + j + '' + message.values[i][j] + '
'; + x += '
' + (serverStatsStrings[j]?serverStatsStrings[j]:j) + '' + message.values[i][j] + '
'; } } } @@ -9525,10 +9551,10 @@ data = { labels: [pastDate(0), timeAfter], datasets: [ - { label: 'External', data: [], backgroundColor: 'rgba(158, 151, 16, .1)', borderColor: 'rgb(158, 151, 16)', fill: true }, - { label: 'Heap Used', data: [], backgroundColor: 'rgba(16, 84, 158, .1)', borderColor: 'rgb(16, 84, 158)', fill: true }, - { label: 'Heap Total', data: [], backgroundColor: 'rgba(255, 99, 132, .1)', borderColor: 'rgb(255, 99, 132)', fill: true }, - { label: 'RSS', data: [], backgroundColor: 'rgba(39, 158, 16, .1)', borderColor: 'rgb(39, 158, 16)', fill: true } + { label: "External", data: [], backgroundColor: 'rgba(158, 151, 16, .1)', borderColor: 'rgb(158, 151, 16)', fill: true }, + { label: "Heap Used", data: [], backgroundColor: 'rgba(16, 84, 158, .1)', borderColor: 'rgb(16, 84, 158)', fill: true }, + { label: "Heap Total", data: [], backgroundColor: 'rgba(255, 99, 132, .1)', borderColor: 'rgb(255, 99, 132)', fill: true }, + { label: "RSS", data: [], backgroundColor: 'rgba(39, 158, 16, .1)', borderColor: 'rgb(39, 158, 16)', fill: true } ] }; for (var i = 0; i < serverTimelineStats.length; i++) { diff --git a/views/translations/default_pt.handlebars b/views/translations/default_pt.handlebars index bdd71cac..28f27650 100644 --- a/views/translations/default_pt.handlebars +++ b/views/translations/default_pt.handlebars @@ -3638,11 +3638,11 @@ function onSearchInputChanged() { var x = Q('SearchInput').value.toLowerCase().trim(); putstore('_search', x); var userSearch = null, ipSearch = null, groupSearch = null; - if (x.startsWith('user:')) { userSearch = x.substring(5); } - else if (x.startsWith('u:')) { userSearch = x.substring(2); } - else if (x.startsWith('ip:')) { ipSearch = x.substring(3); } - else if (x.startsWith('group:')) { groupSearch = x.substring(6); } - else if (x.startsWith('g:')) { groupSearch = x.substring(2); } + if (x.startsWith("user:")) { userSearch = x.substring(5); } + else if (x.startsWith("u:")) { userSearch = x.substring(2); } + else if (x.startsWith("ip:")) { ipSearch = x.substring(3); } + else if (x.startsWith("group:")) { groupSearch = x.substring(6); } + else if (x.startsWith("g:")) { groupSearch = x.substring(2); } if (x == '') { // No search @@ -3971,7 +3971,7 @@ }); // On right click open the context menu - contextmenu.on("abrir", function (evt) { + contextmenu.on('open', function (evt) { var feature = xxmap.map.forEachFeatureAtPixel(evt.pixel, function(ft, l){ return ft; }); xxmap.contextmenu.clear(); //Clear the context menu if (feature) { @@ -7708,8 +7708,8 @@ function p20editmeshfeatures() { if (xxdialogMode) return; var flags = (currentMesh.flags)?currentMesh.flags:0; - var x = '

'; - x += '

'; + var x = '

'; + x += '

'; setDialogMode(2, "Editar recursos do grupo de dispositivos", 3, p20editmeshfeaturesEx, x); } @@ -7937,10 +7937,10 @@ if (xxdialogMode) return false; var meshNotify = 0; if (userinfo.links && userinfo.links[currentMesh._id] && userinfo.links[currentMesh._id].notify) { meshNotify = userinfo.links[currentMesh._id].notify; } - var x = 'Notification settings must also be turned on in account settings.

'; - x += '
'; - x += '
'; - x += '
'; + var x = "Notification settings must also be turned on in account settings." + '

'; + x += '
'; + x += '
'; + x += '
'; setDialogMode(2, "Configurações de notificação", 3, p20editMeshNotifyEx, x); Q('p20notifyIntelDeviceConnect').checked = (meshNotify & 2); Q('p20notifyIntelDeviceDisconnect').checked = (meshNotify & 4); @@ -8504,7 +8504,7 @@ // Display the users using the sorted list var x = '', addHeader = true; - x += '
' + "Nome" + 'Groups' + nobreak("Último acesso") + '' + "Permissões"; + x += '' + "Nome" + '' + "Groups" + '' + nobreak("Último acesso") + '' + "Permissões"; // Online users for (var i in sortedUserIds) { @@ -8961,9 +8961,9 @@ // Show bottom buttons x = '
'; - if (deletePossible) x += 'Delete User'; + if (deletePossible) x += '' + "Delete User" + ''; x += '
'; - if (userinfo.siteadmin == 0xFFFFFFFF) x += 'Change Password'; + if (userinfo.siteadmin == 0xFFFFFFFF) x += '' + "Mudar senha" + ''; x += '

' QH('p30html3', x); @@ -9104,7 +9104,7 @@ ++count; date = new Date(date.getTime() - (1000 * 60 * 60 * 24)); // Substract one day } - QH('p30html2', '' + x + '
Day7 Day Login State
'); + QH('p30html2', '' + x + '
' + "Dia" + '' + "7 Day Login State" + '
'); } // @@ -9408,6 +9408,31 @@ }); } + var serverStatsStrings = { + ServerState: "Server State", + AgentErrorCounters: "Agent Error Counters", + UnknownGroup: "Unknown Group", + InvalidPKCSsignature: "Invalid PKCS signature", + InvalidRSAsiguature: "Invalid RSA siguature", + InvalidJSON: "Invalid JSON", + UnknownAction: "Unknown Action", + BadWebCertificate: "Bad Web Certificate", + BadSignature: "Bad Signature", + MaxSessionsReached: "Max Sessions Reached", + UnknownDeviceGroup: "Unknown Device Group", + InvalidDeviceGroupType: "Invalid Device Group Type", + DuplicateAgent: "Duplicate Agent", + ConnectedIntelAMT: "Connected Intel® AMT", + RelayErrors: "Relay Errors", + UserAccounts: "User Accounts", + DeviceGroups: "Grupos de dispositivos", + AgentSessions: "Agent Sessions", + ConnectedUsers: "Connected Users", + UsersSessions: "Users Sessions", + RelaySessions: "Retransmissão de sessão ", + RelayCount: "Relay Count" + }; + var lastServerStats = null; function updateGeneralServerStats(message) { if (message != null) { lastServerStats = message; } else { message = lastServerStats; } @@ -9417,7 +9442,7 @@ if (typeof message.cpuavg == 'object') { var m = Math.min(message.cpuavg[0], 1); window.serverStatCpu.config.data.datasets[0].data = [m, 1 - m]; - QH('serverCpuChartText', '
CPU Load
' + (Math.round(message.cpuavg[0] * 100.0) / 100.0) + ', ' + (Math.round(message.cpuavg[1] * 100.0) / 100.0) + ', ' + (Math.round(message.cpuavg[2] * 100.0) / 100.0) + '
'); + QH('serverCpuChartText', '
' + "CPU Load" + '
' + (Math.round(message.cpuavg[0] * 100.0) / 100.0) + ', ' + (Math.round(message.cpuavg[1] * 100.0) / 100.0) + ', ' + (Math.round(message.cpuavg[2] * 100.0) / 100.0) + '
'); QS('serverCpuChartView')['display'] = 'inline-block'; window.serverStatCpu.update(); } @@ -9429,12 +9454,13 @@ } // Display all of the server values + // serverStatsStrings var x = '
'; if (typeof message.values == 'object') { for (var i in message.values) { - x += '
' + i + '
'; + x += '
' + (serverStatsStrings[i]?serverStatsStrings[i]:i) + '
'; for (var j in message.values[i]) { - x += '
' + j + '' + message.values[i][j] + '
'; + x += '
' + (serverStatsStrings[j]?serverStatsStrings[j]:j) + '' + message.values[i][j] + '
'; } } } @@ -9525,10 +9551,10 @@ data = { labels: [pastDate(0), timeAfter], datasets: [ - { label: 'External', data: [], backgroundColor: 'rgba(158, 151, 16, .1)', borderColor: 'rgb(158, 151, 16)', fill: true }, - { label: 'Heap Used', data: [], backgroundColor: 'rgba(16, 84, 158, .1)', borderColor: 'rgb(16, 84, 158)', fill: true }, - { label: 'Heap Total', data: [], backgroundColor: 'rgba(255, 99, 132, .1)', borderColor: 'rgb(255, 99, 132)', fill: true }, - { label: 'RSS', data: [], backgroundColor: 'rgba(39, 158, 16, .1)', borderColor: 'rgb(39, 158, 16)', fill: true } + { label: "External", data: [], backgroundColor: 'rgba(158, 151, 16, .1)', borderColor: 'rgb(158, 151, 16)', fill: true }, + { label: "Heap Used", data: [], backgroundColor: 'rgba(16, 84, 158, .1)', borderColor: 'rgb(16, 84, 158)', fill: true }, + { label: "Heap Total", data: [], backgroundColor: 'rgba(255, 99, 132, .1)', borderColor: 'rgb(255, 99, 132)', fill: true }, + { label: "RSS", data: [], backgroundColor: 'rgba(39, 158, 16, .1)', borderColor: 'rgb(39, 158, 16)', fill: true } ] }; for (var i = 0; i < serverTimelineStats.length; i++) {