diff --git a/meshagent.js b/meshagent.js index 5ea181d9..76a3bccb 100644 --- a/meshagent.js +++ b/meshagent.js @@ -869,7 +869,7 @@ module.exports.CreateMeshAgent = function (parent, db, ws, req, args, domain) { // This node does not exist, create it. var agentName = obj.agentName ? obj.agentName : obj.agentInfo.computerName; - var device = { type: 'node', mtype: mesh.mtype, _id: obj.dbNodeKey, icon: obj.agentInfo.platformType, meshid: obj.dbMeshKey, name: agentName, rname: obj.agentInfo.computerName, domain: domain.id, agent: { ver: obj.agentInfo.agentVersion, id: obj.agentInfo.agentId, caps: obj.agentInfo.capabilities }, host: null }; + var device = { type: 'node', mtype: mesh.mtype, _id: obj.dbNodeKey, icon: obj.agentInfo.platformType, meshid: obj.dbMeshKey, name: agentName, rname: obj.agentInfo.computerName, domain: domain.id, agent: { ver: obj.agentInfo.agentVersion, id: obj.agentInfo.agentId, caps: obj.agentInfo.capabilities }, host: null, firstconnect: obj.connectTime }; db.Set(device); // Event the new node diff --git a/translate/mytranslate.js b/translate/mytranslate.js new file mode 100644 index 00000000..ccfee16e --- /dev/null +++ b/translate/mytranslate.js @@ -0,0 +1,364 @@ +const fs = require('fs'); +const path = require('path'); +const os = require('os'); +const { Worker, isMainThread, workerData, parentPort } = require('worker_threads'); +const jsdom = require('jsdom'); +const { JSDOM } = jsdom; +const esprima = require('esprima'); +const { minify } = require('html-minifier-terser'); +var translationTable = {}; + +// Source files to translate +var meshCentralSourceFiles = [ + "../views/agentinvite.handlebars", + "../views/invite.handlebars", + "../views/default.handlebars", + "../views/default3.handlebars", + "../views/default-mobile.handlebars", + "../views/download.handlebars", + "../views/download2.handlebars", + "../views/error404.handlebars", + "../views/error404-mobile.handlebars", + "../views/login.handlebars", + "../views/login2.handlebars", + "../views/login-mobile.handlebars", + "../views/terms.handlebars", + "../views/terms-mobile.handlebars", + "../views/xterm.handlebars", + "../views/message.handlebars", + "../views/message2.handlebars", + "../views/messenger.handlebars", + "../views/player.handlebars", + "../views/sharing.handlebars", + "../views/sharing-mobile.handlebars", + "../views/mstsc.handlebars", + "../views/ssh.handlebars", + "../emails/account-check.html", + "../emails/account-invite.html", + "../emails/account-login.html", + "../emails/account-reset.html", + "../emails/mesh-invite.html", + "../emails/device-notify.html", + "../emails/device-help.html", + "../emails/account-check.txt", + "../emails/account-invite.txt", + "../emails/account-login.txt", + "../emails/account-reset.txt", + "../emails/mesh-invite.txt", + "../emails/device-notify.txt", + "../emails/device-help.txt", + "../emails/sms-messages.txt", + "../agents/agent-translations.json", + "../agents/modules_meshcore/coretranslations.json" +]; + +const langFile = path.join(__dirname, 'translate.json'); +const createSubDir = 'translations'; // Subdirectory to create for translated files +const directRun = (require.main === module); + +// Check NodeJS version +const NodeJSVer = parseFloat(process.version.match(/^v(\d+\.\d+)/)[1]); +if (directRun && NodeJSVer < 12) { + console.error("Translate.js requires Node v12 or above"); + process.exit(1); +} + +if (directRun && isMainThread) { + console.log("MeshCentral translation tool v0.1.0 (direct)"); + + try { + // 1. Load language file ONCE + const langFileData = JSON.parse(fs.readFileSync(langFile)); + if (!langFileData?.strings) throw new Error("Invalid language file structure"); + + // 2. Load all source files ONCE + const sources = meshCentralSourceFiles.map(file => ({ + path: file, + content: fs.readFileSync(file, 'utf8') + })); + + // 3. Get target languages + const languages = new Set(); + for (const entry of Object.values(langFileData.strings)) { + for (const lang in entry) { + if (!['en', 'xloc', '*'].includes(lang)) { + languages.add(lang.toLowerCase()); + } + } + } + const langArray = Array.from(languages); + + console.log(`Processing ${langArray.length} languages: ${langArray.join(', ')}`); + console.log(`Loaded ${sources.length} source files`); + + // 4. Worker management + const MAX_WORKERS = 4; + let activeWorkers = 0; + let completed = 0; + + function startWorker() { + if (langArray.length === 0 || activeWorkers >= MAX_WORKERS) return; + + const lang = langArray.pop(); + activeWorkers++; + + const worker = new Worker(__filename, { + workerData: { + lang, + langData: langFileData, + sources + } + }); + + worker.on('message', (msg) => { + console.log(`[${lang}] ${msg}`); + }); + + worker.on('error', (err) => { + console.error(`[${lang}] Worker error:`, err); + }); + + worker.on('exit', (code) => { + activeWorkers--; + completed++; + console.log(`[${lang}] Completed (${completed}/${completed + langArray.length + activeWorkers})`); + startWorker(); + }); + } + + // Start initial workers + for (let i = 0; i < Math.min(MAX_WORKERS, langArray.length); i++) { + startWorker(); + } + + } catch (err) { + console.error("Initialization failed:", err); + process.exit(1); + } + +} else if (!isMainThread) { + // Worker thread logic + const { lang, langData, sources } = workerData; + + try { + parentPort.postMessage(`Starting translation of ${sources.length} files`); + + translationTable = {}; + for (var i in langData.strings) { + var entry = langData.strings[i]; + if ((entry['en'] != null) && (entry[lang] != null)) { translationTable[entry['en']] = entry[lang]; } + } + + for (var i = 0; i < sources.length; i++) { + if (sources[i].path.endsWith('.html') || sources[i].path.endsWith('.htm') || sources[i].path.endsWith('.handlebars')) { + translateFromHtml(lang, sources[i], createSubDir, (file) => { + parentPort.postMessage(`Finished HTML/Handlebars file: ${file}`); + }); + } else if (sources[i].path.endsWith('.txt')) { + translateFromTxt(lang, sources[i], createSubDir, (file) => { + parentPort.postMessage(`Finished TXT file: ${file}`); + }); + } + } + } catch (err) { + parentPort.postMessage(`ERROR: ${err.message}`); + } +} + +function minifyFromHtml(lang, file, out, done) { + parentPort.postMessage(`Minifying HTML/Handlebars file: ${file.path}`); + if (file.path.endsWith('.handlebars') >= 0) { out = out.split('{{{pluginHandler}}}').join('"{{{pluginHandler}}}"'); } + minify(out, { + collapseBooleanAttributes: true, + collapseInlineTagWhitespace: false, // This is not good. + collapseWhitespace: true, + minifyCSS: true, + minifyJS: true, + removeComments: true, + removeOptionalTags: true, + removeEmptyAttributes: true, + removeAttributeQuotes: true, + removeRedundantAttributes: true, + removeScriptTypeAttributes: true, + removeTagWhitespace: true, + preserveLineBreaks: false, + useShortDoctype: true + }).then((minifiedOut) => { + if (minifiedOut == null) { + parentPort.postMessage(`ERROR: Minification failed for ${file.path}`); + } else { + var outname = file.path; + var outnamemin = null; + if (createSubDir != null) { + var outfolder = path.join(path.dirname(file.path), createSubDir); + if (fs.existsSync(outfolder) == false) { fs.mkdirSync(outfolder); } + outname = path.join(path.dirname(file.path), createSubDir, path.basename(file.path)); + } + if (outname.endsWith('.handlebars')) { + outnamemin = (outname.substring(0, outname.length - 11) + '-min_' + lang + '.handlebars'); + outname = (outname.substring(0, outname.length - 11) + '_' + lang + '.handlebars'); + } else if (outname.endsWith('.html')) { + outnamemin = (outname.substring(0, outname.length - 5) + '-min_' + lang + '.html'); + outname = (outname.substring(0, outname.length - 5) + '_' + lang + '.html'); + } else if (outname.endsWith('.htm')) { + outnamemin = (outname.substring(0, outname.length - 4) + '-min_' + lang + '.htm'); + outname = (outname.substring(0, outname.length - 4) + '_' + lang + '.htm'); + } else if (outname.endsWith('.js')) { + if (out.startsWith('
')) { out = out.substring(0, out.length - 23); } + outnamemin = (outname.substring(0, outname.length - 3) + '-min_' + lang + '.js'); + outname = (outname.substring(0, outname.length - 3) + '_' + lang + '.js'); + } else { + outnamemin = (outname + '_' + lang + '.min'); + outname = (outname + '_' + lang); + } + if (outnamemin.endsWith('.handlebars') >= 0) { minifiedOut = minifiedOut.split('"{{{pluginHandler}}}"').join('{{{pluginHandler}}}'); } + fs.writeFileSync(outnamemin, minifiedOut, { flag: 'w+' }); + parentPort.postMessage(`Minified HTML/Handlebars file: ${file.path}`); + } + done(file.path); + }); +} + +function translateFromHtml(lang, file, createSubDir, done) { + parentPort.postMessage(`Translating HTML/Handlebars file: ${file.path}`); + var data = file.content; + if (file.path.endsWith('.js')) { data = ''; } + const dom = new JSDOM(data, { includeNodeLocations: true }); + translateStrings(path.basename(file.path), dom.window.document.querySelector('body')); + var out = dom.serialize(); + out = out.split('')) { out = out.substring(0, out.length - 23); } + outnamemin = (outname.substring(0, outname.length - 3) + '-min_' + lang + '.js'); + outname = (outname.substring(0, outname.length - 3) + '_' + lang + '.js'); + } else { + outnamemin = (outname + '_' + lang + '.min'); + outname = (outname + '_' + lang); + } + fs.writeFileSync(outname, out, { flag: 'w+' }); + parentPort.postMessage(`Translated HTML/Handlebars file: ${file.path}`); + minifyFromHtml(lang, file, out, done); +} + +function translateStrings(name, node) { + for (var i = 0; i < node.childNodes.length; i++) { + var subnode = node.childNodes[i]; + + // Check if the "value" attribute exists and needs to be translated + var subnodeignore = false; + if ((subnode.attributes != null) && (subnode.attributes.length > 0)) { + var subnodevalue = null, subnodeindex = null, subnodeplaceholder = null, subnodeplaceholderindex = null, subnodetitle = null, subnodetitleindex = null; + for (var j in subnode.attributes) { + if ((subnode.attributes[j].name == 'notrans') && (subnode.attributes[j].value == '1')) { subnodeignore = true; } + if ((subnode.attributes[j].name == 'type') && (subnode.attributes[j].value == 'hidden')) { subnodeignore = true; } + if (subnode.attributes[j].name == 'value') { subnodevalue = subnode.attributes[j].value; subnodeindex = j; } + if (subnode.attributes[j].name == 'placeholder') { subnodeplaceholder = subnode.attributes[j].value; subnodeplaceholderindex = j; } + if (subnode.attributes[j].name == 'title') { subnodetitle = subnode.attributes[j].value; subnodetitleindex = j; } + } + if ((subnodevalue != null) && isNumber(subnodevalue) == true) { subnodevalue = null; } + if ((subnodeplaceholder != null) && isNumber(subnodeplaceholder) == true) { subnodeplaceholder = null; } + if ((subnodetitle != null) && isNumber(subnodetitle) == true) { subnodetitle = null; } + if ((subnodeignore == false) && (subnodevalue != null)) { + // Perform attribute translation for value + if (translationTable[subnodevalue] != null) { subnode.attributes[subnodeindex].value = translationTable[subnodevalue]; } + } + if (subnodeplaceholder != null) { + // Perform attribute translation for placeholder + if (translationTable[subnodeplaceholder] != null) { subnode.attributes[subnodeplaceholderindex].value = translationTable[subnodeplaceholder]; } + } + if (subnodetitle != null) { + // Perform attribute translation for title + if (translationTable[subnodetitle] != null) { subnode.attributes[subnodetitleindex].value = translationTable[subnodetitle]; } + } + } + + if (subnodeignore == false) { + var subname = subnode.id; + if (subname == null || subname == '') { subname = i; } + if (subnode.hasChildNodes()) { + translateStrings(name + '->' + subname, subnode); + } else { + if (subnode.nodeValue == null) continue; + var nodeValue = subnode.nodeValue.trim().split('\\r').join('').split('\\n').join('').trim(); + + // Look for the front trim + var frontTrim = '', backTrim = '';; + var x1 = subnode.nodeValue.indexOf(nodeValue); + if (x1 > 0) { frontTrim = subnode.nodeValue.substring(0, x1); } + if (x1 != -1) { backTrim = subnode.nodeValue.substring(x1 + nodeValue.length); } + + if ((nodeValue.length > 0) && (subnode.nodeType == 3)) { + if ((node.tagName != 'SCRIPT') && (node.tagName != 'STYLE') && (nodeValue.length < 8000) && (nodeValue.startsWith('{{{') == false) && (nodeValue != ' ')) { + // Check if we have a translation for this string + if (translationTable[nodeValue]) { subnode.nodeValue = (frontTrim + translationTable[nodeValue] + backTrim); } + } else if (node.tagName == 'SCRIPT') { + // Translate JavaScript + subnode.nodeValue = translateStringsFromJavaScript(name, subnode.nodeValue); + } + } + } + } + } +} + +function translateStringsFromJavaScript(name, script) { + var tokenScript = esprima.tokenize(script, { range: true }), count = 0; + var output = [], ptr = 0; + for (var i in tokenScript) { + var token = tokenScript[i]; + if ((token.type == 'String') && (token.value.length > 2) && (token.value[0] == '"')) { + var str = token.value.substring(1, token.value.length - 1); + if (translationTable[str]) { + output.push(script.substring(ptr, token.range[0])); + output.push('"' + translationTable[str] + '"'); + ptr = token.range[1]; + } + } + } + output.push(script.substring(ptr)); + return output.join(''); +} + +function translateFromTxt(lang, file, createSubDir, done) { + parentPort.postMessage(`Translating TXT file: ${file.path}`); + var lines = file.content.toString().split(/\r?\n/), outlines = []; + for (var i in lines) { + var line = lines[i]; + if ((line.length > 1) && (line[0] != '~')) { + if (translationTable[line] != null) { outlines.push(translationTable[line]); } else { outlines.push(line); } + } else { + outlines.push(line); + } + } + + var outname = file.path, out = outlines.join(os.EOL); + if (createSubDir != null) { + var outfolder = path.join(path.dirname(file.path), createSubDir); + if (fs.existsSync(outfolder) == false) { fs.mkdirSync(outfolder); } + outname = path.join(path.dirname(file.path), createSubDir, path.basename(file.path)); + } + outname = (outname.substring(0, outname.length - 4) + '_' + lang + '.txt'); + fs.writeFileSync(outname, out, { flag: 'w+' }); + done(file.path); // Call the done callback to signal completion +} + +function isNumber(x) { return (('' + parseInt(x)) === x) || (('' + parseFloat(x)) === x); } +function format(format) { var args = Array.prototype.slice.call(arguments, 1); return format.replace(/{(\d+)}/g, function (match, number) { return typeof args[number] != 'undefined' ? args[number] : match; }); }; diff --git a/translate/translate.json b/translate/translate.json index 6237cb1a..0c9c346b 100644 --- a/translate/translate.json +++ b/translate/translate.json @@ -26,10 +26,10 @@ "zh-chs": " + CIRA", "zh-cht": " + CIRA", "xloc": [ - "default.handlebars->119->2232", "default.handlebars->119->2234", - "default3.handlebars->117->2243", - "default3.handlebars->117->2245" + "default.handlebars->119->2236", + "default3.handlebars->117->2245", + "default3.handlebars->117->2247" ] }, { @@ -330,8 +330,8 @@ "zh-chs": " 可以使用密码提示,但不建议使用。", "zh-cht": " 可以使用密碼提示,但不建議使用。", "xloc": [ - "default.handlebars->119->2104", - "default3.handlebars->117->2099" + "default.handlebars->119->2106", + "default3.handlebars->117->2101" ] }, { @@ -360,10 +360,10 @@ "zh-chs": " 用户需要先登录到该服务器一次,然后才能将其添加到设备组。", "zh-cht": " 用戶需要先登入到該伺服器一次,然後才能將其新增到裝置群。", "xloc": [ - "default.handlebars->119->2358", - "default.handlebars->119->2947", - "default3.handlebars->117->2370", - "default3.handlebars->117->2956" + "default.handlebars->119->2360", + "default.handlebars->119->2949", + "default3.handlebars->117->2372", + "default3.handlebars->117->2958" ] }, { @@ -502,8 +502,8 @@ "zh-chs": " TLS。", "zh-cht": " TLS。", "xloc": [ - "default.handlebars->119->282", - "default3.handlebars->117->292" + "default.handlebars->119->283", + "default3.handlebars->117->293" ] }, { @@ -532,8 +532,8 @@ "zh-chs": " 没有TLS。", "zh-cht": " 沒有TLS。", "xloc": [ - "default.handlebars->119->283", - "default3.handlebars->117->293" + "default.handlebars->119->284", + "default3.handlebars->117->294" ] }, { @@ -934,8 +934,8 @@ "zh-chs": "(可选的)", "zh-cht": "(可選的)", "xloc": [ - "default.handlebars->119->579", - "default3.handlebars->117->590" + "default.handlebars->119->580", + "default3.handlebars->117->591" ] }, { @@ -985,10 +985,10 @@ "zh-chs": "* 8-16个字符,1个大写,1个小写,1个数字,1个非字母数字。", "zh-cht": "* 8-16個字符,1個大寫,1個小寫,1個數字,1個非字母數字。", "xloc": [ - "default.handlebars->119->2316", - "default.handlebars->119->541", - "default3.handlebars->117->2325", - "default3.handlebars->117->552" + "default.handlebars->119->2318", + "default.handlebars->119->542", + "default3.handlebars->117->2327", + "default3.handlebars->117->553" ] }, { @@ -1017,8 +1017,8 @@ "zh-chs": "*对于BSD,首先运行“ pkg install wget sudo bash ”。", "zh-cht": "*對於BSD,首先運行“ pkg install wget sudo bash ”。", "xloc": [ - "default.handlebars->119->638", - "default3.handlebars->117->649" + "default.handlebars->119->639", + "default3.handlebars->117->650" ] }, { @@ -1096,22 +1096,22 @@ "zh-chs": ",", "zh-cht": ",", "xloc": [ - "default-mobile.handlebars->53->1033", - "default-mobile.handlebars->53->825", - "default-mobile.handlebars->53->827", - "default-mobile.handlebars->53->829", - "default.handlebars->119->1024", - "default.handlebars->119->1666", + "default-mobile.handlebars->53->1034", + "default-mobile.handlebars->53->826", + "default-mobile.handlebars->53->828", + "default-mobile.handlebars->53->830", + "default.handlebars->119->1025", "default.handlebars->119->1668", "default.handlebars->119->1670", - "default.handlebars->119->2434", - "default.handlebars->119->2720", - "default3.handlebars->117->1035", - "default3.handlebars->117->1666", + "default.handlebars->119->1672", + "default.handlebars->119->2436", + "default.handlebars->119->2722", + "default3.handlebars->117->1036", "default3.handlebars->117->1668", "default3.handlebars->117->1670", - "default3.handlebars->117->2446", - "default3.handlebars->117->2732" + "default3.handlebars->117->1672", + "default3.handlebars->117->2448", + "default3.handlebars->117->2734" ] }, { @@ -1225,8 +1225,8 @@ "zh-cht": ",只適用於Intel® AMT", "xloc": [ "default-mobile.handlebars->53->412", - "default.handlebars->119->368", - "default3.handlebars->117->379" + "default.handlebars->119->369", + "default3.handlebars->117->380" ] }, { @@ -1255,8 +1255,8 @@ "zh-chs": ", 本地设备", "zh-cht": ", 本地設備", "xloc": [ - "default.handlebars->119->370", - "default3.handlebars->117->381" + "default.handlebars->119->371", + "default3.handlebars->117->382" ] }, { @@ -1285,9 +1285,9 @@ "zh-chs": ",MQTT在线", "zh-cht": ",MQTT在線", "xloc": [ - "default-mobile.handlebars->53->934", - "default.handlebars->119->1776", - "default3.handlebars->117->1774" + "default-mobile.handlebars->53->935", + "default.handlebars->119->1778", + "default3.handlebars->117->1776" ] }, { @@ -1316,10 +1316,10 @@ "zh-chs": ", 不同意", "zh-cht": ", 不同意", "xloc": [ - "default.handlebars->119->1119", - "default.handlebars->119->2274", - "default3.handlebars->117->1130", - "default3.handlebars->117->2285" + "default.handlebars->119->1120", + "default.handlebars->119->2276", + "default3.handlebars->117->1131", + "default3.handlebars->117->2287" ] }, { @@ -1348,10 +1348,10 @@ "zh-chs": ",提示同意", "zh-cht": ",提示同意", "xloc": [ - "default.handlebars->119->1120", - "default.handlebars->119->2275", - "default3.handlebars->117->1131", - "default3.handlebars->117->2286" + "default.handlebars->119->1121", + "default.handlebars->119->2277", + "default3.handlebars->117->1132", + "default3.handlebars->117->2288" ] }, { @@ -1379,8 +1379,8 @@ "zh-chs": ", RDP", "zh-cht": ", RDP", "xloc": [ - "default.handlebars->119->1421", - "default3.handlebars->117->1422" + "default.handlebars->119->1422", + "default3.handlebars->117->1423" ] }, { @@ -1409,10 +1409,10 @@ "zh-chs": ", 每天重复", "zh-cht": ", 每天重複", "xloc": [ - "default.handlebars->119->1116", - "default.handlebars->119->2271", - "default3.handlebars->117->1127", - "default3.handlebars->117->2282" + "default.handlebars->119->1117", + "default.handlebars->119->2273", + "default3.handlebars->117->1128", + "default3.handlebars->117->2284" ] }, { @@ -1441,10 +1441,10 @@ "zh-chs": ", 每周重复一次", "zh-cht": ", 每週重複一次", "xloc": [ - "default.handlebars->119->1117", - "default.handlebars->119->2272", - "default3.handlebars->117->1128", - "default3.handlebars->117->2283" + "default.handlebars->119->1118", + "default.handlebars->119->2274", + "default3.handlebars->117->1129", + "default3.handlebars->117->2285" ] }, { @@ -1499,8 +1499,8 @@ "zh-chs": ", 中继设备", "zh-cht": ", 中繼設備", "xloc": [ - "default.handlebars->119->369", - "default3.handlebars->117->380" + "default.handlebars->119->370", + "default3.handlebars->117->381" ] }, { @@ -1529,8 +1529,8 @@ "zh-cht": ", SFTP", "xloc": [ "default-mobile.handlebars->53->715", - "default.handlebars->119->1543", - "default3.handlebars->117->1543" + "default.handlebars->119->1544", + "default3.handlebars->117->1544" ] }, { @@ -1558,8 +1558,8 @@ "zh-chs": ", SSH", "zh-cht": ", SSH", "xloc": [ - "default.handlebars->119->1511", - "default3.handlebars->117->1511" + "default.handlebars->119->1512", + "default3.handlebars->117->1512" ] }, { @@ -1587,8 +1587,8 @@ "zh-chs": ",软体KVM", "zh-cht": ",軟體KVM", "xloc": [ - "default.handlebars->119->1404", - "default3.handlebars->117->1405", + "default.handlebars->119->1405", + "default3.handlebars->117->1406", "sharing.handlebars->47->12" ] }, @@ -1618,10 +1618,10 @@ "zh-chs": ", 工具栏", "zh-cht": ", 工具欄", "xloc": [ - "default.handlebars->119->1121", - "default.handlebars->119->2276", - "default3.handlebars->117->1132", - "default3.handlebars->117->2287" + "default.handlebars->119->1122", + "default.handlebars->119->2278", + "default3.handlebars->117->1133", + "default3.handlebars->117->2289" ] }, { @@ -1676,10 +1676,10 @@ "zh-chs": ", 仅查看桌面", "zh-cht": ", 僅查看桌面", "xloc": [ - "default.handlebars->119->1118", - "default.handlebars->119->2273", - "default3.handlebars->117->1129", - "default3.handlebars->117->2284" + "default.handlebars->119->1119", + "default.handlebars->119->2275", + "default3.handlebars->117->1130", + "default3.handlebars->117->2286" ] }, { @@ -1710,12 +1710,12 @@ "default-mobile.handlebars->53->656", "default-mobile.handlebars->53->693", "default-mobile.handlebars->53->716", - "default.handlebars->119->1420", - "default.handlebars->119->1512", - "default.handlebars->119->1544", - "default3.handlebars->117->1421", - "default3.handlebars->117->1512", - "default3.handlebars->117->1544", + "default.handlebars->119->1421", + "default.handlebars->119->1513", + "default.handlebars->119->1545", + "default3.handlebars->117->1422", + "default3.handlebars->117->1513", + "default3.handlebars->117->1545", "sharing-mobile.handlebars->53->14", "sharing-mobile.handlebars->53->46", "sharing-mobile.handlebars->53->63", @@ -1953,8 +1953,8 @@ "zh-chs": ",{0}观看", "zh-cht": ",{0}觀看", "xloc": [ - "default.handlebars->119->1415", - "default3.handlebars->117->1416", + "default.handlebars->119->1416", + "default3.handlebars->117->1417", "sharing.handlebars->47->13" ] }, @@ -2050,12 +2050,12 @@ "default-mobile.handlebars->53->358", "default-mobile.handlebars->53->360", "default-mobile.handlebars->53->722", - "default.handlebars->119->1558", - "default.handlebars->119->2500", - "default.handlebars->119->3191", - "default3.handlebars->117->1558", - "default3.handlebars->117->2512", - "default3.handlebars->117->3194", + "default.handlebars->119->1559", + "default.handlebars->119->2502", + "default.handlebars->119->3193", + "default3.handlebars->117->1559", + "default3.handlebars->117->2514", + "default3.handlebars->117->3196", "sharing-mobile.handlebars->53->79", "sharing.handlebars->47->50" ] @@ -2142,8 +2142,8 @@ "en": "0 bps", "xloc": [ "default-mobile.handlebars->53->367", - "default.handlebars->119->2518", - "default3.handlebars->117->2530" + "default.handlebars->119->2520", + "default3.handlebars->117->2532" ] }, { @@ -2250,8 +2250,8 @@ "zh-chs": "1个活跃时段", "zh-cht": "1個活躍時段", "xloc": [ - "default.handlebars->119->3042", - "default3.handlebars->117->3051" + "default.handlebars->119->3044", + "default3.handlebars->117->3053" ] }, { @@ -2280,10 +2280,10 @@ "zh-chs": "1个字节", "zh-cht": "1個位元組", "xloc": [ - "default-mobile.handlebars->53->1077", + "default-mobile.handlebars->53->1078", "default-mobile.handlebars->53->375", - "default.handlebars->119->2529", - "default3.handlebars->117->2541", + "default.handlebars->119->2531", + "default3.handlebars->117->2543", "download.handlebars->7->1", "download2.handlebars->11->1", "sharing-mobile.handlebars->53->112", @@ -2345,8 +2345,8 @@ "zh-chs": "1条连接", "zh-cht": "1位聯絡文", "xloc": [ - "default.handlebars->119->1417", - "default3.handlebars->117->1418", + "default.handlebars->119->1418", + "default3.handlebars->117->1419", "sharing.handlebars->47->15" ] }, @@ -2376,12 +2376,12 @@ "zh-chs": "1天", "zh-cht": "1天", "xloc": [ - "default.handlebars->119->290", - "default.handlebars->119->570", - "default.handlebars->119->584", - "default3.handlebars->117->300", - "default3.handlebars->117->581", - "default3.handlebars->117->595" + "default.handlebars->119->291", + "default.handlebars->119->571", + "default.handlebars->119->585", + "default3.handlebars->117->301", + "default3.handlebars->117->582", + "default3.handlebars->117->596" ] }, { @@ -2410,8 +2410,8 @@ "zh-chs": "1组", "zh-cht": "1群", "xloc": [ - "default.handlebars->119->2997", - "default3.handlebars->117->3006" + "default.handlebars->119->2999", + "default3.handlebars->117->3008" ] }, { @@ -2440,12 +2440,12 @@ "zh-chs": "1小时", "zh-cht": "1小時", "xloc": [ - "default.handlebars->119->288", - "default.handlebars->119->568", - "default.handlebars->119->582", - "default3.handlebars->117->298", - "default3.handlebars->117->579", - "default3.handlebars->117->593" + "default.handlebars->119->289", + "default.handlebars->119->569", + "default.handlebars->119->583", + "default3.handlebars->117->299", + "default3.handlebars->117->580", + "default3.handlebars->117->594" ] }, { @@ -2474,10 +2474,10 @@ "zh-chs": "1分钟", "zh-cht": "1分鐘", "xloc": [ - "default.handlebars->119->1229", - "default.handlebars->119->2069", - "default3.handlebars->117->1238", - "default3.handlebars->117->2065" + "default.handlebars->119->1230", + "default.handlebars->119->2071", + "default3.handlebars->117->1239", + "default3.handlebars->117->2067" ] }, { @@ -2561,12 +2561,12 @@ "zh-chs": "1个月", "zh-cht": "1個月", "xloc": [ - "default.handlebars->119->292", - "default.handlebars->119->572", - "default.handlebars->119->586", - "default3.handlebars->117->302", - "default3.handlebars->117->583", - "default3.handlebars->117->597" + "default.handlebars->119->293", + "default.handlebars->119->573", + "default.handlebars->119->587", + "default3.handlebars->117->303", + "default3.handlebars->117->584", + "default3.handlebars->117->598" ] }, { @@ -2595,8 +2595,8 @@ "zh-chs": "有1个用户没有显示,请使用搜索框查找用户...", "zh-cht": "有1個用戶沒有顯示,請使用搜尋框搜尋用戶...", "xloc": [ - "default.handlebars->119->2752", - "default3.handlebars->117->2764" + "default.handlebars->119->2754", + "default3.handlebars->117->2766" ] }, { @@ -2625,8 +2625,8 @@ "zh-chs": "1个节点", "zh-cht": "1個節點", "xloc": [ - "default.handlebars->119->697", - "default3.handlebars->117->708" + "default.handlebars->119->698", + "default3.handlebars->117->709" ] }, { @@ -2708,8 +2708,8 @@ "zh-cht": "1秒", "xloc": [ "default-mobile.handlebars->53->592", - "default.handlebars->119->1269", - "default3.handlebars->117->1278" + "default.handlebars->119->1270", + "default3.handlebars->117->1279" ] }, { @@ -2793,8 +2793,8 @@ "zh-chs": "1 个选定的设备处于离线状态。", "zh-cht": "1 個選定的設備處於離線狀態。", "xloc": [ - "default.handlebars->119->765", - "default3.handlebars->117->776" + "default.handlebars->119->766", + "default3.handlebars->117->777" ] }, { @@ -2823,8 +2823,8 @@ "zh-chs": "1 个选定的设备在线。", "zh-cht": "1 個選定的設備在線。", "xloc": [ - "default.handlebars->119->763", - "default3.handlebars->117->774" + "default.handlebars->119->764", + "default3.handlebars->117->775" ] }, { @@ -2860,22 +2860,22 @@ "default-mobile.handlebars->53->444", "default-mobile.handlebars->53->448", "default-mobile.handlebars->53->452", - "default.handlebars->119->2756", - "default.handlebars->119->459", - "default.handlebars->119->462", - "default.handlebars->119->466", - "default.handlebars->119->470", - "default.handlebars->119->474", - "default.handlebars->119->478", - "default.handlebars->119->482", - "default3.handlebars->117->2768", - "default3.handlebars->117->470", - "default3.handlebars->117->473", - "default3.handlebars->117->477", - "default3.handlebars->117->481", - "default3.handlebars->117->485", - "default3.handlebars->117->489", - "default3.handlebars->117->493" + "default.handlebars->119->2758", + "default.handlebars->119->460", + "default.handlebars->119->463", + "default.handlebars->119->467", + "default.handlebars->119->471", + "default.handlebars->119->475", + "default.handlebars->119->479", + "default.handlebars->119->483", + "default3.handlebars->117->2770", + "default3.handlebars->117->471", + "default3.handlebars->117->474", + "default3.handlebars->117->478", + "default3.handlebars->117->482", + "default3.handlebars->117->486", + "default3.handlebars->117->490", + "default3.handlebars->117->494" ] }, { @@ -2904,12 +2904,12 @@ "zh-chs": "1周", "zh-cht": "1週", "xloc": [ - "default.handlebars->119->291", - "default.handlebars->119->571", - "default.handlebars->119->585", - "default3.handlebars->117->301", - "default3.handlebars->117->582", - "default3.handlebars->117->596" + "default.handlebars->119->292", + "default.handlebars->119->572", + "default.handlebars->119->586", + "default3.handlebars->117->302", + "default3.handlebars->117->583", + "default3.handlebars->117->597" ] }, { @@ -3087,10 +3087,10 @@ "zh-chs": "10分钟", "zh-cht": "10分鐘", "xloc": [ - "default.handlebars->119->1231", - "default.handlebars->119->2071", - "default3.handlebars->117->1240", - "default3.handlebars->117->2067" + "default.handlebars->119->1232", + "default.handlebars->119->2073", + "default3.handlebars->117->1241", + "default3.handlebars->117->2069" ] }, { @@ -3120,8 +3120,8 @@ "zh-cht": "10 秒", "xloc": [ "default-mobile.handlebars->53->594", - "default.handlebars->119->1271", - "default3.handlebars->117->1280" + "default.handlebars->119->1272", + "default3.handlebars->117->1281" ] }, { @@ -3298,10 +3298,10 @@ "zh-chs": "12小时", "zh-cht": "12小時", "xloc": [ - "default.handlebars->119->1239", - "default.handlebars->119->2079", - "default3.handlebars->117->1248", - "default3.handlebars->117->2075" + "default.handlebars->119->1240", + "default.handlebars->119->2081", + "default3.handlebars->117->1249", + "default3.handlebars->117->2077" ] }, { @@ -3445,10 +3445,10 @@ "zh-chs": "15分钟", "zh-cht": "15分鐘", "xloc": [ - "default.handlebars->119->1232", - "default.handlebars->119->2072", - "default3.handlebars->117->1241", - "default3.handlebars->117->2068" + "default.handlebars->119->1233", + "default.handlebars->119->2074", + "default3.handlebars->117->1242", + "default3.handlebars->117->2070" ] }, { @@ -3477,10 +3477,10 @@ "zh-chs": "16小时", "zh-cht": "16小時", "xloc": [ - "default.handlebars->119->1240", - "default.handlebars->119->2080", - "default3.handlebars->117->1249", - "default3.handlebars->117->2076" + "default.handlebars->119->1241", + "default.handlebars->119->2082", + "default3.handlebars->117->1250", + "default3.handlebars->117->2078" ] }, { @@ -3625,10 +3625,10 @@ "zh-chs": "2天", "zh-cht": "2天", "xloc": [ - "default.handlebars->119->1242", - "default.handlebars->119->2082", - "default3.handlebars->117->1251", - "default3.handlebars->117->2078" + "default.handlebars->119->1243", + "default.handlebars->119->2084", + "default3.handlebars->117->1252", + "default3.handlebars->117->2080" ] }, { @@ -3657,10 +3657,10 @@ "zh-chs": "2小时", "zh-cht": "2小時", "xloc": [ - "default.handlebars->119->1236", - "default.handlebars->119->2076", - "default3.handlebars->117->1245", - "default3.handlebars->117->2072" + "default.handlebars->119->1237", + "default.handlebars->119->2078", + "default3.handlebars->117->1246", + "default3.handlebars->117->2074" ] }, { @@ -3690,8 +3690,8 @@ "zh-cht": "兩步登入啟用失敗。", "xloc": [ "default-mobile.handlebars->53->78", - "default.handlebars->119->232", - "default3.handlebars->117->244" + "default.handlebars->119->233", + "default3.handlebars->117->245" ] }, { @@ -3721,8 +3721,8 @@ "zh-cht": "兩步登入啟用刪除失敗。", "xloc": [ "default-mobile.handlebars->53->83", - "default.handlebars->119->237", - "default3.handlebars->117->249" + "default.handlebars->119->238", + "default3.handlebars->117->250" ] }, { @@ -3870,10 +3870,10 @@ "zh-chs": "24小时", "zh-cht": "24小時", "xloc": [ - "default.handlebars->119->1241", - "default.handlebars->119->2081", - "default3.handlebars->117->1250", - "default3.handlebars->117->2077" + "default.handlebars->119->1242", + "default.handlebars->119->2083", + "default3.handlebars->117->1251", + "default3.handlebars->117->2079" ] }, { @@ -3960,8 +3960,8 @@ "zh-chs": "2FA备份代码已清除", "zh-cht": "2FA備份代碼已清除", "xloc": [ - "default.handlebars->119->2642", - "default3.handlebars->117->2654" + "default.handlebars->119->2644", + "default3.handlebars->117->2656" ] }, { @@ -3991,8 +3991,8 @@ "zh-cht": "2FA被鎖定", "xloc": [ "default-mobile.handlebars->53->65", - "default.handlebars->119->217", - "default3.handlebars->117->229" + "default.handlebars->119->218", + "default3.handlebars->117->230" ] }, { @@ -4021,8 +4021,8 @@ "zh-chs": "第二个因素", "zh-cht": "第二個因素", "xloc": [ - "default.handlebars->119->3230", - "default3.handlebars->117->3233" + "default.handlebars->119->3232", + "default3.handlebars->117->3235" ] }, { @@ -4051,10 +4051,10 @@ "zh-chs": "启用第二因素身份验证", "zh-cht": "啟用第二因素身份驗證", "xloc": [ - "default.handlebars->119->2770", - "default.handlebars->119->3023", - "default3.handlebars->117->2782", - "default3.handlebars->117->3032" + "default.handlebars->119->2772", + "default.handlebars->119->3025", + "default3.handlebars->117->2784", + "default3.handlebars->117->3034" ] }, { @@ -4225,10 +4225,10 @@ "zh-chs": "30分钟", "zh-cht": "30分鐘", "xloc": [ - "default.handlebars->119->1233", - "default.handlebars->119->2073", - "default3.handlebars->117->1242", - "default3.handlebars->117->2069" + "default.handlebars->119->1234", + "default.handlebars->119->2075", + "default3.handlebars->117->1243", + "default3.handlebars->117->2071" ] }, { @@ -4258,8 +4258,8 @@ "zh-cht": "32 位", "xloc": [ "default-mobile.handlebars->53->760", - "default.handlebars->119->1621", - "default3.handlebars->117->1621" + "default.handlebars->119->1622", + "default3.handlebars->117->1622" ] }, { @@ -4346,10 +4346,10 @@ "zh-chs": "4天", "zh-cht": "4天", "xloc": [ - "default.handlebars->119->1243", - "default.handlebars->119->2083", - "default3.handlebars->117->1252", - "default3.handlebars->117->2079" + "default.handlebars->119->1244", + "default.handlebars->119->2085", + "default3.handlebars->117->1253", + "default3.handlebars->117->2081" ] }, { @@ -4378,10 +4378,10 @@ "zh-chs": "4个小时", "zh-cht": "4個小時", "xloc": [ - "default.handlebars->119->1237", - "default.handlebars->119->2077", - "default3.handlebars->117->1246", - "default3.handlebars->117->2073" + "default.handlebars->119->1238", + "default.handlebars->119->2079", + "default3.handlebars->117->1247", + "default3.handlebars->117->2075" ] }, { @@ -4527,10 +4527,10 @@ "zh-chs": "45分钟", "zh-cht": "45分鐘", "xloc": [ - "default.handlebars->119->1234", - "default.handlebars->119->2074", - "default3.handlebars->117->1243", - "default3.handlebars->117->2070" + "default.handlebars->119->1235", + "default.handlebars->119->2076", + "default3.handlebars->117->1244", + "default3.handlebars->117->2072" ] }, { @@ -4588,10 +4588,10 @@ "zh-chs": "5分钟", "zh-cht": "5分鐘", "xloc": [ - "default.handlebars->119->1230", - "default.handlebars->119->2070", - "default3.handlebars->117->1239", - "default3.handlebars->117->2066" + "default.handlebars->119->1231", + "default.handlebars->119->2072", + "default3.handlebars->117->1240", + "default3.handlebars->117->2068" ] }, { @@ -4621,8 +4621,8 @@ "zh-cht": "5秒", "xloc": [ "default-mobile.handlebars->53->593", - "default.handlebars->119->1270", - "default3.handlebars->117->1279" + "default.handlebars->119->1271", + "default3.handlebars->117->1280" ] }, { @@ -4802,10 +4802,10 @@ "zh-chs": "60分钟", "zh-cht": "60分鐘", "xloc": [ - "default.handlebars->119->1235", - "default.handlebars->119->2075", - "default3.handlebars->117->1244", - "default3.handlebars->117->2071" + "default.handlebars->119->1236", + "default.handlebars->119->2077", + "default3.handlebars->117->1245", + "default3.handlebars->117->2073" ] }, { @@ -4894,8 +4894,8 @@ "zh-cht": "64 位", "xloc": [ "default-mobile.handlebars->53->762", - "default.handlebars->119->1623", - "default3.handlebars->117->1623" + "default.handlebars->119->1624", + "default3.handlebars->117->1624" ] }, { @@ -5057,8 +5057,8 @@ "zh-chs": "7天电源状态", "zh-cht": "7天電源狀態", "xloc": [ - "default.handlebars->119->1316", - "default3.handlebars->117->1320" + "default.handlebars->119->1317", + "default3.handlebars->117->1321" ] }, { @@ -5087,8 +5087,8 @@ "zh-chs": "7天", "zh-cht": "7天", "xloc": [ - "default.handlebars->119->2084", - "default3.handlebars->117->2080" + "default.handlebars->119->2086", + "default3.handlebars->117->2082" ] }, { @@ -5179,14 +5179,14 @@ "zh-chs": "8小時", "zh-cht": "8小時", "xloc": [ - "default.handlebars->119->1238", - "default.handlebars->119->2078", - "default.handlebars->119->569", - "default.handlebars->119->583", - "default3.handlebars->117->1247", - "default3.handlebars->117->2074", - "default3.handlebars->117->580", - "default3.handlebars->117->594" + "default.handlebars->119->1239", + "default.handlebars->119->2080", + "default.handlebars->119->570", + "default.handlebars->119->584", + "default3.handlebars->117->1248", + "default3.handlebars->117->2076", + "default3.handlebars->117->581", + "default3.handlebars->117->595" ] }, { @@ -5389,12 +5389,12 @@ "zh-cht": "ACM", "xloc": [ "default-mobile.handlebars->53->523", - "default.handlebars->119->2252", - "default.handlebars->119->447", - "default.handlebars->119->931", - "default3.handlebars->117->2263", - "default3.handlebars->117->458", - "default3.handlebars->117->942" + "default.handlebars->119->2254", + "default.handlebars->119->448", + "default.handlebars->119->932", + "default3.handlebars->117->2265", + "default3.handlebars->117->459", + "default3.handlebars->117->943" ] }, { @@ -5472,10 +5472,10 @@ "zh-chs": "AMT", "zh-cht": "AMT", "xloc": [ - "default.handlebars->119->425", - "default.handlebars->119->732", - "default3.handlebars->117->436", - "default3.handlebars->117->743" + "default.handlebars->119->426", + "default.handlebars->119->733", + "default3.handlebars->117->437", + "default3.handlebars->117->744" ] }, { @@ -5484,8 +5484,8 @@ "nl": "AMT Host", "pl": "Host AMT", "xloc": [ - "default.handlebars->119->396", - "default3.handlebars->117->407" + "default.handlebars->119->397", + "default3.handlebars->117->408" ] }, { @@ -5495,8 +5495,8 @@ "nl": "AMT status", "pl": "Stan AMT", "xloc": [ - "default.handlebars->119->397", - "default3.handlebars->117->408" + "default.handlebars->119->398", + "default3.handlebars->117->409" ] }, { @@ -5524,8 +5524,8 @@ "zh-chs": "操作系统", "zh-cht": "AMT操作系統", "xloc": [ - "default.handlebars->119->3389", - "default3.handlebars->117->3394" + "default.handlebars->119->3391", + "default3.handlebars->117->3396" ] }, { @@ -5553,10 +5553,10 @@ "zh-chs": "AMT-Redir", "zh-cht": "AMT-Redir", "xloc": [ - "default.handlebars->119->3240", - "default.handlebars->119->3293", - "default3.handlebars->117->3243", - "default3.handlebars->117->3296" + "default.handlebars->119->3242", + "default.handlebars->119->3295", + "default3.handlebars->117->3245", + "default3.handlebars->117->3298" ] }, { @@ -5584,10 +5584,10 @@ "zh-chs": "AMT-WSMAN", "zh-cht": "AMT-WSMAN", "xloc": [ - "default.handlebars->119->3239", - "default.handlebars->119->3292", - "default3.handlebars->117->3242", - "default3.handlebars->117->3295" + "default.handlebars->119->3241", + "default.handlebars->119->3294", + "default3.handlebars->117->3244", + "default3.handlebars->117->3297" ] }, { @@ -5595,8 +5595,8 @@ "en": "APK", "nl": "APK", "xloc": [ - "default.handlebars->119->659", - "default3.handlebars->117->670" + "default.handlebars->119->660", + "default3.handlebars->117->671" ] }, { @@ -5607,9 +5607,9 @@ "pl": "Wersja APK MeshAgent", "uk": "MeshAgent версія APK", "xloc": [ - "default-mobile.handlebars->53->986", - "default.handlebars->119->658", - "default3.handlebars->117->669" + "default-mobile.handlebars->53->987", + "default.handlebars->119->659", + "default3.handlebars->117->670" ] }, { @@ -5617,8 +5617,8 @@ "en": "ARM 64bit version of macOS Mesh Agent", "nl": "ARM 64bit versie van de macOS Mesh Agent", "xloc": [ - "default.handlebars->119->647", - "default3.handlebars->117->658" + "default.handlebars->119->648", + "default3.handlebars->117->659" ] }, { @@ -5630,10 +5630,10 @@ "pl": "Meshagent wersja ARM 64bit", "uk": "MeshAgent версія ARM 64-біт ", "xloc": [ - "default.handlebars->119->632", - "default.handlebars->119->679", - "default3.handlebars->117->643", - "default3.handlebars->117->690" + "default.handlebars->119->633", + "default.handlebars->119->680", + "default3.handlebars->117->644", + "default3.handlebars->117->691" ] }, { @@ -5822,10 +5822,10 @@ "xloc": [ "default-mobile.handlebars->53->767", "default-mobile.handlebars->53->769", - "default.handlebars->119->950", - "default.handlebars->119->952", - "default3.handlebars->117->961", - "default3.handlebars->117->963" + "default.handlebars->119->951", + "default.handlebars->119->953", + "default3.handlebars->117->962", + "default3.handlebars->117->964" ] }, { @@ -5854,9 +5854,9 @@ "zh-chs": "拒绝访问", "zh-cht": "拒絕存取", "xloc": [ - "default-mobile.handlebars->53->935", - "default.handlebars->119->1777", - "default3.handlebars->117->1775" + "default-mobile.handlebars->53->936", + "default.handlebars->119->1779", + "default3.handlebars->117->1777" ] }, { @@ -5945,8 +5945,8 @@ "zh-chs": "访问服务器档案", "zh-cht": "存取伺服器檔案", "xloc": [ - "default.handlebars->119->2953", - "default3.handlebars->117->2962" + "default.handlebars->119->2955", + "default3.handlebars->117->2964" ] }, { @@ -6073,19 +6073,19 @@ "default-mobile.handlebars->53->492", "default-mobile.handlebars->53->98", "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountSecurity->1->0", - "default.handlebars->119->2113", "default.handlebars->119->2115", - "default.handlebars->119->3444", - "default.handlebars->119->740", - "default.handlebars->119->891", - "default.handlebars->119->893", - "default3.handlebars->117->2130", - "default3.handlebars->117->2131", - "default3.handlebars->117->3447", + "default.handlebars->119->2117", + "default.handlebars->119->3446", + "default.handlebars->119->741", + "default.handlebars->119->892", + "default.handlebars->119->894", + "default3.handlebars->117->2132", + "default3.handlebars->117->2133", "default3.handlebars->117->3449", - "default3.handlebars->117->751", - "default3.handlebars->117->902", - "default3.handlebars->117->904" + "default3.handlebars->117->3451", + "default3.handlebars->117->752", + "default3.handlebars->117->903", + "default3.handlebars->117->905" ] }, { @@ -6114,9 +6114,9 @@ "zh-chs": "帐号设定", "zh-cht": "帳號設定", "xloc": [ - "default-mobile.handlebars->53->1044", - "default.handlebars->119->3313", - "default3.handlebars->117->3318" + "default-mobile.handlebars->53->1045", + "default.handlebars->119->3315", + "default3.handlebars->117->3320" ] }, { @@ -6191,8 +6191,8 @@ "pl": "Konto zmienione di synchronizacji z danymi LDAP.", "uk": "Акаунт змінено на синхронізацію з даними LDAP.", "xloc": [ - "default.handlebars->119->2703", - "default3.handlebars->117->2715" + "default.handlebars->119->2705", + "default3.handlebars->117->2717" ] }, { @@ -6221,8 +6221,8 @@ "zh-chs": "帐户已更改:{0}", "zh-cht": "帳戶已更改:{0}", "xloc": [ - "default.handlebars->119->2615", - "default3.handlebars->117->2627" + "default.handlebars->119->2617", + "default3.handlebars->117->2629" ] }, { @@ -6251,8 +6251,8 @@ "zh-chs": "创建帐户,电子邮件为{0}", "zh-cht": "創建帳戶,電子郵件為{0}", "xloc": [ - "default.handlebars->119->2614", - "default3.handlebars->117->2626" + "default.handlebars->119->2616", + "default3.handlebars->117->2628" ] }, { @@ -6281,8 +6281,8 @@ "zh-chs": "已创建帐户,名称为 {0}。", "zh-cht": "已創建帳戶,名稱為 {0}。", "xloc": [ - "default.handlebars->119->2677", - "default3.handlebars->117->2689" + "default.handlebars->119->2679", + "default3.handlebars->117->2691" ] }, { @@ -6311,8 +6311,8 @@ "zh-chs": "创建帐户,用户名是{0}", "zh-cht": "帳戶已創建,用戶名是{0}", "xloc": [ - "default.handlebars->119->2613", - "default3.handlebars->117->2625" + "default.handlebars->119->2615", + "default3.handlebars->117->2627" ] }, { @@ -6342,12 +6342,12 @@ "zh-cht": "帳戶已被鎖定", "xloc": [ "default-mobile.handlebars->53->69", - "default.handlebars->119->221", - "default.handlebars->119->2772", - "default.handlebars->119->2950", - "default3.handlebars->117->233", - "default3.handlebars->117->2784", - "default3.handlebars->117->2959" + "default.handlebars->119->222", + "default.handlebars->119->2774", + "default.handlebars->119->2952", + "default3.handlebars->117->234", + "default3.handlebars->117->2786", + "default3.handlebars->117->2961" ] }, { @@ -6376,9 +6376,9 @@ "zh-chs": "达到帐户限制。", "zh-cht": "達到帳戶限制。", "xloc": [ - "default-mobile.handlebars->53->1056", - "default.handlebars->119->3325", - "default3.handlebars->117->3330", + "default-mobile.handlebars->53->1057", + "default.handlebars->119->3327", + "default3.handlebars->117->3332", "login-mobile.handlebars->23->6", "login.handlebars->13->8", "login2.handlebars->17->206" @@ -6441,8 +6441,8 @@ "zh-chs": "帐号登录", "zh-cht": "帳號登錄", "xloc": [ - "default.handlebars->119->2550", - "default3.handlebars->117->2562" + "default.handlebars->119->2552", + "default3.handlebars->117->2564" ] }, { @@ -6471,8 +6471,8 @@ "zh-chs": "来自 {0}、{1}、{2} 的帐户登录", "zh-cht": "從 {0}、{1}、{2} 登錄帳戶", "xloc": [ - "default.handlebars->119->2656", - "default3.handlebars->117->2668" + "default.handlebars->119->2658", + "default3.handlebars->117->2670" ] }, { @@ -6486,8 +6486,8 @@ "pl": "Zapisy logowania tokenami użytkownika", "uk": "Записи токенів входу до акаунту", "xloc": [ - "default.handlebars->119->3282", - "default3.handlebars->117->3285" + "default.handlebars->119->3284", + "default3.handlebars->117->3287" ] }, { @@ -6516,8 +6516,8 @@ "zh-chs": "帐户登出", "zh-cht": "帳戶登出", "xloc": [ - "default.handlebars->119->2551", - "default3.handlebars->117->2563" + "default.handlebars->119->2553", + "default3.handlebars->117->2565" ] }, { @@ -6577,8 +6577,8 @@ "zh-chs": "帐户密码已更改:{0}", "zh-cht": "帳戶密碼已更改:{0}", "xloc": [ - "default.handlebars->119->2623", - "default3.handlebars->117->2635" + "default.handlebars->119->2625", + "default3.handlebars->117->2637" ] }, { @@ -6607,8 +6607,8 @@ "zh-chs": "帐户已删除", "zh-cht": "帳戶已刪除", "xloc": [ - "default.handlebars->119->2612", - "default3.handlebars->117->2624" + "default.handlebars->119->2614", + "default3.handlebars->117->2626" ] }, { @@ -6667,10 +6667,10 @@ "zh-chs": "指令", "zh-cht": "指令", "xloc": [ - "default-mobile.handlebars->53->950", - "default.handlebars->119->1792", + "default-mobile.handlebars->53->951", + "default.handlebars->119->1794", "default.handlebars->container->column_l->p42->p42tbl->1->0->8", - "default3.handlebars->117->1790", + "default3.handlebars->117->1792", "default3.handlebars->container->column_l->p42->p42tbl->1->0->17" ] }, @@ -6700,10 +6700,10 @@ "zh-chs": "动作档案", "zh-cht": "動作檔案", "xloc": [ - "default.handlebars->119->1363", - "default.handlebars->119->1365", - "default3.handlebars->117->1365", - "default3.handlebars->117->1367" + "default.handlebars->119->1364", + "default.handlebars->119->1366", + "default3.handlebars->117->1366", + "default3.handlebars->117->1368" ] }, { @@ -6736,11 +6736,11 @@ "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea4->1->3", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->1", "default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea4->1->3", - "default.handlebars->119->1025", + "default.handlebars->119->1026", "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", - "default3.handlebars->117->1036", + "default3.handlebars->117->1037", "default3.handlebars->container->column_l->p11->deskarea0->deskarea1->3", "default3.handlebars->container->column_l->p12->termTable->1->1->0->1->3", "default3.handlebars->container->column_l->p13->p13toolbar->1->0->1->3" @@ -6772,8 +6772,8 @@ "zh-chs": "使用FAT格式的USB密钥在管理控制模式(ACM)中激活英特尔®AMT。将setup.bin放在其上,然后使用此键引导一台或多台计算机。", "zh-cht": "使用FAT格式的USB密鑰在管理控制模式(ACM)中激活英特爾®AMT。將setup.bin放在其上,然後使用此鍵引導一台或多台計算機。", "xloc": [ - "default.handlebars->119->535", - "default3.handlebars->117->546" + "default.handlebars->119->536", + "default3.handlebars->117->547" ] }, { @@ -6860,8 +6860,8 @@ "zh-chs": "如果ACM失败,则激活到CCM", "zh-cht": "如果ACM失敗,則激活到CCM", "xloc": [ - "default.handlebars->119->2307", - "default3.handlebars->117->2316" + "default.handlebars->119->2309", + "default3.handlebars->117->2318" ] }, { @@ -6892,13 +6892,13 @@ "xloc": [ "default-mobile.handlebars->53->518", "default-mobile.handlebars->53->520", - "default-mobile.handlebars->53->837", - "default.handlebars->119->1678", - "default.handlebars->119->924", - "default.handlebars->119->926", - "default3.handlebars->117->1676", - "default3.handlebars->117->935", - "default3.handlebars->117->937" + "default-mobile.handlebars->53->838", + "default.handlebars->119->1680", + "default.handlebars->119->925", + "default.handlebars->119->927", + "default3.handlebars->117->1678", + "default3.handlebars->117->936", + "default3.handlebars->117->938" ] }, { @@ -6927,8 +6927,8 @@ "zh-chs": "激活", "zh-cht": "啟動", "xloc": [ - "default.handlebars->119->332", - "default3.handlebars->117->342" + "default.handlebars->119->333", + "default3.handlebars->117->343" ] }, { @@ -6957,10 +6957,10 @@ "zh-chs": "主动设备共享", "zh-cht": "主動設備共享", "xloc": [ - "default.handlebars->119->1101", - "default.handlebars->119->2256", - "default3.handlebars->117->1112", - "default3.handlebars->117->2267" + "default.handlebars->119->1102", + "default.handlebars->119->2258", + "default3.handlebars->117->1113", + "default3.handlebars->117->2269" ] }, { @@ -6989,8 +6989,8 @@ "zh-chs": "活动登录令牌", "zh-cht": "活動登錄令牌", "xloc": [ - "default.handlebars->119->2144", - "default3.handlebars->117->2159" + "default.handlebars->119->2146", + "default3.handlebars->117->2161" ] }, { @@ -7020,8 +7020,8 @@ "zh-cht": "活躍用戶", "xloc": [ "default-mobile.handlebars->53->796", - "default.handlebars->119->979", - "default3.handlebars->117->990" + "default.handlebars->119->980", + "default3.handlebars->117->991" ] }, { @@ -7051,8 +7051,8 @@ "zh-cht": "活躍用戶", "xloc": [ "default-mobile.handlebars->53->795", - "default.handlebars->119->978", - "default3.handlebars->117->989" + "default.handlebars->119->979", + "default3.handlebars->117->990" ] }, { @@ -7108,10 +7108,10 @@ "zh-cht": "添加", "xloc": [ "default-mobile.handlebars->53->685", - "default.handlebars->119->1453", - "default.handlebars->119->1459", - "default3.handlebars->117->1455", - "default3.handlebars->117->1461", + "default.handlebars->119->1454", + "default.handlebars->119->1460", + "default3.handlebars->117->1456", + "default3.handlebars->117->1462", "sharing-mobile.handlebars->53->41" ] }, @@ -7193,10 +7193,10 @@ "zh-chs": "添加代理", "zh-cht": "新增代理", "xloc": [ - "default.handlebars->119->2246", - "default.handlebars->119->501", - "default3.handlebars->117->2257", - "default3.handlebars->117->512" + "default.handlebars->119->2248", + "default.handlebars->119->502", + "default3.handlebars->117->2259", + "default3.handlebars->117->513" ] }, { @@ -7251,14 +7251,14 @@ "zh-chs": "添加设备", "zh-cht": "新增裝置", "xloc": [ - "default.handlebars->119->2250", - "default.handlebars->119->2925", - "default.handlebars->119->3120", - "default.handlebars->119->505", - "default3.handlebars->117->2261", - "default3.handlebars->117->2934", - "default3.handlebars->117->3123", - "default3.handlebars->117->516" + "default.handlebars->119->2252", + "default.handlebars->119->2927", + "default.handlebars->119->3122", + "default.handlebars->119->506", + "default3.handlebars->117->2263", + "default3.handlebars->117->2936", + "default3.handlebars->117->3125", + "default3.handlebars->117->517" ] }, { @@ -7287,8 +7287,8 @@ "zh-chs": "添加设备日志", "zh-cht": "新增裝置日誌", "xloc": [ - "default.handlebars->119->1187", - "default3.handlebars->117->1196" + "default.handlebars->119->1188", + "default3.handlebars->117->1197" ] }, { @@ -7317,14 +7317,14 @@ "zh-chs": "添加设备组", "zh-cht": "新增裝置群", "xloc": [ - "default.handlebars->119->2395", - "default.handlebars->119->2919", - "default.handlebars->119->3108", - "default.handlebars->119->401", - "default3.handlebars->117->2407", - "default3.handlebars->117->2928", - "default3.handlebars->117->3111", - "default3.handlebars->117->412" + "default.handlebars->119->2397", + "default.handlebars->119->2921", + "default.handlebars->119->3110", + "default.handlebars->119->402", + "default3.handlebars->117->2409", + "default3.handlebars->117->2930", + "default3.handlebars->117->3113", + "default3.handlebars->117->413" ] }, { @@ -7353,8 +7353,8 @@ "zh-chs": "添加设备组权限", "zh-cht": "新增裝置群權限", "xloc": [ - "default.handlebars->119->2392", - "default3.handlebars->117->2404" + "default.handlebars->119->2394", + "default3.handlebars->117->2406" ] }, { @@ -7383,10 +7383,10 @@ "zh-chs": "添加设备权限", "zh-cht": "新增裝置權限", "xloc": [ - "default.handlebars->119->2397", "default.handlebars->119->2399", - "default3.handlebars->117->2409", - "default3.handlebars->117->2411" + "default.handlebars->119->2401", + "default3.handlebars->117->2411", + "default3.handlebars->117->2413" ] }, { @@ -7441,8 +7441,8 @@ "zh-chs": "添加英特尔®AMT设备", "zh-cht": "新增Intel® AMT裝置", "xloc": [ - "default.handlebars->119->525", - "default3.handlebars->117->536" + "default.handlebars->119->526", + "default3.handlebars->117->537" ] }, { @@ -7471,8 +7471,8 @@ "zh-chs": "新增密钥", "zh-cht": "新增密鑰", "xloc": [ - "default.handlebars->119->251", - "default3.handlebars->117->261" + "default.handlebars->119->252", + "default3.handlebars->117->262" ] }, { @@ -7501,8 +7501,8 @@ "zh-chs": "添加本地", "zh-cht": "新增本地", "xloc": [ - "default.handlebars->119->495", - "default3.handlebars->117->506" + "default.handlebars->119->496", + "default3.handlebars->117->507" ] }, { @@ -7557,8 +7557,8 @@ "zh-chs": "添加成员身份", "zh-cht": "新增成員身份", "xloc": [ - "default.handlebars->119->3140", - "default3.handlebars->117->3143" + "default.handlebars->119->3142", + "default3.handlebars->117->3145" ] }, { @@ -7587,8 +7587,8 @@ "zh-chs": "添加 Mesh Agent", "zh-cht": "新增 Mesh Agent", "xloc": [ - "default.handlebars->119->696", - "default3.handlebars->117->707" + "default.handlebars->119->697", + "default3.handlebars->117->708" ] }, { @@ -7643,18 +7643,18 @@ "zh-chs": "添加安全密钥", "zh-cht": "新增安全密鑰", "xloc": [ - "default.handlebars->119->1859", - "default.handlebars->119->1860", - "default.handlebars->119->255", - "default.handlebars->119->257", - "default.handlebars->119->260", - "default.handlebars->119->262", - "default3.handlebars->117->1855", - "default3.handlebars->117->1856", - "default3.handlebars->117->265", - "default3.handlebars->117->267", - "default3.handlebars->117->270", - "default3.handlebars->117->272" + "default.handlebars->119->1861", + "default.handlebars->119->1862", + "default.handlebars->119->256", + "default.handlebars->119->258", + "default.handlebars->119->261", + "default.handlebars->119->263", + "default3.handlebars->117->1857", + "default3.handlebars->117->1858", + "default3.handlebars->117->266", + "default3.handlebars->117->268", + "default3.handlebars->117->271", + "default3.handlebars->117->273" ] }, { @@ -7683,9 +7683,9 @@ "zh-chs": "添加用户", "zh-cht": "新增用戶", "xloc": [ - "default-mobile.handlebars->53->968", - "default.handlebars->119->1093", - "default3.handlebars->117->1104" + "default-mobile.handlebars->53->969", + "default.handlebars->119->1094", + "default3.handlebars->117->1105" ] }, { @@ -7714,8 +7714,8 @@ "zh-chs": "添加用户设备权限", "zh-cht": "新增用戶裝置權限", "xloc": [ - "default.handlebars->119->2402", - "default3.handlebars->117->2414" + "default.handlebars->119->2404", + "default3.handlebars->117->2416" ] }, { @@ -7744,14 +7744,14 @@ "zh-chs": "添加用户组", "zh-cht": "新增用戶群", "xloc": [ - "default.handlebars->119->1094", - "default.handlebars->119->2240", - "default.handlebars->119->2394", - "default.handlebars->119->3114", - "default3.handlebars->117->1105", - "default3.handlebars->117->2251", - "default3.handlebars->117->2406", - "default3.handlebars->117->3117" + "default.handlebars->119->1095", + "default.handlebars->119->2242", + "default.handlebars->119->2396", + "default.handlebars->119->3116", + "default3.handlebars->117->1106", + "default3.handlebars->117->2253", + "default3.handlebars->117->2408", + "default3.handlebars->117->3119" ] }, { @@ -7780,8 +7780,8 @@ "zh-chs": "添加用户组设备权限", "zh-cht": "新增用戶群裝置權限", "xloc": [ - "default.handlebars->119->2404", - "default3.handlebars->117->2416" + "default.handlebars->119->2406", + "default3.handlebars->117->2418" ] }, { @@ -7810,7 +7810,7 @@ "zh-chs": "将用户添加到设备组", "zh-cht": "將用戶新增到裝置群", "xloc": [ - "default-mobile.handlebars->53->1009" + "default-mobile.handlebars->53->1010" ] }, { @@ -7865,10 +7865,10 @@ "zh-chs": "添加用户", "zh-cht": "新增用戶", "xloc": [ - "default.handlebars->119->2239", - "default.handlebars->119->2914", - "default3.handlebars->117->2250", - "default3.handlebars->117->2923" + "default.handlebars->119->2241", + "default.handlebars->119->2916", + "default3.handlebars->117->2252", + "default3.handlebars->117->2925" ] }, { @@ -7897,8 +7897,8 @@ "zh-chs": "将用户添加到设备组", "zh-cht": "將用戶新增到裝置群", "xloc": [ - "default.handlebars->119->2391", - "default3.handlebars->117->2403" + "default.handlebars->119->2393", + "default3.handlebars->117->2405" ] }, { @@ -7927,8 +7927,8 @@ "zh-chs": "将用户添加到用户组", "zh-cht": "將用戶新增到用戶群", "xloc": [ - "default.handlebars->119->2949", - "default3.handlebars->117->2958" + "default.handlebars->119->2951", + "default3.handlebars->117->2960" ] }, { @@ -7957,8 +7957,8 @@ "zh-chs": "添加YubiKey®OTP", "zh-cht": "新增YubiKey®OTP", "xloc": [ - "default.handlebars->119->252", - "default3.handlebars->117->262" + "default.handlebars->119->253", + "default3.handlebars->117->263" ] }, { @@ -7987,8 +7987,8 @@ "zh-chs": "将本地设备添加到设备组 \\\"{0}\\\"。", "zh-cht": "將本地設備添加到設備組 \\\"{0}\\\"。", "xloc": [ - "default.handlebars->119->506", - "default3.handlebars->117->517" + "default.handlebars->119->507", + "default3.handlebars->117->518" ] }, { @@ -8017,8 +8017,8 @@ "zh-chs": "通过扫描本地网络添加新的英特尔®AMT计算机。", "zh-cht": "通過掃描本地網絡新增新的Intel® AMT電腦。", "xloc": [ - "default.handlebars->119->496", - "default3.handlebars->117->507" + "default.handlebars->119->497", + "default3.handlebars->117->508" ] }, { @@ -8073,8 +8073,8 @@ "zh-chs": "添加位于本地网络上的新英特尔®AMT计算机。", "zh-cht": "新增位於本地網絡上的新Intel® AMT電腦。", "xloc": [ - "default.handlebars->119->494", - "default3.handlebars->117->505" + "default.handlebars->119->495", + "default3.handlebars->117->506" ] }, { @@ -8103,8 +8103,8 @@ "zh-chs": "将新的英特尔®AMT设备添加到设备组“{0}”。", "zh-cht": "將新的Intel® AMT裝置新增到裝置群“{0}”。", "xloc": [ - "default.handlebars->119->515", - "default3.handlebars->117->526" + "default.handlebars->119->516", + "default3.handlebars->117->527" ] }, { @@ -8133,10 +8133,10 @@ "zh-chs": "通过安装Mesh Agent将新计算机添加到该设备组。", "zh-cht": "通過安裝Mesh Agent將新電腦新增到該裝置群。", "xloc": [ - "default.handlebars->119->2245", - "default.handlebars->119->500", - "default3.handlebars->117->2256", - "default3.handlebars->117->511" + "default.handlebars->119->2247", + "default.handlebars->119->501", + "default3.handlebars->117->2258", + "default3.handlebars->117->512" ] }, { @@ -8165,10 +8165,10 @@ "zh-chs": "添加位于本地网络上的设备。", "zh-cht": "添加位於本地網絡上的設備。", "xloc": [ - "default.handlebars->119->2249", - "default.handlebars->119->504", - "default3.handlebars->117->2260", - "default3.handlebars->117->515" + "default.handlebars->119->2251", + "default.handlebars->119->505", + "default3.handlebars->117->2262", + "default3.handlebars->117->516" ] }, { @@ -8197,8 +8197,8 @@ "zh-chs": "添加本地设备", "zh-cht": "添加本地設備", "xloc": [ - "default.handlebars->119->514", - "default3.handlebars->117->525" + "default.handlebars->119->515", + "default3.handlebars->117->526" ] }, { @@ -8227,8 +8227,8 @@ "zh-chs": "添加标签", "zh-cht": "新增標籤", "xloc": [ - "default.handlebars->119->772", - "default3.handlebars->117->783" + "default.handlebars->119->773", + "default3.handlebars->117->784" ] }, { @@ -8257,8 +8257,8 @@ "zh-chs": "通过定期在远程设备上以管理员身份运行MeshCmd,添加,激活和配置Intel® AMT以将“{0}”分组。", "zh-cht": "通過定期在遠程設備上以管理員身份運行MeshCmd,添加,激活和配置Intel® AMT以將“{0}”分組。", "xloc": [ - "default.handlebars->119->532", - "default3.handlebars->117->543" + "default.handlebars->119->533", + "default3.handlebars->117->544" ] }, { @@ -8287,8 +8287,8 @@ "zh-chs": "添加了身份验证应用程序", "zh-cht": "添加了身份驗證應用程序", "xloc": [ - "default.handlebars->119->2639", - "default3.handlebars->117->2651" + "default.handlebars->119->2641", + "default3.handlebars->117->2653" ] }, { @@ -8317,8 +8317,8 @@ "zh-chs": "已将设备共享{0}从{1}添加到{2}", "zh-cht": "已將設備共享{0}從{1}添加到{2}", "xloc": [ - "default.handlebars->119->2650", - "default3.handlebars->117->2662" + "default.handlebars->119->2652", + "default3.handlebars->117->2664" ] }, { @@ -8347,8 +8347,8 @@ "zh-chs": "添加了每天重复的设备共享 {0}。", "zh-cht": "添加了每天重複的設備共享 {0}。", "xloc": [ - "default.handlebars->119->2687", - "default3.handlebars->117->2699" + "default.handlebars->119->2689", + "default3.handlebars->117->2701" ] }, { @@ -8377,8 +8377,8 @@ "zh-chs": "添加了每周重复的设备共享 {0}。", "zh-cht": "添加了每週重複的設備共享 {0}。", "xloc": [ - "default.handlebars->119->2688", - "default3.handlebars->117->2700" + "default.handlebars->119->2690", + "default3.handlebars->117->2702" ] }, { @@ -8407,8 +8407,8 @@ "zh-chs": "添加了无限时间的设备共享 {0}。", "zh-cht": "添加了無限時間的設備共享 {0}。", "xloc": [ - "default.handlebars->119->2680", - "default3.handlebars->117->2692" + "default.handlebars->119->2682", + "default3.handlebars->117->2694" ] }, { @@ -8437,10 +8437,10 @@ "zh-chs": "已将设备{0}添加到设备组{1}", "zh-cht": "已將設備{0}添加到設備組{1}", "xloc": [ - "default.handlebars->119->2606", - "default.handlebars->119->2633", - "default3.handlebars->117->2618", - "default3.handlebars->117->2645" + "default.handlebars->119->2608", + "default.handlebars->119->2635", + "default3.handlebars->117->2620", + "default3.handlebars->117->2647" ] }, { @@ -8469,8 +8469,8 @@ "zh-chs": "添加登录令牌", "zh-cht": "添加了登錄令牌", "xloc": [ - "default.handlebars->119->2664", - "default3.handlebars->117->2676" + "default.handlebars->119->2666", + "default3.handlebars->117->2678" ] }, { @@ -8499,8 +8499,8 @@ "zh-chs": "新增推送通知认证装置", "zh-cht": "增加推送通知認證設備", "xloc": [ - "default.handlebars->119->2662", - "default3.handlebars->117->2674" + "default.handlebars->119->2664", + "default3.handlebars->117->2676" ] }, { @@ -8529,8 +8529,8 @@ "zh-chs": "添加了安全密钥", "zh-cht": "添加了安全密鑰", "xloc": [ - "default.handlebars->119->2644", - "default3.handlebars->117->2656" + "default.handlebars->119->2646", + "default3.handlebars->117->2658" ] }, { @@ -8559,8 +8559,8 @@ "zh-chs": "已将用户组{0}添加到设备组{1}", "zh-cht": "已將用戶組{0}添加到設備組{1}", "xloc": [ - "default.handlebars->119->2617", - "default3.handlebars->117->2629" + "default.handlebars->119->2619", + "default3.handlebars->117->2631" ] }, { @@ -8589,10 +8589,10 @@ "zh-chs": "已将用户{0}添加到用户组{1}", "zh-cht": "已將用戶{0}添加到用戶組{1}", "xloc": [ - "default.handlebars->119->2620", - "default.handlebars->119->2629", - "default3.handlebars->117->2632", - "default3.handlebars->117->2641" + "default.handlebars->119->2622", + "default.handlebars->119->2631", + "default3.handlebars->117->2634", + "default3.handlebars->117->2643" ] }, { @@ -8621,8 +8621,8 @@ "zh-chs": "地址", "zh-cht": "地址", "xloc": [ - "default.handlebars->119->394", - "default3.handlebars->117->405" + "default.handlebars->119->395", + "default3.handlebars->117->406" ] }, { @@ -8680,9 +8680,9 @@ "zh-chs": "管理员控制模式(ACM)", "zh-cht": "管理員控制模式(ACM)", "xloc": [ - "default-mobile.handlebars->53->839", - "default.handlebars->119->1680", - "default3.handlebars->117->1678" + "default-mobile.handlebars->53->840", + "default.handlebars->119->1682", + "default3.handlebars->117->1680" ] }, { @@ -8711,9 +8711,9 @@ "zh-chs": "管理员凭证", "zh-cht": "管理員憑證", "xloc": [ - "default-mobile.handlebars->53->845", - "default.handlebars->119->1686", - "default3.handlebars->117->1684" + "default-mobile.handlebars->53->846", + "default.handlebars->119->1688", + "default3.handlebars->117->1686" ] }, { @@ -8742,15 +8742,15 @@ "zh-chs": "管理员PowerShell", "zh-cht": "管理員PowerShell", "xloc": [ - "default.handlebars->119->3160", - "default.handlebars->119->3170", - "default.handlebars->119->3236", - "default.handlebars->119->3289", + "default.handlebars->119->3162", + "default.handlebars->119->3172", + "default.handlebars->119->3238", + "default.handlebars->119->3291", "default.handlebars->termShellContextMenu->3", - "default3.handlebars->117->3163", - "default3.handlebars->117->3173", - "default3.handlebars->117->3239", - "default3.handlebars->117->3292", + "default3.handlebars->117->3165", + "default3.handlebars->117->3175", + "default3.handlebars->117->3241", + "default3.handlebars->117->3294", "default3.handlebars->container->column_l->p12->termTable->1->1->0->1->1->connectbutton2span->5->3->0", "player.handlebars->29->29", "xterm.handlebars->termShellContextMenu->cxtermps" @@ -8782,8 +8782,8 @@ "zh-chs": "管理领域", "zh-cht": "管理領域", "xloc": [ - "default.handlebars->119->3001", - "default3.handlebars->117->3010" + "default.handlebars->119->3003", + "default3.handlebars->117->3012" ] }, { @@ -8843,8 +8843,8 @@ "zh-chs": "管理领域", "zh-cht": "管理領域", "xloc": [ - "default.handlebars->119->2846", - "default3.handlebars->117->2855" + "default.handlebars->119->2848", + "default3.handlebars->117->2857" ] }, { @@ -8873,8 +8873,8 @@ "zh-chs": "管理员", "zh-cht": "管理員", "xloc": [ - "default.handlebars->119->2764", - "default3.handlebars->117->2776" + "default.handlebars->119->2766", + "default3.handlebars->117->2778" ] }, { @@ -8904,8 +8904,8 @@ "zh-cht": "南非文", "xloc": [ "default-mobile.handlebars->53->115", - "default.handlebars->119->1862", - "default3.handlebars->117->1858", + "default.handlebars->119->1864", + "default3.handlebars->117->1860", "login2.handlebars->17->1" ] }, @@ -8939,18 +8939,18 @@ "default-mobile.handlebars->53->482", "default-mobile.handlebars->53->539", "default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1", - "default.handlebars->119->2475", - "default.handlebars->119->2488", - "default.handlebars->119->3387", - "default.handlebars->119->421", - "default.handlebars->119->728", + "default.handlebars->119->2477", + "default.handlebars->119->2490", + "default.handlebars->119->3389", + "default.handlebars->119->422", + "default.handlebars->119->729", "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1", "default.handlebars->container->dialog->dialogBody->dialog7->1->td7meshkvm", - "default3.handlebars->117->2487", - "default3.handlebars->117->2500", - "default3.handlebars->117->3392", - "default3.handlebars->117->432", - "default3.handlebars->117->739", + "default3.handlebars->117->2489", + "default3.handlebars->117->2502", + "default3.handlebars->117->3394", + "default3.handlebars->117->433", + "default3.handlebars->117->740", "default3.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1", "default3.handlebars->container->xxAddAgentModal->xxAddAgentModalConf->1->xxAddAgentBody->dialog7->1->td7meshkvm" ] @@ -8981,10 +8981,10 @@ "zh-chs": "代理+英特尔AMT", "zh-cht": "代理+Intel® AMT", "xloc": [ - "default.handlebars->119->2477", - "default.handlebars->119->2490", - "default3.handlebars->117->2489", - "default3.handlebars->117->2502" + "default.handlebars->119->2479", + "default.handlebars->119->2492", + "default3.handlebars->117->2491", + "default3.handlebars->117->2504" ] }, { @@ -9044,12 +9044,12 @@ "zh-chs": "代理控制台", "zh-cht": "代理控制台", "xloc": [ - "default-mobile.handlebars->53->1015", + "default-mobile.handlebars->53->1016", "default-mobile.handlebars->53->621", - "default.handlebars->119->2412", - "default.handlebars->119->818", - "default3.handlebars->117->2424", - "default3.handlebars->117->829" + "default.handlebars->119->2414", + "default.handlebars->119->819", + "default3.handlebars->117->2426", + "default3.handlebars->117->830" ] }, { @@ -9078,8 +9078,8 @@ "zh-chs": "代理错误计数器", "zh-cht": "代理錯誤計數器", "xloc": [ - "default.handlebars->119->3355", - "default3.handlebars->117->3360" + "default.handlebars->119->3357", + "default3.handlebars->117->3362" ] }, { @@ -9108,8 +9108,8 @@ "zh-chs": "代理IP地址", "zh-cht": "代理 IP 地址", "xloc": [ - "default.handlebars->119->362", - "default3.handlebars->117->373" + "default.handlebars->119->363", + "default3.handlebars->117->374" ] }, { @@ -9185,8 +9185,8 @@ "zh-cht": "代理訊息", "xloc": [ "default-mobile.handlebars->53->455", - "default.handlebars->119->485", - "default3.handlebars->117->496" + "default.handlebars->119->486", + "default3.handlebars->117->497" ] }, { @@ -9301,10 +9301,10 @@ "zh-chs": "代理自行共享", "zh-cht": "代理自行共享", "xloc": [ - "default.handlebars->119->1122", - "default.handlebars->119->2277", - "default3.handlebars->117->1133", - "default3.handlebars->117->2288" + "default.handlebars->119->1123", + "default.handlebars->119->2279", + "default3.handlebars->117->1134", + "default3.handlebars->117->2290" ] }, { @@ -9333,8 +9333,8 @@ "zh-chs": "代理会话", "zh-cht": "代理時段", "xloc": [ - "default.handlebars->119->3372", - "default3.handlebars->117->3377" + "default.handlebars->119->3374", + "default3.handlebars->117->3379" ] }, { @@ -9390,8 +9390,8 @@ "zh-cht": "代理標籤", "xloc": [ "default-mobile.handlebars->53->536", - "default.handlebars->119->947", - "default3.handlebars->117->958" + "default.handlebars->119->948", + "default3.handlebars->117->959" ] }, { @@ -9420,10 +9420,10 @@ "zh-chs": "代理类型", "zh-cht": "代理類型", "xloc": [ - "default.handlebars->119->351", - "default.handlebars->119->384", - "default3.handlebars->117->362", - "default3.handlebars->117->395" + "default.handlebars->119->352", + "default.handlebars->119->385", + "default3.handlebars->117->363", + "default3.handlebars->117->396" ] }, { @@ -9452,9 +9452,9 @@ "zh-chs": "代理类型", "zh-cht": "代理類型", "xloc": [ - "default.handlebars->119->2486", + "default.handlebars->119->2488", "default.handlebars->container->column_l->p21->p21main->1->1->meshOsChartDiv->1", - "default3.handlebars->117->2498", + "default3.handlebars->117->2500", "default3.handlebars->container->column_l->p21->p21main->1->1->meshOsChartDiv->1" ] }, @@ -9484,10 +9484,10 @@ "zh-chs": "代理版本", "zh-cht": "代理版本", "xloc": [ - "default.handlebars->119->352", - "default.handlebars->119->385", - "default3.handlebars->117->363", - "default3.handlebars->117->396" + "default.handlebars->119->353", + "default.handlebars->119->386", + "default3.handlebars->117->364", + "default3.handlebars->117->397" ] }, { @@ -9516,8 +9516,8 @@ "zh-chs": "代理关闭了与服务器压缩的{0}%代理会话。已发送:{1},已压缩:{2}", "zh-cht": "代理關閉了與{0}%代理到服務器壓縮的會話。已發送:{1},已壓縮:{2}", "xloc": [ - "default.handlebars->119->2603", - "default3.handlebars->117->2615" + "default.handlebars->119->2605", + "default3.handlebars->117->2617" ] }, { @@ -9546,12 +9546,12 @@ "zh-chs": "代理已连接", "zh-cht": "代理已連接", "xloc": [ - "default.handlebars->119->1080", "default.handlebars->119->1081", - "default.handlebars->119->271", - "default3.handlebars->117->1091", + "default.handlebars->119->1082", + "default.handlebars->119->272", "default3.handlebars->117->1092", - "default3.handlebars->117->281" + "default3.handlebars->117->1093", + "default3.handlebars->117->282" ] }, { @@ -9580,8 +9580,8 @@ "zh-chs": "与有限特权相关的代理", "zh-cht": "與有限特權相關的代理", "xloc": [ - "default.handlebars->119->272", - "default3.handlebars->117->282" + "default.handlebars->119->273", + "default3.handlebars->117->283" ] }, { @@ -9610,8 +9610,8 @@ "zh-chs": "代理已断开连接", "zh-cht": "代理已斷開連接", "xloc": [ - "default.handlebars->119->276", - "default3.handlebars->117->286" + "default.handlebars->119->277", + "default3.handlebars->117->287" ] }, { @@ -9748,9 +9748,9 @@ "zh-chs": "代理离线", "zh-cht": "代理離線", "xloc": [ - "default-mobile.handlebars->53->933", - "default.handlebars->119->1775", - "default3.handlebars->117->1773" + "default-mobile.handlebars->53->934", + "default.handlebars->119->1777", + "default3.handlebars->117->1775" ] }, { @@ -9779,9 +9779,9 @@ "zh-chs": "代理在线", "zh-cht": "代理在線", "xloc": [ - "default-mobile.handlebars->53->932", - "default.handlebars->119->1774", - "default3.handlebars->117->1772" + "default-mobile.handlebars->53->933", + "default.handlebars->119->1776", + "default3.handlebars->117->1774" ] }, { @@ -9888,8 +9888,8 @@ "zh-chs": "代理在特权降低的远程设备上运行。", "zh-cht": "代理在特權降低的遠程設備上運行。", "xloc": [ - "default.handlebars->119->1074", - "default3.handlebars->117->1085" + "default.handlebars->119->1075", + "default3.handlebars->117->1086" ] }, { @@ -10022,12 +10022,12 @@ "zh-chs": "代理", "zh-cht": "代理", "xloc": [ - "default.handlebars->119->2443", - "default.handlebars->119->3400", - "default.handlebars->119->588", - "default3.handlebars->117->2455", - "default3.handlebars->117->3405", - "default3.handlebars->117->599" + "default.handlebars->119->2445", + "default.handlebars->119->3402", + "default.handlebars->119->589", + "default3.handlebars->117->2457", + "default3.handlebars->117->3407", + "default3.handlebars->117->600" ] }, { @@ -10057,8 +10057,8 @@ "zh-cht": "阿爾巴尼亞文", "xloc": [ "default-mobile.handlebars->53->116", - "default.handlebars->119->1863", - "default3.handlebars->117->1859", + "default.handlebars->119->1865", + "default3.handlebars->117->1861", "login2.handlebars->17->2" ] }, @@ -10069,10 +10069,10 @@ "pl": "Okno Powiadomienia", "uk": "Вікно Попередження", "xloc": [ - "default.handlebars->119->1206", - "default.handlebars->119->781", - "default3.handlebars->117->1215", - "default3.handlebars->117->792" + "default.handlebars->119->1207", + "default.handlebars->119->782", + "default3.handlebars->117->1216", + "default3.handlebars->117->793" ] }, { @@ -10104,9 +10104,9 @@ "default-mobile.handlebars->53->374", "default-mobile.handlebars->53->723", "default-mobile.handlebars->53->725", - "default.handlebars->119->3204", + "default.handlebars->119->3206", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar->DevFilterSelect->1", - "default3.handlebars->117->3207", + "default3.handlebars->117->3209", "default3.handlebars->container->column_l->p1->devListToolbarSpan->devListToolbar->DevFilterSelect->1", "sharing-mobile.handlebars->53->80", "sharing-mobile.handlebars->53->82" @@ -10138,8 +10138,8 @@ "zh-chs": "全部可用", "zh-cht": "全部可用", "xloc": [ - "default.handlebars->119->2726", - "default3.handlebars->117->2738" + "default.handlebars->119->2728", + "default3.handlebars->117->2740" ] }, { @@ -10168,10 +10168,10 @@ "zh-chs": "所有可用的代理", "zh-cht": "所有可用的代理", "xloc": [ - "default.handlebars->119->2444", - "default.handlebars->119->589", - "default3.handlebars->117->2456", - "default3.handlebars->117->600" + "default.handlebars->119->2446", + "default.handlebars->119->590", + "default3.handlebars->117->2458", + "default3.handlebars->117->601" ] }, { @@ -10200,8 +10200,8 @@ "zh-chs": "所有显示", "zh-cht": "所有顯示", "xloc": [ - "default.handlebars->119->1504", - "default3.handlebars->117->1504" + "default.handlebars->119->1505", + "default3.handlebars->117->1505" ] }, { @@ -10230,8 +10230,8 @@ "zh-chs": "所有事件", "zh-cht": "所有事件", "xloc": [ - "default.handlebars->119->2724", - "default3.handlebars->117->2736" + "default.handlebars->119->2726", + "default3.handlebars->117->2738" ] }, { @@ -10260,12 +10260,12 @@ "zh-chs": "全部聚焦", "zh-cht": "全部聚焦", "xloc": [ - "default.handlebars->119->1422", - "default.handlebars->119->1424", + "default.handlebars->119->1423", "default.handlebars->119->1425", - "default3.handlebars->117->1423", - "default3.handlebars->117->1426", - "default3.handlebars->117->1427" + "default.handlebars->119->1426", + "default3.handlebars->117->1424", + "default3.handlebars->117->1427", + "default3.handlebars->117->1428" ] }, { @@ -10306,7 +10306,7 @@ "zh-chs": "所有主题", "zh-cht": "所有主題", "xloc": [ - "default3.handlebars->117->2127" + "default3.handlebars->117->2129" ] }, { @@ -10341,8 +10341,8 @@ { "en": "Allow to override server device name until next connection", "xloc": [ - "default.handlebars->119->2349", - "default3.handlebars->117->2361" + "default.handlebars->119->2351", + "default3.handlebars->117->2363" ] }, { @@ -10371,10 +10371,10 @@ "zh-chs": "允许用户管理此设备组和该组中的设备。", "zh-cht": "允許用戶管理此裝置群和該群中的裝置。", "xloc": [ - "default.handlebars->119->2356", - "default.handlebars->119->2946", - "default3.handlebars->117->2368", - "default3.handlebars->117->2955" + "default.handlebars->119->2358", + "default.handlebars->119->2948", + "default3.handlebars->117->2370", + "default3.handlebars->117->2957" ] }, { @@ -10403,8 +10403,8 @@ "zh-chs": "允许用户管理此设备。", "zh-cht": "允許用戶管理此裝置。", "xloc": [ - "default.handlebars->119->2357", - "default3.handlebars->117->2369" + "default.handlebars->119->2359", + "default3.handlebars->117->2371" ] }, { @@ -10433,8 +10433,8 @@ "zh-chs": "允许", "zh-cht": "允許", "xloc": [ - "default.handlebars->119->299", - "default3.handlebars->117->309" + "default.handlebars->119->300", + "default3.handlebars->117->310" ] }, { @@ -10522,10 +10522,10 @@ "xloc": [ "default-mobile.handlebars->53->678", "default-mobile.handlebars->53->682", - "default.handlebars->119->1446", - "default.handlebars->119->1450", - "default3.handlebars->117->1448", - "default3.handlebars->117->1452", + "default.handlebars->119->1447", + "default.handlebars->119->1451", + "default3.handlebars->117->1449", + "default3.handlebars->117->1453", "sharing-mobile.handlebars->53->34", "sharing-mobile.handlebars->53->38" ] @@ -10556,8 +10556,8 @@ "zh-chs": "替代Shell", "zh-cht": "替代Shell", "xloc": [ - "default.handlebars->119->1412", - "default3.handlebars->117->1413" + "default.handlebars->119->1413", + "default3.handlebars->117->1414" ] }, { @@ -10648,8 +10648,8 @@ "zh-chs": "备用(F10 = ESC + 0)", "zh-cht": "備用(F10 = ESC + 0)", "xloc": [ - "default.handlebars->119->1538", - "default3.handlebars->117->1538", + "default.handlebars->119->1539", + "default3.handlebars->117->1539", "sharing.handlebars->47->37" ] }, @@ -10746,14 +10746,14 @@ "zh-chs": "一直通知", "zh-cht": "一直通知", "xloc": [ - "default.handlebars->119->2216", - "default.handlebars->119->2905", - "default.handlebars->119->3010", - "default.handlebars->119->988", - "default3.handlebars->117->2227", - "default3.handlebars->117->2914", - "default3.handlebars->117->3019", - "default3.handlebars->117->999" + "default.handlebars->119->2218", + "default.handlebars->119->2907", + "default.handlebars->119->3012", + "default.handlebars->119->989", + "default3.handlebars->117->1000", + "default3.handlebars->117->2229", + "default3.handlebars->117->2916", + "default3.handlebars->117->3021" ] }, { @@ -10782,14 +10782,14 @@ "zh-chs": "一直提示", "zh-cht": "一直提示", "xloc": [ - "default.handlebars->119->2217", - "default.handlebars->119->2906", - "default.handlebars->119->3011", - "default.handlebars->119->989", - "default3.handlebars->117->1000", - "default3.handlebars->117->2228", - "default3.handlebars->117->2915", - "default3.handlebars->117->3020" + "default.handlebars->119->2219", + "default.handlebars->119->2908", + "default.handlebars->119->3013", + "default.handlebars->119->990", + "default3.handlebars->117->1001", + "default3.handlebars->117->2230", + "default3.handlebars->117->2917", + "default3.handlebars->117->3022" ] }, { @@ -10822,8 +10822,8 @@ "en": "Amazon App Store", "nl": "Amazon App Store", "xloc": [ - "default.handlebars->119->656", - "default3.handlebars->117->667" + "default.handlebars->119->657", + "default3.handlebars->117->668" ] }, { @@ -10896,8 +10896,8 @@ "pl": "Wystąpił nieznany błąd.", "uk": "Сталася невідома помилка.", "xloc": [ - "default.handlebars->119->3149", - "default3.handlebars->117->3152" + "default.handlebars->119->3151", + "default3.handlebars->117->3154" ] }, { @@ -10962,9 +10962,9 @@ "zh-chs": "Android APK", "zh-cht": "Android APK", "xloc": [ - "default-mobile.handlebars->53->987", - "default.handlebars->119->657", - "default3.handlebars->117->668" + "default-mobile.handlebars->53->988", + "default.handlebars->119->658", + "default3.handlebars->117->669" ] }, { @@ -11048,7 +11048,7 @@ "zh-chs": "安卓安装", "zh-cht": "安卓安裝", "xloc": [ - "default-mobile.handlebars->53->989" + "default-mobile.handlebars->53->990" ] }, { @@ -11057,8 +11057,8 @@ "nl": "Android MeshAgent", "uk": "Android MeshAgent", "xloc": [ - "default.handlebars->119->594", - "default3.handlebars->117->605" + "default.handlebars->119->595", + "default3.handlebars->117->606" ] }, { @@ -11067,9 +11067,9 @@ "nl": "Android Versie", "uk": "Версія Android", "xloc": [ - "default-mobile.handlebars->53->812", - "default.handlebars->119->1643", - "default3.handlebars->117->1643" + "default-mobile.handlebars->53->813", + "default.handlebars->119->1645", + "default3.handlebars->117->1645" ] }, { @@ -11129,10 +11129,10 @@ "zh-chs": "杀毒软件未激活", "zh-cht": "殺毒軟件未激活", "xloc": [ - "default.handlebars->119->2479", - "default.handlebars->119->2493", - "default3.handlebars->117->2491", - "default3.handlebars->117->2505" + "default.handlebars->119->2481", + "default.handlebars->119->2495", + "default3.handlebars->117->2493", + "default3.handlebars->117->2507" ] }, { @@ -11162,8 +11162,8 @@ "zh-cht": "防毒軟體", "xloc": [ "default-mobile.handlebars->53->793", - "default.handlebars->119->976", - "default3.handlebars->117->987" + "default.handlebars->119->977", + "default3.handlebars->117->988" ] }, { @@ -11192,8 +11192,8 @@ "zh-chs": "任何可支持的", "zh-cht": "任何可支持的", "xloc": [ - "default.handlebars->119->562", - "default3.handlebars->117->573" + "default.handlebars->119->563", + "default3.handlebars->117->574" ] }, { @@ -11283,8 +11283,8 @@ "zh-chs": "苹果macOS", "zh-cht": "蘋果macOS", "xloc": [ - "default.handlebars->119->604", - "default3.handlebars->117->615" + "default.handlebars->119->605", + "default3.handlebars->117->616" ] }, { @@ -11293,8 +11293,8 @@ "nl": "Apple macOS (verwijderen)", "uk": "Apple macOS (Деінсталяція)", "xloc": [ - "default.handlebars->119->609", - "default3.handlebars->117->620" + "default.handlebars->119->610", + "default3.handlebars->117->621" ] }, { @@ -11304,8 +11304,8 @@ "uk": "Для запуску виконувані файли Apple macOS потрібно буде вилучити з карантину запустивши 'xattr -r -d com.apple.quarantine meshagent'", "xloc": [ "agentinvite.handlebars->13->12", - "default.handlebars->119->689", - "default3.handlebars->117->700" + "default.handlebars->119->690", + "default3.handlebars->117->701" ] }, { @@ -11334,8 +11334,8 @@ "zh-chs": "仅限Apple macOS", "zh-cht": "僅限Apple macOS", "xloc": [ - "default.handlebars->119->564", - "default3.handlebars->117->575" + "default.handlebars->119->565", + "default3.handlebars->117->576" ] }, { @@ -11515,8 +11515,8 @@ "zh-chs": "应用程序,始终连接", "zh-cht": "應用程序,始終連接", "xloc": [ - "default.handlebars->119->618", - "default3.handlebars->117->629" + "default.handlebars->119->619", + "default3.handlebars->117->630" ] }, { @@ -11545,8 +11545,8 @@ "zh-chs": "应用程序,根据用户请求连接", "zh-cht": "應用程序,根據用戶請求連接", "xloc": [ - "default.handlebars->119->617", - "default3.handlebars->117->628" + "default.handlebars->119->618", + "default3.handlebars->117->629" ] }, { @@ -11576,8 +11576,8 @@ "zh-cht": "阿拉伯文(阿爾及利亞)", "xloc": [ "default-mobile.handlebars->53->118", - "default.handlebars->119->1865", - "default3.handlebars->117->1861", + "default.handlebars->119->1867", + "default3.handlebars->117->1863", "login2.handlebars->17->4" ] }, @@ -11608,8 +11608,8 @@ "zh-cht": "阿拉伯文(巴林)", "xloc": [ "default-mobile.handlebars->53->119", - "default.handlebars->119->1866", - "default3.handlebars->117->1862", + "default.handlebars->119->1868", + "default3.handlebars->117->1864", "login2.handlebars->17->5" ] }, @@ -11640,8 +11640,8 @@ "zh-cht": "阿拉伯文(埃及)", "xloc": [ "default-mobile.handlebars->53->120", - "default.handlebars->119->1867", - "default3.handlebars->117->1863", + "default.handlebars->119->1869", + "default3.handlebars->117->1865", "login2.handlebars->17->6" ] }, @@ -11672,8 +11672,8 @@ "zh-cht": "阿拉伯文(伊拉克)", "xloc": [ "default-mobile.handlebars->53->121", - "default.handlebars->119->1868", - "default3.handlebars->117->1864", + "default.handlebars->119->1870", + "default3.handlebars->117->1866", "login2.handlebars->17->7" ] }, @@ -11704,8 +11704,8 @@ "zh-cht": "阿拉伯文(約旦)", "xloc": [ "default-mobile.handlebars->53->122", - "default.handlebars->119->1869", - "default3.handlebars->117->1865", + "default.handlebars->119->1871", + "default3.handlebars->117->1867", "login2.handlebars->17->8" ] }, @@ -11736,8 +11736,8 @@ "zh-cht": "阿拉伯文(科威特)", "xloc": [ "default-mobile.handlebars->53->123", - "default.handlebars->119->1870", - "default3.handlebars->117->1866", + "default.handlebars->119->1872", + "default3.handlebars->117->1868", "login2.handlebars->17->9" ] }, @@ -11768,8 +11768,8 @@ "zh-cht": "阿拉伯文(黎巴嫩)", "xloc": [ "default-mobile.handlebars->53->124", - "default.handlebars->119->1871", - "default3.handlebars->117->1867", + "default.handlebars->119->1873", + "default3.handlebars->117->1869", "login2.handlebars->17->10" ] }, @@ -11800,8 +11800,8 @@ "zh-cht": "阿拉伯文(利比亞)", "xloc": [ "default-mobile.handlebars->53->125", - "default.handlebars->119->1872", - "default3.handlebars->117->1868", + "default.handlebars->119->1874", + "default3.handlebars->117->1870", "login2.handlebars->17->11" ] }, @@ -11832,8 +11832,8 @@ "zh-cht": "阿拉伯文(摩洛哥)", "xloc": [ "default-mobile.handlebars->53->126", - "default.handlebars->119->1873", - "default3.handlebars->117->1869", + "default.handlebars->119->1875", + "default3.handlebars->117->1871", "login2.handlebars->17->12" ] }, @@ -11864,8 +11864,8 @@ "zh-cht": "阿拉伯文(阿曼)", "xloc": [ "default-mobile.handlebars->53->127", - "default.handlebars->119->1874", - "default3.handlebars->117->1870", + "default.handlebars->119->1876", + "default3.handlebars->117->1872", "login2.handlebars->17->13" ] }, @@ -11896,8 +11896,8 @@ "zh-cht": "阿拉伯文(卡塔爾)", "xloc": [ "default-mobile.handlebars->53->128", - "default.handlebars->119->1875", - "default3.handlebars->117->1871", + "default.handlebars->119->1877", + "default3.handlebars->117->1873", "login2.handlebars->17->14" ] }, @@ -11928,8 +11928,8 @@ "zh-cht": "阿拉伯文(沙特阿拉伯)", "xloc": [ "default-mobile.handlebars->53->129", - "default.handlebars->119->1876", - "default3.handlebars->117->1872", + "default.handlebars->119->1878", + "default3.handlebars->117->1874", "login2.handlebars->17->15" ] }, @@ -11960,8 +11960,8 @@ "zh-cht": "阿拉伯文(標準)", "xloc": [ "default-mobile.handlebars->53->117", - "default.handlebars->119->1864", - "default3.handlebars->117->1860", + "default.handlebars->119->1866", + "default3.handlebars->117->1862", "login2.handlebars->17->3" ] }, @@ -11992,8 +11992,8 @@ "zh-cht": "阿拉伯文(敘利亞)", "xloc": [ "default-mobile.handlebars->53->130", - "default.handlebars->119->1877", - "default3.handlebars->117->1873", + "default.handlebars->119->1879", + "default3.handlebars->117->1875", "login2.handlebars->17->16" ] }, @@ -12024,8 +12024,8 @@ "zh-cht": "阿拉伯文(突尼斯)", "xloc": [ "default-mobile.handlebars->53->131", - "default.handlebars->119->1878", - "default3.handlebars->117->1874", + "default.handlebars->119->1880", + "default3.handlebars->117->1876", "login2.handlebars->17->17" ] }, @@ -12056,8 +12056,8 @@ "zh-cht": "阿拉伯文(阿聯酋)", "xloc": [ "default-mobile.handlebars->53->132", - "default.handlebars->119->1879", - "default3.handlebars->117->1875", + "default.handlebars->119->1881", + "default3.handlebars->117->1877", "login2.handlebars->17->18" ] }, @@ -12088,8 +12088,8 @@ "zh-cht": "阿拉伯文(也門)", "xloc": [ "default-mobile.handlebars->53->133", - "default.handlebars->119->1880", - "default3.handlebars->117->1876", + "default.handlebars->119->1882", + "default3.handlebars->117->1878", "login2.handlebars->17->19" ] }, @@ -12120,8 +12120,8 @@ "zh-cht": "阿拉貢文", "xloc": [ "default-mobile.handlebars->53->134", - "default.handlebars->119->1881", - "default3.handlebars->117->1877", + "default.handlebars->119->1883", + "default3.handlebars->117->1879", "login2.handlebars->17->20" ] }, @@ -12154,12 +12154,12 @@ "default-mobile.handlebars->53->759", "default-mobile.handlebars->53->761", "default-mobile.handlebars->53->763", - "default.handlebars->119->1620", - "default.handlebars->119->1622", - "default.handlebars->119->1624", - "default3.handlebars->117->1620", - "default3.handlebars->117->1622", - "default3.handlebars->117->1624" + "default.handlebars->119->1621", + "default.handlebars->119->1623", + "default.handlebars->119->1625", + "default3.handlebars->117->1621", + "default3.handlebars->117->1623", + "default3.handlebars->117->1625" ] }, { @@ -12188,8 +12188,8 @@ "zh-chs": "您确定要连接到{0}设备吗?", "zh-cht": "你確定要連接到{0}裝置嗎?", "xloc": [ - "default.handlebars->119->489", - "default3.handlebars->117->500" + "default.handlebars->119->490", + "default3.handlebars->117->501" ] }, { @@ -12218,9 +12218,9 @@ "zh-chs": "你确定要删除组{0}吗?删除设备组还将删除该组中有关设备的所有信息。", "zh-cht": "你確定要刪除群{0}嗎?刪除裝置群還將刪除該群中有關裝置的所有訊息。", "xloc": [ - "default-mobile.handlebars->53->975", - "default.handlebars->119->2321", - "default3.handlebars->117->2330" + "default-mobile.handlebars->53->976", + "default.handlebars->119->2323", + "default3.handlebars->117->2332" ] }, { @@ -12249,8 +12249,8 @@ "zh-chs": "您确定要删除节点{0}吗?", "zh-cht": "你確定要刪除節點{0}嗎?", "xloc": [ - "default.handlebars->119->1338", - "default3.handlebars->117->1342" + "default.handlebars->119->1339", + "default3.handlebars->117->1343" ] }, { @@ -12263,8 +12263,8 @@ "nl": "Weet u zeker dat u dit bestand/ deze map op het bureaublad van het externe apparaat wilt openen?", "uk": "Ви впевнені, що бажаєте відкрити цей файл/теку на робочому столі віддаленого пристрою?", "xloc": [ - "default.handlebars->119->1560", - "default3.handlebars->117->1560" + "default.handlebars->119->1561", + "default3.handlebars->117->1561" ] }, { @@ -12293,8 +12293,8 @@ "zh-chs": "您确定要卸载所选代理吗?", "zh-cht": "你確定要卸載所選代理嗎?", "xloc": [ - "default.handlebars->119->1327", - "default3.handlebars->117->1332" + "default.handlebars->119->1328", + "default3.handlebars->117->1333" ] }, { @@ -12323,8 +12323,8 @@ "zh-chs": "您确定要卸载所选的{0}代理吗?", "zh-cht": "你確定要卸載所選的{0}代理嗎?", "xloc": [ - "default.handlebars->119->1326", - "default3.handlebars->117->1331" + "default.handlebars->119->1327", + "default3.handlebars->117->1332" ] }, { @@ -12353,8 +12353,8 @@ "zh-chs": "您确定要{0}插件吗:{1}", "zh-cht": "你確定要{0}外掛嗎:{1}", "xloc": [ - "default.handlebars->119->3453", - "default3.handlebars->117->3458" + "default.handlebars->119->3455", + "default3.handlebars->117->3460" ] }, { @@ -12415,8 +12415,8 @@ "zh-cht": "亞美尼亞文", "xloc": [ "default-mobile.handlebars->53->135", - "default.handlebars->119->1882", - "default3.handlebars->117->1878", + "default.handlebars->119->1884", + "default3.handlebars->117->1880", "login2.handlebars->17->21" ] }, @@ -12629,8 +12629,8 @@ "zh-cht": "阿薩姆文", "xloc": [ "default-mobile.handlebars->53->136", - "default.handlebars->119->1883", - "default3.handlebars->117->1879", + "default.handlebars->119->1885", + "default3.handlebars->117->1881", "login2.handlebars->17->22" ] }, @@ -12747,10 +12747,10 @@ "zh-chs": "Windows 助手 (.exe)", "zh-cht": "Windows 助手 (.exe)", "xloc": [ - "default.handlebars->119->663", - "default.handlebars->119->667", - "default3.handlebars->117->674", - "default3.handlebars->117->678" + "default.handlebars->119->664", + "default.handlebars->119->668", + "default3.handlebars->117->675", + "default3.handlebars->117->679" ] }, { @@ -12809,8 +12809,8 @@ "zh-cht": "阿斯圖里亞斯文", "xloc": [ "default-mobile.handlebars->53->137", - "default.handlebars->119->1884", - "default3.handlebars->117->1880", + "default.handlebars->119->1886", + "default3.handlebars->117->1882", "login2.handlebars->17->23" ] }, @@ -12840,8 +12840,8 @@ "zh-chs": "尝试激活英特尔(R)AMT ACM模式", "zh-cht": "嘗試激活英特爾(R)AMT ACM模式", "xloc": [ - "default.handlebars->119->2572", - "default3.handlebars->117->2584" + "default.handlebars->119->2574", + "default3.handlebars->117->2586" ] }, { @@ -12899,12 +12899,12 @@ "default-mobile.handlebars->53->694", "default-mobile.handlebars->53->698", "default-mobile.handlebars->53->710", - "default.handlebars->119->1513", - "default.handlebars->119->1517", - "default.handlebars->119->1529", - "default3.handlebars->117->1513", - "default3.handlebars->117->1517", - "default3.handlebars->117->1529", + "default.handlebars->119->1514", + "default.handlebars->119->1518", + "default.handlebars->119->1530", + "default3.handlebars->117->1514", + "default3.handlebars->117->1518", + "default3.handlebars->117->1530", "sharing-mobile.handlebars->53->47", "sharing-mobile.handlebars->53->56", "sharing-mobile.handlebars->53->64", @@ -12941,8 +12941,8 @@ "zh-chs": "认证软件", "zh-cht": "認證軟體", "xloc": [ - "default.handlebars->119->3014", - "default3.handlebars->117->3023" + "default.handlebars->119->3016", + "default3.handlebars->117->3025" ] }, { @@ -12971,12 +12971,12 @@ "zh-chs": "认证设备", "zh-cht": "認證設備", "xloc": [ - "default.handlebars->119->1845", "default.handlebars->119->1847", - "default.handlebars->119->1851", - "default3.handlebars->117->1842", + "default.handlebars->119->1849", + "default.handlebars->119->1853", "default3.handlebars->117->1844", - "default3.handlebars->117->1847" + "default3.handlebars->117->1846", + "default3.handlebars->117->1849" ] }, { @@ -13007,10 +13007,10 @@ "xloc": [ "default-mobile.handlebars->53->711", "default-mobile.handlebars->53->717", - "default.handlebars->119->1531", - "default.handlebars->119->1546", - "default3.handlebars->117->1531", - "default3.handlebars->117->1546", + "default.handlebars->119->1532", + "default.handlebars->119->1547", + "default3.handlebars->117->1532", + "default3.handlebars->117->1547", "sharing-mobile.handlebars->53->57", "sharing-mobile.handlebars->53->74" ] @@ -13045,14 +13045,14 @@ "default-mobile.handlebars->53->322", "default-mobile.handlebars->53->75", "default-mobile.handlebars->53->80", - "default.handlebars->119->1841", "default.handlebars->119->1843", - "default.handlebars->119->229", - "default.handlebars->119->234", - "default3.handlebars->117->1838", + "default.handlebars->119->1845", + "default.handlebars->119->230", + "default.handlebars->119->235", "default3.handlebars->117->1840", - "default3.handlebars->117->241", - "default3.handlebars->117->246" + "default3.handlebars->117->1842", + "default3.handlebars->117->242", + "default3.handlebars->117->247" ] }, { @@ -13082,8 +13082,8 @@ "zh-cht": "認證軟體啟動成功。", "xloc": [ "default-mobile.handlebars->53->76", - "default.handlebars->119->230", - "default3.handlebars->117->242" + "default.handlebars->119->231", + "default3.handlebars->117->243" ] }, { @@ -13113,8 +13113,8 @@ "zh-cht": "認證軟體已刪除。", "xloc": [ "default-mobile.handlebars->53->81", - "default.handlebars->119->235", - "default3.handlebars->117->247" + "default.handlebars->119->236", + "default3.handlebars->117->248" ] }, { @@ -13202,10 +13202,10 @@ "zh-chs": "自动删除", "zh-cht": "自動刪除", "xloc": [ - "default.handlebars->119->2199", - "default.handlebars->119->2717", - "default3.handlebars->117->2210", - "default3.handlebars->117->2729" + "default.handlebars->119->2201", + "default.handlebars->119->2719", + "default3.handlebars->117->2212", + "default3.handlebars->117->2731" ] }, { @@ -13271,8 +13271,8 @@ "zh-chs": "自动下载代理程序核心转储文件:“{0}”", "zh-cht": "自動下載代理程序核心轉儲文件:“{0}”", "xloc": [ - "default.handlebars->119->2653", - "default3.handlebars->117->2665" + "default.handlebars->119->2655", + "default3.handlebars->117->2667" ] }, { @@ -13389,8 +13389,8 @@ "zh-chs": "自动移除非活动设备", "zh-cht": "自動移除非活動設備", "xloc": [ - "default.handlebars->119->2351", - "default3.handlebars->117->2363" + "default.handlebars->119->2353", + "default3.handlebars->117->2365" ] }, { @@ -13419,8 +13419,8 @@ "zh-chs": "可用內存", "zh-cht": "可用內存", "xloc": [ - "default.handlebars->119->3381", - "default3.handlebars->117->3386" + "default.handlebars->119->3383", + "default3.handlebars->117->3388" ] }, { @@ -13450,8 +13450,8 @@ "zh-cht": "阿塞拜疆文", "xloc": [ "default-mobile.handlebars->53->138", - "default.handlebars->119->1885", - "default3.handlebars->117->1881", + "default.handlebars->119->1887", + "default3.handlebars->117->1883", "login2.handlebars->17->24" ] }, @@ -13484,18 +13484,18 @@ "default-mobile.handlebars->53->770", "default-mobile.handlebars->53->774", "default-mobile.handlebars->53->778", - "default.handlebars->119->435", - "default.handlebars->119->437", - "default.handlebars->119->439", - "default.handlebars->119->953", - "default.handlebars->119->957", - "default.handlebars->119->961", - "default3.handlebars->117->446", - "default3.handlebars->117->448", - "default3.handlebars->117->450", - "default3.handlebars->117->964", - "default3.handlebars->117->968", - "default3.handlebars->117->972" + "default.handlebars->119->436", + "default.handlebars->119->438", + "default.handlebars->119->440", + "default.handlebars->119->954", + "default.handlebars->119->958", + "default.handlebars->119->962", + "default3.handlebars->117->447", + "default3.handlebars->117->449", + "default3.handlebars->117->451", + "default3.handlebars->117->965", + "default3.handlebars->117->969", + "default3.handlebars->117->973" ] }, { @@ -13524,9 +13524,9 @@ "zh-chs": "的BIOS", "zh-cht": "的BIOS", "xloc": [ - "default-mobile.handlebars->53->854", - "default.handlebars->119->1695", - "default3.handlebars->117->1693" + "default-mobile.handlebars->53->855", + "default.handlebars->119->1697", + "default3.handlebars->117->1695" ] }, { @@ -13665,8 +13665,8 @@ "zh-cht": "退格", "xloc": [ "default-mobile.handlebars->53->659", - "default.handlebars->119->1428", - "default3.handlebars->117->1430", + "default.handlebars->119->1429", + "default3.handlebars->117->1431", "sharing-mobile.handlebars->53->17" ] }, @@ -13697,8 +13697,8 @@ "zh-cht": "背景與互動", "xloc": [ "agentinvite.handlebars->13->8", - "default.handlebars->119->613", - "default3.handlebars->117->624" + "default.handlebars->119->614", + "default3.handlebars->117->625" ] }, { @@ -13727,14 +13727,14 @@ "zh-chs": "后台运行与交互式运行", "zh-cht": "背景與互動", "xloc": [ - "default.handlebars->119->2450", - "default.handlebars->119->2457", - "default.handlebars->119->575", - "default.handlebars->119->596", - "default3.handlebars->117->2462", - "default3.handlebars->117->2469", - "default3.handlebars->117->586", - "default3.handlebars->117->607" + "default.handlebars->119->2452", + "default.handlebars->119->2459", + "default.handlebars->119->576", + "default.handlebars->119->597", + "default3.handlebars->117->2464", + "default3.handlebars->117->2471", + "default3.handlebars->117->587", + "default3.handlebars->117->608" ] }, { @@ -13764,16 +13764,16 @@ "zh-cht": "僅背景", "xloc": [ "agentinvite.handlebars->13->9", - "default.handlebars->119->2451", - "default.handlebars->119->2459", - "default.handlebars->119->576", - "default.handlebars->119->597", - "default.handlebars->119->614", - "default3.handlebars->117->2463", - "default3.handlebars->117->2471", - "default3.handlebars->117->587", - "default3.handlebars->117->608", - "default3.handlebars->117->625" + "default.handlebars->119->2453", + "default.handlebars->119->2461", + "default.handlebars->119->577", + "default.handlebars->119->598", + "default.handlebars->119->615", + "default3.handlebars->117->2465", + "default3.handlebars->117->2473", + "default3.handlebars->117->588", + "default3.handlebars->117->609", + "default3.handlebars->117->626" ] }, { @@ -13833,10 +13833,10 @@ "zh-chs": "备用码", "zh-cht": "備用碼", "xloc": [ - "default.handlebars->119->3018", - "default.handlebars->119->3257", - "default3.handlebars->117->3027", - "default3.handlebars->117->3260" + "default.handlebars->119->3020", + "default.handlebars->119->3259", + "default3.handlebars->117->3029", + "default3.handlebars->117->3262" ] }, { @@ -13866,8 +13866,8 @@ "zh-cht": "備用代碼已鎖定", "xloc": [ "default-mobile.handlebars->53->66", - "default.handlebars->119->218", - "default3.handlebars->117->230" + "default.handlebars->119->219", + "default3.handlebars->117->231" ] }, { @@ -13926,8 +13926,8 @@ "zh-chs": "错误的签名", "zh-cht": "錯誤的簽名", "xloc": [ - "default.handlebars->119->3362", - "default3.handlebars->117->3367" + "default.handlebars->119->3364", + "default3.handlebars->117->3369" ] }, { @@ -13956,8 +13956,8 @@ "zh-chs": "错误的网络证书", "zh-cht": "錯誤的網絡憑證", "xloc": [ - "default.handlebars->119->3361", - "default3.handlebars->117->3366" + "default.handlebars->119->3363", + "default3.handlebars->117->3368" ] }, { @@ -13987,8 +13987,8 @@ "zh-cht": "巴斯克", "xloc": [ "default-mobile.handlebars->53->139", - "default.handlebars->119->1886", - "default3.handlebars->117->1882", + "default.handlebars->119->1888", + "default3.handlebars->117->1884", "login2.handlebars->17->25" ] }, @@ -14018,8 +14018,8 @@ "zh-chs": "批处理文件上传", "zh-cht": "批處理文件上傳", "xloc": [ - "default.handlebars->119->794", - "default3.handlebars->117->805" + "default.handlebars->119->795", + "default3.handlebars->117->806" ] }, { @@ -14093,8 +14093,8 @@ "zh-chs": "将{0}个文件批量上传到文件夹{1}", "zh-cht": "將{0}個文件批量上傳到文件夾{1}", "xloc": [ - "default.handlebars->119->2652", - "default3.handlebars->117->2664" + "default.handlebars->119->2654", + "default3.handlebars->117->2666" ] }, { @@ -14124,8 +14124,8 @@ "zh-cht": "白俄羅斯文", "xloc": [ "default-mobile.handlebars->53->141", - "default.handlebars->119->1888", - "default3.handlebars->117->1884", + "default.handlebars->119->1890", + "default3.handlebars->117->1886", "login2.handlebars->17->27" ] }, @@ -14156,8 +14156,8 @@ "zh-cht": "孟加拉", "xloc": [ "default-mobile.handlebars->53->142", - "default.handlebars->119->1889", - "default3.handlebars->117->1885", + "default.handlebars->119->1891", + "default3.handlebars->117->1887", "login2.handlebars->17->28" ] }, @@ -14225,9 +14225,9 @@ "nl": "BitLocker", "uk": "BitLocker", "xloc": [ - "default-mobile.handlebars->53->910", - "default.handlebars->119->1751", - "default3.handlebars->117->1749" + "default-mobile.handlebars->53->911", + "default.handlebars->119->1753", + "default3.handlebars->117->1751" ] }, { @@ -14237,9 +14237,9 @@ "pl": "Informacje o BitLocker", "uk": "Інформація о BitLocker", "xloc": [ - "default-mobile.handlebars->53->931", - "default.handlebars->119->1772", - "default3.handlebars->117->1770" + "default-mobile.handlebars->53->932", + "default.handlebars->119->1774", + "default3.handlebars->117->1772" ] }, { @@ -14268,9 +14268,9 @@ "zh-chs": "引导加载程序", "zh-cht": "引導加載程序", "xloc": [ - "default-mobile.handlebars->53->809", - "default.handlebars->119->1640", - "default3.handlebars->117->1640" + "default-mobile.handlebars->53->810", + "default.handlebars->119->1642", + "default3.handlebars->117->1642" ] }, { @@ -14300,8 +14300,8 @@ "zh-cht": "波斯尼亞文", "xloc": [ "default-mobile.handlebars->53->143", - "default.handlebars->119->1890", - "default3.handlebars->117->1886", + "default.handlebars->119->1892", + "default3.handlebars->117->1888", "login2.handlebars->17->29" ] }, @@ -14332,8 +14332,8 @@ "zh-cht": "布列塔尼", "xloc": [ "default-mobile.handlebars->53->144", - "default.handlebars->119->1891", - "default3.handlebars->117->1887", + "default.handlebars->119->1893", + "default3.handlebars->117->1889", "login2.handlebars->17->30" ] }, @@ -14363,9 +14363,9 @@ "zh-chs": "广播", "zh-cht": "廣播", "xloc": [ - "default.handlebars->119->2912", + "default.handlebars->119->2914", "default.handlebars->container->column_l->p4->3->1->0->3->1", - "default3.handlebars->117->2921", + "default3.handlebars->117->2923", "default3.handlebars->container->column_l->p4->3->1->0->1->3" ] }, @@ -14395,8 +14395,8 @@ "zh-chs": "广播消息", "zh-cht": "廣播消息", "xloc": [ - "default.handlebars->119->2828", - "default3.handlebars->117->2839" + "default.handlebars->119->2830", + "default3.handlebars->117->2841" ] }, { @@ -14425,8 +14425,8 @@ "zh-chs": "向所有连接的用户广播消息。", "zh-cht": "向所有連接的用戶廣播消息。", "xloc": [ - "default.handlebars->119->2823", - "default3.handlebars->117->2834" + "default.handlebars->119->2825", + "default3.handlebars->117->2836" ] }, { @@ -14455,8 +14455,8 @@ "zh-chs": "浏览器", "zh-cht": "瀏覽器", "xloc": [ - "default.handlebars->119->3228", - "default3.handlebars->117->3231" + "default.handlebars->119->3230", + "default3.handlebars->117->3233" ] }, { @@ -14547,8 +14547,8 @@ "zh-cht": "保加利亞文", "xloc": [ "default-mobile.handlebars->53->140", - "default.handlebars->119->1887", - "default3.handlebars->117->1883", + "default.handlebars->119->1889", + "default3.handlebars->117->1885", "login2.handlebars->17->26" ] }, @@ -14579,8 +14579,8 @@ "zh-cht": "緬甸文", "xloc": [ "default-mobile.handlebars->53->145", - "default.handlebars->119->1892", - "default3.handlebars->117->1888", + "default.handlebars->119->1894", + "default3.handlebars->117->1890", "login2.handlebars->17->31" ] }, @@ -14610,8 +14610,8 @@ "zh-chs": "默认情况下,不活动的设备将在 1 天后移除。", "zh-cht": "默認情況下,非活動設備將在 1 天后移除。", "xloc": [ - "default.handlebars->119->2353", - "default3.handlebars->117->2365" + "default.handlebars->119->2355", + "default3.handlebars->117->2367" ] }, { @@ -14640,8 +14640,8 @@ "zh-chs": "默认情况下,非活动设备将在 {0} 天后移除。", "zh-cht": "默認情況下,不活動的設備將在 {0} 天后被移除。", "xloc": [ - "default.handlebars->119->2354", - "default3.handlebars->117->2366" + "default.handlebars->119->2356", + "default3.handlebars->117->2368" ] }, { @@ -14683,8 +14683,8 @@ "zh-chs": "字节输入", "zh-cht": "字節輸入", "xloc": [ - "default.handlebars->119->3224", - "default3.handlebars->117->3227" + "default.handlebars->119->3226", + "default3.handlebars->117->3229" ] }, { @@ -14713,8 +14713,8 @@ "zh-chs": "字节输出", "zh-cht": "字節輸出", "xloc": [ - "default.handlebars->119->3225", - "default3.handlebars->117->3228" + "default.handlebars->119->3227", + "default3.handlebars->117->3230" ] }, { @@ -14791,10 +14791,10 @@ "zh-cht": "CCM", "xloc": [ "default-mobile.handlebars->53->522", - "default.handlebars->119->445", - "default.handlebars->119->929", - "default3.handlebars->117->456", - "default3.handlebars->117->940" + "default.handlebars->119->446", + "default.handlebars->119->930", + "default3.handlebars->117->457", + "default3.handlebars->117->941" ] }, { @@ -14823,8 +14823,8 @@ "zh-chs": "CCM模式", "zh-cht": "CCM模式", "xloc": [ - "default.handlebars->119->2304", - "default3.handlebars->117->2313" + "default.handlebars->119->2306", + "default3.handlebars->117->2315" ] }, { @@ -14832,15 +14832,15 @@ "en": "CD-ROM", "nl": "CD-ROM", "xloc": [ - "default-mobile.handlebars->53->903", - "default-mobile.handlebars->53->915", - "default-mobile.handlebars->53->922", - "default.handlebars->119->1744", - "default.handlebars->119->1756", - "default.handlebars->119->1763", - "default3.handlebars->117->1742", - "default3.handlebars->117->1754", - "default3.handlebars->117->1761" + "default-mobile.handlebars->53->904", + "default-mobile.handlebars->53->916", + "default-mobile.handlebars->53->923", + "default.handlebars->119->1746", + "default.handlebars->119->1758", + "default.handlebars->119->1765", + "default3.handlebars->117->1744", + "default3.handlebars->117->1756", + "default3.handlebars->117->1763" ] }, { @@ -14870,12 +14870,12 @@ "zh-cht": "CIRA", "xloc": [ "default-mobile.handlebars->53->483", - "default.handlebars->119->3388", - "default.handlebars->119->423", - "default.handlebars->119->730", - "default3.handlebars->117->3393", - "default3.handlebars->117->434", - "default3.handlebars->117->741" + "default.handlebars->119->3390", + "default.handlebars->119->424", + "default.handlebars->119->731", + "default3.handlebars->117->3395", + "default3.handlebars->117->435", + "default3.handlebars->117->742" ] }, { @@ -14904,8 +14904,8 @@ "zh-chs": "CIRA服务器", "zh-cht": "CIRA伺服器", "xloc": [ - "default.handlebars->119->3437", - "default3.handlebars->117->3442" + "default.handlebars->119->3439", + "default3.handlebars->117->3444" ] }, { @@ -14934,8 +14934,8 @@ "zh-chs": "CIRA服务器命令", "zh-cht": "CIRA伺服器指令", "xloc": [ - "default.handlebars->119->3438", - "default3.handlebars->117->3443" + "default.handlebars->119->3440", + "default3.handlebars->117->3445" ] }, { @@ -14994,8 +14994,8 @@ "zh-chs": "CIRA设置", "zh-cht": "CIRA設置", "xloc": [ - "default.handlebars->119->2312", - "default3.handlebars->117->2320" + "default.handlebars->119->2314", + "default3.handlebars->117->2322" ] }, { @@ -15024,14 +15024,14 @@ "zh-chs": "CPU", "zh-cht": "CPU", "xloc": [ - "default-mobile.handlebars->53->860", - "default.handlebars->119->1615", - "default.handlebars->119->1701", - "default.handlebars->119->3413", + "default-mobile.handlebars->53->861", + "default.handlebars->119->1616", + "default.handlebars->119->1703", + "default.handlebars->119->3415", "default.handlebars->container->column_l->p40->3->1->p40type->5", - "default3.handlebars->117->1615", - "default3.handlebars->117->1699", - "default3.handlebars->117->3418", + "default3.handlebars->117->1616", + "default3.handlebars->117->1701", + "default3.handlebars->117->3420", "default3.handlebars->container->column_l->p40->3->3->p40type->5" ] }, @@ -15061,8 +15061,8 @@ "zh-chs": "CPU负载", "zh-cht": "CPU負載", "xloc": [ - "default.handlebars->119->3377", - "default3.handlebars->117->3382" + "default.handlebars->119->3379", + "default3.handlebars->117->3384" ] }, { @@ -15091,8 +15091,8 @@ "zh-chs": "最近15分钟的CPU负载", "zh-cht": "最近15分鐘的CPU負載", "xloc": [ - "default.handlebars->119->3380", - "default3.handlebars->117->3385" + "default.handlebars->119->3382", + "default3.handlebars->117->3387" ] }, { @@ -15121,8 +15121,8 @@ "zh-chs": "最近5分钟的CPU负载", "zh-cht": "最近5分鐘的CPU負載", "xloc": [ - "default.handlebars->119->3379", - "default3.handlebars->117->3384" + "default.handlebars->119->3381", + "default3.handlebars->117->3386" ] }, { @@ -15151,8 +15151,8 @@ "zh-chs": "最近一分钟的CPU负载", "zh-cht": "最近一分鐘的CPU負載", "xloc": [ - "default.handlebars->119->3378", - "default3.handlebars->117->3383" + "default.handlebars->119->3380", + "default3.handlebars->117->3385" ] }, { @@ -15181,11 +15181,11 @@ "zh-chs": "CR+LF", "zh-cht": "CR+LF", "xloc": [ - "default.handlebars->119->1509", - "default.handlebars->119->1540", + "default.handlebars->119->1510", + "default.handlebars->119->1541", "default.handlebars->container->column_l->p12->termTable->1->1->4->1->1->terminalSettingsButtons", - "default3.handlebars->117->1509", - "default3.handlebars->117->1540", + "default3.handlebars->117->1510", + "default3.handlebars->117->1541", "default3.handlebars->container->column_l->p12->termTable->1->1->4->1->3->terminalSettingsButtons", "sharing.handlebars->47->25", "sharing.handlebars->47->39", @@ -15218,8 +15218,8 @@ "zh-chs": "CSV", "zh-cht": "CSV", "xloc": [ - "default.handlebars->119->2734", - "default3.handlebars->117->2746" + "default.handlebars->119->2736", + "default3.handlebars->117->2748" ] }, { @@ -15248,12 +15248,12 @@ "zh-chs": "CSV格式", "zh-cht": "CSV格式", "xloc": [ - "default.handlebars->119->2738", - "default.handlebars->119->2815", - "default.handlebars->119->803", - "default3.handlebars->117->2750", - "default3.handlebars->117->2826", - "default3.handlebars->117->814" + "default.handlebars->119->2740", + "default.handlebars->119->2817", + "default.handlebars->119->804", + "default3.handlebars->117->2752", + "default3.handlebars->117->2828", + "default3.handlebars->117->815" ] }, { @@ -15262,8 +15262,8 @@ "nl": "Het CSV bestandsformaat is als volgt:", "uk": "Формат файлу CSV нижче:", "xloc": [ - "default.handlebars->119->2801", - "default3.handlebars->117->2812" + "default.handlebars->119->2803", + "default3.handlebars->117->2814" ] }, { @@ -15318,8 +15318,8 @@ "zh-chs": "呼叫错误", "zh-cht": "呼叫錯誤", "xloc": [ - "default.handlebars->119->3454", - "default3.handlebars->117->3459" + "default.handlebars->119->3456", + "default3.handlebars->117->3461" ] }, { @@ -15332,10 +15332,10 @@ "pl": "CallMeBot", "uk": "CallMeBot", "xloc": [ - "default.handlebars->119->1810", - "default.handlebars->119->3053", - "default3.handlebars->117->1807", - "default3.handlebars->117->3062" + "default.handlebars->119->1812", + "default.handlebars->119->3055", + "default3.handlebars->117->1809", + "default3.handlebars->117->3064" ] }, { @@ -15397,11 +15397,11 @@ "agent-translations.json", "default-mobile.handlebars->53->331", "default-mobile.handlebars->dialog->idx_dlgButtonBar", - "default.handlebars->119->2166", - "default.handlebars->119->3443", - "default.handlebars->119->548", + "default.handlebars->119->2168", + "default.handlebars->119->3445", + "default.handlebars->119->549", "default.handlebars->container->dialog->idx_dlgButtonBar", - "default3.handlebars->117->559", + "default3.handlebars->117->560", "default3.handlebars->container->xxAddAgentModal->xxAddAgentModalConf->1->5->idx_dlgCancelButton", "login-mobile.handlebars->dialog->idx_dlgButtonBar", "login.handlebars->dialog->idx_dlgButtonBar", @@ -15521,30 +15521,30 @@ "zh-chs": "容量", "zh-cht": "容量", "xloc": [ - "default-mobile.handlebars->53->878", - "default-mobile.handlebars->53->884", - "default-mobile.handlebars->53->890", - "default-mobile.handlebars->53->895", - "default-mobile.handlebars->53->897", - "default-mobile.handlebars->53->900", - "default-mobile.handlebars->53->912", - "default-mobile.handlebars->53->919", - "default.handlebars->119->1719", - "default.handlebars->119->1725", - "default.handlebars->119->1731", - "default.handlebars->119->1736", + "default-mobile.handlebars->53->879", + "default-mobile.handlebars->53->885", + "default-mobile.handlebars->53->891", + "default-mobile.handlebars->53->896", + "default-mobile.handlebars->53->898", + "default-mobile.handlebars->53->901", + "default-mobile.handlebars->53->913", + "default-mobile.handlebars->53->920", + "default.handlebars->119->1721", + "default.handlebars->119->1727", + "default.handlebars->119->1733", "default.handlebars->119->1738", - "default.handlebars->119->1741", - "default.handlebars->119->1753", - "default.handlebars->119->1760", - "default3.handlebars->117->1717", - "default3.handlebars->117->1723", - "default3.handlebars->117->1729", - "default3.handlebars->117->1734", + "default.handlebars->119->1740", + "default.handlebars->119->1743", + "default.handlebars->119->1755", + "default.handlebars->119->1762", + "default3.handlebars->117->1719", + "default3.handlebars->117->1725", + "default3.handlebars->117->1731", "default3.handlebars->117->1736", - "default3.handlebars->117->1739", - "default3.handlebars->117->1751", - "default3.handlebars->117->1758" + "default3.handlebars->117->1738", + "default3.handlebars->117->1741", + "default3.handlebars->117->1753", + "default3.handlebars->117->1760" ] }, { @@ -15573,15 +15573,15 @@ "zh-chs": "容量/速度", "zh-cht": "容量/速度", "xloc": [ - "default-mobile.handlebars->53->876", - "default-mobile.handlebars->53->882", - "default-mobile.handlebars->53->888", - "default.handlebars->119->1717", - "default.handlebars->119->1723", - "default.handlebars->119->1729", - "default3.handlebars->117->1715", - "default3.handlebars->117->1721", - "default3.handlebars->117->1727" + "default-mobile.handlebars->53->877", + "default-mobile.handlebars->53->883", + "default-mobile.handlebars->53->889", + "default.handlebars->119->1719", + "default.handlebars->119->1725", + "default.handlebars->119->1731", + "default3.handlebars->117->1717", + "default3.handlebars->117->1723", + "default3.handlebars->117->1729" ] }, { @@ -15590,15 +15590,15 @@ "nl": "Resterende capaciteit", "uk": "Вільне місце", "xloc": [ - "default-mobile.handlebars->53->901", - "default-mobile.handlebars->53->913", - "default-mobile.handlebars->53->920", - "default.handlebars->119->1742", - "default.handlebars->119->1754", - "default.handlebars->119->1761", - "default3.handlebars->117->1740", - "default3.handlebars->117->1752", - "default3.handlebars->117->1759" + "default-mobile.handlebars->53->902", + "default-mobile.handlebars->53->914", + "default-mobile.handlebars->53->921", + "default.handlebars->119->1744", + "default.handlebars->119->1756", + "default.handlebars->119->1763", + "default3.handlebars->117->1742", + "default3.handlebars->117->1754", + "default3.handlebars->117->1761" ] }, { @@ -15628,8 +15628,8 @@ "zh-cht": "加泰羅尼亞文", "xloc": [ "default-mobile.handlebars->53->146", - "default.handlebars->119->1893", - "default3.handlebars->117->1889", + "default.handlebars->119->1895", + "default3.handlebars->117->1891", "login2.handlebars->17->32" ] }, @@ -15659,8 +15659,8 @@ "zh-chs": "在这里为中心显示地图", "zh-cht": "在這裡為中心顯示地圖", "xloc": [ - "default.handlebars->119->882", - "default3.handlebars->117->893" + "default.handlebars->119->883", + "default3.handlebars->117->894" ] }, { @@ -15726,7 +15726,7 @@ "en": "Cerulean", "nl": "Hemelsblauw", "xloc": [ - "default3.handlebars->117->2103" + "default3.handlebars->117->2105" ] }, { @@ -15756,8 +15756,8 @@ "zh-cht": "查莫羅", "xloc": [ "default-mobile.handlebars->53->147", - "default.handlebars->119->1894", - "default3.handlebars->117->1890", + "default.handlebars->119->1896", + "default3.handlebars->117->1892", "login2.handlebars->17->33" ] }, @@ -15818,8 +15818,8 @@ "zh-chs": "更改{0}的邮箱", "zh-cht": "更改{0}的電郵", "xloc": [ - "default.handlebars->119->3095", - "default3.handlebars->117->3102" + "default.handlebars->119->3097", + "default3.handlebars->117->3104" ] }, { @@ -15848,12 +15848,12 @@ "zh-chs": "更改组", "zh-cht": "更改群", "xloc": [ - "default.handlebars->119->1046", - "default.handlebars->119->1335", + "default.handlebars->119->1047", "default.handlebars->119->1336", - "default3.handlebars->117->1057", - "default3.handlebars->117->1340", - "default3.handlebars->117->1341" + "default.handlebars->119->1337", + "default3.handlebars->117->1058", + "default3.handlebars->117->1341", + "default3.handlebars->117->1342" ] }, { @@ -15898,10 +15898,10 @@ "zh-cht": "更改密碼", "xloc": [ "default-mobile.handlebars->53->339", - "default.handlebars->119->2110", - "default.handlebars->119->3039", - "default3.handlebars->117->2101", - "default3.handlebars->117->3048" + "default.handlebars->119->2112", + "default.handlebars->119->3041", + "default3.handlebars->117->2103", + "default3.handlebars->117->3050" ] }, { @@ -15930,8 +15930,8 @@ "zh-chs": "更改{0}的密码", "zh-cht": "更改{0}的密碼", "xloc": [ - "default.handlebars->119->3104", - "default3.handlebars->117->3107" + "default.handlebars->119->3106", + "default3.handlebars->117->3109" ] }, { @@ -15960,8 +15960,8 @@ "zh-chs": "更改{0}的真实名称", "zh-cht": "更改{0}的真實名稱", "xloc": [ - "default.handlebars->119->3090", - "default3.handlebars->117->3098" + "default.handlebars->119->3092", + "default3.handlebars->117->3100" ] }, { @@ -16138,8 +16138,8 @@ "zh-chs": "更改该用户的密码", "zh-cht": "更改該用戶的密碼", "xloc": [ - "default.handlebars->119->3038", - "default3.handlebars->117->3047" + "default.handlebars->119->3040", + "default3.handlebars->117->3049" ] }, { @@ -16198,8 +16198,8 @@ "zh-chs": "更改您的邮件地址。", "zh-cht": "在此處更改你的帳戶電郵地址。", "xloc": [ - "default.handlebars->119->2097", - "default3.handlebars->117->2094" + "default.handlebars->119->2099", + "default3.handlebars->117->2096" ] }, { @@ -16228,8 +16228,8 @@ "zh-chs": "在下面的框中两次输入旧密码和新密码,以更改帐户密码。", "zh-cht": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。", "xloc": [ - "default.handlebars->119->2103", - "default3.handlebars->117->2098" + "default.handlebars->119->2105", + "default3.handlebars->117->2100" ] }, { @@ -16258,8 +16258,8 @@ "zh-chs": "更改帐户凭据", "zh-cht": "帳戶憑證已更改", "xloc": [ - "default.handlebars->119->2624", - "default3.handlebars->117->2636" + "default.handlebars->119->2626", + "default3.handlebars->117->2638" ] }, { @@ -16288,8 +16288,8 @@ "zh-chs": "将帐户显示名称更改为 {0}。", "zh-cht": "將帳戶顯示名稱更改為 {0}。", "xloc": [ - "default.handlebars->119->2676", - "default3.handlebars->117->2688" + "default.handlebars->119->2678", + "default3.handlebars->117->2690" ] }, { @@ -16318,10 +16318,10 @@ "zh-chs": "{1}组中的设备{0}已更改:{2}", "zh-cht": "{1}組中的設備{0}已更改:{2}", "xloc": [ - "default.handlebars->119->2608", - "default.handlebars->119->2689", - "default3.handlebars->117->2620", - "default3.handlebars->117->2701" + "default.handlebars->119->2610", + "default.handlebars->119->2691", + "default3.handlebars->117->2622", + "default3.handlebars->117->2703" ] }, { @@ -16350,8 +16350,8 @@ "zh-chs": "语言从{1}更改为{2}", "zh-cht": "語言從{1}更改為{2}", "xloc": [ - "default.handlebars->119->2552", - "default3.handlebars->117->2564" + "default.handlebars->119->2554", + "default3.handlebars->117->2566" ] }, { @@ -16380,10 +16380,10 @@ "zh-chs": "已更改{0}的用户设备权限", "zh-cht": "已更改{0}的用戶設備權限", "xloc": [ - "default.handlebars->119->2610", - "default.handlebars->119->2631", - "default3.handlebars->117->2622", - "default3.handlebars->117->2643" + "default.handlebars->119->2612", + "default.handlebars->119->2633", + "default3.handlebars->117->2624", + "default3.handlebars->117->2645" ] }, { @@ -16439,8 +16439,8 @@ "zh-cht": "更改語言將需要刷新頁面。", "xloc": [ "default-mobile.handlebars->53->314", - "default.handlebars->119->2061", - "default3.handlebars->117->2057" + "default.handlebars->119->2063", + "default3.handlebars->117->2059" ] }, { @@ -16469,18 +16469,18 @@ "zh-chs": "聊天", "zh-cht": "聊天", "xloc": [ - "default.handlebars->119->1035", - "default.handlebars->119->1154", - "default.handlebars->119->1179", - "default.handlebars->119->2755", - "default.handlebars->119->3034", - "default.handlebars->119->3035", - "default3.handlebars->117->1046", - "default3.handlebars->117->1163", - "default3.handlebars->117->1188", - "default3.handlebars->117->2767", - "default3.handlebars->117->3043", - "default3.handlebars->117->3044" + "default.handlebars->119->1036", + "default.handlebars->119->1155", + "default.handlebars->119->1180", + "default.handlebars->119->2757", + "default.handlebars->119->3036", + "default.handlebars->119->3037", + "default3.handlebars->117->1047", + "default3.handlebars->117->1164", + "default3.handlebars->117->1189", + "default3.handlebars->117->2769", + "default3.handlebars->117->3045", + "default3.handlebars->117->3046" ] }, { @@ -16509,12 +16509,12 @@ "zh-chs": "聊天并通知", "zh-cht": "聊天並通知", "xloc": [ - "default-mobile.handlebars->53->1005", - "default-mobile.handlebars->53->1025", - "default.handlebars->119->2385", - "default.handlebars->119->2423", - "default3.handlebars->117->2397", - "default3.handlebars->117->2435" + "default-mobile.handlebars->53->1006", + "default-mobile.handlebars->53->1026", + "default.handlebars->119->2387", + "default.handlebars->119->2425", + "default3.handlebars->117->2399", + "default3.handlebars->117->2437" ] }, { @@ -16543,9 +16543,9 @@ "zh-chs": "聊天请求,点击这里接受。", "zh-cht": "聊天請求,點擊這裡接受。", "xloc": [ - "default-mobile.handlebars->53->1057", - "default.handlebars->119->3326", - "default3.handlebars->117->3331" + "default-mobile.handlebars->53->1058", + "default.handlebars->119->3328", + "default3.handlebars->117->3333" ] }, { @@ -16604,8 +16604,8 @@ "zh-cht": "車臣", "xloc": [ "default-mobile.handlebars->53->148", - "default.handlebars->119->1895", - "default3.handlebars->117->1891", + "default.handlebars->119->1897", + "default3.handlebars->117->1893", "login2.handlebars->17->34" ] }, @@ -16635,8 +16635,8 @@ "zh-chs": "检查并单击确定以清除错误日志。", "zh-cht": "檢查並單擊確定以清除錯誤日誌。", "xloc": [ - "default.handlebars->119->212", - "default3.handlebars->117->225" + "default.handlebars->119->213", + "default3.handlebars->117->226" ] }, { @@ -16665,8 +16665,8 @@ "zh-chs": "检查并单击确定以开始服务器自我更新。", "zh-cht": "檢查並單擊確定以開始伺服器自我更新。", "xloc": [ - "default.handlebars->119->207", - "default3.handlebars->117->220" + "default.handlebars->119->208", + "default3.handlebars->117->221" ] }, { @@ -16710,8 +16710,8 @@ "pl": "Sprawdź swoją aplikacje wiadomości i wprowadź kod weryfikacyjny.", "uk": "Для перевірки програми обміну повідомленнями, введіть код підтвердження після отримання.", "xloc": [ - "default.handlebars->119->267", - "default3.handlebars->117->277" + "default.handlebars->119->268", + "default3.handlebars->117->278" ] }, { @@ -16740,8 +16740,8 @@ "zh-chs": "检查您的手机并输入验证码。", "zh-cht": "檢查你的電話並輸入驗證碼。", "xloc": [ - "default.handlebars->119->264", - "default3.handlebars->117->274" + "default.handlebars->119->265", + "default3.handlebars->117->275" ] }, { @@ -16770,10 +16770,10 @@ "zh-chs": "检查...", "zh-cht": "檢查...", "xloc": [ - "default.handlebars->119->1861", - "default.handlebars->119->3448", - "default3.handlebars->117->1857", - "default3.handlebars->117->3453" + "default.handlebars->119->1863", + "default.handlebars->119->3450", + "default3.handlebars->117->1859", + "default3.handlebars->117->3455" ] }, { @@ -16803,8 +16803,8 @@ "zh-cht": "中文", "xloc": [ "default-mobile.handlebars->53->149", - "default.handlebars->119->1896", - "default3.handlebars->117->1892", + "default.handlebars->119->1898", + "default3.handlebars->117->1894", "login2.handlebars->17->35" ] }, @@ -16835,8 +16835,8 @@ "zh-cht": "中文(香港)", "xloc": [ "default-mobile.handlebars->53->150", - "default.handlebars->119->1897", - "default3.handlebars->117->1893", + "default.handlebars->119->1899", + "default3.handlebars->117->1895", "login2.handlebars->17->36" ] }, @@ -16867,8 +16867,8 @@ "zh-cht": "中文(中國)", "xloc": [ "default-mobile.handlebars->53->151", - "default.handlebars->119->1898", - "default3.handlebars->117->1894", + "default.handlebars->119->1900", + "default3.handlebars->117->1896", "login2.handlebars->17->37" ] }, @@ -16899,8 +16899,8 @@ "zh-cht": "簡體中文", "xloc": [ "default-mobile.handlebars->53->311", - "default.handlebars->119->2058", - "default3.handlebars->117->2054", + "default.handlebars->119->2060", + "default3.handlebars->117->2056", "login2.handlebars->17->197" ] }, @@ -16931,8 +16931,8 @@ "zh-cht": "中文(新加坡)", "xloc": [ "default-mobile.handlebars->53->152", - "default.handlebars->119->1899", - "default3.handlebars->117->1895", + "default.handlebars->119->1901", + "default3.handlebars->117->1897", "login2.handlebars->17->38" ] }, @@ -16963,8 +16963,8 @@ "zh-cht": "中文(台灣)", "xloc": [ "default-mobile.handlebars->53->153", - "default.handlebars->119->1900", - "default3.handlebars->117->1896", + "default.handlebars->119->1902", + "default3.handlebars->117->1898", "login2.handlebars->17->39" ] }, @@ -16995,8 +16995,8 @@ "zh-cht": "繁體中文", "xloc": [ "default-mobile.handlebars->53->312", - "default.handlebars->119->2059", - "default3.handlebars->117->2055", + "default.handlebars->119->2061", + "default3.handlebars->117->2057", "login2.handlebars->17->198" ] }, @@ -17058,8 +17058,8 @@ "zh-cht": "楚瓦什", "xloc": [ "default-mobile.handlebars->53->154", - "default.handlebars->119->1901", - "default3.handlebars->117->1897", + "default.handlebars->119->1903", + "default3.handlebars->117->1899", "login2.handlebars->17->40" ] }, @@ -17129,18 +17129,18 @@ "default-mobile.handlebars->53->748", "default-mobile.handlebars->53->89", "default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->5", - "default.handlebars->119->1588", - "default.handlebars->119->1590", - "default.handlebars->119->1592", - "default.handlebars->119->1594", - "default.handlebars->119->2546", + "default.handlebars->119->1589", + "default.handlebars->119->1591", + "default.handlebars->119->1593", + "default.handlebars->119->1595", + "default.handlebars->119->2548", "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7", "default.handlebars->container->column_l->p41->3->1", - "default3.handlebars->117->1588", - "default3.handlebars->117->1590", - "default3.handlebars->117->1592", - "default3.handlebars->117->1594", - "default3.handlebars->117->2558", + "default3.handlebars->117->1589", + "default3.handlebars->117->1591", + "default3.handlebars->117->1593", + "default3.handlebars->117->1595", + "default3.handlebars->117->2560", "default3.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7", "default3.handlebars->container->column_l->p41->3->3", "messenger.handlebars->xbottom->1->1->0->5", @@ -17181,7 +17181,7 @@ "zh-cht": "清除 RDP 憑據?", "xloc": [ "default-mobile.handlebars->53->644", - "default.handlebars->119->1381" + "default.handlebars->119->1382" ] }, { @@ -17211,7 +17211,7 @@ "zh-cht": "清除 SSH 憑據?", "xloc": [ "default-mobile.handlebars->53->642", - "default.handlebars->119->1379" + "default.handlebars->119->1380" ] }, { @@ -17240,8 +17240,8 @@ "zh-chs": "清除保安编码", "zh-cht": "清除保安編碼", "xloc": [ - "default.handlebars->119->243", - "default3.handlebars->117->254" + "default.handlebars->119->244", + "default3.handlebars->117->255" ] }, { @@ -17270,10 +17270,10 @@ "zh-chs": "清除代理核心", "zh-cht": "清除代理核心", "xloc": [ - "default.handlebars->119->756", - "default.handlebars->119->798", - "default3.handlebars->117->767", - "default3.handlebars->117->809" + "default.handlebars->119->757", + "default.handlebars->119->799", + "default3.handlebars->117->768", + "default3.handlebars->117->810" ] }, { @@ -17302,8 +17302,8 @@ "zh-chs": "清除选定设备上的代理核心?", "zh-cht": "清除所選設備上的代理核心?", "xloc": [ - "default.handlebars->119->797", - "default3.handlebars->117->808" + "default.handlebars->119->798", + "default3.handlebars->117->809" ] }, { @@ -17332,9 +17332,9 @@ "zh-chs": "全部清除", "zh-cht": "全部清除", "xloc": [ - "default-mobile.handlebars->53->1040", - "default.handlebars->119->3309", - "default3.handlebars->117->3314" + "default-mobile.handlebars->53->1041", + "default.handlebars->119->3311", + "default3.handlebars->117->3316" ] }, { @@ -17364,8 +17364,8 @@ "zh-cht": "清除搜索過濾器", "xloc": [ "default-mobile.handlebars->53->419", - "default.handlebars->119->376", - "default3.handlebars->117->387" + "default.handlebars->119->377", + "default3.handlebars->117->388" ] }, { @@ -17394,9 +17394,9 @@ "zh-chs": "清除核心", "zh-cht": "清除核心", "xloc": [ - "default-mobile.handlebars->53->941", - "default.handlebars->119->1783", - "default3.handlebars->117->1781" + "default-mobile.handlebars->53->942", + "default.handlebars->119->1785", + "default3.handlebars->117->1783" ] }, { @@ -17426,8 +17426,8 @@ "zh-cht": "從應用程序中清除秘密,然後重試。你只有幾分鐘的時間來輸入正確的代碼。", "xloc": [ "default-mobile.handlebars->53->79", - "default.handlebars->119->233", - "default3.handlebars->117->245" + "default.handlebars->119->234", + "default3.handlebars->117->246" ] }, { @@ -17456,9 +17456,9 @@ "zh-chs": "清除此通知", "zh-cht": "清除此通知", "xloc": [ - "default-mobile.handlebars->53->1039", - "default.handlebars->119->3308", - "default3.handlebars->117->3313" + "default-mobile.handlebars->53->1040", + "default.handlebars->119->3310", + "default3.handlebars->117->3315" ] }, { @@ -17574,10 +17574,10 @@ "zh-chs": "单击此处编辑设备组名称", "zh-cht": "單擊此處編輯裝置群名稱", "xloc": [ - "default.handlebars->119->2180", - "default.handlebars->119->2484", - "default3.handlebars->117->2191", - "default3.handlebars->117->2496" + "default.handlebars->119->2182", + "default.handlebars->119->2486", + "default3.handlebars->117->2193", + "default3.handlebars->117->2498" ] }, { @@ -17606,8 +17606,8 @@ "zh-chs": "单击此处编辑服务器端设备名称", "zh-cht": "單擊此處編輯伺服器端裝置名稱", "xloc": [ - "default.handlebars->119->898", - "default3.handlebars->117->909" + "default.handlebars->119->899", + "default3.handlebars->117->910" ] }, { @@ -17636,8 +17636,8 @@ "zh-chs": "单击此处编辑用户组名称", "zh-cht": "單擊此處編輯用戶群名稱", "xloc": [ - "default.handlebars->119->2885", - "default3.handlebars->117->2894" + "default.handlebars->119->2887", + "default3.handlebars->117->2896" ] }, { @@ -17782,8 +17782,8 @@ "zh-cht": "單擊確定將驗證電郵發送到:", "xloc": [ "default-mobile.handlebars->53->324", - "default.handlebars->119->2094", - "default3.handlebars->117->2091" + "default.handlebars->119->2096", + "default3.handlebars->117->2093" ] }, { @@ -17898,9 +17898,9 @@ "zh-chs": "客户端控制模式(CCM)", "zh-cht": "客戶端控制模式(CCM)", "xloc": [ - "default-mobile.handlebars->53->838", - "default.handlebars->119->1679", - "default3.handlebars->117->1677" + "default-mobile.handlebars->53->839", + "default.handlebars->119->1681", + "default3.handlebars->117->1679" ] }, { @@ -17929,8 +17929,8 @@ "zh-chs": "客户编号", "zh-cht": "客戶編號", "xloc": [ - "default.handlebars->119->2157", - "default3.handlebars->117->2172" + "default.handlebars->119->2159", + "default3.handlebars->117->2174" ] }, { @@ -17959,8 +17959,8 @@ "zh-chs": "客户端启动的远程访问", "zh-cht": "客戶端啟動的遠程訪問", "xloc": [ - "default.handlebars->119->2311", - "default3.handlebars->117->2321" + "default.handlebars->119->2313", + "default3.handlebars->117->2323" ] }, { @@ -17989,8 +17989,8 @@ "zh-chs": "客户机密", "zh-cht": "客戶機密", "xloc": [ - "default.handlebars->119->2158", - "default3.handlebars->117->2173" + "default.handlebars->119->2160", + "default3.handlebars->117->2175" ] }, { @@ -18052,14 +18052,14 @@ "xloc": [ "agent-translations.json", "default-mobile.handlebars->53->87", - "default.handlebars->119->1493", - "default.handlebars->119->1563", - "default.handlebars->119->241", - "default.handlebars->119->250", - "default.handlebars->119->3442", - "default3.handlebars->117->1494", - "default3.handlebars->117->1563", - "default3.handlebars->117->361", + "default.handlebars->119->1494", + "default.handlebars->119->1564", + "default.handlebars->119->242", + "default.handlebars->119->251", + "default.handlebars->119->3444", + "default3.handlebars->117->1495", + "default3.handlebars->117->1564", + "default3.handlebars->117->362", "sharing.handlebars->47->52" ] }, @@ -18089,8 +18089,8 @@ "zh-chs": "已关闭桌面多路复用会话 \\\"{0}\\\",{1} 秒", "zh-cht": "已關閉桌面多路復用會話 \\\"{0}\\\",{1} 秒", "xloc": [ - "default.handlebars->119->2696", - "default3.handlebars->117->2708" + "default.handlebars->119->2698", + "default3.handlebars->117->2710" ] }, { @@ -18119,8 +18119,8 @@ "zh-chs": "封闭式桌面多路复用会话,{0}秒", "zh-cht": "封閉式桌面多路復用會話,{0}秒", "xloc": [ - "default.handlebars->119->2557", - "default3.handlebars->117->2569" + "default.handlebars->119->2559", + "default3.handlebars->117->2571" ] }, { @@ -18149,8 +18149,8 @@ "zh-chs": "码", "zh-cht": "碼", "xloc": [ - "default.handlebars->119->333", - "default3.handlebars->117->343" + "default.handlebars->119->334", + "default3.handlebars->117->344" ] }, { @@ -18272,8 +18272,8 @@ "zh-cht": "命令", "xloc": [ "agentinvite.handlebars->13->17", - "default.handlebars->119->694", - "default3.handlebars->117->705" + "default.handlebars->119->695", + "default3.handlebars->117->706" ] }, { @@ -18332,13 +18332,13 @@ "zh-chs": "指令", "zh-cht": "指令", "xloc": [ - "default-mobile.handlebars->53->1027", - "default.handlebars->119->1156", - "default.handlebars->119->1181", - "default.handlebars->119->2425", - "default3.handlebars->117->1165", - "default3.handlebars->117->1190", - "default3.handlebars->117->2437" + "default-mobile.handlebars->53->1028", + "default.handlebars->119->1157", + "default.handlebars->119->1182", + "default.handlebars->119->2427", + "default3.handlebars->117->1166", + "default3.handlebars->117->1191", + "default3.handlebars->117->2439" ] }, { @@ -18355,8 +18355,8 @@ "uk": "Команди з файлу", "xloc": [ "default-mobile.handlebars->53->626", - "default.handlebars->119->823", - "default3.handlebars->117->834" + "default.handlebars->119->824", + "default3.handlebars->117->835" ] }, { @@ -18373,8 +18373,8 @@ "uk": "Команди з файлу на сервері", "xloc": [ "default-mobile.handlebars->53->627", - "default.handlebars->119->824", - "default3.handlebars->117->835" + "default.handlebars->119->825", + "default3.handlebars->117->836" ] }, { @@ -18391,8 +18391,8 @@ "uk": "Команди з текстового поля", "xloc": [ "default-mobile.handlebars->53->625", - "default.handlebars->119->822", - "default3.handlebars->117->833" + "default.handlebars->119->823", + "default3.handlebars->117->834" ] }, { @@ -18421,10 +18421,10 @@ "zh-chs": "通用设备组", "zh-cht": "通用裝置群", "xloc": [ - "default.handlebars->119->2920", - "default.handlebars->119->3109", - "default3.handlebars->117->2929", - "default3.handlebars->117->3112" + "default.handlebars->119->2922", + "default.handlebars->119->3111", + "default3.handlebars->117->2931", + "default3.handlebars->117->3114" ] }, { @@ -18453,10 +18453,10 @@ "zh-chs": "通用设备", "zh-cht": "通用裝置", "xloc": [ - "default.handlebars->119->2926", - "default.handlebars->119->3121", - "default3.handlebars->117->2935", - "default3.handlebars->117->3124" + "default.handlebars->119->2928", + "default.handlebars->119->3123", + "default3.handlebars->117->2937", + "default3.handlebars->117->3126" ] }, { @@ -18485,9 +18485,9 @@ "zh-chs": "编译时间", "zh-cht": "編譯時間", "xloc": [ - "default-mobile.handlebars->53->805", - "default.handlebars->119->1636", - "default3.handlebars->117->1636" + "default-mobile.handlebars->53->806", + "default.handlebars->119->1638", + "default3.handlebars->117->1638" ] }, { @@ -18542,8 +18542,8 @@ "zh-chs": "压缩档案...", "zh-cht": "壓縮檔案...", "xloc": [ - "default.handlebars->119->1551", - "default3.handlebars->117->1551", + "default.handlebars->119->1552", + "default3.handlebars->117->1552", "sharing.handlebars->47->47" ] }, @@ -18585,8 +18585,8 @@ "pl": "Zapisy pliku konfiguracyjnego", "uk": "Записи файлу конфігурації", "xloc": [ - "default.handlebars->119->3275", - "default3.handlebars->117->3278" + "default.handlebars->119->3277", + "default3.handlebars->117->3280" ] }, { @@ -18616,23 +18616,23 @@ "zh-cht": "確認", "xloc": [ "default-mobile.handlebars->53->639", - "default-mobile.handlebars->53->976", - "default.handlebars->119->1330", - "default.handlebars->119->1339", - "default.handlebars->119->2322", - "default.handlebars->119->2785", - "default.handlebars->119->2875", - "default.handlebars->119->2942", - "default.handlebars->119->3107", - "default.handlebars->119->767", - "default3.handlebars->117->1335", - "default3.handlebars->117->1343", - "default3.handlebars->117->2331", - "default3.handlebars->117->2797", - "default3.handlebars->117->2884", - "default3.handlebars->117->2951", - "default3.handlebars->117->3110", - "default3.handlebars->117->778" + "default-mobile.handlebars->53->977", + "default.handlebars->119->1331", + "default.handlebars->119->1340", + "default.handlebars->119->2324", + "default.handlebars->119->2787", + "default.handlebars->119->2877", + "default.handlebars->119->2944", + "default.handlebars->119->3109", + "default.handlebars->119->768", + "default3.handlebars->117->1336", + "default3.handlebars->117->1344", + "default3.handlebars->117->2333", + "default3.handlebars->117->2799", + "default3.handlebars->117->2886", + "default3.handlebars->117->2953", + "default3.handlebars->117->3112", + "default3.handlebars->117->779" ] }, { @@ -18665,7 +18665,7 @@ "en": "Confirm Password", "nl": "Bevestig wachtwoord", "xloc": [ - "default3.handlebars->117->2845" + "default3.handlebars->117->2847" ] }, { @@ -18695,8 +18695,8 @@ "zh-cht": "確認將1個副本複製到此位置?", "xloc": [ "default-mobile.handlebars->53->737", - "default.handlebars->119->1583", - "default3.handlebars->117->1583", + "default.handlebars->119->1584", + "default3.handlebars->117->1584", "sharing-mobile.handlebars->53->93", "sharing.handlebars->47->70" ] @@ -18727,8 +18727,8 @@ "zh-chs": "确认{0}个条目的复制到此位置?", "zh-cht": "確認{0}個條目的複製到此位置?", "xloc": [ - "default.handlebars->119->1582", - "default3.handlebars->117->1582", + "default.handlebars->119->1583", + "default3.handlebars->117->1583", "sharing.handlebars->47->69" ] }, @@ -18788,8 +18788,8 @@ "zh-chs": "确认删除选定的帐户?", "zh-cht": "確認刪除所選帳戶?", "xloc": [ - "default.handlebars->119->2784", - "default3.handlebars->117->2796" + "default.handlebars->119->2786", + "default3.handlebars->117->2798" ] }, { @@ -18844,8 +18844,8 @@ "zh-chs": "确认删除选定的用户组?", "zh-cht": "確認刪除所選用戶群?", "xloc": [ - "default.handlebars->119->2874", - "default3.handlebars->117->2883" + "default.handlebars->119->2876", + "default3.handlebars->117->2885" ] }, { @@ -18874,24 +18874,24 @@ "zh-chs": "确认删除用户{0}?", "zh-cht": "確認刪除用戶{0}?", "xloc": [ - "default.handlebars->119->3106", - "default3.handlebars->117->3109" + "default.handlebars->119->3108", + "default3.handlebars->117->3111" ] }, { "en": "Confirm disabling 2FA Duo login security.", "nl": "Bevestig het uitschakelen van 2FA Duo inlogbeveiliging.", "xloc": [ - "default.handlebars->119->1840", - "default3.handlebars->117->1837" + "default.handlebars->119->1842", + "default3.handlebars->117->1839" ] }, { "en": "Confirm enabling of Duo 2FA login security. Once enabled you will be given the option to use Duo at login for added security. Click ok to go thru the steps to enable Duo.", "nl": "Bevestig het inschakelen van Duo 2FA inlogbeveiliging. Eenmaal ingeschakeld, krijgt u de mogelijkheid om Duo te gebruiken bij het inloggen voor extra veiligheid. Klik op OK om de stappen te doorlopen om Duo in te schakelen.", "xloc": [ - "default.handlebars->119->1838", - "default3.handlebars->117->1835" + "default.handlebars->119->1840", + "default3.handlebars->117->1837" ] }, { @@ -18920,8 +18920,8 @@ "zh-chs": "确认删除用户“ {0} ”的成员身份?", "zh-cht": "確認刪除用戶“ {0} ”的成員身份?", "xloc": [ - "default.handlebars->119->2945", - "default3.handlebars->117->2954" + "default.handlebars->119->2947", + "default3.handlebars->117->2956" ] }, { @@ -18950,8 +18950,8 @@ "zh-chs": "确认删除用户组“ {0} ”的成员身份?", "zh-cht": "確認刪除用戶群“ {0} ”的成員身份?", "xloc": [ - "default.handlebars->119->3138", - "default3.handlebars->117->3141" + "default.handlebars->119->3140", + "default3.handlebars->117->3143" ] }, { @@ -18981,8 +18981,8 @@ "zh-cht": "確認將1個條目移動到此位置?", "xloc": [ "default-mobile.handlebars->53->739", - "default.handlebars->119->1585", - "default3.handlebars->117->1585", + "default.handlebars->119->1586", + "default3.handlebars->117->1586", "sharing-mobile.handlebars->53->95", "sharing.handlebars->47->72" ] @@ -19013,8 +19013,8 @@ "zh-chs": "确认将{0}个条目移到此位置?", "zh-cht": "確認將{0}個條目移到該位置?", "xloc": [ - "default.handlebars->119->1584", - "default3.handlebars->117->1584", + "default.handlebars->119->1585", + "default3.handlebars->117->1585", "sharing.handlebars->47->71" ] }, @@ -19074,8 +19074,8 @@ "zh-chs": "确认覆盖?", "zh-cht": "確認覆蓋?", "xloc": [ - "default.handlebars->119->2538", - "default3.handlebars->117->2550" + "default.handlebars->119->2540", + "default3.handlebars->117->2552" ] }, { @@ -19104,10 +19104,10 @@ "zh-chs": "确认删除设备“ {0} ”的访问权限?", "zh-cht": "確認刪除裝置“ {0} ”的訪問權限?", "xloc": [ - "default.handlebars->119->2935", - "default.handlebars->119->3129", - "default3.handlebars->117->2944", - "default3.handlebars->117->3132" + "default.handlebars->119->2937", + "default.handlebars->119->3131", + "default3.handlebars->117->2946", + "default3.handlebars->117->3134" ] }, { @@ -19136,10 +19136,10 @@ "zh-chs": "确认删除设备组“ {0} ”的访问权限?", "zh-cht": "確認刪除裝置群“ {0} ”的訪問權限?", "xloc": [ - "default.handlebars->119->2937", - "default.handlebars->119->3142", - "default3.handlebars->117->2946", - "default3.handlebars->117->3145" + "default.handlebars->119->2939", + "default.handlebars->119->3144", + "default3.handlebars->117->2948", + "default3.handlebars->117->3147" ] }, { @@ -19168,8 +19168,8 @@ "zh-chs": "确认删除用户“ {0} ”的访问权限?", "zh-cht": "確認刪除用戶“ {0} ”的訪問權限?", "xloc": [ - "default.handlebars->119->3131", - "default3.handlebars->117->3134" + "default.handlebars->119->3133", + "default3.handlebars->117->3136" ] }, { @@ -19198,8 +19198,8 @@ "zh-chs": "确认删除用户组“ {0} ”的访问权限?", "zh-cht": "確認刪除用戶群“ {0} ”的訪問權限?", "xloc": [ - "default.handlebars->119->3134", - "default3.handlebars->117->3137" + "default.handlebars->119->3136", + "default3.handlebars->117->3139" ] }, { @@ -19228,10 +19228,10 @@ "zh-chs": "确认删除访问权限?", "zh-cht": "確認刪除訪問權限?", "xloc": [ - "default.handlebars->119->3132", - "default.handlebars->119->3135", - "default3.handlebars->117->3135", - "default3.handlebars->117->3138" + "default.handlebars->119->3134", + "default.handlebars->119->3137", + "default3.handlebars->117->3137", + "default3.handlebars->117->3140" ] }, { @@ -19261,8 +19261,8 @@ "zh-cht": "確認刪除身份驗證軟體兩步登入?", "xloc": [ "default-mobile.handlebars->53->323", - "default.handlebars->119->1844", - "default3.handlebars->117->1841" + "default.handlebars->119->1846", + "default3.handlebars->117->1843" ] }, { @@ -19317,8 +19317,8 @@ "zh-chs": "确认删除设备共享“{0}”?", "zh-cht": "確認刪除設備共享“{0}”?", "xloc": [ - "default.handlebars->119->3127", - "default3.handlebars->117->3130" + "default.handlebars->119->3129", + "default3.handlebars->117->3132" ] }, { @@ -19399,8 +19399,8 @@ "zh-chs": "确认移除推送认证设备?", "zh-cht": "確認移除推送認證設備?", "xloc": [ - "default.handlebars->119->1846", - "default3.handlebars->117->1843" + "default.handlebars->119->1848", + "default3.handlebars->117->1845" ] }, { @@ -19429,8 +19429,8 @@ "zh-chs": "确认删除用户“ {0} ”的权限?", "zh-cht": "確認刪除用戶“ {0} ”的權限?", "xloc": [ - "default.handlebars->119->2437", - "default3.handlebars->117->2449" + "default.handlebars->119->2439", + "default3.handlebars->117->2451" ] }, { @@ -19459,8 +19459,8 @@ "zh-chs": "确认删除用户组“ {0} ”的权限?", "zh-cht": "確認刪除用戶群“ {0} ”的權限?", "xloc": [ - "default.handlebars->119->2439", - "default3.handlebars->117->2451" + "default.handlebars->119->2441", + "default3.handlebars->117->2453" ] }, { @@ -19489,8 +19489,8 @@ "zh-chs": "确认移除所选设备?", "zh-cht": "確認刪除所選設備?", "xloc": [ - "default.handlebars->119->761", - "default3.handlebars->117->772" + "default.handlebars->119->762", + "default3.handlebars->117->773" ] }, { @@ -19519,8 +19519,8 @@ "zh-chs": "确认删除此登录令牌?", "zh-cht": "確認刪除此登錄令牌?", "xloc": [ - "default.handlebars->119->2150", - "default3.handlebars->117->2165" + "default.handlebars->119->2152", + "default3.handlebars->117->2167" ] }, { @@ -19575,7 +19575,7 @@ "zh-chs": "确认删除用户{0}?", "zh-cht": "確認刪除用戶{0}?", "xloc": [ - "default-mobile.handlebars->53->1036" + "default-mobile.handlebars->53->1037" ] }, { @@ -19604,8 +19604,8 @@ "zh-chs": "确认移除 {0} 个选定的设备?", "zh-cht": "確認刪除 {0} 個選定的設備?", "xloc": [ - "default.handlebars->119->762", - "default3.handlebars->117->773" + "default.handlebars->119->763", + "default3.handlebars->117->774" ] }, { @@ -19635,8 +19635,8 @@ "zh-cht": "將{1}入口{2}中的{0}限製到此位置?", "xloc": [ "default-mobile.handlebars->53->384", - "default.handlebars->119->2541", - "default3.handlebars->117->2553" + "default.handlebars->119->2543", + "default3.handlebars->117->2555" ] }, { @@ -19669,13 +19669,13 @@ "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->container->page_content->column_l->p10->p10terminal->termTable->termarea1->1->3->connectbutton2span", - "default.handlebars->119->2220", - "default.handlebars->119->992", + "default.handlebars->119->2222", + "default.handlebars->119->993", "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", - "default3.handlebars->117->1003", - "default3.handlebars->117->2231", + "default3.handlebars->117->1004", + "default3.handlebars->117->2233", "default3.handlebars->container->column_l->p11->deskarea0->deskarea1->1->connectbutton1span->connectbutton1", "default3.handlebars->container->column_l->p12->termTable->1->1->0->1->1->connectbutton2span->connectbutton2", "default3.handlebars->container->column_l->p13->p13toolbar->1->0->1->1->p13Connectspan->p13Connect", @@ -19718,9 +19718,9 @@ "zh-chs": "全部连接", "zh-cht": "全部連接", "xloc": [ - "default.handlebars->119->488", + "default.handlebars->119->489", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->kvmListToolbar", - "default3.handlebars->117->499", + "default3.handlebars->117->500", "default3.handlebars->container->column_l->p1->devListToolbarSpan->kvmListToolbar" ] }, @@ -19776,8 +19776,8 @@ "zh-chs": "连接到服务器", "zh-cht": "連接到伺服器", "xloc": [ - "default.handlebars->119->2315", - "default3.handlebars->117->2324" + "default.handlebars->119->2317", + "default3.handlebars->117->2326" ] }, { @@ -20016,9 +20016,9 @@ "xloc": [ "default-mobile.handlebars->53->4", "default.handlebars->119->11", - "default.handlebars->119->448", + "default.handlebars->119->449", "default3.handlebars->117->11", - "default3.handlebars->117->459", + "default3.handlebars->117->460", "sharing-mobile.handlebars->53->4", "sharing.handlebars->47->4", "ssh.handlebars->19->4", @@ -20051,8 +20051,8 @@ "zh-chs": "已连接的英特尔®AMT", "zh-cht": "已連接的Intel® AMT", "xloc": [ - "default.handlebars->119->3367", - "default3.handlebars->117->3372" + "default.handlebars->119->3369", + "default3.handlebars->117->3374" ] }, { @@ -20081,8 +20081,8 @@ "zh-chs": "已连接的英特尔®AMT CIRA", "zh-cht": "已連接的Intel® AMT CIRA", "xloc": [ - "default.handlebars->119->3368", - "default3.handlebars->117->3373" + "default.handlebars->119->3370", + "default3.handlebars->117->3375" ] }, { @@ -20111,8 +20111,8 @@ "zh-chs": "已连接的用户", "zh-cht": "已连接的用户", "xloc": [ - "default.handlebars->119->3373", - "default3.handlebars->117->3378" + "default.handlebars->119->3375", + "default3.handlebars->117->3380" ] }, { @@ -20171,9 +20171,9 @@ "zh-chs": "现在已连接", "zh-cht": "現在已連接", "xloc": [ - "default-mobile.handlebars->53->800", - "default.handlebars->119->1631", - "default3.handlebars->117->1631" + "default-mobile.handlebars->53->801", + "default.handlebars->119->1633", + "default3.handlebars->117->1633" ] }, { @@ -20315,15 +20315,15 @@ "default-mobile.handlebars->53->2", "default-mobile.handlebars->53->52", "default-mobile.handlebars->53->755", - "default.handlebars->119->1611", - "default.handlebars->119->407", - "default.handlebars->119->410", - "default.handlebars->119->491", + "default.handlebars->119->1612", + "default.handlebars->119->408", + "default.handlebars->119->411", + "default.handlebars->119->492", "default.handlebars->119->9", - "default3.handlebars->117->1611", - "default3.handlebars->117->418", - "default3.handlebars->117->421", - "default3.handlebars->117->502", + "default3.handlebars->117->1612", + "default3.handlebars->117->419", + "default3.handlebars->117->422", + "default3.handlebars->117->503", "default3.handlebars->117->9", "sharing-mobile.handlebars->53->111", "sharing-mobile.handlebars->53->2", @@ -20385,8 +20385,8 @@ "zh-chs": "连接数量", "zh-cht": "連接數量", "xloc": [ - "default.handlebars->119->3399", - "default3.handlebars->117->3404" + "default.handlebars->119->3401", + "default3.handlebars->117->3406" ] }, { @@ -20422,10 +20422,10 @@ "zh-cht": "連接錯誤", "xloc": [ "default-mobile.handlebars->53->718", - "default.handlebars->119->1530", - "default.handlebars->119->1547", - "default3.handlebars->117->1530", - "default3.handlebars->117->1547", + "default.handlebars->119->1531", + "default.handlebars->119->1548", + "default3.handlebars->117->1531", + "default3.handlebars->117->1548", "login2.handlebars->17->232", "sharing-mobile.handlebars->53->75" ] @@ -20456,8 +20456,8 @@ "zh-chs": "连接转发器", "zh-cht": "連接轉發器", "xloc": [ - "default.handlebars->119->3436", - "default3.handlebars->117->3441" + "default.handlebars->119->3438", + "default3.handlebars->117->3443" ] }, { @@ -20546,13 +20546,13 @@ "zh-cht": "連接性", "xloc": [ "default-mobile.handlebars->53->544", - "default.handlebars->119->1009", - "default.handlebars->119->2491", - "default.handlebars->119->395", + "default.handlebars->119->1010", + "default.handlebars->119->2493", + "default.handlebars->119->396", "default.handlebars->container->column_l->p21->p21main->1->1->meshConnChartDiv->1", - "default3.handlebars->117->1020", - "default3.handlebars->117->2503", - "default3.handlebars->117->406", + "default3.handlebars->117->1021", + "default3.handlebars->117->2505", + "default3.handlebars->117->407", "default3.handlebars->container->column_l->p21->p21main->1->1->meshConnChartDiv->1" ] }, @@ -20582,8 +20582,8 @@ "zh-chs": "同意", "zh-cht": "同意", "xloc": [ - "default.handlebars->119->2716", - "default3.handlebars->117->2728" + "default.handlebars->119->2718", + "default3.handlebars->117->2730" ] }, { @@ -20613,13 +20613,13 @@ "zh-cht": "控制台", "xloc": [ "default-mobile.handlebars->53->587", - "default.handlebars->119->1149", - "default.handlebars->119->1174", + "default.handlebars->119->1150", + "default.handlebars->119->1175", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevConsole", "default.handlebars->container->topbar->1->1->ServerSubMenuSpan->ServerSubMenu->1->0->ServerConsole", "default.handlebars->contextMenu->cxconsole", - "default3.handlebars->117->1158", - "default3.handlebars->117->1183", + "default3.handlebars->117->1159", + "default3.handlebars->117->1184", "default3.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevConsole", "default3.handlebars->container->topbar->1->1->ServerSubMenuSpan->ServerSubMenu->1->0->ServerConsole", "default3.handlebars->contextMenu->cxconsole" @@ -20651,8 +20651,8 @@ "zh-chs": "控制台 -", "zh-cht": "控制台 -", "xloc": [ - "default.handlebars->119->899", - "default3.handlebars->117->910" + "default.handlebars->119->900", + "default3.handlebars->117->911" ] }, { @@ -20681,10 +20681,10 @@ "zh-chs": "控制", "zh-cht": "控制", "xloc": [ - "default.handlebars->119->1148", - "default.handlebars->119->1173", - "default3.handlebars->117->1157", - "default3.handlebars->117->1182", + "default.handlebars->119->1149", + "default.handlebars->119->1174", + "default3.handlebars->117->1158", + "default3.handlebars->117->1183", "messenger.handlebars->remoteImage->3->2" ] }, @@ -20744,8 +20744,8 @@ "zh-chs": "Cookie编码器", "zh-cht": "Cookie編碼器", "xloc": [ - "default.handlebars->119->3419", - "default3.handlebars->117->3424" + "default.handlebars->119->3421", + "default3.handlebars->117->3426" ] }, { @@ -20776,10 +20776,10 @@ "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->3", "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->3", - "default.handlebars->119->640", + "default.handlebars->119->641", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", - "default3.handlebars->117->651", + "default3.handlebars->117->652", "default3.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default3.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", "sharing-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->3", @@ -20812,12 +20812,12 @@ "zh-chs": "将MAC地址复制到剪贴板", "zh-cht": "將MAC地址複製到剪貼板", "xloc": [ - "default.handlebars->119->172", - "default.handlebars->119->180", - "default.handlebars->119->183", - "default3.handlebars->117->185", - "default3.handlebars->117->193", - "default3.handlebars->117->196" + "default.handlebars->119->173", + "default.handlebars->119->181", + "default.handlebars->119->184", + "default3.handlebars->117->186", + "default3.handlebars->117->194", + "default3.handlebars->117->197" ] }, { @@ -20828,8 +20828,8 @@ "pl": "Kopiuj Tajny Klucz do schowka", "uk": "Скопіюйте секретний ключ до буфера обміну", "xloc": [ - "default.handlebars->119->227", - "default3.handlebars->117->239" + "default.handlebars->119->228", + "default3.handlebars->117->240" ] }, { @@ -20858,12 +20858,12 @@ "zh-chs": "将 URL 复制到剪贴板", "zh-cht": "將 URL 複製到剪貼板", "xloc": [ - "default.handlebars->119->660", - "default.handlebars->119->664", - "default.handlebars->119->668", - "default3.handlebars->117->671", - "default3.handlebars->117->675", - "default3.handlebars->117->679" + "default.handlebars->119->661", + "default.handlebars->119->665", + "default.handlebars->119->669", + "default3.handlebars->117->672", + "default3.handlebars->117->676", + "default3.handlebars->117->680" ] }, { @@ -20927,10 +20927,10 @@ "pl": "Kopiuj URL agenta Windows ARM 64bit do schowka", "uk": "Копіювати адресу до буфера обміну", "xloc": [ - "default.handlebars->119->634", - "default.handlebars->119->681", - "default3.handlebars->117->645", - "default3.handlebars->117->692" + "default.handlebars->119->635", + "default.handlebars->119->682", + "default3.handlebars->117->646", + "default3.handlebars->117->693" ] }, { @@ -20942,10 +20942,10 @@ "pl": "Kopiuj URL agenta Windows x86 32bit do schowka", "uk": "Скопіюйте URL-адресу Windows x86 32-біт агента до буфера обміну", "xloc": [ - "default.handlebars->119->626", - "default.handlebars->119->673", - "default3.handlebars->117->637", - "default3.handlebars->117->684" + "default.handlebars->119->627", + "default.handlebars->119->674", + "default3.handlebars->117->638", + "default3.handlebars->117->685" ] }, { @@ -20957,10 +20957,10 @@ "pl": "Kopiuj URL agenta Windows x86 64bit do schowka", "uk": "Скопіюйте URL-адресу Windows x86-64 64-біт агента до буфера обміну", "xloc": [ - "default.handlebars->119->630", - "default.handlebars->119->677", - "default3.handlebars->117->641", - "default3.handlebars->117->688" + "default.handlebars->119->631", + "default.handlebars->119->678", + "default3.handlebars->117->642", + "default3.handlebars->117->689" ] }, { @@ -20989,30 +20989,30 @@ "zh-chs": "将地址复制到剪贴板", "zh-cht": "將地址複製到剪貼板", "xloc": [ - "default.handlebars->119->161", - "default.handlebars->119->163", - "default.handlebars->119->165", - "default.handlebars->119->174", - "default.handlebars->119->176", - "default.handlebars->119->178", - "default.handlebars->119->186", - "default.handlebars->119->188", - "default.handlebars->119->190", - "default.handlebars->119->192", - "default.handlebars->119->194", - "default.handlebars->119->196", - "default3.handlebars->117->174", - "default3.handlebars->117->176", - "default3.handlebars->117->178", - "default3.handlebars->117->187", - "default3.handlebars->117->189", - "default3.handlebars->117->191", - "default3.handlebars->117->199", - "default3.handlebars->117->201", - "default3.handlebars->117->203", - "default3.handlebars->117->205", - "default3.handlebars->117->207", - "default3.handlebars->117->209" + "default.handlebars->119->162", + "default.handlebars->119->164", + "default.handlebars->119->166", + "default.handlebars->119->175", + "default.handlebars->119->177", + "default.handlebars->119->179", + "default.handlebars->119->187", + "default.handlebars->119->189", + "default.handlebars->119->191", + "default.handlebars->119->193", + "default.handlebars->119->195", + "default.handlebars->119->197", + "default3.handlebars->117->175", + "default3.handlebars->117->177", + "default3.handlebars->117->179", + "default3.handlebars->117->188", + "default3.handlebars->117->190", + "default3.handlebars->117->192", + "default3.handlebars->117->200", + "default3.handlebars->117->202", + "default3.handlebars->117->204", + "default3.handlebars->117->206", + "default3.handlebars->117->208", + "default3.handlebars->117->210" ] }, { @@ -21043,10 +21043,10 @@ "xloc": [ "agentinvite.handlebars->13->16", "agentinvite.handlebars->13->18", - "default.handlebars->119->693", - "default.handlebars->119->695", - "default3.handlebars->117->704", - "default3.handlebars->117->706" + "default.handlebars->119->694", + "default.handlebars->119->696", + "default3.handlebars->117->705", + "default3.handlebars->117->707" ] }, { @@ -21075,18 +21075,18 @@ "zh-chs": "复制连结到剪贴板", "zh-cht": "複製連結到剪貼板", "xloc": [ - "default.handlebars->119->2502", - "default.handlebars->119->2526", - "default.handlebars->119->325", - "default.handlebars->119->347", - "default.handlebars->119->349", - "default.handlebars->119->599", - "default3.handlebars->117->2514", - "default3.handlebars->117->2538", - "default3.handlebars->117->335", - "default3.handlebars->117->357", - "default3.handlebars->117->359", - "default3.handlebars->117->610" + "default.handlebars->119->2504", + "default.handlebars->119->2528", + "default.handlebars->119->326", + "default.handlebars->119->348", + "default.handlebars->119->350", + "default.handlebars->119->600", + "default3.handlebars->117->2516", + "default3.handlebars->117->2540", + "default3.handlebars->117->336", + "default3.handlebars->117->358", + "default3.handlebars->117->360", + "default3.handlebars->117->611" ] }, { @@ -21115,14 +21115,14 @@ "zh-chs": "将macOS代理URL复制到剪贴板", "zh-cht": "將macOS代理URL複製到剪貼板", "xloc": [ - "default.handlebars->119->645", - "default.handlebars->119->649", - "default.handlebars->119->653", - "default.handlebars->119->687", - "default3.handlebars->117->656", - "default3.handlebars->117->660", - "default3.handlebars->117->664", - "default3.handlebars->117->698" + "default.handlebars->119->646", + "default.handlebars->119->650", + "default.handlebars->119->654", + "default.handlebars->119->688", + "default3.handlebars->117->657", + "default3.handlebars->117->661", + "default3.handlebars->117->665", + "default3.handlebars->117->699" ] }, { @@ -21151,8 +21151,8 @@ "zh-chs": "将名称复制到剪贴板", "zh-cht": "將名稱複製到剪貼板", "xloc": [ - "default.handlebars->119->170", - "default3.handlebars->117->183" + "default.handlebars->119->171", + "default3.handlebars->117->184" ] }, { @@ -21183,10 +21183,10 @@ "xloc": [ "agentinvite.handlebars->container->column_l->5->linuxtab", "agentinvite.handlebars->container->column_l->5->linuxtab", - "default.handlebars->119->639", - "default.handlebars->119->683", - "default3.handlebars->117->650", - "default3.handlebars->117->694" + "default.handlebars->119->640", + "default.handlebars->119->684", + "default3.handlebars->117->651", + "default3.handlebars->117->695" ] }, { @@ -21215,8 +21215,8 @@ "zh-chs": "将有效代码复制到剪贴板", "zh-cht": "將有效代碼複製到剪貼板", "xloc": [ - "default.handlebars->119->244", - "default3.handlebars->117->255" + "default.handlebars->119->245", + "default3.handlebars->117->256" ] }, { @@ -21245,8 +21245,8 @@ "zh-chs": "复制:“{0}”到“{1}”", "zh-cht": "複製:“{0}”到“{1}”", "xloc": [ - "default.handlebars->119->2600", - "default3.handlebars->117->2612" + "default.handlebars->119->2602", + "default3.handlebars->117->2614" ] }, { @@ -21455,8 +21455,8 @@ "zh-chs": "核心服务器", "zh-cht": "核心伺服器", "xloc": [ - "default.handlebars->119->3418", - "default3.handlebars->117->3423" + "default.handlebars->119->3420", + "default3.handlebars->117->3425" ] }, { @@ -21486,8 +21486,8 @@ "zh-cht": "科西嘉文", "xloc": [ "default-mobile.handlebars->53->155", - "default.handlebars->119->1902", - "default3.handlebars->117->1898", + "default.handlebars->119->1904", + "default3.handlebars->117->1900", "login2.handlebars->17->41" ] }, @@ -21495,7 +21495,7 @@ "en": "Cosmo", "nl": "Cosmo", "xloc": [ - "default3.handlebars->117->2104" + "default3.handlebars->117->2106" ] }, { @@ -21550,8 +21550,8 @@ "zh-chs": "创建帐号", "zh-cht": "創建帳號", "xloc": [ - "default.handlebars->119->2842", - "default3.handlebars->117->2853", + "default.handlebars->119->2844", + "default3.handlebars->117->2855", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->16->1->1", "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->16->1->1", "login2.handlebars->centralTable->1->0->logincell->createpanel->createpanelform->9->1->16->1->1" @@ -21638,9 +21638,9 @@ "zh-chs": "创建登录令牌", "zh-cht": "創建登錄令牌", "xloc": [ - "default.handlebars->119->2087", - "default.handlebars->119->350", - "default3.handlebars->117->2084" + "default.handlebars->119->2089", + "default.handlebars->119->351", + "default3.handlebars->117->2086" ] }, { @@ -21669,8 +21669,8 @@ "zh-chs": "创建用户组", "zh-cht": "創建用戶群", "xloc": [ - "default.handlebars->119->2882", - "default3.handlebars->117->2891" + "default.handlebars->119->2884", + "default3.handlebars->117->2893" ] }, { @@ -21699,8 +21699,8 @@ "zh-chs": "创建连结以与访客共享此设备", "zh-cht": "創建鏈結以與訪客共享此裝置", "xloc": [ - "default.handlebars->119->1038", - "default3.handlebars->117->1049" + "default.handlebars->119->1039", + "default3.handlebars->117->1050" ] }, { @@ -21729,8 +21729,8 @@ "zh-chs": "使用以下选项创建一个新的设备组。", "zh-cht": "使用以下選項創建一個新的裝置群。", "xloc": [ - "default.handlebars->119->2117", - "default3.handlebars->117->2132" + "default.handlebars->119->2119", + "default3.handlebars->117->2134" ] }, { @@ -21759,8 +21759,8 @@ "zh-chs": "创建一个新的设备组。", "zh-cht": "創建一個新的裝置群。", "xloc": [ - "default.handlebars->119->400", - "default3.handlebars->117->411" + "default.handlebars->119->401", + "default3.handlebars->117->412" ] }, { @@ -21789,8 +21789,8 @@ "zh-chs": "创建一个临时用户名和密码,可用作您帐户的替代登录名。这对于允许工具或其他服务访问您的帐户非常有用。", "zh-cht": "創建一個臨時用戶名和密碼,可用作您帳戶的替代登錄名。這對於允許工具或其他服務訪問您的帳戶很有用。", "xloc": [ - "default.handlebars->119->2067", - "default3.handlebars->117->2063" + "default.handlebars->119->2069", + "default3.handlebars->117->2065" ] }, { @@ -21819,8 +21819,8 @@ "zh-chs": "创建文件夹(如果不存在)?", "zh-cht": "創建文件夾(如果不存在)?", "xloc": [ - "default.handlebars->119->792", - "default3.handlebars->117->803" + "default.handlebars->119->793", + "default3.handlebars->117->804" ] }, { @@ -21849,8 +21849,8 @@ "zh-chs": "创建文件夹:“{0}”", "zh-cht": "創建文件夾:“{0}”", "xloc": [ - "default.handlebars->119->2593", - "default3.handlebars->117->2605" + "default.handlebars->119->2595", + "default3.handlebars->117->2607" ] }, { @@ -21895,8 +21895,8 @@ "pl": "Utwórz wiele urządzeń Intel® AMT za jednym razem, poprzez import pliku JSON o takim formacie:", "uk": "Створіть кілька пристроїв Intel® AMT одночасно, імпортувавши файл JSON у такому форматі:", "xloc": [ - "default.handlebars->119->526", - "default3.handlebars->117->537" + "default.handlebars->119->527", + "default3.handlebars->117->538" ] }, { @@ -21932,8 +21932,8 @@ "nl": "Maak meerdere accounts tegelijk aan door een JSON of een CSV bestand te importeren", "uk": "Створіть кілька акаунтів одночасно, імпортувавши файл JSON або CSV", "xloc": [ - "default.handlebars->119->2799", - "default3.handlebars->117->2810" + "default.handlebars->119->2801", + "default3.handlebars->117->2812" ] }, { @@ -21993,8 +21993,8 @@ "zh-chs": "创建的设备组:{0}", "zh-cht": "創建的設備組:{0}", "xloc": [ - "default.handlebars->119->2604", - "default3.handlebars->117->2616" + "default.handlebars->119->2606", + "default3.handlebars->117->2618" ] }, { @@ -22023,8 +22023,8 @@ "zh-chs": "创建一个链接,该链接允许没有帐户的访客在有限的时间内远程控制此设备。", "zh-cht": "創建一個鏈接,該鏈接允許沒有帳戶的訪客在有限的時間內遠程控制此設備。", "xloc": [ - "default.handlebars->119->1217", - "default3.handlebars->117->1226" + "default.handlebars->119->1218", + "default3.handlebars->117->1227" ] }, { @@ -22105,8 +22105,8 @@ "zh-chs": "创建", "zh-cht": "創建", "xloc": [ - "default.handlebars->119->2990", - "default3.handlebars->117->2999" + "default.handlebars->119->2992", + "default3.handlebars->117->3001" ] }, { @@ -22135,8 +22135,8 @@ "zh-chs": "创建时间", "zh-cht": "創作時間", "xloc": [ - "default.handlebars->119->2198", - "default3.handlebars->117->2209" + "default.handlebars->119->2200", + "default3.handlebars->117->2211" ] }, { @@ -22196,10 +22196,10 @@ "zh-chs": "创建者", "zh-cht": "創作者", "xloc": [ - "default.handlebars->119->2196", - "default.handlebars->119->2197", - "default3.handlebars->117->2207", - "default3.handlebars->117->2208" + "default.handlebars->119->2198", + "default.handlebars->119->2199", + "default3.handlebars->117->2209", + "default3.handlebars->117->2210" ] }, { @@ -22229,12 +22229,12 @@ "zh-cht": "證書", "xloc": [ "default-mobile.handlebars->53->556", - "default.handlebars->119->1021", - "default.handlebars->119->1405", - "default.handlebars->119->2155", - "default3.handlebars->117->1032", - "default3.handlebars->117->1406", - "default3.handlebars->117->2170" + "default.handlebars->119->1022", + "default.handlebars->119->1406", + "default.handlebars->119->2157", + "default3.handlebars->117->1033", + "default3.handlebars->117->1407", + "default3.handlebars->117->2172" ] }, { @@ -22264,8 +22264,8 @@ "zh-cht": "克里語", "xloc": [ "default-mobile.handlebars->53->156", - "default.handlebars->119->1903", - "default3.handlebars->117->1899", + "default.handlebars->119->1905", + "default3.handlebars->117->1901", "login2.handlebars->17->42" ] }, @@ -22296,8 +22296,8 @@ "zh-cht": "克羅地亞文", "xloc": [ "default-mobile.handlebars->53->157", - "default.handlebars->119->1904", - "default3.handlebars->117->1900", + "default.handlebars->119->1906", + "default3.handlebars->117->1902", "login2.handlebars->17->43" ] }, @@ -22393,11 +22393,11 @@ "xloc": [ "default-mobile.handlebars->53->679", "default-mobile.handlebars->53->683", - "default.handlebars->119->1447", - "default.handlebars->119->1451", + "default.handlebars->119->1448", + "default.handlebars->119->1452", "default.handlebars->119->64", - "default3.handlebars->117->1449", - "default3.handlebars->117->1453", + "default3.handlebars->117->1450", + "default3.handlebars->117->1454", "default3.handlebars->117->77", "sharing-mobile.handlebars->53->35", "sharing-mobile.handlebars->53->39", @@ -22577,8 +22577,8 @@ "zh-chs": "当前版本", "zh-cht": "當前版本", "xloc": [ - "default.handlebars->119->201", - "default3.handlebars->117->214" + "default.handlebars->119->202", + "default3.handlebars->117->215" ] }, { @@ -22607,9 +22607,9 @@ "zh-chs": "当前密码不正确。", "zh-cht": "當前密碼不正確。", "xloc": [ - "default-mobile.handlebars->53->1067", - "default.handlebars->119->3336", - "default3.handlebars->117->3341" + "default-mobile.handlebars->53->1068", + "default.handlebars->119->3338", + "default3.handlebars->117->3343" ] }, { @@ -22714,7 +22714,7 @@ "en": "Cyborg", "nl": "Cyborg", "xloc": [ - "default3.handlebars->117->2105" + "default3.handlebars->117->2107" ] }, { @@ -22744,8 +22744,8 @@ "zh-cht": "捷克文", "xloc": [ "default-mobile.handlebars->53->158", - "default.handlebars->119->1905", - "default3.handlebars->117->1901", + "default.handlebars->119->1907", + "default3.handlebars->117->1903", "login2.handlebars->17->44" ] }, @@ -22757,9 +22757,9 @@ "pl": "Serwery DNS", "uk": "DNS Сервери", "xloc": [ - "default-mobile.handlebars->53->828", - "default.handlebars->119->1669", - "default3.handlebars->117->1669" + "default-mobile.handlebars->53->829", + "default.handlebars->119->1671", + "default3.handlebars->117->1671" ] }, { @@ -22788,8 +22788,8 @@ "zh-chs": "DNS suffix", "zh-cht": "DNS suffix", "xloc": [ - "default.handlebars->119->169", - "default3.handlebars->117->182" + "default.handlebars->119->170", + "default3.handlebars->117->183" ] }, { @@ -22818,8 +22818,8 @@ "zh-chs": "日常的", "zh-cht": "日常的", "xloc": [ - "default.handlebars->119->308", - "default3.handlebars->117->318" + "default.handlebars->119->309", + "default3.handlebars->117->319" ] }, { @@ -22849,8 +22849,8 @@ "zh-cht": "丹麥文", "xloc": [ "default-mobile.handlebars->53->159", - "default.handlebars->119->1906", - "default3.handlebars->117->1902", + "default.handlebars->119->1908", + "default3.handlebars->117->1904", "login2.handlebars->17->45" ] }, @@ -22889,7 +22889,7 @@ "en": "Darkly", "nl": "Donker", "xloc": [ - "default3.handlebars->117->2106" + "default3.handlebars->117->2108" ] }, { @@ -22918,8 +22918,8 @@ "zh-chs": "数据通道", "zh-cht": "數據通道", "xloc": [ - "default.handlebars->119->1403", - "default3.handlebars->117->1404", + "default.handlebars->119->1404", + "default3.handlebars->117->1405", "sharing.handlebars->47->11" ] }, @@ -22935,8 +22935,8 @@ "pl": "Zapisy Bazy Danych", "uk": "Записи Бази Даних", "xloc": [ - "default.handlebars->119->3195", - "default3.handlebars->117->3198" + "default.handlebars->119->3197", + "default3.handlebars->117->3200" ] }, { @@ -22966,8 +22966,8 @@ "zh-cht": "日期和時間", "xloc": [ "default-mobile.handlebars->53->317", - "default.handlebars->119->2064", - "default3.handlebars->117->2060" + "default.handlebars->119->2066", + "default3.handlebars->117->2062" ] }, { @@ -22997,12 +22997,12 @@ "zh-cht": "天", "xloc": [ "default-mobile.handlebars->53->629", - "default.handlebars->119->1314", - "default.handlebars->119->3199", - "default.handlebars->119->3202", - "default3.handlebars->117->1319", - "default3.handlebars->117->3202", - "default3.handlebars->117->3205" + "default.handlebars->119->1315", + "default.handlebars->119->3201", + "default.handlebars->119->3204", + "default3.handlebars->117->1320", + "default3.handlebars->117->3204", + "default3.handlebars->117->3207" ] }, { @@ -23031,10 +23031,10 @@ "zh-chs": "停用", "zh-cht": "停用", "xloc": [ - "default.handlebars->119->2230", - "default.handlebars->119->2294", - "default3.handlebars->117->2241", - "default3.handlebars->117->2303" + "default.handlebars->119->2232", + "default.handlebars->119->2296", + "default3.handlebars->117->2243", + "default3.handlebars->117->2305" ] }, { @@ -23063,8 +23063,8 @@ "zh-chs": "如果设置停用CCM", "zh-cht": "如果設置停用CCM", "xloc": [ - "default.handlebars->119->2306", - "default3.handlebars->117->2315" + "default.handlebars->119->2308", + "default3.handlebars->117->2317" ] }, { @@ -23120,8 +23120,8 @@ "zh-cht": "沉睡", "xloc": [ "default-mobile.handlebars->53->467", - "default.handlebars->119->706", - "default3.handlebars->117->717" + "default.handlebars->119->707", + "default3.handlebars->117->718" ] }, { @@ -23150,15 +23150,15 @@ "zh-chs": "默认", "zh-cht": "默認", "xloc": [ - "default.handlebars->119->2829", - "default.handlebars->119->2878", - "default.handlebars->119->2889", - "default.handlebars->119->2963", - "default3.handlebars->117->2102", - "default3.handlebars->117->2840", - "default3.handlebars->117->2887", - "default3.handlebars->117->2898", - "default3.handlebars->117->2972" + "default.handlebars->119->2831", + "default.handlebars->119->2880", + "default.handlebars->119->2891", + "default.handlebars->119->2965", + "default3.handlebars->117->2104", + "default3.handlebars->117->2842", + "default3.handlebars->117->2889", + "default3.handlebars->117->2900", + "default3.handlebars->117->2974" ] }, { @@ -23188,8 +23188,8 @@ "zh-cht": "Del", "xloc": [ "default-mobile.handlebars->53->666", - "default.handlebars->119->1435", - "default3.handlebars->117->1437", + "default.handlebars->119->1436", + "default3.handlebars->117->1438", "sharing-mobile.handlebars->53->23" ] }, @@ -23224,16 +23224,16 @@ "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1", "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1", "default-mobile.handlebars->dialog->idx_dlgButtonBar->5", - "default.handlebars->119->1573", - "default.handlebars->119->2533", - "default.handlebars->119->869", + "default.handlebars->119->1574", + "default.handlebars->119->2535", + "default.handlebars->119->870", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", "default.handlebars->container->dialog->idx_dlgButtonBar->5", "default.handlebars->filesContextMenu->5", - "default3.handlebars->117->1573", - "default3.handlebars->117->2545", - "default3.handlebars->117->880", + "default3.handlebars->117->1574", + "default3.handlebars->117->2547", + "default3.handlebars->117->881", "default3.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default3.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", "default3.handlebars->container->xxAddAgentModal->xxAddAgentModalConf->1->5->idx_dlgDeleteButton", @@ -23276,8 +23276,8 @@ "zh-cht": "刪除帳戶", "xloc": [ "default-mobile.handlebars->53->333", - "default.handlebars->119->2102", - "default3.handlebars->117->2097" + "default.handlebars->119->2104", + "default3.handlebars->117->2099" ] }, { @@ -23306,7 +23306,7 @@ "zh-chs": "删除帐户", "zh-cht": "刪除帳戶", "xloc": [ - "default.handlebars->119->2786" + "default.handlebars->119->2788" ] }, { @@ -23336,8 +23336,8 @@ "zh-cht": "刪除裝置", "xloc": [ "default-mobile.handlebars->53->565", - "default.handlebars->119->1048", - "default3.handlebars->117->1059" + "default.handlebars->119->1049", + "default3.handlebars->117->1060" ] }, { @@ -23366,8 +23366,8 @@ "zh-chs": "删除设备", "zh-cht": "刪除設備", "xloc": [ - "default.handlebars->119->768", - "default3.handlebars->117->779" + "default.handlebars->119->769", + "default3.handlebars->117->780" ] }, { @@ -23396,12 +23396,12 @@ "zh-chs": "删除群组", "zh-cht": "刪除群組", "xloc": [ - "default-mobile.handlebars->53->974", - "default-mobile.handlebars->53->977", - "default.handlebars->119->2282", - "default.handlebars->119->2323", - "default3.handlebars->117->2293", - "default3.handlebars->117->2332" + "default-mobile.handlebars->53->975", + "default-mobile.handlebars->53->978", + "default.handlebars->119->2284", + "default.handlebars->119->2325", + "default3.handlebars->117->2295", + "default3.handlebars->117->2334" ] }, { @@ -23431,8 +23431,8 @@ "zh-cht": "刪除節點", "xloc": [ "default-mobile.handlebars->53->637", - "default.handlebars->119->1340", - "default3.handlebars->117->1344" + "default.handlebars->119->1341", + "default3.handlebars->117->1345" ] }, { @@ -23487,8 +23487,8 @@ "zh-chs": "删除用户", "zh-cht": "刪除用戶", "xloc": [ - "default.handlebars->119->3037", - "default3.handlebars->117->3046" + "default.handlebars->119->3039", + "default3.handlebars->117->3048" ] }, { @@ -23517,10 +23517,10 @@ "zh-chs": "删除用户群组", "zh-cht": "刪除用戶群組", "xloc": [ - "default.handlebars->119->2931", - "default.handlebars->119->2943", - "default3.handlebars->117->2940", - "default3.handlebars->117->2952" + "default.handlebars->119->2933", + "default.handlebars->119->2945", + "default3.handlebars->117->2942", + "default3.handlebars->117->2954" ] }, { @@ -23549,8 +23549,8 @@ "zh-chs": "删除用户群组", "zh-cht": "刪除用戶群組", "xloc": [ - "default.handlebars->119->2876", - "default3.handlebars->117->2885" + "default.handlebars->119->2878", + "default3.handlebars->117->2887" ] }, { @@ -23579,8 +23579,8 @@ "zh-chs": "删除用户{0}", "zh-cht": "刪除用戶{0}", "xloc": [ - "default.handlebars->119->3105", - "default3.handlebars->117->3108" + "default.handlebars->119->3107", + "default3.handlebars->117->3110" ] }, { @@ -23610,9 +23610,9 @@ "zh-cht": "刪除帳戶", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountActions->3->p2AccountPassActions->5->0", - "default.handlebars->119->2782", + "default.handlebars->119->2784", "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7", - "default3.handlebars->117->2794", + "default3.handlebars->117->2796", "default3.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7" ] }, @@ -23642,8 +23642,8 @@ "zh-chs": "删除设备", "zh-cht": "刪除裝置", "xloc": [ - "default.handlebars->119->754", - "default3.handlebars->117->765" + "default.handlebars->119->755", + "default3.handlebars->117->766" ] }, { @@ -23672,8 +23672,8 @@ "zh-chs": "删除群组", "zh-cht": "刪除群組", "xloc": [ - "default.handlebars->119->2872", - "default3.handlebars->117->2881" + "default.handlebars->119->2874", + "default3.handlebars->117->2883" ] }, { @@ -23702,8 +23702,8 @@ "zh-chs": "删除项目?", "zh-cht": "刪除項目?", "xloc": [ - "default.handlebars->119->870", - "default3.handlebars->117->881" + "default.handlebars->119->871", + "default3.handlebars->117->882" ] }, { @@ -23732,8 +23732,8 @@ "zh-chs": "递归删除:“{0}”,{1}个元素已删除", "zh-cht": "遞歸刪除:“{0}”,{1}個元素已刪除", "xloc": [ - "default.handlebars->119->2595", - "default3.handlebars->117->2607" + "default.handlebars->119->2597", + "default3.handlebars->117->2609" ] }, { @@ -23764,10 +23764,10 @@ "xloc": [ "default-mobile.handlebars->53->381", "default-mobile.handlebars->53->731", - "default.handlebars->119->1575", - "default.handlebars->119->2535", - "default3.handlebars->117->1575", - "default3.handlebars->117->2547", + "default.handlebars->119->1576", + "default.handlebars->119->2537", + "default3.handlebars->117->1576", + "default3.handlebars->117->2549", "sharing-mobile.handlebars->53->87", "sharing.handlebars->47->63" ] @@ -23798,8 +23798,8 @@ "zh-chs": "删除用户群组{0}?", "zh-cht": "刪除用戶群組{0}?", "xloc": [ - "default.handlebars->119->2941", - "default3.handlebars->117->2950" + "default.handlebars->119->2943", + "default3.handlebars->117->2952" ] }, { @@ -23830,10 +23830,10 @@ "xloc": [ "default-mobile.handlebars->53->380", "default-mobile.handlebars->53->730", - "default.handlebars->119->1574", - "default.handlebars->119->2534", - "default3.handlebars->117->1574", - "default3.handlebars->117->2546", + "default.handlebars->119->1575", + "default.handlebars->119->2536", + "default3.handlebars->117->1575", + "default3.handlebars->117->2548", "sharing-mobile.handlebars->53->86", "sharing.handlebars->47->62" ] @@ -23893,8 +23893,8 @@ "zh-chs": "删除:“{0}”", "zh-cht": "刪除:“{0}”", "xloc": [ - "default.handlebars->119->2594", - "default3.handlebars->117->2606" + "default.handlebars->119->2596", + "default3.handlebars->117->2608" ] }, { @@ -23923,8 +23923,8 @@ "zh-chs": "删除:“{0}”,{1}个元素已删除", "zh-cht": "刪除:“{0}”,已刪除{1}個元素", "xloc": [ - "default.handlebars->119->2596", - "default3.handlebars->117->2608" + "default.handlebars->119->2598", + "default3.handlebars->117->2610" ] }, { @@ -23954,8 +23954,8 @@ "zh-cht": "被拒絕", "xloc": [ "default-mobile.handlebars->53->652", - "default.handlebars->119->1390", - "default3.handlebars->117->1391", + "default.handlebars->119->1391", + "default3.handlebars->117->1392", "sharing-mobile.handlebars->53->10", "sharing.handlebars->47->29", "sharing.handlebars->47->7" @@ -23973,8 +23973,8 @@ "pl": "Odmówiono zalogowania użytkownika z {0}, {1}, {2}", "uk": "Відмовлено у вході користувачу з {0}, {1}, {2}", "xloc": [ - "default.handlebars->119->2704", - "default3.handlebars->117->2716" + "default.handlebars->119->2706", + "default3.handlebars->117->2718" ] }, { @@ -24145,41 +24145,41 @@ "default-mobile.handlebars->53->505", "default-mobile.handlebars->53->647", "default-mobile.handlebars->53->757", - "default-mobile.handlebars->53->814", - "default-mobile.handlebars->53->960", - "default-mobile.handlebars->53->983", - "default.handlebars->119->1384", - "default.handlebars->119->1618", - "default.handlebars->119->1645", - "default.handlebars->119->1655", - "default.handlebars->119->168", - "default.handlebars->119->2127", - "default.handlebars->119->2189", - "default.handlebars->119->2329", - "default.handlebars->119->2714", - "default.handlebars->119->2881", - "default.handlebars->119->2892", - "default.handlebars->119->2893", - "default.handlebars->119->2939", - "default.handlebars->119->910", + "default-mobile.handlebars->53->815", + "default-mobile.handlebars->53->961", + "default-mobile.handlebars->53->984", + "default.handlebars->119->1385", + "default.handlebars->119->1619", + "default.handlebars->119->1647", + "default.handlebars->119->1657", + "default.handlebars->119->169", + "default.handlebars->119->2129", + "default.handlebars->119->2191", + "default.handlebars->119->2331", + "default.handlebars->119->2716", + "default.handlebars->119->2883", + "default.handlebars->119->2894", + "default.handlebars->119->2895", + "default.handlebars->119->2941", "default.handlebars->119->911", + "default.handlebars->119->912", "default.handlebars->container->column_l->p42->p42tbl->1->0->3", - "default3.handlebars->117->1384", - "default3.handlebars->117->1618", - "default3.handlebars->117->1645", - "default3.handlebars->117->1655", - "default3.handlebars->117->181", - "default3.handlebars->117->2142", - "default3.handlebars->117->2200", - "default3.handlebars->117->2340", - "default3.handlebars->117->2341", - "default3.handlebars->117->2726", - "default3.handlebars->117->2890", - "default3.handlebars->117->2901", - "default3.handlebars->117->2902", - "default3.handlebars->117->2948", - "default3.handlebars->117->921", + "default3.handlebars->117->1385", + "default3.handlebars->117->1619", + "default3.handlebars->117->1647", + "default3.handlebars->117->1657", + "default3.handlebars->117->182", + "default3.handlebars->117->2144", + "default3.handlebars->117->2202", + "default3.handlebars->117->2342", + "default3.handlebars->117->2343", + "default3.handlebars->117->2728", + "default3.handlebars->117->2892", + "default3.handlebars->117->2903", + "default3.handlebars->117->2904", + "default3.handlebars->117->2950", "default3.handlebars->117->922", + "default3.handlebars->117->923", "default3.handlebars->container->column_l->p42->p42tbl->1->0->7" ] }, @@ -24236,28 +24236,28 @@ "zh-cht": "桌面", "xloc": [ "default-mobile.handlebars->53->583", - "default.handlebars->119->1105", - "default.handlebars->119->1219", - "default.handlebars->119->1503", - "default.handlebars->119->2260", - "default.handlebars->119->2335", - "default.handlebars->119->3168", - "default.handlebars->119->3234", - "default.handlebars->119->3287", - "default.handlebars->119->3393", - "default.handlebars->119->875", + "default.handlebars->119->1106", + "default.handlebars->119->1220", + "default.handlebars->119->1504", + "default.handlebars->119->2262", + "default.handlebars->119->2337", + "default.handlebars->119->3170", + "default.handlebars->119->3236", + "default.handlebars->119->3289", + "default.handlebars->119->3395", + "default.handlebars->119->876", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop", "default.handlebars->contextMenu->cxdesktop", - "default3.handlebars->117->1116", - "default3.handlebars->117->1228", - "default3.handlebars->117->1503", - "default3.handlebars->117->2271", - "default3.handlebars->117->2347", - "default3.handlebars->117->3171", - "default3.handlebars->117->3237", - "default3.handlebars->117->3290", - "default3.handlebars->117->3398", - "default3.handlebars->117->886", + "default3.handlebars->117->1117", + "default3.handlebars->117->1229", + "default3.handlebars->117->1504", + "default3.handlebars->117->2273", + "default3.handlebars->117->2349", + "default3.handlebars->117->3173", + "default3.handlebars->117->3239", + "default3.handlebars->117->3292", + "default3.handlebars->117->3400", + "default3.handlebars->117->887", "default3.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop", "default3.handlebars->contextMenu->cxdesktop", "sharing-mobile.handlebars->53->6", @@ -24291,12 +24291,12 @@ "zh-chs": "桌面 + 文件", "zh-cht": "桌面 + 文件", "xloc": [ - "default.handlebars->119->1109", - "default.handlebars->119->1222", - "default.handlebars->119->2264", - "default3.handlebars->117->1120", - "default3.handlebars->117->1231", - "default3.handlebars->117->2275" + "default.handlebars->119->1110", + "default.handlebars->119->1223", + "default.handlebars->119->2266", + "default3.handlebars->117->1121", + "default3.handlebars->117->1232", + "default3.handlebars->117->2277" ] }, { @@ -24325,10 +24325,10 @@ "zh-chs": "桌面 + 终端", "zh-cht": "桌面+終端", "xloc": [ - "default.handlebars->119->1106", - "default.handlebars->119->2261", - "default3.handlebars->117->1117", - "default3.handlebars->117->2272" + "default.handlebars->119->1107", + "default.handlebars->119->2263", + "default3.handlebars->117->1118", + "default3.handlebars->117->2274" ] }, { @@ -24357,12 +24357,12 @@ "zh-chs": "桌面 + 终端 + 文件", "zh-cht": "桌面+終端+文件", "xloc": [ - "default.handlebars->119->1110", - "default.handlebars->119->1224", - "default.handlebars->119->2265", - "default3.handlebars->117->1121", - "default3.handlebars->117->1233", - "default3.handlebars->117->2276" + "default.handlebars->119->1111", + "default.handlebars->119->1225", + "default.handlebars->119->2267", + "default3.handlebars->117->1122", + "default3.handlebars->117->1234", + "default3.handlebars->117->2278" ] }, { @@ -24421,8 +24421,8 @@ "zh-chs": "桌面复用", "zh-cht": "桌面多路復用", "xloc": [ - "default.handlebars->119->3398", - "default3.handlebars->117->3403" + "default.handlebars->119->3400", + "default3.handlebars->117->3405" ] }, { @@ -24451,14 +24451,14 @@ "zh-chs": "桌面通知", "zh-cht": "桌面通知", "xloc": [ - "default.handlebars->119->2211", - "default.handlebars->119->2900", - "default.handlebars->119->3005", - "default.handlebars->119->983", - "default3.handlebars->117->2222", - "default3.handlebars->117->2909", - "default3.handlebars->117->3014", - "default3.handlebars->117->994" + "default.handlebars->119->2213", + "default.handlebars->119->2902", + "default.handlebars->119->3007", + "default.handlebars->119->984", + "default3.handlebars->117->2224", + "default3.handlebars->117->2911", + "default3.handlebars->117->3016", + "default3.handlebars->117->995" ] }, { @@ -24487,14 +24487,14 @@ "zh-chs": "桌面提示", "zh-cht": "桌面提示", "xloc": [ - "default.handlebars->119->2210", - "default.handlebars->119->2899", - "default.handlebars->119->3004", - "default.handlebars->119->982", - "default3.handlebars->117->2221", - "default3.handlebars->117->2908", - "default3.handlebars->117->3013", - "default3.handlebars->117->993" + "default.handlebars->119->2212", + "default.handlebars->119->2901", + "default.handlebars->119->3006", + "default.handlebars->119->983", + "default3.handlebars->117->2223", + "default3.handlebars->117->2910", + "default3.handlebars->117->3015", + "default3.handlebars->117->994" ] }, { @@ -24523,14 +24523,14 @@ "zh-chs": "桌面提示+工具栏", "zh-cht": "桌面提示+工具欄", "xloc": [ - "default.handlebars->119->2208", - "default.handlebars->119->2897", - "default.handlebars->119->3002", - "default.handlebars->119->980", - "default3.handlebars->117->2219", - "default3.handlebars->117->2906", - "default3.handlebars->117->3011", - "default3.handlebars->117->991" + "default.handlebars->119->2210", + "default.handlebars->119->2899", + "default.handlebars->119->3004", + "default.handlebars->119->981", + "default3.handlebars->117->2221", + "default3.handlebars->117->2908", + "default3.handlebars->117->3013", + "default3.handlebars->117->992" ] }, { @@ -24559,8 +24559,8 @@ "zh-chs": "桌面会话", "zh-cht": "桌面會話", "xloc": [ - "default.handlebars->119->3158", - "default3.handlebars->117->3161" + "default.handlebars->119->3160", + "default3.handlebars->117->3163" ] }, { @@ -24676,14 +24676,14 @@ "zh-chs": "桌面工具栏", "zh-cht": "桌面工具欄", "xloc": [ - "default.handlebars->119->2209", - "default.handlebars->119->2898", - "default.handlebars->119->3003", - "default.handlebars->119->981", - "default3.handlebars->117->2220", - "default3.handlebars->117->2907", - "default3.handlebars->117->3012", - "default3.handlebars->117->992" + "default.handlebars->119->2211", + "default.handlebars->119->2900", + "default.handlebars->119->3005", + "default.handlebars->119->982", + "default3.handlebars->117->2222", + "default3.handlebars->117->2909", + "default3.handlebars->117->3014", + "default3.handlebars->117->993" ] }, { @@ -24712,8 +24712,8 @@ "zh-chs": "仅桌面视图", "zh-cht": "僅桌面視圖", "xloc": [ - "default.handlebars->119->2978", - "default3.handlebars->117->2987" + "default.handlebars->119->2980", + "default3.handlebars->117->2989" ] }, { @@ -24742,8 +24742,8 @@ "zh-chs": "桌面,仅查看", "zh-cht": "桌面,僅查看", "xloc": [ - "default.handlebars->119->1227", - "default3.handlebars->117->1236" + "default.handlebars->119->1228", + "default3.handlebars->117->1237" ] }, { @@ -24772,8 +24772,8 @@ "zh-chs": "桌面时段", "zh-cht": "桌面時段", "xloc": [ - "default.handlebars->119->1502", - "default3.handlebars->117->1502" + "default.handlebars->119->1503", + "default3.handlebars->117->1503" ] }, { @@ -24867,14 +24867,14 @@ "zh-cht": "細節", "xloc": [ "default-mobile.handlebars->53->586", - "default.handlebars->119->1159", - "default.handlebars->119->1184", - "default.handlebars->119->2428", + "default.handlebars->119->1160", + "default.handlebars->119->1185", + "default.handlebars->119->2430", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevInfo", "default.handlebars->contextMenu->cxdetails", - "default3.handlebars->117->1168", - "default3.handlebars->117->1193", - "default3.handlebars->117->2440", + "default3.handlebars->117->1169", + "default3.handlebars->117->1194", + "default3.handlebars->117->2442", "default3.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevInfo", "default3.handlebars->contextMenu->cxdetails" ] @@ -24935,22 +24935,22 @@ "zh-chs": "设备", "zh-cht": "裝置", "xloc": [ - "default-mobile.handlebars->53->808", - "default.handlebars->119->1639", - "default.handlebars->119->1850", - "default.handlebars->119->2365", - "default.handlebars->119->295", - "default.handlebars->119->3124", - "default.handlebars->119->3198", - "default.handlebars->119->3218", + "default-mobile.handlebars->53->809", + "default.handlebars->119->1641", + "default.handlebars->119->1852", + "default.handlebars->119->2367", + "default.handlebars->119->296", + "default.handlebars->119->3126", + "default.handlebars->119->3200", + "default.handlebars->119->3220", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5", - "default3.handlebars->117->1639", - "default3.handlebars->117->1846", - "default3.handlebars->117->2377", - "default3.handlebars->117->305", - "default3.handlebars->117->3127", - "default3.handlebars->117->3201", - "default3.handlebars->117->3221", + "default3.handlebars->117->1641", + "default3.handlebars->117->1848", + "default3.handlebars->117->2379", + "default3.handlebars->117->306", + "default3.handlebars->117->3129", + "default3.handlebars->117->3203", + "default3.handlebars->117->3223", "default3.handlebars->container->column_l->p1->devListToolbarSpan->7->devListToolbarSort->sortselect->5" ] }, @@ -25012,8 +25012,8 @@ "xloc": [ "default-mobile.handlebars->53->604", "default-mobile.handlebars->53->615", - "default.handlebars->119->1289", - "default3.handlebars->117->1298" + "default.handlebars->119->1290", + "default3.handlebars->117->1299" ] }, { @@ -25072,8 +25072,8 @@ "zh-chs": "设备描述", "zh-cht": "設備描述", "xloc": [ - "default.handlebars->119->353", - "default3.handlebars->117->364" + "default.handlebars->119->354", + "default3.handlebars->117->365" ] }, { @@ -25102,8 +25102,8 @@ "zh-chs": "设备详情", "zh-cht": "設備詳情", "xloc": [ - "default.handlebars->119->2389", - "default3.handlebars->117->2401" + "default.handlebars->119->2391", + "default3.handlebars->117->2403" ] }, { @@ -25163,29 +25163,29 @@ "zh-cht": "裝置群", "xloc": [ "agent-translations.json", - "default-mobile.handlebars->53->1045", - "default.handlebars->119->2360", - "default.handlebars->119->2363", - "default.handlebars->119->2364", - "default.handlebars->119->2731", - "default.handlebars->119->2923", - "default.handlebars->119->2929", - "default.handlebars->119->3112", - "default.handlebars->119->3181", - "default.handlebars->119->3205", - "default.handlebars->119->3221", - "default.handlebars->119->3314", - "default3.handlebars->117->2372", - "default3.handlebars->117->2375", - "default3.handlebars->117->2376", - "default3.handlebars->117->2743", - "default3.handlebars->117->2932", - "default3.handlebars->117->2938", - "default3.handlebars->117->3115", - "default3.handlebars->117->3184", - "default3.handlebars->117->3208", - "default3.handlebars->117->3224", - "default3.handlebars->117->3319" + "default-mobile.handlebars->53->1046", + "default.handlebars->119->2362", + "default.handlebars->119->2365", + "default.handlebars->119->2366", + "default.handlebars->119->2733", + "default.handlebars->119->2925", + "default.handlebars->119->2931", + "default.handlebars->119->3114", + "default.handlebars->119->3183", + "default.handlebars->119->3207", + "default.handlebars->119->3223", + "default.handlebars->119->3316", + "default3.handlebars->117->2374", + "default3.handlebars->117->2377", + "default3.handlebars->117->2378", + "default3.handlebars->117->2745", + "default3.handlebars->117->2934", + "default3.handlebars->117->2940", + "default3.handlebars->117->3117", + "default3.handlebars->117->3186", + "default3.handlebars->117->3210", + "default3.handlebars->117->3226", + "default3.handlebars->117->3321" ] }, { @@ -25214,9 +25214,9 @@ "zh-chs": "设备组用户", "zh-cht": "裝置群用戶", "xloc": [ - "default-mobile.handlebars->53->1034", - "default.handlebars->119->2435", - "default3.handlebars->117->2447" + "default-mobile.handlebars->53->1035", + "default.handlebars->119->2437", + "default3.handlebars->117->2449" ] }, { @@ -25246,17 +25246,17 @@ "zh-cht": "裝置群", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->3", - "default.handlebars->119->2747", - "default.handlebars->119->2866", - "default.handlebars->119->2910", - "default.handlebars->119->2999", - "default.handlebars->119->3371", + "default.handlebars->119->2749", + "default.handlebars->119->2868", + "default.handlebars->119->2912", + "default.handlebars->119->3001", + "default.handlebars->119->3373", "default.handlebars->container->column_l->p2->p2info->9", - "default3.handlebars->117->2759", - "default3.handlebars->117->2875", - "default3.handlebars->117->2919", - "default3.handlebars->117->3008", - "default3.handlebars->117->3376", + "default3.handlebars->117->2761", + "default3.handlebars->117->2877", + "default3.handlebars->117->2921", + "default3.handlebars->117->3010", + "default3.handlebars->117->3378", "default3.handlebars->container->column_l->p2->p2info->9" ] }, @@ -25286,8 +25286,8 @@ "zh-chs": "设备信息导出", "zh-cht": "裝置訊息輸出", "xloc": [ - "default.handlebars->119->810", - "default3.handlebars->117->821" + "default.handlebars->119->811", + "default3.handlebars->117->822" ] }, { @@ -25316,8 +25316,8 @@ "zh-chs": "设备位置", "zh-cht": "裝置位置", "xloc": [ - "default.handlebars->119->1341", - "default3.handlebars->117->1345" + "default.handlebars->119->1342", + "default3.handlebars->117->1346" ] }, { @@ -25346,8 +25346,8 @@ "zh-chs": "设备消息", "zh-cht": "裝置訊息", "xloc": [ - "default.handlebars->119->1199", - "default3.handlebars->117->1208" + "default.handlebars->119->1200", + "default3.handlebars->117->1209" ] }, { @@ -25377,14 +25377,14 @@ "zh-cht": "裝置名稱", "xloc": [ "default-mobile.handlebars->53->645", - "default.handlebars->119->1382", - "default.handlebars->119->3180", - "default.handlebars->119->507", - "default.handlebars->119->516", - "default3.handlebars->117->1382", - "default3.handlebars->117->3183", - "default3.handlebars->117->518", - "default3.handlebars->117->527", + "default.handlebars->119->1383", + "default.handlebars->119->3182", + "default.handlebars->119->508", + "default.handlebars->119->517", + "default3.handlebars->117->1383", + "default3.handlebars->117->3185", + "default3.handlebars->117->519", + "default3.handlebars->117->528", "player.handlebars->29->25" ] }, @@ -25414,10 +25414,10 @@ "zh-chs": "设备通知", "zh-cht": "裝置通知", "xloc": [ - "default.handlebars->119->1213", - "default.handlebars->119->788", - "default3.handlebars->117->1222", - "default3.handlebars->117->799" + "default.handlebars->119->1214", + "default.handlebars->119->789", + "default3.handlebars->117->1223", + "default3.handlebars->117->800" ] }, { @@ -25446,7 +25446,7 @@ "zh-chs": "设备配对链接", "zh-cht": "設備配對鏈接", "xloc": [ - "default-mobile.handlebars->53->988" + "default-mobile.handlebars->53->989" ] }, { @@ -25455,8 +25455,8 @@ "nl": "Apparaat is ingeschakeld", "uk": "Пристрій Увімкнено", "xloc": [ - "default.handlebars->119->2708", - "default3.handlebars->117->2720" + "default.handlebars->119->2710", + "default3.handlebars->117->2722" ] }, { @@ -25485,8 +25485,8 @@ "zh-chs": "设备推送", "zh-cht": "設備推送", "xloc": [ - "default.handlebars->119->3019", - "default3.handlebars->117->3028" + "default.handlebars->119->3021", + "default3.handlebars->117->3030" ] }, { @@ -25501,8 +25501,8 @@ "pl": "Zapis Powiadomień Push Urządzenia", "uk": "Запис Push-Сповіщень Пристрою", "xloc": [ - "default.handlebars->119->3284", - "default3.handlebars->117->3287" + "default.handlebars->119->3286", + "default3.handlebars->117->3289" ] }, { @@ -25517,8 +25517,8 @@ "pl": "Zapis SMBIOS urządzenia", "uk": "SMBIOS запис пристрою", "xloc": [ - "default.handlebars->119->3283", - "default3.handlebars->117->3286" + "default.handlebars->119->3285", + "default3.handlebars->117->3288" ] }, { @@ -25599,10 +25599,10 @@ "zh-chs": "设备共享链接", "zh-cht": "設備共享鏈接", "xloc": [ - "default.handlebars->119->1102", - "default.handlebars->119->2257", - "default3.handlebars->117->1113", - "default3.handlebars->117->2268" + "default.handlebars->119->1103", + "default.handlebars->119->2259", + "default3.handlebars->117->1114", + "default3.handlebars->117->2270" ] }, { @@ -25689,12 +25689,12 @@ "default-mobile.handlebars->53->508", "default-mobile.handlebars->53->510", "default-mobile.handlebars->53->512", - "default.handlebars->119->914", - "default.handlebars->119->916", - "default.handlebars->119->918", - "default3.handlebars->117->925", - "default3.handlebars->117->927", - "default3.handlebars->117->929" + "default.handlebars->119->915", + "default.handlebars->119->917", + "default.handlebars->119->919", + "default3.handlebars->117->926", + "default3.handlebars->117->928", + "default3.handlebars->117->930" ] }, { @@ -25723,8 +25723,8 @@ "zh-chs": "设备视图列", "zh-cht": "設備視圖列", "xloc": [ - "default.handlebars->119->367", - "default3.handlebars->117->378" + "default.handlebars->119->368", + "default3.handlebars->117->379" ] }, { @@ -25753,20 +25753,20 @@ "zh-chs": "设备连接。", "zh-cht": "裝置連接。", "xloc": [ - "default.handlebars->119->1128", - "default.handlebars->119->1132", - "default.handlebars->119->1136", - "default.handlebars->119->2090", - "default.handlebars->119->2462", - "default.handlebars->119->2466", - "default.handlebars->119->2470", - "default3.handlebars->117->1137", - "default3.handlebars->117->1141", - "default3.handlebars->117->1145", - "default3.handlebars->117->2087", - "default3.handlebars->117->2474", - "default3.handlebars->117->2478", - "default3.handlebars->117->2482" + "default.handlebars->119->1129", + "default.handlebars->119->1133", + "default.handlebars->119->1137", + "default.handlebars->119->2092", + "default.handlebars->119->2464", + "default.handlebars->119->2468", + "default.handlebars->119->2472", + "default3.handlebars->117->1138", + "default3.handlebars->117->1142", + "default3.handlebars->117->1146", + "default3.handlebars->117->2089", + "default3.handlebars->117->2476", + "default3.handlebars->117->2480", + "default3.handlebars->117->2484" ] }, { @@ -25795,20 +25795,20 @@ "zh-chs": "设备断开连接。", "zh-cht": "裝置斷開連接。", "xloc": [ - "default.handlebars->119->1129", - "default.handlebars->119->1133", - "default.handlebars->119->1137", - "default.handlebars->119->2091", - "default.handlebars->119->2463", - "default.handlebars->119->2467", - "default.handlebars->119->2471", - "default3.handlebars->117->1138", - "default3.handlebars->117->1142", - "default3.handlebars->117->1146", - "default3.handlebars->117->2088", - "default3.handlebars->117->2475", - "default3.handlebars->117->2479", - "default3.handlebars->117->2483" + "default.handlebars->119->1130", + "default.handlebars->119->1134", + "default.handlebars->119->1138", + "default.handlebars->119->2093", + "default.handlebars->119->2465", + "default.handlebars->119->2469", + "default.handlebars->119->2473", + "default3.handlebars->117->1139", + "default3.handlebars->117->1143", + "default3.handlebars->117->1147", + "default3.handlebars->117->2090", + "default3.handlebars->117->2477", + "default3.handlebars->117->2481", + "default3.handlebars->117->2485" ] }, { @@ -25837,8 +25837,8 @@ "zh-chs": "创建的设备组:{0}", "zh-cht": "設備組已創建:{0}", "xloc": [ - "default.handlebars->119->2625", - "default3.handlebars->117->2637" + "default.handlebars->119->2627", + "default3.handlebars->117->2639" ] }, { @@ -25867,8 +25867,8 @@ "zh-chs": "设备组已删除:{0}", "zh-cht": "設備組已刪除:{0}", "xloc": [ - "default.handlebars->119->2626", - "default3.handlebars->117->2638" + "default.handlebars->119->2628", + "default3.handlebars->117->2640" ] }, { @@ -25897,8 +25897,8 @@ "zh-chs": "设备组成员身份已更改:{0}", "zh-cht": "設備組成員身份已更改:{0}", "xloc": [ - "default.handlebars->119->2627", - "default3.handlebars->117->2639" + "default.handlebars->119->2629", + "default3.handlebars->117->2641" ] }, { @@ -25928,8 +25928,8 @@ "zh-cht": "其他裝置群管理員可以查看和更改裝置群註釋。", "xloc": [ "default-mobile.handlebars->53->611", - "default.handlebars->119->1189", - "default3.handlebars->117->1198" + "default.handlebars->119->1190", + "default3.handlebars->117->1199" ] }, { @@ -25958,8 +25958,8 @@ "zh-chs": "设备组通知已更改", "zh-cht": "設備組通知已更改", "xloc": [ - "default.handlebars->119->2622", - "default3.handlebars->117->2634" + "default.handlebars->119->2624", + "default3.handlebars->117->2636" ] }, { @@ -25974,8 +25974,8 @@ "pl": "Zapis grupy urządzeń", "uk": "Запис групи пристроїв", "xloc": [ - "default.handlebars->119->3269", - "default3.handlebars->117->3272" + "default.handlebars->119->3271", + "default3.handlebars->117->3274" ] }, { @@ -26004,8 +26004,8 @@ "zh-chs": "未删除的设备组:{0}", "zh-cht": "未刪除的設備組:{0}", "xloc": [ - "default.handlebars->119->2605", - "default3.handlebars->117->2617" + "default.handlebars->119->2607", + "default3.handlebars->117->2619" ] }, { @@ -26034,8 +26034,8 @@ "zh-chs": "设备组 {0} 已更改:{1}", "zh-cht": "設備組 {0} 已更改:{1}", "xloc": [ - "default.handlebars->119->2691", - "default3.handlebars->117->2703" + "default.handlebars->119->2693", + "default3.handlebars->117->2705" ] }, { @@ -26064,8 +26064,8 @@ "zh-chs": "设备组此设备是中继", "zh-cht": "設備組此設備是中繼", "xloc": [ - "default.handlebars->119->1022", - "default3.handlebars->117->1033" + "default.handlebars->119->1023", + "default3.handlebars->117->1034" ] }, { @@ -26080,8 +26080,8 @@ "pl": "Zapisy informacji urządzenia", "uk": "Записи інформації про пристрій", "xloc": [ - "default.handlebars->119->3271", - "default3.handlebars->117->3274" + "default.handlebars->119->3273", + "default3.handlebars->117->3276" ] }, { @@ -26112,10 +26112,10 @@ "xloc": [ "default-mobile.handlebars->53->425", "default-mobile.handlebars->53->495", - "default.handlebars->119->415", - "default.handlebars->119->896", - "default3.handlebars->117->426", - "default3.handlebars->117->907" + "default.handlebars->119->416", + "default.handlebars->119->897", + "default3.handlebars->117->427", + "default3.handlebars->117->908" ] }, { @@ -26145,8 +26145,8 @@ "zh-cht": "設備忙", "xloc": [ "default-mobile.handlebars->53->431", - "default.handlebars->119->461", - "default3.handlebars->117->472" + "default.handlebars->119->462", + "default3.handlebars->117->473" ] }, { @@ -26175,8 +26175,8 @@ "zh-chs": "检测到设备,但无法获得电源状态。", "zh-cht": "檢測到裝置,但無法獲得電源狀態。", "xloc": [ - "default.handlebars->119->711", - "default3.handlebars->117->722" + "default.handlebars->119->712", + "default3.handlebars->117->723" ] }, { @@ -26206,8 +26206,8 @@ "zh-cht": "裝置正在休眠(S4)", "xloc": [ "default-mobile.handlebars->53->476", - "default.handlebars->119->719", - "default3.handlebars->117->730" + "default.handlebars->119->720", + "default3.handlebars->117->731" ] }, { @@ -26237,8 +26237,8 @@ "zh-cht": "裝置處於深度睡眠狀態(S3)", "xloc": [ "default-mobile.handlebars->53->475", - "default.handlebars->119->718", - "default3.handlebars->117->729" + "default.handlebars->119->719", + "default3.handlebars->117->730" ] }, { @@ -26267,8 +26267,8 @@ "zh-chs": "设备处于深度睡眠状态(S3)。", "zh-cht": "裝置處於深度睡眠狀態(S3)。", "xloc": [ - "default.handlebars->119->705", - "default3.handlebars->117->716" + "default.handlebars->119->706", + "default3.handlebars->117->717" ] }, { @@ -26297,8 +26297,8 @@ "zh-chs": "设备处于休眠状态(S4)。", "zh-cht": "裝置處於休眠狀態(S4)。", "xloc": [ - "default.handlebars->119->707", - "default3.handlebars->117->718" + "default.handlebars->119->708", + "default3.handlebars->117->719" ] }, { @@ -26327,8 +26327,8 @@ "zh-chs": "设备处于关机状态(S5)。", "zh-cht": "裝置處於關機狀態(S5)。", "xloc": [ - "default.handlebars->119->709", - "default3.handlebars->117->720" + "default.handlebars->119->710", + "default3.handlebars->117->721" ] }, { @@ -26358,8 +26358,8 @@ "zh-cht": "裝置處於睡眠狀態(S1)", "xloc": [ "default-mobile.handlebars->53->473", - "default.handlebars->119->716", - "default3.handlebars->117->727" + "default.handlebars->119->717", + "default3.handlebars->117->728" ] }, { @@ -26388,8 +26388,8 @@ "zh-chs": "设备处于睡眠状态(S1)。", "zh-cht": "裝置處於睡眠狀態(S1)。", "xloc": [ - "default.handlebars->119->701", - "default3.handlebars->117->712" + "default.handlebars->119->702", + "default3.handlebars->117->713" ] }, { @@ -26419,8 +26419,8 @@ "zh-cht": "裝置處於睡眠狀態(S2)", "xloc": [ "default-mobile.handlebars->53->474", - "default.handlebars->119->717", - "default3.handlebars->117->728" + "default.handlebars->119->718", + "default3.handlebars->117->729" ] }, { @@ -26449,8 +26449,8 @@ "zh-chs": "设备处于睡眠状态(S2)。", "zh-cht": "裝置處於睡眠狀態(S2)。", "xloc": [ - "default.handlebars->119->703", - "default3.handlebars->117->714" + "default.handlebars->119->704", + "default3.handlebars->117->715" ] }, { @@ -26480,8 +26480,8 @@ "zh-cht": "裝置處於軟關機狀態(S5)", "xloc": [ "default-mobile.handlebars->53->477", - "default.handlebars->119->720", - "default3.handlebars->117->731" + "default.handlebars->119->721", + "default3.handlebars->117->732" ] }, { @@ -26512,10 +26512,10 @@ "xloc": [ "default-mobile.handlebars->53->424", "default-mobile.handlebars->53->494", - "default.handlebars->119->414", - "default.handlebars->119->895", - "default3.handlebars->117->425", - "default3.handlebars->117->906" + "default.handlebars->119->415", + "default.handlebars->119->896", + "default3.handlebars->117->426", + "default3.handlebars->117->907" ] }, { @@ -26545,8 +26545,8 @@ "zh-cht": "裝置已連接電源", "xloc": [ "default-mobile.handlebars->53->472", - "default.handlebars->119->715", - "default3.handlebars->117->726" + "default.handlebars->119->716", + "default3.handlebars->117->727" ] }, { @@ -26575,8 +26575,8 @@ "zh-chs": "设备已断电。", "zh-cht": "設備已斷電。", "xloc": [ - "default.handlebars->119->713", - "default3.handlebars->117->724" + "default.handlebars->119->714", + "default3.handlebars->117->725" ] }, { @@ -26605,8 +26605,8 @@ "zh-chs": "设备已连接电源。", "zh-cht": "裝置已連接電源。", "xloc": [ - "default.handlebars->119->699", - "default3.handlebars->117->710" + "default.handlebars->119->700", + "default3.handlebars->117->711" ] }, { @@ -26636,8 +26636,8 @@ "zh-cht": "裝置存在,但無法確定電源狀態", "xloc": [ "default-mobile.handlebars->53->478", - "default.handlebars->119->721", - "default3.handlebars->117->732" + "default.handlebars->119->722", + "default3.handlebars->117->733" ] }, { @@ -26666,8 +26666,8 @@ "zh-chs": "设备名称", "zh-cht": "裝置名稱", "xloc": [ - "default.handlebars->119->887", - "default3.handlebars->117->898" + "default.handlebars->119->888", + "default3.handlebars->117->899" ] }, { @@ -26696,8 +26696,8 @@ "zh-chs": "设备通知", "zh-cht": "設備通知", "xloc": [ - "default.handlebars->119->751", - "default3.handlebars->117->762" + "default.handlebars->119->752", + "default3.handlebars->117->763" ] }, { @@ -26711,8 +26711,8 @@ "pl": "Zapisy zmiany stanu zasilania", "uk": "Записи про зміни стану живлення", "xloc": [ - "default.handlebars->119->3277", - "default3.handlebars->117->3280" + "default.handlebars->119->3279", + "default3.handlebars->117->3282" ] }, { @@ -26727,8 +26727,8 @@ "pl": "Zapis urządzenia", "uk": "Запис пристрою", "xloc": [ - "default.handlebars->119->3268", - "default3.handlebars->117->3271" + "default.handlebars->119->3270", + "default3.handlebars->117->3273" ] }, { @@ -26757,8 +26757,8 @@ "zh-chs": "设备请求 Intel(R) AMT ACM TLS 激活,FQDN:{0}", "zh-cht": "設備請求 Intel(R) AMT ACM TLS 激活,FQDN:{0}", "xloc": [ - "default.handlebars->119->2660", - "default3.handlebars->117->2672" + "default.handlebars->119->2662", + "default3.handlebars->117->2674" ] }, { @@ -26787,8 +26787,8 @@ "zh-chs": "设备请求激活Intel(R)AMT ACM,FQDN:{0}", "zh-cht": "設備請求激活Intel(R)AMT ACM,FQDN:{0}", "xloc": [ - "default.handlebars->119->2607", - "default3.handlebars->117->2619" + "default.handlebars->119->2609", + "default3.handlebars->117->2621" ] }, { @@ -26803,8 +26803,8 @@ "pl": "Zapisy udostępniania urządzenia", "uk": "Записи поширеного пристрою", "xloc": [ - "default.handlebars->119->3281", - "default3.handlebars->117->3284" + "default.handlebars->119->3283", + "default3.handlebars->117->3286" ] }, { @@ -26819,8 +26819,8 @@ "pl": "Zapisy urządzenia, użytkowników, grup i inne", "uk": "Пристрій, користувачі, групи та інші записи", "xloc": [ - "default.handlebars->119->3285", - "default3.handlebars->117->3288" + "default.handlebars->119->3287", + "default3.handlebars->117->3290" ] }, { @@ -26849,12 +26849,12 @@ "zh-chs": "设备", "zh-cht": "裝置", "xloc": [ - "default.handlebars->119->2280", - "default.handlebars->119->2867", - "default.handlebars->119->2911", - "default3.handlebars->117->2291", - "default3.handlebars->117->2876", - "default3.handlebars->117->2920" + "default.handlebars->119->2282", + "default.handlebars->119->2869", + "default.handlebars->119->2913", + "default3.handlebars->117->2293", + "default3.handlebars->117->2878", + "default3.handlebars->117->2922" ] }, { @@ -27091,17 +27091,17 @@ "xloc": [ "default-mobile.handlebars->53->790", "default.handlebars->119->141", - "default.handlebars->119->973", + "default.handlebars->119->974", "default3.handlebars->117->154", - "default3.handlebars->117->984" + "default3.handlebars->117->985" ] }, { "en": "Disabled Duo two-factor authentication", "nl": "Duo twee factorauthenticatie uitgeschakeld", "xloc": [ - "default.handlebars->119->2710", - "default3.handlebars->117->2722" + "default.handlebars->119->2712", + "default3.handlebars->117->2724" ] }, { @@ -27130,8 +27130,8 @@ "zh-chs": "禁用的电子邮件两因素身份验证", "zh-cht": "禁用的電子郵件兩因素身份驗證", "xloc": [ - "default.handlebars->119->2638", - "default3.handlebars->117->2650" + "default.handlebars->119->2640", + "default3.handlebars->117->2652" ] }, { @@ -27164,14 +27164,14 @@ "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->container->page_content->column_l->p10->p10terminal->termTable->termarea1->1->3->disconnectbutton2span", - "default.handlebars->119->2221", - "default.handlebars->119->993", + "default.handlebars->119->2223", + "default.handlebars->119->994", "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->container->column_l->p13->p13toolbar->1->0->1->3", "default.handlebars->deskDisconnectContextMenu->3", - "default3.handlebars->117->1004", - "default3.handlebars->117->2232", + "default3.handlebars->117->1005", + "default3.handlebars->117->2234", "default3.handlebars->container->column_l->p11->deskarea0->deskarea1->1->disconnectbutton1span->5->3->0", "default3.handlebars->container->column_l->p11->deskarea0->deskarea1->1->disconnectbutton1span->disconnectbutton1", "default3.handlebars->container->column_l->p12->termTable->1->1->0->1->1->disconnectbutton2span->disconnectbutton2", @@ -27304,18 +27304,18 @@ "default-mobile.handlebars->53->443", "default-mobile.handlebars->53->447", "default-mobile.handlebars->53->451", - "default.handlebars->119->458", - "default.handlebars->119->465", - "default.handlebars->119->469", - "default.handlebars->119->473", - "default.handlebars->119->477", - "default.handlebars->119->481", - "default3.handlebars->117->469", - "default3.handlebars->117->476", - "default3.handlebars->117->480", - "default3.handlebars->117->484", - "default3.handlebars->117->488", - "default3.handlebars->117->492" + "default.handlebars->119->459", + "default.handlebars->119->466", + "default.handlebars->119->470", + "default.handlebars->119->474", + "default.handlebars->119->478", + "default.handlebars->119->482", + "default3.handlebars->117->470", + "default3.handlebars->117->477", + "default3.handlebars->117->481", + "default3.handlebars->117->485", + "default3.handlebars->117->489", + "default3.handlebars->117->493" ] }, { @@ -27348,18 +27348,18 @@ "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3->deskstatus", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3->p13Status", "default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea1->1->3->termstatus", - "default.handlebars->119->406", - "default.handlebars->119->409", - "default.handlebars->119->449", - "default.handlebars->119->490", + "default.handlebars->119->407", + "default.handlebars->119->410", + "default.handlebars->119->450", + "default.handlebars->119->491", "default.handlebars->119->8", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->deskstatus", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->termstatus", "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3->p13Status", - "default3.handlebars->117->417", - "default3.handlebars->117->420", - "default3.handlebars->117->460", - "default3.handlebars->117->501", + "default3.handlebars->117->418", + "default3.handlebars->117->421", + "default3.handlebars->117->461", + "default3.handlebars->117->502", "default3.handlebars->117->8", "default3.handlebars->container->column_l->p11->deskarea0->deskarea1->1->deskstatus", "default3.handlebars->container->column_l->p12->termTable->1->1->0->1->1->termstatus", @@ -27417,10 +27417,10 @@ "pl": "Discord", "uk": "Discord", "xloc": [ - "default.handlebars->119->1808", - "default.handlebars->119->3051", - "default3.handlebars->117->1805", - "default3.handlebars->117->3060" + "default.handlebars->119->1810", + "default.handlebars->119->3053", + "default3.handlebars->117->1807", + "default3.handlebars->117->3062" ] }, { @@ -27449,8 +27449,8 @@ "zh-chs": "解雇", "zh-cht": "解僱", "xloc": [ - "default.handlebars->119->455", - "default3.handlebars->117->466" + "default.handlebars->119->456", + "default3.handlebars->117->467" ] }, { @@ -27509,8 +27509,8 @@ "zh-chs": "在远程设备上显示一个消息框。", "zh-cht": "在遠程裝置上顯示一個訊息框。", "xloc": [ - "default.handlebars->119->1193", - "default3.handlebars->117->1202" + "default.handlebars->119->1194", + "default3.handlebars->117->1203" ] }, { @@ -27569,8 +27569,8 @@ "zh-chs": "在远程设备上显示短信", "zh-cht": "在遠程裝置上顯示短信", "xloc": [ - "default.handlebars->119->1034", - "default3.handlebars->117->1045" + "default.handlebars->119->1035", + "default3.handlebars->117->1046" ] }, { @@ -27625,8 +27625,8 @@ "zh-chs": "显示设备组名称", "zh-cht": "顯示裝置群名稱", "xloc": [ - "default.handlebars->119->2089", - "default3.handlebars->117->2086" + "default.handlebars->119->2091", + "default3.handlebars->117->2088" ] }, { @@ -27655,8 +27655,8 @@ "zh-chs": "显示名称", "zh-cht": "顯示名稱", "xloc": [ - "default.handlebars->119->1474", - "default3.handlebars->117->1475" + "default.handlebars->119->1475", + "default3.handlebars->117->1476" ] }, { @@ -27685,8 +27685,8 @@ "zh-chs": "显示公共连结", "zh-cht": "顯示公共鏈結", "xloc": [ - "default.handlebars->119->2501", - "default3.handlebars->117->2513" + "default.handlebars->119->2503", + "default3.handlebars->117->2515" ] }, { @@ -27715,8 +27715,8 @@ "zh-chs": "显示{0}", "zh-cht": "顯示 {0}", "xloc": [ - "default.handlebars->119->1505", - "default3.handlebars->117->1505" + "default.handlebars->119->1506", + "default3.handlebars->117->1506" ] }, { @@ -27726,8 +27726,8 @@ "pl": "Wyświetl okno powiadomienia, tytuł=\\\"{0}\\\", wiadomość=\\\"{1}\\\"", "uk": "Показ вікна попередження, title=\\\"{0}\\\", message=\\\"{1}\\\"", "xloc": [ - "default.handlebars->119->2707", - "default3.handlebars->117->2719" + "default.handlebars->119->2709", + "default3.handlebars->117->2721" ] }, { @@ -27756,8 +27756,8 @@ "zh-chs": "显示消息框,标题= “{0}”,消息= “{1}”", "zh-cht": "顯示消息框,標題= “{0}”,消息= “{1}”", "xloc": [ - "default.handlebars->119->2567", - "default3.handlebars->117->2579" + "default.handlebars->119->2569", + "default3.handlebars->117->2581" ] }, { @@ -27786,8 +27786,8 @@ "zh-chs": "显示吐司消息,标题= “{0}”,消息= “{1}”", "zh-cht": "顯示吐司消息,標題= “{0}”,消息= “{1}”", "xloc": [ - "default.handlebars->119->2575", - "default3.handlebars->117->2587" + "default.handlebars->119->2577", + "default3.handlebars->117->2589" ] }, { @@ -27816,10 +27816,10 @@ "zh-chs": "什么都不做", "zh-cht": "什麼都不做", "xloc": [ - "default.handlebars->119->2309", - "default.handlebars->119->2313", - "default3.handlebars->117->2318", - "default3.handlebars->117->2322" + "default.handlebars->119->2311", + "default.handlebars->119->2315", + "default3.handlebars->117->2320", + "default3.handlebars->117->2324" ] }, { @@ -27849,17 +27849,17 @@ "zh-cht": "域", "xloc": [ "default.handlebars->119->137", - "default.handlebars->119->1408", - "default.handlebars->119->2830", - "default.handlebars->119->2879", - "default.handlebars->119->2888", - "default.handlebars->119->2962", - "default3.handlebars->117->1409", + "default.handlebars->119->1409", + "default.handlebars->119->2832", + "default.handlebars->119->2881", + "default.handlebars->119->2890", + "default.handlebars->119->2964", + "default3.handlebars->117->1410", "default3.handlebars->117->150", - "default3.handlebars->117->2841", - "default3.handlebars->117->2888", - "default3.handlebars->117->2897", - "default3.handlebars->117->2971", + "default3.handlebars->117->2843", + "default3.handlebars->117->2890", + "default3.handlebars->117->2899", + "default3.handlebars->117->2973", "mstsc.handlebars->main->1->3->1->rowdomain->1->0", "mstsc.handlebars->main->1->3->1->rowdomain->3" ] @@ -27916,8 +27916,8 @@ "zh-chs": "请勿更改,如果设置请保留CCM", "zh-cht": "請勿更改,如果設置請保留CCM", "xloc": [ - "default.handlebars->119->2305", - "default3.handlebars->117->2314" + "default.handlebars->119->2307", + "default3.handlebars->117->2316" ] }, { @@ -27972,8 +27972,8 @@ "zh-chs": "不要连接到服务器", "zh-cht": "不要連接到伺服器", "xloc": [ - "default.handlebars->119->2314", - "default3.handlebars->117->2323" + "default.handlebars->119->2316", + "default3.handlebars->117->2325" ] }, { @@ -28112,8 +28112,8 @@ "zh-cht": "下", "xloc": [ "default-mobile.handlebars->53->675", - "default.handlebars->119->1443", - "default3.handlebars->117->1445", + "default.handlebars->119->1444", + "default3.handlebars->117->1446", "sharing-mobile.handlebars->53->31" ] }, @@ -28241,8 +28241,8 @@ "zh-cht": "下載檔案", "xloc": [ "default-mobile.handlebars->53->750", - "default.handlebars->119->1595", - "default3.handlebars->117->1595", + "default.handlebars->119->1596", + "default3.handlebars->117->1596", "sharing-mobile.handlebars->53->106", "sharing.handlebars->47->82" ] @@ -28273,8 +28273,8 @@ "zh-chs": "下载MeshCentral Router,一个TCP端口映射工具。", "zh-cht": "下載MeshCentral Router,一個TCP端口映射工具。", "xloc": [ - "default.handlebars->119->404", - "default3.handlebars->117->415" + "default.handlebars->119->405", + "default3.handlebars->117->416" ] }, { @@ -28303,8 +28303,8 @@ "zh-chs": "下载MeshCmd", "zh-cht": "下載MeshCmd", "xloc": [ - "default.handlebars->119->1367", - "default3.handlebars->117->1369" + "default.handlebars->119->1368", + "default3.handlebars->117->1370" ] }, { @@ -28333,8 +28333,8 @@ "zh-chs": "下载MeshCmd,这是一个多功能的指令执行工具。", "zh-cht": "下載MeshCmd,這是一個多功能的指令執行工具。", "xloc": [ - "default.handlebars->119->402", - "default3.handlebars->117->413" + "default.handlebars->119->403", + "default3.handlebars->117->414" ] }, { @@ -28393,10 +28393,10 @@ "zh-chs": "下载报告", "zh-cht": "下載報告", "xloc": [ - "default.handlebars->119->2736", + "default.handlebars->119->2738", "default.handlebars->container->column_l->p3->3->1->0->3", "default.handlebars->container->column_l->p60->3->1->0->3->1->p60downloadReportDiv", - "default3.handlebars->117->2748", + "default3.handlebars->117->2750", "default3.handlebars->container->column_l->p60->3->1->0->1->1->p60downloadReportDiv" ] }, @@ -28426,8 +28426,8 @@ "zh-chs": "下载带有指令档案的“ meshcmd”,以通过此服务器将网络讯息发送到该设备。紧记编辑meshaction.txt并添加您的帐户密码或进行任何必要的更改。", "zh-cht": "下載帶有指令檔案的“ meshcmd”,以通過此服務器將網絡讯息發送到該裝置。緊記編輯meshaction.txt並新增你的帳戶密碼或進行任何必要的更改。", "xloc": [ - "default.handlebars->119->1360", - "default3.handlebars->117->1362" + "default.handlebars->119->1361", + "default3.handlebars->117->1363" ] }, { @@ -28516,8 +28516,8 @@ "zh-chs": "下载设备列表", "zh-cht": "下載設備列表", "xloc": [ - "default.handlebars->119->2278", - "default3.handlebars->117->2289" + "default.handlebars->119->2280", + "default3.handlebars->117->2291" ] }, { @@ -28546,8 +28546,8 @@ "zh-chs": "下载错误日志", "zh-cht": "下載錯誤日誌", "xloc": [ - "default.handlebars->119->211", - "default3.handlebars->117->224" + "default.handlebars->119->212", + "default3.handlebars->117->225" ] }, { @@ -28576,8 +28576,8 @@ "zh-chs": "下载电源事件", "zh-cht": "下載電源事件", "xloc": [ - "default.handlebars->119->1315", - "default3.handlebars->117->1321" + "default.handlebars->119->1316", + "default3.handlebars->117->1322" ] }, { @@ -28726,8 +28726,8 @@ "zh-chs": "使用以下一种档案格式下载设备列表。", "zh-cht": "使用以下一種檔案格式下載裝置列表。", "xloc": [ - "default.handlebars->119->802", - "default3.handlebars->117->813" + "default.handlebars->119->803", + "default3.handlebars->117->814" ] }, { @@ -28756,8 +28756,8 @@ "zh-chs": "使用以下一种档案格式下载事件列表。", "zh-cht": "使用以下一種檔案格式下載事件列表。", "xloc": [ - "default.handlebars->119->2737", - "default3.handlebars->117->2749" + "default.handlebars->119->2739", + "default3.handlebars->117->2751" ] }, { @@ -28786,8 +28786,8 @@ "zh-chs": "使用以下一种档案格式下载用户列表。", "zh-cht": "使用以下一種檔案格式下載用戶列表。", "xloc": [ - "default.handlebars->119->2814", - "default3.handlebars->117->2825" + "default.handlebars->119->2816", + "default3.handlebars->117->2827" ] }, { @@ -28907,8 +28907,8 @@ "zh-chs": "下载:“{0}”", "zh-cht": "下載:“{0}”", "xloc": [ - "default.handlebars->119->2598", - "default3.handlebars->117->2610" + "default.handlebars->119->2600", + "default3.handlebars->117->2612" ] }, { @@ -28937,8 +28937,8 @@ "zh-chs": "下载:\\\"{0}\\\",大小:{1}", "zh-cht": "下載:\\\"{0}\\\",大小:{1}", "xloc": [ - "default.handlebars->119->2655", - "default3.handlebars->117->2667" + "default.handlebars->119->2657", + "default3.handlebars->117->2669" ] }, { @@ -28974,8 +28974,8 @@ "en": "Duo", "nl": "Duo", "xloc": [ - "default.handlebars->119->3017", - "default3.handlebars->117->3026", + "default.handlebars->119->3019", + "default3.handlebars->117->3028", "login.handlebars->container->column_l->centralTable->1->0->logincell->resettokenpanel->1->5->1->2->1->3", "login.handlebars->container->column_l->centralTable->1->0->logincell->tokenpanel->1->7->1->4->1->3" ] @@ -28984,10 +28984,10 @@ "en": "Duo Authentication", "nl": "Duo authenticatie", "xloc": [ - "default.handlebars->119->1837", "default.handlebars->119->1839", - "default3.handlebars->117->1834", + "default.handlebars->119->1841", "default3.handlebars->117->1836", + "default3.handlebars->117->1838", "login2.handlebars->centralTable->1->0->logincell->resettokenpanel->resettokenpanelform->5->1->2farow2->1->3", "login2.handlebars->centralTable->1->0->logincell->tokenpanel->tokenpanelform->7->1->2farow->1->3" ] @@ -29018,8 +29018,8 @@ "zh-chs": "代理重复", "zh-cht": "代理重複", "xloc": [ - "default.handlebars->119->3366", - "default3.handlebars->117->3371" + "default.handlebars->119->3368", + "default3.handlebars->117->3373" ] }, { @@ -29078,8 +29078,8 @@ "zh-chs": "复制用户组", "zh-cht": "複製用戶群", "xloc": [ - "default.handlebars->119->2883", - "default3.handlebars->117->2892" + "default.handlebars->119->2885", + "default3.handlebars->117->2894" ] }, { @@ -29134,16 +29134,16 @@ "zh-chs": "持续时间", "zh-cht": "持續時間", "xloc": [ - "default.handlebars->119->1257", - "default.handlebars->119->301", - "default.handlebars->119->303", - "default.handlebars->119->3153", - "default.handlebars->119->3186", - "default3.handlebars->117->1266", - "default3.handlebars->117->311", - "default3.handlebars->117->313", - "default3.handlebars->117->3156", - "default3.handlebars->117->3189", + "default.handlebars->119->1258", + "default.handlebars->119->302", + "default.handlebars->119->304", + "default.handlebars->119->3155", + "default.handlebars->119->3188", + "default3.handlebars->117->1267", + "default3.handlebars->117->312", + "default3.handlebars->117->314", + "default3.handlebars->117->3158", + "default3.handlebars->117->3191", "player.handlebars->29->18" ] }, @@ -29200,8 +29200,8 @@ "zh-cht": "荷蘭文(比利時)", "xloc": [ "default-mobile.handlebars->53->161", - "default.handlebars->119->1908", - "default3.handlebars->117->1904", + "default.handlebars->119->1910", + "default3.handlebars->117->1906", "login2.handlebars->17->47" ] }, @@ -29232,8 +29232,8 @@ "zh-cht": "荷蘭文(標準)", "xloc": [ "default-mobile.handlebars->53->160", - "default.handlebars->119->1907", - "default3.handlebars->117->1903", + "default.handlebars->119->1909", + "default3.handlebars->117->1905", "login2.handlebars->17->46" ] }, @@ -29405,10 +29405,10 @@ "zh-chs": "错误:", "zh-cht": "錯誤:", "xloc": [ - "default.handlebars->119->261", - "default.handlebars->119->263", - "default3.handlebars->117->271", - "default3.handlebars->117->273" + "default.handlebars->119->262", + "default.handlebars->119->264", + "default3.handlebars->117->272", + "default3.handlebars->117->274" ] }, { @@ -29587,7 +29587,7 @@ "zh-chs": "错误:无法添加密钥。", "zh-cht": "錯誤:無法新增密鑰。", "xloc": [ - "default.handlebars->119->258" + "default.handlebars->119->259" ] }, { @@ -29688,12 +29688,12 @@ "default-mobile.handlebars->53->641", "default-mobile.handlebars->53->643", "default-mobile.handlebars->53->650", - "default.handlebars->119->1378", - "default.handlebars->119->1380", - "default.handlebars->119->1387", - "default3.handlebars->117->1380", + "default.handlebars->119->1379", + "default.handlebars->119->1381", + "default.handlebars->119->1388", "default3.handlebars->117->1381", - "default3.handlebars->117->1388" + "default3.handlebars->117->1382", + "default3.handlebars->117->1389" ] }, { @@ -29722,23 +29722,23 @@ "zh-chs": "编辑设备组", "zh-cht": "編輯裝置群", "xloc": [ - "default-mobile.handlebars->53->1011", - "default-mobile.handlebars->53->978", - "default-mobile.handlebars->53->981", - "default-mobile.handlebars->53->984", - "default-mobile.handlebars->53->991", - "default.handlebars->119->2324", - "default.handlebars->119->2327", - "default.handlebars->119->2330", - "default.handlebars->119->2369", - "default.handlebars->119->2396", - "default.handlebars->119->2408", - "default3.handlebars->117->2334", - "default3.handlebars->117->2337", - "default3.handlebars->117->2342", - "default3.handlebars->117->2381", - "default3.handlebars->117->2408", - "default3.handlebars->117->2420" + "default-mobile.handlebars->53->1012", + "default-mobile.handlebars->53->979", + "default-mobile.handlebars->53->982", + "default-mobile.handlebars->53->985", + "default-mobile.handlebars->53->992", + "default.handlebars->119->2326", + "default.handlebars->119->2329", + "default.handlebars->119->2332", + "default.handlebars->119->2371", + "default.handlebars->119->2398", + "default.handlebars->119->2410", + "default3.handlebars->117->2336", + "default3.handlebars->117->2339", + "default3.handlebars->117->2344", + "default3.handlebars->117->2383", + "default3.handlebars->117->2410", + "default3.handlebars->117->2422" ] }, { @@ -29767,8 +29767,8 @@ "zh-chs": "编辑设备组功能", "zh-cht": "編輯裝置群功能", "xloc": [ - "default.handlebars->119->2355", - "default3.handlebars->117->2367" + "default.handlebars->119->2357", + "default3.handlebars->117->2369" ] }, { @@ -29797,10 +29797,10 @@ "zh-chs": "编辑设备组权限", "zh-cht": "編輯裝置群權限", "xloc": [ - "default.handlebars->119->2393", - "default.handlebars->119->2405", - "default3.handlebars->117->2405", - "default3.handlebars->117->2417" + "default.handlebars->119->2395", + "default.handlebars->119->2407", + "default3.handlebars->117->2407", + "default3.handlebars->117->2419" ] }, { @@ -29829,8 +29829,8 @@ "zh-chs": "编辑设备组用户同意", "zh-cht": "編輯裝置群用戶同意", "xloc": [ - "default.handlebars->119->2331", - "default3.handlebars->117->2343" + "default.handlebars->119->2333", + "default3.handlebars->117->2345" ] }, { @@ -29859,9 +29859,9 @@ "zh-chs": "编辑设备笔记", "zh-cht": "編輯裝置筆記", "xloc": [ - "default-mobile.handlebars->53->1003", - "default.handlebars->119->2383", - "default3.handlebars->117->2395" + "default-mobile.handlebars->53->1004", + "default.handlebars->119->2385", + "default3.handlebars->117->2397" ] }, { @@ -29890,10 +29890,10 @@ "zh-chs": "编辑设备权限", "zh-cht": "編輯裝置權限", "xloc": [ - "default.handlebars->119->2398", "default.handlebars->119->2400", - "default3.handlebars->117->2410", - "default3.handlebars->117->2412" + "default.handlebars->119->2402", + "default3.handlebars->117->2412", + "default3.handlebars->117->2414" ] }, { @@ -29922,8 +29922,8 @@ "zh-chs": "编辑设备标签", "zh-cht": "編輯裝置標籤", "xloc": [ - "default.handlebars->119->777", - "default3.handlebars->117->787" + "default.handlebars->119->778", + "default3.handlebars->117->788" ] }, { @@ -29952,8 +29952,8 @@ "zh-chs": "编辑设备用户同意", "zh-cht": "編輯裝置用戶同意", "xloc": [ - "default.handlebars->119->2333", - "default3.handlebars->117->2345" + "default.handlebars->119->2335", + "default3.handlebars->117->2347" ] }, { @@ -29982,8 +29982,8 @@ "zh-chs": "编辑群组", "zh-cht": "編輯群組", "xloc": [ - "default.handlebars->119->1163", - "default3.handlebars->117->1172" + "default.handlebars->119->1164", + "default3.handlebars->117->1173" ] }, { @@ -30016,14 +30016,14 @@ "default-mobile.handlebars->53->531", "default-mobile.handlebars->53->532", "default-mobile.handlebars->53->636", - "default.handlebars->119->1322", - "default.handlebars->119->934", - "default.handlebars->119->939", + "default.handlebars->119->1323", + "default.handlebars->119->935", "default.handlebars->119->940", - "default3.handlebars->117->1327", - "default3.handlebars->117->945", - "default3.handlebars->117->950", - "default3.handlebars->117->951" + "default.handlebars->119->941", + "default3.handlebars->117->1328", + "default3.handlebars->117->946", + "default3.handlebars->117->951", + "default3.handlebars->117->952" ] }, { @@ -30052,16 +30052,16 @@ "zh-chs": "编辑笔记", "zh-cht": "編輯筆記", "xloc": [ - "default-mobile.handlebars->53->1018", - "default.handlebars->119->2415", - "default3.handlebars->117->2427" + "default-mobile.handlebars->53->1019", + "default.handlebars->119->2417", + "default3.handlebars->117->2429" ] }, { "en": "Edit Tags", "nl": "Bewerk Tags", "xloc": [ - "default3.handlebars->117->1387" + "default3.handlebars->117->1388" ] }, { @@ -30090,8 +30090,8 @@ "zh-chs": "编辑用户同意", "zh-cht": "編輯用戶同意", "xloc": [ - "default.handlebars->119->2332", - "default3.handlebars->117->2344" + "default.handlebars->119->2334", + "default3.handlebars->117->2346" ] }, { @@ -30120,8 +30120,8 @@ "zh-chs": "编辑用户设备组权限", "zh-cht": "編輯用戶裝置群權限", "xloc": [ - "default.handlebars->119->2406", - "default3.handlebars->117->2418" + "default.handlebars->119->2408", + "default3.handlebars->117->2420" ] }, { @@ -30150,8 +30150,8 @@ "zh-chs": "编辑用户设备权限", "zh-cht": "編輯用戶裝置權限", "xloc": [ - "default.handlebars->119->2401", - "default3.handlebars->117->2413" + "default.handlebars->119->2403", + "default3.handlebars->117->2415" ] }, { @@ -30180,8 +30180,8 @@ "zh-chs": "编辑用户特征", "zh-cht": "編輯用戶特徵", "xloc": [ - "default.handlebars->119->3088", - "default3.handlebars->117->3097" + "default.handlebars->119->3090", + "default3.handlebars->117->3099" ] }, { @@ -30210,8 +30210,8 @@ "zh-chs": "编辑用户组", "zh-cht": "編輯用戶群", "xloc": [ - "default.handlebars->119->2940", - "default3.handlebars->117->2949" + "default.handlebars->119->2942", + "default3.handlebars->117->2951" ] }, { @@ -30240,8 +30240,8 @@ "zh-chs": "编辑用户组设备权限", "zh-cht": "編輯用戶群裝置權限", "xloc": [ - "default.handlebars->119->2403", - "default3.handlebars->117->2415" + "default.handlebars->119->2405", + "default3.handlebars->117->2417" ] }, { @@ -30270,8 +30270,8 @@ "zh-chs": "编辑用户组功能", "zh-cht": "編輯用戶組功能", "xloc": [ - "default.handlebars->119->2933", - "default3.handlebars->117->2942" + "default.handlebars->119->2935", + "default3.handlebars->117->2944" ] }, { @@ -30300,8 +30300,8 @@ "zh-chs": "编辑用户组用户同意", "zh-cht": "編輯用戶組用戶同意", "xloc": [ - "default.handlebars->119->2334", - "default3.handlebars->117->2346" + "default.handlebars->119->2336", + "default3.handlebars->117->2348" ] }, { @@ -30361,8 +30361,8 @@ "zh-chs": "编辑标签", "zh-cht": "編輯標籤", "xloc": [ - "default.handlebars->119->752", - "default3.handlebars->117->763" + "default.handlebars->119->753", + "default3.handlebars->117->764" ] }, { @@ -30447,19 +30447,19 @@ "zh-cht": "電郵", "xloc": [ "default-mobile.handlebars->53->327", - "default.handlebars->119->2832", - "default.handlebars->119->2966", + "default.handlebars->119->2834", "default.handlebars->119->2968", - "default.handlebars->119->3016", - "default.handlebars->119->3030", - "default.handlebars->119->3091", - "default.handlebars->119->558", - "default3.handlebars->117->2843", - "default3.handlebars->117->2975", + "default.handlebars->119->2970", + "default.handlebars->119->3018", + "default.handlebars->119->3032", + "default.handlebars->119->3093", + "default.handlebars->119->559", + "default3.handlebars->117->2845", "default3.handlebars->117->2977", - "default3.handlebars->117->3025", - "default3.handlebars->117->3039", - "default3.handlebars->117->569", + "default3.handlebars->117->2979", + "default3.handlebars->117->3027", + "default3.handlebars->117->3041", + "default3.handlebars->117->570", "login-mobile.handlebars->23->45", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3", "login.handlebars->13->50", @@ -30484,10 +30484,10 @@ "pl": "Email ({0})", "uk": "е-пошта ({0})", "xloc": [ - "default.handlebars->119->2223", - "default.handlebars->119->995", - "default3.handlebars->117->1006", - "default3.handlebars->117->2234" + "default.handlebars->119->2225", + "default.handlebars->119->996", + "default3.handlebars->117->1007", + "default3.handlebars->117->2236" ] }, { @@ -30517,8 +30517,8 @@ "zh-cht": "電郵地址變更", "xloc": [ "default-mobile.handlebars->53->328", - "default.handlebars->119->2098", - "default3.handlebars->117->2095" + "default.handlebars->119->2100", + "default3.handlebars->117->2097" ] }, { @@ -30548,8 +30548,8 @@ "zh-cht": "電郵認證", "xloc": [ "default-mobile.handlebars->53->112", - "default.handlebars->119->1834", - "default3.handlebars->117->1831" + "default.handlebars->119->1836", + "default3.handlebars->117->1833" ] }, { @@ -30673,10 +30673,10 @@ "zh-chs": "电子邮件通知", "zh-cht": "電子郵件通知", "xloc": [ - "default.handlebars->119->1131", - "default.handlebars->119->2465", - "default3.handlebars->117->1140", - "default3.handlebars->117->2477" + "default.handlebars->119->1132", + "default.handlebars->119->2467", + "default3.handlebars->117->1141", + "default3.handlebars->117->2479" ] }, { @@ -30732,8 +30732,8 @@ "zh-cht": "電郵驗證", "xloc": [ "default-mobile.handlebars->53->326", - "default.handlebars->119->2096", - "default3.handlebars->117->2093" + "default.handlebars->119->2098", + "default3.handlebars->117->2095" ] }, { @@ -30762,9 +30762,9 @@ "zh-chs": "不允许使用电子邮件域 \\\"{0}\\\"。只允许 ({1})", "zh-cht": "不允許使用電子郵件域 \\\"{0}\\\"。只允許 ({1})", "xloc": [ - "default-mobile.handlebars->53->1076", - "default.handlebars->119->3345", - "default3.handlebars->117->3350" + "default-mobile.handlebars->53->1077", + "default.handlebars->119->3347", + "default3.handlebars->117->3352" ] }, { @@ -30793,8 +30793,8 @@ "zh-chs": "邮件邀请", "zh-cht": "電郵邀請", "xloc": [ - "default.handlebars->119->555", - "default3.handlebars->117->566" + "default.handlebars->119->556", + "default3.handlebars->117->567" ] }, { @@ -30823,8 +30823,8 @@ "zh-chs": "邮箱未验证", "zh-cht": "電郵未驗證", "xloc": [ - "default.handlebars->119->2767", - "default3.handlebars->117->2779" + "default.handlebars->119->2769", + "default3.handlebars->117->2781" ] }, { @@ -30853,10 +30853,10 @@ "zh-chs": "电子邮件已验证", "zh-cht": "電子郵件已驗證", "xloc": [ - "default.handlebars->119->2768", - "default.handlebars->119->2960", - "default3.handlebars->117->2780", - "default3.handlebars->117->2969" + "default.handlebars->119->2770", + "default.handlebars->119->2962", + "default3.handlebars->117->2782", + "default3.handlebars->117->2971" ] }, { @@ -30885,8 +30885,8 @@ "zh-chs": "邮箱已验证。", "zh-cht": "電郵已驗證。", "xloc": [ - "default.handlebars->119->2838", - "default3.handlebars->117->2849" + "default.handlebars->119->2840", + "default3.handlebars->117->2851" ] }, { @@ -30915,8 +30915,8 @@ "zh-chs": "邮箱未验证", "zh-cht": "電郵未驗證", "xloc": [ - "default.handlebars->119->2961", - "default3.handlebars->117->2970" + "default.handlebars->119->2963", + "default3.handlebars->117->2972" ] }, { @@ -30971,9 +30971,9 @@ "zh-chs": "邮件已发送。", "zh-cht": "電郵已發送。", "xloc": [ - "default-mobile.handlebars->53->1060", - "default.handlebars->119->3329", - "default3.handlebars->117->3334", + "default-mobile.handlebars->53->1061", + "default.handlebars->119->3331", + "default3.handlebars->117->3336", "login-mobile.handlebars->23->2", "login.handlebars->13->2", "login2.handlebars->17->200" @@ -31062,8 +31062,8 @@ "zh-chs": "已通过电邮验证,并且需要重置密码。", "zh-cht": "已通過電郵驗證,並且需要重置密碼。", "xloc": [ - "default.handlebars->119->2839", - "default3.handlebars->117->2850" + "default.handlebars->119->2841", + "default3.handlebars->117->2852" ] }, { @@ -31118,8 +31118,8 @@ "zh-chs": "电子邮件/短信/推送流量", "zh-cht": "電子郵件/短信/推送流量", "xloc": [ - "default.handlebars->119->3427", - "default3.handlebars->117->3432" + "default.handlebars->119->3429", + "default3.handlebars->117->3434" ] }, { @@ -31241,8 +31241,8 @@ "zh-chs": "启用邀请代码", "zh-cht": "啟用邀請代碼", "xloc": [ - "default.handlebars->119->2441", - "default3.handlebars->117->2453" + "default.handlebars->119->2443", + "default3.handlebars->117->2455" ] }, { @@ -31301,8 +31301,8 @@ "zh-cht": "啟用電郵二因子鑑別。", "xloc": [ "default-mobile.handlebars->53->114", - "default.handlebars->119->1836", - "default3.handlebars->117->1833" + "default.handlebars->119->1838", + "default3.handlebars->117->1835" ] }, { @@ -31361,21 +31361,21 @@ "zh-chs": "已启用", "zh-cht": "已啟用", "xloc": [ - "default-mobile.handlebars->53->906", + "default-mobile.handlebars->53->907", "default.handlebars->119->140", - "default.handlebars->119->1747", - "default.handlebars->119->3188", + "default.handlebars->119->1749", + "default.handlebars->119->3190", "default3.handlebars->117->153", - "default3.handlebars->117->1745", - "default3.handlebars->117->3191" + "default3.handlebars->117->1747", + "default3.handlebars->117->3193" ] }, { "en": "Enabled Duo two-factor authentication", "nl": "Duo twee factorauthenticatie ingeschakeld", "xloc": [ - "default.handlebars->119->2709", - "default3.handlebars->117->2721" + "default.handlebars->119->2711", + "default3.handlebars->117->2723" ] }, { @@ -31404,8 +31404,8 @@ "zh-chs": "启用电子邮件两因素身份验证", "zh-cht": "啟用電子郵件兩因素身份驗證", "xloc": [ - "default.handlebars->119->2637", - "default3.handlebars->117->2649" + "default.handlebars->119->2639", + "default3.handlebars->117->2651" ] }, { @@ -31496,8 +31496,8 @@ "zh-chs": "编码:RAW", "zh-cht": "編碼:RAW", "xloc": [ - "default.handlebars->119->1602", - "default3.handlebars->117->1602", + "default.handlebars->119->1603", + "default3.handlebars->117->1603", "sharing.handlebars->47->89" ] }, @@ -31527,8 +31527,8 @@ "zh-chs": "编码:UTF8", "zh-cht": "編碼:UTF8", "xloc": [ - "default.handlebars->119->1603", - "default3.handlebars->117->1603", + "default.handlebars->119->1604", + "default3.handlebars->117->1604", "sharing.handlebars->47->90" ] }, @@ -31539,9 +31539,9 @@ "nl": "Versleuteling wordt uitgevoerd", "uk": "Виконується Шифрування", "xloc": [ - "default-mobile.handlebars->53->908", - "default.handlebars->119->1749", - "default3.handlebars->117->1747" + "default-mobile.handlebars->53->909", + "default.handlebars->119->1751", + "default3.handlebars->117->1749" ] }, { @@ -31571,8 +31571,8 @@ "zh-cht": "結尾", "xloc": [ "default-mobile.handlebars->53->668", - "default.handlebars->119->1437", - "default3.handlebars->117->1439", + "default.handlebars->119->1438", + "default3.handlebars->117->1440", "sharing-mobile.handlebars->53->25" ] }, @@ -31602,8 +31602,8 @@ "zh-chs": "时间结束", "zh-cht": "時間結束", "xloc": [ - "default.handlebars->119->3185", - "default3.handlebars->117->3188" + "default.handlebars->119->3187", + "default3.handlebars->117->3190" ] }, { @@ -31632,8 +31632,8 @@ "zh-chs": "从{1}到{2},{3}秒结束了桌面会话“{0}”", "zh-cht": "從{1}到{2},{3}秒結束了桌面會話“{0}”", "xloc": [ - "default.handlebars->119->2560", - "default3.handlebars->117->2572" + "default.handlebars->119->2562", + "default3.handlebars->117->2574" ] }, { @@ -31662,8 +31662,8 @@ "zh-chs": "从{1}到{2},{3}秒结束了文件管理会话“{0}”", "zh-cht": "從{1}到{2},{3}秒結束了文件管理會話“{0}”", "xloc": [ - "default.handlebars->119->2561", - "default3.handlebars->117->2573" + "default.handlebars->119->2563", + "default3.handlebars->117->2575" ] }, { @@ -31692,8 +31692,8 @@ "zh-chs": "结束本地中继会话\\\"{0}\\\",协议 {1} 到 {2},{3} 秒", "zh-cht": "已結束本地中繼會話 \\\"{0}\\\",協議 {1} 到 {2},{3} 秒", "xloc": [ - "default.handlebars->119->2670", - "default3.handlebars->117->2682" + "default.handlebars->119->2672", + "default3.handlebars->117->2684" ] }, { @@ -31722,8 +31722,8 @@ "zh-chs": "从 {1} 到 {2},{3} 秒结束了 Messenger 会话 \\\"{0}\\\"", "zh-cht": "從 {1} 到 {2} 結束的 Messenger 會話 \\\"{0}\\\",{3} 秒", "xloc": [ - "default.handlebars->119->2661", - "default3.handlebars->117->2673" + "default.handlebars->119->2663", + "default3.handlebars->117->2675" ] }, { @@ -31752,8 +31752,8 @@ "zh-chs": "从{1}到{2},{3}秒结束了中继会话“{0}”", "zh-cht": "從{1}到{2},{3}秒結束了中繼會話“{0}”", "xloc": [ - "default.handlebars->119->2558", - "default3.handlebars->117->2570" + "default.handlebars->119->2560", + "default3.handlebars->117->2572" ] }, { @@ -31782,8 +31782,8 @@ "zh-chs": "从{1}到{2},{3}秒结束了终端会话“{0}”", "zh-cht": "從{1}到{2},{3}秒結束了終端會話“{0}”", "xloc": [ - "default.handlebars->119->2559", - "default3.handlebars->117->2571" + "default.handlebars->119->2561", + "default3.handlebars->117->2573" ] }, { @@ -31813,8 +31813,8 @@ "zh-cht": "英文", "xloc": [ "default-mobile.handlebars->53->162", - "default.handlebars->119->1909", - "default3.handlebars->117->1905", + "default.handlebars->119->1911", + "default3.handlebars->117->1907", "login2.handlebars->17->48" ] }, @@ -31845,8 +31845,8 @@ "zh-cht": "英文(澳洲)", "xloc": [ "default-mobile.handlebars->53->163", - "default.handlebars->119->1910", - "default3.handlebars->117->1906", + "default.handlebars->119->1912", + "default3.handlebars->117->1908", "login2.handlebars->17->49" ] }, @@ -31877,8 +31877,8 @@ "zh-cht": "英文(伯利茲)", "xloc": [ "default-mobile.handlebars->53->164", - "default.handlebars->119->1911", - "default3.handlebars->117->1907", + "default.handlebars->119->1913", + "default3.handlebars->117->1909", "login2.handlebars->17->50" ] }, @@ -31909,8 +31909,8 @@ "zh-cht": "英文(加拿大)", "xloc": [ "default-mobile.handlebars->53->165", - "default.handlebars->119->1912", - "default3.handlebars->117->1908", + "default.handlebars->119->1914", + "default3.handlebars->117->1910", "login2.handlebars->17->51" ] }, @@ -31941,8 +31941,8 @@ "zh-cht": "英文(愛爾蘭)", "xloc": [ "default-mobile.handlebars->53->166", - "default.handlebars->119->1913", - "default3.handlebars->117->1909", + "default.handlebars->119->1915", + "default3.handlebars->117->1911", "login2.handlebars->17->52" ] }, @@ -31973,8 +31973,8 @@ "zh-cht": "英文(牙買加)", "xloc": [ "default-mobile.handlebars->53->167", - "default.handlebars->119->1914", - "default3.handlebars->117->1910", + "default.handlebars->119->1916", + "default3.handlebars->117->1912", "login2.handlebars->17->53" ] }, @@ -32005,8 +32005,8 @@ "zh-cht": "英文(紐西蘭)", "xloc": [ "default-mobile.handlebars->53->168", - "default.handlebars->119->1915", - "default3.handlebars->117->1911", + "default.handlebars->119->1917", + "default3.handlebars->117->1913", "login2.handlebars->17->54" ] }, @@ -32037,8 +32037,8 @@ "zh-cht": "英文(菲律賓)", "xloc": [ "default-mobile.handlebars->53->169", - "default.handlebars->119->1916", - "default3.handlebars->117->1912", + "default.handlebars->119->1918", + "default3.handlebars->117->1914", "login2.handlebars->17->55" ] }, @@ -32069,8 +32069,8 @@ "zh-cht": "英語(南非)", "xloc": [ "default-mobile.handlebars->53->170", - "default.handlebars->119->1917", - "default3.handlebars->117->1913", + "default.handlebars->119->1919", + "default3.handlebars->117->1915", "login2.handlebars->17->56" ] }, @@ -32101,8 +32101,8 @@ "zh-cht": "英文(特立尼達和多巴哥)", "xloc": [ "default-mobile.handlebars->53->171", - "default.handlebars->119->1918", - "default3.handlebars->117->1914", + "default.handlebars->119->1920", + "default3.handlebars->117->1916", "login2.handlebars->17->57" ] }, @@ -32133,8 +32133,8 @@ "zh-cht": "英文(英國)", "xloc": [ "default-mobile.handlebars->53->172", - "default.handlebars->119->1919", - "default3.handlebars->117->1915", + "default.handlebars->119->1921", + "default3.handlebars->117->1917", "login2.handlebars->17->58" ] }, @@ -32165,8 +32165,8 @@ "zh-cht": "美國英語", "xloc": [ "default-mobile.handlebars->53->173", - "default.handlebars->119->1920", - "default3.handlebars->117->1916", + "default.handlebars->119->1922", + "default3.handlebars->117->1918", "login2.handlebars->17->59" ] }, @@ -32197,8 +32197,8 @@ "zh-cht": "英文(津巴布韋)", "xloc": [ "default-mobile.handlebars->53->174", - "default.handlebars->119->1921", - "default3.handlebars->117->1917", + "default.handlebars->119->1923", + "default3.handlebars->117->1919", "login2.handlebars->17->60" ] }, @@ -32255,14 +32255,14 @@ "zh-cht": "輸入", "xloc": [ "default-mobile.handlebars->53->661", - "default.handlebars->119->1430", - "default.handlebars->119->1566", - "default.handlebars->119->2135", - "default.handlebars->119->2136", - "default3.handlebars->117->1432", - "default3.handlebars->117->1566", - "default3.handlebars->117->2150", - "default3.handlebars->117->2151", + "default.handlebars->119->1431", + "default.handlebars->119->1567", + "default.handlebars->119->2137", + "default.handlebars->119->2138", + "default3.handlebars->117->1433", + "default3.handlebars->117->1567", + "default3.handlebars->117->2152", + "default3.handlebars->117->2153", "sharing-mobile.handlebars->53->19", "sharing.handlebars->47->55" ] @@ -32293,8 +32293,8 @@ "zh-chs": "输入管理领域名称的逗号分隔列表。", "zh-cht": "輸入管理領域名稱的逗號分隔列表。", "xloc": [ - "default.handlebars->119->2843", - "default3.handlebars->117->2854" + "default.handlebars->119->2845", + "default3.handlebars->117->2856" ] }, { @@ -32323,8 +32323,8 @@ "zh-chs": "输入IP地址范围以扫描英特尔AMT设备。", "zh-cht": "輸入IP地址範圍以掃描Intel® AMT裝置。", "xloc": [ - "default.handlebars->119->543", - "default3.handlebars->117->554" + "default.handlebars->119->544", + "default3.handlebars->117->555" ] }, { @@ -32408,8 +32408,8 @@ "zh-chs": "输入文本,然后单击确定以远程键入它。在继续操作之前,请确保将远程光标放置在正确的位置。", "zh-cht": "輸入文本,然後單擊確定以遠程鍵入它。在繼續操作之前,請確保將遠程光標放置在正確的位置。", "xloc": [ - "default.handlebars->119->1462", - "default3.handlebars->117->1464" + "default.handlebars->119->1463", + "default3.handlebars->117->1465" ] }, { @@ -32521,8 +32521,8 @@ "zh-chs": "在此处输入保安编码以进行两步登录:", "zh-cht": "在此處輸入保安編碼以進行兩步登入:", "xloc": [ - "default.handlebars->119->228", - "default3.handlebars->117->240" + "default.handlebars->119->229", + "default3.handlebars->117->241" ] }, { @@ -32551,8 +32551,8 @@ "zh-chs": "输入支持SMS的电话号码。验证后,该号码可用于登录验证和其他通知。", "zh-cht": "輸入支持SMS的電話號碼。驗證後,該號碼可用於登入驗證和其他通知。", "xloc": [ - "default.handlebars->119->1800", - "default3.handlebars->117->1797" + "default.handlebars->119->1802", + "default3.handlebars->117->1799" ] }, { @@ -32566,8 +32566,8 @@ "pl": "Wprowadź swoją usługę przesyłania wiadomości. Po weryfikacji, ten serwer może wysyłać weryfikację logowania i inne powiadomienia.", "uk": "Введіть свою службу обміну повідомленнями. Після верифікації цей сервер зможе надсилати підтвердження входу та інші сповіщення.", "xloc": [ - "default.handlebars->119->1806", - "default3.handlebars->117->1803" + "default.handlebars->119->1808", + "default3.handlebars->117->1805" ] }, { @@ -32597,8 +32597,8 @@ "zh-cht": "錯誤 #{0}", "xloc": [ "default-mobile.handlebars->53->71", - "default.handlebars->119->223", - "default3.handlebars->117->235" + "default.handlebars->119->224", + "default3.handlebars->117->236" ] }, { @@ -32705,9 +32705,9 @@ "zh-chs": "错误,无法添加密钥。", "zh-cht": "錯誤,無法新增密鑰。", "xloc": [ - "default.handlebars->119->256", - "default3.handlebars->117->266", - "default3.handlebars->117->268" + "default.handlebars->119->257", + "default3.handlebars->117->267", + "default3.handlebars->117->269" ] }, { @@ -32736,9 +32736,9 @@ "zh-chs": "错误,邀请码 \\\"{0}\\\" 已被使用。", "zh-cht": "錯誤,邀請碼 \\\"{0}\\\" 已在使用中。", "xloc": [ - "default-mobile.handlebars->53->1068", - "default.handlebars->119->3337", - "default3.handlebars->117->3342" + "default-mobile.handlebars->53->1069", + "default.handlebars->119->3339", + "default3.handlebars->117->3344" ] }, { @@ -32767,9 +32767,9 @@ "zh-chs": "错误,密码未更改。", "zh-cht": "錯誤,密碼未更改。", "xloc": [ - "default-mobile.handlebars->53->1065", - "default.handlebars->119->3334", - "default3.handlebars->117->3339" + "default-mobile.handlebars->53->1066", + "default.handlebars->119->3336", + "default3.handlebars->117->3341" ] }, { @@ -32798,9 +32798,9 @@ "zh-chs": "错误,无法更改为常用密码。", "zh-cht": "錯誤,無法更改為常用密碼。", "xloc": [ - "default-mobile.handlebars->53->1064", - "default.handlebars->119->3333", - "default3.handlebars->117->3338" + "default-mobile.handlebars->53->1065", + "default.handlebars->119->3335", + "default3.handlebars->117->3340" ] }, { @@ -32829,9 +32829,9 @@ "zh-chs": "错误,无法更改为以前使用的密码。", "zh-cht": "錯誤,無法更改為以前使用的密碼。", "xloc": [ - "default-mobile.handlebars->53->1063", - "default.handlebars->119->3332", - "default3.handlebars->117->3337" + "default-mobile.handlebars->53->1064", + "default.handlebars->119->3334", + "default3.handlebars->117->3339" ] }, { @@ -32890,8 +32890,8 @@ "zh-cht": "逃脫", "xloc": [ "default-mobile.handlebars->53->662", - "default.handlebars->119->1431", - "default3.handlebars->117->1433", + "default.handlebars->119->1432", + "default3.handlebars->117->1434", "sharing-mobile.handlebars->53->20" ] }, @@ -32933,8 +32933,8 @@ "zh-cht": "世界語", "xloc": [ "default-mobile.handlebars->53->175", - "default.handlebars->119->1922", - "default3.handlebars->117->1918", + "default.handlebars->119->1924", + "default3.handlebars->117->1920", "login2.handlebars->17->61" ] }, @@ -32991,8 +32991,8 @@ "zh-cht": "愛沙尼亞語", "xloc": [ "default-mobile.handlebars->53->176", - "default.handlebars->119->1923", - "default3.handlebars->117->1919", + "default.handlebars->119->1925", + "default3.handlebars->117->1921", "login2.handlebars->17->62" ] }, @@ -33048,8 +33048,8 @@ "zh-chs": "事件详情", "zh-cht": "事件詳情", "xloc": [ - "default.handlebars->119->1614", - "default3.handlebars->117->1614" + "default.handlebars->119->1615", + "default3.handlebars->117->1615" ] }, { @@ -33078,8 +33078,8 @@ "zh-chs": "事件列表输出", "zh-cht": "事件列表輸出", "xloc": [ - "default.handlebars->119->2742", - "default3.handlebars->117->2754" + "default.handlebars->119->2744", + "default3.handlebars->117->2756" ] }, { @@ -33094,8 +33094,8 @@ "pl": "Zapisy zdarzeń", "uk": "Записи подій", "xloc": [ - "default.handlebars->119->3278", - "default3.handlebars->117->3281" + "default.handlebars->119->3280", + "default3.handlebars->117->3283" ] }, { @@ -33283,8 +33283,8 @@ "zh-chs": "到期", "zh-cht": "到期", "xloc": [ - "default.handlebars->119->345", - "default3.handlebars->117->355" + "default.handlebars->119->346", + "default3.handlebars->117->356" ] }, { @@ -33313,12 +33313,12 @@ "zh-chs": "到期时间", "zh-cht": "到期時間", "xloc": [ - "default.handlebars->119->1250", - "default.handlebars->119->2086", - "default.handlebars->119->306", - "default3.handlebars->117->1259", - "default3.handlebars->117->2083", - "default3.handlebars->117->316" + "default.handlebars->119->1251", + "default.handlebars->119->2088", + "default.handlebars->119->307", + "default3.handlebars->117->1260", + "default3.handlebars->117->2085", + "default3.handlebars->117->317" ] }, { @@ -33376,8 +33376,8 @@ "zh-chs": "过期{0}", "zh-cht": "過期{0}", "xloc": [ - "default.handlebars->119->2149", - "default3.handlebars->117->2164", + "default.handlebars->119->2151", + "default3.handlebars->117->2166", "sharing.handlebars->47->100" ] }, @@ -33407,8 +33407,8 @@ "zh-chs": "输出设备信息", "zh-cht": "輸出裝置訊息", "xloc": [ - "default.handlebars->119->743", - "default3.handlebars->117->754" + "default.handlebars->119->744", + "default3.handlebars->117->755" ] }, { @@ -33437,8 +33437,8 @@ "zh-chs": "扩充式ASCII", "zh-cht": "擴充式ASCII", "xloc": [ - "default.handlebars->119->1535", - "default3.handlebars->117->1535", + "default.handlebars->119->1536", + "default3.handlebars->117->1536", "sharing.handlebars->47->34" ] }, @@ -33499,8 +33499,8 @@ "zh-chs": "外部", "zh-cht": "外部", "xloc": [ - "default.handlebars->119->3407", - "default3.handlebars->117->3412" + "default.handlebars->119->3409", + "default3.handlebars->117->3414" ] }, { @@ -33529,8 +33529,8 @@ "zh-chs": "FIDO 密钥", "zh-cht": "FIDO 密鑰", "xloc": [ - "default.handlebars->119->3258", - "default3.handlebars->117->3261" + "default.handlebars->119->3260", + "default3.handlebars->117->3263" ] }, { @@ -33559,8 +33559,8 @@ "zh-chs": "完整网域名称", "zh-cht": "完整網域名稱", "xloc": [ - "default.handlebars->119->184", - "default3.handlebars->117->197" + "default.handlebars->119->185", + "default3.handlebars->117->198" ] }, { @@ -33590,8 +33590,8 @@ "zh-cht": "FYRO馬其頓語", "xloc": [ "default-mobile.handlebars->53->226", - "default.handlebars->119->1973", - "default3.handlebars->117->1969", + "default.handlebars->119->1975", + "default3.handlebars->117->1971", "login2.handlebars->17->112" ] }, @@ -33606,10 +33606,10 @@ "pl": "Facebook", "uk": "Facebook", "xloc": [ - "default.handlebars->119->1820", - "default.handlebars->119->3063", - "default3.handlebars->117->1817", - "default3.handlebars->117->3072" + "default.handlebars->119->1822", + "default.handlebars->119->3065", + "default3.handlebars->117->1819", + "default3.handlebars->117->3074" ] }, { @@ -33639,8 +33639,8 @@ "zh-cht": "法羅語", "xloc": [ "default-mobile.handlebars->53->177", - "default.handlebars->119->1924", - "default3.handlebars->117->1920", + "default.handlebars->119->1926", + "default3.handlebars->117->1922", "login2.handlebars->17->63" ] }, @@ -33700,9 +33700,9 @@ "zh-chs": "无法更改电子邮件地址,另一个帐户已在使用:{0}。", "zh-cht": "更改電子郵件地址失敗,另一個帳戶已在使用:{0}。", "xloc": [ - "default-mobile.handlebars->53->1059", - "default.handlebars->119->3328", - "default3.handlebars->117->3333" + "default-mobile.handlebars->53->1060", + "default.handlebars->119->3330", + "default3.handlebars->117->3335" ] }, { @@ -33789,8 +33789,8 @@ "zh-chs": "本地用户拒绝后无法启动远程桌面", "zh-cht": "本地用戶拒絕後無法啟動遠程桌面", "xloc": [ - "default.handlebars->119->2583", - "default3.handlebars->117->2595" + "default.handlebars->119->2585", + "default3.handlebars->117->2597" ] }, { @@ -33845,8 +33845,8 @@ "zh-chs": "本地用户拒绝后无法启动远程文件", "zh-cht": "本地用戶拒絕後無法啟動遠程文件", "xloc": [ - "default.handlebars->119->2590", - "default3.handlebars->117->2602" + "default.handlebars->119->2592", + "default3.handlebars->117->2604" ] }, { @@ -33902,8 +33902,8 @@ "zh-cht": "無法啟動遠程終端接合{0}({1})", "xloc": [ "default-mobile.handlebars->53->653", - "default.handlebars->119->1391", - "default3.handlebars->117->1392", + "default.handlebars->119->1392", + "default3.handlebars->117->1393", "sharing-mobile.handlebars->53->11", "sharing.handlebars->47->30", "sharing.handlebars->47->8" @@ -33936,8 +33936,8 @@ "zh-cht": "波斯語(波斯語)", "xloc": [ "default-mobile.handlebars->53->178", - "default.handlebars->119->1925", - "default3.handlebars->117->1921", + "default.handlebars->119->1927", + "default3.handlebars->117->1923", "login2.handlebars->17->64" ] }, @@ -34000,12 +34000,12 @@ "zh-chs": "功能", "zh-cht": "功能", "xloc": [ - "default.handlebars->119->2207", - "default.handlebars->119->2896", - "default.handlebars->119->2987", - "default3.handlebars->117->2218", - "default3.handlebars->117->2905", - "default3.handlebars->117->2996" + "default.handlebars->119->2209", + "default.handlebars->119->2898", + "default.handlebars->119->2989", + "default3.handlebars->117->2220", + "default3.handlebars->117->2907", + "default3.handlebars->117->2998" ] }, { @@ -34035,8 +34035,8 @@ "zh-cht": "斐濟", "xloc": [ "default-mobile.handlebars->53->179", - "default.handlebars->119->1926", - "default3.handlebars->117->1922", + "default.handlebars->119->1928", + "default3.handlebars->117->1924", "login2.handlebars->17->65" ] }, @@ -34096,12 +34096,12 @@ "zh-cht": "檔案編輯器", "xloc": [ "default-mobile.handlebars->53->734", - "default.handlebars->119->1578", - "default.handlebars->119->2539", - "default.handlebars->119->867", - "default3.handlebars->117->1578", - "default3.handlebars->117->2551", - "default3.handlebars->117->878", + "default.handlebars->119->1579", + "default.handlebars->119->2541", + "default.handlebars->119->868", + "default3.handlebars->117->1579", + "default3.handlebars->117->2553", + "default3.handlebars->117->879", "sharing-mobile.handlebars->53->90", "sharing.handlebars->47->66" ] @@ -34158,14 +34158,14 @@ "zh-chs": "档案操作", "zh-cht": "檔案操作", "xloc": [ - "default.handlebars->119->1550", - "default.handlebars->119->1552", - "default.handlebars->119->1554", - "default.handlebars->119->1556", - "default3.handlebars->117->1550", - "default3.handlebars->117->1552", - "default3.handlebars->117->1554", - "default3.handlebars->117->1556", + "default.handlebars->119->1551", + "default.handlebars->119->1553", + "default.handlebars->119->1555", + "default.handlebars->119->1557", + "default3.handlebars->117->1551", + "default3.handlebars->117->1553", + "default3.handlebars->117->1555", + "default3.handlebars->117->1557", "sharing.handlebars->47->46", "sharing.handlebars->47->48" ] @@ -34209,15 +34209,15 @@ "pl": "System Plików", "uk": "Файлова система", "xloc": [ - "default-mobile.handlebars->53->904", - "default-mobile.handlebars->53->916", - "default-mobile.handlebars->53->923", - "default.handlebars->119->1745", - "default.handlebars->119->1757", - "default.handlebars->119->1764", - "default3.handlebars->117->1743", - "default3.handlebars->117->1755", - "default3.handlebars->117->1762" + "default-mobile.handlebars->53->905", + "default-mobile.handlebars->53->917", + "default-mobile.handlebars->53->924", + "default.handlebars->119->1747", + "default.handlebars->119->1759", + "default.handlebars->119->1766", + "default3.handlebars->117->1745", + "default3.handlebars->117->1757", + "default3.handlebars->117->1764" ] }, { @@ -34246,8 +34246,8 @@ "zh-chs": "文件传输", "zh-cht": "文件傳輸", "xloc": [ - "default.handlebars->119->3159", - "default3.handlebars->117->3162" + "default.handlebars->119->3161", + "default3.handlebars->117->3164" ] }, { @@ -34276,8 +34276,8 @@ "zh-chs": "文件系统驱动", "zh-cht": "FileSystemDriver", "xloc": [ - "default.handlebars->119->1479", - "default3.handlebars->117->1480" + "default.handlebars->119->1480", + "default3.handlebars->117->1481" ] }, { @@ -34308,26 +34308,26 @@ "xloc": [ "default-mobile.handlebars->53->442", "default-mobile.handlebars->53->585", - "default.handlebars->119->1107", - "default.handlebars->119->1221", - "default.handlebars->119->2262", - "default.handlebars->119->2342", - "default.handlebars->119->3169", - "default.handlebars->119->3235", - "default.handlebars->119->3288", - "default.handlebars->119->3394", - "default.handlebars->119->472", + "default.handlebars->119->1108", + "default.handlebars->119->1222", + "default.handlebars->119->2264", + "default.handlebars->119->2344", + "default.handlebars->119->3171", + "default.handlebars->119->3237", + "default.handlebars->119->3290", + "default.handlebars->119->3396", + "default.handlebars->119->473", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles", "default.handlebars->contextMenu->cxfiles", - "default3.handlebars->117->1118", - "default3.handlebars->117->1230", - "default3.handlebars->117->2273", - "default3.handlebars->117->2354", - "default3.handlebars->117->3172", - "default3.handlebars->117->3238", - "default3.handlebars->117->3291", - "default3.handlebars->117->3399", - "default3.handlebars->117->483", + "default3.handlebars->117->1119", + "default3.handlebars->117->1231", + "default3.handlebars->117->2275", + "default3.handlebars->117->2356", + "default3.handlebars->117->3174", + "default3.handlebars->117->3240", + "default3.handlebars->117->3293", + "default3.handlebars->117->3401", + "default3.handlebars->117->484", "default3.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles", "default3.handlebars->contextMenu->cxfiles", "sharing-mobile.handlebars->53->8", @@ -34390,14 +34390,14 @@ "zh-chs": "档案通知", "zh-cht": "檔案通知", "xloc": [ - "default.handlebars->119->2215", - "default.handlebars->119->2904", - "default.handlebars->119->3009", - "default.handlebars->119->987", - "default3.handlebars->117->2226", - "default3.handlebars->117->2913", - "default3.handlebars->117->3018", - "default3.handlebars->117->998" + "default.handlebars->119->2217", + "default.handlebars->119->2906", + "default.handlebars->119->3011", + "default.handlebars->119->988", + "default3.handlebars->117->2228", + "default3.handlebars->117->2915", + "default3.handlebars->117->3020", + "default3.handlebars->117->999" ] }, { @@ -34426,14 +34426,14 @@ "zh-chs": "档案提示", "zh-cht": "檔案提示", "xloc": [ - "default.handlebars->119->2214", - "default.handlebars->119->2903", - "default.handlebars->119->3008", - "default.handlebars->119->986", - "default3.handlebars->117->2225", - "default3.handlebars->117->2912", - "default3.handlebars->117->3017", - "default3.handlebars->117->997" + "default.handlebars->119->2216", + "default.handlebars->119->2905", + "default.handlebars->119->3010", + "default.handlebars->119->987", + "default3.handlebars->117->2227", + "default3.handlebars->117->2914", + "default3.handlebars->117->3019", + "default3.handlebars->117->998" ] }, { @@ -34463,14 +34463,14 @@ "zh-cht": "過濾", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p2->xdevicesBar->1", - "default.handlebars->119->1562", + "default.handlebars->119->1563", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->kvmListToolbar", "default.handlebars->container->column_l->p16->3->1->0->5", "default.handlebars->container->column_l->p3->3->1->0->5", "default.handlebars->container->column_l->p31->3->1->0->5", "default.handlebars->container->column_l->p4->3->1->0->3->3", - "default3.handlebars->117->1562", + "default3.handlebars->117->1563", "default3.handlebars->container->column_l->p1->devListToolbarSpan->devListToolbar", "default3.handlebars->container->column_l->p1->devListToolbarSpan->kvmListToolbar", "default3.handlebars->container->column_l->p16->3->1->0->1->1->1", @@ -34568,8 +34568,8 @@ "zh-chs": "查找文件", "zh-cht": "查找文件", "xloc": [ - "default.handlebars->119->1565", - "default3.handlebars->117->1565", + "default.handlebars->119->1566", + "default3.handlebars->117->1566", "sharing.handlebars->47->54" ] }, @@ -34599,8 +34599,8 @@ "zh-chs": "已完成录制会话 \\\"{0}\\\",{1} 秒", "zh-cht": "已完成錄製會話 \\\"{0}\\\",{1} 秒", "xloc": [ - "default.handlebars->119->2695", - "default3.handlebars->117->2707" + "default.handlebars->119->2697", + "default3.handlebars->117->2709" ] }, { @@ -34629,8 +34629,8 @@ "zh-chs": "录制会话已完成,{0}秒", "zh-cht": "錄製會話已完成,{0}秒", "xloc": [ - "default.handlebars->119->2556", - "default3.handlebars->117->2568" + "default.handlebars->119->2558", + "default3.handlebars->117->2570" ] }, { @@ -34660,8 +34660,8 @@ "zh-cht": "芬蘭", "xloc": [ "default-mobile.handlebars->53->180", - "default.handlebars->119->1927", - "default3.handlebars->117->1923", + "default.handlebars->119->1929", + "default3.handlebars->117->1925", "login2.handlebars->17->66" ] }, @@ -34701,10 +34701,10 @@ "xloc": [ "default-mobile.handlebars->53->775", "default-mobile.handlebars->53->777", - "default.handlebars->119->958", - "default.handlebars->119->960", - "default3.handlebars->117->969", - "default3.handlebars->117->971" + "default.handlebars->119->959", + "default.handlebars->119->961", + "default3.handlebars->117->970", + "default3.handlebars->117->972" ] }, { @@ -34733,10 +34733,10 @@ "zh-chs": "防火墙未激活", "zh-cht": "防火牆未激活", "xloc": [ - "default.handlebars->119->2481", - "default.handlebars->119->2495", - "default3.handlebars->117->2493", - "default3.handlebars->117->2507" + "default.handlebars->119->2483", + "default.handlebars->119->2497", + "default3.handlebars->117->2495", + "default3.handlebars->117->2509" ] }, { @@ -34747,8 +34747,47 @@ "pl": "Pierwsza Awaria", "uk": "Перша Невдача", "xloc": [ - "default.handlebars->119->1490", - "default3.handlebars->117->1491" + "default.handlebars->119->1491", + "default3.handlebars->117->1492" + ] + }, + { + "ar": "اتصال الوكيل الأول", + "bs": "Prva veza agenta", + "ca": "Primera connexió d'agent", + "cs": "První připojení agenta", + "da": "Første agentforbindelse", + "de": "Erste Agentenverbindung", + "el": "Πρώτη σύνδεση αντιπροσώπου", + "en": "First agent connection", + "es": "Conexión del primer agente", + "fi": "Ensimmäinen agenttiyhteys", + "fr": "Connexion du premier agent", + "he": "חיבור סוכן ראשון", + "hi": "पहला एजेंट कनेक्शन", + "hr": "Prva veza agenta", + "it": "Prima connessione dell'agente", + "ja": "最初のエージェント接続", + "ja-JP": "最初のエージェント接続", + "ko": "첫 번째 에이전트 연결", + "nl": "Eerste agentverbinding", + "pl": "Pierwsze połączenie agenta", + "pt": "Primeira conexão do agente", + "pt-br": "Primeira conexão do agente", + "ro": "Prima conexiune la agent", + "ru": "Первое подключение агента", + "sr": "Прва веза са агентом", + "sv": "Första agentanslutning", + "tr": "İlk temsilci bağlantısı", + "uk": "Перше підключення агента", + "zh-chs": "首次代理连接", + "zh-cht": "首次代理連接", + "xloc": [ + "default-mobile.handlebars->53->799", + "default.handlebars->119->159", + "default.handlebars->119->1631", + "default3.handlebars->117->1631", + "default3.handlebars->117->172" ] }, { @@ -34851,8 +34890,8 @@ "zh-chs": "标志", "zh-cht": "標誌", "xloc": [ - "default.handlebars->119->2715", - "default3.handlebars->117->2727" + "default.handlebars->119->2717", + "default3.handlebars->117->2729" ] }, { @@ -34882,15 +34921,15 @@ "zh-cht": "閃光", "xloc": [ "default-mobile.handlebars->53->589", - "default.handlebars->119->1266", - "default3.handlebars->117->1275" + "default.handlebars->119->1267", + "default3.handlebars->117->1276" ] }, { "en": "Flatly", "nl": "Plat", "xloc": [ - "default3.handlebars->117->2107" + "default3.handlebars->117->2109" ] }, { @@ -34980,8 +35019,8 @@ "zh-chs": "对于ACM激活,需要将英特尔®AMT设置为以下受信任的FQDN:", "zh-cht": "對於ACM激活,需要將英特爾®AMT設置為以下受信任的FQDN:", "xloc": [ - "default.handlebars->119->533", - "default3.handlebars->117->544" + "default.handlebars->119->534", + "default3.handlebars->117->545" ] }, { @@ -35152,13 +35191,13 @@ "zh-chs": "强制代理更新", "zh-cht": "強制代理更新", "xloc": [ - "default-mobile.handlebars->53->948", - "default.handlebars->119->1790", - "default.handlebars->119->755", - "default.handlebars->119->796", - "default3.handlebars->117->1788", - "default3.handlebars->117->766", - "default3.handlebars->117->807" + "default-mobile.handlebars->53->949", + "default.handlebars->119->1792", + "default.handlebars->119->756", + "default.handlebars->119->797", + "default3.handlebars->117->1790", + "default3.handlebars->117->767", + "default3.handlebars->117->808" ] }, { @@ -35187,8 +35226,8 @@ "zh-chs": "在选定的设备上强制更新代理?", "zh-cht": "在選定的設備上強制更新代理?", "xloc": [ - "default.handlebars->119->795", - "default3.handlebars->117->806" + "default.handlebars->119->796", + "default3.handlebars->117->807" ] }, { @@ -35217,10 +35256,10 @@ "zh-chs": "下次登录时强制重置密码。", "zh-cht": "下次登入時強制重置密碼。", "xloc": [ - "default.handlebars->119->2837", - "default.handlebars->119->3102", - "default3.handlebars->117->2848", - "default3.handlebars->117->3105" + "default.handlebars->119->2839", + "default.handlebars->119->3104", + "default3.handlebars->117->2850", + "default3.handlebars->117->3107" ] }, { @@ -35249,8 +35288,8 @@ "zh-chs": "强行断开用户 {0} 的桌面会话", "zh-cht": "強行斷開用戶 {0} 的桌面會話", "xloc": [ - "default.handlebars->119->2683", - "default3.handlebars->117->2695" + "default.handlebars->119->2685", + "default3.handlebars->117->2697" ] }, { @@ -35279,8 +35318,8 @@ "zh-chs": "强制断开用户 {0} 的文件会话", "zh-cht": "強制斷開用戶 {0} 的文件會話", "xloc": [ - "default.handlebars->119->2685", - "default3.handlebars->117->2697" + "default.handlebars->119->2687", + "default3.handlebars->117->2699" ] }, { @@ -35309,8 +35348,8 @@ "zh-chs": "强制断开用户 {0} 的路由会话", "zh-cht": "強制斷開用戶 {0} 的路由會話", "xloc": [ - "default.handlebars->119->2686", - "default3.handlebars->117->2698" + "default.handlebars->119->2688", + "default3.handlebars->117->2700" ] }, { @@ -35339,8 +35378,8 @@ "zh-chs": "强制断开用户 {0} 的终端会话", "zh-cht": "強制斷開用戶 {0} 的終端會話", "xloc": [ - "default.handlebars->119->2684", - "default3.handlebars->117->2696" + "default.handlebars->119->2686", + "default3.handlebars->117->2698" ] }, { @@ -35459,8 +35498,8 @@ "zh-chs": "格式化", "zh-cht": "格式化", "xloc": [ - "default.handlebars->119->2733", - "default3.handlebars->117->2745" + "default.handlebars->119->2735", + "default3.handlebars->117->2747" ] }, { @@ -35547,10 +35586,10 @@ "zh-chs": "自由", "zh-cht": "自由", "xloc": [ - "default.handlebars->119->3351", "default.handlebars->119->3353", - "default3.handlebars->117->3356", - "default3.handlebars->117->3358" + "default.handlebars->119->3355", + "default3.handlebars->117->3358", + "default3.handlebars->117->3360" ] }, { @@ -35563,10 +35602,10 @@ "pl": "Darmowa usługa z ntfy.sh", "uk": "Безкоштовний сервіс від ntfy.sh", "xloc": [ - "default.handlebars->119->1823", - "default.handlebars->119->3066", - "default3.handlebars->117->1820", - "default3.handlebars->117->3075" + "default.handlebars->119->1825", + "default.handlebars->119->3068", + "default3.handlebars->117->1822", + "default3.handlebars->117->3077" ] }, { @@ -35627,8 +35666,8 @@ "zh-cht": "法語(比利時)", "xloc": [ "default-mobile.handlebars->53->182", - "default.handlebars->119->1929", - "default3.handlebars->117->1925", + "default.handlebars->119->1931", + "default3.handlebars->117->1927", "login2.handlebars->17->68" ] }, @@ -35659,8 +35698,8 @@ "zh-cht": "法語(加拿大)", "xloc": [ "default-mobile.handlebars->53->183", - "default.handlebars->119->1930", - "default3.handlebars->117->1926", + "default.handlebars->119->1932", + "default3.handlebars->117->1928", "login2.handlebars->17->69" ] }, @@ -35691,8 +35730,8 @@ "zh-cht": "法語(法國)", "xloc": [ "default-mobile.handlebars->53->184", - "default.handlebars->119->1931", - "default3.handlebars->117->1927", + "default.handlebars->119->1933", + "default3.handlebars->117->1929", "login2.handlebars->17->70" ] }, @@ -35723,8 +35762,8 @@ "zh-cht": "法語(盧森堡)", "xloc": [ "default-mobile.handlebars->53->185", - "default.handlebars->119->1932", - "default3.handlebars->117->1928", + "default.handlebars->119->1934", + "default3.handlebars->117->1930", "login2.handlebars->17->71" ] }, @@ -35755,8 +35794,8 @@ "zh-cht": "法語(摩納哥)", "xloc": [ "default-mobile.handlebars->53->186", - "default.handlebars->119->1933", - "default3.handlebars->117->1929", + "default.handlebars->119->1935", + "default3.handlebars->117->1931", "login2.handlebars->17->72" ] }, @@ -35787,8 +35826,8 @@ "zh-cht": "法語(標準)", "xloc": [ "default-mobile.handlebars->53->181", - "default.handlebars->119->1928", - "default3.handlebars->117->1924", + "default.handlebars->119->1930", + "default3.handlebars->117->1926", "login2.handlebars->17->67" ] }, @@ -35819,8 +35858,8 @@ "zh-cht": "法語(瑞士)", "xloc": [ "default-mobile.handlebars->53->187", - "default.handlebars->119->1934", - "default3.handlebars->117->1930", + "default.handlebars->119->1936", + "default3.handlebars->117->1932", "login2.handlebars->17->73" ] }, @@ -35851,8 +35890,8 @@ "zh-cht": "弗里斯蘭語", "xloc": [ "default-mobile.handlebars->53->188", - "default.handlebars->119->1935", - "default3.handlebars->117->1931", + "default.handlebars->119->1937", + "default3.handlebars->117->1933", "login2.handlebars->17->74" ] }, @@ -35883,8 +35922,8 @@ "zh-cht": "弗留利", "xloc": [ "default-mobile.handlebars->53->189", - "default.handlebars->119->1936", - "default3.handlebars->117->1932", + "default.handlebars->119->1938", + "default3.handlebars->117->1934", "login2.handlebars->17->75" ] }, @@ -35914,16 +35953,16 @@ "zh-chs": "完整管理员", "zh-cht": "完整管理員", "xloc": [ - "default-mobile.handlebars->53->1010", + "default-mobile.handlebars->53->1011", "default-mobile.handlebars->53->354", - "default-mobile.handlebars->53->972", - "default-mobile.handlebars->53->990", - "default.handlebars->119->2142", - "default.handlebars->119->2368", - "default.handlebars->119->2849", - "default3.handlebars->117->2157", - "default3.handlebars->117->2380", - "default3.handlebars->117->2858" + "default-mobile.handlebars->53->973", + "default-mobile.handlebars->53->991", + "default.handlebars->119->2144", + "default.handlebars->119->2370", + "default.handlebars->119->2851", + "default3.handlebars->117->2159", + "default3.handlebars->117->2382", + "default3.handlebars->117->2860" ] }, { @@ -35952,8 +35991,8 @@ "zh-chs": "完整管理员(保留所有权利)", "zh-cht": "完整管理員(保留所有權利)", "xloc": [ - "default.handlebars->119->2407", - "default3.handlebars->117->2419" + "default.handlebars->119->2409", + "default3.handlebars->117->2421" ] }, { @@ -36008,8 +36047,8 @@ "zh-chs": "完整设备权限", "zh-cht": "完整裝置權限", "xloc": [ - "default.handlebars->119->1140", - "default3.handlebars->117->1149" + "default.handlebars->119->1141", + "default3.handlebars->117->1150" ] }, { @@ -36038,8 +36077,8 @@ "zh-chs": "全部权限", "zh-cht": "全部權限", "xloc": [ - "default.handlebars->119->1162", - "default3.handlebars->117->1171" + "default.handlebars->119->1163", + "default3.handlebars->117->1172" ] }, { @@ -36134,8 +36173,8 @@ "zh-chs": "完整管理员", "zh-cht": "完整管理員", "xloc": [ - "default.handlebars->119->2954", - "default3.handlebars->117->2963" + "default.handlebars->119->2956", + "default3.handlebars->117->2965" ] }, { @@ -36164,10 +36203,10 @@ "zh-chs": "全自动的", "zh-cht": "全自動的", "xloc": [ - "default.handlebars->119->2235", - "default.handlebars->119->2296", - "default3.handlebars->117->2246", - "default3.handlebars->117->2305" + "default.handlebars->119->2237", + "default.handlebars->119->2298", + "default3.handlebars->117->2248", + "default3.handlebars->117->2307" ] }, { @@ -36177,9 +36216,9 @@ "nl": "Volledig gedecodeerd", "uk": "Повністю Розшифрований", "xloc": [ - "default-mobile.handlebars->53->907", - "default.handlebars->119->1748", - "default3.handlebars->117->1746" + "default-mobile.handlebars->53->908", + "default.handlebars->119->1750", + "default3.handlebars->117->1748" ] }, { @@ -36189,9 +36228,9 @@ "nl": "Volledig gecodeerd", "uk": "Повністю Зашифрований", "xloc": [ - "default-mobile.handlebars->53->909", - "default.handlebars->119->1750", - "default3.handlebars->117->1748" + "default-mobile.handlebars->53->910", + "default.handlebars->119->1752", + "default3.handlebars->117->1750" ] }, { @@ -36250,9 +36289,9 @@ "zh-chs": "GPU", "zh-cht": "GPU", "xloc": [ - "default-mobile.handlebars->53->861", - "default.handlebars->119->1702", - "default3.handlebars->117->1700" + "default-mobile.handlebars->53->862", + "default.handlebars->119->1704", + "default3.handlebars->117->1702" ] }, { @@ -36282,8 +36321,8 @@ "zh-cht": "蓋爾語(愛爾蘭)", "xloc": [ "default-mobile.handlebars->53->191", - "default.handlebars->119->1938", - "default3.handlebars->117->1934", + "default.handlebars->119->1940", + "default3.handlebars->117->1936", "login2.handlebars->17->77" ] }, @@ -36314,8 +36353,8 @@ "zh-cht": "蓋爾語(蘇格蘭語)", "xloc": [ "default-mobile.handlebars->53->190", - "default.handlebars->119->1937", - "default3.handlebars->117->1933", + "default.handlebars->119->1939", + "default3.handlebars->117->1935", "login2.handlebars->17->76" ] }, @@ -36345,8 +36384,8 @@ "zh-cht": "加拉契語", "xloc": [ "default-mobile.handlebars->53->192", - "default.handlebars->119->1939", - "default3.handlebars->117->1935", + "default.handlebars->119->1941", + "default3.handlebars->117->1937", "login2.handlebars->17->78" ] }, @@ -36376,8 +36415,8 @@ "zh-chs": "网关MAC", "zh-cht": "閘道MAC", "xloc": [ - "default.handlebars->119->179", - "default3.handlebars->117->192" + "default.handlebars->119->180", + "default3.handlebars->117->193" ] }, { @@ -36405,9 +36444,9 @@ "zh-chs": "网关:{0}", "zh-cht": "網關:{0}", "xloc": [ - "default-mobile.handlebars->53->823", - "default.handlebars->119->1664", - "default3.handlebars->117->1664" + "default-mobile.handlebars->53->824", + "default.handlebars->119->1666", + "default3.handlebars->117->1666" ] }, { @@ -36507,8 +36546,8 @@ "zh-chs": "一般信息", "zh-cht": "一般訊息", "xloc": [ - "default.handlebars->119->874", - "default3.handlebars->117->885" + "default.handlebars->119->875", + "default3.handlebars->117->886" ] }, { @@ -36537,8 +36576,8 @@ "zh-chs": "生成新保安编码", "zh-cht": "產生新保安編碼", "xloc": [ - "default.handlebars->119->242", - "default3.handlebars->117->253" + "default.handlebars->119->243", + "default3.handlebars->117->254" ] }, { @@ -36567,8 +36606,8 @@ "zh-chs": "生成报告", "zh-cht": "生成報告", "xloc": [ - "default.handlebars->119->3216", - "default3.handlebars->117->3219" + "default.handlebars->119->3218", + "default3.handlebars->117->3221" ] }, { @@ -36628,8 +36667,8 @@ "zh-cht": "格魯吉亞文", "xloc": [ "default-mobile.handlebars->53->193", - "default.handlebars->119->1940", - "default3.handlebars->117->1936", + "default.handlebars->119->1942", + "default3.handlebars->117->1938", "login2.handlebars->17->79" ] }, @@ -36660,8 +36699,8 @@ "zh-cht": "德語(奧地利)", "xloc": [ "default-mobile.handlebars->53->195", - "default.handlebars->119->1942", - "default3.handlebars->117->1938", + "default.handlebars->119->1944", + "default3.handlebars->117->1940", "login2.handlebars->17->81" ] }, @@ -36692,8 +36731,8 @@ "zh-cht": "德文(德國)", "xloc": [ "default-mobile.handlebars->53->196", - "default.handlebars->119->1943", - "default3.handlebars->117->1939", + "default.handlebars->119->1945", + "default3.handlebars->117->1941", "login2.handlebars->17->82" ] }, @@ -36724,8 +36763,8 @@ "zh-cht": "德文(列支敦士登)", "xloc": [ "default-mobile.handlebars->53->197", - "default.handlebars->119->1944", - "default3.handlebars->117->1940", + "default.handlebars->119->1946", + "default3.handlebars->117->1942", "login2.handlebars->17->83" ] }, @@ -36756,8 +36795,8 @@ "zh-cht": "德語(盧森堡)", "xloc": [ "default-mobile.handlebars->53->198", - "default.handlebars->119->1945", - "default3.handlebars->117->1941", + "default.handlebars->119->1947", + "default3.handlebars->117->1943", "login2.handlebars->17->84" ] }, @@ -36788,8 +36827,8 @@ "zh-cht": "德語(標準)", "xloc": [ "default-mobile.handlebars->53->194", - "default.handlebars->119->1941", - "default3.handlebars->117->1937", + "default.handlebars->119->1943", + "default3.handlebars->117->1939", "login2.handlebars->17->80" ] }, @@ -36820,8 +36859,8 @@ "zh-cht": "德文(瑞士)", "xloc": [ "default-mobile.handlebars->53->199", - "default.handlebars->119->1946", - "default3.handlebars->117->1942", + "default.handlebars->119->1948", + "default3.handlebars->117->1944", "login2.handlebars->17->85" ] }, @@ -36851,8 +36890,8 @@ "zh-chs": "获取剪贴板", "zh-cht": "獲取剪貼板", "xloc": [ - "default.handlebars->119->1464", - "default3.handlebars->117->1466" + "default.handlebars->119->1465", + "default3.handlebars->117->1467" ] }, { @@ -36881,8 +36920,8 @@ "zh-chs": "获取此设备的MQTT登录凭证。", "zh-cht": "獲取此裝置的MQTT登入憑證。", "xloc": [ - "default.handlebars->119->1072", - "default3.handlebars->117->1083" + "default.handlebars->119->1073", + "default3.handlebars->117->1084" ] }, { @@ -36942,8 +36981,8 @@ "zh-chs": "正在获取剪贴板内容,{0}个字节", "zh-cht": "正在獲取剪貼板內容,{0}個字節", "xloc": [ - "default.handlebars->119->2570", - "default3.handlebars->117->2582" + "default.handlebars->119->2572", + "default3.handlebars->117->2584" ] }, { @@ -36964,8 +37003,8 @@ "pl": "Przejdź do Folderu", "uk": "Перейти до Теки", "xloc": [ - "default.handlebars->119->1561", - "default3.handlebars->117->1561" + "default.handlebars->119->1562", + "default3.handlebars->117->1562" ] }, { @@ -37130,8 +37169,8 @@ "zh-chs": "好", "zh-cht": "好", "xloc": [ - "default.handlebars->119->2138", - "default3.handlebars->117->2153" + "default.handlebars->119->2140", + "default3.handlebars->117->2155" ] }, { @@ -37195,8 +37234,8 @@ "zh-cht": "Google Authenticator", "xloc": [ "default-mobile.handlebars->53->73", - "default.handlebars->119->225", - "default3.handlebars->117->237" + "default.handlebars->119->226", + "default3.handlebars->117->238" ] }, { @@ -37225,12 +37264,12 @@ "zh-chs": "Google云端硬盘备份", "zh-cht": "Google雲端硬盤備份", "xloc": [ - "default.handlebars->119->2159", - "default.handlebars->119->2162", - "default.handlebars->119->334", - "default3.handlebars->117->2174", - "default3.handlebars->117->2177", - "default3.handlebars->117->344" + "default.handlebars->119->2161", + "default.handlebars->119->2164", + "default.handlebars->119->335", + "default3.handlebars->117->2176", + "default3.handlebars->117->2179", + "default3.handlebars->117->345" ] }, { @@ -37259,8 +37298,8 @@ "zh-chs": "Google云端硬盘控制台", "zh-cht": "Google雲端硬盤控制台", "xloc": [ - "default.handlebars->119->2156", - "default3.handlebars->117->2171" + "default.handlebars->119->2158", + "default3.handlebars->117->2173" ] }, { @@ -37319,8 +37358,8 @@ "zh-chs": "Google云端硬盘备份当前处于活动状态。", "zh-cht": "Google雲端硬盤備份當前處於活動狀態。", "xloc": [ - "default.handlebars->119->2160", - "default3.handlebars->117->2175" + "default.handlebars->119->2162", + "default3.handlebars->117->2177" ] }, { @@ -37349,8 +37388,8 @@ "zh-chs": "谷歌商店", "zh-cht": "谷歌遊戲商店", "xloc": [ - "default.handlebars->119->655", - "default3.handlebars->117->666" + "default.handlebars->119->656", + "default3.handlebars->117->667" ] }, { @@ -37380,8 +37419,8 @@ "zh-cht": "希臘文", "xloc": [ "default-mobile.handlebars->53->200", - "default.handlebars->119->1947", - "default3.handlebars->117->1943", + "default.handlebars->119->1949", + "default3.handlebars->117->1945", "login2.handlebars->17->86" ] }, @@ -37412,11 +37451,11 @@ "zh-cht": "群", "xloc": [ "default-mobile.handlebars->53->497", - "default.handlebars->119->3232", - "default.handlebars->119->902", + "default.handlebars->119->3234", + "default.handlebars->119->903", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->1", - "default3.handlebars->117->3235", - "default3.handlebars->117->913", + "default3.handlebars->117->3237", + "default3.handlebars->117->914", "default3.handlebars->container->column_l->p1->devListToolbarSpan->7->devListToolbarSort->sortselect->1" ] }, @@ -37446,15 +37485,15 @@ "zh-chs": "集体指令", "zh-cht": "集體指令", "xloc": [ - "default.handlebars->119->2783", - "default.handlebars->119->2873", - "default.handlebars->119->760", + "default.handlebars->119->2785", + "default.handlebars->119->2875", + "default.handlebars->119->761", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar", "default.handlebars->container->column_l->p4->3->1->0->3->3", "default.handlebars->container->column_l->p50->3->1->0->3->p50userGroupOps", - "default3.handlebars->117->2795", - "default3.handlebars->117->2882", - "default3.handlebars->117->771", + "default3.handlebars->117->2797", + "default3.handlebars->117->2884", + "default3.handlebars->117->772", "default3.handlebars->container->column_l->p1->devListToolbarSpan->devListToolbar", "default3.handlebars->container->column_l->p4->3->1->0->1->1", "default3.handlebars->container->column_l->p50->3->1->0->1->p50userGroupOps" @@ -37486,8 +37525,8 @@ "zh-chs": "通过...分组", "zh-cht": "通過...分群", "xloc": [ - "default.handlebars->119->2729", - "default3.handlebars->117->2741" + "default.handlebars->119->2731", + "default3.handlebars->117->2743" ] }, { @@ -37517,8 +37556,8 @@ "zh-cht": "群標識符", "xloc": [ "agent-translations.json", - "default.handlebars->119->2890", - "default3.handlebars->117->2899" + "default.handlebars->119->2892", + "default3.handlebars->117->2901" ] }, { @@ -37547,8 +37586,8 @@ "zh-chs": "群组成员", "zh-cht": "群組成員", "xloc": [ - "default.handlebars->119->2915", - "default3.handlebars->117->2924" + "default.handlebars->119->2917", + "default3.handlebars->117->2926" ] }, { @@ -37592,8 +37631,8 @@ "pl": "Typ Grupy", "uk": "Тип Групи", "xloc": [ - "default.handlebars->119->2891", - "default3.handlebars->117->2900" + "default.handlebars->119->2893", + "default3.handlebars->117->2902" ] }, { @@ -37622,10 +37661,10 @@ "zh-chs": "通过...分组", "zh-cht": "通過...分群", "xloc": [ - "default.handlebars->119->3200", - "default.handlebars->119->3203", - "default3.handlebars->117->3203", - "default3.handlebars->117->3206" + "default.handlebars->119->3202", + "default.handlebars->119->3205", + "default3.handlebars->117->3205", + "default3.handlebars->117->3208" ] }, { @@ -37654,8 +37693,8 @@ "zh-chs": "团队名字", "zh-cht": "團隊名字", "xloc": [ - "default.handlebars->119->2713", - "default3.handlebars->117->2725" + "default.handlebars->119->2715", + "default3.handlebars->117->2727" ] }, { @@ -37684,8 +37723,8 @@ "zh-chs": "用户{0}的群组权限。", "zh-cht": "用戶{0}的群組權限。", "xloc": [ - "default.handlebars->119->2367", - "default3.handlebars->117->2379" + "default.handlebars->119->2369", + "default3.handlebars->117->2381" ] }, { @@ -37714,8 +37753,8 @@ "zh-chs": "{0}的群组权限。", "zh-cht": "{0}的群組權限。", "xloc": [ - "default.handlebars->119->2366", - "default3.handlebars->117->2378" + "default.handlebars->119->2368", + "default3.handlebars->117->2380" ] }, { @@ -37833,8 +37872,8 @@ "zh-chs": "来宾", "zh-cht": "來賓", "xloc": [ - "default.handlebars->119->3222", - "default3.handlebars->117->3225" + "default.handlebars->119->3224", + "default3.handlebars->117->3227" ] }, { @@ -37863,10 +37902,10 @@ "zh-chs": "访客姓名", "zh-cht": "來賓姓名", "xloc": [ - "default.handlebars->119->1218", - "default.handlebars->119->296", - "default3.handlebars->117->1227", - "default3.handlebars->117->306" + "default.handlebars->119->1219", + "default.handlebars->119->297", + "default3.handlebars->117->1228", + "default3.handlebars->117->307" ] }, { @@ -37895,10 +37934,10 @@ "zh-chs": "嘉宾分享", "zh-cht": "嘉賓分享", "xloc": [ - "default.handlebars->119->1147", - "default.handlebars->119->1172", - "default3.handlebars->117->1156", - "default3.handlebars->117->1181" + "default.handlebars->119->1148", + "default.handlebars->119->1173", + "default3.handlebars->117->1157", + "default3.handlebars->117->1182" ] }, { @@ -37927,8 +37966,8 @@ "zh-chs": "嘉宾分享", "zh-cht": "嘉賓分享", "xloc": [ - "default.handlebars->119->2375", - "default3.handlebars->117->2387" + "default.handlebars->119->2377", + "default3.handlebars->117->2389" ] }, { @@ -37958,8 +37997,8 @@ "zh-cht": "古久拉提", "xloc": [ "default-mobile.handlebars->53->201", - "default.handlebars->119->1948", - "default3.handlebars->117->1944", + "default.handlebars->119->1950", + "default3.handlebars->117->1946", "login2.handlebars->17->87" ] }, @@ -37990,14 +38029,14 @@ "zh-cht": "HTTP", "xloc": [ "default-mobile.handlebars->53->566", - "default.handlebars->119->1057", - "default.handlebars->119->1225", - "default.handlebars->119->3390", - "default.handlebars->119->450", - "default3.handlebars->117->1068", - "default3.handlebars->117->1234", - "default3.handlebars->117->3395", - "default3.handlebars->117->461" + "default.handlebars->119->1058", + "default.handlebars->119->1226", + "default.handlebars->119->3392", + "default.handlebars->119->451", + "default3.handlebars->117->1069", + "default3.handlebars->117->1235", + "default3.handlebars->117->3397", + "default3.handlebars->117->462" ] }, { @@ -38025,8 +38064,8 @@ "zh-chs": "HTTP 连接", "zh-cht": "HTTP 連接", "xloc": [ - "default.handlebars->119->863", - "default3.handlebars->117->874" + "default.handlebars->119->864", + "default3.handlebars->117->875" ] }, { @@ -38054,8 +38093,8 @@ "zh-chs": "HTTP远程连接端口:", "zh-cht": "HTTP遠程連接端口:", "xloc": [ - "default.handlebars->119->862", - "default3.handlebars->117->873" + "default.handlebars->119->863", + "default3.handlebars->117->874" ] }, { @@ -38082,10 +38121,10 @@ "tr": "HTTP/", "uk": "HTTP/", "xloc": [ - "default.handlebars->119->1111", - "default.handlebars->119->2266", - "default3.handlebars->117->1122", - "default3.handlebars->117->2277" + "default.handlebars->119->1112", + "default.handlebars->119->2268", + "default3.handlebars->117->1123", + "default3.handlebars->117->2279" ] }, { @@ -38099,8 +38138,8 @@ "pl": "HTTP/{0} link", "uk": "HTTP/{0} лінк", "xloc": [ - "default.handlebars->119->323", - "default3.handlebars->117->333" + "default.handlebars->119->324", + "default3.handlebars->117->334" ] }, { @@ -38130,12 +38169,12 @@ "zh-cht": "HTTPS", "xloc": [ "default-mobile.handlebars->53->567", - "default.handlebars->119->1058", - "default.handlebars->119->1226", - "default.handlebars->119->451", - "default3.handlebars->117->1069", - "default3.handlebars->117->1235", - "default3.handlebars->117->462" + "default.handlebars->119->1059", + "default.handlebars->119->1227", + "default.handlebars->119->452", + "default3.handlebars->117->1070", + "default3.handlebars->117->1236", + "default3.handlebars->117->463" ] }, { @@ -38163,8 +38202,8 @@ "zh-chs": "HTTPS 连接", "zh-cht": "HTTPS 連接", "xloc": [ - "default.handlebars->119->865", - "default3.handlebars->117->876" + "default.handlebars->119->866", + "default3.handlebars->117->877" ] }, { @@ -38192,8 +38231,8 @@ "zh-chs": "HTTPS远程连接端口:", "zh-cht": "HTTPS遠程連接端口:", "xloc": [ - "default.handlebars->119->864", - "default3.handlebars->117->875" + "default.handlebars->119->865", + "default3.handlebars->117->876" ] }, { @@ -38220,10 +38259,10 @@ "tr": "HTTPS/", "uk": "HTTPS/", "xloc": [ - "default.handlebars->119->1112", - "default.handlebars->119->2267", - "default3.handlebars->117->1123", - "default3.handlebars->117->2278" + "default.handlebars->119->1113", + "default.handlebars->119->2269", + "default3.handlebars->117->1124", + "default3.handlebars->117->2280" ] }, { @@ -38250,8 +38289,8 @@ "tr": "HTTPS/{0}", "uk": "HTTPS/{0}", "xloc": [ - "default.handlebars->119->324", - "default3.handlebars->117->334" + "default.handlebars->119->325", + "default3.handlebars->117->335" ] }, { @@ -38316,8 +38355,8 @@ "zh-cht": "海地文", "xloc": [ "default-mobile.handlebars->53->202", - "default.handlebars->119->1949", - "default3.handlebars->117->1945", + "default.handlebars->119->1951", + "default3.handlebars->117->1947", "login2.handlebars->17->88" ] }, @@ -38332,10 +38371,10 @@ "pl": "Obsługa", "uk": "Обробка", "xloc": [ - "default.handlebars->119->1816", - "default.handlebars->119->3059", - "default3.handlebars->117->1813", - "default3.handlebars->117->3068" + "default.handlebars->119->1818", + "default.handlebars->119->3061", + "default3.handlebars->117->1815", + "default3.handlebars->117->3070" ] }, { @@ -38423,9 +38462,9 @@ "zh-chs": "强行断开代理", "zh-cht": "強行斷開代理", "xloc": [ - "default-mobile.handlebars->53->944", - "default.handlebars->119->1786", - "default3.handlebars->117->1784" + "default-mobile.handlebars->53->945", + "default.handlebars->119->1788", + "default3.handlebars->117->1786" ] }, { @@ -38454,8 +38493,8 @@ "zh-chs": "硬件一次性密码", "zh-cht": "硬件一次性密碼", "xloc": [ - "default.handlebars->119->3260", - "default3.handlebars->117->3263" + "default.handlebars->119->3262", + "default3.handlebars->117->3265" ] }, { @@ -38484,8 +38523,8 @@ "zh-chs": "硬件密钥", "zh-cht": "硬件密鑰", "xloc": [ - "default.handlebars->119->246", - "default3.handlebars->117->257" + "default.handlebars->119->247", + "default3.handlebars->117->258" ] }, { @@ -38514,8 +38553,8 @@ "zh-chs": "堆总数", "zh-cht": "堆總數", "xloc": [ - "default.handlebars->119->3409", - "default3.handlebars->117->3414" + "default.handlebars->119->3411", + "default3.handlebars->117->3416" ] }, { @@ -38544,8 +38583,8 @@ "zh-chs": "堆使用", "zh-cht": "堆使用", "xloc": [ - "default.handlebars->119->3408", - "default3.handlebars->117->3413" + "default.handlebars->119->3410", + "default3.handlebars->117->3415" ] }, { @@ -38575,8 +38614,8 @@ "zh-cht": "希伯來文", "xloc": [ "default-mobile.handlebars->53->203", - "default.handlebars->119->1950", - "default3.handlebars->117->1946", + "default.handlebars->119->1952", + "default3.handlebars->117->1948", "login2.handlebars->17->89" ] }, @@ -38695,8 +38734,8 @@ "zh-chs": "已请求帮助,用户:{0},详细信息:{1}", "zh-cht": "已請求幫助,用戶:{0},詳細信息:{1}", "xloc": [ - "default.handlebars->119->2647", - "default3.handlebars->117->2659" + "default.handlebars->119->2649", + "default3.handlebars->117->2661" ] }, { @@ -38726,8 +38765,8 @@ "zh-cht": "幫助請求", "xloc": [ "default-mobile.handlebars->53->426", - "default.handlebars->119->456", - "default3.handlebars->117->467" + "default.handlebars->119->457", + "default3.handlebars->117->468" ] }, { @@ -38756,8 +38795,8 @@ "zh-chs": "从{0}请求的帮助:{1}", "zh-cht": "從{0}請求的幫助:{1}", "xloc": [ - "default.handlebars->119->270", - "default3.handlebars->117->280" + "default.handlebars->119->271", + "default3.handlebars->117->281" ] }, { @@ -38772,14 +38811,14 @@ "pl": "Prośby pomocy", "uk": "Запит допомоги", "xloc": [ - "default.handlebars->119->1134", - "default.handlebars->119->1138", - "default.handlebars->119->2468", - "default.handlebars->119->2472", - "default3.handlebars->117->1143", - "default3.handlebars->117->1147", - "default3.handlebars->117->2480", - "default3.handlebars->117->2484" + "default.handlebars->119->1135", + "default.handlebars->119->1139", + "default.handlebars->119->2470", + "default.handlebars->119->2474", + "default3.handlebars->117->1144", + "default3.handlebars->117->1148", + "default3.handlebars->117->2482", + "default3.handlebars->117->2486" ] }, { @@ -38809,8 +38848,8 @@ "zh-cht": "幫助翻譯MeshCentral", "xloc": [ "default-mobile.handlebars->53->318", - "default.handlebars->119->2065", - "default3.handlebars->117->2061" + "default.handlebars->119->2067", + "default3.handlebars->117->2063" ] }, { @@ -38930,9 +38969,9 @@ "default-mobile.handlebars->53->460", "default-mobile.handlebars->53->468", "default.handlebars->119->5", - "default.handlebars->119->708", + "default.handlebars->119->709", "default3.handlebars->117->5", - "default3.handlebars->117->719" + "default3.handlebars->117->720" ] }, { @@ -38962,8 +39001,8 @@ "zh-cht": "印地文", "xloc": [ "default-mobile.handlebars->53->204", - "default.handlebars->119->1951", - "default3.handlebars->117->1947", + "default.handlebars->119->1953", + "default3.handlebars->117->1949", "login2.handlebars->17->90" ] }, @@ -39020,8 +39059,8 @@ "zh-cht": "保存1個項目進行複製", "xloc": [ "default-mobile.handlebars->53->743", - "default.handlebars->119->1589", - "default3.handlebars->117->1589", + "default.handlebars->119->1590", + "default3.handlebars->117->1590", "sharing-mobile.handlebars->53->99", "sharing.handlebars->47->76" ] @@ -39053,8 +39092,8 @@ "zh-cht": "保存1個項目進行移動", "xloc": [ "default-mobile.handlebars->53->747", - "default.handlebars->119->1593", - "default3.handlebars->117->1593", + "default.handlebars->119->1594", + "default3.handlebars->117->1594", "sharing-mobile.handlebars->53->103", "sharing.handlebars->47->80" ] @@ -39086,8 +39125,8 @@ "zh-cht": "保留{0}個項目進行複製", "xloc": [ "default-mobile.handlebars->53->741", - "default.handlebars->119->1587", - "default3.handlebars->117->1587", + "default.handlebars->119->1588", + "default3.handlebars->117->1588", "sharing-mobile.handlebars->53->97", "sharing.handlebars->47->74" ] @@ -39119,8 +39158,8 @@ "zh-cht": "保存{0}個項目以進行移動", "xloc": [ "default-mobile.handlebars->53->745", - "default.handlebars->119->1591", - "default3.handlebars->117->1591", + "default.handlebars->119->1592", + "default3.handlebars->117->1592", "sharing-mobile.handlebars->53->101", "sharing.handlebars->47->78" ] @@ -39152,8 +39191,8 @@ "zh-cht": "保存{0}項目{1}給{2}", "xloc": [ "default-mobile.handlebars->53->386", - "default.handlebars->119->2543", - "default3.handlebars->117->2555" + "default.handlebars->119->2545", + "default3.handlebars->117->2557" ] }, { @@ -39183,8 +39222,8 @@ "zh-cht": "家", "xloc": [ "default-mobile.handlebars->53->667", - "default.handlebars->119->1436", - "default3.handlebars->117->1438", + "default.handlebars->119->1437", + "default3.handlebars->117->1439", "sharing-mobile.handlebars->53->24" ] }, @@ -39218,22 +39257,22 @@ "default-mobile.handlebars->53->500", "default-mobile.handlebars->53->502", "default-mobile.handlebars->53->646", - "default-mobile.handlebars->53->811", - "default-mobile.handlebars->53->965", - "default.handlebars->119->1383", - "default.handlebars->119->1642", - "default.handlebars->119->2131", - "default.handlebars->119->2194", - "default.handlebars->119->508", - "default.handlebars->119->517", - "default.handlebars->119->907", - "default3.handlebars->117->1383", - "default3.handlebars->117->1642", - "default3.handlebars->117->2146", - "default3.handlebars->117->2205", - "default3.handlebars->117->519", - "default3.handlebars->117->528", - "default3.handlebars->117->918" + "default-mobile.handlebars->53->812", + "default-mobile.handlebars->53->966", + "default.handlebars->119->1384", + "default.handlebars->119->1644", + "default.handlebars->119->2133", + "default.handlebars->119->2196", + "default.handlebars->119->509", + "default.handlebars->119->518", + "default.handlebars->119->908", + "default3.handlebars->117->1384", + "default3.handlebars->117->1644", + "default3.handlebars->117->2148", + "default3.handlebars->117->2207", + "default3.handlebars->117->520", + "default3.handlebars->117->529", + "default3.handlebars->117->919" ] }, { @@ -39262,8 +39301,8 @@ "zh-chs": "主机名同步", "zh-cht": "主機名同步", "xloc": [ - "default.handlebars->119->2201", - "default3.handlebars->117->2212" + "default.handlebars->119->2203", + "default3.handlebars->117->2214" ] }, { @@ -39305,8 +39344,8 @@ "zh-cht": "匈牙利文", "xloc": [ "default-mobile.handlebars->53->205", - "default.handlebars->119->1952", - "default3.handlebars->117->1948", + "default.handlebars->119->1954", + "default3.handlebars->117->1950", "login2.handlebars->17->91" ] }, @@ -39336,8 +39375,8 @@ "zh-chs": "服务器所需的混合", "zh-cht": "服務器所需的混合", "xloc": [ - "default.handlebars->119->1401", - "default3.handlebars->117->1402" + "default.handlebars->119->1402", + "default3.handlebars->117->1403" ] }, { @@ -39366,10 +39405,10 @@ "zh-chs": "IP地址", "zh-cht": "IP地址", "xloc": [ - "default.handlebars->119->3227", - "default.handlebars->119->3266", - "default3.handlebars->117->3230", - "default3.handlebars->117->3269" + "default.handlebars->119->3229", + "default.handlebars->119->3268", + "default3.handlebars->117->3232", + "default3.handlebars->117->3271" ] }, { @@ -39450,10 +39489,10 @@ "zh-chs": "IP范围", "zh-cht": "IP範圍", "xloc": [ - "default.handlebars->119->544", - "default.handlebars->119->546", - "default3.handlebars->117->555", - "default3.handlebars->117->557" + "default.handlebars->119->545", + "default.handlebars->119->547", + "default3.handlebars->117->556", + "default3.handlebars->117->558" ] }, { @@ -39499,8 +39538,8 @@ "pl": "Zapisy o informacji lokalizacji IP", "uk": "Інформаційні записи про локацію IP", "xloc": [ - "default.handlebars->119->3272", - "default3.handlebars->117->3275" + "default.handlebars->119->3274", + "default3.handlebars->117->3277" ] }, { @@ -39532,10 +39571,10 @@ "default-mobile.handlebars->53->481", "default-mobile.handlebars->53->538", "default-mobile.handlebars->53->572", - "default.handlebars->119->419", - "default.handlebars->119->726", - "default3.handlebars->117->430", - "default3.handlebars->117->737" + "default.handlebars->119->420", + "default.handlebars->119->727", + "default3.handlebars->117->431", + "default3.handlebars->117->738" ] }, { @@ -39564,8 +39603,8 @@ "zh-chs": "IP-KVM / 电源设备", "zh-cht": "IP-KVM / 電源設備", "xloc": [ - "default.handlebars->119->2121", - "default3.handlebars->117->2136" + "default.handlebars->119->2123", + "default3.handlebars->117->2138" ] }, { @@ -39594,8 +39633,8 @@ "zh-chs": "IP-KVM / 通过代理中继的电源设备", "zh-cht": "IP-KVM / 通過代理中繼的電源設備", "xloc": [ - "default.handlebars->119->2122", - "default3.handlebars->117->2137" + "default.handlebars->119->2124", + "default3.handlebars->117->2139" ] }, { @@ -39624,9 +39663,9 @@ "zh-chs": "IP-KVM 设备", "zh-cht": "IP-KVM 設備", "xloc": [ - "default-mobile.handlebars->53->957", - "default.handlebars->119->2186", - "default3.handlebars->117->2197" + "default-mobile.handlebars->53->958", + "default.handlebars->119->2188", + "default3.handlebars->117->2199" ] }, { @@ -39655,9 +39694,9 @@ "zh-chs": "通过代理中继的 IP-KVM 设备", "zh-cht": "通過代理中繼的 IP-KVM 設備", "xloc": [ - "default-mobile.handlebars->53->958", - "default.handlebars->119->2187", - "default3.handlebars->117->2198" + "default-mobile.handlebars->53->959", + "default.handlebars->119->2189", + "default3.handlebars->117->2200" ] }, { @@ -39686,10 +39725,10 @@ "zh-chs": "已连接 IP-KVM 端口", "zh-cht": "已連接 IP-KVM 端口", "xloc": [ - "default.handlebars->119->1078", "default.handlebars->119->1079", - "default3.handlebars->117->1089", - "default3.handlebars->117->1090" + "default.handlebars->119->1080", + "default3.handlebars->117->1090", + "default3.handlebars->117->1091" ] }, { @@ -39718,8 +39757,8 @@ "zh-chs": "IP-KVM 端口已连接并可使用。", "zh-cht": "IP-KVM 端口已連接並可使用。", "xloc": [ - "default.handlebars->119->418", - "default3.handlebars->117->429" + "default.handlebars->119->419", + "default3.handlebars->117->430" ] }, { @@ -39748,8 +39787,8 @@ "zh-chs": "IP-KVM 端口已启动并可以使用。", "zh-cht": "IP-KVM 端口已啟動並可以使用。", "xloc": [ - "default.handlebars->119->725", - "default3.handlebars->117->736" + "default.handlebars->119->726", + "default3.handlebars->117->737" ] }, { @@ -39778,11 +39817,11 @@ "zh-chs": "IP:{0}", "zh-cht": "IP:{0}", "xloc": [ - "default-mobile.handlebars->53->821", - "default.handlebars->119->1653", - "default.handlebars->119->1662", - "default3.handlebars->117->1653", - "default3.handlebars->117->1662" + "default-mobile.handlebars->53->822", + "default.handlebars->119->1655", + "default.handlebars->119->1664", + "default3.handlebars->117->1655", + "default3.handlebars->117->1664" ] }, { @@ -39811,8 +39850,8 @@ "zh-chs": "IP:{0},掩码:{1},网关:{2}", "zh-cht": "IP:{0},遮罩:{1},閘道:{2}", "xloc": [ - "default.handlebars->119->1651", - "default3.handlebars->117->1651" + "default.handlebars->119->1653", + "default3.handlebars->117->1653" ] }, { @@ -39841,13 +39880,13 @@ "zh-chs": "IPv4层", "zh-cht": "IPv4層", "xloc": [ - "default-mobile.handlebars->53->824", - "default.handlebars->119->1650", + "default-mobile.handlebars->53->825", "default.handlebars->119->1652", - "default.handlebars->119->1665", - "default3.handlebars->117->1650", + "default.handlebars->119->1654", + "default.handlebars->119->1667", "default3.handlebars->117->1652", - "default3.handlebars->117->1665" + "default3.handlebars->117->1654", + "default3.handlebars->117->1667" ] }, { @@ -39876,10 +39915,10 @@ "zh-chs": "IPv4地址", "zh-cht": "IPv4地址", "xloc": [ - "default.handlebars->119->173", - "default.handlebars->119->191", - "default3.handlebars->117->186", - "default3.handlebars->117->204" + "default.handlebars->119->174", + "default.handlebars->119->192", + "default3.handlebars->117->187", + "default3.handlebars->117->205" ] }, { @@ -39908,10 +39947,10 @@ "zh-chs": "IPv4网关", "zh-cht": "IPv4閘道", "xloc": [ - "default.handlebars->119->177", - "default.handlebars->119->195", - "default3.handlebars->117->190", - "default3.handlebars->117->208" + "default.handlebars->119->178", + "default.handlebars->119->196", + "default3.handlebars->117->191", + "default3.handlebars->117->209" ] }, { @@ -39940,10 +39979,10 @@ "zh-chs": "IPv4掩码", "zh-cht": "IPv4遮罩", "xloc": [ - "default.handlebars->119->175", - "default.handlebars->119->193", - "default3.handlebars->117->188", - "default3.handlebars->117->206" + "default.handlebars->119->176", + "default.handlebars->119->194", + "default3.handlebars->117->189", + "default3.handlebars->117->207" ] }, { @@ -39972,9 +40011,9 @@ "zh-chs": "IPv6层", "zh-cht": "IPv6層", "xloc": [ - "default-mobile.handlebars->53->826", - "default.handlebars->119->1667", - "default3.handlebars->117->1667" + "default-mobile.handlebars->53->827", + "default.handlebars->119->1669", + "default3.handlebars->117->1669" ] }, { @@ -40003,8 +40042,8 @@ "zh-chs": "IPv6地址", "zh-cht": "IPv6地址", "xloc": [ - "default.handlebars->119->185", - "default3.handlebars->117->198" + "default.handlebars->119->186", + "default3.handlebars->117->199" ] }, { @@ -40033,8 +40072,8 @@ "zh-chs": "IPv6网关", "zh-cht": "IPv6閘道", "xloc": [ - "default.handlebars->119->189", - "default3.handlebars->117->202" + "default.handlebars->119->190", + "default3.handlebars->117->203" ] }, { @@ -40063,8 +40102,8 @@ "zh-chs": "IPv6掩码", "zh-cht": "IPv6遮罩", "xloc": [ - "default.handlebars->119->187", - "default3.handlebars->117->200" + "default.handlebars->119->188", + "default3.handlebars->117->201" ] }, { @@ -40094,8 +40133,8 @@ "zh-cht": "冰島文", "xloc": [ "default-mobile.handlebars->53->206", - "default.handlebars->119->1953", - "default3.handlebars->117->1949", + "default.handlebars->119->1955", + "default3.handlebars->117->1951", "login2.handlebars->17->92" ] }, @@ -40126,8 +40165,8 @@ "zh-cht": "圖符選擇", "xloc": [ "default-mobile.handlebars->53->640", - "default.handlebars->119->1377", - "default3.handlebars->117->1379" + "default.handlebars->119->1378", + "default3.handlebars->117->1380" ] }, { @@ -40156,17 +40195,17 @@ "zh-chs": "识别码", "zh-cht": "識別符", "xloc": [ - "default-mobile.handlebars->53->810", - "default-mobile.handlebars->53->833", - "default-mobile.handlebars->53->859", - "default-mobile.handlebars->53->927", - "default.handlebars->119->1641", - "default.handlebars->119->1674", - "default.handlebars->119->1700", - "default.handlebars->119->1768", - "default3.handlebars->117->1641", - "default3.handlebars->117->1698", - "default3.handlebars->117->1766" + "default-mobile.handlebars->53->811", + "default-mobile.handlebars->53->834", + "default-mobile.handlebars->53->860", + "default-mobile.handlebars->53->928", + "default.handlebars->119->1643", + "default.handlebars->119->1676", + "default.handlebars->119->1702", + "default.handlebars->119->1770", + "default3.handlebars->117->1643", + "default3.handlebars->117->1700", + "default3.handlebars->117->1768" ] }, { @@ -40195,8 +40234,8 @@ "zh-chs": "如果在CCM中,请重新激活英特尔®AMT", "zh-cht": "如果在CCM中,請重新激活英特爾®AMT", "xloc": [ - "default.handlebars->119->2310", - "default3.handlebars->117->2319" + "default.handlebars->119->2312", + "default3.handlebars->117->2321" ] }, { @@ -40389,8 +40428,8 @@ "pl": "Importuj", "uk": "Імпорт", "xloc": [ - "default.handlebars->119->2242", - "default3.handlebars->117->2253" + "default.handlebars->119->2244", + "default3.handlebars->117->2255" ] }, { @@ -40431,12 +40470,12 @@ "zh-chs": "导入英特尔® AMT 设备", "zh-cht": "導入英特爾® AMT 設備", "xloc": [ - "default.handlebars->119->2284", - "default.handlebars->119->2285", - "default.handlebars->119->2289", - "default3.handlebars->117->2295", - "default3.handlebars->117->2296", - "default3.handlebars->117->2299" + "default.handlebars->119->2286", + "default.handlebars->119->2287", + "default.handlebars->119->2291", + "default3.handlebars->117->2297", + "default3.handlebars->117->2298", + "default3.handlebars->117->2301" ] }, { @@ -40451,8 +40490,8 @@ "pl": "Importuj urządzenia Intel® AMT.", "uk": "Імпортувати пристрої Intel® AMT.", "xloc": [ - "default.handlebars->119->2241", - "default3.handlebars->117->2252" + "default.handlebars->119->2243", + "default3.handlebars->117->2254" ] }, { @@ -40481,8 +40520,8 @@ "zh-chs": "以 MeshCommander JSON 格式导入本地英特尔® AMT 设备列表。", "zh-cht": "以 MeshCommander JSON 格式導入本地英特爾® AMT 設備列表。", "xloc": [ - "default.handlebars->119->2283", - "default3.handlebars->117->2294" + "default.handlebars->119->2285", + "default3.handlebars->117->2296" ] }, { @@ -40511,8 +40550,8 @@ "zh-chs": "导入设备列表", "zh-cht": "導入設備列表", "xloc": [ - "default.handlebars->119->2279", - "default3.handlebars->117->2290" + "default.handlebars->119->2281", + "default3.handlebars->117->2292" ] }, { @@ -40522,8 +40561,8 @@ "pl": "W", "uk": "Вх", "xloc": [ - "default.handlebars->119->443", - "default3.handlebars->117->454" + "default.handlebars->119->444", + "default3.handlebars->117->455" ] }, { @@ -40552,7 +40591,7 @@ "zh-chs": "为了使用推送通知身份验证,必须在您的帐户中设置具有完全权限的移动设备。", "zh-cht": "為了使用推送通知身份驗證,必須在您的帳戶中設置具有完全權限的移動設備。", "xloc": [ - "default.handlebars->119->1848" + "default.handlebars->119->1850" ] }, { @@ -40581,8 +40620,8 @@ "zh-chs": "停用天数直到移除", "zh-cht": "停用天數直到移除", "xloc": [ - "default.handlebars->119->2352", - "default3.handlebars->117->2364" + "default.handlebars->119->2354", + "default3.handlebars->117->2366" ] }, { @@ -40641,8 +40680,8 @@ "zh-chs": "包括设备详细信息", "zh-cht": "包括設備詳細信息", "xloc": [ - "default.handlebars->119->809", - "default3.handlebars->117->820" + "default.handlebars->119->810", + "default3.handlebars->117->821" ] }, { @@ -40723,8 +40762,8 @@ "zh-chs": "不一致的标志", "zh-cht": "不一致的標誌", "xloc": [ - "default.handlebars->119->1400", - "default3.handlebars->117->1401" + "default.handlebars->119->1401", + "default3.handlebars->117->1402" ] }, { @@ -40753,10 +40792,10 @@ "zh-chs": "第二个因素不正确", "zh-cht": "第二個因素不正確", "xloc": [ - "default.handlebars->119->3253", - "default.handlebars->119->3302", - "default3.handlebars->117->3256", - "default3.handlebars->117->3305" + "default.handlebars->119->3255", + "default.handlebars->119->3304", + "default3.handlebars->117->3258", + "default3.handlebars->117->3307" ] }, { @@ -40815,12 +40854,12 @@ "zh-cht": "個別裝置", "xloc": [ "default-mobile.handlebars->53->413", - "default.handlebars->119->371", "default.handlebars->119->372", "default.handlebars->119->373", - "default3.handlebars->117->382", + "default.handlebars->119->374", "default3.handlebars->117->383", - "default3.handlebars->117->384" + "default3.handlebars->117->384", + "default3.handlebars->117->385" ] }, { @@ -40850,8 +40889,8 @@ "zh-cht": "印度尼西亞文", "xloc": [ "default-mobile.handlebars->53->207", - "default.handlebars->119->1954", - "default3.handlebars->117->1950", + "default.handlebars->119->1956", + "default3.handlebars->117->1952", "login2.handlebars->17->93" ] }, @@ -40926,10 +40965,10 @@ "pl": "Informacje na Pushover.net", "uk": "Інформація про Pushover.net", "xloc": [ - "default.handlebars->119->1822", - "default.handlebars->119->3065", - "default3.handlebars->117->1819", - "default3.handlebars->117->3074" + "default.handlebars->119->1824", + "default.handlebars->119->3067", + "default3.handlebars->117->1821", + "default3.handlebars->117->3076" ] }, { @@ -40992,8 +41031,8 @@ "zh-cht": "插入", "xloc": [ "default-mobile.handlebars->53->665", - "default.handlebars->119->1434", - "default3.handlebars->117->1436", + "default.handlebars->119->1435", + "default3.handlebars->117->1437", "sharing-mobile.handlebars->53->22" ] }, @@ -41025,8 +41064,8 @@ "xloc": [ "agent-translations.json", "default-mobile.handlebars->53->72", - "default.handlebars->119->224", - "default3.handlebars->117->236" + "default.handlebars->119->225", + "default3.handlebars->117->237" ] }, { @@ -41107,7 +41146,7 @@ "zh-chs": "在此设备上安装", "zh-cht": "在此設備上安裝", "xloc": [ - "default-mobile.handlebars->53->969" + "default-mobile.handlebars->53->970" ] }, { @@ -41136,7 +41175,7 @@ "zh-chs": "在您的 Android 设备上安装 MeshCentral Agent。安装后,单击配对链接将您的设备连接到此服务器。", "zh-cht": "在您的 Android 設備上安裝 MeshCentral Agent。安裝後,單擊配對鏈接將您的設備連接到此服務器。", "xloc": [ - "default-mobile.handlebars->53->985" + "default-mobile.handlebars->53->986" ] }, { @@ -41218,18 +41257,18 @@ "zh-cht": "安裝方式", "xloc": [ "agentinvite.handlebars->13->7", - "default.handlebars->119->2449", - "default.handlebars->119->2456", - "default.handlebars->119->574", - "default.handlebars->119->595", - "default.handlebars->119->612", - "default.handlebars->119->616", - "default3.handlebars->117->2461", - "default3.handlebars->117->2468", - "default3.handlebars->117->585", - "default3.handlebars->117->606", - "default3.handlebars->117->623", - "default3.handlebars->117->627" + "default.handlebars->119->2451", + "default.handlebars->119->2458", + "default.handlebars->119->575", + "default.handlebars->119->596", + "default.handlebars->119->613", + "default.handlebars->119->617", + "default3.handlebars->117->2463", + "default3.handlebars->117->2470", + "default3.handlebars->117->586", + "default3.handlebars->117->607", + "default3.handlebars->117->624", + "default3.handlebars->117->628" ] }, { @@ -41239,8 +41278,8 @@ "pl": "Zainstalowano Przez", "uk": "Інсталював", "xloc": [ - "default.handlebars->119->1487", - "default3.handlebars->117->1488" + "default.handlebars->119->1488", + "default3.handlebars->117->1489" ] }, { @@ -41250,8 +41289,8 @@ "pl": "Data Instalacji", "uk": "Дата Інсталяції", "xloc": [ - "default.handlebars->119->1488", - "default3.handlebars->117->1489" + "default.handlebars->119->1489", + "default3.handlebars->117->1490" ] }, { @@ -41280,9 +41319,9 @@ "zh-chs": "英特尔(F10 = ESC + [OM)", "zh-cht": "Intel(F10 = ESC + [OM)", "xloc": [ - "default.handlebars->119->1537", + "default.handlebars->119->1538", "default.handlebars->container->column_l->p12->termTable->1->1->4->1->1->terminalSettingsButtons", - "default3.handlebars->117->1537", + "default3.handlebars->117->1538", "default3.handlebars->container->column_l->p12->termTable->1->1->4->1->3->terminalSettingsButtons", "sharing.handlebars->47->36", "sharing.handlebars->p12->9->1->terminalSettingsButtons" @@ -41314,15 +41353,15 @@ "zh-chs": "英特尔AMT", "zh-cht": "英特爾AMT", "xloc": [ - "default.handlebars->119->3404", - "default3.handlebars->117->3409" + "default.handlebars->119->3406", + "default3.handlebars->117->3411" ] }, { "en": "Intel AMT CIRA", "xloc": [ - "default.handlebars->119->3405", - "default3.handlebars->117->3410" + "default.handlebars->119->3407", + "default3.handlebars->117->3412" ] }, { @@ -41351,8 +41390,8 @@ "zh-chs": "英特尔 AMT CIRA 已连接", "zh-cht": "英特爾 AMT CIRA 已連接", "xloc": [ - "default.handlebars->119->273", - "default3.handlebars->117->283" + "default.handlebars->119->274", + "default3.handlebars->117->284" ] }, { @@ -41381,8 +41420,8 @@ "zh-chs": "英特尔 AMT CIRA 断开连接", "zh-cht": "英特爾 AMT CIRA 斷開連接", "xloc": [ - "default.handlebars->119->277", - "default3.handlebars->117->287" + "default.handlebars->119->278", + "default3.handlebars->117->288" ] }, { @@ -41411,8 +41450,8 @@ "zh-chs": "英特尔 AMT 已连接", "zh-cht": "英特爾 AMT 已連接", "xloc": [ - "default.handlebars->119->274", - "default3.handlebars->117->284" + "default.handlebars->119->275", + "default3.handlebars->117->285" ] }, { @@ -41467,8 +41506,8 @@ "zh-chs": "英特尔 AMT 断开连接", "zh-cht": "英特爾 AMT 斷開連接", "xloc": [ - "default.handlebars->119->278", - "default3.handlebars->117->288" + "default.handlebars->119->279", + "default3.handlebars->117->289" ] }, { @@ -41497,8 +41536,8 @@ "zh-chs": "英特尔 AMT 经理", "zh-cht": "英特爾 AMT 經理", "xloc": [ - "default.handlebars->119->3435", - "default3.handlebars->117->3440" + "default.handlebars->119->3437", + "default3.handlebars->117->3442" ] }, { @@ -41553,8 +41592,8 @@ "zh-chs": "英特尔ASCII", "zh-cht": "Intel ASCII", "xloc": [ - "default.handlebars->119->1536", - "default3.handlebars->117->1536", + "default.handlebars->119->1537", + "default3.handlebars->117->1537", "sharing.handlebars->47->35" ] }, @@ -41587,26 +41626,26 @@ "default-mobile.handlebars->53->484", "default-mobile.handlebars->53->534", "default-mobile.handlebars->53->541", - "default.handlebars->119->1004", - "default.handlebars->119->1092", - "default.handlebars->119->2222", - "default.handlebars->119->2236", - "default.handlebars->119->2476", - "default.handlebars->119->2489", - "default.handlebars->119->3434", - "default.handlebars->119->877", - "default.handlebars->119->944", - "default.handlebars->119->994", - "default3.handlebars->117->1005", - "default3.handlebars->117->1015", - "default3.handlebars->117->1103", - "default3.handlebars->117->2233", - "default3.handlebars->117->2247", - "default3.handlebars->117->2488", - "default3.handlebars->117->2501", - "default3.handlebars->117->3439", - "default3.handlebars->117->888", - "default3.handlebars->117->955" + "default.handlebars->119->1005", + "default.handlebars->119->1093", + "default.handlebars->119->2224", + "default.handlebars->119->2238", + "default.handlebars->119->2478", + "default.handlebars->119->2491", + "default.handlebars->119->3436", + "default.handlebars->119->878", + "default.handlebars->119->945", + "default.handlebars->119->995", + "default3.handlebars->117->1006", + "default3.handlebars->117->1016", + "default3.handlebars->117->1104", + "default3.handlebars->117->2235", + "default3.handlebars->117->2249", + "default3.handlebars->117->2490", + "default3.handlebars->117->2503", + "default3.handlebars->117->3441", + "default3.handlebars->117->889", + "default3.handlebars->117->956" ] }, { @@ -41635,8 +41674,8 @@ "zh-chs": "英特尔®AMT ACM", "zh-cht": "英特爾®AMT ACM", "xloc": [ - "default.handlebars->119->542", - "default3.handlebars->117->553" + "default.handlebars->119->543", + "default3.handlebars->117->554" ] }, { @@ -41666,8 +41705,8 @@ "zh-cht": "Intel® AMT CIRA", "xloc": [ "default-mobile.handlebars->53->540", - "default.handlebars->119->1002", - "default3.handlebars->117->1013" + "default.handlebars->119->1003", + "default3.handlebars->117->1014" ] }, { @@ -41748,12 +41787,12 @@ "zh-chs": "英特尔®AMT CIRA已连接并可以使用。", "zh-cht": "Intel® AMT CIRA已連接並可以使用。", "xloc": [ - "default.handlebars->119->1001", - "default.handlebars->119->422", - "default.handlebars->119->729", - "default3.handlebars->117->1012", - "default3.handlebars->117->433", - "default3.handlebars->117->740" + "default.handlebars->119->1002", + "default.handlebars->119->423", + "default.handlebars->119->730", + "default3.handlebars->117->1013", + "default3.handlebars->117->434", + "default3.handlebars->117->741" ] }, { @@ -41802,12 +41841,12 @@ "pl": "Import Urządzenia Intel® AMT", "uk": "Імпорт Пристроїв Intel® AMT", "xloc": [ - "default.handlebars->119->527", "default.handlebars->119->528", - "default.handlebars->119->530", - "default3.handlebars->117->538", + "default.handlebars->119->529", + "default.handlebars->119->531", "default3.handlebars->117->539", - "default3.handlebars->117->541" + "default3.handlebars->117->540", + "default3.handlebars->117->542" ] }, { @@ -41836,8 +41875,8 @@ "zh-chs": "英特尔® AMT JSON", "zh-cht": "英特爾® AMT JSON", "xloc": [ - "default.handlebars->119->807", - "default3.handlebars->117->818" + "default.handlebars->119->808", + "default3.handlebars->117->819" ] }, { @@ -41895,10 +41934,10 @@ "zh-chs": "英特尔® AMT 一键恢复", "zh-cht": "英特爾® AMT 一鍵恢復", "xloc": [ - "default.handlebars->119->1285", - "default.handlebars->119->1298", - "default3.handlebars->117->1294", - "default3.handlebars->117->1307" + "default.handlebars->119->1286", + "default.handlebars->119->1299", + "default3.handlebars->117->1295", + "default3.handlebars->117->1308" ] }, { @@ -41927,8 +41966,8 @@ "zh-chs": "英特尔®AMT政策", "zh-cht": "Intel® AMT政策", "xloc": [ - "default.handlebars->119->2297", - "default3.handlebars->117->2306" + "default.handlebars->119->2299", + "default3.handlebars->117->2308" ] }, { @@ -41960,18 +41999,18 @@ "default-mobile.handlebars->53->605", "default-mobile.handlebars->53->607", "default-mobile.handlebars->53->609", - "default.handlebars->119->1299", - "default.handlebars->119->1301", - "default.handlebars->119->1303", - "default.handlebars->119->1305", - "default.handlebars->119->1307", - "default.handlebars->119->1309", - "default.handlebars->119->1311", - "default3.handlebars->117->1308", - "default3.handlebars->117->1310", - "default3.handlebars->117->1312", - "default3.handlebars->117->1314", - "default3.handlebars->117->1316" + "default.handlebars->119->1300", + "default.handlebars->119->1302", + "default.handlebars->119->1304", + "default.handlebars->119->1306", + "default.handlebars->119->1308", + "default.handlebars->119->1310", + "default.handlebars->119->1312", + "default3.handlebars->117->1309", + "default3.handlebars->117->1311", + "default3.handlebars->117->1313", + "default3.handlebars->117->1315", + "default3.handlebars->117->1317" ] }, { @@ -42001,8 +42040,8 @@ "zh-cht": "英特爾® AMT 關機", "xloc": [ "default-mobile.handlebars->53->600", - "default.handlebars->119->1279", - "default3.handlebars->117->1288" + "default.handlebars->119->1280", + "default3.handlebars->117->1289" ] }, { @@ -42032,8 +42071,8 @@ "zh-cht": "英特爾® AMT 開機", "xloc": [ "default-mobile.handlebars->53->601", - "default.handlebars->119->1284", - "default3.handlebars->117->1293" + "default.handlebars->119->1285", + "default3.handlebars->117->1294" ] }, { @@ -42048,16 +42087,16 @@ "pl": "Intel® AMT Uruchom do BIOS", "uk": "Завантаження у BIOS через Intel® AMT", "xloc": [ - "default.handlebars->119->1281", - "default3.handlebars->117->1290" + "default.handlebars->119->1282", + "default3.handlebars->117->1291" ] }, { "en": "Intel® AMT Power on to PXE", "nl": "Intel® AMT inschakelen op PXE", "xloc": [ - "default.handlebars->119->1282", - "default3.handlebars->117->1291" + "default.handlebars->119->1283", + "default3.handlebars->117->1292" ] }, { @@ -42086,10 +42125,10 @@ "zh-chs": "英特尔®AMT重定向", "zh-cht": "Intel® AMT重定向", "xloc": [ - "default.handlebars->119->3164", - "default.handlebars->119->3174", - "default3.handlebars->117->3167", - "default3.handlebars->117->3177", + "default.handlebars->119->3166", + "default.handlebars->119->3176", + "default3.handlebars->117->3169", + "default3.handlebars->117->3179", "player.handlebars->29->33" ] }, @@ -42120,8 +42159,8 @@ "zh-cht": "英特爾® AMT 重置", "xloc": [ "default-mobile.handlebars->53->599", - "default.handlebars->119->1278", - "default3.handlebars->117->1287" + "default.handlebars->119->1279", + "default3.handlebars->117->1288" ] }, { @@ -42136,16 +42175,16 @@ "pl": "Intel® AMT Resetuj do BIOS", "uk": "Скинути BIOS через Intel® AMT", "xloc": [ - "default.handlebars->119->1280", - "default3.handlebars->117->1289" + "default.handlebars->119->1281", + "default3.handlebars->117->1290" ] }, { "en": "Intel® AMT Reset to PXE", "nl": "Intel® AMT resetten naar PXE", "xloc": [ - "default.handlebars->119->1283", - "default3.handlebars->117->1292" + "default.handlebars->119->1284", + "default3.handlebars->117->1293" ] }, { @@ -42174,8 +42213,8 @@ "zh-chs": "英特尔®AMT标签", "zh-cht": "Intel® AMT標籤", "xloc": [ - "default.handlebars->119->948", - "default3.handlebars->117->959" + "default.handlebars->119->949", + "default3.handlebars->117->960" ] }, { @@ -42204,10 +42243,10 @@ "zh-chs": "英特尔®AMT WSMAN", "zh-cht": "Intle® AMT WSMAN", "xloc": [ - "default.handlebars->119->3163", - "default.handlebars->119->3173", - "default3.handlebars->117->3166", - "default3.handlebars->117->3176", + "default.handlebars->119->3165", + "default.handlebars->119->3175", + "default3.handlebars->117->3168", + "default3.handlebars->117->3178", "player.handlebars->29->32" ] }, @@ -42264,10 +42303,10 @@ "zh-cht": "Intel ®AMT已連接", "xloc": [ "default-mobile.handlebars->53->574", - "default.handlebars->119->1082", "default.handlebars->119->1083", - "default3.handlebars->117->1093", - "default3.handlebars->117->1094" + "default.handlebars->119->1084", + "default3.handlebars->117->1094", + "default3.handlebars->117->1095" ] }, { @@ -42296,12 +42335,12 @@ "zh-chs": "英特尔®AMT桌面和串行事件", "zh-cht": "Intel® AMT桌面和串行事件", "xloc": [ - "default.handlebars->119->1130", - "default.handlebars->119->2092", - "default.handlebars->119->2464", - "default3.handlebars->117->1139", - "default3.handlebars->117->2089", - "default3.handlebars->117->2476" + "default.handlebars->119->1131", + "default.handlebars->119->2094", + "default.handlebars->119->2466", + "default3.handlebars->117->1140", + "default3.handlebars->117->2091", + "default3.handlebars->117->2478" ] }, { @@ -42331,10 +42370,10 @@ "zh-cht": "檢測到Intel® AMT", "xloc": [ "default-mobile.handlebars->53->575", - "default.handlebars->119->1084", "default.handlebars->119->1085", - "default3.handlebars->117->1095", - "default3.handlebars->117->1096" + "default.handlebars->119->1086", + "default3.handlebars->117->1096", + "default3.handlebars->117->1097" ] }, { @@ -42344,8 +42383,8 @@ "pl": "Nazwa hosta Intel® AMT", "uk": "Ім'я хоста Intel® AMT", "xloc": [ - "default.handlebars->119->364", - "default3.handlebars->117->375" + "default.handlebars->119->365", + "default3.handlebars->117->376" ] }, { @@ -42374,10 +42413,10 @@ "zh-chs": "在Intel® AMT尔AMT", "zh-cht": "在管理控制模式下啟動了Intel® AMT", "xloc": [ - "default.handlebars->119->446", - "default.handlebars->119->930", - "default3.handlebars->117->457", - "default3.handlebars->117->941" + "default.handlebars->119->447", + "default.handlebars->119->931", + "default3.handlebars->117->458", + "default3.handlebars->117->942" ] }, { @@ -42406,10 +42445,10 @@ "zh-chs": "英特尔AMT在客户端控制模式下被激活", "zh-cht": "Intel® AMT在客户端控制模式下被启动", "xloc": [ - "default.handlebars->119->444", - "default.handlebars->119->928", - "default3.handlebars->117->455", - "default3.handlebars->117->939" + "default.handlebars->119->445", + "default.handlebars->119->929", + "default3.handlebars->117->456", + "default3.handlebars->117->940" ] }, { @@ -42419,8 +42458,8 @@ "pl": "Intel® AMT jest w trybie aktywacji", "uk": "Intel® AMT знаходиться в режимі активації", "xloc": [ - "default.handlebars->119->442", - "default3.handlebars->117->453" + "default.handlebars->119->443", + "default3.handlebars->117->454" ] }, { @@ -42430,8 +42469,8 @@ "pl": "Intel® AMT nie jest aktywowane", "uk": "Intel® AMT не активовано", "xloc": [ - "default.handlebars->119->440", - "default3.handlebars->117->451" + "default.handlebars->119->441", + "default3.handlebars->117->452" ] }, { @@ -42460,8 +42499,8 @@ "zh-chs": "英特尔®AMT可路由并可以使用。", "zh-cht": "Intel® AMT可路由並可以使用。", "xloc": [ - "default.handlebars->119->1003", - "default3.handlebars->117->1014" + "default.handlebars->119->1004", + "default3.handlebars->117->1015" ] }, { @@ -42490,10 +42529,10 @@ "zh-chs": "英特尔®AMT是可路由的。", "zh-cht": "Intel® AMT是可路由的。", "xloc": [ - "default.handlebars->119->424", - "default.handlebars->119->731", - "default3.handlebars->117->435", - "default3.handlebars->117->742" + "default.handlebars->119->425", + "default.handlebars->119->732", + "default3.handlebars->117->436", + "default3.handlebars->117->743" ] }, { @@ -42523,8 +42562,8 @@ "zh-cht": "Intel® AMT已設置TLS網絡安全性", "xloc": [ "default-mobile.handlebars->53->524", - "default.handlebars->119->932", - "default3.handlebars->117->943" + "default.handlebars->119->933", + "default3.handlebars->117->944" ] }, { @@ -42608,11 +42647,11 @@ "zh-chs": "仅限英特尔®AMT,无代理", "zh-cht": "僅限Intel® AMT,無代理", "xloc": [ - "default-mobile.handlebars->53->953", - "default.handlebars->119->2125", - "default.handlebars->119->2182", - "default3.handlebars->117->2140", - "default3.handlebars->117->2193" + "default-mobile.handlebars->53->954", + "default.handlebars->119->2127", + "default.handlebars->119->2184", + "default3.handlebars->117->2142", + "default3.handlebars->117->2195" ] }, { @@ -42641,8 +42680,8 @@ "zh-chs": "英特尔®AMT设置", "zh-cht": "英特爾®AMT設置", "xloc": [ - "default.handlebars->119->534", - "default3.handlebars->117->545" + "default.handlebars->119->535", + "default3.handlebars->117->546" ] }, { @@ -42651,8 +42690,8 @@ "nl": "Intel® AMT status", "uk": "Стан Intel® AMT", "xloc": [ - "default.handlebars->119->365", - "default3.handlebars->117->376" + "default.handlebars->119->366", + "default3.handlebars->117->377" ] }, { @@ -42707,8 +42746,8 @@ "zh-chs": "英特尔®主动管理技术", "zh-cht": "Intel® Active Management Technology", "xloc": [ - "default.handlebars->119->943", - "default3.handlebars->117->954" + "default.handlebars->119->944", + "default3.handlebars->117->955" ] }, { @@ -42737,9 +42776,9 @@ "zh-chs": "英特尔®主动管理技术(英特尔®AMT)", "zh-cht": "Intel ® Active Management Technology(Intel® AMT)", "xloc": [ - "default-mobile.handlebars->53->849", - "default.handlebars->119->1690", - "default3.handlebars->117->1688" + "default-mobile.handlebars->53->850", + "default.handlebars->119->1692", + "default3.handlebars->117->1690" ] }, { @@ -42769,8 +42808,8 @@ "zh-cht": "Intel® ME", "xloc": [ "default-mobile.handlebars->53->533", - "default.handlebars->119->942", - "default3.handlebars->117->953" + "default.handlebars->119->943", + "default3.handlebars->117->954" ] }, { @@ -42799,8 +42838,8 @@ "zh-chs": "英特尔®可管理性引擎", "zh-cht": "Intel® Management Engine", "xloc": [ - "default.handlebars->119->941", - "default3.handlebars->117->952" + "default.handlebars->119->942", + "default3.handlebars->117->953" ] }, { @@ -42830,10 +42869,10 @@ "zh-cht": "Intel® M", "xloc": [ "default-mobile.handlebars->53->535", - "default.handlebars->119->1090", - "default.handlebars->119->946", - "default3.handlebars->117->1101", - "default3.handlebars->117->957" + "default.handlebars->119->1091", + "default.handlebars->119->947", + "default3.handlebars->117->1102", + "default3.handlebars->117->958" ] }, { @@ -42862,8 +42901,8 @@ "zh-chs": "英特尔®标准可管理性", "zh-cht": "Intel® Standard Manageability", "xloc": [ - "default.handlebars->119->945", - "default3.handlebars->117->956" + "default.handlebars->119->946", + "default3.handlebars->117->957" ] }, { @@ -42891,9 +42930,9 @@ "zh-chs": "英特尔® 标准可管理性(英特尔® SM)", "zh-cht": "英特爾® 標準可管理性(英特爾® SM)", "xloc": [ - "default-mobile.handlebars->53->848", - "default.handlebars->119->1689", - "default3.handlebars->117->1687" + "default-mobile.handlebars->53->849", + "default.handlebars->119->1691", + "default3.handlebars->117->1689" ] }, { @@ -42922,8 +42961,8 @@ "zh-chs": "英特尔®AMT", "zh-cht": "英特爾®AMT", "xloc": [ - "default.handlebars->119->1091", - "default3.handlebars->117->1102" + "default.handlebars->119->1092", + "default3.handlebars->117->1103" ] }, { @@ -42952,8 +42991,8 @@ "zh-chs": "英特尔® SM", "zh-cht": "英特爾® SM", "xloc": [ - "default.handlebars->119->1089", - "default3.handlebars->117->1100" + "default.handlebars->119->1090", + "default3.handlebars->117->1101" ] }, { @@ -42982,8 +43021,8 @@ "zh-chs": "英特尔(r) AMT 政策变更", "zh-cht": "英特爾(r) AMT 政策變更", "xloc": [ - "default.handlebars->119->2690", - "default3.handlebars->117->2702" + "default.handlebars->119->2692", + "default3.handlebars->117->2704" ] }, { @@ -43240,8 +43279,8 @@ "zh-chs": "互动", "zh-cht": "互動", "xloc": [ - "default.handlebars->119->1480", - "default3.handlebars->117->1481" + "default.handlebars->119->1481", + "default3.handlebars->117->1482" ] }, { @@ -43271,16 +43310,16 @@ "zh-cht": "僅限互動", "xloc": [ "agentinvite.handlebars->13->10", - "default.handlebars->119->2452", - "default.handlebars->119->2458", - "default.handlebars->119->577", - "default.handlebars->119->598", - "default.handlebars->119->615", - "default3.handlebars->117->2464", - "default3.handlebars->117->2470", - "default3.handlebars->117->588", - "default3.handlebars->117->609", - "default3.handlebars->117->626" + "default.handlebars->119->2454", + "default.handlebars->119->2460", + "default.handlebars->119->578", + "default.handlebars->119->599", + "default.handlebars->119->616", + "default3.handlebars->117->2466", + "default3.handlebars->117->2472", + "default3.handlebars->117->589", + "default3.handlebars->117->610", + "default3.handlebars->117->627" ] }, { @@ -43312,9 +43351,9 @@ "zh-chs": "接口速度", "zh-cht": "介面速度", "xloc": [ - "default-mobile.handlebars->53->819", - "default.handlebars->119->1660", - "default3.handlebars->117->1660" + "default-mobile.handlebars->53->820", + "default.handlebars->119->1662", + "default3.handlebars->117->1662" ] }, { @@ -43345,8 +43384,8 @@ "zh-chs": "介面", "zh-cht": "介面", "xloc": [ - "default.handlebars->119->1050", - "default3.handlebars->117->1061" + "default.handlebars->119->1051", + "default3.handlebars->117->1062" ] }, { @@ -43405,8 +43444,8 @@ "zh-cht": "因紐特文", "xloc": [ "default-mobile.handlebars->53->208", - "default.handlebars->119->1955", - "default3.handlebars->117->1951", + "default.handlebars->119->1957", + "default3.handlebars->117->1953", "login2.handlebars->17->94" ] }, @@ -43437,8 +43476,8 @@ "zh-cht": "無效的 2FA", "xloc": [ "default-mobile.handlebars->53->94", - "default.handlebars->119->338", - "default3.handlebars->117->348" + "default.handlebars->119->339", + "default3.handlebars->117->349" ] }, { @@ -43448,10 +43487,10 @@ "nl": "Ongeldig CSV bestandsformaat.", "uk": "Хибний формат файлу CSV.", "xloc": [ - "default.handlebars->119->2805", "default.handlebars->119->2807", - "default3.handlebars->117->2816", - "default3.handlebars->117->2818" + "default.handlebars->119->2809", + "default3.handlebars->117->2818", + "default3.handlebars->117->2820" ] }, { @@ -43481,8 +43520,8 @@ "zh-cht": "無效證件", "xloc": [ "default-mobile.handlebars->53->529", - "default.handlebars->119->937", - "default3.handlebars->117->948" + "default.handlebars->119->938", + "default3.handlebars->117->949" ] }, { @@ -43511,8 +43550,8 @@ "zh-chs": "无效的设备组类型", "zh-cht": "無效的裝置群類型", "xloc": [ - "default.handlebars->119->3365", - "default3.handlebars->117->3370" + "default.handlebars->119->3367", + "default3.handlebars->117->3372" ] }, { @@ -43541,8 +43580,8 @@ "zh-chs": "无效的JSON", "zh-cht": "無效的JSON", "xloc": [ - "default.handlebars->119->3359", - "default3.handlebars->117->3364" + "default.handlebars->119->3361", + "default3.handlebars->117->3366" ] }, { @@ -43571,13 +43610,13 @@ "zh-chs": "无效的JSON档案格式。", "zh-cht": "無效的JSON檔案格式。", "xloc": [ - "default.handlebars->119->2290", - "default.handlebars->119->2811", + "default.handlebars->119->2292", "default.handlebars->119->2813", - "default.handlebars->119->531", - "default3.handlebars->117->2822", + "default.handlebars->119->2815", + "default.handlebars->119->532", "default3.handlebars->117->2824", - "default3.handlebars->117->542" + "default3.handlebars->117->2826", + "default3.handlebars->117->543" ] }, { @@ -43606,12 +43645,12 @@ "zh-chs": "无效的JSON档案:{0}。", "zh-cht": "無效的JSON檔案:{0}。", "xloc": [ - "default.handlebars->119->2286", - "default.handlebars->119->2809", - "default.handlebars->119->529", - "default3.handlebars->117->2297", - "default3.handlebars->117->2820", - "default3.handlebars->117->540" + "default.handlebars->119->2288", + "default.handlebars->119->2811", + "default.handlebars->119->530", + "default3.handlebars->117->2299", + "default3.handlebars->117->2822", + "default3.handlebars->117->541" ] }, { @@ -43760,8 +43799,8 @@ "zh-chs": "无效的PKCS签名", "zh-cht": "無效的PKCS簽名", "xloc": [ - "default.handlebars->119->3357", - "default3.handlebars->117->3362" + "default.handlebars->119->3359", + "default3.handlebars->117->3364" ] }, { @@ -43790,8 +43829,8 @@ "zh-chs": "無效的RSA密碼", "zh-cht": "無效的RSA密碼", "xloc": [ - "default.handlebars->119->3358", - "default3.handlebars->117->3363" + "default.handlebars->119->3360", + "default3.handlebars->117->3365" ] }, { @@ -43820,9 +43859,9 @@ "zh-chs": "无效的短信", "zh-cht": "短信無效", "xloc": [ - "default-mobile.handlebars->53->1071", - "default.handlebars->119->3340", - "default3.handlebars->117->3345" + "default-mobile.handlebars->53->1072", + "default.handlebars->119->3342", + "default3.handlebars->117->3347" ] }, { @@ -43912,9 +43951,9 @@ "zh-chs": "无效域", "zh-cht": "無效域", "xloc": [ - "default-mobile.handlebars->53->1051", - "default.handlebars->119->3320", - "default3.handlebars->117->3325" + "default-mobile.handlebars->53->1052", + "default.handlebars->119->3322", + "default3.handlebars->117->3327" ] }, { @@ -43969,9 +44008,9 @@ "zh-chs": "不合规电邮", "zh-cht": "不合規電郵", "xloc": [ - "default-mobile.handlebars->53->1050", - "default.handlebars->119->3319", - "default3.handlebars->117->3324" + "default-mobile.handlebars->53->1051", + "default.handlebars->119->3321", + "default3.handlebars->117->3326" ] }, { @@ -44090,10 +44129,10 @@ "zh-chs": "无效的登录尝试", "zh-cht": "無效的登錄嘗試", "xloc": [ - "default.handlebars->119->3255", - "default.handlebars->119->3304", - "default3.handlebars->117->3258", - "default3.handlebars->117->3307" + "default.handlebars->119->3257", + "default.handlebars->119->3306", + "default3.handlebars->117->3260", + "default3.handlebars->117->3309" ] }, { @@ -44107,8 +44146,8 @@ "pl": "Błędna wiadomość", "uk": "Хибне повідомлення", "xloc": [ - "default.handlebars->119->3346", - "default3.handlebars->117->3351" + "default.handlebars->119->3348", + "default3.handlebars->117->3353" ] }, { @@ -44148,12 +44187,12 @@ "zh-chs": "无效的密码", "zh-cht": "無效的密碼", "xloc": [ - "default-mobile.handlebars->53->1049", + "default-mobile.handlebars->53->1050", "default-mobile.handlebars->53->96", - "default.handlebars->119->3318", - "default.handlebars->119->340", - "default3.handlebars->117->3323", - "default3.handlebars->117->350" + "default.handlebars->119->3320", + "default.handlebars->119->341", + "default3.handlebars->117->3325", + "default3.handlebars->117->351" ] }, { @@ -44199,9 +44238,9 @@ "zh-chs": "网站权限无效", "zh-cht": "無效的網站權限", "xloc": [ - "default-mobile.handlebars->53->1052", - "default.handlebars->119->3321", - "default3.handlebars->117->3326" + "default-mobile.handlebars->53->1053", + "default.handlebars->119->3323", + "default3.handlebars->117->3328" ] }, { @@ -44261,8 +44300,8 @@ "zh-chs": "来自 {0}、{1}、{2} 的无效用户登录尝试", "zh-cht": "來自 {0}、{1}、{2} 的用戶登錄嘗試無效", "xloc": [ - "default.handlebars->119->2659", - "default3.handlebars->117->2671" + "default.handlebars->119->2661", + "default3.handlebars->117->2673" ] }, { @@ -44291,9 +44330,9 @@ "zh-chs": "无效的用户名", "zh-cht": "無效的用戶名", "xloc": [ - "default-mobile.handlebars->53->1048", - "default.handlebars->119->3317", - "default3.handlebars->117->3322" + "default-mobile.handlebars->53->1049", + "default.handlebars->119->3319", + "default3.handlebars->117->3324" ] }, { @@ -44348,8 +44387,8 @@ "zh-chs": "使电邮无效", "zh-cht": "使電郵無效", "xloc": [ - "default.handlebars->119->2777", - "default3.handlebars->117->2789" + "default.handlebars->119->2779", + "default3.handlebars->117->2791" ] }, { @@ -44404,8 +44443,8 @@ "zh-chs": "邀请连接({0})", "zh-cht": "邀請鏈結({0})", "xloc": [ - "default.handlebars->119->294", - "default3.handlebars->117->304" + "default.handlebars->119->295", + "default3.handlebars->117->305" ] }, { @@ -44434,8 +44473,8 @@ "zh-chs": "邀请类型", "zh-cht": "邀請類型", "xloc": [ - "default.handlebars->119->553", - "default3.handlebars->117->564" + "default.handlebars->119->554", + "default3.handlebars->117->565" ] }, { @@ -44464,8 +44503,8 @@ "zh-chs": "任何人都可以使用邀请代码通过以下公共连接将设备加入该设备组:", "zh-cht": "任何人都可以使用邀請代碼通過以下公共鏈結將裝置加入該裝置群:", "xloc": [ - "default.handlebars->119->2454", - "default3.handlebars->117->2466" + "default.handlebars->119->2456", + "default3.handlebars->117->2468" ] }, { @@ -44523,12 +44562,12 @@ "zh-chs": "邀请", "zh-cht": "邀請", "xloc": [ - "default.handlebars->119->2248", - "default.handlebars->119->503", - "default.handlebars->119->600", - "default3.handlebars->117->2259", - "default3.handlebars->117->514", - "default3.handlebars->117->611" + "default.handlebars->119->2250", + "default.handlebars->119->504", + "default.handlebars->119->601", + "default3.handlebars->117->2261", + "default3.handlebars->117->515", + "default3.handlebars->117->612" ] }, { @@ -44557,19 +44596,19 @@ "zh-chs": "邀请码", "zh-cht": "邀請碼", "xloc": [ - "default-mobile.handlebars->53->1046", - "default.handlebars->119->2228", - "default.handlebars->119->2442", - "default.handlebars->119->2453", + "default-mobile.handlebars->53->1047", + "default.handlebars->119->2230", + "default.handlebars->119->2444", "default.handlebars->119->2455", - "default.handlebars->119->2460", - "default.handlebars->119->3315", - "default3.handlebars->117->2239", - "default3.handlebars->117->2454", - "default3.handlebars->117->2465", + "default.handlebars->119->2457", + "default.handlebars->119->2462", + "default.handlebars->119->3317", + "default3.handlebars->117->2241", + "default3.handlebars->117->2456", "default3.handlebars->117->2467", - "default3.handlebars->117->2472", - "default3.handlebars->117->3320" + "default3.handlebars->117->2469", + "default3.handlebars->117->2474", + "default3.handlebars->117->3322" ] }, { @@ -44598,8 +44637,8 @@ "zh-chs": "邀请代码", "zh-cht": "邀請代碼", "xloc": [ - "default.handlebars->119->2718", - "default3.handlebars->117->2730" + "default.handlebars->119->2720", + "default3.handlebars->117->2732" ] }, { @@ -44628,8 +44667,8 @@ "zh-chs": "通过共享邀请链接来邀请某人安装Mesh代理。该链接为用户提供“ {0} ”设备组的安装说明。该链接是公用的,不需要这台服务器的帐户。", "zh-cht": "通過共享邀請鏈結來邀請某人安裝mesh agent。該鏈結將用戶指向“ {0} ”裝置群的安裝說明。該鏈結是公用的,不需要這伺服器的帳戶。", "xloc": [ - "default.handlebars->119->580", - "default3.handlebars->117->591" + "default.handlebars->119->581", + "default3.handlebars->117->592" ] }, { @@ -44658,10 +44697,10 @@ "zh-chs": "邀请某人在该设备组上安装Mesh代理。", "zh-cht": "邀請某人在該裝置群上安裝mesh agent。", "xloc": [ - "default.handlebars->119->2247", - "default.handlebars->119->502", - "default3.handlebars->117->2258", - "default3.handlebars->117->513" + "default.handlebars->119->2249", + "default.handlebars->119->503", + "default3.handlebars->117->2260", + "default3.handlebars->117->514" ] }, { @@ -44690,8 +44729,8 @@ "zh-chs": "邀请某人安装网状代理。将发送一封电邮,其中包含指向“ {0} ”设备组的网状代理安装的连结。", "zh-cht": "邀請某人安裝mesh agent。將發送一封電郵,其中包含指向“ {0} ”裝置群的mesh agent安裝的鏈結。", "xloc": [ - "default.handlebars->119->556", - "default3.handlebars->117->567" + "default.handlebars->119->557", + "default3.handlebars->117->568" ] }, { @@ -44721,8 +44760,8 @@ "zh-cht": "愛爾蘭文", "xloc": [ "default-mobile.handlebars->53->209", - "default.handlebars->119->1956", - "default3.handlebars->117->1952", + "default.handlebars->119->1958", + "default3.handlebars->117->1954", "login2.handlebars->17->95" ] }, @@ -44752,8 +44791,8 @@ "zh-chs": "是 \\\"{0}\\\" 的中继。", "zh-cht": "是 \\\"{0}\\\" 的中繼。", "xloc": [ - "default.handlebars->119->2702", - "default3.handlebars->117->2714" + "default.handlebars->119->2704", + "default3.handlebars->117->2716" ] }, { @@ -44764,9 +44803,9 @@ "pl": "Aktywny", "uk": "Активовано", "xloc": [ - "default-mobile.handlebars->53->866", - "default.handlebars->119->1707", - "default3.handlebars->117->1705" + "default-mobile.handlebars->53->867", + "default.handlebars->119->1709", + "default3.handlebars->117->1707" ] }, { @@ -44777,9 +44816,9 @@ "pl": "Włączony", "uk": "Увімкнено", "xloc": [ - "default-mobile.handlebars->53->869", - "default.handlebars->119->1710", - "default3.handlebars->117->1708" + "default-mobile.handlebars->53->870", + "default.handlebars->119->1712", + "default3.handlebars->117->1710" ] }, { @@ -44790,9 +44829,9 @@ "pl": "Jest Własnością", "uk": "Належить", "xloc": [ - "default-mobile.handlebars->53->872", - "default.handlebars->119->1713", - "default3.handlebars->117->1711" + "default-mobile.handlebars->53->873", + "default.handlebars->119->1715", + "default3.handlebars->117->1713" ] }, { @@ -44822,8 +44861,8 @@ "zh-cht": "意大利文(標準)", "xloc": [ "default-mobile.handlebars->53->210", - "default.handlebars->119->1957", - "default3.handlebars->117->1953", + "default.handlebars->119->1959", + "default3.handlebars->117->1955", "login2.handlebars->17->96" ] }, @@ -44854,8 +44893,8 @@ "zh-cht": "義大利文(瑞士)", "xloc": [ "default-mobile.handlebars->53->211", - "default.handlebars->119->1958", - "default3.handlebars->117->1954", + "default.handlebars->119->1960", + "default3.handlebars->117->1956", "login2.handlebars->17->97" ] }, @@ -44921,8 +44960,8 @@ "zh-chs": "JSON", "zh-cht": "JSON", "xloc": [ - "default.handlebars->119->2735", - "default3.handlebars->117->2747" + "default.handlebars->119->2737", + "default3.handlebars->117->2749" ] }, { @@ -44951,12 +44990,12 @@ "zh-chs": "JSON格式", "zh-cht": "JSON格式", "xloc": [ - "default.handlebars->119->2740", - "default.handlebars->119->2817", - "default.handlebars->119->805", - "default3.handlebars->117->2752", - "default3.handlebars->117->2828", - "default3.handlebars->117->816" + "default.handlebars->119->2742", + "default.handlebars->119->2819", + "default.handlebars->119->806", + "default3.handlebars->117->2754", + "default3.handlebars->117->2830", + "default3.handlebars->117->817" ] }, { @@ -44965,8 +45004,8 @@ "nl": "Het JSON bestandsformaat is als volgt:", "uk": "Формат файлу JSON наведено далі:", "xloc": [ - "default.handlebars->119->2800", - "default3.handlebars->117->2811" + "default.handlebars->119->2802", + "default3.handlebars->117->2813" ] }, { @@ -44996,8 +45035,8 @@ "zh-cht": "日文", "xloc": [ "default-mobile.handlebars->53->212", - "default.handlebars->119->1959", - "default3.handlebars->117->1955", + "default.handlebars->119->1961", + "default3.handlebars->117->1957", "login2.handlebars->17->98" ] }, @@ -45012,10 +45051,10 @@ "pl": "Dołącz do tego serwera Discord aby dostawac powiadomienia.", "uk": "японська", "xloc": [ - "default.handlebars->119->1817", - "default.handlebars->119->3060", - "default3.handlebars->117->1814", - "default3.handlebars->117->3069" + "default.handlebars->119->1819", + "default.handlebars->119->3062", + "default3.handlebars->117->1816", + "default3.handlebars->117->3071" ] }, { @@ -45044,8 +45083,8 @@ "zh-chs": "已加入桌面Multiplex会话", "zh-cht": "已加入桌面Multiplex會話", "xloc": [ - "default.handlebars->119->2553", - "default3.handlebars->117->2565" + "default.handlebars->119->2555", + "default3.handlebars->117->2567" ] }, { @@ -45074,15 +45113,15 @@ "zh-chs": "已加入桌面多路复用会话 \\\"{0}\\\"", "zh-cht": "已加入桌面多路復用會話 \\\"{0}\\\"", "xloc": [ - "default.handlebars->119->2692", - "default3.handlebars->117->2704" + "default.handlebars->119->2694", + "default3.handlebars->117->2706" ] }, { "en": "Journal", "nl": "Logging", "xloc": [ - "default3.handlebars->117->2108" + "default3.handlebars->117->2110" ] }, { @@ -45142,8 +45181,8 @@ "zh-cht": "卡納達文", "xloc": [ "default-mobile.handlebars->53->213", - "default.handlebars->119->1960", - "default3.handlebars->117->1956", + "default.handlebars->119->1962", + "default3.handlebars->117->1958", "login2.handlebars->17->99" ] }, @@ -45174,8 +45213,8 @@ "zh-cht": "克什米爾文", "xloc": [ "default-mobile.handlebars->53->214", - "default.handlebars->119->1961", - "default3.handlebars->117->1957", + "default.handlebars->119->1963", + "default3.handlebars->117->1959", "login2.handlebars->17->100" ] }, @@ -45206,8 +45245,8 @@ "zh-cht": "哈薩克文", "xloc": [ "default-mobile.handlebars->53->215", - "default.handlebars->119->1962", - "default3.handlebars->117->1958", + "default.handlebars->119->1964", + "default3.handlebars->117->1960", "login2.handlebars->17->101" ] }, @@ -45237,8 +45276,8 @@ "zh-chs": "保留现有密码", "zh-cht": "保留現有密碼", "xloc": [ - "default.handlebars->119->2298", - "default3.handlebars->117->2307" + "default.handlebars->119->2300", + "default3.handlebars->117->2309" ] }, { @@ -45267,8 +45306,8 @@ "zh-chs": "内核驱动器", "zh-cht": "內核驅動器", "xloc": [ - "default.handlebars->119->1481", - "default3.handlebars->117->1482" + "default.handlebars->119->1482", + "default3.handlebars->117->1483" ] }, { @@ -45298,8 +45337,8 @@ "zh-cht": "密鑰文件", "xloc": [ "default-mobile.handlebars->53->704", - "default.handlebars->119->1523", - "default3.handlebars->117->1523", + "default.handlebars->119->1524", + "default3.handlebars->117->1524", "sharing-mobile.handlebars->53->52", "sharing-mobile.handlebars->53->69", "ssh.handlebars->19->15" @@ -45331,10 +45370,10 @@ "zh-chs": "键名", "zh-cht": "鍵名", "xloc": [ - "default.handlebars->119->1853", - "default.handlebars->119->1856", - "default3.handlebars->117->1849", - "default3.handlebars->117->1852" + "default.handlebars->119->1855", + "default.handlebars->119->1858", + "default3.handlebars->117->1851", + "default3.handlebars->117->1854" ] }, { @@ -45364,8 +45403,8 @@ "zh-cht": "密鑰密碼", "xloc": [ "default-mobile.handlebars->53->706", - "default.handlebars->119->1525", - "default3.handlebars->117->1525", + "default.handlebars->119->1526", + "default3.handlebars->117->1526", "sharing-mobile.handlebars->53->53", "sharing-mobile.handlebars->53->70", "ssh.handlebars->19->17" @@ -45398,8 +45437,8 @@ "zh-cht": "密鑰文件必須是 OpenSSH 格式。", "xloc": [ "default-mobile.handlebars->53->705", - "default.handlebars->119->1524", - "default3.handlebars->117->1524", + "default.handlebars->119->1525", + "default3.handlebars->117->1525", "sharing-mobile.handlebars->53->55", "sharing-mobile.handlebars->53->72", "ssh.handlebars->19->16" @@ -45458,8 +45497,8 @@ "zh-cht": "鍵盤快捷鍵自定義", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p10->p10dialog->1->1", - "default.handlebars->119->1455", - "default3.handlebars->117->1457", + "default.handlebars->119->1456", + "default3.handlebars->117->1458", "sharing-mobile.handlebars->container->page_content->column_l->p10->p10dialog->1->1" ] }, @@ -45489,8 +45528,8 @@ "zh-chs": "键盘字符串自定义", "zh-cht": "鍵盤字符串自定義", "xloc": [ - "default.handlebars->119->1460", - "default3.handlebars->117->1462" + "default.handlebars->119->1461", + "default3.handlebars->117->1463" ] }, { @@ -45546,8 +45585,8 @@ "zh-cht": "高棉文", "xloc": [ "default-mobile.handlebars->53->216", - "default.handlebars->119->1963", - "default3.handlebars->117->1959", + "default.handlebars->119->1965", + "default3.handlebars->117->1961", "login2.handlebars->17->102" ] }, @@ -45577,8 +45616,8 @@ "zh-chs": "杀死进程{0} ({1})", "zh-cht": "殺死進程{0} ({1})", "xloc": [ - "default.handlebars->119->2568", - "default3.handlebars->117->2580" + "default.handlebars->119->2570", + "default3.handlebars->117->2582" ] }, { @@ -45619,8 +45658,8 @@ "zh-cht": "吉爾吉斯", "xloc": [ "default-mobile.handlebars->53->217", - "default.handlebars->119->1964", - "default3.handlebars->117->1960", + "default.handlebars->119->1966", + "default3.handlebars->117->1962", "login2.handlebars->17->103" ] }, @@ -45651,8 +45690,8 @@ "zh-cht": "克林貢", "xloc": [ "default-mobile.handlebars->53->218", - "default.handlebars->119->1965", - "default3.handlebars->117->1961", + "default.handlebars->119->1967", + "default3.handlebars->117->1963", "login2.handlebars->17->104" ] }, @@ -45682,9 +45721,9 @@ "zh-chs": "已知的", "zh-cht": "已知的", "xloc": [ - "default-mobile.handlebars->53->847", - "default.handlebars->119->1688", - "default3.handlebars->117->1686" + "default-mobile.handlebars->53->848", + "default.handlebars->119->1690", + "default3.handlebars->117->1688" ] }, { @@ -45714,8 +45753,8 @@ "zh-cht": "韓文", "xloc": [ "default-mobile.handlebars->53->219", - "default.handlebars->119->1966", - "default3.handlebars->117->1962", + "default.handlebars->119->1968", + "default3.handlebars->117->1964", "login2.handlebars->17->105" ] }, @@ -45746,8 +45785,8 @@ "zh-cht": "韓文(朝鮮)", "xloc": [ "default-mobile.handlebars->53->220", - "default.handlebars->119->1967", - "default3.handlebars->117->1963", + "default.handlebars->119->1969", + "default3.handlebars->117->1965", "login2.handlebars->17->106" ] }, @@ -45778,8 +45817,8 @@ "zh-cht": "韓文(韓國)", "xloc": [ "default-mobile.handlebars->53->221", - "default.handlebars->119->1968", - "default3.handlebars->117->1964", + "default.handlebars->119->1970", + "default3.handlebars->117->1966", "login2.handlebars->17->107" ] }, @@ -45809,10 +45848,10 @@ "zh-chs": "如果", "zh-cht": "如果", "xloc": [ - "default.handlebars->119->1510", - "default.handlebars->119->1541", - "default3.handlebars->117->1510", - "default3.handlebars->117->1541", + "default.handlebars->119->1511", + "default.handlebars->119->1542", + "default3.handlebars->117->1511", + "default3.handlebars->117->1542", "sharing.handlebars->47->26", "sharing.handlebars->47->40" ] @@ -45844,8 +45883,8 @@ "zh-cht": "語言", "xloc": [ "default-mobile.handlebars->53->316", - "default.handlebars->119->2063", - "default3.handlebars->117->2059" + "default.handlebars->119->2065", + "default3.handlebars->117->2061" ] }, { @@ -45930,8 +45969,8 @@ "zh-chs": "大焦点", "zh-cht": "大焦點", "xloc": [ - "default.handlebars->119->1427", - "default3.handlebars->117->1429" + "default.handlebars->119->1428", + "default3.handlebars->117->1430" ] }, { @@ -46126,9 +46165,9 @@ "zh-chs": "过去30天", "zh-cht": "過去30天", "xloc": [ - "default.handlebars->119->3208", + "default.handlebars->119->3210", "default.handlebars->container->column_l->p40->3->1->p40time->9", - "default3.handlebars->117->3211", + "default3.handlebars->117->3213", "default3.handlebars->container->column_l->p40->3->3->p40time->9" ] }, @@ -46228,8 +46267,8 @@ "zh-chs": "过去 7 天", "zh-cht": "過去 7 天", "xloc": [ - "default.handlebars->119->3207", - "default3.handlebars->117->3210" + "default.handlebars->119->3209", + "default3.handlebars->117->3212" ] }, { @@ -46288,8 +46327,8 @@ "zh-chs": "最后访问", "zh-cht": "最後訪問", "xloc": [ - "default.handlebars->119->2748", - "default3.handlebars->117->2760" + "default.handlebars->119->2750", + "default3.handlebars->117->2762" ] }, { @@ -46303,16 +46342,16 @@ "default-mobile.handlebars->53->764", "default-mobile.handlebars->53->765", "default-mobile.handlebars->53->766", - "default.handlebars->119->1625", "default.handlebars->119->1626", "default.handlebars->119->1627", - "default.handlebars->119->359", - "default.handlebars->119->391", - "default3.handlebars->117->1625", + "default.handlebars->119->1628", + "default.handlebars->119->360", + "default.handlebars->119->392", "default3.handlebars->117->1626", "default3.handlebars->117->1627", - "default3.handlebars->117->370", - "default3.handlebars->117->402" + "default3.handlebars->117->1628", + "default3.handlebars->117->371", + "default3.handlebars->117->403" ] }, { @@ -46341,8 +46380,8 @@ "zh-chs": "最后一天", "zh-cht": "最後一天", "xloc": [ - "default.handlebars->119->3206", - "default3.handlebars->117->3209" + "default.handlebars->119->3208", + "default3.handlebars->117->3211" ] }, { @@ -46371,8 +46410,8 @@ "zh-chs": "上次登录", "zh-cht": "上次登入", "xloc": [ - "default.handlebars->119->2991", - "default3.handlebars->117->3000" + "default.handlebars->119->2993", + "default3.handlebars->117->3002" ] }, { @@ -46401,11 +46440,11 @@ "zh-chs": "最后一次露面", "zh-cht": "最後一次露面", "xloc": [ - "default.handlebars->119->366", - "default.handlebars->119->398", + "default.handlebars->119->367", + "default.handlebars->119->399", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->11", - "default3.handlebars->117->377", - "default3.handlebars->117->409", + "default3.handlebars->117->378", + "default3.handlebars->117->410", "default3.handlebars->container->column_l->p1->devListToolbarSpan->7->devListToolbarSort->sortselect->11" ] }, @@ -46435,8 +46474,8 @@ "zh-chs": "上次访问:{0}", "zh-cht": "上次訪問:{0}", "xloc": [ - "default.handlebars->119->2758", - "default3.handlebars->117->2770" + "default.handlebars->119->2760", + "default3.handlebars->117->2772" ] }, { @@ -46465,21 +46504,21 @@ "zh-chs": "上次代理地址", "zh-cht": "上次代理地址", "xloc": [ - "default-mobile.handlebars->53->802", "default-mobile.handlebars->53->803", "default-mobile.handlebars->53->804", - "default.handlebars->119->160", - "default.handlebars->119->162", - "default.handlebars->119->1633", - "default.handlebars->119->1634", + "default-mobile.handlebars->53->805", + "default.handlebars->119->161", + "default.handlebars->119->163", "default.handlebars->119->1635", - "default.handlebars->119->164", - "default3.handlebars->117->1633", - "default3.handlebars->117->1634", + "default.handlebars->119->1636", + "default.handlebars->119->1637", + "default.handlebars->119->165", "default3.handlebars->117->1635", - "default3.handlebars->117->173", - "default3.handlebars->117->175", - "default3.handlebars->117->177" + "default3.handlebars->117->1636", + "default3.handlebars->117->1637", + "default3.handlebars->117->174", + "default3.handlebars->117->176", + "default3.handlebars->117->178" ] }, { @@ -46508,14 +46547,14 @@ "zh-chs": "上次代理连接", "zh-cht": "上次代理連接", "xloc": [ - "default-mobile.handlebars->53->799", - "default-mobile.handlebars->53->801", - "default.handlebars->119->159", - "default.handlebars->119->1630", + "default-mobile.handlebars->53->800", + "default-mobile.handlebars->53->802", + "default.handlebars->119->160", "default.handlebars->119->1632", - "default3.handlebars->117->1630", + "default.handlebars->119->1634", "default3.handlebars->117->1632", - "default3.handlebars->117->172" + "default3.handlebars->117->1634", + "default3.handlebars->117->173" ] }, { @@ -46544,8 +46583,8 @@ "zh-chs": "上次更改:{0}", "zh-cht": "上次更改:{0}", "xloc": [ - "default.handlebars->119->2995", - "default3.handlebars->117->3004" + "default.handlebars->119->2997", + "default3.handlebars->117->3006" ] }, { @@ -46560,8 +46599,8 @@ "pl": "Zapisy czasu ostatnich połączeń", "uk": "Записи часу останнього підключення", "xloc": [ - "default.handlebars->119->3276", - "default3.handlebars->117->3279" + "default.handlebars->119->3278", + "default3.handlebars->117->3281" ] }, { @@ -46620,8 +46659,8 @@ "zh-chs": "最后接口更新", "zh-cht": "最後介面更新", "xloc": [ - "default.handlebars->119->166", - "default3.handlebars->117->179" + "default.handlebars->119->167", + "default3.handlebars->117->180" ] }, { @@ -46650,8 +46689,8 @@ "zh-chs": "上次登录:{0}", "zh-cht": "上次登入:{0}", "xloc": [ - "default.handlebars->119->2759", - "default3.handlebars->117->2771" + "default.handlebars->119->2761", + "default3.handlebars->117->2773" ] }, { @@ -46680,9 +46719,9 @@ "zh-chs": "最后一次发现:", "zh-cht": "最後一次發現:", "xloc": [ - "default.handlebars->119->1088", + "default.handlebars->119->1089", "default.handlebars->119->126", - "default3.handlebars->117->1099", + "default3.handlebars->117->1100", "default3.handlebars->117->139" ] }, @@ -46798,8 +46837,8 @@ "zh-chs": "最新版本", "zh-cht": "最新版本", "xloc": [ - "default.handlebars->119->205", - "default3.handlebars->117->218" + "default.handlebars->119->206", + "default3.handlebars->117->219" ] }, { @@ -46829,8 +46868,8 @@ "zh-cht": "拉丁文", "xloc": [ "default-mobile.handlebars->53->222", - "default.handlebars->119->1969", - "default3.handlebars->117->1965", + "default.handlebars->119->1971", + "default3.handlebars->117->1967", "login2.handlebars->17->108" ] }, @@ -46861,8 +46900,8 @@ "zh-cht": "拉脫維亞文", "xloc": [ "default-mobile.handlebars->53->223", - "default.handlebars->119->1970", - "default3.handlebars->117->1966", + "default.handlebars->119->1972", + "default3.handlebars->117->1968", "login2.handlebars->17->109" ] }, @@ -46892,8 +46931,8 @@ "zh-chs": "启动MeshCentral路由器", "zh-cht": "啟動MeshCentral路由器", "xloc": [ - "default.handlebars->119->1348", - "default3.handlebars->117->1350" + "default.handlebars->119->1349", + "default3.handlebars->117->1351" ] }, { @@ -46948,8 +46987,8 @@ "zh-chs": "启动基于Web的RDP连接到此设备", "zh-cht": "啟動基於Web的RDP連接到此裝置", "xloc": [ - "default.handlebars->119->1068", - "default3.handlebars->117->1079" + "default.handlebars->119->1069", + "default3.handlebars->117->1080" ] }, { @@ -46978,8 +47017,8 @@ "zh-chs": "启动与此设备的基于 Web 的 SSH 会话", "zh-cht": "啟動到此設備的基於 Web 的 SSH 會話", "xloc": [ - "default.handlebars->119->1070", - "default3.handlebars->117->1081" + "default.handlebars->119->1071", + "default3.handlebars->117->1082" ] }, { @@ -47008,8 +47047,8 @@ "zh-chs": "启动与此设备的基于 Web 的 VNC 会话", "zh-cht": "向此設備啟動基於 Web 的 VNC 會話", "xloc": [ - "default.handlebars->119->1066", - "default3.handlebars->117->1077" + "default.handlebars->119->1067", + "default3.handlebars->117->1078" ] }, { @@ -47038,8 +47077,8 @@ "zh-chs": "如没有请留空。", "zh-cht": "如沒有請留空。", "xloc": [ - "default.handlebars->119->3045", - "default3.handlebars->117->3054" + "default.handlebars->119->3047", + "default3.handlebars->117->3056" ] }, { @@ -47069,8 +47108,8 @@ "zh-cht": "左", "xloc": [ "default-mobile.handlebars->53->672", - "default.handlebars->119->1440", - "default3.handlebars->117->1442", + "default.handlebars->119->1441", + "default3.handlebars->117->1443", "sharing-mobile.handlebars->53->28" ] }, @@ -47133,8 +47172,8 @@ "zh-chs": "{0} 秒后离开 Web-RDP 会话 \\\"{1}\\\"。", "zh-cht": "{0} 秒後離開 Web-RDP 會話 \\\"{1}\\\"。", "xloc": [ - "default.handlebars->119->2674", - "default3.handlebars->117->2686" + "default.handlebars->119->2676", + "default3.handlebars->117->2688" ] }, { @@ -47189,8 +47228,8 @@ "zh-chs": "{0} 秒后离开 Web-SFTP 会话 \\\"{1}\\\"。", "zh-cht": "{0} 秒後離開 Web-SFTP 會話 \\\"{1}\\\"。", "xloc": [ - "default.handlebars->119->2673", - "default3.handlebars->117->2685" + "default.handlebars->119->2675", + "default3.handlebars->117->2687" ] }, { @@ -47245,8 +47284,8 @@ "zh-chs": "{0} 秒后离开 Web-SSH 会话 \\\"{1}\\\"。", "zh-cht": "{0} 秒後離開 Web-SSH 會話 \\\"{1}\\\"。", "xloc": [ - "default.handlebars->119->2672", - "default3.handlebars->117->2684" + "default.handlebars->119->2674", + "default3.handlebars->117->2686" ] }, { @@ -47301,8 +47340,8 @@ "zh-chs": "{0} 秒后离开 Web-VNC 会话。", "zh-cht": "{0} 秒後離開 Web-VNC 會話。", "xloc": [ - "default.handlebars->119->2675", - "default3.handlebars->117->2687" + "default.handlebars->119->2677", + "default3.handlebars->117->2689" ] }, { @@ -47372,8 +47411,8 @@ "zh-chs": "离开桌面多路复用会话", "zh-cht": "離開桌面多路復用會話", "xloc": [ - "default.handlebars->119->2554", - "default3.handlebars->117->2566" + "default.handlebars->119->2556", + "default3.handlebars->117->2568" ] }, { @@ -47402,8 +47441,8 @@ "zh-chs": "{1} 秒后离开桌面多路复用会话 \\\"{0}\\\"。", "zh-cht": "{1} 秒後離開桌面多路復用會話 \\\"{0}\\\"。", "xloc": [ - "default.handlebars->119->2693", - "default3.handlebars->117->2705" + "default.handlebars->119->2695", + "default3.handlebars->117->2707" ] }, { @@ -47432,8 +47471,8 @@ "zh-chs": "{0} 秒后离开桌面多路复用会话。", "zh-cht": "{0} 秒後離開桌面多路復用會話。", "xloc": [ - "default.handlebars->119->2671", - "default3.handlebars->117->2683" + "default.handlebars->119->2673", + "default3.handlebars->117->2685" ] }, { @@ -47462,8 +47501,8 @@ "zh-chs": "长度", "zh-cht": "長度", "xloc": [ - "default.handlebars->119->3223", - "default3.handlebars->117->3226" + "default.handlebars->119->3225", + "default3.handlebars->117->3228" ] }, { @@ -47549,10 +47588,10 @@ "zh-chs": "限制事件", "zh-cht": "限制事件", "xloc": [ - "default.handlebars->119->1153", - "default.handlebars->119->1178", - "default3.handlebars->117->1162", - "default3.handlebars->117->1187" + "default.handlebars->119->1154", + "default.handlebars->119->1179", + "default3.handlebars->117->1163", + "default3.handlebars->117->1188" ] }, { @@ -47611,13 +47650,13 @@ "zh-chs": "有限输入", "zh-cht": "有限輸入", "xloc": [ - "default-mobile.handlebars->53->1023", - "default.handlebars->119->1145", - "default.handlebars->119->1170", - "default.handlebars->119->2421", - "default3.handlebars->117->1154", - "default3.handlebars->117->1179", - "default3.handlebars->117->2433" + "default-mobile.handlebars->53->1024", + "default.handlebars->119->1146", + "default.handlebars->119->1171", + "default.handlebars->119->2423", + "default3.handlebars->117->1155", + "default3.handlebars->117->1180", + "default3.handlebars->117->2435" ] }, { @@ -47646,32 +47685,32 @@ "zh-chs": "仅有限输入", "zh-cht": "僅有限輸入", "xloc": [ - "default-mobile.handlebars->53->996", - "default.handlebars->119->2374", - "default3.handlebars->117->2386" + "default-mobile.handlebars->53->997", + "default.handlebars->119->2376", + "default3.handlebars->117->2388" ] }, { "en": "Line Break: Linux (LF)", "xloc": [ - "default.handlebars->119->1605", - "default3.handlebars->117->1605", + "default.handlebars->119->1606", + "default3.handlebars->117->1606", "sharing.handlebars->47->92" ] }, { "en": "Line Break: Mac (CR)", "xloc": [ - "default.handlebars->119->1606", - "default3.handlebars->117->1606", + "default.handlebars->119->1607", + "default3.handlebars->117->1607", "sharing.handlebars->47->93" ] }, { "en": "Line Break: Windows (CR LF)", "xloc": [ - "default.handlebars->119->1604", - "default3.handlebars->117->1604", + "default.handlebars->119->1605", + "default3.handlebars->117->1605", "sharing.handlebars->47->91" ] }, @@ -47732,10 +47771,10 @@ "zh-chs": "连结过期", "zh-cht": "鏈結過期", "xloc": [ - "default.handlebars->119->567", - "default.handlebars->119->581", - "default3.handlebars->117->578", - "default3.handlebars->117->592" + "default.handlebars->119->568", + "default.handlebars->119->582", + "default3.handlebars->117->579", + "default3.handlebars->117->593" ] }, { @@ -47764,8 +47803,8 @@ "zh-chs": "连结邀请", "zh-cht": "鏈結邀請", "xloc": [ - "default.handlebars->119->554", - "default3.handlebars->117->565" + "default.handlebars->119->555", + "default3.handlebars->117->566" ] }, { @@ -47794,8 +47833,8 @@ "zh-chs": "链接", "zh-cht": "鏈接", "xloc": [ - "default.handlebars->119->392", - "default3.handlebars->117->403" + "default.handlebars->119->393", + "default3.handlebars->117->404" ] }, { @@ -47827,9 +47866,9 @@ "agentinvite.handlebars->container->column_l->5->linuxtab->1", "default-mobile.handlebars->53->511", "default.handlebars->119->60", - "default.handlebars->119->917", + "default.handlebars->119->918", "default3.handlebars->117->60", - "default3.handlebars->117->928" + "default3.handlebars->117->929" ] }, { @@ -47858,8 +47897,8 @@ "zh-chs": "Linux (SSH/SCP/VNC)", "zh-cht": "Linux (SSH/SCP/VNC)", "xloc": [ - "default.handlebars->119->512", - "default3.handlebars->117->523" + "default.handlebars->119->513", + "default3.handlebars->117->524" ] }, { @@ -47888,8 +47927,8 @@ "zh-chs": "Linux / BSD", "zh-cht": "Linux / BSD", "xloc": [ - "default.handlebars->119->602", - "default3.handlebars->117->613" + "default.handlebars->119->603", + "default3.handlebars->117->614" ] }, { @@ -47918,8 +47957,8 @@ "zh-chs": "Linux / BSD(卸载)", "zh-cht": "Linux / BSD(解除安裝)", "xloc": [ - "default.handlebars->119->608", - "default3.handlebars->117->619" + "default.handlebars->119->609", + "default3.handlebars->117->620" ] }, { @@ -47951,8 +47990,8 @@ "agentinvite.handlebars->13->4", "agentinvite.handlebars->13->5", "agentinvite.handlebars->container->column_l->5->1->tlinuxbinarytab", - "default.handlebars->119->603", - "default3.handlebars->117->614" + "default.handlebars->119->604", + "default3.handlebars->117->615" ] }, { @@ -48114,8 +48153,8 @@ "zh-chs": "Linux ARM,Raspberry Pi(32位)", "zh-cht": "Linux ARM,Raspberry Pi(32位)", "xloc": [ - "default.handlebars->119->1357", - "default3.handlebars->117->1359" + "default.handlebars->119->1358", + "default3.handlebars->117->1360" ] }, { @@ -48144,8 +48183,8 @@ "zh-chs": "Linux ARM, Raspberry Pi (64位)", "zh-cht": "Linux ARM, Raspberry Pi (64位)", "xloc": [ - "default.handlebars->119->1358", - "default3.handlebars->117->1360" + "default.handlebars->119->1359", + "default3.handlebars->117->1361" ] }, { @@ -48181,10 +48220,10 @@ "zh-chs": "Linux MeshAgent", "zh-cht": "Linux MeshAgent", "xloc": [ - "default.handlebars->119->2446", - "default.handlebars->119->591", - "default3.handlebars->117->2458", - "default3.handlebars->117->602" + "default.handlebars->119->2448", + "default.handlebars->119->592", + "default3.handlebars->117->2460", + "default3.handlebars->117->603" ] }, { @@ -48275,8 +48314,8 @@ "zh-chs": "Linux路径", "zh-cht": "Linux路徑", "xloc": [ - "default.handlebars->119->791", - "default3.handlebars->117->802" + "default.handlebars->119->792", + "default3.handlebars->117->803" ] }, { @@ -48367,8 +48406,8 @@ "zh-chs": "只限Linux", "zh-cht": "只限Linux", "xloc": [ - "default.handlebars->119->565", - "default3.handlebars->117->576" + "default.handlebars->119->566", + "default3.handlebars->117->577" ] }, { @@ -48397,8 +48436,8 @@ "zh-chs": "Linux x86(32位)", "zh-cht": "Linux x86(32位)", "xloc": [ - "default.handlebars->119->1354", - "default3.handlebars->117->1356" + "default.handlebars->119->1355", + "default3.handlebars->117->1357" ] }, { @@ -48427,8 +48466,8 @@ "zh-chs": "Linux x86(64位)", "zh-cht": "Linux x86(64位)", "xloc": [ - "default.handlebars->119->1353", - "default3.handlebars->117->1355" + "default.handlebars->119->1354", + "default3.handlebars->117->1356" ] }, { @@ -48458,10 +48497,10 @@ "zh-cht": "Linux / BSD / macOS命令外殼", "xloc": [ "default-mobile.handlebars->53->620", - "default.handlebars->119->1293", - "default.handlebars->119->817", - "default3.handlebars->117->1302", - "default3.handlebars->117->828" + "default.handlebars->119->1294", + "default.handlebars->119->818", + "default3.handlebars->117->1303", + "default3.handlebars->117->829" ] }, { @@ -48554,7 +48593,7 @@ { "en": "Litera", "xloc": [ - "default3.handlebars->117->2109" + "default3.handlebars->117->2111" ] }, { @@ -48584,8 +48623,8 @@ "zh-cht": "立陶宛文", "xloc": [ "default-mobile.handlebars->53->224", - "default.handlebars->119->1971", - "default3.handlebars->117->1967", + "default.handlebars->119->1973", + "default3.handlebars->117->1969", "login2.handlebars->17->110" ] }, @@ -48647,19 +48686,19 @@ "xloc": [ "default-mobile.handlebars->53->101", "default-mobile.handlebars->53->321", - "default.handlebars->119->1343", - "default.handlebars->119->1795", - "default.handlebars->119->1842", - "default.handlebars->119->2170", - "default.handlebars->119->2174", - "default.handlebars->119->2177", - "default.handlebars->119->3097", - "default.handlebars->119->3146", - "default3.handlebars->117->1347", - "default3.handlebars->117->1839", - "default3.handlebars->117->2183", - "default3.handlebars->117->2187", - "default3.handlebars->117->3149" + "default.handlebars->119->1344", + "default.handlebars->119->1797", + "default.handlebars->119->1844", + "default.handlebars->119->2172", + "default.handlebars->119->2176", + "default.handlebars->119->2179", + "default.handlebars->119->3099", + "default.handlebars->119->3148", + "default3.handlebars->117->1348", + "default3.handlebars->117->1841", + "default3.handlebars->117->2185", + "default3.handlebars->117->2189", + "default3.handlebars->117->3151" ] }, { @@ -48688,8 +48727,8 @@ "zh-chs": "本地", "zh-cht": "本地", "xloc": [ - "default.handlebars->119->433", - "default3.handlebars->117->444", + "default.handlebars->119->434", + "default3.handlebars->117->445", "messenger.handlebars->localVideo->1", "messenger.handlebars->remoteImage->3->4" ] @@ -48803,11 +48842,11 @@ "zh-chs": "本地设备,无代理", "zh-cht": "本地設備,無代理", "xloc": [ - "default-mobile.handlebars->53->955", - "default.handlebars->119->2119", - "default.handlebars->119->2184", - "default3.handlebars->117->2134", - "default3.handlebars->117->2195" + "default-mobile.handlebars->53->956", + "default.handlebars->119->2121", + "default.handlebars->119->2186", + "default3.handlebars->117->2136", + "default3.handlebars->117->2197" ] }, { @@ -48867,8 +48906,8 @@ "zh-chs": "通过中继代理的本地网络连接。", "zh-cht": "通過中繼代理的本地網絡連接。", "xloc": [ - "default.handlebars->119->430", - "default3.handlebars->117->441" + "default.handlebars->119->431", + "default3.handlebars->117->442" ] }, { @@ -48897,8 +48936,8 @@ "zh-chs": "本地网络连接。", "zh-cht": "本地網絡連接。", "xloc": [ - "default.handlebars->119->432", - "default3.handlebars->117->443" + "default.handlebars->119->433", + "default3.handlebars->117->444" ] }, { @@ -48927,8 +48966,8 @@ "zh-chs": "本地用户接受的远程终端请求", "zh-cht": "本地用戶接受的遠程終端請求", "xloc": [ - "default.handlebars->119->2576", - "default3.handlebars->117->2588" + "default.handlebars->119->2578", + "default3.handlebars->117->2590" ] }, { @@ -48957,8 +48996,8 @@ "zh-chs": "本地用户拒绝了远程终端请求", "zh-cht": "本地用戶拒絕了遠程終端請求", "xloc": [ - "default.handlebars->119->2577", - "default3.handlebars->117->2589" + "default.handlebars->119->2579", + "default3.handlebars->117->2591" ] }, { @@ -48989,9 +49028,9 @@ "xloc": [ "default-mobile.handlebars->53->319", "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountSecurity->3->5->0", - "default.handlebars->119->2066", + "default.handlebars->119->2068", "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->11", - "default3.handlebars->117->2062", + "default3.handlebars->117->2064", "default3.handlebars->container->column_l->p2->p2info->p2AccountActions->3->9" ] }, @@ -49021,8 +49060,8 @@ "zh-chs": "位置", "zh-cht": "位置", "xloc": [ - "default.handlebars->119->1052", - "default3.handlebars->117->1063" + "default.handlebars->119->1053", + "default3.handlebars->117->1064" ] }, { @@ -49081,8 +49120,8 @@ "zh-chs": "锁定账户", "zh-cht": "鎖定賬戶", "xloc": [ - "default.handlebars->119->2857", - "default3.handlebars->117->2866" + "default.handlebars->119->2859", + "default3.handlebars->117->2868" ] }, { @@ -49111,8 +49150,8 @@ "zh-chs": "锁定帐户设置", "zh-cht": "鎖定帳戶設置", "xloc": [ - "default.handlebars->119->2861", - "default3.handlebars->117->2870" + "default.handlebars->119->2863", + "default3.handlebars->117->2872" ] }, { @@ -49142,8 +49181,8 @@ "zh-cht": "鎖定桌面", "xloc": [ "default-mobile.handlebars->53->613", - "default.handlebars->119->1215", - "default3.handlebars->117->1224" + "default.handlebars->119->1216", + "default3.handlebars->117->1225" ] }, { @@ -49172,8 +49211,8 @@ "zh-chs": "锁定账户", "zh-cht": "鎖定賬戶", "xloc": [ - "default.handlebars->119->2780", - "default3.handlebars->117->2792" + "default.handlebars->119->2782", + "default3.handlebars->117->2794" ] }, { @@ -49234,8 +49273,8 @@ "zh-chs": "锁定远程用户的鼠标和键盘?", "zh-cht": "鎖定遠程用戶的鼠標和鍵盤?", "xloc": [ - "default.handlebars->119->1202", - "default3.handlebars->117->1211" + "default.handlebars->119->1203", + "default3.handlebars->117->1212" ] }, { @@ -49295,8 +49334,8 @@ "zh-cht": "鎖定用戶桌面?", "xloc": [ "default-mobile.handlebars->53->614", - "default.handlebars->119->1216", - "default3.handlebars->117->1225" + "default.handlebars->119->1217", + "default3.handlebars->117->1226" ] }, { @@ -49326,12 +49365,12 @@ "zh-cht": "已鎖定", "xloc": [ "default-mobile.handlebars->53->794", - "default.handlebars->119->2760", - "default.handlebars->119->487", - "default.handlebars->119->977", - "default3.handlebars->117->2772", - "default3.handlebars->117->498", - "default3.handlebars->117->988" + "default.handlebars->119->2762", + "default.handlebars->119->488", + "default.handlebars->119->978", + "default3.handlebars->117->2774", + "default3.handlebars->117->499", + "default3.handlebars->117->989" ] }, { @@ -49367,14 +49406,14 @@ "zh-cht": "被鎖定賬戶", "xloc": [ "default-mobile.handlebars->53->95", - "default.handlebars->119->2951", - "default.handlebars->119->3254", - "default.handlebars->119->3303", - "default.handlebars->119->339", - "default3.handlebars->117->2960", - "default3.handlebars->117->3257", - "default3.handlebars->117->3306", - "default3.handlebars->117->349" + "default.handlebars->119->2953", + "default.handlebars->119->3256", + "default.handlebars->119->3305", + "default.handlebars->119->340", + "default3.handlebars->117->2962", + "default3.handlebars->117->3259", + "default3.handlebars->117->3308", + "default3.handlebars->117->350" ] }, { @@ -49403,8 +49442,8 @@ "zh-chs": "将远程用户锁定在桌面之外", "zh-cht": "將遠程用戶鎖定在桌面之外", "xloc": [ - "default.handlebars->119->2602", - "default3.handlebars->117->2614" + "default.handlebars->119->2604", + "default3.handlebars->117->2616" ] }, { @@ -49433,8 +49472,8 @@ "zh-chs": "记录事件", "zh-cht": "記錄事件", "xloc": [ - "default.handlebars->119->1029", - "default3.handlebars->117->1040" + "default.handlebars->119->1030", + "default3.handlebars->117->1041" ] }, { @@ -49585,8 +49624,8 @@ "zh-chs": "已登录用户", "zh-cht": "登錄用戶", "xloc": [ - "default.handlebars->119->361", - "default3.handlebars->117->372" + "default.handlebars->119->362", + "default3.handlebars->117->373" ] }, { @@ -49678,8 +49717,8 @@ "zh-chs": "登录令牌", "zh-cht": "登錄令牌", "xloc": [ - "default.handlebars->119->3265", - "default3.handlebars->117->3268" + "default.handlebars->119->3267", + "default3.handlebars->117->3270" ] }, { @@ -49712,7 +49751,7 @@ "zh-chs": "登录令牌已创建", "zh-cht": "登入權杖已建立", "xloc": [ - "default3.handlebars->117->360" + "default3.handlebars->117->361" ] }, { @@ -49803,8 +49842,8 @@ "zh-cht": "正在使用的登錄令牌", "xloc": [ "default-mobile.handlebars->53->67", - "default.handlebars->119->219", - "default3.handlebars->117->231" + "default.handlebars->119->220", + "default3.handlebars->117->232" ] }, { @@ -49875,13 +49914,13 @@ { "en": "Lumen", "xloc": [ - "default3.handlebars->117->2110" + "default3.handlebars->117->2112" ] }, { "en": "Lux", "xloc": [ - "default3.handlebars->117->2111" + "default3.handlebars->117->2113" ] }, { @@ -49911,8 +49950,8 @@ "zh-cht": "盧森堡文", "xloc": [ "default-mobile.handlebars->53->225", - "default.handlebars->119->1972", - "default3.handlebars->117->1968", + "default.handlebars->119->1974", + "default3.handlebars->117->1970", "login2.handlebars->17->111" ] }, @@ -49942,16 +49981,16 @@ "zh-chs": "MAC层", "zh-cht": "MAC層", "xloc": [ - "default-mobile.handlebars->53->815", - "default-mobile.handlebars->53->817", - "default.handlebars->119->1646", + "default-mobile.handlebars->53->816", + "default-mobile.handlebars->53->818", "default.handlebars->119->1648", - "default.handlebars->119->1656", + "default.handlebars->119->1650", "default.handlebars->119->1658", - "default3.handlebars->117->1646", + "default.handlebars->119->1660", "default3.handlebars->117->1648", - "default3.handlebars->117->1656", - "default3.handlebars->117->1658" + "default3.handlebars->117->1650", + "default3.handlebars->117->1658", + "default3.handlebars->117->1660" ] }, { @@ -49980,10 +50019,10 @@ "zh-chs": "MAC地址", "zh-cht": "MAC地址", "xloc": [ - "default.handlebars->119->171", - "default.handlebars->119->182", - "default3.handlebars->117->184", - "default3.handlebars->117->195" + "default.handlebars->119->172", + "default.handlebars->119->183", + "default3.handlebars->117->185", + "default3.handlebars->117->196" ] }, { @@ -50012,11 +50051,11 @@ "zh-chs": "MAC:{0}", "zh-cht": "MAC:{0}", "xloc": [ - "default-mobile.handlebars->53->818", - "default.handlebars->119->1649", - "default.handlebars->119->1659", - "default3.handlebars->117->1649", - "default3.handlebars->117->1659" + "default-mobile.handlebars->53->819", + "default.handlebars->119->1651", + "default.handlebars->119->1661", + "default3.handlebars->117->1651", + "default3.handlebars->117->1661" ] }, { @@ -50045,11 +50084,11 @@ "zh-chs": "MAC:{0},网关:{1}", "zh-cht": "MAC:{0},網關:{1}", "xloc": [ - "default-mobile.handlebars->53->816", - "default.handlebars->119->1647", - "default.handlebars->119->1657", - "default3.handlebars->117->1647", - "default3.handlebars->117->1657" + "default-mobile.handlebars->53->817", + "default.handlebars->119->1649", + "default.handlebars->119->1659", + "default3.handlebars->117->1649", + "default3.handlebars->117->1659" ] }, { @@ -50229,20 +50268,20 @@ "xloc": [ "default-mobile.handlebars->53->486", "default-mobile.handlebars->53->543", - "default-mobile.handlebars->53->936", - "default-mobile.handlebars->53->938", + "default-mobile.handlebars->53->937", + "default-mobile.handlebars->53->939", "default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect2", - "default.handlebars->119->1008", - "default.handlebars->119->1778", + "default.handlebars->119->1009", "default.handlebars->119->1780", - "default.handlebars->119->429", - "default.handlebars->119->736", + "default.handlebars->119->1782", + "default.handlebars->119->430", + "default.handlebars->119->737", "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect2", - "default3.handlebars->117->1019", - "default3.handlebars->117->1776", + "default3.handlebars->117->1020", "default3.handlebars->117->1778", - "default3.handlebars->117->440", - "default3.handlebars->117->747", + "default3.handlebars->117->1780", + "default3.handlebars->117->441", + "default3.handlebars->117->748", "default3.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect2" ] }, @@ -50272,8 +50311,8 @@ "zh-chs": "MQTT凭证", "zh-cht": "MQTT憑證", "xloc": [ - "default.handlebars->119->328", - "default3.handlebars->117->338" + "default.handlebars->119->329", + "default3.handlebars->117->339" ] }, { @@ -50302,8 +50341,8 @@ "zh-chs": "MQTT登录", "zh-cht": "MQTT登入", "xloc": [ - "default.handlebars->119->1073", - "default3.handlebars->117->1084" + "default.handlebars->119->1074", + "default3.handlebars->117->1085" ] }, { @@ -50333,8 +50372,8 @@ "zh-cht": "MQTT通道已連接", "xloc": [ "default-mobile.handlebars->53->576", - "default.handlebars->119->1087", - "default3.handlebars->117->1098" + "default.handlebars->119->1088", + "default3.handlebars->117->1099" ] }, { @@ -50363,10 +50402,10 @@ "zh-chs": "MQTT已连接", "zh-cht": "MQTT已連接", "xloc": [ - "default.handlebars->119->1086", - "default.handlebars->119->275", - "default3.handlebars->117->1097", - "default3.handlebars->117->285" + "default.handlebars->119->1087", + "default.handlebars->119->276", + "default3.handlebars->117->1098", + "default3.handlebars->117->286" ] }, { @@ -50395,12 +50434,12 @@ "zh-chs": "与设备的MQTT连接已激活。", "zh-cht": "與裝置的MQTT連接已啟動。", "xloc": [ - "default.handlebars->119->1007", - "default.handlebars->119->428", - "default.handlebars->119->735", - "default3.handlebars->117->1018", - "default3.handlebars->117->439", - "default3.handlebars->117->746" + "default.handlebars->119->1008", + "default.handlebars->119->429", + "default.handlebars->119->736", + "default3.handlebars->117->1019", + "default3.handlebars->117->440", + "default3.handlebars->117->747" ] }, { @@ -50429,8 +50468,8 @@ "zh-chs": "MQTT已断开连接", "zh-cht": "MQTT已斷開連接", "xloc": [ - "default.handlebars->119->279", - "default3.handlebars->117->289" + "default.handlebars->119->280", + "default3.handlebars->117->290" ] }, { @@ -50595,7 +50634,7 @@ "zh-chs": "MacOS 安装程序", "zh-cht": "macOS 安裝程序", "xloc": [ - "default.handlebars->119->1346" + "default.handlebars->119->1347" ] }, { @@ -50624,10 +50663,10 @@ "zh-chs": "MacOS MeshAgent", "zh-cht": "MacOS MeshAgent", "xloc": [ - "default.handlebars->119->2447", - "default.handlebars->119->592", - "default3.handlebars->117->2459", - "default3.handlebars->117->603" + "default.handlebars->119->2449", + "default.handlebars->119->593", + "default3.handlebars->117->2461", + "default3.handlebars->117->604" ] }, { @@ -50686,8 +50725,8 @@ "zh-chs": "主服务器信息", "zh-cht": "主伺服器訊息", "xloc": [ - "default.handlebars->119->3421", - "default3.handlebars->117->3426" + "default.handlebars->119->3423", + "default3.handlebars->117->3428" ] }, { @@ -50717,8 +50756,8 @@ "zh-cht": "馬來文", "xloc": [ "default-mobile.handlebars->53->227", - "default.handlebars->119->1974", - "default3.handlebars->117->1970", + "default.handlebars->119->1976", + "default3.handlebars->117->1972", "login2.handlebars->17->113" ] }, @@ -50749,8 +50788,8 @@ "zh-cht": "馬拉雅拉姆文", "xloc": [ "default-mobile.handlebars->53->228", - "default.handlebars->119->1975", - "default3.handlebars->117->1971", + "default.handlebars->119->1977", + "default3.handlebars->117->1973", "login2.handlebars->17->114" ] }, @@ -50781,8 +50820,8 @@ "zh-cht": "馬耳他文", "xloc": [ "default-mobile.handlebars->53->229", - "default.handlebars->119->1976", - "default3.handlebars->117->1972", + "default.handlebars->119->1978", + "default3.handlebars->117->1974", "login2.handlebars->17->115" ] }, @@ -50813,8 +50852,8 @@ "zh-cht": "管理帳戶圖片", "xloc": [ "default-mobile.handlebars->53->102", - "default.handlebars->119->1796", - "default3.handlebars->117->1793" + "default.handlebars->119->1798", + "default3.handlebars->117->1795" ] }, { @@ -50844,8 +50883,8 @@ "zh-cht": "管理備用碼", "xloc": [ "default-mobile.handlebars->53->90", - "default.handlebars->119->245", - "default3.handlebars->117->256" + "default.handlebars->119->246", + "default3.handlebars->117->257" ] }, { @@ -50874,12 +50913,12 @@ "zh-chs": "管理设备组计算机", "zh-cht": "管理裝置群電腦", "xloc": [ - "default-mobile.handlebars->53->1013", - "default-mobile.handlebars->53->993", - "default.handlebars->119->2371", - "default.handlebars->119->2410", - "default3.handlebars->117->2383", - "default3.handlebars->117->2422" + "default-mobile.handlebars->53->1014", + "default-mobile.handlebars->53->994", + "default.handlebars->119->2373", + "default.handlebars->119->2412", + "default3.handlebars->117->2385", + "default3.handlebars->117->2424" ] }, { @@ -50908,12 +50947,12 @@ "zh-chs": "管理设备组用户", "zh-cht": "管理裝置群用戶", "xloc": [ - "default-mobile.handlebars->53->1012", - "default-mobile.handlebars->53->992", - "default.handlebars->119->2370", - "default.handlebars->119->2409", - "default3.handlebars->117->2382", - "default3.handlebars->117->2421" + "default-mobile.handlebars->53->1013", + "default-mobile.handlebars->53->993", + "default.handlebars->119->2372", + "default.handlebars->119->2411", + "default3.handlebars->117->2384", + "default3.handlebars->117->2423" ] }, { @@ -50942,8 +50981,8 @@ "zh-chs": "管理设备", "zh-cht": "管理裝置", "xloc": [ - "default.handlebars->119->1165", - "default3.handlebars->117->1174" + "default.handlebars->119->1166", + "default3.handlebars->117->1175" ] }, { @@ -50979,8 +51018,8 @@ "zh-chs": "管理录音", "zh-cht": "管理錄音", "xloc": [ - "default.handlebars->119->2855", - "default3.handlebars->117->2864" + "default.handlebars->119->2857", + "default3.handlebars->117->2866" ] }, { @@ -51009,8 +51048,8 @@ "zh-chs": "管理安全密钥", "zh-cht": "管理安全密鑰", "xloc": [ - "default.handlebars->119->254", - "default3.handlebars->117->264" + "default.handlebars->119->255", + "default3.handlebars->117->265" ] }, { @@ -51039,8 +51078,8 @@ "zh-chs": "管理用户组", "zh-cht": "管理用戶群", "xloc": [ - "default.handlebars->119->2854", - "default3.handlebars->117->2863" + "default.handlebars->119->2856", + "default3.handlebars->117->2865" ] }, { @@ -51069,10 +51108,10 @@ "zh-chs": "管理用户", "zh-cht": "管理用戶", "xloc": [ - "default.handlebars->119->1164", - "default.handlebars->119->2853", - "default3.handlebars->117->1173", - "default3.handlebars->117->2862" + "default.handlebars->119->1165", + "default.handlebars->119->2855", + "default3.handlebars->117->1174", + "default3.handlebars->117->2864" ] }, { @@ -51305,8 +51344,8 @@ "zh-chs": "使用软件代理进行管理", "zh-cht": "使用軟體代理進行管理", "xloc": [ - "default.handlebars->119->2124", - "default3.handlebars->117->2139" + "default.handlebars->119->2126", + "default3.handlebars->117->2141" ] }, { @@ -51335,9 +51374,9 @@ "zh-chs": "使用软件代理进行管理", "zh-cht": "使用軟體代理進行管理", "xloc": [ - "default-mobile.handlebars->53->954", - "default.handlebars->119->2183", - "default3.handlebars->117->2194" + "default-mobile.handlebars->53->955", + "default.handlebars->119->2185", + "default3.handlebars->117->2196" ] }, { @@ -51366,8 +51405,8 @@ "zh-chs": "经理", "zh-cht": "經理", "xloc": [ - "default.handlebars->119->2765", - "default3.handlebars->117->2777" + "default.handlebars->119->2767", + "default3.handlebars->117->2779" ] }, { @@ -51445,9 +51484,9 @@ "pl": "ID Producenta", "uk": "ID Виробника", "xloc": [ - "default-mobile.handlebars->53->864", - "default.handlebars->119->1705", - "default3.handlebars->117->1703" + "default-mobile.handlebars->53->865", + "default.handlebars->119->1707", + "default3.handlebars->117->1705" ] }, { @@ -51458,9 +51497,9 @@ "pl": "Wersja Wydania", "uk": "Версія Виробника", "xloc": [ - "default-mobile.handlebars->53->865", - "default.handlebars->119->1706", - "default3.handlebars->117->1704" + "default-mobile.handlebars->53->866", + "default.handlebars->119->1708", + "default3.handlebars->117->1706" ] }, { @@ -51490,8 +51529,8 @@ "zh-cht": "毛利文", "xloc": [ "default-mobile.handlebars->53->230", - "default.handlebars->119->1977", - "default3.handlebars->117->1973", + "default.handlebars->119->1979", + "default3.handlebars->117->1975", "login2.handlebars->17->116" ] }, @@ -51606,16 +51645,16 @@ "zh-cht": "馬拉地文", "xloc": [ "default-mobile.handlebars->53->231", - "default.handlebars->119->1978", - "default3.handlebars->117->1974", + "default.handlebars->119->1980", + "default3.handlebars->117->1976", "login2.handlebars->17->117" ] }, { "en": "Markdown syntax supported", "xloc": [ - "default.handlebars->119->1190", - "default3.handlebars->117->1199" + "default.handlebars->119->1191", + "default3.handlebars->117->1200" ] }, { @@ -51643,15 +51682,15 @@ "zh-chs": "掩码:{0}", "zh-cht": "掩碼:{0}", "xloc": [ - "default-mobile.handlebars->53->822", - "default.handlebars->119->1663", - "default3.handlebars->117->1663" + "default-mobile.handlebars->53->823", + "default.handlebars->119->1665", + "default3.handlebars->117->1665" ] }, { "en": "Materia", "xloc": [ - "default3.handlebars->117->2112" + "default3.handlebars->117->2114" ] }, { @@ -51680,8 +51719,8 @@ "zh-chs": "达到连接数量上限", "zh-cht": "達到連接數量上限", "xloc": [ - "default.handlebars->119->3363", - "default3.handlebars->117->3368" + "default.handlebars->119->3365", + "default3.handlebars->117->3370" ] }, { @@ -51710,8 +51749,8 @@ "zh-chs": "已达到最大键数。", "zh-cht": "已達到最大鍵數。", "xloc": [ - "default.handlebars->119->253", - "default3.handlebars->117->263" + "default.handlebars->119->254", + "default3.handlebars->117->264" ] }, { @@ -51806,11 +51845,11 @@ "zh-chs": "Megabyte", "zh-cht": "Megabyte", "xloc": [ - "default.handlebars->119->3406", - "default.handlebars->119->3411", + "default.handlebars->119->3408", + "default.handlebars->119->3413", "default.handlebars->container->column_l->p13->p13toolbar->1->4->1->1->p13sizedropdown->7", - "default3.handlebars->117->3411", - "default3.handlebars->117->3416", + "default3.handlebars->117->3413", + "default3.handlebars->117->3418", "default3.handlebars->container->column_l->p13->p13toolbar->1->4->1->1->p13sizedropdown->7" ] }, @@ -51840,20 +51879,20 @@ "zh-chs": "内存", "zh-cht": "記憶體", "xloc": [ - "default-mobile.handlebars->53->881", - "default-mobile.handlebars->53->887", - "default-mobile.handlebars->53->893", - "default.handlebars->119->1616", - "default.handlebars->119->1722", - "default.handlebars->119->1728", - "default.handlebars->119->1734", - "default.handlebars->119->3384", + "default-mobile.handlebars->53->882", + "default-mobile.handlebars->53->888", + "default-mobile.handlebars->53->894", + "default.handlebars->119->1617", + "default.handlebars->119->1724", + "default.handlebars->119->1730", + "default.handlebars->119->1736", + "default.handlebars->119->3386", "default.handlebars->container->column_l->p40->3->1->p40type->3", - "default3.handlebars->117->1616", - "default3.handlebars->117->1720", - "default3.handlebars->117->1726", - "default3.handlebars->117->1732", - "default3.handlebars->117->3389", + "default3.handlebars->117->1617", + "default3.handlebars->117->1722", + "default3.handlebars->117->1728", + "default3.handlebars->117->1734", + "default3.handlebars->117->3391", "default3.handlebars->container->column_l->p40->3->3->p40type->3" ] }, @@ -51887,37 +51926,37 @@ "default-mobile.handlebars->53->515", "default-mobile.handlebars->53->573", "default-mobile.handlebars->53->798", - "default-mobile.handlebars->53->806", - "default.handlebars->119->1000", - "default.handlebars->119->1629", - "default.handlebars->119->1637", - "default.handlebars->119->623", - "default.handlebars->119->627", - "default.handlebars->119->631", - "default.handlebars->119->642", - "default.handlebars->119->646", - "default.handlebars->119->650", - "default.handlebars->119->670", - "default.handlebars->119->674", - "default.handlebars->119->678", - "default.handlebars->119->685", - "default.handlebars->119->691", - "default.handlebars->119->921", - "default3.handlebars->117->1011", - "default3.handlebars->117->1629", - "default3.handlebars->117->1637", - "default3.handlebars->117->634", - "default3.handlebars->117->638", - "default3.handlebars->117->642", - "default3.handlebars->117->653", - "default3.handlebars->117->657", - "default3.handlebars->117->661", - "default3.handlebars->117->681", - "default3.handlebars->117->685", - "default3.handlebars->117->689", - "default3.handlebars->117->696", - "default3.handlebars->117->702", - "default3.handlebars->117->932" + "default-mobile.handlebars->53->807", + "default.handlebars->119->1001", + "default.handlebars->119->1630", + "default.handlebars->119->1639", + "default.handlebars->119->624", + "default.handlebars->119->628", + "default.handlebars->119->632", + "default.handlebars->119->643", + "default.handlebars->119->647", + "default.handlebars->119->651", + "default.handlebars->119->671", + "default.handlebars->119->675", + "default.handlebars->119->679", + "default.handlebars->119->686", + "default.handlebars->119->692", + "default.handlebars->119->922", + "default3.handlebars->117->1012", + "default3.handlebars->117->1630", + "default3.handlebars->117->1639", + "default3.handlebars->117->635", + "default3.handlebars->117->639", + "default3.handlebars->117->643", + "default3.handlebars->117->654", + "default3.handlebars->117->658", + "default3.handlebars->117->662", + "default3.handlebars->117->682", + "default3.handlebars->117->686", + "default3.handlebars->117->690", + "default3.handlebars->117->697", + "default3.handlebars->117->703", + "default3.handlebars->117->933" ] }, { @@ -51946,9 +51985,9 @@ "zh-chs": "Mesh代理控制台", "zh-cht": "網格代理控制台", "xloc": [ - "default-mobile.handlebars->53->1000", - "default.handlebars->119->2380", - "default3.handlebars->117->2392" + "default-mobile.handlebars->53->1001", + "default.handlebars->119->2382", + "default3.handlebars->117->2394" ] }, { @@ -52029,8 +52068,8 @@ "zh-chs": "网格中继", "zh-cht": "Mesh Relay", "xloc": [ - "default.handlebars->119->1006", - "default3.handlebars->117->1017" + "default.handlebars->119->1007", + "default3.handlebars->117->1018" ] }, { @@ -52059,12 +52098,12 @@ "zh-chs": "已连接Mesh代理并准备使用。", "zh-cht": "已連接Mesh Agent並準備使用。", "xloc": [ - "default.handlebars->119->420", - "default.handlebars->119->727", - "default.handlebars->119->999", - "default3.handlebars->117->1010", - "default3.handlebars->117->431", - "default3.handlebars->117->738" + "default.handlebars->119->1000", + "default.handlebars->119->421", + "default.handlebars->119->728", + "default3.handlebars->117->1011", + "default3.handlebars->117->432", + "default3.handlebars->117->739" ] }, { @@ -52093,12 +52132,12 @@ "zh-chs": "Mesh代理可以经过其他代理作为中继访问得到。", "zh-cht": "Mesh Agent可以經過其他代理作為中繼訪問得到。", "xloc": [ - "default.handlebars->119->1005", - "default.handlebars->119->426", - "default.handlebars->119->733", - "default3.handlebars->117->1016", - "default3.handlebars->117->437", - "default3.handlebars->117->744" + "default.handlebars->119->1006", + "default.handlebars->119->427", + "default.handlebars->119->734", + "default3.handlebars->117->1017", + "default3.handlebars->117->438", + "default3.handlebars->117->745" ] }, { @@ -52127,10 +52166,10 @@ "zh-chs": "MeshAction(.txt)", "zh-cht": "MeshAction(.txt)", "xloc": [ - "default.handlebars->119->1364", - "default.handlebars->119->1366", - "default3.handlebars->117->1366", - "default3.handlebars->117->1368" + "default.handlebars->119->1365", + "default.handlebars->119->1367", + "default3.handlebars->117->1367", + "default3.handlebars->117->1369" ] }, { @@ -52159,8 +52198,8 @@ "zh-chs": "MeshAgent流量", "zh-cht": "MeshAgent流量", "xloc": [ - "default.handlebars->119->3423", - "default3.handlebars->117->3428" + "default.handlebars->119->3425", + "default3.handlebars->117->3430" ] }, { @@ -52189,8 +52228,8 @@ "zh-chs": "MeshAgent更新", "zh-cht": "MeshAgent更新", "xloc": [ - "default.handlebars->119->3424", - "default3.handlebars->117->3429" + "default.handlebars->119->3426", + "default3.handlebars->117->3431" ] }, { @@ -52219,12 +52258,12 @@ "zh-chs": "网格中心", "zh-cht": "網格中心", "xloc": [ - "default.handlebars->119->1200", - "default.handlebars->119->1214", - "default.handlebars->119->801", - "default3.handlebars->117->1209", - "default3.handlebars->117->1223", - "default3.handlebars->117->812" + "default.handlebars->119->1201", + "default.handlebars->119->1215", + "default.handlebars->119->802", + "default3.handlebars->117->1210", + "default3.handlebars->117->1224", + "default3.handlebars->117->813" ] }, { @@ -52279,14 +52318,14 @@ "zh-chs": "MeshCentral 助手", "zh-cht": "MeshCentral 助手", "xloc": [ - "default.handlebars->119->2448", - "default.handlebars->119->566", - "default.handlebars->119->593", - "default.handlebars->119->606", - "default3.handlebars->117->2460", - "default3.handlebars->117->577", - "default3.handlebars->117->604", - "default3.handlebars->117->617" + "default.handlebars->119->2450", + "default.handlebars->119->567", + "default.handlebars->119->594", + "default.handlebars->119->607", + "default3.handlebars->117->2462", + "default3.handlebars->117->578", + "default3.handlebars->117->605", + "default3.handlebars->117->618" ] }, { @@ -52315,10 +52354,10 @@ "zh-chs": "适用于 Windows 的 MeshCentral 助手", "zh-cht": "適用於 Windows 的 MeshCentral 助手", "xloc": [ - "default.handlebars->119->662", - "default.handlebars->119->666", - "default3.handlebars->117->673", - "default3.handlebars->117->677" + "default.handlebars->119->663", + "default.handlebars->119->667", + "default3.handlebars->117->674", + "default3.handlebars->117->678" ] }, { @@ -52373,8 +52412,8 @@ "zh-chs": "MeshCentral Assistant 是一个 Windows 工具,用户可以使用它来寻求帮助。使用下面的链接下载将连接到设备组 \\\"{0}\\\" 的版本。", "zh-cht": "MeshCentral Assistant 是一個 Windows 工具,用戶可以使用它來尋求幫助。使用下面的鏈接下載將連接到設備組 \\\"{0}\\\" 的版本。", "xloc": [ - "default.handlebars->119->661", - "default3.handlebars->117->672" + "default.handlebars->119->662", + "default3.handlebars->117->673" ] }, { @@ -52403,8 +52442,8 @@ "zh-chs": "MeshCentral Assistant 是一个 Windows 工具,用户可以使用它来寻求帮助。使用下面的链接下载将监控后台代理的版本。", "zh-cht": "MeshCentral Assistant 是一個 Windows 工具,用戶可以使用它來尋求幫助。使用下面的鏈接下載將監控後台代理的版本。", "xloc": [ - "default.handlebars->119->665", - "default3.handlebars->117->676" + "default.handlebars->119->666", + "default3.handlebars->117->677" ] }, { @@ -52488,8 +52527,8 @@ "zh-chs": "MeshCentral路由器", "zh-cht": "MeshCentral Router", "xloc": [ - "default.handlebars->119->1349", - "default3.handlebars->117->1351" + "default.handlebars->119->1350", + "default3.handlebars->117->1352" ] }, { @@ -52544,8 +52583,8 @@ "zh-chs": "MeshCentral 路由器链接", "zh-cht": "MeshCentral 路由器鏈接", "xloc": [ - "default.handlebars->119->360", - "default3.handlebars->117->371" + "default.handlebars->119->361", + "default3.handlebars->117->372" ] }, { @@ -52626,8 +52665,8 @@ "zh-chs": "MeshCentral 路由器是Windows工具,用于TCP端口映射。例如,您可以通过该服务器将RDP放入远程设备。", "zh-cht": "MeshCentral Router是Windows工具,用於TCP介面映射。例如,你可以通過該伺服器將RDP放入遠程裝置。", "xloc": [ - "default.handlebars->119->1344", - "default3.handlebars->117->1348" + "default.handlebars->119->1345", + "default3.handlebars->117->1349" ] }, { @@ -52682,8 +52721,8 @@ "zh-chs": "MeshCentral服务器错误", "zh-cht": "MeshCentral伺服器錯誤", "xloc": [ - "default.handlebars->119->213", - "default3.handlebars->117->226" + "default.handlebars->119->214", + "default3.handlebars->117->227" ] }, { @@ -52712,8 +52751,8 @@ "zh-chs": "MeshCentral服务器同级化", "zh-cht": "MeshCentral伺服器同級化", "xloc": [ - "default.handlebars->119->3422", - "default3.handlebars->117->3427" + "default.handlebars->119->3424", + "default3.handlebars->117->3429" ] }, { @@ -52771,12 +52810,12 @@ "zh-chs": "MeshCentral版本", "zh-cht": "MeshCentral版本", "xloc": [ - "default.handlebars->119->206", - "default.handlebars->119->208", - "default.handlebars->119->2169", - "default3.handlebars->117->2182", - "default3.handlebars->117->219", - "default3.handlebars->117->221" + "default.handlebars->119->207", + "default.handlebars->119->209", + "default.handlebars->119->2171", + "default3.handlebars->117->2184", + "default3.handlebars->117->220", + "default3.handlebars->117->222" ] }, { @@ -52805,12 +52844,12 @@ "zh-chs": "MeshCmd", "zh-cht": "MeshCmd", "xloc": [ - "default.handlebars->119->1054", - "default.handlebars->119->1362", - "default.handlebars->119->403", - "default3.handlebars->117->1065", - "default3.handlebars->117->1364", - "default3.handlebars->117->414" + "default.handlebars->119->1055", + "default.handlebars->119->1363", + "default.handlebars->119->404", + "default3.handlebars->117->1066", + "default3.handlebars->117->1365", + "default3.handlebars->117->415" ] }, { @@ -52839,8 +52878,8 @@ "zh-chs": "MeshCmd(Linux ARM,32位)", "zh-cht": "MeshCmd(Linux ARM,32位)", "xloc": [ - "default.handlebars->119->1375", - "default3.handlebars->117->1377" + "default.handlebars->119->1376", + "default3.handlebars->117->1378" ] }, { @@ -52869,8 +52908,8 @@ "zh-chs": "MeshCmd(Linux ARM,64位)", "zh-cht": "MeshCmd(Linux ARM,64位)", "xloc": [ - "default.handlebars->119->1376", - "default3.handlebars->117->1378" + "default.handlebars->119->1377", + "default3.handlebars->117->1379" ] }, { @@ -52899,8 +52938,8 @@ "zh-chs": "MeshCmd(Linux x86,32bit)", "zh-cht": "MeshCmd(Linux x86,32bit)", "xloc": [ - "default.handlebars->119->1371", - "default3.handlebars->117->1373" + "default.handlebars->119->1372", + "default3.handlebars->117->1374" ] }, { @@ -52929,8 +52968,8 @@ "zh-chs": "MeshCmd(Linux x86,64位)", "zh-cht": "MeshCmd(Linux x86,64位)", "xloc": [ - "default.handlebars->119->1372", - "default3.handlebars->117->1374" + "default.handlebars->119->1373", + "default3.handlebars->117->1375" ] }, { @@ -52942,8 +52981,8 @@ "pl": "MeshCmd (plik wykonywalny Win ARM-64)", "uk": "MeshCmd (Win ARM-64 програма)", "xloc": [ - "default.handlebars->119->1370", - "default3.handlebars->117->1372" + "default.handlebars->119->1371", + "default3.handlebars->117->1373" ] }, { @@ -52955,8 +52994,8 @@ "pl": "MeshCmd (plik wykonywalny Win x86-32)", "uk": "MeshCmd (Win x86 32-бітна програма)", "xloc": [ - "default.handlebars->119->1368", - "default3.handlebars->117->1370" + "default.handlebars->119->1369", + "default3.handlebars->117->1371" ] }, { @@ -52968,8 +53007,8 @@ "pl": "MeshCmd (plik wykonywalny Win x86-64)", "uk": "MeshCmd (Win x86-64 програма)", "xloc": [ - "default.handlebars->119->1369", - "default3.handlebars->117->1371" + "default.handlebars->119->1370", + "default3.handlebars->117->1372" ] }, { @@ -53076,8 +53115,8 @@ "zh-chs": "MeshCmd(macOS,ARM-64位)", "zh-cht": "MeshCmd(macOS,ARM-64位)", "xloc": [ - "default.handlebars->119->1374", - "default3.handlebars->117->1376" + "default.handlebars->119->1375", + "default3.handlebars->117->1377" ] }, { @@ -53106,8 +53145,8 @@ "zh-chs": "MeshCmd(macOS,x86-ARM-64位)", "zh-cht": "MeshCmd(macOS,x86-ARM-64位)", "xloc": [ - "default.handlebars->119->1373", - "default3.handlebars->117->1375" + "default.handlebars->119->1374", + "default3.handlebars->117->1376" ] }, { @@ -53136,8 +53175,8 @@ "zh-chs": "MeshCmd是一个可以执行许多不同操作的命令行工具。可以选择下载和编辑操作档案以提供服务器信息和凭据。", "zh-cht": "MeshCmd是一個可以執行許多不同操作的命令行工具。可以選擇下載和編輯操作檔案以提供伺服器訊息和憑據。", "xloc": [ - "default.handlebars->119->1359", - "default3.handlebars->117->1361" + "default.handlebars->119->1360", + "default3.handlebars->117->1362" ] }, { @@ -53248,16 +53287,16 @@ "zh-chs": "消息", "zh-cht": "訊息", "xloc": [ - "default.handlebars->119->1033", - "default.handlebars->119->1324", - "default.handlebars->119->3028", - "default.handlebars->119->3229", - "default.handlebars->119->578", - "default3.handlebars->117->1044", - "default3.handlebars->117->1329", - "default3.handlebars->117->3037", - "default3.handlebars->117->3232", - "default3.handlebars->117->589" + "default.handlebars->119->1034", + "default.handlebars->119->1325", + "default.handlebars->119->3030", + "default.handlebars->119->3231", + "default.handlebars->119->579", + "default3.handlebars->117->1045", + "default3.handlebars->117->1330", + "default3.handlebars->117->3039", + "default3.handlebars->117->3234", + "default3.handlebars->117->590" ] }, { @@ -53286,10 +53325,10 @@ "zh-chs": "留言框", "zh-cht": "留言框", "xloc": [ - "default.handlebars->119->1205", - "default.handlebars->119->780", - "default3.handlebars->117->1214", - "default3.handlebars->117->791" + "default.handlebars->119->1206", + "default.handlebars->119->781", + "default3.handlebars->117->1215", + "default3.handlebars->117->792" ] }, { @@ -53318,8 +53357,8 @@ "zh-chs": "消息调度器", "zh-cht": "電郵調度器", "xloc": [ - "default.handlebars->119->3420", - "default3.handlebars->117->3425" + "default.handlebars->119->3422", + "default3.handlebars->117->3427" ] }, { @@ -53333,8 +53372,8 @@ "pl": "Błąd wiadomości", "uk": "Помилка повідомлення", "xloc": [ - "default.handlebars->119->3348", - "default3.handlebars->117->3353" + "default.handlebars->119->3350", + "default3.handlebars->117->3355" ] }, { @@ -53348,8 +53387,8 @@ "pl": "Błąd wiadomości: {0}", "uk": "Помилка повідомлення: {0}", "xloc": [ - "default.handlebars->119->3349", - "default3.handlebars->117->3354" + "default.handlebars->119->3351", + "default3.handlebars->117->3356" ] }, { @@ -53378,8 +53417,8 @@ "pl": "Wiadomość wysłana.", "uk": "Повідомлення:", "xloc": [ - "default.handlebars->119->3347", - "default3.handlebars->117->3352" + "default.handlebars->119->3349", + "default3.handlebars->117->3354" ] }, { @@ -53451,10 +53490,10 @@ "pl": "Wiadomości", "uk": "Обмін повідомленнями", "xloc": [ - "default.handlebars->119->2972", - "default.handlebars->119->3021", - "default3.handlebars->117->2981", - "default3.handlebars->117->3030", + "default.handlebars->119->2974", + "default.handlebars->119->3023", + "default3.handlebars->117->2983", + "default3.handlebars->117->3032", "login.handlebars->container->column_l->centralTable->1->0->logincell->resettokenpanel->1->5->1->2->1->3", "login.handlebars->container->column_l->centralTable->1->0->logincell->tokenpanel->1->7->1->4->1->3", "login2.handlebars->centralTable->1->0->logincell->resettokenpanel->resettokenpanelform->5->1->2farow2->1->3", @@ -53472,10 +53511,10 @@ "pl": "Wiadomości ({0})", "uk": "Обмін повідомленнями ({0})", "xloc": [ - "default.handlebars->119->2224", - "default.handlebars->119->996", - "default3.handlebars->117->1007", - "default3.handlebars->117->2235" + "default.handlebars->119->2226", + "default.handlebars->119->997", + "default3.handlebars->117->1008", + "default3.handlebars->117->2237" ] }, { @@ -53488,18 +53527,18 @@ "pl": "Powiadomienia w Komunikatorze", "uk": "Сповіщення месенджера", "xloc": [ - "default.handlebars->119->1135", - "default.handlebars->119->1805", - "default.handlebars->119->1825", - "default.handlebars->119->2469", - "default.handlebars->119->269", - "default.handlebars->119->3068", - "default3.handlebars->117->1144", - "default3.handlebars->117->1802", - "default3.handlebars->117->1822", - "default3.handlebars->117->2481", - "default3.handlebars->117->279", - "default3.handlebars->117->3077" + "default.handlebars->119->1136", + "default.handlebars->119->1807", + "default.handlebars->119->1827", + "default.handlebars->119->2471", + "default.handlebars->119->270", + "default.handlebars->119->3070", + "default3.handlebars->117->1145", + "default3.handlebars->117->1804", + "default3.handlebars->117->1824", + "default3.handlebars->117->2483", + "default3.handlebars->117->280", + "default3.handlebars->117->3079" ] }, { @@ -53513,8 +53552,8 @@ "pl": "Konto komunnikatora tego użytkownika.", "uk": "Месенджер", "xloc": [ - "default.handlebars->119->3048", - "default3.handlebars->117->3057" + "default.handlebars->119->3050", + "default3.handlebars->117->3059" ] }, { @@ -53528,8 +53567,8 @@ "pl": "Wiadomości włączone", "uk": "Обмін повідомленнями ввімкнено", "xloc": [ - "default.handlebars->119->2973", - "default3.handlebars->117->2982" + "default.handlebars->119->2975", + "default3.handlebars->117->2984" ] }, { @@ -53558,14 +53597,14 @@ "zh-chs": "信使", "zh-cht": "信使", "xloc": [ - "default.handlebars->119->3165", - "default.handlebars->119->3175", - "default.handlebars->119->3241", - "default.handlebars->119->3294", - "default3.handlebars->117->3168", - "default3.handlebars->117->3178", - "default3.handlebars->117->3244", - "default3.handlebars->117->3297" + "default.handlebars->119->3167", + "default.handlebars->119->3177", + "default.handlebars->119->3243", + "default.handlebars->119->3296", + "default3.handlebars->117->3170", + "default3.handlebars->117->3180", + "default3.handlebars->117->3246", + "default3.handlebars->117->3299" ] }, { @@ -53578,8 +53617,8 @@ "pl": "Wiadomości", "uk": "Обмін повідомленнями", "xloc": [ - "default.handlebars->119->3261", - "default3.handlebars->117->3264" + "default.handlebars->119->3263", + "default3.handlebars->117->3266" ] }, { @@ -53683,7 +53722,7 @@ { "en": "Minty", "xloc": [ - "default3.handlebars->117->2113" + "default3.handlebars->117->2115" ] }, { @@ -53772,9 +53811,9 @@ "zh-chs": "移动设备", "zh-cht": "移動設備", "xloc": [ - "default-mobile.handlebars->53->813", - "default.handlebars->119->1644", - "default3.handlebars->117->1644" + "default-mobile.handlebars->53->814", + "default.handlebars->119->1646", + "default3.handlebars->117->1646" ] }, { @@ -53803,8 +53842,8 @@ "zh-chs": "移动设备", "zh-cht": "移動設備", "xloc": [ - "default.handlebars->119->605", - "default3.handlebars->117->616" + "default.handlebars->119->606", + "default3.handlebars->117->617" ] }, { @@ -53814,9 +53853,9 @@ "pl": "Tryb", "uk": "Режим", "xloc": [ - "default-mobile.handlebars->53->853", - "default.handlebars->119->1694", - "default3.handlebars->117->1692" + "default-mobile.handlebars->53->854", + "default.handlebars->119->1696", + "default3.handlebars->117->1694" ] }, { @@ -53845,14 +53884,14 @@ "zh-chs": "模型", "zh-cht": "模型", "xloc": [ - "default-mobile.handlebars->53->807", - "default-mobile.handlebars->53->894", - "default.handlebars->119->1638", - "default.handlebars->119->1735", - "default.handlebars->119->2128", - "default3.handlebars->117->1638", - "default3.handlebars->117->1733", - "default3.handlebars->117->2143" + "default-mobile.handlebars->53->808", + "default-mobile.handlebars->53->895", + "default.handlebars->119->1640", + "default.handlebars->119->1737", + "default.handlebars->119->2130", + "default3.handlebars->117->1640", + "default3.handlebars->117->1735", + "default3.handlebars->117->2145" ] }, { @@ -53888,8 +53927,8 @@ "zh-chs": "修改节点位置", "zh-cht": "修改節點位置", "xloc": [ - "default.handlebars->119->871", - "default3.handlebars->117->882" + "default.handlebars->119->872", + "default3.handlebars->117->883" ] }, { @@ -53919,8 +53958,8 @@ "zh-cht": "摩爾達維亞文", "xloc": [ "default-mobile.handlebars->53->232", - "default.handlebars->119->1979", - "default3.handlebars->117->1975", + "default.handlebars->119->1981", + "default3.handlebars->117->1977", "login2.handlebars->17->118" ] }, @@ -53953,7 +53992,7 @@ { "en": "Morph", "xloc": [ - "default3.handlebars->117->2114" + "default3.handlebars->117->2116" ] }, { @@ -53982,9 +54021,9 @@ "zh-chs": "母板", "zh-cht": "母板", "xloc": [ - "default-mobile.handlebars->53->862", - "default.handlebars->119->1703", - "default3.handlebars->117->1701" + "default-mobile.handlebars->53->863", + "default.handlebars->119->1705", + "default3.handlebars->117->1703" ] }, { @@ -54013,8 +54052,8 @@ "zh-chs": "将此设备移到其他设备组", "zh-cht": "將此裝置移至其他裝置群", "xloc": [ - "default.handlebars->119->1045", - "default3.handlebars->117->1056" + "default.handlebars->119->1046", + "default3.handlebars->117->1057" ] }, { @@ -54043,8 +54082,8 @@ "zh-chs": "移至设备组", "zh-cht": "移至裝置群", "xloc": [ - "default.handlebars->119->744", - "default3.handlebars->117->755" + "default.handlebars->119->745", + "default3.handlebars->117->756" ] }, { @@ -54073,8 +54112,8 @@ "zh-chs": "移动:“{0}”到“{1}”", "zh-cht": "移動:“{0}”到“{1}”", "xloc": [ - "default.handlebars->119->2601", - "default3.handlebars->117->2613" + "default.handlebars->119->2603", + "default3.handlebars->117->2615" ] }, { @@ -54103,8 +54142,8 @@ "zh-chs": "将设备{0}移动到组{1}", "zh-cht": "將設備{0}移動到組{1}", "xloc": [ - "default.handlebars->119->2634", - "default3.handlebars->117->2646" + "default.handlebars->119->2636", + "default3.handlebars->117->2648" ] }, { @@ -54163,10 +54202,10 @@ "zh-chs": "多个问题", "zh-cht": "多個問題", "xloc": [ - "default.handlebars->119->2482", - "default.handlebars->119->2496", - "default3.handlebars->117->2494", - "default3.handlebars->117->2508" + "default.handlebars->119->2484", + "default.handlebars->119->2498", + "default3.handlebars->117->2496", + "default3.handlebars->117->2510" ] }, { @@ -54221,8 +54260,8 @@ "zh-chs": "多路复用器", "zh-cht": "多工器", "xloc": [ - "default.handlebars->119->3187", - "default3.handlebars->117->3190" + "default.handlebars->119->3189", + "default3.handlebars->117->3192" ] }, { @@ -54252,10 +54291,10 @@ "zh-cht": "必須以用戶身份運行", "xloc": [ "default-mobile.handlebars->53->624", - "default.handlebars->119->1296", - "default.handlebars->119->821", - "default3.handlebars->117->1305", - "default3.handlebars->117->832" + "default.handlebars->119->1297", + "default.handlebars->119->822", + "default3.handlebars->117->1306", + "default3.handlebars->117->833" ] }, { @@ -54489,8 +54528,8 @@ "zh-chs": "我的服务器控制台", "zh-cht": "我的伺服器控制台", "xloc": [ - "default.handlebars->119->1773", - "default3.handlebars->117->1771" + "default.handlebars->119->1775", + "default3.handlebars->117->1773" ] }, { @@ -54733,10 +54772,10 @@ "zh-chs": "我的密钥", "zh-cht": "我的密鍵", "xloc": [ - "default.handlebars->119->1854", - "default.handlebars->119->1857", - "default3.handlebars->117->1850", - "default3.handlebars->117->1853" + "default.handlebars->119->1856", + "default.handlebars->119->1859", + "default3.handlebars->117->1852", + "default3.handlebars->117->1855" ] }, { @@ -54765,8 +54804,8 @@ "zh-chs": "不支持 NLA", "zh-cht": "不支持 NLA", "xloc": [ - "default.handlebars->119->1396", - "default3.handlebars->117->1397" + "default.handlebars->119->1397", + "default3.handlebars->117->1398" ] }, { @@ -54883,8 +54922,8 @@ "zh-chs": "导航到下面的URL,授予访问权限并将令牌代码复制回去。", "zh-cht": "導航到下面的URL,授予訪問權限並將令牌代碼複製回去。", "xloc": [ - "default.handlebars->119->331", - "default3.handlebars->117->341" + "default.handlebars->119->332", + "default3.handlebars->117->342" ] }, { @@ -54916,51 +54955,51 @@ "default-mobile.handlebars->53->346", "default-mobile.handlebars->53->498", "default-mobile.handlebars->53->756", - "default-mobile.handlebars->53->856", - "default-mobile.handlebars->53->959", - "default-mobile.handlebars->53->982", - "default.handlebars->119->1457", - "default.handlebars->119->1473", - "default.handlebars->119->1617", - "default.handlebars->119->167", - "default.handlebars->119->1697", - "default.handlebars->119->181", - "default.handlebars->119->2118", - "default.handlebars->119->2146", - "default.handlebars->119->2151", - "default.handlebars->119->2188", - "default.handlebars->119->2328", - "default.handlebars->119->2746", - "default.handlebars->119->2864", - "default.handlebars->119->2880", - "default.handlebars->119->2887", - "default.handlebars->119->2938", - "default.handlebars->119->2957", - "default.handlebars->119->344", - "default.handlebars->119->900", + "default-mobile.handlebars->53->857", + "default-mobile.handlebars->53->960", + "default-mobile.handlebars->53->983", + "default.handlebars->119->1458", + "default.handlebars->119->1474", + "default.handlebars->119->1618", + "default.handlebars->119->168", + "default.handlebars->119->1699", + "default.handlebars->119->182", + "default.handlebars->119->2120", + "default.handlebars->119->2148", + "default.handlebars->119->2153", + "default.handlebars->119->2190", + "default.handlebars->119->2330", + "default.handlebars->119->2748", + "default.handlebars->119->2866", + "default.handlebars->119->2882", + "default.handlebars->119->2889", + "default.handlebars->119->2940", + "default.handlebars->119->2959", + "default.handlebars->119->345", + "default.handlebars->119->901", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader->3", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsServiceTab->deskToolsServiceHeader->3", "default.handlebars->container->column_l->p42->p42tbl->1->0->2", - "default3.handlebars->117->1459", - "default3.handlebars->117->1474", - "default3.handlebars->117->1617", - "default3.handlebars->117->1695", - "default3.handlebars->117->180", - "default3.handlebars->117->194", - "default3.handlebars->117->2133", - "default3.handlebars->117->2161", - "default3.handlebars->117->2166", - "default3.handlebars->117->2199", - "default3.handlebars->117->2338", - "default3.handlebars->117->2339", - "default3.handlebars->117->2758", - "default3.handlebars->117->2873", - "default3.handlebars->117->2889", - "default3.handlebars->117->2896", - "default3.handlebars->117->2947", - "default3.handlebars->117->2966", - "default3.handlebars->117->354", - "default3.handlebars->117->911", + "default3.handlebars->117->1460", + "default3.handlebars->117->1475", + "default3.handlebars->117->1618", + "default3.handlebars->117->1697", + "default3.handlebars->117->181", + "default3.handlebars->117->195", + "default3.handlebars->117->2135", + "default3.handlebars->117->2163", + "default3.handlebars->117->2168", + "default3.handlebars->117->2201", + "default3.handlebars->117->2340", + "default3.handlebars->117->2341", + "default3.handlebars->117->2760", + "default3.handlebars->117->2875", + "default3.handlebars->117->2891", + "default3.handlebars->117->2898", + "default3.handlebars->117->2949", + "default3.handlebars->117->2968", + "default3.handlebars->117->355", + "default3.handlebars->117->912", "default3.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader->3", "default3.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsServiceTab->deskToolsServiceHeader->3", "default3.handlebars->container->column_l->p42->p42tbl->1->0->5" @@ -54992,8 +55031,8 @@ "zh-chs": "名称(可选)", "zh-cht": "名稱(可選)", "xloc": [ - "default.handlebars->119->557", - "default3.handlebars->117->568" + "default.handlebars->119->558", + "default3.handlebars->117->569" ] }, { @@ -55022,7 +55061,7 @@ "zh-chs": "名称1,名称2,名称3", "zh-cht": "名稱1,名稱2,名稱3", "xloc": [ - "default.handlebars->119->2845" + "default.handlebars->119->2847" ] }, { @@ -55052,8 +55091,8 @@ "zh-cht": "納瓦霍文", "xloc": [ "default-mobile.handlebars->53->233", - "default.handlebars->119->1980", - "default3.handlebars->117->1976", + "default.handlebars->119->1982", + "default3.handlebars->117->1978", "login2.handlebars->17->119" ] }, @@ -55084,8 +55123,8 @@ "zh-cht": "恩東加", "xloc": [ "default-mobile.handlebars->53->234", - "default.handlebars->119->1981", - "default3.handlebars->117->1977", + "default.handlebars->119->1983", + "default3.handlebars->117->1979", "login2.handlebars->17->120" ] }, @@ -55116,8 +55155,8 @@ "zh-cht": "尼泊爾文", "xloc": [ "default-mobile.handlebars->53->235", - "default.handlebars->119->1982", - "default3.handlebars->117->1978", + "default.handlebars->119->1984", + "default3.handlebars->117->1980", "login2.handlebars->17->121" ] }, @@ -55147,8 +55186,8 @@ "zh-chs": "网络接口", "zh-cht": "網絡介面", "xloc": [ - "default.handlebars->119->1342", - "default3.handlebars->117->1346" + "default.handlebars->119->1343", + "default3.handlebars->117->1347" ] }, { @@ -55189,8 +55228,8 @@ "pl": "Zapisy informacji o interfejsach sieciowych", "uk": "Записати інформацію про мережевий інтерфейс", "xloc": [ - "default.handlebars->119->3274", - "default3.handlebars->117->3277" + "default.handlebars->119->3276", + "default3.handlebars->117->3279" ] }, { @@ -55219,11 +55258,11 @@ "zh-chs": "网络", "zh-cht": "網路", "xloc": [ - "default-mobile.handlebars->53->830", - "default.handlebars->119->1654", - "default.handlebars->119->1671", - "default3.handlebars->117->1654", - "default3.handlebars->117->1671" + "default-mobile.handlebars->53->831", + "default.handlebars->119->1656", + "default.handlebars->119->1673", + "default3.handlebars->117->1656", + "default3.handlebars->117->1673" ] }, { @@ -55253,9 +55292,9 @@ "zh-cht": "新", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3createMeshLink1->1", - "default.handlebars->119->2145", + "default.handlebars->119->2147", "default.handlebars->container->column_l->p2->p2info->p2createMeshLink1->1", - "default3.handlebars->117->2160", + "default3.handlebars->117->2162", "default3.handlebars->container->column_l->p2->p2info->p2createMeshLink1->1" ] }, @@ -55285,8 +55324,8 @@ "zh-chs": "生成新的2FA备份代码", "zh-cht": "生成新的2FA備份代碼", "xloc": [ - "default.handlebars->119->2641", - "default3.handlebars->117->2653" + "default.handlebars->119->2643", + "default3.handlebars->117->2655" ] }, { @@ -55315,9 +55354,9 @@ "zh-chs": "新账户", "zh-cht": "新賬戶", "xloc": [ - "default-mobile.handlebars->53->1041", - "default.handlebars->119->3310", - "default3.handlebars->117->3315" + "default-mobile.handlebars->53->1042", + "default.handlebars->119->3312", + "default3.handlebars->117->3317" ] }, { @@ -55403,12 +55442,12 @@ "zh-cht": "新裝置群", "xloc": [ "default-mobile.handlebars->53->340", - "default.handlebars->119->1334", - "default.handlebars->119->2111", - "default.handlebars->119->2134", - "default3.handlebars->117->1339", - "default3.handlebars->117->2129", - "default3.handlebars->117->2149" + "default.handlebars->119->1335", + "default.handlebars->119->2113", + "default.handlebars->119->2136", + "default3.handlebars->117->1340", + "default3.handlebars->117->2131", + "default3.handlebars->117->2151" ] }, { @@ -55439,12 +55478,12 @@ "xloc": [ "default-mobile.handlebars->53->377", "default-mobile.handlebars->53->727", - "default.handlebars->119->1571", - "default.handlebars->119->2531", + "default.handlebars->119->1572", + "default.handlebars->119->2533", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", - "default3.handlebars->117->1571", - "default3.handlebars->117->2543", + "default3.handlebars->117->1572", + "default3.handlebars->117->2545", "default3.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default3.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", "sharing-mobile.handlebars->53->83", @@ -55508,10 +55547,10 @@ "zh-chs": "新密码*", "zh-cht": "新密碼*", "xloc": [ - "default.handlebars->119->538", "default.handlebars->119->539", - "default3.handlebars->117->549", - "default3.handlebars->117->550" + "default.handlebars->119->540", + "default3.handlebars->117->550", + "default3.handlebars->117->551" ] }, { @@ -55598,10 +55637,10 @@ "zh-chs": "新密码*", "zh-cht": "新密碼*", "xloc": [ - "default.handlebars->119->2302", - "default.handlebars->119->2303", - "default3.handlebars->117->2311", - "default3.handlebars->117->2312" + "default.handlebars->119->2304", + "default.handlebars->119->2305", + "default3.handlebars->117->2313", + "default3.handlebars->117->2314" ] }, { @@ -55632,8 +55671,8 @@ "xloc": [ "default-mobile.handlebars->53->335", "default-mobile.handlebars->53->336", - "default.handlebars->119->2106", - "default.handlebars->119->2107" + "default.handlebars->119->2108", + "default.handlebars->119->2109" ] }, { @@ -55699,15 +55738,15 @@ "nl": "Nee", "uk": "Ні", "xloc": [ - "default-mobile.handlebars->53->868", - "default-mobile.handlebars->53->871", - "default-mobile.handlebars->53->874", - "default.handlebars->119->1709", - "default.handlebars->119->1712", - "default.handlebars->119->1715", - "default3.handlebars->117->1707", - "default3.handlebars->117->1710", - "default3.handlebars->117->1713" + "default-mobile.handlebars->53->869", + "default-mobile.handlebars->53->872", + "default-mobile.handlebars->53->875", + "default.handlebars->119->1711", + "default.handlebars->119->1714", + "default.handlebars->119->1717", + "default3.handlebars->117->1709", + "default3.handlebars->117->1712", + "default3.handlebars->117->1715" ] }, { @@ -55736,10 +55775,10 @@ "zh-chs": "没有AMT", "zh-cht": "沒有AMT", "xloc": [ - "default.handlebars->119->1144", - "default.handlebars->119->1169", - "default3.handlebars->117->1153", - "default3.handlebars->117->1178" + "default.handlebars->119->1145", + "default.handlebars->119->1170", + "default3.handlebars->117->1154", + "default3.handlebars->117->1179" ] }, { @@ -55769,8 +55808,8 @@ "zh-cht": "沒有有效保安編碼", "xloc": [ "default-mobile.handlebars->53->86", - "default.handlebars->119->240", - "default3.handlebars->117->252" + "default.handlebars->119->241", + "default3.handlebars->117->253" ] }, { @@ -55825,8 +55864,8 @@ "zh-chs": "无座席控制台", "zh-cht": "無代理控制台", "xloc": [ - "default.handlebars->119->3083", - "default3.handlebars->117->3092" + "default.handlebars->119->3085", + "default3.handlebars->117->3094" ] }, { @@ -55835,8 +55874,8 @@ "nl": "Geen toestemming", "uk": "Нема Згоди", "xloc": [ - "default.handlebars->119->1261", - "default3.handlebars->117->1270" + "default.handlebars->119->1262", + "default3.handlebars->117->1271" ] }, { @@ -55865,8 +55904,8 @@ "zh-chs": "没有控制台", "zh-cht": "沒有控制台", "xloc": [ - "default.handlebars->119->2981", - "default3.handlebars->117->2990" + "default.handlebars->119->2983", + "default3.handlebars->117->2992" ] }, { @@ -55897,10 +55936,10 @@ "xloc": [ "default-mobile.handlebars->53->527", "default-mobile.handlebars->53->528", - "default.handlebars->119->935", "default.handlebars->119->936", - "default3.handlebars->117->946", - "default3.handlebars->117->947" + "default.handlebars->119->937", + "default3.handlebars->117->947", + "default3.handlebars->117->948" ] }, { @@ -55929,14 +55968,14 @@ "zh-chs": "没有桌面", "zh-cht": "沒有桌面", "xloc": [ - "default.handlebars->119->1146", - "default.handlebars->119->1171", - "default.handlebars->119->2417", - "default.handlebars->119->2977", - "default3.handlebars->117->1155", - "default3.handlebars->117->1180", - "default3.handlebars->117->2429", - "default3.handlebars->117->2986" + "default.handlebars->119->1147", + "default.handlebars->119->1172", + "default.handlebars->119->2419", + "default.handlebars->119->2979", + "default3.handlebars->117->1156", + "default3.handlebars->117->1181", + "default3.handlebars->117->2431", + "default3.handlebars->117->2988" ] }, { @@ -55965,10 +56004,10 @@ "zh-chs": "不能访问桌面", "zh-cht": "不能訪問桌面", "xloc": [ - "default.handlebars->119->2376", - "default.handlebars->119->3079", - "default3.handlebars->117->2388", - "default3.handlebars->117->3088" + "default.handlebars->119->2378", + "default.handlebars->119->3081", + "default3.handlebars->117->2390", + "default3.handlebars->117->3090" ] }, { @@ -56023,12 +56062,12 @@ "zh-chs": "找不到事件", "zh-cht": "找不到事件", "xloc": [ - "default.handlebars->119->1613", - "default.handlebars->119->2722", - "default.handlebars->119->3145", - "default3.handlebars->117->1613", - "default3.handlebars->117->2734", - "default3.handlebars->117->3148" + "default.handlebars->119->1614", + "default.handlebars->119->2724", + "default.handlebars->119->3147", + "default3.handlebars->117->1614", + "default3.handlebars->117->2736", + "default3.handlebars->117->3150" ] }, { @@ -56057,11 +56096,11 @@ "zh-chs": "不能存取档案", "zh-cht": "不能存取檔案", "xloc": [ - "default-mobile.handlebars->53->998", - "default.handlebars->119->2378", - "default.handlebars->119->3082", - "default3.handlebars->117->2390", - "default3.handlebars->117->3091" + "default-mobile.handlebars->53->999", + "default.handlebars->119->2380", + "default.handlebars->119->3084", + "default3.handlebars->117->2392", + "default3.handlebars->117->3093" ] }, { @@ -56090,15 +56129,15 @@ "zh-chs": "没有文件", "zh-cht": "沒有檔案", "xloc": [ - "default-mobile.handlebars->53->1021", - "default.handlebars->119->1143", - "default.handlebars->119->1168", - "default.handlebars->119->2419", - "default.handlebars->119->2980", - "default3.handlebars->117->1152", - "default3.handlebars->117->1177", - "default3.handlebars->117->2431", - "default3.handlebars->117->2989" + "default-mobile.handlebars->53->1022", + "default.handlebars->119->1144", + "default.handlebars->119->1169", + "default.handlebars->119->2421", + "default.handlebars->119->2982", + "default3.handlebars->117->1153", + "default3.handlebars->117->1178", + "default3.handlebars->117->2433", + "default3.handlebars->117->2991" ] }, { @@ -56127,10 +56166,10 @@ "zh-chs": "无输入", "zh-cht": "無輸入", "xloc": [ - "default.handlebars->119->1141", - "default.handlebars->119->1166", - "default3.handlebars->117->1150", - "default3.handlebars->117->1175" + "default.handlebars->119->1142", + "default.handlebars->119->1167", + "default3.handlebars->117->1151", + "default3.handlebars->117->1176" ] }, { @@ -56159,12 +56198,12 @@ "zh-chs": "没有英特尔®AMT", "zh-cht": "沒有Intel® AMT", "xloc": [ - "default-mobile.handlebars->53->1022", - "default-mobile.handlebars->53->999", - "default.handlebars->119->2379", - "default.handlebars->119->2420", - "default3.handlebars->117->2391", - "default3.handlebars->117->2432" + "default-mobile.handlebars->53->1000", + "default-mobile.handlebars->53->1023", + "default.handlebars->119->2381", + "default.handlebars->119->2422", + "default3.handlebars->117->2393", + "default3.handlebars->117->2434" ] }, { @@ -56193,8 +56232,8 @@ "zh-chs": "此设备组中没有英特尔® AMT 设备", "zh-cht": "此設備組中沒有英特爾® AMT 設備", "xloc": [ - "default.handlebars->119->377", - "default3.handlebars->117->388" + "default.handlebars->119->378", + "default3.handlebars->117->389" ] }, { @@ -56278,8 +56317,8 @@ "zh-chs": "未配置任何键", "zh-cht": "未配置任何鍵", "xloc": [ - "default.handlebars->119->249", - "default3.handlebars->117->260" + "default.handlebars->119->250", + "default3.handlebars->117->261" ] }, { @@ -56308,8 +56347,8 @@ "zh-chs": "没有成员", "zh-cht": "沒有成員", "xloc": [ - "default.handlebars->119->2918", - "default3.handlebars->117->2927" + "default.handlebars->119->2920", + "default3.handlebars->117->2929" ] }, { @@ -56338,8 +56377,8 @@ "zh-chs": "没有新的设备组", "zh-cht": "沒有新的裝置群", "xloc": [ - "default.handlebars->119->2858", - "default3.handlebars->117->2867" + "default.handlebars->119->2860", + "default3.handlebars->117->2869" ] }, { @@ -56368,8 +56407,8 @@ "zh-chs": "没有新设备", "zh-cht": "沒有新設備", "xloc": [ - "default.handlebars->119->2859", - "default3.handlebars->117->2868" + "default.handlebars->119->2861", + "default3.handlebars->117->2870" ] }, { @@ -56398,10 +56437,10 @@ "zh-chs": "没有政策", "zh-cht": "沒有政策", "xloc": [ - "default.handlebars->119->2229", - "default.handlebars->119->2293", - "default3.handlebars->117->2240", - "default3.handlebars->117->2302" + "default.handlebars->119->2231", + "default.handlebars->119->2295", + "default3.handlebars->117->2242", + "default3.handlebars->117->2304" ] }, { @@ -56455,10 +56494,10 @@ "zh-chs": "没有遥控器", "zh-cht": "沒有遙控器", "xloc": [ - "default.handlebars->119->2983", - "default.handlebars->119->3085", - "default3.handlebars->117->2992", - "default3.handlebars->117->3094" + "default.handlebars->119->2985", + "default.handlebars->119->3087", + "default3.handlebars->117->2994", + "default3.handlebars->117->3096" ] }, { @@ -56487,10 +56526,10 @@ "zh-chs": "没有遥控器", "zh-cht": "沒有遙控器", "xloc": [ - "default.handlebars->119->2976", - "default.handlebars->119->3078", - "default3.handlebars->117->2985", - "default3.handlebars->117->3087" + "default.handlebars->119->2978", + "default.handlebars->119->3080", + "default3.handlebars->117->2987", + "default3.handlebars->117->3089" ] }, { @@ -56519,10 +56558,10 @@ "zh-chs": "无重置/关闭", "zh-cht": "無重置/關閉", "xloc": [ - "default.handlebars->119->2985", - "default.handlebars->119->3087", - "default3.handlebars->117->2994", - "default3.handlebars->117->3096" + "default.handlebars->119->2987", + "default.handlebars->119->3089", + "default3.handlebars->117->2996", + "default3.handlebars->117->3098" ] }, { @@ -56551,17 +56590,17 @@ "zh-chs": "沒有权限", "zh-cht": "沒有權利", "xloc": [ - "default-mobile.handlebars->53->1029", + "default-mobile.handlebars->53->1030", "default-mobile.handlebars->53->355", - "default-mobile.handlebars->53->973", - "default.handlebars->119->1161", - "default.handlebars->119->1186", - "default.handlebars->119->2143", - "default.handlebars->119->2430", - "default3.handlebars->117->1170", - "default3.handlebars->117->1195", - "default3.handlebars->117->2158", - "default3.handlebars->117->2442" + "default-mobile.handlebars->53->974", + "default.handlebars->119->1162", + "default.handlebars->119->1187", + "default.handlebars->119->2145", + "default.handlebars->119->2432", + "default3.handlebars->117->1171", + "default3.handlebars->117->1196", + "default3.handlebars->117->2160", + "default3.handlebars->117->2444" ] }, { @@ -56617,10 +56656,10 @@ "zh-cht": "沒有TLS加密", "xloc": [ "default-mobile.handlebars->53->634", - "default.handlebars->119->1320", - "default.handlebars->119->523", - "default3.handlebars->117->1325", - "default3.handlebars->117->534" + "default.handlebars->119->1321", + "default.handlebars->119->524", + "default3.handlebars->117->1326", + "default3.handlebars->117->535" ] }, { @@ -56649,15 +56688,15 @@ "zh-chs": "没有终端", "zh-cht": "沒有終端", "xloc": [ - "default-mobile.handlebars->53->1020", - "default.handlebars->119->1142", - "default.handlebars->119->1167", - "default.handlebars->119->2418", - "default.handlebars->119->2979", - "default3.handlebars->117->1151", - "default3.handlebars->117->1176", - "default3.handlebars->117->2430", - "default3.handlebars->117->2988" + "default-mobile.handlebars->53->1021", + "default.handlebars->119->1143", + "default.handlebars->119->1168", + "default.handlebars->119->2420", + "default.handlebars->119->2981", + "default3.handlebars->117->1152", + "default3.handlebars->117->1177", + "default3.handlebars->117->2432", + "default3.handlebars->117->2990" ] }, { @@ -56686,11 +56725,11 @@ "zh-chs": "不能访问终端", "zh-cht": "不能訪問終端", "xloc": [ - "default-mobile.handlebars->53->997", - "default.handlebars->119->2377", - "default.handlebars->119->3081", - "default3.handlebars->117->2389", - "default3.handlebars->117->3090" + "default-mobile.handlebars->53->998", + "default.handlebars->119->2379", + "default.handlebars->119->3083", + "default3.handlebars->117->2391", + "default3.handlebars->117->3092" ] }, { @@ -56719,8 +56758,8 @@ "zh-chs": "没有工具(MeshCmd /路由器)", "zh-cht": "沒有工具(MeshCmd /路由器)", "xloc": [ - "default.handlebars->119->2860", - "default3.handlebars->117->2869" + "default.handlebars->119->2862", + "default3.handlebars->117->2871" ] }, { @@ -56749,10 +56788,10 @@ "zh-chs": "无卸载", "zh-cht": "無卸載", "xloc": [ - "default.handlebars->119->2982", - "default.handlebars->119->3084", - "default3.handlebars->117->2991", - "default3.handlebars->117->3093" + "default.handlebars->119->2984", + "default.handlebars->119->3086", + "default3.handlebars->117->2993", + "default3.handlebars->117->3095" ] }, { @@ -56781,10 +56820,10 @@ "zh-chs": "没有唤醒", "zh-cht": "沒有喚醒", "xloc": [ - "default.handlebars->119->2984", - "default.handlebars->119->3086", - "default3.handlebars->117->2993", - "default3.handlebars->117->3095" + "default.handlebars->119->2986", + "default.handlebars->119->3088", + "default3.handlebars->117->2995", + "default3.handlebars->117->3097" ] }, { @@ -56814,8 +56853,8 @@ "zh-cht": "該設備當前無可用操作。", "xloc": [ "default-mobile.handlebars->53->603", - "default.handlebars->119->1288", - "default3.handlebars->117->1297" + "default.handlebars->119->1289", + "default3.handlebars->117->1298" ] }, { @@ -56870,11 +56909,11 @@ "zh-chs": "没有代理设备通过代理中继", "zh-cht": "沒有代理設備通過代理中繼", "xloc": [ - "default-mobile.handlebars->53->956", - "default.handlebars->119->2120", - "default.handlebars->119->2185", - "default3.handlebars->117->2135", - "default3.handlebars->117->2196" + "default-mobile.handlebars->53->957", + "default.handlebars->119->2122", + "default.handlebars->119->2187", + "default3.handlebars->117->2137", + "default3.handlebars->117->2198" ] }, { @@ -56903,10 +56942,10 @@ "zh-chs": "没有自动更新", "zh-cht": "沒有自動更新", "xloc": [ - "default.handlebars->119->2480", - "default.handlebars->119->2494", - "default3.handlebars->117->2492", - "default3.handlebars->117->2506" + "default.handlebars->119->2482", + "default.handlebars->119->2496", + "default3.handlebars->117->2494", + "default3.handlebars->117->2508" ] }, { @@ -56935,10 +56974,10 @@ "zh-chs": "没有共同的设备组", "zh-cht": "沒有共同的裝置群", "xloc": [ - "default.handlebars->119->2924", - "default.handlebars->119->3113", - "default3.handlebars->117->2933", - "default3.handlebars->117->3116" + "default.handlebars->119->2926", + "default.handlebars->119->3115", + "default3.handlebars->117->2935", + "default3.handlebars->117->3118" ] }, { @@ -57030,8 +57069,8 @@ "zh-chs": "没有一个设备被加入任何一组,请单击一个设备的“组”以添加到一个组中。", "zh-cht": "沒有一個裝置被加入任何一群,請單擊一個裝置的“群”以新增到一個群中。", "xloc": [ - "default.handlebars->119->374", - "default3.handlebars->117->385" + "default.handlebars->119->375", + "default3.handlebars->117->386" ] }, { @@ -57086,8 +57125,8 @@ "zh-chs": "找不到设备。", "zh-cht": "找不到裝置。", "xloc": [ - "default.handlebars->119->888", - "default3.handlebars->117->899" + "default.handlebars->119->889", + "default3.handlebars->117->900" ] }, { @@ -57116,10 +57155,10 @@ "zh-chs": "没有共同的设备", "zh-cht": "沒有共同的裝置", "xloc": [ - "default.handlebars->119->2930", - "default.handlebars->119->3125", - "default3.handlebars->117->2939", - "default3.handlebars->117->3128" + "default.handlebars->119->2932", + "default.handlebars->119->3127", + "default3.handlebars->117->2941", + "default3.handlebars->117->3130" ] }, { @@ -57148,10 +57187,10 @@ "zh-chs": "此设备组中没有设备", "zh-cht": "此設備組中沒有設備", "xloc": [ - "default.handlebars->119->379", - "default.handlebars->119->383", - "default3.handlebars->117->390", - "default3.handlebars->117->394" + "default.handlebars->119->380", + "default.handlebars->119->384", + "default3.handlebars->117->391", + "default3.handlebars->117->395" ] }, { @@ -57180,8 +57219,8 @@ "zh-chs": "该设备组中没有设备。", "zh-cht": "該裝置群中沒有裝置。", "xloc": [ - "default.handlebars->119->2498", - "default3.handlebars->117->2510" + "default.handlebars->119->2500", + "default3.handlebars->117->2512" ] }, { @@ -57241,8 +57280,8 @@ "xloc": [ "default-mobile.handlebars->53->414", "default-mobile.handlebars->53->418", - "default.handlebars->119->375", - "default3.handlebars->117->386" + "default.handlebars->119->376", + "default3.handlebars->117->387" ] }, { @@ -57271,8 +57310,8 @@ "zh-chs": "找不到带有标签的设备。", "zh-cht": "找不到帶有標籤的裝置。", "xloc": [ - "default.handlebars->119->399", - "default3.handlebars->117->410" + "default.handlebars->119->400", + "default3.handlebars->117->411" ] }, { @@ -57301,8 +57340,8 @@ "zh-chs": "找不到文件", "zh-cht": "找不到文件", "xloc": [ - "default.handlebars->119->1545", - "default3.handlebars->117->1545", + "default.handlebars->119->1546", + "default3.handlebars->117->1546", "sharing.handlebars->47->45" ] }, @@ -57332,8 +57371,8 @@ "zh-chs": "找不到群组。", "zh-cht": "找不到群組。", "xloc": [ - "default.handlebars->119->2863", - "default3.handlebars->117->2872" + "default.handlebars->119->2865", + "default3.handlebars->117->2874" ] }, { @@ -57362,9 +57401,9 @@ "zh-chs": "没有此设备的讯息。", "zh-cht": "沒有此裝置的訊息。", "xloc": [ - "default-mobile.handlebars->53->926", - "default.handlebars->119->1767", - "default3.handlebars->117->1765" + "default-mobile.handlebars->53->927", + "default.handlebars->119->1769", + "default3.handlebars->117->1767" ] }, { @@ -57424,8 +57463,8 @@ "zh-cht": "未定義鍵盤快捷鍵", "xloc": [ "default-mobile.handlebars->53->686", - "default.handlebars->119->1456", - "default3.handlebars->117->1458", + "default.handlebars->119->1457", + "default3.handlebars->117->1459", "sharing-mobile.handlebars->53->42" ] }, @@ -57455,8 +57494,8 @@ "zh-chs": "未定义键盘字符串", "zh-cht": "未定義鍵盤字符串", "xloc": [ - "default.handlebars->119->1461", - "default3.handlebars->117->1463" + "default.handlebars->119->1462", + "default3.handlebars->117->1464" ] }, { @@ -57517,8 +57556,8 @@ "zh-chs": "此设备组中没有本地设备", "zh-cht": "此設備組中沒有本地設備", "xloc": [ - "default.handlebars->119->381", - "default3.handlebars->117->392" + "default.handlebars->119->382", + "default3.handlebars->117->393" ] }, { @@ -57547,8 +57586,8 @@ "zh-chs": "找不到位置。", "zh-cht": "找不到位置。", "xloc": [ - "default.handlebars->119->890", - "default3.handlebars->117->901" + "default.handlebars->119->891", + "default3.handlebars->117->902" ] }, { @@ -57577,8 +57616,8 @@ "zh-chs": "不再是“{0}”的中继。", "zh-cht": "不再是“{0}”的中繼。", "xloc": [ - "default.handlebars->119->2701", - "default3.handlebars->117->2713" + "default.handlebars->119->2703", + "default3.handlebars->117->2715" ] }, { @@ -57607,8 +57646,8 @@ "zh-chs": "没有适用于此设备的网络接口讯息。", "zh-cht": "沒有適用於此裝置的網絡介面訊息。", "xloc": [ - "default.handlebars->119->197", - "default3.handlebars->117->210" + "default.handlebars->119->198", + "default3.handlebars->117->211" ] }, { @@ -57637,7 +57676,7 @@ "zh-chs": "没有其他相同类型的设备组。", "zh-cht": "沒有其他相同類型的裝置群。", "xloc": [ - "default.handlebars->119->1337" + "default.handlebars->119->1338" ] }, { @@ -57666,9 +57705,9 @@ "zh-chs": "此用户没有电话号码", "zh-cht": "沒有此用戶的電話號碼", "xloc": [ - "default-mobile.handlebars->53->1072", - "default.handlebars->119->3341", - "default3.handlebars->117->3346" + "default-mobile.handlebars->53->1073", + "default.handlebars->119->3343", + "default3.handlebars->117->3348" ] }, { @@ -57727,8 +57766,8 @@ "zh-chs": "没有录音。", "zh-cht": "沒有錄音。", "xloc": [ - "default.handlebars->119->3150", - "default3.handlebars->117->3153" + "default.handlebars->119->3152", + "default3.handlebars->117->3155" ] }, { @@ -57757,10 +57796,10 @@ "zh-chs": "没有可用的中继设备。", "zh-cht": "沒有可用的中繼設備。", "xloc": [ - "default-mobile.handlebars->53->979", - "default.handlebars->119->2325", - "default3.handlebars->117->2333", - "default3.handlebars->117->2335" + "default-mobile.handlebars->53->980", + "default.handlebars->119->2327", + "default3.handlebars->117->2335", + "default3.handlebars->117->2337" ] }, { @@ -57815,8 +57854,8 @@ "zh-chs": "没有服务器权限", "zh-cht": "沒有伺服器權限", "xloc": [ - "default.handlebars->119->2952", - "default3.handlebars->117->2961" + "default.handlebars->119->2954", + "default3.handlebars->117->2963" ] }, { @@ -57871,8 +57910,8 @@ "zh-chs": "没有用户组成员身份", "zh-cht": "沒有用戶群成員身份", "xloc": [ - "default.handlebars->119->3119", - "default3.handlebars->117->3122" + "default.handlebars->119->3121", + "default3.handlebars->117->3124" ] }, { @@ -57901,9 +57940,9 @@ "zh-chs": "无用户管理权限", "zh-cht": "沒有用戶管理權限", "xloc": [ - "default-mobile.handlebars->53->1070", - "default.handlebars->119->3339", - "default3.handlebars->117->3344" + "default-mobile.handlebars->53->1071", + "default.handlebars->119->3341", + "default3.handlebars->117->3346" ] }, { @@ -57932,8 +57971,8 @@ "zh-chs": "未找到相应的用户。", "zh-cht": "未找到相應的用戶。", "xloc": [ - "default.handlebars->119->2754", - "default3.handlebars->117->2766" + "default.handlebars->119->2756", + "default3.handlebars->117->2768" ] }, { @@ -57962,8 +58001,8 @@ "zh-chs": "没有拥有特殊设备权限的用户", "zh-cht": "沒有擁有特殊裝置權限的用戶", "xloc": [ - "default.handlebars->119->1100", - "default3.handlebars->117->1111" + "default.handlebars->119->1101", + "default3.handlebars->117->1112" ] }, { @@ -58091,78 +58130,78 @@ "default-mobile.handlebars->53->545", "default-mobile.handlebars->53->676", "default-mobile.handlebars->53->724", - "default-mobile.handlebars->53->961", - "default.handlebars->119->1010", - "default.handlebars->119->1444", - "default.handlebars->119->2179", - "default.handlebars->119->2190", - "default.handlebars->119->2206", - "default.handlebars->119->2218", - "default.handlebars->119->2225", + "default-mobile.handlebars->53->962", + "default.handlebars->119->1011", + "default.handlebars->119->1445", + "default.handlebars->119->2181", + "default.handlebars->119->2192", + "default.handlebars->119->2208", + "default.handlebars->119->2220", "default.handlebars->119->2227", - "default.handlebars->119->2281", - "default.handlebars->119->2483", - "default.handlebars->119->2508", - "default.handlebars->119->2513", - "default.handlebars->119->2730", - "default.handlebars->119->286", - "default.handlebars->119->2884", + "default.handlebars->119->2229", + "default.handlebars->119->2283", + "default.handlebars->119->2485", + "default.handlebars->119->2510", + "default.handlebars->119->2515", + "default.handlebars->119->2732", + "default.handlebars->119->287", "default.handlebars->119->2886", - "default.handlebars->119->2895", - "default.handlebars->119->2907", - "default.handlebars->119->2971", - "default.handlebars->119->2974", - "default.handlebars->119->2986", - "default.handlebars->119->2996", - "default.handlebars->119->3000", - "default.handlebars->119->3012", - "default.handlebars->119->3049", - "default.handlebars->119->314", - "default.handlebars->119->3256", - "default.handlebars->119->412", + "default.handlebars->119->2888", + "default.handlebars->119->2897", + "default.handlebars->119->2909", + "default.handlebars->119->2973", + "default.handlebars->119->2976", + "default.handlebars->119->2988", + "default.handlebars->119->2998", + "default.handlebars->119->3002", + "default.handlebars->119->3014", + "default.handlebars->119->3051", + "default.handlebars->119->315", + "default.handlebars->119->3258", "default.handlebars->119->413", - "default.handlebars->119->897", - "default.handlebars->119->908", + "default.handlebars->119->414", + "default.handlebars->119->898", "default.handlebars->119->909", + "default.handlebars->119->910", "default.handlebars->119->94", - "default.handlebars->119->990", - "default.handlebars->119->997", + "default.handlebars->119->991", + "default.handlebars->119->998", "default.handlebars->container->column_l->p41->3->3->p41traceStatus", - "default3.handlebars->117->1001", - "default3.handlebars->117->1008", - "default3.handlebars->117->1021", + "default3.handlebars->117->1002", + "default3.handlebars->117->1009", + "default3.handlebars->117->1022", "default3.handlebars->117->107", - "default3.handlebars->117->1446", - "default3.handlebars->117->2190", - "default3.handlebars->117->2201", - "default3.handlebars->117->2217", - "default3.handlebars->117->2229", - "default3.handlebars->117->2236", + "default3.handlebars->117->1447", + "default3.handlebars->117->2192", + "default3.handlebars->117->2203", + "default3.handlebars->117->2219", + "default3.handlebars->117->2231", "default3.handlebars->117->2238", - "default3.handlebars->117->2292", - "default3.handlebars->117->2495", - "default3.handlebars->117->2520", - "default3.handlebars->117->2525", - "default3.handlebars->117->2742", - "default3.handlebars->117->2893", + "default3.handlebars->117->2240", + "default3.handlebars->117->2294", + "default3.handlebars->117->2497", + "default3.handlebars->117->2522", + "default3.handlebars->117->2527", + "default3.handlebars->117->2744", "default3.handlebars->117->2895", - "default3.handlebars->117->2904", - "default3.handlebars->117->2916", - "default3.handlebars->117->296", - "default3.handlebars->117->2980", - "default3.handlebars->117->2983", - "default3.handlebars->117->2995", - "default3.handlebars->117->3005", - "default3.handlebars->117->3009", - "default3.handlebars->117->3021", - "default3.handlebars->117->3058", - "default3.handlebars->117->324", - "default3.handlebars->117->3259", - "default3.handlebars->117->423", + "default3.handlebars->117->2897", + "default3.handlebars->117->2906", + "default3.handlebars->117->2918", + "default3.handlebars->117->297", + "default3.handlebars->117->2982", + "default3.handlebars->117->2985", + "default3.handlebars->117->2997", + "default3.handlebars->117->3007", + "default3.handlebars->117->3011", + "default3.handlebars->117->3023", + "default3.handlebars->117->3060", + "default3.handlebars->117->325", + "default3.handlebars->117->3261", "default3.handlebars->117->424", - "default3.handlebars->117->908", - "default3.handlebars->117->919", + "default3.handlebars->117->425", + "default3.handlebars->117->909", "default3.handlebars->117->920", + "default3.handlebars->117->921", "default3.handlebars->container->column_l->p41->3->1->p41traceStatus", "sharing-mobile.handlebars->53->32", "sharing-mobile.handlebars->53->81" @@ -58250,8 +58289,8 @@ "zh-cht": "挪威文", "xloc": [ "default-mobile.handlebars->53->236", - "default.handlebars->119->1983", - "default3.handlebars->117->1979", + "default.handlebars->119->1985", + "default3.handlebars->117->1981", "login2.handlebars->17->122" ] }, @@ -58282,8 +58321,8 @@ "zh-cht": "挪威文(Bokmal)", "xloc": [ "default-mobile.handlebars->53->237", - "default.handlebars->119->1984", - "default3.handlebars->117->1980", + "default.handlebars->119->1986", + "default3.handlebars->117->1982", "login2.handlebars->17->123" ] }, @@ -58314,8 +58353,8 @@ "zh-cht": "挪威文(尼諾斯克)", "xloc": [ "default-mobile.handlebars->53->238", - "default.handlebars->119->1985", - "default3.handlebars->117->1981", + "default.handlebars->119->1987", + "default3.handlebars->117->1983", "login2.handlebars->17->124" ] }, @@ -58345,8 +58384,8 @@ "zh-chs": "未激活", "zh-cht": "未激活", "xloc": [ - "default.handlebars->119->1676", - "default3.handlebars->117->1674" + "default.handlebars->119->1678", + "default3.handlebars->117->1676" ] }, { @@ -58376,9 +58415,9 @@ "zh-cht": "未啟動(輸入)", "xloc": [ "default-mobile.handlebars->53->517", - "default-mobile.handlebars->53->836", - "default.handlebars->119->923", - "default3.handlebars->117->934" + "default-mobile.handlebars->53->837", + "default.handlebars->119->924", + "default3.handlebars->117->935" ] }, { @@ -58408,9 +58447,9 @@ "zh-cht": "未啟動(預)", "xloc": [ "default-mobile.handlebars->53->516", - "default-mobile.handlebars->53->835", - "default.handlebars->119->922", - "default3.handlebars->117->933" + "default-mobile.handlebars->53->836", + "default.handlebars->119->923", + "default3.handlebars->117->934" ] }, { @@ -58439,10 +58478,10 @@ "zh-chs": "未连接", "zh-cht": "未連接", "xloc": [ - "default.handlebars->119->2474", - "default.handlebars->119->2487", - "default3.handlebars->117->2486", - "default3.handlebars->117->2499" + "default.handlebars->119->2476", + "default.handlebars->119->2489", + "default3.handlebars->117->2488", + "default3.handlebars->117->2501" ] }, { @@ -58471,9 +58510,9 @@ "zh-chs": "未知", "zh-cht": "未知", "xloc": [ - "default-mobile.handlebars->53->846", - "default.handlebars->119->1687", - "default3.handlebars->117->1685" + "default-mobile.handlebars->53->847", + "default.handlebars->119->1689", + "default3.handlebars->117->1687" ] }, { @@ -58502,8 +58541,8 @@ "zh-chs": "不允许,只能查看", "zh-cht": "不允許,只能查看", "xloc": [ - "default.handlebars->119->298", - "default3.handlebars->117->308" + "default.handlebars->119->299", + "default3.handlebars->117->309" ] }, { @@ -58532,8 +58571,8 @@ "zh-chs": "不在服务器上", "zh-cht": "不在伺服器上", "xloc": [ - "default.handlebars->119->3179", - "default3.handlebars->117->3182" + "default.handlebars->119->3181", + "default3.handlebars->117->3184" ] }, { @@ -58562,10 +58601,10 @@ "zh-chs": "没有设置", "zh-cht": "沒有設置", "xloc": [ - "default.handlebars->119->2958", - "default.handlebars->119->2959", - "default3.handlebars->117->2967", - "default3.handlebars->117->2968" + "default.handlebars->119->2960", + "default.handlebars->119->2961", + "default3.handlebars->117->2969", + "default3.handlebars->117->2970" ] }, { @@ -58594,8 +58633,8 @@ "zh-chs": "未经审核的", "zh-cht": "未經審核的", "xloc": [ - "default.handlebars->119->3093", - "default3.handlebars->117->3100" + "default.handlebars->119->3095", + "default3.handlebars->117->3102" ] }, { @@ -58626,20 +58665,20 @@ "xloc": [ "default-mobile.handlebars->53->558", "default-mobile.handlebars->53->612", - "default-mobile.handlebars->53->967", - "default.handlebars->119->1027", - "default.handlebars->119->1152", - "default.handlebars->119->1177", - "default.handlebars->119->1191", - "default.handlebars->119->2237", - "default.handlebars->119->3024", + "default-mobile.handlebars->53->968", + "default.handlebars->119->1028", + "default.handlebars->119->1153", + "default.handlebars->119->1178", + "default.handlebars->119->1192", + "default.handlebars->119->2239", + "default.handlebars->119->3026", "default.handlebars->container->column_l->p10->p10info->1->1->0->notesPanel->1->1->1->0", - "default3.handlebars->117->1038", - "default3.handlebars->117->1161", - "default3.handlebars->117->1186", - "default3.handlebars->117->1200", - "default3.handlebars->117->2248", - "default3.handlebars->117->3033", + "default3.handlebars->117->1039", + "default3.handlebars->117->1162", + "default3.handlebars->117->1187", + "default3.handlebars->117->1201", + "default3.handlebars->117->2250", + "default3.handlebars->117->3035", "default3.handlebars->container->column_l->p10->p10info->1->1->0->notesPanel->1->1->1->1" ] }, @@ -58699,13 +58738,13 @@ "zh-chs": "通知设置", "zh-cht": "通知設定", "xloc": [ - "default.handlebars->119->1139", - "default.handlebars->119->2093", - "default.handlebars->119->2473", + "default.handlebars->119->1140", + "default.handlebars->119->2095", + "default.handlebars->119->2475", "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->14", - "default3.handlebars->117->1148", - "default3.handlebars->117->2090", - "default3.handlebars->117->2485", + "default3.handlebars->117->1149", + "default3.handlebars->117->2092", + "default3.handlebars->117->2487", "default3.handlebars->container->column_l->p2->p2info->p2AccountActions->3->12" ] }, @@ -58787,8 +58826,8 @@ "zh-chs": "通知音效", "zh-cht": "通知音效", "xloc": [ - "default.handlebars->119->2088", - "default3.handlebars->117->2085" + "default.handlebars->119->2090", + "default3.handlebars->117->2087" ] }, { @@ -58817,10 +58856,10 @@ "zh-chs": "通知", "zh-cht": "通知", "xloc": [ - "default.handlebars->119->2226", - "default.handlebars->119->998", - "default3.handlebars->117->1009", - "default3.handlebars->117->2237" + "default.handlebars->119->2228", + "default.handlebars->119->999", + "default3.handlebars->117->1010", + "default3.handlebars->117->2239" ] }, { @@ -58849,10 +58888,10 @@ "zh-chs": "通知", "zh-cht": "通知", "xloc": [ - "default.handlebars->119->3032", - "default.handlebars->119->311", - "default3.handlebars->117->3041", - "default3.handlebars->117->321" + "default.handlebars->119->3034", + "default.handlebars->119->312", + "default3.handlebars->117->3043", + "default3.handlebars->117->322" ] }, { @@ -58881,8 +58920,8 @@ "zh-chs": "仅通知", "zh-cht": "只通知", "xloc": [ - "default.handlebars->119->1259", - "default3.handlebars->117->1268" + "default.handlebars->119->1260", + "default3.handlebars->117->1269" ] }, { @@ -58911,12 +58950,12 @@ "zh-chs": "通知使用者", "zh-cht": "通知使用者", "xloc": [ - "default.handlebars->119->2336", - "default.handlebars->119->2340", - "default.handlebars->119->2343", - "default3.handlebars->117->2348", - "default3.handlebars->117->2352", - "default3.handlebars->117->2355" + "default.handlebars->119->2338", + "default.handlebars->119->2342", + "default.handlebars->119->2345", + "default3.handlebars->117->2350", + "default3.handlebars->117->2354", + "default3.handlebars->117->2357" ] }, { @@ -58945,8 +58984,8 @@ "zh-chs": "通知{0}", "zh-cht": "通知{0}", "xloc": [ - "default.handlebars->119->2796", - "default3.handlebars->117->2807" + "default.handlebars->119->2798", + "default3.handlebars->117->2809" ] }, { @@ -58975,8 +59014,8 @@ "zh-chs": "空值", "zh-cht": "無效的", "xloc": [ - "default.handlebars->119->3414", - "default3.handlebars->117->3419" + "default.handlebars->119->3416", + "default3.handlebars->117->3421" ] }, { @@ -59038,26 +59077,26 @@ "default-mobile.handlebars->53->792", "default-mobile.handlebars->container->page_content->column_l->p10->p10dialog->7", "default-mobile.handlebars->dialog->idx_dlgButtonBar", - "default.handlebars->119->2167", - "default.handlebars->119->2478", - "default.handlebars->119->2492", - "default.handlebars->119->434", - "default.handlebars->119->436", - "default.handlebars->119->438", - "default.handlebars->119->951", - "default.handlebars->119->955", - "default.handlebars->119->959", - "default.handlebars->119->975", + "default.handlebars->119->2169", + "default.handlebars->119->2480", + "default.handlebars->119->2494", + "default.handlebars->119->435", + "default.handlebars->119->437", + "default.handlebars->119->439", + "default.handlebars->119->952", + "default.handlebars->119->956", + "default.handlebars->119->960", + "default.handlebars->119->976", "default.handlebars->container->dialog->idx_dlgButtonBar", - "default3.handlebars->117->2490", - "default3.handlebars->117->2504", - "default3.handlebars->117->445", - "default3.handlebars->117->447", - "default3.handlebars->117->449", - "default3.handlebars->117->962", - "default3.handlebars->117->966", - "default3.handlebars->117->970", - "default3.handlebars->117->986", + "default3.handlebars->117->2492", + "default3.handlebars->117->2506", + "default3.handlebars->117->446", + "default3.handlebars->117->448", + "default3.handlebars->117->450", + "default3.handlebars->117->963", + "default3.handlebars->117->967", + "default3.handlebars->117->971", + "default3.handlebars->117->987", "default3.handlebars->container->xxAddAgentModal->xxAddAgentModalConf->1->5->idx_dlgOkButton", "login-mobile.handlebars->dialog->idx_dlgButtonBar", "login.handlebars->dialog->idx_dlgButtonBar", @@ -59096,8 +59135,8 @@ "zh-chs": "操作系统", "zh-cht": "操作系統", "xloc": [ - "default.handlebars->119->386", - "default3.handlebars->117->397" + "default.handlebars->119->387", + "default3.handlebars->117->398" ] }, { @@ -59127,9 +59166,9 @@ "zh-cht": "操作系統名稱", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p2->xdevicesBar->1->5", - "default.handlebars->119->905", + "default.handlebars->119->906", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar->17->1", - "default3.handlebars->117->916", + "default3.handlebars->117->917", "default3.handlebars->container->column_l->p1->devListToolbarSpan->devListToolbar->17->1" ] }, @@ -59160,8 +59199,8 @@ "zh-cht": "不允許 OTP 2FA", "xloc": [ "default-mobile.handlebars->53->68", - "default.handlebars->119->220", - "default3.handlebars->117->232" + "default.handlebars->119->221", + "default3.handlebars->117->233" ] }, { @@ -59191,8 +59230,8 @@ "zh-cht": "歐舒丹", "xloc": [ "default-mobile.handlebars->53->239", - "default.handlebars->119->1986", - "default3.handlebars->117->1982", + "default.handlebars->119->1988", + "default3.handlebars->117->1984", "login2.handlebars->17->125" ] }, @@ -59222,9 +59261,9 @@ "zh-chs": "发生在{0}", "zh-cht": "發生在{0}", "xloc": [ - "default-mobile.handlebars->53->1038", - "default.handlebars->119->3307", - "default3.handlebars->117->3312" + "default-mobile.handlebars->53->1039", + "default.handlebars->119->3309", + "default3.handlebars->117->3314" ] }, { @@ -59257,12 +59296,12 @@ "default-mobile.handlebars->53->471", "default-mobile.handlebars->53->783", "default-mobile.handlebars->53->787", - "default.handlebars->119->714", - "default.handlebars->119->966", - "default.handlebars->119->970", - "default3.handlebars->117->725", - "default3.handlebars->117->977", - "default3.handlebars->117->981" + "default.handlebars->119->715", + "default.handlebars->119->967", + "default.handlebars->119->971", + "default3.handlebars->117->726", + "default3.handlebars->117->978", + "default3.handlebars->117->982" ] }, { @@ -59321,8 +59360,8 @@ "zh-chs": "离线用户", "zh-cht": "離線用戶", "xloc": [ - "default.handlebars->119->2751", - "default3.handlebars->117->2763" + "default.handlebars->119->2753", + "default3.handlebars->117->2765" ] }, { @@ -59351,8 +59390,8 @@ "zh-chs": "旧密码", "zh-cht": "舊密碼", "xloc": [ - "default.handlebars->119->537", - "default3.handlebars->117->548" + "default.handlebars->119->538", + "default3.handlebars->117->549" ] }, { @@ -59382,7 +59421,7 @@ "zh-cht": "舊密碼:", "xloc": [ "default-mobile.handlebars->53->334", - "default.handlebars->119->2105" + "default.handlebars->119->2107" ] }, { @@ -59394,10 +59433,10 @@ "xloc": [ "default-mobile.handlebars->53->781", "default-mobile.handlebars->53->785", - "default.handlebars->119->964", - "default.handlebars->119->968", - "default3.handlebars->117->975", - "default3.handlebars->117->979" + "default.handlebars->119->965", + "default.handlebars->119->969", + "default3.handlebars->117->976", + "default3.handlebars->117->980" ] }, { @@ -59426,8 +59465,8 @@ "zh-chs": "一天", "zh-cht": "一天", "xloc": [ - "default.handlebars->119->2727", - "default3.handlebars->117->2739" + "default.handlebars->119->2729", + "default3.handlebars->117->2741" ] }, { @@ -59457,8 +59496,8 @@ "zh-cht": "一次性保安編碼可以用作輔助身份驗證。生成一群,打印並保存在安全的地方。", "xloc": [ "default-mobile.handlebars->53->85", - "default.handlebars->119->239", - "default3.handlebars->117->251" + "default.handlebars->119->240", + "default3.handlebars->117->252" ] }, { @@ -59487,8 +59526,8 @@ "zh-chs": "一次性密码", "zh-cht": "一次性密碼", "xloc": [ - "default.handlebars->119->3263", - "default3.handlebars->117->3266" + "default.handlebars->119->3265", + "default3.handlebars->117->3268" ] }, { @@ -59550,8 +59589,8 @@ "zh-chs": "在线用户", "zh-cht": "在線用戶", "xloc": [ - "default.handlebars->119->2750", - "default3.handlebars->117->2762" + "default.handlebars->119->2752", + "default3.handlebars->117->2764" ] }, { @@ -59580,8 +59619,8 @@ "zh-chs": "只显示前 100 个用户", "zh-cht": "僅顯示前 100 個用戶", "xloc": [ - "default.handlebars->119->2797", - "default3.handlebars->117->2808" + "default.handlebars->119->2799", + "default3.handlebars->117->2810" ] }, { @@ -59610,8 +59649,8 @@ "zh-chs": "。仅当您知道自己在做什么时才这样做。", "zh-cht": "僅當你知道自己在做什麼時才這樣做。", "xloc": [ - "default.handlebars->119->2165", - "default3.handlebars->117->2180" + "default.handlebars->119->2167", + "default3.handlebars->117->2182" ] }, { @@ -59641,12 +59680,12 @@ "zh-cht": "只能編輯小於200k的檔案。", "xloc": [ "default-mobile.handlebars->53->735", - "default.handlebars->119->1579", - "default.handlebars->119->2540", - "default.handlebars->119->868", - "default3.handlebars->117->1579", - "default3.handlebars->117->2552", - "default3.handlebars->117->879", + "default.handlebars->119->1580", + "default.handlebars->119->2542", + "default.handlebars->119->869", + "default3.handlebars->117->1580", + "default3.handlebars->117->2554", + "default3.handlebars->117->880", "sharing-mobile.handlebars->53->91", "sharing.handlebars->47->67" ] @@ -59729,8 +59768,8 @@ "nl": "Open bestand/map", "uk": "Відкрити Файл/Теку", "xloc": [ - "default.handlebars->119->1559", - "default3.handlebars->117->1559" + "default.handlebars->119->1560", + "default3.handlebars->117->1560" ] }, { @@ -59760,8 +59799,8 @@ "zh-cht": "在裝置上打開頁面", "xloc": [ "default-mobile.handlebars->53->617", - "default.handlebars->119->1192", - "default3.handlebars->117->1201" + "default.handlebars->119->1193", + "default3.handlebars->117->1202" ] }, { @@ -59874,8 +59913,8 @@ "zh-chs": "打开XTerm终端", "zh-cht": "打開XTerm終端", "xloc": [ - "default.handlebars->119->1055", - "default3.handlebars->117->1066" + "default.handlebars->119->1056", + "default3.handlebars->117->1067" ] }, { @@ -59934,9 +59973,9 @@ "zh-chs": "打开此计算机的聊天窗口", "zh-cht": "打開此電腦的聊天窗口", "xloc": [ - "default.handlebars->119->1036", + "default.handlebars->119->1037", "default.handlebars->container->column_l->p11->deskarea0->deskarea4->1", - "default3.handlebars->117->1047", + "default3.handlebars->117->1048", "default3.handlebars->container->column_l->p11->deskarea0->deskarea4->3" ] }, @@ -60080,8 +60119,8 @@ "zh-chs": "开头:{0}", "zh-cht": "開場:{0}", "xloc": [ - "default.handlebars->119->2569", - "default3.handlebars->117->2581" + "default.handlebars->119->2571", + "default3.handlebars->117->2583" ] }, { @@ -60111,20 +60150,20 @@ "zh-cht": "操作系統", "xloc": [ "default-mobile.handlebars->53->797", - "default.handlebars->119->1361", - "default.handlebars->119->1628", - "default.handlebars->119->3226", - "default.handlebars->119->354", - "default.handlebars->119->560", - "default.handlebars->119->610", - "default.handlebars->119->949", - "default3.handlebars->117->1363", - "default3.handlebars->117->1628", - "default3.handlebars->117->3229", - "default3.handlebars->117->365", - "default3.handlebars->117->571", - "default3.handlebars->117->621", - "default3.handlebars->117->960" + "default.handlebars->119->1362", + "default.handlebars->119->1629", + "default.handlebars->119->3228", + "default.handlebars->119->355", + "default.handlebars->119->561", + "default.handlebars->119->611", + "default.handlebars->119->950", + "default3.handlebars->117->1364", + "default3.handlebars->117->1629", + "default3.handlebars->117->3231", + "default3.handlebars->117->366", + "default3.handlebars->117->572", + "default3.handlebars->117->622", + "default3.handlebars->117->961" ] }, { @@ -60154,16 +60193,16 @@ "zh-cht": "操作", "xloc": [ "default-mobile.handlebars->53->602", - "default.handlebars->119->1287", - "default.handlebars->119->2779", - "default.handlebars->119->2871", - "default.handlebars->119->759", - "default.handlebars->119->771", - "default3.handlebars->117->1296", - "default3.handlebars->117->2791", - "default3.handlebars->117->2880", - "default3.handlebars->117->770", - "default3.handlebars->117->782" + "default.handlebars->119->1288", + "default.handlebars->119->2781", + "default.handlebars->119->2873", + "default.handlebars->119->760", + "default.handlebars->119->772", + "default3.handlebars->117->1297", + "default3.handlebars->117->2793", + "default3.handlebars->117->2882", + "default3.handlebars->117->771", + "default3.handlebars->117->783" ] }, { @@ -60249,8 +60288,8 @@ "zh-cht": "奧里亞", "xloc": [ "default-mobile.handlebars->53->240", - "default.handlebars->119->1987", - "default3.handlebars->117->1983", + "default.handlebars->119->1989", + "default3.handlebars->117->1985", "login2.handlebars->17->126" ] }, @@ -60281,8 +60320,8 @@ "zh-cht": "奧羅莫", "xloc": [ "default-mobile.handlebars->53->241", - "default.handlebars->119->1988", - "default3.handlebars->117->1984", + "default.handlebars->119->1990", + "default3.handlebars->117->1986", "login2.handlebars->17->127" ] }, @@ -60373,8 +60412,8 @@ "zh-cht": "過時的", "xloc": [ "default-mobile.handlebars->53->791", - "default.handlebars->119->974", - "default3.handlebars->117->985" + "default.handlebars->119->975", + "default3.handlebars->117->986" ] }, { @@ -60511,8 +60550,8 @@ "zh-chs": "是否覆盖文件存在?", "zh-cht": "是否覆蓋文件存在?", "xloc": [ - "default.handlebars->119->793", - "default3.handlebars->117->804" + "default.handlebars->119->794", + "default3.handlebars->117->805" ] }, { @@ -60567,8 +60606,8 @@ "zh-chs": "自己的过程", "zh-cht": "自己的過程", "xloc": [ - "default.handlebars->119->1482", - "default3.handlebars->117->1483" + "default.handlebars->119->1483", + "default3.handlebars->117->1484" ] }, { @@ -60597,9 +60636,9 @@ "zh-chs": "PID", "zh-cht": "PID", "xloc": [ - "default.handlebars->119->1478", + "default.handlebars->119->1479", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader->1", - "default3.handlebars->117->1479", + "default3.handlebars->117->1480", "default3.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader->1" ] }, @@ -60638,9 +60677,9 @@ "zh-chs": "推", "zh-cht": "推", "xloc": [ - "default-mobile.handlebars->53->937", - "default.handlebars->119->1779", - "default3.handlebars->117->1777" + "default-mobile.handlebars->53->938", + "default.handlebars->119->1781", + "default3.handlebars->117->1779" ] }, { @@ -60670,8 +60709,8 @@ "zh-cht": "向下翻頁", "xloc": [ "default-mobile.handlebars->53->671", - "default.handlebars->119->1439", - "default3.handlebars->117->1441", + "default.handlebars->119->1440", + "default3.handlebars->117->1442", "sharing-mobile.handlebars->53->27" ] }, @@ -60702,8 +60741,8 @@ "zh-cht": "向上翻頁", "xloc": [ "default-mobile.handlebars->53->670", - "default.handlebars->119->1438", - "default3.handlebars->117->1440", + "default.handlebars->119->1439", + "default3.handlebars->117->1441", "sharing-mobile.handlebars->53->26" ] }, @@ -60763,15 +60802,15 @@ "zh-chs": "零件号", "zh-cht": "零件號", "xloc": [ - "default-mobile.handlebars->53->880", - "default-mobile.handlebars->53->886", - "default-mobile.handlebars->53->892", - "default.handlebars->119->1721", - "default.handlebars->119->1727", - "default.handlebars->119->1733", - "default3.handlebars->117->1719", - "default3.handlebars->117->1725", - "default3.handlebars->117->1731" + "default-mobile.handlebars->53->881", + "default-mobile.handlebars->53->887", + "default-mobile.handlebars->53->893", + "default.handlebars->119->1723", + "default.handlebars->119->1729", + "default.handlebars->119->1735", + "default3.handlebars->117->1721", + "default3.handlebars->117->1727", + "default3.handlebars->117->1733" ] }, { @@ -60800,8 +60839,8 @@ "zh-chs": "部分的", "zh-cht": "部分的", "xloc": [ - "default.handlebars->119->2766", - "default3.handlebars->117->2778" + "default.handlebars->119->2768", + "default3.handlebars->117->2780" ] }, { @@ -60883,9 +60922,9 @@ "zh-cht": "部分權限", "xloc": [ "default-mobile.handlebars->53->353", - "default-mobile.handlebars->53->971", - "default.handlebars->119->2141", - "default3.handlebars->117->2156" + "default-mobile.handlebars->53->972", + "default.handlebars->119->2143", + "default3.handlebars->117->2158" ] }, { @@ -60914,8 +60953,8 @@ "zh-chs": "部分权限", "zh-cht": "部分權限", "xloc": [ - "default.handlebars->119->2955", - "default3.handlebars->117->2964" + "default.handlebars->119->2957", + "default3.handlebars->117->2966" ] }, { @@ -60976,31 +61015,31 @@ "default-mobile.handlebars->53->632", "default-mobile.handlebars->53->702", "default-mobile.handlebars->53->709", - "default.handlebars->119->1318", - "default.handlebars->119->1410", - "default.handlebars->119->1521", - "default.handlebars->119->1528", - "default.handlebars->119->2133", - "default.handlebars->119->2299", - "default.handlebars->119->2833", - "default.handlebars->119->2834", - "default.handlebars->119->2992", + "default.handlebars->119->1319", + "default.handlebars->119->1411", + "default.handlebars->119->1522", + "default.handlebars->119->1529", + "default.handlebars->119->2135", + "default.handlebars->119->2301", + "default.handlebars->119->2835", + "default.handlebars->119->2836", "default.handlebars->119->2994", - "default.handlebars->119->3098", - "default.handlebars->119->3099", - "default.handlebars->119->348", - "default.handlebars->119->521", - "default3.handlebars->117->1323", - "default3.handlebars->117->1411", - "default3.handlebars->117->1521", - "default3.handlebars->117->1528", - "default3.handlebars->117->2148", - "default3.handlebars->117->2308", - "default3.handlebars->117->2844", - "default3.handlebars->117->3001", + "default.handlebars->119->2996", + "default.handlebars->119->3100", + "default.handlebars->119->3101", + "default.handlebars->119->349", + "default.handlebars->119->522", + "default3.handlebars->117->1324", + "default3.handlebars->117->1412", + "default3.handlebars->117->1522", + "default3.handlebars->117->1529", + "default3.handlebars->117->2150", + "default3.handlebars->117->2310", + "default3.handlebars->117->2846", "default3.handlebars->117->3003", - "default3.handlebars->117->358", - "default3.handlebars->117->532", + "default3.handlebars->117->3005", + "default3.handlebars->117->359", + "default3.handlebars->117->533", "login2.handlebars->centralTable->1->0->logincell->loginpanel->loginpanelform->loginuserpassdiv->1->1->2->1", "login2.handlebars->centralTable->1->0->logincell->loginpanel->loginpanelform->loginuserpassdiv->1->1->2->1", "mstsc.handlebars->main->1->3->1->rowpassword->1->0", @@ -61169,9 +61208,9 @@ "zh-chs": "密码已更改。", "zh-cht": "密碼已更改。", "xloc": [ - "default-mobile.handlebars->53->1066", - "default.handlebars->119->3335", - "default3.handlebars->117->3340" + "default-mobile.handlebars->53->1067", + "default.handlebars->119->3337", + "default3.handlebars->117->3342" ] }, { @@ -61230,7 +61269,7 @@ "zh-chs": "密码提示", "zh-cht": "密碼提示", "xloc": [ - "default.handlebars->119->3100" + "default.handlebars->119->3102" ] }, { @@ -61260,7 +61299,7 @@ "zh-cht": "密碼提示:", "xloc": [ "default-mobile.handlebars->53->337", - "default.handlebars->119->2108" + "default.handlebars->119->2110" ] }, { @@ -61375,8 +61414,8 @@ "account-invite.html->2->5", "default-mobile.handlebars->53->329", "default-mobile.handlebars->53->330", - "default.handlebars->119->2100", - "default.handlebars->119->2101", + "default.handlebars->119->2102", + "default.handlebars->119->2103", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->4->1", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->6->1", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->loginpanel->1->7->1->2->1", @@ -61423,15 +61462,15 @@ "default-mobile.handlebars->53->740", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->3", "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->3", - "default.handlebars->119->1542", - "default.handlebars->119->1586", - "default.handlebars->119->2542", + "default.handlebars->119->1543", + "default.handlebars->119->1587", + "default.handlebars->119->2544", "default.handlebars->container->column_l->p12->termTable->1->1->4->1->3", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", - "default3.handlebars->117->1542", - "default3.handlebars->117->1586", - "default3.handlebars->117->2554", + "default3.handlebars->117->1543", + "default3.handlebars->117->1587", + "default3.handlebars->117->2556", "default3.handlebars->container->column_l->p12->termTable->1->1->4->1->1", "default3.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default3.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", @@ -61645,9 +61684,9 @@ "zh-chs": "执行代理指令", "zh-cht": "執行代理指令", "xloc": [ - "default-mobile.handlebars->53->949", - "default.handlebars->119->1791", - "default3.handlebars->117->1789" + "default-mobile.handlebars->53->950", + "default.handlebars->119->1793", + "default3.handlebars->117->1791" ] }, { @@ -61728,10 +61767,10 @@ "zh-chs": "执行英特尔®AMT激活和配置。", "zh-cht": "執行英特爾®AMT激活和配置。", "xloc": [ - "default.handlebars->119->2243", - "default.handlebars->119->498", - "default3.handlebars->117->2254", - "default3.handlebars->117->509" + "default.handlebars->119->2245", + "default.handlebars->119->499", + "default3.handlebars->117->2256", + "default3.handlebars->117->510" ] }, { @@ -61872,8 +61911,8 @@ "uk": "Вимкнути живлення через Intel® AMT?