add first agent connection to the details page and attribute firstconnect #7408

Signed-off-by: si458 <simonsmith5521@gmail.com>

si458 committed Nov 16, 2025 at 18:53 UTC a1f182426e33e7d7937e6b0256c8fbc12b00e2fd
6 files changed +7153 -6745
meshagent.js
+1 -1
@@ -869,7 +869,7 @@ module.exports.CreateMeshAgent = function (parent, db, ws, req, args, domain) {
869
870 // This node does not exist, create it.
871 var agentName = obj.agentName ? obj.agentName : obj.agentInfo.computerName;
872 - 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 };
872 + 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 };
873 db.Set(device);
874
875 // Event the new node
translate/mytranslate.js new
+364
@@ -0,0 +1,364 @@
1 +const fs = require('fs');
2 +const path = require('path');
3 +const os = require('os');
4 +const { Worker, isMainThread, workerData, parentPort } = require('worker_threads');
5 +const jsdom = require('jsdom');
6 +const { JSDOM } = jsdom;
7 +const esprima = require('esprima');
8 +const { minify } = require('html-minifier-terser');
9 +var translationTable = {};
10 +
11 +// Source files to translate
12 +var meshCentralSourceFiles = [
13 + "../views/agentinvite.handlebars",
14 + "../views/invite.handlebars",
15 + "../views/default.handlebars",
16 + "../views/default3.handlebars",
17 + "../views/default-mobile.handlebars",
18 + "../views/download.handlebars",
19 + "../views/download2.handlebars",
20 + "../views/error404.handlebars",
21 + "../views/error404-mobile.handlebars",
22 + "../views/login.handlebars",
23 + "../views/login2.handlebars",
24 + "../views/login-mobile.handlebars",
25 + "../views/terms.handlebars",
26 + "../views/terms-mobile.handlebars",
27 + "../views/xterm.handlebars",
28 + "../views/message.handlebars",
29 + "../views/message2.handlebars",
30 + "../views/messenger.handlebars",
31 + "../views/player.handlebars",
32 + "../views/sharing.handlebars",
33 + "../views/sharing-mobile.handlebars",
34 + "../views/mstsc.handlebars",
35 + "../views/ssh.handlebars",
36 + "../emails/account-check.html",
37 + "../emails/account-invite.html",
38 + "../emails/account-login.html",
39 + "../emails/account-reset.html",
40 + "../emails/mesh-invite.html",
41 + "../emails/device-notify.html",
42 + "../emails/device-help.html",
43 + "../emails/account-check.txt",
44 + "../emails/account-invite.txt",
45 + "../emails/account-login.txt",
46 + "../emails/account-reset.txt",
47 + "../emails/mesh-invite.txt",
48 + "../emails/device-notify.txt",
49 + "../emails/device-help.txt",
50 + "../emails/sms-messages.txt",
51 + "../agents/agent-translations.json",
52 + "../agents/modules_meshcore/coretranslations.json"
53 +];
54 +
55 +const langFile = path.join(__dirname, 'translate.json');
56 +const createSubDir = 'translations'; // Subdirectory to create for translated files
57 +const directRun = (require.main === module);
58 +
59 +// Check NodeJS version
60 +const NodeJSVer = parseFloat(process.version.match(/^v(\d+\.\d+)/)[1]);
61 +if (directRun && NodeJSVer < 12) {
62 + console.error("Translate.js requires Node v12 or above");
63 + process.exit(1);
64 +}
65 +
66 +if (directRun && isMainThread) {
67 + console.log("MeshCentral translation tool v0.1.0 (direct)");
68 +
69 + try {
70 + // 1. Load language file ONCE
71 + const langFileData = JSON.parse(fs.readFileSync(langFile));
72 + if (!langFileData?.strings) throw new Error("Invalid language file structure");
73 +
74 + // 2. Load all source files ONCE
75 + const sources = meshCentralSourceFiles.map(file => ({
76 + path: file,
77 + content: fs.readFileSync(file, 'utf8')
78 + }));
79 +
80 + // 3. Get target languages
81 + const languages = new Set();
82 + for (const entry of Object.values(langFileData.strings)) {
83 + for (const lang in entry) {
84 + if (!['en', 'xloc', '*'].includes(lang)) {
85 + languages.add(lang.toLowerCase());
86 + }
87 + }
88 + }
89 + const langArray = Array.from(languages);
90 +
91 + console.log(`Processing ${langArray.length} languages: ${langArray.join(', ')}`);
92 + console.log(`Loaded ${sources.length} source files`);
93 +
94 + // 4. Worker management
95 + const MAX_WORKERS = 4;
96 + let activeWorkers = 0;
97 + let completed = 0;
98 +
99 + function startWorker() {
100 + if (langArray.length === 0 || activeWorkers >= MAX_WORKERS) return;
101 +
102 + const lang = langArray.pop();
103 + activeWorkers++;
104 +
105 + const worker = new Worker(__filename, {
106 + workerData: {
107 + lang,
108 + langData: langFileData,
109 + sources
110 + }
111 + });
112 +
113 + worker.on('message', (msg) => {
114 + console.log(`[${lang}] ${msg}`);
115 + });
116 +
117 + worker.on('error', (err) => {
118 + console.error(`[${lang}] Worker error:`, err);
119 + });
120 +
121 + worker.on('exit', (code) => {
122 + activeWorkers--;
123 + completed++;
124 + console.log(`[${lang}] Completed (${completed}/${completed + langArray.length + activeWorkers})`);
125 + startWorker();
126 + });
127 + }
128 +
129 + // Start initial workers
130 + for (let i = 0; i < Math.min(MAX_WORKERS, langArray.length); i++) {
131 + startWorker();
132 + }
133 +
134 + } catch (err) {
135 + console.error("Initialization failed:", err);
136 + process.exit(1);
137 + }
138 +
139 +} else if (!isMainThread) {
140 + // Worker thread logic
141 + const { lang, langData, sources } = workerData;
142 +
143 + try {
144 + parentPort.postMessage(`Starting translation of ${sources.length} files`);
145 +
146 + translationTable = {};
147 + for (var i in langData.strings) {
148 + var entry = langData.strings[i];
149 + if ((entry['en'] != null) && (entry[lang] != null)) { translationTable[entry['en']] = entry[lang]; }
150 + }
151 +
152 + for (var i = 0; i < sources.length; i++) {
153 + if (sources[i].path.endsWith('.html') || sources[i].path.endsWith('.htm') || sources[i].path.endsWith('.handlebars')) {
154 + translateFromHtml(lang, sources[i], createSubDir, (file) => {
155 + parentPort.postMessage(`Finished HTML/Handlebars file: ${file}`);
156 + });
157 + } else if (sources[i].path.endsWith('.txt')) {
158 + translateFromTxt(lang, sources[i], createSubDir, (file) => {
159 + parentPort.postMessage(`Finished TXT file: ${file}`);
160 + });
161 + }
162 + }
163 + } catch (err) {
164 + parentPort.postMessage(`ERROR: ${err.message}`);
165 + }
166 +}
167 +
168 +function minifyFromHtml(lang, file, out, done) {
169 + parentPort.postMessage(`Minifying HTML/Handlebars file: ${file.path}`);
170 + if (file.path.endsWith('.handlebars') >= 0) { out = out.split('{{{pluginHandler}}}').join('"{{{pluginHandler}}}"'); }
171 + minify(out, {
172 + collapseBooleanAttributes: true,
173 + collapseInlineTagWhitespace: false, // This is not good.
174 + collapseWhitespace: true,
175 + minifyCSS: true,
176 + minifyJS: true,
177 + removeComments: true,
178 + removeOptionalTags: true,
179 + removeEmptyAttributes: true,
180 + removeAttributeQuotes: true,
181 + removeRedundantAttributes: true,
182 + removeScriptTypeAttributes: true,
183 + removeTagWhitespace: true,
184 + preserveLineBreaks: false,
185 + useShortDoctype: true
186 + }).then((minifiedOut) => {
187 + if (minifiedOut == null) {
188 + parentPort.postMessage(`ERROR: Minification failed for ${file.path}`);
189 + } else {
190 + var outname = file.path;
191 + var outnamemin = null;
192 + if (createSubDir != null) {
193 + var outfolder = path.join(path.dirname(file.path), createSubDir);
194 + if (fs.existsSync(outfolder) == false) { fs.mkdirSync(outfolder); }
195 + outname = path.join(path.dirname(file.path), createSubDir, path.basename(file.path));
196 + }
197 + if (outname.endsWith('.handlebars')) {
198 + outnamemin = (outname.substring(0, outname.length - 11) + '-min_' + lang + '.handlebars');
199 + outname = (outname.substring(0, outname.length - 11) + '_' + lang + '.handlebars');
200 + } else if (outname.endsWith('.html')) {
201 + outnamemin = (outname.substring(0, outname.length - 5) + '-min_' + lang + '.html');
202 + outname = (outname.substring(0, outname.length - 5) + '_' + lang + '.html');
203 + } else if (outname.endsWith('.htm')) {
204 + outnamemin = (outname.substring(0, outname.length - 4) + '-min_' + lang + '.htm');
205 + outname = (outname.substring(0, outname.length - 4) + '_' + lang + '.htm');
206 + } else if (outname.endsWith('.js')) {
207 + if (out.startsWith('<html><head></head><body><script>')) { out = out.substring(33); }
208 + if (out.endsWith('</script></body></html>')) { out = out.substring(0, out.length - 23); }
209 + outnamemin = (outname.substring(0, outname.length - 3) + '-min_' + lang + '.js');
210 + outname = (outname.substring(0, outname.length - 3) + '_' + lang + '.js');
211 + } else {
212 + outnamemin = (outname + '_' + lang + '.min');
213 + outname = (outname + '_' + lang);
214 + }
215 + if (outnamemin.endsWith('.handlebars') >= 0) { minifiedOut = minifiedOut.split('"{{{pluginHandler}}}"').join('{{{pluginHandler}}}'); }
216 + fs.writeFileSync(outnamemin, minifiedOut, { flag: 'w+' });
217 + parentPort.postMessage(`Minified HTML/Handlebars file: ${file.path}`);
218 + }
219 + done(file.path);
220 + });
221 +}
222 +
223 +function translateFromHtml(lang, file, createSubDir, done) {
224 + parentPort.postMessage(`Translating HTML/Handlebars file: ${file.path}`);
225 + var data = file.content;
226 + if (file.path.endsWith('.js')) { data = '<html><head></head><body><script>' + file.content + '</script></body></html>'; }
227 + const dom = new JSDOM(data, { includeNodeLocations: true });
228 + translateStrings(path.basename(file.path), dom.window.document.querySelector('body'));
229 + var out = dom.serialize();
230 + out = out.split('<html lang="en"').join('<html lang="' + lang + '"');
231 + var outname = file.path;
232 + var outnamemin = null;
233 + if (createSubDir != null) {
234 + var outfolder = path.join(path.dirname(file.path), createSubDir);
235 + if (fs.existsSync(outfolder) == false) { fs.mkdirSync(outfolder); }
236 + outname = path.join(path.dirname(file.path), createSubDir, path.basename(file.path));
237 + }
238 + if (outname.endsWith('.handlebars')) {
239 + outnamemin = (outname.substring(0, outname.length - 11) + '-min_' + lang + '.handlebars');
240 + outname = (outname.substring(0, outname.length - 11) + '_' + lang + '.handlebars');
241 + } else if (outname.endsWith('.html')) {
242 + outnamemin = (outname.substring(0, outname.length - 5) + '-min_' + lang + '.html');
243 + outname = (outname.substring(0, outname.length - 5) + '_' + lang + '.html');
244 + } else if (outname.endsWith('.htm')) {
245 + outnamemin = (outname.substring(0, outname.length - 4) + '-min_' + lang + '.htm');
246 + outname = (outname.substring(0, outname.length - 4) + '_' + lang + '.htm');
247 + } else if (outname.endsWith('.js')) {
248 + if (out.startsWith('<html><head></head><body><script>')) { out = out.substring(33); }
249 + if (out.endsWith('</script></body></html>')) { out = out.substring(0, out.length - 23); }
250 + outnamemin = (outname.substring(0, outname.length - 3) + '-min_' + lang + '.js');
251 + outname = (outname.substring(0, outname.length - 3) + '_' + lang + '.js');
252 + } else {
253 + outnamemin = (outname + '_' + lang + '.min');
254 + outname = (outname + '_' + lang);
255 + }
256 + fs.writeFileSync(outname, out, { flag: 'w+' });
257 + parentPort.postMessage(`Translated HTML/Handlebars file: ${file.path}`);
258 + minifyFromHtml(lang, file, out, done);
259 +}
260 +
261 +function translateStrings(name, node) {
262 + for (var i = 0; i < node.childNodes.length; i++) {
263 + var subnode = node.childNodes[i];
264 +
265 + // Check if the "value" attribute exists and needs to be translated
266 + var subnodeignore = false;
267 + if ((subnode.attributes != null) && (subnode.attributes.length > 0)) {
268 + var subnodevalue = null, subnodeindex = null, subnodeplaceholder = null, subnodeplaceholderindex = null, subnodetitle = null, subnodetitleindex = null;
269 + for (var j in subnode.attributes) {
270 + if ((subnode.attributes[j].name == 'notrans') && (subnode.attributes[j].value == '1')) { subnodeignore = true; }
271 + if ((subnode.attributes[j].name == 'type') && (subnode.attributes[j].value == 'hidden')) { subnodeignore = true; }
272 + if (subnode.attributes[j].name == 'value') { subnodevalue = subnode.attributes[j].value; subnodeindex = j; }
273 + if (subnode.attributes[j].name == 'placeholder') { subnodeplaceholder = subnode.attributes[j].value; subnodeplaceholderindex = j; }
274 + if (subnode.attributes[j].name == 'title') { subnodetitle = subnode.attributes[j].value; subnodetitleindex = j; }
275 + }
276 + if ((subnodevalue != null) && isNumber(subnodevalue) == true) { subnodevalue = null; }
277 + if ((subnodeplaceholder != null) && isNumber(subnodeplaceholder) == true) { subnodeplaceholder = null; }
278 + if ((subnodetitle != null) && isNumber(subnodetitle) == true) { subnodetitle = null; }
279 + if ((subnodeignore == false) && (subnodevalue != null)) {
280 + // Perform attribute translation for value
281 + if (translationTable[subnodevalue] != null) { subnode.attributes[subnodeindex].value = translationTable[subnodevalue]; }
282 + }
283 + if (subnodeplaceholder != null) {
284 + // Perform attribute translation for placeholder
285 + if (translationTable[subnodeplaceholder] != null) { subnode.attributes[subnodeplaceholderindex].value = translationTable[subnodeplaceholder]; }
286 + }
287 + if (subnodetitle != null) {
288 + // Perform attribute translation for title
289 + if (translationTable[subnodetitle] != null) { subnode.attributes[subnodetitleindex].value = translationTable[subnodetitle]; }
290 + }
291 + }
292 +
293 + if (subnodeignore == false) {
294 + var subname = subnode.id;
295 + if (subname == null || subname == '') { subname = i; }
296 + if (subnode.hasChildNodes()) {
297 + translateStrings(name + '->' + subname, subnode);
298 + } else {
299 + if (subnode.nodeValue == null) continue;
300 + var nodeValue = subnode.nodeValue.trim().split('\\r').join('').split('\\n').join('').trim();
301 +
302 + // Look for the front trim
303 + var frontTrim = '', backTrim = '';;
304 + var x1 = subnode.nodeValue.indexOf(nodeValue);
305 + if (x1 > 0) { frontTrim = subnode.nodeValue.substring(0, x1); }
306 + if (x1 != -1) { backTrim = subnode.nodeValue.substring(x1 + nodeValue.length); }
307 +
308 + if ((nodeValue.length > 0) && (subnode.nodeType == 3)) {
309 + if ((node.tagName != 'SCRIPT') && (node.tagName != 'STYLE') && (nodeValue.length < 8000) && (nodeValue.startsWith('{{{') == false) && (nodeValue != ' ')) {
310 + // Check if we have a translation for this string
311 + if (translationTable[nodeValue]) { subnode.nodeValue = (frontTrim + translationTable[nodeValue] + backTrim); }
312 + } else if (node.tagName == 'SCRIPT') {
313 + // Translate JavaScript
314 + subnode.nodeValue = translateStringsFromJavaScript(name, subnode.nodeValue);
315 + }
316 + }
317 + }
318 + }
319 + }
320 +}
321 +
322 +function translateStringsFromJavaScript(name, script) {
323 + var tokenScript = esprima.tokenize(script, { range: true }), count = 0;
324 + var output = [], ptr = 0;
325 + for (var i in tokenScript) {
326 + var token = tokenScript[i];
327 + if ((token.type == 'String') && (token.value.length > 2) && (token.value[0] == '"')) {
328 + var str = token.value.substring(1, token.value.length - 1);
329 + if (translationTable[str]) {
330 + output.push(script.substring(ptr, token.range[0]));
331 + output.push('"' + translationTable[str] + '"');
332 + ptr = token.range[1];
333 + }
334 + }
335 + }
336 + output.push(script.substring(ptr));
337 + return output.join('');
338 +}
339 +
340 +function translateFromTxt(lang, file, createSubDir, done) {
341 + parentPort.postMessage(`Translating TXT file: ${file.path}`);
342 + var lines = file.content.toString().split(/\r?\n/), outlines = [];
343 + for (var i in lines) {
344 + var line = lines[i];
345 + if ((line.length > 1) && (line[0] != '~')) {
346 + if (translationTable[line] != null) { outlines.push(translationTable[line]); } else { outlines.push(line); }
347 + } else {
348 + outlines.push(line);
349 + }
350 + }
351 +
352 + var outname = file.path, out = outlines.join(os.EOL);
353 + if (createSubDir != null) {
354 + var outfolder = path.join(path.dirname(file.path), createSubDir);
355 + if (fs.existsSync(outfolder) == false) { fs.mkdirSync(outfolder); }
356 + outname = path.join(path.dirname(file.path), createSubDir, path.basename(file.path));
357 + }
358 + outname = (outname.substring(0, outname.length - 4) + '_' + lang + '.txt');
359 + fs.writeFileSync(outname, out, { flag: 'w+' });
360 + done(file.path); // Call the done callback to signal completion
361 +}
362 +
363 +function isNumber(x) { return (('' + parseInt(x)) === x) || (('' + parseFloat(x)) === x); }
364 +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; }); };
translate/translate.json
+6783 -6744
@@ -26,10 +26,10 @@
26 "zh-chs": " + CIRA",
27 "zh-cht": " + CIRA",
28 "xloc": [
29 - "default.handlebars->119->2232",
29 "default.handlebars->119->2234",
31 - "default3.handlebars->117->2243",
32 - "default3.handlebars->117->2245"
30 + "default.handlebars->119->2236",
31 + "default3.handlebars->117->2245",
32 + "default3.handlebars->117->2247"
33 ]
34 },
35 {
@@ -330,8 +330,8 @@
330 "zh-chs": " 可以使用密码提示,但不建议使用。",
331 "zh-cht": " 可以使用密碼提示,但不建議使用。",
332 "xloc": [
333 - "default.handlebars->119->2104",
334 - "default3.handlebars->117->2099"
333 + "default.handlebars->119->2106",
334 + "default3.handlebars->117->2101"
335 ]
336 },
337 {
@@ -360,10 +360,10 @@
360 "zh-chs": " 用户需要先登录到该服务器一次,然后才能将其添加到设备组。",
361 "zh-cht": " 用戶需要先登入到該伺服器一次,然後才能將其新增到裝置群。",
362 "xloc": [
363 - "default.handlebars->119->2358",
364 - "default.handlebars->119->2947",
365 - "default3.handlebars->117->2370",
366 - "default3.handlebars->117->2956"
363 + "default.handlebars->119->2360",
364 + "default.handlebars->119->2949",
365 + "default3.handlebars->117->2372",
366 + "default3.handlebars->117->2958"
367 ]
368 },
369 {
@@ -502,8 +502,8 @@
502 "zh-chs": " TLS。",
503 "zh-cht": " TLS。",
504 "xloc": [
505 - "default.handlebars->119->282",
506 - "default3.handlebars->117->292"
505 + "default.handlebars->119->283",
506 + "default3.handlebars->117->293"
507 ]
508 },
509 {
@@ -532,8 +532,8 @@
532 "zh-chs": " 没有TLS。",
533 "zh-cht": " 沒有TLS。",
534 "xloc": [
535 - "default.handlebars->119->283",
536 - "default3.handlebars->117->293"
535 + "default.handlebars->119->284",
536 + "default3.handlebars->117->294"
537 ]
538 },
539 {
@@ -934,8 +934,8 @@
934 "zh-chs": "(可选的)",
935 "zh-cht": "(可選的)",
936 "xloc": [
937 - "default.handlebars->119->579",
938 - "default3.handlebars->117->590"
937 + "default.handlebars->119->580",
938 + "default3.handlebars->117->591"
939 ]
940 },
941 {
@@ -985,10 +985,10 @@
985 "zh-chs": "* 8-16个字符,1个大写,1个小写,1个数字,1个非字母数字。",
986 "zh-cht": "* 8-16個字符,1個大寫,1個小寫,1個數字,1個非字母數字。",
987 "xloc": [
988 - "default.handlebars->119->2316",
989 - "default.handlebars->119->541",
990 - "default3.handlebars->117->2325",
991 - "default3.handlebars->117->552"
988 + "default.handlebars->119->2318",
989 + "default.handlebars->119->542",
990 + "default3.handlebars->117->2327",
991 + "default3.handlebars->117->553"
992 ]
993 },
994 {
@@ -1017,8 +1017,8 @@
1017 "zh-chs": "*对于BSD,首先运行“ pkg install wget sudo bash ”。",
1018 "zh-cht": "*對於BSD,首先運行“ pkg install wget sudo bash ”。",
1019 "xloc": [
1020 - "default.handlebars->119->638",
1021 - "default3.handlebars->117->649"
1020 + "default.handlebars->119->639",
1021 + "default3.handlebars->117->650"
1022 ]
1023 },
1024 {
@@ -1096,22 +1096,22 @@
1096 "zh-chs": ",",
1097 "zh-cht": ",",
1098 "xloc": [
1099 - "default-mobile.handlebars->53->1033",
1100 - "default-mobile.handlebars->53->825",
1101 - "default-mobile.handlebars->53->827",
1102 - "default-mobile.handlebars->53->829",
1103 - "default.handlebars->119->1024",
1104 - "default.handlebars->119->1666",
1099 + "default-mobile.handlebars->53->1034",
1100 + "default-mobile.handlebars->53->826",
1101 + "default-mobile.handlebars->53->828",
1102 + "default-mobile.handlebars->53->830",
1103 + "default.handlebars->119->1025",
1104 "default.handlebars->119->1668",
1105 "default.handlebars->119->1670",
1107 - "default.handlebars->119->2434",
1108 - "default.handlebars->119->2720",
1109 - "default3.handlebars->117->1035",
1110 - "default3.handlebars->117->1666",
1106 + "default.handlebars->119->1672",
1107 + "default.handlebars->119->2436",
1108 + "default.handlebars->119->2722",
1109 + "default3.handlebars->117->1036",
1110 "default3.handlebars->117->1668",
1111 "default3.handlebars->117->1670",
1113 - "default3.handlebars->117->2446",
1114 - "default3.handlebars->117->2732"
1112 + "default3.handlebars->117->1672",
1113 + "default3.handlebars->117->2448",
1114 + "default3.handlebars->117->2734"
1115 ]
1116 },
1117 {
@@ -1225,8 +1225,8 @@
1225 "zh-cht": ",只適用於Intel&reg; AMT",
1226 "xloc": [
1227 "default-mobile.handlebars->53->412",
1228 - "default.handlebars->119->368",
1229 - "default3.handlebars->117->379"
1228 + "default.handlebars->119->369",
1229 + "default3.handlebars->117->380"
1230 ]
1231 },
1232 {
@@ -1255,8 +1255,8 @@
1255 "zh-chs": ", 本地设备",
1256 "zh-cht": ", 本地設備",
1257 "xloc": [
1258 - "default.handlebars->119->370",
1259 - "default3.handlebars->117->381"
1258 + "default.handlebars->119->371",
1259 + "default3.handlebars->117->382"
1260 ]
1261 },
1262 {
@@ -1285,9 +1285,9 @@
1285 "zh-chs": ",MQTT在线",
1286 "zh-cht": ",MQTT在線",
1287 "xloc": [
1288 - "default-mobile.handlebars->53->934",
1289 - "default.handlebars->119->1776",
1290 - "default3.handlebars->117->1774"
1288 + "default-mobile.handlebars->53->935",
1289 + "default.handlebars->119->1778",
1290 + "default3.handlebars->117->1776"
1291 ]
1292 },
1293 {
@@ -1316,10 +1316,10 @@
1316 "zh-chs": ", 不同意",
1317 "zh-cht": ", 不同意",
1318 "xloc": [
1319 - "default.handlebars->119->1119",
1320 - "default.handlebars->119->2274",
1321 - "default3.handlebars->117->1130",
1322 - "default3.handlebars->117->2285"
1319 + "default.handlebars->119->1120",
1320 + "default.handlebars->119->2276",
1321 + "default3.handlebars->117->1131",
1322 + "default3.handlebars->117->2287"
1323 ]
1324 },
1325 {
@@ -1348,10 +1348,10 @@
1348 "zh-chs": ",提示同意",
1349 "zh-cht": ",提示同意",
1350 "xloc": [
1351 - "default.handlebars->119->1120",
1352 - "default.handlebars->119->2275",
1353 - "default3.handlebars->117->1131",
1354 - "default3.handlebars->117->2286"
1351 + "default.handlebars->119->1121",
1352 + "default.handlebars->119->2277",
1353 + "default3.handlebars->117->1132",
1354 + "default3.handlebars->117->2288"
1355 ]
1356 },
1357 {
@@ -1379,8 +1379,8 @@
1379 "zh-chs": ", RDP",
1380 "zh-cht": ", RDP",
1381 "xloc": [
1382 - "default.handlebars->119->1421",
1383 - "default3.handlebars->117->1422"
1382 + "default.handlebars->119->1422",
1383 + "default3.handlebars->117->1423"
1384 ]
1385 },
1386 {
@@ -1409,10 +1409,10 @@
1409 "zh-chs": ", 每天重复",
1410 "zh-cht": ", 每天重複",
1411 "xloc": [
1412 - "default.handlebars->119->1116",
1413 - "default.handlebars->119->2271",
1414 - "default3.handlebars->117->1127",
1415 - "default3.handlebars->117->2282"
1412 + "default.handlebars->119->1117",
1413 + "default.handlebars->119->2273",
1414 + "default3.handlebars->117->1128",
1415 + "default3.handlebars->117->2284"
1416 ]
1417 },
1418 {
@@ -1441,10 +1441,10 @@
1441 "zh-chs": ", 每周重复一次",
1442 "zh-cht": ", 每週重複一次",
1443 "xloc": [
1444 - "default.handlebars->119->1117",
1445 - "default.handlebars->119->2272",
1446 - "default3.handlebars->117->1128",
1447 - "default3.handlebars->117->2283"
1444 + "default.handlebars->119->1118",
1445 + "default.handlebars->119->2274",
1446 + "default3.handlebars->117->1129",
1447 + "default3.handlebars->117->2285"
1448 ]
1449 },
1450 {
@@ -1499,8 +1499,8 @@
1499 "zh-chs": ", 中继设备",
1500 "zh-cht": ", 中繼設備",
1501 "xloc": [
1502 - "default.handlebars->119->369",
1503 - "default3.handlebars->117->380"
1502 + "default.handlebars->119->370",
1503 + "default3.handlebars->117->381"
1504 ]
1505 },
1506 {
@@ -1529,8 +1529,8 @@
1529 "zh-cht": ", SFTP",
1530 "xloc": [
1531 "default-mobile.handlebars->53->715",
1532 - "default.handlebars->119->1543",
1533 - "default3.handlebars->117->1543"
1532 + "default.handlebars->119->1544",
1533 + "default3.handlebars->117->1544"
1534 ]
1535 },
1536 {
@@ -1558,8 +1558,8 @@
1558 "zh-chs": ", SSH",
1559 "zh-cht": ", SSH",
1560 "xloc": [
1561 - "default.handlebars->119->1511",
1562 - "default3.handlebars->117->1511"
1561 + "default.handlebars->119->1512",
1562 + "default3.handlebars->117->1512"
1563 ]
1564 },
1565 {
@@ -1587,8 +1587,8 @@
1587 "zh-chs": ",软体KVM",
1588 "zh-cht": ",軟體KVM",
1589 "xloc": [
1590 - "default.handlebars->119->1404",
1591 - "default3.handlebars->117->1405",
1590 + "default.handlebars->119->1405",
1591 + "default3.handlebars->117->1406",
1592 "sharing.handlebars->47->12"
1593 ]
1594 },
@@ -1618,10 +1618,10 @@
1618 "zh-chs": ", 工具栏",
1619 "zh-cht": ", 工具欄",
1620 "xloc": [
1621 - "default.handlebars->119->1121",
1622 - "default.handlebars->119->2276",
1623 - "default3.handlebars->117->1132",
1624 - "default3.handlebars->117->2287"
1621 + "default.handlebars->119->1122",
1622 + "default.handlebars->119->2278",
1623 + "default3.handlebars->117->1133",
1624 + "default3.handlebars->117->2289"
1625 ]
1626 },
1627 {
@@ -1676,10 +1676,10 @@
1676 "zh-chs": ", 仅查看桌面",
1677 "zh-cht": ", 僅查看桌面",
1678 "xloc": [
1679 - "default.handlebars->119->1118",
1680 - "default.handlebars->119->2273",
1681 - "default3.handlebars->117->1129",
1682 - "default3.handlebars->117->2284"
1679 + "default.handlebars->119->1119",
1680 + "default.handlebars->119->2275",
1681 + "default3.handlebars->117->1130",
1682 + "default3.handlebars->117->2286"
1683 ]
1684 },
1685 {
@@ -1710,12 +1710,12 @@
1710 "default-mobile.handlebars->53->656",
1711 "default-mobile.handlebars->53->693",
1712 "default-mobile.handlebars->53->716",
1713 - "default.handlebars->119->1420",
1714 - "default.handlebars->119->1512",
1715 - "default.handlebars->119->1544",
1716 - "default3.handlebars->117->1421",
1717 - "default3.handlebars->117->1512",
1718 - "default3.handlebars->117->1544",
1713 + "default.handlebars->119->1421",
1714 + "default.handlebars->119->1513",
1715 + "default.handlebars->119->1545",
1716 + "default3.handlebars->117->1422",
1717 + "default3.handlebars->117->1513",
1718 + "default3.handlebars->117->1545",
1719 "sharing-mobile.handlebars->53->14",
1720 "sharing-mobile.handlebars->53->46",
1721 "sharing-mobile.handlebars->53->63",
@@ -1953,8 +1953,8 @@
1953 "zh-chs": ",{0}观看",
1954 "zh-cht": ",{0}觀看",
1955 "xloc": [
1956 - "default.handlebars->119->1415",
1957 - "default3.handlebars->117->1416",
1956 + "default.handlebars->119->1416",
1957 + "default3.handlebars->117->1417",
1958 "sharing.handlebars->47->13"
1959 ]
1960 },
@@ -2050,12 +2050,12 @@
2050 "default-mobile.handlebars->53->358",
2051 "default-mobile.handlebars->53->360",
2052 "default-mobile.handlebars->53->722",
2053 - "default.handlebars->119->1558",
2054 - "default.handlebars->119->2500",
2055 - "default.handlebars->119->3191",
2056 - "default3.handlebars->117->1558",
2057 - "default3.handlebars->117->2512",
2058 - "default3.handlebars->117->3194",
2053 + "default.handlebars->119->1559",
2054 + "default.handlebars->119->2502",
2055 + "default.handlebars->119->3193",
2056 + "default3.handlebars->117->1559",
2057 + "default3.handlebars->117->2514",
2058 + "default3.handlebars->117->3196",
2059 "sharing-mobile.handlebars->53->79",
2060 "sharing.handlebars->47->50"
2061 ]
@@ -2142,8 +2142,8 @@
2142 "en": "0 bps",
2143 "xloc": [
2144 "default-mobile.handlebars->53->367",
2145 - "default.handlebars->119->2518",
2146 - "default3.handlebars->117->2530"
2145 + "default.handlebars->119->2520",
2146 + "default3.handlebars->117->2532"
2147 ]
2148 },
2149 {
@@ -2250,8 +2250,8 @@
2250 "zh-chs": "1个活跃时段",
2251 "zh-cht": "1個活躍時段",
2252 "xloc": [
2253 - "default.handlebars->119->3042",
2254 - "default3.handlebars->117->3051"
2253 + "default.handlebars->119->3044",
2254 + "default3.handlebars->117->3053"
2255 ]
2256 },
2257 {
@@ -2280,10 +2280,10 @@
2280 "zh-chs": "1个字节",
2281 "zh-cht": "1個位元組",
2282 "xloc": [
2283 - "default-mobile.handlebars->53->1077",
2283 + "default-mobile.handlebars->53->1078",
2284 "default-mobile.handlebars->53->375",
2285 - "default.handlebars->119->2529",
2286 - "default3.handlebars->117->2541",
2285 + "default.handlebars->119->2531",
2286 + "default3.handlebars->117->2543",
2287 "download.handlebars->7->1",
2288 "download2.handlebars->11->1",
2289 "sharing-mobile.handlebars->53->112",
@@ -2345,8 +2345,8 @@
2345 "zh-chs": "1条连接",
2346 "zh-cht": "1位聯絡文",
2347 "xloc": [
2348 - "default.handlebars->119->1417",
2349 - "default3.handlebars->117->1418",
2348 + "default.handlebars->119->1418",
2349 + "default3.handlebars->117->1419",
2350 "sharing.handlebars->47->15"
2351 ]
2352 },
@@ -2376,12 +2376,12 @@
2376 "zh-chs": "1天",
2377 "zh-cht": "1天",
2378 "xloc": [
2379 - "default.handlebars->119->290",
2380 - "default.handlebars->119->570",
2381 - "default.handlebars->119->584",
2382 - "default3.handlebars->117->300",
2383 - "default3.handlebars->117->581",
2384 - "default3.handlebars->117->595"
2379 + "default.handlebars->119->291",
2380 + "default.handlebars->119->571",
2381 + "default.handlebars->119->585",
2382 + "default3.handlebars->117->301",
2383 + "default3.handlebars->117->582",
2384 + "default3.handlebars->117->596"
2385 ]
2386 },
2387 {
@@ -2410,8 +2410,8 @@
2410 "zh-chs": "1组",
2411 "zh-cht": "1群",
2412 "xloc": [
2413 - "default.handlebars->119->2997",
2414 - "default3.handlebars->117->3006"
2413 + "default.handlebars->119->2999",
2414 + "default3.handlebars->117->3008"
2415 ]
2416 },
2417 {
@@ -2440,12 +2440,12 @@
2440 "zh-chs": "1小时",
2441 "zh-cht": "1小時",
2442 "xloc": [
2443 - "default.handlebars->119->288",
2444 - "default.handlebars->119->568",
2445 - "default.handlebars->119->582",
2446 - "default3.handlebars->117->298",
2447 - "default3.handlebars->117->579",
2448 - "default3.handlebars->117->593"
2443 + "default.handlebars->119->289",
2444 + "default.handlebars->119->569",
2445 + "default.handlebars->119->583",
2446 + "default3.handlebars->117->299",
2447 + "default3.handlebars->117->580",
2448 + "default3.handlebars->117->594"
2449 ]
2450 },
2451 {
@@ -2474,10 +2474,10 @@
2474 "zh-chs": "1分钟",
2475 "zh-cht": "1分鐘",
2476 "xloc": [
2477 - "default.handlebars->119->1229",
2478 - "default.handlebars->119->2069",
2479 - "default3.handlebars->117->1238",
2480 - "default3.handlebars->117->2065"
2477 + "default.handlebars->119->1230",
2478 + "default.handlebars->119->2071",
2479 + "default3.handlebars->117->1239",
2480 + "default3.handlebars->117->2067"
2481 ]
2482 },
2483 {
@@ -2561,12 +2561,12 @@
2561 "zh-chs": "1个月",
2562 "zh-cht": "1個月",
2563 "xloc": [
2564 - "default.handlebars->119->292",
2565 - "default.handlebars->119->572",
2566 - "default.handlebars->119->586",
2567 - "default3.handlebars->117->302",
2568 - "default3.handlebars->117->583",
2569 - "default3.handlebars->117->597"
2564 + "default.handlebars->119->293",
2565 + "default.handlebars->119->573",
2566 + "default.handlebars->119->587",
2567 + "default3.handlebars->117->303",
2568 + "default3.handlebars->117->584",
2569 + "default3.handlebars->117->598"
2570 ]
2571 },
2572 {
@@ -2595,8 +2595,8 @@
2595 "zh-chs": "有1个用户没有显示,请使用搜索框查找用户...",
2596 "zh-cht": "有1個用戶沒有顯示,請使用搜尋框搜尋用戶...",
2597 "xloc": [
2598 - "default.handlebars->119->2752",
2599 - "default3.handlebars->117->2764"
2598 + "default.handlebars->119->2754",
2599 + "default3.handlebars->117->2766"
2600 ]
2601 },
2602 {
@@ -2625,8 +2625,8 @@
2625 "zh-chs": "1个节点",
2626 "zh-cht": "1個節點",
2627 "xloc": [
2628 - "default.handlebars->119->697",
2629 - "default3.handlebars->117->708"
2628 + "default.handlebars->119->698",
2629 + "default3.handlebars->117->709"
2630 ]
2631 },
2632 {
@@ -2708,8 +2708,8 @@
2708 "zh-cht": "1秒",
2709 "xloc": [
2710 "default-mobile.handlebars->53->592",
2711 - "default.handlebars->119->1269",
2712 - "default3.handlebars->117->1278"
2711 + "default.handlebars->119->1270",
2712 + "default3.handlebars->117->1279"
2713 ]
2714 },
2715 {
@@ -2793,8 +2793,8 @@
2793 "zh-chs": "1 个选定的设备处于离线状态。",
2794 "zh-cht": "1 個選定的設備處於離線狀態。",
2795 "xloc": [
2796 - "default.handlebars->119->765",
2797 - "default3.handlebars->117->776"
2796 + "default.handlebars->119->766",
2797 + "default3.handlebars->117->777"
2798 ]
2799 },
2800 {
@@ -2823,8 +2823,8 @@
2823 "zh-chs": "1 个选定的设备在线。",
2824 "zh-cht": "1 個選定的設備在線。",
2825 "xloc": [
2826 - "default.handlebars->119->763",
2827 - "default3.handlebars->117->774"
2826 + "default.handlebars->119->764",
2827 + "default3.handlebars->117->775"
2828 ]
2829 },
2830 {
@@ -2860,22 +2860,22 @@
2860 "default-mobile.handlebars->53->444",
2861 "default-mobile.handlebars->53->448",
2862 "default-mobile.handlebars->53->452",
2863 - "default.handlebars->119->2756",
2864 - "default.handlebars->119->459",
2865 - "default.handlebars->119->462",
2866 - "default.handlebars->119->466",
2867 - "default.handlebars->119->470",
2868 - "default.handlebars->119->474",
2869 - "default.handlebars->119->478",
2870 - "default.handlebars->119->482",
2871 - "default3.handlebars->117->2768",
2872 - "default3.handlebars->117->470",
2873 - "default3.handlebars->117->473",
2874 - "default3.handlebars->117->477",
2875 - "default3.handlebars->117->481",
2876 - "default3.handlebars->117->485",
2877 - "default3.handlebars->117->489",
2878 - "default3.handlebars->117->493"
2863 + "default.handlebars->119->2758",
2864 + "default.handlebars->119->460",
2865 + "default.handlebars->119->463",
2866 + "default.handlebars->119->467",
2867 + "default.handlebars->119->471",
2868 + "default.handlebars->119->475",
2869 + "default.handlebars->119->479",
2870 + "default.handlebars->119->483",
2871 + "default3.handlebars->117->2770",
2872 + "default3.handlebars->117->471",
2873 + "default3.handlebars->117->474",
2874 + "default3.handlebars->117->478",
2875 + "default3.handlebars->117->482",
2876 + "default3.handlebars->117->486",
2877 + "default3.handlebars->117->490",
2878 + "default3.handlebars->117->494"
2879 ]
2880 },
2881 {
@@ -2904,12 +2904,12 @@
2904 "zh-chs": "1周",
2905 "zh-cht": "1週",
2906 "xloc": [
2907 - "default.handlebars->119->291",
2908 - "default.handlebars->119->571",
2909 - "default.handlebars->119->585",
2910 - "default3.handlebars->117->301",
2911 - "default3.handlebars->117->582",
2912 - "default3.handlebars->117->596"
2907 + "default.handlebars->119->292",
2908 + "default.handlebars->119->572",
2909 + "default.handlebars->119->586",
2910 + "default3.handlebars->117->302",
2911 + "default3.handlebars->117->583",
2912 + "default3.handlebars->117->597"
2913 ]
2914 },
2915 {
@@ -3087,10 +3087,10 @@
3087 "zh-chs": "10分钟",
3088 "zh-cht": "10分鐘",
3089 "xloc": [
3090 - "default.handlebars->119->1231",
3091 - "default.handlebars->119->2071",
3092 - "default3.handlebars->117->1240",
3093 - "default3.handlebars->117->2067"
3090 + "default.handlebars->119->1232",
3091 + "default.handlebars->119->2073",
3092 + "default3.handlebars->117->1241",
3093 + "default3.handlebars->117->2069"
3094 ]
3095 },
3096 {
@@ -3120,8 +3120,8 @@
3120 "zh-cht": "10 秒",
3121 "xloc": [
3122 "default-mobile.handlebars->53->594",
3123 - "default.handlebars->119->1271",
3124 - "default3.handlebars->117->1280"
3123 + "default.handlebars->119->1272",
3124 + "default3.handlebars->117->1281"
3125 ]
3126 },
3127 {
@@ -3298,10 +3298,10 @@
3298 "zh-chs": "12小时",
3299 "zh-cht": "12小時",
3300 "xloc": [
3301 - "default.handlebars->119->1239",
3302 - "default.handlebars->119->2079",
3303 - "default3.handlebars->117->1248",
3304 - "default3.handlebars->117->2075"
3301 + "default.handlebars->119->1240",
3302 + "default.handlebars->119->2081",
3303 + "default3.handlebars->117->1249",
3304 + "default3.handlebars->117->2077"
3305 ]
3306 },
3307 {
@@ -3445,10 +3445,10 @@
3445 "zh-chs": "15分钟",
3446 "zh-cht": "15分鐘",
3447 "xloc": [
3448 - "default.handlebars->119->1232",
3449 - "default.handlebars->119->2072",
3450 - "default3.handlebars->117->1241",
3451 - "default3.handlebars->117->2068"
3448 + "default.handlebars->119->1233",
3449 + "default.handlebars->119->2074",
3450 + "default3.handlebars->117->1242",
3451 + "default3.handlebars->117->2070"
3452 ]
3453 },
3454 {
@@ -3477,10 +3477,10 @@
3477 "zh-chs": "16小时",
3478 "zh-cht": "16小時",
3479 "xloc": [
3480 - "default.handlebars->119->1240",
3481 - "default.handlebars->119->2080",
3482 - "default3.handlebars->117->1249",
3483 - "default3.handlebars->117->2076"
3480 + "default.handlebars->119->1241",
3481 + "default.handlebars->119->2082",
3482 + "default3.handlebars->117->1250",
3483 + "default3.handlebars->117->2078"
3484 ]
3485 },
3486 {
@@ -3625,10 +3625,10 @@
3625 "zh-chs": "2天",
3626 "zh-cht": "2天",
3627 "xloc": [
3628 - "default.handlebars->119->1242",
3629 - "default.handlebars->119->2082",
3630 - "default3.handlebars->117->1251",
3631 - "default3.handlebars->117->2078"
3628 + "default.handlebars->119->1243",
3629 + "default.handlebars->119->2084",
3630 + "default3.handlebars->117->1252",
3631 + "default3.handlebars->117->2080"
3632 ]
3633 },
3634 {
@@ -3657,10 +3657,10 @@
3657 "zh-chs": "2小时",
3658 "zh-cht": "2小時",
3659 "xloc": [
3660 - "default.handlebars->119->1236",
3661 - "default.handlebars->119->2076",
3662 - "default3.handlebars->117->1245",
3663 - "default3.handlebars->117->2072"
3660 + "default.handlebars->119->1237",
3661 + "default.handlebars->119->2078",
3662 + "default3.handlebars->117->1246",
3663 + "default3.handlebars->117->2074"
3664 ]
3665 },
3666 {
@@ -3690,8 +3690,8 @@
3690 "zh-cht": "兩步登入啟用失敗。",
3691 "xloc": [
3692 "default-mobile.handlebars->53->78",
3693 - "default.handlebars->119->232",
3694 - "default3.handlebars->117->244"
3693 + "default.handlebars->119->233",
3694 + "default3.handlebars->117->245"
3695 ]
3696 },
3697 {
@@ -3721,8 +3721,8 @@
3721 "zh-cht": "兩步登入啟用刪除失敗。",
3722 "xloc": [
3723 "default-mobile.handlebars->53->83",
3724 - "default.handlebars->119->237",
3725 - "default3.handlebars->117->249"
3724 + "default.handlebars->119->238",
3725 + "default3.handlebars->117->250"
3726 ]
3727 },
3728 {
@@ -3870,10 +3870,10 @@
3870 "zh-chs": "24小时",
3871 "zh-cht": "24小時",
3872 "xloc": [
3873 - "default.handlebars->119->1241",
3874 - "default.handlebars->119->2081",
3875 - "default3.handlebars->117->1250",
3876 - "default3.handlebars->117->2077"
3873 + "default.handlebars->119->1242",
3874 + "default.handlebars->119->2083",
3875 + "default3.handlebars->117->1251",
3876 + "default3.handlebars->117->2079"
3877 ]
3878 },
3879 {
@@ -3960,8 +3960,8 @@
3960 "zh-chs": "2FA备份代码已清除",
3961 "zh-cht": "2FA備份代碼已清除",
3962 "xloc": [
3963 - "default.handlebars->119->2642",
3964 - "default3.handlebars->117->2654"
3963 + "default.handlebars->119->2644",
3964 + "default3.handlebars->117->2656"
3965 ]
3966 },
3967 {
@@ -3991,8 +3991,8 @@
3991 "zh-cht": "2FA被鎖定",
3992 "xloc": [
3993 "default-mobile.handlebars->53->65",
3994 - "default.handlebars->119->217",
3995 - "default3.handlebars->117->229"
3994 + "default.handlebars->119->218",
3995 + "default3.handlebars->117->230"
3996 ]
3997 },
3998 {
@@ -4021,8 +4021,8 @@
4021 "zh-chs": "第二个因素",
4022 "zh-cht": "第二個因素",
4023 "xloc": [
4024 - "default.handlebars->119->3230",
4025 - "default3.handlebars->117->3233"
4024 + "default.handlebars->119->3232",
4025 + "default3.handlebars->117->3235"
4026 ]
4027 },
4028 {
@@ -4051,10 +4051,10 @@
4051 "zh-chs": "启用第二因素身份验证",
4052 "zh-cht": "啟用第二因素身份驗證",
4053 "xloc": [
4054 - "default.handlebars->119->2770",
4055 - "default.handlebars->119->3023",
4056 - "default3.handlebars->117->2782",
4057 - "default3.handlebars->117->3032"
4054 + "default.handlebars->119->2772",
4055 + "default.handlebars->119->3025",
4056 + "default3.handlebars->117->2784",
4057 + "default3.handlebars->117->3034"
4058 ]
4059 },
4060 {
@@ -4225,10 +4225,10 @@
4225 "zh-chs": "30分钟",
4226 "zh-cht": "30分鐘",
4227 "xloc": [
4228 - "default.handlebars->119->1233",
4229 - "default.handlebars->119->2073",
4230 - "default3.handlebars->117->1242",
4231 - "default3.handlebars->117->2069"
4228 + "default.handlebars->119->1234",
4229 + "default.handlebars->119->2075",
4230 + "default3.handlebars->117->1243",
4231 + "default3.handlebars->117->2071"
4232 ]
4233 },
4234 {
@@ -4258,8 +4258,8 @@
4258 "zh-cht": "32 位",
4259 "xloc": [
4260 "default-mobile.handlebars->53->760",
4261 - "default.handlebars->119->1621",
4262 - "default3.handlebars->117->1621"
4261 + "default.handlebars->119->1622",
4262 + "default3.handlebars->117->1622"
4263 ]
4264 },
4265 {
@@ -4346,10 +4346,10 @@
4346 "zh-chs": "4天",
4347 "zh-cht": "4天",
4348 "xloc": [
4349 - "default.handlebars->119->1243",
4350 - "default.handlebars->119->2083",
4351 - "default3.handlebars->117->1252",
4352 - "default3.handlebars->117->2079"
4349 + "default.handlebars->119->1244",
4350 + "default.handlebars->119->2085",
4351 + "default3.handlebars->117->1253",
4352 + "default3.handlebars->117->2081"
4353 ]
4354 },
4355 {
@@ -4378,10 +4378,10 @@
4378 "zh-chs": "4个小时",
4379 "zh-cht": "4個小時",
4380 "xloc": [
4381 - "default.handlebars->119->1237",
4382 - "default.handlebars->119->2077",
4383 - "default3.handlebars->117->1246",
4384 - "default3.handlebars->117->2073"
4381 + "default.handlebars->119->1238",
4382 + "default.handlebars->119->2079",
4383 + "default3.handlebars->117->1247",
4384 + "default3.handlebars->117->2075"
4385 ]
4386 },
4387 {
@@ -4527,10 +4527,10 @@
4527 "zh-chs": "45分钟",
4528 "zh-cht": "45分鐘",
4529 "xloc": [
4530 - "default.handlebars->119->1234",
4531 - "default.handlebars->119->2074",
4532 - "default3.handlebars->117->1243",
4533 - "default3.handlebars->117->2070"
4530 + "default.handlebars->119->1235",
4531 + "default.handlebars->119->2076",
4532 + "default3.handlebars->117->1244",
4533 + "default3.handlebars->117->2072"
4534 ]
4535 },
4536 {
@@ -4588,10 +4588,10 @@
4588 "zh-chs": "5分钟",
4589 "zh-cht": "5分鐘",
4590 "xloc": [
4591 - "default.handlebars->119->1230",
4592 - "default.handlebars->119->2070",
4593 - "default3.handlebars->117->1239",
4594 - "default3.handlebars->117->2066"
4591 + "default.handlebars->119->1231",
4592 + "default.handlebars->119->2072",
4593 + "default3.handlebars->117->1240",
4594 + "default3.handlebars->117->2068"
4595 ]
4596 },
4597 {
@@ -4621,8 +4621,8 @@
4621 "zh-cht": "5秒",
4622 "xloc": [
4623 "default-mobile.handlebars->53->593",
4624 - "default.handlebars->119->1270",
4625 - "default3.handlebars->117->1279"
4624 + "default.handlebars->119->1271",
4625 + "default3.handlebars->117->1280"
4626 ]
4627 },
4628 {
@@ -4802,10 +4802,10 @@
4802 "zh-chs": "60分钟",
4803 "zh-cht": "60分鐘",
4804 "xloc": [
4805 - "default.handlebars->119->1235",
4806 - "default.handlebars->119->2075",
4807 - "default3.handlebars->117->1244",
4808 - "default3.handlebars->117->2071"
4805 + "default.handlebars->119->1236",
4806 + "default.handlebars->119->2077",
4807 + "default3.handlebars->117->1245",
4808 + "default3.handlebars->117->2073"
4809 ]
4810 },
4811 {
@@ -4894,8 +4894,8 @@
4894 "zh-cht": "64 位",
4895 "xloc": [
4896 "default-mobile.handlebars->53->762",
4897 - "default.handlebars->119->1623",
4898 - "default3.handlebars->117->1623"
4897 + "default.handlebars->119->1624",
4898 + "default3.handlebars->117->1624"
4899 ]
4900 },
4901 {
@@ -5057,8 +5057,8 @@
5057 "zh-chs": "7天电源状态",
5058 "zh-cht": "7天電源狀態",
5059 "xloc": [
5060 - "default.handlebars->119->1316",
5061 - "default3.handlebars->117->1320"
5060 + "default.handlebars->119->1317",
5061 + "default3.handlebars->117->1321"
5062 ]
5063 },
5064 {
@@ -5087,8 +5087,8 @@
5087 "zh-chs": "7天",
5088 "zh-cht": "7天",
5089 "xloc": [
5090 - "default.handlebars->119->2084",
5091 - "default3.handlebars->117->2080"
5090 + "default.handlebars->119->2086",
5091 + "default3.handlebars->117->2082"
5092 ]
5093 },
5094 {
@@ -5179,14 +5179,14 @@
5179 "zh-chs": "8小時",
5180 "zh-cht": "8小時",
5181 "xloc": [
5182 - "default.handlebars->119->1238",
5183 - "default.handlebars->119->2078",
5184 - "default.handlebars->119->569",
5185 - "default.handlebars->119->583",
5186 - "default3.handlebars->117->1247",
5187 - "default3.handlebars->117->2074",
5188 - "default3.handlebars->117->580",
5189 - "default3.handlebars->117->594"
5182 + "default.handlebars->119->1239",
5183 + "default.handlebars->119->2080",
5184 + "default.handlebars->119->570",
5185 + "default.handlebars->119->584",
5186 + "default3.handlebars->117->1248",
5187 + "default3.handlebars->117->2076",
5188 + "default3.handlebars->117->581",
5189 + "default3.handlebars->117->595"
5190 ]
5191 },
5192 {
@@ -5389,12 +5389,12 @@
5389 "zh-cht": "ACM",
5390 "xloc": [
5391 "default-mobile.handlebars->53->523",
5392 - "default.handlebars->119->2252",
5393 - "default.handlebars->119->447",
5394 - "default.handlebars->119->931",
5395 - "default3.handlebars->117->2263",
5396 - "default3.handlebars->117->458",
5397 - "default3.handlebars->117->942"
5392 + "default.handlebars->119->2254",
5393 + "default.handlebars->119->448",
5394 + "default.handlebars->119->932",
5395 + "default3.handlebars->117->2265",
5396 + "default3.handlebars->117->459",
5397 + "default3.handlebars->117->943"
5398 ]
5399 },
5400 {
@@ -5472,10 +5472,10 @@
5472 "zh-chs": "AMT",
5473 "zh-cht": "AMT",
5474 "xloc": [
5475 - "default.handlebars->119->425",
5476 - "default.handlebars->119->732",
5477 - "default3.handlebars->117->436",
5478 - "default3.handlebars->117->743"
5475 + "default.handlebars->119->426",
5476 + "default.handlebars->119->733",
5477 + "default3.handlebars->117->437",
5478 + "default3.handlebars->117->744"
5479 ]
5480 },
5481 {
@@ -5484,8 +5484,8 @@
5484 "nl": "AMT Host",
5485 "pl": "Host AMT",
5486 "xloc": [
5487 - "default.handlebars->119->396",
5488 - "default3.handlebars->117->407"
5487 + "default.handlebars->119->397",
5488 + "default3.handlebars->117->408"
5489 ]
5490 },
5491 {
@@ -5495,8 +5495,8 @@
5495 "nl": "AMT status",
5496 "pl": "Stan AMT",
5497 "xloc": [
5498 - "default.handlebars->119->397",
5499 - "default3.handlebars->117->408"
5498 + "default.handlebars->119->398",
5499 + "default3.handlebars->117->409"
5500 ]
5501 },
5502 {
@@ -5524,8 +5524,8 @@
5524 "zh-chs": "操作系统",
5525 "zh-cht": "AMT操作系統",
5526 "xloc": [
5527 - "default.handlebars->119->3389",
5528 - "default3.handlebars->117->3394"
5527 + "default.handlebars->119->3391",
5528 + "default3.handlebars->117->3396"
5529 ]
5530 },
5531 {
@@ -5553,10 +5553,10 @@
5553 "zh-chs": "AMT-Redir",
5554 "zh-cht": "AMT-Redir",
5555 "xloc": [
5556 - "default.handlebars->119->3240",
5557 - "default.handlebars->119->3293",
5558 - "default3.handlebars->117->3243",
5559 - "default3.handlebars->117->3296"
5556 + "default.handlebars->119->3242",
5557 + "default.handlebars->119->3295",
5558 + "default3.handlebars->117->3245",
5559 + "default3.handlebars->117->3298"
5560 ]
5561 },
5562 {
@@ -5584,10 +5584,10 @@
5584 "zh-chs": "AMT-WSMAN",
5585 "zh-cht": "AMT-WSMAN",
5586 "xloc": [
5587 - "default.handlebars->119->3239",
5588 - "default.handlebars->119->3292",
5589 - "default3.handlebars->117->3242",
5590 - "default3.handlebars->117->3295"
5587 + "default.handlebars->119->3241",
5588 + "default.handlebars->119->3294",
5589 + "default3.handlebars->117->3244",
5590 + "default3.handlebars->117->3297"
5591 ]
5592 },
5593 {
@@ -5595,8 +5595,8 @@
5595 "en": "APK",
5596 "nl": "APK",
5597 "xloc": [
5598 - "default.handlebars->119->659",
5599 - "default3.handlebars->117->670"
5598 + "default.handlebars->119->660",
5599 + "default3.handlebars->117->671"
5600 ]
5601 },
5602 {
@@ -5607,9 +5607,9 @@
5607 "pl": "Wersja APK MeshAgent",
5608 "uk": "MeshAgent версія APK",
5609 "xloc": [
5610 - "default-mobile.handlebars->53->986",
5611 - "default.handlebars->119->658",
5612 - "default3.handlebars->117->669"
5610 + "default-mobile.handlebars->53->987",
5611 + "default.handlebars->119->659",
5612 + "default3.handlebars->117->670"
5613 ]
5614 },
5615 {
@@ -5617,8 +5617,8 @@
5617 "en": "ARM 64bit version of macOS Mesh Agent",
5618 "nl": "ARM 64bit versie van de macOS Mesh Agent",
5619 "xloc": [
5620 - "default.handlebars->119->647",
5621 - "default3.handlebars->117->658"
5620 + "default.handlebars->119->648",
5621 + "default3.handlebars->117->659"
5622 ]
5623 },
5624 {
@@ -5630,10 +5630,10 @@
5630 "pl": "Meshagent wersja ARM 64bit",
5631 "uk": "MeshAgent версія ARM 64-біт ",
5632 "xloc": [
5633 - "default.handlebars->119->632",
5634 - "default.handlebars->119->679",
5635 - "default3.handlebars->117->643",
5636 - "default3.handlebars->117->690"
5633 + "default.handlebars->119->633",
5634 + "default.handlebars->119->680",
5635 + "default3.handlebars->117->644",
5636 + "default3.handlebars->117->691"
5637 ]
5638 },
5639 {
@@ -5822,10 +5822,10 @@
5822 "xloc": [
5823 "default-mobile.handlebars->53->767",
5824 "default-mobile.handlebars->53->769",
5825 - "default.handlebars->119->950",
5826 - "default.handlebars->119->952",
5827 - "default3.handlebars->117->961",
5828 - "default3.handlebars->117->963"
5825 + "default.handlebars->119->951",
5826 + "default.handlebars->119->953",
5827 + "default3.handlebars->117->962",
5828 + "default3.handlebars->117->964"
5829 ]
5830 },
5831 {
@@ -5854,9 +5854,9 @@
5854 "zh-chs": "拒绝访问",
5855 "zh-cht": "拒絕存取",
5856 "xloc": [
5857 - "default-mobile.handlebars->53->935",
5858 - "default.handlebars->119->1777",
5859 - "default3.handlebars->117->1775"
5857 + "default-mobile.handlebars->53->936",
5858 + "default.handlebars->119->1779",
5859 + "default3.handlebars->117->1777"
5860 ]
5861 },
5862 {
@@ -5945,8 +5945,8 @@
5945 "zh-chs": "访问服务器档案",
5946 "zh-cht": "存取伺服器檔案",
5947 "xloc": [
5948 - "default.handlebars->119->2953",
5949 - "default3.handlebars->117->2962"
5948 + "default.handlebars->119->2955",
5949 + "default3.handlebars->117->2964"
5950 ]
5951 },
5952 {
@@ -6073,19 +6073,19 @@
6073 "default-mobile.handlebars->53->492",
6074 "default-mobile.handlebars->53->98",
6075 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountSecurity->1->0",
6076 - "default.handlebars->119->2113",
6076 "default.handlebars->119->2115",
6078 - "default.handlebars->119->3444",
6079 - "default.handlebars->119->740",
6080 - "default.handlebars->119->891",
6081 - "default.handlebars->119->893",
6082 - "default3.handlebars->117->2130",
6083 - "default3.handlebars->117->2131",
6084 - "default3.handlebars->117->3447",
6077 + "default.handlebars->119->2117",
6078 + "default.handlebars->119->3446",
6079 + "default.handlebars->119->741",
6080 + "default.handlebars->119->892",
6081 + "default.handlebars->119->894",
6082 + "default3.handlebars->117->2132",
6083 + "default3.handlebars->117->2133",
6084 "default3.handlebars->117->3449",
6086 - "default3.handlebars->117->751",
6087 - "default3.handlebars->117->902",
6088 - "default3.handlebars->117->904"
6085 + "default3.handlebars->117->3451",
6086 + "default3.handlebars->117->752",
6087 + "default3.handlebars->117->903",
6088 + "default3.handlebars->117->905"
6089 ]
6090 },
6091 {
@@ -6114,9 +6114,9 @@
6114 "zh-chs": "帐号设定",
6115 "zh-cht": "帳號設定",
6116 "xloc": [
6117 - "default-mobile.handlebars->53->1044",
6118 - "default.handlebars->119->3313",
6119 - "default3.handlebars->117->3318"
6117 + "default-mobile.handlebars->53->1045",
6118 + "default.handlebars->119->3315",
6119 + "default3.handlebars->117->3320"
6120 ]
6121 },
6122 {
@@ -6191,8 +6191,8 @@
6191 "pl": "Konto zmienione di synchronizacji z danymi LDAP.",
6192 "uk": "Акаунт змінено на синхронізацію з даними LDAP.",
6193 "xloc": [
6194 - "default.handlebars->119->2703",
6195 - "default3.handlebars->117->2715"
6194 + "default.handlebars->119->2705",
6195 + "default3.handlebars->117->2717"
6196 ]
6197 },
6198 {
@@ -6221,8 +6221,8 @@
6221 "zh-chs": "帐户已更改:{0}",
6222 "zh-cht": "帳戶已更改:{0}",
6223 "xloc": [
6224 - "default.handlebars->119->2615",
6225 - "default3.handlebars->117->2627"
6224 + "default.handlebars->119->2617",
6225 + "default3.handlebars->117->2629"
6226 ]
6227 },
6228 {
@@ -6251,8 +6251,8 @@
6251 "zh-chs": "创建帐户,电子邮件为{0}",
6252 "zh-cht": "創建帳戶,電子郵件為{0}",
6253 "xloc": [
6254 - "default.handlebars->119->2614",
6255 - "default3.handlebars->117->2626"
6254 + "default.handlebars->119->2616",
6255 + "default3.handlebars->117->2628"
6256 ]
6257 },
6258 {
@@ -6281,8 +6281,8 @@
6281 "zh-chs": "已创建帐户,名称为 {0}。",
6282 "zh-cht": "已創建帳戶,名稱為 {0}。",
6283 "xloc": [
6284 - "default.handlebars->119->2677",
6285 - "default3.handlebars->117->2689"
6284 + "default.handlebars->119->2679",
6285 + "default3.handlebars->117->2691"
6286 ]
6287 },
6288 {
@@ -6311,8 +6311,8 @@
6311 "zh-chs": "创建帐户,用户名是{0}",
6312 "zh-cht": "帳戶已創建,用戶名是{0}",
6313 "xloc": [
6314 - "default.handlebars->119->2613",
6315 - "default3.handlebars->117->2625"
6314 + "default.handlebars->119->2615",
6315 + "default3.handlebars->117->2627"
6316 ]
6317 },
6318 {
@@ -6342,12 +6342,12 @@
6342 "zh-cht": "帳戶已被鎖定",
6343 "xloc": [
6344 "default-mobile.handlebars->53->69",
6345 - "default.handlebars->119->221",
6346 - "default.handlebars->119->2772",
6347 - "default.handlebars->119->2950",
6348 - "default3.handlebars->117->233",
6349 - "default3.handlebars->117->2784",
6350 - "default3.handlebars->117->2959"
6345 + "default.handlebars->119->222",
6346 + "default.handlebars->119->2774",
6347 + "default.handlebars->119->2952",
6348 + "default3.handlebars->117->234",
6349 + "default3.handlebars->117->2786",
6350 + "default3.handlebars->117->2961"
6351 ]
6352 },
6353 {
@@ -6376,9 +6376,9 @@
6376 "zh-chs": "达到帐户限制。",
6377 "zh-cht": "達到帳戶限制。",
6378 "xloc": [
6379 - "default-mobile.handlebars->53->1056",
6380 - "default.handlebars->119->3325",
6381 - "default3.handlebars->117->3330",
6379 + "default-mobile.handlebars->53->1057",
6380 + "default.handlebars->119->3327",
6381 + "default3.handlebars->117->3332",
6382 "login-mobile.handlebars->23->6",
6383 "login.handlebars->13->8",
6384 "login2.handlebars->17->206"
@@ -6441,8 +6441,8 @@
6441 "zh-chs": "帐号登录",
6442 "zh-cht": "帳號登錄",
6443 "xloc": [
6444 - "default.handlebars->119->2550",
6445 - "default3.handlebars->117->2562"
6444 + "default.handlebars->119->2552",
6445 + "default3.handlebars->117->2564"
6446 ]
6447 },
6448 {
@@ -6471,8 +6471,8 @@
6471 "zh-chs": "来自 {0}、{1}、{2} 的帐户登录",
6472 "zh-cht": "從 {0}、{1}、{2} 登錄帳戶",
6473 "xloc": [
6474 - "default.handlebars->119->2656",
6475 - "default3.handlebars->117->2668"
6474 + "default.handlebars->119->2658",
6475 + "default3.handlebars->117->2670"
6476 ]
6477 },
6478 {
@@ -6486,8 +6486,8 @@
6486 "pl": "Zapisy logowania tokenami użytkownika",
6487 "uk": "Записи токенів входу до акаунту",
6488 "xloc": [
6489 - "default.handlebars->119->3282",
6490 - "default3.handlebars->117->3285"
6489 + "default.handlebars->119->3284",
6490 + "default3.handlebars->117->3287"
6491 ]
6492 },
6493 {
@@ -6516,8 +6516,8 @@
6516 "zh-chs": "帐户登出",
6517 "zh-cht": "帳戶登出",
6518 "xloc": [
6519 - "default.handlebars->119->2551",
6520 - "default3.handlebars->117->2563"
6519 + "default.handlebars->119->2553",
6520 + "default3.handlebars->117->2565"
6521 ]
6522 },
6523 {
@@ -6577,8 +6577,8 @@
6577 "zh-chs": "帐户密码已更改:{0}",
6578 "zh-cht": "帳戶密碼已更改:{0}",
6579 "xloc": [
6580 - "default.handlebars->119->2623",
6581 - "default3.handlebars->117->2635"
6580 + "default.handlebars->119->2625",
6581 + "default3.handlebars->117->2637"
6582 ]
6583 },
6584 {
@@ -6607,8 +6607,8 @@
6607 "zh-chs": "帐户已删除",
6608 "zh-cht": "帳戶已刪除",
6609 "xloc": [
6610 - "default.handlebars->119->2612",
6611 - "default3.handlebars->117->2624"
6610 + "default.handlebars->119->2614",
6611 + "default3.handlebars->117->2626"
6612 ]
6613 },
6614 {
@@ -6667,10 +6667,10 @@
6667 "zh-chs": "指令",
6668 "zh-cht": "指令",
6669 "xloc": [
6670 - "default-mobile.handlebars->53->950",
6671 - "default.handlebars->119->1792",
6670 + "default-mobile.handlebars->53->951",
6671 + "default.handlebars->119->1794",
6672 "default.handlebars->container->column_l->p42->p42tbl->1->0->8",
6673 - "default3.handlebars->117->1790",
6673 + "default3.handlebars->117->1792",
6674 "default3.handlebars->container->column_l->p42->p42tbl->1->0->17"
6675 ]
6676 },
@@ -6700,10 +6700,10 @@
6700 "zh-chs": "动作档案",
6701 "zh-cht": "動作檔案",
6702 "xloc": [
6703 - "default.handlebars->119->1363",
6704 - "default.handlebars->119->1365",
6705 - "default3.handlebars->117->1365",
6706 - "default3.handlebars->117->1367"
6703 + "default.handlebars->119->1364",
6704 + "default.handlebars->119->1366",
6705 + "default3.handlebars->117->1366",
6706 + "default3.handlebars->117->1368"
6707 ]
6708 },
6709 {
@@ -6736,11 +6736,11 @@
6736 "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea4->1->3",
6737 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->1",
6738 "default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea4->1->3",
6739 - "default.handlebars->119->1025",
6739 + "default.handlebars->119->1026",
6740 "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1",
6741 "default.handlebars->container->column_l->p12->termTable->1->1->0->1->1",
6742 "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->1",
6743 - "default3.handlebars->117->1036",
6743 + "default3.handlebars->117->1037",
6744 "default3.handlebars->container->column_l->p11->deskarea0->deskarea1->3",
6745 "default3.handlebars->container->column_l->p12->termTable->1->1->0->1->3",
6746 "default3.handlebars->container->column_l->p13->p13toolbar->1->0->1->3"
@@ -6772,8 +6772,8 @@
6772 "zh-chs": "使用FAT格式的USB密钥在管理控制模式(ACM)中激活英特尔&reg;AMT。将setup.bin放在其上,然后使用此键引导一台或多台计算机。",
6773 "zh-cht": "使用FAT格式的USB密鑰在管理控制模式(ACM)中激活英特爾&reg;AMT。將setup.bin放在其上,然後使用此鍵引導一台或多台計算機。",
6774 "xloc": [
6775 - "default.handlebars->119->535",
6776 - "default3.handlebars->117->546"
6775 + "default.handlebars->119->536",
6776 + "default3.handlebars->117->547"
6777 ]
6778 },
6779 {
@@ -6860,8 +6860,8 @@
6860 "zh-chs": "如果ACM失败,则激活到CCM",
6861 "zh-cht": "如果ACM失敗,則激活到CCM",
6862 "xloc": [
6863 - "default.handlebars->119->2307",
6864 - "default3.handlebars->117->2316"
6863 + "default.handlebars->119->2309",
6864 + "default3.handlebars->117->2318"
6865 ]
6866 },
6867 {
@@ -6892,13 +6892,13 @@
6892 "xloc": [
6893 "default-mobile.handlebars->53->518",
6894 "default-mobile.handlebars->53->520",
6895 - "default-mobile.handlebars->53->837",
6896 - "default.handlebars->119->1678",
6897 - "default.handlebars->119->924",
6898 - "default.handlebars->119->926",
6899 - "default3.handlebars->117->1676",
6900 - "default3.handlebars->117->935",
6901 - "default3.handlebars->117->937"
6895 + "default-mobile.handlebars->53->838",
6896 + "default.handlebars->119->1680",
6897 + "default.handlebars->119->925",
6898 + "default.handlebars->119->927",
6899 + "default3.handlebars->117->1678",
6900 + "default3.handlebars->117->936",
6901 + "default3.handlebars->117->938"
6902 ]
6903 },
6904 {
@@ -6927,8 +6927,8 @@
6927 "zh-chs": "激活",
6928 "zh-cht": "啟動",
6929 "xloc": [
6930 - "default.handlebars->119->332",
6931 - "default3.handlebars->117->342"
6930 + "default.handlebars->119->333",
6931 + "default3.handlebars->117->343"
6932 ]
6933 },
6934 {
@@ -6957,10 +6957,10 @@
6957 "zh-chs": "主动设备共享",
6958 "zh-cht": "主動設備共享",
6959 "xloc": [
6960 - "default.handlebars->119->1101",
6961 - "default.handlebars->119->2256",
6962 - "default3.handlebars->117->1112",
6963 - "default3.handlebars->117->2267"
6960 + "default.handlebars->119->1102",
6961 + "default.handlebars->119->2258",
6962 + "default3.handlebars->117->1113",
6963 + "default3.handlebars->117->2269"
6964 ]
6965 },
6966 {
@@ -6989,8 +6989,8 @@
6989 "zh-chs": "活动登录令牌",
6990 "zh-cht": "活動登錄令牌",
6991 "xloc": [
6992 - "default.handlebars->119->2144",
6993 - "default3.handlebars->117->2159"
6992 + "default.handlebars->119->2146",
6993 + "default3.handlebars->117->2161"
6994 ]
6995 },
6996 {
@@ -7020,8 +7020,8 @@
7020 "zh-cht": "活躍用戶",
7021 "xloc": [
7022 "default-mobile.handlebars->53->796",
7023 - "default.handlebars->119->979",
7024 - "default3.handlebars->117->990"
7023 + "default.handlebars->119->980",
7024 + "default3.handlebars->117->991"
7025 ]
7026 },
7027 {
@@ -7051,8 +7051,8 @@
7051 "zh-cht": "活躍用戶",
7052 "xloc": [
7053 "default-mobile.handlebars->53->795",
7054 - "default.handlebars->119->978",
7055 - "default3.handlebars->117->989"
7054 + "default.handlebars->119->979",
7055 + "default3.handlebars->117->990"
7056 ]
7057 },
7058 {
@@ -7108,10 +7108,10 @@
7108 "zh-cht": "添加",
7109 "xloc": [
7110 "default-mobile.handlebars->53->685",
7111 - "default.handlebars->119->1453",
7112 - "default.handlebars->119->1459",
7113 - "default3.handlebars->117->1455",
7114 - "default3.handlebars->117->1461",
7111 + "default.handlebars->119->1454",
7112 + "default.handlebars->119->1460",
7113 + "default3.handlebars->117->1456",
7114 + "default3.handlebars->117->1462",
7115 "sharing-mobile.handlebars->53->41"
7116 ]
7117 },
@@ -7193,10 +7193,10 @@
7193 "zh-chs": "添加代理",
7194 "zh-cht": "新增代理",
7195 "xloc": [
7196 - "default.handlebars->119->2246",
7197 - "default.handlebars->119->501",
7198 - "default3.handlebars->117->2257",
7199 - "default3.handlebars->117->512"
7196 + "default.handlebars->119->2248",
7197 + "default.handlebars->119->502",
7198 + "default3.handlebars->117->2259",
7199 + "default3.handlebars->117->513"
7200 ]
7201 },
7202 {
@@ -7251,14 +7251,14 @@
7251 "zh-chs": "添加设备",
7252 "zh-cht": "新增裝置",
7253 "xloc": [
7254 - "default.handlebars->119->2250",
7255 - "default.handlebars->119->2925",
7256 - "default.handlebars->119->3120",
7257 - "default.handlebars->119->505",
7258 - "default3.handlebars->117->2261",
7259 - "default3.handlebars->117->2934",
7260 - "default3.handlebars->117->3123",
7261 - "default3.handlebars->117->516"
7254 + "default.handlebars->119->2252",
7255 + "default.handlebars->119->2927",
7256 + "default.handlebars->119->3122",
7257 + "default.handlebars->119->506",
7258 + "default3.handlebars->117->2263",
7259 + "default3.handlebars->117->2936",
7260 + "default3.handlebars->117->3125",
7261 + "default3.handlebars->117->517"
7262 ]
7263 },
7264 {
@@ -7287,8 +7287,8 @@
7287 "zh-chs": "添加设备日志",
7288 "zh-cht": "新增裝置日誌",
7289 "xloc": [
7290 - "default.handlebars->119->1187",
7291 - "default3.handlebars->117->1196"
7290 + "default.handlebars->119->1188",
7291 + "default3.handlebars->117->1197"
7292 ]
7293 },
7294 {
@@ -7317,14 +7317,14 @@
7317 "zh-chs": "添加设备组",
7318 "zh-cht": "新增裝置群",
7319 "xloc": [
7320 - "default.handlebars->119->2395",
7321 - "default.handlebars->119->2919",
7322 - "default.handlebars->119->3108",
7323 - "default.handlebars->119->401",
7324 - "default3.handlebars->117->2407",
7325 - "default3.handlebars->117->2928",
7326 - "default3.handlebars->117->3111",
7327 - "default3.handlebars->117->412"
7320 + "default.handlebars->119->2397",
7321 + "default.handlebars->119->2921",
7322 + "default.handlebars->119->3110",
7323 + "default.handlebars->119->402",
7324 + "default3.handlebars->117->2409",
7325 + "default3.handlebars->117->2930",
7326 + "default3.handlebars->117->3113",
7327 + "default3.handlebars->117->413"
7328 ]
7329 },
7330 {
@@ -7353,8 +7353,8 @@
7353 "zh-chs": "添加设备组权限",
7354 "zh-cht": "新增裝置群權限",
7355 "xloc": [
7356 - "default.handlebars->119->2392",
7357 - "default3.handlebars->117->2404"
7356 + "default.handlebars->119->2394",
7357 + "default3.handlebars->117->2406"
7358 ]
7359 },
7360 {
@@ -7383,10 +7383,10 @@
7383 "zh-chs": "添加设备权限",
7384 "zh-cht": "新增裝置權限",
7385 "xloc": [
7386 - "default.handlebars->119->2397",
7386 "default.handlebars->119->2399",
7388 - "default3.handlebars->117->2409",
7389 - "default3.handlebars->117->2411"
7387 + "default.handlebars->119->2401",
7388 + "default3.handlebars->117->2411",
7389 + "default3.handlebars->117->2413"
7390 ]
7391 },
7392 {
@@ -7441,8 +7441,8 @@
7441 "zh-chs": "添加英特尔&reg;AMT设备",
7442 "zh-cht": "新增Intel&reg; AMT裝置",
7443 "xloc": [
7444 - "default.handlebars->119->525",
7445 - "default3.handlebars->117->536"
7444 + "default.handlebars->119->526",
7445 + "default3.handlebars->117->537"
7446 ]
7447 },
7448 {
@@ -7471,8 +7471,8 @@
7471 "zh-chs": "新增密钥",
7472 "zh-cht": "新增密鑰",
7473 "xloc": [
7474 - "default.handlebars->119->251",
7475 - "default3.handlebars->117->261"
7474 + "default.handlebars->119->252",
7475 + "default3.handlebars->117->262"
7476 ]
7477 },
7478 {
@@ -7501,8 +7501,8 @@
7501 "zh-chs": "添加本地",
7502 "zh-cht": "新增本地",
7503 "xloc": [
7504 - "default.handlebars->119->495",
7505 - "default3.handlebars->117->506"
7504 + "default.handlebars->119->496",
7505 + "default3.handlebars->117->507"
7506 ]
7507 },
7508 {
@@ -7557,8 +7557,8 @@
7557 "zh-chs": "添加成员身份",
7558 "zh-cht": "新增成員身份",
7559 "xloc": [
7560 - "default.handlebars->119->3140",
7561 - "default3.handlebars->117->3143"
7560 + "default.handlebars->119->3142",
7561 + "default3.handlebars->117->3145"
7562 ]
7563 },
7564 {
@@ -7587,8 +7587,8 @@
7587 "zh-chs": "添加 Mesh Agent",
7588 "zh-cht": "新增 Mesh Agent",
7589 "xloc": [
7590 - "default.handlebars->119->696",
7591 - "default3.handlebars->117->707"
7590 + "default.handlebars->119->697",
7591 + "default3.handlebars->117->708"
7592 ]
7593 },
7594 {
@@ -7643,18 +7643,18 @@
7643 "zh-chs": "添加安全密钥",
7644 "zh-cht": "新增安全密鑰",
7645 "xloc": [
7646 - "default.handlebars->119->1859",
7647 - "default.handlebars->119->1860",
7648 - "default.handlebars->119->255",
7649 - "default.handlebars->119->257",
7650 - "default.handlebars->119->260",
7651 - "default.handlebars->119->262",
7652 - "default3.handlebars->117->1855",
7653 - "default3.handlebars->117->1856",
7654 - "default3.handlebars->117->265",
7655 - "default3.handlebars->117->267",
7656 - "default3.handlebars->117->270",
7657 - "default3.handlebars->117->272"
7646 + "default.handlebars->119->1861",
7647 + "default.handlebars->119->1862",
7648 + "default.handlebars->119->256",
7649 + "default.handlebars->119->258",
7650 + "default.handlebars->119->261",
7651 + "default.handlebars->119->263",
7652 + "default3.handlebars->117->1857",
7653 + "default3.handlebars->117->1858",
7654 + "default3.handlebars->117->266",
7655 + "default3.handlebars->117->268",
7656 + "default3.handlebars->117->271",
7657 + "default3.handlebars->117->273"
7658 ]
7659 },
7660 {
@@ -7683,9 +7683,9 @@
7683 "zh-chs": "添加用户",
7684 "zh-cht": "新增用戶",
7685 "xloc": [
7686 - "default-mobile.handlebars->53->968",
7687 - "default.handlebars->119->1093",
7688 - "default3.handlebars->117->1104"
7686 + "default-mobile.handlebars->53->969",
7687 + "default.handlebars->119->1094",
7688 + "default3.handlebars->117->1105"
7689 ]
7690 },
7691 {
@@ -7714,8 +7714,8 @@
7714 "zh-chs": "添加用户设备权限",
7715 "zh-cht": "新增用戶裝置權限",
7716 "xloc": [
7717 - "default.handlebars->119->2402",
7718 - "default3.handlebars->117->2414"
7717 + "default.handlebars->119->2404",
7718 + "default3.handlebars->117->2416"
7719 ]
7720 },
7721 {
@@ -7744,14 +7744,14 @@
7744 "zh-chs": "添加用户组",
7745 "zh-cht": "新增用戶群",
7746 "xloc": [
7747 - "default.handlebars->119->1094",
7748 - "default.handlebars->119->2240",
7749 - "default.handlebars->119->2394",
7750 - "default.handlebars->119->3114",
7751 - "default3.handlebars->117->1105",
7752 - "default3.handlebars->117->2251",
7753 - "default3.handlebars->117->2406",
7754 - "default3.handlebars->117->3117"
7747 + "default.handlebars->119->1095",
7748 + "default.handlebars->119->2242",
7749 + "default.handlebars->119->2396",
7750 + "default.handlebars->119->3116",
7751 + "default3.handlebars->117->1106",
7752 + "default3.handlebars->117->2253",
7753 + "default3.handlebars->117->2408",
7754 + "default3.handlebars->117->3119"
7755 ]
7756 },
7757 {
@@ -7780,8 +7780,8 @@
7780 "zh-chs": "添加用户组设备权限",
7781 "zh-cht": "新增用戶群裝置權限",
7782 "xloc": [
7783 - "default.handlebars->119->2404",
7784 - "default3.handlebars->117->2416"
7783 + "default.handlebars->119->2406",
7784 + "default3.handlebars->117->2418"
7785 ]
7786 },
7787 {
@@ -7810,7 +7810,7 @@
7810 "zh-chs": "将用户添加到设备组",
7811 "zh-cht": "將用戶新增到裝置群",
7812 "xloc": [
7813 - "default-mobile.handlebars->53->1009"
7813 + "default-mobile.handlebars->53->1010"
7814 ]
7815 },
7816 {
@@ -7865,10 +7865,10 @@
7865 "zh-chs": "添加用户",
7866 "zh-cht": "新增用戶",
7867 "xloc": [
7868 - "default.handlebars->119->2239",
7869 - "default.handlebars->119->2914",
7870 - "default3.handlebars->117->2250",
7871 - "default3.handlebars->117->2923"
7868 + "default.handlebars->119->2241",
7869 + "default.handlebars->119->2916",
7870 + "default3.handlebars->117->2252",
7871 + "default3.handlebars->117->2925"
7872 ]
7873 },
7874 {
@@ -7897,8 +7897,8 @@
7897 "zh-chs": "将用户添加到设备组",
7898 "zh-cht": "將用戶新增到裝置群",
7899 "xloc": [
7900 - "default.handlebars->119->2391",
7901 - "default3.handlebars->117->2403"
7900 + "default.handlebars->119->2393",
7901 + "default3.handlebars->117->2405"
7902 ]
7903 },
7904 {
@@ -7927,8 +7927,8 @@
7927 "zh-chs": "将用户添加到用户组",
7928 "zh-cht": "將用戶新增到用戶群",
7929 "xloc": [
7930 - "default.handlebars->119->2949",
7931 - "default3.handlebars->117->2958"
7930 + "default.handlebars->119->2951",
7931 + "default3.handlebars->117->2960"
7932 ]
7933 },
7934 {
@@ -7957,8 +7957,8 @@
7957 "zh-chs": "添加YubiKey&reg;OTP",
7958 "zh-cht": "新增YubiKey&reg;OTP",
7959 "xloc": [
7960 - "default.handlebars->119->252",
7961 - "default3.handlebars->117->262"
7960 + "default.handlebars->119->253",
7961 + "default3.handlebars->117->263"
7962 ]
7963 },
7964 {
@@ -7987,8 +7987,8 @@
7987 "zh-chs": "将本地设备添加到设备组 \\\"{0}\\\"。",
7988 "zh-cht": "將本地設備添加到設備組 \\\"{0}\\\"。",
7989 "xloc": [
7990 - "default.handlebars->119->506",
7991 - "default3.handlebars->117->517"
7990 + "default.handlebars->119->507",
7991 + "default3.handlebars->117->518"
7992 ]
7993 },
7994 {
@@ -8017,8 +8017,8 @@
8017 "zh-chs": "通过扫描本地网络添加新的英特尔&reg;AMT计算机。",
8018 "zh-cht": "通過掃描本地網絡新增新的Intel&reg; AMT電腦。",
8019 "xloc": [
8020 - "default.handlebars->119->496",
8021 - "default3.handlebars->117->507"
8020 + "default.handlebars->119->497",
8021 + "default3.handlebars->117->508"
8022 ]
8023 },
8024 {
@@ -8073,8 +8073,8 @@
8073 "zh-chs": "添加位于本地网络上的新英特尔&reg;AMT计算机。",
8074 "zh-cht": "新增位於本地網絡上的新Intel&reg; AMT電腦。",
8075 "xloc": [
8076 - "default.handlebars->119->494",
8077 - "default3.handlebars->117->505"
8076 + "default.handlebars->119->495",
8077 + "default3.handlebars->117->506"
8078 ]
8079 },
8080 {
@@ -8103,8 +8103,8 @@
8103 "zh-chs": "将新的英特尔&reg;AMT设备添加到设备组“{0}”。",
8104 "zh-cht": "將新的Intel&reg; AMT裝置新增到裝置群“{0}”。",
8105 "xloc": [
8106 - "default.handlebars->119->515",
8107 - "default3.handlebars->117->526"
8106 + "default.handlebars->119->516",
8107 + "default3.handlebars->117->527"
8108 ]
8109 },
8110 {
@@ -8133,10 +8133,10 @@
8133 "zh-chs": "通过安装Mesh Agent将新计算机添加到该设备组。",
8134 "zh-cht": "通過安裝Mesh Agent將新電腦新增到該裝置群。",
8135 "xloc": [
8136 - "default.handlebars->119->2245",
8137 - "default.handlebars->119->500",
8138 - "default3.handlebars->117->2256",
8139 - "default3.handlebars->117->511"
8136 + "default.handlebars->119->2247",
8137 + "default.handlebars->119->501",
8138 + "default3.handlebars->117->2258",
8139 + "default3.handlebars->117->512"
8140 ]
8141 },
8142 {
@@ -8165,10 +8165,10 @@
8165 "zh-chs": "添加位于本地网络上的设备。",
8166 "zh-cht": "添加位於本地網絡上的設備。",
8167 "xloc": [
8168 - "default.handlebars->119->2249",
8169 - "default.handlebars->119->504",
8170 - "default3.handlebars->117->2260",
8171 - "default3.handlebars->117->515"
8168 + "default.handlebars->119->2251",
8169 + "default.handlebars->119->505",
8170 + "default3.handlebars->117->2262",
8171 + "default3.handlebars->117->516"
8172 ]
8173 },
8174 {
@@ -8197,8 +8197,8 @@
8197 "zh-chs": "添加本地设备",
8198 "zh-cht": "添加本地設備",
8199 "xloc": [
8200 - "default.handlebars->119->514",
8201 - "default3.handlebars->117->525"
8200 + "default.handlebars->119->515",
8201 + "default3.handlebars->117->526"
8202 ]
8203 },
8204 {
@@ -8227,8 +8227,8 @@
8227 "zh-chs": "添加标签",
8228 "zh-cht": "新增標籤",
8229 "xloc": [
8230 - "default.handlebars->119->772",
8231 - "default3.handlebars->117->783"
8230 + "default.handlebars->119->773",
8231 + "default3.handlebars->117->784"
8232 ]
8233 },
8234 {
@@ -8257,8 +8257,8 @@
8257 "zh-chs": "通过定期在远程设备上以管理员身份运行MeshCmd,添加,激活和配置Intel&reg; AMT以将“{0}”分组。",
8258 "zh-cht": "通過定期在遠程設備上以管理員身份運行MeshCmd,添加,激活和配置Intel&reg; AMT以將“{0}”分組。",
8259 "xloc": [
8260 - "default.handlebars->119->532",
8261 - "default3.handlebars->117->543"
8260 + "default.handlebars->119->533",
8261 + "default3.handlebars->117->544"
8262 ]
8263 },
8264 {
@@ -8287,8 +8287,8 @@
8287 "zh-chs": "添加了身份验证应用程序",
8288 "zh-cht": "添加了身份驗證應用程序",
8289 "xloc": [
8290 - "default.handlebars->119->2639",
8291 - "default3.handlebars->117->2651"
8290 + "default.handlebars->119->2641",
8291 + "default3.handlebars->117->2653"
8292 ]
8293 },
8294 {
@@ -8317,8 +8317,8 @@
8317 "zh-chs": "已将设备共享{0}从{1}添加到{2}",
8318 "zh-cht": "已將設備共享{0}從{1}添加到{2}",
8319 "xloc": [
8320 - "default.handlebars->119->2650",
8321 - "default3.handlebars->117->2662"
8320 + "default.handlebars->119->2652",
8321 + "default3.handlebars->117->2664"
8322 ]
8323 },
8324 {
@@ -8347,8 +8347,8 @@
8347 "zh-chs": "添加了每天重复的设备共享 {0}。",
8348 "zh-cht": "添加了每天重複的設備共享 {0}。",
8349 "xloc": [
8350 - "default.handlebars->119->2687",
8351 - "default3.handlebars->117->2699"
8350 + "default.handlebars->119->2689",
8351 + "default3.handlebars->117->2701"
8352 ]
8353 },
8354 {
@@ -8377,8 +8377,8 @@
8377 "zh-chs": "添加了每周重复的设备共享 {0}。",
8378 "zh-cht": "添加了每週重複的設備共享 {0}。",
8379 "xloc": [
8380 - "default.handlebars->119->2688",
8381 - "default3.handlebars->117->2700"
8380 + "default.handlebars->119->2690",
8381 + "default3.handlebars->117->2702"
8382 ]
8383 },
8384 {
@@ -8407,8 +8407,8 @@
8407 "zh-chs": "添加了无限时间的设备共享 {0}。",
8408 "zh-cht": "添加了無限時間的設備共享 {0}。",
8409 "xloc": [
8410 - "default.handlebars->119->2680",
8411 - "default3.handlebars->117->2692"
8410 + "default.handlebars->119->2682",
8411 + "default3.handlebars->117->2694"
8412 ]
8413 },
8414 {
@@ -8437,10 +8437,10 @@
8437 "zh-chs": "已将设备{0}添加到设备组{1}",
8438 "zh-cht": "已將設備{0}添加到設備組{1}",
8439 "xloc": [
8440 - "default.handlebars->119->2606",
8441 - "default.handlebars->119->2633",
8442 - "default3.handlebars->117->2618",
8443 - "default3.handlebars->117->2645"
8440 + "default.handlebars->119->2608",
8441 + "default.handlebars->119->2635",
8442 + "default3.handlebars->117->2620",
8443 + "default3.handlebars->117->2647"
8444 ]
8445 },
8446 {
@@ -8469,8 +8469,8 @@
8469 "zh-chs": "添加登录令牌",
8470 "zh-cht": "添加了登錄令牌",
8471 "xloc": [
8472 - "default.handlebars->119->2664",
8473 - "default3.handlebars->117->2676"
8472 + "default.handlebars->119->2666",
8473 + "default3.handlebars->117->2678"
8474 ]
8475 },
8476 {
@@ -8499,8 +8499,8 @@
8499 "zh-chs": "新增推送通知认证装置",
8500 "zh-cht": "增加推送通知認證設備",
8501 "xloc": [
8502 - "default.handlebars->119->2662",
8503 - "default3.handlebars->117->2674"
8502 + "default.handlebars->119->2664",
8503 + "default3.handlebars->117->2676"
8504 ]
8505 },
8506 {
@@ -8529,8 +8529,8 @@
8529 "zh-chs": "添加了安全密钥",
8530 "zh-cht": "添加了安全密鑰",
8531 "xloc": [
8532 - "default.handlebars->119->2644",
8533 - "default3.handlebars->117->2656"
8532 + "default.handlebars->119->2646",
8533 + "default3.handlebars->117->2658"
8534 ]
8535 },
8536 {
@@ -8559,8 +8559,8 @@
8559 "zh-chs": "已将用户组{0}添加到设备组{1}",
8560 "zh-cht": "已將用戶組{0}添加到設備組{1}",
8561 "xloc": [
8562 - "default.handlebars->119->2617",
8563 - "default3.handlebars->117->2629"
8562 + "default.handlebars->119->2619",
8563 + "default3.handlebars->117->2631"
8564 ]
8565 },
8566 {
@@ -8589,10 +8589,10 @@
8589 "zh-chs": "已将用户{0}添加到用户组{1}",
8590 "zh-cht": "已將用戶{0}添加到用戶組{1}",
8591 "xloc": [
8592 - "default.handlebars->119->2620",
8593 - "default.handlebars->119->2629",
8594 - "default3.handlebars->117->2632",
8595 - "default3.handlebars->117->2641"
8592 + "default.handlebars->119->2622",
8593 + "default.handlebars->119->2631",
8594 + "default3.handlebars->117->2634",
8595 + "default3.handlebars->117->2643"
8596 ]
8597 },
8598 {
@@ -8621,8 +8621,8 @@
8621 "zh-chs": "地址",
8622 "zh-cht": "地址",
8623 "xloc": [
8624 - "default.handlebars->119->394",
8625 - "default3.handlebars->117->405"
8624 + "default.handlebars->119->395",
8625 + "default3.handlebars->117->406"
8626 ]
8627 },
8628 {
@@ -8680,9 +8680,9 @@
8680 "zh-chs": "管理员控制模式(ACM)",
8681 "zh-cht": "管理員控制模式(ACM)",
8682 "xloc": [
8683 - "default-mobile.handlebars->53->839",
8684 - "default.handlebars->119->1680",
8685 - "default3.handlebars->117->1678"
8683 + "default-mobile.handlebars->53->840",
8684 + "default.handlebars->119->1682",
8685 + "default3.handlebars->117->1680"
8686 ]
8687 },
8688 {
@@ -8711,9 +8711,9 @@
8711 "zh-chs": "管理员凭证",
8712 "zh-cht": "管理員憑證",
8713 "xloc": [
8714 - "default-mobile.handlebars->53->845",
8715 - "default.handlebars->119->1686",
8716 - "default3.handlebars->117->1684"
8714 + "default-mobile.handlebars->53->846",
8715 + "default.handlebars->119->1688",
8716 + "default3.handlebars->117->1686"
8717 ]
8718 },
8719 {
@@ -8742,15 +8742,15 @@
8742 "zh-chs": "管理员PowerShell",
8743 "zh-cht": "管理員PowerShell",
8744 "xloc": [
8745 - "default.handlebars->119->3160",
8746 - "default.handlebars->119->3170",
8747 - "default.handlebars->119->3236",
8748 - "default.handlebars->119->3289",
8745 + "default.handlebars->119->3162",
8746 + "default.handlebars->119->3172",
8747 + "default.handlebars->119->3238",
8748 + "default.handlebars->119->3291",
8749 "default.handlebars->termShellContextMenu->3",
8750 - "default3.handlebars->117->3163",
8751 - "default3.handlebars->117->3173",
8752 - "default3.handlebars->117->3239",
8753 - "default3.handlebars->117->3292",
8750 + "default3.handlebars->117->3165",
8751 + "default3.handlebars->117->3175",
8752 + "default3.handlebars->117->3241",
8753 + "default3.handlebars->117->3294",
8754 "default3.handlebars->container->column_l->p12->termTable->1->1->0->1->1->connectbutton2span->5->3->0",
8755 "player.handlebars->29->29",
8756 "xterm.handlebars->termShellContextMenu->cxtermps"
@@ -8782,8 +8782,8 @@
8782 "zh-chs": "管理领域",
8783 "zh-cht": "管理領域",
8784 "xloc": [
8785 - "default.handlebars->119->3001",
8786 - "default3.handlebars->117->3010"
8785 + "default.handlebars->119->3003",
8786 + "default3.handlebars->117->3012"
8787 ]
8788 },
8789 {
@@ -8843,8 +8843,8 @@
8843 "zh-chs": "管理领域",
8844 "zh-cht": "管理領域",
8845 "xloc": [
8846 - "default.handlebars->119->2846",
8847 - "default3.handlebars->117->2855"
8846 + "default.handlebars->119->2848",
8847 + "default3.handlebars->117->2857"
8848 ]
8849 },
8850 {
@@ -8873,8 +8873,8 @@
8873 "zh-chs": "管理员",
8874 "zh-cht": "管理員",
8875 "xloc": [
8876 - "default.handlebars->119->2764",
8877 - "default3.handlebars->117->2776"
8876 + "default.handlebars->119->2766",
8877 + "default3.handlebars->117->2778"
8878 ]
8879 },
8880 {
@@ -8904,8 +8904,8 @@
8904 "zh-cht": "南非文",
8905 "xloc": [
8906 "default-mobile.handlebars->53->115",
8907 - "default.handlebars->119->1862",
8908 - "default3.handlebars->117->1858",
8907 + "default.handlebars->119->1864",
8908 + "default3.handlebars->117->1860",
8909 "login2.handlebars->17->1"
8910 ]
8911 },
@@ -8939,18 +8939,18 @@
8939 "default-mobile.handlebars->53->482",
8940 "default-mobile.handlebars->53->539",
8941 "default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1",
8942 - "default.handlebars->119->2475",
8943 - "default.handlebars->119->2488",
8944 - "default.handlebars->119->3387",
8945 - "default.handlebars->119->421",
8946 - "default.handlebars->119->728",
8942 + "default.handlebars->119->2477",
8943 + "default.handlebars->119->2490",
8944 + "default.handlebars->119->3389",
8945 + "default.handlebars->119->422",
8946 + "default.handlebars->119->729",
8947 "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1",
8948 "default.handlebars->container->dialog->dialogBody->dialog7->1->td7meshkvm",
8949 - "default3.handlebars->117->2487",
8950 - "default3.handlebars->117->2500",
8951 - "default3.handlebars->117->3392",
8952 - "default3.handlebars->117->432",
8953 - "default3.handlebars->117->739",
8949 + "default3.handlebars->117->2489",
8950 + "default3.handlebars->117->2502",
8951 + "default3.handlebars->117->3394",
8952 + "default3.handlebars->117->433",
8953 + "default3.handlebars->117->740",
8954 "default3.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1",
8955 "default3.handlebars->container->xxAddAgentModal->xxAddAgentModalConf->1->xxAddAgentBody->dialog7->1->td7meshkvm"
8956 ]
@@ -8981,10 +8981,10 @@
8981 "zh-chs": "代理+英特尔AMT",
8982 "zh-cht": "代理+Intel&reg; AMT",
8983 "xloc": [
8984 - "default.handlebars->119->2477",
8985 - "default.handlebars->119->2490",
8986 - "default3.handlebars->117->2489",
8987 - "default3.handlebars->117->2502"
8984 + "default.handlebars->119->2479",
8985 + "default.handlebars->119->2492",
8986 + "default3.handlebars->117->2491",
8987 + "default3.handlebars->117->2504"
8988 ]
8989 },
8990 {
@@ -9044,12 +9044,12 @@
9044 "zh-chs": "代理控制台",
9045 "zh-cht": "代理控制台",
9046 "xloc": [
9047 - "default-mobile.handlebars->53->1015",
9047 + "default-mobile.handlebars->53->1016",
9048 "default-mobile.handlebars->53->621",
9049 - "default.handlebars->119->2412",
9050 - "default.handlebars->119->818",
9051 - "default3.handlebars->117->2424",
9052 - "default3.handlebars->117->829"
9049 + "default.handlebars->119->2414",
9050 + "default.handlebars->119->819",
9051 + "default3.handlebars->117->2426",
9052 + "default3.handlebars->117->830"
9053 ]
9054 },
9055 {
@@ -9078,8 +9078,8 @@
9078 "zh-chs": "代理错误计数器",
9079 "zh-cht": "代理錯誤計數器",
9080 "xloc": [
9081 - "default.handlebars->119->3355",
9082 - "default3.handlebars->117->3360"
9081 + "default.handlebars->119->3357",
9082 + "default3.handlebars->117->3362"
9083 ]
9084 },
9085 {
@@ -9108,8 +9108,8 @@
9108 "zh-chs": "代理IP地址",
9109 "zh-cht": "代理 IP 地址",
9110 "xloc": [
9111 - "default.handlebars->119->362",
9112 - "default3.handlebars->117->373"
9111 + "default.handlebars->119->363",
9112 + "default3.handlebars->117->374"
9113 ]
9114 },
9115 {
@@ -9185,8 +9185,8 @@
9185 "zh-cht": "代理訊息",
9186 "xloc": [
9187 "default-mobile.handlebars->53->455",
9188 - "default.handlebars->119->485",
9189 - "default3.handlebars->117->496"
9188 + "default.handlebars->119->486",
9189 + "default3.handlebars->117->497"
9190 ]
9191 },
9192 {
@@ -9301,10 +9301,10 @@
9301 "zh-chs": "代理自行共享",
9302 "zh-cht": "代理自行共享",
9303 "xloc": [
9304 - "default.handlebars->119->1122",
9305 - "default.handlebars->119->2277",
9306 - "default3.handlebars->117->1133",
9307 - "default3.handlebars->117->2288"
9304 + "default.handlebars->119->1123",
9305 + "default.handlebars->119->2279",
9306 + "default3.handlebars->117->1134",
9307 + "default3.handlebars->117->2290"
9308 ]
9309 },
9310 {
@@ -9333,8 +9333,8 @@
9333 "zh-chs": "代理会话",
9334 "zh-cht": "代理時段",
9335 "xloc": [
9336 - "default.handlebars->119->3372",
9337 - "default3.handlebars->117->3377"
9336 + "default.handlebars->119->3374",
9337 + "default3.handlebars->117->3379"
9338 ]
9339 },
9340 {
@@ -9390,8 +9390,8 @@
9390 "zh-cht": "代理標籤",
9391 "xloc": [
9392 "default-mobile.handlebars->53->536",
9393 - "default.handlebars->119->947",
9394 - "default3.handlebars->117->958"
9393 + "default.handlebars->119->948",
9394 + "default3.handlebars->117->959"
9395 ]
9396 },
9397 {
@@ -9420,10 +9420,10 @@
9420 "zh-chs": "代理类型",
9421 "zh-cht": "代理類型",
9422 "xloc": [
9423 - "default.handlebars->119->351",
9424 - "default.handlebars->119->384",
9425 - "default3.handlebars->117->362",
9426 - "default3.handlebars->117->395"
9423 + "default.handlebars->119->352",
9424 + "default.handlebars->119->385",
9425 + "default3.handlebars->117->363",
9426 + "default3.handlebars->117->396"
9427 ]
9428 },
9429 {
@@ -9452,9 +9452,9 @@
9452 "zh-chs": "代理类型",
9453 "zh-cht": "代理類型",
9454 "xloc": [
9455 - "default.handlebars->119->2486",
9455 + "default.handlebars->119->2488",
9456 "default.handlebars->container->column_l->p21->p21main->1->1->meshOsChartDiv->1",
9457 - "default3.handlebars->117->2498",
9457 + "default3.handlebars->117->2500",
9458 "default3.handlebars->container->column_l->p21->p21main->1->1->meshOsChartDiv->1"
9459 ]
9460 },
@@ -9484,10 +9484,10 @@
9484 "zh-chs": "代理版本",
9485 "zh-cht": "代理版本",
9486 "xloc": [
9487 - "default.handlebars->119->352",
9488 - "default.handlebars->119->385",
9489 - "default3.handlebars->117->363",
9490 - "default3.handlebars->117->396"
9487 + "default.handlebars->119->353",
9488 + "default.handlebars->119->386",
9489 + "default3.handlebars->117->364",
9490 + "default3.handlebars->117->397"
9491 ]
9492 },
9493 {
@@ -9516,8 +9516,8 @@
9516 "zh-chs": "代理关闭了与服务器压缩的{0}%代理会话。已发送:{1},已压缩:{2}",
9517 "zh-cht": "代理關閉了與{0}%代理到服務器壓縮的會話。已發送:{1},已壓縮:{2}",
9518 "xloc": [
9519 - "default.handlebars->119->2603",
9520 - "default3.handlebars->117->2615"
9519 + "default.handlebars->119->2605",
9520 + "default3.handlebars->117->2617"
9521 ]
9522 },
9523 {
@@ -9546,12 +9546,12 @@
9546 "zh-chs": "代理已连接",
9547 "zh-cht": "代理已連接",
9548 "xloc": [
9549 - "default.handlebars->119->1080",
9549 "default.handlebars->119->1081",
9551 - "default.handlebars->119->271",
9552 - "default3.handlebars->117->1091",
9550 + "default.handlebars->119->1082",
9551 + "default.handlebars->119->272",
9552 "default3.handlebars->117->1092",
9554 - "default3.handlebars->117->281"
9553 + "default3.handlebars->117->1093",
9554 + "default3.handlebars->117->282"
9555 ]
9556 },
9557 {
@@ -9580,8 +9580,8 @@
9580 "zh-chs": "与有限特权相关的代理",
9581 "zh-cht": "與有限特權相關的代理",
9582 "xloc": [
9583 - "default.handlebars->119->272",
9584 - "default3.handlebars->117->282"
9583 + "default.handlebars->119->273",
9584 + "default3.handlebars->117->283"
9585 ]
9586 },
9587 {
@@ -9610,8 +9610,8 @@
9610 "zh-chs": "代理已断开连接",
9611 "zh-cht": "代理已斷開連接",
9612 "xloc": [
9613 - "default.handlebars->119->276",
9614 - "default3.handlebars->117->286"
9613 + "default.handlebars->119->277",
9614 + "default3.handlebars->117->287"
9615 ]
9616 },
9617 {
@@ -9748,9 +9748,9 @@
9748 "zh-chs": "代理离线",
9749 "zh-cht": "代理離線",
9750 "xloc": [
9751 - "default-mobile.handlebars->53->933",
9752 - "default.handlebars->119->1775",
9753 - "default3.handlebars->117->1773"
9751 + "default-mobile.handlebars->53->934",
9752 + "default.handlebars->119->1777",
9753 + "default3.handlebars->117->1775"
9754 ]
9755 },
9756 {
@@ -9779,9 +9779,9 @@
9779 "zh-chs": "代理在线",
9780 "zh-cht": "代理在線",
9781 "xloc": [
9782 - "default-mobile.handlebars->53->932",
9783 - "default.handlebars->119->1774",
9784 - "default3.handlebars->117->1772"
9782 + "default-mobile.handlebars->53->933",
9783 + "default.handlebars->119->1776",
9784 + "default3.handlebars->117->1774"
9785 ]
9786 },
9787 {
@@ -9888,8 +9888,8 @@
9888 "zh-chs": "代理在特权降低的远程设备上运行。",
9889 "zh-cht": "代理在特權降低的遠程設備上運行。",
9890 "xloc": [
9891 - "default.handlebars->119->1074",
9892 - "default3.handlebars->117->1085"
9891 + "default.handlebars->119->1075",
9892 + "default3.handlebars->117->1086"
9893 ]
9894 },
9895 {
@@ -10022,12 +10022,12 @@
10022 "zh-chs": "代理",
10023 "zh-cht": "代理",
10024 "xloc": [
10025 - "default.handlebars->119->2443",
10026 - "default.handlebars->119->3400",
10027 - "default.handlebars->119->588",
10028 - "default3.handlebars->117->2455",
10029 - "default3.handlebars->117->3405",
10030 - "default3.handlebars->117->599"
10025 + "default.handlebars->119->2445",
10026 + "default.handlebars->119->3402",
10027 + "default.handlebars->119->589",
10028 + "default3.handlebars->117->2457",
10029 + "default3.handlebars->117->3407",
10030 + "default3.handlebars->117->600"
10031 ]
10032 },
10033 {
@@ -10057,8 +10057,8 @@
10057 "zh-cht": "阿爾巴尼亞文",
10058 "xloc": [
10059 "default-mobile.handlebars->53->116",
10060 - "default.handlebars->119->1863",
10061 - "default3.handlebars->117->1859",
10060 + "default.handlebars->119->1865",
10061 + "default3.handlebars->117->1861",
10062 "login2.handlebars->17->2"
10063 ]
10064 },
@@ -10069,10 +10069,10 @@
10069 "pl": "Okno Powiadomienia",
10070 "uk": "Вікно Попередження",
10071 "xloc": [
10072 - "default.handlebars->119->1206",
10073 - "default.handlebars->119->781",
10074 - "default3.handlebars->117->1215",
10075 - "default3.handlebars->117->792"
10072 + "default.handlebars->119->1207",
10073 + "default.handlebars->119->782",
10074 + "default3.handlebars->117->1216",
10075 + "default3.handlebars->117->793"
10076 ]
10077 },
10078 {
@@ -10104,9 +10104,9 @@
10104 "default-mobile.handlebars->53->374",
10105 "default-mobile.handlebars->53->723",
10106 "default-mobile.handlebars->53->725",
10107 - "default.handlebars->119->3204",
10107 + "default.handlebars->119->3206",
10108 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar->DevFilterSelect->1",
10109 - "default3.handlebars->117->3207",
10109 + "default3.handlebars->117->3209",
10110 "default3.handlebars->container->column_l->p1->devListToolbarSpan->devListToolbar->DevFilterSelect->1",
10111 "sharing-mobile.handlebars->53->80",
10112 "sharing-mobile.handlebars->53->82"
@@ -10138,8 +10138,8 @@
10138 "zh-chs": "全部可用",
10139 "zh-cht": "全部可用",
10140 "xloc": [
10141 - "default.handlebars->119->2726",
10142 - "default3.handlebars->117->2738"
10141 + "default.handlebars->119->2728",
10142 + "default3.handlebars->117->2740"
10143 ]
10144 },
10145 {
@@ -10168,10 +10168,10 @@
10168 "zh-chs": "所有可用的代理",
10169 "zh-cht": "所有可用的代理",
10170 "xloc": [
10171 - "default.handlebars->119->2444",
10172 - "default.handlebars->119->589",
10173 - "default3.handlebars->117->2456",
10174 - "default3.handlebars->117->600"
10171 + "default.handlebars->119->2446",
10172 + "default.handlebars->119->590",
10173 + "default3.handlebars->117->2458",
10174 + "default3.handlebars->117->601"
10175 ]
10176 },
10177 {
@@ -10200,8 +10200,8 @@
10200 "zh-chs": "所有显示",
10201 "zh-cht": "所有顯示",
10202 "xloc": [
10203 - "default.handlebars->119->1504",
10204 - "default3.handlebars->117->1504"
10203 + "default.handlebars->119->1505",
10204 + "default3.handlebars->117->1505"
10205 ]
10206 },
10207 {
@@ -10230,8 +10230,8 @@
10230 "zh-chs": "所有事件",
10231 "zh-cht": "所有事件",
10232 "xloc": [
10233 - "default.handlebars->119->2724",
10234 - "default3.handlebars->117->2736"
10233 + "default.handlebars->119->2726",
10234 + "default3.handlebars->117->2738"
10235 ]
10236 },
10237 {
@@ -10260,12 +10260,12 @@
10260 "zh-chs": "全部聚焦",
10261 "zh-cht": "全部聚焦",
10262 "xloc": [
10263 - "default.handlebars->119->1422",
10264 - "default.handlebars->119->1424",
10263 + "default.handlebars->119->1423",
10264 "default.handlebars->119->1425",
10266 - "default3.handlebars->117->1423",
10267 - "default3.handlebars->117->1426",
10268 - "default3.handlebars->117->1427"
10265 + "default.handlebars->119->1426",
10266 + "default3.handlebars->117->1424",
10267 + "default3.handlebars->117->1427",
10268 + "default3.handlebars->117->1428"
10269 ]
10270 },
10271 {
@@ -10306,7 +10306,7 @@
10306 "zh-chs": "所有主题",
10307 "zh-cht": "所有主題",
10308 "xloc": [
10309 - "default3.handlebars->117->2127"
10309 + "default3.handlebars->117->2129"
10310 ]
10311 },
10312 {
@@ -10341,8 +10341,8 @@
10341 {
10342 "en": "Allow to override server device name until next connection",
10343 "xloc": [
10344 - "default.handlebars->119->2349",
10345 - "default3.handlebars->117->2361"
10344 + "default.handlebars->119->2351",
10345 + "default3.handlebars->117->2363"
10346 ]
10347 },
10348 {
@@ -10371,10 +10371,10 @@
10371 "zh-chs": "允许用户管理此设备组和该组中的设备。",
10372 "zh-cht": "允許用戶管理此裝置群和該群中的裝置。",
10373 "xloc": [
10374 - "default.handlebars->119->2356",
10375 - "default.handlebars->119->2946",
10376 - "default3.handlebars->117->2368",
10377 - "default3.handlebars->117->2955"
10374 + "default.handlebars->119->2358",
10375 + "default.handlebars->119->2948",
10376 + "default3.handlebars->117->2370",
10377 + "default3.handlebars->117->2957"
10378 ]
10379 },
10380 {
@@ -10403,8 +10403,8 @@
10403 "zh-chs": "允许用户管理此设备。",
10404 "zh-cht": "允許用戶管理此裝置。",
10405 "xloc": [
10406 - "default.handlebars->119->2357",
10407 - "default3.handlebars->117->2369"
10406 + "default.handlebars->119->2359",
10407 + "default3.handlebars->117->2371"
10408 ]
10409 },
10410 {
@@ -10433,8 +10433,8 @@
10433 "zh-chs": "允许",
10434 "zh-cht": "允許",
10435 "xloc": [
10436 - "default.handlebars->119->299",
10437 - "default3.handlebars->117->309"
10436 + "default.handlebars->119->300",
10437 + "default3.handlebars->117->310"
10438 ]
10439 },
10440 {
@@ -10522,10 +10522,10 @@
10522 "xloc": [
10523 "default-mobile.handlebars->53->678",
10524 "default-mobile.handlebars->53->682",
10525 - "default.handlebars->119->1446",
10526 - "default.handlebars->119->1450",
10527 - "default3.handlebars->117->1448",
10528 - "default3.handlebars->117->1452",
10525 + "default.handlebars->119->1447",
10526 + "default.handlebars->119->1451",
10527 + "default3.handlebars->117->1449",
10528 + "default3.handlebars->117->1453",
10529 "sharing-mobile.handlebars->53->34",
10530 "sharing-mobile.handlebars->53->38"
10531 ]
@@ -10556,8 +10556,8 @@
10556 "zh-chs": "替代Shell",
10557 "zh-cht": "替代Shell",
10558 "xloc": [
10559 - "default.handlebars->119->1412",
10560 - "default3.handlebars->117->1413"
10559 + "default.handlebars->119->1413",
10560 + "default3.handlebars->117->1414"
10561 ]
10562 },
10563 {
@@ -10648,8 +10648,8 @@
10648 "zh-chs": "备用(F10 = ESC + 0)",
10649 "zh-cht": "備用(F10 = ESC + 0)",
10650 "xloc": [
10651 - "default.handlebars->119->1538",
10652 - "default3.handlebars->117->1538",
10651 + "default.handlebars->119->1539",
10652 + "default3.handlebars->117->1539",
10653 "sharing.handlebars->47->37"
10654 ]
10655 },
@@ -10746,14 +10746,14 @@
10746 "zh-chs": "一直通知",
10747 "zh-cht": "一直通知",
10748 "xloc": [
10749 - "default.handlebars->119->2216",
10750 - "default.handlebars->119->2905",
10751 - "default.handlebars->119->3010",
10752 - "default.handlebars->119->988",
10753 - "default3.handlebars->117->2227",
10754 - "default3.handlebars->117->2914",
10755 - "default3.handlebars->117->3019",
10756 - "default3.handlebars->117->999"
10749 + "default.handlebars->119->2218",
10750 + "default.handlebars->119->2907",
10751 + "default.handlebars->119->3012",
10752 + "default.handlebars->119->989",
10753 + "default3.handlebars->117->1000",
10754 + "default3.handlebars->117->2229",
10755 + "default3.handlebars->117->2916",
10756 + "default3.handlebars->117->3021"
10757 ]
10758 },
10759 {
@@ -10782,14 +10782,14 @@
10782 "zh-chs": "一直提示",
10783 "zh-cht": "一直提示",
10784 "xloc": [
10785 - "default.handlebars->119->2217",
10786 - "default.handlebars->119->2906",
10787 - "default.handlebars->119->3011",
10788 - "default.handlebars->119->989",
10789 - "default3.handlebars->117->1000",
10790 - "default3.handlebars->117->2228",
10791 - "default3.handlebars->117->2915",
10792 - "default3.handlebars->117->3020"
10785 + "default.handlebars->119->2219",
10786 + "default.handlebars->119->2908",
10787 + "default.handlebars->119->3013",
10788 + "default.handlebars->119->990",
10789 + "default3.handlebars->117->1001",
10790 + "default3.handlebars->117->2230",
10791 + "default3.handlebars->117->2917",
10792 + "default3.handlebars->117->3022"
10793 ]
10794 },
10795 {
@@ -10822,8 +10822,8 @@
10822 "en": "Amazon App Store",
10823 "nl": "Amazon App Store",
10824 "xloc": [
10825 - "default.handlebars->119->656",
10826 - "default3.handlebars->117->667"
10825 + "default.handlebars->119->657",
10826 + "default3.handlebars->117->668"
10827 ]
10828 },
10829 {
@@ -10896,8 +10896,8 @@
10896 "pl": "Wystąpił nieznany błąd.",
10897 "uk": "Сталася невідома помилка.",
10898 "xloc": [
10899 - "default.handlebars->119->3149",
10900 - "default3.handlebars->117->3152"
10899 + "default.handlebars->119->3151",
10900 + "default3.handlebars->117->3154"
10901 ]
10902 },
10903 {
@@ -10962,9 +10962,9 @@
10962 "zh-chs": "Android APK",
10963 "zh-cht": "Android APK",
10964 "xloc": [
10965 - "default-mobile.handlebars->53->987",
10966 - "default.handlebars->119->657",
10967 - "default3.handlebars->117->668"
10965 + "default-mobile.handlebars->53->988",
10966 + "default.handlebars->119->658",
10967 + "default3.handlebars->117->669"
10968 ]
10969 },
10970 {
@@ -11048,7 +11048,7 @@
11048 "zh-chs": "安卓安装",
11049 "zh-cht": "安卓安裝",
11050 "xloc": [
11051 - "default-mobile.handlebars->53->989"
11051 + "default-mobile.handlebars->53->990"
11052 ]
11053 },
11054 {
@@ -11057,8 +11057,8 @@
11057 "nl": "Android MeshAgent",
11058 "uk": "Android MeshAgent",
11059 "xloc": [
11060 - "default.handlebars->119->594",
11061 - "default3.handlebars->117->605"
11060 + "default.handlebars->119->595",
11061 + "default3.handlebars->117->606"
11062 ]
11063 },
11064 {
@@ -11067,9 +11067,9 @@
11067 "nl": "Android Versie",
11068 "uk": "Версія Android",
11069 "xloc": [
11070 - "default-mobile.handlebars->53->812",
11071 - "default.handlebars->119->1643",
11072 - "default3.handlebars->117->1643"
11070 + "default-mobile.handlebars->53->813",
11071 + "default.handlebars->119->1645",
11072 + "default3.handlebars->117->1645"
11073 ]
11074 },
11075 {
@@ -11129,10 +11129,10 @@
11129 "zh-chs": "杀毒软件未激活",
11130 "zh-cht": "殺毒軟件未激活",
11131 "xloc": [
11132 - "default.handlebars->119->2479",
11133 - "default.handlebars->119->2493",
11134 - "default3.handlebars->117->2491",
11135 - "default3.handlebars->117->2505"
11132 + "default.handlebars->119->2481",
11133 + "default.handlebars->119->2495",
11134 + "default3.handlebars->117->2493",
11135 + "default3.handlebars->117->2507"
11136 ]
11137 },
11138 {
@@ -11162,8 +11162,8 @@
11162 "zh-cht": "防毒軟體",
11163 "xloc": [
11164 "default-mobile.handlebars->53->793",
11165 - "default.handlebars->119->976",
11166 - "default3.handlebars->117->987"
11165 + "default.handlebars->119->977",
11166 + "default3.handlebars->117->988"
11167 ]
11168 },
11169 {
@@ -11192,8 +11192,8 @@
11192 "zh-chs": "任何可支持的",
11193 "zh-cht": "任何可支持的",
11194 "xloc": [
11195 - "default.handlebars->119->562",
11196 - "default3.handlebars->117->573"
11195 + "default.handlebars->119->563",
11196 + "default3.handlebars->117->574"
11197 ]
11198 },
11199 {
@@ -11283,8 +11283,8 @@
11283 "zh-chs": "苹果macOS",
11284 "zh-cht": "蘋果macOS",
11285 "xloc": [
11286 - "default.handlebars->119->604",
11287 - "default3.handlebars->117->615"
11286 + "default.handlebars->119->605",
11287 + "default3.handlebars->117->616"
11288 ]
11289 },
11290 {
@@ -11293,8 +11293,8 @@
11293 "nl": "Apple macOS (verwijderen)",
11294 "uk": "Apple macOS (Деінсталяція)",
11295 "xloc": [
11296 - "default.handlebars->119->609",
11297 - "default3.handlebars->117->620"
11296 + "default.handlebars->119->610",
11297 + "default3.handlebars->117->621"
11298 ]
11299 },
11300 {
@@ -11304,8 +11304,8 @@
11304 "uk": "Для запуску виконувані файли Apple macOS потрібно буде вилучити з карантину запустивши 'xattr -r -d com.apple.quarantine meshagent'",
11305 "xloc": [
11306 "agentinvite.handlebars->13->12",
11307 - "default.handlebars->119->689",
11308 - "default3.handlebars->117->700"
11307 + "default.handlebars->119->690",
11308 + "default3.handlebars->117->701"
11309 ]
11310 },
11311 {
@@ -11334,8 +11334,8 @@
11334 "zh-chs": "仅限Apple macOS",
11335 "zh-cht": "僅限Apple macOS",
11336 "xloc": [
11337 - "default.handlebars->119->564",
11338 - "default3.handlebars->117->575"
11337 + "default.handlebars->119->565",
11338 + "default3.handlebars->117->576"
11339 ]
11340 },
11341 {
@@ -11515,8 +11515,8 @@
11515 "zh-chs": "应用程序,始终连接",
11516 "zh-cht": "應用程序,始終連接",
11517 "xloc": [
11518 - "default.handlebars->119->618",
11519 - "default3.handlebars->117->629"
11518 + "default.handlebars->119->619",
11519 + "default3.handlebars->117->630"
11520 ]
11521 },
11522 {
@@ -11545,8 +11545,8 @@
11545 "zh-chs": "应用程序,根据用户请求连接",
11546 "zh-cht": "應用程序,根據用戶請求連接",
11547 "xloc": [
11548 - "default.handlebars->119->617",
11549 - "default3.handlebars->117->628"
11548 + "default.handlebars->119->618",
11549 + "default3.handlebars->117->629"
11550 ]
11551 },
11552 {
@@ -11576,8 +11576,8 @@
11576 "zh-cht": "阿拉伯文(阿爾及利亞)",
11577 "xloc": [
11578 "default-mobile.handlebars->53->118",
11579 - "default.handlebars->119->1865",
11580 - "default3.handlebars->117->1861",
11579 + "default.handlebars->119->1867",
11580 + "default3.handlebars->117->1863",
11581 "login2.handlebars->17->4"
11582 ]
11583 },
@@ -11608,8 +11608,8 @@
11608 "zh-cht": "阿拉伯文(巴林)",
11609 "xloc": [
11610 "default-mobile.handlebars->53->119",
11611 - "default.handlebars->119->1866",
11612 - "default3.handlebars->117->1862",
11611 + "default.handlebars->119->1868",
11612 + "default3.handlebars->117->1864",
11613 "login2.handlebars->17->5"
11614 ]
11615 },
@@ -11640,8 +11640,8 @@
11640 "zh-cht": "阿拉伯文(埃及)",
11641 "xloc": [
11642 "default-mobile.handlebars->53->120",
11643 - "default.handlebars->119->1867",
11644 - "default3.handlebars->117->1863",
11643 + "default.handlebars->119->1869",
11644 + "default3.handlebars->117->1865",
11645 "login2.handlebars->17->6"
11646 ]
11647 },
@@ -11672,8 +11672,8 @@
11672 "zh-cht": "阿拉伯文(伊拉克)",
11673 "xloc": [
11674 "default-mobile.handlebars->53->121",
11675 - "default.handlebars->119->1868",
11676 - "default3.handlebars->117->1864",
11675 + "default.handlebars->119->1870",
11676 + "default3.handlebars->117->1866",
11677 "login2.handlebars->17->7"
11678 ]
11679 },
@@ -11704,8 +11704,8 @@
11704 "zh-cht": "阿拉伯文(約旦)",
11705 "xloc": [
11706 "default-mobile.handlebars->53->122",
11707 - "default.handlebars->119->1869",
11708 - "default3.handlebars->117->1865",
11707 + "default.handlebars->119->1871",
11708 + "default3.handlebars->117->1867",
11709 "login2.handlebars->17->8"
11710 ]
11711 },
@@ -11736,8 +11736,8 @@
11736 "zh-cht": "阿拉伯文(科威特)",
11737 "xloc": [
11738 "default-mobile.handlebars->53->123",
11739 - "default.handlebars->119->1870",
11740 - "default3.handlebars->117->1866",
11739 + "default.handlebars->119->1872",
11740 + "default3.handlebars->117->1868",
11741 "login2.handlebars->17->9"
11742 ]
11743 },
@@ -11768,8 +11768,8 @@
11768 "zh-cht": "阿拉伯文(黎巴嫩)",
11769 "xloc": [
11770 "default-mobile.handlebars->53->124",
11771 - "default.handlebars->119->1871",
11772 - "default3.handlebars->117->1867",
11771 + "default.handlebars->119->1873",
11772 + "default3.handlebars->117->1869",
11773 "login2.handlebars->17->10"
11774 ]
11775 },
@@ -11800,8 +11800,8 @@
11800 "zh-cht": "阿拉伯文(利比亞)",
11801 "xloc": [
11802 "default-mobile.handlebars->53->125",
11803 - "default.handlebars->119->1872",
11804 - "default3.handlebars->117->1868",
11803 + "default.handlebars->119->1874",
11804 + "default3.handlebars->117->1870",
11805 "login2.handlebars->17->11"
11806 ]
11807 },
@@ -11832,8 +11832,8 @@
11832 "zh-cht": "阿拉伯文(摩洛哥)",
11833 "xloc": [
11834 "default-mobile.handlebars->53->126",
11835 - "default.handlebars->119->1873",
11836 - "default3.handlebars->117->1869",
11835 + "default.handlebars->119->1875",
11836 + "default3.handlebars->117->1871",
11837 "login2.handlebars->17->12"
11838 ]
11839 },
@@ -11864,8 +11864,8 @@
11864 "zh-cht": "阿拉伯文(阿曼)",
11865 "xloc": [
11866 "default-mobile.handlebars->53->127",
11867 - "default.handlebars->119->1874",
11868 - "default3.handlebars->117->1870",
11867 + "default.handlebars->119->1876",
11868 + "default3.handlebars->117->1872",
11869 "login2.handlebars->17->13"
11870 ]
11871 },
@@ -11896,8 +11896,8 @@
11896 "zh-cht": "阿拉伯文(卡塔爾)",
11897 "xloc": [
11898 "default-mobile.handlebars->53->128",
11899 - "default.handlebars->119->1875",
11900 - "default3.handlebars->117->1871",
11899 + "default.handlebars->119->1877",
11900 + "default3.handlebars->117->1873",
11901 "login2.handlebars->17->14"
11902 ]
11903 },
@@ -11928,8 +11928,8 @@
11928 "zh-cht": "阿拉伯文(沙特阿拉伯)",
11929 "xloc": [
11930 "default-mobile.handlebars->53->129",
11931 - "default.handlebars->119->1876",
11932 - "default3.handlebars->117->1872",
11931 + "default.handlebars->119->1878",
11932 + "default3.handlebars->117->1874",
11933 "login2.handlebars->17->15"
11934 ]
11935 },
@@ -11960,8 +11960,8 @@
11960 "zh-cht": "阿拉伯文(標準)",
11961 "xloc": [
11962 "default-mobile.handlebars->53->117",
11963 - "default.handlebars->119->1864",
11964 - "default3.handlebars->117->1860",
11963 + "default.handlebars->119->1866",
11964 + "default3.handlebars->117->1862",
11965 "login2.handlebars->17->3"
11966 ]
11967 },
@@ -11992,8 +11992,8 @@
11992 "zh-cht": "阿拉伯文(敘利亞)",
11993 "xloc": [
11994 "default-mobile.handlebars->53->130",
11995 - "default.handlebars->119->1877",
11996 - "default3.handlebars->117->1873",
11995 + "default.handlebars->119->1879",
11996 + "default3.handlebars->117->1875",
11997 "login2.handlebars->17->16"
11998 ]
11999 },
@@ -12024,8 +12024,8 @@
12024 "zh-cht": "阿拉伯文(突尼斯)",
12025 "xloc": [
12026 "default-mobile.handlebars->53->131",
12027 - "default.handlebars->119->1878",
12028 - "default3.handlebars->117->1874",
12027 + "default.handlebars->119->1880",
12028 + "default3.handlebars->117->1876",
12029 "login2.handlebars->17->17"
12030 ]
12031 },
@@ -12056,8 +12056,8 @@
12056 "zh-cht": "阿拉伯文(阿聯酋)",
12057 "xloc": [
12058 "default-mobile.handlebars->53->132",
12059 - "default.handlebars->119->1879",
12060 - "default3.handlebars->117->1875",
12059 + "default.handlebars->119->1881",
12060 + "default3.handlebars->117->1877",
12061 "login2.handlebars->17->18"
12062 ]
12063 },
@@ -12088,8 +12088,8 @@
12088 "zh-cht": "阿拉伯文(也門)",
12089 "xloc": [
12090 "default-mobile.handlebars->53->133",
12091 - "default.handlebars->119->1880",
12092 - "default3.handlebars->117->1876",
12091 + "default.handlebars->119->1882",
12092 + "default3.handlebars->117->1878",
12093 "login2.handlebars->17->19"
12094 ]
12095 },
@@ -12120,8 +12120,8 @@
12120 "zh-cht": "阿拉貢文",
12121 "xloc": [
12122 "default-mobile.handlebars->53->134",
12123 - "default.handlebars->119->1881",
12124 - "default3.handlebars->117->1877",
12123 + "default.handlebars->119->1883",
12124 + "default3.handlebars->117->1879",
12125 "login2.handlebars->17->20"
12126 ]
12127 },
@@ -12154,12 +12154,12 @@
12154 "default-mobile.handlebars->53->759",
12155 "default-mobile.handlebars->53->761",
12156 "default-mobile.handlebars->53->763",
12157 - "default.handlebars->119->1620",
12158 - "default.handlebars->119->1622",
12159 - "default.handlebars->119->1624",
12160 - "default3.handlebars->117->1620",
12161 - "default3.handlebars->117->1622",
12162 - "default3.handlebars->117->1624"
12157 + "default.handlebars->119->1621",
12158 + "default.handlebars->119->1623",
12159 + "default.handlebars->119->1625",
12160 + "default3.handlebars->117->1621",
12161 + "default3.handlebars->117->1623",
12162 + "default3.handlebars->117->1625"
12163 ]
12164 },
12165 {
@@ -12188,8 +12188,8 @@
12188 "zh-chs": "您确定要连接到{0}设备吗?",
12189 "zh-cht": "你確定要連接到{0}裝置嗎?",
12190 "xloc": [
12191 - "default.handlebars->119->489",
12192 - "default3.handlebars->117->500"
12191 + "default.handlebars->119->490",
12192 + "default3.handlebars->117->501"
12193 ]
12194 },
12195 {
@@ -12218,9 +12218,9 @@
12218 "zh-chs": "你确定要删除组{0}吗?删除设备组还将删除该组中有关设备的所有信息。",
12219 "zh-cht": "你確定要刪除群{0}嗎?刪除裝置群還將刪除該群中有關裝置的所有訊息。",
12220 "xloc": [
12221 - "default-mobile.handlebars->53->975",
12222 - "default.handlebars->119->2321",
12223 - "default3.handlebars->117->2330"
12221 + "default-mobile.handlebars->53->976",
12222 + "default.handlebars->119->2323",
12223 + "default3.handlebars->117->2332"
12224 ]
12225 },
12226 {
@@ -12249,8 +12249,8 @@
12249 "zh-chs": "您确定要删除节点{0}吗?",
12250 "zh-cht": "你確定要刪除節點{0}嗎?",
12251 "xloc": [
12252 - "default.handlebars->119->1338",
12253 - "default3.handlebars->117->1342"
12252 + "default.handlebars->119->1339",
12253 + "default3.handlebars->117->1343"
12254 ]
12255 },
12256 {
@@ -12263,8 +12263,8 @@
12263 "nl": "Weet u zeker dat u dit bestand/ deze map op het bureaublad van het externe apparaat wilt openen?",
12264 "uk": "Ви впевнені, що бажаєте відкрити цей файл/теку на робочому столі віддаленого пристрою?",
12265 "xloc": [
12266 - "default.handlebars->119->1560",
12267 - "default3.handlebars->117->1560"
12266 + "default.handlebars->119->1561",
12267 + "default3.handlebars->117->1561"
12268 ]
12269 },
12270 {
@@ -12293,8 +12293,8 @@
12293 "zh-chs": "您确定要卸载所选代理吗?",
12294 "zh-cht": "你確定要卸載所選代理嗎?",
12295 "xloc": [
12296 - "default.handlebars->119->1327",
12297 - "default3.handlebars->117->1332"
12296 + "default.handlebars->119->1328",
12297 + "default3.handlebars->117->1333"
12298 ]
12299 },
12300 {
@@ -12323,8 +12323,8 @@
12323 "zh-chs": "您确定要卸载所选的{0}代理吗?",
12324 "zh-cht": "你確定要卸載所選的{0}代理嗎?",
12325 "xloc": [
12326 - "default.handlebars->119->1326",
12327 - "default3.handlebars->117->1331"
12326 + "default.handlebars->119->1327",
12327 + "default3.handlebars->117->1332"
12328 ]
12329 },
12330 {
@@ -12353,8 +12353,8 @@
12353 "zh-chs": "您确定要{0}插件吗:{1}",
12354 "zh-cht": "你確定要{0}外掛嗎:{1}",
12355 "xloc": [
12356 - "default.handlebars->119->3453",
12357 - "default3.handlebars->117->3458"
12356 + "default.handlebars->119->3455",
12357 + "default3.handlebars->117->3460"
12358 ]
12359 },
12360 {
@@ -12415,8 +12415,8 @@
12415 "zh-cht": "亞美尼亞文",
12416 "xloc": [
12417 "default-mobile.handlebars->53->135",
12418 - "default.handlebars->119->1882",
12419 - "default3.handlebars->117->1878",
12418 + "default.handlebars->119->1884",
12419 + "default3.handlebars->117->1880",
12420 "login2.handlebars->17->21"
12421 ]
12422 },
@@ -12629,8 +12629,8 @@
12629 "zh-cht": "阿薩姆文",
12630 "xloc": [
12631 "default-mobile.handlebars->53->136",
12632 - "default.handlebars->119->1883",
12633 - "default3.handlebars->117->1879",
12632 + "default.handlebars->119->1885",
12633 + "default3.handlebars->117->1881",
12634 "login2.handlebars->17->22"
12635 ]
12636 },
@@ -12747,10 +12747,10 @@
12747 "zh-chs": "Windows 助手 (.exe)",
12748 "zh-cht": "Windows 助手 (.exe)",
12749 "xloc": [
12750 - "default.handlebars->119->663",
12751 - "default.handlebars->119->667",
12752 - "default3.handlebars->117->674",
12753 - "default3.handlebars->117->678"
12750 + "default.handlebars->119->664",
12751 + "default.handlebars->119->668",
12752 + "default3.handlebars->117->675",
12753 + "default3.handlebars->117->679"
12754 ]
12755 },
12756 {
@@ -12809,8 +12809,8 @@
12809 "zh-cht": "阿斯圖里亞斯文",
12810 "xloc": [
12811 "default-mobile.handlebars->53->137",
12812 - "default.handlebars->119->1884",
12813 - "default3.handlebars->117->1880",
12812 + "default.handlebars->119->1886",
12813 + "default3.handlebars->117->1882",
12814 "login2.handlebars->17->23"
12815 ]
12816 },
@@ -12840,8 +12840,8 @@
12840 "zh-chs": "尝试激活英特尔(R)AMT ACM模式",
12841 "zh-cht": "嘗試激活英特爾(R)AMT ACM模式",
12842 "xloc": [
12843 - "default.handlebars->119->2572",
12844 - "default3.handlebars->117->2584"
12843 + "default.handlebars->119->2574",
12844 + "default3.handlebars->117->2586"
12845 ]
12846 },
12847 {
@@ -12899,12 +12899,12 @@
12899 "default-mobile.handlebars->53->694",
12900 "default-mobile.handlebars->53->698",
12901 "default-mobile.handlebars->53->710",
12902 - "default.handlebars->119->1513",
12903 - "default.handlebars->119->1517",
12904 - "default.handlebars->119->1529",
12905 - "default3.handlebars->117->1513",
12906 - "default3.handlebars->117->1517",
12907 - "default3.handlebars->117->1529",
12902 + "default.handlebars->119->1514",
12903 + "default.handlebars->119->1518",
12904 + "default.handlebars->119->1530",
12905 + "default3.handlebars->117->1514",
12906 + "default3.handlebars->117->1518",
12907 + "default3.handlebars->117->1530",
12908 "sharing-mobile.handlebars->53->47",
12909 "sharing-mobile.handlebars->53->56",
12910 "sharing-mobile.handlebars->53->64",
@@ -12941,8 +12941,8 @@
12941 "zh-chs": "认证软件",
12942 "zh-cht": "認證軟體",
12943 "xloc": [
12944 - "default.handlebars->119->3014",
12945 - "default3.handlebars->117->3023"
12944 + "default.handlebars->119->3016",
12945 + "default3.handlebars->117->3025"
12946 ]
12947 },
12948 {
@@ -12971,12 +12971,12 @@
12971 "zh-chs": "认证设备",
12972 "zh-cht": "認證設備",
12973 "xloc": [
12974 - "default.handlebars->119->1845",
12974 "default.handlebars->119->1847",
12976 - "default.handlebars->119->1851",
12977 - "default3.handlebars->117->1842",
12975 + "default.handlebars->119->1849",
12976 + "default.handlebars->119->1853",
12977 "default3.handlebars->117->1844",
12979 - "default3.handlebars->117->1847"
12978 + "default3.handlebars->117->1846",
12979 + "default3.handlebars->117->1849"
12980 ]
12981 },
12982 {
@@ -13007,10 +13007,10 @@
13007 "xloc": [
13008 "default-mobile.handlebars->53->711",
13009 "default-mobile.handlebars->53->717",
13010 - "default.handlebars->119->1531",
13011 - "default.handlebars->119->1546",
13012 - "default3.handlebars->117->1531",
13013 - "default3.handlebars->117->1546",
13010 + "default.handlebars->119->1532",
13011 + "default.handlebars->119->1547",
13012 + "default3.handlebars->117->1532",
13013 + "default3.handlebars->117->1547",
13014 "sharing-mobile.handlebars->53->57",
13015 "sharing-mobile.handlebars->53->74"
13016 ]
@@ -13045,14 +13045,14 @@
13045 "default-mobile.handlebars->53->322",
13046 "default-mobile.handlebars->53->75",
13047 "default-mobile.handlebars->53->80",
13048 - "default.handlebars->119->1841",
13048 "default.handlebars->119->1843",
13050 - "default.handlebars->119->229",
13051 - "default.handlebars->119->234",
13052 - "default3.handlebars->117->1838",
13049 + "default.handlebars->119->1845",
13050 + "default.handlebars->119->230",
13051 + "default.handlebars->119->235",
13052 "default3.handlebars->117->1840",
13054 - "default3.handlebars->117->241",
13055 - "default3.handlebars->117->246"
13053 + "default3.handlebars->117->1842",
13054 + "default3.handlebars->117->242",
13055 + "default3.handlebars->117->247"
13056 ]
13057 },
13058 {
@@ -13082,8 +13082,8 @@
13082 "zh-cht": "認證軟體啟動成功。",
13083 "xloc": [
13084 "default-mobile.handlebars->53->76",
13085 - "default.handlebars->119->230",
13086 - "default3.handlebars->117->242"
13085 + "default.handlebars->119->231",
13086 + "default3.handlebars->117->243"
13087 ]
13088 },
13089 {
@@ -13113,8 +13113,8 @@
13113 "zh-cht": "認證軟體已刪除。",
13114 "xloc": [
13115 "default-mobile.handlebars->53->81",
13116 - "default.handlebars->119->235",
13117 - "default3.handlebars->117->247"
13116 + "default.handlebars->119->236",
13117 + "default3.handlebars->117->248"
13118 ]
13119 },
13120 {
@@ -13202,10 +13202,10 @@
13202 "zh-chs": "自动删除",
13203 "zh-cht": "自動刪除",
13204 "xloc": [
13205 - "default.handlebars->119->2199",
13206 - "default.handlebars->119->2717",
13207 - "default3.handlebars->117->2210",
13208 - "default3.handlebars->117->2729"
13205 + "default.handlebars->119->2201",
13206 + "default.handlebars->119->2719",
13207 + "default3.handlebars->117->2212",
13208 + "default3.handlebars->117->2731"
13209 ]
13210 },
13211 {
@@ -13271,8 +13271,8 @@
13271 "zh-chs": "自动下载代理程序核心转储文件:“{0}”",
13272 "zh-cht": "自動下載代理程序核心轉儲文件:“{0}”",
13273 "xloc": [
13274 - "default.handlebars->119->2653",
13275 - "default3.handlebars->117->2665"
13274 + "default.handlebars->119->2655",
13275 + "default3.handlebars->117->2667"
13276 ]
13277 },
13278 {
@@ -13389,8 +13389,8 @@
13389 "zh-chs": "自动移除非活动设备",
13390 "zh-cht": "自動移除非活動設備",
13391 "xloc": [
13392 - "default.handlebars->119->2351",
13393 - "default3.handlebars->117->2363"
13392 + "default.handlebars->119->2353",
13393 + "default3.handlebars->117->2365"
13394 ]
13395 },
13396 {
@@ -13419,8 +13419,8 @@
13419 "zh-chs": "可用內存",
13420 "zh-cht": "可用內存",
13421 "xloc": [
13422 - "default.handlebars->119->3381",
13423 - "default3.handlebars->117->3386"
13422 + "default.handlebars->119->3383",
13423 + "default3.handlebars->117->3388"
13424 ]
13425 },
13426 {
@@ -13450,8 +13450,8 @@
13450 "zh-cht": "阿塞拜疆文",
13451 "xloc": [
13452 "default-mobile.handlebars->53->138",
13453 - "default.handlebars->119->1885",
13454 - "default3.handlebars->117->1881",
13453 + "default.handlebars->119->1887",
13454 + "default3.handlebars->117->1883",
13455 "login2.handlebars->17->24"
13456 ]
13457 },
@@ -13484,18 +13484,18 @@
13484 "default-mobile.handlebars->53->770",
13485 "default-mobile.handlebars->53->774",
13486 "default-mobile.handlebars->53->778",
13487 - "default.handlebars->119->435",
13488 - "default.handlebars->119->437",
13489 - "default.handlebars->119->439",
13490 - "default.handlebars->119->953",
13491 - "default.handlebars->119->957",
13492 - "default.handlebars->119->961",
13493 - "default3.handlebars->117->446",
13494 - "default3.handlebars->117->448",
13495 - "default3.handlebars->117->450",
13496 - "default3.handlebars->117->964",
13497 - "default3.handlebars->117->968",
13498 - "default3.handlebars->117->972"
13487 + "default.handlebars->119->436",
13488 + "default.handlebars->119->438",
13489 + "default.handlebars->119->440",
13490 + "default.handlebars->119->954",
13491 + "default.handlebars->119->958",
13492 + "default.handlebars->119->962",
13493 + "default3.handlebars->117->447",
13494 + "default3.handlebars->117->449",
13495 + "default3.handlebars->117->451",
13496 + "default3.handlebars->117->965",
13497 + "default3.handlebars->117->969",
13498 + "default3.handlebars->117->973"
13499 ]
13500 },
13501 {
@@ -13524,9 +13524,9 @@
13524 "zh-chs": "的BIOS",
13525 "zh-cht": "的BIOS",
13526 "xloc": [
13527 - "default-mobile.handlebars->53->854",
13528 - "default.handlebars->119->1695",
13529 - "default3.handlebars->117->1693"
13527 + "default-mobile.handlebars->53->855",
13528 + "default.handlebars->119->1697",
13529 + "default3.handlebars->117->1695"
13530 ]
13531 },
13532 {
@@ -13665,8 +13665,8 @@
13665 "zh-cht": "退格",
13666 "xloc": [
13667 "default-mobile.handlebars->53->659",
13668 - "default.handlebars->119->1428",
13669 - "default3.handlebars->117->1430",
13668 + "default.handlebars->119->1429",
13669 + "default3.handlebars->117->1431",
13670 "sharing-mobile.handlebars->53->17"
13671 ]
13672 },
@@ -13697,8 +13697,8 @@
13697 "zh-cht": "背景與互動",
13698 "xloc": [
13699 "agentinvite.handlebars->13->8",
13700 - "default.handlebars->119->613",
13701 - "default3.handlebars->117->624"
13700 + "default.handlebars->119->614",
13701 + "default3.handlebars->117->625"
13702 ]
13703 },
13704 {
@@ -13727,14 +13727,14 @@
13727 "zh-chs": "后台运行与交互式运行",
13728 "zh-cht": "背景與互動",
13729 "xloc": [
13730 - "default.handlebars->119->2450",
13731 - "default.handlebars->119->2457",
13732 - "default.handlebars->119->575",
13733 - "default.handlebars->119->596",
13734 - "default3.handlebars->117->2462",
13735 - "default3.handlebars->117->2469",
13736 - "default3.handlebars->117->586",
13737 - "default3.handlebars->117->607"
13730 + "default.handlebars->119->2452",
13731 + "default.handlebars->119->2459",
13732 + "default.handlebars->119->576",
13733 + "default.handlebars->119->597",
13734 + "default3.handlebars->117->2464",
13735 + "default3.handlebars->117->2471",
13736 + "default3.handlebars->117->587",
13737 + "default3.handlebars->117->608"
13738 ]
13739 },
13740 {
@@ -13764,16 +13764,16 @@
13764 "zh-cht": "僅背景",
13765 "xloc": [
13766 "agentinvite.handlebars->13->9",
13767 - "default.handlebars->119->2451",
13768 - "default.handlebars->119->2459",
13769 - "default.handlebars->119->576",
13770 - "default.handlebars->119->597",
13771 - "default.handlebars->119->614",
13772 - "default3.handlebars->117->2463",
13773 - "default3.handlebars->117->2471",
13774 - "default3.handlebars->117->587",
13775 - "default3.handlebars->117->608",
13776 - "default3.handlebars->117->625"
13767 + "default.handlebars->119->2453",
13768 + "default.handlebars->119->2461",
13769 + "default.handlebars->119->577",
13770 + "default.handlebars->119->598",
13771 + "default.handlebars->119->615",
13772 + "default3.handlebars->117->2465",
13773 + "default3.handlebars->117->2473",
13774 + "default3.handlebars->117->588",
13775 + "default3.handlebars->117->609",
13776 + "default3.handlebars->117->626"
13777 ]
13778 },
13779 {
@@ -13833,10 +13833,10 @@
13833 "zh-chs": "备用码",
13834 "zh-cht": "備用碼",
13835 "xloc": [
13836 - "default.handlebars->119->3018",
13837 - "default.handlebars->119->3257",
13838 - "default3.handlebars->117->3027",
13839 - "default3.handlebars->117->3260"
13836 + "default.handlebars->119->3020",
13837 + "default.handlebars->119->3259",
13838 + "default3.handlebars->117->3029",
13839 + "default3.handlebars->117->3262"
13840 ]
13841 },
13842 {
@@ -13866,8 +13866,8 @@
13866 "zh-cht": "備用代碼已鎖定",
13867 "xloc": [
13868 "default-mobile.handlebars->53->66",
13869 - "default.handlebars->119->218",
13870 - "default3.handlebars->117->230"
13869 + "default.handlebars->119->219",
13870 + "default3.handlebars->117->231"
13871 ]
13872 },
13873 {
@@ -13926,8 +13926,8 @@
13926 "zh-chs": "错误的签名",
13927 "zh-cht": "錯誤的簽名",
13928 "xloc": [
13929 - "default.handlebars->119->3362",
13930 - "default3.handlebars->117->3367"
13929 + "default.handlebars->119->3364",
13930 + "default3.handlebars->117->3369"
13931 ]
13932 },
13933 {
@@ -13956,8 +13956,8 @@
13956 "zh-chs": "错误的网络证书",
13957 "zh-cht": "錯誤的網絡憑證",
13958 "xloc": [
13959 - "default.handlebars->119->3361",
13960 - "default3.handlebars->117->3366"
13959 + "default.handlebars->119->3363",
13960 + "default3.handlebars->117->3368"
13961 ]
13962 },
13963 {
@@ -13987,8 +13987,8 @@
13987 "zh-cht": "巴斯克",
13988 "xloc": [
13989 "default-mobile.handlebars->53->139",
13990 - "default.handlebars->119->1886",
13991 - "default3.handlebars->117->1882",
13990 + "default.handlebars->119->1888",
13991 + "default3.handlebars->117->1884",
13992 "login2.handlebars->17->25"
13993 ]
13994 },
@@ -14018,8 +14018,8 @@
14018 "zh-chs": "批处理文件上传",
14019 "zh-cht": "批處理文件上傳",
14020 "xloc": [
14021 - "default.handlebars->119->794",
14022 - "default3.handlebars->117->805"
14021 + "default.handlebars->119->795",
14022 + "default3.handlebars->117->806"
14023 ]
14024 },
14025 {
@@ -14093,8 +14093,8 @@
14093 "zh-chs": "将{0}个文件批量上传到文件夹{1}",
14094 "zh-cht": "將{0}個文件批量上傳到文件夾{1}",
14095 "xloc": [
14096 - "default.handlebars->119->2652",
14097 - "default3.handlebars->117->2664"
14096 + "default.handlebars->119->2654",
14097 + "default3.handlebars->117->2666"
14098 ]
14099 },
14100 {
@@ -14124,8 +14124,8 @@
14124 "zh-cht": "白俄羅斯文",
14125 "xloc": [
14126 "default-mobile.handlebars->53->141",
14127 - "default.handlebars->119->1888",
14128 - "default3.handlebars->117->1884",
14127 + "default.handlebars->119->1890",
14128 + "default3.handlebars->117->1886",
14129 "login2.handlebars->17->27"
14130 ]
14131 },
@@ -14156,8 +14156,8 @@
14156 "zh-cht": "孟加拉",
14157 "xloc": [
14158 "default-mobile.handlebars->53->142",
14159 - "default.handlebars->119->1889",
14160 - "default3.handlebars->117->1885",
14159 + "default.handlebars->119->1891",
14160 + "default3.handlebars->117->1887",
14161 "login2.handlebars->17->28"
14162 ]
14163 },
@@ -14225,9 +14225,9 @@
14225 "nl": "BitLocker",
14226 "uk": "BitLocker",
14227 "xloc": [
14228 - "default-mobile.handlebars->53->910",
14229 - "default.handlebars->119->1751",
14230 - "default3.handlebars->117->1749"
14228 + "default-mobile.handlebars->53->911",
14229 + "default.handlebars->119->1753",
14230 + "default3.handlebars->117->1751"
14231 ]
14232 },
14233 {
@@ -14237,9 +14237,9 @@
14237 "pl": "Informacje o BitLocker",
14238 "uk": "Інформація о BitLocker",
14239 "xloc": [
14240 - "default-mobile.handlebars->53->931",
14241 - "default.handlebars->119->1772",
14242 - "default3.handlebars->117->1770"
14240 + "default-mobile.handlebars->53->932",
14241 + "default.handlebars->119->1774",
14242 + "default3.handlebars->117->1772"
14243 ]
14244 },
14245 {
@@ -14268,9 +14268,9 @@
14268 "zh-chs": "引导加载程序",
14269 "zh-cht": "引導加載程序",
14270 "xloc": [
14271 - "default-mobile.handlebars->53->809",
14272 - "default.handlebars->119->1640",
14273 - "default3.handlebars->117->1640"
14271 + "default-mobile.handlebars->53->810",
14272 + "default.handlebars->119->1642",
14273 + "default3.handlebars->117->1642"
14274 ]
14275 },
14276 {
@@ -14300,8 +14300,8 @@
14300 "zh-cht": "波斯尼亞文",
14301 "xloc": [
14302 "default-mobile.handlebars->53->143",
14303 - "default.handlebars->119->1890",
14304 - "default3.handlebars->117->1886",
14303 + "default.handlebars->119->1892",
14304 + "default3.handlebars->117->1888",
14305 "login2.handlebars->17->29"
14306 ]
14307 },
@@ -14332,8 +14332,8 @@
14332 "zh-cht": "布列塔尼",
14333 "xloc": [
14334 "default-mobile.handlebars->53->144",
14335 - "default.handlebars->119->1891",
14336 - "default3.handlebars->117->1887",
14335 + "default.handlebars->119->1893",
14336 + "default3.handlebars->117->1889",
14337 "login2.handlebars->17->30"
14338 ]
14339 },
@@ -14363,9 +14363,9 @@
14363 "zh-chs": "广播",
14364 "zh-cht": "廣播",
14365 "xloc": [
14366 - "default.handlebars->119->2912",
14366 + "default.handlebars->119->2914",
14367 "default.handlebars->container->column_l->p4->3->1->0->3->1",
14368 - "default3.handlebars->117->2921",
14368 + "default3.handlebars->117->2923",
14369 "default3.handlebars->container->column_l->p4->3->1->0->1->3"
14370 ]
14371 },
@@ -14395,8 +14395,8 @@
14395 "zh-chs": "广播消息",
14396 "zh-cht": "廣播消息",
14397 "xloc": [
14398 - "default.handlebars->119->2828",
14399 - "default3.handlebars->117->2839"
14398 + "default.handlebars->119->2830",
14399 + "default3.handlebars->117->2841"
14400 ]
14401 },
14402 {
@@ -14425,8 +14425,8 @@
14425 "zh-chs": "向所有连接的用户广播消息。",
14426 "zh-cht": "向所有連接的用戶廣播消息。",
14427 "xloc": [
14428 - "default.handlebars->119->2823",
14429 - "default3.handlebars->117->2834"
14428 + "default.handlebars->119->2825",
14429 + "default3.handlebars->117->2836"
14430 ]
14431 },
14432 {
@@ -14455,8 +14455,8 @@
14455 "zh-chs": "浏览器",
14456 "zh-cht": "瀏覽器",
14457 "xloc": [
14458 - "default.handlebars->119->3228",
14459 - "default3.handlebars->117->3231"
14458 + "default.handlebars->119->3230",
14459 + "default3.handlebars->117->3233"
14460 ]
14461 },
14462 {
@@ -14547,8 +14547,8 @@
14547 "zh-cht": "保加利亞文",
14548 "xloc": [
14549 "default-mobile.handlebars->53->140",
14550 - "default.handlebars->119->1887",
14551 - "default3.handlebars->117->1883",
14550 + "default.handlebars->119->1889",
14551 + "default3.handlebars->117->1885",
14552 "login2.handlebars->17->26"
14553 ]
14554 },
@@ -14579,8 +14579,8 @@
14579 "zh-cht": "緬甸文",
14580 "xloc": [
14581 "default-mobile.handlebars->53->145",
14582 - "default.handlebars->119->1892",
14583 - "default3.handlebars->117->1888",
14582 + "default.handlebars->119->1894",
14583 + "default3.handlebars->117->1890",
14584 "login2.handlebars->17->31"
14585 ]
14586 },
@@ -14610,8 +14610,8 @@
14610 "zh-chs": "默认情况下,不活动的设备将在 1 天后移除。",
14611 "zh-cht": "默認情況下,非活動設備將在 1 天后移除。",
14612 "xloc": [
14613 - "default.handlebars->119->2353",
14614 - "default3.handlebars->117->2365"
14613 + "default.handlebars->119->2355",
14614 + "default3.handlebars->117->2367"
14615 ]
14616 },
14617 {
@@ -14640,8 +14640,8 @@
14640 "zh-chs": "默认情况下,非活动设备将在 {0} 天后移除。",
14641 "zh-cht": "默認情況下,不活動的設備將在 {0} 天后被移除。",
14642 "xloc": [
14643 - "default.handlebars->119->2354",
14644 - "default3.handlebars->117->2366"
14643 + "default.handlebars->119->2356",
14644 + "default3.handlebars->117->2368"
14645 ]
14646 },
14647 {
@@ -14683,8 +14683,8 @@
14683 "zh-chs": "字节输入",
14684 "zh-cht": "字節輸入",
14685 "xloc": [
14686 - "default.handlebars->119->3224",
14687 - "default3.handlebars->117->3227"
14686 + "default.handlebars->119->3226",
14687 + "default3.handlebars->117->3229"
14688 ]
14689 },
14690 {
@@ -14713,8 +14713,8 @@
14713 "zh-chs": "字节输出",
14714 "zh-cht": "字節輸出",
14715 "xloc": [
14716 - "default.handlebars->119->3225",
14717 - "default3.handlebars->117->3228"
14716 + "default.handlebars->119->3227",
14717 + "default3.handlebars->117->3230"
14718 ]
14719 },
14720 {
@@ -14791,10 +14791,10 @@
14791 "zh-cht": "CCM",
14792 "xloc": [
14793 "default-mobile.handlebars->53->522",
14794 - "default.handlebars->119->445",
14795 - "default.handlebars->119->929",
14796 - "default3.handlebars->117->456",
14797 - "default3.handlebars->117->940"
14794 + "default.handlebars->119->446",
14795 + "default.handlebars->119->930",
14796 + "default3.handlebars->117->457",
14797 + "default3.handlebars->117->941"
14798 ]
14799 },
14800 {
@@ -14823,8 +14823,8 @@
14823 "zh-chs": "CCM模式",
14824 "zh-cht": "CCM模式",
14825 "xloc": [
14826 - "default.handlebars->119->2304",
14827 - "default3.handlebars->117->2313"
14826 + "default.handlebars->119->2306",
14827 + "default3.handlebars->117->2315"
14828 ]
14829 },
14830 {
@@ -14832,15 +14832,15 @@
14832 "en": "CD-ROM",
14833 "nl": "CD-ROM",
14834 "xloc": [
14835 - "default-mobile.handlebars->53->903",
14836 - "default-mobile.handlebars->53->915",
14837 - "default-mobile.handlebars->53->922",
14838 - "default.handlebars->119->1744",
14839 - "default.handlebars->119->1756",
14840 - "default.handlebars->119->1763",
14841 - "default3.handlebars->117->1742",
14842 - "default3.handlebars->117->1754",
14843 - "default3.handlebars->117->1761"
14835 + "default-mobile.handlebars->53->904",
14836 + "default-mobile.handlebars->53->916",
14837 + "default-mobile.handlebars->53->923",
14838 + "default.handlebars->119->1746",
14839 + "default.handlebars->119->1758",
14840 + "default.handlebars->119->1765",
14841 + "default3.handlebars->117->1744",
14842 + "default3.handlebars->117->1756",
14843 + "default3.handlebars->117->1763"
14844 ]
14845 },
14846 {
@@ -14870,12 +14870,12 @@
14870 "zh-cht": "CIRA",
14871 "xloc": [
14872 "default-mobile.handlebars->53->483",
14873 - "default.handlebars->119->3388",
14874 - "default.handlebars->119->423",
14875 - "default.handlebars->119->730",
14876 - "default3.handlebars->117->3393",
14877 - "default3.handlebars->117->434",
14878 - "default3.handlebars->117->741"
14873 + "default.handlebars->119->3390",
14874 + "default.handlebars->119->424",
14875 + "default.handlebars->119->731",
14876 + "default3.handlebars->117->3395",
14877 + "default3.handlebars->117->435",
14878 + "default3.handlebars->117->742"
14879 ]
14880 },
14881 {
@@ -14904,8 +14904,8 @@
14904 "zh-chs": "CIRA服务器",
14905 "zh-cht": "CIRA伺服器",
14906 "xloc": [
14907 - "default.handlebars->119->3437",
14908 - "default3.handlebars->117->3442"
14907 + "default.handlebars->119->3439",
14908 + "default3.handlebars->117->3444"
14909 ]
14910 },
14911 {
@@ -14934,8 +14934,8 @@
14934 "zh-chs": "CIRA服务器命令",
14935 "zh-cht": "CIRA伺服器指令",
14936 "xloc": [
14937 - "default.handlebars->119->3438",
14938 - "default3.handlebars->117->3443"
14937 + "default.handlebars->119->3440",
14938 + "default3.handlebars->117->3445"
14939 ]
14940 },
14941 {
@@ -14994,8 +14994,8 @@
14994 "zh-chs": "CIRA设置",
14995 "zh-cht": "CIRA設置",
14996 "xloc": [
14997 - "default.handlebars->119->2312",
14998 - "default3.handlebars->117->2320"
14997 + "default.handlebars->119->2314",
14998 + "default3.handlebars->117->2322"
14999 ]
15000 },
15001 {
@@ -15024,14 +15024,14 @@
15024 "zh-chs": "CPU",
15025 "zh-cht": "CPU",
15026 "xloc": [
15027 - "default-mobile.handlebars->53->860",
15028 - "default.handlebars->119->1615",
15029 - "default.handlebars->119->1701",
15030 - "default.handlebars->119->3413",
15027 + "default-mobile.handlebars->53->861",
15028 + "default.handlebars->119->1616",
15029 + "default.handlebars->119->1703",
15030 + "default.handlebars->119->3415",
15031 "default.handlebars->container->column_l->p40->3->1->p40type->5",
15032 - "default3.handlebars->117->1615",
15033 - "default3.handlebars->117->1699",
15034 - "default3.handlebars->117->3418",
15032 + "default3.handlebars->117->1616",
15033 + "default3.handlebars->117->1701",
15034 + "default3.handlebars->117->3420",
15035 "default3.handlebars->container->column_l->p40->3->3->p40type->5"
15036 ]
15037 },
@@ -15061,8 +15061,8 @@
15061 "zh-chs": "CPU负载",
15062 "zh-cht": "CPU負載",
15063 "xloc": [
15064 - "default.handlebars->119->3377",
15065 - "default3.handlebars->117->3382"
15064 + "default.handlebars->119->3379",
15065 + "default3.handlebars->117->3384"
15066 ]
15067 },
15068 {
@@ -15091,8 +15091,8 @@
15091 "zh-chs": "最近15分钟的CPU负载",
15092 "zh-cht": "最近15分鐘的CPU負載",
15093 "xloc": [
15094 - "default.handlebars->119->3380",
15095 - "default3.handlebars->117->3385"
15094 + "default.handlebars->119->3382",
15095 + "default3.handlebars->117->3387"
15096 ]
15097 },
15098 {
@@ -15121,8 +15121,8 @@
15121 "zh-chs": "最近5分钟的CPU负载",
15122 "zh-cht": "最近5分鐘的CPU負載",
15123 "xloc": [
15124 - "default.handlebars->119->3379",
15125 - "default3.handlebars->117->3384"
15124 + "default.handlebars->119->3381",
15125 + "default3.handlebars->117->3386"
15126 ]
15127 },
15128 {
@@ -15151,8 +15151,8 @@
15151 "zh-chs": "最近一分钟的CPU负载",
15152 "zh-cht": "最近一分鐘的CPU負載",
15153 "xloc": [
15154 - "default.handlebars->119->3378",
15155 - "default3.handlebars->117->3383"
15154 + "default.handlebars->119->3380",
15155 + "default3.handlebars->117->3385"
15156 ]
15157 },
15158 {
@@ -15181,11 +15181,11 @@
15181 "zh-chs": "CR+LF",
15182 "zh-cht": "CR+LF",
15183 "xloc": [
15184 - "default.handlebars->119->1509",
15185 - "default.handlebars->119->1540",
15184 + "default.handlebars->119->1510",
15185 + "default.handlebars->119->1541",
15186 "default.handlebars->container->column_l->p12->termTable->1->1->4->1->1->terminalSettingsButtons",
15187 - "default3.handlebars->117->1509",
15188 - "default3.handlebars->117->1540",
15187 + "default3.handlebars->117->1510",
15188 + "default3.handlebars->117->1541",
15189 "default3.handlebars->container->column_l->p12->termTable->1->1->4->1->3->terminalSettingsButtons",
15190 "sharing.handlebars->47->25",
15191 "sharing.handlebars->47->39",
@@ -15218,8 +15218,8 @@
15218 "zh-chs": "CSV",
15219 "zh-cht": "CSV",
15220 "xloc": [
15221 - "default.handlebars->119->2734",
15222 - "default3.handlebars->117->2746"
15221 + "default.handlebars->119->2736",
15222 + "default3.handlebars->117->2748"
15223 ]
15224 },
15225 {
@@ -15248,12 +15248,12 @@
15248 "zh-chs": "CSV格式",
15249 "zh-cht": "CSV格式",
15250 "xloc": [
15251 - "default.handlebars->119->2738",
15252 - "default.handlebars->119->2815",
15253 - "default.handlebars->119->803",
15254 - "default3.handlebars->117->2750",
15255 - "default3.handlebars->117->2826",
15256 - "default3.handlebars->117->814"
15251 + "default.handlebars->119->2740",
15252 + "default.handlebars->119->2817",
15253 + "default.handlebars->119->804",
15254 + "default3.handlebars->117->2752",
15255 + "default3.handlebars->117->2828",
15256 + "default3.handlebars->117->815"
15257 ]
15258 },
15259 {
@@ -15262,8 +15262,8 @@
15262 "nl": "Het CSV bestandsformaat is als volgt:",
15263 "uk": "Формат файлу CSV нижче:",
15264 "xloc": [
15265 - "default.handlebars->119->2801",
15266 - "default3.handlebars->117->2812"
15265 + "default.handlebars->119->2803",
15266 + "default3.handlebars->117->2814"
15267 ]
15268 },
15269 {
@@ -15318,8 +15318,8 @@
15318 "zh-chs": "呼叫错误",
15319 "zh-cht": "呼叫錯誤",
15320 "xloc": [
15321 - "default.handlebars->119->3454",
15322 - "default3.handlebars->117->3459"
15321 + "default.handlebars->119->3456",
15322 + "default3.handlebars->117->3461"
15323 ]
15324 },
15325 {
@@ -15332,10 +15332,10 @@
15332 "pl": "CallMeBot",
15333 "uk": "CallMeBot",
15334 "xloc": [
15335 - "default.handlebars->119->1810",
15336 - "default.handlebars->119->3053",
15337 - "default3.handlebars->117->1807",
15338 - "default3.handlebars->117->3062"
15335 + "default.handlebars->119->1812",
15336 + "default.handlebars->119->3055",
15337 + "default3.handlebars->117->1809",
15338 + "default3.handlebars->117->3064"
15339 ]
15340 },
15341 {
@@ -15397,11 +15397,11 @@
15397 "agent-translations.json",
15398 "default-mobile.handlebars->53->331",
15399 "default-mobile.handlebars->dialog->idx_dlgButtonBar",
15400 - "default.handlebars->119->2166",
15401 - "default.handlebars->119->3443",
15402 - "default.handlebars->119->548",
15400 + "default.handlebars->119->2168",
15401 + "default.handlebars->119->3445",
15402 + "default.handlebars->119->549",
15403 "default.handlebars->container->dialog->idx_dlgButtonBar",
15404 - "default3.handlebars->117->559",
15404 + "default3.handlebars->117->560",
15405 "default3.handlebars->container->xxAddAgentModal->xxAddAgentModalConf->1->5->idx_dlgCancelButton",
15406 "login-mobile.handlebars->dialog->idx_dlgButtonBar",
15407 "login.handlebars->dialog->idx_dlgButtonBar",
@@ -15521,30 +15521,30 @@
15521 "zh-chs": "容量",
15522 "zh-cht": "容量",
15523 "xloc": [
15524 - "default-mobile.handlebars->53->878",
15525 - "default-mobile.handlebars->53->884",
15526 - "default-mobile.handlebars->53->890",
15527 - "default-mobile.handlebars->53->895",
15528 - "default-mobile.handlebars->53->897",
15529 - "default-mobile.handlebars->53->900",
15530 - "default-mobile.handlebars->53->912",
15531 - "default-mobile.handlebars->53->919",
15532 - "default.handlebars->119->1719",
15533 - "default.handlebars->119->1725",
15534 - "default.handlebars->119->1731",
15535 - "default.handlebars->119->1736",
15524 + "default-mobile.handlebars->53->879",
15525 + "default-mobile.handlebars->53->885",
15526 + "default-mobile.handlebars->53->891",
15527 + "default-mobile.handlebars->53->896",
15528 + "default-mobile.handlebars->53->898",
15529 + "default-mobile.handlebars->53->901",
15530 + "default-mobile.handlebars->53->913",
15531 + "default-mobile.handlebars->53->920",
15532 + "default.handlebars->119->1721",
15533 + "default.handlebars->119->1727",
15534 + "default.handlebars->119->1733",
15535 "default.handlebars->119->1738",
15537 - "default.handlebars->119->1741",
15538 - "default.handlebars->119->1753",
15539 - "default.handlebars->119->1760",
15540 - "default3.handlebars->117->1717",
15541 - "default3.handlebars->117->1723",
15542 - "default3.handlebars->117->1729",
15543 - "default3.handlebars->117->1734",
15536 + "default.handlebars->119->1740",
15537 + "default.handlebars->119->1743",
15538 + "default.handlebars->119->1755",
15539 + "default.handlebars->119->1762",
15540 + "default3.handlebars->117->1719",
15541 + "default3.handlebars->117->1725",
15542 + "default3.handlebars->117->1731",
15543 "default3.handlebars->117->1736",
15545 - "default3.handlebars->117->1739",
15546 - "default3.handlebars->117->1751",
15547 - "default3.handlebars->117->1758"
15544 + "default3.handlebars->117->1738",
15545 + "default3.handlebars->117->1741",
15546 + "default3.handlebars->117->1753",
15547 + "default3.handlebars->117->1760"
15548 ]
15549 },
15550 {
@@ -15573,15 +15573,15 @@
15573 "zh-chs": "容量/速度",
15574 "zh-cht": "容量/速度",
15575 "xloc": [
15576 - "default-mobile.handlebars->53->876",
15577 - "default-mobile.handlebars->53->882",
15578 - "default-mobile.handlebars->53->888",
15579 - "default.handlebars->119->1717",
15580 - "default.handlebars->119->1723",
15581 - "default.handlebars->119->1729",
15582 - "default3.handlebars->117->1715",
15583 - "default3.handlebars->117->1721",
15584 - "default3.handlebars->117->1727"
15576 + "default-mobile.handlebars->53->877",
15577 + "default-mobile.handlebars->53->883",
15578 + "default-mobile.handlebars->53->889",
15579 + "default.handlebars->119->1719",
15580 + "default.handlebars->119->1725",
15581 + "default.handlebars->119->1731",
15582 + "default3.handlebars->117->1717",
15583 + "default3.handlebars->117->1723",
15584 + "default3.handlebars->117->1729"
15585 ]
15586 },
15587 {
@@ -15590,15 +15590,15 @@
15590 "nl": "Resterende capaciteit",
15591 "uk": "Вільне місце",
15592 "xloc": [
15593 - "default-mobile.handlebars->53->901",
15594 - "default-mobile.handlebars->53->913",
15595 - "default-mobile.handlebars->53->920",
15596 - "default.handlebars->119->1742",
15597 - "default.handlebars->119->1754",
15598 - "default.handlebars->119->1761",
15599 - "default3.handlebars->117->1740",
15600 - "default3.handlebars->117->1752",
15601 - "default3.handlebars->117->1759"
15593 + "default-mobile.handlebars->53->902",
15594 + "default-mobile.handlebars->53->914",
15595 + "default-mobile.handlebars->53->921",
15596 + "default.handlebars->119->1744",
15597 + "default.handlebars->119->1756",
15598 + "default.handlebars->119->1763",
15599 + "default3.handlebars->117->1742",
15600 + "default3.handlebars->117->1754",
15601 + "default3.handlebars->117->1761"
15602 ]
15603 },
15604 {
@@ -15628,8 +15628,8 @@
15628 "zh-cht": "加泰羅尼亞文",
15629 "xloc": [
15630 "default-mobile.handlebars->53->146",
15631 - "default.handlebars->119->1893",
15632 - "default3.handlebars->117->1889",
15631 + "default.handlebars->119->1895",
15632 + "default3.handlebars->117->1891",
15633 "login2.handlebars->17->32"
15634 ]
15635 },
@@ -15659,8 +15659,8 @@
15659 "zh-chs": "在这里为中心显示地图",
15660 "zh-cht": "在這裡為中心顯示地圖",
15661 "xloc": [
15662 - "default.handlebars->119->882",
15663 - "default3.handlebars->117->893"
15662 + "default.handlebars->119->883",
15663 + "default3.handlebars->117->894"
15664 ]
15665 },
15666 {
@@ -15726,7 +15726,7 @@
15726 "en": "Cerulean",
15727 "nl": "Hemelsblauw",
15728 "xloc": [
15729 - "default3.handlebars->117->2103"
15729 + "default3.handlebars->117->2105"
15730 ]
15731 },
15732 {
@@ -15756,8 +15756,8 @@
15756 "zh-cht": "查莫羅",
15757 "xloc": [
15758 "default-mobile.handlebars->53->147",
15759 - "default.handlebars->119->1894",
15760 - "default3.handlebars->117->1890",
15759 + "default.handlebars->119->1896",
15760 + "default3.handlebars->117->1892",
15761 "login2.handlebars->17->33"
15762 ]
15763 },
@@ -15818,8 +15818,8 @@
15818 "zh-chs": "更改{0}的邮箱",
15819 "zh-cht": "更改{0}的電郵",
15820 "xloc": [
15821 - "default.handlebars->119->3095",
15822 - "default3.handlebars->117->3102"
15821 + "default.handlebars->119->3097",
15822 + "default3.handlebars->117->3104"
15823 ]
15824 },
15825 {
@@ -15848,12 +15848,12 @@
15848 "zh-chs": "更改组",
15849 "zh-cht": "更改群",
15850 "xloc": [
15851 - "default.handlebars->119->1046",
15852 - "default.handlebars->119->1335",
15851 + "default.handlebars->119->1047",
15852 "default.handlebars->119->1336",
15854 - "default3.handlebars->117->1057",
15855 - "default3.handlebars->117->1340",
15856 - "default3.handlebars->117->1341"
15853 + "default.handlebars->119->1337",
15854 + "default3.handlebars->117->1058",
15855 + "default3.handlebars->117->1341",
15856 + "default3.handlebars->117->1342"
15857 ]
15858 },
15859 {
@@ -15898,10 +15898,10 @@
15898 "zh-cht": "更改密碼",
15899 "xloc": [
15900 "default-mobile.handlebars->53->339",
15901 - "default.handlebars->119->2110",
15902 - "default.handlebars->119->3039",
15903 - "default3.handlebars->117->2101",
15904 - "default3.handlebars->117->3048"
15901 + "default.handlebars->119->2112",
15902 + "default.handlebars->119->3041",
15903 + "default3.handlebars->117->2103",
15904 + "default3.handlebars->117->3050"
15905 ]
15906 },
15907 {
@@ -15930,8 +15930,8 @@
15930 "zh-chs": "更改{0}的密码",
15931 "zh-cht": "更改{0}的密碼",
15932 "xloc": [
15933 - "default.handlebars->119->3104",
15934 - "default3.handlebars->117->3107"
15933 + "default.handlebars->119->3106",
15934 + "default3.handlebars->117->3109"
15935 ]
15936 },
15937 {
@@ -15960,8 +15960,8 @@
15960 "zh-chs": "更改{0}的真实名称",
15961 "zh-cht": "更改{0}的真實名稱",
15962 "xloc": [
15963 - "default.handlebars->119->3090",
15964 - "default3.handlebars->117->3098"
15963 + "default.handlebars->119->3092",
15964 + "default3.handlebars->117->3100"
15965 ]
15966 },
15967 {
@@ -16138,8 +16138,8 @@
16138 "zh-chs": "更改该用户的密码",
16139 "zh-cht": "更改該用戶的密碼",
16140 "xloc": [
16141 - "default.handlebars->119->3038",
16142 - "default3.handlebars->117->3047"
16141 + "default.handlebars->119->3040",
16142 + "default3.handlebars->117->3049"
16143 ]
16144 },
16145 {
@@ -16198,8 +16198,8 @@
16198 "zh-chs": "更改您的邮件地址。",
16199 "zh-cht": "在此處更改你的帳戶電郵地址。",
16200 "xloc": [
16201 - "default.handlebars->119->2097",
16202 - "default3.handlebars->117->2094"
16201 + "default.handlebars->119->2099",
16202 + "default3.handlebars->117->2096"
16203 ]
16204 },
16205 {
@@ -16228,8 +16228,8 @@
16228 "zh-chs": "在下面的框中两次输入旧密码和新密码,以更改帐户密码。",
16229 "zh-cht": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。",
16230 "xloc": [
16231 - "default.handlebars->119->2103",
16232 - "default3.handlebars->117->2098"
16231 + "default.handlebars->119->2105",
16232 + "default3.handlebars->117->2100"
16233 ]
16234 },
16235 {
@@ -16258,8 +16258,8 @@
16258 "zh-chs": "更改帐户凭据",
16259 "zh-cht": "帳戶憑證已更改",
16260 "xloc": [
16261 - "default.handlebars->119->2624",
16262 - "default3.handlebars->117->2636"
16261 + "default.handlebars->119->2626",
16262 + "default3.handlebars->117->2638"
16263 ]
16264 },
16265 {
@@ -16288,8 +16288,8 @@
16288 "zh-chs": "将帐户显示名称更改为 {0}。",
16289 "zh-cht": "將帳戶顯示名稱更改為 {0}。",
16290 "xloc": [
16291 - "default.handlebars->119->2676",
16292 - "default3.handlebars->117->2688"
16291 + "default.handlebars->119->2678",
16292 + "default3.handlebars->117->2690"
16293 ]
16294 },
16295 {
@@ -16318,10 +16318,10 @@
16318 "zh-chs": "{1}组中的设备{0}已更改:{2}",
16319 "zh-cht": "{1}組中的設備{0}已更改:{2}",
16320 "xloc": [
16321 - "default.handlebars->119->2608",
16322 - "default.handlebars->119->2689",
16323 - "default3.handlebars->117->2620",
16324 - "default3.handlebars->117->2701"
16321 + "default.handlebars->119->2610",
16322 + "default.handlebars->119->2691",
16323 + "default3.handlebars->117->2622",
16324 + "default3.handlebars->117->2703"
16325 ]
16326 },
16327 {
@@ -16350,8 +16350,8 @@
16350 "zh-chs": "语言从{1}更改为{2}",
16351 "zh-cht": "語言從{1}更改為{2}",
16352 "xloc": [
16353 - "default.handlebars->119->2552",
16354 - "default3.handlebars->117->2564"
16353 + "default.handlebars->119->2554",
16354 + "default3.handlebars->117->2566"
16355 ]
16356 },
16357 {
@@ -16380,10 +16380,10 @@
16380 "zh-chs": "已更改{0}的用户设备权限",
16381 "zh-cht": "已更改{0}的用戶設備權限",
16382 "xloc": [
16383 - "default.handlebars->119->2610",
16384 - "default.handlebars->119->2631",
16385 - "default3.handlebars->117->2622",
16386 - "default3.handlebars->117->2643"
16383 + "default.handlebars->119->2612",
16384 + "default.handlebars->119->2633",
16385 + "default3.handlebars->117->2624",
16386 + "default3.handlebars->117->2645"
16387 ]
16388 },
16389 {
@@ -16439,8 +16439,8 @@
16439 "zh-cht": "更改語言將需要刷新頁面。",
16440 "xloc": [
16441 "default-mobile.handlebars->53->314",
16442 - "default.handlebars->119->2061",
16443 - "default3.handlebars->117->2057"
16442 + "default.handlebars->119->2063",
16443 + "default3.handlebars->117->2059"
16444 ]
16445 },
16446 {
@@ -16469,18 +16469,18 @@
16469 "zh-chs": "聊天",
16470 "zh-cht": "聊天",
16471 "xloc": [
16472 - "default.handlebars->119->1035",
16473 - "default.handlebars->119->1154",
16474 - "default.handlebars->119->1179",
16475 - "default.handlebars->119->2755",
16476 - "default.handlebars->119->3034",
16477 - "default.handlebars->119->3035",
16478 - "default3.handlebars->117->1046",
16479 - "default3.handlebars->117->1163",
16480 - "default3.handlebars->117->1188",
16481 - "default3.handlebars->117->2767",
16482 - "default3.handlebars->117->3043",
16483 - "default3.handlebars->117->3044"
16472 + "default.handlebars->119->1036",
16473 + "default.handlebars->119->1155",
16474 + "default.handlebars->119->1180",
16475 + "default.handlebars->119->2757",
16476 + "default.handlebars->119->3036",
16477 + "default.handlebars->119->3037",
16478 + "default3.handlebars->117->1047",
16479 + "default3.handlebars->117->1164",
16480 + "default3.handlebars->117->1189",
16481 + "default3.handlebars->117->2769",
16482 + "default3.handlebars->117->3045",
16483 + "default3.handlebars->117->3046"
16484 ]
16485 },
16486 {
@@ -16509,12 +16509,12 @@
16509 "zh-chs": "聊天并通知",
16510 "zh-cht": "聊天並通知",
16511 "xloc": [
16512 - "default-mobile.handlebars->53->1005",
16513 - "default-mobile.handlebars->53->1025",
16514 - "default.handlebars->119->2385",
16515 - "default.handlebars->119->2423",
16516 - "default3.handlebars->117->2397",
16517 - "default3.handlebars->117->2435"
16512 + "default-mobile.handlebars->53->1006",
16513 + "default-mobile.handlebars->53->1026",
16514 + "default.handlebars->119->2387",
16515 + "default.handlebars->119->2425",
16516 + "default3.handlebars->117->2399",
16517 + "default3.handlebars->117->2437"
16518 ]
16519 },
16520 {
@@ -16543,9 +16543,9 @@
16543 "zh-chs": "聊天请求,点击这里接受。",
16544 "zh-cht": "聊天請求,點擊這裡接受。",
16545 "xloc": [
16546 - "default-mobile.handlebars->53->1057",
16547 - "default.handlebars->119->3326",
16548 - "default3.handlebars->117->3331"
16546 + "default-mobile.handlebars->53->1058",
16547 + "default.handlebars->119->3328",
16548 + "default3.handlebars->117->3333"
16549 ]
16550 },
16551 {
@@ -16604,8 +16604,8 @@
16604 "zh-cht": "車臣",
16605 "xloc": [
16606 "default-mobile.handlebars->53->148",
16607 - "default.handlebars->119->1895",
16608 - "default3.handlebars->117->1891",
16607 + "default.handlebars->119->1897",
16608 + "default3.handlebars->117->1893",
16609 "login2.handlebars->17->34"
16610 ]
16611 },
@@ -16635,8 +16635,8 @@
16635 "zh-chs": "检查并单击确定以清除错误日志。",
16636 "zh-cht": "檢查並單擊確定以清除錯誤日誌。",
16637 "xloc": [
16638 - "default.handlebars->119->212",
16639 - "default3.handlebars->117->225"
16638 + "default.handlebars->119->213",
16639 + "default3.handlebars->117->226"
16640 ]
16641 },
16642 {
@@ -16665,8 +16665,8 @@
16665 "zh-chs": "检查并单击确定以开始服务器自我更新。",
16666 "zh-cht": "檢查並單擊確定以開始伺服器自我更新。",
16667 "xloc": [
16668 - "default.handlebars->119->207",
16669 - "default3.handlebars->117->220"
16668 + "default.handlebars->119->208",
16669 + "default3.handlebars->117->221"
16670 ]
16671 },
16672 {
@@ -16710,8 +16710,8 @@
16710 "pl": "Sprawdź swoją aplikacje wiadomości i wprowadź kod weryfikacyjny.",
16711 "uk": "Для перевірки програми обміну повідомленнями, введіть код підтвердження після отримання.",
16712 "xloc": [
16713 - "default.handlebars->119->267",
16714 - "default3.handlebars->117->277"
16713 + "default.handlebars->119->268",
16714 + "default3.handlebars->117->278"
16715 ]
16716 },
16717 {
@@ -16740,8 +16740,8 @@
16740 "zh-chs": "检查您的手机并输入验证码。",
16741 "zh-cht": "檢查你的電話並輸入驗證碼。",
16742 "xloc": [
16743 - "default.handlebars->119->264",
16744 - "default3.handlebars->117->274"
16743 + "default.handlebars->119->265",
16744 + "default3.handlebars->117->275"
16745 ]
16746 },
16747 {
@@ -16770,10 +16770,10 @@
16770 "zh-chs": "检查...",
16771 "zh-cht": "檢查...",
16772 "xloc": [
16773 - "default.handlebars->119->1861",
16774 - "default.handlebars->119->3448",
16775 - "default3.handlebars->117->1857",
16776 - "default3.handlebars->117->3453"
16773 + "default.handlebars->119->1863",
16774 + "default.handlebars->119->3450",
16775 + "default3.handlebars->117->1859",
16776 + "default3.handlebars->117->3455"
16777 ]
16778 },
16779 {
@@ -16803,8 +16803,8 @@
16803 "zh-cht": "中文",
16804 "xloc": [
16805 "default-mobile.handlebars->53->149",
16806 - "default.handlebars->119->1896",
16807 - "default3.handlebars->117->1892",
16806 + "default.handlebars->119->1898",
16807 + "default3.handlebars->117->1894",
16808 "login2.handlebars->17->35"
16809 ]
16810 },
@@ -16835,8 +16835,8 @@
16835 "zh-cht": "中文(香港)",
16836 "xloc": [
16837 "default-mobile.handlebars->53->150",
16838 - "default.handlebars->119->1897",
16839 - "default3.handlebars->117->1893",
16838 + "default.handlebars->119->1899",
16839 + "default3.handlebars->117->1895",
16840 "login2.handlebars->17->36"
16841 ]
16842 },
@@ -16867,8 +16867,8 @@
16867 "zh-cht": "中文(中國)",
16868 "xloc": [
16869 "default-mobile.handlebars->53->151",
16870 - "default.handlebars->119->1898",
16871 - "default3.handlebars->117->1894",
16870 + "default.handlebars->119->1900",
16871 + "default3.handlebars->117->1896",
16872 "login2.handlebars->17->37"
16873 ]
16874 },
@@ -16899,8 +16899,8 @@
16899 "zh-cht": "簡體中文",
16900 "xloc": [
16901 "default-mobile.handlebars->53->311",
16902 - "default.handlebars->119->2058",
16903 - "default3.handlebars->117->2054",
16902 + "default.handlebars->119->2060",
16903 + "default3.handlebars->117->2056",
16904 "login2.handlebars->17->197"
16905 ]
16906 },
@@ -16931,8 +16931,8 @@
16931 "zh-cht": "中文(新加坡)",
16932 "xloc": [
16933 "default-mobile.handlebars->53->152",
16934 - "default.handlebars->119->1899",
16935 - "default3.handlebars->117->1895",
16934 + "default.handlebars->119->1901",
16935 + "default3.handlebars->117->1897",
16936 "login2.handlebars->17->38"
16937 ]
16938 },
@@ -16963,8 +16963,8 @@
16963 "zh-cht": "中文(台灣)",
16964 "xloc": [
16965 "default-mobile.handlebars->53->153",
16966 - "default.handlebars->119->1900",
16967 - "default3.handlebars->117->1896",
16966 + "default.handlebars->119->1902",
16967 + "default3.handlebars->117->1898",
16968 "login2.handlebars->17->39"
16969 ]
16970 },
@@ -16995,8 +16995,8 @@
16995 "zh-cht": "繁體中文",
16996 "xloc": [
16997 "default-mobile.handlebars->53->312",
16998 - "default.handlebars->119->2059",
16999 - "default3.handlebars->117->2055",
16998 + "default.handlebars->119->2061",
16999 + "default3.handlebars->117->2057",
17000 "login2.handlebars->17->198"
17001 ]
17002 },
@@ -17058,8 +17058,8 @@
17058 "zh-cht": "楚瓦什",
17059 "xloc": [
17060 "default-mobile.handlebars->53->154",
17061 - "default.handlebars->119->1901",
17062 - "default3.handlebars->117->1897",
17061 + "default.handlebars->119->1903",
17062 + "default3.handlebars->117->1899",
17063 "login2.handlebars->17->40"
17064 ]
17065 },
@@ -17129,18 +17129,18 @@
17129 "default-mobile.handlebars->53->748",
17130 "default-mobile.handlebars->53->89",
17131 "default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->5",
17132 - "default.handlebars->119->1588",
17133 - "default.handlebars->119->1590",
17134 - "default.handlebars->119->1592",
17135 - "default.handlebars->119->1594",
17136 - "default.handlebars->119->2546",
17132 + "default.handlebars->119->1589",
17133 + "default.handlebars->119->1591",
17134 + "default.handlebars->119->1593",
17135 + "default.handlebars->119->1595",
17136 + "default.handlebars->119->2548",
17137 "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7",
17138 "default.handlebars->container->column_l->p41->3->1",
17139 - "default3.handlebars->117->1588",
17140 - "default3.handlebars->117->1590",
17141 - "default3.handlebars->117->1592",
17142 - "default3.handlebars->117->1594",
17143 - "default3.handlebars->117->2558",
17139 + "default3.handlebars->117->1589",
17140 + "default3.handlebars->117->1591",
17141 + "default3.handlebars->117->1593",
17142 + "default3.handlebars->117->1595",
17143 + "default3.handlebars->117->2560",
17144 "default3.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7",
17145 "default3.handlebars->container->column_l->p41->3->3",
17146 "messenger.handlebars->xbottom->1->1->0->5",
@@ -17181,7 +17181,7 @@
17181 "zh-cht": "清除 RDP 憑據?",
17182 "xloc": [
17183 "default-mobile.handlebars->53->644",
17184 - "default.handlebars->119->1381"
17184 + "default.handlebars->119->1382"
17185 ]
17186 },
17187 {
@@ -17211,7 +17211,7 @@
17211 "zh-cht": "清除 SSH 憑據?",
17212 "xloc": [
17213 "default-mobile.handlebars->53->642",
17214 - "default.handlebars->119->1379"
17214 + "default.handlebars->119->1380"
17215 ]
17216 },
17217 {
@@ -17240,8 +17240,8 @@
17240 "zh-chs": "清除保安编码",
17241 "zh-cht": "清除保安編碼",
17242 "xloc": [
17243 - "default.handlebars->119->243",
17244 - "default3.handlebars->117->254"
17243 + "default.handlebars->119->244",
17244 + "default3.handlebars->117->255"
17245 ]
17246 },
17247 {
@@ -17270,10 +17270,10 @@
17270 "zh-chs": "清除代理核心",
17271 "zh-cht": "清除代理核心",
17272 "xloc": [
17273 - "default.handlebars->119->756",
17274 - "default.handlebars->119->798",
17275 - "default3.handlebars->117->767",
17276 - "default3.handlebars->117->809"
17273 + "default.handlebars->119->757",
17274 + "default.handlebars->119->799",
17275 + "default3.handlebars->117->768",
17276 + "default3.handlebars->117->810"
17277 ]
17278 },
17279 {
@@ -17302,8 +17302,8 @@
17302 "zh-chs": "清除选定设备上的代理核心?",
17303 "zh-cht": "清除所選設備上的代理核心?",
17304 "xloc": [
17305 - "default.handlebars->119->797",
17306 - "default3.handlebars->117->808"
17305 + "default.handlebars->119->798",
17306 + "default3.handlebars->117->809"
17307 ]
17308 },
17309 {
@@ -17332,9 +17332,9 @@
17332 "zh-chs": "全部清除",
17333 "zh-cht": "全部清除",
17334 "xloc": [
17335 - "default-mobile.handlebars->53->1040",
17336 - "default.handlebars->119->3309",
17337 - "default3.handlebars->117->3314"
17335 + "default-mobile.handlebars->53->1041",
17336 + "default.handlebars->119->3311",
17337 + "default3.handlebars->117->3316"
17338 ]
17339 },
17340 {
@@ -17364,8 +17364,8 @@
17364 "zh-cht": "清除搜索過濾器",
17365 "xloc": [
17366 "default-mobile.handlebars->53->419",
17367 - "default.handlebars->119->376",
17368 - "default3.handlebars->117->387"
17367 + "default.handlebars->119->377",
17368 + "default3.handlebars->117->388"
17369 ]
17370 },
17371 {
@@ -17394,9 +17394,9 @@
17394 "zh-chs": "清除核心",
17395 "zh-cht": "清除核心",
17396 "xloc": [
17397 - "default-mobile.handlebars->53->941",
17398 - "default.handlebars->119->1783",
17399 - "default3.handlebars->117->1781"
17397 + "default-mobile.handlebars->53->942",
17398 + "default.handlebars->119->1785",
17399 + "default3.handlebars->117->1783"
17400 ]
17401 },
17402 {
@@ -17426,8 +17426,8 @@
17426 "zh-cht": "從應用程序中清除秘密,然後重試。你只有幾分鐘的時間來輸入正確的代碼。",
17427 "xloc": [
17428 "default-mobile.handlebars->53->79",
17429 - "default.handlebars->119->233",
17430 - "default3.handlebars->117->245"
17429 + "default.handlebars->119->234",
17430 + "default3.handlebars->117->246"
17431 ]
17432 },
17433 {
@@ -17456,9 +17456,9 @@
17456 "zh-chs": "清除此通知",
17457 "zh-cht": "清除此通知",
17458 "xloc": [
17459 - "default-mobile.handlebars->53->1039",
17460 - "default.handlebars->119->3308",
17461 - "default3.handlebars->117->3313"
17459 + "default-mobile.handlebars->53->1040",
17460 + "default.handlebars->119->3310",
17461 + "default3.handlebars->117->3315"
17462 ]
17463 },
17464 {
@@ -17574,10 +17574,10 @@
17574 "zh-chs": "单击此处编辑设备组名称",
17575 "zh-cht": "單擊此處編輯裝置群名稱",
17576 "xloc": [
17577 - "default.handlebars->119->2180",
17578 - "default.handlebars->119->2484",
17579 - "default3.handlebars->117->2191",
17580 - "default3.handlebars->117->2496"
17577 + "default.handlebars->119->2182",
17578 + "default.handlebars->119->2486",
17579 + "default3.handlebars->117->2193",
17580 + "default3.handlebars->117->2498"
17581 ]
17582 },
17583 {
@@ -17606,8 +17606,8 @@
17606 "zh-chs": "单击此处编辑服务器端设备名称",
17607 "zh-cht": "單擊此處編輯伺服器端裝置名稱",
17608 "xloc": [
17609 - "default.handlebars->119->898",
17610 - "default3.handlebars->117->909"
17609 + "default.handlebars->119->899",
17610 + "default3.handlebars->117->910"
17611 ]
17612 },
17613 {
@@ -17636,8 +17636,8 @@
17636 "zh-chs": "单击此处编辑用户组名称",
17637 "zh-cht": "單擊此處編輯用戶群名稱",
17638 "xloc": [
17639 - "default.handlebars->119->2885",
17640 - "default3.handlebars->117->2894"
17639 + "default.handlebars->119->2887",
17640 + "default3.handlebars->117->2896"
17641 ]
17642 },
17643 {
@@ -17782,8 +17782,8 @@
17782 "zh-cht": "單擊確定將驗證電郵發送到:",
17783 "xloc": [
17784 "default-mobile.handlebars->53->324",
17785 - "default.handlebars->119->2094",
17786 - "default3.handlebars->117->2091"
17785 + "default.handlebars->119->2096",
17786 + "default3.handlebars->117->2093"
17787 ]
17788 },
17789 {
@@ -17898,9 +17898,9 @@
17898 "zh-chs": "客户端控制模式(CCM)",
17899 "zh-cht": "客戶端控制模式(CCM)",
17900 "xloc": [
17901 - "default-mobile.handlebars->53->838",
17902 - "default.handlebars->119->1679",
17903 - "default3.handlebars->117->1677"
17901 + "default-mobile.handlebars->53->839",
17902 + "default.handlebars->119->1681",
17903 + "default3.handlebars->117->1679"
17904 ]
17905 },
17906 {
@@ -17929,8 +17929,8 @@
17929 "zh-chs": "客户编号",
17930 "zh-cht": "客戶編號",
17931 "xloc": [
17932 - "default.handlebars->119->2157",
17933 - "default3.handlebars->117->2172"
17932 + "default.handlebars->119->2159",
17933 + "default3.handlebars->117->2174"
17934 ]
17935 },
17936 {
@@ -17959,8 +17959,8 @@
17959 "zh-chs": "客户端启动的远程访问",
17960 "zh-cht": "客戶端啟動的遠程訪問",
17961 "xloc": [
17962 - "default.handlebars->119->2311",
17963 - "default3.handlebars->117->2321"
17962 + "default.handlebars->119->2313",
17963 + "default3.handlebars->117->2323"
17964 ]
17965 },
17966 {
@@ -17989,8 +17989,8 @@
17989 "zh-chs": "客户机密",
17990 "zh-cht": "客戶機密",
17991 "xloc": [
17992 - "default.handlebars->119->2158",
17993 - "default3.handlebars->117->2173"
17992 + "default.handlebars->119->2160",
17993 + "default3.handlebars->117->2175"
17994 ]
17995 },
17996 {
@@ -18052,14 +18052,14 @@
18052 "xloc": [
18053 "agent-translations.json",
18054 "default-mobile.handlebars->53->87",
18055 - "default.handlebars->119->1493",
18056 - "default.handlebars->119->1563",
18057 - "default.handlebars->119->241",
18058 - "default.handlebars->119->250",
18059 - "default.handlebars->119->3442",
18060 - "default3.handlebars->117->1494",
18061 - "default3.handlebars->117->1563",
18062 - "default3.handlebars->117->361",
18055 + "default.handlebars->119->1494",
18056 + "default.handlebars->119->1564",
18057 + "default.handlebars->119->242",
18058 + "default.handlebars->119->251",
18059 + "default.handlebars->119->3444",
18060 + "default3.handlebars->117->1495",
18061 + "default3.handlebars->117->1564",
18062 + "default3.handlebars->117->362",
18063 "sharing.handlebars->47->52"
18064 ]
18065 },
@@ -18089,8 +18089,8 @@
18089 "zh-chs": "已关闭桌面多路复用会话 \\\"{0}\\\",{1} 秒",
18090 "zh-cht": "已關閉桌面多路復用會話 \\\"{0}\\\",{1} 秒",
18091 "xloc": [
18092 - "default.handlebars->119->2696",
18093 - "default3.handlebars->117->2708"
18092 + "default.handlebars->119->2698",
18093 + "default3.handlebars->117->2710"
18094 ]
18095 },
18096 {
@@ -18119,8 +18119,8 @@
18119 "zh-chs": "封闭式桌面多路复用会话,{0}秒",
18120 "zh-cht": "封閉式桌面多路復用會話,{0}秒",
18121 "xloc": [
18122 - "default.handlebars->119->2557",
18123 - "default3.handlebars->117->2569"
18122 + "default.handlebars->119->2559",
18123 + "default3.handlebars->117->2571"
18124 ]
18125 },
18126 {
@@ -18149,8 +18149,8 @@
18149 "zh-chs": "码",
18150 "zh-cht": "碼",
18151 "xloc": [
18152 - "default.handlebars->119->333",
18153 - "default3.handlebars->117->343"
18152 + "default.handlebars->119->334",
18153 + "default3.handlebars->117->344"
18154 ]
18155 },
18156 {
@@ -18272,8 +18272,8 @@
18272 "zh-cht": "命令",
18273 "xloc": [
18274 "agentinvite.handlebars->13->17",
18275 - "default.handlebars->119->694",
18276 - "default3.handlebars->117->705"
18275 + "default.handlebars->119->695",
18276 + "default3.handlebars->117->706"
18277 ]
18278 },
18279 {
@@ -18332,13 +18332,13 @@
18332 "zh-chs": "指令",
18333 "zh-cht": "指令",
18334 "xloc": [
18335 - "default-mobile.handlebars->53->1027",
18336 - "default.handlebars->119->1156",
18337 - "default.handlebars->119->1181",
18338 - "default.handlebars->119->2425",
18339 - "default3.handlebars->117->1165",
18340 - "default3.handlebars->117->1190",
18341 - "default3.handlebars->117->2437"
18335 + "default-mobile.handlebars->53->1028",
18336 + "default.handlebars->119->1157",
18337 + "default.handlebars->119->1182",
18338 + "default.handlebars->119->2427",
18339 + "default3.handlebars->117->1166",
18340 + "default3.handlebars->117->1191",
18341 + "default3.handlebars->117->2439"
18342 ]
18343 },
18344 {
@@ -18355,8 +18355,8 @@
18355 "uk": "Команди з файлу",
18356 "xloc": [
18357 "default-mobile.handlebars->53->626",
18358 - "default.handlebars->119->823",
18359 - "default3.handlebars->117->834"
18358 + "default.handlebars->119->824",
18359 + "default3.handlebars->117->835"
18360 ]
18361 },
18362 {
@@ -18373,8 +18373,8 @@
18373 "uk": "Команди з файлу на сервері",
18374 "xloc": [
18375 "default-mobile.handlebars->53->627",
18376 - "default.handlebars->119->824",
18377 - "default3.handlebars->117->835"
18376 + "default.handlebars->119->825",
18377 + "default3.handlebars->117->836"
18378 ]
18379 },
18380 {
@@ -18391,8 +18391,8 @@
18391 "uk": "Команди з текстового поля",
18392 "xloc": [
18393 "default-mobile.handlebars->53->625",
18394 - "default.handlebars->119->822",
18395 - "default3.handlebars->117->833"
18394 + "default.handlebars->119->823",
18395 + "default3.handlebars->117->834"
18396 ]
18397 },
18398 {
@@ -18421,10 +18421,10 @@
18421 "zh-chs": "通用设备组",
18422 "zh-cht": "通用裝置群",
18423 "xloc": [
18424 - "default.handlebars->119->2920",
18425 - "default.handlebars->119->3109",
18426 - "default3.handlebars->117->2929",
18427 - "default3.handlebars->117->3112"
18424 + "default.handlebars->119->2922",
18425 + "default.handlebars->119->3111",
18426 + "default3.handlebars->117->2931",
18427 + "default3.handlebars->117->3114"
18428 ]
18429 },
18430 {
@@ -18453,10 +18453,10 @@
18453 "zh-chs": "通用设备",
18454 "zh-cht": "通用裝置",
18455 "xloc": [
18456 - "default.handlebars->119->2926",
18457 - "default.handlebars->119->3121",
18458 - "default3.handlebars->117->2935",
18459 - "default3.handlebars->117->3124"
18456 + "default.handlebars->119->2928",
18457 + "default.handlebars->119->3123",
18458 + "default3.handlebars->117->2937",
18459 + "default3.handlebars->117->3126"
18460 ]
18461 },
18462 {
@@ -18485,9 +18485,9 @@
18485 "zh-chs": "编译时间",
18486 "zh-cht": "編譯時間",
18487 "xloc": [
18488 - "default-mobile.handlebars->53->805",
18489 - "default.handlebars->119->1636",
18490 - "default3.handlebars->117->1636"
18488 + "default-mobile.handlebars->53->806",
18489 + "default.handlebars->119->1638",
18490 + "default3.handlebars->117->1638"
18491 ]
18492 },
18493 {
@@ -18542,8 +18542,8 @@
18542 "zh-chs": "压缩档案...",
18543 "zh-cht": "壓縮檔案...",
18544 "xloc": [
18545 - "default.handlebars->119->1551",
18546 - "default3.handlebars->117->1551",
18545 + "default.handlebars->119->1552",
18546 + "default3.handlebars->117->1552",
18547 "sharing.handlebars->47->47"
18548 ]
18549 },
@@ -18585,8 +18585,8 @@
18585 "pl": "Zapisy pliku konfiguracyjnego",
18586 "uk": "Записи файлу конфігурації",
18587 "xloc": [
18588 - "default.handlebars->119->3275",
18589 - "default3.handlebars->117->3278"
18588 + "default.handlebars->119->3277",
18589 + "default3.handlebars->117->3280"
18590 ]
18591 },
18592 {
@@ -18616,23 +18616,23 @@
18616 "zh-cht": "確認",
18617 "xloc": [
18618 "default-mobile.handlebars->53->639",
18619 - "default-mobile.handlebars->53->976",
18620 - "default.handlebars->119->1330",
18621 - "default.handlebars->119->1339",
18622 - "default.handlebars->119->2322",
18623 - "default.handlebars->119->2785",
18624 - "default.handlebars->119->2875",
18625 - "default.handlebars->119->2942",
18626 - "default.handlebars->119->3107",
18627 - "default.handlebars->119->767",
18628 - "default3.handlebars->117->1335",
18629 - "default3.handlebars->117->1343",
18630 - "default3.handlebars->117->2331",
18631 - "default3.handlebars->117->2797",
18632 - "default3.handlebars->117->2884",
18633 - "default3.handlebars->117->2951",
18634 - "default3.handlebars->117->3110",
18635 - "default3.handlebars->117->778"

This file is too large to show in full.

views/default-mobile.handlebars
+1
@@ -6384,6 +6384,7 @@
6384 if (node.agent.id == 14) { str = node.agent.core; }
6385 x += addDetailItem("Mesh Agent", str);
6386 }
6387 + if (node.firstconnect) { x += addDetailItem("First agent connection", printDateTime(new Date(node.firstconnect))); }
6388 if ((node.conn & 1) != 0) {
6389 x += addDetailItem("Last agent connection", "Connected now");
6390 } else {
views/default.handlebars
+2
@@ -2858,6 +2858,7 @@
2858 updateDeviceDetails(getNodeFromId(message.nodeid), null, message);
2859 if ((xxdialogMode == 2) && (xxdialogTag == 'if' + message.nodeid)) {
2860 var x = '<div class=dialogText>';
2861 + if (currentNode.firstconnect) { x += addHtmlValue2("First agent connection", printDateTime(new Date(currentNode.firstconnect))); }
2862 if (currentNode.lastconnect) { x += addHtmlValue2("Last agent connection", printDateTime(new Date(currentNode.lastconnect))); }
2863 if (currentNode.lastaddr) {
2864 var splitip = currentNode.lastaddr.split(':');
@@ -12218,6 +12219,7 @@
12219 if (node.agent.id == 14) { str = node.agent.core; }
12220 x += addDetailItem("Mesh Agent", str);
12221 }
12222 + if (node.firstconnect) { x += addDetailItem("First agent connection", printDateTime(new Date(node.firstconnect))); }
12223 if ((node.conn & 1) != 0) {
12224 x += addDetailItem("Last agent connection", "Connected now");
12225 } else {
views/default3.handlebars
+2
@@ -3497,6 +3497,7 @@
3497 updateDeviceDetails(getNodeFromId(message.nodeid), null, message);
3498 if ((xxdialogMode == 2) && (xxdialogTag == 'if' + message.nodeid)) {
3499 var x = '<div class=dialogText>';
3500 + if (currentNode.firstconnect) { x += addHtmlValue2("First agent connection", printDateTime(new Date(currentNode.firstconnect))); }
3501 if (currentNode.lastconnect) { x += addHtmlValue2("Last agent connection", printDateTime(new Date(currentNode.lastconnect))); }
3502 if (currentNode.lastaddr) {
3503 var splitip = currentNode.lastaddr.split(':');
@@ -13230,6 +13231,7 @@
13231 if (node.agent.id == 14) { str = node.agent.core; }
13232 x += addDetailItem("Mesh Agent", str);
13233 }
13234 + if (node.firstconnect) { x += addDetailItem("First agent connection", printDateTime(new Date(node.firstconnect))); }
13235 if ((node.conn & 1) != 0) {
13236 x += addDetailItem("Last agent connection", "Connected now");
13237 } else {