diff --git a/agents/recoverycore.js b/agents/recoverycore.js index e2ce4d96..9ad21d66 100644 --- a/agents/recoverycore.js +++ b/agents/recoverycore.js @@ -6,104 +6,9 @@ var nextTunnelIndex = 1; var tunnels = {}; var fs = require('fs'); -try -{ - Object.defineProperty(Array.prototype, 'find', { - value: function (func) - { - var i = 0; - for(i=0;i 0) - { - service = K.subkeys.shift(); - try - { - s = registry.QueryKey(registry.HKEY.LocalMachine, 'SYSTEM\\CurrentControlSet\\Services\\' + service, 'ImagePath'); - if (s.startsWith(process.execPath) || s.startsWith('"' + process.execPath + '"')) - { - ret.push(service); - } - } - catch (x) - { - } - } - return (ret); -} -function _verifyServiceName(names) -{ - var i; - var s; - var ret = null; - for (i = 0; i < names.length; ++i) - { - try - { - s = require('service-manager').manager.getService(names[i]); - if (s.isMe()) - { - ret = names[i]; - s.close(); - break; - } - s.close(); - } - catch (z) { } - } - return (ret); -} - -function windows_getCommandLine() -{ - var parms = []; - var GM = require('_GenericMarshal'); - var k32 = GM.CreateNativeProxy('kernel32.dll'); - var s32 = GM.CreateNativeProxy('shell32.dll'); - k32.CreateMethod('GetCommandLineW'); - k32.CreateMethod('LocalFree'); - s32.CreateMethod('CommandLineToArgvW'); - var v = k32.GetCommandLineW(); - var i; - var len = GM.CreateVariable(4); - var val = s32.CommandLineToArgvW(v, len); - len = len.toBuffer().readInt32LE(0); - if (len > 0) - { - for (i = 0; i < len; ++i) - { - parms.push(val.Deref(i * GM.PointerSize, GM.PointerSize).Deref().Wide2UTF8); - } - } - k32.LocalFree(val); - return (parms); -} - -if (require('MeshAgent').ARCHID == null) -{ +if (require('MeshAgent').ARCHID == null) { var id = null; - switch (process.platform) - { + switch (process.platform) { case 'win32': id = require('_GenericMarshal').PointerSize == 4 ? 3 : 4; break; @@ -111,12 +16,10 @@ if (require('MeshAgent').ARCHID == null) id = require('_GenericMarshal').PointerSize == 4 ? 31 : 30; break; case 'darwin': - try - { + try { id = require('os').arch() == 'x64' ? 16 : 29; } - catch (xx) - { + catch (xx) { id = 16; } break; @@ -126,22 +29,17 @@ if (require('MeshAgent').ARCHID == null) //attachDebugger({ webport: 9994, wait: 1 }).then(function (p) { console.log('Debug on port: ' + p); }); -function sendConsoleText(msg, sessionid) -{ - if (sessionid != null) - { +function sendConsoleText(msg, sessionid) { + if (sessionid != null) { require('MeshAgent').SendCommand({ action: 'msg', type: 'console', value: msg, sessionid: sessionid }); } - else - { + else { require('MeshAgent').SendCommand({ action: 'msg', type: 'console', value: msg }); } } -function sendAgentMessage(msg, icon) -{ - if (sendAgentMessage.messages == null) - { +function sendAgentMessage(msg, icon) { + if (sendAgentMessage.messages == null) { sendAgentMessage.messages = {}; sendAgentMessage.nextid = 1; } @@ -150,11 +48,9 @@ function sendAgentMessage(msg, icon) } // Add to the server event log -function MeshServerLog(msg, state) -{ +function MeshServerLog(msg, state) { if (typeof msg == 'string') { msg = { action: 'log', msg: msg }; } else { msg.action = 'log'; } - if (state) - { + if (state) { if (state.userid) { msg.userid = state.userid; } if (state.username) { msg.username = state.username; } if (state.sessionid) { msg.sessionid = state.sessionid; } @@ -164,11 +60,9 @@ function MeshServerLog(msg, state) } // Add to the server event log, use internationalized events -function MeshServerLogEx(id, args, msg, state) -{ +function MeshServerLogEx(id, args, msg, state) { var msg = { action: 'log', msgid: id, msgArgs: args, msg: msg }; - if (state) - { + if (state) { if (state.userid) { msg.userid = state.userid; } if (state.username) { msg.username = state.username; } if (state.sessionid) { msg.sessionid = state.sessionid; } @@ -452,34 +346,6 @@ function windows_execve(name, agentfilename, sessionid) { var arg2 = require('_GenericMarshal').CreateVariable('/C wmic service "' + name + '" call stopservice & "' + cwd + agentfilename + '.update.exe" -b64exec ' + 'dHJ5CnsKICAgIHZhciBzZXJ2aWNlTG9jYXRpb24gPSBwcm9jZXNzLmFyZ3YucG9wKCk7CiAgICByZXF1aXJlKCdwcm9jZXNzLW1hbmFnZXInKS5lbnVtZXJhdGVQcm9jZXNzZXMoKS50aGVuKGZ1bmN0aW9uIChwcm9jKQogICAgewogICAgICAgIGZvciAodmFyIHAgaW4gcHJvYykKICAgICAgICB7CiAgICAgICAgICAgIGlmIChwcm9jW3BdLnBhdGggPT0gc2VydmljZUxvY2F0aW9uKQogICAgICAgICAgICB7CiAgICAgICAgICAgICAgICBwcm9jZXNzLmtpbGwocHJvY1twXS5waWQpOwogICAgICAgICAgICB9CiAgICAgICAgfQogICAgICAgIHByb2Nlc3MuZXhpdCgpOwogICAgfSk7Cn0KY2F0Y2goZSkKewogICAgcHJvY2Vzcy5leGl0KCk7Cn0=' + ' "' + process.execPath + '" & copy "' + cwd + agentfilename + '.update.exe" "' + process.execPath + '" & wmic service "' + name + '" call startservice & erase "' + cwd + agentfilename + '.update.exe"', { wide: true }); - if (name == null) - { - // We can continue with self update for Temp/Console Mode on Windows - var db = null; - var update = cwd + agentfilename + '.update.exe'; - var updatedb = cwd + agentfilename + '.update.db'; - var parms = windows_getCommandLine(); parms.shift(); - - var updatesource = parms.find(function (v) { return (v.startsWith('--updateSourcePath=')); }); - if (updatesource == null) - { - parms.push('--updateSourcePath="' + cwd + agentfilename + '"'); - updatesource = (cwd + agentfilename).split('.exe'); updatesource.pop(); updatesource = updatesource.join('.exe'); - db = updatesource + '.db'; - updatesource = (' & move "' + updatedb + '" "' + db + '"') + (' & erase "' + updatedb + '"'); - } - else - { - updatesource = updatesource.substring(19).split('.exe'); - updatesource.pop(); updatesource = updatesource.join('.exe'); - db = updatesource + '.db'; - updatesource = (' & move "' + update + '" "' + updatesource + '.exe" & move "' + updatedb + '" "' + db + '" & erase "' + updatedb + '"') + (' & echo move "' + update + '" "' + updatesource + '.exe" & echo move "' + updatedb + '" "' + db + '"'); - } - - var tmp = '/C echo copy "' + db + '" "' + updatedb + '" & copy "' + db + '" "' + updatedb + '"' + ' & "' + update + '" ' + parms.join(' ') + updatesource + ' & erase "' + update + '" & echo ERASE "' + update + '"'; - arg2 = require('_GenericMarshal').CreateVariable(tmp, { wide: true }); - } - arg1.pointerBuffer().copy(args.toBuffer()); arg2.pointerBuffer().copy(args.toBuffer(), require('_GenericMarshal').PointerSize); @@ -497,8 +363,7 @@ function agentUpdate_Start(updateurl, updateoptions) { if (updateurl.startsWith("wss://")) { updateurl = "https://" + updateurl.substring(6); } } - if (agentUpdate_Start._selfupdate != null) - { + if (agentUpdate_Start._selfupdate != null) { // We were already called, so we will ignore this duplicate request if (sessionid != null) { sendConsoleText('Self update already in progress...', sessionid); } } @@ -508,58 +373,25 @@ function agentUpdate_Start(updateurl, updateoptions) { // This agent doesn't have the ability to tell us which ARCHID it is, so we don't know which agent to pull sendConsoleText('Unable to initiate update, agent ARCHID is not defined', sessionid); } - else - { + else { var agentfilename = process.execPath.split(process.platform == 'win32' ? '\\' : '/').pop(); // Local File Name, ie: MeshAgent.exe var name = require('MeshAgent').serviceName; - if (name == null) { name = process.platform == 'win32' ? 'Mesh Agent' : 'meshagent'; } - if (process.platform == 'win32') - { - // Special Processing for Temporary/Console Mode Agents on Windows - var parms = windows_getCommandLine(); - if (parms.findIndex(function (val) { return (val.toUpperCase() == 'RUN' || val.toUpperCase() == 'CONNECT');})>=0) - { - // This is a Temporary/Console Mode Agent - sendConsoleText('This is a temporary/console agent, checking for conflicts with background services...'); - - // Check to see if our binary conflicts with an installed agent - var agents = _getPotentialServiceNames(); - if(_getPotentialServiceNames().length>0) - { - sendConsoleText('Self update cannot continue because the installed agent (' + agents[0] + ') conflicts with the currently running Temp/Console agent...', sessionid); - return; - } - - - sendConsoleText('No conflicts detected...'); - name = null; - } - else - { - // Not running in Temp/Console Mode... No Op here.... - } - } - else - { - // Non Windows Self Update - try - { - var s = require('service-manager').manager.getService(name); - if (!s.isMe()) - { - if (process.platform == 'win32') { s.close(); } - sendConsoleText('Self Update cannot continue, this agent is not an instance of background service (' + name + ')', sessionid); - return; - } + 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 + try { + var s = require('service-manager').manager.getService(name); + if (!s.isMe()) { if (process.platform == 'win32') { s.close(); } - } - catch (zz) - { - sendConsoleText('Self Update Failed because this agent is not an instance of (' + name + ')', sessionid); - sendAgentMessage('Self Update Failed because this agent is not an instance of (' + name + ')', 3); + sendConsoleText('Self Update cannot continue, this agent is not an instance of (' + name + ')', sessionid); return; } + if (process.platform == 'win32') { s.close(); } } + catch (zz) { + sendConsoleText('Self Update Failed because this agent is not an instance of (' + name + ')', sessionid); + sendAgentMessage('Self Update Failed because this agent is not an instance of (' + name + ')', 3); + return; + } + if ((sessionid != null) && (updateurl != null)) { sendConsoleText('Downloading update from: ' + updateurl, sessionid); } var options = require('http').parseUri(updateurl != null ? updateurl : require('MeshAgent').ServerUrl); options.protocol = 'https:'; @@ -1175,25 +1007,7 @@ require('MeshAgent').AddCommandHandler(function (data) { function processConsoleCommand(cmd, args, rights, sessionid) { try { var response = null; - switch (cmd) - { - default: - { // This is an unknown command, return an error message - response = 'Unknown command \"' + cmd + '\", type \"help\" for list of available commands.'; - break; - } - case 'commandline': - { - if (process.platform == 'win32') - { - response = JSON.stringify(windows_getCommandLine(), null, 1); - } - else - { - response = 'Unknown command \"' + cmd + '\", type \"help\" for list of available commands.'; - } - } - break; + switch (cmd) { case 'help': response = "Available commands are: agentupdate, agentupdateex, dbkeys, dbget, dbset, dbcompact, eval, netinfo, osinfo, setdebug, versions."; break; @@ -1283,11 +1097,10 @@ function processConsoleCommand(cmd, args, rights, sessionid) { response = objToString(interfaces, 0, ' ', true); break; } - case 'name': - { - response = 'Service Name = ' + require('MeshAgent').serviceName; - } + default: { // This is an unknown command, return an error message + response = 'Unknown command \"' + cmd + '\", type \"help\" for list of available commands.'; break; + } } } catch (e) { response = "Command returned an exception error: " + e; console.log(e); } if (response != null) { sendConsoleText(response, sessionid); } diff --git a/translate/translate.json b/translate/translate.json index b7c5d735..dd067a7f 100644 --- a/translate/translate.json +++ b/translate/translate.json @@ -17,8 +17,8 @@ "zh-cht": " + CIRA", "ja": " + CIRA", "xloc": [ - "default.handlebars->33->1640", - "default.handlebars->33->1642" + "default.handlebars->33->1642", + "default.handlebars->33->1644" ] }, { @@ -213,7 +213,7 @@ "zh-cht": " 可以使用密碼提示,但不建議使用。", "ja": " パスワードヒントは使用できますが、推奨されません。", "xloc": [ - "default.handlebars->33->1541" + "default.handlebars->33->1543" ] }, { @@ -233,8 +233,8 @@ "zh-cht": " 用戶需要先登入到該伺服器一次,然後才能將其新增到裝置群。", "ja": " ユーザーは、デバイスグループに追加する前にこのサーバーに1回ログインする必要があります。", "xloc": [ - "default.handlebars->33->1719", - "default.handlebars->33->2207" + "default.handlebars->33->1721", + "default.handlebars->33->2210" ] }, { @@ -547,7 +547,7 @@ "zh-cht": "* 8個字符,1個大寫,1個小寫,1個數字,1個非字母數字。", "ja": "* 8文字、上1つ、下1つ、数字1つ、英数字以外の数字1つ。", "xloc": [ - "default.handlebars->33->1688", + "default.handlebars->33->1690", "default.handlebars->33->376" ] }, @@ -568,7 +568,7 @@ "zh-cht": "*對於BSD,首先運行“ pkg install wget sudo bash ”。", "ja": "* BSDの場合、最初に\\\"pkg install wget sudo bash\\\"を実行します。", "xloc": [ - "default.handlebars->33->454" + "default.handlebars->33->456" ] }, { @@ -623,7 +623,7 @@ "ja": "、", "xloc": [ "default-mobile.handlebars->11->630", - "default.handlebars->33->1790" + "default.handlebars->33->1792" ] }, { @@ -688,7 +688,7 @@ "ja": "、MQTTはオンラインです", "xloc": [ "default-mobile.handlebars->11->547", - "default.handlebars->33->1251" + "default.handlebars->33->1253" ] }, { @@ -702,7 +702,7 @@ "ru": ", Нет согласия", "zh-chs": ", 不同意", "xloc": [ - "default.handlebars->33->811" + "default.handlebars->33->813" ] }, { @@ -722,7 +722,7 @@ "zh-cht": ",提示同意", "ja": "、同意を求める", "xloc": [ - "default.handlebars->33->812" + "default.handlebars->33->814" ] }, { @@ -751,7 +751,7 @@ "zh-cht": ",軟體KVM", "ja": "、Soft-KVM", "xloc": [ - "default.handlebars->33->1015", + "default.handlebars->33->1017", "sharing.handlebars->11->12" ] }, @@ -766,7 +766,7 @@ "ru": ", Панель инструментов", "zh-chs": ", 工具栏", "xloc": [ - "default.handlebars->33->813" + "default.handlebars->33->815" ] }, { @@ -780,7 +780,7 @@ "ru": ", Только просмотр", "zh-chs": ", 只读", "xloc": [ - "default.handlebars->33->810" + "default.handlebars->33->812" ] }, { @@ -803,9 +803,9 @@ "default-mobile.handlebars->11->366", "default-mobile.handlebars->11->401", "default-mobile.handlebars->11->412", - "default.handlebars->33->1022", - "default.handlebars->33->1085", - "default.handlebars->33->1105", + "default.handlebars->33->1024", + "default.handlebars->33->1087", + "default.handlebars->33->1107", "sharing.handlebars->11->19", "sharing.handlebars->11->27", "sharing.handlebars->11->44", @@ -947,7 +947,7 @@ "zh-cht": ",{0}觀看", "ja": "、{0}視聴", "xloc": [ - "default.handlebars->33->1016", + "default.handlebars->33->1018", "sharing.handlebars->11->13" ] }, @@ -1023,9 +1023,9 @@ "xloc": [ "default-mobile.handlebars->11->132", "default-mobile.handlebars->11->422", - "default.handlebars->33->1119", - "default.handlebars->33->1842", - "default.handlebars->33->2376", + "default.handlebars->33->1121", + "default.handlebars->33->1844", + "default.handlebars->33->2379", "sharing.handlebars->11->50" ] }, @@ -1101,7 +1101,7 @@ "zh-cht": "1個活躍時段", "ja": "1つのアクティブなセッション", "xloc": [ - "default.handlebars->33->2280" + "default.handlebars->33->2283" ] }, { @@ -1123,7 +1123,7 @@ "xloc": [ "default-mobile.handlebars->11->142", "default-mobile.handlebars->11->673", - "default.handlebars->33->1866", + "default.handlebars->33->1868", "download.handlebars->3->1", "download2.handlebars->5->1", "sharing.handlebars->11->96" @@ -1146,7 +1146,7 @@ "zh-cht": "1位聯絡文", "ja": "1接続", "xloc": [ - "default.handlebars->33->1018", + "default.handlebars->33->1020", "sharing.handlebars->11->15" ] }, @@ -1189,7 +1189,7 @@ "zh-cht": "1群", "ja": "1グループ", "xloc": [ - "default.handlebars->33->2241" + "default.handlebars->33->2244" ] }, { @@ -1231,8 +1231,8 @@ "zh-cht": "1分鐘", "ja": "1分", "xloc": [ - "default.handlebars->33->1507", - "default.handlebars->33->878" + "default.handlebars->33->1509", + "default.handlebars->33->880" ] }, { @@ -1294,7 +1294,7 @@ "zh-cht": "有1個用戶沒有顯示,請使用搜尋框搜尋用戶...", "ja": "さらに1人のユーザーが表示されていません。検索ボックスを使用してユーザーを検索してください...", "xloc": [ - "default.handlebars->33->2031" + "default.handlebars->33->2034" ] }, { @@ -1314,7 +1314,7 @@ "zh-cht": "1個節點", "ja": "1ノード", "xloc": [ - "default.handlebars->33->481" + "default.handlebars->33->483" ] }, { @@ -1347,7 +1347,7 @@ "zh-chs": "1秒", "xloc": [ "default-mobile.handlebars->11->318", - "default.handlebars->33->906" + "default.handlebars->33->908" ] }, { @@ -1393,7 +1393,7 @@ "default-mobile.handlebars->11->204", "default-mobile.handlebars->11->207", "default-mobile.handlebars->11->210", - "default.handlebars->33->2035", + "default.handlebars->33->2038", "default.handlebars->33->309", "default.handlebars->33->312", "default.handlebars->33->315", @@ -1525,8 +1525,8 @@ "zh-cht": "10分鐘", "ja": "10分", "xloc": [ - "default.handlebars->33->1509", - "default.handlebars->33->880" + "default.handlebars->33->1511", + "default.handlebars->33->882" ] }, { @@ -1541,7 +1541,7 @@ "zh-chs": "10 秒", "xloc": [ "default-mobile.handlebars->11->320", - "default.handlebars->33->908" + "default.handlebars->33->910" ] }, { @@ -1624,8 +1624,8 @@ "zh-cht": "12小時", "ja": "12時間", "xloc": [ - "default.handlebars->33->1517", - "default.handlebars->33->888" + "default.handlebars->33->1519", + "default.handlebars->33->890" ] }, { @@ -1676,8 +1676,8 @@ "zh-cht": "15分鐘", "ja": "15分", "xloc": [ - "default.handlebars->33->1510", - "default.handlebars->33->881" + "default.handlebars->33->1512", + "default.handlebars->33->883" ] }, { @@ -1697,8 +1697,8 @@ "zh-cht": "16小時", "ja": "16時間", "xloc": [ - "default.handlebars->33->1518", - "default.handlebars->33->889" + "default.handlebars->33->1520", + "default.handlebars->33->891" ] }, { @@ -1718,8 +1718,8 @@ "zh-cht": "2天", "ja": "2日", "xloc": [ - "default.handlebars->33->1520", - "default.handlebars->33->891" + "default.handlebars->33->1522", + "default.handlebars->33->893" ] }, { @@ -1739,8 +1739,8 @@ "zh-cht": "2小時", "ja": "2時間", "xloc": [ - "default.handlebars->33->1514", - "default.handlebars->33->885" + "default.handlebars->33->1516", + "default.handlebars->33->887" ] }, { @@ -1844,8 +1844,8 @@ "zh-cht": "24小時", "ja": "24時間", "xloc": [ - "default.handlebars->33->1519", - "default.handlebars->33->890" + "default.handlebars->33->1521", + "default.handlebars->33->892" ] }, { @@ -1907,7 +1907,7 @@ "zh-cht": "2FA備份代碼已清除", "ja": "2FAバックアップコードがクリアされました", "xloc": [ - "default.handlebars->33->1977" + "default.handlebars->33->1979" ] }, { @@ -1927,8 +1927,8 @@ "zh-cht": "啟用第二因素身份驗證", "ja": "二要素認証が有効", "xloc": [ - "default.handlebars->33->2048", - "default.handlebars->33->2263" + "default.handlebars->33->2051", + "default.handlebars->33->2266" ] }, { @@ -2047,8 +2047,8 @@ "zh-cht": "30分鐘", "ja": "30分", "xloc": [ - "default.handlebars->33->1511", - "default.handlebars->33->882" + "default.handlebars->33->1513", + "default.handlebars->33->884" ] }, { @@ -2068,8 +2068,8 @@ "zh-cht": "MeshAgent的32位版本", "ja": "MeshAgentの32ビットバージョン", "xloc": [ - "default.handlebars->33->444", - "default.handlebars->33->467" + "default.handlebars->33->446", + "default.handlebars->33->469" ] }, { @@ -2111,8 +2111,8 @@ "zh-cht": "4天", "ja": "4日", "xloc": [ - "default.handlebars->33->1521", - "default.handlebars->33->892" + "default.handlebars->33->1523", + "default.handlebars->33->894" ] }, { @@ -2132,8 +2132,8 @@ "zh-cht": "4個小時", "ja": "4時間", "xloc": [ - "default.handlebars->33->1515", - "default.handlebars->33->886" + "default.handlebars->33->1517", + "default.handlebars->33->888" ] }, { @@ -2216,8 +2216,8 @@ "zh-cht": "45分鐘", "ja": "45分", "xloc": [ - "default.handlebars->33->1512", - "default.handlebars->33->883" + "default.handlebars->33->1514", + "default.handlebars->33->885" ] }, { @@ -2257,8 +2257,8 @@ "zh-cht": "5分鐘", "ja": "5分", "xloc": [ - "default.handlebars->33->1508", - "default.handlebars->33->879" + "default.handlebars->33->1510", + "default.handlebars->33->881" ] }, { @@ -2273,7 +2273,7 @@ "zh-chs": "5秒", "xloc": [ "default-mobile.handlebars->11->319", - "default.handlebars->33->907" + "default.handlebars->33->909" ] }, { @@ -2399,8 +2399,8 @@ "zh-cht": "60分鐘", "ja": "60分", "xloc": [ - "default.handlebars->33->1513", - "default.handlebars->33->884" + "default.handlebars->33->1515", + "default.handlebars->33->886" ] }, { @@ -2442,7 +2442,7 @@ "zh-cht": "64位版本的macOS Mesh Agent", "ja": "macOS Mesh Agentの64ビットバージョン", "xloc": [ - "default.handlebars->33->458" + "default.handlebars->33->460" ] }, { @@ -2462,8 +2462,8 @@ "zh-cht": "MeshAgent的64位版本", "ja": "MeshAgentの64ビットバージョン", "xloc": [ - "default.handlebars->33->448", - "default.handlebars->33->470" + "default.handlebars->33->450", + "default.handlebars->33->472" ] }, { @@ -2520,7 +2520,7 @@ "zh-cht": "7天電源狀態", "ja": "7日間の電源状態", "xloc": [ - "default.handlebars->33->941" + "default.handlebars->33->943" ] }, { @@ -2583,10 +2583,10 @@ "zh-cht": "8小時", "ja": "8時間", "xloc": [ - "default.handlebars->33->1516", + "default.handlebars->33->1518", "default.handlebars->33->400", "default.handlebars->33->414", - "default.handlebars->33->887" + "default.handlebars->33->889" ] }, { @@ -2799,8 +2799,8 @@ "ja": "ACM", "xloc": [ "default-mobile.handlebars->11->274", - "default.handlebars->33->1656", - "default.handlebars->33->675" + "default.handlebars->33->1658", + "default.handlebars->33->677" ] }, { @@ -2855,7 +2855,7 @@ "ja": "AMT", "xloc": [ "default.handlebars->33->296", - "default.handlebars->33->509" + "default.handlebars->33->511" ] }, { @@ -2869,7 +2869,7 @@ "ru": "AMT-OS", "zh-chs": "操作系统", "xloc": [ - "default.handlebars->33->2454" + "default.handlebars->33->2457" ] }, { @@ -2990,8 +2990,8 @@ "xloc": [ "default-mobile.handlebars->11->459", "default-mobile.handlebars->11->461", - "default.handlebars->33->694", - "default.handlebars->33->696" + "default.handlebars->33->696", + "default.handlebars->33->698" ] }, { @@ -3012,7 +3012,7 @@ "ja": "アクセスが拒否されました", "xloc": [ "default-mobile.handlebars->11->548", - "default.handlebars->33->1252" + "default.handlebars->33->1254" ] }, { @@ -3068,7 +3068,7 @@ "zh-cht": "存取伺服器檔案", "ja": "サーバーファイルへのアクセス", "xloc": [ - "default.handlebars->33->2213" + "default.handlebars->33->2216" ] }, { @@ -3157,11 +3157,11 @@ "default-mobile.handlebars->11->243", "default-mobile.handlebars->11->245", "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountSecurity->1->0", - "default.handlebars->33->1550", "default.handlebars->33->1552", - "default.handlebars->33->2505", - "default.handlebars->33->637", - "default.handlebars->33->639" + "default.handlebars->33->1554", + "default.handlebars->33->2508", + "default.handlebars->33->639", + "default.handlebars->33->641" ] }, { @@ -3176,7 +3176,7 @@ "zh-chs": "帐号设定", "xloc": [ "default-mobile.handlebars->11->641", - "default.handlebars->33->2384" + "default.handlebars->33->2387" ] }, { @@ -3237,7 +3237,7 @@ "zh-cht": "帳戶已更改:{0}", "ja": "アカウントが変更されました:{0}", "xloc": [ - "default.handlebars->33->1950" + "default.handlebars->33->1952" ] }, { @@ -3257,7 +3257,7 @@ "zh-cht": "創建帳戶,電子郵件為{0}", "ja": "アカウントを作成しました、メールは{0}です", "xloc": [ - "default.handlebars->33->1949" + "default.handlebars->33->1951" ] }, { @@ -3277,7 +3277,7 @@ "zh-cht": "帳戶已創建,用戶名是{0}", "ja": "アカウントが作成され、ユーザー名は{0}です", "xloc": [ - "default.handlebars->33->1948" + "default.handlebars->33->1950" ] }, { @@ -3297,8 +3297,8 @@ "zh-cht": "帳戶已被鎖定", "ja": "アカウントがロックされています", "xloc": [ - "default.handlebars->33->2050", - "default.handlebars->33->2210" + "default.handlebars->33->2053", + "default.handlebars->33->2213" ] }, { @@ -3319,7 +3319,7 @@ "ja": "アカウントの上限に達しました。", "xloc": [ "default-mobile.handlebars->11->653", - "default.handlebars->33->2396", + "default.handlebars->33->2399", "login-mobile.handlebars->5->6", "login.handlebars->5->6", "login2.handlebars->7->8" @@ -3364,7 +3364,7 @@ "zh-cht": "帳號登錄", "ja": "アカウントログイン", "xloc": [ - "default.handlebars->33->1885" + "default.handlebars->33->1887" ] }, { @@ -3378,7 +3378,7 @@ "ru": "Вход в аккаунт с {0}, {1}, {2}", "zh-chs": "来自 {0}、{1}、{2} 的帐户登录", "xloc": [ - "default.handlebars->33->1991" + "default.handlebars->33->1993" ] }, { @@ -3398,7 +3398,7 @@ "zh-cht": "帳戶登出", "ja": "アカウントのログアウト", "xloc": [ - "default.handlebars->33->1886" + "default.handlebars->33->1888" ] }, { @@ -3440,7 +3440,7 @@ "zh-cht": "帳戶密碼已更改:{0}", "ja": "アカウントのパスワードが変更されました:{0}", "xloc": [ - "default.handlebars->33->1958" + "default.handlebars->33->1960" ] }, { @@ -3460,7 +3460,7 @@ "zh-cht": "帳戶已刪除", "ja": "アカウントが削除されました", "xloc": [ - "default.handlebars->33->1947" + "default.handlebars->33->1949" ] }, { @@ -3501,7 +3501,7 @@ "ja": "アクション", "xloc": [ "default-mobile.handlebars->11->554", - "default.handlebars->33->1258", + "default.handlebars->33->1260", "default.handlebars->container->column_l->p42->p42tbl->1->0->8" ] }, @@ -3522,8 +3522,8 @@ "zh-cht": "動作檔案", "ja": "アクションファイル", "xloc": [ - "default.handlebars->33->987", - "default.handlebars->33->989" + "default.handlebars->33->989", + "default.handlebars->33->991" ] }, { @@ -3547,7 +3547,7 @@ "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea4->1->3", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->1", "default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea4->1->3", - "default.handlebars->33->741", + "default.handlebars->33->743", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->1", "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->1" @@ -3630,7 +3630,7 @@ "zh-cht": "如果ACM失敗,則激活到CCM", "ja": "ACMが失敗した場合は、CCMをアクティブにします", "xloc": [ - "default.handlebars->33->1679" + "default.handlebars->33->1681" ] }, { @@ -3653,9 +3653,9 @@ "default-mobile.handlebars->11->269", "default-mobile.handlebars->11->271", "default-mobile.handlebars->11->510", - "default.handlebars->33->1213", - "default.handlebars->33->668", - "default.handlebars->33->670" + "default.handlebars->33->1215", + "default.handlebars->33->670", + "default.handlebars->33->672" ] }, { @@ -3695,7 +3695,7 @@ "zh-cht": "主動設備共享", "ja": "アクティブデバイス共有", "xloc": [ - "default.handlebars->33->799" + "default.handlebars->33->801" ] }, { @@ -3709,7 +3709,7 @@ "ru": "Активные токены входа", "zh-chs": "活动登录令牌", "xloc": [ - "default.handlebars->33->1571" + "default.handlebars->33->1573" ] }, { @@ -3741,7 +3741,7 @@ "zh-chs": "添加", "xloc": [ "default-mobile.handlebars->11->393", - "default.handlebars->33->1053" + "default.handlebars->33->1055" ] }, { @@ -3779,7 +3779,7 @@ "zh-cht": "新增代理", "ja": "エージェントを追加", "xloc": [ - "default.handlebars->33->1652", + "default.handlebars->33->1654", "default.handlebars->33->342" ] }, @@ -3817,8 +3817,8 @@ "zh-cht": "新增裝置", "ja": "デバイスを追加", "xloc": [ - "default.handlebars->33->2187", - "default.handlebars->33->2317", + "default.handlebars->33->2190", + "default.handlebars->33->2320", "default.handlebars->33->346" ] }, @@ -3839,7 +3839,7 @@ "zh-cht": "新增裝置日誌", "ja": "デバイスイベントを追加", "xloc": [ - "default.handlebars->33->855" + "default.handlebars->33->857" ] }, { @@ -3859,9 +3859,9 @@ "zh-cht": "新增裝置群", "ja": "デバイスグループを追加", "xloc": [ - "default.handlebars->33->1754", - "default.handlebars->33->2181", - "default.handlebars->33->2305", + "default.handlebars->33->1756", + "default.handlebars->33->2184", + "default.handlebars->33->2308", "default.handlebars->33->276" ] }, @@ -3882,7 +3882,7 @@ "zh-cht": "新增裝置群權限", "ja": "デバイスグループ権限を追加", "xloc": [ - "default.handlebars->33->1751" + "default.handlebars->33->1753" ] }, { @@ -3902,8 +3902,8 @@ "zh-cht": "新增裝置權限", "ja": "デバイス権限を追加", "xloc": [ - "default.handlebars->33->1756", - "default.handlebars->33->1758" + "default.handlebars->33->1758", + "default.handlebars->33->1760" ] }, { @@ -4009,7 +4009,7 @@ "zh-cht": "新增成員身份", "ja": "メンバーシップを追加", "xloc": [ - "default.handlebars->33->2337" + "default.handlebars->33->2340" ] }, { @@ -4029,7 +4029,7 @@ "zh-cht": "新增 Mesh Agent", "ja": "メッシュエージェントを追加", "xloc": [ - "default.handlebars->33->480" + "default.handlebars->33->482" ] }, { @@ -4058,8 +4058,8 @@ "zh-cht": "新增安全密鑰", "ja": "セキュリティキーを追加", "xloc": [ - "default.handlebars->33->1297", - "default.handlebars->33->1298", + "default.handlebars->33->1299", + "default.handlebars->33->1300", "default.handlebars->33->167", "default.handlebars->33->169", "default.handlebars->33->172", @@ -4084,7 +4084,7 @@ "ja": "ユーザーを追加する", "xloc": [ "default-mobile.handlebars->11->570", - "default.handlebars->33->791" + "default.handlebars->33->793" ] }, { @@ -4104,7 +4104,7 @@ "zh-cht": "新增用戶裝置權限", "ja": "ユーザーデバイスの権限を追加する", "xloc": [ - "default.handlebars->33->1761" + "default.handlebars->33->1763" ] }, { @@ -4124,10 +4124,10 @@ "zh-cht": "新增用戶群", "ja": "ユーザーグループを追加", "xloc": [ - "default.handlebars->33->1648", - "default.handlebars->33->1753", - "default.handlebars->33->2311", - "default.handlebars->33->792" + "default.handlebars->33->1650", + "default.handlebars->33->1755", + "default.handlebars->33->2314", + "default.handlebars->33->794" ] }, { @@ -4147,7 +4147,7 @@ "zh-cht": "新增用戶群裝置權限", "ja": "ユーザーグループデバイスのアクセス許可を追加する", "xloc": [ - "default.handlebars->33->1763" + "default.handlebars->33->1765" ] }, { @@ -4204,8 +4204,8 @@ "zh-cht": "新增用戶", "ja": "ユーザーを追加", "xloc": [ - "default.handlebars->33->1647", - "default.handlebars->33->2176" + "default.handlebars->33->1649", + "default.handlebars->33->2179" ] }, { @@ -4225,7 +4225,7 @@ "zh-cht": "將用戶新增到裝置群", "ja": "ユーザーをデバイスグループに追加する", "xloc": [ - "default.handlebars->33->1750" + "default.handlebars->33->1752" ] }, { @@ -4245,7 +4245,7 @@ "zh-cht": "將用戶新增到用戶群", "ja": "ユーザーをユーザーグループに追加", "xloc": [ - "default.handlebars->33->2209" + "default.handlebars->33->2212" ] }, { @@ -4376,7 +4376,7 @@ "zh-cht": "通過安裝Mesh Agent將新電腦新增到該裝置群。", "ja": "メッシュエージェントをインストールして、このデバイスグループに新しいコンピューターを追加します。", "xloc": [ - "default.handlebars->33->1651", + "default.handlebars->33->1653", "default.handlebars->33->341" ] }, @@ -4425,7 +4425,7 @@ "zh-cht": "新增標籤", "ja": "タグを追加する", "xloc": [ - "default.handlebars->33->549" + "default.handlebars->33->551" ] }, { @@ -4465,7 +4465,7 @@ "zh-cht": "添加了身份驗證應用程序", "ja": "認証アプリケーションを追加", "xloc": [ - "default.handlebars->33->1974" + "default.handlebars->33->1976" ] }, { @@ -4485,7 +4485,7 @@ "zh-cht": "已將設備共享{0}從{1}添加到{2}", "ja": "デバイス共有{0}を{1}から{2}に追加しました", "xloc": [ - "default.handlebars->33->1985" + "default.handlebars->33->1987" ] }, { @@ -4505,8 +4505,8 @@ "zh-cht": "已將設備{0}添加到設備組{1}", "ja": "デバイス{0}をデバイスグループ{1}に追加しました", "xloc": [ - "default.handlebars->33->1941", - "default.handlebars->33->1968" + "default.handlebars->33->1943", + "default.handlebars->33->1970" ] }, { @@ -4520,7 +4520,7 @@ "ru": "Добавлен токен входа", "zh-chs": "添加登录令牌", "xloc": [ - "default.handlebars->33->1999" + "default.handlebars->33->2001" ] }, { @@ -4533,7 +4533,7 @@ "nl": "Verificatie apparaat voor pushmeldingen toegevoegd", "zh-chs": "新增推送通知认证装置", "xloc": [ - "default.handlebars->33->1997" + "default.handlebars->33->1999" ] }, { @@ -4553,7 +4553,7 @@ "zh-cht": "添加了安全密鑰", "ja": "追加されたセキュリティキー", "xloc": [ - "default.handlebars->33->1979" + "default.handlebars->33->1981" ] }, { @@ -4573,7 +4573,7 @@ "zh-cht": "已將用戶組{0}添加到設備組{1}", "ja": "ユーザーグループ{0}をデバイスグループ{1}に追加しました", "xloc": [ - "default.handlebars->33->1952" + "default.handlebars->33->1954" ] }, { @@ -4593,8 +4593,8 @@ "zh-cht": "已將用戶{0}添加到用戶組{1}", "ja": "ユーザー{0}をユーザーグループ{1}に追加しました", "xloc": [ - "default.handlebars->33->1955", - "default.handlebars->33->1964" + "default.handlebars->33->1957", + "default.handlebars->33->1966" ] }, { @@ -4655,7 +4655,7 @@ "ja": "管理制御モード(ACM)", "xloc": [ "default-mobile.handlebars->11->512", - "default.handlebars->33->1215" + "default.handlebars->33->1217" ] }, { @@ -4676,7 +4676,7 @@ "ja": "管理者の資格情報", "xloc": [ "default-mobile.handlebars->11->518", - "default.handlebars->33->1221" + "default.handlebars->33->1223" ] }, { @@ -4717,7 +4717,7 @@ "zh-cht": "管理領域", "ja": "管理レルム", "xloc": [ - "default.handlebars->33->2245" + "default.handlebars->33->2248" ] }, { @@ -4758,7 +4758,7 @@ "zh-cht": "管理領域", "ja": "管理レルム", "xloc": [ - "default.handlebars->33->2113" + "default.handlebars->33->2116" ] }, { @@ -4778,7 +4778,7 @@ "zh-cht": "管理員", "ja": "管理者", "xloc": [ - "default.handlebars->33->2042" + "default.handlebars->33->2045" ] }, { @@ -4798,7 +4798,7 @@ "zh-cht": "南非文", "ja": "アフリカーンス語", "xloc": [ - "default.handlebars->33->1300" + "default.handlebars->33->1302" ] }, { @@ -4822,11 +4822,11 @@ "default-mobile.handlebars->11->235", "default-mobile.handlebars->11->288", "default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1", - "default.handlebars->33->1817", - "default.handlebars->33->1830", - "default.handlebars->33->2452", + "default.handlebars->33->1819", + "default.handlebars->33->1832", + "default.handlebars->33->2455", "default.handlebars->33->292", - "default.handlebars->33->505", + "default.handlebars->33->507", "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1" ] }, @@ -4847,8 +4847,8 @@ "zh-cht": "代理+Intel® AMT", "ja": "エージェント+ Intel® AMT", "xloc": [ - "default.handlebars->33->1819", - "default.handlebars->33->1832" + "default.handlebars->33->1821", + "default.handlebars->33->1834" ] }, { @@ -4890,7 +4890,7 @@ "ja": "エージェントコンソール", "xloc": [ "default-mobile.handlebars->11->612", - "default.handlebars->33->1771" + "default.handlebars->33->1773" ] }, { @@ -4910,7 +4910,7 @@ "zh-cht": "代理錯誤計數器", "ja": "エージェントエラーカウンター", "xloc": [ - "default.handlebars->33->2421" + "default.handlebars->33->2424" ] }, { @@ -5036,7 +5036,7 @@ "zh-cht": "代理時段", "ja": "エージェントセッション", "xloc": [ - "default.handlebars->33->2437" + "default.handlebars->33->2440" ] }, { @@ -5066,7 +5066,7 @@ "ja": "エージェントタグ", "xloc": [ "default-mobile.handlebars->11->287", - "default.handlebars->33->691" + "default.handlebars->33->693" ] }, { @@ -5086,7 +5086,7 @@ "zh-cht": "代理類型", "ja": "エージェントの種類", "xloc": [ - "default.handlebars->33->1828", + "default.handlebars->33->1830", "default.handlebars->container->column_l->p21->p21main->1->1->meshOsChartDiv->1" ] }, @@ -5107,7 +5107,7 @@ "zh-cht": "代理關閉了與{0}%代理到服務器壓縮的會話。已發送:{1},已壓縮:{2}", "ja": "エージェントが{0}%のエージェントからサーバーへの圧縮でセッションを閉じました。送信済み:{1}、圧縮済み:{2}", "xloc": [ - "default.handlebars->33->1938" + "default.handlebars->33->1940" ] }, { @@ -5128,8 +5128,8 @@ "ja": "接続されたエージェント", "xloc": [ "default.handlebars->33->181", - "default.handlebars->33->782", - "default.handlebars->33->783" + "default.handlebars->33->784", + "default.handlebars->33->785" ] }, { @@ -5197,7 +5197,7 @@ "ja": "エージェントはオフラインです", "xloc": [ "default-mobile.handlebars->11->546", - "default.handlebars->33->1250" + "default.handlebars->33->1252" ] }, { @@ -5218,7 +5218,7 @@ "ja": "エージェントはオンラインです", "xloc": [ "default-mobile.handlebars->11->545", - "default.handlebars->33->1249" + "default.handlebars->33->1251" ] }, { @@ -5266,7 +5266,7 @@ "ja": "エージェントは、特権が削減されたリモートデバイスで実行されています。", "xloc": [ "default.handlebars->33->179", - "default.handlebars->33->780" + "default.handlebars->33->782" ] }, { @@ -5322,7 +5322,7 @@ "zh-cht": "代理", "ja": "エージェント", "xloc": [ - "default.handlebars->33->2465" + "default.handlebars->33->2468" ] }, { @@ -5342,7 +5342,7 @@ "zh-cht": "阿爾巴尼亞文", "ja": "アルバニア語", "xloc": [ - "default.handlebars->33->1301" + "default.handlebars->33->1303" ] }, { @@ -5385,7 +5385,7 @@ "zh-cht": "全部可用", "ja": "すべて利用可能", "xloc": [ - "default.handlebars->33->2005" + "default.handlebars->33->2008" ] }, { @@ -5405,7 +5405,7 @@ "zh-cht": "所有顯示", "ja": "すべてのディスプレイ", "xloc": [ - "default.handlebars->33->1078" + "default.handlebars->33->1080" ] }, { @@ -5425,7 +5425,7 @@ "zh-cht": "所有事件", "ja": "すべてのイベント", "xloc": [ - "default.handlebars->33->2003" + "default.handlebars->33->2006" ] }, { @@ -5445,9 +5445,9 @@ "zh-cht": "全部聚焦", "ja": "オールフォーカス", "xloc": [ - "default.handlebars->33->1023", "default.handlebars->33->1025", - "default.handlebars->33->1026" + "default.handlebars->33->1027", + "default.handlebars->33->1028" ] }, { @@ -5476,8 +5476,8 @@ "zh-cht": "允許用戶管理此裝置群和該群中的裝置。", "ja": "ユーザーがこのデバイスグループとこのグループ内のデバイスを管理できるようにします。", "xloc": [ - "default.handlebars->33->1717", - "default.handlebars->33->2206" + "default.handlebars->33->1719", + "default.handlebars->33->2209" ] }, { @@ -5497,7 +5497,7 @@ "zh-cht": "允許用戶管理此裝置。", "ja": "ユーザーにこのデバイスの管理を許可します。", "xloc": [ - "default.handlebars->33->1718" + "default.handlebars->33->1720" ] }, { @@ -5548,8 +5548,8 @@ "xloc": [ "default-mobile.handlebars->11->386", "default-mobile.handlebars->11->390", - "default.handlebars->33->1046", - "default.handlebars->33->1050" + "default.handlebars->33->1048", + "default.handlebars->33->1052" ] }, { @@ -5611,7 +5611,7 @@ "zh-cht": "備用(F10 = ESC + 0)", "ja": "代替(F10 = ESC + 0)", "xloc": [ - "default.handlebars->33->1098", + "default.handlebars->33->1100", "sharing.handlebars->11->37" ] }, @@ -5663,10 +5663,10 @@ "zh-cht": "一直通知", "ja": "常に通知する", "xloc": [ - "default.handlebars->33->1627", - "default.handlebars->33->2167", - "default.handlebars->33->2254", - "default.handlebars->33->719" + "default.handlebars->33->1629", + "default.handlebars->33->2170", + "default.handlebars->33->2257", + "default.handlebars->33->721" ] }, { @@ -5686,10 +5686,10 @@ "zh-cht": "一直提示", "ja": "常にプロンプ​​ト", "xloc": [ - "default.handlebars->33->1628", - "default.handlebars->33->2168", - "default.handlebars->33->2255", - "default.handlebars->33->720" + "default.handlebars->33->1630", + "default.handlebars->33->2171", + "default.handlebars->33->2258", + "default.handlebars->33->722" ] }, { @@ -5699,10 +5699,7 @@ "fr": "Toujours connecté", "hi": "हमेशा जुड़ा", "ko": "常時接続", - "zh-chs": "始终连接", - "xloc": [ - "default.handlebars->33->441" - ] + "zh-chs": "始终连接" }, { "cs": "Účet byl pro vás vytvořen na serveru", @@ -5865,8 +5862,8 @@ "ru": "Антивирус не активен", "zh-chs": "杀毒软件未激活", "xloc": [ - "default.handlebars->33->1821", - "default.handlebars->33->1835" + "default.handlebars->33->1823", + "default.handlebars->33->1837" ] }, { @@ -5887,7 +5884,7 @@ "ja": "アンチウイルス", "xloc": [ "default-mobile.handlebars->11->475", - "default.handlebars->33->710" + "default.handlebars->33->712" ] }, { @@ -6027,6 +6024,18 @@ "ko": "アプリケーション名", "zh-chs": "应用名称" }, + { + "en": "Application, Always connected", + "xloc": [ + "default.handlebars->33->441" + ] + }, + { + "en": "Application, Connect on user request", + "xloc": [ + "default.handlebars->33->440" + ] + }, { "cs": "arabština (Alžír)", "de": "Arabisch (Algerien)", @@ -6044,7 +6053,7 @@ "zh-cht": "阿拉伯文(阿爾及利亞)", "ja": "アラビア語(アルジェリア)", "xloc": [ - "default.handlebars->33->1303" + "default.handlebars->33->1305" ] }, { @@ -6064,7 +6073,7 @@ "zh-cht": "阿拉伯文(巴林)", "ja": "アラビア語(バーレーン)", "xloc": [ - "default.handlebars->33->1304" + "default.handlebars->33->1306" ] }, { @@ -6084,7 +6093,7 @@ "zh-cht": "阿拉伯文(埃及)", "ja": "アラビア語(エジプト)", "xloc": [ - "default.handlebars->33->1305" + "default.handlebars->33->1307" ] }, { @@ -6104,7 +6113,7 @@ "zh-cht": "阿拉伯文(伊拉克)", "ja": "アラビア語(イラク)", "xloc": [ - "default.handlebars->33->1306" + "default.handlebars->33->1308" ] }, { @@ -6124,7 +6133,7 @@ "zh-cht": "阿拉伯文(約旦)", "ja": "アラビア語(ヨルダン)", "xloc": [ - "default.handlebars->33->1307" + "default.handlebars->33->1309" ] }, { @@ -6144,7 +6153,7 @@ "zh-cht": "阿拉伯文(科威特)", "ja": "アラビア語(クウェート)", "xloc": [ - "default.handlebars->33->1308" + "default.handlebars->33->1310" ] }, { @@ -6164,7 +6173,7 @@ "zh-cht": "阿拉伯文(黎巴嫩)", "ja": "アラビア語(レバノン)", "xloc": [ - "default.handlebars->33->1309" + "default.handlebars->33->1311" ] }, { @@ -6184,7 +6193,7 @@ "zh-cht": "阿拉伯文(利比亞)", "ja": "アラビア語(リビア)", "xloc": [ - "default.handlebars->33->1310" + "default.handlebars->33->1312" ] }, { @@ -6204,7 +6213,7 @@ "zh-cht": "阿拉伯文(摩洛哥)", "ja": "アラビア語(モロッコ)", "xloc": [ - "default.handlebars->33->1311" + "default.handlebars->33->1313" ] }, { @@ -6224,7 +6233,7 @@ "zh-cht": "阿拉伯文(阿曼)", "ja": "アラビア語(オマーン)", "xloc": [ - "default.handlebars->33->1312" + "default.handlebars->33->1314" ] }, { @@ -6244,7 +6253,7 @@ "zh-cht": "阿拉伯文(卡塔爾)", "ja": "アラビア語(カタール)", "xloc": [ - "default.handlebars->33->1313" + "default.handlebars->33->1315" ] }, { @@ -6264,7 +6273,7 @@ "zh-cht": "阿拉伯文(沙特阿拉伯)", "ja": "アラビア語(サウジアラビア)", "xloc": [ - "default.handlebars->33->1314" + "default.handlebars->33->1316" ] }, { @@ -6284,7 +6293,7 @@ "zh-cht": "阿拉伯文(標準)", "ja": "アラビア語(標準)", "xloc": [ - "default.handlebars->33->1302" + "default.handlebars->33->1304" ] }, { @@ -6304,7 +6313,7 @@ "zh-cht": "阿拉伯文(敘利亞)", "ja": "アラビア語(シリア)", "xloc": [ - "default.handlebars->33->1315" + "default.handlebars->33->1317" ] }, { @@ -6324,7 +6333,7 @@ "zh-cht": "阿拉伯文(突尼斯)", "ja": "アラビア語(チュニジア)", "xloc": [ - "default.handlebars->33->1316" + "default.handlebars->33->1318" ] }, { @@ -6344,7 +6353,7 @@ "zh-cht": "阿拉伯文(阿聯酋)", "ja": "アラビア語(U.A.E.)", "xloc": [ - "default.handlebars->33->1317" + "default.handlebars->33->1319" ] }, { @@ -6364,7 +6373,7 @@ "zh-cht": "阿拉伯文(也門)", "ja": "アラビア語(イエメン)", "xloc": [ - "default.handlebars->33->1318" + "default.handlebars->33->1320" ] }, { @@ -6384,7 +6393,7 @@ "zh-cht": "阿拉貢文", "ja": "アラゴン語", "xloc": [ - "default.handlebars->33->1319" + "default.handlebars->33->1321" ] }, { @@ -6405,7 +6414,7 @@ "ja": "建築", "xloc": [ "default-mobile.handlebars->11->458", - "default.handlebars->33->1168" + "default.handlebars->33->1170" ] }, { @@ -6446,7 +6455,7 @@ "ja": "グループ{0}を削除してもよろしいですか?デバイスグループを削除すると、このグループ内のデバイスに関するすべての情報も削除されます。", "xloc": [ "default-mobile.handlebars->11->577", - "default.handlebars->33->1693" + "default.handlebars->33->1695" ] }, { @@ -6466,7 +6475,7 @@ "zh-cht": "你確定要刪除節點{0}嗎?", "ja": "ノード{0}を削除してもよろしいですか?", "xloc": [ - "default.handlebars->33->963" + "default.handlebars->33->965" ] }, { @@ -6486,7 +6495,7 @@ "zh-cht": "你確定要卸載所選代理嗎?", "ja": "選択したエージェントをアンインストールしてもよろしいですか?", "xloc": [ - "default.handlebars->33->952" + "default.handlebars->33->954" ] }, { @@ -6506,7 +6515,7 @@ "zh-cht": "你確定要卸載所選的{0}代理嗎?", "ja": "選択した{0}エージェントをアンインストールしてもよろしいですか?", "xloc": [ - "default.handlebars->33->951" + "default.handlebars->33->953" ] }, { @@ -6526,7 +6535,7 @@ "zh-cht": "你確定要{0}外掛嗎:{1}", "ja": "プラグインを{0}してもよろしいですか:{1}", "xloc": [ - "default.handlebars->33->2514" + "default.handlebars->33->2517" ] }, { @@ -6546,7 +6555,7 @@ "zh-cht": "亞美尼亞文", "ja": "アルメニア人", "xloc": [ - "default.handlebars->33->1320" + "default.handlebars->33->1322" ] }, { @@ -6606,7 +6615,7 @@ "zh-cht": "阿薩姆文", "ja": "アッサム語", "xloc": [ - "default.handlebars->33->1321" + "default.handlebars->33->1323" ] }, { @@ -6659,7 +6668,7 @@ "ru": "Ассистент для Windows (.exe)", "zh-chs": "Windows 助手 (.exe)", "xloc": [ - "default.handlebars->33->463" + "default.handlebars->33->465" ] }, { @@ -6693,7 +6702,7 @@ "zh-cht": "阿斯圖里亞斯文", "ja": "アストゥリアス", "xloc": [ - "default.handlebars->33->1322" + "default.handlebars->33->1324" ] }, { @@ -6713,7 +6722,7 @@ "zh-cht": "嘗試激活英特爾(R)AMT ACM模式", "ja": "インテル(R)AMT ACMモードのアクティブ化を試みています", "xloc": [ - "default.handlebars->33->1907" + "default.handlebars->33->1909" ] }, { @@ -6738,8 +6747,8 @@ "xloc": [ "default-mobile.handlebars->11->405", "default-mobile.handlebars->11->416", - "default.handlebars->33->1089", - "default.handlebars->33->1110", + "default.handlebars->33->1091", + "default.handlebars->33->1112", "ssh.handlebars->3->7", "ssh.handlebars->3->8" ] @@ -6761,7 +6770,7 @@ "zh-cht": "認證軟體", "ja": "認証アプリ", "xloc": [ - "default.handlebars->33->2258" + "default.handlebars->33->2261" ] }, { @@ -6775,9 +6784,9 @@ "ru": "Устройство аутентификации", "zh-chs": "认证设备", "xloc": [ - "default.handlebars->33->1283", "default.handlebars->33->1285", - "default.handlebars->33->1289" + "default.handlebars->33->1287", + "default.handlebars->33->1291" ] }, { @@ -6792,8 +6801,8 @@ "xloc": [ "default-mobile.handlebars->11->406", "default-mobile.handlebars->11->417", - "default.handlebars->33->1091", - "default.handlebars->33->1111" + "default.handlebars->33->1093", + "default.handlebars->33->1113" ] }, { @@ -6817,8 +6826,8 @@ "default-mobile.handlebars->11->64", "default-mobile.handlebars->11->95", "default-mobile.handlebars->11->97", - "default.handlebars->33->1279", "default.handlebars->33->1281", + "default.handlebars->33->1283", "default.handlebars->33->143", "default.handlebars->33->148" ] @@ -6900,7 +6909,7 @@ "zh-cht": "自動刪除", "ja": "自動削除", "xloc": [ - "default.handlebars->33->1614" + "default.handlebars->33->1616" ] }, { @@ -6944,7 +6953,7 @@ "zh-cht": "自動下載代理程序核心轉儲文件:“{0}”", "ja": "エージェントコアダンプファイルの自動ダウンロード:\\\"{0}\\\"", "xloc": [ - "default.handlebars->33->1988" + "default.handlebars->33->1990" ] }, { @@ -6984,7 +6993,7 @@ "zh-cht": "可用內存", "ja": "使用可能なメモリ", "xloc": [ - "default.handlebars->33->2446" + "default.handlebars->33->2449" ] }, { @@ -7004,7 +7013,7 @@ "zh-cht": "阿塞拜疆文", "ja": "アゼルバイジャン語", "xloc": [ - "default.handlebars->33->1323" + "default.handlebars->33->1325" ] }, { @@ -7021,9 +7030,9 @@ "default-mobile.handlebars->11->462", "default-mobile.handlebars->11->466", "default-mobile.handlebars->11->470", - "default.handlebars->33->697", - "default.handlebars->33->701", - "default.handlebars->33->705" + "default.handlebars->33->699", + "default.handlebars->33->703", + "default.handlebars->33->707" ] }, { @@ -7044,7 +7053,7 @@ "ja": "BIOS", "xloc": [ "default-mobile.handlebars->11->524", - "default.handlebars->33->1227" + "default.handlebars->33->1229" ] }, { @@ -7135,7 +7144,7 @@ "zh-chs": "退格", "xloc": [ "default-mobile.handlebars->11->369", - "default.handlebars->33->1029" + "default.handlebars->33->1031" ] }, { @@ -7175,8 +7184,8 @@ "zh-cht": "背景與互動", "ja": "背景とインタラクティブ", "xloc": [ - "default.handlebars->33->1800", - "default.handlebars->33->1807", + "default.handlebars->33->1802", + "default.handlebars->33->1809", "default.handlebars->33->406", "default.handlebars->33->420" ] @@ -7198,8 +7207,8 @@ "zh-cht": "僅背景", "ja": "背景のみ", "xloc": [ - "default.handlebars->33->1801", - "default.handlebars->33->1808", + "default.handlebars->33->1803", + "default.handlebars->33->1810", "default.handlebars->33->407", "default.handlebars->33->421", "default.handlebars->33->437" @@ -7243,7 +7252,7 @@ "zh-cht": "備用碼", "ja": "バックアップコード", "xloc": [ - "default.handlebars->33->2260" + "default.handlebars->33->2263" ] }, { @@ -7263,7 +7272,7 @@ "zh-cht": "錯誤的簽名", "ja": "悪い署名", "xloc": [ - "default.handlebars->33->2428" + "default.handlebars->33->2431" ] }, { @@ -7283,7 +7292,7 @@ "zh-cht": "錯誤的網絡憑證", "ja": "不正なWeb証明書", "xloc": [ - "default.handlebars->33->2427" + "default.handlebars->33->2430" ] }, { @@ -7303,7 +7312,7 @@ "zh-cht": "巴斯克", "ja": "バスク", "xloc": [ - "default.handlebars->33->1324" + "default.handlebars->33->1326" ] }, { @@ -7323,7 +7332,7 @@ "zh-cht": "批處理文件上傳", "ja": "バッチファイルのアップロード", "xloc": [ - "default.handlebars->33->565" + "default.handlebars->33->567" ] }, { @@ -7363,7 +7372,7 @@ "zh-cht": "將{0}個文件批量上傳到文件夾{1}", "ja": "{0}ファイルのフォルダ{1}へのバッチアップロード", "xloc": [ - "default.handlebars->33->1987" + "default.handlebars->33->1989" ] }, { @@ -7383,7 +7392,7 @@ "zh-cht": "白俄羅斯文", "ja": "ベラルーシ語", "xloc": [ - "default.handlebars->33->1326" + "default.handlebars->33->1328" ] }, { @@ -7403,7 +7412,7 @@ "zh-cht": "孟加拉", "ja": "ベンガル語", "xloc": [ - "default.handlebars->33->1327" + "default.handlebars->33->1329" ] }, { @@ -7450,7 +7459,7 @@ "zh-chs": "引导加载程序", "xloc": [ "default-mobile.handlebars->11->488", - "default.handlebars->33->1181" + "default.handlebars->33->1183" ] }, { @@ -7470,7 +7479,7 @@ "zh-cht": "波斯尼亞文", "ja": "ボスニア語", "xloc": [ - "default.handlebars->33->1328" + "default.handlebars->33->1330" ] }, { @@ -7490,7 +7499,7 @@ "zh-cht": "布列塔尼", "ja": "ブルトン", "xloc": [ - "default.handlebars->33->1329" + "default.handlebars->33->1331" ] }, { @@ -7510,7 +7519,7 @@ "zh-cht": "廣播", "ja": "放送", "xloc": [ - "default.handlebars->33->2174", + "default.handlebars->33->2177", "default.handlebars->container->column_l->p4->3->1->0->3->1" ] }, @@ -7531,7 +7540,7 @@ "zh-cht": "廣播消息", "ja": "同報メッセージ", "xloc": [ - "default.handlebars->33->2095" + "default.handlebars->33->2098" ] }, { @@ -7551,7 +7560,7 @@ "zh-cht": "向所有連接的用戶廣播消息。", "ja": "接続されているすべてのユーザーにメッセージをブロードキャストします。", "xloc": [ - "default.handlebars->33->2090" + "default.handlebars->33->2093" ] }, { @@ -7586,7 +7595,7 @@ "zh-cht": "保加利亞文", "ja": "ブルガリア語", "xloc": [ - "default.handlebars->33->1325" + "default.handlebars->33->1327" ] }, { @@ -7606,7 +7615,7 @@ "zh-cht": "緬甸文", "ja": "ビルマ語", "xloc": [ - "default.handlebars->33->1330" + "default.handlebars->33->1332" ] }, { @@ -7627,7 +7636,7 @@ "ja": "CCM", "xloc": [ "default-mobile.handlebars->11->273", - "default.handlebars->33->673" + "default.handlebars->33->675" ] }, { @@ -7647,7 +7656,7 @@ "zh-cht": "CCM模式", "ja": "CCMモード", "xloc": [ - "default.handlebars->33->1676" + "default.handlebars->33->1678" ] }, { @@ -7668,9 +7677,9 @@ "ja": "CIRA", "xloc": [ "default-mobile.handlebars->11->236", - "default.handlebars->33->2453", + "default.handlebars->33->2456", "default.handlebars->33->294", - "default.handlebars->33->507" + "default.handlebars->33->509" ] }, { @@ -7690,7 +7699,7 @@ "zh-cht": "CIRA伺服器", "ja": "CIRAサーバー", "xloc": [ - "default.handlebars->33->2498" + "default.handlebars->33->2501" ] }, { @@ -7710,7 +7719,7 @@ "zh-cht": "CIRA伺服器指令", "ja": "CIRAサーバーコマンド", "xloc": [ - "default.handlebars->33->2499" + "default.handlebars->33->2502" ] }, { @@ -7730,7 +7739,7 @@ "zh-cht": "CIRA設置", "ja": "CIRAのセットアップ", "xloc": [ - "default.handlebars->33->1684" + "default.handlebars->33->1686" ] }, { @@ -7751,7 +7760,7 @@ "ja": "CPU", "xloc": [ "default-mobile.handlebars->11->530", - "default.handlebars->33->1233" + "default.handlebars->33->1235" ] }, { @@ -7771,7 +7780,7 @@ "zh-cht": "CPU負載", "ja": "CPU負荷", "xloc": [ - "default.handlebars->33->2442" + "default.handlebars->33->2445" ] }, { @@ -7791,7 +7800,7 @@ "zh-cht": "最近15分鐘的CPU負載", "ja": "過去15分間のCPU負荷", "xloc": [ - "default.handlebars->33->2445" + "default.handlebars->33->2448" ] }, { @@ -7811,7 +7820,7 @@ "zh-cht": "最近5分鐘的CPU負載", "ja": "過去5分間のCPU負荷", "xloc": [ - "default.handlebars->33->2444" + "default.handlebars->33->2447" ] }, { @@ -7831,7 +7840,7 @@ "zh-cht": "最近一分鐘的CPU負載", "ja": "直前のCPU負荷", "xloc": [ - "default.handlebars->33->2443" + "default.handlebars->33->2446" ] }, { @@ -7851,8 +7860,8 @@ "zh-cht": "CR+LF", "ja": "CR + LF", "xloc": [ - "default.handlebars->33->1083", - "default.handlebars->33->1100", + "default.handlebars->33->1085", + "default.handlebars->33->1102", "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons", "sharing.handlebars->11->25", "sharing.handlebars->11->39", @@ -7876,7 +7885,7 @@ "zh-cht": "CSV", "ja": "CSV", "xloc": [ - "default.handlebars->33->2013" + "default.handlebars->33->2016" ] }, { @@ -7896,9 +7905,9 @@ "zh-cht": "CSV格式", "ja": "CSV形式", "xloc": [ - "default.handlebars->33->2017", - "default.handlebars->33->2082", - "default.handlebars->33->573" + "default.handlebars->33->2020", + "default.handlebars->33->2085", + "default.handlebars->33->575" ] }, { @@ -7935,7 +7944,7 @@ "zh-cht": "呼叫錯誤", "ja": "呼び出しエラー", "xloc": [ - "default.handlebars->33->2515" + "default.handlebars->33->2518" ] }, { @@ -7958,8 +7967,8 @@ "agent-translations.json", "default-mobile.handlebars->11->106", "default-mobile.handlebars->dialog->idx_dlgButtonBar", - "default.handlebars->33->1591", - "default.handlebars->33->2504", + "default.handlebars->33->1593", + "default.handlebars->33->2507", "default.handlebars->container->dialog->idx_dlgButtonBar", "login-mobile.handlebars->dialog->idx_dlgButtonBar", "login.handlebars->dialog->idx_dlgButtonBar", @@ -8008,9 +8017,9 @@ "default-mobile.handlebars->11->535", "default-mobile.handlebars->11->540", "default-mobile.handlebars->11->542", - "default.handlebars->33->1238", - "default.handlebars->33->1243", - "default.handlebars->33->1245" + "default.handlebars->33->1240", + "default.handlebars->33->1245", + "default.handlebars->33->1247" ] }, { @@ -8031,7 +8040,7 @@ "ja": "容量/速度", "xloc": [ "default-mobile.handlebars->11->533", - "default.handlebars->33->1236" + "default.handlebars->33->1238" ] }, { @@ -8051,7 +8060,7 @@ "zh-cht": "加泰羅尼亞文", "ja": "カタロニア語", "xloc": [ - "default.handlebars->33->1331" + "default.handlebars->33->1333" ] }, { @@ -8071,7 +8080,7 @@ "zh-cht": "在這裡為中心顯示地圖", "ja": "センターマップはこちら", "xloc": [ - "default.handlebars->33->628" + "default.handlebars->33->630" ] }, { @@ -8116,7 +8125,7 @@ "zh-cht": "查莫羅", "ja": "チャモロ", "xloc": [ - "default.handlebars->33->1332" + "default.handlebars->33->1334" ] }, { @@ -8158,7 +8167,7 @@ "zh-cht": "更改{0}的電郵", "ja": "{0}のメールを変更", "xloc": [ - "default.handlebars->33->2292" + "default.handlebars->33->2295" ] }, { @@ -8178,9 +8187,9 @@ "zh-cht": "更改群", "ja": "グループを変更", "xloc": [ - "default.handlebars->33->754", - "default.handlebars->33->960", - "default.handlebars->33->961" + "default.handlebars->33->756", + "default.handlebars->33->962", + "default.handlebars->33->963" ] }, { @@ -8201,8 +8210,8 @@ "ja": "パスワードを変更する", "xloc": [ "default-mobile.handlebars->11->114", - "default.handlebars->33->1547", - "default.handlebars->33->2277" + "default.handlebars->33->1549", + "default.handlebars->33->2280" ] }, { @@ -8222,7 +8231,7 @@ "zh-cht": "更改{0}的密碼", "ja": "{0}のパスワードを変更", "xloc": [ - "default.handlebars->33->2301" + "default.handlebars->33->2304" ] }, { @@ -8242,7 +8251,7 @@ "zh-cht": "更改{0}的真實名稱", "ja": "{0}の本名を変更", "xloc": [ - "default.handlebars->33->2287" + "default.handlebars->33->2290" ] }, { @@ -8347,7 +8356,7 @@ "zh-cht": "更改該用戶的密碼", "ja": "このユーザーのパスワードを変更します", "xloc": [ - "default.handlebars->33->2276" + "default.handlebars->33->2279" ] }, { @@ -8387,7 +8396,7 @@ "zh-cht": "在此處更改你的帳戶電郵地址。", "ja": "ここでアカウントのメールアドレスを変更します。", "xloc": [ - "default.handlebars->33->1534" + "default.handlebars->33->1536" ] }, { @@ -8407,7 +8416,7 @@ "zh-cht": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。", "ja": "下のボックスに古いパスワードと新しいパスワードを2回入力して、アカウントのパスワードを変更します。", "xloc": [ - "default.handlebars->33->1540" + "default.handlebars->33->1542" ] }, { @@ -8427,7 +8436,7 @@ "zh-cht": "帳戶憑證已更改", "ja": "アカウントの資格情報を変更しました", "xloc": [ - "default.handlebars->33->1959" + "default.handlebars->33->1961" ] }, { @@ -8447,7 +8456,7 @@ "zh-cht": "{1}組中的設備{0}已更改:{2}", "ja": "デバイス{0}をグループ{1}から変更しました:{2}", "xloc": [ - "default.handlebars->33->1943" + "default.handlebars->33->1945" ] }, { @@ -8467,7 +8476,7 @@ "zh-cht": "語言從{1}更改為{2}", "ja": "言語を{1}から{2}に変更しました", "xloc": [ - "default.handlebars->33->1887" + "default.handlebars->33->1889" ] }, { @@ -8487,8 +8496,8 @@ "zh-cht": "已更改{0}的用戶設備權限", "ja": "{0}のユーザーデバイス権限を変更しました", "xloc": [ - "default.handlebars->33->1945", - "default.handlebars->33->1966" + "default.handlebars->33->1947", + "default.handlebars->33->1968" ] }, { @@ -8517,7 +8526,7 @@ "zh-cht": "更改語言將需要刷新頁面。", "ja": "言語を変更するには、ページを更新する必要があります。", "xloc": [ - "default.handlebars->33->1499" + "default.handlebars->33->1501" ] }, { @@ -8537,12 +8546,12 @@ "zh-cht": "聊天", "ja": "チャット", "xloc": [ - "default.handlebars->33->2034", - "default.handlebars->33->2272", - "default.handlebars->33->2273", - "default.handlebars->33->749", - "default.handlebars->33->828", - "default.handlebars->33->850" + "default.handlebars->33->2037", + "default.handlebars->33->2275", + "default.handlebars->33->2276", + "default.handlebars->33->751", + "default.handlebars->33->830", + "default.handlebars->33->852" ] }, { @@ -8564,8 +8573,8 @@ "xloc": [ "default-mobile.handlebars->11->602", "default-mobile.handlebars->11->622", - "default.handlebars->33->1746", - "default.handlebars->33->1782" + "default.handlebars->33->1748", + "default.handlebars->33->1784" ] }, { @@ -8580,7 +8589,7 @@ "zh-chs": "聊天请求,点击这里接受。", "xloc": [ "default-mobile.handlebars->11->654", - "default.handlebars->33->2397" + "default.handlebars->33->2400" ] }, { @@ -8620,7 +8629,7 @@ "zh-cht": "車臣", "ja": "チェチェン", "xloc": [ - "default.handlebars->33->1333" + "default.handlebars->33->1335" ] }, { @@ -8720,8 +8729,8 @@ "zh-cht": "檢查...", "ja": "確認しています...", "xloc": [ - "default.handlebars->33->1299", - "default.handlebars->33->2509" + "default.handlebars->33->1301", + "default.handlebars->33->2512" ] }, { @@ -8741,7 +8750,7 @@ "zh-cht": "中文", "ja": "中国語", "xloc": [ - "default.handlebars->33->1334" + "default.handlebars->33->1336" ] }, { @@ -8761,7 +8770,7 @@ "zh-cht": "中文(香港)", "ja": "中国語(香港)", "xloc": [ - "default.handlebars->33->1335" + "default.handlebars->33->1337" ] }, { @@ -8781,7 +8790,7 @@ "zh-cht": "中文(中國)", "ja": "中国語(PRC)", "xloc": [ - "default.handlebars->33->1336" + "default.handlebars->33->1338" ] }, { @@ -8801,7 +8810,7 @@ "zh-cht": "簡體中文", "ja": "中国語(簡体字)", "xloc": [ - "default.handlebars->33->1496" + "default.handlebars->33->1498" ] }, { @@ -8821,7 +8830,7 @@ "zh-cht": "中文(新加坡)", "ja": "中国語(シンガポール)", "xloc": [ - "default.handlebars->33->1337" + "default.handlebars->33->1339" ] }, { @@ -8841,7 +8850,7 @@ "zh-cht": "中文(台灣)", "ja": "中国語(台湾)", "xloc": [ - "default.handlebars->33->1338" + "default.handlebars->33->1340" ] }, { @@ -8861,7 +8870,7 @@ "zh-cht": "繁體中文", "ja": "中国の伝統的な)", "xloc": [ - "default.handlebars->33->1497" + "default.handlebars->33->1499" ] }, { @@ -8902,7 +8911,7 @@ "zh-cht": "楚瓦什", "ja": "チュヴァシュ", "xloc": [ - "default.handlebars->33->1339" + "default.handlebars->33->1341" ] }, { @@ -8946,11 +8955,11 @@ "default-mobile.handlebars->11->448", "default-mobile.handlebars->11->71", "default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->5", - "default.handlebars->33->1145", "default.handlebars->33->1147", "default.handlebars->33->1149", "default.handlebars->33->1151", - "default.handlebars->33->1881", + "default.handlebars->33->1153", + "default.handlebars->33->1883", "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7", "default.handlebars->container->column_l->p41->3->1", "messenger.handlebars->xbottom->1->1->0->5", @@ -8972,7 +8981,7 @@ "zh-chs": "清除 SSH 凭据?", "xloc": [ "default-mobile.handlebars->11->354", - "default.handlebars->33->1002" + "default.handlebars->33->1004" ] }, { @@ -9006,8 +9015,8 @@ "ru": "Очистить ядро агента", "zh-chs": "清除代理核心", "xloc": [ - "default.handlebars->33->530", - "default.handlebars->33->569" + "default.handlebars->33->532", + "default.handlebars->33->571" ] }, { @@ -9021,7 +9030,7 @@ "ru": "Очистить ядро агента на выбранных устройствах?", "zh-chs": "清除选定设备上的代理核心?", "xloc": [ - "default.handlebars->33->568" + "default.handlebars->33->570" ] }, { @@ -9042,7 +9051,7 @@ "ja": "すべてクリア", "xloc": [ "default-mobile.handlebars->11->637", - "default.handlebars->33->2380" + "default.handlebars->33->2383" ] }, { @@ -9084,7 +9093,7 @@ "ja": "コアをクリアする", "xloc": [ "default-mobile.handlebars->11->556", - "default.handlebars->33->1260" + "default.handlebars->33->1262" ] }, { @@ -9125,7 +9134,7 @@ "ja": "この通知をクリア", "xloc": [ "default-mobile.handlebars->11->636", - "default.handlebars->33->2379" + "default.handlebars->33->2382" ] }, { @@ -9185,8 +9194,8 @@ "zh-cht": "單擊此處編輯裝置群名稱", "ja": "ここをクリックしてデバイスグループ名を編集します", "xloc": [ - "default.handlebars->33->1602", - "default.handlebars->33->1826" + "default.handlebars->33->1604", + "default.handlebars->33->1828" ] }, { @@ -9206,7 +9215,7 @@ "zh-cht": "單擊此處編輯伺服器端裝置名稱", "ja": "サーバー側のデバイス名を編集するにはここをクリックしてください", "xloc": [ - "default.handlebars->33->644" + "default.handlebars->33->646" ] }, { @@ -9226,7 +9235,7 @@ "zh-cht": "單擊此處編輯用戶群名稱", "ja": "ユーザーグループ名を編集するには、ここをクリックしてください", "xloc": [ - "default.handlebars->33->2151" + "default.handlebars->33->2154" ] }, { @@ -9312,7 +9321,7 @@ "ja": "[OK]をクリックして確認メールを送信します:", "xloc": [ "default-mobile.handlebars->11->99", - "default.handlebars->33->1531" + "default.handlebars->33->1533" ] }, { @@ -9374,7 +9383,7 @@ "ja": "クライアント制御モード(CCM)", "xloc": [ "default-mobile.handlebars->11->511", - "default.handlebars->33->1214" + "default.handlebars->33->1216" ] }, { @@ -9394,7 +9403,7 @@ "zh-cht": "客戶編號", "ja": "クライアントID", "xloc": [ - "default.handlebars->33->1584" + "default.handlebars->33->1586" ] }, { @@ -9414,7 +9423,7 @@ "zh-cht": "客戶端啟動的遠程訪問", "ja": "クライアントが開始したリモートアクセス", "xloc": [ - "default.handlebars->33->1683" + "default.handlebars->33->1685" ] }, { @@ -9434,7 +9443,7 @@ "zh-cht": "客戶機密", "ja": "クライアントシークレット", "xloc": [ - "default.handlebars->33->1585" + "default.handlebars->33->1587" ] }, { @@ -9476,11 +9485,11 @@ "ja": "閉じる", "xloc": [ "default-mobile.handlebars->11->69", - "default.handlebars->33->1071", - "default.handlebars->33->1121", + "default.handlebars->33->1073", + "default.handlebars->33->1123", "default.handlebars->33->155", "default.handlebars->33->163", - "default.handlebars->33->2503", + "default.handlebars->33->2506", "sharing.handlebars->11->52" ] }, @@ -9501,7 +9510,7 @@ "zh-cht": "封閉式桌面多路復用會話,{0}秒", "ja": "クローズされたデスクトップマルチプレックスセッション、{0}秒", "xloc": [ - "default.handlebars->33->1892" + "default.handlebars->33->1894" ] }, { @@ -9605,7 +9614,7 @@ "zh-cht": "命令", "ja": "コマンド", "xloc": [ - "default.handlebars->33->478" + "default.handlebars->33->480" ] }, { @@ -9626,9 +9635,9 @@ "ja": "コマンド", "xloc": [ "default-mobile.handlebars->11->624", - "default.handlebars->33->1784", - "default.handlebars->33->830", - "default.handlebars->33->852" + "default.handlebars->33->1786", + "default.handlebars->33->832", + "default.handlebars->33->854" ] }, { @@ -9648,8 +9657,8 @@ "zh-cht": "通用裝置群", "ja": "共通デバイスグループ", "xloc": [ - "default.handlebars->33->2182", - "default.handlebars->33->2306" + "default.handlebars->33->2185", + "default.handlebars->33->2309" ] }, { @@ -9669,8 +9678,8 @@ "zh-cht": "通用裝置", "ja": "共通デバイス", "xloc": [ - "default.handlebars->33->2188", - "default.handlebars->33->2318" + "default.handlebars->33->2191", + "default.handlebars->33->2321" ] }, { @@ -9685,7 +9694,7 @@ "zh-chs": "编译时间", "xloc": [ "default-mobile.handlebars->11->484", - "default.handlebars->33->1177" + "default.handlebars->33->1179" ] }, { @@ -9714,7 +9723,7 @@ "zh-cht": "壓縮檔案...", "ja": "ファイルを圧縮しています...", "xloc": [ - "default.handlebars->33->1116", + "default.handlebars->33->1118", "sharing.handlebars->11->47" ] }, @@ -9746,14 +9755,14 @@ "xloc": [ "default-mobile.handlebars->11->351", "default-mobile.handlebars->11->578", - "default.handlebars->33->1694", - "default.handlebars->33->2062", - "default.handlebars->33->2141", - "default.handlebars->33->2202", - "default.handlebars->33->2304", - "default.handlebars->33->537", - "default.handlebars->33->955", - "default.handlebars->33->964" + "default.handlebars->33->1696", + "default.handlebars->33->2065", + "default.handlebars->33->2144", + "default.handlebars->33->2205", + "default.handlebars->33->2307", + "default.handlebars->33->539", + "default.handlebars->33->957", + "default.handlebars->33->966" ] }, { @@ -9783,7 +9792,7 @@ "ja": "この場所への1つのエントリのコピーを確認しますか?", "xloc": [ "default-mobile.handlebars->11->437", - "default.handlebars->33->1140", + "default.handlebars->33->1142", "sharing.handlebars->11->70" ] }, @@ -9804,7 +9813,7 @@ "zh-cht": "確認{0}個條目的複製到此位置?", "ja": "{0}エントリのコピーをこの場所に確認しますか?", "xloc": [ - "default.handlebars->33->1139", + "default.handlebars->33->1141", "sharing.handlebars->11->69" ] }, @@ -9845,7 +9854,7 @@ "zh-cht": "確認刪除所選帳戶?", "ja": "選択したアカウントの削除を確認しますか?", "xloc": [ - "default.handlebars->33->2061" + "default.handlebars->33->2064" ] }, { @@ -9865,7 +9874,7 @@ "zh-cht": "確認刪除所選裝置?", "ja": "選択したデバイスの削除を確認しますか?", "xloc": [ - "default.handlebars->33->536" + "default.handlebars->33->538" ] }, { @@ -9885,7 +9894,7 @@ "zh-cht": "確認刪除所選用戶群?", "ja": "選択したユーザーグループの削除を確認しますか?", "xloc": [ - "default.handlebars->33->2140" + "default.handlebars->33->2143" ] }, { @@ -9905,7 +9914,7 @@ "zh-cht": "確認刪除用戶{0}?", "ja": "ユーザー{0}の削除を確認しますか?", "xloc": [ - "default.handlebars->33->2303" + "default.handlebars->33->2306" ] }, { @@ -9925,7 +9934,7 @@ "zh-cht": "確認刪除用戶“ {0} ”的成員身份?", "ja": "ユーザー\\\"{0}\\\"のメンバーシップの削除を確認しますか?", "xloc": [ - "default.handlebars->33->2205" + "default.handlebars->33->2208" ] }, { @@ -9945,7 +9954,7 @@ "zh-cht": "確認刪除用戶群“ {0} ”的成員身份?", "ja": "ユーザーグループ\\\"{0}\\\"のメンバーシップの削除を確認しますか?", "xloc": [ - "default.handlebars->33->2335" + "default.handlebars->33->2338" ] }, { @@ -9966,7 +9975,7 @@ "ja": "1エントリのこの場所への移動を確認しますか?", "xloc": [ "default-mobile.handlebars->11->439", - "default.handlebars->33->1142", + "default.handlebars->33->1144", "sharing.handlebars->11->72" ] }, @@ -9987,7 +9996,7 @@ "zh-cht": "確認將{0}個條目移到該位置?", "ja": "{0}エントリのこの場所への移動を確認しますか?", "xloc": [ - "default.handlebars->33->1141", + "default.handlebars->33->1143", "sharing.handlebars->11->71" ] }, @@ -10028,7 +10037,7 @@ "zh-cht": "確認覆蓋?", "ja": "上書きを確認しますか?", "xloc": [ - "default.handlebars->33->1875" + "default.handlebars->33->1877" ] }, { @@ -10048,8 +10057,8 @@ "zh-cht": "確認刪除裝置“ {0} ”的訪問權限?", "ja": "デバイス「{0}」のアクセス権の削除を確認しますか?", "xloc": [ - "default.handlebars->33->2195", - "default.handlebars->33->2326" + "default.handlebars->33->2198", + "default.handlebars->33->2329" ] }, { @@ -10069,8 +10078,8 @@ "zh-cht": "確認刪除裝置群“ {0} ”的訪問權限?", "ja": "デバイスグループ「{0}」のアクセス権の削除を確認しますか?", "xloc": [ - "default.handlebars->33->2197", - "default.handlebars->33->2339" + "default.handlebars->33->2200", + "default.handlebars->33->2342" ] }, { @@ -10090,7 +10099,7 @@ "zh-cht": "確認刪除用戶“ {0} ”的訪問權限?", "ja": "ユーザー\\\"{0}\\\"のアクセス権の削除を確認しますか?", "xloc": [ - "default.handlebars->33->2328" + "default.handlebars->33->2331" ] }, { @@ -10110,7 +10119,7 @@ "zh-cht": "確認刪除用戶群“ {0} ”的訪問權限?", "ja": "ユーザーグループ「{0}」のアクセス権の削除を確認しますか?", "xloc": [ - "default.handlebars->33->2331" + "default.handlebars->33->2334" ] }, { @@ -10130,8 +10139,8 @@ "zh-cht": "確認刪除訪問權限?", "ja": "アクセス権の削除を確認しますか?", "xloc": [ - "default.handlebars->33->2329", - "default.handlebars->33->2332" + "default.handlebars->33->2332", + "default.handlebars->33->2335" ] }, { @@ -10152,7 +10161,7 @@ "ja": "認証アプリケーションの削除2段階ログインを確認しますか?", "xloc": [ "default-mobile.handlebars->11->98", - "default.handlebars->33->1282" + "default.handlebars->33->1284" ] }, { @@ -10189,7 +10198,7 @@ "zh-cht": "確認刪除設備共享“{0}”?", "ja": "デバイス共有\\\"{0}\\\"の削除を確認しますか?", "xloc": [ - "default.handlebars->33->2324" + "default.handlebars->33->2327" ] }, { @@ -10236,7 +10245,7 @@ "nl": "Verwijderen van push-authenticatieapparaat bevestigen?", "zh-chs": "确认移除推送认证设备?", "xloc": [ - "default.handlebars->33->1284" + "default.handlebars->33->1286" ] }, { @@ -10256,7 +10265,7 @@ "zh-cht": "確認刪除用戶“ {0} ”的權限?", "ja": "ユーザー「{0}」の権限の削除を確認しますか?", "xloc": [ - "default.handlebars->33->1793" + "default.handlebars->33->1795" ] }, { @@ -10276,7 +10285,7 @@ "zh-cht": "確認刪除用戶群“ {0} ”的權限?", "ja": "ユーザーグループ「{0}」の権限の削除を確認しますか?", "xloc": [ - "default.handlebars->33->1795" + "default.handlebars->33->1797" ] }, { @@ -10290,7 +10299,7 @@ "ru": "Подтвердить удаление этого токена входа?", "zh-chs": "确认删除此登录令牌?", "xloc": [ - "default.handlebars->33->1577" + "default.handlebars->33->1579" ] }, { @@ -10348,7 +10357,7 @@ "ja": "{1}エントリ{2}のうち{0}をこの場所に拘束しますか?", "xloc": [ "default-mobile.handlebars->11->151", - "default.handlebars->33->1876" + "default.handlebars->33->1878" ] }, { @@ -10373,8 +10382,8 @@ "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3", "default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea1->1->3->connectbutton2span", - "default.handlebars->33->1103", - "default.handlebars->33->1631", + "default.handlebars->33->1105", + "default.handlebars->33->1633", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1span", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2span", "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3", @@ -10415,10 +10424,7 @@ "fr": "Se connecter à la demande de l'utilisateur", "hi": "उपयोगकर्ता के अनुरोध पर कनेक्ट करें", "ko": "ユーザーのリクエストに応じて接続", - "zh-chs": "根据用户请求连接", - "xloc": [ - "default.handlebars->33->440" - ] + "zh-chs": "根据用户请求连接" }, { "cs": "Připojit se na server", @@ -10437,7 +10443,7 @@ "zh-cht": "連接到伺服器", "ja": "サーバーに接続する", "xloc": [ - "default.handlebars->33->1687" + "default.handlebars->33->1689" ] }, { @@ -10559,7 +10565,7 @@ "zh-cht": "已連接的Intel® AMT", "ja": "接続されたインテル®AMT", "xloc": [ - "default.handlebars->33->2433" + "default.handlebars->33->2436" ] }, { @@ -10579,7 +10585,7 @@ "zh-cht": "已连接的用户", "ja": "接続ユーザー", "xloc": [ - "default.handlebars->33->2438" + "default.handlebars->33->2441" ] }, { @@ -10600,7 +10606,7 @@ "ja": "今すぐ接続", "xloc": [ "default-mobile.handlebars->11->479", - "default.handlebars->33->1172" + "default.handlebars->33->1174" ] }, { @@ -10661,7 +10667,7 @@ "default-mobile.handlebars->11->2", "default-mobile.handlebars->11->455", "default-mobile.handlebars->11->48", - "default.handlebars->33->1163", + "default.handlebars->33->1165", "default.handlebars->33->282", "default.handlebars->33->285", "default.handlebars->33->332", @@ -10698,7 +10704,7 @@ "zh-cht": "連接數量", "ja": "接続数", "xloc": [ - "default.handlebars->33->2464" + "default.handlebars->33->2467" ] }, { @@ -10713,8 +10719,8 @@ "zh-chs": "连接错误", "xloc": [ "default-mobile.handlebars->11->418", - "default.handlebars->33->1090", - "default.handlebars->33->1112", + "default.handlebars->33->1092", + "default.handlebars->33->1114", "login2.handlebars->7->32" ] }, @@ -10735,7 +10741,7 @@ "zh-cht": "連接轉發器", "ja": "接続リレー", "xloc": [ - "default.handlebars->33->2497" + "default.handlebars->33->2500" ] }, { @@ -10796,9 +10802,9 @@ "ja": "接続性", "xloc": [ "default-mobile.handlebars->11->293", - "default.handlebars->33->1833", + "default.handlebars->33->1835", "default.handlebars->33->273", - "default.handlebars->33->733", + "default.handlebars->33->735", "default.handlebars->container->column_l->p21->p21main->1->1->meshConnChartDiv->1" ] }, @@ -10820,8 +10826,8 @@ "ja": "コンソール", "xloc": [ "default-mobile.handlebars->11->313", - "default.handlebars->33->823", - "default.handlebars->33->845", + "default.handlebars->33->825", + "default.handlebars->33->847", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevConsole", "default.handlebars->container->topbar->1->1->ServerSubMenuSpan->ServerSubMenu->1->0->ServerConsole", "default.handlebars->contextMenu->cxconsole" @@ -10844,7 +10850,7 @@ "zh-cht": "控制台 -", "ja": "コンソール -", "xloc": [ - "default.handlebars->33->645" + "default.handlebars->33->647" ] }, { @@ -10864,8 +10870,8 @@ "zh-cht": "控制", "ja": "コントロール", "xloc": [ - "default.handlebars->33->822", - "default.handlebars->33->844", + "default.handlebars->33->824", + "default.handlebars->33->846", "messenger.handlebars->remoteImage->3->2" ] }, @@ -10886,7 +10892,7 @@ "zh-cht": "Cookie編碼器", "ja": "Cookieエンコーダー", "xloc": [ - "default.handlebars->33->2481" + "default.handlebars->33->2484" ] }, { @@ -10946,7 +10952,7 @@ "ru": "Скопировать URL в буфер обмена", "zh-chs": "将 URL 复制到剪贴板", "xloc": [ - "default.handlebars->33->464" + "default.handlebars->33->466" ] }, { @@ -10966,7 +10972,7 @@ "zh-cht": "將Windows 32位代理URL複製到剪貼板", "ja": "Windows 32ビットエージェントのURLをクリップボードにコピー", "xloc": [ - "default.handlebars->33->446" + "default.handlebars->33->448" ] }, { @@ -10986,7 +10992,7 @@ "zh-cht": "將Windows 64位代理URL複製到剪貼板", "ja": "Windows 64ビットエージェントのURLをクリップボードにコピー", "xloc": [ - "default.handlebars->33->450" + "default.handlebars->33->452" ] }, { @@ -11037,8 +11043,8 @@ "zh-cht": "將代理URL複製到剪貼板", "ja": "エージェントのURLをクリップボードにコピー", "xloc": [ - "default.handlebars->33->477", - "default.handlebars->33->479" + "default.handlebars->33->479", + "default.handlebars->33->481" ] }, { @@ -11058,8 +11064,8 @@ "zh-cht": "複製連結到剪貼板", "ja": "リンクをクリップボードにコピー", "xloc": [ - "default.handlebars->33->1844", - "default.handlebars->33->1863", + "default.handlebars->33->1846", + "default.handlebars->33->1865", "default.handlebars->33->223", "default.handlebars->33->245", "default.handlebars->33->247", @@ -11083,7 +11089,7 @@ "zh-cht": "將macOS代理URL複製到剪貼板", "ja": "macOSエージェントのURLをクリップボードにコピーします", "xloc": [ - "default.handlebars->33->459" + "default.handlebars->33->461" ] }, { @@ -11125,8 +11131,8 @@ "xloc": [ "agentinvite.handlebars->container->column_l->5->linuxtab", "agentinvite.handlebars->container->column_l->5->linuxtab", - "default.handlebars->33->455", - "default.handlebars->33->473" + "default.handlebars->33->457", + "default.handlebars->33->475" ] }, { @@ -11166,7 +11172,7 @@ "zh-cht": "複製:“{0}”到“{1}”", "ja": "コピー:「{0}」を「{1}」にコピー", "xloc": [ - "default.handlebars->33->1935" + "default.handlebars->33->1937" ] }, { @@ -11312,7 +11318,7 @@ "zh-cht": "核心伺服器", "ja": "コアサーバー", "xloc": [ - "default.handlebars->33->2480" + "default.handlebars->33->2483" ] }, { @@ -11332,7 +11338,7 @@ "zh-cht": "科西嘉文", "ja": "コルシカ", "xloc": [ - "default.handlebars->33->1340" + "default.handlebars->33->1342" ] }, { @@ -11361,7 +11367,7 @@ "zh-cht": "創建帳號", "ja": "アカウントを作成する", "xloc": [ - "default.handlebars->33->2109", + "default.handlebars->33->2112", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->12->1->1", "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1", "login2.handlebars->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1" @@ -11407,7 +11413,7 @@ "ru": "Создать токен входа", "zh-chs": "创建登录令牌", "xloc": [ - "default.handlebars->33->1524", + "default.handlebars->33->1526", "default.handlebars->33->248" ] }, @@ -11428,7 +11434,7 @@ "zh-cht": "創建用戶群", "ja": "ユーザーグループを作成", "xloc": [ - "default.handlebars->33->2148" + "default.handlebars->33->2151" ] }, { @@ -11448,7 +11454,7 @@ "zh-cht": "創建鏈結以與訪客共享此裝置", "ja": "このデバイスをゲストと共有するためのリンクを作成します", "xloc": [ - "default.handlebars->33->752" + "default.handlebars->33->754" ] }, { @@ -11468,7 +11474,7 @@ "zh-cht": "使用以下選項創建一個新的裝置群。", "ja": "以下のオプションを使用して、新しいデバイスグループを作成します。", "xloc": [ - "default.handlebars->33->1554" + "default.handlebars->33->1556" ] }, { @@ -11502,7 +11508,7 @@ "ru": "Создайте временные имя пользователя и пароль, которые можно использовать в качестве альтернативы для входа в вашу учетную запись. Это полезно для того, чтобы инструменты или другие службы могли получить доступ к вашей учетной записи.", "zh-chs": "创建一个临时用户名和密码,可用作您帐户的替代登录名。这对于允许工具或其他服务访问您的帐户非常有用。", "xloc": [ - "default.handlebars->33->1505" + "default.handlebars->33->1507" ] }, { @@ -11522,7 +11528,7 @@ "zh-cht": "創建文件夾(如果不存在)?", "ja": "存在しない場合はフォルダを作成しますか?", "xloc": [ - "default.handlebars->33->563" + "default.handlebars->33->565" ] }, { @@ -11542,7 +11548,7 @@ "zh-cht": "創建文件夾:“{0}”", "ja": "フォルダを作成:「{0}」", "xloc": [ - "default.handlebars->33->1928" + "default.handlebars->33->1930" ] }, { @@ -11576,7 +11582,7 @@ "zh-cht": "通過導入以下格式的JSON檔案一次創建多個帳戶:", "ja": "次の形式のJSONファイルをインポートして、一度に多くのアカウントを作成します。", "xloc": [ - "default.handlebars->33->2073" + "default.handlebars->33->2076" ] }, { @@ -11618,7 +11624,7 @@ "zh-cht": "創建的設備組:{0}", "ja": "作成されたデバイスグループ:{0}", "xloc": [ - "default.handlebars->33->1939" + "default.handlebars->33->1941" ] }, { @@ -11638,7 +11644,7 @@ "zh-cht": "創建一個鏈接,該鏈接允許沒有帳戶的訪客在有限的時間內遠程控制此設備。", "ja": "アカウントを持たないゲストがこのデバイスを期間限定でリモートコントロールできるようにするリンクを作成します。", "xloc": [ - "default.handlebars->33->868" + "default.handlebars->33->870" ] }, { @@ -11692,7 +11698,7 @@ "zh-cht": "創建", "ja": "作成", "xloc": [ - "default.handlebars->33->2234" + "default.handlebars->33->2237" ] }, { @@ -11712,7 +11718,7 @@ "zh-cht": "創作時間", "ja": "作成時間", "xloc": [ - "default.handlebars->33->1613" + "default.handlebars->33->1615" ] }, { @@ -11754,8 +11760,8 @@ "zh-cht": "創作者", "ja": "クリエーター", "xloc": [ - "default.handlebars->33->1611", - "default.handlebars->33->1612" + "default.handlebars->33->1613", + "default.handlebars->33->1614" ] }, { @@ -11777,9 +11783,9 @@ "xloc": [ "default-mobile.handlebars->11->297", "default-mobile.handlebars->11->299", - "default.handlebars->33->1582", - "default.handlebars->33->737", - "default.handlebars->33->739" + "default.handlebars->33->1584", + "default.handlebars->33->739", + "default.handlebars->33->741" ] }, { @@ -11799,7 +11805,7 @@ "zh-cht": "克里語", "ja": "クリー語", "xloc": [ - "default.handlebars->33->1341" + "default.handlebars->33->1343" ] }, { @@ -11819,7 +11825,7 @@ "zh-cht": "克羅地亞文", "ja": "クロアチア語", "xloc": [ - "default.handlebars->33->1342" + "default.handlebars->33->1344" ] }, { @@ -11883,8 +11889,8 @@ "xloc": [ "default-mobile.handlebars->11->387", "default-mobile.handlebars->11->391", - "default.handlebars->33->1047", - "default.handlebars->33->1051", + "default.handlebars->33->1049", + "default.handlebars->33->1053", "default.handlebars->33->57", "sharing.handlebars->11->24" ] @@ -12014,7 +12020,7 @@ "zh-chs": "当前密码不正确。", "xloc": [ "default-mobile.handlebars->11->664", - "default.handlebars->33->2407" + "default.handlebars->33->2410" ] }, { @@ -12086,7 +12092,7 @@ "zh-cht": "捷克文", "ja": "チェコ語", "xloc": [ - "default.handlebars->33->1343" + "default.handlebars->33->1345" ] }, { @@ -12126,7 +12132,7 @@ "zh-cht": "丹麥文", "ja": "デンマーク語", "xloc": [ - "default.handlebars->33->1344" + "default.handlebars->33->1346" ] }, { @@ -12161,7 +12167,7 @@ "zh-cht": "數據通道", "ja": "データチャネル", "xloc": [ - "default.handlebars->33->1014", + "default.handlebars->33->1016", "sharing.handlebars->11->11" ] }, @@ -12182,7 +12188,7 @@ "zh-cht": "日期和時間", "ja": "日時", "xloc": [ - "default.handlebars->33->1502" + "default.handlebars->33->1504" ] }, { @@ -12203,7 +12209,7 @@ "ja": "日", "xloc": [ "default-mobile.handlebars->11->341", - "default.handlebars->33->939" + "default.handlebars->33->941" ] }, { @@ -12223,7 +12229,7 @@ "zh-cht": "停用", "ja": "非アクティブ化", "xloc": [ - "default.handlebars->33->1666" + "default.handlebars->33->1668" ] }, { @@ -12243,7 +12249,7 @@ "zh-cht": "如果設置停用CCM", "ja": "セットアップする場合はCCMを非アクティブ化する", "xloc": [ - "default.handlebars->33->1678" + "default.handlebars->33->1680" ] }, { @@ -12281,7 +12287,7 @@ "ja": "深い眠り", "xloc": [ "default-mobile.handlebars->11->224", - "default.handlebars->33->490" + "default.handlebars->33->492" ] }, { @@ -12301,10 +12307,10 @@ "zh-cht": "默認", "ja": "デフォルト", "xloc": [ - "default.handlebars->33->2096", - "default.handlebars->33->2144", - "default.handlebars->33->2155", - "default.handlebars->33->2223" + "default.handlebars->33->2099", + "default.handlebars->33->2147", + "default.handlebars->33->2158", + "default.handlebars->33->2226" ] }, { @@ -12319,7 +12325,7 @@ "zh-chs": "德尔", "xloc": [ "default-mobile.handlebars->11->375", - "default.handlebars->33->1035" + "default.handlebars->33->1037" ] }, { @@ -12344,9 +12350,9 @@ "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1", "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1", "default-mobile.handlebars->dialog->idx_dlgButtonBar->5", - "default.handlebars->33->1131", - "default.handlebars->33->1870", - "default.handlebars->33->615", + "default.handlebars->33->1133", + "default.handlebars->33->1872", + "default.handlebars->33->617", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", "default.handlebars->container->dialog->idx_dlgButtonBar->5", @@ -12377,7 +12383,7 @@ "ja": "アカウントを削除する", "xloc": [ "default-mobile.handlebars->11->108", - "default.handlebars->33->1539" + "default.handlebars->33->1541" ] }, { @@ -12397,7 +12403,7 @@ "zh-cht": "刪除帳戶", "ja": "アカウントを削除", "xloc": [ - "default.handlebars->33->2063" + "default.handlebars->33->2066" ] }, { @@ -12418,7 +12424,7 @@ "ja": "デバイスを削除", "xloc": [ "default-mobile.handlebars->11->302", - "default.handlebars->33->756" + "default.handlebars->33->758" ] }, { @@ -12440,9 +12446,9 @@ "xloc": [ "default-mobile.handlebars->11->576", "default-mobile.handlebars->11->579", - "default.handlebars->33->1661", - "default.handlebars->33->1662", - "default.handlebars->33->1695" + "default.handlebars->33->1663", + "default.handlebars->33->1664", + "default.handlebars->33->1697" ] }, { @@ -12463,7 +12469,7 @@ "ja": "ノードを削除", "xloc": [ "default-mobile.handlebars->11->349", - "default.handlebars->33->965" + "default.handlebars->33->967" ] }, { @@ -12483,7 +12489,7 @@ "zh-cht": "刪除節點", "ja": "ノードを削除する", "xloc": [ - "default.handlebars->33->538" + "default.handlebars->33->540" ] }, { @@ -12503,7 +12509,7 @@ "zh-cht": "刪除用戶", "ja": "ユーザーを削除", "xloc": [ - "default.handlebars->33->2275" + "default.handlebars->33->2278" ] }, { @@ -12523,8 +12529,8 @@ "zh-cht": "刪除用戶群組", "ja": "ユーザーグループを削除", "xloc": [ - "default.handlebars->33->2193", - "default.handlebars->33->2203" + "default.handlebars->33->2196", + "default.handlebars->33->2206" ] }, { @@ -12544,7 +12550,7 @@ "zh-cht": "刪除用戶群組", "ja": "ユーザーグループの削除", "xloc": [ - "default.handlebars->33->2142" + "default.handlebars->33->2145" ] }, { @@ -12564,7 +12570,7 @@ "zh-cht": "刪除用戶{0}", "ja": "ユーザーを削除{0}", "xloc": [ - "default.handlebars->33->2302" + "default.handlebars->33->2305" ] }, { @@ -12585,7 +12591,7 @@ "ja": "アカウントを削除する", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountActions->3->9->0", - "default.handlebars->33->2059", + "default.handlebars->33->2062", "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7" ] }, @@ -12606,7 +12612,7 @@ "zh-cht": "刪除裝置", "ja": "デバイスを削除する", "xloc": [ - "default.handlebars->33->528" + "default.handlebars->33->530" ] }, { @@ -12626,7 +12632,7 @@ "zh-cht": "刪除群組", "ja": "グループを削除", "xloc": [ - "default.handlebars->33->2138" + "default.handlebars->33->2141" ] }, { @@ -12646,7 +12652,7 @@ "zh-cht": "刪除項目?", "ja": "アイテムを削除しますか?", "xloc": [ - "default.handlebars->33->616" + "default.handlebars->33->618" ] }, { @@ -12666,7 +12672,7 @@ "zh-cht": "遞歸刪除:“{0}”,{1}個元素已刪除", "ja": "再帰的に削除:\\\"{0}\\\"、{1}要素を削除", "xloc": [ - "default.handlebars->33->1930" + "default.handlebars->33->1932" ] }, { @@ -12688,8 +12694,8 @@ "xloc": [ "default-mobile.handlebars->11->148", "default-mobile.handlebars->11->431", - "default.handlebars->33->1133", - "default.handlebars->33->1872", + "default.handlebars->33->1135", + "default.handlebars->33->1874", "sharing.handlebars->11->63" ] }, @@ -12710,7 +12716,7 @@ "zh-cht": "刪除用戶群組{0}?", "ja": "ユーザーグループ{0}を削除しますか?", "xloc": [ - "default.handlebars->33->2201" + "default.handlebars->33->2204" ] }, { @@ -12732,8 +12738,8 @@ "xloc": [ "default-mobile.handlebars->11->147", "default-mobile.handlebars->11->430", - "default.handlebars->33->1132", - "default.handlebars->33->1871", + "default.handlebars->33->1134", + "default.handlebars->33->1873", "sharing.handlebars->11->62" ] }, @@ -12774,7 +12780,7 @@ "zh-cht": "刪除:“{0}”", "ja": "削除:「{0}」", "xloc": [ - "default.handlebars->33->1929" + "default.handlebars->33->1931" ] }, { @@ -12794,7 +12800,7 @@ "zh-cht": "刪除:“{0}”,已刪除{1}個元素", "ja": "削除:「{0}」、{1}要素を削除", "xloc": [ - "default.handlebars->33->1931" + "default.handlebars->33->1933" ] }, { @@ -12815,7 +12821,7 @@ "ja": "拒否されました", "xloc": [ "default-mobile.handlebars->11->362", - "default.handlebars->33->1010", + "default.handlebars->33->1012", "sharing.handlebars->11->29", "sharing.handlebars->11->7" ] @@ -12925,18 +12931,18 @@ "default-mobile.handlebars->11->492", "default-mobile.handlebars->11->567", "default-mobile.handlebars->11->581", - "default.handlebars->33->1005", - "default.handlebars->33->1185", - "default.handlebars->33->1195", - "default.handlebars->33->1560", - "default.handlebars->33->1608", - "default.handlebars->33->1697", - "default.handlebars->33->2147", - "default.handlebars->33->2157", - "default.handlebars->33->2158", - "default.handlebars->33->2199", - "default.handlebars->33->656", - "default.handlebars->33->657", + "default.handlebars->33->1007", + "default.handlebars->33->1187", + "default.handlebars->33->1197", + "default.handlebars->33->1562", + "default.handlebars->33->1610", + "default.handlebars->33->1699", + "default.handlebars->33->2150", + "default.handlebars->33->2160", + "default.handlebars->33->2161", + "default.handlebars->33->2202", + "default.handlebars->33->658", + "default.handlebars->33->659", "default.handlebars->33->95", "default.handlebars->container->column_l->p42->p42tbl->1->0->3" ] @@ -12976,13 +12982,13 @@ "ja": "デスクトップ", "xloc": [ "default-mobile.handlebars->11->309", - "default.handlebars->33->1077", - "default.handlebars->33->1703", - "default.handlebars->33->2357", - "default.handlebars->33->2458", - "default.handlebars->33->621", - "default.handlebars->33->803", - "default.handlebars->33->870", + "default.handlebars->33->1079", + "default.handlebars->33->1705", + "default.handlebars->33->2360", + "default.handlebars->33->2461", + "default.handlebars->33->623", + "default.handlebars->33->805", + "default.handlebars->33->872", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop", "default.handlebars->contextMenu->cxdesktop", "sharing.handlebars->11->23", @@ -13000,8 +13006,8 @@ "ru": "Рабочий стол + Файлы", "zh-chs": "桌面 + 文件", "xloc": [ - "default.handlebars->33->807", - "default.handlebars->33->873" + "default.handlebars->33->809", + "default.handlebars->33->875" ] }, { @@ -13015,7 +13021,7 @@ "ru": "Рабочий стол + Терминал", "zh-chs": "桌面 + 终端", "xloc": [ - "default.handlebars->33->804" + "default.handlebars->33->806" ] }, { @@ -13029,8 +13035,8 @@ "ru": "Рабочий стол + Терминал + Файлы", "zh-chs": "桌面 + 终端 + 文件", "xloc": [ - "default.handlebars->33->808", - "default.handlebars->33->875" + "default.handlebars->33->810", + "default.handlebars->33->877" ] }, { @@ -13063,7 +13069,7 @@ "nl": "Desktop Multiplex", "zh-chs": "桌面复用", "xloc": [ - "default.handlebars->33->2463" + "default.handlebars->33->2466" ] }, { @@ -13083,10 +13089,10 @@ "zh-cht": "桌面通知", "ja": "デスクトップ通知", "xloc": [ - "default.handlebars->33->1622", - "default.handlebars->33->2162", - "default.handlebars->33->2249", - "default.handlebars->33->714" + "default.handlebars->33->1624", + "default.handlebars->33->2165", + "default.handlebars->33->2252", + "default.handlebars->33->716" ] }, { @@ -13106,10 +13112,10 @@ "zh-cht": "桌面提示", "ja": "デスクトッププロンプト", "xloc": [ - "default.handlebars->33->1621", - "default.handlebars->33->2161", - "default.handlebars->33->2248", - "default.handlebars->33->713" + "default.handlebars->33->1623", + "default.handlebars->33->2164", + "default.handlebars->33->2251", + "default.handlebars->33->715" ] }, { @@ -13129,10 +13135,10 @@ "zh-cht": "桌面提示+工具欄", "ja": "デスクトッププロンプト+ツールバー", "xloc": [ - "default.handlebars->33->1619", - "default.handlebars->33->2159", - "default.handlebars->33->2246", - "default.handlebars->33->711" + "default.handlebars->33->1621", + "default.handlebars->33->2162", + "default.handlebars->33->2249", + "default.handlebars->33->713" ] }, { @@ -13146,7 +13152,7 @@ "ru": "Сеанс рабочего стола", "zh-chs": "桌面会话", "xloc": [ - "default.handlebars->33->2350" + "default.handlebars->33->2353" ] }, { @@ -13217,10 +13223,10 @@ "zh-cht": "桌面工具欄", "ja": "デスクトップツールバー", "xloc": [ - "default.handlebars->33->1620", - "default.handlebars->33->2160", - "default.handlebars->33->2247", - "default.handlebars->33->712" + "default.handlebars->33->1622", + "default.handlebars->33->2163", + "default.handlebars->33->2250", + "default.handlebars->33->714" ] }, { @@ -13234,7 +13240,7 @@ "ru": "Рабочий стол, только просмотр", "zh-chs": "桌面,仅查看", "xloc": [ - "default.handlebars->33->876" + "default.handlebars->33->878" ] }, { @@ -13254,7 +13260,7 @@ "zh-cht": "桌面時段", "ja": "DesktopSession", "xloc": [ - "default.handlebars->33->1076" + "default.handlebars->33->1078" ] }, { @@ -13353,11 +13359,11 @@ "ja": "デバイス", "xloc": [ "default-mobile.handlebars->11->487", - "default.handlebars->33->1180", - "default.handlebars->33->1288", - "default.handlebars->33->1726", + "default.handlebars->33->1182", + "default.handlebars->33->1290", + "default.handlebars->33->1728", "default.handlebars->33->204", - "default.handlebars->33->2321", + "default.handlebars->33->2324", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5" ] }, @@ -13380,7 +13386,7 @@ "xloc": [ "default-mobile.handlebars->11->330", "default-mobile.handlebars->11->339", - "default.handlebars->33->922" + "default.handlebars->33->924" ] }, { @@ -13436,15 +13442,15 @@ "xloc": [ "agent-translations.json", "default-mobile.handlebars->11->642", - "default.handlebars->33->1721", - "default.handlebars->33->1724", - "default.handlebars->33->1725", - "default.handlebars->33->2010", - "default.handlebars->33->2185", - "default.handlebars->33->2191", - "default.handlebars->33->2309", - "default.handlebars->33->2366", - "default.handlebars->33->2385" + "default.handlebars->33->1723", + "default.handlebars->33->1726", + "default.handlebars->33->1727", + "default.handlebars->33->2013", + "default.handlebars->33->2188", + "default.handlebars->33->2194", + "default.handlebars->33->2312", + "default.handlebars->33->2369", + "default.handlebars->33->2388" ] }, { @@ -13465,7 +13471,7 @@ "ja": "デバイスグループユーザー", "xloc": [ "default-mobile.handlebars->11->631", - "default.handlebars->33->1791" + "default.handlebars->33->1793" ] }, { @@ -13486,11 +13492,11 @@ "ja": "デバイスグループ", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->3", - "default.handlebars->33->2026", - "default.handlebars->33->2132", - "default.handlebars->33->2172", - "default.handlebars->33->2243", - "default.handlebars->33->2436", + "default.handlebars->33->2029", + "default.handlebars->33->2135", + "default.handlebars->33->2175", + "default.handlebars->33->2246", + "default.handlebars->33->2439", "default.handlebars->container->column_l->p2->p2info->9" ] }, @@ -13511,7 +13517,7 @@ "zh-cht": "裝置訊息輸出", "ja": "デバイス情報のエクスポート", "xloc": [ - "default.handlebars->33->578" + "default.handlebars->33->580" ] }, { @@ -13531,7 +13537,7 @@ "zh-cht": "裝置位置", "ja": "デバイスの場所", "xloc": [ - "default.handlebars->33->966" + "default.handlebars->33->968" ] }, { @@ -13551,7 +13557,7 @@ "zh-cht": "裝置訊息", "ja": "デバイスメッセージ", "xloc": [ - "default.handlebars->33->860" + "default.handlebars->33->862" ] }, { @@ -13572,8 +13578,8 @@ "ja": "装置名", "xloc": [ "default-mobile.handlebars->11->355", - "default.handlebars->33->1003", - "default.handlebars->33->2365", + "default.handlebars->33->1005", + "default.handlebars->33->2368", "default.handlebars->33->348", "default.handlebars->33->357", "player.handlebars->3->9" @@ -13596,8 +13602,8 @@ "zh-cht": "裝置通知", "ja": "デバイス通知", "xloc": [ - "default.handlebars->33->559", - "default.handlebars->33->865" + "default.handlebars->33->561", + "default.handlebars->33->867" ] }, { @@ -13657,7 +13663,7 @@ "zh-cht": "設備共享鏈接", "ja": "デバイス共有リンク", "xloc": [ - "default.handlebars->33->800" + "default.handlebars->33->802" ] }, { @@ -13703,9 +13709,9 @@ "default-mobile.handlebars->11->259", "default-mobile.handlebars->11->261", "default-mobile.handlebars->11->263", - "default.handlebars->33->658", "default.handlebars->33->660", - "default.handlebars->33->662" + "default.handlebars->33->662", + "default.handlebars->33->664" ] }, { @@ -13738,8 +13744,8 @@ "zh-cht": "裝置連接。", "ja": "デバイス接続。", "xloc": [ - "default.handlebars->33->1527", - "default.handlebars->33->1812" + "default.handlebars->33->1529", + "default.handlebars->33->1814" ] }, { @@ -13759,8 +13765,8 @@ "zh-cht": "裝置斷開連接。", "ja": "デバイスの切断。", "xloc": [ - "default.handlebars->33->1528", - "default.handlebars->33->1813" + "default.handlebars->33->1530", + "default.handlebars->33->1815" ] }, { @@ -13780,7 +13786,7 @@ "zh-cht": "設備組已創建:{0}", "ja": "作成されたデバイスグループ:{0}", "xloc": [ - "default.handlebars->33->1960" + "default.handlebars->33->1962" ] }, { @@ -13800,7 +13806,7 @@ "zh-cht": "設備組已刪除:{0}", "ja": "削除されたデバイスグループ:{0}", "xloc": [ - "default.handlebars->33->1961" + "default.handlebars->33->1963" ] }, { @@ -13820,7 +13826,7 @@ "zh-cht": "設備組成員身份已更改:{0}", "ja": "デバイスグループメンバーシップが変更されました:{0}", "xloc": [ - "default.handlebars->33->1962" + "default.handlebars->33->1964" ] }, { @@ -13841,7 +13847,7 @@ "ja": "デバイスグループのメモは、他のデバイスグループ管理者が表示および変更できます。", "xloc": [ "default-mobile.handlebars->11->337", - "default.handlebars->33->857" + "default.handlebars->33->859" ] }, { @@ -13861,7 +13867,7 @@ "zh-cht": "設備組通知已更改", "ja": "デバイスグループの通知が変更されました", "xloc": [ - "default.handlebars->33->1957" + "default.handlebars->33->1959" ] }, { @@ -13881,7 +13887,7 @@ "zh-cht": "未刪除的設備組:{0}", "ja": "デバイスグループの削除を取り消しました:{0}", "xloc": [ - "default.handlebars->33->1940" + "default.handlebars->33->1942" ] }, { @@ -13904,7 +13910,7 @@ "default-mobile.handlebars->11->192", "default-mobile.handlebars->11->248", "default.handlebars->33->290", - "default.handlebars->33->642" + "default.handlebars->33->644" ] }, { @@ -13924,7 +13930,7 @@ "zh-cht": "檢測到裝置,但無法獲得電源狀態。", "ja": "デバイスは検出されましたが、電源状態を取得できませんでした。", "xloc": [ - "default.handlebars->33->495" + "default.handlebars->33->497" ] }, { @@ -13945,7 +13951,7 @@ "ja": "デバイスは休止状態です(S4)", "xloc": [ "default-mobile.handlebars->11->232", - "default.handlebars->33->501" + "default.handlebars->33->503" ] }, { @@ -13966,7 +13972,7 @@ "ja": "デバイスはディープスリープ状態です(S3)", "xloc": [ "default-mobile.handlebars->11->231", - "default.handlebars->33->500" + "default.handlebars->33->502" ] }, { @@ -13986,7 +13992,7 @@ "zh-cht": "裝置處於深度睡眠狀態(S3)。", "ja": "デバイスはディープスリープ状態(S3)です。", "xloc": [ - "default.handlebars->33->489" + "default.handlebars->33->491" ] }, { @@ -14006,7 +14012,7 @@ "zh-cht": "裝置處於休眠狀態(S4)。", "ja": "デバイスは休止状態です(S4)。", "xloc": [ - "default.handlebars->33->491" + "default.handlebars->33->493" ] }, { @@ -14026,7 +14032,7 @@ "zh-cht": "裝置處於關機狀態(S5)。", "ja": "デバイスは電源オフ状態です(S5)。", "xloc": [ - "default.handlebars->33->493" + "default.handlebars->33->495" ] }, { @@ -14047,7 +14053,7 @@ "ja": "デバイスはスリープ状態です(S1)", "xloc": [ "default-mobile.handlebars->11->229", - "default.handlebars->33->498" + "default.handlebars->33->500" ] }, { @@ -14067,7 +14073,7 @@ "zh-cht": "裝置處於睡眠狀態(S1)。", "ja": "デバイスはスリープ状態(S1)です。", "xloc": [ - "default.handlebars->33->485" + "default.handlebars->33->487" ] }, { @@ -14088,7 +14094,7 @@ "ja": "デバイスはスリープ状態です(S2)", "xloc": [ "default-mobile.handlebars->11->230", - "default.handlebars->33->499" + "default.handlebars->33->501" ] }, { @@ -14108,7 +14114,7 @@ "zh-cht": "裝置處於睡眠狀態(S2)。", "ja": "デバイスはスリープ状態(S2)です。", "xloc": [ - "default.handlebars->33->487" + "default.handlebars->33->489" ] }, { @@ -14129,7 +14135,7 @@ "ja": "デバイスはソフトオフ状態です(S5)", "xloc": [ "default-mobile.handlebars->11->233", - "default.handlebars->33->502" + "default.handlebars->33->504" ] }, { @@ -14152,7 +14158,7 @@ "default-mobile.handlebars->11->191", "default-mobile.handlebars->11->247", "default.handlebars->33->289", - "default.handlebars->33->641" + "default.handlebars->33->643" ] }, { @@ -14173,7 +14179,7 @@ "ja": "デバイスに電源が入っています", "xloc": [ "default-mobile.handlebars->11->228", - "default.handlebars->33->497" + "default.handlebars->33->499" ] }, { @@ -14193,7 +14199,7 @@ "zh-cht": "裝置已連接電源。", "ja": "デバイスの電源が入っています。", "xloc": [ - "default.handlebars->33->483" + "default.handlebars->33->485" ] }, { @@ -14214,7 +14220,7 @@ "ja": "デバイスは存在しますが、電源状態を判別できません", "xloc": [ "default-mobile.handlebars->11->234", - "default.handlebars->33->503" + "default.handlebars->33->505" ] }, { @@ -14234,7 +14240,7 @@ "zh-cht": "裝置名稱", "ja": "装置名", "xloc": [ - "default.handlebars->33->633" + "default.handlebars->33->635" ] }, { @@ -14254,7 +14260,7 @@ "zh-cht": "設備通知", "ja": "デバイス通知", "xloc": [ - "default.handlebars->33->525" + "default.handlebars->33->527" ] }, { @@ -14268,7 +14274,7 @@ "ru": "Устройство Intel(R) AMT ACM запросило активацию TLS, полное доменное имя: {0}", "zh-chs": "设备请求 Intel(R) AMT ACM TLS 激活,FQDN:{0}", "xloc": [ - "default.handlebars->33->1995" + "default.handlebars->33->1997" ] }, { @@ -14288,7 +14294,7 @@ "zh-cht": "設備請求激活Intel(R)AMT ACM,FQDN:{0}", "ja": "デバイスがIntel(R)AMT ACMアクティベーションを要求しました、FQDN:{0}", "xloc": [ - "default.handlebars->33->1942" + "default.handlebars->33->1944" ] }, { @@ -14325,9 +14331,9 @@ "zh-cht": "裝置", "ja": "デバイス", "xloc": [ - "default.handlebars->33->1660", - "default.handlebars->33->2133", - "default.handlebars->33->2173" + "default.handlebars->33->1662", + "default.handlebars->33->2136", + "default.handlebars->33->2176" ] }, { @@ -14357,7 +14363,7 @@ "ja": "無効", "xloc": [ "default-mobile.handlebars->11->472", - "default.handlebars->33->707" + "default.handlebars->33->709" ] }, { @@ -14377,7 +14383,7 @@ "zh-cht": "禁用的電子郵件兩因素身份驗證", "ja": "電子メールの二要素認証を無効化", "xloc": [ - "default.handlebars->33->1973" + "default.handlebars->33->1975" ] }, { @@ -14401,8 +14407,8 @@ "default-mobile.handlebars->11->411", "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3", "default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea1->1->3->disconnectbutton2span", - "default.handlebars->33->1104", - "default.handlebars->33->1632", + "default.handlebars->33->1106", + "default.handlebars->33->1634", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->disconnectbutton1span", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->disconnectbutton2span", "sharing.handlebars->11->43", @@ -14506,7 +14512,7 @@ "zh-cht": "在遠程裝置上顯示一個訊息框。", "ja": "リモートデバイスにメッセージボックスを表示します。", "xloc": [ - "default.handlebars->33->861" + "default.handlebars->33->863" ] }, { @@ -14546,7 +14552,7 @@ "zh-cht": "在遠程裝置上顯示短信", "ja": "リモートデバイスにテキストメッセージを表示する", "xloc": [ - "default.handlebars->33->748" + "default.handlebars->33->750" ] }, { @@ -14575,7 +14581,7 @@ "zh-cht": "顯示裝置群名稱", "ja": "デバイスグループ名を表示する", "xloc": [ - "default.handlebars->33->1526" + "default.handlebars->33->1528" ] }, { @@ -14595,7 +14601,7 @@ "zh-cht": "顯示名稱", "ja": "表示名", "xloc": [ - "default.handlebars->33->1062" + "default.handlebars->33->1064" ] }, { @@ -14615,7 +14621,7 @@ "zh-cht": "顯示公共鏈結", "ja": "公開リンクを表示", "xloc": [ - "default.handlebars->33->1843" + "default.handlebars->33->1845" ] }, { @@ -14629,7 +14635,7 @@ "ru": "Экран {0}", "zh-chs": "显示{0}", "xloc": [ - "default.handlebars->33->1079" + "default.handlebars->33->1081" ] }, { @@ -14649,7 +14655,7 @@ "zh-cht": "顯示消息框,標題= “{0}”,消息= “{1}”", "ja": "メッセージボックスを表示しています、title = \\\"{0}\\\"、message = \\\"{1}\\\"", "xloc": [ - "default.handlebars->33->1902" + "default.handlebars->33->1904" ] }, { @@ -14669,7 +14675,7 @@ "zh-cht": "顯示吐司消息,標題= “{0}”,消息= “{1}”", "ja": "トーストメッセージを表示しています、title = \\\"{0}\\\"、message = \\\"{1}\\\"", "xloc": [ - "default.handlebars->33->1910" + "default.handlebars->33->1912" ] }, { @@ -14689,8 +14695,8 @@ "zh-cht": "什麼都不做", "ja": "何もしない", "xloc": [ - "default.handlebars->33->1681", - "default.handlebars->33->1685" + "default.handlebars->33->1683", + "default.handlebars->33->1687" ] }, { @@ -14710,10 +14716,10 @@ "zh-cht": "域", "ja": "ドメイン", "xloc": [ - "default.handlebars->33->2097", - "default.handlebars->33->2145", - "default.handlebars->33->2154", - "default.handlebars->33->2222", + "default.handlebars->33->2100", + "default.handlebars->33->2148", + "default.handlebars->33->2157", + "default.handlebars->33->2225", "mstsc.handlebars->main->1->3->1->2->1->0", "mstsc.handlebars->main->1->3->1->2->3" ] @@ -14744,7 +14750,7 @@ "zh-cht": "請勿更改,如果設置請保留CCM", "ja": "変更しないでください。セットアップする場合はCCMを維持してください", "xloc": [ - "default.handlebars->33->1677" + "default.handlebars->33->1679" ] }, { @@ -14781,7 +14787,7 @@ "zh-cht": "不要連接到伺服器", "ja": "サーバーに接続しない", "xloc": [ - "default.handlebars->33->1686" + "default.handlebars->33->1688" ] }, { @@ -14861,7 +14867,7 @@ "zh-chs": "下", "xloc": [ "default-mobile.handlebars->11->383", - "default.handlebars->33->1043" + "default.handlebars->33->1045" ] }, { @@ -14939,7 +14945,7 @@ "ja": "ダウンロードファイル", "xloc": [ "default-mobile.handlebars->11->450", - "default.handlebars->33->1152", + "default.handlebars->33->1154", "sharing.handlebars->11->82" ] }, @@ -14980,7 +14986,7 @@ "zh-cht": "下載MeshCmd", "ja": "MeshCmdをダウンロード", "xloc": [ - "default.handlebars->33->991" + "default.handlebars->33->993" ] }, { @@ -15040,7 +15046,7 @@ "zh-cht": "下載報告", "ja": "レポートをダウンロード", "xloc": [ - "default.handlebars->33->2015", + "default.handlebars->33->2018", "default.handlebars->container->column_l->p3->3->1->0->3" ] }, @@ -15061,7 +15067,7 @@ "zh-cht": "下載帶有指令檔案的“ meshcmd”,以通過此服務器將網絡讯息發送到該裝置。緊記編輯meshaction.txt並新增你的帳戶密碼或進行任何必要的更改。", "ja": "このサーバーを通過するトラフィックをこのデバイスにルーティングするには、アクションファイルとともに\\\"meshcmd\\\"をダウンロードします。 meshaction.txtを編集してアカウントパスワードを追加するか、必要な変更を加えてください。", "xloc": [ - "default.handlebars->33->984" + "default.handlebars->33->986" ] }, { @@ -15141,7 +15147,7 @@ "zh-cht": "下載電源事件", "ja": "電源イベントをダウンロードする", "xloc": [ - "default.handlebars->33->940" + "default.handlebars->33->942" ] }, { @@ -15235,7 +15241,7 @@ "zh-cht": "使用以下一種檔案格式下載裝置列表。", "ja": "以下のファイル形式のいずれかでデバイスのリストをダウンロードします。", "xloc": [ - "default.handlebars->33->572" + "default.handlebars->33->574" ] }, { @@ -15255,7 +15261,7 @@ "zh-cht": "使用以下一種檔案格式下載事件列表。", "ja": "以下のファイル形式のいずれかでイベントのリストをダウンロードします。", "xloc": [ - "default.handlebars->33->2016" + "default.handlebars->33->2019" ] }, { @@ -15275,7 +15281,7 @@ "zh-cht": "使用以下一種檔案格式下載用戶列表。", "ja": "以下のファイル形式のいずれかでユーザーのリストをダウンロードします。", "xloc": [ - "default.handlebars->33->2081" + "default.handlebars->33->2084" ] }, { @@ -15356,7 +15362,7 @@ "zh-cht": "下載:“{0}”", "ja": "ダウンロード:「{0}」", "xloc": [ - "default.handlebars->33->1933" + "default.handlebars->33->1935" ] }, { @@ -15370,7 +15376,7 @@ "ru": "Скачивание: \\\"{0}\\\", Размер: {1}", "zh-chs": "下载:\\\"{0}\\\",大小:{1}", "xloc": [ - "default.handlebars->33->1990" + "default.handlebars->33->1992" ] }, { @@ -15410,7 +15416,7 @@ "zh-cht": "代理重複", "ja": "エージェントの複製", "xloc": [ - "default.handlebars->33->2432" + "default.handlebars->33->2435" ] }, { @@ -15450,7 +15456,7 @@ "zh-cht": "複製用戶群", "ja": "重複ユーザーグループ", "xloc": [ - "default.handlebars->33->2149" + "default.handlebars->33->2152" ] }, { @@ -15487,8 +15493,8 @@ "zh-cht": "持續時間", "ja": "期間", "xloc": [ - "default.handlebars->33->2345", - "default.handlebars->33->2371", + "default.handlebars->33->2348", + "default.handlebars->33->2374", "player.handlebars->3->2" ] }, @@ -15526,7 +15532,7 @@ "zh-cht": "荷蘭文(比利時)", "ja": "オランダ語(ベルギー)", "xloc": [ - "default.handlebars->33->1346" + "default.handlebars->33->1348" ] }, { @@ -15546,7 +15552,7 @@ "zh-cht": "荷蘭文(標準)", "ja": "オランダ語(標準)", "xloc": [ - "default.handlebars->33->1345" + "default.handlebars->33->1347" ] }, { @@ -15846,8 +15852,8 @@ "xloc": [ "default-mobile.handlebars->11->353", "default-mobile.handlebars->11->360", - "default.handlebars->33->1001", - "default.handlebars->33->1008" + "default.handlebars->33->1003", + "default.handlebars->33->1010" ] }, { @@ -15870,10 +15876,10 @@ "default-mobile.handlebars->11->582", "default-mobile.handlebars->11->588", "default-mobile.handlebars->11->608", - "default.handlebars->33->1698", - "default.handlebars->33->1730", - "default.handlebars->33->1755", - "default.handlebars->33->1767" + "default.handlebars->33->1700", + "default.handlebars->33->1732", + "default.handlebars->33->1757", + "default.handlebars->33->1769" ] }, { @@ -15893,7 +15899,7 @@ "zh-cht": "編輯裝置群功能", "ja": "デバイスグループ機能の編集", "xloc": [ - "default.handlebars->33->1716" + "default.handlebars->33->1718" ] }, { @@ -15913,8 +15919,8 @@ "zh-cht": "編輯裝置群權限", "ja": "デバイスグループのアクセス許可を編集する", "xloc": [ - "default.handlebars->33->1752", - "default.handlebars->33->1764" + "default.handlebars->33->1754", + "default.handlebars->33->1766" ] }, { @@ -15934,7 +15940,7 @@ "zh-cht": "編輯裝置群用戶同意", "ja": "デバイスグループユーザーの同意の編集", "xloc": [ - "default.handlebars->33->1699" + "default.handlebars->33->1701" ] }, { @@ -15955,7 +15961,7 @@ "ja": "デバイスノートの編集", "xloc": [ "default-mobile.handlebars->11->600", - "default.handlebars->33->1744" + "default.handlebars->33->1746" ] }, { @@ -15975,8 +15981,8 @@ "zh-cht": "編輯裝置權限", "ja": "デバイスの権限を編集する", "xloc": [ - "default.handlebars->33->1757", - "default.handlebars->33->1759" + "default.handlebars->33->1759", + "default.handlebars->33->1761" ] }, { @@ -15996,7 +16002,7 @@ "zh-cht": "編輯裝置標籤", "ja": "デバイスタグの編集", "xloc": [ - "default.handlebars->33->554" + "default.handlebars->33->556" ] }, { @@ -16016,7 +16022,7 @@ "zh-cht": "編輯裝置用戶同意", "ja": "デバイスのユーザー同意の編集", "xloc": [ - "default.handlebars->33->1701" + "default.handlebars->33->1703" ] }, { @@ -16036,7 +16042,7 @@ "zh-cht": "編輯群組", "ja": "グループを編集", "xloc": [ - "default.handlebars->33->834" + "default.handlebars->33->836" ] }, { @@ -16060,10 +16066,10 @@ "default-mobile.handlebars->11->282", "default-mobile.handlebars->11->283", "default-mobile.handlebars->11->348", - "default.handlebars->33->678", - "default.handlebars->33->683", - "default.handlebars->33->684", - "default.handlebars->33->947" + "default.handlebars->33->680", + "default.handlebars->33->685", + "default.handlebars->33->686", + "default.handlebars->33->949" ] }, { @@ -16084,7 +16090,7 @@ "ja": "メモを編集", "xloc": [ "default-mobile.handlebars->11->615", - "default.handlebars->33->1774" + "default.handlebars->33->1776" ] }, { @@ -16104,7 +16110,7 @@ "zh-cht": "編輯用戶同意", "ja": "ユーザーの同意を編集", "xloc": [ - "default.handlebars->33->1700" + "default.handlebars->33->1702" ] }, { @@ -16124,7 +16130,7 @@ "zh-cht": "編輯用戶裝置群權限", "ja": "ユーザーデバイスグループ権限の編集", "xloc": [ - "default.handlebars->33->1765" + "default.handlebars->33->1767" ] }, { @@ -16144,7 +16150,7 @@ "zh-cht": "編輯用戶裝置權限", "ja": "ユーザーデバイスの権限を編集する", "xloc": [ - "default.handlebars->33->1760" + "default.handlebars->33->1762" ] }, { @@ -16164,7 +16170,7 @@ "zh-cht": "編輯用戶群", "ja": "ユーザーグループを編集", "xloc": [ - "default.handlebars->33->2200" + "default.handlebars->33->2203" ] }, { @@ -16184,7 +16190,7 @@ "zh-cht": "編輯用戶群裝置權限", "ja": "ユーザーグループデバイス権限の編集", "xloc": [ - "default.handlebars->33->1762" + "default.handlebars->33->1764" ] }, { @@ -16204,7 +16210,7 @@ "zh-cht": "編輯用戶組用戶同意", "ja": "ユーザーグループのユーザー同意の編集", "xloc": [ - "default.handlebars->33->1702" + "default.handlebars->33->1704" ] }, { @@ -16245,7 +16251,7 @@ "zh-cht": "編輯標籤", "ja": "タグを編集", "xloc": [ - "default.handlebars->33->526" + "default.handlebars->33->528" ] }, { @@ -16286,11 +16292,11 @@ "ja": "Eメール", "xloc": [ "default-mobile.handlebars->11->102", - "default.handlebars->33->2099", - "default.handlebars->33->2226", - "default.handlebars->33->2228", - "default.handlebars->33->2268", - "default.handlebars->33->2288", + "default.handlebars->33->2102", + "default.handlebars->33->2229", + "default.handlebars->33->2231", + "default.handlebars->33->2271", + "default.handlebars->33->2291", "default.handlebars->33->390", "login-mobile.handlebars->5->42", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3", @@ -16323,7 +16329,7 @@ "ja": "メールアドレスの変更", "xloc": [ "default-mobile.handlebars->11->103", - "default.handlebars->33->1535" + "default.handlebars->33->1537" ] }, { @@ -16344,7 +16350,7 @@ "ja": "メール認証", "xloc": [ "default-mobile.handlebars->11->92", - "default.handlebars->33->1276" + "default.handlebars->33->1278" ] }, { @@ -16404,7 +16410,7 @@ "ja": "メール確認", "xloc": [ "default-mobile.handlebars->11->101", - "default.handlebars->33->1533" + "default.handlebars->33->1535" ] }, { @@ -16444,7 +16450,7 @@ "zh-cht": "電郵未驗證", "ja": "メールは検証されていない", "xloc": [ - "default.handlebars->33->2045" + "default.handlebars->33->2048" ] }, { @@ -16464,8 +16470,8 @@ "zh-cht": "電子郵件已驗證", "ja": "メールが確認されました", "xloc": [ - "default.handlebars->33->2046", - "default.handlebars->33->2220" + "default.handlebars->33->2049", + "default.handlebars->33->2223" ] }, { @@ -16485,7 +16491,7 @@ "zh-cht": "電郵已驗證。", "ja": "メールが確認されました。", "xloc": [ - "default.handlebars->33->2105" + "default.handlebars->33->2108" ] }, { @@ -16505,7 +16511,7 @@ "zh-cht": "電郵未驗證", "ja": "メールが確認されていません", "xloc": [ - "default.handlebars->33->2221" + "default.handlebars->33->2224" ] }, { @@ -16535,7 +16541,7 @@ "ja": "メールを送信しました。", "xloc": [ "default-mobile.handlebars->11->657", - "default.handlebars->33->2400", + "default.handlebars->33->2403", "login-mobile.handlebars->5->2", "login.handlebars->5->2", "login2.handlebars->7->3" @@ -16589,7 +16595,7 @@ "zh-cht": "已通過電郵驗證,並且需要重置密碼。", "ja": "メールの確認とパスワードの強制リセットが必要です。", "xloc": [ - "default.handlebars->33->2106" + "default.handlebars->33->2109" ] }, { @@ -16620,7 +16626,7 @@ "ru": "Email/SMS/Push трафик", "zh-chs": "电子邮件/短信/推送流量", "xloc": [ - "default.handlebars->33->2489" + "default.handlebars->33->2492" ] }, { @@ -16666,7 +16672,7 @@ "zh-cht": "啟用邀請代碼", "ja": "招待コードを有効にする", "xloc": [ - "default.handlebars->33->1797" + "default.handlebars->33->1799" ] }, { @@ -16707,7 +16713,7 @@ "ja": "メールの2要素認証を有効にします。", "xloc": [ "default-mobile.handlebars->11->94", - "default.handlebars->33->1278" + "default.handlebars->33->1280" ] }, { @@ -16747,7 +16753,7 @@ "zh-cht": "已啟用", "ja": "有効", "xloc": [ - "default.handlebars->33->2373" + "default.handlebars->33->2376" ] }, { @@ -16767,7 +16773,7 @@ "zh-cht": "啟用電子郵件兩因素身份驗證", "ja": "メールの2要素認証を有効化", "xloc": [ - "default.handlebars->33->1972" + "default.handlebars->33->1974" ] }, { @@ -16802,7 +16808,7 @@ "zh-chs": "结尾", "xloc": [ "default-mobile.handlebars->11->377", - "default.handlebars->33->1037" + "default.handlebars->33->1039" ] }, { @@ -16822,7 +16828,7 @@ "zh-cht": "時間結束", "ja": "終了時間", "xloc": [ - "default.handlebars->33->2370" + "default.handlebars->33->2373" ] }, { @@ -16842,7 +16848,7 @@ "zh-cht": "從{1}到{2},{3}秒結束了桌面會話“{0}”", "ja": "デスクトップセッション\\\"{0}\\\"を{1}から{2}まで終了しました、{3}秒", "xloc": [ - "default.handlebars->33->1895" + "default.handlebars->33->1897" ] }, { @@ -16862,7 +16868,7 @@ "zh-cht": "從{1}到{2},{3}秒結束了文件管理會話“{0}”", "ja": "ファイル管理セッション\\\"{0}\\\"を{1}から{2}に終了しました、{3}秒", "xloc": [ - "default.handlebars->33->1896" + "default.handlebars->33->1898" ] }, { @@ -16876,7 +16882,7 @@ "ru": "Завершился сеанс обмена сообщениями \\\"{0}\\\" с {1} до {2}, {3} сек.", "zh-chs": "从 {1} 到 {2},{3} 秒结束了 Messenger 会话 \\\"{0}\\\"", "xloc": [ - "default.handlebars->33->1996" + "default.handlebars->33->1998" ] }, { @@ -16896,7 +16902,7 @@ "zh-cht": "從{1}到{2},{3}秒結束了中繼會話“{0}”", "ja": "リレーセッション\\\"{0}\\\"を{1}から{2}に終了しました、{3}秒", "xloc": [ - "default.handlebars->33->1893" + "default.handlebars->33->1895" ] }, { @@ -16916,7 +16922,7 @@ "zh-cht": "從{1}到{2},{3}秒結束了終端會話“{0}”", "ja": "ターミナルセッション\\\"{0}\\\"を{1}から{2}まで終了しました、{3}秒", "xloc": [ - "default.handlebars->33->1894" + "default.handlebars->33->1896" ] }, { @@ -16936,7 +16942,7 @@ "zh-cht": "英文", "ja": "英語", "xloc": [ - "default.handlebars->33->1347" + "default.handlebars->33->1349" ] }, { @@ -16956,7 +16962,7 @@ "zh-cht": "英文(澳洲)", "ja": "英語(オーストラリア)", "xloc": [ - "default.handlebars->33->1348" + "default.handlebars->33->1350" ] }, { @@ -16976,7 +16982,7 @@ "zh-cht": "英文(伯利茲)", "ja": "英語(ベリーズ)", "xloc": [ - "default.handlebars->33->1349" + "default.handlebars->33->1351" ] }, { @@ -16996,7 +17002,7 @@ "zh-cht": "英文(加拿大)", "ja": "英語(カナダ)", "xloc": [ - "default.handlebars->33->1350" + "default.handlebars->33->1352" ] }, { @@ -17016,7 +17022,7 @@ "zh-cht": "英文(愛爾蘭)", "ja": "英語(アイルランド)", "xloc": [ - "default.handlebars->33->1351" + "default.handlebars->33->1353" ] }, { @@ -17036,7 +17042,7 @@ "zh-cht": "英文(牙買加)", "ja": "英語(ジャマイカ)", "xloc": [ - "default.handlebars->33->1352" + "default.handlebars->33->1354" ] }, { @@ -17056,7 +17062,7 @@ "zh-cht": "英文(紐西蘭)", "ja": "英語(ニュージーランド)", "xloc": [ - "default.handlebars->33->1353" + "default.handlebars->33->1355" ] }, { @@ -17076,7 +17082,7 @@ "zh-cht": "英文(菲律賓)", "ja": "英語(フィリピン)", "xloc": [ - "default.handlebars->33->1354" + "default.handlebars->33->1356" ] }, { @@ -17096,7 +17102,7 @@ "zh-cht": "英語(南非)", "ja": "英語(南アフリカ)", "xloc": [ - "default.handlebars->33->1355" + "default.handlebars->33->1357" ] }, { @@ -17116,7 +17122,7 @@ "zh-cht": "英文(特立尼達和多巴哥)", "ja": "英語(トリニダードトバゴ)", "xloc": [ - "default.handlebars->33->1356" + "default.handlebars->33->1358" ] }, { @@ -17136,7 +17142,7 @@ "zh-cht": "英文(英國)", "ja": "英語(イギリス)", "xloc": [ - "default.handlebars->33->1357" + "default.handlebars->33->1359" ] }, { @@ -17156,7 +17162,7 @@ "zh-cht": "美國英語", "ja": "英語(米国)", "xloc": [ - "default.handlebars->33->1358" + "default.handlebars->33->1360" ] }, { @@ -17176,7 +17182,7 @@ "zh-cht": "英文(津巴布韋)", "ja": "英語(ジンバブエ)", "xloc": [ - "default.handlebars->33->1359" + "default.handlebars->33->1361" ] }, { @@ -17206,10 +17212,10 @@ "ja": "入る", "xloc": [ "default-mobile.handlebars->11->371", - "default.handlebars->33->1031", - "default.handlebars->33->1124", - "default.handlebars->33->1562", - "default.handlebars->33->1563", + "default.handlebars->33->1033", + "default.handlebars->33->1126", + "default.handlebars->33->1564", + "default.handlebars->33->1565", "sharing.handlebars->11->55" ] }, @@ -17230,7 +17236,7 @@ "zh-cht": "輸入管理領域名稱的逗號分隔列表。", "ja": "管理レルム名のコンマ区切りリストを入力します。", "xloc": [ - "default.handlebars->33->2110" + "default.handlebars->33->2113" ] }, { @@ -17299,7 +17305,7 @@ "zh-cht": "輸入文本,然後單擊確定以遠程鍵入它。在繼續操作之前,請確保將遠程光標放置在正確的位置。", "ja": "テキストを入力し、[OK]をクリックしてリモートで入力します。先に進む前に、リモートカーソルを正しい位置に置いてください。", "xloc": [ - "default.handlebars->33->1056" + "default.handlebars->33->1058" ] }, { @@ -17379,7 +17385,7 @@ "zh-cht": "輸入支持SMS的電話號碼。驗證後,該號碼可用於登入驗證和其他通知。", "ja": "SMS対応の電話番号を入力します。確認後、番号はログイン確認やその他の通知に使用できます。", "xloc": [ - "default.handlebars->33->1273" + "default.handlebars->33->1275" ] }, { @@ -17423,7 +17429,7 @@ "zh-chs": "错误,邀请码 \\\"{0}\\\" 已被使用。", "xloc": [ "default-mobile.handlebars->11->665", - "default.handlebars->33->2408" + "default.handlebars->33->2411" ] }, { @@ -17438,7 +17444,7 @@ "zh-chs": "错误,密码未更改。", "xloc": [ "default-mobile.handlebars->11->662", - "default.handlebars->33->2405" + "default.handlebars->33->2408" ] }, { @@ -17452,7 +17458,7 @@ "zh-chs": "错误,无法更改为常用密码。", "xloc": [ "default-mobile.handlebars->11->661", - "default.handlebars->33->2404" + "default.handlebars->33->2407" ] }, { @@ -17466,7 +17472,7 @@ "zh-chs": "错误,无法更改为以前使用的密码。", "xloc": [ "default-mobile.handlebars->11->660", - "default.handlebars->33->2403" + "default.handlebars->33->2406" ] }, { @@ -17501,7 +17507,7 @@ "zh-chs": "逃脱", "xloc": [ "default-mobile.handlebars->11->372", - "default.handlebars->33->1032" + "default.handlebars->33->1034" ] }, { @@ -17521,7 +17527,7 @@ "zh-cht": "世界語", "ja": "エスペラント", "xloc": [ - "default.handlebars->33->1360" + "default.handlebars->33->1362" ] }, { @@ -17541,7 +17547,7 @@ "zh-cht": "愛沙尼亞語", "ja": "エストニア語", "xloc": [ - "default.handlebars->33->1361" + "default.handlebars->33->1363" ] }, { @@ -17570,7 +17576,7 @@ "zh-cht": "事件詳情", "ja": "イベントの詳細", "xloc": [ - "default.handlebars->33->1165" + "default.handlebars->33->1167" ] }, { @@ -17590,7 +17596,7 @@ "zh-cht": "事件列表輸出", "ja": "イベントリストのエクスポート", "xloc": [ - "default.handlebars->33->2021" + "default.handlebars->33->2024" ] }, { @@ -17711,9 +17717,9 @@ "zh-cht": "到期時間", "ja": "有効期限", "xloc": [ - "default.handlebars->33->1523", + "default.handlebars->33->1525", "default.handlebars->33->210", - "default.handlebars->33->896" + "default.handlebars->33->898" ] }, { @@ -17753,7 +17759,7 @@ "zh-cht": "過期{0}", "ja": "期限切れ{0}", "xloc": [ - "default.handlebars->33->1576", + "default.handlebars->33->1578", "sharing.handlebars->11->95" ] }, @@ -17774,7 +17780,7 @@ "zh-cht": "輸出裝置訊息", "ja": "デバイス情報をエクスポートする", "xloc": [ - "default.handlebars->33->534" + "default.handlebars->33->536" ] }, { @@ -17794,7 +17800,7 @@ "zh-cht": "擴充式ASCII", "ja": "拡張ASCII", "xloc": [ - "default.handlebars->33->1095", + "default.handlebars->33->1097", "sharing.handlebars->11->34" ] }, @@ -17836,7 +17842,7 @@ "zh-cht": "外部", "ja": "外部", "xloc": [ - "default.handlebars->33->2471" + "default.handlebars->33->2474" ] }, { @@ -17876,7 +17882,7 @@ "zh-cht": "FYRO馬其頓語", "ja": "マケドニア語", "xloc": [ - "default.handlebars->33->1411" + "default.handlebars->33->1413" ] }, { @@ -17896,7 +17902,7 @@ "zh-cht": "法羅語", "ja": "フェロー語", "xloc": [ - "default.handlebars->33->1362" + "default.handlebars->33->1364" ] }, { @@ -17931,7 +17937,7 @@ "zh-chs": "无法更改电子邮件地址,另一个帐户已在使用:{0}。", "xloc": [ "default-mobile.handlebars->11->656", - "default.handlebars->33->2399" + "default.handlebars->33->2402" ] }, { @@ -17965,7 +17971,7 @@ "zh-cht": "本地用戶拒絕後無法啟動遠程桌面", "ja": "ローカルユーザーが拒否した後、リモートデスクトップを開始できませんでした", "xloc": [ - "default.handlebars->33->1918" + "default.handlebars->33->1920" ] }, { @@ -17994,7 +18000,7 @@ "zh-cht": "本地用戶拒絕後無法啟動遠程文件", "ja": "ローカルユーザーが拒否した後、リモートファイルを開始できませんでした", "xloc": [ - "default.handlebars->33->1925" + "default.handlebars->33->1927" ] }, { @@ -18024,7 +18030,7 @@ "ja": "リモートターミナルセッションの開始に失敗しました、{0}({1})", "xloc": [ "default-mobile.handlebars->11->363", - "default.handlebars->33->1011", + "default.handlebars->33->1013", "sharing.handlebars->11->30", "sharing.handlebars->11->8" ] @@ -18046,7 +18052,7 @@ "zh-cht": "波斯語(波斯語)", "ja": "ペルシア語(ペルシャ語)", "xloc": [ - "default.handlebars->33->1363" + "default.handlebars->33->1365" ] }, { @@ -18088,7 +18094,7 @@ "zh-cht": "功能", "ja": "特徴", "xloc": [ - "default.handlebars->33->1618" + "default.handlebars->33->1620" ] }, { @@ -18108,7 +18114,7 @@ "zh-cht": "斐濟", "ja": "フィジー人", "xloc": [ - "default.handlebars->33->1364" + "default.handlebars->33->1366" ] }, { @@ -18149,8 +18155,8 @@ "ja": "ファイルエディター", "xloc": [ "default-mobile.handlebars->11->434", - "default.handlebars->33->1136", - "default.handlebars->33->613", + "default.handlebars->33->1138", + "default.handlebars->33->615", "sharing.handlebars->11->66" ] }, @@ -18187,8 +18193,8 @@ "zh-cht": "檔案操作", "ja": "ファイル操作", "xloc": [ - "default.handlebars->33->1115", "default.handlebars->33->1117", + "default.handlebars->33->1119", "sharing.handlebars->11->46", "sharing.handlebars->11->48" ] @@ -18224,7 +18230,7 @@ "ru": "Передача файлов", "zh-chs": "文件传输", "xloc": [ - "default.handlebars->33->2351" + "default.handlebars->33->2354" ] }, { @@ -18244,7 +18250,7 @@ "zh-cht": "FileSystemDriver", "ja": "FileSystemDriver", "xloc": [ - "default.handlebars->33->1065" + "default.handlebars->33->1067" ] }, { @@ -18266,12 +18272,12 @@ "xloc": [ "default-mobile.handlebars->11->203", "default-mobile.handlebars->11->311", - "default.handlebars->33->1710", - "default.handlebars->33->2358", - "default.handlebars->33->2459", + "default.handlebars->33->1712", + "default.handlebars->33->2361", + "default.handlebars->33->2462", "default.handlebars->33->317", - "default.handlebars->33->805", - "default.handlebars->33->872", + "default.handlebars->33->807", + "default.handlebars->33->874", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles", "default.handlebars->contextMenu->cxfiles", "sharing.handlebars->LeftSideToolBar" @@ -18314,10 +18320,10 @@ "zh-cht": "檔案通知", "ja": "ファイル通知", "xloc": [ - "default.handlebars->33->1626", - "default.handlebars->33->2166", - "default.handlebars->33->2253", - "default.handlebars->33->718" + "default.handlebars->33->1628", + "default.handlebars->33->2169", + "default.handlebars->33->2256", + "default.handlebars->33->720" ] }, { @@ -18337,10 +18343,10 @@ "zh-cht": "檔案提示", "ja": "ファイルプロンプト", "xloc": [ - "default.handlebars->33->1625", - "default.handlebars->33->2165", - "default.handlebars->33->2252", - "default.handlebars->33->717" + "default.handlebars->33->1627", + "default.handlebars->33->2168", + "default.handlebars->33->2255", + "default.handlebars->33->719" ] }, { @@ -18361,7 +18367,7 @@ "ja": "フィルタ", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p2->xdevicesBar->1", - "default.handlebars->33->1120", + "default.handlebars->33->1122", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->kvmListToolbar", "default.handlebars->container->column_l->p4->3->1->0->3->3", @@ -18406,7 +18412,7 @@ "zh-cht": "查找文件", "ja": "ファイルの検索", "xloc": [ - "default.handlebars->33->1123", + "default.handlebars->33->1125", "sharing.handlebars->11->54" ] }, @@ -18427,7 +18433,7 @@ "zh-cht": "錄製會話已完成,{0}秒", "ja": "録音セッションが終了しました、{0}秒", "xloc": [ - "default.handlebars->33->1891" + "default.handlebars->33->1893" ] }, { @@ -18447,7 +18453,7 @@ "zh-cht": "芬蘭", "ja": "フィンランド語", "xloc": [ - "default.handlebars->33->1365" + "default.handlebars->33->1367" ] }, { @@ -18463,8 +18469,8 @@ "xloc": [ "default-mobile.handlebars->11->467", "default-mobile.handlebars->11->469", - "default.handlebars->33->702", - "default.handlebars->33->704" + "default.handlebars->33->704", + "default.handlebars->33->706" ] }, { @@ -18478,8 +18484,8 @@ "ru": "Брандмауэр не активен", "zh-chs": "防火墙未激活", "xloc": [ - "default.handlebars->33->1823", - "default.handlebars->33->1837" + "default.handlebars->33->1825", + "default.handlebars->33->1839" ] }, { @@ -18519,7 +18525,7 @@ "zh-chs": "闪光", "xloc": [ "default-mobile.handlebars->11->315", - "default.handlebars->33->903" + "default.handlebars->33->905" ] }, { @@ -18655,7 +18661,7 @@ "ru": "Для обновления агента", "zh-chs": "代理更新", "xloc": [ - "default.handlebars->33->567" + "default.handlebars->33->569" ] }, { @@ -18669,7 +18675,7 @@ "ru": "Принудительно обновить агент", "zh-chs": "强制代理更新", "xloc": [ - "default.handlebars->33->529" + "default.handlebars->33->531" ] }, { @@ -18683,7 +18689,7 @@ "ru": "Принудительно обновить агенты на выбранных устройствах?", "zh-chs": "在选定的设备上强制更新代理?", "xloc": [ - "default.handlebars->33->566" + "default.handlebars->33->568" ] }, { @@ -18703,8 +18709,8 @@ "zh-cht": "下次登入時強制重置密碼。", "ja": "次回ログイン時にパスワードを強制的にリセットします。", "xloc": [ - "default.handlebars->33->2104", - "default.handlebars->33->2299" + "default.handlebars->33->2107", + "default.handlebars->33->2302" ] }, { @@ -18787,7 +18793,7 @@ "zh-cht": "格式化", "ja": "フォーマット", "xloc": [ - "default.handlebars->33->2012" + "default.handlebars->33->2015" ] }, { @@ -18837,8 +18843,8 @@ "zh-cht": "自由", "ja": "無料", "xloc": [ - "default.handlebars->33->2417", - "default.handlebars->33->2419" + "default.handlebars->33->2420", + "default.handlebars->33->2422" ] }, { @@ -18879,7 +18885,7 @@ "zh-cht": "法語(比利時)", "ja": "フランス語(ベルギー)", "xloc": [ - "default.handlebars->33->1367" + "default.handlebars->33->1369" ] }, { @@ -18899,7 +18905,7 @@ "zh-cht": "法語(加拿大)", "ja": "フランス語(カナダ)", "xloc": [ - "default.handlebars->33->1368" + "default.handlebars->33->1370" ] }, { @@ -18919,7 +18925,7 @@ "zh-cht": "法語(法國)", "ja": "フランス語(フランス)", "xloc": [ - "default.handlebars->33->1369" + "default.handlebars->33->1371" ] }, { @@ -18939,7 +18945,7 @@ "zh-cht": "法語(盧森堡)", "ja": "フランス語(ルクセンブルグ)", "xloc": [ - "default.handlebars->33->1370" + "default.handlebars->33->1372" ] }, { @@ -18959,7 +18965,7 @@ "zh-cht": "法語(摩納哥)", "ja": "フランス語(モナコ)", "xloc": [ - "default.handlebars->33->1371" + "default.handlebars->33->1373" ] }, { @@ -18979,7 +18985,7 @@ "zh-cht": "法語(標準)", "ja": "フランス語(標準)", "xloc": [ - "default.handlebars->33->1366" + "default.handlebars->33->1368" ] }, { @@ -18999,7 +19005,7 @@ "zh-cht": "法語(瑞士)", "ja": "フランス語(スイス)", "xloc": [ - "default.handlebars->33->1372" + "default.handlebars->33->1374" ] }, { @@ -19019,7 +19025,7 @@ "zh-cht": "弗里斯蘭語", "ja": "フリジア語", "xloc": [ - "default.handlebars->33->1373" + "default.handlebars->33->1375" ] }, { @@ -19039,7 +19045,7 @@ "zh-cht": "弗留利", "ja": "フリウリアン", "xloc": [ - "default.handlebars->33->1374" + "default.handlebars->33->1376" ] }, { @@ -19063,9 +19069,9 @@ "default-mobile.handlebars->11->574", "default-mobile.handlebars->11->587", "default-mobile.handlebars->11->607", - "default.handlebars->33->1569", - "default.handlebars->33->1729", - "default.handlebars->33->2116" + "default.handlebars->33->1571", + "default.handlebars->33->1731", + "default.handlebars->33->2119" ] }, { @@ -19085,7 +19091,7 @@ "zh-cht": "完整管理員(保留所有權利)", "ja": "完全な管理者(すべての権利)", "xloc": [ - "default.handlebars->33->1766" + "default.handlebars->33->1768" ] }, { @@ -19122,7 +19128,7 @@ "zh-cht": "完整裝置權限", "ja": "完全なデバイスの権利", "xloc": [ - "default.handlebars->33->814" + "default.handlebars->33->816" ] }, { @@ -19142,7 +19148,7 @@ "zh-cht": "全部權限", "ja": "完全な権利", "xloc": [ - "default.handlebars->33->833" + "default.handlebars->33->835" ] }, { @@ -19205,7 +19211,7 @@ "zh-cht": "完整管理員", "ja": "完全な管理者", "xloc": [ - "default.handlebars->33->2214" + "default.handlebars->33->2217" ] }, { @@ -19225,8 +19231,8 @@ "zh-cht": "全自動的", "ja": "全自動", "xloc": [ - "default.handlebars->33->1643", - "default.handlebars->33->1668" + "default.handlebars->33->1645", + "default.handlebars->33->1670" ] }, { @@ -19247,7 +19253,7 @@ "ja": "GPU", "xloc": [ "default-mobile.handlebars->11->531", - "default.handlebars->33->1234" + "default.handlebars->33->1236" ] }, { @@ -19267,7 +19273,7 @@ "zh-cht": "蓋爾語(愛爾蘭)", "ja": "ゲール語(アイルランド語)", "xloc": [ - "default.handlebars->33->1376" + "default.handlebars->33->1378" ] }, { @@ -19287,7 +19293,7 @@ "zh-cht": "蓋爾語(蘇格蘭語)", "ja": "ゲール語(スコットランド)", "xloc": [ - "default.handlebars->33->1375" + "default.handlebars->33->1377" ] }, { @@ -19307,7 +19313,7 @@ "zh-cht": "加拉契語", "ja": "ガラシアン", "xloc": [ - "default.handlebars->33->1377" + "default.handlebars->33->1379" ] }, { @@ -19393,7 +19399,7 @@ "zh-cht": "一般訊息", "ja": "一般情報", "xloc": [ - "default.handlebars->33->620" + "default.handlebars->33->622" ] }, { @@ -19433,7 +19439,7 @@ "zh-cht": "格魯吉亞文", "ja": "グルジア語", "xloc": [ - "default.handlebars->33->1378" + "default.handlebars->33->1380" ] }, { @@ -19453,7 +19459,7 @@ "zh-cht": "德語(奧地利)", "ja": "ドイツ語(オーストリア)", "xloc": [ - "default.handlebars->33->1380" + "default.handlebars->33->1382" ] }, { @@ -19473,7 +19479,7 @@ "zh-cht": "德文(德國)", "ja": "ドイツ語(ドイツ)", "xloc": [ - "default.handlebars->33->1381" + "default.handlebars->33->1383" ] }, { @@ -19493,7 +19499,7 @@ "zh-cht": "德文(列支敦士登)", "ja": "ドイツ語(リヒテンシュタイン)", "xloc": [ - "default.handlebars->33->1382" + "default.handlebars->33->1384" ] }, { @@ -19513,7 +19519,7 @@ "zh-cht": "德語(盧森堡)", "ja": "ドイツ語(ルクセンブルグ)", "xloc": [ - "default.handlebars->33->1383" + "default.handlebars->33->1385" ] }, { @@ -19533,7 +19539,7 @@ "zh-cht": "德語(標準)", "ja": "ドイツ語(標準)", "xloc": [ - "default.handlebars->33->1379" + "default.handlebars->33->1381" ] }, { @@ -19553,7 +19559,7 @@ "zh-cht": "德文(瑞士)", "ja": "ドイツ語(スイス)", "xloc": [ - "default.handlebars->33->1384" + "default.handlebars->33->1386" ] }, { @@ -19573,7 +19579,7 @@ "zh-cht": "獲取此裝置的MQTT登入憑證。", "ja": "このデバイスのMQTTログイン資格情報を取得します。", "xloc": [ - "default.handlebars->33->778" + "default.handlebars->33->780" ] }, { @@ -19614,7 +19620,7 @@ "zh-cht": "正在獲取剪貼板內容,{0}個字節", "ja": "クリップボードのコンテンツを取得しています、{0}バイト", "xloc": [ - "default.handlebars->33->1905" + "default.handlebars->33->1907" ] }, { @@ -19676,7 +19682,7 @@ "zh-cht": "好", "ja": "良い", "xloc": [ - "default.handlebars->33->1565" + "default.handlebars->33->1567" ] }, { @@ -19721,8 +19727,8 @@ "zh-cht": "Google雲端硬盤備份", "ja": "Googleドライブバックアップ", "xloc": [ - "default.handlebars->33->1586", - "default.handlebars->33->1589", + "default.handlebars->33->1588", + "default.handlebars->33->1591", "default.handlebars->33->232" ] }, @@ -19743,7 +19749,7 @@ "zh-cht": "Google雲端硬盤控制台", "ja": "Googleドライブコンソール", "xloc": [ - "default.handlebars->33->1583" + "default.handlebars->33->1585" ] }, { @@ -19783,7 +19789,7 @@ "zh-cht": "Google雲端硬盤備份當前處於活動狀態。", "ja": "Googleドライブのバックアップは現在アクティブです。", "xloc": [ - "default.handlebars->33->1587" + "default.handlebars->33->1589" ] }, { @@ -19817,7 +19823,7 @@ "zh-cht": "希臘文", "ja": "ギリシャ語", "xloc": [ - "default.handlebars->33->1385" + "default.handlebars->33->1387" ] }, { @@ -19838,7 +19844,7 @@ "ja": "グループ", "xloc": [ "default-mobile.handlebars->11->250", - "default.handlebars->33->648", + "default.handlebars->33->650", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->1" ] }, @@ -19859,9 +19865,9 @@ "zh-cht": "集體指令", "ja": "グループアクション", "xloc": [ - "default.handlebars->33->2060", - "default.handlebars->33->2139", - "default.handlebars->33->535", + "default.handlebars->33->2063", + "default.handlebars->33->2142", + "default.handlebars->33->537", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar", "default.handlebars->container->column_l->p4->3->1->0->3->3", "default.handlebars->container->column_l->p50->3->1->0->3->3" @@ -19884,7 +19890,7 @@ "zh-cht": "通過...分群", "ja": "グループ化", "xloc": [ - "default.handlebars->33->2008" + "default.handlebars->33->2011" ] }, { @@ -19904,7 +19910,7 @@ "zh-cht": "群標識符", "ja": "グループ識別子", "xloc": [ - "default.handlebars->33->2156" + "default.handlebars->33->2159" ] }, { @@ -19924,7 +19930,7 @@ "zh-cht": "群組成員", "ja": "グループの人(仲間)たち", "xloc": [ - "default.handlebars->33->2177" + "default.handlebars->33->2180" ] }, { @@ -19944,7 +19950,7 @@ "zh-cht": "用戶{0}的群組權限。", "ja": "ユーザー{0}のグループ権限。", "xloc": [ - "default.handlebars->33->1728" + "default.handlebars->33->1730" ] }, { @@ -19964,7 +19970,7 @@ "zh-cht": "{0}的群組權限。", "ja": "{0}のグループ権限。", "xloc": [ - "default.handlebars->33->1727" + "default.handlebars->33->1729" ] }, { @@ -20045,7 +20051,7 @@ "ja": "お客様のお名前", "xloc": [ "default.handlebars->33->205", - "default.handlebars->33->869" + "default.handlebars->33->871" ] }, { @@ -20059,8 +20065,8 @@ "ru": "Поделиться с гостем", "zh-chs": "嘉宾分享", "xloc": [ - "default.handlebars->33->821", - "default.handlebars->33->843" + "default.handlebars->33->823", + "default.handlebars->33->845" ] }, { @@ -20074,7 +20080,7 @@ "ru": "Делиться с гостями", "zh-chs": "嘉宾分享", "xloc": [ - "default.handlebars->33->1736" + "default.handlebars->33->1738" ] }, { @@ -20094,7 +20100,7 @@ "zh-cht": "古久拉提", "ja": "グジュラティ", "xloc": [ - "default.handlebars->33->1386" + "default.handlebars->33->1388" ] }, { @@ -20108,7 +20114,7 @@ "ru": "HTTP", "zh-chs": "HTTP", "xloc": [ - "default.handlebars->33->2455" + "default.handlebars->33->2458" ] }, { @@ -20160,7 +20166,7 @@ "zh-cht": "海地文", "ja": "ハイチ語", "xloc": [ - "default.handlebars->33->1387" + "default.handlebars->33->1389" ] }, { @@ -20201,7 +20207,7 @@ "ja": "ハード切断エージェント", "xloc": [ "default-mobile.handlebars->11->561", - "default.handlebars->33->1265" + "default.handlebars->33->1267" ] }, { @@ -20221,7 +20227,7 @@ "zh-cht": "堆總數", "ja": "ヒープ合計", "xloc": [ - "default.handlebars->33->2473" + "default.handlebars->33->2476" ] }, { @@ -20241,7 +20247,7 @@ "zh-cht": "堆使用", "ja": "使用ヒープ", "xloc": [ - "default.handlebars->33->2472" + "default.handlebars->33->2475" ] }, { @@ -20261,7 +20267,7 @@ "zh-cht": "希伯來文", "ja": "ヘブライ語", "xloc": [ - "default.handlebars->33->1388" + "default.handlebars->33->1390" ] }, { @@ -20331,7 +20337,7 @@ "zh-cht": "已請求幫助,用戶:{0},詳細信息:{1}", "ja": "ヘルプリクエスト、ユーザー:{0}、詳細:{1}", "xloc": [ - "default.handlebars->33->1982" + "default.handlebars->33->1984" ] }, { @@ -20392,7 +20398,7 @@ "zh-cht": "幫助翻譯MeshCentral", "ja": "MeshCentralの翻訳を支援", "xloc": [ - "default.handlebars->33->1503" + "default.handlebars->33->1505" ] }, { @@ -20475,7 +20481,7 @@ "xloc": [ "default-mobile.handlebars->11->218", "default-mobile.handlebars->11->225", - "default.handlebars->33->492", + "default.handlebars->33->494", "default.handlebars->33->5" ] }, @@ -20496,7 +20502,7 @@ "zh-cht": "印地文", "ja": "ヒンディー語", "xloc": [ - "default.handlebars->33->1389" + "default.handlebars->33->1391" ] }, { @@ -20534,7 +20540,7 @@ "ja": "コピー用に1つのエントリを保持", "xloc": [ "default-mobile.handlebars->11->443", - "default.handlebars->33->1146", + "default.handlebars->33->1148", "sharing.handlebars->11->76" ] }, @@ -20556,7 +20562,7 @@ "ja": "移動のために1つのエントリを保持", "xloc": [ "default-mobile.handlebars->11->447", - "default.handlebars->33->1150", + "default.handlebars->33->1152", "sharing.handlebars->11->80" ] }, @@ -20578,7 +20584,7 @@ "ja": "コピー用に{0}エントリを保持しています", "xloc": [ "default-mobile.handlebars->11->441", - "default.handlebars->33->1144", + "default.handlebars->33->1146", "sharing.handlebars->11->74" ] }, @@ -20600,7 +20606,7 @@ "ja": "移動のために{0}エントリを保持しています", "xloc": [ "default-mobile.handlebars->11->445", - "default.handlebars->33->1148", + "default.handlebars->33->1150", "sharing.handlebars->11->78" ] }, @@ -20622,7 +20628,7 @@ "ja": "{2}の{0}エントリを保持しています{1}", "xloc": [ "default-mobile.handlebars->11->153", - "default.handlebars->33->1878" + "default.handlebars->33->1880" ] }, { @@ -20637,7 +20643,7 @@ "zh-chs": "家", "xloc": [ "default-mobile.handlebars->11->376", - "default.handlebars->33->1036" + "default.handlebars->33->1038" ] }, { @@ -20662,11 +20668,11 @@ "default-mobile.handlebars->11->255", "default-mobile.handlebars->11->356", "default-mobile.handlebars->11->490", - "default.handlebars->33->1004", - "default.handlebars->33->1183", + "default.handlebars->33->1006", + "default.handlebars->33->1185", "default.handlebars->33->349", "default.handlebars->33->358", - "default.handlebars->33->653" + "default.handlebars->33->655" ] }, { @@ -20686,7 +20692,7 @@ "zh-cht": "主機名同步", "ja": "ホスト名の同期", "xloc": [ - "default.handlebars->33->1615" + "default.handlebars->33->1617" ] }, { @@ -20706,7 +20712,7 @@ "zh-cht": "匈牙利文", "ja": "ハンガリー語", "xloc": [ - "default.handlebars->33->1390" + "default.handlebars->33->1392" ] }, { @@ -20769,9 +20775,9 @@ "zh-cht": "IP:{0}", "ja": "IP:{0}", "xloc": [ - "default.handlebars->33->1193", - "default.handlebars->33->1203", - "default.handlebars->33->1207" + "default.handlebars->33->1195", + "default.handlebars->33->1205", + "default.handlebars->33->1209" ] }, { @@ -20791,9 +20797,9 @@ "zh-cht": "IP:{0},遮罩:{1},閘道:{2}", "ja": "IP:{0}、マスク:{1}、ゲートウェイ:{2}", "xloc": [ - "default.handlebars->33->1191", - "default.handlebars->33->1201", - "default.handlebars->33->1205" + "default.handlebars->33->1193", + "default.handlebars->33->1203", + "default.handlebars->33->1207" ] }, { @@ -20815,10 +20821,10 @@ "xloc": [ "default-mobile.handlebars->11->497", "default-mobile.handlebars->11->499", - "default.handlebars->33->1190", "default.handlebars->33->1192", - "default.handlebars->33->1200", - "default.handlebars->33->1202" + "default.handlebars->33->1194", + "default.handlebars->33->1202", + "default.handlebars->33->1204" ] }, { @@ -20903,8 +20909,8 @@ "xloc": [ "default-mobile.handlebars->11->501", "default-mobile.handlebars->11->503", - "default.handlebars->33->1204", - "default.handlebars->33->1206" + "default.handlebars->33->1206", + "default.handlebars->33->1208" ] }, { @@ -20984,7 +20990,7 @@ "zh-cht": "冰島文", "ja": "アイスランド語", "xloc": [ - "default.handlebars->33->1391" + "default.handlebars->33->1393" ] }, { @@ -21005,7 +21011,7 @@ "ja": "アイコンの選択", "xloc": [ "default-mobile.handlebars->11->352", - "default.handlebars->33->1000" + "default.handlebars->33->1002" ] }, { @@ -21027,8 +21033,8 @@ "xloc": [ "default-mobile.handlebars->11->489", "default-mobile.handlebars->11->529", - "default.handlebars->33->1182", - "default.handlebars->33->1232" + "default.handlebars->33->1184", + "default.handlebars->33->1234" ] }, { @@ -21048,7 +21054,7 @@ "zh-cht": "如果在CCM中,請重新激活英特爾®AMT", "ja": "CCMの場合は、インテル®AMTを再アクティブ化します", "xloc": [ - "default.handlebars->33->1682" + "default.handlebars->33->1684" ] }, { @@ -21176,7 +21182,7 @@ "nl": "Om authenticatie met pushmeldingen te gebruiken, moet een mobiel apparaat met volledige rechten in uw account zijn ingesteld.", "zh-chs": "为了使用推送通知身份验证,必须在您的帐户中设置具有完全权限的移动设备。", "xloc": [ - "default.handlebars->33->1286" + "default.handlebars->33->1288" ] }, { @@ -21204,7 +21210,7 @@ "ru": "Включить детали об устройстве", "zh-chs": "包括设备详细信息", "xloc": [ - "default.handlebars->33->577" + "default.handlebars->33->579" ] }, { @@ -21285,7 +21291,7 @@ "zh-cht": "印度尼西亞文", "ja": "インドネシア人", "xloc": [ - "default.handlebars->33->1392" + "default.handlebars->33->1394" ] }, { @@ -21362,7 +21368,7 @@ "zh-chs": "插", "xloc": [ "default-mobile.handlebars->11->374", - "default.handlebars->33->1034" + "default.handlebars->33->1036" ] }, { @@ -21522,8 +21528,8 @@ "zh-cht": "安裝方式", "ja": "設置タイプ", "xloc": [ - "default.handlebars->33->1799", - "default.handlebars->33->1806", + "default.handlebars->33->1801", + "default.handlebars->33->1808", "default.handlebars->33->405", "default.handlebars->33->419", "default.handlebars->33->435", @@ -21547,7 +21553,7 @@ "zh-cht": "Intel(F10 = ESC + [OM)", "ja": "Intel(F10 = ESC+[OM)", "xloc": [ - "default.handlebars->33->1097", + "default.handlebars->33->1099", "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons", "sharing.handlebars->11->36", "sharing.handlebars->p12->9->1->terminalSettingsButtons" @@ -21570,7 +21576,7 @@ "zh-cht": "英特爾AMT", "ja": "インテルAMT", "xloc": [ - "default.handlebars->33->2469" + "default.handlebars->33->2472" ] }, { @@ -21583,7 +21589,7 @@ "nl": "Intel AMT beheerder", "zh-chs": "英特尔 AMT 经理", "xloc": [ - "default.handlebars->33->2496" + "default.handlebars->33->2499" ] }, { @@ -21603,7 +21609,7 @@ "zh-cht": "Intel ASCII", "ja": "Intel ASCII", "xloc": [ - "default.handlebars->33->1096", + "default.handlebars->33->1098", "sharing.handlebars->11->35" ] }, @@ -21627,14 +21633,14 @@ "default-mobile.handlebars->11->237", "default-mobile.handlebars->11->285", "default-mobile.handlebars->11->290", - "default.handlebars->33->1633", - "default.handlebars->33->1644", - "default.handlebars->33->1818", - "default.handlebars->33->1831", - "default.handlebars->33->2495", - "default.handlebars->33->623", - "default.handlebars->33->688", - "default.handlebars->33->728" + "default.handlebars->33->1635", + "default.handlebars->33->1646", + "default.handlebars->33->1820", + "default.handlebars->33->1833", + "default.handlebars->33->2498", + "default.handlebars->33->625", + "default.handlebars->33->690", + "default.handlebars->33->730" ] }, { @@ -21675,7 +21681,7 @@ "ja": "Intel® AMT CIRA", "xloc": [ "default-mobile.handlebars->11->289", - "default.handlebars->33->726" + "default.handlebars->33->728" ] }, { @@ -21736,8 +21742,8 @@ "ja": "Intel® AMT CIRAが接続され、使用できる状態になりました。", "xloc": [ "default.handlebars->33->293", - "default.handlebars->33->506", - "default.handlebars->33->725" + "default.handlebars->33->508", + "default.handlebars->33->727" ] }, { @@ -21793,8 +21799,8 @@ "nl": "Intel® AMT herstel met één klik", "zh-chs": "英特尔® AMT 一键恢复", "xloc": [ - "default.handlebars->33->918", - "default.handlebars->33->931" + "default.handlebars->33->920", + "default.handlebars->33->933" ] }, { @@ -21814,7 +21820,7 @@ "zh-cht": "Intel® AMT政策", "ja": "Intel® AMTポリシー", "xloc": [ - "default.handlebars->33->1669" + "default.handlebars->33->1671" ] }, { @@ -21830,9 +21836,9 @@ "default-mobile.handlebars->11->331", "default-mobile.handlebars->11->333", "default-mobile.handlebars->11->335", - "default.handlebars->33->932", "default.handlebars->33->934", - "default.handlebars->33->936" + "default.handlebars->33->936", + "default.handlebars->33->938" ] }, { @@ -21846,7 +21852,7 @@ "zh-chs": "英特尔® AMT 关机", "xloc": [ "default-mobile.handlebars->11->327", - "default.handlebars->33->917" + "default.handlebars->33->919" ] }, { @@ -21860,7 +21866,7 @@ "zh-chs": "英特尔® AMT 开机", "xloc": [ "default-mobile.handlebars->11->326", - "default.handlebars->33->916" + "default.handlebars->33->918" ] }, { @@ -21880,8 +21886,8 @@ "zh-cht": "Intel® AMT重定向", "ja": "Intel® AMTリダイレクト", "xloc": [ - "default.handlebars->33->2353", - "default.handlebars->33->2360", + "default.handlebars->33->2356", + "default.handlebars->33->2363", "player.handlebars->3->14" ] }, @@ -21896,7 +21902,7 @@ "zh-chs": "英特尔® AMT 重置", "xloc": [ "default-mobile.handlebars->11->325", - "default.handlebars->33->915" + "default.handlebars->33->917" ] }, { @@ -21916,7 +21922,7 @@ "zh-cht": "Intel® AMT標籤", "ja": "Intel® AMTタグ", "xloc": [ - "default.handlebars->33->692" + "default.handlebars->33->694" ] }, { @@ -21936,8 +21942,8 @@ "zh-cht": "Intle® AMT WSMAN", "ja": "Intel® AMT WSMAN", "xloc": [ - "default.handlebars->33->2352", - "default.handlebars->33->2359", + "default.handlebars->33->2355", + "default.handlebars->33->2362", "player.handlebars->3->13" ] }, @@ -21976,8 +21982,8 @@ "ja": "Intel®接続されたAMT", "xloc": [ "default-mobile.handlebars->11->304", - "default.handlebars->33->784", - "default.handlebars->33->785" + "default.handlebars->33->786", + "default.handlebars->33->787" ] }, { @@ -21997,8 +22003,8 @@ "zh-cht": "Intel® AMT桌面和串行事件。", "ja": "Intel® AMTデスクトップおよびシリアルイベント。", "xloc": [ - "default.handlebars->33->1529", - "default.handlebars->33->1814" + "default.handlebars->33->1531", + "default.handlebars->33->1816" ] }, { @@ -22020,8 +22026,8 @@ "xloc": [ "default-mobile.handlebars->11->305", "default.handlebars->33->182", - "default.handlebars->33->786", - "default.handlebars->33->787" + "default.handlebars->33->788", + "default.handlebars->33->789" ] }, { @@ -22041,7 +22047,7 @@ "zh-cht": "在管理控制模式下啟動了Intel® AMT", "ja": "Intel® AMTは管理制御モードでアクティブ化されます", "xloc": [ - "default.handlebars->33->674" + "default.handlebars->33->676" ] }, { @@ -22061,7 +22067,7 @@ "zh-cht": "Intel® AMT在客户端控制模式下被启动", "ja": "Intel® AMTはクライアントコントロールモードでアクティブ化されます", "xloc": [ - "default.handlebars->33->672" + "default.handlebars->33->674" ] }, { @@ -22081,7 +22087,7 @@ "zh-cht": "Intel® AMT可路由並可以使用。", "ja": "Intel® AMTはルーティング可能であり、すぐに使用できます。", "xloc": [ - "default.handlebars->33->727" + "default.handlebars->33->729" ] }, { @@ -22102,7 +22108,7 @@ "ja": "Intel® AMTはルーティング可能です。", "xloc": [ "default.handlebars->33->295", - "default.handlebars->33->508" + "default.handlebars->33->510" ] }, { @@ -22123,7 +22129,7 @@ "ja": "Intel® AMTはTLSネットワークセキュリティでセットアップされています", "xloc": [ "default-mobile.handlebars->11->275", - "default.handlebars->33->676" + "default.handlebars->33->678" ] }, { @@ -22184,8 +22190,8 @@ "ja": "Intel® AMTのみ、エージェントなし", "xloc": [ "default-mobile.handlebars->11->564", - "default.handlebars->33->1559", - "default.handlebars->33->1604" + "default.handlebars->33->1561", + "default.handlebars->33->1606" ] }, { @@ -22242,7 +22248,7 @@ "zh-cht": "Intel® Active Management Technology", "ja": "Intel®アクティブ管理テクノロジー", "xloc": [ - "default.handlebars->33->687" + "default.handlebars->33->689" ] }, { @@ -22263,7 +22269,7 @@ "ja": "インテル®アクティブ管理テクノロジー(インテル®AMT)", "xloc": [ "default-mobile.handlebars->11->521", - "default.handlebars->33->1224" + "default.handlebars->33->1226" ] }, { @@ -22284,7 +22290,7 @@ "ja": "Intel®私", "xloc": [ "default-mobile.handlebars->11->284", - "default.handlebars->33->686" + "default.handlebars->33->688" ] }, { @@ -22304,7 +22310,7 @@ "zh-cht": "Intel® Management Engine", "ja": "インテル®管理エンジン", "xloc": [ - "default.handlebars->33->685" + "default.handlebars->33->687" ] }, { @@ -22325,7 +22331,7 @@ "ja": "Intel® SM", "xloc": [ "default-mobile.handlebars->11->286", - "default.handlebars->33->690" + "default.handlebars->33->692" ] }, { @@ -22345,7 +22351,7 @@ "zh-cht": "Intel® Standard Manageability", "ja": "Intel®標準の管理性", "xloc": [ - "default.handlebars->33->689" + "default.handlebars->33->691" ] }, { @@ -22496,7 +22502,7 @@ "zh-cht": "互動", "ja": "インタラクティブ", "xloc": [ - "default.handlebars->33->1066" + "default.handlebars->33->1068" ] }, { @@ -22516,8 +22522,8 @@ "zh-cht": "僅限互動", "ja": "インタラクティブのみ", "xloc": [ - "default.handlebars->33->1802", - "default.handlebars->33->1809", + "default.handlebars->33->1804", + "default.handlebars->33->1811", "default.handlebars->33->408", "default.handlebars->33->422", "default.handlebars->33->438" @@ -22540,7 +22546,7 @@ "zh-cht": "介面", "ja": "インターフェース", "xloc": [ - "default.handlebars->33->758" + "default.handlebars->33->760" ] }, { @@ -22560,7 +22566,7 @@ "zh-cht": "因紐特文", "ja": "イヌクティトゥット語", "xloc": [ - "default.handlebars->33->1393" + "default.handlebars->33->1395" ] }, { @@ -22596,7 +22602,7 @@ "ja": "無効な資格情報", "xloc": [ "default-mobile.handlebars->11->280", - "default.handlebars->33->681" + "default.handlebars->33->683" ] }, { @@ -22616,7 +22622,7 @@ "zh-cht": "無效的裝置群類型", "ja": "無効なデバイスグループタイプ", "xloc": [ - "default.handlebars->33->2431" + "default.handlebars->33->2434" ] }, { @@ -22636,7 +22642,7 @@ "zh-cht": "無效的JSON", "ja": "無効なJSON", "xloc": [ - "default.handlebars->33->2425" + "default.handlebars->33->2428" ] }, { @@ -22656,8 +22662,8 @@ "zh-cht": "無效的JSON檔案格式。", "ja": "JSONファイル形式が無効です。", "xloc": [ - "default.handlebars->33->2078", - "default.handlebars->33->2080" + "default.handlebars->33->2081", + "default.handlebars->33->2083" ] }, { @@ -22677,7 +22683,7 @@ "zh-cht": "無效的JSON檔案:{0}。", "ja": "無効なJSONファイル:{0}。", "xloc": [ - "default.handlebars->33->2076" + "default.handlebars->33->2079" ] }, { @@ -22697,7 +22703,7 @@ "zh-cht": "無效的PKCS簽名", "ja": "無効なPKCS署名", "xloc": [ - "default.handlebars->33->2423" + "default.handlebars->33->2426" ] }, { @@ -22716,7 +22722,7 @@ "zh-chs": "無效的RSA密碼", "zh-cht": "無效的RSA密碼", "xloc": [ - "default.handlebars->33->2424" + "default.handlebars->33->2427" ] }, { @@ -22731,7 +22737,7 @@ "zh-chs": "无效的短信", "xloc": [ "default-mobile.handlebars->11->668", - "default.handlebars->33->2411" + "default.handlebars->33->2414" ] }, { @@ -22768,7 +22774,7 @@ "zh-chs": "无效域", "xloc": [ "default-mobile.handlebars->11->648", - "default.handlebars->33->2391" + "default.handlebars->33->2394" ] }, { @@ -22792,7 +22798,7 @@ "zh-chs": "不合规电邮", "xloc": [ "default-mobile.handlebars->11->647", - "default.handlebars->33->2390" + "default.handlebars->33->2393" ] }, { @@ -22872,7 +22878,7 @@ "default-mobile.handlebars->11->646", "default-mobile.handlebars->11->78", "default.handlebars->33->238", - "default.handlebars->33->2389" + "default.handlebars->33->2392" ] }, { @@ -22887,7 +22893,7 @@ "zh-chs": "网站权限无效", "xloc": [ "default-mobile.handlebars->11->649", - "default.handlebars->33->2392" + "default.handlebars->33->2395" ] }, { @@ -22923,7 +22929,7 @@ "ru": "Некорректная попытка входа пользователя из {0}, {1}, {2}", "zh-chs": "来自 {0}、{1}、{2} 的无效用户登录尝试", "xloc": [ - "default.handlebars->33->1994" + "default.handlebars->33->1996" ] }, { @@ -22938,7 +22944,7 @@ "zh-chs": "无效的用户名", "xloc": [ "default-mobile.handlebars->11->645", - "default.handlebars->33->2388" + "default.handlebars->33->2391" ] }, { @@ -22967,7 +22973,7 @@ "zh-cht": "使電郵無效", "ja": "メールを無効にする", "xloc": [ - "default.handlebars->33->2054" + "default.handlebars->33->2057" ] }, { @@ -23044,7 +23050,7 @@ "zh-cht": "任何人都可以使用邀請代碼通過以下公共鏈結將裝置加入該裝置群:", "ja": "招待コードは誰でも使用でき、次の公開リンクを使用してデバイスをこのデバイスグループに参加させることができます。", "xloc": [ - "default.handlebars->33->1804" + "default.handlebars->33->1806" ] }, { @@ -23084,7 +23090,7 @@ "zh-cht": "邀請", "ja": "招待する", "xloc": [ - "default.handlebars->33->1654", + "default.handlebars->33->1656", "default.handlebars->33->344", "default.handlebars->33->424" ] @@ -23107,12 +23113,12 @@ "ja": "コードを招待", "xloc": [ "default-mobile.handlebars->11->643", - "default.handlebars->33->1637", - "default.handlebars->33->1798", - "default.handlebars->33->1803", + "default.handlebars->33->1639", + "default.handlebars->33->1800", "default.handlebars->33->1805", - "default.handlebars->33->1810", - "default.handlebars->33->2386" + "default.handlebars->33->1807", + "default.handlebars->33->1812", + "default.handlebars->33->2389" ] }, { @@ -23152,7 +23158,7 @@ "zh-cht": "邀請某人在該裝置群上安裝mesh agent。", "ja": "このデバイスグループにメッシュエージェントをインストールするように誰かを招待します。", "xloc": [ - "default.handlebars->33->1653", + "default.handlebars->33->1655", "default.handlebars->33->343" ] }, @@ -23193,7 +23199,7 @@ "zh-cht": "愛爾蘭文", "ja": "アイルランド人", "xloc": [ - "default.handlebars->33->1394" + "default.handlebars->33->1396" ] }, { @@ -23213,7 +23219,7 @@ "zh-cht": "意大利文(標準)", "ja": "イタリア語(標準)", "xloc": [ - "default.handlebars->33->1395" + "default.handlebars->33->1397" ] }, { @@ -23233,7 +23239,7 @@ "zh-cht": "義大利文(瑞士)", "ja": "イタリア語(スイス)", "xloc": [ - "default.handlebars->33->1396" + "default.handlebars->33->1398" ] }, { @@ -23262,7 +23268,7 @@ "zh-cht": "JSON", "ja": "JSON", "xloc": [ - "default.handlebars->33->2014" + "default.handlebars->33->2017" ] }, { @@ -23282,9 +23288,9 @@ "zh-cht": "JSON格式", "ja": "JSON形式", "xloc": [ - "default.handlebars->33->2019", - "default.handlebars->33->2084", - "default.handlebars->33->575" + "default.handlebars->33->2022", + "default.handlebars->33->2087", + "default.handlebars->33->577" ] }, { @@ -23304,7 +23310,7 @@ "zh-cht": "日文", "ja": "日本人", "xloc": [ - "default.handlebars->33->1397" + "default.handlebars->33->1399" ] }, { @@ -23324,7 +23330,7 @@ "zh-cht": "已加入桌面Multiplex會話", "ja": "デスクトップマルチプレックスセッションに参加しました", "xloc": [ - "default.handlebars->33->1888" + "default.handlebars->33->1890" ] }, { @@ -23344,7 +23350,7 @@ "zh-cht": "卡納達文", "ja": "カンナダ語", "xloc": [ - "default.handlebars->33->1398" + "default.handlebars->33->1400" ] }, { @@ -23364,7 +23370,7 @@ "zh-cht": "克什米爾文", "ja": "カシミール", "xloc": [ - "default.handlebars->33->1399" + "default.handlebars->33->1401" ] }, { @@ -23384,7 +23390,7 @@ "zh-cht": "哈薩克文", "ja": "カザフ", "xloc": [ - "default.handlebars->33->1400" + "default.handlebars->33->1402" ] }, { @@ -23404,7 +23410,7 @@ "zh-cht": "保留現有密碼", "ja": "既存のパスワードを保持する", "xloc": [ - "default.handlebars->33->1670" + "default.handlebars->33->1672" ] }, { @@ -23424,7 +23430,7 @@ "zh-cht": "內核驅動器", "ja": "KernelDriver", "xloc": [ - "default.handlebars->33->1067" + "default.handlebars->33->1069" ] }, { @@ -23444,8 +23450,8 @@ "zh-cht": "鍵名", "ja": "キー名", "xloc": [ - "default.handlebars->33->1291", - "default.handlebars->33->1294" + "default.handlebars->33->1293", + "default.handlebars->33->1296" ] }, { @@ -23477,7 +23483,7 @@ "zh-chs": "键盘快捷键自定义", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p10->p10dialog->1->1", - "default.handlebars->33->1054" + "default.handlebars->33->1056" ] }, { @@ -23514,7 +23520,7 @@ "zh-cht": "高棉文", "ja": "クメール", "xloc": [ - "default.handlebars->33->1401" + "default.handlebars->33->1403" ] }, { @@ -23534,7 +23540,7 @@ "zh-cht": "殺死進程{0}", "ja": "殺害プロセス{0}", "xloc": [ - "default.handlebars->33->1903" + "default.handlebars->33->1905" ] }, { @@ -23554,7 +23560,7 @@ "zh-cht": "吉爾吉斯", "ja": "キルギス", "xloc": [ - "default.handlebars->33->1402" + "default.handlebars->33->1404" ] }, { @@ -23574,7 +23580,7 @@ "zh-cht": "克林貢", "ja": "クリンゴン", "xloc": [ - "default.handlebars->33->1403" + "default.handlebars->33->1405" ] }, { @@ -23595,7 +23601,7 @@ "ja": "既知の", "xloc": [ "default-mobile.handlebars->11->520", - "default.handlebars->33->1223" + "default.handlebars->33->1225" ] }, { @@ -23615,7 +23621,7 @@ "zh-cht": "韓文", "ja": "韓国語", "xloc": [ - "default.handlebars->33->1404" + "default.handlebars->33->1406" ] }, { @@ -23635,7 +23641,7 @@ "zh-cht": "韓文(朝鮮)", "ja": "韓国語(北朝鮮)", "xloc": [ - "default.handlebars->33->1405" + "default.handlebars->33->1407" ] }, { @@ -23655,7 +23661,7 @@ "zh-cht": "韓文(韓國)", "ja": "韓国語(韓国)", "xloc": [ - "default.handlebars->33->1406" + "default.handlebars->33->1408" ] }, { @@ -23675,8 +23681,8 @@ "zh-cht": "如果", "ja": "LF", "xloc": [ - "default.handlebars->33->1084", - "default.handlebars->33->1101", + "default.handlebars->33->1086", + "default.handlebars->33->1103", "sharing.handlebars->11->26", "sharing.handlebars->11->40" ] @@ -23698,7 +23704,7 @@ "zh-cht": "語言", "ja": "言語", "xloc": [ - "default.handlebars->33->1501" + "default.handlebars->33->1503" ] }, { @@ -23747,7 +23753,7 @@ "zh-cht": "大焦點", "ja": "大焦点", "xloc": [ - "default.handlebars->33->1028" + "default.handlebars->33->1030" ] }, { @@ -23960,7 +23966,7 @@ "zh-cht": "最後訪問", "ja": "最終アクセス", "xloc": [ - "default.handlebars->33->2027" + "default.handlebars->33->2030" ] }, { @@ -23980,7 +23986,7 @@ "zh-cht": "上次登入", "ja": "前回のログイン", "xloc": [ - "default.handlebars->33->2235" + "default.handlebars->33->2238" ] }, { @@ -24003,9 +24009,9 @@ "default-mobile.handlebars->11->481", "default-mobile.handlebars->11->482", "default-mobile.handlebars->11->483", - "default.handlebars->33->1174", - "default.handlebars->33->1175", "default.handlebars->33->1176", + "default.handlebars->33->1177", + "default.handlebars->33->1178", "default.handlebars->33->87", "default.handlebars->33->89", "default.handlebars->33->91" @@ -24030,8 +24036,8 @@ "xloc": [ "default-mobile.handlebars->11->478", "default-mobile.handlebars->11->480", - "default.handlebars->33->1171", "default.handlebars->33->1173", + "default.handlebars->33->1175", "default.handlebars->33->86" ] }, @@ -24052,7 +24058,7 @@ "zh-cht": "上次更改:{0}", "ja": "最終変更:{0}", "xloc": [ - "default.handlebars->33->2239" + "default.handlebars->33->2242" ] }, { @@ -24112,7 +24118,7 @@ "zh-cht": "上次登入:{0}", "ja": "最終ログイン:{0}", "xloc": [ - "default.handlebars->33->2037" + "default.handlebars->33->2040" ] }, { @@ -24132,7 +24138,7 @@ "zh-cht": "最後一次發現:", "ja": "最後に見たのは:", "xloc": [ - "default.handlebars->33->790", + "default.handlebars->33->792", "default.handlebars->33->83" ] }, @@ -24222,7 +24228,7 @@ "zh-cht": "拉丁文", "ja": "ラテン", "xloc": [ - "default.handlebars->33->1407" + "default.handlebars->33->1409" ] }, { @@ -24242,7 +24248,7 @@ "zh-cht": "拉脫維亞文", "ja": "ラトビア", "xloc": [ - "default.handlebars->33->1408" + "default.handlebars->33->1410" ] }, { @@ -24262,7 +24268,7 @@ "zh-cht": "啟動MeshCentral路由器", "ja": "MeshCentralルーターを起動", "xloc": [ - "default.handlebars->33->973" + "default.handlebars->33->975" ] }, { @@ -24299,7 +24305,7 @@ "zh-cht": "啟動基於Web的RDP連接到此裝置", "ja": "このデバイスに対してWebベースのRDPセッションを起動します", "xloc": [ - "default.handlebars->33->774" + "default.handlebars->33->776" ] }, { @@ -24313,7 +24319,7 @@ "ru": "Запустить веб-сеанс SSH на это устройство", "zh-chs": "启动与此设备的基于 Web 的 SSH 会话", "xloc": [ - "default.handlebars->33->776" + "default.handlebars->33->778" ] }, { @@ -24327,7 +24333,7 @@ "ru": "Запустить веб-сеанс VNC на этом устройстве", "zh-chs": "启动与此设备的基于 Web 的 VNC 会话", "xloc": [ - "default.handlebars->33->772" + "default.handlebars->33->774" ] }, { @@ -24347,7 +24353,7 @@ "zh-cht": "如沒有請留空。", "ja": "なしの場合は空白のままにします。", "xloc": [ - "default.handlebars->33->2283" + "default.handlebars->33->2286" ] }, { @@ -24362,7 +24368,7 @@ "zh-chs": "剩下", "xloc": [ "default-mobile.handlebars->11->380", - "default.handlebars->33->1040" + "default.handlebars->33->1042" ] }, { @@ -24407,7 +24413,7 @@ "zh-cht": "離開桌面多路復用會話", "ja": "デスクトップマルチプレックスセッションを終了しました", "xloc": [ - "default.handlebars->33->1889" + "default.handlebars->33->1891" ] }, { @@ -24427,7 +24433,7 @@ "zh-cht": "減", "ja": "もっと少なく", "xloc": [ - "default.handlebars->33->2517" + "default.handlebars->33->2520" ] }, { @@ -24462,8 +24468,8 @@ "zh-cht": "限制事件", "ja": "イベントを制限する", "xloc": [ - "default.handlebars->33->827", - "default.handlebars->33->849" + "default.handlebars->33->829", + "default.handlebars->33->851" ] }, { @@ -24505,9 +24511,9 @@ "ja": "制限された入力", "xloc": [ "default-mobile.handlebars->11->620", - "default.handlebars->33->1780", - "default.handlebars->33->819", - "default.handlebars->33->841" + "default.handlebars->33->1782", + "default.handlebars->33->821", + "default.handlebars->33->843" ] }, { @@ -24528,7 +24534,7 @@ "ja": "限定入力のみ", "xloc": [ "default-mobile.handlebars->11->593", - "default.handlebars->33->1735" + "default.handlebars->33->1737" ] }, { @@ -24627,7 +24633,7 @@ "agentinvite.handlebars->container->column_l->5->1->tlinuxtab", "agentinvite.handlebars->container->column_l->5->linuxtab->1", "default-mobile.handlebars->11->262", - "default.handlebars->33->661" + "default.handlebars->33->663" ] }, { @@ -24805,7 +24811,7 @@ "zh-cht": "Linux ARM,Raspberry Pi(32位)", "ja": "Linux ARM、Raspberry Pi(32ビット)", "xloc": [ - "default.handlebars->33->981" + "default.handlebars->33->983" ] }, { @@ -24825,7 +24831,7 @@ "zh-cht": "Linux ARM, Raspberry Pi (64位)", "ja": "Linux ARM, Raspberry Pi (64ビット)", "xloc": [ - "default.handlebars->33->982" + "default.handlebars->33->984" ] }, { @@ -24887,7 +24893,7 @@ "zh-cht": "Linux路徑", "ja": "Linuxパス", "xloc": [ - "default.handlebars->33->562" + "default.handlebars->33->564" ] }, { @@ -24969,7 +24975,7 @@ "zh-cht": "Linux x86(32位)", "ja": "Linux x86(32ビット)", "xloc": [ - "default.handlebars->33->978" + "default.handlebars->33->980" ] }, { @@ -24989,7 +24995,7 @@ "zh-cht": "Linux x86(64位)", "ja": "Linux x86(64ビット)", "xloc": [ - "default.handlebars->33->977" + "default.handlebars->33->979" ] }, { @@ -25009,8 +25015,8 @@ "zh-cht": "Linux / BSD / macOS命令外殼", "ja": "Linux / BSD / macOSコマンドシェル", "xloc": [ - "default.handlebars->33->542", - "default.handlebars->33->926" + "default.handlebars->33->544", + "default.handlebars->33->928" ] }, { @@ -25077,7 +25083,7 @@ "zh-cht": "立陶宛文", "ja": "リトアニア語", "xloc": [ - "default.handlebars->33->1409" + "default.handlebars->33->1411" ] }, { @@ -25119,13 +25125,13 @@ "xloc": [ "default-mobile.handlebars->11->81", "default-mobile.handlebars->11->96", - "default.handlebars->33->1268", - "default.handlebars->33->1280", - "default.handlebars->33->1595", - "default.handlebars->33->1599", - "default.handlebars->33->2294", - "default.handlebars->33->2341", - "default.handlebars->33->968" + "default.handlebars->33->1270", + "default.handlebars->33->1282", + "default.handlebars->33->1597", + "default.handlebars->33->1601", + "default.handlebars->33->2297", + "default.handlebars->33->2344", + "default.handlebars->33->970" ] }, { @@ -25199,8 +25205,8 @@ "ru": "Локальные устройства, без агентов", "zh-chs": "本地设备,无代理", "xloc": [ - "default.handlebars->33->1556", - "default.handlebars->33->1606" + "default.handlebars->33->1558", + "default.handlebars->33->1608" ] }, { @@ -25240,7 +25246,7 @@ "zh-cht": "本地用戶接受的遠程終端請求", "ja": "ローカルユーザーがリモート端末要求を受け入れました", "xloc": [ - "default.handlebars->33->1911" + "default.handlebars->33->1913" ] }, { @@ -25260,7 +25266,7 @@ "zh-cht": "本地用戶拒絕了遠程終端請求", "ja": "ローカルユーザーがリモート端末リクエストを拒否しました", "xloc": [ - "default.handlebars->33->1912" + "default.handlebars->33->1914" ] }, { @@ -25280,7 +25286,7 @@ "zh-cht": "本地化設置", "ja": "ローカリゼーション設定", "xloc": [ - "default.handlebars->33->1504", + "default.handlebars->33->1506", "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->7" ] }, @@ -25301,7 +25307,7 @@ "zh-cht": "位置", "ja": "ロケーション", "xloc": [ - "default.handlebars->33->760" + "default.handlebars->33->762" ] }, { @@ -25341,7 +25347,7 @@ "zh-cht": "鎖定賬戶", "ja": "アカウントをロック", "xloc": [ - "default.handlebars->33->2124" + "default.handlebars->33->2127" ] }, { @@ -25361,7 +25367,7 @@ "zh-cht": "鎖定帳戶設置", "ja": "アカウント設定をロック", "xloc": [ - "default.handlebars->33->2127" + "default.handlebars->33->2130" ] }, { @@ -25375,7 +25381,7 @@ "ru": "Заблокировать рабочий стол", "zh-chs": "锁定桌面", "xloc": [ - "default.handlebars->33->866" + "default.handlebars->33->868" ] }, { @@ -25395,7 +25401,7 @@ "zh-cht": "鎖定賬戶", "ja": "アカウントをロック", "xloc": [ - "default.handlebars->33->2057" + "default.handlebars->33->2060" ] }, { @@ -25409,7 +25415,7 @@ "ru": "Заблокировать мышь и клавиатуру удаленного пользователя?", "zh-chs": "锁定远程用户的鼠标和键盘?", "xloc": [ - "default.handlebars->33->863" + "default.handlebars->33->865" ] }, { @@ -25437,7 +25443,7 @@ "ru": "Заблокировать рабочий стол пользователя?", "zh-chs": "锁定用户桌面?", "xloc": [ - "default.handlebars->33->867" + "default.handlebars->33->869" ] }, { @@ -25457,7 +25463,7 @@ "zh-cht": "已鎖定", "ja": "ロック済み", "xloc": [ - "default.handlebars->33->2038" + "default.handlebars->33->2041" ] }, { @@ -25478,7 +25484,7 @@ "ja": "ロックされたアカウント", "xloc": [ "default-mobile.handlebars->11->77", - "default.handlebars->33->2211", + "default.handlebars->33->2214", "default.handlebars->33->237" ] }, @@ -25499,7 +25505,7 @@ "zh-cht": "將遠程用戶鎖定在桌面之外", "ja": "デスクトップからリモートユーザーをロックする", "xloc": [ - "default.handlebars->33->1937" + "default.handlebars->33->1939" ] }, { @@ -25519,7 +25525,7 @@ "zh-cht": "記錄事件", "ja": "ログイベント", "xloc": [ - "default.handlebars->33->745" + "default.handlebars->33->747" ] }, { @@ -25762,7 +25768,7 @@ "zh-cht": "盧森堡文", "ja": "ルクセンブルク語", "xloc": [ - "default.handlebars->33->1410" + "default.handlebars->33->1412" ] }, { @@ -25784,10 +25790,10 @@ "xloc": [ "default-mobile.handlebars->11->493", "default-mobile.handlebars->11->495", - "default.handlebars->33->1186", "default.handlebars->33->1188", - "default.handlebars->33->1196", - "default.handlebars->33->1198" + "default.handlebars->33->1190", + "default.handlebars->33->1198", + "default.handlebars->33->1200" ] }, { @@ -25829,8 +25835,8 @@ "ja": "MAC:{0}", "xloc": [ "default-mobile.handlebars->11->496", - "default.handlebars->33->1189", - "default.handlebars->33->1199" + "default.handlebars->33->1191", + "default.handlebars->33->1201" ] }, { @@ -25851,8 +25857,8 @@ "ja": "MAC:{0}、ゲートウェイ:{1}", "xloc": [ "default-mobile.handlebars->11->494", - "default.handlebars->33->1187", - "default.handlebars->33->1197" + "default.handlebars->33->1189", + "default.handlebars->33->1199" ] }, { @@ -25951,11 +25957,11 @@ "default-mobile.handlebars->11->549", "default-mobile.handlebars->11->551", "default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect2", - "default.handlebars->33->1253", "default.handlebars->33->1255", + "default.handlebars->33->1257", "default.handlebars->33->300", - "default.handlebars->33->513", - "default.handlebars->33->732", + "default.handlebars->33->515", + "default.handlebars->33->734", "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect2" ] }, @@ -25996,7 +26002,7 @@ "zh-cht": "MQTT登入", "ja": "MQTTログイン", "xloc": [ - "default.handlebars->33->779" + "default.handlebars->33->781" ] }, { @@ -26017,7 +26023,7 @@ "ja": "MQTTチャネルが接続されました", "xloc": [ "default-mobile.handlebars->11->306", - "default.handlebars->33->789" + "default.handlebars->33->791" ] }, { @@ -26038,7 +26044,7 @@ "ja": "MQTT接続済み", "xloc": [ "default.handlebars->33->184", - "default.handlebars->33->788" + "default.handlebars->33->790" ] }, { @@ -26059,8 +26065,8 @@ "ja": "デバイスへのMQTT接続がアクティブです。", "xloc": [ "default.handlebars->33->299", - "default.handlebars->33->512", - "default.handlebars->33->731" + "default.handlebars->33->514", + "default.handlebars->33->733" ] }, { @@ -26148,7 +26154,7 @@ "ru": "Установщик MacOS", "zh-chs": "MacOS 安装程序", "xloc": [ - "default.handlebars->33->971" + "default.handlebars->33->973" ] }, { @@ -26168,7 +26174,7 @@ "zh-cht": "主伺服器訊息", "ja": "メインサーバーメッセージ", "xloc": [ - "default.handlebars->33->2483" + "default.handlebars->33->2486" ] }, { @@ -26188,7 +26194,7 @@ "zh-cht": "馬來文", "ja": "マレー語", "xloc": [ - "default.handlebars->33->1412" + "default.handlebars->33->1414" ] }, { @@ -26208,7 +26214,7 @@ "zh-cht": "馬拉雅拉姆文", "ja": "マラヤーラム語", "xloc": [ - "default.handlebars->33->1413" + "default.handlebars->33->1415" ] }, { @@ -26228,7 +26234,7 @@ "zh-cht": "馬耳他文", "ja": "マルタ語", "xloc": [ - "default.handlebars->33->1414" + "default.handlebars->33->1416" ] }, { @@ -26243,7 +26249,7 @@ "zh-chs": "管理帐户图片", "xloc": [ "default-mobile.handlebars->11->82", - "default.handlebars->33->1269" + "default.handlebars->33->1271" ] }, { @@ -26286,8 +26292,8 @@ "xloc": [ "default-mobile.handlebars->11->590", "default-mobile.handlebars->11->610", - "default.handlebars->33->1732", - "default.handlebars->33->1769" + "default.handlebars->33->1734", + "default.handlebars->33->1771" ] }, { @@ -26309,8 +26315,8 @@ "xloc": [ "default-mobile.handlebars->11->589", "default-mobile.handlebars->11->609", - "default.handlebars->33->1731", - "default.handlebars->33->1768" + "default.handlebars->33->1733", + "default.handlebars->33->1770" ] }, { @@ -26330,7 +26336,7 @@ "zh-cht": "管理裝置", "ja": "デバイスを管理する", "xloc": [ - "default.handlebars->33->836" + "default.handlebars->33->838" ] }, { @@ -26350,7 +26356,7 @@ "zh-cht": "管理錄音", "ja": "録音を管理する", "xloc": [ - "default.handlebars->33->2122" + "default.handlebars->33->2125" ] }, { @@ -26390,7 +26396,7 @@ "zh-cht": "管理用戶群", "ja": "ユーザーグループを管理する", "xloc": [ - "default.handlebars->33->2121" + "default.handlebars->33->2124" ] }, { @@ -26410,8 +26416,8 @@ "zh-cht": "管理用戶", "ja": "ユーザーを管理する", "xloc": [ - "default.handlebars->33->2120", - "default.handlebars->33->835" + "default.handlebars->33->2123", + "default.handlebars->33->837" ] }, { @@ -26550,7 +26556,7 @@ "zh-cht": "使用軟體代理進行管理", "ja": "ソフトウェアエージェントを使用して管理する", "xloc": [ - "default.handlebars->33->1558" + "default.handlebars->33->1560" ] }, { @@ -26571,7 +26577,7 @@ "ja": "ソフトウェアエージェントを使用して管理", "xloc": [ "default-mobile.handlebars->11->565", - "default.handlebars->33->1605" + "default.handlebars->33->1607" ] }, { @@ -26591,7 +26597,7 @@ "zh-cht": "經理", "ja": "マネージャー", "xloc": [ - "default.handlebars->33->2043" + "default.handlebars->33->2046" ] }, { @@ -26645,7 +26651,7 @@ "zh-cht": "毛利文", "ja": "マオリ", "xloc": [ - "default.handlebars->33->1415" + "default.handlebars->33->1417" ] }, { @@ -26704,7 +26710,7 @@ "zh-cht": "馬拉地文", "ja": "マラーティー語", "xloc": [ - "default.handlebars->33->1416" + "default.handlebars->33->1418" ] }, { @@ -26724,7 +26730,7 @@ "zh-cht": "達到連接數量上限", "ja": "最大セッション数に達しました", "xloc": [ - "default.handlebars->33->2429" + "default.handlebars->33->2432" ] }, { @@ -26789,8 +26795,8 @@ "zh-cht": "Megabyte", "ja": "メガバイト", "xloc": [ - "default.handlebars->33->2470", - "default.handlebars->33->2475" + "default.handlebars->33->2473", + "default.handlebars->33->2478" ] }, { @@ -26811,8 +26817,8 @@ "ja": "記憶", "xloc": [ "default-mobile.handlebars->11->538", - "default.handlebars->33->1241", - "default.handlebars->33->2449", + "default.handlebars->33->1243", + "default.handlebars->33->2452", "default.handlebars->container->column_l->p40->3->1->p40type->3" ] }, @@ -26837,16 +26843,16 @@ "default-mobile.handlebars->11->303", "default-mobile.handlebars->11->477", "default-mobile.handlebars->11->485", - "default.handlebars->33->1170", - "default.handlebars->33->1178", - "default.handlebars->33->443", - "default.handlebars->33->447", - "default.handlebars->33->457", - "default.handlebars->33->466", - "default.handlebars->33->469", - "default.handlebars->33->475", - "default.handlebars->33->665", - "default.handlebars->33->724" + "default.handlebars->33->1172", + "default.handlebars->33->1180", + "default.handlebars->33->445", + "default.handlebars->33->449", + "default.handlebars->33->459", + "default.handlebars->33->468", + "default.handlebars->33->471", + "default.handlebars->33->477", + "default.handlebars->33->667", + "default.handlebars->33->726" ] }, { @@ -26867,7 +26873,7 @@ "ja": "メッシュエージェントコンソール", "xloc": [ "default-mobile.handlebars->11->597", - "default.handlebars->33->1741" + "default.handlebars->33->1743" ] }, { @@ -26927,7 +26933,7 @@ "zh-cht": "Mesh Relay", "ja": "メッシュリレー", "xloc": [ - "default.handlebars->33->730" + "default.handlebars->33->732" ] }, { @@ -26948,8 +26954,8 @@ "ja": "メッシュエージェントが接続され、使用できる状態になりました。", "xloc": [ "default.handlebars->33->291", - "default.handlebars->33->504", - "default.handlebars->33->723" + "default.handlebars->33->506", + "default.handlebars->33->725" ] }, { @@ -26970,8 +26976,8 @@ "ja": "メッシュエージェントは、別のエージェントをリレーとして使用して到達可能です。", "xloc": [ "default.handlebars->33->297", - "default.handlebars->33->510", - "default.handlebars->33->729" + "default.handlebars->33->512", + "default.handlebars->33->731" ] }, { @@ -26991,8 +26997,8 @@ "zh-cht": "MeshAction(.txt)", "ja": "MeshAction (.txt)", "xloc": [ - "default.handlebars->33->988", - "default.handlebars->33->990" + "default.handlebars->33->990", + "default.handlebars->33->992" ] }, { @@ -27012,7 +27018,7 @@ "zh-cht": "MeshAgent流量", "ja": "MeshAgentトラフィック", "xloc": [ - "default.handlebars->33->2485" + "default.handlebars->33->2488" ] }, { @@ -27032,7 +27038,7 @@ "zh-cht": "MeshAgent更新", "ja": "MeshAgentの更新", "xloc": [ - "default.handlebars->33->2486" + "default.handlebars->33->2489" ] }, { @@ -27083,7 +27089,7 @@ "ru": "MeshCentral Ассистент для Windows", "zh-chs": "适用于 Windows 的 MeshCentral 助手", "xloc": [ - "default.handlebars->33->462" + "default.handlebars->33->464" ] }, { @@ -27093,9 +27099,12 @@ "fr": "MeshCentral Assistant est un outil de la barre d'état système Windows que les utilisateurs peuvent utiliser pour demander de l'aide. Utilisez le lien ci-dessous pour télécharger une version qui se connectera au groupe d'appareils \\\"{0}\\\".", "hi": "मेशसेंट्रल असिस्टेंट एक विंडोज सिस्टम ट्रे टूल है जिसका उपयोग उपयोगकर्ता मदद मांगने के लिए कर सकते हैं। डिवाइस समूह \\\"{0}\\\" से कनेक्ट होने वाले संस्करण को डाउनलोड करने के लिए नीचे दिए गए लिंक का उपयोग करें।", "ko": "MeshCentral Assistant は、ユーザーがヘルプを求めるために使用できる Windows システム トレイ ツールです。以下のリンクを使用して、デバイス グループ \\\"{0}\\\" に接続するバージョンをダウンロードします。", - "zh-chs": "MeshCentral Assistant 是一个 Windows 系统托盘工具,用户可以使用它来寻求帮助。使用下面的链接下载将连接到设备组 \\\"{0}\\\" 的版本。", + "zh-chs": "MeshCentral Assistant 是一个 Windows 系统托盘工具,用户可以使用它来寻求帮助。使用下面的链接下载将连接到设备组 \\\"{0}\\\" 的版本。" + }, + { + "en": "MeshCentral Assistant is a Windows tool that users can use to ask for help. Use the link below to download a version that will connect to device group \\\"{0}\\\".", "xloc": [ - "default.handlebars->33->461" + "default.handlebars->33->463" ] }, { @@ -27135,7 +27144,7 @@ "zh-cht": "MeshCentral錯誤", "ja": "MeshCentralエラー", "xloc": [ - "default.handlebars->33->1598" + "default.handlebars->33->1600" ] }, { @@ -27155,7 +27164,7 @@ "zh-cht": "MeshCentral Router", "ja": "MeshCentralルーター", "xloc": [ - "default.handlebars->33->974" + "default.handlebars->33->976" ] }, { @@ -27216,7 +27225,7 @@ "zh-cht": "MeshCentral Router是Windows工具,用於TCP介面映射。例如,你可以通過該伺服器將RDP放入遠程裝置。", "ja": "MeshCentralルーターは、TCPポートマッピング用のWindowsツールです。たとえば、このサーバーを介してRDPをリモートデバイスに接続できます。", "xloc": [ - "default.handlebars->33->969" + "default.handlebars->33->971" ] }, { @@ -27257,7 +27266,7 @@ "zh-cht": "MeshCentral伺服器同級化", "ja": "MeshCentralサーバーピアリング", "xloc": [ - "default.handlebars->33->2484" + "default.handlebars->33->2487" ] }, { @@ -27299,7 +27308,7 @@ "xloc": [ "default.handlebars->33->133", "default.handlebars->33->135", - "default.handlebars->33->1594" + "default.handlebars->33->1596" ] }, { @@ -27320,8 +27329,8 @@ "ja": "MeshCmd", "xloc": [ "default.handlebars->33->278", - "default.handlebars->33->762", - "default.handlebars->33->986" + "default.handlebars->33->764", + "default.handlebars->33->988" ] }, { @@ -27341,7 +27350,7 @@ "zh-cht": "MeshCmd(Linux ARM,32位)", "ja": "MeshCmd(Linux ARM、32ビット)", "xloc": [ - "default.handlebars->33->998" + "default.handlebars->33->1000" ] }, { @@ -27361,7 +27370,7 @@ "zh-cht": "MeshCmd(Linux ARM,64位)", "ja": "MeshCmd(Linux ARM、64ビット)", "xloc": [ - "default.handlebars->33->999" + "default.handlebars->33->1001" ] }, { @@ -27381,7 +27390,7 @@ "zh-cht": "MeshCmd(Linux x86,32bit)", "ja": "MeshCmd(Linux x86、32ビット)", "xloc": [ - "default.handlebars->33->994" + "default.handlebars->33->996" ] }, { @@ -27401,7 +27410,7 @@ "zh-cht": "MeshCmd(Linux x86,64位)", "ja": "MeshCmd(Linux x86、64ビット)", "xloc": [ - "default.handlebars->33->995" + "default.handlebars->33->997" ] }, { @@ -27421,7 +27430,7 @@ "zh-cht": "MeshCmd(Win32可執行檔案)", "ja": "MeshCmd(Win32実行可能ファイル)", "xloc": [ - "default.handlebars->33->992" + "default.handlebars->33->994" ] }, { @@ -27441,7 +27450,7 @@ "zh-cht": "MeshCmd(Win64可執行檔案)", "ja": "MeshCmd(Win64実行可能ファイル)", "xloc": [ - "default.handlebars->33->993" + "default.handlebars->33->995" ] }, { @@ -27478,7 +27487,7 @@ "zh-cht": "MeshCmd(macOS,ARM-64位)", "ja": "MeshCmd(macOS、ARM-64ビット)", "xloc": [ - "default.handlebars->33->997" + "default.handlebars->33->999" ] }, { @@ -27498,7 +27507,7 @@ "zh-cht": "MeshCmd(macOS,x86-ARM-64位)", "ja": "MeshCmd(macOS、x86-64ビット)", "xloc": [ - "default.handlebars->33->996" + "default.handlebars->33->998" ] }, { @@ -27518,7 +27527,7 @@ "zh-cht": "MeshCmd是一個可以執行許多不同操作的命令行工具。可以選擇下載和編輯操作檔案以提供伺服器訊息和憑據。", "ja": "MeshCmdは、さまざまな操作を実行するコマンドラインツールです。オプションで、アクションファイルをダウンロードおよび編集して、サーバー情報と資格情報を提供できます。", "xloc": [ - "default.handlebars->33->983" + "default.handlebars->33->985" ] }, { @@ -27593,8 +27602,8 @@ "ja": "メッセージ", "xloc": [ "default.handlebars->33->409", - "default.handlebars->33->747", - "default.handlebars->33->949" + "default.handlebars->33->749", + "default.handlebars->33->951" ] }, { @@ -27614,7 +27623,7 @@ "zh-cht": "留言框", "ja": "メッセージボックス", "xloc": [ - "default.handlebars->33->557" + "default.handlebars->33->559" ] }, { @@ -27634,7 +27643,7 @@ "zh-cht": "電郵調度器", "ja": "メッセージディスパッチャー", "xloc": [ - "default.handlebars->33->2482" + "default.handlebars->33->2485" ] }, { @@ -27687,7 +27696,7 @@ "nl": "Messenger", "zh-chs": "信使", "xloc": [ - "default.handlebars->33->2354" + "default.handlebars->33->2357" ] }, { @@ -27764,7 +27773,7 @@ "zh-chs": "移动设备", "xloc": [ "default-mobile.handlebars->11->491", - "default.handlebars->33->1184" + "default.handlebars->33->1186" ] }, { @@ -27800,8 +27809,8 @@ "xloc": [ "default-mobile.handlebars->11->486", "default-mobile.handlebars->11->539", - "default.handlebars->33->1179", - "default.handlebars->33->1242" + "default.handlebars->33->1181", + "default.handlebars->33->1244" ] }, { @@ -27821,7 +27830,7 @@ "zh-cht": "修改節點位置", "ja": "ノードの場所を変更する", "xloc": [ - "default.handlebars->33->617" + "default.handlebars->33->619" ] }, { @@ -27841,7 +27850,7 @@ "zh-cht": "摩爾達維亞文", "ja": "モルダビア", "xloc": [ - "default.handlebars->33->1417" + "default.handlebars->33->1419" ] }, { @@ -27861,7 +27870,7 @@ "zh-cht": "更多", "ja": "もっと", "xloc": [ - "default.handlebars->33->2516" + "default.handlebars->33->2519" ] }, { @@ -27882,7 +27891,7 @@ "ja": "マザーボード", "xloc": [ "default-mobile.handlebars->11->532", - "default.handlebars->33->1235" + "default.handlebars->33->1237" ] }, { @@ -27902,7 +27911,7 @@ "zh-cht": "將此裝置移至其他裝置群", "ja": "このデバイスを別のデバイスグループに移動する", "xloc": [ - "default.handlebars->33->753" + "default.handlebars->33->755" ] }, { @@ -27922,7 +27931,7 @@ "zh-cht": "移至裝置群", "ja": "デバイスグループに移動", "xloc": [ - "default.handlebars->33->518" + "default.handlebars->33->520" ] }, { @@ -27942,7 +27951,7 @@ "zh-cht": "移動:“{0}”到“{1}”", "ja": "移動:「{0}」を「{1}」に移動", "xloc": [ - "default.handlebars->33->1936" + "default.handlebars->33->1938" ] }, { @@ -27962,7 +27971,7 @@ "zh-cht": "將設備{0}移動到組{1}", "ja": "デバイス{0}をグループ{1}に移動しました", "xloc": [ - "default.handlebars->33->1969" + "default.handlebars->33->1971" ] }, { @@ -27996,8 +28005,8 @@ "ru": "Множественные проблемы", "zh-chs": "多个问题", "xloc": [ - "default.handlebars->33->1824", - "default.handlebars->33->1838" + "default.handlebars->33->1826", + "default.handlebars->33->1840" ] }, { @@ -28026,7 +28035,7 @@ "zh-cht": "多工器", "ja": "マルチプレクサ", "xloc": [ - "default.handlebars->33->2372" + "default.handlebars->33->2375" ] }, { @@ -28046,8 +28055,8 @@ "zh-cht": "必須以用戶身份運行", "ja": "ユーザーとして実行する必要があります", "xloc": [ - "default.handlebars->33->545", - "default.handlebars->33->929" + "default.handlebars->33->547", + "default.handlebars->33->931" ] }, { @@ -28180,7 +28189,7 @@ "zh-cht": "我的伺服器控制台", "ja": "私のサーバーコンソール", "xloc": [ - "default.handlebars->33->1248" + "default.handlebars->33->1250" ] }, { @@ -28342,8 +28351,8 @@ "zh-cht": "我的密鍵", "ja": "私の鍵", "xloc": [ - "default.handlebars->33->1292", - "default.handlebars->33->1295" + "default.handlebars->33->1294", + "default.handlebars->33->1297" ] }, { @@ -28429,23 +28438,23 @@ "default-mobile.handlebars->11->526", "default-mobile.handlebars->11->566", "default-mobile.handlebars->11->580", - "default.handlebars->33->1061", + "default.handlebars->33->1063", "default.handlebars->33->108", - "default.handlebars->33->1166", - "default.handlebars->33->1229", - "default.handlebars->33->1555", - "default.handlebars->33->1573", - "default.handlebars->33->1578", - "default.handlebars->33->1607", - "default.handlebars->33->1696", - "default.handlebars->33->2025", - "default.handlebars->33->2130", - "default.handlebars->33->2146", - "default.handlebars->33->2153", - "default.handlebars->33->2198", - "default.handlebars->33->2217", + "default.handlebars->33->1168", + "default.handlebars->33->1231", + "default.handlebars->33->1557", + "default.handlebars->33->1575", + "default.handlebars->33->1580", + "default.handlebars->33->1609", + "default.handlebars->33->1698", + "default.handlebars->33->2028", + "default.handlebars->33->2133", + "default.handlebars->33->2149", + "default.handlebars->33->2156", + "default.handlebars->33->2201", + "default.handlebars->33->2220", "default.handlebars->33->242", - "default.handlebars->33->646", + "default.handlebars->33->648", "default.handlebars->33->94", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader->3", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsServiceTab->deskToolsServiceHeader->3", @@ -28489,7 +28498,7 @@ "zh-cht": "名稱1,名稱2,名稱3", "ja": "Name1、Name2、Name3", "xloc": [ - "default.handlebars->33->2112" + "default.handlebars->33->2115" ] }, { @@ -28509,7 +28518,7 @@ "zh-cht": "納瓦霍文", "ja": "ナバホ", "xloc": [ - "default.handlebars->33->1418" + "default.handlebars->33->1420" ] }, { @@ -28529,7 +28538,7 @@ "zh-cht": "恩東加", "ja": "ンドンガ", "xloc": [ - "default.handlebars->33->1419" + "default.handlebars->33->1421" ] }, { @@ -28549,7 +28558,7 @@ "zh-cht": "尼泊爾文", "ja": "ネパール語", "xloc": [ - "default.handlebars->33->1420" + "default.handlebars->33->1422" ] }, { @@ -28569,7 +28578,7 @@ "zh-cht": "網絡介面", "ja": "ネットワークインターフェース", "xloc": [ - "default.handlebars->33->967" + "default.handlebars->33->969" ] }, { @@ -28607,8 +28616,8 @@ "ja": "ネットワーキング", "xloc": [ "default-mobile.handlebars->11->505", - "default.handlebars->33->1194", - "default.handlebars->33->1208" + "default.handlebars->33->1196", + "default.handlebars->33->1210" ] }, { @@ -28629,7 +28638,7 @@ "ja": "新しい", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3createMeshLink1->1", - "default.handlebars->33->1572", + "default.handlebars->33->1574", "default.handlebars->container->column_l->p2->p2info->p2createMeshLink1->1" ] }, @@ -28650,7 +28659,7 @@ "zh-cht": "生成新的2FA備份代碼", "ja": "生成された新しい2FAバックアップコード", "xloc": [ - "default.handlebars->33->1976" + "default.handlebars->33->1978" ] }, { @@ -28665,7 +28674,7 @@ "zh-chs": "新账户", "xloc": [ "default-mobile.handlebars->11->638", - "default.handlebars->33->2381" + "default.handlebars->33->2384" ] }, { @@ -28726,9 +28735,9 @@ "ja": "新しいデバイスグループ", "xloc": [ "default-mobile.handlebars->11->115", - "default.handlebars->33->1548", - "default.handlebars->33->1561", - "default.handlebars->33->959" + "default.handlebars->33->1550", + "default.handlebars->33->1563", + "default.handlebars->33->961" ] }, { @@ -28750,8 +28759,8 @@ "xloc": [ "default-mobile.handlebars->11->144", "default-mobile.handlebars->11->427", - "default.handlebars->33->1129", - "default.handlebars->33->1868", + "default.handlebars->33->1131", + "default.handlebars->33->1870", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", "sharing.handlebars->11->59", @@ -28836,8 +28845,8 @@ "zh-cht": "新密碼*", "ja": "新しいパスワード*", "xloc": [ - "default.handlebars->33->1674", - "default.handlebars->33->1675" + "default.handlebars->33->1676", + "default.handlebars->33->1677" ] }, { @@ -28859,8 +28868,8 @@ "xloc": [ "default-mobile.handlebars->11->110", "default-mobile.handlebars->11->111", - "default.handlebars->33->1543", - "default.handlebars->33->1544" + "default.handlebars->33->1545", + "default.handlebars->33->1546" ] }, { @@ -28904,8 +28913,8 @@ "zh-cht": "沒有AMT", "ja": "AMTなし", "xloc": [ - "default.handlebars->33->818", - "default.handlebars->33->840" + "default.handlebars->33->820", + "default.handlebars->33->842" ] }, { @@ -28965,8 +28974,8 @@ "xloc": [ "default-mobile.handlebars->11->278", "default-mobile.handlebars->11->279", - "default.handlebars->33->679", - "default.handlebars->33->680" + "default.handlebars->33->681", + "default.handlebars->33->682" ] }, { @@ -28986,9 +28995,9 @@ "zh-cht": "沒有桌面", "ja": "デスクトップなし", "xloc": [ - "default.handlebars->33->1776", - "default.handlebars->33->820", - "default.handlebars->33->842" + "default.handlebars->33->1778", + "default.handlebars->33->822", + "default.handlebars->33->844" ] }, { @@ -29008,7 +29017,7 @@ "zh-cht": "不能訪問桌面", "ja": "デスクトップアクセスなし", "xloc": [ - "default.handlebars->33->1737" + "default.handlebars->33->1739" ] }, { @@ -29037,9 +29046,9 @@ "zh-cht": "找不到事件", "ja": "イベントが見つかりません", "xloc": [ - "default.handlebars->33->1164", - "default.handlebars->33->2001", - "default.handlebars->33->2340" + "default.handlebars->33->1166", + "default.handlebars->33->2004", + "default.handlebars->33->2343" ] }, { @@ -29060,7 +29069,7 @@ "ja": "ファイルアクセスなし", "xloc": [ "default-mobile.handlebars->11->595", - "default.handlebars->33->1739" + "default.handlebars->33->1741" ] }, { @@ -29081,9 +29090,9 @@ "ja": "ファイルなし", "xloc": [ "default-mobile.handlebars->11->618", - "default.handlebars->33->1778", - "default.handlebars->33->817", - "default.handlebars->33->839" + "default.handlebars->33->1780", + "default.handlebars->33->819", + "default.handlebars->33->841" ] }, { @@ -29103,8 +29112,8 @@ "zh-cht": "無輸入", "ja": "入力なし", "xloc": [ - "default.handlebars->33->815", - "default.handlebars->33->837" + "default.handlebars->33->817", + "default.handlebars->33->839" ] }, { @@ -29126,8 +29135,8 @@ "xloc": [ "default-mobile.handlebars->11->596", "default-mobile.handlebars->11->619", - "default.handlebars->33->1740", - "default.handlebars->33->1779" + "default.handlebars->33->1742", + "default.handlebars->33->1781" ] }, { @@ -29218,7 +29227,7 @@ "zh-cht": "沒有成員", "ja": "メンバーなし", "xloc": [ - "default.handlebars->33->2180" + "default.handlebars->33->2183" ] }, { @@ -29238,7 +29247,7 @@ "zh-cht": "沒有新的裝置群", "ja": "新しいデバイスグループはありません", "xloc": [ - "default.handlebars->33->2125" + "default.handlebars->33->2128" ] }, { @@ -29258,8 +29267,8 @@ "zh-cht": "沒有政策", "ja": "ポリシーなし", "xloc": [ - "default.handlebars->33->1638", - "default.handlebars->33->1665" + "default.handlebars->33->1640", + "default.handlebars->33->1667" ] }, { @@ -29291,10 +29300,10 @@ "default-mobile.handlebars->11->130", "default-mobile.handlebars->11->575", "default-mobile.handlebars->11->626", - "default.handlebars->33->1570", - "default.handlebars->33->1786", - "default.handlebars->33->832", - "default.handlebars->33->854" + "default.handlebars->33->1572", + "default.handlebars->33->1788", + "default.handlebars->33->834", + "default.handlebars->33->856" ] }, { @@ -29325,7 +29334,7 @@ "xloc": [ "default-mobile.handlebars->11->346", "default.handlebars->33->364", - "default.handlebars->33->945" + "default.handlebars->33->947" ] }, { @@ -29346,9 +29355,9 @@ "ja": "ターミナルなし", "xloc": [ "default-mobile.handlebars->11->617", - "default.handlebars->33->1777", - "default.handlebars->33->816", - "default.handlebars->33->838" + "default.handlebars->33->1779", + "default.handlebars->33->818", + "default.handlebars->33->840" ] }, { @@ -29369,7 +29378,7 @@ "ja": "ターミナルアクセスなし", "xloc": [ "default-mobile.handlebars->11->594", - "default.handlebars->33->1738" + "default.handlebars->33->1740" ] }, { @@ -29389,7 +29398,7 @@ "zh-cht": "沒有工具(MeshCmd /路由器)", "ja": "ツールなし(MeshCmd / Router)", "xloc": [ - "default.handlebars->33->2126" + "default.handlebars->33->2129" ] }, { @@ -29410,7 +29419,7 @@ "ja": "現在、このデバイスで使用できるアクションはありません。", "xloc": [ "default-mobile.handlebars->11->329", - "default.handlebars->33->921" + "default.handlebars->33->923" ] }, { @@ -29433,8 +29442,8 @@ "ru": "Без автоматического обновления", "zh-chs": "没有自动更新", "xloc": [ - "default.handlebars->33->1822", - "default.handlebars->33->1836" + "default.handlebars->33->1824", + "default.handlebars->33->1838" ] }, { @@ -29454,8 +29463,8 @@ "zh-cht": "沒有共同的裝置群", "ja": "共通のデバイスグループはありません", "xloc": [ - "default.handlebars->33->2186", - "default.handlebars->33->2310" + "default.handlebars->33->2189", + "default.handlebars->33->2313" ] }, { @@ -29555,7 +29564,7 @@ "zh-cht": "找不到裝置。", "ja": "デバイスが見つかりません。", "xloc": [ - "default.handlebars->33->634" + "default.handlebars->33->636" ] }, { @@ -29575,8 +29584,8 @@ "zh-cht": "沒有共同的裝置", "ja": "共通のデバイスはありません", "xloc": [ - "default.handlebars->33->2192", - "default.handlebars->33->2322" + "default.handlebars->33->2195", + "default.handlebars->33->2325" ] }, { @@ -29610,7 +29619,7 @@ "zh-cht": "該裝置群中沒有裝置。", "ja": "このデバイスグループにデバイスはありません。", "xloc": [ - "default.handlebars->33->1840" + "default.handlebars->33->1842" ] }, { @@ -29692,7 +29701,7 @@ "zh-cht": "找不到文件", "ja": "ファイルが見つかりません", "xloc": [ - "default.handlebars->33->1106", + "default.handlebars->33->1108", "sharing.handlebars->11->45" ] }, @@ -29713,7 +29722,7 @@ "zh-cht": "找不到群組。", "ja": "グループが見つかりません。", "xloc": [ - "default.handlebars->33->2129" + "default.handlebars->33->2132" ] }, { @@ -29734,7 +29743,7 @@ "ja": "このデバイスに関する情報はありません。", "xloc": [ "default-mobile.handlebars->11->544", - "default.handlebars->33->1247" + "default.handlebars->33->1249" ] }, { @@ -29749,7 +29758,7 @@ "zh-chs": "未定义键盘快捷键", "xloc": [ "default-mobile.handlebars->11->394", - "default.handlebars->33->1055" + "default.handlebars->33->1057" ] }, { @@ -29783,7 +29792,7 @@ "zh-cht": "找不到位置。", "ja": "場所が見つかりません。", "xloc": [ - "default.handlebars->33->636" + "default.handlebars->33->638" ] }, { @@ -29823,7 +29832,7 @@ "zh-cht": "沒有其他相同類型的裝置群。", "ja": "同じタイプの他のデバイスグループは存在しません。", "xloc": [ - "default.handlebars->33->962" + "default.handlebars->33->964" ] }, { @@ -29838,7 +29847,7 @@ "zh-chs": "此用户没有电话号码", "xloc": [ "default-mobile.handlebars->11->669", - "default.handlebars->33->2412" + "default.handlebars->33->2415" ] }, { @@ -29878,7 +29887,7 @@ "zh-cht": "沒有錄音。", "ja": "録音なし。", "xloc": [ - "default.handlebars->33->2342" + "default.handlebars->33->2345" ] }, { @@ -29907,7 +29916,7 @@ "zh-cht": "沒有伺服器權限", "ja": "サーバーの権利なし", "xloc": [ - "default.handlebars->33->2212" + "default.handlebars->33->2215" ] }, { @@ -29927,7 +29936,7 @@ "zh-cht": "沒有用戶群成員身份", "ja": "ユーザーグループメンバーシップなし", "xloc": [ - "default.handlebars->33->2316" + "default.handlebars->33->2319" ] }, { @@ -29942,7 +29951,7 @@ "zh-chs": "无用户管理权限", "xloc": [ "default-mobile.handlebars->11->667", - "default.handlebars->33->2410" + "default.handlebars->33->2413" ] }, { @@ -29962,7 +29971,7 @@ "zh-cht": "未找到相應的用戶。", "ja": "ユーザが見つかりませんでした。", "xloc": [ - "default.handlebars->33->2033" + "default.handlebars->33->2036" ] }, { @@ -29982,7 +29991,7 @@ "zh-cht": "沒有擁有特殊裝置權限的用戶", "ja": "特別なデバイス権限を持つユーザーはいません", "xloc": [ - "default.handlebars->33->798" + "default.handlebars->33->800" ] }, { @@ -30053,33 +30062,33 @@ "default-mobile.handlebars->11->384", "default-mobile.handlebars->11->424", "default-mobile.handlebars->11->568", - "default.handlebars->33->1044", - "default.handlebars->33->1601", - "default.handlebars->33->1609", - "default.handlebars->33->1617", - "default.handlebars->33->1629", - "default.handlebars->33->1634", + "default.handlebars->33->1046", + "default.handlebars->33->1603", + "default.handlebars->33->1611", + "default.handlebars->33->1619", + "default.handlebars->33->1631", "default.handlebars->33->1636", - "default.handlebars->33->1825", - "default.handlebars->33->1850", - "default.handlebars->33->1855", + "default.handlebars->33->1638", + "default.handlebars->33->1827", + "default.handlebars->33->1852", + "default.handlebars->33->1857", "default.handlebars->33->195", - "default.handlebars->33->2009", + "default.handlebars->33->2012", "default.handlebars->33->214", - "default.handlebars->33->2150", - "default.handlebars->33->2152", - "default.handlebars->33->2169", - "default.handlebars->33->2231", - "default.handlebars->33->2240", - "default.handlebars->33->2244", - "default.handlebars->33->2256", + "default.handlebars->33->2153", + "default.handlebars->33->2155", + "default.handlebars->33->2172", + "default.handlebars->33->2234", + "default.handlebars->33->2243", + "default.handlebars->33->2247", + "default.handlebars->33->2259", "default.handlebars->33->287", "default.handlebars->33->288", - "default.handlebars->33->643", - "default.handlebars->33->654", - "default.handlebars->33->655", - "default.handlebars->33->721", - "default.handlebars->33->734", + "default.handlebars->33->645", + "default.handlebars->33->656", + "default.handlebars->33->657", + "default.handlebars->33->723", + "default.handlebars->33->736", "default.handlebars->33->78", "default.handlebars->container->column_l->p41->3->3->p41traceStatus" ] @@ -30121,7 +30130,7 @@ "zh-cht": "挪威文", "ja": "ノルウェー語", "xloc": [ - "default.handlebars->33->1421" + "default.handlebars->33->1423" ] }, { @@ -30141,7 +30150,7 @@ "zh-cht": "挪威文(Bokmal)", "ja": "ノルウェー語(ボクマル)", "xloc": [ - "default.handlebars->33->1422" + "default.handlebars->33->1424" ] }, { @@ -30161,7 +30170,7 @@ "zh-cht": "挪威文(尼諾斯克)", "ja": "ノルウェー語(ニーノシュク)", "xloc": [ - "default.handlebars->33->1423" + "default.handlebars->33->1425" ] }, { @@ -30181,7 +30190,7 @@ "zh-cht": "未激活", "ja": "アクティベートされていません", "xloc": [ - "default.handlebars->33->1211" + "default.handlebars->33->1213" ] }, { @@ -30203,7 +30212,7 @@ "xloc": [ "default-mobile.handlebars->11->268", "default-mobile.handlebars->11->509", - "default.handlebars->33->667" + "default.handlebars->33->669" ] }, { @@ -30225,7 +30234,7 @@ "xloc": [ "default-mobile.handlebars->11->267", "default-mobile.handlebars->11->508", - "default.handlebars->33->666" + "default.handlebars->33->668" ] }, { @@ -30245,8 +30254,8 @@ "zh-cht": "未連接", "ja": "接続されていません", "xloc": [ - "default.handlebars->33->1816", - "default.handlebars->33->1829" + "default.handlebars->33->1818", + "default.handlebars->33->1831" ] }, { @@ -30267,7 +30276,7 @@ "ja": "不明", "xloc": [ "default-mobile.handlebars->11->519", - "default.handlebars->33->1222" + "default.handlebars->33->1224" ] }, { @@ -30301,7 +30310,7 @@ "zh-cht": "不在伺服器上", "ja": "サーバー上にありません", "xloc": [ - "default.handlebars->33->2364" + "default.handlebars->33->2367" ] }, { @@ -30321,8 +30330,8 @@ "zh-cht": "沒有設置", "ja": "設定されていません", "xloc": [ - "default.handlebars->33->2218", - "default.handlebars->33->2219" + "default.handlebars->33->2221", + "default.handlebars->33->2222" ] }, { @@ -30342,7 +30351,7 @@ "zh-cht": "未經審核的", "ja": "検証されていない", "xloc": [ - "default.handlebars->33->2290" + "default.handlebars->33->2293" ] }, { @@ -30363,12 +30372,12 @@ "ja": "ノート", "xloc": [ "default-mobile.handlebars->11->338", - "default.handlebars->33->1645", - "default.handlebars->33->2264", - "default.handlebars->33->743", - "default.handlebars->33->826", - "default.handlebars->33->848", - "default.handlebars->33->858" + "default.handlebars->33->1647", + "default.handlebars->33->2267", + "default.handlebars->33->745", + "default.handlebars->33->828", + "default.handlebars->33->850", + "default.handlebars->33->860" ] }, { @@ -30408,8 +30417,8 @@ "zh-cht": "通知設定", "ja": "通知設定", "xloc": [ - "default.handlebars->33->1530", - "default.handlebars->33->1815", + "default.handlebars->33->1532", + "default.handlebars->33->1817", "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->10" ] }, @@ -30441,7 +30450,7 @@ "zh-cht": "通知設定還必須在帳戶設定中啟用。", "ja": "アカウント設定で通知設定もオンにする必要があります。", "xloc": [ - "default.handlebars->33->1811" + "default.handlebars->33->1813" ] }, { @@ -30461,7 +30470,7 @@ "zh-cht": "通知音效。", "ja": "通知音。", "xloc": [ - "default.handlebars->33->1525" + "default.handlebars->33->1527" ] }, { @@ -30481,7 +30490,7 @@ "zh-cht": "通知", "ja": "通知", "xloc": [ - "default.handlebars->33->1635" + "default.handlebars->33->1637" ] }, { @@ -30502,7 +30511,7 @@ "ja": "通知する", "xloc": [ "default.handlebars->33->211", - "default.handlebars->33->2270" + "default.handlebars->33->2273" ] }, { @@ -30522,7 +30531,7 @@ "zh-cht": "只通知", "ja": "通知のみ", "xloc": [ - "default.handlebars->33->900" + "default.handlebars->33->902" ] }, { @@ -30542,9 +30551,9 @@ "zh-cht": "通知使用者", "ja": "ユーザーに通知", "xloc": [ - "default.handlebars->33->1704", - "default.handlebars->33->1708", - "default.handlebars->33->1711" + "default.handlebars->33->1706", + "default.handlebars->33->1710", + "default.handlebars->33->1713" ] }, { @@ -30564,7 +30573,7 @@ "zh-cht": "通知{0}", "ja": "{0}に通知", "xloc": [ - "default.handlebars->33->2072" + "default.handlebars->33->2075" ] }, { @@ -30578,7 +30587,7 @@ "ru": "Null", "zh-chs": "空值", "xloc": [ - "default.handlebars->33->2476" + "default.handlebars->33->2479" ] }, { @@ -30614,13 +30623,13 @@ "default-mobile.handlebars->11->474", "default-mobile.handlebars->container->page_content->column_l->p10->p10dialog->5", "default-mobile.handlebars->dialog->idx_dlgButtonBar", - "default.handlebars->33->1592", - "default.handlebars->33->1820", - "default.handlebars->33->1834", - "default.handlebars->33->695", - "default.handlebars->33->699", - "default.handlebars->33->703", - "default.handlebars->33->709", + "default.handlebars->33->1594", + "default.handlebars->33->1822", + "default.handlebars->33->1836", + "default.handlebars->33->697", + "default.handlebars->33->701", + "default.handlebars->33->705", + "default.handlebars->33->711", "default.handlebars->container->dialog->idx_dlgButtonBar", "login-mobile.handlebars->dialog->idx_dlgButtonBar", "login.handlebars->dialog->idx_dlgButtonBar", @@ -30663,7 +30672,7 @@ "ja": "OS名", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p2->xdevicesBar->1->5", - "default.handlebars->33->651", + "default.handlebars->33->653", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar->15->1" ] }, @@ -30684,7 +30693,7 @@ "zh-cht": "歐舒丹", "ja": "オクシタン", "xloc": [ - "default.handlebars->33->1424" + "default.handlebars->33->1426" ] }, { @@ -30705,7 +30714,7 @@ "ja": "{0}で発生しました", "xloc": [ "default-mobile.handlebars->11->635", - "default.handlebars->33->2378" + "default.handlebars->33->2381" ] }, { @@ -30745,7 +30754,7 @@ "zh-cht": "離線用戶", "ja": "オフラインユーザー", "xloc": [ - "default.handlebars->33->2030" + "default.handlebars->33->2033" ] }, { @@ -30786,7 +30795,7 @@ "ja": "以前のパスワード:", "xloc": [ "default-mobile.handlebars->11->109", - "default.handlebars->33->1542" + "default.handlebars->33->1544" ] }, { @@ -30806,7 +30815,7 @@ "zh-cht": "一天", "ja": "ある日", "xloc": [ - "default.handlebars->33->2006" + "default.handlebars->33->2009" ] }, { @@ -30869,7 +30878,7 @@ "zh-cht": "在線用戶", "ja": "オンラインユーザー", "xloc": [ - "default.handlebars->33->2029" + "default.handlebars->33->2032" ] }, { @@ -30890,8 +30899,8 @@ "ja": "編集できるのは200k未満のファイルのみです。", "xloc": [ "default-mobile.handlebars->11->435", - "default.handlebars->33->1137", - "default.handlebars->33->614", + "default.handlebars->33->1139", + "default.handlebars->33->616", "sharing.handlebars->11->67" ] }, @@ -30953,7 +30962,7 @@ "zh-cht": "在裝置上打開頁面", "ja": "デバイスでページを開く", "xloc": [ - "default.handlebars->33->859" + "default.handlebars->33->861" ] }, { @@ -31012,7 +31021,7 @@ "zh-cht": "打開XTerm終端", "ja": "XTermターミナルを開きます", "xloc": [ - "default.handlebars->33->763" + "default.handlebars->33->765" ] }, { @@ -31052,7 +31061,7 @@ "zh-cht": "打開此電腦的聊天窗口", "ja": "このコンピューターへのチャットウィンドウを開く", "xloc": [ - "default.handlebars->33->750", + "default.handlebars->33->752", "default.handlebars->container->column_l->p11->deskarea0->deskarea4->1" ] }, @@ -31091,7 +31100,7 @@ "zh-cht": "開場:{0}", "ja": "オープニング:{0}", "xloc": [ - "default.handlebars->33->1904" + "default.handlebars->33->1906" ] }, { @@ -31112,12 +31121,12 @@ "ja": "オペレーティング・システム", "xloc": [ "default-mobile.handlebars->11->476", - "default.handlebars->33->1169", + "default.handlebars->33->1171", "default.handlebars->33->249", "default.handlebars->33->392", "default.handlebars->33->433", - "default.handlebars->33->693", - "default.handlebars->33->985" + "default.handlebars->33->695", + "default.handlebars->33->987" ] }, { @@ -31138,11 +31147,11 @@ "ja": "操作", "xloc": [ "default-mobile.handlebars->11->328", - "default.handlebars->33->2056", - "default.handlebars->33->2137", - "default.handlebars->33->533", - "default.handlebars->33->548", - "default.handlebars->33->920" + "default.handlebars->33->2059", + "default.handlebars->33->2140", + "default.handlebars->33->535", + "default.handlebars->33->550", + "default.handlebars->33->922" ] }, { @@ -31179,7 +31188,7 @@ "zh-cht": "奧里亞", "ja": "オリヤ", "xloc": [ - "default.handlebars->33->1425" + "default.handlebars->33->1427" ] }, { @@ -31199,7 +31208,7 @@ "zh-cht": "奧羅莫", "ja": "オロモ", "xloc": [ - "default.handlebars->33->1426" + "default.handlebars->33->1428" ] }, { @@ -31260,7 +31269,7 @@ "ja": "時代遅れ", "xloc": [ "default-mobile.handlebars->11->473", - "default.handlebars->33->708" + "default.handlebars->33->710" ] }, { @@ -31312,7 +31321,7 @@ "zh-cht": "是否覆蓋文件存在?", "ja": "ファイルが存在する場合は上書きしますか?", "xloc": [ - "default.handlebars->33->564" + "default.handlebars->33->566" ] }, { @@ -31332,7 +31341,7 @@ "zh-cht": "自己的過程", "ja": "OwnProcess", "xloc": [ - "default.handlebars->33->1068" + "default.handlebars->33->1070" ] }, { @@ -31352,7 +31361,7 @@ "zh-cht": "PID", "ja": "PID", "xloc": [ - "default.handlebars->33->1064", + "default.handlebars->33->1066", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader->1" ] }, @@ -31367,7 +31376,7 @@ "zh-chs": "推", "xloc": [ "default-mobile.handlebars->11->550", - "default.handlebars->33->1254" + "default.handlebars->33->1256" ] }, { @@ -31382,7 +31391,7 @@ "zh-chs": "向下翻页", "xloc": [ "default-mobile.handlebars->11->379", - "default.handlebars->33->1039" + "default.handlebars->33->1041" ] }, { @@ -31397,7 +31406,7 @@ "zh-chs": "向上翻页", "xloc": [ "default-mobile.handlebars->11->378", - "default.handlebars->33->1038" + "default.handlebars->33->1040" ] }, { @@ -31418,7 +31427,7 @@ "ja": "品番", "xloc": [ "default-mobile.handlebars->11->537", - "default.handlebars->33->1240" + "default.handlebars->33->1242" ] }, { @@ -31438,7 +31447,7 @@ "zh-cht": "部分的", "ja": "部分的", "xloc": [ - "default.handlebars->33->2044" + "default.handlebars->33->2047" ] }, { @@ -31494,7 +31503,7 @@ "xloc": [ "default-mobile.handlebars->11->128", "default-mobile.handlebars->11->573", - "default.handlebars->33->1568" + "default.handlebars->33->1570" ] }, { @@ -31514,7 +31523,7 @@ "zh-cht": "部分權限", "ja": "部分的権利", "xloc": [ - "default.handlebars->33->2215" + "default.handlebars->33->2218" ] }, { @@ -31557,18 +31566,18 @@ "default-mobile.handlebars->11->344", "default-mobile.handlebars->11->403", "default-mobile.handlebars->11->414", - "default.handlebars->33->1087", - "default.handlebars->33->1108", - "default.handlebars->33->1671", - "default.handlebars->33->2100", - "default.handlebars->33->2101", - "default.handlebars->33->2236", - "default.handlebars->33->2238", - "default.handlebars->33->2295", - "default.handlebars->33->2296", + "default.handlebars->33->1089", + "default.handlebars->33->1110", + "default.handlebars->33->1673", + "default.handlebars->33->2103", + "default.handlebars->33->2104", + "default.handlebars->33->2239", + "default.handlebars->33->2241", + "default.handlebars->33->2298", + "default.handlebars->33->2299", "default.handlebars->33->246", "default.handlebars->33->362", - "default.handlebars->33->943", + "default.handlebars->33->945", "login2.handlebars->centralTable->1->0->logincell->loginpanel->1->loginuserpassdiv->1->1->2->1", "login2.handlebars->centralTable->1->0->logincell->loginpanel->1->loginuserpassdiv->1->1->2->1", "mstsc.handlebars->main->1->3->1->6->1->0", @@ -31684,7 +31693,7 @@ "zh-chs": "密码已更改。", "xloc": [ "default-mobile.handlebars->11->663", - "default.handlebars->33->2406" + "default.handlebars->33->2409" ] }, { @@ -31725,7 +31734,7 @@ "zh-cht": "密碼提示", "ja": "パスワードのヒント", "xloc": [ - "default.handlebars->33->2297" + "default.handlebars->33->2300" ] }, { @@ -31746,7 +31755,7 @@ "ja": "パスワードのヒント:", "xloc": [ "default-mobile.handlebars->11->112", - "default.handlebars->33->1545" + "default.handlebars->33->1547" ] }, { @@ -31825,8 +31834,8 @@ "account-invite.html->2->5", "default-mobile.handlebars->11->104", "default-mobile.handlebars->11->105", - "default.handlebars->33->1537", - "default.handlebars->33->1538", + "default.handlebars->33->1539", + "default.handlebars->33->1540", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->4->1", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->6->1", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->loginpanel->1->7->1->2->1", @@ -31864,9 +31873,9 @@ "default-mobile.handlebars->11->440", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->3", "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->3", - "default.handlebars->33->1102", - "default.handlebars->33->1143", - "default.handlebars->33->1877", + "default.handlebars->33->1104", + "default.handlebars->33->1145", + "default.handlebars->33->1879", "default.handlebars->container->column_l->p12->termTable->1->1->6->1->3", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", @@ -31944,7 +31953,7 @@ "ja": "エージェントアクションの実行", "xloc": [ "default-mobile.handlebars->11->553", - "default.handlebars->33->1257" + "default.handlebars->33->1259" ] }, { @@ -31998,7 +32007,7 @@ "zh-cht": "執行英特爾®AMT激活和配置。", "ja": "インテル®AMTのアクティベーションと構成を実行します。", "xloc": [ - "default.handlebars->33->1649", + "default.handlebars->33->1651", "default.handlebars->33->339" ] }, @@ -32081,7 +32090,7 @@ "zh-chs": "执行英特尔® AMT 关机?", "xloc": [ "default-mobile.handlebars->11->334", - "default.handlebars->33->935" + "default.handlebars->33->937" ] }, { @@ -32095,7 +32104,7 @@ "zh-chs": "执行英特尔® AMT 电源?", "xloc": [ "default-mobile.handlebars->11->332", - "default.handlebars->33->933" + "default.handlebars->33->935" ] }, { @@ -32109,7 +32118,7 @@ "zh-chs": "执行英特尔® AMT 重置?", "xloc": [ "default-mobile.handlebars->11->336", - "default.handlebars->33->937" + "default.handlebars->33->939" ] }, { @@ -32129,7 +32138,7 @@ "zh-cht": "執行批量設備通知", "ja": "バッチデバイス通知を実行する", "xloc": [ - "default.handlebars->33->555" + "default.handlebars->33->557" ] }, { @@ -32149,7 +32158,7 @@ "zh-cht": "執行批次裝置標籤操作", "ja": "バッチデバイスタグ操作を実行する", "xloc": [ - "default.handlebars->33->547" + "default.handlebars->33->549" ] }, { @@ -32170,7 +32179,7 @@ "ja": "デバイスの電源操作を実行します", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea4->1->3", - "default.handlebars->33->742", + "default.handlebars->33->744", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->1", "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->1" @@ -32193,7 +32202,7 @@ "zh-cht": "執行電源操作= {0},強制執行= {1}", "ja": "電源操作を実行しています= {0}、強制= {1}", "xloc": [ - "default.handlebars->33->1909" + "default.handlebars->33->1911" ] }, { @@ -32208,7 +32217,7 @@ "zh-chs": "没有权限", "xloc": [ "default-mobile.handlebars->11->644", - "default.handlebars->33->2387" + "default.handlebars->33->2390" ] }, { @@ -32229,8 +32238,8 @@ "ja": "許可", "xloc": [ "default-mobile.handlebars->11->629", - "default.handlebars->33->1789", - "default.handlebars->33->2028" + "default.handlebars->33->1791", + "default.handlebars->33->2031" ] }, { @@ -32250,7 +32259,7 @@ "zh-cht": "波斯/伊朗", "ja": "ペルシャ語/イラン", "xloc": [ - "default.handlebars->33->1427" + "default.handlebars->33->1429" ] }, { @@ -32301,10 +32310,10 @@ "default-mobile.handlebars->11->74", "default-mobile.handlebars->11->89", "default-mobile.handlebars->11->91", - "default.handlebars->33->1272", - "default.handlebars->33->1275", + "default.handlebars->33->1274", + "default.handlebars->33->1277", "default.handlebars->33->177", - "default.handlebars->33->2285" + "default.handlebars->33->2288" ] }, { @@ -32324,7 +32333,7 @@ "zh-cht": "電話號碼", "ja": "電話番号", "xloc": [ - "default.handlebars->33->2230" + "default.handlebars->33->2233" ] }, { @@ -32345,8 +32354,8 @@ "ja": "電話番号:", "xloc": [ "default-mobile.handlebars->11->90", - "default.handlebars->33->1274", - "default.handlebars->33->2284" + "default.handlebars->33->1276", + "default.handlebars->33->2287" ] }, { @@ -32383,7 +32392,7 @@ "zh-cht": "將節點放在這裡", "ja": "ここにノードを配置", "xloc": [ - "default.handlebars->33->629" + "default.handlebars->33->631" ] }, { @@ -32505,7 +32514,7 @@ "ja": "確認を受けるまで数分お待ちください。", "xloc": [ "default-mobile.handlebars->11->100", - "default.handlebars->33->1532" + "default.handlebars->33->1534" ] }, { @@ -32526,7 +32535,7 @@ "ja": "プラグインアクション", "xloc": [ "default.handlebars->33->227", - "default.handlebars->33->2513" + "default.handlebars->33->2516" ] }, { @@ -32670,7 +32679,7 @@ "ja": "方針", "xloc": [ "default-mobile.handlebars->11->127", - "default.handlebars->33->1567" + "default.handlebars->33->1569" ] }, { @@ -32690,7 +32699,7 @@ "zh-cht": "波蘭文", "ja": "研磨", "xloc": [ - "default.handlebars->33->1428" + "default.handlebars->33->1430" ] }, { @@ -32746,7 +32755,7 @@ "zh-cht": "葡萄牙文", "ja": "ポルトガル語", "xloc": [ - "default.handlebars->33->1429" + "default.handlebars->33->1431" ] }, { @@ -32766,7 +32775,7 @@ "zh-cht": "葡萄牙文(巴西)", "ja": "ポルトガル語(ブラジル)", "xloc": [ - "default.handlebars->33->1430" + "default.handlebars->33->1432" ] }, { @@ -32847,7 +32856,7 @@ "zh-cht": "電源狀態", "ja": "電力状態", "xloc": [ - "default.handlebars->33->1827", + "default.handlebars->33->1829", "default.handlebars->container->column_l->p21->p21main->1->1->meshPowerChartDiv->1" ] }, @@ -32871,7 +32880,7 @@ "default-mobile.handlebars->11->219", "default-mobile.handlebars->11->324", "default.handlebars->33->6", - "default.handlebars->33->913" + "default.handlebars->33->915" ] }, { @@ -32891,7 +32900,7 @@ "zh-cht": "關閉裝置", "ja": "デバイスの電源を切る", "xloc": [ - "default.handlebars->33->523" + "default.handlebars->33->525" ] }, { @@ -32914,7 +32923,7 @@ "default-mobile.handlebars->11->214", "default-mobile.handlebars->11->221", "default.handlebars->33->1", - "default.handlebars->33->484" + "default.handlebars->33->486" ] }, { @@ -32934,7 +32943,7 @@ "zh-cht": "預激活", "ja": "事前アクティベーション", "xloc": [ - "default.handlebars->33->1212" + "default.handlebars->33->1214" ] }, { @@ -32956,7 +32965,7 @@ "xloc": [ "default-mobile.handlebars->11->220", "default-mobile.handlebars->11->227", - "default.handlebars->33->496", + "default.handlebars->33->498", "default.handlebars->33->7" ] }, @@ -32977,7 +32986,7 @@ "zh-cht": "存在於伺服器上", "ja": "サーバーに存在", "xloc": [ - "default.handlebars->33->2363" + "default.handlebars->33->2366" ] }, { @@ -33076,9 +33085,9 @@ "xloc": [ "default-mobile.handlebars->11->79", "default-mobile.handlebars->11->80", - "default.handlebars->33->1267", - "default.handlebars->33->2279", - "default.handlebars->33->2293", + "default.handlebars->33->1269", + "default.handlebars->33->2282", + "default.handlebars->33->2296", "default.handlebars->33->239" ] }, @@ -33094,7 +33103,7 @@ "zh-chs": "打印屏幕", "xloc": [ "default-mobile.handlebars->11->373", - "default.handlebars->33->1033" + "default.handlebars->33->1035" ] }, { @@ -33163,7 +33172,7 @@ "zh-cht": "進程控制", "ja": "プロセス制御", "xloc": [ - "default.handlebars->33->1080" + "default.handlebars->33->1082" ] }, { @@ -33203,7 +33212,7 @@ "zh-cht": "處理控制台命令:“{0}”", "ja": "コンソールコマンドを処理しています:\\\"{0}\\\"", "xloc": [ - "default.handlebars->33->1901" + "default.handlebars->33->1903" ] }, { @@ -33243,7 +33252,7 @@ "zh-cht": "用戶同意提示", "ja": "同意を求める", "xloc": [ - "default.handlebars->33->899" + "default.handlebars->33->901" ] }, { @@ -33263,9 +33272,9 @@ "zh-cht": "用戶同意提示", "ja": "ユーザーの同意を求める", "xloc": [ - "default.handlebars->33->1705", - "default.handlebars->33->1709", - "default.handlebars->33->1712" + "default.handlebars->33->1707", + "default.handlebars->33->1711", + "default.handlebars->33->1714" ] }, { @@ -33285,7 +33294,7 @@ "zh-cht": "協議", "ja": "プロトコル", "xloc": [ - "default.handlebars->33->2361", + "default.handlebars->33->2364", "player.handlebars->3->16" ] }, @@ -33324,7 +33333,7 @@ "ja": "プロビジョニング状態", "xloc": [ "default-mobile.handlebars->11->513", - "default.handlebars->33->1216" + "default.handlebars->33->1218" ] }, { @@ -33354,7 +33363,7 @@ "ja": "公開リンク", "xloc": [ "default-mobile.handlebars->11->139", - "default.handlebars->33->1862" + "default.handlebars->33->1864" ] }, { @@ -33383,7 +33392,7 @@ "zh-cht": "旁遮普文", "ja": "パンジャブ語", "xloc": [ - "default.handlebars->33->1431" + "default.handlebars->33->1433" ] }, { @@ -33403,7 +33412,7 @@ "zh-cht": "旁遮普(印度)", "ja": "パンジャブ語(インド)", "xloc": [ - "default.handlebars->33->1432" + "default.handlebars->33->1434" ] }, { @@ -33423,7 +33432,7 @@ "zh-cht": "旁遮普(巴基斯坦)", "ja": "パンジャブ語(パキスタン)", "xloc": [ - "default.handlebars->33->1433" + "default.handlebars->33->1435" ] }, { @@ -33518,7 +33527,7 @@ "zh-cht": "蓋丘亞族", "ja": "ケチュア", "xloc": [ - "default.handlebars->33->1434" + "default.handlebars->33->1436" ] }, { @@ -33592,7 +33601,7 @@ "ja": "RDP", "xloc": [ "default.handlebars->33->302", - "default.handlebars->33->766" + "default.handlebars->33->768" ] }, { @@ -33612,7 +33621,7 @@ "zh-cht": "RDP連接", "ja": "RDP接続", "xloc": [ - "default.handlebars->33->607" + "default.handlebars->33->609" ] }, { @@ -33641,7 +33650,7 @@ "zh-cht": "RDP遠程連接介面:", "ja": "RDPリモート接続ポート:", "xloc": [ - "default.handlebars->33->606" + "default.handlebars->33->608" ] }, { @@ -33722,7 +33731,7 @@ "zh-cht": "RSS", "ja": "RSS", "xloc": [ - "default.handlebars->33->2474" + "default.handlebars->33->2477" ] }, { @@ -33762,7 +33771,7 @@ "zh-cht": "隨機密碼", "ja": "パスワードをランダム化する", "xloc": [ - "default.handlebars->33->1672" + "default.handlebars->33->1674" ] }, { @@ -33782,7 +33791,7 @@ "zh-cht": "隨機密碼。", "ja": "パスワードをランダム化します。", "xloc": [ - "default.handlebars->33->2102" + "default.handlebars->33->2105" ] }, { @@ -33839,9 +33848,9 @@ "zh-cht": "真正的名字", "ja": "本名", "xloc": [ - "default.handlebars->33->2227", - "default.handlebars->33->2229", - "default.handlebars->33->2286" + "default.handlebars->33->2230", + "default.handlebars->33->2232", + "default.handlebars->33->2289" ] }, { @@ -33861,7 +33870,7 @@ "zh-cht": "境界", "ja": "レルム", "xloc": [ - "default.handlebars->33->2111" + "default.handlebars->33->2114" ] }, { @@ -33882,7 +33891,7 @@ "ja": "無効なネットワークデータを受信しました", "xloc": [ "default-mobile.handlebars->11->365", - "default.handlebars->33->1013", + "default.handlebars->33->1015", "sharing.handlebars->11->10", "sharing.handlebars->11->32" ] @@ -33904,7 +33913,7 @@ "zh-cht": "記錄會議", "ja": "セッションの記録", "xloc": [ - "default.handlebars->33->1616" + "default.handlebars->33->1618" ] }, { @@ -33944,7 +33953,7 @@ "zh-cht": "記錄會議", "ja": "セッションの記録", "xloc": [ - "default.handlebars->33->1715" + "default.handlebars->33->1717" ] }, { @@ -33964,7 +33973,7 @@ "zh-cht": "記錄細節", "ja": "録音の詳細", "xloc": [ - "default.handlebars->33->2375" + "default.handlebars->33->2378" ] }, { @@ -34015,8 +34024,8 @@ "xloc": [ "default-mobile.handlebars->11->145", "default-mobile.handlebars->11->428", - "default.handlebars->33->1130", - "default.handlebars->33->1869", + "default.handlebars->33->1132", + "default.handlebars->33->1871", "sharing.handlebars->11->60" ] }, @@ -34062,7 +34071,7 @@ "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->3", "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->3", - "default.handlebars->33->626", + "default.handlebars->33->628", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsAreaTop->DeskToolsRefreshButton", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p40->3->3", @@ -34128,9 +34137,9 @@ "ja": "リレー", "xloc": [ "default-mobile.handlebars->11->238", - "default.handlebars->33->2456", + "default.handlebars->33->2459", "default.handlebars->33->298", - "default.handlebars->33->511" + "default.handlebars->33->513" ] }, { @@ -34150,7 +34159,7 @@ "zh-cht": "中繼數量", "ja": "リレー数", "xloc": [ - "default.handlebars->33->2441" + "default.handlebars->33->2444" ] }, { @@ -34179,7 +34188,7 @@ "zh-cht": "中繼錯誤", "ja": "リレーエラー", "xloc": [ - "default.handlebars->33->2434" + "default.handlebars->33->2437" ] }, { @@ -34208,8 +34217,8 @@ "zh-cht": "中繼連接", "ja": "中継セッション", "xloc": [ - "default.handlebars->33->2440", - "default.handlebars->33->2468" + "default.handlebars->33->2443", + "default.handlebars->33->2471" ] }, { @@ -34242,8 +34251,8 @@ "xloc": [ "default-mobile.handlebars->11->404", "default-mobile.handlebars->11->415", - "default.handlebars->33->1088", - "default.handlebars->33->1109" + "default.handlebars->33->1090", + "default.handlebars->33->1111" ] }, { @@ -34382,7 +34391,7 @@ "zh-cht": "遠程剪貼板", "ja": "リモートクリップボード", "xloc": [ - "default.handlebars->33->1059" + "default.handlebars->33->1061" ] }, { @@ -34403,7 +34412,7 @@ "ja": "リモートコマンド", "xloc": [ "default-mobile.handlebars->11->604", - "default.handlebars->33->1748" + "default.handlebars->33->1750" ] }, { @@ -34425,8 +34434,8 @@ "xloc": [ "default-mobile.handlebars->11->591", "default-mobile.handlebars->11->611", - "default.handlebars->33->1733", - "default.handlebars->33->1770" + "default.handlebars->33->1735", + "default.handlebars->33->1772" ] }, { @@ -34511,8 +34520,8 @@ "zh-cht": "遠程桌面連接欄已激活/更新", "ja": "アクティブ化/更新されたリモートデスクトップ接続バー", "xloc": [ - "default.handlebars->33->1915", - "default.handlebars->33->1921" + "default.handlebars->33->1917", + "default.handlebars->33->1923" ] }, { @@ -34532,7 +34541,7 @@ "zh-cht": "遠程桌面連接欄失敗或不受支持", "ja": "リモートデスクトップ接続バーが失敗したかサポートされていない", "xloc": [ - "default.handlebars->33->1916" + "default.handlebars->33->1918" ] }, { @@ -34552,7 +34561,7 @@ "zh-cht": "遠程桌面連接欄失敗或不受支持", "ja": "リモートデスクトップ接続バーが失敗したかサポートされていない", "xloc": [ - "default.handlebars->33->1922" + "default.handlebars->33->1924" ] }, { @@ -34572,9 +34581,9 @@ "zh-cht": "本地用戶強行關閉了遠程桌面連接", "ja": "ローカルユーザーがリモートデスクトップ接続を強制的に閉じました", "xloc": [ - "default.handlebars->33->1913", - "default.handlebars->33->1917", - "default.handlebars->33->1923" + "default.handlebars->33->1915", + "default.handlebars->33->1919", + "default.handlebars->33->1925" ] }, { @@ -34624,7 +34633,7 @@ "ja": "リモートデスクトップ設定", "xloc": [ "default-mobile.handlebars->11->367", - "default.handlebars->33->1024", + "default.handlebars->33->1026", "default.handlebars->33->334", "sharing.handlebars->11->20" ] @@ -34708,7 +34717,7 @@ "ru": "Блокировка удаленного ввода", "zh-chs": "远程输入锁定", "xloc": [ - "default.handlebars->33->862" + "default.handlebars->33->864" ] }, { @@ -34728,7 +34737,7 @@ "zh-cht": "遠程鍵盤輸入", "ja": "リモートキーボード入力", "xloc": [ - "default.handlebars->33->1057", + "default.handlebars->33->1059", "sharing.handlebars->11->22" ] }, @@ -34858,8 +34867,8 @@ "xloc": [ "default-mobile.handlebars->11->592", "default-mobile.handlebars->11->616", - "default.handlebars->33->1734", - "default.handlebars->33->1775" + "default.handlebars->33->1736", + "default.handlebars->33->1777" ] }, { @@ -34879,7 +34888,7 @@ "zh-cht": "遠程剪貼板的有效期為60秒。", "ja": "リモートクリップボードは60秒間有効です。", "xloc": [ - "default.handlebars->33->1058" + "default.handlebars->33->1060" ] }, { @@ -34987,7 +34996,7 @@ "zh-cht": "刪除配置", "ja": "構成を削除", "xloc": [ - "default.handlebars->33->1588" + "default.handlebars->33->1590" ] }, { @@ -35041,8 +35050,8 @@ "zh-cht": "刪除裝置群權限", "ja": "デバイスグループの権限を削除する", "xloc": [ - "default.handlebars->33->2196", - "default.handlebars->33->2338" + "default.handlebars->33->2199", + "default.handlebars->33->2341" ] }, { @@ -35062,8 +35071,8 @@ "zh-cht": "刪除裝置權限", "ja": "デバイスの権限を削除", "xloc": [ - "default.handlebars->33->2194", - "default.handlebars->33->2325" + "default.handlebars->33->2197", + "default.handlebars->33->2328" ] }, { @@ -35083,7 +35092,7 @@ "zh-cht": "刪除設備共享", "ja": "デバイス共有を削除する", "xloc": [ - "default.handlebars->33->2323" + "default.handlebars->33->2326" ] }, { @@ -35097,7 +35106,7 @@ "ru": "Удалить токен входа", "zh-chs": "删除登录令牌", "xloc": [ - "default.handlebars->33->1580" + "default.handlebars->33->1582" ] }, { @@ -35134,7 +35143,7 @@ "zh-cht": "刪除用戶群成員身份", "ja": "ユーザーグループメンバーシップを削除する", "xloc": [ - "default.handlebars->33->2334" + "default.handlebars->33->2337" ] }, { @@ -35154,8 +35163,8 @@ "zh-cht": "刪除用戶群權限", "ja": "ユーザーグループのアクセス許可を削除する", "xloc": [ - "default.handlebars->33->1794", - "default.handlebars->33->2330" + "default.handlebars->33->1796", + "default.handlebars->33->2333" ] }, { @@ -35175,7 +35184,7 @@ "zh-cht": "刪除用戶成員資格", "ja": "ユーザーメンバーシップを削除", "xloc": [ - "default.handlebars->33->2204" + "default.handlebars->33->2207" ] }, { @@ -35195,8 +35204,8 @@ "zh-cht": "刪除用戶權限", "ja": "ユーザー権限を削除", "xloc": [ - "default.handlebars->33->1792", - "default.handlebars->33->2327" + "default.handlebars->33->1794", + "default.handlebars->33->2330" ] }, { @@ -35216,7 +35225,7 @@ "zh-cht": "刪除所有二因子鑑別。", "ja": "すべての2要素認証を削除します。", "xloc": [ - "default.handlebars->33->2300" + "default.handlebars->33->2303" ] }, { @@ -35236,7 +35245,7 @@ "zh-cht": "刪除此用戶標識的所有先前事件。", "ja": "このユーザーIDの以前のイベントをすべて削除します。", "xloc": [ - "default.handlebars->33->2103" + "default.handlebars->33->2106" ] }, { @@ -35256,7 +35265,7 @@ "zh-cht": "斷開連接後删除裝置", "ja": "切断時にデバイスを削除する", "xloc": [ - "default.handlebars->33->1713" + "default.handlebars->33->1715" ] }, { @@ -35276,7 +35285,7 @@ "zh-cht": "刪除設備共享", "ja": "デバイス共有を削除する", "xloc": [ - "default.handlebars->33->801" + "default.handlebars->33->803" ] }, { @@ -35290,7 +35299,7 @@ "ru": "Удалить токен входа", "zh-chs": "删除登录令牌", "xloc": [ - "default.handlebars->33->1575" + "default.handlebars->33->1577" ] }, { @@ -35310,7 +35319,7 @@ "zh-cht": "刪除節點位置", "ja": "ノードの場所を削除", "xloc": [ - "default.handlebars->33->618" + "default.handlebars->33->620" ] }, { @@ -35331,7 +35340,7 @@ "ja": "電話番号を削除", "xloc": [ "default-mobile.handlebars->11->88", - "default.handlebars->33->1271" + "default.handlebars->33->1273" ] }, { @@ -35351,7 +35360,7 @@ "zh-cht": "删除標籤", "ja": "タグを削除", "xloc": [ - "default.handlebars->33->551" + "default.handlebars->33->553" ] }, { @@ -35371,7 +35380,7 @@ "zh-cht": "刪除此裝置", "ja": "このデバイスを削除", "xloc": [ - "default.handlebars->33->755" + "default.handlebars->33->757" ] }, { @@ -35391,7 +35400,7 @@ "zh-cht": "刪除此用戶", "ja": "このユーザーを削除", "xloc": [ - "default.handlebars->33->2274" + "default.handlebars->33->2277" ] }, { @@ -35411,7 +35420,7 @@ "zh-cht": "刪除用戶群成員身份", "ja": "ユーザーグループメンバーシップを削除する", "xloc": [ - "default.handlebars->33->2314" + "default.handlebars->33->2317" ] }, { @@ -35431,7 +35440,7 @@ "zh-cht": "刪除此裝置的用戶群權限", "ja": "このデバイスへのユーザーグループ権限を削除します", "xloc": [ - "default.handlebars->33->2190" + "default.handlebars->33->2193" ] }, { @@ -35451,8 +35460,8 @@ "zh-cht": "刪除此裝置群的用戶群權限", "ja": "このデバイスグループに対するユーザーグループ権限を削除します", "xloc": [ - "default.handlebars->33->2184", - "default.handlebars->33->794" + "default.handlebars->33->2187", + "default.handlebars->33->796" ] }, { @@ -35472,11 +35481,11 @@ "zh-cht": "刪除此裝置群的用戶權限", "ja": "このデバイスグループのユーザー権限を削除します", "xloc": [ - "default.handlebars->33->1658", - "default.handlebars->33->2178", - "default.handlebars->33->2308", - "default.handlebars->33->2320", - "default.handlebars->33->795" + "default.handlebars->33->1660", + "default.handlebars->33->2181", + "default.handlebars->33->2311", + "default.handlebars->33->2323", + "default.handlebars->33->797" ] }, { @@ -35505,7 +35514,7 @@ "zh-cht": "刪除身份驗證應用程序", "ja": "認証アプリケーションを削除しました", "xloc": [ - "default.handlebars->33->1975" + "default.handlebars->33->1977" ] }, { @@ -35525,7 +35534,7 @@ "zh-cht": "刪除的設備共享{0}", "ja": "デバイス共有{0}を削除しました", "xloc": [ - "default.handlebars->33->1986" + "default.handlebars->33->1988" ] }, { @@ -35545,7 +35554,7 @@ "zh-cht": "從設備組{1}中刪除了設備{0}", "ja": "デバイス{0}をデバイスグループ{1}から削除しました", "xloc": [ - "default.handlebars->33->1971" + "default.handlebars->33->1973" ] }, { @@ -35559,7 +35568,7 @@ "ru": "Удален токен входа", "zh-chs": "删除了登录令牌", "xloc": [ - "default.handlebars->33->2000" + "default.handlebars->33->2002" ] }, { @@ -35579,7 +35588,7 @@ "zh-cht": "已刪除用戶{0}的電話號碼", "ja": "ユーザー{0}の電話番号を削除しました", "xloc": [ - "default.handlebars->33->1981" + "default.handlebars->33->1983" ] }, { @@ -35592,7 +35601,7 @@ "nl": "Verificatieapparaat voor pushmeldingen verwijderd", "zh-chs": "删除了推送通知身份验证设备", "xloc": [ - "default.handlebars->33->1998" + "default.handlebars->33->2000" ] }, { @@ -35612,7 +35621,7 @@ "zh-cht": "移除安全密鑰", "ja": "セキュリティキーを削除しました", "xloc": [ - "default.handlebars->33->1978" + "default.handlebars->33->1980" ] }, { @@ -35632,9 +35641,9 @@ "zh-cht": "刪除了{0}的用戶設備權限", "ja": "{0}のユーザーデバイス権限を削除しました", "xloc": [ - "default.handlebars->33->1944", - "default.handlebars->33->1965", - "default.handlebars->33->1970" + "default.handlebars->33->1946", + "default.handlebars->33->1967", + "default.handlebars->33->1972" ] }, { @@ -35654,7 +35663,7 @@ "zh-cht": "從設備組{1}中刪除了用戶組{0}", "ja": "ユーザーグループ{0}をデバイスグループ{1}から削除しました", "xloc": [ - "default.handlebars->33->1954" + "default.handlebars->33->1956" ] }, { @@ -35674,7 +35683,7 @@ "zh-cht": "已從設備組{1}中刪除用戶{0}", "ja": "ユーザー{0}をデバイスグループ{1}から削除しました", "xloc": [ - "default.handlebars->33->1967" + "default.handlebars->33->1969" ] }, { @@ -35694,8 +35703,8 @@ "zh-cht": "從用戶組{1}中刪除了用戶{0}", "ja": "ユーザー{0}をユーザーグループ{1}から削除しました", "xloc": [ - "default.handlebars->33->1946", - "default.handlebars->33->1956" + "default.handlebars->33->1948", + "default.handlebars->33->1958" ] }, { @@ -35719,9 +35728,9 @@ "default-mobile.handlebars->11->432", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1", "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1", - "default.handlebars->33->1134", - "default.handlebars->33->1873", - "default.handlebars->33->612", + "default.handlebars->33->1136", + "default.handlebars->33->1875", + "default.handlebars->33->614", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", "default.handlebars->filesContextMenu->1", @@ -35755,7 +35764,7 @@ "zh-cht": "重命名:“{0}”為“{1}”", "ja": "名前を変更:「{0}」を「{1}」に変更", "xloc": [ - "default.handlebars->33->1932" + "default.handlebars->33->1934" ] }, { @@ -35775,7 +35784,7 @@ "zh-cht": "報告日", "ja": "レポート日", "xloc": [ - "default.handlebars->33->2007" + "default.handlebars->33->2010" ] }, { @@ -35795,7 +35804,7 @@ "zh-cht": "報告類型", "ja": "レポートの種類", "xloc": [ - "default.handlebars->33->2002" + "default.handlebars->33->2005" ] }, { @@ -35861,7 +35870,7 @@ "zh-cht": "要求:", "ja": "要件:", "xloc": [ - "default.handlebars->33->1546" + "default.handlebars->33->1548" ] }, { @@ -35882,8 +35891,8 @@ "ja": "要件:{0}。", "xloc": [ "default-mobile.handlebars->11->113", - "default.handlebars->33->2108", - "default.handlebars->33->2298" + "default.handlebars->33->2111", + "default.handlebars->33->2301" ] }, { @@ -35903,7 +35912,7 @@ "zh-cht": "需要安裝MeshCentral路由器", "ja": "MeshCentralルーターのインストールが必要", "xloc": [ - "default.handlebars->33->765" + "default.handlebars->33->767" ] }, { @@ -35923,9 +35932,9 @@ "zh-cht": "需要安裝MeshCentral Router。", "ja": "MeshCentralルーターのインストールが必要です。", "xloc": [ - "default.handlebars->33->767", "default.handlebars->33->769", - "default.handlebars->33->771" + "default.handlebars->33->771", + "default.handlebars->33->773" ] }, { @@ -35968,7 +35977,7 @@ "ja": "リセットする", "xloc": [ "default-mobile.handlebars->11->323", - "default.handlebars->33->912", + "default.handlebars->33->914", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devMapToolbar" ] }, @@ -35990,7 +35999,7 @@ "ja": "リセット/電源オフ", "xloc": [ "default-mobile.handlebars->11->605", - "default.handlebars->33->1749" + "default.handlebars->33->1751" ] }, { @@ -36076,7 +36085,7 @@ "zh-cht": "重置裝置", "ja": "デバイスをリセットする", "xloc": [ - "default.handlebars->33->522" + "default.handlebars->33->524" ] }, { @@ -36117,9 +36126,9 @@ "ja": "リセット/オフ", "xloc": [ "default-mobile.handlebars->11->625", - "default.handlebars->33->1785", - "default.handlebars->33->831", - "default.handlebars->33->853" + "default.handlebars->33->1787", + "default.handlebars->33->833", + "default.handlebars->33->855" ] }, { @@ -36139,7 +36148,7 @@ "zh-cht": "重新啟動", "ja": "再起動", "xloc": [ - "default.handlebars->33->1074", + "default.handlebars->33->1076", "player.handlebars->p11->deskarea0->deskarea4->3" ] }, @@ -36160,7 +36169,7 @@ "zh-cht": "還原伺服器", "ja": "サーバーの復元", "xloc": [ - "default.handlebars->33->1593" + "default.handlebars->33->1595" ] }, { @@ -36200,7 +36209,7 @@ "zh-cht": "使用備份還原伺服器,這將刪除現有伺服器數據。僅當你知道自己在做什麼時才這樣做。", "ja": "バックアップを使用してサーバーを復元します。これにより既存のサーバーデータが削除されます。あなたが何をしているかを知っている場合にのみ、これを行ってください。", "xloc": [ - "default.handlebars->33->1590" + "default.handlebars->33->1592" ] }, { @@ -36222,8 +36231,8 @@ "xloc": [ "default-mobile.handlebars->11->265", "default.handlebars->33->180", - "default.handlebars->33->664", - "default.handlebars->33->781" + "default.handlebars->33->666", + "default.handlebars->33->783" ] }, { @@ -36243,7 +36252,7 @@ "zh-cht": "限制條件", "ja": "制限事項", "xloc": [ - "default.handlebars->33->2216" + "default.handlebars->33->2219" ] }, { @@ -36263,7 +36272,7 @@ "zh-cht": "雷托-羅曼語", "ja": "Rhaeto-Romanic", "xloc": [ - "default.handlebars->33->1435" + "default.handlebars->33->1437" ] }, { @@ -36278,7 +36287,7 @@ "zh-chs": "正确的", "xloc": [ "default-mobile.handlebars->11->382", - "default.handlebars->33->1042" + "default.handlebars->33->1044" ] }, { @@ -36298,7 +36307,7 @@ "zh-cht": "羅馬尼亞文", "ja": "ルーマニア語", "xloc": [ - "default.handlebars->33->1436" + "default.handlebars->33->1438" ] }, { @@ -36318,7 +36327,7 @@ "zh-cht": "羅馬尼亞文(摩爾達維亞)", "ja": "ルーマニア語(モルダビア)", "xloc": [ - "default.handlebars->33->1437" + "default.handlebars->33->1439" ] }, { @@ -36340,8 +36349,8 @@ "xloc": [ "default-mobile.handlebars->11->131", "default-mobile.handlebars->11->421", - "default.handlebars->33->1118", - "default.handlebars->33->1841", + "default.handlebars->33->1120", + "default.handlebars->33->1843", "sharing.handlebars->11->49" ] }, @@ -36497,9 +36506,9 @@ "zh-cht": "運行命令", "ja": "コマンドを実行する", "xloc": [ - "default.handlebars->33->546", - "default.handlebars->33->910", - "default.handlebars->33->930" + "default.handlebars->33->548", + "default.handlebars->33->912", + "default.handlebars->33->932" ] }, { @@ -36519,7 +36528,7 @@ "zh-cht": "運行MeshCentral Router,然後單擊“安裝”以使其可從瀏覽器啟動。", "ja": "MeshCentral Routerを実行し、[インストール]をクリックして、ブラウザから起動できるようにします。", "xloc": [ - "default.handlebars->33->972" + "default.handlebars->33->974" ] }, { @@ -36539,8 +36548,8 @@ "zh-cht": "以代理身份運行", "ja": "エージェントとして実行", "xloc": [ - "default.handlebars->33->543", - "default.handlebars->33->927" + "default.handlebars->33->545", + "default.handlebars->33->929" ] }, { @@ -36560,8 +36569,8 @@ "zh-cht": "以用戶身份運行,如果沒有用戶,則運行代理", "ja": "ユーザーとして実行、ユーザーがいない場合はエージェント", "xloc": [ - "default.handlebars->33->544", - "default.handlebars->33->928" + "default.handlebars->33->546", + "default.handlebars->33->930" ] }, { @@ -36581,7 +36590,7 @@ "zh-cht": "運行命令", "ja": "コマンドを実行する", "xloc": [ - "default.handlebars->33->524" + "default.handlebars->33->526" ] }, { @@ -36601,8 +36610,8 @@ "zh-cht": "在所選裝置上運行命令。", "ja": "選択したデバイスでコマンドを実行します。", "xloc": [ - "default.handlebars->33->539", - "default.handlebars->33->923" + "default.handlebars->33->541", + "default.handlebars->33->925" ] }, { @@ -36639,7 +36648,7 @@ "zh-cht": "運行命令", "ja": "コマンドを実行する", "xloc": [ - "default.handlebars->33->1908" + "default.handlebars->33->1910" ] }, { @@ -36659,7 +36668,7 @@ "zh-cht": "以用戶身份運行命令", "ja": "ユーザーとしてコマンドを実行する", "xloc": [ - "default.handlebars->33->1983" + "default.handlebars->33->1985" ] }, { @@ -36679,7 +36688,7 @@ "zh-cht": "如果可能,以用戶身份運行命令", "ja": "可能であればユーザーとしてコマンドを実行する", "xloc": [ - "default.handlebars->33->1984" + "default.handlebars->33->1986" ] }, { @@ -36699,7 +36708,7 @@ "zh-cht": "俄文", "ja": "ロシア", "xloc": [ - "default.handlebars->33->1438" + "default.handlebars->33->1440" ] }, { @@ -36719,7 +36728,7 @@ "zh-cht": "俄文(摩爾達維亞)", "ja": "ロシア語(モルダビア)", "xloc": [ - "default.handlebars->33->1439" + "default.handlebars->33->1441" ] }, { @@ -36757,7 +36766,7 @@ "ja": "SCP", "xloc": [ "default.handlebars->33->304", - "default.handlebars->33->770" + "default.handlebars->33->772" ] }, { @@ -36777,8 +36786,8 @@ "zh-cht": "短信", "ja": "SMS", "xloc": [ - "default.handlebars->33->2261", - "default.handlebars->33->2266", + "default.handlebars->33->2264", + "default.handlebars->33->2269", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3", "login.handlebars->container->column_l->centralTable->1->0->logincell->resettokenpanel->1->5->1->2->1->3", "login.handlebars->container->column_l->centralTable->1->0->logincell->tokenpanel->1->7->1->4->1->3", @@ -36803,7 +36812,7 @@ "zh-cht": "此用戶的短信功能電話號碼。", "ja": "このユーザーのSMS対応電話番号。", "xloc": [ - "default.handlebars->33->2282" + "default.handlebars->33->2285" ] }, { @@ -36818,7 +36827,7 @@ "zh-chs": "短信错误", "xloc": [ "default-mobile.handlebars->11->671", - "default.handlebars->33->2414" + "default.handlebars->33->2417" ] }, { @@ -36833,7 +36842,7 @@ "zh-chs": "短信错误:{0}", "xloc": [ "default-mobile.handlebars->11->672", - "default.handlebars->33->2415" + "default.handlebars->33->2418" ] }, { @@ -36848,7 +36857,7 @@ "zh-chs": "短信网关未启用", "xloc": [ "default-mobile.handlebars->11->666", - "default.handlebars->33->2409" + "default.handlebars->33->2412" ] }, { @@ -36894,7 +36903,7 @@ "zh-chs": "短信发送成功。", "xloc": [ "default-mobile.handlebars->11->670", - "default.handlebars->33->2413" + "default.handlebars->33->2416" ] }, { @@ -36916,9 +36925,9 @@ "default-mobile.handlebars->11->298", "default-mobile.handlebars->11->300", "default.handlebars->33->303", - "default.handlebars->33->738", "default.handlebars->33->740", - "default.handlebars->33->768" + "default.handlebars->33->742", + "default.handlebars->33->770" ] }, { @@ -36933,7 +36942,7 @@ "zh-chs": "SSH 连接", "xloc": [ "default-mobile.handlebars->11->400", - "default.handlebars->33->609" + "default.handlebars->33->611" ] }, { @@ -36949,8 +36958,8 @@ "xloc": [ "default-mobile.handlebars->11->398", "default-mobile.handlebars->11->426", - "default.handlebars->33->1082", - "default.handlebars->33->1128" + "default.handlebars->33->1084", + "default.handlebars->33->1130" ] }, { @@ -36974,7 +36983,7 @@ "zh-chs": "SSH远程连接端口:", "xloc": [ "default-mobile.handlebars->11->399", - "default.handlebars->33->608" + "default.handlebars->33->610" ] }, { @@ -37015,7 +37024,7 @@ "zh-cht": "薩米(拉普蘭)", "ja": "サミ(ラップ語)", "xloc": [ - "default.handlebars->33->1440" + "default.handlebars->33->1442" ] }, { @@ -37073,7 +37082,7 @@ "zh-cht": "三鄉", "ja": "サンゴ", "xloc": [ - "default.handlebars->33->1441" + "default.handlebars->33->1443" ] }, { @@ -37093,7 +37102,7 @@ "zh-cht": "梵文", "ja": "サンスクリット", "xloc": [ - "default.handlebars->33->1442" + "default.handlebars->33->1444" ] }, { @@ -37113,7 +37122,7 @@ "zh-cht": "撒丁島", "ja": "サルデーニャ", "xloc": [ - "default.handlebars->33->1443" + "default.handlebars->33->1445" ] }, { @@ -37174,7 +37183,7 @@ "zh-cht": "保存節點位置", "ja": "ノードの場所を保存", "xloc": [ - "default.handlebars->33->619" + "default.handlebars->33->621" ] }, { @@ -37394,8 +37403,8 @@ "zh-cht": "搜尋", "ja": "サーチ", "xloc": [ - "default.handlebars->33->1122", - "default.handlebars->33->632", + "default.handlebars->33->1124", + "default.handlebars->33->634", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devMapToolbar", "sharing.handlebars->11->53" ] @@ -37483,7 +37492,7 @@ "ja": "TLSを使用して保護", "xloc": [ "default-mobile.handlebars->11->516", - "default.handlebars->33->1219" + "default.handlebars->33->1221" ] }, { @@ -37505,11 +37514,11 @@ "xloc": [ "default-mobile.handlebars->11->345", "default-mobile.handlebars->11->515", - "default.handlebars->33->1218", - "default.handlebars->33->1839", - "default.handlebars->33->2262", + "default.handlebars->33->1220", + "default.handlebars->33->1841", + "default.handlebars->33->2265", "default.handlebars->33->363", - "default.handlebars->33->944", + "default.handlebars->33->946", "default.handlebars->container->column_l->p21->p21main->1->1->meshSecurityChartDiv->1" ] }, @@ -37530,7 +37539,7 @@ "zh-cht": "安全密鑰", "ja": "セキュリティキー", "xloc": [ - "default.handlebars->33->2259" + "default.handlebars->33->2262" ] }, { @@ -37545,7 +37554,7 @@ "zh-chs": "安全警告", "xloc": [ "default-mobile.handlebars->11->640", - "default.handlebars->33->2383" + "default.handlebars->33->2386" ] }, { @@ -37585,12 +37594,12 @@ "zh-cht": "全選", "ja": "すべて選択", "xloc": [ - "default.handlebars->33->1125", "default.handlebars->33->1127", - "default.handlebars->33->1865", - "default.handlebars->33->2052", - "default.handlebars->33->2135", - "default.handlebars->33->516", + "default.handlebars->33->1129", + "default.handlebars->33->1867", + "default.handlebars->33->2055", + "default.handlebars->33->2138", + "default.handlebars->33->518", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p4->3->1->0->3->3", @@ -37619,11 +37628,11 @@ "zh-cht": "選擇無", "ja": "なしを選択", "xloc": [ - "default.handlebars->33->1126", - "default.handlebars->33->1864", - "default.handlebars->33->2051", - "default.handlebars->33->2134", - "default.handlebars->33->515", + "default.handlebars->33->1128", + "default.handlebars->33->1866", + "default.handlebars->33->2054", + "default.handlebars->33->2137", + "default.handlebars->33->517", "default.handlebars->meshContextMenu->cxselectnone", "sharing.handlebars->11->57" ] @@ -37638,7 +37647,7 @@ "nl": "Selecteer een apparaat om te registreren voor verificatie via pushmeldingen. Eenmaal geselecteerd, zal het apparaat om bevestiging vragen.", "zh-chs": "选择要注册推送通知身份验证的设备。选择后,设备将提示确认。", "xloc": [ - "default.handlebars->33->1287" + "default.handlebars->33->1289" ] }, { @@ -37658,7 +37667,7 @@ "zh-cht": "為所選裝置選擇一個新群", "ja": "選択したデバイスの新しいグループを選択します", "xloc": [ - "default.handlebars->33->958" + "default.handlebars->33->960" ] }, { @@ -37678,7 +37687,7 @@ "zh-cht": "選擇此裝置的新群", "ja": "このデバイスの新しいグループを選択してください", "xloc": [ - "default.handlebars->33->957" + "default.handlebars->33->959" ] }, { @@ -37698,7 +37707,7 @@ "zh-cht": "選擇要放置的節點", "ja": "配置するノードを選択します", "xloc": [ - "default.handlebars->33->635" + "default.handlebars->33->637" ] }, { @@ -37718,7 +37727,7 @@ "zh-cht": "選擇要在所有選定裝置上執行的操作。僅在擁有適當權限的情況下才能執行操作。", "ja": "選択したすべてのデバイスで実行する操作を選択します。アクションは適切な権限でのみ実行されます。", "xloc": [ - "default.handlebars->33->532" + "default.handlebars->33->534" ] }, { @@ -37738,8 +37747,8 @@ "zh-cht": "選擇要對所有選定用戶執行的操作。", "ja": "選択したすべてのユーザーに対して実行する操作を選択します。", "xloc": [ - "default.handlebars->33->2055", - "default.handlebars->33->2136" + "default.handlebars->33->2058", + "default.handlebars->33->2139" ] }, { @@ -37760,7 +37769,7 @@ "ja": "このデバイスで実行する操作を選択します。", "xloc": [ "default-mobile.handlebars->11->314", - "default.handlebars->33->902" + "default.handlebars->33->904" ] }, { @@ -37780,7 +37789,7 @@ "zh-cht": "選擇新密碼", "ja": "新しいパスワードを選択してください", "xloc": [ - "default.handlebars->33->1673" + "default.handlebars->33->1675" ] }, { @@ -37822,7 +37831,7 @@ "ja": "自己イベントのみ", "xloc": [ "default-mobile.handlebars->11->621", - "default.handlebars->33->1781" + "default.handlebars->33->1783" ] }, { @@ -37875,7 +37884,7 @@ "zh-cht": "發電郵", "ja": "メールを送る", "xloc": [ - "default.handlebars->33->2066" + "default.handlebars->33->2069" ] }, { @@ -37895,8 +37904,8 @@ "zh-cht": "發送MQTT消息", "ja": "MQTTメッセージを送信", "xloc": [ - "default.handlebars->33->517", - "default.handlebars->33->914" + "default.handlebars->33->519", + "default.handlebars->33->916" ] }, { @@ -37916,7 +37925,7 @@ "zh-cht": "發送MQTT消息", "ja": "MQTTメッセージを送信", "xloc": [ - "default.handlebars->33->950" + "default.handlebars->33->952" ] }, { @@ -37936,7 +37945,7 @@ "zh-cht": "發送簡訊", "ja": "SMSを送信", "xloc": [ - "default.handlebars->33->2064" + "default.handlebars->33->2067" ] }, { @@ -37956,7 +37965,7 @@ "zh-cht": "發送短信給該用戶", "ja": "このユーザーにSMSメッセージを送信します", "xloc": [ - "default.handlebars->33->2267" + "default.handlebars->33->2270" ] }, { @@ -37976,7 +37985,7 @@ "zh-cht": "發送電郵給該用戶", "ja": "このユーザーにメールメッセージを送信する", "xloc": [ - "default.handlebars->33->2269" + "default.handlebars->33->2272" ] }, { @@ -37996,7 +38005,7 @@ "zh-cht": "向該群中的所有用戶發送通知。", "ja": "このグループのすべてのユーザーに通知を送信します。", "xloc": [ - "default.handlebars->33->2175" + "default.handlebars->33->2178" ] }, { @@ -38016,7 +38025,7 @@ "zh-cht": "向該用戶發送文本通知。", "ja": "このユーザーにテキスト通知を送信します。", "xloc": [ - "default.handlebars->33->2067" + "default.handlebars->33->2070" ] }, { @@ -38036,7 +38045,7 @@ "zh-cht": "發送電郵給用戶", "ja": "ユーザーにメールを送信", "xloc": [ - "default.handlebars->33->2047" + "default.handlebars->33->2050" ] }, { @@ -38076,7 +38085,7 @@ "zh-cht": "發送邀請電郵。", "ja": "招待メールを送信します。", "xloc": [ - "default.handlebars->33->2107" + "default.handlebars->33->2110" ] }, { @@ -38199,7 +38208,7 @@ "zh-cht": "發送用戶通知", "ja": "ユーザー通知を送信する", "xloc": [ - "default.handlebars->33->2271" + "default.handlebars->33->2274" ] }, { @@ -38246,7 +38255,7 @@ "zh-cht": "塞爾維亞", "ja": "セルビア語", "xloc": [ - "default.handlebars->33->1446" + "default.handlebars->33->1448" ] }, { @@ -38267,7 +38276,7 @@ "ja": "シリアル", "xloc": [ "default-mobile.handlebars->11->527", - "default.handlebars->33->1230" + "default.handlebars->33->1232" ] }, { @@ -38296,7 +38305,7 @@ "zh-cht": "伺服器備份", "ja": "サーバーバックアップ", "xloc": [ - "default.handlebars->33->2117" + "default.handlebars->33->2120" ] }, { @@ -38316,7 +38325,7 @@ "zh-cht": "伺服器憑證", "ja": "サーバー証明書", "xloc": [ - "default.handlebars->33->2487" + "default.handlebars->33->2490" ] }, { @@ -38350,7 +38359,7 @@ "zh-cht": "伺服器數據庫", "ja": "サーバーデータベース", "xloc": [ - "default.handlebars->33->2488" + "default.handlebars->33->2491" ] }, { @@ -38372,11 +38381,11 @@ "xloc": [ "default-mobile.handlebars->11->598", "default-mobile.handlebars->11->613", - "default.handlebars->33->1742", - "default.handlebars->33->1772", - "default.handlebars->33->2114", - "default.handlebars->33->824", - "default.handlebars->33->846" + "default.handlebars->33->1744", + "default.handlebars->33->1774", + "default.handlebars->33->2117", + "default.handlebars->33->826", + "default.handlebars->33->848" ] }, { @@ -38410,7 +38419,7 @@ "zh-chs": "服务器限制", "xloc": [ "default-mobile.handlebars->11->639", - "default.handlebars->33->2382" + "default.handlebars->33->2385" ] }, { @@ -38444,8 +38453,8 @@ "zh-cht": "伺服器權限", "ja": "サーバーの許可", "xloc": [ - "default.handlebars->33->2039", - "default.handlebars->33->2128" + "default.handlebars->33->2042", + "default.handlebars->33->2131" ] }, { @@ -38465,7 +38474,7 @@ "zh-cht": "伺服器配額", "ja": "サーバークォータ", "xloc": [ - "default.handlebars->33->2233" + "default.handlebars->33->2236" ] }, { @@ -38485,7 +38494,7 @@ "zh-cht": "伺服器還原", "ja": "サーバーの復元", "xloc": [ - "default.handlebars->33->2118" + "default.handlebars->33->2121" ] }, { @@ -38505,7 +38514,7 @@ "zh-cht": "伺服器權限", "ja": "サーバーの権利", "xloc": [ - "default.handlebars->33->2232" + "default.handlebars->33->2235" ] }, { @@ -38525,7 +38534,7 @@ "zh-cht": "伺服器狀態", "ja": "サーバー状態", "xloc": [ - "default.handlebars->33->2420" + "default.handlebars->33->2423" ] }, { @@ -38565,7 +38574,7 @@ "zh-cht": "伺服器追蹤", "ja": "サーバートレース", "xloc": [ - "default.handlebars->33->2500" + "default.handlebars->33->2503" ] }, { @@ -38579,7 +38588,7 @@ "ru": "Событие трассировки сервера", "zh-chs": "服务器跟踪事件", "xloc": [ - "default.handlebars->33->2479" + "default.handlebars->33->2482" ] }, { @@ -38640,7 +38649,7 @@ "zh-cht": "伺服器更新", "ja": "サーバーの更新", "xloc": [ - "default.handlebars->33->2119" + "default.handlebars->33->2122" ] }, { @@ -38825,7 +38834,7 @@ "zh-cht": "ServerStats.csv", "ja": "ServerStats.csv", "xloc": [ - "default.handlebars->33->2478" + "default.handlebars->33->2481" ] }, { @@ -38845,7 +38854,7 @@ "zh-cht": "服務詳情", "ja": "サービスの詳細", "xloc": [ - "default.handlebars->33->1075" + "default.handlebars->33->1077" ] }, { @@ -38885,7 +38894,7 @@ "zh-cht": "節", "ja": "セッション", "xloc": [ - "default.handlebars->33->2343", + "default.handlebars->33->2346", "ssh.handlebars->3->10" ] }, @@ -38906,7 +38915,7 @@ "zh-cht": "會議訊息", "ja": "セッション情報", "xloc": [ - "default.handlebars->33->1021", + "default.handlebars->33->1023", "sharing.handlebars->11->18" ] }, @@ -38923,8 +38932,8 @@ "xloc": [ "default-mobile.handlebars->11->407", "default-mobile.handlebars->11->419", - "default.handlebars->33->1092", - "default.handlebars->33->1113" + "default.handlebars->33->1094", + "default.handlebars->33->1115" ] }, { @@ -38977,8 +38986,8 @@ "xloc": [ "default-mobile.handlebars->11->408", "default-mobile.handlebars->11->420", - "default.handlebars->33->1093", - "default.handlebars->33->1114" + "default.handlebars->33->1095", + "default.handlebars->33->1116" ] }, { @@ -39063,7 +39072,7 @@ "zh-cht": "設置標籤", "ja": "タグを設定する", "xloc": [ - "default.handlebars->33->550" + "default.handlebars->33->552" ] }, { @@ -39083,7 +39092,7 @@ "zh-cht": "設置剪貼板內容,{0}個字節", "ja": "クリップボードコンテンツの設定、{0}バイト", "xloc": [ - "default.handlebars->33->1906" + "default.handlebars->33->1908" ] }, { @@ -39124,7 +39133,7 @@ "zh-cht": "設定檔案", "ja": "設定ファイル", "xloc": [ - "default.handlebars->33->451" + "default.handlebars->33->453" ] }, { @@ -39166,7 +39175,7 @@ "ja": "セットアップ", "xloc": [ "agent-translations.json", - "default.handlebars->33->1650", + "default.handlebars->33->1652", "default.handlebars->33->340" ] }, @@ -39221,7 +39230,7 @@ "zh-cht": "將此服務器設置為自動將備份上傳到Google雲端硬盤。首先為您的帳戶創建並輸入Google Drive ClientID和ClientSecret。", "ja": "バックアップをGoogleドライブに自動的にアップロードするようにこのサーバーを設定します。まず、アカウントのGoogleドライブのClientIDとClientSecretを作成して入力します。", "xloc": [ - "default.handlebars->33->1581" + "default.handlebars->33->1583" ] }, { @@ -39268,7 +39277,7 @@ "zh-cht": "共享", "ja": "共有", "xloc": [ - "default.handlebars->33->751" + "default.handlebars->33->753" ] }, { @@ -39289,7 +39298,7 @@ "ja": "デバイスを共有", "xloc": [ "default.handlebars->33->224", - "default.handlebars->33->901" + "default.handlebars->33->903" ] }, { @@ -39329,7 +39338,7 @@ "zh-cht": "共享過程", "ja": "SharedProcess", "xloc": [ - "default.handlebars->33->1069" + "default.handlebars->33->1071" ] }, { @@ -39387,8 +39396,8 @@ "xloc": [ "default-mobile.handlebars->11->385", "default-mobile.handlebars->11->389", - "default.handlebars->33->1045", - "default.handlebars->33->1049" + "default.handlebars->33->1047", + "default.handlebars->33->1051" ] }, { @@ -39598,7 +39607,7 @@ "ja": "自分のイベントのみを表示", "xloc": [ "default-mobile.handlebars->11->601", - "default.handlebars->33->1745" + "default.handlebars->33->1747" ] }, { @@ -39627,7 +39636,7 @@ "zh-cht": "顯示連接工具欄", "ja": "接続ツールバーを表示", "xloc": [ - "default.handlebars->33->1706" + "default.handlebars->33->1708" ] }, { @@ -39667,7 +39676,7 @@ "zh-cht": "顯示裝置位置訊息", "ja": "デバイスの位置情報を表示する", "xloc": [ - "default.handlebars->33->759" + "default.handlebars->33->761" ] }, { @@ -39687,7 +39696,7 @@ "zh-cht": "顯示裝置網絡介面訊息", "ja": "デバイスのネットワークインターフェイス情報を表示する", "xloc": [ - "default.handlebars->33->757" + "default.handlebars->33->759" ] }, { @@ -39727,8 +39736,8 @@ "zh-cht": "顯示1分鐘", "ja": "1分間表示", "xloc": [ - "default.handlebars->33->2070", - "default.handlebars->33->2093" + "default.handlebars->33->2073", + "default.handlebars->33->2096" ] }, { @@ -39748,8 +39757,8 @@ "zh-cht": "顯示10秒", "ja": "10秒間表示", "xloc": [ - "default.handlebars->33->2069", - "default.handlebars->33->2092" + "default.handlebars->33->2072", + "default.handlebars->33->2095" ] }, { @@ -39769,8 +39778,8 @@ "zh-cht": "顯示5分鐘", "ja": "5分間表示", "xloc": [ - "default.handlebars->33->2071", - "default.handlebars->33->2094" + "default.handlebars->33->2074", + "default.handlebars->33->2097" ] }, { @@ -39790,8 +39799,8 @@ "zh-cht": "顯示消息,直到被用戶拒絕", "ja": "ユーザーが閉じるまでメッセージを表示する", "xloc": [ - "default.handlebars->33->2068", - "default.handlebars->33->2091" + "default.handlebars->33->2071", + "default.handlebars->33->2094" ] }, { @@ -39994,8 +40003,8 @@ "zh-cht": "簡單管理員控制模式(ACM)", "ja": "シンプル管理制御モード(ACM)", "xloc": [ - "default.handlebars->33->1641", - "default.handlebars->33->1663" + "default.handlebars->33->1643", + "default.handlebars->33->1665" ] }, { @@ -40015,8 +40024,8 @@ "zh-cht": "簡單客戶端控制模式(CCM)", "ja": "シンプルクライアントコントロールモード(CCM)", "xloc": [ - "default.handlebars->33->1639", - "default.handlebars->33->1667" + "default.handlebars->33->1641", + "default.handlebars->33->1669" ] }, { @@ -40036,7 +40045,7 @@ "zh-cht": "信地", "ja": "シンディ", "xloc": [ - "default.handlebars->33->1444" + "default.handlebars->33->1446" ] }, { @@ -40056,7 +40065,7 @@ "zh-cht": "僧伽羅文", "ja": "シンハラ語", "xloc": [ - "default.handlebars->33->1445" + "default.handlebars->33->1447" ] }, { @@ -40107,8 +40116,8 @@ "zh-cht": "尺寸", "ja": "サイズ", "xloc": [ - "default.handlebars->33->2346", - "default.handlebars->33->2367", + "default.handlebars->33->2349", + "default.handlebars->33->2370", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSize" ] }, @@ -40129,7 +40138,7 @@ "zh-cht": "縮放:100%", "ja": "サイズ:100%", "xloc": [ - "default.handlebars->33->1155", + "default.handlebars->33->1157", "sharing.handlebars->11->85" ] }, @@ -40150,7 +40159,7 @@ "zh-cht": "縮放:125%", "ja": "サイズ:125%", "xloc": [ - "default.handlebars->33->1156", + "default.handlebars->33->1158", "sharing.handlebars->11->86" ] }, @@ -40171,7 +40180,7 @@ "zh-cht": "縮放:150%", "ja": "サイズ:150%", "xloc": [ - "default.handlebars->33->1157", + "default.handlebars->33->1159", "sharing.handlebars->11->87" ] }, @@ -40192,7 +40201,7 @@ "zh-cht": "縮放:200%", "ja": "サイズ:200%", "xloc": [ - "default.handlebars->33->1158", + "default.handlebars->33->1160", "sharing.handlebars->11->88" ] }, @@ -40220,7 +40229,7 @@ "default.handlebars->33->2", "default.handlebars->33->3", "default.handlebars->33->4", - "default.handlebars->33->911" + "default.handlebars->33->913" ] }, { @@ -40240,7 +40249,7 @@ "zh-cht": "把裝置休眠", "ja": "スリープデバイス", "xloc": [ - "default.handlebars->33->521" + "default.handlebars->33->523" ] }, { @@ -40262,8 +40271,8 @@ "xloc": [ "default-mobile.handlebars->11->222", "default-mobile.handlebars->11->223", - "default.handlebars->33->486", - "default.handlebars->33->488" + "default.handlebars->33->488", + "default.handlebars->33->490" ] }, { @@ -40283,7 +40292,7 @@ "zh-cht": "斯洛伐克文", "ja": "スロバキア", "xloc": [ - "default.handlebars->33->1447" + "default.handlebars->33->1449" ] }, { @@ -40303,7 +40312,7 @@ "zh-cht": "斯洛文尼亞文", "ja": "スロベニア語", "xloc": [ - "default.handlebars->33->1448" + "default.handlebars->33->1450" ] }, { @@ -40366,7 +40375,7 @@ "zh-cht": "小焦點", "ja": "小焦点", "xloc": [ - "default.handlebars->33->1027" + "default.handlebars->33->1029" ] }, { @@ -40387,7 +40396,7 @@ "ja": "ソフト切断エージェント", "xloc": [ "default-mobile.handlebars->11->560", - "default.handlebars->33->1264" + "default.handlebars->33->1266" ] }, { @@ -40408,7 +40417,7 @@ "ja": "ソフトオフ", "xloc": [ "default-mobile.handlebars->11->226", - "default.handlebars->33->494" + "default.handlebars->33->496" ] }, { @@ -40448,7 +40457,7 @@ "zh-cht": "索馬尼", "ja": "ソマニ", "xloc": [ - "default.handlebars->33->1449" + "default.handlebars->33->1451" ] }, { @@ -40468,7 +40477,7 @@ "zh-cht": "索比亞文", "ja": "ソルビアン", "xloc": [ - "default.handlebars->33->1450" + "default.handlebars->33->1452" ] }, { @@ -40640,7 +40649,7 @@ "zh-cht": "西班牙文", "ja": "スペイン語", "xloc": [ - "default.handlebars->33->1451" + "default.handlebars->33->1453" ] }, { @@ -40660,7 +40669,7 @@ "zh-cht": "西班牙文(阿根廷)", "ja": "スペイン語(アルゼンチン)", "xloc": [ - "default.handlebars->33->1452" + "default.handlebars->33->1454" ] }, { @@ -40680,7 +40689,7 @@ "zh-cht": "西班牙文(玻利維亞)", "ja": "スペイン語(ボリビア)", "xloc": [ - "default.handlebars->33->1453" + "default.handlebars->33->1455" ] }, { @@ -40700,7 +40709,7 @@ "zh-cht": "西班牙文(智利)", "ja": "スペイン語(チリ)", "xloc": [ - "default.handlebars->33->1454" + "default.handlebars->33->1456" ] }, { @@ -40720,7 +40729,7 @@ "zh-cht": "西班牙文(哥倫比亞)", "ja": "スペイン語(コロンビア)", "xloc": [ - "default.handlebars->33->1455" + "default.handlebars->33->1457" ] }, { @@ -40740,7 +40749,7 @@ "zh-cht": "西班牙文(哥斯達黎加)", "ja": "スペイン語(コスタリカ)", "xloc": [ - "default.handlebars->33->1456" + "default.handlebars->33->1458" ] }, { @@ -40760,7 +40769,7 @@ "zh-cht": "西班牙文(多米尼加共和國)", "ja": "スペイン語(ドミニカ共和国)", "xloc": [ - "default.handlebars->33->1457" + "default.handlebars->33->1459" ] }, { @@ -40780,7 +40789,7 @@ "zh-cht": "西班牙文(厄瓜多爾)", "ja": "スペイン語(エクアドル)", "xloc": [ - "default.handlebars->33->1458" + "default.handlebars->33->1460" ] }, { @@ -40800,7 +40809,7 @@ "zh-cht": "西班牙文(薩爾瓦多)", "ja": "スペイン語(エルサルバドル)", "xloc": [ - "default.handlebars->33->1459" + "default.handlebars->33->1461" ] }, { @@ -40820,7 +40829,7 @@ "zh-cht": "西班牙文(危地馬拉)", "ja": "スペイン語(グアテマラ)", "xloc": [ - "default.handlebars->33->1460" + "default.handlebars->33->1462" ] }, { @@ -40840,7 +40849,7 @@ "zh-cht": "西班牙文(洪都拉斯)", "ja": "スペイン語(ホンジュラス)", "xloc": [ - "default.handlebars->33->1461" + "default.handlebars->33->1463" ] }, { @@ -40860,7 +40869,7 @@ "zh-cht": "西班牙文(墨西哥)", "ja": "スペイン語(メキシコ)", "xloc": [ - "default.handlebars->33->1462" + "default.handlebars->33->1464" ] }, { @@ -40880,7 +40889,7 @@ "zh-cht": "西班牙文(尼加拉瓜)", "ja": "スペイン語(ニカラグア)", "xloc": [ - "default.handlebars->33->1463" + "default.handlebars->33->1465" ] }, { @@ -40900,7 +40909,7 @@ "zh-cht": "西班牙文(巴拿馬)", "ja": "スペイン語(パナマ)", "xloc": [ - "default.handlebars->33->1464" + "default.handlebars->33->1466" ] }, { @@ -40920,7 +40929,7 @@ "zh-cht": "西班牙文(巴拉圭)", "ja": "スペイン語(パラグアイ)", "xloc": [ - "default.handlebars->33->1465" + "default.handlebars->33->1467" ] }, { @@ -40940,7 +40949,7 @@ "zh-cht": "西班牙文(秘魯)", "ja": "スペイン語(ペルー)", "xloc": [ - "default.handlebars->33->1466" + "default.handlebars->33->1468" ] }, { @@ -40960,7 +40969,7 @@ "zh-cht": "西班牙文(波多黎各)", "ja": "スペイン語(プエルトリコ)", "xloc": [ - "default.handlebars->33->1467" + "default.handlebars->33->1469" ] }, { @@ -40980,7 +40989,7 @@ "zh-cht": "西班牙文(西班牙)", "ja": "スペイン語(スペイン)", "xloc": [ - "default.handlebars->33->1468" + "default.handlebars->33->1470" ] }, { @@ -41000,7 +41009,7 @@ "zh-cht": "西班牙文(烏拉圭)", "ja": "スペイン語(ウルグアイ)", "xloc": [ - "default.handlebars->33->1469" + "default.handlebars->33->1471" ] }, { @@ -41020,7 +41029,7 @@ "zh-cht": "西班牙文(委內瑞拉)", "ja": "スペイン語(ベネズエラ)", "xloc": [ - "default.handlebars->33->1470" + "default.handlebars->33->1472" ] }, { @@ -41100,7 +41109,7 @@ "zh-cht": "開始", "ja": "開始", "xloc": [ - "default.handlebars->33->1072" + "default.handlebars->33->1074" ] }, { @@ -41137,10 +41146,10 @@ "zh-cht": "開始時間", "ja": "始まる時間", "xloc": [ - "default.handlebars->33->1017", + "default.handlebars->33->1019", "default.handlebars->33->209", - "default.handlebars->33->2344", - "default.handlebars->33->2369", + "default.handlebars->33->2347", + "default.handlebars->33->2372", "sharing.handlebars->11->14" ] }, @@ -41195,7 +41204,7 @@ "zh-cht": "啟動桌面多路復用會話", "ja": "デスクトップマルチプレックスセッションを開始しました", "xloc": [ - "default.handlebars->33->1890" + "default.handlebars->33->1892" ] }, { @@ -41215,7 +41224,7 @@ "zh-cht": "從{1}到{2}開始了桌面會話“{0}”", "ja": "デスクトップセッション「{0}」を{1}から{2}に開始しました", "xloc": [ - "default.handlebars->33->1899" + "default.handlebars->33->1901" ] }, { @@ -41235,7 +41244,7 @@ "zh-cht": "從{1}到{2}開始文件管理會話“{0}”", "ja": "ファイル管理セッション「{0}」を{1}から{2}に開始しました", "xloc": [ - "default.handlebars->33->1900" + "default.handlebars->33->1902" ] }, { @@ -41255,7 +41264,7 @@ "zh-cht": "從{1}到{2}開始中繼會話“{0}”", "ja": "リレーセッション\\\"{0}\\\"を{1}から{2}に開始しました", "xloc": [ - "default.handlebars->33->1897" + "default.handlebars->33->1899" ] }, { @@ -41275,7 +41284,7 @@ "zh-cht": "使用Toast通知啟動遠程桌面", "ja": "トースト通知でリモートデスクトップを開始", "xloc": [ - "default.handlebars->33->1919" + "default.handlebars->33->1921" ] }, { @@ -41295,7 +41304,7 @@ "zh-cht": "啟動遠程桌面,而無需通知", "ja": "通知なしでリモートデスクトップを開始", "xloc": [ - "default.handlebars->33->1920" + "default.handlebars->33->1922" ] }, { @@ -41315,7 +41324,7 @@ "zh-cht": "啟動帶有Toast通知的遠程文件", "ja": "トースト通知でリモートファイルを開始", "xloc": [ - "default.handlebars->33->1926" + "default.handlebars->33->1928" ] }, { @@ -41335,7 +41344,7 @@ "zh-cht": "已啟動的遠程文件,恕不另行通知", "ja": "通知なしでリモートファイルを開始", "xloc": [ - "default.handlebars->33->1927" + "default.handlebars->33->1929" ] }, { @@ -41355,7 +41364,7 @@ "zh-cht": "從{1}到{2}開始了終端會話“{0}”", "ja": "ターミナルセッション「{0}」を{1}から{2}に開始しました", "xloc": [ - "default.handlebars->33->1898" + "default.handlebars->33->1900" ] }, { @@ -41375,7 +41384,7 @@ "zh-cht": "現在開始", "ja": "今から", "xloc": [ - "default.handlebars->33->894" + "default.handlebars->33->896" ] }, { @@ -41395,7 +41404,7 @@ "zh-cht": "接受本地用戶後啟動遠程桌面", "ja": "ローカルユーザーが承諾した後のリモートデスクトップの開始", "xloc": [ - "default.handlebars->33->1914" + "default.handlebars->33->1916" ] }, { @@ -41415,7 +41424,7 @@ "zh-cht": "本地用戶接受後啟動遠程文件", "ja": "ローカルユーザーが受け入れた後のリモートファイルの開始", "xloc": [ - "default.handlebars->33->1924" + "default.handlebars->33->1926" ] }, { @@ -41444,7 +41453,7 @@ "zh-cht": "狀態", "ja": "状態", "xloc": [ - "default.handlebars->33->1063", + "default.handlebars->33->1065", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsServiceTab->deskToolsServiceHeader->1" ] }, @@ -41494,8 +41503,8 @@ "zh-cht": "狀態", "ja": "状態", "xloc": [ - "default.handlebars->33->2289", - "default.handlebars->33->2362", + "default.handlebars->33->2292", + "default.handlebars->33->2365", "default.handlebars->container->column_l->p42->p42tbl->1->0->7" ] }, @@ -41516,7 +41525,7 @@ "zh-cht": "停止", "ja": "やめる", "xloc": [ - "default.handlebars->33->1073" + "default.handlebars->33->1075" ] }, { @@ -41536,7 +41545,7 @@ "zh-cht": "停止進程", "ja": "プロセスを停止", "xloc": [ - "default.handlebars->33->1060" + "default.handlebars->33->1062" ] }, { @@ -41556,7 +41565,7 @@ "zh-cht": "停止進程#{0} “{1}”?", "ja": "プロセス#{0} \\\"{1}\\\"を停止しますか?", "xloc": [ - "default.handlebars->33->1081" + "default.handlebars->33->1083" ] }, { @@ -41612,7 +41621,7 @@ "ja": "ストレージ", "xloc": [ "default-mobile.handlebars->11->543", - "default.handlebars->33->1246" + "default.handlebars->33->1248" ] }, { @@ -41652,7 +41661,7 @@ "zh-cht": "超出儲存空間", "ja": "ストレージ制限を超えています", "xloc": [ - "default.handlebars->33->1845" + "default.handlebars->33->1847" ] }, { @@ -41672,7 +41681,7 @@ "zh-cht": "強", "ja": "強い", "xloc": [ - "default.handlebars->33->1564" + "default.handlebars->33->1566" ] }, { @@ -41717,7 +41726,7 @@ "zh-cht": "主題", "ja": "件名", "xloc": [ - "default.handlebars->33->2065" + "default.handlebars->33->2068" ] }, { @@ -41817,7 +41826,7 @@ "zh-cht": "蘇圖", "ja": "ストゥ", "xloc": [ - "default.handlebars->33->1471" + "default.handlebars->33->1473" ] }, { @@ -41837,7 +41846,7 @@ "zh-cht": "斯瓦希里文", "ja": "スワヒリ語", "xloc": [ - "default.handlebars->33->1472" + "default.handlebars->33->1474" ] }, { @@ -41878,7 +41887,7 @@ "zh-cht": "瑞典文", "ja": "スウェーデンの", "xloc": [ - "default.handlebars->33->1473" + "default.handlebars->33->1475" ] }, { @@ -41898,7 +41907,7 @@ "zh-cht": "瑞典文(芬蘭)", "ja": "スウェーデン語(フィンランド)", "xloc": [ - "default.handlebars->33->1474" + "default.handlebars->33->1476" ] }, { @@ -41918,7 +41927,7 @@ "zh-cht": "瑞典文(瑞典)", "ja": "スウェーデン語(スウェーデン)", "xloc": [ - "default.handlebars->33->1475" + "default.handlebars->33->1477" ] }, { @@ -41938,7 +41947,7 @@ "zh-cht": "將英特爾AMT切換到管理員控制模式(ACM)。", "ja": "Intel AMTを管理制御モード(ACM)に切り替えます。", "xloc": [ - "default.handlebars->33->1655" + "default.handlebars->33->1657" ] }, { @@ -41958,7 +41967,19 @@ "zh-cht": "將伺服器裝置名稱同步到主機名稱", "ja": "サーバーのデバイス名をホスト名に同期する", "xloc": [ - "default.handlebars->33->1714" + "default.handlebars->33->1716" + ] + }, + { + "en": "System Tray, Always connected", + "xloc": [ + "default.handlebars->33->443" + ] + }, + { + "en": "System Tray, Connect on user request", + "xloc": [ + "default.handlebars->33->442" ] }, { @@ -42122,7 +42143,7 @@ "ja": "TLS", "xloc": [ "default-mobile.handlebars->11->276", - "default.handlebars->33->677" + "default.handlebars->33->679" ] }, { @@ -42143,7 +42164,7 @@ "ja": "TLSがセットアップされていません", "xloc": [ "default-mobile.handlebars->11->517", - "default.handlebars->33->1220" + "default.handlebars->33->1222" ] }, { @@ -42165,7 +42186,7 @@ "xloc": [ "default-mobile.handlebars->11->347", "default.handlebars->33->365", - "default.handlebars->33->946" + "default.handlebars->33->948" ] }, { @@ -42187,7 +42208,7 @@ "xloc": [ "default-mobile.handlebars->11->370", "default-mobile.handlebars->dialog->3->dialog3->deskkeys->3", - "default.handlebars->33->1030" + "default.handlebars->33->1032" ] }, { @@ -42207,8 +42228,8 @@ "zh-cht": "標籤1,標籤2,標籤3", "ja": "Tag1、Tag2、Tag3", "xloc": [ - "default.handlebars->33->1007", - "default.handlebars->33->553" + "default.handlebars->33->1009", + "default.handlebars->33->555" ] }, { @@ -42251,10 +42272,10 @@ "default-mobile.handlebars->11->295", "default-mobile.handlebars->11->296", "default-mobile.handlebars->11->358", - "default.handlebars->33->1006", - "default.handlebars->33->552", - "default.handlebars->33->735", - "default.handlebars->33->736", + "default.handlebars->33->1008", + "default.handlebars->33->554", + "default.handlebars->33->737", + "default.handlebars->33->738", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->7" ] }, @@ -42289,7 +42310,7 @@ "zh-cht": "泰米爾文", "ja": "タミル語", "xloc": [ - "default.handlebars->33->1476" + "default.handlebars->33->1478" ] }, { @@ -42309,7 +42330,7 @@ "zh-cht": "塔塔爾族", "ja": "タタール", "xloc": [ - "default.handlebars->33->1477" + "default.handlebars->33->1479" ] }, { @@ -42329,7 +42350,7 @@ "zh-cht": "泰盧加", "ja": "テルガ", "xloc": [ - "default.handlebars->33->1478" + "default.handlebars->33->1480" ] }, { @@ -42351,13 +42372,13 @@ "xloc": [ "default-mobile.handlebars->11->200", "default-mobile.handlebars->11->310", - "default.handlebars->33->1707", - "default.handlebars->33->2356", - "default.handlebars->33->2457", + "default.handlebars->33->1709", + "default.handlebars->33->2359", + "default.handlebars->33->2460", "default.handlebars->33->314", - "default.handlebars->33->622", - "default.handlebars->33->802", - "default.handlebars->33->871", + "default.handlebars->33->624", + "default.handlebars->33->804", + "default.handlebars->33->873", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevTerminal", "default.handlebars->contextMenu->cxterminal", "sharing.handlebars->LeftSideToolBar" @@ -42374,8 +42395,8 @@ "ru": "Терминал + Файлы", "zh-chs": "终端 + 文件", "xloc": [ - "default.handlebars->33->806", - "default.handlebars->33->874" + "default.handlebars->33->808", + "default.handlebars->33->876" ] }, { @@ -42415,10 +42436,10 @@ "zh-cht": "終端機通知", "ja": "ターミナル通知", "xloc": [ - "default.handlebars->33->1624", - "default.handlebars->33->2164", - "default.handlebars->33->2251", - "default.handlebars->33->716" + "default.handlebars->33->1626", + "default.handlebars->33->2167", + "default.handlebars->33->2254", + "default.handlebars->33->718" ] }, { @@ -42438,10 +42459,10 @@ "zh-cht": "終端機提示", "ja": "端末プロンプト", "xloc": [ - "default.handlebars->33->1623", - "default.handlebars->33->2163", - "default.handlebars->33->2250", - "default.handlebars->33->715" + "default.handlebars->33->1625", + "default.handlebars->33->2166", + "default.handlebars->33->2253", + "default.handlebars->33->717" ] }, { @@ -42454,7 +42475,7 @@ "nl": "Terminal sessie", "zh-chs": "终端会话", "xloc": [ - "default.handlebars->33->2349" + "default.handlebars->33->2352" ] }, { @@ -42563,7 +42584,7 @@ "zh-cht": "泰國", "ja": "タイ語", "xloc": [ - "default.handlebars->33->1479" + "default.handlebars->33->1481" ] }, { @@ -42641,7 +42662,7 @@ "zh-cht": "此電腦所屬的裝置群的名稱", "ja": "このコンピューターが属するデバイスグループの名前", "xloc": [ - "default.handlebars->33->649" + "default.handlebars->33->651" ] }, { @@ -42661,7 +42682,7 @@ "zh-cht": "此電腦所屬的裝置群的名稱。", "ja": "このコンピューターが属するデバイスグループの名前。", "xloc": [ - "default.handlebars->33->647" + "default.handlebars->33->649" ] }, { @@ -42681,8 +42702,8 @@ "zh-cht": "此電腦在操作系統中已設置的的名稱", "ja": "オペレーティングシステムに設定されているこのコンピューターの名前", "xloc": [ - "default.handlebars->33->650", - "default.handlebars->33->652" + "default.handlebars->33->652", + "default.handlebars->33->654" ] }, { @@ -42703,7 +42724,7 @@ "ja": "現在、通知はありません", "xloc": [ "default-mobile.handlebars->11->634", - "default.handlebars->33->2377" + "default.handlebars->33->2380" ] }, { @@ -42718,7 +42739,7 @@ "zh-chs": "自上次登录以来,此帐户已有 {0} 次登录尝试失败。", "xloc": [ "default-mobile.handlebars->11->655", - "default.handlebars->33->2398" + "default.handlebars->33->2401" ] }, { @@ -42788,7 +42809,7 @@ "ja": "このアカウントには、新しいデバイスグループを作成する権限がありません。", "xloc": [ "default-mobile.handlebars->11->116", - "default.handlebars->33->1549" + "default.handlebars->33->1551" ] }, { @@ -42808,7 +42829,7 @@ "zh-cht": "這是OS圖形用戶界面上的可執行檔案。你需要'chmod + x meshagent'並運行此檔案。", "ja": "これは、グラフィカルユーザーインターフェイスを備えたOS上で実行可能なファイルです。 'chmod + x meshagent'を実行して、このファイルを実行する必要があります。", "xloc": [ - "default.handlebars->33->474" + "default.handlebars->33->476" ] }, { @@ -42848,6 +42869,12 @@ "invite.handlebars->container->column_l->3" ] }, + { + "en": "This is an old agent version, consider updating.", + "xloc": [ + "default.handlebars->33->2003" + ] + }, { "cs": "Toto není bezpečná zásada, protože aktivaci budou provádět agenti.", "de": "Dies ist keine sichere Richtlinie, da Agenten die Aktivierung durchführen.", @@ -42882,7 +42909,7 @@ "zh-cht": "這是推薦的策略。英特爾®AMT激活和管理是完全自動化的,服務器將嘗試最大程度地利用硬件管理。", "ja": "これが推奨されるポリシーです。インテル®AMTのアクティブ化と管理は完全に自動化されており、サーバーはハードウェア管理を最大限に活用しようとします。", "xloc": [ - "default.handlebars->33->1692" + "default.handlebars->33->1694" ] }, { @@ -42923,7 +42950,7 @@ "zh-cht": "此政策不會影響採用ACM模式的Intel® AMT的裝置。", "ja": "このポリシーは、Intel®を搭載したデバイスには影響しません。 ACMモードのAMT。", "xloc": [ - "default.handlebars->33->1689" + "default.handlebars->33->1691" ] }, { @@ -43015,7 +43042,7 @@ "zh-cht": "這會在此裝置的事件日誌中增加一個記錄。", "ja": "これにより、このデバイスのイベントログにエントリが追加されます。", "xloc": [ - "default.handlebars->33->856" + "default.handlebars->33->858" ] }, { @@ -43052,7 +43079,7 @@ "zh-cht": "這不會從伺服器上刪除該裝置,但是該裝置將不再能夠連接到伺服器。該裝置的所有遠程訪問都將丟失。該設備必須連線,此命令才能起作用。", "ja": "これによりサーバーからデバイスが削除されることはありませんが、デバイスはサーバーに接続できなくなります。デバイスへのすべてのリモートアクセスが失われます。このコマンドが機能するには、デバイスが接続されている必要があります。", "xloc": [ - "default.handlebars->33->953" + "default.handlebars->33->955" ] }, { @@ -43072,7 +43099,7 @@ "zh-cht": "這不會從伺服器上刪除該裝置,但是該裝置將不再能夠連接到伺服器。該裝置的所有遠程訪問都將丟失。該設備必須連線,此命令才能起作用。", "ja": "このデバイスはサーバーから削除されませんが、デバイスはサーバーに接続できなくなります。デバイスへのすべてのリモートアクセスが失われます。このコマンドが機能するには、デバイスが接続されている必要があります。", "xloc": [ - "default.handlebars->33->954" + "default.handlebars->33->956" ] }, { @@ -43092,7 +43119,7 @@ "zh-cht": "蒂格雷", "ja": "ティグレ", "xloc": [ - "default.handlebars->33->1480" + "default.handlebars->33->1482" ] }, { @@ -43113,7 +43140,7 @@ "ja": "時間", "xloc": [ "default-mobile.handlebars->11->317", - "default.handlebars->33->905", + "default.handlebars->33->907", "player.handlebars->3->1" ] }, @@ -43134,7 +43161,7 @@ "zh-cht": "時間範圍", "ja": "時間範囲", "xloc": [ - "default.handlebars->33->897" + "default.handlebars->33->899" ] }, { @@ -43154,7 +43181,7 @@ "zh-cht": "時間跨度", "ja": "期間", "xloc": [ - "default.handlebars->33->2004" + "default.handlebars->33->2007" ] }, { @@ -43174,7 +43201,7 @@ "zh-cht": "時間範圍", "ja": "時間範囲", "xloc": [ - "default.handlebars->33->895" + "default.handlebars->33->897" ] }, { @@ -43195,7 +43222,7 @@ "ja": "タイムアウト", "xloc": [ "default-mobile.handlebars->11->364", - "default.handlebars->33->1012", + "default.handlebars->33->1014", "sharing.handlebars->11->31", "sharing.handlebars->11->9" ] @@ -43217,7 +43244,7 @@ "zh-cht": "標題", "ja": "題名", "xloc": [ - "default.handlebars->33->558" + "default.handlebars->33->560" ] }, { @@ -43236,7 +43263,7 @@ "zh-chs": "要将计算机添加到\\\"{0}\\\",请运行以下命令。命令需要root凭证。", "zh-cht": "要將電腦新增到\\\"{0}\\\",請運行以下命令。命令需要root憑據。", "xloc": [ - "default.handlebars->33->453" + "default.handlebars->33->455" ] }, { @@ -43250,7 +43277,7 @@ "ru": "Чтобы добавить мобильное устройство в группу \\\"{0}\\\", загрузите приложение MeshAgent и отсканируйте этот QR-код.", "zh-chs": "要将移动设备添加到组“{0}”,请下载 MeshAgent 应用程序并扫描此二维码。", "xloc": [ - "default.handlebars->33->460" + "default.handlebars->33->462" ] }, { @@ -43321,7 +43348,7 @@ "zh-cht": "要將新電腦新增到裝置群“ {0} ”,請下載mesh agent並安裝該電腦以進行管理。這agent中已嵌入了伺服器和裝置群訊息。", "ja": "デバイスグループ\\\"{0}\\\"に新しいコンピューターを追加するには、メッシュエージェントをダウンロードし、管理するコンピューターにインストールします。このエージェントには、サーバーとデバイスグループの情報が埋め込まれています。", "xloc": [ - "default.handlebars->33->442" + "default.handlebars->33->444" ] }, { @@ -43341,7 +43368,7 @@ "zh-cht": "要將新電腦新增到裝置群“ {0} ”,請下載mesh agent並安裝該電腦以進行管理。該代理安裝程序中已嵌入了伺服器和裝置群訊息。", "ja": "デバイスグループ\\\"{0}\\\"に新しいコンピューターを追加するには、メッシュエージェントをダウンロードし、管理するコンピューターにインストールします。このエージェントインストーラーには、サーバーとデバイスグループの情報が埋め込まれています。", "xloc": [ - "default.handlebars->33->456" + "default.handlebars->33->458" ] }, { @@ -43361,7 +43388,7 @@ "zh-cht": "要刪除此帳戶,請在下面的兩個框中鍵入帳戶密碼,然後單擊確定。", "ja": "このアカウントを削除するには、下の両方のボックスにアカウントのパスワードを入力して[OK]をクリックします。", "xloc": [ - "default.handlebars->33->1536" + "default.handlebars->33->1538" ] }, { @@ -43461,7 +43488,7 @@ "zh-cht": "要刪除mash agent,請下載以下檔案,運行該檔案,然後單擊“卸載”。", "ja": "メッシュエージェントを削除するには、以下のファイルをダウンロードして実行し、「アンインストール」をクリックします。", "xloc": [ - "default.handlebars->33->465" + "default.handlebars->33->467" ] }, { @@ -43481,7 +43508,7 @@ "zh-cht": "要刪除網格代理,請運行以下命令。需要root憑據。", "ja": "メッシュエージェントを削除するには、次のコマンドを実行します。ルート資格情報が必要になります。", "xloc": [ - "default.handlebars->33->472" + "default.handlebars->33->474" ] }, { @@ -43521,7 +43548,7 @@ "zh-cht": "吐司通知", "ja": "トースト通知", "xloc": [ - "default.handlebars->33->556" + "default.handlebars->33->558" ] }, { @@ -43807,7 +43834,7 @@ "ru": "Имя токена", "zh-chs": "代币名称", "xloc": [ - "default.handlebars->33->1522" + "default.handlebars->33->1524" ] }, { @@ -43886,7 +43913,7 @@ "zh-cht": "主題", "ja": "トピック", "xloc": [ - "default.handlebars->33->948" + "default.handlebars->33->950" ] }, { @@ -43946,7 +43973,7 @@ "zh-cht": "用於通過此伺服器連接到裝置的流量路由器", "ja": "このサーバーを介してデバイスに接続するために使用されるトラフィックルーター", "xloc": [ - "default.handlebars->33->761" + "default.handlebars->33->763" ] }, { @@ -44010,7 +44037,7 @@ "zh-chs": "尝试凭据", "xloc": [ "default-mobile.handlebars->11->281", - "default.handlebars->33->682" + "default.handlebars->33->684" ] }, { @@ -44030,7 +44057,7 @@ "zh-cht": "特松加", "ja": "ツォンガ", "xloc": [ - "default.handlebars->33->1481" + "default.handlebars->33->1483" ] }, { @@ -44050,7 +44077,7 @@ "zh-cht": "茨瓦納", "ja": "ツワナ", "xloc": [ - "default.handlebars->33->1482" + "default.handlebars->33->1484" ] }, { @@ -44079,7 +44106,7 @@ "zh-cht": "土耳其", "ja": "トルコ語", "xloc": [ - "default.handlebars->33->1483" + "default.handlebars->33->1485" ] }, { @@ -44099,7 +44126,7 @@ "zh-cht": "土庫曼文", "ja": "トルクメン", "xloc": [ - "default.handlebars->33->1484" + "default.handlebars->33->1486" ] }, { @@ -44150,12 +44177,12 @@ "xloc": [ "default-mobile.handlebars->11->122", "default-mobile.handlebars->11->569", - "default.handlebars->33->1070", - "default.handlebars->33->1557", - "default.handlebars->33->1610", - "default.handlebars->33->1664", + "default.handlebars->33->1072", + "default.handlebars->33->1559", + "default.handlebars->33->1612", + "default.handlebars->33->1666", "default.handlebars->33->351", - "default.handlebars->33->877", + "default.handlebars->33->879", "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3", "sharing.handlebars->p11->deskarea0->deskarea4->3" ] @@ -44177,7 +44204,7 @@ "zh-cht": "輸入密鑰名稱,選擇OTP框,然後按YubiKey™上的按鈕。", "ja": "キー名を入力し、OTPボックスを選択して、YubiKey™ のボタンを押します。", "xloc": [ - "default.handlebars->33->1293" + "default.handlebars->33->1295" ] }, { @@ -44197,7 +44224,7 @@ "zh-cht": "輸入要新增的密鑰的名稱。", "ja": "追加するキーの名前を入力します。", "xloc": [ - "default.handlebars->33->1290" + "default.handlebars->33->1292" ] }, { @@ -44256,7 +44283,7 @@ "zh-cht": "UTF8終端", "ja": "UTF8ターミナル", "xloc": [ - "default.handlebars->33->1094", + "default.handlebars->33->1096", "sharing.handlebars->11->33" ] }, @@ -44277,7 +44304,7 @@ "zh-cht": "烏克蘭", "ja": "ウクライナ語", "xloc": [ - "default.handlebars->33->1485" + "default.handlebars->33->1487" ] }, { @@ -44373,8 +44400,8 @@ "zh-cht": "在驗證電子郵件地址之前,無法訪問此功能。這是密碼恢復所必需的。轉到“我的帳戶”標籤以更改和驗證電子郵件地址。", "ja": "メールアドレスが確認されるまで、この機能にアクセスできません。これは、パスワードの回復に必要です。 [マイアカウント]タブに移動して、メールアドレスを変更して確認します。", "xloc": [ - "default.handlebars->33->1551", - "default.handlebars->33->638" + "default.handlebars->33->1553", + "default.handlebars->33->640" ] }, { @@ -44394,9 +44421,9 @@ "zh-cht": "在啟用兩因素身份驗證之前,無法訪問此功能。這是額外的安全性所必需的。轉到“我的帳戶”標籤,然後查看“帳戶安全性”部分。", "ja": "二要素認証が有効になるまで、この機能にアクセスできません。これは、セキュリティを強化するために必要です。 [マイアカウント]タブに移動し、[アカウントセキュリティ]セクションを確認します。", "xloc": [ - "default.handlebars->33->1553", - "default.handlebars->33->2506", - "default.handlebars->33->640" + "default.handlebars->33->1555", + "default.handlebars->33->2509", + "default.handlebars->33->642" ] }, { @@ -44411,7 +44438,7 @@ "zh-chs": "无法在此模式下添加用户", "xloc": [ "default-mobile.handlebars->11->651", - "default.handlebars->33->2394" + "default.handlebars->33->2397" ] }, { @@ -44584,9 +44611,9 @@ "xloc": [ "agent-translations.json", "default-mobile.handlebars->11->623", - "default.handlebars->33->1783", - "default.handlebars->33->829", - "default.handlebars->33->851" + "default.handlebars->33->1785", + "default.handlebars->33->831", + "default.handlebars->33->853" ] }, { @@ -44607,8 +44634,8 @@ "ja": "エージェントのアンインストール", "xloc": [ "default-mobile.handlebars->11->603", - "default.handlebars->33->519", - "default.handlebars->33->919" + "default.handlebars->33->521", + "default.handlebars->33->921" ] }, { @@ -44628,7 +44655,7 @@ "zh-cht": "卸載代理/刪除設備", "ja": "エージェントのアンインストール/デバイスの削除", "xloc": [ - "default.handlebars->33->1747" + "default.handlebars->33->1749" ] }, { @@ -44648,7 +44675,7 @@ "zh-cht": "卸載代理", "ja": "エージェントをアンインストールする", "xloc": [ - "default.handlebars->33->956" + "default.handlebars->33->958" ] }, { @@ -44678,25 +44705,25 @@ "default-mobile.handlebars->11->507", "default-mobile.handlebars->11->514", "default-mobile.handlebars->11->6", - "default.handlebars->33->1210", - "default.handlebars->33->1217", + "default.handlebars->33->1212", + "default.handlebars->33->1219", "default.handlebars->33->125", "default.handlebars->33->126", "default.handlebars->33->127", "default.handlebars->33->129", "default.handlebars->33->13", "default.handlebars->33->131", - "default.handlebars->33->1596", - "default.handlebars->33->1597", - "default.handlebars->33->2333", - "default.handlebars->33->2348", - "default.handlebars->33->2355", + "default.handlebars->33->1598", + "default.handlebars->33->1599", + "default.handlebars->33->2336", + "default.handlebars->33->2351", + "default.handlebars->33->2358", "default.handlebars->33->44", "default.handlebars->33->48", "default.handlebars->33->49", "default.handlebars->33->50", "default.handlebars->33->51", - "default.handlebars->33->514", + "default.handlebars->33->516", "default.handlebars->33->52" ] }, @@ -44718,7 +44745,7 @@ "ja": "不明な#{0}", "xloc": [ "default-mobile.handlebars->11->563", - "default.handlebars->33->1603" + "default.handlebars->33->1605" ] }, { @@ -44738,7 +44765,7 @@ "zh-cht": "未知動作", "ja": "不明なアクション", "xloc": [ - "default.handlebars->33->2426" + "default.handlebars->33->2429" ] }, { @@ -44758,8 +44785,8 @@ "zh-cht": "未知裝置", "ja": "未知のディバイス", "xloc": [ - "default.handlebars->33->2189", - "default.handlebars->33->2319" + "default.handlebars->33->2192", + "default.handlebars->33->2322" ] }, { @@ -44779,9 +44806,9 @@ "zh-cht": "未知裝置群", "ja": "不明なデバイスグループ", "xloc": [ - "default.handlebars->33->2183", - "default.handlebars->33->2307", - "default.handlebars->33->2430" + "default.handlebars->33->2186", + "default.handlebars->33->2310", + "default.handlebars->33->2433" ] }, { @@ -44801,7 +44828,7 @@ "zh-cht": "未知群組", "ja": "不明なグループ", "xloc": [ - "default.handlebars->33->2422" + "default.handlebars->33->2425" ] }, { @@ -44822,7 +44849,7 @@ "ja": "不明な状態", "xloc": [ "default-mobile.handlebars->11->270", - "default.handlebars->33->669" + "default.handlebars->33->671" ] }, { @@ -44842,7 +44869,7 @@ "zh-cht": "未知用戶群", "ja": "不明なユーザーグループ", "xloc": [ - "default.handlebars->33->2313" + "default.handlebars->33->2316" ] }, { @@ -44863,7 +44890,7 @@ "ja": "不明なバージョンと状態", "xloc": [ "default-mobile.handlebars->11->272", - "default.handlebars->33->671" + "default.handlebars->33->673" ] }, { @@ -44883,7 +44910,7 @@ "zh-cht": "密碼未知", "ja": "不明なパスワード", "xloc": [ - "default.handlebars->33->1680" + "default.handlebars->33->1682" ] }, { @@ -44903,7 +44930,7 @@ "zh-cht": "無限", "ja": "無制限", "xloc": [ - "default.handlebars->33->1506", + "default.handlebars->33->1508", "default.handlebars->33->202", "default.handlebars->33->404", "default.handlebars->33->418" @@ -44926,7 +44953,7 @@ "zh-cht": "解鎖帳戶", "ja": "アカウントのロックを解除", "xloc": [ - "default.handlebars->33->2058" + "default.handlebars->33->2061" ] }, { @@ -44940,7 +44967,7 @@ "ru": "Разблокировать мышь и клавиатуру удаленного пользователя?", "zh-chs": "解锁远程用户的鼠标和键盘?", "xloc": [ - "default.handlebars->33->864" + "default.handlebars->33->866" ] }, { @@ -44983,7 +45010,7 @@ "default-mobile.handlebars->11->381", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1", "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1", - "default.handlebars->33->1041", + "default.handlebars->33->1043", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", "default.handlebars->container->dialog->dialogBody->dialog3->d3servermode->d3serveraction", @@ -45007,7 +45034,7 @@ "zh-cht": "最新", "ja": "最新の", "xloc": [ - "default.handlebars->33->2511" + "default.handlebars->33->2514" ] }, { @@ -45030,8 +45057,8 @@ "agent-translations.json", "default-mobile.handlebars->11->463", "default-mobile.handlebars->11->465", - "default.handlebars->33->698", - "default.handlebars->33->700" + "default.handlebars->33->700", + "default.handlebars->33->702" ] }, { @@ -45089,11 +45116,11 @@ "default-mobile.handlebars->11->433", "default-mobile.handlebars->11->451", "default-mobile.handlebars->11->454", - "default.handlebars->33->1135", - "default.handlebars->33->1159", - "default.handlebars->33->1162", - "default.handlebars->33->1874", - "default.handlebars->33->1882", + "default.handlebars->33->1137", + "default.handlebars->33->1161", + "default.handlebars->33->1164", + "default.handlebars->33->1876", + "default.handlebars->33->1884", "default.handlebars->container->dialog->dialogBody->dialog3->d3localmode->1", "sharing.handlebars->11->65", "sharing.handlebars->11->89", @@ -45118,7 +45145,7 @@ "ja": "メッシュエージェントコアのアップロード", "xloc": [ "default-mobile.handlebars->11->562", - "default.handlebars->33->1266" + "default.handlebars->33->1268" ] }, { @@ -45139,7 +45166,7 @@ "ja": "コアファイルをアップロードする", "xloc": [ "default-mobile.handlebars->11->559", - "default.handlebars->33->1263" + "default.handlebars->33->1265" ] }, { @@ -45160,9 +45187,9 @@ "ja": "デフォルトのサーバーコアをアップロードする", "xloc": [ "default-mobile.handlebars->11->555", - "default.handlebars->33->1259", - "default.handlebars->33->531", - "default.handlebars->33->571" + "default.handlebars->33->1261", + "default.handlebars->33->533", + "default.handlebars->33->573" ] }, { @@ -45176,7 +45203,7 @@ "ru": "Загрузить серверное ядро по умолчанию на выбранные устройства?", "zh-chs": "在所选设备上上传默认服务器核心?", "xloc": [ - "default.handlebars->33->570" + "default.handlebars->33->572" ] }, { @@ -45196,7 +45223,7 @@ "zh-cht": "上傳文件", "ja": "ファイルをアップロードする", "xloc": [ - "default.handlebars->33->527" + "default.handlebars->33->529" ] }, { @@ -45237,7 +45264,7 @@ "ja": "復旧コアをアップロードする", "xloc": [ "default-mobile.handlebars->11->557", - "default.handlebars->33->1261" + "default.handlebars->33->1263" ] }, { @@ -45257,7 +45284,7 @@ "zh-cht": "將所選文件上傳到所有所選設備", "ja": "選択したすべてのデバイスに選択したファイルをアップロードする", "xloc": [ - "default.handlebars->33->560" + "default.handlebars->33->562" ] }, { @@ -45271,7 +45298,7 @@ "zh-chs": "上传小核", "xloc": [ "default-mobile.handlebars->11->558", - "default.handlebars->33->1262" + "default.handlebars->33->1264" ] }, { @@ -45292,8 +45319,8 @@ "ja": "アップロードにより1つのファイルが上書きされます。継続する?", "xloc": [ "default-mobile.handlebars->11->452", - "default.handlebars->33->1160", - "default.handlebars->33->1883", + "default.handlebars->33->1162", + "default.handlebars->33->1885", "sharing.handlebars->11->90" ] }, @@ -45315,8 +45342,8 @@ "ja": "アップロードは{0}ファイルを上書きします。継続する?", "xloc": [ "default-mobile.handlebars->11->453", - "default.handlebars->33->1161", - "default.handlebars->33->1884", + "default.handlebars->33->1163", + "default.handlebars->33->1886", "sharing.handlebars->11->91" ] }, @@ -45354,7 +45381,7 @@ "zh-cht": "上傳:“{0}”", "ja": "アップロード:「{0}」", "xloc": [ - "default.handlebars->33->1934" + "default.handlebars->33->1936" ] }, { @@ -45368,7 +45395,7 @@ "ru": "Загрузка: \\\"{0}\\\", Размер: {1}", "zh-chs": "上传:\\\"{0}\\\",大小:{1}", "xloc": [ - "default.handlebars->33->1989" + "default.handlebars->33->1991" ] }, { @@ -45388,7 +45415,7 @@ "zh-cht": "上索布族", "ja": "上ソルビア語", "xloc": [ - "default.handlebars->33->1486" + "default.handlebars->33->1488" ] }, { @@ -45408,7 +45435,7 @@ "zh-cht": "烏爾都文", "ja": "ウルドゥー語", "xloc": [ - "default.handlebars->33->1487" + "default.handlebars->33->1489" ] }, { @@ -45515,8 +45542,8 @@ "zh-cht": "用過的", "ja": "中古", "xloc": [ - "default.handlebars->33->2416", - "default.handlebars->33->2418" + "default.handlebars->33->2419", + "default.handlebars->33->2421" ] }, { @@ -45536,13 +45563,13 @@ "zh-cht": "用戶", "ja": "ユーザー", "xloc": [ - "default.handlebars->33->1659", - "default.handlebars->33->2011", - "default.handlebars->33->2040", - "default.handlebars->33->2179", - "default.handlebars->33->2374", + "default.handlebars->33->1661", + "default.handlebars->33->2014", + "default.handlebars->33->2043", + "default.handlebars->33->2182", + "default.handlebars->33->2377", "default.handlebars->33->271", - "default.handlebars->33->797" + "default.handlebars->33->799" ] }, { @@ -45562,7 +45589,7 @@ "zh-cht": "用戶+檔案", "ja": "ユーザー+ファイル", "xloc": [ - "default.handlebars->33->2041" + "default.handlebars->33->2044" ] }, { @@ -45582,10 +45609,10 @@ "zh-cht": "用戶帳戶導入", "ja": "ユーザーアカウントのインポート", "xloc": [ - "default.handlebars->33->2074", - "default.handlebars->33->2075", "default.handlebars->33->2077", - "default.handlebars->33->2079" + "default.handlebars->33->2078", + "default.handlebars->33->2080", + "default.handlebars->33->2082" ] }, { @@ -45605,7 +45632,7 @@ "zh-cht": "用戶帳戶", "ja": "ユーザーアカウント", "xloc": [ - "default.handlebars->33->2435" + "default.handlebars->33->2438" ] }, { @@ -45626,8 +45653,8 @@ "ja": "ユーザー認証", "xloc": [ "default-mobile.handlebars->11->572", - "default.handlebars->33->1657", - "default.handlebars->33->793" + "default.handlebars->33->1659", + "default.handlebars->33->795" ] }, { @@ -45647,12 +45674,12 @@ "zh-cht": "用戶同意", "ja": "ユーザーの同意", "xloc": [ - "default.handlebars->33->1630", + "default.handlebars->33->1632", "default.handlebars->33->215", - "default.handlebars->33->2170", - "default.handlebars->33->2257", - "default.handlebars->33->722", - "default.handlebars->33->898" + "default.handlebars->33->2173", + "default.handlebars->33->2260", + "default.handlebars->33->724", + "default.handlebars->33->900" ] }, { @@ -45672,12 +45699,12 @@ "zh-cht": "用戶群", "ja": "ユーザー・グループ", "xloc": [ - "default.handlebars->33->1722", - "default.handlebars->33->1723", - "default.handlebars->33->2143", - "default.handlebars->33->2315", - "default.handlebars->33->2336", - "default.handlebars->33->796" + "default.handlebars->33->1724", + "default.handlebars->33->1725", + "default.handlebars->33->2146", + "default.handlebars->33->2318", + "default.handlebars->33->2339", + "default.handlebars->33->798" ] }, { @@ -45717,7 +45744,7 @@ "zh-cht": "用戶群成員", "ja": "ユーザーグループのメンバーシップ", "xloc": [ - "default.handlebars->33->2312" + "default.handlebars->33->2315" ] }, { @@ -45757,9 +45784,9 @@ "zh-cht": "用戶識別碼", "ja": "ユーザー識別子", "xloc": [ - "default.handlebars->33->1788", - "default.handlebars->33->2224", - "default.handlebars->33->2225" + "default.handlebars->33->1790", + "default.handlebars->33->2227", + "default.handlebars->33->2228" ] }, { @@ -45779,8 +45806,8 @@ "zh-cht": "用戶標識符", "ja": "ユーザー識別子", "xloc": [ - "default.handlebars->33->1720", - "default.handlebars->33->2208" + "default.handlebars->33->1722", + "default.handlebars->33->2211" ] }, { @@ -45813,7 +45840,7 @@ "zh-cht": "用戶列表輸出", "ja": "ユーザーリストのエクスポート", "xloc": [ - "default.handlebars->33->2086" + "default.handlebars->33->2089" ] }, { @@ -45834,7 +45861,7 @@ "ja": "ユーザー名", "xloc": [ "default-mobile.handlebars->11->627", - "default.handlebars->33->1787" + "default.handlebars->33->1789" ] }, { @@ -45909,7 +45936,7 @@ "zh-cht": "用戶節", "ja": "ユーザーセッション", "xloc": [ - "default.handlebars->33->2467" + "default.handlebars->33->2470" ] }, { @@ -45992,7 +46019,7 @@ "zh-cht": "用戶“{0}”", "ja": "ユーザー「{0}」", "xloc": [ - "default.handlebars->33->1020", + "default.handlebars->33->1022", "sharing.handlebars->11->17" ] }, @@ -46008,7 +46035,7 @@ "zh-chs": "用户已存在", "xloc": [ "default-mobile.handlebars->11->650", - "default.handlebars->33->2393" + "default.handlebars->33->2396" ] }, { @@ -46028,8 +46055,8 @@ "zh-cht": "用戶瀏覽器值", "ja": "ユーザーブラウザーの値", "xloc": [ - "default.handlebars->33->1498", - "default.handlebars->33->1500" + "default.handlebars->33->1500", + "default.handlebars->33->1502" ] }, { @@ -46049,7 +46076,7 @@ "zh-cht": "用戶組已更改:{0}", "ja": "ユーザーグループが変更されました:{0}", "xloc": [ - "default.handlebars->33->1963" + "default.handlebars->33->1965" ] }, { @@ -46069,7 +46096,7 @@ "zh-cht": "已創建用戶組:{0}", "ja": "作成されたユーザーグループ:{0}", "xloc": [ - "default.handlebars->33->1953" + "default.handlebars->33->1955" ] }, { @@ -46089,7 +46116,7 @@ "zh-cht": "用戶組成員身份已更改:{0}", "ja": "ユーザーグループメンバーシップが変更されました:{0}", "xloc": [ - "default.handlebars->33->1951" + "default.handlebars->33->1953" ] }, { @@ -46128,7 +46155,7 @@ "ru": "Попытка входа пользователя в заблокированный аккаунт из {0}, {1}, {2}", "zh-chs": "来自 {0}、{1}、{2} 的锁定帐户的用户登录尝试", "xloc": [ - "default.handlebars->33->1993" + "default.handlebars->33->1995" ] }, { @@ -46141,7 +46168,7 @@ "nl": "Gebruikersaanmeldingspoging met onjuiste 2e factor van {0}, {1}, {2}", "zh-chs": "来自 {0}、{1}、{2} 的第二个因素不正确的用户登录尝试", "xloc": [ - "default.handlebars->33->1992" + "default.handlebars->33->1994" ] }, { @@ -46156,7 +46183,7 @@ "zh-chs": "未找到用户 {0}。", "xloc": [ "default-mobile.handlebars->11->658", - "default.handlebars->33->2401" + "default.handlebars->33->2404" ] }, { @@ -46199,14 +46226,14 @@ "default-mobile.handlebars->11->343", "default-mobile.handlebars->11->402", "default-mobile.handlebars->11->413", - "default.handlebars->33->1086", - "default.handlebars->33->1107", - "default.handlebars->33->1574", - "default.handlebars->33->1579", - "default.handlebars->33->2098", + "default.handlebars->33->1088", + "default.handlebars->33->1109", + "default.handlebars->33->1576", + "default.handlebars->33->1581", + "default.handlebars->33->2101", "default.handlebars->33->244", "default.handlebars->33->360", - "default.handlebars->33->942", + "default.handlebars->33->944", "login2.handlebars->centralTable->1->0->logincell->loginpanel->1->loginuserpassdiv->1->1->0->1", "login2.handlebars->centralTable->1->0->logincell->loginpanel->1->loginuserpassdiv->1->1->0->1", "mstsc.handlebars->main->1->3->1->4->1->0", @@ -46279,9 +46306,9 @@ "zh-cht": "用戶", "ja": "ユーザー", "xloc": [ - "default.handlebars->33->2131", - "default.handlebars->33->2171", - "default.handlebars->33->2466", + "default.handlebars->33->2134", + "default.handlebars->33->2174", + "default.handlebars->33->2469", "default.handlebars->container->topbar->1->1->UsersSubMenuSpan->UsersSubMenu->1->0->UsersGeneral" ] }, @@ -46302,7 +46329,7 @@ "zh-cht": "用戶節", "ja": "ユーザーセッション", "xloc": [ - "default.handlebars->33->2439" + "default.handlebars->33->2442" ] }, { @@ -46317,7 +46344,7 @@ "zh-chs": "未找到用户 {0}。", "xloc": [ "default-mobile.handlebars->11->659", - "default.handlebars->33->2402" + "default.handlebars->33->2405" ] }, { @@ -46331,7 +46358,7 @@ "ru": "VNC соединение", "zh-chs": "VNC 连接", "xloc": [ - "default.handlebars->33->611" + "default.handlebars->33->613" ] }, { @@ -46345,7 +46372,7 @@ "ru": "Порт удаленного подключения VNC:", "zh-chs": "VNC远程连接端口:", "xloc": [ - "default.handlebars->33->610" + "default.handlebars->33->612" ] }, { @@ -46365,7 +46392,7 @@ "zh-cht": "VT100 +(F10 = ESC + [OY)", "ja": "VT100 +(F10 = ESC + [OY)", "xloc": [ - "default.handlebars->33->1099", + "default.handlebars->33->1101", "sharing.handlebars->11->38" ] }, @@ -46400,7 +46427,7 @@ "zh-cht": "驗證電郵", "ja": "メールを検証", "xloc": [ - "default.handlebars->33->2053" + "default.handlebars->33->2056" ] }, { @@ -46414,7 +46441,7 @@ "zh-chs": "验证异常", "xloc": [ "default-mobile.handlebars->11->652", - "default.handlebars->33->2395" + "default.handlebars->33->2398" ] }, { @@ -46434,7 +46461,7 @@ "zh-cht": "有效期", "ja": "有効", "xloc": [ - "default.handlebars->33->893" + "default.handlebars->33->895" ] }, { @@ -46463,7 +46490,7 @@ "zh-cht": "文達", "ja": "ベンダー", "xloc": [ - "default.handlebars->33->1488" + "default.handlebars->33->1490" ] }, { @@ -46485,8 +46512,8 @@ "xloc": [ "default-mobile.handlebars->11->522", "default-mobile.handlebars->11->525", - "default.handlebars->33->1225", - "default.handlebars->33->1228" + "default.handlebars->33->1227", + "default.handlebars->33->1230" ] }, { @@ -46527,7 +46554,7 @@ "zh-cht": "已驗證", "ja": "検証済み", "xloc": [ - "default.handlebars->33->2291" + "default.handlebars->33->2294" ] }, { @@ -46569,8 +46596,8 @@ "ja": "確認済みの電話番号", "xloc": [ "default-mobile.handlebars->11->87", - "default.handlebars->33->1270", - "default.handlebars->33->2049" + "default.handlebars->33->1272", + "default.handlebars->33->2052" ] }, { @@ -46590,7 +46617,7 @@ "zh-cht": "用戶{0}的已驗證電話號碼", "ja": "ユーザー{0}の確認済みの電話番号", "xloc": [ - "default.handlebars->33->1980" + "default.handlebars->33->1982" ] }, { @@ -46655,10 +46682,10 @@ "default-mobile.handlebars->11->506", "default-mobile.handlebars->11->523", "default-mobile.handlebars->11->528", - "default.handlebars->33->1167", - "default.handlebars->33->1209", - "default.handlebars->33->1226", - "default.handlebars->33->1231", + "default.handlebars->33->1169", + "default.handlebars->33->1211", + "default.handlebars->33->1228", + "default.handlebars->33->1233", "default.handlebars->container->column_l->p42->p42tbl->1->0->5" ] }, @@ -46679,7 +46706,7 @@ "zh-cht": "版本不兼容,請先升級你的MeshCentral", "ja": "バージョンに互換性がありません。最初にMeshCentralインストールをアップグレードしてください", "xloc": [ - "default.handlebars->33->2507" + "default.handlebars->33->2510" ] }, { @@ -46725,7 +46752,7 @@ "zh-chs": "颤动", "xloc": [ "default-mobile.handlebars->11->316", - "default.handlebars->33->904" + "default.handlebars->33->906" ] }, { @@ -46745,7 +46772,7 @@ "zh-cht": "越南文", "ja": "ベトナム人", "xloc": [ - "default.handlebars->33->1489" + "default.handlebars->33->1491" ] }, { @@ -46785,7 +46812,7 @@ "zh-cht": "查看所有事件", "ja": "すべてのイベントを表示", "xloc": [ - "default.handlebars->33->2123" + "default.handlebars->33->2126" ] }, { @@ -46814,8 +46841,8 @@ "zh-cht": "查看變更日誌", "ja": "変更ログを表示", "xloc": [ - "default.handlebars->33->2510", - "default.handlebars->33->2512" + "default.handlebars->33->2513", + "default.handlebars->33->2515" ] }, { @@ -46835,7 +46862,7 @@ "zh-cht": "查看有關此裝置的註釋", "ja": "このデバイスに関するメモを表示", "xloc": [ - "default.handlebars->33->744" + "default.handlebars->33->746" ] }, { @@ -46855,7 +46882,7 @@ "zh-cht": "查看有關此裝置群的註釋", "ja": "このデバイスグループに関するメモを表示する", "xloc": [ - "default.handlebars->33->1646" + "default.handlebars->33->1648" ] }, { @@ -46875,7 +46902,7 @@ "zh-cht": "查看有關此用戶的註釋", "ja": "このユーザーに関するメモを表示", "xloc": [ - "default.handlebars->33->2265" + "default.handlebars->33->2268" ] }, { @@ -46904,7 +46931,7 @@ "ru": "Посмотреть предыдущие входы в систему для этого пользователя", "zh-chs": "查看此用户以前的登录", "xloc": [ - "default.handlebars->33->2278" + "default.handlebars->33->2281" ] }, { @@ -46924,7 +46951,7 @@ "zh-cht": "沃拉普克", "ja": "ヴォラプク", "xloc": [ - "default.handlebars->33->1490" + "default.handlebars->33->1492" ] }, { @@ -47080,7 +47107,7 @@ "ja": "ユーザーがアクセスを許可するのを待っています...", "xloc": [ "default-mobile.handlebars->11->361", - "default.handlebars->33->1009", + "default.handlebars->33->1011", "sharing.handlebars->11->28", "sharing.handlebars->11->6" ] @@ -47102,8 +47129,8 @@ "zh-cht": "喚醒", "ja": "ウェイク", "xloc": [ - "default.handlebars->33->825", - "default.handlebars->33->847" + "default.handlebars->33->827", + "default.handlebars->33->849" ] }, { @@ -47125,8 +47152,8 @@ "xloc": [ "default-mobile.handlebars->11->599", "default-mobile.handlebars->11->614", - "default.handlebars->33->1743", - "default.handlebars->33->1773" + "default.handlebars->33->1745", + "default.handlebars->33->1775" ] }, { @@ -47147,7 +47174,7 @@ "ja": "目を覚ます", "xloc": [ "default-mobile.handlebars->11->321", - "default.handlebars->33->909" + "default.handlebars->33->911" ] }, { @@ -47167,7 +47194,7 @@ "zh-cht": "喚醒裝置", "ja": "ウェイクアップデバイス", "xloc": [ - "default.handlebars->33->520" + "default.handlebars->33->522" ] }, { @@ -47187,7 +47214,7 @@ "zh-cht": "瓦隆", "ja": "ワロン", "xloc": [ - "default.handlebars->33->1491" + "default.handlebars->33->1493" ] }, { @@ -47207,7 +47234,7 @@ "zh-cht": "弱", "ja": "弱い", "xloc": [ - "default.handlebars->33->1566" + "default.handlebars->33->1568" ] }, { @@ -47252,8 +47279,8 @@ "zh-cht": "網絡伺服器", "ja": "Webサーバー", "xloc": [ - "default.handlebars->33->2490", - "default.handlebars->33->2491" + "default.handlebars->33->2493", + "default.handlebars->33->2494" ] }, { @@ -47267,7 +47294,7 @@ "ru": "Заголовки HTTP веб-сервера", "zh-chs": "Web 服务器 HTTP 标头", "xloc": [ - "default.handlebars->33->2494" + "default.handlebars->33->2497" ] }, { @@ -47287,7 +47314,7 @@ "zh-cht": "Web伺服器請求", "ja": "Webサーバーリクエスト", "xloc": [ - "default.handlebars->33->2492" + "default.handlebars->33->2495" ] }, { @@ -47307,7 +47334,7 @@ "zh-cht": "Web插座中繼", "ja": "Webソケットリレー", "xloc": [ - "default.handlebars->33->2493" + "default.handlebars->33->2496" ] }, { @@ -47327,7 +47354,7 @@ "zh-cht": "網絡RDP", "ja": "Web-RDP", "xloc": [ - "default.handlebars->33->775" + "default.handlebars->33->777" ] }, { @@ -47341,7 +47368,7 @@ "ru": "Web-SSH", "zh-chs": "网络SSH", "xloc": [ - "default.handlebars->33->777" + "default.handlebars->33->779" ] }, { @@ -47355,7 +47382,7 @@ "ru": "Web-VNC", "zh-chs": "网络VNC", "xloc": [ - "default.handlebars->33->773" + "default.handlebars->33->775" ] }, { @@ -47369,7 +47396,7 @@ "ru": "WebRDP", "zh-chs": "网络RDP", "xloc": [ - "default.handlebars->33->2460" + "default.handlebars->33->2463" ] }, { @@ -47383,7 +47410,7 @@ "ru": "WebSSH", "zh-chs": "网络SSH", "xloc": [ - "default.handlebars->33->2461" + "default.handlebars->33->2464" ] }, { @@ -47397,7 +47424,7 @@ "ru": "WebVNC", "zh-chs": "网络VNC", "xloc": [ - "default.handlebars->33->2462" + "default.handlebars->33->2465" ] }, { @@ -47459,7 +47486,7 @@ "zh-cht": "威爾士文", "ja": "ウェールズ", "xloc": [ - "default.handlebars->33->1492" + "default.handlebars->33->1494" ] }, { @@ -47479,7 +47506,7 @@ "zh-cht": "啟用後,任何人都可以使用邀請代碼通過以下公共鏈結將裝置加入該裝置群:", "ja": "有効にすると、誰でも次の公開リンクを使用してこのデバイスグループにデバイスを参加させるために招待コードを使用できます。", "xloc": [ - "default.handlebars->33->1796" + "default.handlebars->33->1798" ] }, { @@ -47500,7 +47527,7 @@ "ja": "有効にすると、ログインごとに、セキュリティを強化するためにメールアカウントにログイントークンを受け取るオプションが表示されます。", "xloc": [ "default-mobile.handlebars->11->93", - "default.handlebars->33->1277" + "default.handlebars->33->1279" ] }, { @@ -47520,7 +47547,7 @@ "zh-cht": "選擇此策略時,此服務器不管理英特爾®AMT。 仍然可以通過手動激活和配置Intel AMT來使用它。", "ja": "このポリシーを選択すると、インテル®AMTはこのサーバーによって管理されません。 Intel AMTは、手動でアクティブ化して構成することで引き続き使用できます。", "xloc": [ - "default.handlebars->33->1690" + "default.handlebars->33->1692" ] }, { @@ -47557,7 +47584,7 @@ "zh-cht": "選擇此策略後,將禁用處於客戶端控制模式(CCM)的所有英特爾®AMT。 其他設備將清除CIRA,並且仍然可以手動進行管理。", "ja": "このポリシーを選択すると、クライアント制御モード(CCM)のインテル®AMTが無効になります。 他のデバイスではCIRAがクリアされ、手動で管理できます。", "xloc": [ - "default.handlebars->33->1691" + "default.handlebars->33->1693" ] }, { @@ -47577,7 +47604,7 @@ "zh-cht": "下次登入時將更改。", "ja": "次回ログイン時に変更されます。", "xloc": [ - "default.handlebars->33->2237" + "default.handlebars->33->2240" ] }, { @@ -47600,8 +47627,8 @@ "default-mobile.handlebars->11->388", "default-mobile.handlebars->11->392", "default-mobile.handlebars->dialog->3->dialog3->deskkeys->5", - "default.handlebars->33->1048", - "default.handlebars->33->1052", + "default.handlebars->33->1050", + "default.handlebars->33->1054", "sharing.handlebars->p11->deskarea0->deskarea4->3->deskkeys->3" ] }, @@ -47767,7 +47794,7 @@ "zh-cht": "Win32可執行檔案", "ja": "Win32実行可能ファイル", "xloc": [ - "default.handlebars->33->970" + "default.handlebars->33->972" ] }, { @@ -47815,7 +47842,7 @@ "xloc": [ "default-mobile.handlebars->11->260", "default.handlebars->33->425", - "default.handlebars->33->659" + "default.handlebars->33->661" ] }, { @@ -47835,8 +47862,8 @@ "zh-cht": "Windows(.exe)", "ja": "Windows(.exe)", "xloc": [ - "default.handlebars->33->445", - "default.handlebars->33->468" + "default.handlebars->33->447", + "default.handlebars->33->470" ] }, { @@ -47856,7 +47883,7 @@ "zh-cht": "Windows(32位)", "ja": "Windows(32ビット)", "xloc": [ - "default.handlebars->33->976" + "default.handlebars->33->978" ] }, { @@ -47876,7 +47903,7 @@ "zh-cht": "Windows(64位)", "ja": "Windows(64ビット)", "xloc": [ - "default.handlebars->33->975" + "default.handlebars->33->977" ] }, { @@ -48054,8 +48081,8 @@ "zh-cht": "Windows命令提示", "ja": "Windowsコマンドプロンプト", "xloc": [ - "default.handlebars->33->540", - "default.handlebars->33->924" + "default.handlebars->33->542", + "default.handlebars->33->926" ] }, { @@ -48117,7 +48144,7 @@ "zh-cht": "Windows路徑", "ja": "Windowsパス", "xloc": [ - "default.handlebars->33->561" + "default.handlebars->33->563" ] }, { @@ -48137,8 +48164,8 @@ "zh-cht": "Windows PowerShell", "ja": "Windows PowerShell", "xloc": [ - "default.handlebars->33->541", - "default.handlebars->33->925" + "default.handlebars->33->543", + "default.handlebars->33->927" ] }, { @@ -48153,7 +48180,7 @@ "zh-chs": "视窗安全", "xloc": [ "default-mobile.handlebars->11->471", - "default.handlebars->33->706" + "default.handlebars->33->708" ] }, { @@ -48193,8 +48220,8 @@ "zh-cht": "Windows x64(.exe)", "ja": "Windows x64(.exe)", "xloc": [ - "default.handlebars->33->449", - "default.handlebars->33->471" + "default.handlebars->33->451", + "default.handlebars->33->473" ] }, { @@ -48234,7 +48261,7 @@ "zh-cht": "换行:關", "ja": "ラップ:オフ", "xloc": [ - "default.handlebars->33->1154", + "default.handlebars->33->1156", "sharing.handlebars->11->84" ] }, @@ -48255,7 +48282,7 @@ "zh-cht": "换行:開", "ja": "ラップ:オン", "xloc": [ - "default.handlebars->33->1153", + "default.handlebars->33->1155", "sharing.handlebars->11->83" ] }, @@ -48276,7 +48303,7 @@ "zh-cht": "為此裝置寫一個事件", "ja": "このデバイスのイベントを書く", "xloc": [ - "default.handlebars->33->746" + "default.handlebars->33->748" ] }, { @@ -48337,7 +48364,7 @@ "zh-cht": "XTerm", "ja": "XTerm", "xloc": [ - "default.handlebars->33->764" + "default.handlebars->33->766" ] }, { @@ -48357,7 +48384,7 @@ "zh-cht": "科薩", "ja": "コーサ", "xloc": [ - "default.handlebars->33->1493" + "default.handlebars->33->1495" ] }, { @@ -48377,7 +48404,7 @@ "zh-cht": "意第緒文", "ja": "イディッシュ語", "xloc": [ - "default.handlebars->33->1494" + "default.handlebars->33->1496" ] }, { @@ -48515,7 +48542,7 @@ "zh-cht": "YubiKey™OTP", "ja": "YubiKey™ OTP", "xloc": [ - "default.handlebars->33->1296" + "default.handlebars->33->1298" ] }, { @@ -48556,7 +48583,7 @@ "zh-cht": "郵編檔案名", "ja": "Zipファイル名", "xloc": [ - "default.handlebars->33->1138", + "default.handlebars->33->1140", "sharing.handlebars->11->68" ] }, @@ -48577,7 +48604,7 @@ "zh-cht": "縮放至適合範圍", "ja": "範囲に合わせてズーム", "xloc": [ - "default.handlebars->33->627" + "default.handlebars->33->629" ] }, { @@ -48597,8 +48624,8 @@ "zh-cht": "放大到一定程度", "ja": "拡大する", "xloc": [ - "default.handlebars->33->624", - "default.handlebars->33->630" + "default.handlebars->33->626", + "default.handlebars->33->632" ] }, { @@ -48618,8 +48645,8 @@ "zh-cht": "縮小到一定程度", "ja": "ズームアウト", "xloc": [ - "default.handlebars->33->625", - "default.handlebars->33->631" + "default.handlebars->33->627", + "default.handlebars->33->633" ] }, { @@ -48639,7 +48666,7 @@ "zh-cht": "祖魯族", "ja": "ズールー", "xloc": [ - "default.handlebars->33->1495" + "default.handlebars->33->1497" ] }, { @@ -48907,7 +48934,7 @@ "zh-cht": "\\\\'", "ja": "\\\\'", "xloc": [ - "default.handlebars->33->2508" + "default.handlebars->33->2511" ] }, { @@ -48929,8 +48956,8 @@ "xloc": [ "default-mobile.handlebars->11->173", "default-mobile.handlebars->11->174", - "default.handlebars->33->598", - "default.handlebars->33->599" + "default.handlebars->33->600", + "default.handlebars->33->601" ] }, { @@ -48991,8 +49018,8 @@ "xloc": [ "default-mobile.handlebars->11->177", "default-mobile.handlebars->11->178", - "default.handlebars->33->602", - "default.handlebars->33->603" + "default.handlebars->33->604", + "default.handlebars->33->605" ] }, { @@ -49055,8 +49082,8 @@ "xloc": [ "default-mobile.handlebars->11->171", "default-mobile.handlebars->11->172", - "default.handlebars->33->596", - "default.handlebars->33->597" + "default.handlebars->33->598", + "default.handlebars->33->599" ] }, { @@ -49179,7 +49206,7 @@ "ja": "console.txt", "xloc": [ "default-mobile.handlebars->11->552", - "default.handlebars->33->1256" + "default.handlebars->33->1258" ] }, { @@ -49200,7 +49227,7 @@ "ja": "コピー", "xloc": [ "default-mobile.handlebars->11->154", - "default.handlebars->33->1879" + "default.handlebars->33->1881" ] }, { @@ -49234,8 +49261,8 @@ "ru": "desc:", "zh-chs": "描述:", "xloc": [ - "default.handlebars->33->604", - "default.handlebars->33->605" + "default.handlebars->33->606", + "default.handlebars->33->607" ] }, { @@ -49269,8 +49296,8 @@ "zh-cht": "devicelist.csv", "ja": "devicelist.csv", "xloc": [ - "default.handlebars->33->574", - "default.handlebars->33->580" + "default.handlebars->33->576", + "default.handlebars->33->582" ] }, { @@ -49290,8 +49317,8 @@ "zh-cht": "devicelist.json", "ja": "devicelist.json", "xloc": [ - "default.handlebars->33->576", - "default.handlebars->33->581" + "default.handlebars->33->578", + "default.handlebars->33->583" ] }, { @@ -49328,8 +49355,8 @@ "zh-cht": "eventslist.csv", "ja": "eventslist.csv", "xloc": [ - "default.handlebars->33->2018", - "default.handlebars->33->2023" + "default.handlebars->33->2021", + "default.handlebars->33->2026" ] }, { @@ -49349,8 +49376,8 @@ "zh-cht": "eventslist.json", "ja": "eventslist.json", "xloc": [ - "default.handlebars->33->2020", - "default.handlebars->33->2024" + "default.handlebars->33->2023", + "default.handlebars->33->2027" ] }, { @@ -49390,8 +49417,8 @@ "zh-cht": "免費", "ja": "無料", "xloc": [ - "default.handlebars->33->2447", - "default.handlebars->33->2450" + "default.handlebars->33->2450", + "default.handlebars->33->2453" ] }, { @@ -49413,8 +49440,8 @@ "xloc": [ "default-mobile.handlebars->11->165", "default-mobile.handlebars->11->166", - "default.handlebars->33->590", - "default.handlebars->33->591" + "default.handlebars->33->592", + "default.handlebars->33->593" ] }, { @@ -49436,8 +49463,8 @@ "xloc": [ "default-mobile.handlebars->11->163", "default-mobile.handlebars->11->164", - "default.handlebars->33->588", - "default.handlebars->33->589" + "default.handlebars->33->590", + "default.handlebars->33->591" ] }, { @@ -49606,7 +49633,7 @@ "zh-cht": "id, name, email, creation, lastlogin, groups, authfactors", "ja": "id、名前、電子メール、作成、lastlogin、グループ、authfactors", "xloc": [ - "default.handlebars->33->2087" + "default.handlebars->33->2090" ] }, { @@ -49626,7 +49653,7 @@ "zh-cht": "id, name, rname, host, icon, ip, osdesc, state, gruppenname, conn, pwr", "ja": "id、name、rname、host、icon、ip、osdesc、state、groupname、conn、pwr", "xloc": [ - "default.handlebars->33->579" + "default.handlebars->33->581" ] }, { @@ -49648,8 +49675,8 @@ "xloc": [ "default-mobile.handlebars->11->161", "default-mobile.handlebars->11->162", - "default.handlebars->33->586", - "default.handlebars->33->587" + "default.handlebars->33->588", + "default.handlebars->33->589" ] }, { @@ -49729,7 +49756,7 @@ "zh-cht": "k max,默認為空白", "ja": "k max、デフォルトでは空白", "xloc": [ - "default.handlebars->33->2115" + "default.handlebars->33->2118" ] }, { @@ -49799,7 +49826,7 @@ "zh-cht": "macOS", "xloc": [ "default-mobile.handlebars->11->264", - "default.handlebars->33->663" + "default.handlebars->33->665" ] }, { @@ -49884,7 +49911,7 @@ "zh-cht": "macOS ARM (64位)", "ja": "macOS ARM (64ビット)", "xloc": [ - "default.handlebars->33->980" + "default.handlebars->33->982" ] }, { @@ -49904,7 +49931,7 @@ "zh-cht": "macOS x86 (64位)", "ja": "macOS x86 (64ビット)", "xloc": [ - "default.handlebars->33->979" + "default.handlebars->33->981" ] }, { @@ -49966,7 +49993,7 @@ "zh-cht": "MeshAgent", "ja": "MeshAgent", "xloc": [ - "default.handlebars->33->476" + "default.handlebars->33->478" ] }, { @@ -49987,7 +50014,7 @@ "ja": "動く", "xloc": [ "default-mobile.handlebars->11->155", - "default.handlebars->33->1880" + "default.handlebars->33->1882" ] }, { @@ -50074,8 +50101,8 @@ "xloc": [ "default-mobile.handlebars->11->175", "default-mobile.handlebars->11->176", - "default.handlebars->33->600", - "default.handlebars->33->601" + "default.handlebars->33->602", + "default.handlebars->33->603" ] }, { @@ -50095,7 +50122,7 @@ "zh-cht": "servererrors.txt", "ja": "servererrors.txt", "xloc": [ - "default.handlebars->33->1600" + "default.handlebars->33->1602" ] }, { @@ -50115,7 +50142,7 @@ "zh-cht": "servertrace.csv", "ja": "servertrace.csv", "xloc": [ - "default.handlebars->33->2502" + "default.handlebars->33->2505" ] }, { @@ -50146,8 +50173,8 @@ "xloc": [ "default-mobile.handlebars->11->169", "default-mobile.handlebars->11->170", - "default.handlebars->33->594", - "default.handlebars->33->595" + "default.handlebars->33->596", + "default.handlebars->33->597" ] }, { @@ -50169,8 +50196,8 @@ "xloc": [ "default-mobile.handlebars->11->167", "default-mobile.handlebars->11->168", - "default.handlebars->33->592", - "default.handlebars->33->593" + "default.handlebars->33->594", + "default.handlebars->33->595" ] }, { @@ -50190,7 +50217,7 @@ "zh-cht": "time, conn.agent, conn.users, conn.usersessions, conn.relaysession, conn.intelamt, mem.external, mem.heapused, mem.heaptotal, mem.rss", "ja": "time、conn.agent、conn.users、conn.usersessions、conn.relaysession、conn.intelamt、mem.external、mem.heapused、mem.heaptotal、mem.rss", "xloc": [ - "default.handlebars->33->2477" + "default.handlebars->33->2480" ] }, { @@ -50210,7 +50237,7 @@ "zh-cht": "時間,來源,訊息", "ja": "時間、ソース、メッセージ", "xloc": [ - "default.handlebars->33->2501" + "default.handlebars->33->2504" ] }, { @@ -50247,8 +50274,8 @@ "zh-cht": "總", "ja": "合計", "xloc": [ - "default.handlebars->33->2448", - "default.handlebars->33->2451" + "default.handlebars->33->2451", + "default.handlebars->33->2454" ] }, { @@ -50270,8 +50297,8 @@ "xloc": [ "default-mobile.handlebars->11->159", "default-mobile.handlebars->11->160", - "default.handlebars->33->584", - "default.handlebars->33->585" + "default.handlebars->33->586", + "default.handlebars->33->587" ] }, { @@ -50310,8 +50337,8 @@ "xloc": [ "default-mobile.handlebars->11->157", "default-mobile.handlebars->11->158", - "default.handlebars->33->582", - "default.handlebars->33->583" + "default.handlebars->33->584", + "default.handlebars->33->585" ] }, { @@ -50331,8 +50358,8 @@ "zh-cht": "userlist.csv", "ja": "userlist.csv", "xloc": [ - "default.handlebars->33->2083", - "default.handlebars->33->2088" + "default.handlebars->33->2086", + "default.handlebars->33->2091" ] }, { @@ -50352,8 +50379,8 @@ "zh-cht": "userlist.json", "ja": "userlist.json", "xloc": [ - "default.handlebars->33->2085", - "default.handlebars->33->2089" + "default.handlebars->33->2088", + "default.handlebars->33->2092" ] }, { @@ -50373,7 +50400,7 @@ "zh-cht": "utc,時間,類型,指令,用戶,裝置,消息", "ja": "utc、時間、タイプ、アクション、ユーザー、デバイス、メッセージ", "xloc": [ - "default.handlebars->33->2022" + "default.handlebars->33->2025" ] }, { @@ -50482,8 +50509,8 @@ "zh-cht": "{0} Gb", "ja": "{0} Gb", "xloc": [ - "default.handlebars->33->1854", - "default.handlebars->33->1859" + "default.handlebars->33->1856", + "default.handlebars->33->1861" ] }, { @@ -50503,9 +50530,9 @@ "zh-cht": "{0} Kb", "ja": "{0} Kb", "xloc": [ - "default.handlebars->33->1852", - "default.handlebars->33->1857", - "default.handlebars->33->2347" + "default.handlebars->33->1854", + "default.handlebars->33->1859", + "default.handlebars->33->2350" ] }, { @@ -50527,10 +50554,10 @@ "xloc": [ "default-mobile.handlebars->11->536", "default-mobile.handlebars->11->541", - "default.handlebars->33->1239", - "default.handlebars->33->1244", - "default.handlebars->33->1853", - "default.handlebars->33->1858" + "default.handlebars->33->1241", + "default.handlebars->33->1246", + "default.handlebars->33->1855", + "default.handlebars->33->1860" ] }, { @@ -50551,7 +50578,7 @@ "ja": "{0} Mb、{1} Mhz", "xloc": [ "default-mobile.handlebars->11->534", - "default.handlebars->33->1237" + "default.handlebars->33->1239" ] }, { @@ -50571,7 +50598,7 @@ "zh-cht": "{0}個活躍節", "ja": "{0}アクティブセッション", "xloc": [ - "default.handlebars->33->2281" + "default.handlebars->33->2284" ] }, { @@ -50591,8 +50618,8 @@ "zh-cht": "{0} b", "ja": "{0} b", "xloc": [ - "default.handlebars->33->1851", - "default.handlebars->33->1856" + "default.handlebars->33->1853", + "default.handlebars->33->1858" ] }, { @@ -50613,8 +50640,8 @@ "ja": "{0}バイト", "xloc": [ "default-mobile.handlebars->11->143", - "default.handlebars->33->1867", - "default.handlebars->33->2368", + "default.handlebars->33->1869", + "default.handlebars->33->2371", "download.handlebars->3->2", "download2.handlebars->5->2", "sharing.handlebars->11->97" @@ -50637,7 +50664,7 @@ "zh-cht": "剩餘{0}個字節", "ja": "残り{0}バイト", "xloc": [ - "default.handlebars->33->1846" + "default.handlebars->33->1848" ] }, { @@ -50657,7 +50684,7 @@ "zh-cht": "{0}個連接", "ja": "{0}接続", "xloc": [ - "default.handlebars->33->1019", + "default.handlebars->33->1021", "sharing.handlebars->11->16" ] }, @@ -50672,7 +50699,7 @@ "ru": "{0} с {1} по {2}.", "zh-chs": "{0} 从 {1} 到 {2}。", "xloc": [ - "default.handlebars->33->938" + "default.handlebars->33->940" ] }, { @@ -50692,7 +50719,7 @@ "zh-cht": "剩餘{0} GB", "ja": "残り{0}ギガバイト", "xloc": [ - "default.handlebars->33->1849" + "default.handlebars->33->1851" ] }, { @@ -50712,7 +50739,7 @@ "zh-cht": "{0}個群組", "ja": "{0}グループ", "xloc": [ - "default.handlebars->33->2242" + "default.handlebars->33->2245" ] }, { @@ -50769,7 +50796,7 @@ "zh-cht": "剩餘{0}千字節", "ja": "残り{0}キロバイト", "xloc": [ - "default.handlebars->33->1847" + "default.handlebars->33->1849" ] }, { @@ -50811,7 +50838,7 @@ "zh-cht": "剩餘{0}兆字節", "ja": "残り{0}メガバイト", "xloc": [ - "default.handlebars->33->1848" + "default.handlebars->33->1850" ] }, { @@ -50851,7 +50878,7 @@ "zh-cht": "{0}未顯示更多用戶,請使用搜索框查找用戶...", "ja": "{0}個のユーザーが表示されていません。検索ボックスを使用してユーザーを検索してください...", "xloc": [ - "default.handlebars->33->2032" + "default.handlebars->33->2035" ] }, { @@ -50871,7 +50898,7 @@ "zh-cht": "{0}個節點", "ja": "{0}ノード", "xloc": [ - "default.handlebars->33->482" + "default.handlebars->33->484" ] }, { @@ -51033,7 +51060,7 @@ "default-mobile.handlebars->11->205", "default-mobile.handlebars->11->208", "default-mobile.handlebars->11->211", - "default.handlebars->33->2036", + "default.handlebars->33->2039", "default.handlebars->33->310", "default.handlebars->33->313", "default.handlebars->33->316", @@ -51059,7 +51086,7 @@ "zh-cht": "{0}设置(.msh)", "ja": "{0}設定(.msh)", "xloc": [ - "default.handlebars->33->452" + "default.handlebars->33->454" ] }, { @@ -51156,7 +51183,7 @@ "zh-cht": "{0},{1}至{2}", "ja": "{0}、{1}から{2}", "xloc": [ - "default.handlebars->33->809" + "default.handlebars->33->811" ] }, { @@ -51216,7 +51243,7 @@ "zh-cht": "{0}k在1檔案內。最多{1}k", "ja": "{0} k in 1ファイル。 {1} k最大", "xloc": [ - "default.handlebars->33->1861" + "default.handlebars->33->1863" ] }, { @@ -51236,7 +51263,7 @@ "zh-cht": "{1}k在{0}個檔案中。最多{2}k", "ja": "{0} k個の{1}ファイル。 {2} k最大", "xloc": [ - "default.handlebars->33->1860" + "default.handlebars->33->1862" ] }, {