Recovery core revert.

Ylian Saint-Hilaire committed Jun 4, 2021 at 11:48 UTC 44de38a91d2eac896804a6a8c91104973b36931d
2 files changed +2122 -2282
agents/recoverycore.js
+31 -218
@@ -6,104 +6,9 @@ var nextTunnelIndex = 1;
6 var tunnels = {};
7 var fs = require('fs');
8
9 -try
10 -{
11 - Object.defineProperty(Array.prototype, 'find', {
12 - value: function (func)
13 - {
14 - var i = 0;
15 - for(i=0;i<this.length;++i)
16 - {
17 - if(func(this[i]))
18 - {
19 - return (this[i]);
20 - }
21 - }
22 - return (null);
23 - }
24 - });
25 -}
26 -catch(x)
27 -{
28 -
29 -}
30 -
31 -function _getPotentialServiceNames()
32 -{
33 - var registry = require('win-registry');
34 - var ret = [];
35 - var K = registry.QueryKey(registry.HKEY.LocalMachine, 'SYSTEM\\CurrentControlSet\\Services');
36 - var service, s;
37 - while (K.subkeys.length > 0)
38 - {
39 - service = K.subkeys.shift();
40 - try
41 - {
42 - s = registry.QueryKey(registry.HKEY.LocalMachine, 'SYSTEM\\CurrentControlSet\\Services\\' + service, 'ImagePath');
43 - if (s.startsWith(process.execPath) || s.startsWith('"' + process.execPath + '"'))
44 - {
45 - ret.push(service);
46 - }
47 - }
48 - catch (x)
49 - {
50 - }
51 - }
52 - return (ret);
53 -}
54 -function _verifyServiceName(names)
55 -{
56 - var i;
57 - var s;
58 - var ret = null;
59 - for (i = 0; i < names.length; ++i)
60 - {
61 - try
62 - {
63 - s = require('service-manager').manager.getService(names[i]);
64 - if (s.isMe())
65 - {
66 - ret = names[i];
67 - s.close();
68 - break;
69 - }
70 - s.close();
71 - }
72 - catch (z) { }
73 - }
74 - return (ret);
75 -}
76 -
77 -function windows_getCommandLine()
78 -{
79 - var parms = [];
80 - var GM = require('_GenericMarshal');
81 - var k32 = GM.CreateNativeProxy('kernel32.dll');
82 - var s32 = GM.CreateNativeProxy('shell32.dll');
83 - k32.CreateMethod('GetCommandLineW');
84 - k32.CreateMethod('LocalFree');
85 - s32.CreateMethod('CommandLineToArgvW');
86 - var v = k32.GetCommandLineW();
87 - var i;
88 - var len = GM.CreateVariable(4);
89 - var val = s32.CommandLineToArgvW(v, len);
90 - len = len.toBuffer().readInt32LE(0);
91 - if (len > 0)
92 - {
93 - for (i = 0; i < len; ++i)
94 - {
95 - parms.push(val.Deref(i * GM.PointerSize, GM.PointerSize).Deref().Wide2UTF8);
96 - }
97 - }
98 - k32.LocalFree(val);
99 - return (parms);
100 -}
101 -
102 -if (require('MeshAgent').ARCHID == null)
103 -{
9 +if (require('MeshAgent').ARCHID == null) {
10 var id = null;
105 - switch (process.platform)
106 - {
11 + switch (process.platform) {
12 case 'win32':
13 id = require('_GenericMarshal').PointerSize == 4 ? 3 : 4;
14 break;
@@ -111,12 +16,10 @@ if (require('MeshAgent').ARCHID == null)
16 id = require('_GenericMarshal').PointerSize == 4 ? 31 : 30;
17 break;
18 case 'darwin':
114 - try
115 - {
19 + try {
20 id = require('os').arch() == 'x64' ? 16 : 29;
21 }
118 - catch (xx)
119 - {
22 + catch (xx) {
23 id = 16;
24 }
25 break;
@@ -126,22 +29,17 @@ if (require('MeshAgent').ARCHID == null)
29
30 //attachDebugger({ webport: 9994, wait: 1 }).then(function (p) { console.log('Debug on port: ' + p); });
31
129 -function sendConsoleText(msg, sessionid)
130 -{
131 - if (sessionid != null)
132 - {
32 +function sendConsoleText(msg, sessionid) {
33 + if (sessionid != null) {
34 require('MeshAgent').SendCommand({ action: 'msg', type: 'console', value: msg, sessionid: sessionid });
35 }
135 - else
136 - {
36 + else {
37 require('MeshAgent').SendCommand({ action: 'msg', type: 'console', value: msg });
38 }
39 }
40
141 -function sendAgentMessage(msg, icon)
142 -{
143 - if (sendAgentMessage.messages == null)
144 - {
41 +function sendAgentMessage(msg, icon) {
42 + if (sendAgentMessage.messages == null) {
43 sendAgentMessage.messages = {};
44 sendAgentMessage.nextid = 1;
45 }
@@ -150,11 +48,9 @@ function sendAgentMessage(msg, icon)
48 }
49
50 // Add to the server event log
153 -function MeshServerLog(msg, state)
154 -{
51 +function MeshServerLog(msg, state) {
52 if (typeof msg == 'string') { msg = { action: 'log', msg: msg }; } else { msg.action = 'log'; }
156 - if (state)
157 - {
53 + if (state) {
54 if (state.userid) { msg.userid = state.userid; }
55 if (state.username) { msg.username = state.username; }
56 if (state.sessionid) { msg.sessionid = state.sessionid; }
@@ -164,11 +60,9 @@ function MeshServerLog(msg, state)
60 }
61
62 // Add to the server event log, use internationalized events
167 -function MeshServerLogEx(id, args, msg, state)
168 -{
63 +function MeshServerLogEx(id, args, msg, state) {
64 var msg = { action: 'log', msgid: id, msgArgs: args, msg: msg };
170 - if (state)
171 - {
65 + if (state) {
66 if (state.userid) { msg.userid = state.userid; }
67 if (state.username) { msg.username = state.username; }
68 if (state.sessionid) { msg.sessionid = state.sessionid; }
@@ -452,34 +346,6 @@ function windows_execve(name, agentfilename, sessionid) {
346 var arg2 = require('_GenericMarshal').CreateVariable('/C wmic service "' + name + '" call stopservice & "' + cwd + agentfilename + '.update.exe" -b64exec ' + 'dHJ5CnsKICAgIHZhciBzZXJ2aWNlTG9jYXRpb24gPSBwcm9jZXNzLmFyZ3YucG9wKCk7CiAgICByZXF1aXJlKCdwcm9jZXNzLW1hbmFnZXInKS5lbnVtZXJhdGVQcm9jZXNzZXMoKS50aGVuKGZ1bmN0aW9uIChwcm9jKQogICAgewogICAgICAgIGZvciAodmFyIHAgaW4gcHJvYykKICAgICAgICB7CiAgICAgICAgICAgIGlmIChwcm9jW3BdLnBhdGggPT0gc2VydmljZUxvY2F0aW9uKQogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICBwcm9jZXNzLmtpbGwocHJvY1twXS5waWQpOwogICAgICAgICAgICB9CiAgICAgICAgfQogICAgICAgIHByb2Nlc3MuZXhpdCgpOwogICAgfSk7Cn0KY2F0Y2goZSkKewogICAgcHJvY2Vzcy5leGl0KCk7Cn0=' +
347 ' "' + process.execPath + '" & copy "' + cwd + agentfilename + '.update.exe" "' + process.execPath + '" & wmic service "' + name + '" call startservice & erase "' + cwd + agentfilename + '.update.exe"', { wide: true });
348
455 - if (name == null)
456 - {
457 - // We can continue with self update for Temp/Console Mode on Windows
458 - var db = null;
459 - var update = cwd + agentfilename + '.update.exe';
460 - var updatedb = cwd + agentfilename + '.update.db';
461 - var parms = windows_getCommandLine(); parms.shift();
462 -
463 - var updatesource = parms.find(function (v) { return (v.startsWith('--updateSourcePath=')); });
464 - if (updatesource == null)
465 - {
466 - parms.push('--updateSourcePath="' + cwd + agentfilename + '"');
467 - updatesource = (cwd + agentfilename).split('.exe'); updatesource.pop(); updatesource = updatesource.join('.exe');
468 - db = updatesource + '.db';
469 - updatesource = (' & move "' + updatedb + '" "' + db + '"') + (' & erase "' + updatedb + '"');
470 - }
471 - else
472 - {
473 - updatesource = updatesource.substring(19).split('.exe');
474 - updatesource.pop(); updatesource = updatesource.join('.exe');
475 - db = updatesource + '.db';
476 - updatesource = (' & move "' + update + '" "' + updatesource + '.exe" & move "' + updatedb + '" "' + db + '" & erase "' + updatedb + '"') + (' & echo move "' + update + '" "' + updatesource + '.exe" & echo move "' + updatedb + '" "' + db + '"');
477 - }
478 -
479 - var tmp = '/C echo copy "' + db + '" "' + updatedb + '" & copy "' + db + '" "' + updatedb + '"' + ' & "' + update + '" ' + parms.join(' ') + updatesource + ' & erase "' + update + '" & echo ERASE "' + update + '"';
480 - arg2 = require('_GenericMarshal').CreateVariable(tmp, { wide: true });
481 - }
482 -
349 arg1.pointerBuffer().copy(args.toBuffer());
350 arg2.pointerBuffer().copy(args.toBuffer(), require('_GenericMarshal').PointerSize);
351
@@ -497,8 +363,7 @@ function agentUpdate_Start(updateurl, updateoptions) {
363 if (updateurl.startsWith("wss://")) { updateurl = "https://" + updateurl.substring(6); }
364 }
365
500 - if (agentUpdate_Start._selfupdate != null)
501 - {
366 + if (agentUpdate_Start._selfupdate != null) {
367 // We were already called, so we will ignore this duplicate request
368 if (sessionid != null) { sendConsoleText('Self update already in progress...', sessionid); }
369 }
@@ -508,58 +373,25 @@ function agentUpdate_Start(updateurl, updateoptions) {
373 // This agent doesn't have the ability to tell us which ARCHID it is, so we don't know which agent to pull
374 sendConsoleText('Unable to initiate update, agent ARCHID is not defined', sessionid);
375 }
511 - else
512 - {
376 + else {
377 var agentfilename = process.execPath.split(process.platform == 'win32' ? '\\' : '/').pop(); // Local File Name, ie: MeshAgent.exe
378 var name = require('MeshAgent').serviceName;
515 - if (name == null) { name = process.platform == 'win32' ? 'Mesh Agent' : 'meshagent'; }
516 - if (process.platform == 'win32')
517 - {
518 - // Special Processing for Temporary/Console Mode Agents on Windows
519 - var parms = windows_getCommandLine();
520 - if (parms.findIndex(function (val) { return (val.toUpperCase() == 'RUN' || val.toUpperCase() == 'CONNECT');})>=0)
521 - {
522 - // This is a Temporary/Console Mode Agent
523 - sendConsoleText('This is a temporary/console agent, checking for conflicts with background services...');
524 -
525 - // Check to see if our binary conflicts with an installed agent
526 - var agents = _getPotentialServiceNames();
527 - if(_getPotentialServiceNames().length>0)
528 - {
529 - sendConsoleText('Self update cannot continue because the installed agent (' + agents[0] + ') conflicts with the currently running Temp/Console agent...', sessionid);
530 - return;
531 - }
532 -
533 -
534 - sendConsoleText('No conflicts detected...');
535 - name = null;
536 - }
537 - else
538 - {
539 - // Not running in Temp/Console Mode... No Op here....
540 - }
541 - }
542 - else
543 - {
544 - // Non Windows Self Update
545 - try
546 - {
547 - var s = require('service-manager').manager.getService(name);
548 - if (!s.isMe())
549 - {
550 - if (process.platform == 'win32') { s.close(); }
551 - sendConsoleText('Self Update cannot continue, this agent is not an instance of background service (' + name + ')', sessionid);
552 - return;
553 - }
379 + if (name == null) { name = (process.platform == 'win32' ? 'Mesh Agent' : 'meshagent'); } // This is an older agent that doesn't expose the service name, so use the default
380 + try {
381 + var s = require('service-manager').manager.getService(name);
382 + if (!s.isMe()) {
383 if (process.platform == 'win32') { s.close(); }
555 - }
556 - catch (zz)
557 - {
558 - sendConsoleText('Self Update Failed because this agent is not an instance of (' + name + ')', sessionid);
559 - sendAgentMessage('Self Update Failed because this agent is not an instance of (' + name + ')', 3);
384 + sendConsoleText('Self Update cannot continue, this agent is not an instance of (' + name + ')', sessionid);
385 return;
386 }
387 + if (process.platform == 'win32') { s.close(); }
388 + }
389 + catch (zz) {
390 + sendConsoleText('Self Update Failed because this agent is not an instance of (' + name + ')', sessionid);
391 + sendAgentMessage('Self Update Failed because this agent is not an instance of (' + name + ')', 3);
392 + return;
393 }
394 +
395 if ((sessionid != null) && (updateurl != null)) { sendConsoleText('Downloading update from: ' + updateurl, sessionid); }
396 var options = require('http').parseUri(updateurl != null ? updateurl : require('MeshAgent').ServerUrl);
397 options.protocol = 'https:';
@@ -1175,25 +1007,7 @@ require('MeshAgent').AddCommandHandler(function (data) {
1007 function processConsoleCommand(cmd, args, rights, sessionid) {
1008 try {
1009 var response = null;
1178 - switch (cmd)
1179 - {
1180 - default:
1181 - { // This is an unknown command, return an error message
1182 - response = 'Unknown command \"' + cmd + '\", type \"help\" for list of available commands.';
1183 - break;
1184 - }
1185 - case 'commandline':
1186 - {
1187 - if (process.platform == 'win32')
1188 - {
1189 - response = JSON.stringify(windows_getCommandLine(), null, 1);
1190 - }
1191 - else
1192 - {
1193 - response = 'Unknown command \"' + cmd + '\", type \"help\" for list of available commands.';
1194 - }
1195 - }
1196 - break;
1010 + switch (cmd) {
1011 case 'help':
1012 response = "Available commands are: agentupdate, agentupdateex, dbkeys, dbget, dbset, dbcompact, eval, netinfo, osinfo, setdebug, versions.";
1013 break;
@@ -1283,11 +1097,10 @@ function processConsoleCommand(cmd, args, rights, sessionid) {
1097 response = objToString(interfaces, 0, ' ', true);
1098 break;
1099 }
1286 - case 'name':
1287 - {
1288 - response = 'Service Name = ' + require('MeshAgent').serviceName;
1289 - }
1100 + default: { // This is an unknown command, return an error message
1101 + response = 'Unknown command \"' + cmd + '\", type \"help\" for list of available commands.';
1102 break;
1103 + }
1104 }
1105 } catch (e) { response = "Command returned an exception error: " + e; console.log(e); }
1106 if (response != null) { sendConsoleText(response, sessionid); }
translate/translate.json
+2091 -2064
@@ -17,8 +17,8 @@
17 "zh-cht": " + CIRA",
18 "ja": " + CIRA",
19 "xloc": [
20 - "default.handlebars->33->1640",
21 - "default.handlebars->33->1642"
20 + "default.handlebars->33->1642",
21 + "default.handlebars->33->1644"
22 ]
23 },
24 {
@@ -213,7 +213,7 @@
213 "zh-cht": " 可以使用密碼提示,但不建議使用。",
214 "ja": " パスワードヒントは使用できますが、推奨されません。",
215 "xloc": [
216 - "default.handlebars->33->1541"
216 + "default.handlebars->33->1543"
217 ]
218 },
219 {
@@ -233,8 +233,8 @@
233 "zh-cht": " 用戶需要先登入到該伺服器一次,然後才能將其新增到裝置群。",
234 "ja": " ユーザーは、デバイスグループに追加する前にこのサーバーに1回ログインする必要があります。",
235 "xloc": [
236 - "default.handlebars->33->1719",
237 - "default.handlebars->33->2207"
236 + "default.handlebars->33->1721",
237 + "default.handlebars->33->2210"
238 ]
239 },
240 {
@@ -547,7 +547,7 @@
547 "zh-cht": "* 8個字符,1個大寫,1個小寫,1個數字,1個非字母數字。",
548 "ja": "* 8文字、上1つ、下1つ、数字1つ、英数字以外の数字1つ。",
549 "xloc": [
550 - "default.handlebars->33->1688",
550 + "default.handlebars->33->1690",
551 "default.handlebars->33->376"
552 ]
553 },
@@ -568,7 +568,7 @@
568 "zh-cht": "*對於BSD,首先運行“ pkg install wget sudo bash ”。",
569 "ja": "* BSDの場合、最初に\\\"pkg install wget sudo bash\\\"を実行します。",
570 "xloc": [
571 - "default.handlebars->33->454"
571 + "default.handlebars->33->456"
572 ]
573 },
574 {
@@ -623,7 +623,7 @@
623 "ja": "、",
624 "xloc": [
625 "default-mobile.handlebars->11->630",
626 - "default.handlebars->33->1790"
626 + "default.handlebars->33->1792"
627 ]
628 },
629 {
@@ -688,7 +688,7 @@
688 "ja": "、MQTTはオンラインです",
689 "xloc": [
690 "default-mobile.handlebars->11->547",
691 - "default.handlebars->33->1251"
691 + "default.handlebars->33->1253"
692 ]
693 },
694 {
@@ -702,7 +702,7 @@
702 "ru": ", Нет согласия",
703 "zh-chs": ", 不同意",
704 "xloc": [
705 - "default.handlebars->33->811"
705 + "default.handlebars->33->813"
706 ]
707 },
708 {
@@ -722,7 +722,7 @@
722 "zh-cht": ",提示同意",
723 "ja": "、同意を求める",
724 "xloc": [
725 - "default.handlebars->33->812"
725 + "default.handlebars->33->814"
726 ]
727 },
728 {
@@ -751,7 +751,7 @@
751 "zh-cht": ",軟體KVM",
752 "ja": "、Soft-KVM",
753 "xloc": [
754 - "default.handlebars->33->1015",
754 + "default.handlebars->33->1017",
755 "sharing.handlebars->11->12"
756 ]
757 },
@@ -766,7 +766,7 @@
766 "ru": ", Панель инструментов",
767 "zh-chs": ", 工具栏",
768 "xloc": [
769 - "default.handlebars->33->813"
769 + "default.handlebars->33->815"
770 ]
771 },
772 {
@@ -780,7 +780,7 @@
780 "ru": ", Только просмотр",
781 "zh-chs": ", 只读",
782 "xloc": [
783 - "default.handlebars->33->810"
783 + "default.handlebars->33->812"
784 ]
785 },
786 {
@@ -803,9 +803,9 @@
803 "default-mobile.handlebars->11->366",
804 "default-mobile.handlebars->11->401",
805 "default-mobile.handlebars->11->412",
806 - "default.handlebars->33->1022",
807 - "default.handlebars->33->1085",
808 - "default.handlebars->33->1105",
806 + "default.handlebars->33->1024",
807 + "default.handlebars->33->1087",
808 + "default.handlebars->33->1107",
809 "sharing.handlebars->11->19",
810 "sharing.handlebars->11->27",
811 "sharing.handlebars->11->44",
@@ -947,7 +947,7 @@
947 "zh-cht": ",{0}觀看",
948 "ja": "、{0}視聴",
949 "xloc": [
950 - "default.handlebars->33->1016",
950 + "default.handlebars->33->1018",
951 "sharing.handlebars->11->13"
952 ]
953 },
@@ -1023,9 +1023,9 @@
1023 "xloc": [
1024 "default-mobile.handlebars->11->132",
1025 "default-mobile.handlebars->11->422",
1026 - "default.handlebars->33->1119",
1027 - "default.handlebars->33->1842",
1028 - "default.handlebars->33->2376",
1026 + "default.handlebars->33->1121",
1027 + "default.handlebars->33->1844",
1028 + "default.handlebars->33->2379",
1029 "sharing.handlebars->11->50"
1030 ]
1031 },
@@ -1101,7 +1101,7 @@
1101 "zh-cht": "1個活躍時段",
1102 "ja": "1つのアクティブなセッション",
1103 "xloc": [
1104 - "default.handlebars->33->2280"
1104 + "default.handlebars->33->2283"
1105 ]
1106 },
1107 {
@@ -1123,7 +1123,7 @@
1123 "xloc": [
1124 "default-mobile.handlebars->11->142",
1125 "default-mobile.handlebars->11->673",
1126 - "default.handlebars->33->1866",
1126 + "default.handlebars->33->1868",
1127 "download.handlebars->3->1",
1128 "download2.handlebars->5->1",
1129 "sharing.handlebars->11->96"
@@ -1146,7 +1146,7 @@
1146 "zh-cht": "1位聯絡文",
1147 "ja": "1接続",
1148 "xloc": [
1149 - "default.handlebars->33->1018",
1149 + "default.handlebars->33->1020",
1150 "sharing.handlebars->11->15"
1151 ]
1152 },
@@ -1189,7 +1189,7 @@
1189 "zh-cht": "1群",
1190 "ja": "1グループ",
1191 "xloc": [
1192 - "default.handlebars->33->2241"
1192 + "default.handlebars->33->2244"
1193 ]
1194 },
1195 {
@@ -1231,8 +1231,8 @@
1231 "zh-cht": "1分鐘",
1232 "ja": "1分",
1233 "xloc": [
1234 - "default.handlebars->33->1507",
1235 - "default.handlebars->33->878"
1234 + "default.handlebars->33->1509",
1235 + "default.handlebars->33->880"
1236 ]
1237 },
1238 {
@@ -1294,7 +1294,7 @@
1294 "zh-cht": "有1個用戶沒有顯示,請使用搜尋框搜尋用戶...",
1295 "ja": "さらに1人のユーザーが表示されていません。検索ボックスを使用してユーザーを検索してください...",
1296 "xloc": [
1297 - "default.handlebars->33->2031"
1297 + "default.handlebars->33->2034"
1298 ]
1299 },
1300 {
@@ -1314,7 +1314,7 @@
1314 "zh-cht": "1個節點",
1315 "ja": "1ノード",
1316 "xloc": [
1317 - "default.handlebars->33->481"
1317 + "default.handlebars->33->483"
1318 ]
1319 },
1320 {
@@ -1347,7 +1347,7 @@
1347 "zh-chs": "1秒",
1348 "xloc": [
1349 "default-mobile.handlebars->11->318",
1350 - "default.handlebars->33->906"
1350 + "default.handlebars->33->908"
1351 ]
1352 },
1353 {
@@ -1393,7 +1393,7 @@
1393 "default-mobile.handlebars->11->204",
1394 "default-mobile.handlebars->11->207",
1395 "default-mobile.handlebars->11->210",
1396 - "default.handlebars->33->2035",
1396 + "default.handlebars->33->2038",
1397 "default.handlebars->33->309",
1398 "default.handlebars->33->312",
1399 "default.handlebars->33->315",
@@ -1525,8 +1525,8 @@
1525 "zh-cht": "10分鐘",
1526 "ja": "10分",
1527 "xloc": [
1528 - "default.handlebars->33->1509",
1529 - "default.handlebars->33->880"
1528 + "default.handlebars->33->1511",
1529 + "default.handlebars->33->882"
1530 ]
1531 },
1532 {
@@ -1541,7 +1541,7 @@
1541 "zh-chs": "10 秒",
1542 "xloc": [
1543 "default-mobile.handlebars->11->320",
1544 - "default.handlebars->33->908"
1544 + "default.handlebars->33->910"
1545 ]
1546 },
1547 {
@@ -1624,8 +1624,8 @@
1624 "zh-cht": "12小時",
1625 "ja": "12時間",
1626 "xloc": [
1627 - "default.handlebars->33->1517",
1628 - "default.handlebars->33->888"
1627 + "default.handlebars->33->1519",
1628 + "default.handlebars->33->890"
1629 ]
1630 },
1631 {
@@ -1676,8 +1676,8 @@
1676 "zh-cht": "15分鐘",
1677 "ja": "15分",
1678 "xloc": [
1679 - "default.handlebars->33->1510",
1680 - "default.handlebars->33->881"
1679 + "default.handlebars->33->1512",
1680 + "default.handlebars->33->883"
1681 ]
1682 },
1683 {
@@ -1697,8 +1697,8 @@
1697 "zh-cht": "16小時",
1698 "ja": "16時間",
1699 "xloc": [
1700 - "default.handlebars->33->1518",
1701 - "default.handlebars->33->889"
1700 + "default.handlebars->33->1520",
1701 + "default.handlebars->33->891"
1702 ]
1703 },
1704 {
@@ -1718,8 +1718,8 @@
1718 "zh-cht": "2天",
1719 "ja": "2日",
1720 "xloc": [
1721 - "default.handlebars->33->1520",
1722 - "default.handlebars->33->891"
1721 + "default.handlebars->33->1522",
1722 + "default.handlebars->33->893"
1723 ]
1724 },
1725 {
@@ -1739,8 +1739,8 @@
1739 "zh-cht": "2小時",
1740 "ja": "2時間",
1741 "xloc": [
1742 - "default.handlebars->33->1514",
1743 - "default.handlebars->33->885"
1742 + "default.handlebars->33->1516",
1743 + "default.handlebars->33->887"
1744 ]
1745 },
1746 {
@@ -1844,8 +1844,8 @@
1844 "zh-cht": "24小時",
1845 "ja": "24時間",
1846 "xloc": [
1847 - "default.handlebars->33->1519",
1848 - "default.handlebars->33->890"
1847 + "default.handlebars->33->1521",
1848 + "default.handlebars->33->892"
1849 ]
1850 },
1851 {
@@ -1907,7 +1907,7 @@
1907 "zh-cht": "2FA備份代碼已清除",
1908 "ja": "2FAバックアップコードがクリアされました",
1909 "xloc": [
1910 - "default.handlebars->33->1977"
1910 + "default.handlebars->33->1979"
1911 ]
1912 },
1913 {
@@ -1927,8 +1927,8 @@
1927 "zh-cht": "啟用第二因素身份驗證",
1928 "ja": "二要素認証が有効",
1929 "xloc": [
1930 - "default.handlebars->33->2048",
1931 - "default.handlebars->33->2263"
1930 + "default.handlebars->33->2051",
1931 + "default.handlebars->33->2266"
1932 ]
1933 },
1934 {
@@ -2047,8 +2047,8 @@
2047 "zh-cht": "30分鐘",
2048 "ja": "30分",
2049 "xloc": [
2050 - "default.handlebars->33->1511",
2051 - "default.handlebars->33->882"
2050 + "default.handlebars->33->1513",
2051 + "default.handlebars->33->884"
2052 ]
2053 },
2054 {
@@ -2068,8 +2068,8 @@
2068 "zh-cht": "MeshAgent的32位版本",
2069 "ja": "MeshAgentの32ビットバージョン",
2070 "xloc": [
2071 - "default.handlebars->33->444",
2072 - "default.handlebars->33->467"
2071 + "default.handlebars->33->446",
2072 + "default.handlebars->33->469"
2073 ]
2074 },
2075 {
@@ -2111,8 +2111,8 @@
2111 "zh-cht": "4天",
2112 "ja": "4日",
2113 "xloc": [
2114 - "default.handlebars->33->1521",
2115 - "default.handlebars->33->892"
2114 + "default.handlebars->33->1523",
2115 + "default.handlebars->33->894"
2116 ]
2117 },
2118 {
@@ -2132,8 +2132,8 @@
2132 "zh-cht": "4個小時",
2133 "ja": "4時間",
2134 "xloc": [
2135 - "default.handlebars->33->1515",
2136 - "default.handlebars->33->886"
2135 + "default.handlebars->33->1517",
2136 + "default.handlebars->33->888"
2137 ]
2138 },
2139 {
@@ -2216,8 +2216,8 @@
2216 "zh-cht": "45分鐘",
2217 "ja": "45分",
2218 "xloc": [
2219 - "default.handlebars->33->1512",
2220 - "default.handlebars->33->883"
2219 + "default.handlebars->33->1514",
2220 + "default.handlebars->33->885"
2221 ]
2222 },
2223 {
@@ -2257,8 +2257,8 @@
2257 "zh-cht": "5分鐘",
2258 "ja": "5分",
2259 "xloc": [
2260 - "default.handlebars->33->1508",
2261 - "default.handlebars->33->879"
2260 + "default.handlebars->33->1510",
2261 + "default.handlebars->33->881"
2262 ]
2263 },
2264 {
@@ -2273,7 +2273,7 @@
2273 "zh-chs": "5秒",
2274 "xloc": [
2275 "default-mobile.handlebars->11->319",
2276 - "default.handlebars->33->907"
2276 + "default.handlebars->33->909"
2277 ]
2278 },
2279 {
@@ -2399,8 +2399,8 @@
2399 "zh-cht": "60分鐘",
2400 "ja": "60分",
2401 "xloc": [
2402 - "default.handlebars->33->1513",
2403 - "default.handlebars->33->884"
2402 + "default.handlebars->33->1515",
2403 + "default.handlebars->33->886"
2404 ]
2405 },
2406 {
@@ -2442,7 +2442,7 @@
2442 "zh-cht": "64位版本的macOS Mesh Agent",
2443 "ja": "macOS Mesh Agentの64ビットバージョン",
2444 "xloc": [
2445 - "default.handlebars->33->458"
2445 + "default.handlebars->33->460"
2446 ]
2447 },
2448 {
@@ -2462,8 +2462,8 @@
2462 "zh-cht": "MeshAgent的64位版本",
2463 "ja": "MeshAgentの64ビットバージョン",
2464 "xloc": [
2465 - "default.handlebars->33->448",
2466 - "default.handlebars->33->470"
2465 + "default.handlebars->33->450",
2466 + "default.handlebars->33->472"
2467 ]
2468 },
2469 {
@@ -2520,7 +2520,7 @@
2520 "zh-cht": "7天電源狀態",
2521 "ja": "7日間の電源状態",
2522 "xloc": [
2523 - "default.handlebars->33->941"
2523 + "default.handlebars->33->943"
2524 ]
2525 },
2526 {
@@ -2583,10 +2583,10 @@
2583 "zh-cht": "8小時",
2584 "ja": "8時間",
2585 "xloc": [
2586 - "default.handlebars->33->1516",
2586 + "default.handlebars->33->1518",
2587 "default.handlebars->33->400",
2588 "default.handlebars->33->414",
2589 - "default.handlebars->33->887"
2589 + "default.handlebars->33->889"
2590 ]
2591 },
2592 {
@@ -2799,8 +2799,8 @@
2799 "ja": "ACM",
2800 "xloc": [
2801 "default-mobile.handlebars->11->274",
2802 - "default.handlebars->33->1656",
2803 - "default.handlebars->33->675"
2802 + "default.handlebars->33->1658",
2803 + "default.handlebars->33->677"
2804 ]
2805 },
2806 {
@@ -2855,7 +2855,7 @@
2855 "ja": "AMT",
2856 "xloc": [
2857 "default.handlebars->33->296",
2858 - "default.handlebars->33->509"
2858 + "default.handlebars->33->511"
2859 ]
2860 },
2861 {
@@ -2869,7 +2869,7 @@
2869 "ru": "AMT-OS",
2870 "zh-chs": "操作系统",
2871 "xloc": [
2872 - "default.handlebars->33->2454"
2872 + "default.handlebars->33->2457"
2873 ]
2874 },
2875 {
@@ -2990,8 +2990,8 @@
2990 "xloc": [
2991 "default-mobile.handlebars->11->459",
2992 "default-mobile.handlebars->11->461",
2993 - "default.handlebars->33->694",
2994 - "default.handlebars->33->696"
2993 + "default.handlebars->33->696",
2994 + "default.handlebars->33->698"
2995 ]
2996 },
2997 {
@@ -3012,7 +3012,7 @@
3012 "ja": "アクセスが拒否されました",
3013 "xloc": [
3014 "default-mobile.handlebars->11->548",
3015 - "default.handlebars->33->1252"
3015 + "default.handlebars->33->1254"
3016 ]
3017 },
3018 {
@@ -3068,7 +3068,7 @@
3068 "zh-cht": "存取伺服器檔案",
3069 "ja": "サーバーファイルへのアクセス",
3070 "xloc": [
3071 - "default.handlebars->33->2213"
3071 + "default.handlebars->33->2216"
3072 ]
3073 },
3074 {
@@ -3157,11 +3157,11 @@
3157 "default-mobile.handlebars->11->243",
3158 "default-mobile.handlebars->11->245",
3159 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountSecurity->1->0",
3160 - "default.handlebars->33->1550",
3160 "default.handlebars->33->1552",
3162 - "default.handlebars->33->2505",
3163 - "default.handlebars->33->637",
3164 - "default.handlebars->33->639"
3161 + "default.handlebars->33->1554",
3162 + "default.handlebars->33->2508",
3163 + "default.handlebars->33->639",
3164 + "default.handlebars->33->641"
3165 ]
3166 },
3167 {
@@ -3176,7 +3176,7 @@
3176 "zh-chs": "帐号设定",
3177 "xloc": [
3178 "default-mobile.handlebars->11->641",
3179 - "default.handlebars->33->2384"
3179 + "default.handlebars->33->2387"
3180 ]
3181 },
3182 {
@@ -3237,7 +3237,7 @@
3237 "zh-cht": "帳戶已更改:{0}",
3238 "ja": "アカウントが変更されました:{0}",
3239 "xloc": [
3240 - "default.handlebars->33->1950"
3240 + "default.handlebars->33->1952"
3241 ]
3242 },
3243 {
@@ -3257,7 +3257,7 @@
3257 "zh-cht": "創建帳戶,電子郵件為{0}",
3258 "ja": "アカウントを作成しました、メールは{0}です",
3259 "xloc": [
3260 - "default.handlebars->33->1949"
3260 + "default.handlebars->33->1951"
3261 ]
3262 },
3263 {
@@ -3277,7 +3277,7 @@
3277 "zh-cht": "帳戶已創建,用戶名是{0}",
3278 "ja": "アカウントが作成され、ユーザー名は{0}です",
3279 "xloc": [
3280 - "default.handlebars->33->1948"
3280 + "default.handlebars->33->1950"
3281 ]
3282 },
3283 {
@@ -3297,8 +3297,8 @@
3297 "zh-cht": "帳戶已被鎖定",
3298 "ja": "アカウントがロックされています",
3299 "xloc": [
3300 - "default.handlebars->33->2050",
3301 - "default.handlebars->33->2210"
3300 + "default.handlebars->33->2053",
3301 + "default.handlebars->33->2213"
3302 ]
3303 },
3304 {
@@ -3319,7 +3319,7 @@
3319 "ja": "アカウントの上限に達しました。",
3320 "xloc": [
3321 "default-mobile.handlebars->11->653",
3322 - "default.handlebars->33->2396",
3322 + "default.handlebars->33->2399",
3323 "login-mobile.handlebars->5->6",
3324 "login.handlebars->5->6",
3325 "login2.handlebars->7->8"
@@ -3364,7 +3364,7 @@
3364 "zh-cht": "帳號登錄",
3365 "ja": "アカウントログイン",
3366 "xloc": [
3367 - "default.handlebars->33->1885"
3367 + "default.handlebars->33->1887"
3368 ]
3369 },
3370 {
@@ -3378,7 +3378,7 @@
3378 "ru": "Вход в аккаунт с {0}, {1}, {2}",
3379 "zh-chs": "来自 {0}、{1}、{2} 的帐户登录",
3380 "xloc": [
3381 - "default.handlebars->33->1991"
3381 + "default.handlebars->33->1993"
3382 ]
3383 },
3384 {
@@ -3398,7 +3398,7 @@
3398 "zh-cht": "帳戶登出",
3399 "ja": "アカウントのログアウト",
3400 "xloc": [
3401 - "default.handlebars->33->1886"
3401 + "default.handlebars->33->1888"
3402 ]
3403 },
3404 {
@@ -3440,7 +3440,7 @@
3440 "zh-cht": "帳戶密碼已更改:{0}",
3441 "ja": "アカウントのパスワードが変更されました:{0}",
3442 "xloc": [
3443 - "default.handlebars->33->1958"
3443 + "default.handlebars->33->1960"
3444 ]
3445 },
3446 {
@@ -3460,7 +3460,7 @@
3460 "zh-cht": "帳戶已刪除",
3461 "ja": "アカウントが削除されました",
3462 "xloc": [
3463 - "default.handlebars->33->1947"
3463 + "default.handlebars->33->1949"
3464 ]
3465 },
3466 {
@@ -3501,7 +3501,7 @@
3501 "ja": "アクション",
3502 "xloc": [
3503 "default-mobile.handlebars->11->554",
3504 - "default.handlebars->33->1258",
3504 + "default.handlebars->33->1260",
3505 "default.handlebars->container->column_l->p42->p42tbl->1->0->8"
3506 ]
3507 },
@@ -3522,8 +3522,8 @@
3522 "zh-cht": "動作檔案",
3523 "ja": "アクションファイル",
3524 "xloc": [
3525 - "default.handlebars->33->987",
3526 - "default.handlebars->33->989"
3525 + "default.handlebars->33->989",
3526 + "default.handlebars->33->991"
3527 ]
3528 },
3529 {
@@ -3547,7 +3547,7 @@
3547 "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea4->1->3",
3548 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->1",
3549 "default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea4->1->3",
3550 - "default.handlebars->33->741",
3550 + "default.handlebars->33->743",
3551 "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1",
3552 "default.handlebars->container->column_l->p12->termTable->1->1->0->1->1",
3553 "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->1"
@@ -3630,7 +3630,7 @@
3630 "zh-cht": "如果ACM失敗,則激活到CCM",
3631 "ja": "ACMが失敗した場合は、CCMをアクティブにします",
3632 "xloc": [
3633 - "default.handlebars->33->1679"
3633 + "default.handlebars->33->1681"
3634 ]
3635 },
3636 {
@@ -3653,9 +3653,9 @@
3653 "default-mobile.handlebars->11->269",
3654 "default-mobile.handlebars->11->271",
3655 "default-mobile.handlebars->11->510",
3656 - "default.handlebars->33->1213",
3657 - "default.handlebars->33->668",
3658 - "default.handlebars->33->670"
3656 + "default.handlebars->33->1215",
3657 + "default.handlebars->33->670",
3658 + "default.handlebars->33->672"
3659 ]
3660 },
3661 {
@@ -3695,7 +3695,7 @@
3695 "zh-cht": "主動設備共享",
3696 "ja": "アクティブデバイス共有",
3697 "xloc": [
3698 - "default.handlebars->33->799"
3698 + "default.handlebars->33->801"
3699 ]
3700 },
3701 {
@@ -3709,7 +3709,7 @@
3709 "ru": "Активные токены входа",
3710 "zh-chs": "活动登录令牌",
3711 "xloc": [
3712 - "default.handlebars->33->1571"
3712 + "default.handlebars->33->1573"
3713 ]
3714 },
3715 {
@@ -3741,7 +3741,7 @@
3741 "zh-chs": "添加",
3742 "xloc": [
3743 "default-mobile.handlebars->11->393",
3744 - "default.handlebars->33->1053"
3744 + "default.handlebars->33->1055"
3745 ]
3746 },
3747 {
@@ -3779,7 +3779,7 @@
3779 "zh-cht": "新增代理",
3780 "ja": "エージェントを追加",
3781 "xloc": [
3782 - "default.handlebars->33->1652",
3782 + "default.handlebars->33->1654",
3783 "default.handlebars->33->342"
3784 ]
3785 },
@@ -3817,8 +3817,8 @@
3817 "zh-cht": "新增裝置",
3818 "ja": "デバイスを追加",
3819 "xloc": [
3820 - "default.handlebars->33->2187",
3821 - "default.handlebars->33->2317",
3820 + "default.handlebars->33->2190",
3821 + "default.handlebars->33->2320",
3822 "default.handlebars->33->346"
3823 ]
3824 },
@@ -3839,7 +3839,7 @@
3839 "zh-cht": "新增裝置日誌",
3840 "ja": "デバイスイベントを追加",
3841 "xloc": [
3842 - "default.handlebars->33->855"
3842 + "default.handlebars->33->857"
3843 ]
3844 },
3845 {
@@ -3859,9 +3859,9 @@
3859 "zh-cht": "新增裝置群",
3860 "ja": "デバイスグループを追加",
3861 "xloc": [
3862 - "default.handlebars->33->1754",
3863 - "default.handlebars->33->2181",
3864 - "default.handlebars->33->2305",
3862 + "default.handlebars->33->1756",
3863 + "default.handlebars->33->2184",
3864 + "default.handlebars->33->2308",
3865 "default.handlebars->33->276"
3866 ]
3867 },
@@ -3882,7 +3882,7 @@
3882 "zh-cht": "新增裝置群權限",
3883 "ja": "デバイスグループ権限を追加",
3884 "xloc": [
3885 - "default.handlebars->33->1751"
3885 + "default.handlebars->33->1753"
3886 ]
3887 },
3888 {
@@ -3902,8 +3902,8 @@
3902 "zh-cht": "新增裝置權限",
3903 "ja": "デバイス権限を追加",
3904 "xloc": [
3905 - "default.handlebars->33->1756",
3906 - "default.handlebars->33->1758"
3905 + "default.handlebars->33->1758",
3906 + "default.handlebars->33->1760"
3907 ]
3908 },
3909 {
@@ -4009,7 +4009,7 @@
4009 "zh-cht": "新增成員身份",
4010 "ja": "メンバーシップを追加",
4011 "xloc": [
4012 - "default.handlebars->33->2337"
4012 + "default.handlebars->33->2340"
4013 ]
4014 },
4015 {
@@ -4029,7 +4029,7 @@
4029 "zh-cht": "新增 Mesh Agent",
4030 "ja": "メッシュエージェントを追加",
4031 "xloc": [
4032 - "default.handlebars->33->480"
4032 + "default.handlebars->33->482"
4033 ]
4034 },
4035 {
@@ -4058,8 +4058,8 @@
4058 "zh-cht": "新增安全密鑰",
4059 "ja": "セキュリティキーを追加",
4060 "xloc": [
4061 - "default.handlebars->33->1297",
4062 - "default.handlebars->33->1298",
4061 + "default.handlebars->33->1299",
4062 + "default.handlebars->33->1300",
4063 "default.handlebars->33->167",
4064 "default.handlebars->33->169",
4065 "default.handlebars->33->172",
@@ -4084,7 +4084,7 @@
4084 "ja": "ユーザーを追加する",
4085 "xloc": [
4086 "default-mobile.handlebars->11->570",
4087 - "default.handlebars->33->791"
4087 + "default.handlebars->33->793"
4088 ]
4089 },
4090 {
@@ -4104,7 +4104,7 @@
4104 "zh-cht": "新增用戶裝置權限",
4105 "ja": "ユーザーデバイスの権限を追加する",
4106 "xloc": [
4107 - "default.handlebars->33->1761"
4107 + "default.handlebars->33->1763"
4108 ]
4109 },
4110 {
@@ -4124,10 +4124,10 @@
4124 "zh-cht": "新增用戶群",
4125 "ja": "ユーザーグループを追加",
4126 "xloc": [
4127 - "default.handlebars->33->1648",
4128 - "default.handlebars->33->1753",
4129 - "default.handlebars->33->2311",
4130 - "default.handlebars->33->792"
4127 + "default.handlebars->33->1650",
4128 + "default.handlebars->33->1755",
4129 + "default.handlebars->33->2314",
4130 + "default.handlebars->33->794"
4131 ]
4132 },
4133 {
@@ -4147,7 +4147,7 @@
4147 "zh-cht": "新增用戶群裝置權限",
4148 "ja": "ユーザーグループデバイスのアクセス許可を追加する",
4149 "xloc": [
4150 - "default.handlebars->33->1763"
4150 + "default.handlebars->33->1765"
4151 ]
4152 },
4153 {
@@ -4204,8 +4204,8 @@
4204 "zh-cht": "新增用戶",
4205 "ja": "ユーザーを追加",
4206 "xloc": [
4207 - "default.handlebars->33->1647",
4208 - "default.handlebars->33->2176"
4207 + "default.handlebars->33->1649",
4208 + "default.handlebars->33->2179"
4209 ]
4210 },
4211 {
@@ -4225,7 +4225,7 @@
4225 "zh-cht": "將用戶新增到裝置群",
4226 "ja": "ユーザーをデバイスグループに追加する",
4227 "xloc": [
4228 - "default.handlebars->33->1750"
4228 + "default.handlebars->33->1752"
4229 ]
4230 },
4231 {
@@ -4245,7 +4245,7 @@
4245 "zh-cht": "將用戶新增到用戶群",
4246 "ja": "ユーザーをユーザーグループに追加",
4247 "xloc": [
4248 - "default.handlebars->33->2209"
4248 + "default.handlebars->33->2212"
4249 ]
4250 },
4251 {
@@ -4376,7 +4376,7 @@
4376 "zh-cht": "通過安裝Mesh Agent將新電腦新增到該裝置群。",
4377 "ja": "メッシュエージェントをインストールして、このデバイスグループに新しいコンピューターを追加します。",
4378 "xloc": [
4379 - "default.handlebars->33->1651",
4379 + "default.handlebars->33->1653",
4380 "default.handlebars->33->341"
4381 ]
4382 },
@@ -4425,7 +4425,7 @@
4425 "zh-cht": "新增標籤",
4426 "ja": "タグを追加する",
4427 "xloc": [
4428 - "default.handlebars->33->549"
4428 + "default.handlebars->33->551"
4429 ]
4430 },
4431 {
@@ -4465,7 +4465,7 @@
4465 "zh-cht": "添加了身份驗證應用程序",
4466 "ja": "認証アプリケーションを追加",
4467 "xloc": [
4468 - "default.handlebars->33->1974"
4468 + "default.handlebars->33->1976"
4469 ]
4470 },
4471 {
@@ -4485,7 +4485,7 @@
4485 "zh-cht": "已將設備共享{0}從{1}添加到{2}",
4486 "ja": "デバイス共有{0}を{1}から{2}に追加しました",
4487 "xloc": [
4488 - "default.handlebars->33->1985"
4488 + "default.handlebars->33->1987"
4489 ]
4490 },
4491 {
@@ -4505,8 +4505,8 @@
4505 "zh-cht": "已將設備{0}添加到設備組{1}",
4506 "ja": "デバイス{0}をデバイスグループ{1}に追加しました",
4507 "xloc": [
4508 - "default.handlebars->33->1941",
4509 - "default.handlebars->33->1968"
4508 + "default.handlebars->33->1943",
4509 + "default.handlebars->33->1970"
4510 ]
4511 },
4512 {
@@ -4520,7 +4520,7 @@
4520 "ru": "Добавлен токен входа",
4521 "zh-chs": "添加登录令牌",
4522 "xloc": [
4523 - "default.handlebars->33->1999"
4523 + "default.handlebars->33->2001"
4524 ]
4525 },
4526 {
@@ -4533,7 +4533,7 @@
4533 "nl": "Verificatie apparaat voor pushmeldingen toegevoegd",
4534 "zh-chs": "新增推送通知认证装置",
4535 "xloc": [
4536 - "default.handlebars->33->1997"
4536 + "default.handlebars->33->1999"
4537 ]
4538 },
4539 {
@@ -4553,7 +4553,7 @@
4553 "zh-cht": "添加了安全密鑰",
4554 "ja": "追加されたセキュリティキー",
4555 "xloc": [
4556 - "default.handlebars->33->1979"
4556 + "default.handlebars->33->1981"
4557 ]
4558 },
4559 {
@@ -4573,7 +4573,7 @@
4573 "zh-cht": "已將用戶組{0}添加到設備組{1}",
4574 "ja": "ユーザーグループ{0}をデバイスグループ{1}に追加しました",
4575 "xloc": [
4576 - "default.handlebars->33->1952"
4576 + "default.handlebars->33->1954"
4577 ]
4578 },
4579 {
@@ -4593,8 +4593,8 @@
4593 "zh-cht": "已將用戶{0}添加到用戶組{1}",
4594 "ja": "ユーザー{0}をユーザーグループ{1}に追加しました",
4595 "xloc": [
4596 - "default.handlebars->33->1955",
4597 - "default.handlebars->33->1964"
4596 + "default.handlebars->33->1957",
4597 + "default.handlebars->33->1966"
4598 ]
4599 },
4600 {
@@ -4655,7 +4655,7 @@
4655 "ja": "管理制御モード(ACM)",
4656 "xloc": [
4657 "default-mobile.handlebars->11->512",
4658 - "default.handlebars->33->1215"
4658 + "default.handlebars->33->1217"
4659 ]
4660 },
4661 {
@@ -4676,7 +4676,7 @@
4676 "ja": "管理者の資格情報",
4677 "xloc": [
4678 "default-mobile.handlebars->11->518",
4679 - "default.handlebars->33->1221"
4679 + "default.handlebars->33->1223"
4680 ]
4681 },
4682 {
@@ -4717,7 +4717,7 @@
4717 "zh-cht": "管理領域",
4718 "ja": "管理レルム",
4719 "xloc": [
4720 - "default.handlebars->33->2245"
4720 + "default.handlebars->33->2248"
4721 ]
4722 },
4723 {
@@ -4758,7 +4758,7 @@
4758 "zh-cht": "管理領域",
4759 "ja": "管理レルム",
4760 "xloc": [
4761 - "default.handlebars->33->2113"
4761 + "default.handlebars->33->2116"
4762 ]
4763 },
4764 {
@@ -4778,7 +4778,7 @@
4778 "zh-cht": "管理員",
4779 "ja": "管理者",
4780 "xloc": [
4781 - "default.handlebars->33->2042"
4781 + "default.handlebars->33->2045"
4782 ]
4783 },
4784 {
@@ -4798,7 +4798,7 @@
4798 "zh-cht": "南非文",
4799 "ja": "アフリカーンス語",
4800 "xloc": [
4801 - "default.handlebars->33->1300"
4801 + "default.handlebars->33->1302"
4802 ]
4803 },
4804 {
@@ -4822,11 +4822,11 @@
4822 "default-mobile.handlebars->11->235",
4823 "default-mobile.handlebars->11->288",
4824 "default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1",
4825 - "default.handlebars->33->1817",
4826 - "default.handlebars->33->1830",
4827 - "default.handlebars->33->2452",
4825 + "default.handlebars->33->1819",
4826 + "default.handlebars->33->1832",
4827 + "default.handlebars->33->2455",
4828 "default.handlebars->33->292",
4829 - "default.handlebars->33->505",
4829 + "default.handlebars->33->507",
4830 "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1"
4831 ]
4832 },
@@ -4847,8 +4847,8 @@
4847 "zh-cht": "代理+Intel&reg; AMT",
4848 "ja": "エージェント+ Intel&reg; AMT",
4849 "xloc": [
4850 - "default.handlebars->33->1819",
4851 - "default.handlebars->33->1832"
4850 + "default.handlebars->33->1821",
4851 + "default.handlebars->33->1834"
4852 ]
4853 },
4854 {
@@ -4890,7 +4890,7 @@
4890 "ja": "エージェントコンソール",
4891 "xloc": [
4892 "default-mobile.handlebars->11->612",
4893 - "default.handlebars->33->1771"
4893 + "default.handlebars->33->1773"
4894 ]
4895 },
4896 {
@@ -4910,7 +4910,7 @@
4910 "zh-cht": "代理錯誤計數器",
4911 "ja": "エージェントエラーカウンター",
4912 "xloc": [
4913 - "default.handlebars->33->2421"
4913 + "default.handlebars->33->2424"
4914 ]
4915 },
4916 {
@@ -5036,7 +5036,7 @@
5036 "zh-cht": "代理時段",
5037 "ja": "エージェントセッション",
5038 "xloc": [
5039 - "default.handlebars->33->2437"
5039 + "default.handlebars->33->2440"
5040 ]
5041 },
5042 {
@@ -5066,7 +5066,7 @@
5066 "ja": "エージェントタグ",
5067 "xloc": [
5068 "default-mobile.handlebars->11->287",
5069 - "default.handlebars->33->691"
5069 + "default.handlebars->33->693"
5070 ]
5071 },
5072 {
@@ -5086,7 +5086,7 @@
5086 "zh-cht": "代理類型",
5087 "ja": "エージェントの種類",
5088 "xloc": [
5089 - "default.handlebars->33->1828",
5089 + "default.handlebars->33->1830",
5090 "default.handlebars->container->column_l->p21->p21main->1->1->meshOsChartDiv->1"
5091 ]
5092 },
@@ -5107,7 +5107,7 @@
5107 "zh-cht": "代理關閉了與{0}%代理到服務器壓縮的會話。已發送:{1},已壓縮:{2}",
5108 "ja": "エージェントが{0}%のエージェントからサーバーへの圧縮でセッションを閉じました。送信済み:{1}、圧縮済み:{2}",
5109 "xloc": [
5110 - "default.handlebars->33->1938"
5110 + "default.handlebars->33->1940"
5111 ]
5112 },
5113 {
@@ -5128,8 +5128,8 @@
5128 "ja": "接続されたエージェント",
5129 "xloc": [
5130 "default.handlebars->33->181",
5131 - "default.handlebars->33->782",
5132 - "default.handlebars->33->783"
5131 + "default.handlebars->33->784",
5132 + "default.handlebars->33->785"
5133 ]
5134 },
5135 {
@@ -5197,7 +5197,7 @@
5197 "ja": "エージェントはオフラインです",
5198 "xloc": [
5199 "default-mobile.handlebars->11->546",
5200 - "default.handlebars->33->1250"
5200 + "default.handlebars->33->1252"
5201 ]
5202 },
5203 {
@@ -5218,7 +5218,7 @@
5218 "ja": "エージェントはオンラインです",
5219 "xloc": [
5220 "default-mobile.handlebars->11->545",
5221 - "default.handlebars->33->1249"
5221 + "default.handlebars->33->1251"
5222 ]
5223 },
5224 {
@@ -5266,7 +5266,7 @@
5266 "ja": "エージェントは、特権が削減されたリモートデバイスで実行されています。",
5267 "xloc": [
5268 "default.handlebars->33->179",
5269 - "default.handlebars->33->780"
5269 + "default.handlebars->33->782"
5270 ]
5271 },
5272 {
@@ -5322,7 +5322,7 @@
5322 "zh-cht": "代理",
5323 "ja": "エージェント",
5324 "xloc": [
5325 - "default.handlebars->33->2465"
5325 + "default.handlebars->33->2468"
5326 ]
5327 },
5328 {
@@ -5342,7 +5342,7 @@
5342 "zh-cht": "阿爾巴尼亞文",
5343 "ja": "アルバニア語",
5344 "xloc": [
5345 - "default.handlebars->33->1301"
5345 + "default.handlebars->33->1303"
5346 ]
5347 },
5348 {
@@ -5385,7 +5385,7 @@
5385 "zh-cht": "全部可用",
5386 "ja": "すべて利用可能",
5387 "xloc": [
5388 - "default.handlebars->33->2005"
5388 + "default.handlebars->33->2008"
5389 ]
5390 },
5391 {
@@ -5405,7 +5405,7 @@
5405 "zh-cht": "所有顯示",
5406 "ja": "すべてのディスプレイ",
5407 "xloc": [
5408 - "default.handlebars->33->1078"
5408 + "default.handlebars->33->1080"
5409 ]
5410 },
5411 {
@@ -5425,7 +5425,7 @@
5425 "zh-cht": "所有事件",
5426 "ja": "すべてのイベント",
5427 "xloc": [
5428 - "default.handlebars->33->2003"
5428 + "default.handlebars->33->2006"
5429 ]
5430 },
5431 {
@@ -5445,9 +5445,9 @@
5445 "zh-cht": "全部聚焦",
5446 "ja": "オールフォーカス",
5447 "xloc": [
5448 - "default.handlebars->33->1023",
5448 "default.handlebars->33->1025",
5450 - "default.handlebars->33->1026"
5449 + "default.handlebars->33->1027",
5450 + "default.handlebars->33->1028"
5451 ]
5452 },
5453 {
@@ -5476,8 +5476,8 @@
5476 "zh-cht": "允許用戶管理此裝置群和該群中的裝置。",
5477 "ja": "ユーザーがこのデバイスグループとこのグループ内のデバイスを管理できるようにします。",
5478 "xloc": [
5479 - "default.handlebars->33->1717",
5480 - "default.handlebars->33->2206"
5479 + "default.handlebars->33->1719",
5480 + "default.handlebars->33->2209"
5481 ]
5482 },
5483 {
@@ -5497,7 +5497,7 @@
5497 "zh-cht": "允許用戶管理此裝置。",
5498 "ja": "ユーザーにこのデバイスの管理を許可します。",
5499 "xloc": [
5500 - "default.handlebars->33->1718"
5500 + "default.handlebars->33->1720"
5501 ]
5502 },
5503 {
@@ -5548,8 +5548,8 @@
5548 "xloc": [
5549 "default-mobile.handlebars->11->386",
5550 "default-mobile.handlebars->11->390",
5551 - "default.handlebars->33->1046",
5552 - "default.handlebars->33->1050"
5551 + "default.handlebars->33->1048",
5552 + "default.handlebars->33->1052"
5553 ]
5554 },
5555 {
@@ -5611,7 +5611,7 @@
5611 "zh-cht": "備用(F10 = ESC + 0)",
5612 "ja": "代替(F10 = ESC + 0)",
5613 "xloc": [
5614 - "default.handlebars->33->1098",
5614 + "default.handlebars->33->1100",
5615 "sharing.handlebars->11->37"
5616 ]
5617 },
@@ -5663,10 +5663,10 @@
5663 "zh-cht": "一直通知",
5664 "ja": "常に通知する",
5665 "xloc": [
5666 - "default.handlebars->33->1627",
5667 - "default.handlebars->33->2167",
5668 - "default.handlebars->33->2254",
5669 - "default.handlebars->33->719"
5666 + "default.handlebars->33->1629",
5667 + "default.handlebars->33->2170",
5668 + "default.handlebars->33->2257",
5669 + "default.handlebars->33->721"
5670 ]
5671 },
5672 {
@@ -5686,10 +5686,10 @@
5686 "zh-cht": "一直提示",
5687 "ja": "常にプロンプ​​ト",
5688 "xloc": [
5689 - "default.handlebars->33->1628",
5690 - "default.handlebars->33->2168",
5691 - "default.handlebars->33->2255",
5692 - "default.handlebars->33->720"
5689 + "default.handlebars->33->1630",
5690 + "default.handlebars->33->2171",
5691 + "default.handlebars->33->2258",
5692 + "default.handlebars->33->722"
5693 ]
5694 },
5695 {
@@ -5699,10 +5699,7 @@
5699 "fr": "Toujours connecté",
5700 "hi": "हमेशा जुड़ा",
5701 "ko": "常時接続",
5702 - "zh-chs": "始终连接",
5703 - "xloc": [
5704 - "default.handlebars->33->441"
5705 - ]
5702 + "zh-chs": "始终连接"
5703 },
5704 {
5705 "cs": "Účet byl pro vás vytvořen na serveru",
@@ -5865,8 +5862,8 @@
5862 "ru": "Антивирус не активен",
5863 "zh-chs": "杀毒软件未激活",
5864 "xloc": [
5868 - "default.handlebars->33->1821",
5869 - "default.handlebars->33->1835"
5865 + "default.handlebars->33->1823",
5866 + "default.handlebars->33->1837"
5867 ]
5868 },
5869 {
@@ -5887,7 +5884,7 @@
5884 "ja": "アンチウイルス",
5885 "xloc": [
5886 "default-mobile.handlebars->11->475",
5890 - "default.handlebars->33->710"
5887 + "default.handlebars->33->712"
5888 ]
5889 },
5890 {
@@ -6027,6 +6024,18 @@
6024 "ko": "アプリケーション名",
6025 "zh-chs": "应用名称"
6026 },
6027 + {
6028 + "en": "Application, Always connected",
6029 + "xloc": [
6030 + "default.handlebars->33->441"
6031 + ]
6032 + },
6033 + {
6034 + "en": "Application, Connect on user request",
6035 + "xloc": [
6036 + "default.handlebars->33->440"
6037 + ]
6038 + },
6039 {
6040 "cs": "arabština (Alžír)",
6041 "de": "Arabisch (Algerien)",
@@ -6044,7 +6053,7 @@
6053 "zh-cht": "阿拉伯文(阿爾及利亞)",
6054 "ja": "アラビア語(アルジェリア)",
6055 "xloc": [
6047 - "default.handlebars->33->1303"
6056 + "default.handlebars->33->1305"
6057 ]
6058 },
6059 {
@@ -6064,7 +6073,7 @@
6073 "zh-cht": "阿拉伯文(巴林)",
6074 "ja": "アラビア語(バーレーン)",
6075 "xloc": [
6067 - "default.handlebars->33->1304"
6076 + "default.handlebars->33->1306"
6077 ]
6078 },
6079 {
@@ -6084,7 +6093,7 @@
6093 "zh-cht": "阿拉伯文(埃及)",
6094 "ja": "アラビア語(エジプト)",
6095 "xloc": [
6087 - "default.handlebars->33->1305"
6096 + "default.handlebars->33->1307"
6097 ]
6098 },
6099 {
@@ -6104,7 +6113,7 @@
6113 "zh-cht": "阿拉伯文(伊拉克)",
6114 "ja": "アラビア語(イラク)",
6115 "xloc": [
6107 - "default.handlebars->33->1306"
6116 + "default.handlebars->33->1308"
6117 ]
6118 },
6119 {
@@ -6124,7 +6133,7 @@
6133 "zh-cht": "阿拉伯文(約旦)",
6134 "ja": "アラビア語(ヨルダン)",
6135 "xloc": [
6127 - "default.handlebars->33->1307"
6136 + "default.handlebars->33->1309"
6137 ]
6138 },
6139 {
@@ -6144,7 +6153,7 @@
6153 "zh-cht": "阿拉伯文(科威特)",
6154 "ja": "アラビア語(クウェート)",
6155 "xloc": [
6147 - "default.handlebars->33->1308"
6156 + "default.handlebars->33->1310"
6157 ]
6158 },
6159 {
@@ -6164,7 +6173,7 @@
6173 "zh-cht": "阿拉伯文(黎巴嫩)",
6174 "ja": "アラビア語(レバノン)",
6175 "xloc": [
6167 - "default.handlebars->33->1309"
6176 + "default.handlebars->33->1311"
6177 ]
6178 },
6179 {
@@ -6184,7 +6193,7 @@
6193 "zh-cht": "阿拉伯文(利比亞)",
6194 "ja": "アラビア語(リビア)",
6195 "xloc": [
6187 - "default.handlebars->33->1310"
6196 + "default.handlebars->33->1312"
6197 ]
6198 },
6199 {
@@ -6204,7 +6213,7 @@
6213 "zh-cht": "阿拉伯文(摩洛哥)",
6214 "ja": "アラビア語(モロッコ)",
6215 "xloc": [
6207 - "default.handlebars->33->1311"
6216 + "default.handlebars->33->1313"
6217 ]
6218 },
6219 {
@@ -6224,7 +6233,7 @@
6233 "zh-cht": "阿拉伯文(阿曼)",
6234 "ja": "アラビア語(オマーン)",
6235 "xloc": [
6227 - "default.handlebars->33->1312"
6236 + "default.handlebars->33->1314"
6237 ]
6238 },
6239 {
@@ -6244,7 +6253,7 @@
6253 "zh-cht": "阿拉伯文(卡塔爾)",
6254 "ja": "アラビア語(カタール)",
6255 "xloc": [
6247 - "default.handlebars->33->1313"
6256 + "default.handlebars->33->1315"
6257 ]
6258 },
6259 {
@@ -6264,7 +6273,7 @@
6273 "zh-cht": "阿拉伯文(沙特阿拉伯)",
6274 "ja": "アラビア語(サウジアラビア)",
6275 "xloc": [
6267 - "default.handlebars->33->1314"
6276 + "default.handlebars->33->1316"
6277 ]
6278 },
6279 {
@@ -6284,7 +6293,7 @@
6293 "zh-cht": "阿拉伯文(標準)",
6294 "ja": "アラビア語(標準)",
6295 "xloc": [
6287 - "default.handlebars->33->1302"
6296 + "default.handlebars->33->1304"
6297 ]
6298 },
6299 {
@@ -6304,7 +6313,7 @@
6313 "zh-cht": "阿拉伯文(敘利亞)",
6314 "ja": "アラビア語(シリア)",
6315 "xloc": [
6307 - "default.handlebars->33->1315"
6316 + "default.handlebars->33->1317"
6317 ]
6318 },
6319 {
@@ -6324,7 +6333,7 @@
6333 "zh-cht": "阿拉伯文(突尼斯)",
6334 "ja": "アラビア語(チュニジア)",
6335 "xloc": [
6327 - "default.handlebars->33->1316"
6336 + "default.handlebars->33->1318"
6337 ]
6338 },
6339 {
@@ -6344,7 +6353,7 @@
6353 "zh-cht": "阿拉伯文(阿聯酋)",
6354 "ja": "アラビア語(U.A.E.)",
6355 "xloc": [
6347 - "default.handlebars->33->1317"
6356 + "default.handlebars->33->1319"
6357 ]
6358 },
6359 {
@@ -6364,7 +6373,7 @@
6373 "zh-cht": "阿拉伯文(也門)",
6374 "ja": "アラビア語(イエメン)",
6375 "xloc": [
6367 - "default.handlebars->33->1318"
6376 + "default.handlebars->33->1320"
6377 ]
6378 },
6379 {
@@ -6384,7 +6393,7 @@
6393 "zh-cht": "阿拉貢文",
6394 "ja": "アラゴン語",
6395 "xloc": [
6387 - "default.handlebars->33->1319"
6396 + "default.handlebars->33->1321"
6397 ]
6398 },
6399 {
@@ -6405,7 +6414,7 @@
6414 "ja": "建築",
6415 "xloc": [
6416 "default-mobile.handlebars->11->458",
6408 - "default.handlebars->33->1168"
6417 + "default.handlebars->33->1170"
6418 ]
6419 },
6420 {
@@ -6446,7 +6455,7 @@
6455 "ja": "グループ{0}を削除してもよろしいですか?デバイスグループを削除すると、このグループ内のデバイスに関するすべての情報も削除されます。",
6456 "xloc": [
6457 "default-mobile.handlebars->11->577",
6449 - "default.handlebars->33->1693"
6458 + "default.handlebars->33->1695"
6459 ]
6460 },
6461 {
@@ -6466,7 +6475,7 @@
6475 "zh-cht": "你確定要刪除節點{0}嗎?",
6476 "ja": "ノード{0}を削除してもよろしいですか?",
6477 "xloc": [
6469 - "default.handlebars->33->963"
6478 + "default.handlebars->33->965"
6479 ]
6480 },
6481 {
@@ -6486,7 +6495,7 @@
6495 "zh-cht": "你確定要卸載所選代理嗎?",
6496 "ja": "選択したエージェントをアンインストールしてもよろしいですか?",
6497 "xloc": [
6489 - "default.handlebars->33->952"
6498 + "default.handlebars->33->954"
6499 ]
6500 },
6501 {
@@ -6506,7 +6515,7 @@
6515 "zh-cht": "你確定要卸載所選的{0}代理嗎?",
6516 "ja": "選択した{0}エージェントをアンインストールしてもよろしいですか?",
6517 "xloc": [
6509 - "default.handlebars->33->951"
6518 + "default.handlebars->33->953"
6519 ]
6520 },
6521 {
@@ -6526,7 +6535,7 @@
6535 "zh-cht": "你確定要{0}外掛嗎:{1}",
6536 "ja": "プラグインを{0}してもよろしいですか:{1}",
6537 "xloc": [
6529 - "default.handlebars->33->2514"
6538 + "default.handlebars->33->2517"
6539 ]
6540 },
6541 {
@@ -6546,7 +6555,7 @@
6555 "zh-cht": "亞美尼亞文",
6556 "ja": "アルメニア人",
6557 "xloc": [
6549 - "default.handlebars->33->1320"
6558 + "default.handlebars->33->1322"
6559 ]
6560 },
6561 {
@@ -6606,7 +6615,7 @@
6615 "zh-cht": "阿薩姆文",
6616 "ja": "アッサム語",
6617 "xloc": [
6609 - "default.handlebars->33->1321"
6618 + "default.handlebars->33->1323"
6619 ]
6620 },
6621 {
@@ -6659,7 +6668,7 @@
6668 "ru": "Ассистент для Windows (.exe)",
6669 "zh-chs": "Windows 助手 (.exe)",
6670 "xloc": [
6662 - "default.handlebars->33->463"
6671 + "default.handlebars->33->465"
6672 ]
6673 },
6674 {
@@ -6693,7 +6702,7 @@
6702 "zh-cht": "阿斯圖里亞斯文",
6703 "ja": "アストゥリアス",
6704 "xloc": [
6696 - "default.handlebars->33->1322"
6705 + "default.handlebars->33->1324"
6706 ]
6707 },
6708 {
@@ -6713,7 +6722,7 @@
6722 "zh-cht": "嘗試激活英特爾(R)AMT ACM模式",
6723 "ja": "インテル(R)AMT ACMモードのアクティブ化を試みています",
6724 "xloc": [
6716 - "default.handlebars->33->1907"
6725 + "default.handlebars->33->1909"
6726 ]
6727 },
6728 {
@@ -6738,8 +6747,8 @@
6747 "xloc": [
6748 "default-mobile.handlebars->11->405",
6749 "default-mobile.handlebars->11->416",
6741 - "default.handlebars->33->1089",
6742 - "default.handlebars->33->1110",
6750 + "default.handlebars->33->1091",
6751 + "default.handlebars->33->1112",
6752 "ssh.handlebars->3->7",
6753 "ssh.handlebars->3->8"
6754 ]
@@ -6761,7 +6770,7 @@
6770 "zh-cht": "認證軟體",
6771 "ja": "認証アプリ",
6772 "xloc": [
6764 - "default.handlebars->33->2258"
6773 + "default.handlebars->33->2261"
6774 ]
6775 },
6776 {
@@ -6775,9 +6784,9 @@
6784 "ru": "Устройство аутентификации",
6785 "zh-chs": "认证设备",
6786 "xloc": [
6778 - "default.handlebars->33->1283",
6787 "default.handlebars->33->1285",
6780 - "default.handlebars->33->1289"
6788 + "default.handlebars->33->1287",
6789 + "default.handlebars->33->1291"
6790 ]
6791 },
6792 {
@@ -6792,8 +6801,8 @@
6801 "xloc": [
6802 "default-mobile.handlebars->11->406",
6803 "default-mobile.handlebars->11->417",
6795 - "default.handlebars->33->1091",
6796 - "default.handlebars->33->1111"
6804 + "default.handlebars->33->1093",
6805 + "default.handlebars->33->1113"
6806 ]
6807 },
6808 {
@@ -6817,8 +6826,8 @@
6826 "default-mobile.handlebars->11->64",
6827 "default-mobile.handlebars->11->95",
6828 "default-mobile.handlebars->11->97",
6820 - "default.handlebars->33->1279",
6829 "default.handlebars->33->1281",
6830 + "default.handlebars->33->1283",
6831 "default.handlebars->33->143",
6832 "default.handlebars->33->148"
6833 ]
@@ -6900,7 +6909,7 @@
6909 "zh-cht": "自動刪除",
6910 "ja": "自動削除",
6911 "xloc": [
6903 - "default.handlebars->33->1614"
6912 + "default.handlebars->33->1616"
6913 ]
6914 },
6915 {
@@ -6944,7 +6953,7 @@
6953 "zh-cht": "自動下載代理程序核心轉儲文件:“{0}”",
6954 "ja": "エージェントコアダンプファイルの自動ダウンロード:\\\"{0}\\\"",
6955 "xloc": [
6947 - "default.handlebars->33->1988"
6956 + "default.handlebars->33->1990"
6957 ]
6958 },
6959 {
@@ -6984,7 +6993,7 @@
6993 "zh-cht": "可用內存",
6994 "ja": "使用可能なメモリ",
6995 "xloc": [
6987 - "default.handlebars->33->2446"
6996 + "default.handlebars->33->2449"
6997 ]
6998 },
6999 {
@@ -7004,7 +7013,7 @@
7013 "zh-cht": "阿塞拜疆文",
7014 "ja": "アゼルバイジャン語",
7015 "xloc": [
7007 - "default.handlebars->33->1323"
7016 + "default.handlebars->33->1325"
7017 ]
7018 },
7019 {
@@ -7021,9 +7030,9 @@
7030 "default-mobile.handlebars->11->462",
7031 "default-mobile.handlebars->11->466",
7032 "default-mobile.handlebars->11->470",
7024 - "default.handlebars->33->697",
7025 - "default.handlebars->33->701",
7026 - "default.handlebars->33->705"
7033 + "default.handlebars->33->699",
7034 + "default.handlebars->33->703",
7035 + "default.handlebars->33->707"
7036 ]
7037 },
7038 {
@@ -7044,7 +7053,7 @@
7053 "ja": "BIOS",
7054 "xloc": [
7055 "default-mobile.handlebars->11->524",
7047 - "default.handlebars->33->1227"
7056 + "default.handlebars->33->1229"
7057 ]
7058 },
7059 {
@@ -7135,7 +7144,7 @@
7144 "zh-chs": "退格",
7145 "xloc": [
7146 "default-mobile.handlebars->11->369",
7138 - "default.handlebars->33->1029"
7147 + "default.handlebars->33->1031"
7148 ]
7149 },
7150 {
@@ -7175,8 +7184,8 @@
7184 "zh-cht": "背景與互動",
7185 "ja": "背景とインタラクティブ",
7186 "xloc": [
7178 - "default.handlebars->33->1800",
7179 - "default.handlebars->33->1807",
7187 + "default.handlebars->33->1802",
7188 + "default.handlebars->33->1809",
7189 "default.handlebars->33->406",
7190 "default.handlebars->33->420"
7191 ]
@@ -7198,8 +7207,8 @@
7207 "zh-cht": "僅背景",
7208 "ja": "背景のみ",
7209 "xloc": [
7201 - "default.handlebars->33->1801",
7202 - "default.handlebars->33->1808",
7210 + "default.handlebars->33->1803",
7211 + "default.handlebars->33->1810",
7212 "default.handlebars->33->407",
7213 "default.handlebars->33->421",
7214 "default.handlebars->33->437"
@@ -7243,7 +7252,7 @@
7252 "zh-cht": "備用碼",
7253 "ja": "バックアップコード",
7254 "xloc": [
7246 - "default.handlebars->33->2260"
7255 + "default.handlebars->33->2263"
7256 ]
7257 },
7258 {
@@ -7263,7 +7272,7 @@
7272 "zh-cht": "錯誤的簽名",
7273 "ja": "悪い署名",
7274 "xloc": [
7266 - "default.handlebars->33->2428"
7275 + "default.handlebars->33->2431"
7276 ]
7277 },
7278 {
@@ -7283,7 +7292,7 @@
7292 "zh-cht": "錯誤的網絡憑證",
7293 "ja": "不正なWeb証明書",
7294 "xloc": [
7286 - "default.handlebars->33->2427"
7295 + "default.handlebars->33->2430"
7296 ]
7297 },
7298 {
@@ -7303,7 +7312,7 @@
7312 "zh-cht": "巴斯克",
7313 "ja": "バスク",
7314 "xloc": [
7306 - "default.handlebars->33->1324"
7315 + "default.handlebars->33->1326"
7316 ]
7317 },
7318 {
@@ -7323,7 +7332,7 @@
7332 "zh-cht": "批處理文件上傳",
7333 "ja": "バッチファイルのアップロード",
7334 "xloc": [
7326 - "default.handlebars->33->565"
7335 + "default.handlebars->33->567"
7336 ]
7337 },
7338 {
@@ -7363,7 +7372,7 @@
7372 "zh-cht": "將{0}個文件批量上傳到文件夾{1}",
7373 "ja": "{0}ファイルのフォルダ{1}へのバッチアップロード",
7374 "xloc": [
7366 - "default.handlebars->33->1987"
7375 + "default.handlebars->33->1989"
7376 ]
7377 },
7378 {
@@ -7383,7 +7392,7 @@
7392 "zh-cht": "白俄羅斯文",
7393 "ja": "ベラルーシ語",
7394 "xloc": [
7386 - "default.handlebars->33->1326"
7395 + "default.handlebars->33->1328"
7396 ]
7397 },
7398 {
@@ -7403,7 +7412,7 @@
7412 "zh-cht": "孟加拉",
7413 "ja": "ベンガル語",
7414 "xloc": [
7406 - "default.handlebars->33->1327"
7415 + "default.handlebars->33->1329"
7416 ]
7417 },
7418 {
@@ -7450,7 +7459,7 @@
7459 "zh-chs": "引导加载程序",
7460 "xloc": [
7461 "default-mobile.handlebars->11->488",
7453 - "default.handlebars->33->1181"
7462 + "default.handlebars->33->1183"
7463 ]
7464 },
7465 {
@@ -7470,7 +7479,7 @@
7479 "zh-cht": "波斯尼亞文",
7480 "ja": "ボスニア語",
7481 "xloc": [
7473 - "default.handlebars->33->1328"
7482 + "default.handlebars->33->1330"
7483 ]
7484 },
7485 {
@@ -7490,7 +7499,7 @@
7499 "zh-cht": "布列塔尼",
7500 "ja": "ブルトン",
7501 "xloc": [
7493 - "default.handlebars->33->1329"
7502 + "default.handlebars->33->1331"
7503 ]
7504 },
7505 {
@@ -7510,7 +7519,7 @@
7519 "zh-cht": "廣播",
7520 "ja": "放送",
7521 "xloc": [
7513 - "default.handlebars->33->2174",
7522 + "default.handlebars->33->2177",
7523 "default.handlebars->container->column_l->p4->3->1->0->3->1"
7524 ]
7525 },
@@ -7531,7 +7540,7 @@
7540 "zh-cht": "廣播消息",
7541 "ja": "同報メッセージ",
7542 "xloc": [
7534 - "default.handlebars->33->2095"
7543 + "default.handlebars->33->2098"
7544 ]
7545 },
7546 {
@@ -7551,7 +7560,7 @@
7560 "zh-cht": "向所有連接的用戶廣播消息。",
7561 "ja": "接続されているすべてのユーザーにメッセージをブロードキャストします。",
7562 "xloc": [
7554 - "default.handlebars->33->2090"
7563 + "default.handlebars->33->2093"
7564 ]
7565 },
7566 {
@@ -7586,7 +7595,7 @@
7595 "zh-cht": "保加利亞文",
7596 "ja": "ブルガリア語",
7597 "xloc": [
7589 - "default.handlebars->33->1325"
7598 + "default.handlebars->33->1327"
7599 ]
7600 },
7601 {
@@ -7606,7 +7615,7 @@
7615 "zh-cht": "緬甸文",
7616 "ja": "ビルマ語",
7617 "xloc": [
7609 - "default.handlebars->33->1330"
7618 + "default.handlebars->33->1332"
7619 ]
7620 },
7621 {
@@ -7627,7 +7636,7 @@
7636 "ja": "CCM",
7637 "xloc": [
7638 "default-mobile.handlebars->11->273",
7630 - "default.handlebars->33->673"
7639 + "default.handlebars->33->675"
7640 ]
7641 },
7642 {
@@ -7647,7 +7656,7 @@
7656 "zh-cht": "CCM模式",
7657 "ja": "CCMモード",
7658 "xloc": [
7650 - "default.handlebars->33->1676"
7659 + "default.handlebars->33->1678"
7660 ]
7661 },
7662 {
@@ -7668,9 +7677,9 @@
7677 "ja": "CIRA",
7678 "xloc": [
7679 "default-mobile.handlebars->11->236",
7671 - "default.handlebars->33->2453",
7680 + "default.handlebars->33->2456",
7681 "default.handlebars->33->294",
7673 - "default.handlebars->33->507"
7682 + "default.handlebars->33->509"
7683 ]
7684 },
7685 {
@@ -7690,7 +7699,7 @@
7699 "zh-cht": "CIRA伺服器",
7700 "ja": "CIRAサーバー",
7701 "xloc": [
7693 - "default.handlebars->33->2498"
7702 + "default.handlebars->33->2501"
7703 ]
7704 },
7705 {
@@ -7710,7 +7719,7 @@
7719 "zh-cht": "CIRA伺服器指令",
7720 "ja": "CIRAサーバーコマンド",
7721 "xloc": [
7713 - "default.handlebars->33->2499"
7722 + "default.handlebars->33->2502"
7723 ]
7724 },
7725 {
@@ -7730,7 +7739,7 @@
7739 "zh-cht": "CIRA設置",
7740 "ja": "CIRAのセットアップ",
7741 "xloc": [
7733 - "default.handlebars->33->1684"
7742 + "default.handlebars->33->1686"
7743 ]
7744 },
7745 {
@@ -7751,7 +7760,7 @@
7760 "ja": "CPU",
7761 "xloc": [
7762 "default-mobile.handlebars->11->530",
7754 - "default.handlebars->33->1233"
7763 + "default.handlebars->33->1235"
7764 ]
7765 },
7766 {
@@ -7771,7 +7780,7 @@
7780 "zh-cht": "CPU負載",
7781 "ja": "CPU負荷",
7782 "xloc": [
7774 - "default.handlebars->33->2442"
7783 + "default.handlebars->33->2445"
7784 ]
7785 },
7786 {
@@ -7791,7 +7800,7 @@
7800 "zh-cht": "最近15分鐘的CPU負載",
7801 "ja": "過去15分間のCPU負荷",
7802 "xloc": [
7794 - "default.handlebars->33->2445"
7803 + "default.handlebars->33->2448"
7804 ]
7805 },
7806 {
@@ -7811,7 +7820,7 @@
7820 "zh-cht": "最近5分鐘的CPU負載",
7821 "ja": "過去5分間のCPU負荷",
7822 "xloc": [
7814 - "default.handlebars->33->2444"
7823 + "default.handlebars->33->2447"
7824 ]
7825 },
7826 {
@@ -7831,7 +7840,7 @@
7840 "zh-cht": "最近一分鐘的CPU負載",
7841 "ja": "直前のCPU負荷",
7842 "xloc": [
7834 - "default.handlebars->33->2443"
7843 + "default.handlebars->33->2446"
7844 ]
7845 },
7846 {
@@ -7851,8 +7860,8 @@
7860 "zh-cht": "CR+LF",
7861 "ja": "CR + LF",
7862 "xloc": [
7854 - "default.handlebars->33->1083",
7855 - "default.handlebars->33->1100",
7863 + "default.handlebars->33->1085",
7864 + "default.handlebars->33->1102",
7865 "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons",
7866 "sharing.handlebars->11->25",
7867 "sharing.handlebars->11->39",
@@ -7876,7 +7885,7 @@
7885 "zh-cht": "CSV",
7886 "ja": "CSV",
7887 "xloc": [
7879 - "default.handlebars->33->2013"
7888 + "default.handlebars->33->2016"
7889 ]
7890 },
7891 {
@@ -7896,9 +7905,9 @@
7905 "zh-cht": "CSV格式",
7906 "ja": "CSV形式",
7907 "xloc": [
7899 - "default.handlebars->33->2017",
7900 - "default.handlebars->33->2082",
7901 - "default.handlebars->33->573"
7908 + "default.handlebars->33->2020",
7909 + "default.handlebars->33->2085",
7910 + "default.handlebars->33->575"
7911 ]
7912 },
7913 {
@@ -7935,7 +7944,7 @@
7944 "zh-cht": "呼叫錯誤",
7945 "ja": "呼び出しエラー",
7946 "xloc": [
7938 - "default.handlebars->33->2515"
7947 + "default.handlebars->33->2518"
7948 ]
7949 },
7950 {
@@ -7958,8 +7967,8 @@
7967 "agent-translations.json",
7968 "default-mobile.handlebars->11->106",
7969 "default-mobile.handlebars->dialog->idx_dlgButtonBar",
7961 - "default.handlebars->33->1591",
7962 - "default.handlebars->33->2504",
7970 + "default.handlebars->33->1593",
7971 + "default.handlebars->33->2507",
7972 "default.handlebars->container->dialog->idx_dlgButtonBar",
7973 "login-mobile.handlebars->dialog->idx_dlgButtonBar",
7974 "login.handlebars->dialog->idx_dlgButtonBar",
@@ -8008,9 +8017,9 @@
8017 "default-mobile.handlebars->11->535",
8018 "default-mobile.handlebars->11->540",
8019 "default-mobile.handlebars->11->542",
8011 - "default.handlebars->33->1238",
8012 - "default.handlebars->33->1243",
8013 - "default.handlebars->33->1245"
8020 + "default.handlebars->33->1240",
8021 + "default.handlebars->33->1245",
8022 + "default.handlebars->33->1247"
8023 ]
8024 },
8025 {
@@ -8031,7 +8040,7 @@
8040 "ja": "容量/速度",
8041 "xloc": [
8042 "default-mobile.handlebars->11->533",
8034 - "default.handlebars->33->1236"
8043 + "default.handlebars->33->1238"
8044 ]
8045 },
8046 {
@@ -8051,7 +8060,7 @@
8060 "zh-cht": "加泰羅尼亞文",
8061 "ja": "カタロニア語",
8062 "xloc": [
8054 - "default.handlebars->33->1331"
8063 + "default.handlebars->33->1333"
8064 ]
8065 },
8066 {
@@ -8071,7 +8080,7 @@
8080 "zh-cht": "在這裡為中心顯示地圖",
8081 "ja": "センターマップはこちら",
8082 "xloc": [
8074 - "default.handlebars->33->628"
8083 + "default.handlebars->33->630"
8084 ]
8085 },
8086 {
@@ -8116,7 +8125,7 @@
8125 "zh-cht": "查莫羅",
8126 "ja": "チャモロ",
8127 "xloc": [
8119 - "default.handlebars->33->1332"
8128 + "default.handlebars->33->1334"
8129 ]
8130 },
8131 {
@@ -8158,7 +8167,7 @@
8167 "zh-cht": "更改{0}的電郵",
8168 "ja": "{0}のメールを変更",
8169 "xloc": [
8161 - "default.handlebars->33->2292"
8170 + "default.handlebars->33->2295"
8171 ]
8172 },
8173 {
@@ -8178,9 +8187,9 @@
8187 "zh-cht": "更改群",
8188 "ja": "グループを変更",
8189 "xloc": [
8181 - "default.handlebars->33->754",
8182 - "default.handlebars->33->960",
8183 - "default.handlebars->33->961"
8190 + "default.handlebars->33->756",
8191 + "default.handlebars->33->962",
8192 + "default.handlebars->33->963"
8193 ]
8194 },
8195 {
@@ -8201,8 +8210,8 @@
8210 "ja": "パスワードを変更する",
8211 "xloc": [
8212 "default-mobile.handlebars->11->114",
8204 - "default.handlebars->33->1547",
8205 - "default.handlebars->33->2277"
8213 + "default.handlebars->33->1549",
8214 + "default.handlebars->33->2280"
8215 ]
8216 },
8217 {
@@ -8222,7 +8231,7 @@
8231 "zh-cht": "更改{0}的密碼",
8232 "ja": "{0}のパスワードを変更",
8233 "xloc": [
8225 - "default.handlebars->33->2301"
8234 + "default.handlebars->33->2304"
8235 ]
8236 },
8237 {
@@ -8242,7 +8251,7 @@
8251 "zh-cht": "更改{0}的真實名稱",
8252 "ja": "{0}の本名を変更",
8253 "xloc": [
8245 - "default.handlebars->33->2287"
8254 + "default.handlebars->33->2290"
8255 ]
8256 },
8257 {
@@ -8347,7 +8356,7 @@
8356 "zh-cht": "更改該用戶的密碼",
8357 "ja": "このユーザーのパスワードを変更します",
8358 "xloc": [
8350 - "default.handlebars->33->2276"
8359 + "default.handlebars->33->2279"
8360 ]
8361 },
8362 {
@@ -8387,7 +8396,7 @@
8396 "zh-cht": "在此處更改你的帳戶電郵地址。",
8397 "ja": "ここでアカウントのメールアドレスを変更します。",
8398 "xloc": [
8390 - "default.handlebars->33->1534"
8399 + "default.handlebars->33->1536"
8400 ]
8401 },
8402 {
@@ -8407,7 +8416,7 @@
8416 "zh-cht": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。",
8417 "ja": "下のボックスに古いパスワードと新しいパスワードを2回入力して、アカウントのパスワードを変更します。",
8418 "xloc": [
8410 - "default.handlebars->33->1540"
8419 + "default.handlebars->33->1542"
8420 ]
8421 },
8422 {
@@ -8427,7 +8436,7 @@
8436 "zh-cht": "帳戶憑證已更改",
8437 "ja": "アカウントの資格情報を変更しました",
8438 "xloc": [
8430 - "default.handlebars->33->1959"
8439 + "default.handlebars->33->1961"
8440 ]
8441 },
8442 {
@@ -8447,7 +8456,7 @@
8456 "zh-cht": "{1}組中的設備{0}已更改:{2}",
8457 "ja": "デバイス{0}をグループ{1}から変更しました:{2}",
8458 "xloc": [
8450 - "default.handlebars->33->1943"
8459 + "default.handlebars->33->1945"
8460 ]
8461 },
8462 {
@@ -8467,7 +8476,7 @@
8476 "zh-cht": "語言從{1}更改為{2}",
8477 "ja": "言語を{1}から{2}に変更しました",
8478 "xloc": [
8470 - "default.handlebars->33->1887"
8479 + "default.handlebars->33->1889"
8480 ]
8481 },
8482 {
@@ -8487,8 +8496,8 @@
8496 "zh-cht": "已更改{0}的用戶設備權限",
8497 "ja": "{0}のユーザーデバイス権限を変更しました",
8498 "xloc": [
8490 - "default.handlebars->33->1945",
8491 - "default.handlebars->33->1966"
8499 + "default.handlebars->33->1947",
8500 + "default.handlebars->33->1968"
8501 ]
8502 },
8503 {
@@ -8517,7 +8526,7 @@
8526 "zh-cht": "更改語言將需要刷新頁面。",
8527 "ja": "言語を変更するには、ページを更新する必要があります。",
8528 "xloc": [
8520 - "default.handlebars->33->1499"
8529 + "default.handlebars->33->1501"
8530 ]
8531 },
8532 {
@@ -8537,12 +8546,12 @@
8546 "zh-cht": "聊天",
8547 "ja": "チャット",
8548 "xloc": [
8540 - "default.handlebars->33->2034",
8541 - "default.handlebars->33->2272",
8542 - "default.handlebars->33->2273",
8543 - "default.handlebars->33->749",
8544 - "default.handlebars->33->828",
8545 - "default.handlebars->33->850"
8549 + "default.handlebars->33->2037",
8550 + "default.handlebars->33->2275",
8551 + "default.handlebars->33->2276",
8552 + "default.handlebars->33->751",
8553 + "default.handlebars->33->830",
8554 + "default.handlebars->33->852"
8555 ]
8556 },
8557 {
@@ -8564,8 +8573,8 @@
8573 "xloc": [
8574 "default-mobile.handlebars->11->602",
8575 "default-mobile.handlebars->11->622",
8567 - "default.handlebars->33->1746",
8568 - "default.handlebars->33->1782"
8576 + "default.handlebars->33->1748",
8577 + "default.handlebars->33->1784"
8578 ]
8579 },
8580 {
@@ -8580,7 +8589,7 @@
8589 "zh-chs": "聊天请求,点击这里接受。",
8590 "xloc": [
8591 "default-mobile.handlebars->11->654",
8583 - "default.handlebars->33->2397"
8592 + "default.handlebars->33->2400"
8593 ]
8594 },
8595 {
@@ -8620,7 +8629,7 @@
8629 "zh-cht": "車臣",
8630 "ja": "チェチェン",
8631 "xloc": [
8623 - "default.handlebars->33->1333"
8632 + "default.handlebars->33->1335"
8633 ]
8634 },
8635 {
@@ -8720,8 +8729,8 @@
8729 "zh-cht": "檢查...",
8730 "ja": "確認しています...",
8731 "xloc": [
8723 - "default.handlebars->33->1299",
8724 - "default.handlebars->33->2509"
8732 + "default.handlebars->33->1301",
8733 + "default.handlebars->33->2512"
8734 ]
8735 },
8736 {
@@ -8741,7 +8750,7 @@
8750 "zh-cht": "中文",
8751 "ja": "中国語",
8752 "xloc": [
8744 - "default.handlebars->33->1334"
8753 + "default.handlebars->33->1336"
8754 ]
8755 },
8756 {
@@ -8761,7 +8770,7 @@
8770 "zh-cht": "中文(香港)",
8771 "ja": "中国語(香港)",
8772 "xloc": [
8764 - "default.handlebars->33->1335"
8773 + "default.handlebars->33->1337"
8774 ]
8775 },
8776 {
@@ -8781,7 +8790,7 @@
8790 "zh-cht": "中文(中國)",
8791 "ja": "中国語(PRC)",
8792 "xloc": [
8784 - "default.handlebars->33->1336"
8793 + "default.handlebars->33->1338"
8794 ]
8795 },
8796 {
@@ -8801,7 +8810,7 @@
8810 "zh-cht": "簡體中文",
8811 "ja": "中国語(簡体字)",
8812 "xloc": [
8804 - "default.handlebars->33->1496"
8813 + "default.handlebars->33->1498"
8814 ]
8815 },
8816 {
@@ -8821,7 +8830,7 @@
8830 "zh-cht": "中文(新加坡)",
8831 "ja": "中国語(シンガポール)",
8832 "xloc": [
8824 - "default.handlebars->33->1337"
8833 + "default.handlebars->33->1339"
8834 ]
8835 },
8836 {
@@ -8841,7 +8850,7 @@
8850 "zh-cht": "中文(台灣)",
8851 "ja": "中国語(台湾)",
8852 "xloc": [
8844 - "default.handlebars->33->1338"
8853 + "default.handlebars->33->1340"
8854 ]
8855 },
8856 {
@@ -8861,7 +8870,7 @@
8870 "zh-cht": "繁體中文",
8871 "ja": "中国の伝統的な)",
8872 "xloc": [
8864 - "default.handlebars->33->1497"
8873 + "default.handlebars->33->1499"
8874 ]
8875 },
8876 {
@@ -8902,7 +8911,7 @@
8911 "zh-cht": "楚瓦什",
8912 "ja": "チュヴァシュ",
8913 "xloc": [
8905 - "default.handlebars->33->1339"
8914 + "default.handlebars->33->1341"
8915 ]
8916 },
8917 {
@@ -8946,11 +8955,11 @@
8955 "default-mobile.handlebars->11->448",
8956 "default-mobile.handlebars->11->71",
8957 "default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->5",
8949 - "default.handlebars->33->1145",
8958 "default.handlebars->33->1147",
8959 "default.handlebars->33->1149",
8960 "default.handlebars->33->1151",
8953 - "default.handlebars->33->1881",
8961 + "default.handlebars->33->1153",
8962 + "default.handlebars->33->1883",
8963 "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7",
8964 "default.handlebars->container->column_l->p41->3->1",
8965 "messenger.handlebars->xbottom->1->1->0->5",
@@ -8972,7 +8981,7 @@
8981 "zh-chs": "清除 SSH 凭据?",
8982 "xloc": [
8983 "default-mobile.handlebars->11->354",
8975 - "default.handlebars->33->1002"
8984 + "default.handlebars->33->1004"
8985 ]
8986 },
8987 {
@@ -9006,8 +9015,8 @@
9015 "ru": "Очистить ядро агента",
9016 "zh-chs": "清除代理核心",
9017 "xloc": [
9009 - "default.handlebars->33->530",
9010 - "default.handlebars->33->569"
9018 + "default.handlebars->33->532",
9019 + "default.handlebars->33->571"
9020 ]
9021 },
9022 {
@@ -9021,7 +9030,7 @@
9030 "ru": "Очистить ядро агента на выбранных устройствах?",
9031 "zh-chs": "清除选定设备上的代理核心?",
9032 "xloc": [
9024 - "default.handlebars->33->568"
9033 + "default.handlebars->33->570"
9034 ]
9035 },
9036 {
@@ -9042,7 +9051,7 @@
9051 "ja": "すべてクリア",
9052 "xloc": [
9053 "default-mobile.handlebars->11->637",
9045 - "default.handlebars->33->2380"
9054 + "default.handlebars->33->2383"
9055 ]
9056 },
9057 {
@@ -9084,7 +9093,7 @@
9093 "ja": "コアをクリアする",
9094 "xloc": [
9095 "default-mobile.handlebars->11->556",
9087 - "default.handlebars->33->1260"
9096 + "default.handlebars->33->1262"
9097 ]
9098 },
9099 {
@@ -9125,7 +9134,7 @@
9134 "ja": "この通知をクリア",
9135 "xloc": [
9136 "default-mobile.handlebars->11->636",
9128 - "default.handlebars->33->2379"
9137 + "default.handlebars->33->2382"
9138 ]
9139 },
9140 {
@@ -9185,8 +9194,8 @@
9194 "zh-cht": "單擊此處編輯裝置群名稱",
9195 "ja": "ここをクリックしてデバイスグループ名を編集します",
9196 "xloc": [
9188 - "default.handlebars->33->1602",
9189 - "default.handlebars->33->1826"
9197 + "default.handlebars->33->1604",
9198 + "default.handlebars->33->1828"
9199 ]
9200 },
9201 {
@@ -9206,7 +9215,7 @@
9215 "zh-cht": "單擊此處編輯伺服器端裝置名稱",
9216 "ja": "サーバー側のデバイス名を編集するにはここをクリックしてください",
9217 "xloc": [
9209 - "default.handlebars->33->644"
9218 + "default.handlebars->33->646"
9219 ]
9220 },
9221 {
@@ -9226,7 +9235,7 @@
9235 "zh-cht": "單擊此處編輯用戶群名稱",
9236 "ja": "ユーザーグループ名を編集するには、ここをクリックしてください",
9237 "xloc": [
9229 - "default.handlebars->33->2151"
9238 + "default.handlebars->33->2154"
9239 ]
9240 },
9241 {
@@ -9312,7 +9321,7 @@
9321 "ja": "[OK]をクリックして確認メールを送信します:",
9322 "xloc": [
9323 "default-mobile.handlebars->11->99",
9315 - "default.handlebars->33->1531"
9324 + "default.handlebars->33->1533"
9325 ]
9326 },
9327 {
@@ -9374,7 +9383,7 @@
9383 "ja": "クライアント制御モード(CCM)",
9384 "xloc": [
9385 "default-mobile.handlebars->11->511",
9377 - "default.handlebars->33->1214"
9386 + "default.handlebars->33->1216"
9387 ]
9388 },
9389 {
@@ -9394,7 +9403,7 @@
9403 "zh-cht": "客戶編號",
9404 "ja": "クライアントID",
9405 "xloc": [
9397 - "default.handlebars->33->1584"
9406 + "default.handlebars->33->1586"
9407 ]
9408 },
9409 {
@@ -9414,7 +9423,7 @@
9423 "zh-cht": "客戶端啟動的遠程訪問",
9424 "ja": "クライアントが開始したリモートアクセス",
9425 "xloc": [
9417 - "default.handlebars->33->1683"
9426 + "default.handlebars->33->1685"
9427 ]
9428 },
9429 {
@@ -9434,7 +9443,7 @@
9443 "zh-cht": "客戶機密",
9444 "ja": "クライアントシークレット",
9445 "xloc": [
9437 - "default.handlebars->33->1585"
9446 + "default.handlebars->33->1587"
9447 ]
9448 },
9449 {
@@ -9476,11 +9485,11 @@
9485 "ja": "閉じる",
9486 "xloc": [
9487 "default-mobile.handlebars->11->69",
9479 - "default.handlebars->33->1071",
9480 - "default.handlebars->33->1121",
9488 + "default.handlebars->33->1073",
9489 + "default.handlebars->33->1123",
9490 "default.handlebars->33->155",
9491 "default.handlebars->33->163",
9483 - "default.handlebars->33->2503",
9492 + "default.handlebars->33->2506",
9493 "sharing.handlebars->11->52"
9494 ]
9495 },
@@ -9501,7 +9510,7 @@
9510 "zh-cht": "封閉式桌面多路復用會話,{0}秒",
9511 "ja": "クローズされたデスクトップマルチプレックスセッション、{0}秒",
9512 "xloc": [
9504 - "default.handlebars->33->1892"
9513 + "default.handlebars->33->1894"
9514 ]
9515 },
9516 {
@@ -9605,7 +9614,7 @@
9614 "zh-cht": "命令",
9615 "ja": "コマンド",
9616 "xloc": [
9608 - "default.handlebars->33->478"
9617 + "default.handlebars->33->480"
9618 ]
9619 },
9620 {
@@ -9626,9 +9635,9 @@
9635 "ja": "コマンド",
9636 "xloc": [
9637 "default-mobile.handlebars->11->624",
9629 - "default.handlebars->33->1784",
9630 - "default.handlebars->33->830",
9631 - "default.handlebars->33->852"
9638 + "default.handlebars->33->1786",
9639 + "default.handlebars->33->832",
9640 + "default.handlebars->33->854"
9641 ]
9642 },
9643 {
@@ -9648,8 +9657,8 @@
9657 "zh-cht": "通用裝置群",
9658 "ja": "共通デバイスグループ",
9659 "xloc": [
9651 - "default.handlebars->33->2182",
9652 - "default.handlebars->33->2306"
9660 + "default.handlebars->33->2185",
9661 + "default.handlebars->33->2309"
9662 ]
9663 },
9664 {
@@ -9669,8 +9678,8 @@
9678 "zh-cht": "通用裝置",
9679 "ja": "共通デバイス",
9680 "xloc": [
9672 - "default.handlebars->33->2188",
9673 - "default.handlebars->33->2318"
9681 + "default.handlebars->33->2191",
9682 + "default.handlebars->33->2321"
9683 ]
9684 },
9685 {
@@ -9685,7 +9694,7 @@
9694 "zh-chs": "编译时间",
9695 "xloc": [
9696 "default-mobile.handlebars->11->484",
9688 - "default.handlebars->33->1177"
9697 + "default.handlebars->33->1179"
9698 ]
9699 },
9700 {
@@ -9714,7 +9723,7 @@
9723 "zh-cht": "壓縮檔案...",
9724 "ja": "ファイルを圧縮しています...",
9725 "xloc": [
9717 - "default.handlebars->33->1116",
9726 + "default.handlebars->33->1118",
9727 "sharing.handlebars->11->47"
9728 ]
9729 },
@@ -9746,14 +9755,14 @@
9755 "xloc": [
9756 "default-mobile.handlebars->11->351",
9757 "default-mobile.handlebars->11->578",
9749 - "default.handlebars->33->1694",
9750 - "default.handlebars->33->2062",
9751 - "default.handlebars->33->2141",
9752 - "default.handlebars->33->2202",
9753 - "default.handlebars->33->2304",
9754 - "default.handlebars->33->537",
9755 - "default.handlebars->33->955",
9756 - "default.handlebars->33->964"
9758 + "default.handlebars->33->1696",
9759 + "default.handlebars->33->2065",
9760 + "default.handlebars->33->2144",
9761 + "default.handlebars->33->2205",
9762 + "default.handlebars->33->2307",
9763 + "default.handlebars->33->539",
9764 + "default.handlebars->33->957",
9765 + "default.handlebars->33->966"
9766 ]
9767 },
9768 {
@@ -9783,7 +9792,7 @@
9792 "ja": "この場所への1つのエントリのコピーを確認しますか?",
9793 "xloc": [
9794 "default-mobile.handlebars->11->437",
9786 - "default.handlebars->33->1140",
9795 + "default.handlebars->33->1142",
9796 "sharing.handlebars->11->70"
9797 ]
9798 },
@@ -9804,7 +9813,7 @@
9813 "zh-cht": "確認{0}個條目的複製到此位置?",
9814 "ja": "{0}エントリのコピーをこの場所に確認しますか?",
9815 "xloc": [
9807 - "default.handlebars->33->1139",
9816 + "default.handlebars->33->1141",
9817 "sharing.handlebars->11->69"
9818 ]
9819 },
@@ -9845,7 +9854,7 @@
9854 "zh-cht": "確認刪除所選帳戶?",
9855 "ja": "選択したアカウントの削除を確認しますか?",
9856 "xloc": [
9848 - "default.handlebars->33->2061"
9857 + "default.handlebars->33->2064"
9858 ]
9859 },
9860 {
@@ -9865,7 +9874,7 @@
9874 "zh-cht": "確認刪除所選裝置?",
9875 "ja": "選択したデバイスの削除を確認しますか?",
9876 "xloc": [
9868 - "default.handlebars->33->536"
9877 + "default.handlebars->33->538"
9878 ]
9879 },
9880 {
@@ -9885,7 +9894,7 @@
9894 "zh-cht": "確認刪除所選用戶群?",
9895 "ja": "選択したユーザーグループの削除を確認しますか?",
9896 "xloc": [
9888 - "default.handlebars->33->2140"
9897 + "default.handlebars->33->2143"
9898 ]
9899 },
9900 {
@@ -9905,7 +9914,7 @@
9914 "zh-cht": "確認刪除用戶{0}?",
9915 "ja": "ユーザー{0}の削除を確認しますか?",
9916 "xloc": [
9908 - "default.handlebars->33->2303"
9917 + "default.handlebars->33->2306"
9918 ]
9919 },
9920 {
@@ -9925,7 +9934,7 @@
9934 "zh-cht": "確認刪除用戶“ {0} ”的成員身份?",
9935 "ja": "ユーザー\\\"{0}\\\"のメンバーシップの削除を確認しますか?",
9936 "xloc": [
9928 - "default.handlebars->33->2205"
9937 + "default.handlebars->33->2208"
9938 ]
9939 },
9940 {
@@ -9945,7 +9954,7 @@
9954 "zh-cht": "確認刪除用戶群“ {0} ”的成員身份?",
9955 "ja": "ユーザーグループ\\\"{0}\\\"のメンバーシップの削除を確認しますか?",
9956 "xloc": [
9948 - "default.handlebars->33->2335"
9957 + "default.handlebars->33->2338"
9958 ]
9959 },
9960 {
@@ -9966,7 +9975,7 @@
9975 "ja": "1エントリのこの場所への移動を確認しますか?",
9976 "xloc": [
9977 "default-mobile.handlebars->11->439",
9969 - "default.handlebars->33->1142",
9978 + "default.handlebars->33->1144",
9979 "sharing.handlebars->11->72"
9980 ]
9981 },
@@ -9987,7 +9996,7 @@
9996 "zh-cht": "確認將{0}個條目移到該位置?",
9997 "ja": "{0}エントリのこの場所への移動を確認しますか?",
9998 "xloc": [
9990 - "default.handlebars->33->1141",
9999 + "default.handlebars->33->1143",
10000 "sharing.handlebars->11->71"
10001 ]
10002 },
@@ -10028,7 +10037,7 @@
10037 "zh-cht": "確認覆蓋?",
10038 "ja": "上書きを確認しますか?",
10039 "xloc": [
10031 - "default.handlebars->33->1875"
10040 + "default.handlebars->33->1877"
10041 ]
10042 },
10043 {
@@ -10048,8 +10057,8 @@
10057 "zh-cht": "確認刪除裝置“ {0} ”的訪問權限?",
10058 "ja": "デバイス「{0}」のアクセス権の削除を確認しますか?",
10059 "xloc": [
10051 - "default.handlebars->33->2195",
10052 - "default.handlebars->33->2326"
10060 + "default.handlebars->33->2198",
10061 + "default.handlebars->33->2329"
10062 ]
10063 },
10064 {
@@ -10069,8 +10078,8 @@
10078 "zh-cht": "確認刪除裝置群“ {0} ”的訪問權限?",
10079 "ja": "デバイスグループ「{0}」のアクセス権の削除を確認しますか?",
10080 "xloc": [
10072 - "default.handlebars->33->2197",
10073 - "default.handlebars->33->2339"
10081 + "default.handlebars->33->2200",
10082 + "default.handlebars->33->2342"
10083 ]
10084 },
10085 {
@@ -10090,7 +10099,7 @@
10099 "zh-cht": "確認刪除用戶“ {0} ”的訪問權限?",
10100 "ja": "ユーザー\\\"{0}\\\"のアクセス権の削除を確認しますか?",
10101 "xloc": [
10093 - "default.handlebars->33->2328"
10102 + "default.handlebars->33->2331"
10103 ]
10104 },
10105 {
@@ -10110,7 +10119,7 @@
10119 "zh-cht": "確認刪除用戶群“ {0} ”的訪問權限?",
10120 "ja": "ユーザーグループ「{0}」のアクセス権の削除を確認しますか?",
10121 "xloc": [
10113 - "default.handlebars->33->2331"
10122 + "default.handlebars->33->2334"
10123 ]
10124 },
10125 {
@@ -10130,8 +10139,8 @@
10139 "zh-cht": "確認刪除訪問權限?",
10140 "ja": "アクセス権の削除を確認しますか?",
10141 "xloc": [
10133 - "default.handlebars->33->2329",
10134 - "default.handlebars->33->2332"
10142 + "default.handlebars->33->2332",
10143 + "default.handlebars->33->2335"
10144 ]
10145 },
10146 {
@@ -10152,7 +10161,7 @@
10161 "ja": "認証アプリケーションの削除2段階ログインを確認しますか?",
10162 "xloc": [
10163 "default-mobile.handlebars->11->98",
10155 - "default.handlebars->33->1282"
10164 + "default.handlebars->33->1284"
10165 ]
10166 },
10167 {
@@ -10189,7 +10198,7 @@
10198 "zh-cht": "確認刪除設備共享“{0}”?",
10199 "ja": "デバイス共有\\\"{0}\\\"の削除を確認しますか?",
10200 "xloc": [
10192 - "default.handlebars->33->2324"
10201 + "default.handlebars->33->2327"
10202 ]
10203 },
10204 {
@@ -10236,7 +10245,7 @@
10245 "nl": "Verwijderen van push-authenticatieapparaat bevestigen?",
10246 "zh-chs": "确认移除推送认证设备?",
10247 "xloc": [
10239 - "default.handlebars->33->1284"
10248 + "default.handlebars->33->1286"
10249 ]
10250 },
10251 {
@@ -10256,7 +10265,7 @@
10265 "zh-cht": "確認刪除用戶“ {0} ”的權限?",
10266 "ja": "ユーザー「{0}」の権限の削除を確認しますか?",
10267 "xloc": [
10259 - "default.handlebars->33->1793"
10268 + "default.handlebars->33->1795"
10269 ]
10270 },
10271 {
@@ -10276,7 +10285,7 @@
10285 "zh-cht": "確認刪除用戶群“ {0} ”的權限?",
10286 "ja": "ユーザーグループ「{0}」の権限の削除を確認しますか?",
10287 "xloc": [
10279 - "default.handlebars->33->1795"
10288 + "default.handlebars->33->1797"
10289 ]
10290 },
10291 {
@@ -10290,7 +10299,7 @@
10299 "ru": "Подтвердить удаление этого токена входа?",
10300 "zh-chs": "确认删除此登录令牌?",
10301 "xloc": [
10293 - "default.handlebars->33->1577"
10302 + "default.handlebars->33->1579"
10303 ]
10304 },
10305 {
@@ -10348,7 +10357,7 @@
10357 "ja": "{1}エントリ{2}のうち{0}をこの場所に拘束しますか?",
10358 "xloc": [
10359 "default-mobile.handlebars->11->151",
10351 - "default.handlebars->33->1876"
10360 + "default.handlebars->33->1878"
10361 ]
10362 },
10363 {
@@ -10373,8 +10382,8 @@
10382 "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
10383 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3",
10384 "default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea1->1->3->connectbutton2span",
10376 - "default.handlebars->33->1103",
10377 - "default.handlebars->33->1631",
10385 + "default.handlebars->33->1105",
10386 + "default.handlebars->33->1633",
10387 "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1span",
10388 "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2span",
10389 "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3",
@@ -10415,10 +10424,7 @@
10424 "fr": "Se connecter à la demande de l'utilisateur",
10425 "hi": "उपयोगकर्ता के अनुरोध पर कनेक्ट करें",
10426 "ko": "ユーザーのリクエストに応じて接続",
10418 - "zh-chs": "根据用户请求连接",
10419 - "xloc": [
10420 - "default.handlebars->33->440"
10421 - ]
10427 + "zh-chs": "根据用户请求连接"
10428 },
10429 {
10430 "cs": "Připojit se na server",
@@ -10437,7 +10443,7 @@
10443 "zh-cht": "連接到伺服器",
10444 "ja": "サーバーに接続する",
10445 "xloc": [
10440 - "default.handlebars->33->1687"
10446 + "default.handlebars->33->1689"
10447 ]
10448 },
10449 {
@@ -10559,7 +10565,7 @@
10565 "zh-cht": "已連接的Intel&reg; AMT",
10566 "ja": "接続されたインテル&reg;AMT",
10567 "xloc": [
10562 - "default.handlebars->33->2433"
10568 + "default.handlebars->33->2436"
10569 ]
10570 },
10571 {
@@ -10579,7 +10585,7 @@
10585 "zh-cht": "已连接的用户",
10586 "ja": "接続ユーザー",
10587 "xloc": [
10582 - "default.handlebars->33->2438"
10588 + "default.handlebars->33->2441"
10589 ]
10590 },
10591 {
@@ -10600,7 +10606,7 @@
10606 "ja": "今すぐ接続",
10607 "xloc": [
10608 "default-mobile.handlebars->11->479",
10603 - "default.handlebars->33->1172"
10609 + "default.handlebars->33->1174"
10610 ]
10611 },
10612 {
@@ -10661,7 +10667,7 @@
10667 "default-mobile.handlebars->11->2",
10668 "default-mobile.handlebars->11->455",
10669 "default-mobile.handlebars->11->48",
10664 - "default.handlebars->33->1163",
10670 + "default.handlebars->33->1165",
10671 "default.handlebars->33->282",
10672 "default.handlebars->33->285",
10673 "default.handlebars->33->332",
@@ -10698,7 +10704,7 @@
10704 "zh-cht": "連接數量",
10705 "ja": "接続数",
10706 "xloc": [
10701 - "default.handlebars->33->2464"
10707 + "default.handlebars->33->2467"
10708 ]
10709 },
10710 {
@@ -10713,8 +10719,8 @@
10719 "zh-chs": "连接错误",
10720 "xloc": [
10721 "default-mobile.handlebars->11->418",
10716 - "default.handlebars->33->1090",
10717 - "default.handlebars->33->1112",
10722 + "default.handlebars->33->1092",
10723 + "default.handlebars->33->1114",
10724 "login2.handlebars->7->32"
10725 ]
10726 },
@@ -10735,7 +10741,7 @@
10741 "zh-cht": "連接轉發器",
10742 "ja": "接続リレー",
10743 "xloc": [
10738 - "default.handlebars->33->2497"
10744 + "default.handlebars->33->2500"
10745 ]
10746 },
10747 {
@@ -10796,9 +10802,9 @@
10802 "ja": "接続性",
10803 "xloc": [
10804 "default-mobile.handlebars->11->293",
10799 - "default.handlebars->33->1833",
10805 + "default.handlebars->33->1835",
10806 "default.handlebars->33->273",
10801 - "default.handlebars->33->733",
10807 + "default.handlebars->33->735",
10808 "default.handlebars->container->column_l->p21->p21main->1->1->meshConnChartDiv->1"
10809 ]
10810 },
@@ -10820,8 +10826,8 @@
10826 "ja": "コンソール",
10827 "xloc": [
10828 "default-mobile.handlebars->11->313",
10823 - "default.handlebars->33->823",
10824 - "default.handlebars->33->845",
10829 + "default.handlebars->33->825",
10830 + "default.handlebars->33->847",
10831 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevConsole",
10832 "default.handlebars->container->topbar->1->1->ServerSubMenuSpan->ServerSubMenu->1->0->ServerConsole",
10833 "default.handlebars->contextMenu->cxconsole"
@@ -10844,7 +10850,7 @@
10850 "zh-cht": "控制台 -",
10851 "ja": "コンソール -",
10852 "xloc": [
10847 - "default.handlebars->33->645"
10853 + "default.handlebars->33->647"
10854 ]
10855 },
10856 {
@@ -10864,8 +10870,8 @@
10870 "zh-cht": "控制",
10871 "ja": "コントロール",
10872 "xloc": [
10867 - "default.handlebars->33->822",
10868 - "default.handlebars->33->844",
10873 + "default.handlebars->33->824",
10874 + "default.handlebars->33->846",
10875 "messenger.handlebars->remoteImage->3->2"
10876 ]
10877 },
@@ -10886,7 +10892,7 @@
10892 "zh-cht": "Cookie編碼器",
10893 "ja": "Cookieエンコーダー",
10894 "xloc": [
10889 - "default.handlebars->33->2481"
10895 + "default.handlebars->33->2484"
10896 ]
10897 },
10898 {
@@ -10946,7 +10952,7 @@
10952 "ru": "Скопировать URL в буфер обмена",
10953 "zh-chs": "将 URL 复制到剪贴板",
10954 "xloc": [
10949 - "default.handlebars->33->464"
10955 + "default.handlebars->33->466"
10956 ]
10957 },
10958 {
@@ -10966,7 +10972,7 @@
10972 "zh-cht": "將Windows 32位代理URL複製到剪貼板",
10973 "ja": "Windows 32ビットエージェントのURLをクリップボードにコピー",
10974 "xloc": [
10969 - "default.handlebars->33->446"
10975 + "default.handlebars->33->448"
10976 ]
10977 },
10978 {
@@ -10986,7 +10992,7 @@
10992 "zh-cht": "將Windows 64位代理URL複製到剪貼板",
10993 "ja": "Windows 64ビットエージェントのURLをクリップボードにコピー",
10994 "xloc": [
10989 - "default.handlebars->33->450"
10995 + "default.handlebars->33->452"
10996 ]
10997 },
10998 {
@@ -11037,8 +11043,8 @@
11043 "zh-cht": "將代理URL複製到剪貼板",
11044 "ja": "エージェントのURLをクリップボードにコピー",
11045 "xloc": [
11040 - "default.handlebars->33->477",
11041 - "default.handlebars->33->479"
11046 + "default.handlebars->33->479",
11047 + "default.handlebars->33->481"
11048 ]
11049 },
11050 {
@@ -11058,8 +11064,8 @@
11064 "zh-cht": "複製連結到剪貼板",
11065 "ja": "リンクをクリップボードにコピー",
11066 "xloc": [
11061 - "default.handlebars->33->1844",
11062 - "default.handlebars->33->1863",
11067 + "default.handlebars->33->1846",
11068 + "default.handlebars->33->1865",
11069 "default.handlebars->33->223",
11070 "default.handlebars->33->245",
11071 "default.handlebars->33->247",
@@ -11083,7 +11089,7 @@
11089 "zh-cht": "將macOS代理URL複製到剪貼板",
11090 "ja": "macOSエージェントのURLをクリップボードにコピーします",
11091 "xloc": [
11086 - "default.handlebars->33->459"
11092 + "default.handlebars->33->461"
11093 ]
11094 },
11095 {
@@ -11125,8 +11131,8 @@
11131 "xloc": [
11132 "agentinvite.handlebars->container->column_l->5->linuxtab",
11133 "agentinvite.handlebars->container->column_l->5->linuxtab",
11128 - "default.handlebars->33->455",
11129 - "default.handlebars->33->473"
11134 + "default.handlebars->33->457",
11135 + "default.handlebars->33->475"
11136 ]
11137 },
11138 {
@@ -11166,7 +11172,7 @@
11172 "zh-cht": "複製:“{0}”到“{1}”",
11173 "ja": "コピー:「{0}」を「{1}」にコピー",
11174 "xloc": [
11169 - "default.handlebars->33->1935"
11175 + "default.handlebars->33->1937"
11176 ]
11177 },
11178 {
@@ -11312,7 +11318,7 @@
11318 "zh-cht": "核心伺服器",
11319 "ja": "コアサーバー",
11320 "xloc": [
11315 - "default.handlebars->33->2480"
11321 + "default.handlebars->33->2483"
11322 ]
11323 },
11324 {
@@ -11332,7 +11338,7 @@
11338 "zh-cht": "科西嘉文",
11339 "ja": "コルシカ",
11340 "xloc": [
11335 - "default.handlebars->33->1340"
11341 + "default.handlebars->33->1342"
11342 ]
11343 },
11344 {
@@ -11361,7 +11367,7 @@
11367 "zh-cht": "創建帳號",
11368 "ja": "アカウントを作成する",
11369 "xloc": [
11364 - "default.handlebars->33->2109",
11370 + "default.handlebars->33->2112",
11371 "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->12->1->1",
11372 "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1",
11373 "login2.handlebars->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1"
@@ -11407,7 +11413,7 @@
11413 "ru": "Создать токен входа",
11414 "zh-chs": "创建登录令牌",
11415 "xloc": [
11410 - "default.handlebars->33->1524",
11416 + "default.handlebars->33->1526",
11417 "default.handlebars->33->248"
11418 ]
11419 },
@@ -11428,7 +11434,7 @@
11434 "zh-cht": "創建用戶群",
11435 "ja": "ユーザーグループを作成",
11436 "xloc": [
11431 - "default.handlebars->33->2148"
11437 + "default.handlebars->33->2151"
11438 ]
11439 },
11440 {
@@ -11448,7 +11454,7 @@
11454 "zh-cht": "創建鏈結以與訪客共享此裝置",
11455 "ja": "このデバイスをゲストと共有するためのリンクを作成します",
11456 "xloc": [
11451 - "default.handlebars->33->752"
11457 + "default.handlebars->33->754"
11458 ]
11459 },
11460 {
@@ -11468,7 +11474,7 @@
11474 "zh-cht": "使用以下選項創建一個新的裝置群。",
11475 "ja": "以下のオプションを使用して、新しいデバイスグループを作成します。",
11476 "xloc": [
11471 - "default.handlebars->33->1554"
11477 + "default.handlebars->33->1556"
11478 ]
11479 },
11480 {
@@ -11502,7 +11508,7 @@
11508 "ru": "Создайте временные имя пользователя и пароль, которые можно использовать в качестве альтернативы для входа в вашу учетную запись. Это полезно для того, чтобы инструменты или другие службы могли получить доступ к вашей учетной записи.",
11509 "zh-chs": "创建一个临时用户名和密码,可用作您帐户的替代登录名。这对于允许工具或其他服务访问您的帐户非常有用。",
11510 "xloc": [
11505 - "default.handlebars->33->1505"
11511 + "default.handlebars->33->1507"
11512 ]
11513 },
11514 {
@@ -11522,7 +11528,7 @@
11528 "zh-cht": "創建文件夾(如果不存在)?",
11529 "ja": "存在しない場合はフォルダを作成しますか?",
11530 "xloc": [
11525 - "default.handlebars->33->563"
11531 + "default.handlebars->33->565"
11532 ]
11533 },
11534 {
@@ -11542,7 +11548,7 @@
11548 "zh-cht": "創建文件夾:“{0}”",
11549 "ja": "フォルダを作成:「{0}」",
11550 "xloc": [
11545 - "default.handlebars->33->1928"
11551 + "default.handlebars->33->1930"
11552 ]
11553 },
11554 {
@@ -11576,7 +11582,7 @@
11582 "zh-cht": "通過導入以下格式的JSON檔案一次創建多個帳戶:",
11583 "ja": "次の形式のJSONファイルをインポートして、一度に多くのアカウントを作成します。",
11584 "xloc": [
11579 - "default.handlebars->33->2073"
11585 + "default.handlebars->33->2076"
11586 ]
11587 },
11588 {
@@ -11618,7 +11624,7 @@
11624 "zh-cht": "創建的設備組:{0}",
11625 "ja": "作成されたデバイスグループ:{0}",
11626 "xloc": [
11621 - "default.handlebars->33->1939"
11627 + "default.handlebars->33->1941"
11628 ]
11629 },
11630 {
@@ -11638,7 +11644,7 @@
11644 "zh-cht": "創建一個鏈接,該鏈接允許沒有帳戶的訪客在有限的時間內遠程控制此設備。",
11645 "ja": "アカウントを持たないゲストがこのデバイスを期間限定でリモートコントロールできるようにするリンクを作成します。",
11646 "xloc": [
11641 - "default.handlebars->33->868"
11647 + "default.handlebars->33->870"
11648 ]
11649 },
11650 {
@@ -11692,7 +11698,7 @@
11698 "zh-cht": "創建",
11699 "ja": "作成",
11700 "xloc": [
11695 - "default.handlebars->33->2234"
11701 + "default.handlebars->33->2237"
11702 ]
11703 },
11704 {
@@ -11712,7 +11718,7 @@
11718 "zh-cht": "創作時間",
11719 "ja": "作成時間",
11720 "xloc": [
11715 - "default.handlebars->33->1613"
11721 + "default.handlebars->33->1615"
11722 ]
11723 },
11724 {
@@ -11754,8 +11760,8 @@
11760 "zh-cht": "創作者",
11761 "ja": "クリエーター",
11762 "xloc": [
11757 - "default.handlebars->33->1611",
11758 - "default.handlebars->33->1612"
11763 + "default.handlebars->33->1613",
11764 + "default.handlebars->33->1614"
11765 ]
11766 },
11767 {
@@ -11777,9 +11783,9 @@
11783 "xloc": [
11784 "default-mobile.handlebars->11->297",
11785 "default-mobile.handlebars->11->299",
11780 - "default.handlebars->33->1582",
11781 - "default.handlebars->33->737",
11782 - "default.handlebars->33->739"
11786 + "default.handlebars->33->1584",
11787 + "default.handlebars->33->739",
11788 + "default.handlebars->33->741"
11789 ]
11790 },
11791 {
@@ -11799,7 +11805,7 @@
11805 "zh-cht": "克里語",
11806 "ja": "クリー語",
11807 "xloc": [
11802 - "default.handlebars->33->1341"
11808 + "default.handlebars->33->1343"
11809 ]
11810 },
11811 {
@@ -11819,7 +11825,7 @@
11825 "zh-cht": "克羅地亞文",
11826 "ja": "クロアチア語",
11827 "xloc": [
11822 - "default.handlebars->33->1342"
11828 + "default.handlebars->33->1344"
11829 ]
11830 },
11831 {
@@ -11883,8 +11889,8 @@
11889 "xloc": [
11890 "default-mobile.handlebars->11->387",
11891 "default-mobile.handlebars->11->391",
11886 - "default.handlebars->33->1047",
11887 - "default.handlebars->33->1051",
11892 + "default.handlebars->33->1049",
11893 + "default.handlebars->33->1053",
11894 "default.handlebars->33->57",
11895 "sharing.handlebars->11->24"
11896 ]
@@ -12014,7 +12020,7 @@
12020 "zh-chs": "当前密码不正确。",
12021 "xloc": [
12022 "default-mobile.handlebars->11->664",
12017 - "default.handlebars->33->2407"
12023 + "default.handlebars->33->2410"
12024 ]
12025 },
12026 {
@@ -12086,7 +12092,7 @@
12092 "zh-cht": "捷克文",
12093 "ja": "チェコ語",
12094 "xloc": [
12089 - "default.handlebars->33->1343"
12095 + "default.handlebars->33->1345"
12096 ]
12097 },
12098 {
@@ -12126,7 +12132,7 @@
12132 "zh-cht": "丹麥文",
12133 "ja": "デンマーク語",
12134 "xloc": [
12129 - "default.handlebars->33->1344"
12135 + "default.handlebars->33->1346"
12136 ]
12137 },
12138 {
@@ -12161,7 +12167,7 @@
12167 "zh-cht": "數據通道",
12168 "ja": "データチャネル",
12169 "xloc": [
12164 - "default.handlebars->33->1014",
12170 + "default.handlebars->33->1016",
12171 "sharing.handlebars->11->11"
12172 ]
12173 },
@@ -12182,7 +12188,7 @@
12188 "zh-cht": "日期和時間",
12189 "ja": "日時",
12190 "xloc": [
12185 - "default.handlebars->33->1502"
12191 + "default.handlebars->33->1504"
12192 ]
12193 },
12194 {
@@ -12203,7 +12209,7 @@
12209 "ja": "日",
12210 "xloc": [
12211 "default-mobile.handlebars->11->341",
12206 - "default.handlebars->33->939"
12212 + "default.handlebars->33->941"
12213 ]
12214 },
12215 {
@@ -12223,7 +12229,7 @@
12229 "zh-cht": "停用",
12230 "ja": "非アクティブ化",
12231 "xloc": [
12226 - "default.handlebars->33->1666"
12232 + "default.handlebars->33->1668"
12233 ]
12234 },
12235 {
@@ -12243,7 +12249,7 @@
12249 "zh-cht": "如果設置停用CCM",
12250 "ja": "セットアップする場合はCCMを非アクティブ化する",
12251 "xloc": [
12246 - "default.handlebars->33->1678"
12252 + "default.handlebars->33->1680"
12253 ]
12254 },
12255 {
@@ -12281,7 +12287,7 @@
12287 "ja": "深い眠り",
12288 "xloc": [
12289 "default-mobile.handlebars->11->224",
12284 - "default.handlebars->33->490"
12290 + "default.handlebars->33->492"
12291 ]
12292 },
12293 {
@@ -12301,10 +12307,10 @@
12307 "zh-cht": "默認",
12308 "ja": "デフォルト",
12309 "xloc": [
12304 - "default.handlebars->33->2096",
12305 - "default.handlebars->33->2144",
12306 - "default.handlebars->33->2155",
12307 - "default.handlebars->33->2223"
12310 + "default.handlebars->33->2099",
12311 + "default.handlebars->33->2147",
12312 + "default.handlebars->33->2158",
12313 + "default.handlebars->33->2226"
12314 ]
12315 },
12316 {
@@ -12319,7 +12325,7 @@
12325 "zh-chs": "德尔",
12326 "xloc": [
12327 "default-mobile.handlebars->11->375",
12322 - "default.handlebars->33->1035"
12328 + "default.handlebars->33->1037"
12329 ]
12330 },
12331 {
@@ -12344,9 +12350,9 @@
12350 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1",
12351 "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1",
12352 "default-mobile.handlebars->dialog->idx_dlgButtonBar->5",
12347 - "default.handlebars->33->1131",
12348 - "default.handlebars->33->1870",
12349 - "default.handlebars->33->615",
12353 + "default.handlebars->33->1133",
12354 + "default.handlebars->33->1872",
12355 + "default.handlebars->33->617",
12356 "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
12357 "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
12358 "default.handlebars->container->dialog->idx_dlgButtonBar->5",
@@ -12377,7 +12383,7 @@
12383 "ja": "アカウントを削除する",
12384 "xloc": [
12385 "default-mobile.handlebars->11->108",
12380 - "default.handlebars->33->1539"
12386 + "default.handlebars->33->1541"
12387 ]
12388 },
12389 {
@@ -12397,7 +12403,7 @@
12403 "zh-cht": "刪除帳戶",
12404 "ja": "アカウントを削除",
12405 "xloc": [
12400 - "default.handlebars->33->2063"
12406 + "default.handlebars->33->2066"
12407 ]
12408 },
12409 {
@@ -12418,7 +12424,7 @@
12424 "ja": "デバイスを削除",
12425 "xloc": [
12426 "default-mobile.handlebars->11->302",
12421 - "default.handlebars->33->756"
12427 + "default.handlebars->33->758"
12428 ]
12429 },
12430 {
@@ -12440,9 +12446,9 @@
12446 "xloc": [
12447 "default-mobile.handlebars->11->576",
12448 "default-mobile.handlebars->11->579",
12443 - "default.handlebars->33->1661",
12444 - "default.handlebars->33->1662",
12445 - "default.handlebars->33->1695"
12449 + "default.handlebars->33->1663",
12450 + "default.handlebars->33->1664",
12451 + "default.handlebars->33->1697"
12452 ]
12453 },
12454 {
@@ -12463,7 +12469,7 @@
12469 "ja": "ノードを削除",
12470 "xloc": [
12471 "default-mobile.handlebars->11->349",
12466 - "default.handlebars->33->965"
12472 + "default.handlebars->33->967"
12473 ]
12474 },
12475 {
@@ -12483,7 +12489,7 @@
12489 "zh-cht": "刪除節點",
12490 "ja": "ノードを削除する",
12491 "xloc": [
12486 - "default.handlebars->33->538"
12492 + "default.handlebars->33->540"
12493 ]
12494 },
12495 {
@@ -12503,7 +12509,7 @@
12509 "zh-cht": "刪除用戶",
12510 "ja": "ユーザーを削除",
12511 "xloc": [
12506 - "default.handlebars->33->2275"
12512 + "default.handlebars->33->2278"
12513 ]
12514 },
12515 {
@@ -12523,8 +12529,8 @@
12529 "zh-cht": "刪除用戶群組",
12530 "ja": "ユーザーグループを削除",
12531 "xloc": [
12526 - "default.handlebars->33->2193",
12527 - "default.handlebars->33->2203"
12532 + "default.handlebars->33->2196",
12533 + "default.handlebars->33->2206"
12534 ]
12535 },
12536 {
@@ -12544,7 +12550,7 @@
12550 "zh-cht": "刪除用戶群組",
12551 "ja": "ユーザーグループの削除",
12552 "xloc": [
12547 - "default.handlebars->33->2142"
12553 + "default.handlebars->33->2145"
12554 ]
12555 },
12556 {
@@ -12564,7 +12570,7 @@
12570 "zh-cht": "刪除用戶{0}",
12571 "ja": "ユーザーを削除{0}",
12572 "xloc": [
12567 - "default.handlebars->33->2302"
12573 + "default.handlebars->33->2305"
12574 ]
12575 },
12576 {
@@ -12585,7 +12591,7 @@
12591 "ja": "アカウントを削除する",
12592 "xloc": [
12593 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountActions->3->9->0",
12588 - "default.handlebars->33->2059",
12594 + "default.handlebars->33->2062",
12595 "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7"
12596 ]
12597 },
@@ -12606,7 +12612,7 @@
12612 "zh-cht": "刪除裝置",
12613 "ja": "デバイスを削除する",
12614 "xloc": [
12609 - "default.handlebars->33->528"
12615 + "default.handlebars->33->530"
12616 ]
12617 },
12618 {
@@ -12626,7 +12632,7 @@
12632 "zh-cht": "刪除群組",
12633 "ja": "グループを削除",
12634 "xloc": [
12629 - "default.handlebars->33->2138"
12635 + "default.handlebars->33->2141"
12636 ]
12637 },
12638 {
@@ -12646,7 +12652,7 @@
12652 "zh-cht": "刪除項目?",
12653 "ja": "アイテムを削除しますか?",
12654 "xloc": [
12649 - "default.handlebars->33->616"
12655 + "default.handlebars->33->618"
12656 ]
12657 },
12658 {
@@ -12666,7 +12672,7 @@
12672 "zh-cht": "遞歸刪除:“{0}”,{1}個元素已刪除",
12673 "ja": "再帰的に削除:\\\"{0}\\\"、{1}要素を削除",
12674 "xloc": [
12669 - "default.handlebars->33->1930"
12675 + "default.handlebars->33->1932"
12676 ]
12677 },
12678 {
@@ -12688,8 +12694,8 @@
12694 "xloc": [
12695 "default-mobile.handlebars->11->148",
12696 "default-mobile.handlebars->11->431",
12691 - "default.handlebars->33->1133",
12692 - "default.handlebars->33->1872",
12697 + "default.handlebars->33->1135",
12698 + "default.handlebars->33->1874",
12699 "sharing.handlebars->11->63"
12700 ]
12701 },
@@ -12710,7 +12716,7 @@
12716 "zh-cht": "刪除用戶群組{0}?",
12717 "ja": "ユーザーグループ{0}を削除しますか?",
12718 "xloc": [
12713 - "default.handlebars->33->2201"
12719 + "default.handlebars->33->2204"
12720 ]
12721 },
12722 {
@@ -12732,8 +12738,8 @@
12738 "xloc": [
12739 "default-mobile.handlebars->11->147",
12740 "default-mobile.handlebars->11->430",
12735 - "default.handlebars->33->1132",
12736 - "default.handlebars->33->1871",
12741 + "default.handlebars->33->1134",
12742 + "default.handlebars->33->1873",
12743 "sharing.handlebars->11->62"
12744 ]
12745 },
@@ -12774,7 +12780,7 @@
12780 "zh-cht": "刪除:“{0}”",
12781 "ja": "削除:「{0}」",
12782 "xloc": [
12777 - "default.handlebars->33->1929"
12783 + "default.handlebars->33->1931"
12784 ]
12785 },
12786 {
@@ -12794,7 +12800,7 @@
12800 "zh-cht": "刪除:“{0}”,已刪除{1}個元素",
12801 "ja": "削除:「{0}」、{1}要素を削除",
12802 "xloc": [
12797 - "default.handlebars->33->1931"
12803 + "default.handlebars->33->1933"
12804 ]
12805 },
12806 {
@@ -12815,7 +12821,7 @@
12821 "ja": "拒否されました",
12822 "xloc": [
12823 "default-mobile.handlebars->11->362",
12818 - "default.handlebars->33->1010",
12824 + "default.handlebars->33->1012",
12825 "sharing.handlebars->11->29",
12826 "sharing.handlebars->11->7"
12827 ]
@@ -12925,18 +12931,18 @@
12931 "default-mobile.handlebars->11->492",
12932 "default-mobile.handlebars->11->567",
12933 "default-mobile.handlebars->11->581",
12928 - "default.handlebars->33->1005",
12929 - "default.handlebars->33->1185",
12930 - "default.handlebars->33->1195",
12931 - "default.handlebars->33->1560",
12932 - "default.handlebars->33->1608",
12933 - "default.handlebars->33->1697",
12934 - "default.handlebars->33->2147",
12935 - "default.handlebars->33->2157",
12936 - "default.handlebars->33->2158",
12937 - "default.handlebars->33->2199",
12938 - "default.handlebars->33->656",
12939 - "default.handlebars->33->657",
12934 + "default.handlebars->33->1007",
12935 + "default.handlebars->33->1187",
12936 + "default.handlebars->33->1197",
12937 + "default.handlebars->33->1562",
12938 + "default.handlebars->33->1610",
12939 + "default.handlebars->33->1699",
12940 + "default.handlebars->33->2150",
12941 + "default.handlebars->33->2160",
12942 + "default.handlebars->33->2161",
12943 + "default.handlebars->33->2202",
12944 + "default.handlebars->33->658",
12945 + "default.handlebars->33->659",
12946 "default.handlebars->33->95",
12947 "default.handlebars->container->column_l->p42->p42tbl->1->0->3"
12948 ]
@@ -12976,13 +12982,13 @@
12982 "ja": "デスクトップ",
12983 "xloc": [
12984 "default-mobile.handlebars->11->309",
12979 - "default.handlebars->33->1077",
12980 - "default.handlebars->33->1703",
12981 - "default.handlebars->33->2357",
12982 - "default.handlebars->33->2458",
12983 - "default.handlebars->33->621",
12984 - "default.handlebars->33->803",
12985 - "default.handlebars->33->870",
12985 + "default.handlebars->33->1079",
12986 + "default.handlebars->33->1705",
12987 + "default.handlebars->33->2360",
12988 + "default.handlebars->33->2461",
12989 + "default.handlebars->33->623",
12990 + "default.handlebars->33->805",
12991 + "default.handlebars->33->872",
12992 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop",
12993 "default.handlebars->contextMenu->cxdesktop",
12994 "sharing.handlebars->11->23",
@@ -13000,8 +13006,8 @@
13006 "ru": "Рабочий стол + Файлы",
13007 "zh-chs": "桌面 + 文件",
13008 "xloc": [
13003 - "default.handlebars->33->807",
13004 - "default.handlebars->33->873"
13009 + "default.handlebars->33->809",
13010 + "default.handlebars->33->875"
13011 ]
13012 },
13013 {
@@ -13015,7 +13021,7 @@
13021 "ru": "Рабочий стол + Терминал",
13022 "zh-chs": "桌面 + 终端",
13023 "xloc": [
13018 - "default.handlebars->33->804"
13024 + "default.handlebars->33->806"
13025 ]
13026 },
13027 {
@@ -13029,8 +13035,8 @@
13035 "ru": "Рабочий стол + Терминал + Файлы",
13036 "zh-chs": "桌面 + 终端 + 文件",
13037 "xloc": [
13032 - "default.handlebars->33->808",
13033 - "default.handlebars->33->875"
13038 + "default.handlebars->33->810",
13039 + "default.handlebars->33->877"
13040 ]
13041 },
13042 {
@@ -13063,7 +13069,7 @@
13069 "nl": "Desktop Multiplex",
13070 "zh-chs": "桌面复用",
13071 "xloc": [
13066 - "default.handlebars->33->2463"
13072 + "default.handlebars->33->2466"
13073 ]
13074 },
13075 {
@@ -13083,10 +13089,10 @@
13089 "zh-cht": "桌面通知",
13090 "ja": "デスクトップ通知",
13091 "xloc": [
13086 - "default.handlebars->33->1622",
13087 - "default.handlebars->33->2162",
13088 - "default.handlebars->33->2249",
13089 - "default.handlebars->33->714"
13092 + "default.handlebars->33->1624",
13093 + "default.handlebars->33->2165",
13094 + "default.handlebars->33->2252",
13095 + "default.handlebars->33->716"
13096 ]
13097 },
13098 {
@@ -13106,10 +13112,10 @@
13112 "zh-cht": "桌面提示",
13113 "ja": "デスクトッププロンプト",
13114 "xloc": [
13109 - "default.handlebars->33->1621",
13110 - "default.handlebars->33->2161",
13111 - "default.handlebars->33->2248",
13112 - "default.handlebars->33->713"
13115 + "default.handlebars->33->1623",
13116 + "default.handlebars->33->2164",
13117 + "default.handlebars->33->2251",
13118 + "default.handlebars->33->715"
13119 ]
13120 },
13121 {
@@ -13129,10 +13135,10 @@
13135 "zh-cht": "桌面提示+工具欄",
13136 "ja": "デスクトッププロンプト+ツールバー",
13137 "xloc": [
13132 - "default.handlebars->33->1619",
13133 - "default.handlebars->33->2159",
13134 - "default.handlebars->33->2246",
13135 - "default.handlebars->33->711"
13138 + "default.handlebars->33->1621",
13139 + "default.handlebars->33->2162",
13140 + "default.handlebars->33->2249",
13141 + "default.handlebars->33->713"
13142 ]
13143 },
13144 {
@@ -13146,7 +13152,7 @@
13152 "ru": "Сеанс рабочего стола",
13153 "zh-chs": "桌面会话",
13154 "xloc": [
13149 - "default.handlebars->33->2350"
13155 + "default.handlebars->33->2353"
13156 ]
13157 },
13158 {
@@ -13217,10 +13223,10 @@
13223 "zh-cht": "桌面工具欄",
13224 "ja": "デスクトップツールバー",
13225 "xloc": [
13220 - "default.handlebars->33->1620",
13221 - "default.handlebars->33->2160",
13222 - "default.handlebars->33->2247",
13223 - "default.handlebars->33->712"
13226 + "default.handlebars->33->1622",
13227 + "default.handlebars->33->2163",
13228 + "default.handlebars->33->2250",
13229 + "default.handlebars->33->714"
13230 ]
13231 },
13232 {
@@ -13234,7 +13240,7 @@
13240 "ru": "Рабочий стол, только просмотр",
13241 "zh-chs": "桌面,仅查看",
13242 "xloc": [
13237 - "default.handlebars->33->876"
13243 + "default.handlebars->33->878"
13244 ]
13245 },
13246 {
@@ -13254,7 +13260,7 @@
13260 "zh-cht": "桌面時段",
13261 "ja": "DesktopSession",
13262 "xloc": [
13257 - "default.handlebars->33->1076"
13263 + "default.handlebars->33->1078"
13264 ]
13265 },
13266 {
@@ -13353,11 +13359,11 @@
13359 "ja": "デバイス",
13360 "xloc": [
13361 "default-mobile.handlebars->11->487",
13356 - "default.handlebars->33->1180",
13357 - "default.handlebars->33->1288",
13358 - "default.handlebars->33->1726",
13362 + "default.handlebars->33->1182",
13363 + "default.handlebars->33->1290",
13364 + "default.handlebars->33->1728",
13365 "default.handlebars->33->204",
13360 - "default.handlebars->33->2321",
13366 + "default.handlebars->33->2324",
13367 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5"
13368 ]
13369 },
@@ -13380,7 +13386,7 @@
13386 "xloc": [
13387 "default-mobile.handlebars->11->330",
13388 "default-mobile.handlebars->11->339",
13383 - "default.handlebars->33->922"
13389 + "default.handlebars->33->924"
13390 ]
13391 },
13392 {
@@ -13436,15 +13442,15 @@
13442 "xloc": [
13443 "agent-translations.json",
13444 "default-mobile.handlebars->11->642",
13439 - "default.handlebars->33->1721",
13440 - "default.handlebars->33->1724",
13441 - "default.handlebars->33->1725",
13442 - "default.handlebars->33->2010",
13443 - "default.handlebars->33->2185",
13444 - "default.handlebars->33->2191",
13445 - "default.handlebars->33->2309",
13446 - "default.handlebars->33->2366",
13447 - "default.handlebars->33->2385"
13445 + "default.handlebars->33->1723",
13446 + "default.handlebars->33->1726",
13447 + "default.handlebars->33->1727",
13448 + "default.handlebars->33->2013",
13449 + "default.handlebars->33->2188",
13450 + "default.handlebars->33->2194",
13451 + "default.handlebars->33->2312",
13452 + "default.handlebars->33->2369",
13453 + "default.handlebars->33->2388"
13454 ]
13455 },
13456 {
@@ -13465,7 +13471,7 @@
13471 "ja": "デバイスグループユーザー",
13472 "xloc": [
13473 "default-mobile.handlebars->11->631",
13468 - "default.handlebars->33->1791"
13474 + "default.handlebars->33->1793"
13475 ]
13476 },
13477 {
@@ -13486,11 +13492,11 @@
13492 "ja": "デバイスグループ",
13493 "xloc": [
13494 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->3",
13489 - "default.handlebars->33->2026",
13490 - "default.handlebars->33->2132",
13491 - "default.handlebars->33->2172",
13492 - "default.handlebars->33->2243",
13493 - "default.handlebars->33->2436",
13495 + "default.handlebars->33->2029",
13496 + "default.handlebars->33->2135",
13497 + "default.handlebars->33->2175",
13498 + "default.handlebars->33->2246",
13499 + "default.handlebars->33->2439",
13500 "default.handlebars->container->column_l->p2->p2info->9"
13501 ]
13502 },
@@ -13511,7 +13517,7 @@
13517 "zh-cht": "裝置訊息輸出",
13518 "ja": "デバイス情報のエクスポート",
13519 "xloc": [
13514 - "default.handlebars->33->578"
13520 + "default.handlebars->33->580"
13521 ]
13522 },
13523 {
@@ -13531,7 +13537,7 @@
13537 "zh-cht": "裝置位置",
13538 "ja": "デバイスの場所",
13539 "xloc": [
13534 - "default.handlebars->33->966"
13540 + "default.handlebars->33->968"
13541 ]
13542 },
13543 {
@@ -13551,7 +13557,7 @@
13557 "zh-cht": "裝置訊息",
13558 "ja": "デバイスメッセージ",
13559 "xloc": [
13554 - "default.handlebars->33->860"
13560 + "default.handlebars->33->862"
13561 ]
13562 },
13563 {
@@ -13572,8 +13578,8 @@
13578 "ja": "装置名",
13579 "xloc": [
13580 "default-mobile.handlebars->11->355",
13575 - "default.handlebars->33->1003",
13576 - "default.handlebars->33->2365",
13581 + "default.handlebars->33->1005",
13582 + "default.handlebars->33->2368",
13583 "default.handlebars->33->348",
13584 "default.handlebars->33->357",
13585 "player.handlebars->3->9"
@@ -13596,8 +13602,8 @@
13602 "zh-cht": "裝置通知",
13603 "ja": "デバイス通知",
13604 "xloc": [
13599 - "default.handlebars->33->559",
13600 - "default.handlebars->33->865"
13605 + "default.handlebars->33->561",
13606 + "default.handlebars->33->867"
13607 ]
13608 },
13609 {
@@ -13657,7 +13663,7 @@
13663 "zh-cht": "設備共享鏈接",
13664 "ja": "デバイス共有リンク",
13665 "xloc": [
13660 - "default.handlebars->33->800"
13666 + "default.handlebars->33->802"
13667 ]
13668 },
13669 {
@@ -13703,9 +13709,9 @@
13709 "default-mobile.handlebars->11->259",
13710 "default-mobile.handlebars->11->261",
13711 "default-mobile.handlebars->11->263",
13706 - "default.handlebars->33->658",
13712 "default.handlebars->33->660",
13708 - "default.handlebars->33->662"
13713 + "default.handlebars->33->662",
13714 + "default.handlebars->33->664"
13715 ]
13716 },
13717 {
@@ -13738,8 +13744,8 @@
13744 "zh-cht": "裝置連接。",
13745 "ja": "デバイス接続。",
13746 "xloc": [
13741 - "default.handlebars->33->1527",
13742 - "default.handlebars->33->1812"
13747 + "default.handlebars->33->1529",
13748 + "default.handlebars->33->1814"
13749 ]
13750 },
13751 {
@@ -13759,8 +13765,8 @@
13765 "zh-cht": "裝置斷開連接。",
13766 "ja": "デバイスの切断。",
13767 "xloc": [
13762 - "default.handlebars->33->1528",
13763 - "default.handlebars->33->1813"
13768 + "default.handlebars->33->1530",
13769 + "default.handlebars->33->1815"
13770 ]
13771 },
13772 {
@@ -13780,7 +13786,7 @@
13786 "zh-cht": "設備組已創建:{0}",
13787 "ja": "作成されたデバイスグループ:{0}",
13788 "xloc": [
13783 - "default.handlebars->33->1960"
13789 + "default.handlebars->33->1962"
13790 ]
13791 },
13792 {
@@ -13800,7 +13806,7 @@
13806 "zh-cht": "設備組已刪除:{0}",
13807 "ja": "削除されたデバイスグループ:{0}",
13808 "xloc": [
13803 - "default.handlebars->33->1961"
13809 + "default.handlebars->33->1963"
13810 ]
13811 },
13812 {
@@ -13820,7 +13826,7 @@
13826 "zh-cht": "設備組成員身份已更改:{0}",
13827 "ja": "デバイスグループメンバーシップが変更されました:{0}",
13828 "xloc": [
13823 - "default.handlebars->33->1962"
13829 + "default.handlebars->33->1964"
13830 ]
13831 },
13832 {
@@ -13841,7 +13847,7 @@
13847 "ja": "デバイスグループのメモは、他のデバイスグループ管理者が表示および変更できます。",
13848 "xloc": [
13849 "default-mobile.handlebars->11->337",
13844 - "default.handlebars->33->857"
13850 + "default.handlebars->33->859"
13851 ]
13852 },
13853 {
@@ -13861,7 +13867,7 @@
13867 "zh-cht": "設備組通知已更改",
13868 "ja": "デバイスグループの通知が変更されました",
13869 "xloc": [
13864 - "default.handlebars->33->1957"
13870 + "default.handlebars->33->1959"
13871 ]
13872 },
13873 {
@@ -13881,7 +13887,7 @@
13887 "zh-cht": "未刪除的設備組:{0}",
13888 "ja": "デバイスグループの削除を取り消しました:{0}",
13889 "xloc": [
13884 - "default.handlebars->33->1940"
13890 + "default.handlebars->33->1942"
13891 ]
13892 },
13893 {
@@ -13904,7 +13910,7 @@
13910 "default-mobile.handlebars->11->192",
13911 "default-mobile.handlebars->11->248",
13912 "default.handlebars->33->290",
13907 - "default.handlebars->33->642"
13913 + "default.handlebars->33->644"
13914 ]
13915 },
13916 {
@@ -13924,7 +13930,7 @@
13930 "zh-cht": "檢測到裝置,但無法獲得電源狀態。",
13931 "ja": "デバイスは検出されましたが、電源状態を取得できませんでした。",
13932 "xloc": [
13927 - "default.handlebars->33->495"
13933 + "default.handlebars->33->497"
13934 ]
13935 },
13936 {
@@ -13945,7 +13951,7 @@
13951 "ja": "デバイスは休止状態です(S4)",
13952 "xloc": [
13953 "default-mobile.handlebars->11->232",
13948 - "default.handlebars->33->501"
13954 + "default.handlebars->33->503"
13955 ]
13956 },
13957 {
@@ -13966,7 +13972,7 @@
13972 "ja": "デバイスはディープスリープ状態です(S3)",
13973 "xloc": [
13974 "default-mobile.handlebars->11->231",
13969 - "default.handlebars->33->500"
13975 + "default.handlebars->33->502"
13976 ]
13977 },
13978 {
@@ -13986,7 +13992,7 @@
13992 "zh-cht": "裝置處於深度睡眠狀態(S3)。",
13993 "ja": "デバイスはディープスリープ状態(S3)です。",
13994 "xloc": [
13989 - "default.handlebars->33->489"
13995 + "default.handlebars->33->491"
13996 ]
13997 },
13998 {
@@ -14006,7 +14012,7 @@
14012 "zh-cht": "裝置處於休眠狀態(S4)。",
14013 "ja": "デバイスは休止状態です(S4)。",
14014 "xloc": [
14009 - "default.handlebars->33->491"
14015 + "default.handlebars->33->493"
14016 ]
14017 },
14018 {
@@ -14026,7 +14032,7 @@
14032 "zh-cht": "裝置處於關機狀態(S5)。",
14033 "ja": "デバイスは電源オフ状態です(S5)。",
14034 "xloc": [
14029 - "default.handlebars->33->493"
14035 + "default.handlebars->33->495"
14036 ]
14037 },
14038 {
@@ -14047,7 +14053,7 @@
14053 "ja": "デバイスはスリープ状態です(S1)",
14054 "xloc": [
14055 "default-mobile.handlebars->11->229",
14050 - "default.handlebars->33->498"
14056 + "default.handlebars->33->500"
14057 ]
14058 },
14059 {
@@ -14067,7 +14073,7 @@
14073 "zh-cht": "裝置處於睡眠狀態(S1)。",
14074 "ja": "デバイスはスリープ状態(S1)です。",
14075 "xloc": [
14070 - "default.handlebars->33->485"
14076 + "default.handlebars->33->487"
14077 ]
14078 },
14079 {
@@ -14088,7 +14094,7 @@
14094 "ja": "デバイスはスリープ状態です(S2)",
14095 "xloc": [
14096 "default-mobile.handlebars->11->230",
14091 - "default.handlebars->33->499"
14097 + "default.handlebars->33->501"
14098 ]
14099 },
14100 {
@@ -14108,7 +14114,7 @@
14114 "zh-cht": "裝置處於睡眠狀態(S2)。",
14115 "ja": "デバイスはスリープ状態(S2)です。",
14116 "xloc": [
14111 - "default.handlebars->33->487"
14117 + "default.handlebars->33->489"
14118 ]
14119 },
14120 {
@@ -14129,7 +14135,7 @@
14135 "ja": "デバイスはソフトオフ状態です(S5)",
14136 "xloc": [
14137 "default-mobile.handlebars->11->233",
14132 - "default.handlebars->33->502"
14138 + "default.handlebars->33->504"
14139 ]
14140 },
14141 {
@@ -14152,7 +14158,7 @@
14158 "default-mobile.handlebars->11->191",
14159 "default-mobile.handlebars->11->247",
14160 "default.handlebars->33->289",
14155 - "default.handlebars->33->641"
14161 + "default.handlebars->33->643"
14162 ]
14163 },
14164 {
@@ -14173,7 +14179,7 @@
14179 "ja": "デバイスに電源が入っています",
14180 "xloc": [
14181 "default-mobile.handlebars->11->228",
14176 - "default.handlebars->33->497"
14182 + "default.handlebars->33->499"
14183 ]
14184 },
14185 {
@@ -14193,7 +14199,7 @@
14199 "zh-cht": "裝置已連接電源。",
14200 "ja": "デバイスの電源が入っています。",
14201 "xloc": [
14196 - "default.handlebars->33->483"
14202 + "default.handlebars->33->485"
14203 ]
14204 },
14205 {
@@ -14214,7 +14220,7 @@
14220 "ja": "デバイスは存在しますが、電源状態を判別できません",
14221 "xloc": [
14222 "default-mobile.handlebars->11->234",
14217 - "default.handlebars->33->503"
14223 + "default.handlebars->33->505"
14224 ]
14225 },
14226 {
@@ -14234,7 +14240,7 @@
14240 "zh-cht": "裝置名稱",
14241 "ja": "装置名",
14242 "xloc": [
14237 - "default.handlebars->33->633"
14243 + "default.handlebars->33->635"
14244 ]
14245 },
14246 {
@@ -14254,7 +14260,7 @@
14260 "zh-cht": "設備通知",
14261 "ja": "デバイス通知",
14262 "xloc": [
14257 - "default.handlebars->33->525"
14263 + "default.handlebars->33->527"
14264 ]
14265 },
14266 {
@@ -14268,7 +14274,7 @@
14274 "ru": "Устройство Intel(R) AMT ACM запросило активацию TLS, полное доменное имя: {0}",
14275 "zh-chs": "设备请求 Intel(R) AMT ACM TLS 激活,FQDN:{0}",
14276 "xloc": [
14271 - "default.handlebars->33->1995"
14277 + "default.handlebars->33->1997"
14278 ]
14279 },
14280 {
@@ -14288,7 +14294,7 @@
14294 "zh-cht": "設備請求激活Intel(R)AMT ACM,FQDN:{0}",
14295 "ja": "デバイスがIntel(R)AMT ACMアクティベーションを要求しました、FQDN:{0}",
14296 "xloc": [
14291 - "default.handlebars->33->1942"
14297 + "default.handlebars->33->1944"
14298 ]
14299 },
14300 {
@@ -14325,9 +14331,9 @@
14331 "zh-cht": "裝置",
14332 "ja": "デバイス",
14333 "xloc": [
14328 - "default.handlebars->33->1660",
14329 - "default.handlebars->33->2133",
14330 - "default.handlebars->33->2173"
14334 + "default.handlebars->33->1662",
14335 + "default.handlebars->33->2136",
14336 + "default.handlebars->33->2176"
14337 ]
14338 },
14339 {
@@ -14357,7 +14363,7 @@
14363 "ja": "無効",
14364 "xloc": [
14365 "default-mobile.handlebars->11->472",
14360 - "default.handlebars->33->707"
14366 + "default.handlebars->33->709"
14367 ]
14368 },
14369 {
@@ -14377,7 +14383,7 @@
14383 "zh-cht": "禁用的電子郵件兩因素身份驗證",
14384 "ja": "電子メールの二要素認証を無効化",
14385 "xloc": [
14380 - "default.handlebars->33->1973"
14386 + "default.handlebars->33->1975"
14387 ]
14388 },
14389 {
@@ -14401,8 +14407,8 @@
14407 "default-mobile.handlebars->11->411",
14408 "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
14409 "default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea1->1->3->disconnectbutton2span",
14404 - "default.handlebars->33->1104",
14405 - "default.handlebars->33->1632",
14410 + "default.handlebars->33->1106",
14411 + "default.handlebars->33->1634",
14412 "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->disconnectbutton1span",
14413 "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->disconnectbutton2span",
14414 "sharing.handlebars->11->43",
@@ -14506,7 +14512,7 @@
14512 "zh-cht": "在遠程裝置上顯示一個訊息框。",
14513 "ja": "リモートデバイスにメッセージボックスを表示します。",
14514 "xloc": [
14509 - "default.handlebars->33->861"
14515 + "default.handlebars->33->863"
14516 ]
14517 },
14518 {
@@ -14546,7 +14552,7 @@
14552 "zh-cht": "在遠程裝置上顯示短信",
14553 "ja": "リモートデバイスにテキストメッセージを表示する",
14554 "xloc": [
14549 - "default.handlebars->33->748"
14555 + "default.handlebars->33->750"
14556 ]
14557 },
14558 {
@@ -14575,7 +14581,7 @@
14581 "zh-cht": "顯示裝置群名稱",
14582 "ja": "デバイスグループ名を表示する",
14583 "xloc": [
14578 - "default.handlebars->33->1526"
14584 + "default.handlebars->33->1528"
14585 ]
14586 },
14587 {
@@ -14595,7 +14601,7 @@
14601 "zh-cht": "顯示名稱",
14602 "ja": "表示名",
14603 "xloc": [
14598 - "default.handlebars->33->1062"
14604 + "default.handlebars->33->1064"
14605 ]
14606 },
14607 {
@@ -14615,7 +14621,7 @@
14621 "zh-cht": "顯示公共鏈結",
14622 "ja": "公開リンクを表示",
14623 "xloc": [
14618 - "default.handlebars->33->1843"
14624 + "default.handlebars->33->1845"
14625 ]
14626 },
14627 {
@@ -14629,7 +14635,7 @@
14635 "ru": "Экран {0}",
14636 "zh-chs": "显示{0}",
14637 "xloc": [
14632 - "default.handlebars->33->1079"
14638 + "default.handlebars->33->1081"
14639 ]
14640 },
14641 {
@@ -14649,7 +14655,7 @@
14655 "zh-cht": "顯示消息框,標題= “{0}”,消息= “{1}”",
14656 "ja": "メッセージボックスを表示しています、title = \\\"{0}\\\"、message = \\\"{1}\\\"",
14657 "xloc": [
14652 - "default.handlebars->33->1902"
14658 + "default.handlebars->33->1904"
14659 ]
14660 },
14661 {
@@ -14669,7 +14675,7 @@
14675 "zh-cht": "顯示吐司消息,標題= “{0}”,消息= “{1}”",
14676 "ja": "トーストメッセージを表示しています、title = \\\"{0}\\\"、message = \\\"{1}\\\"",
14677 "xloc": [
14672 - "default.handlebars->33->1910"
14678 + "default.handlebars->33->1912"
14679 ]
14680 },
14681 {
@@ -14689,8 +14695,8 @@
14695 "zh-cht": "什麼都不做",
14696 "ja": "何もしない",
14697 "xloc": [
14692 - "default.handlebars->33->1681",
14693 - "default.handlebars->33->1685"
14698 + "default.handlebars->33->1683",
14699 + "default.handlebars->33->1687"
14700 ]
14701 },
14702 {
@@ -14710,10 +14716,10 @@
14716 "zh-cht": "域",
14717 "ja": "ドメイン",
14718 "xloc": [
14713 - "default.handlebars->33->2097",
14714 - "default.handlebars->33->2145",
14715 - "default.handlebars->33->2154",
14716 - "default.handlebars->33->2222",
14719 + "default.handlebars->33->2100",
14720 + "default.handlebars->33->2148",
14721 + "default.handlebars->33->2157",
14722 + "default.handlebars->33->2225",
14723 "mstsc.handlebars->main->1->3->1->2->1->0",
14724 "mstsc.handlebars->main->1->3->1->2->3"
14725 ]
@@ -14744,7 +14750,7 @@
14750 "zh-cht": "請勿更改,如果設置請保留CCM",
14751 "ja": "変更しないでください。セットアップする場合はCCMを維持してください",
14752 "xloc": [
14747 - "default.handlebars->33->1677"
14753 + "default.handlebars->33->1679"
14754 ]
14755 },
14756 {
@@ -14781,7 +14787,7 @@
14787 "zh-cht": "不要連接到伺服器",
14788 "ja": "サーバーに接続しない",
14789 "xloc": [
14784 - "default.handlebars->33->1686"
14790 + "default.handlebars->33->1688"
14791 ]
14792 },
14793 {
@@ -14861,7 +14867,7 @@
14867 "zh-chs": "下",
14868 "xloc": [
14869 "default-mobile.handlebars->11->383",
14864 - "default.handlebars->33->1043"
14870 + "default.handlebars->33->1045"
14871 ]
14872 },
14873 {
@@ -14939,7 +14945,7 @@
14945 "ja": "ダウンロードファイル",
14946 "xloc": [
14947 "default-mobile.handlebars->11->450",
14942 - "default.handlebars->33->1152",
14948 + "default.handlebars->33->1154",
14949 "sharing.handlebars->11->82"
14950 ]
14951 },
@@ -14980,7 +14986,7 @@
14986 "zh-cht": "下載MeshCmd",
14987 "ja": "MeshCmdをダウンロード",
14988 "xloc": [
14983 - "default.handlebars->33->991"
14989 + "default.handlebars->33->993"
14990 ]
14991 },
14992 {
@@ -15040,7 +15046,7 @@
15046 "zh-cht": "下載報告",
15047 "ja": "レポートをダウンロード",
15048 "xloc": [
15043 - "default.handlebars->33->2015",
15049 + "default.handlebars->33->2018",
15050 "default.handlebars->container->column_l->p3->3->1->0->3"
15051 ]
15052 },
@@ -15061,7 +15067,7 @@
15067 "zh-cht": "下載帶有指令檔案的“ meshcmd”,以通過此服務器將網絡讯息發送到該裝置。緊記編輯meshaction.txt並新增你的帳戶密碼或進行任何必要的更改。",
15068 "ja": "このサーバーを通過するトラフィックをこのデバイスにルーティングするには、アクションファイルとともに\\\"meshcmd\\\"をダウンロードします。 meshaction.txtを編集してアカウントパスワードを追加するか、必要な変更を加えてください。",
15069 "xloc": [
15064 - "default.handlebars->33->984"
15070 + "default.handlebars->33->986"
15071 ]
15072 },
15073 {
@@ -15141,7 +15147,7 @@
15147 "zh-cht": "下載電源事件",
15148 "ja": "電源イベントをダウンロードする",
15149 "xloc": [
15144 - "default.handlebars->33->940"
15150 + "default.handlebars->33->942"
15151 ]
15152 },
15153 {
@@ -15235,7 +15241,7 @@
15241 "zh-cht": "使用以下一種檔案格式下載裝置列表。",
15242 "ja": "以下のファイル形式のいずれかでデバイスのリストをダウンロードします。",
15243 "xloc": [
15238 - "default.handlebars->33->572"
15244 + "default.handlebars->33->574"
15245 ]
15246 },
15247 {
@@ -15255,7 +15261,7 @@
15261 "zh-cht": "使用以下一種檔案格式下載事件列表。",
15262 "ja": "以下のファイル形式のいずれかでイベントのリストをダウンロードします。",
15263 "xloc": [
15258 - "default.handlebars->33->2016"
15264 + "default.handlebars->33->2019"
15265 ]
15266 },
15267 {
@@ -15275,7 +15281,7 @@
15281 "zh-cht": "使用以下一種檔案格式下載用戶列表。",
15282 "ja": "以下のファイル形式のいずれかでユーザーのリストをダウンロードします。",
15283 "xloc": [
15278 - "default.handlebars->33->2081"
15284 + "default.handlebars->33->2084"
15285 ]
15286 },
15287 {
@@ -15356,7 +15362,7 @@
15362 "zh-cht": "下載:“{0}”",
15363 "ja": "ダウンロード:「{0}」",
15364 "xloc": [
15359 - "default.handlebars->33->1933"
15365 + "default.handlebars->33->1935"
15366 ]
15367 },
15368 {
@@ -15370,7 +15376,7 @@
15376 "ru": "Скачивание: \\\"{0}\\\", Размер: {1}",
15377 "zh-chs": "下载:\\\"{0}\\\",大小:{1}",
15378 "xloc": [
15373 - "default.handlebars->33->1990"
15379 + "default.handlebars->33->1992"
15380 ]
15381 },
15382 {
@@ -15410,7 +15416,7 @@
15416 "zh-cht": "代理重複",
15417 "ja": "エージェントの複製",
15418 "xloc": [
15413 - "default.handlebars->33->2432"
15419 + "default.handlebars->33->2435"
15420 ]
15421 },
15422 {
@@ -15450,7 +15456,7 @@
15456 "zh-cht": "複製用戶群",
15457 "ja": "重複ユーザーグループ",
15458 "xloc": [
15453 - "default.handlebars->33->2149"
15459 + "default.handlebars->33->2152"
15460 ]
15461 },
15462 {
@@ -15487,8 +15493,8 @@
15493 "zh-cht": "持續時間",
15494 "ja": "期間",
15495 "xloc": [
15490 - "default.handlebars->33->2345",
15491 - "default.handlebars->33->2371",
15496 + "default.handlebars->33->2348",
15497 + "default.handlebars->33->2374",
15498 "player.handlebars->3->2"
15499 ]
15500 },
@@ -15526,7 +15532,7 @@
15532 "zh-cht": "荷蘭文(比利時)",
15533 "ja": "オランダ語(ベルギー)",
15534 "xloc": [
15529 - "default.handlebars->33->1346"
15535 + "default.handlebars->33->1348"
15536 ]
15537 },
15538 {
@@ -15546,7 +15552,7 @@
15552 "zh-cht": "荷蘭文(標準)",
15553 "ja": "オランダ語(標準)",
15554 "xloc": [
15549 - "default.handlebars->33->1345"
15555 + "default.handlebars->33->1347"
15556 ]
15557 },
15558 {
@@ -15846,8 +15852,8 @@
15852 "xloc": [
15853 "default-mobile.handlebars->11->353",
15854 "default-mobile.handlebars->11->360",
15849 - "default.handlebars->33->1001",
15850 - "default.handlebars->33->1008"
15855 + "default.handlebars->33->1003",
15856 + "default.handlebars->33->1010"
15857 ]
15858 },
15859 {
@@ -15870,10 +15876,10 @@
15876 "default-mobile.handlebars->11->582",
15877 "default-mobile.handlebars->11->588",
15878 "default-mobile.handlebars->11->608",
15873 - "default.handlebars->33->1698",
15874 - "default.handlebars->33->1730",
15875 - "default.handlebars->33->1755",
15876 - "default.handlebars->33->1767"
15879 + "default.handlebars->33->1700",
15880 + "default.handlebars->33->1732",
15881 + "default.handlebars->33->1757",
15882 + "default.handlebars->33->1769"
15883 ]
15884 },
15885 {
@@ -15893,7 +15899,7 @@
15899 "zh-cht": "編輯裝置群功能",
15900 "ja": "デバイスグループ機能の編集",
15901 "xloc": [
15896 - "default.handlebars->33->1716"
15902 + "default.handlebars->33->1718"
15903 ]
15904 },
15905 {
@@ -15913,8 +15919,8 @@
15919 "zh-cht": "編輯裝置群權限",
15920 "ja": "デバイスグループのアクセス許可を編集する",
15921 "xloc": [
15916 - "default.handlebars->33->1752",
15917 - "default.handlebars->33->1764"
15922 + "default.handlebars->33->1754",
15923 + "default.handlebars->33->1766"
15924 ]
15925 },
15926 {
@@ -15934,7 +15940,7 @@
15940 "zh-cht": "編輯裝置群用戶同意",
15941 "ja": "デバイスグループユーザーの同意の編集",
15942 "xloc": [
15937 - "default.handlebars->33->1699"
15943 + "default.handlebars->33->1701"
15944 ]
15945 },
15946 {
@@ -15955,7 +15961,7 @@
15961 "ja": "デバイスノートの編集",
15962 "xloc": [
15963 "default-mobile.handlebars->11->600",
15958 - "default.handlebars->33->1744"
15964 + "default.handlebars->33->1746"
15965 ]
15966 },
15967 {
@@ -15975,8 +15981,8 @@
15981 "zh-cht": "編輯裝置權限",
15982 "ja": "デバイスの権限を編集する",
15983 "xloc": [
15978 - "default.handlebars->33->1757",
15979 - "default.handlebars->33->1759"
15984 + "default.handlebars->33->1759",
15985 + "default.handlebars->33->1761"
15986 ]
15987 },
15988 {
@@ -15996,7 +16002,7 @@
16002 "zh-cht": "編輯裝置標籤",
16003 "ja": "デバイスタグの編集",
16004 "xloc": [
15999 - "default.handlebars->33->554"
16005 + "default.handlebars->33->556"
16006 ]
16007 },
16008 {
@@ -16016,7 +16022,7 @@
16022 "zh-cht": "編輯裝置用戶同意",
16023 "ja": "デバイスのユーザー同意の編集",
16024 "xloc": [
16019 - "default.handlebars->33->1701"
16025 + "default.handlebars->33->1703"
16026 ]
16027 },
16028 {
@@ -16036,7 +16042,7 @@
16042 "zh-cht": "編輯群組",
16043 "ja": "グループを編集",
16044 "xloc": [
16039 - "default.handlebars->33->834"
16045 + "default.handlebars->33->836"
16046 ]
16047 },
16048 {
@@ -16060,10 +16066,10 @@
16066 "default-mobile.handlebars->11->282",
16067 "default-mobile.handlebars->11->283",
16068 "default-mobile.handlebars->11->348",
16063 - "default.handlebars->33->678",
16064 - "default.handlebars->33->683",
16065 - "default.handlebars->33->684",
16066 - "default.handlebars->33->947"
16069 + "default.handlebars->33->680",
16070 + "default.handlebars->33->685",
16071 + "default.handlebars->33->686",
16072 + "default.handlebars->33->949"
16073 ]
16074 },
16075 {
@@ -16084,7 +16090,7 @@
16090 "ja": "メモを編集",
16091 "xloc": [
16092 "default-mobile.handlebars->11->615",
16087 - "default.handlebars->33->1774"
16093 + "default.handlebars->33->1776"
16094 ]
16095 },
16096 {
@@ -16104,7 +16110,7 @@
16110 "zh-cht": "編輯用戶同意",
16111 "ja": "ユーザーの同意を編集",
16112 "xloc": [
16107 - "default.handlebars->33->1700"
16113 + "default.handlebars->33->1702"
16114 ]
16115 },
16116 {
@@ -16124,7 +16130,7 @@
16130 "zh-cht": "編輯用戶裝置群權限",
16131 "ja": "ユーザーデバイスグループ権限の編集",
16132 "xloc": [
16127 - "default.handlebars->33->1765"
16133 + "default.handlebars->33->1767"
16134 ]
16135 },
16136 {
@@ -16144,7 +16150,7 @@
16150 "zh-cht": "編輯用戶裝置權限",
16151 "ja": "ユーザーデバイスの権限を編集する",
16152 "xloc": [
16147 - "default.handlebars->33->1760"
16153 + "default.handlebars->33->1762"
16154 ]
16155 },
16156 {
@@ -16164,7 +16170,7 @@
16170 "zh-cht": "編輯用戶群",
16171 "ja": "ユーザーグループを編集",
16172 "xloc": [
16167 - "default.handlebars->33->2200"
16173 + "default.handlebars->33->2203"
16174 ]
16175 },
16176 {
@@ -16184,7 +16190,7 @@
16190 "zh-cht": "編輯用戶群裝置權限",
16191 "ja": "ユーザーグループデバイス権限の編集",
16192 "xloc": [
16187 - "default.handlebars->33->1762"
16193 + "default.handlebars->33->1764"
16194 ]
16195 },
16196 {
@@ -16204,7 +16210,7 @@
16210 "zh-cht": "編輯用戶組用戶同意",
16211 "ja": "ユーザーグループのユーザー同意の編集",
16212 "xloc": [
16207 - "default.handlebars->33->1702"
16213 + "default.handlebars->33->1704"
16214 ]
16215 },
16216 {
@@ -16245,7 +16251,7 @@
16251 "zh-cht": "編輯標籤",
16252 "ja": "タグを編集",
16253 "xloc": [
16248 - "default.handlebars->33->526"
16254 + "default.handlebars->33->528"
16255 ]
16256 },
16257 {
@@ -16286,11 +16292,11 @@
16292 "ja": "Eメール",
16293 "xloc": [
16294 "default-mobile.handlebars->11->102",
16289 - "default.handlebars->33->2099",
16290 - "default.handlebars->33->2226",
16291 - "default.handlebars->33->2228",
16292 - "default.handlebars->33->2268",
16293 - "default.handlebars->33->2288",
16295 + "default.handlebars->33->2102",
16296 + "default.handlebars->33->2229",
16297 + "default.handlebars->33->2231",
16298 + "default.handlebars->33->2271",
16299 + "default.handlebars->33->2291",
16300 "default.handlebars->33->390",
16301 "login-mobile.handlebars->5->42",
16302 "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3",
@@ -16323,7 +16329,7 @@
16329 "ja": "メールアドレスの変更",
16330 "xloc": [
16331 "default-mobile.handlebars->11->103",
16326 - "default.handlebars->33->1535"
16332 + "default.handlebars->33->1537"
16333 ]
16334 },
16335 {
@@ -16344,7 +16350,7 @@
16350 "ja": "メール認証",
16351 "xloc": [
16352 "default-mobile.handlebars->11->92",
16347 - "default.handlebars->33->1276"
16353 + "default.handlebars->33->1278"
16354 ]
16355 },
16356 {
@@ -16404,7 +16410,7 @@
16410 "ja": "メール確認",
16411 "xloc": [
16412 "default-mobile.handlebars->11->101",
16407 - "default.handlebars->33->1533"
16413 + "default.handlebars->33->1535"
16414 ]
16415 },
16416 {
@@ -16444,7 +16450,7 @@
16450 "zh-cht": "電郵未驗證",
16451 "ja": "メールは検証されていない",
16452 "xloc": [
16447 - "default.handlebars->33->2045"
16453 + "default.handlebars->33->2048"
16454 ]
16455 },
16456 {
@@ -16464,8 +16470,8 @@
16470 "zh-cht": "電子郵件已驗證",
16471 "ja": "メールが確認されました",
16472 "xloc": [
16467 - "default.handlebars->33->2046",
16468 - "default.handlebars->33->2220"
16473 + "default.handlebars->33->2049",
16474 + "default.handlebars->33->2223"
16475 ]
16476 },
16477 {
@@ -16485,7 +16491,7 @@
16491 "zh-cht": "電郵已驗證。",
16492 "ja": "メールが確認されました。",
16493 "xloc": [
16488 - "default.handlebars->33->2105"
16494 + "default.handlebars->33->2108"
16495 ]
16496 },
16497 {
@@ -16505,7 +16511,7 @@
16511 "zh-cht": "電郵未驗證",
16512 "ja": "メールが確認されていません",
16513 "xloc": [
16508 - "default.handlebars->33->2221"
16514 + "default.handlebars->33->2224"
16515 ]
16516 },
16517 {
@@ -16535,7 +16541,7 @@
16541 "ja": "メールを送信しました。",
16542 "xloc": [
16543 "default-mobile.handlebars->11->657",
16538 - "default.handlebars->33->2400",
16544 + "default.handlebars->33->2403",
16545 "login-mobile.handlebars->5->2",
16546 "login.handlebars->5->2",
16547 "login2.handlebars->7->3"
@@ -16589,7 +16595,7 @@
16595 "zh-cht": "已通過電郵驗證,並且需要重置密碼。",
16596 "ja": "メールの確認とパスワードの強制リセットが必要です。",
16597 "xloc": [
16592 - "default.handlebars->33->2106"
16598 + "default.handlebars->33->2109"
16599 ]
16600 },
16601 {
@@ -16620,7 +16626,7 @@
16626 "ru": "Email/SMS/Push трафик",
16627 "zh-chs": "电子邮件/短信/推送流量",
16628 "xloc": [
16623 - "default.handlebars->33->2489"
16629 + "default.handlebars->33->2492"
16630 ]
16631 },
16632 {
@@ -16666,7 +16672,7 @@
16672 "zh-cht": "啟用邀請代碼",
16673 "ja": "招待コードを有効にする",
16674 "xloc": [
16669 - "default.handlebars->33->1797"
16675 + "default.handlebars->33->1799"
16676 ]
16677 },
16678 {
@@ -16707,7 +16713,7 @@
16713 "ja": "メールの2要素認証を有効にします。",
16714 "xloc": [
16715 "default-mobile.handlebars->11->94",
16710 - "default.handlebars->33->1278"
16716 + "default.handlebars->33->1280"
16717 ]
16718 },
16719 {
@@ -16747,7 +16753,7 @@
16753 "zh-cht": "已啟用",
16754 "ja": "有効",
16755 "xloc": [
16750 - "default.handlebars->33->2373"
16756 + "default.handlebars->33->2376"
16757 ]
16758 },
16759 {
@@ -16767,7 +16773,7 @@
16773 "zh-cht": "啟用電子郵件兩因素身份驗證",
16774 "ja": "メールの2要素認証を有効化",
16775 "xloc": [
16770 - "default.handlebars->33->1972"
16776 + "default.handlebars->33->1974"
16777 ]
16778 },
16779 {
@@ -16802,7 +16808,7 @@
16808 "zh-chs": "结尾",
16809 "xloc": [
16810 "default-mobile.handlebars->11->377",
16805 - "default.handlebars->33->1037"
16811 + "default.handlebars->33->1039"
16812 ]
16813 },
16814 {
@@ -16822,7 +16828,7 @@
16828 "zh-cht": "時間結束",
16829 "ja": "終了時間",
16830 "xloc": [
16825 - "default.handlebars->33->2370"
16831 + "default.handlebars->33->2373"
16832 ]
16833 },
16834 {
@@ -16842,7 +16848,7 @@
16848 "zh-cht": "從{1}到{2},{3}秒結束了桌面會話“{0}”",
16849 "ja": "デスクトップセッション\\\"{0}\\\"を{1}から{2}まで終了しました、{3}秒",
16850 "xloc": [
16845 - "default.handlebars->33->1895"
16851 + "default.handlebars->33->1897"
16852 ]
16853 },
16854 {
@@ -16862,7 +16868,7 @@
16868 "zh-cht": "從{1}到{2},{3}秒結束了文件管理會話“{0}”",
16869 "ja": "ファイル管理セッション\\\"{0}\\\"を{1}から{2}に終了しました、{3}秒",
16870 "xloc": [
16865 - "default.handlebars->33->1896"
16871 + "default.handlebars->33->1898"
16872 ]
16873 },
16874 {
@@ -16876,7 +16882,7 @@
16882 "ru": "Завершился сеанс обмена сообщениями \\\"{0}\\\" с {1} до {2}, {3} сек.",
16883 "zh-chs": "从 {1} 到 {2},{3} 秒结束了 Messenger 会话 \\\"{0}\\\"",
16884 "xloc": [
16879 - "default.handlebars->33->1996"
16885 + "default.handlebars->33->1998"
16886 ]
16887 },
16888 {
@@ -16896,7 +16902,7 @@
16902 "zh-cht": "從{1}到{2},{3}秒結束了中繼會話“{0}”",
16903 "ja": "リレーセッション\\\"{0}\\\"を{1}から{2}に終了しました、{3}秒",
16904 "xloc": [
16899 - "default.handlebars->33->1893"
16905 + "default.handlebars->33->1895"
16906 ]
16907 },
16908 {
@@ -16916,7 +16922,7 @@
16922 "zh-cht": "從{1}到{2},{3}秒結束了終端會話“{0}”",
16923 "ja": "ターミナルセッション\\\"{0}\\\"を{1}から{2}まで終了しました、{3}秒",
16924 "xloc": [
16919 - "default.handlebars->33->1894"
16925 + "default.handlebars->33->1896"
16926 ]
16927 },
16928 {
@@ -16936,7 +16942,7 @@
16942 "zh-cht": "英文",
16943 "ja": "英語",
16944 "xloc": [
16939 - "default.handlebars->33->1347"
16945 + "default.handlebars->33->1349"
16946 ]
16947 },
16948 {
@@ -16956,7 +16962,7 @@
16962 "zh-cht": "英文(澳洲)",
16963 "ja": "英語(オーストラリア)",
16964 "xloc": [
16959 - "default.handlebars->33->1348"
16965 + "default.handlebars->33->1350"
16966 ]
16967 },
16968 {
@@ -16976,7 +16982,7 @@
16982 "zh-cht": "英文(伯利茲)",
16983 "ja": "英語(ベリーズ)",
16984 "xloc": [
16979 - "default.handlebars->33->1349"
16985 + "default.handlebars->33->1351"
16986 ]
16987 },
16988 {
@@ -16996,7 +17002,7 @@
17002 "zh-cht": "英文(加拿大)",
17003 "ja": "英語(カナダ)",
17004 "xloc": [
16999 - "default.handlebars->33->1350"
17005 + "default.handlebars->33->1352"
17006 ]
17007 },
17008 {
@@ -17016,7 +17022,7 @@
17022 "zh-cht": "英文(愛爾蘭)",
17023 "ja": "英語(アイルランド)",
17024 "xloc": [
17019 - "default.handlebars->33->1351"
17025 + "default.handlebars->33->1353"
17026 ]
17027 },
17028 {
@@ -17036,7 +17042,7 @@
17042 "zh-cht": "英文(牙買加)",
17043 "ja": "英語(ジャマイカ)",
17044 "xloc": [
17039 - "default.handlebars->33->1352"
17045 + "default.handlebars->33->1354"
17046 ]
17047 },
17048 {
@@ -17056,7 +17062,7 @@
17062 "zh-cht": "英文(紐西蘭)",
17063 "ja": "英語(ニュージーランド)",
17064 "xloc": [
17059 - "default.handlebars->33->1353"
17065 + "default.handlebars->33->1355"
17066 ]
17067 },
17068 {
@@ -17076,7 +17082,7 @@
17082 "zh-cht": "英文(菲律賓)",
17083 "ja": "英語(フィリピン)",
17084 "xloc": [
17079 - "default.handlebars->33->1354"
17085 + "default.handlebars->33->1356"
17086 ]
17087 },
17088 {
@@ -17096,7 +17102,7 @@
17102 "zh-cht": "英語(南非)",
17103 "ja": "英語(南アフリカ)",
17104 "xloc": [
17099 - "default.handlebars->33->1355"
17105 + "default.handlebars->33->1357"
17106 ]
17107 },
17108 {
@@ -17116,7 +17122,7 @@
17122 "zh-cht": "英文(特立尼達和多巴哥)",
17123 "ja": "英語(トリニダードトバゴ)",
17124 "xloc": [
17119 - "default.handlebars->33->1356"
17125 + "default.handlebars->33->1358"
17126 ]
17127 },
17128 {
@@ -17136,7 +17142,7 @@
17142 "zh-cht": "英文(英國)",
17143 "ja": "英語(イギリス)",
17144 "xloc": [
17139 - "default.handlebars->33->1357"
17145 + "default.handlebars->33->1359"
17146 ]
17147 },
17148 {
@@ -17156,7 +17162,7 @@
17162 "zh-cht": "美國英語",
17163 "ja": "英語(米国)",
17164 "xloc": [
17159 - "default.handlebars->33->1358"
17165 + "default.handlebars->33->1360"
17166 ]
17167 },
17168 {
@@ -17176,7 +17182,7 @@
17182 "zh-cht": "英文(津巴布韋)",
17183 "ja": "英語(ジンバブエ)",
17184 "xloc": [
17179 - "default.handlebars->33->1359"
17185 + "default.handlebars->33->1361"
17186 ]
17187 },
17188 {
@@ -17206,10 +17212,10 @@
17212 "ja": "入る",
17213 "xloc": [
17214 "default-mobile.handlebars->11->371",
17209 - "default.handlebars->33->1031",
17210 - "default.handlebars->33->1124",
17211 - "default.handlebars->33->1562",
17212 - "default.handlebars->33->1563",
17215 + "default.handlebars->33->1033",
17216 + "default.handlebars->33->1126",
17217 + "default.handlebars->33->1564",
17218 + "default.handlebars->33->1565",
17219 "sharing.handlebars->11->55"
17220 ]
17221 },
@@ -17230,7 +17236,7 @@
17236 "zh-cht": "輸入管理領域名稱的逗號分隔列表。",
17237 "ja": "管理レルム名のコンマ区切りリストを入力します。",
17238 "xloc": [
17233 - "default.handlebars->33->2110"
17239 + "default.handlebars->33->2113"
17240 ]
17241 },
17242 {
@@ -17299,7 +17305,7 @@
17305 "zh-cht": "輸入文本,然後單擊確定以遠程鍵入它。在繼續操作之前,請確保將遠程光標放置在正確的位置。",
17306 "ja": "テキストを入力し、[OK]をクリックしてリモートで入力します。先に進む前に、リモートカーソルを正しい位置に置いてください。",
17307 "xloc": [
17302 - "default.handlebars->33->1056"
17308 + "default.handlebars->33->1058"
17309 ]
17310 },
17311 {
@@ -17379,7 +17385,7 @@
17385 "zh-cht": "輸入支持SMS的電話號碼。驗證後,該號碼可用於登入驗證和其他通知。",
17386 "ja": "SMS対応の電話番号を入力します。確認後、番号はログイン確認やその他の通知に使用できます。",
17387 "xloc": [
17382 - "default.handlebars->33->1273"
17388 + "default.handlebars->33->1275"
17389 ]
17390 },
17391 {
@@ -17423,7 +17429,7 @@
17429 "zh-chs": "错误,邀请码 \\\"{0}\\\" 已被使用。",
17430 "xloc": [
17431 "default-mobile.handlebars->11->665",
17426 - "default.handlebars->33->2408"
17432 + "default.handlebars->33->2411"
17433 ]
17434 },
17435 {
@@ -17438,7 +17444,7 @@
17444 "zh-chs": "错误,密码未更改。",
17445 "xloc": [
17446 "default-mobile.handlebars->11->662",
17441 - "default.handlebars->33->2405"
17447 + "default.handlebars->33->2408"
17448 ]
17449 },
17450 {
@@ -17452,7 +17458,7 @@
17458 "zh-chs": "错误,无法更改为常用密码。",
17459 "xloc": [
17460 "default-mobile.handlebars->11->661",
17455 - "default.handlebars->33->2404"
17461 + "default.handlebars->33->2407"
17462 ]
17463 },
17464 {
@@ -17466,7 +17472,7 @@
17472 "zh-chs": "错误,无法更改为以前使用的密码。",
17473 "xloc": [

This file is too large to show in full.