diff --git a/agents/meshcore.js b/agents/meshcore.js index 5f32cc7f..f2c95446 100644 --- a/agents/meshcore.js +++ b/agents/meshcore.js @@ -138,7 +138,7 @@ function createMeshCore(agent) { obj.DAIPC = require('net').createServer(); if (process.platform != 'win32') { try { require('fs').unlinkSync(process.cwd() + '/DAIPC'); } catch (e) { } } obj.DAIPC.IPCPATH = process.platform == 'win32' ? ('\\\\.\\pipe\\' + require('_agentNodeId')() + '-DAIPC') : (process.cwd() + '/DAIPC'); - try { obj.DAIPC.listen({ path: obj.DAIPC.IPCPATH }); } catch (e) { } + try { obj.DAIPC.listen({ path: obj.DAIPC.IPCPATH, writableAll: true }); } catch (e) { } obj.DAIPC.on('connection', function (c) { c._send = function (j) { var data = JSON.stringify(j); @@ -166,6 +166,19 @@ function createMeshCore(agent) { try { switch (data.cmd) { + case 'requesthelp': + if (this._registered == null) return; + sendConsoleText('Request Help (' + this._registered + '): ' + data.value); + var help = {}; + help[this._registered] = data.value; + try { mesh.SendCommand({ action: 'sessions', type: 'help', value: help }); } catch (e) { } + MeshServerLogEx(98, [this._registered, data.value], "Help Requested, user: " + this._registered + ", details: " + data.value, null); + break; + case 'cancelhelp': + if (this._registered == null) return; + sendConsoleText('Cancel Help (' + this._registered + ')'); + try { mesh.SendCommand({ action: 'sessions', type: 'help', value: {} }); } catch (e) { } + break; case 'register': if (typeof data.value == 'string') { this._registered = data.value; diff --git a/meshagent.js b/meshagent.js index 5feadd4f..888e1b1b 100644 --- a/meshagent.js +++ b/meshagent.js @@ -1382,6 +1382,7 @@ module.exports.CreateMeshAgent = function (parent, db, ws, req, args, domain) { if (command.type == 'kvm') { obj.sessions.kvm = command.value; } else if (command.type == 'terminal') { obj.sessions.terminal = command.value; } else if (command.type == 'files') { obj.sessions.files = command.value; } + else if (command.type == 'help') { obj.sessions.help = command.value; } else if (command.type == 'tcp') { obj.sessions.tcp = command.value; } else if (command.type == 'udp') { obj.sessions.udp = command.value; } else if (command.type == 'msg') { obj.sessions.msg = command.value; } diff --git a/public/images/icon-help-notify-10.png b/public/images/icon-help-notify-10.png new file mode 100644 index 00000000..79877612 Binary files /dev/null and b/public/images/icon-help-notify-10.png differ diff --git a/public/images/icon-help-notify-16.png b/public/images/icon-help-notify-16.png new file mode 100644 index 00000000..543c3519 Binary files /dev/null and b/public/images/icon-help-notify-16.png differ diff --git a/public/images/icon-help-notify-40.png b/public/images/icon-help-notify-40.png new file mode 100644 index 00000000..75902a3a Binary files /dev/null and b/public/images/icon-help-notify-40.png differ diff --git a/translate/translate.json b/translate/translate.json index 358b874c..ef41ac20 100644 --- a/translate/translate.json +++ b/translate/translate.json @@ -17,8 +17,8 @@ "zh-chs": " + CIRA", "zh-cht": " + CIRA", "xloc": [ - "default.handlebars->27->1340", - "default.handlebars->27->1342" + "default.handlebars->27->1342", + "default.handlebars->27->1344" ] }, { @@ -204,7 +204,7 @@ "zh-chs": " 可以使用密码提示,但不建议使用。", "zh-cht": " 可以使用密碼提示,但不建議使用。", "xloc": [ - "default.handlebars->27->1253" + "default.handlebars->27->1255" ] }, { @@ -224,8 +224,8 @@ "zh-chs": " 用户需要先登录到该服务器一次,然后才能将其添加到设备组。", "zh-cht": " 用戶需要先登入到該伺服器一次,然後才能將其新增到裝置群。", "xloc": [ - "default.handlebars->27->1417", - "default.handlebars->27->1871" + "default.handlebars->27->1419", + "default.handlebars->27->1874" ] }, { @@ -245,7 +245,7 @@ "zh-chs": " 并使用该用户名和任何密码对服务器进行身份验证。", "zh-cht": " 並使用此用戶名和任何密碼對伺服器進行身份驗證。", "xloc": [ - "default.handlebars->27->317" + "default.handlebars->27->319" ] }, { @@ -265,7 +265,7 @@ "zh-chs": " 并使用该用户名和密码向服务器验证身份。", "zh-cht": " 並使用此用戶名和密碼向伺服器驗證身份。", "xloc": [ - "default.handlebars->27->316" + "default.handlebars->27->318" ] }, { @@ -285,7 +285,7 @@ "zh-chs": " 节点", "zh-cht": " 節點", "xloc": [ - "default-mobile.handlebars->9->205" + "default-mobile.handlebars->9->206" ] }, { @@ -305,7 +305,7 @@ "zh-chs": " 节点", "zh-cht": " 節點", "xloc": [ - "default-mobile.handlebars->9->206" + "default-mobile.handlebars->9->207" ] }, { @@ -325,7 +325,7 @@ "zh-chs": " TLS。", "zh-cht": " TLS。", "xloc": [ - "default.handlebars->27->170" + "default.handlebars->27->171" ] }, { @@ -345,7 +345,7 @@ "zh-chs": " 没有TLS。", "zh-cht": " 沒有TLS。", "xloc": [ - "default.handlebars->27->171" + "default.handlebars->27->172" ] }, { @@ -401,7 +401,7 @@ "zh-chs": "(可选的)", "zh-cht": "(可選的)", "xloc": [ - "default.handlebars->27->356" + "default.handlebars->27->358" ] }, { @@ -438,7 +438,7 @@ "zh-chs": "*对于BSD,首先运行“ pkg install wget sudo bash ”。", "zh-cht": "*對於BSD,首先運行“ pkg install wget sudo bash ”。", "xloc": [ - "default.handlebars->27->395" + "default.handlebars->27->397" ] }, { @@ -458,7 +458,7 @@ "zh-chs": "*保留空白可为每个设备分配一个随机密码。", "zh-cht": "*保留空白可為每個裝置分配一個隨機密碼。", "xloc": [ - "default.handlebars->27->1387" + "default.handlebars->27->1389" ] }, { @@ -495,8 +495,8 @@ "zh-chs": ",", "zh-cht": ",", "xloc": [ - "default-mobile.handlebars->9->449", - "default.handlebars->27->1484" + "default-mobile.handlebars->9->450", + "default.handlebars->27->1486" ] }, { @@ -517,7 +517,7 @@ "zh-cht": ",只適用於Intel®AMT", "xloc": [ "default-mobile.handlebars->9->147", - "default.handlebars->27->203" + "default.handlebars->27->204" ] }, { @@ -537,7 +537,7 @@ "zh-chs": ",MQTT在线", "zh-cht": ",MQTT在線", "xloc": [ - "default.handlebars->27->995" + "default.handlebars->27->997" ] }, { @@ -557,7 +557,7 @@ "zh-chs": ",软体KVM", "zh-cht": ",軟體KVM", "xloc": [ - "default.handlebars->27->821", + "default.handlebars->27->823", "desktop.handlebars->3->13" ] }, @@ -578,11 +578,11 @@ "zh-chs": ",WebRTC", "zh-cht": ",WebRTC", "xloc": [ - "default-mobile.handlebars->9->284", - "default-mobile.handlebars->9->293", - "default.handlebars->27->828", - "default.handlebars->27->861", - "default.handlebars->27->873", + "default-mobile.handlebars->9->285", + "default-mobile.handlebars->9->294", + "default.handlebars->27->830", + "default.handlebars->27->863", + "default.handlebars->27->875", "desktop.handlebars->3->20", "xterm.handlebars->9->6" ] @@ -703,7 +703,7 @@ "zh-chs": ",{0}观看", "zh-cht": ",{0}觀看", "xloc": [ - "default.handlebars->27->822", + "default.handlebars->27->824", "desktop.handlebars->3->14" ] }, @@ -767,10 +767,10 @@ "zh-cht": "...", "xloc": [ "default-mobile.handlebars->9->108", - "default-mobile.handlebars->9->295", - "default.handlebars->27->1525", - "default.handlebars->27->2026", - "default.handlebars->27->878" + "default-mobile.handlebars->9->296", + "default.handlebars->27->1527", + "default.handlebars->27->2029", + "default.handlebars->27->880" ] }, { @@ -826,7 +826,7 @@ "zh-chs": "1个活跃时段", "zh-cht": "1個活躍時段", "xloc": [ - "default.handlebars->27->1940" + "default.handlebars->27->1943" ] }, { @@ -847,8 +847,8 @@ "zh-cht": "1個位元組", "xloc": [ "default-mobile.handlebars->9->118", - "default-mobile.handlebars->9->453", - "default.handlebars->27->1549", + "default-mobile.handlebars->9->454", + "default.handlebars->27->1551", "download.handlebars->3->1", "download2.handlebars->5->1" ] @@ -870,7 +870,7 @@ "zh-chs": "1条连接", "zh-cht": "1位聯絡文", "xloc": [ - "default.handlebars->27->824", + "default.handlebars->27->826", "desktop.handlebars->3->16" ] }, @@ -891,9 +891,9 @@ "zh-chs": "1天", "zh-cht": "1天", "xloc": [ - "default.handlebars->27->178", - "default.handlebars->27->347", - "default.handlebars->27->361" + "default.handlebars->27->179", + "default.handlebars->27->349", + "default.handlebars->27->363" ] }, { @@ -913,7 +913,7 @@ "zh-chs": "1组", "zh-cht": "1群", "xloc": [ - "default.handlebars->27->1905" + "default.handlebars->27->1908" ] }, { @@ -933,9 +933,9 @@ "zh-chs": "1小时", "zh-cht": "1小時", "xloc": [ - "default.handlebars->27->176", - "default.handlebars->27->345", - "default.handlebars->27->359" + "default.handlebars->27->177", + "default.handlebars->27->347", + "default.handlebars->27->361" ] }, { @@ -955,7 +955,7 @@ "zh-chs": "1分钟", "zh-cht": "1分鐘", "xloc": [ - "default.handlebars->27->718" + "default.handlebars->27->720" ] }, { @@ -995,9 +995,9 @@ "zh-chs": "1个月", "zh-cht": "1個月", "xloc": [ - "default.handlebars->27->180", - "default.handlebars->27->349", - "default.handlebars->27->363" + "default.handlebars->27->181", + "default.handlebars->27->351", + "default.handlebars->27->365" ] }, { @@ -1017,7 +1017,7 @@ "zh-chs": "有1个用户没有显示,请使用搜索框查找用户...", "zh-cht": "有1個用戶沒有顯示,請使用搜尋框搜尋用戶...", "xloc": [ - "default.handlebars->27->1695" + "default.handlebars->27->1698" ] }, { @@ -1037,7 +1037,7 @@ "zh-chs": "1个节点", "zh-cht": "1個節點", "xloc": [ - "default.handlebars->27->415" + "default.handlebars->27->417" ] }, { @@ -1077,19 +1077,19 @@ "zh-chs": "1节", "zh-cht": "1節", "xloc": [ - "default-mobile.handlebars->9->159", - "default-mobile.handlebars->9->162", - "default-mobile.handlebars->9->165", - "default-mobile.handlebars->9->168", - "default-mobile.handlebars->9->171", - "default-mobile.handlebars->9->174", - "default.handlebars->27->1699", - "default.handlebars->27->245", - "default.handlebars->27->248", - "default.handlebars->27->251", - "default.handlebars->27->254", - "default.handlebars->27->257", - "default.handlebars->27->260" + "default-mobile.handlebars->9->160", + "default-mobile.handlebars->9->163", + "default-mobile.handlebars->9->166", + "default-mobile.handlebars->9->169", + "default-mobile.handlebars->9->172", + "default-mobile.handlebars->9->175", + "default.handlebars->27->1702", + "default.handlebars->27->247", + "default.handlebars->27->250", + "default.handlebars->27->253", + "default.handlebars->27->256", + "default.handlebars->27->259", + "default.handlebars->27->262" ] }, { @@ -1109,9 +1109,9 @@ "zh-chs": "1周", "zh-cht": "1週", "xloc": [ - "default.handlebars->27->179", - "default.handlebars->27->348", - "default.handlebars->27->362" + "default.handlebars->27->180", + "default.handlebars->27->350", + "default.handlebars->27->364" ] }, { @@ -1215,7 +1215,7 @@ "zh-chs": "10分钟", "zh-cht": "10分鐘", "xloc": [ - "default.handlebars->27->720" + "default.handlebars->27->722" ] }, { @@ -1284,7 +1284,7 @@ "en": "12 hours", "nl": "12 uur", "xloc": [ - "default.handlebars->27->728" + "default.handlebars->27->730" ] }, { @@ -1326,28 +1326,28 @@ "zh-chs": "15分钟", "zh-cht": "15分鐘", "xloc": [ - "default.handlebars->27->721" + "default.handlebars->27->723" ] }, { "en": "16 hours", "nl": "16 uur", "xloc": [ - "default.handlebars->27->729" + "default.handlebars->27->731" ] }, { "en": "2 days", "nl": "2 dagen", "xloc": [ - "default.handlebars->27->731" + "default.handlebars->27->733" ] }, { "en": "2 hours", "nl": "2 uur", "xloc": [ - "default.handlebars->27->725" + "default.handlebars->27->727" ] }, { @@ -1438,7 +1438,7 @@ "en": "24 hours", "nl": "24 uur", "xloc": [ - "default.handlebars->27->730" + "default.handlebars->27->732" ] }, { @@ -1500,7 +1500,7 @@ "zh-chs": "2FA备份代码已清除", "zh-cht": "2FA備份代碼已清除", "xloc": [ - "default.handlebars->27->1660" + "default.handlebars->27->1662" ] }, { @@ -1520,8 +1520,8 @@ "zh-chs": "启用第二因素身份验证", "zh-cht": "啟用第二因素身份驗證", "xloc": [ - "default.handlebars->27->1712", - "default.handlebars->27->1927" + "default.handlebars->27->1715", + "default.handlebars->27->1930" ] }, { @@ -1557,7 +1557,7 @@ "pt": "3", "ru": "3", "xloc": [ - "default-mobile.handlebars->9->321" + "default-mobile.handlebars->9->322" ] }, { @@ -1640,7 +1640,7 @@ "zh-chs": "30分钟", "zh-cht": "30分鐘", "xloc": [ - "default.handlebars->27->722" + "default.handlebars->27->724" ] }, { @@ -1660,8 +1660,8 @@ "zh-chs": "MeshAgent的32位版本", "zh-cht": "MeshAgent的32位版本", "xloc": [ - "default.handlebars->27->385", - "default.handlebars->27->402" + "default.handlebars->27->387", + "default.handlebars->27->404" ] }, { @@ -1690,14 +1690,14 @@ "en": "4 days", "nl": "4 dagen", "xloc": [ - "default.handlebars->27->732" + "default.handlebars->27->734" ] }, { "en": "4 hours", "nl": "4 uur", "xloc": [ - "default.handlebars->27->726" + "default.handlebars->27->728" ] }, { @@ -1780,7 +1780,7 @@ "zh-chs": "45分钟", "zh-cht": "45分鐘", "xloc": [ - "default.handlebars->27->723" + "default.handlebars->27->725" ] }, { @@ -1820,7 +1820,7 @@ "zh-chs": "5分钟", "zh-cht": "5分鐘", "xloc": [ - "default.handlebars->27->719" + "default.handlebars->27->721" ] }, { @@ -1933,7 +1933,7 @@ "en": "60 minutes", "nl": "60 minuten", "xloc": [ - "default.handlebars->27->724" + "default.handlebars->27->726" ] }, { @@ -1975,7 +1975,7 @@ "zh-chs": "64位版本的macOS Mesh Agent", "zh-cht": "64位版本的macOS Mesh Agent", "xloc": [ - "default.handlebars->27->398" + "default.handlebars->27->400" ] }, { @@ -1995,8 +1995,8 @@ "zh-chs": "MeshAgent的64位版本", "zh-cht": "MeshAgent的64位版本", "xloc": [ - "default.handlebars->27->389", - "default.handlebars->27->405" + "default.handlebars->27->391", + "default.handlebars->27->407" ] }, { @@ -2053,7 +2053,7 @@ "zh-chs": "7天电源状态", "zh-cht": "7天電源狀態", "xloc": [ - "default.handlebars->27->754" + "default.handlebars->27->756" ] }, { @@ -2116,9 +2116,9 @@ "zh-chs": "8小時", "zh-cht": "8小時", "xloc": [ - "default.handlebars->27->346", - "default.handlebars->27->360", - "default.handlebars->27->727" + "default.handlebars->27->348", + "default.handlebars->27->362", + "default.handlebars->27->729" ] }, { @@ -2335,8 +2335,8 @@ "zh-chs": "ACM", "zh-cht": "ACM", "xloc": [ - "default-mobile.handlebars->9->231", - "default.handlebars->27->577" + "default-mobile.handlebars->9->232", + "default.handlebars->27->579" ] }, { @@ -2356,8 +2356,8 @@ "zh-chs": "AMT", "zh-cht": "AMT", "xloc": [ - "default.handlebars->27->214", - "default.handlebars->27->443" + "default.handlebars->27->215", + "default.handlebars->27->445" ] }, { @@ -2461,7 +2461,7 @@ "zh-chs": "拒绝访问", "zh-cht": "拒絕存取", "xloc": [ - "default.handlebars->27->996" + "default.handlebars->27->998" ] }, { @@ -2503,7 +2503,7 @@ "zh-chs": "访问服务器档案", "zh-cht": "存取伺服器檔案", "xloc": [ - "default.handlebars->27->1877" + "default.handlebars->27->1880" ] }, { @@ -2587,15 +2587,15 @@ "zh-chs": "账户安全", "zh-cht": "帳號安全", "xloc": [ - "default-mobile.handlebars->9->207", - "default-mobile.handlebars->9->209", + "default-mobile.handlebars->9->208", + "default-mobile.handlebars->9->210", "default-mobile.handlebars->9->93", "default-mobile.handlebars->9->95", "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->p2AccountSecurity->1->0", - "default.handlebars->27->1262", "default.handlebars->27->1264", - "default.handlebars->27->546", - "default.handlebars->27->548" + "default.handlebars->27->1266", + "default.handlebars->27->548", + "default.handlebars->27->550" ] }, { @@ -2656,7 +2656,7 @@ "zh-chs": "帐户已更改:{0}", "zh-cht": "帳戶已更改:{0}", "xloc": [ - "default.handlebars->27->1633" + "default.handlebars->27->1635" ] }, { @@ -2676,7 +2676,7 @@ "zh-chs": "创建帐户,电子邮件为{0}", "zh-cht": "創建帳戶,電子郵件為{0}", "xloc": [ - "default.handlebars->27->1632" + "default.handlebars->27->1634" ] }, { @@ -2696,7 +2696,7 @@ "zh-chs": "创建帐户,用户名是{0}", "zh-cht": "帳戶已創建,用戶名是{0}", "xloc": [ - "default.handlebars->27->1631" + "default.handlebars->27->1633" ] }, { @@ -2716,8 +2716,8 @@ "zh-chs": "帐户已被锁定", "zh-cht": "帳戶已被鎖定", "xloc": [ - "default.handlebars->27->1714", - "default.handlebars->27->1874" + "default.handlebars->27->1717", + "default.handlebars->27->1877" ] }, { @@ -2781,7 +2781,7 @@ "zh-chs": "帐号登录", "zh-cht": "帳號登錄", "xloc": [ - "default.handlebars->27->1568" + "default.handlebars->27->1570" ] }, { @@ -2801,7 +2801,7 @@ "zh-chs": "帐户登出", "zh-cht": "帳戶登出", "xloc": [ - "default.handlebars->27->1569" + "default.handlebars->27->1571" ] }, { @@ -2843,7 +2843,7 @@ "zh-chs": "帐户密码已更改:{0}", "zh-cht": "帳戶密碼已更改:{0}", "xloc": [ - "default.handlebars->27->1641" + "default.handlebars->27->1643" ] }, { @@ -2863,7 +2863,7 @@ "zh-chs": "帐户已删除", "zh-cht": "帳戶已刪除", "xloc": [ - "default.handlebars->27->1630" + "default.handlebars->27->1632" ] }, { @@ -2903,7 +2903,7 @@ "zh-chs": "指令", "zh-cht": "指令", "xloc": [ - "default.handlebars->27->1001", + "default.handlebars->27->1003", "default.handlebars->container->column_l->p42->p42tbl->1->0->8" ] }, @@ -2924,8 +2924,8 @@ "zh-chs": "动作档案", "zh-cht": "動作檔案", "xloc": [ - "default.handlebars->27->797", - "default.handlebars->27->799" + "default.handlebars->27->799", + "default.handlebars->27->801" ] }, { @@ -2945,10 +2945,10 @@ "zh-chs": "动作", "zh-cht": "動作", "xloc": [ - "default-mobile.handlebars->9->248", + "default-mobile.handlebars->9->249", "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.handlebars->27->622", + "default.handlebars->27->624", "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" @@ -3011,12 +3011,12 @@ "zh-chs": "已激活", "zh-cht": "已啟動", "xloc": [ - "default-mobile.handlebars->9->226", - "default-mobile.handlebars->9->228", - "default-mobile.handlebars->9->358", - "default.handlebars->27->570", + "default-mobile.handlebars->9->227", + "default-mobile.handlebars->9->229", + "default-mobile.handlebars->9->359", "default.handlebars->27->572", - "default.handlebars->27->959" + "default.handlebars->27->574", + "default.handlebars->27->961" ] }, { @@ -3036,11 +3036,11 @@ "zh-chs": "激活", "zh-cht": "啟動", "xloc": [ - "default.handlebars->27->1353", "default.handlebars->27->1355", - "default.handlebars->27->199", - "default.handlebars->27->278", - "default.handlebars->27->280" + "default.handlebars->27->1357", + "default.handlebars->27->200", + "default.handlebars->27->280", + "default.handlebars->27->282" ] }, { @@ -3060,7 +3060,7 @@ "zh-chs": "活跃用户{0}", "zh-cht": "活躍用戶{0}", "xloc": [ - "default.handlebars->27->597" + "default.handlebars->27->599" ] }, { @@ -3080,8 +3080,8 @@ "zh-chs": "添加代理", "zh-cht": "新增代理", "xloc": [ - "default.handlebars->27->1357", - "default.handlebars->27->282" + "default.handlebars->27->1359", + "default.handlebars->27->284" ] }, { @@ -3101,7 +3101,7 @@ "zh-chs": "添加CIRA", "zh-cht": "新增CIRA", "xloc": [ - "default.handlebars->27->272" + "default.handlebars->27->274" ] }, { @@ -3121,8 +3121,8 @@ "zh-chs": "添加设备", "zh-cht": "新增裝置", "xloc": [ - "default.handlebars->27->1851", - "default.handlebars->27->1975" + "default.handlebars->27->1854", + "default.handlebars->27->1978" ] }, { @@ -3142,7 +3142,7 @@ "zh-chs": "添加设备日志", "zh-cht": "新增裝置日誌", "xloc": [ - "default.handlebars->27->708" + "default.handlebars->27->710" ] }, { @@ -3162,10 +3162,10 @@ "zh-chs": "添加设备组", "zh-cht": "新增裝置群", "xloc": [ - "default.handlebars->27->1450", - "default.handlebars->27->1845", - "default.handlebars->27->1963", - "default.handlebars->27->233" + "default.handlebars->27->1452", + "default.handlebars->27->1848", + "default.handlebars->27->1966", + "default.handlebars->27->234" ] }, { @@ -3185,7 +3185,7 @@ "zh-chs": "添加设备组权限", "zh-cht": "新增裝置群權限", "xloc": [ - "default.handlebars->27->1447" + "default.handlebars->27->1449" ] }, { @@ -3205,8 +3205,8 @@ "zh-chs": "添加设备权限", "zh-cht": "新增裝置權限", "xloc": [ - "default.handlebars->27->1452", - "default.handlebars->27->1454" + "default.handlebars->27->1454", + "default.handlebars->27->1456" ] }, { @@ -3226,7 +3226,7 @@ "zh-chs": "添加英特尔®AMT CIRA设备", "zh-cht": "新增Intel® AMT CIRA裝置", "xloc": [ - "default.handlebars->27->330" + "default.handlebars->27->332" ] }, { @@ -3246,7 +3246,7 @@ "zh-chs": "添加英特尔®AMT设备", "zh-cht": "新增Intel® AMT裝置", "xloc": [ - "default.handlebars->27->295" + "default.handlebars->27->297" ] }, { @@ -3286,7 +3286,7 @@ "zh-chs": "添加本地", "zh-cht": "新增本地", "xloc": [ - "default.handlebars->27->274" + "default.handlebars->27->276" ] }, { @@ -3306,7 +3306,7 @@ "zh-chs": "添加成员身份", "zh-cht": "新增成員身份", "xloc": [ - "default.handlebars->27->1993" + "default.handlebars->27->1996" ] }, { @@ -3326,7 +3326,7 @@ "zh-chs": "添加 Mesh Agent", "zh-cht": "新增 Mesh Agent", "xloc": [ - "default.handlebars->27->414" + "default.handlebars->27->416" ] }, { @@ -3346,8 +3346,8 @@ "zh-chs": "添加安全密钥", "zh-cht": "新增安全密鑰", "xloc": [ - "default.handlebars->27->1029", - "default.handlebars->27->1030", + "default.handlebars->27->1031", + "default.handlebars->27->1032", "default.handlebars->27->149", "default.handlebars->27->151", "default.handlebars->27->154", @@ -3371,8 +3371,8 @@ "zh-chs": "添加用户", "zh-cht": "新增用戶", "xloc": [ - "default-mobile.handlebars->9->398", - "default.handlebars->27->665" + "default-mobile.handlebars->9->399", + "default.handlebars->27->667" ] }, { @@ -3392,7 +3392,7 @@ "zh-chs": "添加用户设备权限", "zh-cht": "新增用戶裝置權限", "xloc": [ - "default.handlebars->27->1457" + "default.handlebars->27->1459" ] }, { @@ -3412,10 +3412,10 @@ "zh-chs": "添加用户组", "zh-cht": "新增用戶群", "xloc": [ - "default.handlebars->27->1347", - "default.handlebars->27->1449", - "default.handlebars->27->1969", - "default.handlebars->27->666" + "default.handlebars->27->1349", + "default.handlebars->27->1451", + "default.handlebars->27->1972", + "default.handlebars->27->668" ] }, { @@ -3435,7 +3435,7 @@ "zh-chs": "添加用户组设备权限", "zh-cht": "新增用戶群裝置權限", "xloc": [ - "default.handlebars->27->1459" + "default.handlebars->27->1461" ] }, { @@ -3455,7 +3455,7 @@ "zh-chs": "将用户添加到设备组", "zh-cht": "將用戶新增到裝置群", "xloc": [ - "default-mobile.handlebars->9->427" + "default-mobile.handlebars->9->428" ] }, { @@ -3492,8 +3492,8 @@ "zh-chs": "添加用户", "zh-cht": "新增用戶", "xloc": [ - "default.handlebars->27->1346", - "default.handlebars->27->1840" + "default.handlebars->27->1348", + "default.handlebars->27->1843" ] }, { @@ -3513,7 +3513,7 @@ "zh-chs": "将用户添加到设备组", "zh-cht": "將用戶新增到裝置群", "xloc": [ - "default.handlebars->27->1446" + "default.handlebars->27->1448" ] }, { @@ -3533,7 +3533,7 @@ "zh-chs": "将用户添加到用户组", "zh-cht": "將用戶新增到用戶群", "xloc": [ - "default.handlebars->27->1873" + "default.handlebars->27->1876" ] }, { @@ -3573,7 +3573,7 @@ "zh-chs": "通过扫描本地网络添加新的英特尔®AMT计算机。", "zh-cht": "通過掃描本地網絡新增新的Intel® AMT電腦。", "xloc": [ - "default.handlebars->27->275" + "default.handlebars->27->277" ] }, { @@ -3593,8 +3593,8 @@ "zh-chs": "添加位于互联网上的新英特尔®AMT计算机。", "zh-cht": "新增位於互聯網上的新Intel® AMT電腦。", "xloc": [ - "default.handlebars->27->1348", - "default.handlebars->27->271" + "default.handlebars->27->1350", + "default.handlebars->27->273" ] }, { @@ -3614,8 +3614,8 @@ "zh-chs": "添加位于本地网络上的新英特尔®AMT计算机。", "zh-cht": "新增位於本地網絡上的新Intel® AMT電腦。", "xloc": [ - "default.handlebars->27->1350", - "default.handlebars->27->273" + "default.handlebars->27->1352", + "default.handlebars->27->275" ] }, { @@ -3635,7 +3635,7 @@ "zh-chs": "将新的英特尔®AMT设备添加到设备组“{0}”。", "zh-cht": "將新的Intel® AMT裝置新增到裝置群“{0}”。", "xloc": [ - "default.handlebars->27->285" + "default.handlebars->27->287" ] }, { @@ -3655,8 +3655,8 @@ "zh-chs": "通过安装Mesh Agent将新计算机添加到该设备组。", "zh-cht": "通過安裝Mesh Agent將新電腦新增到該裝置群。", "xloc": [ - "default.handlebars->27->1356", - "default.handlebars->27->281" + "default.handlebars->27->1358", + "default.handlebars->27->283" ] }, { @@ -3676,7 +3676,7 @@ "zh-chs": "添加标签", "zh-cht": "新增標籤", "xloc": [ - "default.handlebars->27->479" + "default.handlebars->27->481" ] }, { @@ -3696,7 +3696,7 @@ "zh-chs": "添加了身份验证应用程序", "zh-cht": "添加了身份驗證應用程序", "xloc": [ - "default.handlebars->27->1657" + "default.handlebars->27->1659" ] }, { @@ -3716,8 +3716,8 @@ "zh-chs": "已将设备{0}添加到设备组{1}", "zh-cht": "已將設備{0}添加到設備組{1}", "xloc": [ - "default.handlebars->27->1624", - "default.handlebars->27->1651" + "default.handlebars->27->1626", + "default.handlebars->27->1653" ] }, { @@ -3737,7 +3737,7 @@ "zh-chs": "添加了安全密钥", "zh-cht": "添加了安全密鑰", "xloc": [ - "default.handlebars->27->1662" + "default.handlebars->27->1664" ] }, { @@ -3757,7 +3757,7 @@ "zh-chs": "已将用户组{0}添加到设备组{1}", "zh-cht": "已將用戶組{0}添加到設備組{1}", "xloc": [ - "default.handlebars->27->1635" + "default.handlebars->27->1637" ] }, { @@ -3777,8 +3777,8 @@ "zh-chs": "已将用户{0}添加到用户组{1}", "zh-cht": "已將用戶{0}添加到用戶組{1}", "xloc": [ - "default.handlebars->27->1638", - "default.handlebars->27->1647" + "default.handlebars->27->1640", + "default.handlebars->27->1649" ] }, { @@ -3798,7 +3798,7 @@ "zh-chs": "地址", "zh-cht": "地址", "xloc": [ - "default.handlebars->27->229" + "default.handlebars->27->230" ] }, { @@ -3838,8 +3838,8 @@ "zh-chs": "管理员控制模式(ACM)", "zh-cht": "管理員控制模式(ACM)", "xloc": [ - "default-mobile.handlebars->9->360", - "default.handlebars->27->961" + "default-mobile.handlebars->9->361", + "default.handlebars->27->963" ] }, { @@ -3859,8 +3859,8 @@ "zh-chs": "管理员凭证", "zh-cht": "管理員憑證", "xloc": [ - "default-mobile.handlebars->9->366", - "default.handlebars->27->967" + "default-mobile.handlebars->9->367", + "default.handlebars->27->969" ] }, { @@ -3901,7 +3901,7 @@ "zh-chs": "管理领域", "zh-cht": "管理領域", "xloc": [ - "default.handlebars->27->1909" + "default.handlebars->27->1912" ] }, { @@ -3942,7 +3942,7 @@ "zh-chs": "管理领域", "zh-cht": "管理領域", "xloc": [ - "default.handlebars->27->1777" + "default.handlebars->27->1780" ] }, { @@ -3962,7 +3962,7 @@ "zh-chs": "管理员", "zh-cht": "管理員", "xloc": [ - "default.handlebars->27->1706" + "default.handlebars->27->1709" ] }, { @@ -3982,7 +3982,7 @@ "zh-chs": "南非文", "zh-cht": "南非文", "xloc": [ - "default.handlebars->27->1032" + "default.handlebars->27->1034" ] }, { @@ -4002,13 +4002,13 @@ "zh-chs": "代理", "zh-cht": "代理", "xloc": [ - "default-mobile.handlebars->9->199", - "default-mobile.handlebars->9->223", - "default-mobile.handlebars->9->239", - "default.handlebars->27->1511", - "default.handlebars->27->1519", - "default.handlebars->27->210", - "default.handlebars->27->439", + "default-mobile.handlebars->9->200", + "default-mobile.handlebars->9->224", + "default-mobile.handlebars->9->240", + "default.handlebars->27->1513", + "default.handlebars->27->1521", + "default.handlebars->27->211", + "default.handlebars->27->441", "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->1" ] }, @@ -4029,8 +4029,8 @@ "zh-chs": "代理+英特尔AMT", "zh-cht": "代理+Intel® AMT", "xloc": [ - "default.handlebars->27->1513", - "default.handlebars->27->1521" + "default.handlebars->27->1515", + "default.handlebars->27->1523" ] }, { @@ -4070,8 +4070,8 @@ "zh-chs": "代理控制台", "zh-cht": "代理控制台", "xloc": [ - "default-mobile.handlebars->9->433", - "default.handlebars->27->1467" + "default-mobile.handlebars->9->434", + "default.handlebars->27->1469" ] }, { @@ -4091,7 +4091,7 @@ "zh-chs": "代理错误计数器", "zh-cht": "代理錯誤計數器", "xloc": [ - "default.handlebars->27->2036" + "default.handlebars->27->2039" ] }, { @@ -4131,8 +4131,8 @@ "zh-chs": "代理消息", "zh-cht": "代理訊息", "xloc": [ - "default-mobile.handlebars->9->177", - "default.handlebars->27->263" + "default-mobile.handlebars->9->178", + "default.handlebars->27->265" ] }, { @@ -4152,7 +4152,7 @@ "zh-chs": "代理中继", "zh-cht": "代理中繼", "xloc": [ - "default-mobile.handlebars->9->242" + "default-mobile.handlebars->9->243" ] }, { @@ -4194,7 +4194,7 @@ "zh-chs": "代理时段", "zh-cht": "代理時段", "xloc": [ - "default.handlebars->27->2052" + "default.handlebars->27->2055" ] }, { @@ -4214,8 +4214,8 @@ "zh-chs": "代理标签", "zh-cht": "代理標籤", "xloc": [ - "default-mobile.handlebars->9->238", - "default.handlebars->27->590" + "default-mobile.handlebars->9->239", + "default.handlebars->27->592" ] }, { @@ -4235,7 +4235,7 @@ "zh-chs": "代理类型", "zh-cht": "代理類型", "xloc": [ - "default.handlebars->27->1517", + "default.handlebars->27->1519", "default.handlebars->container->column_l->p21->3->1->meshOsChartDiv->1" ] }, @@ -4256,7 +4256,7 @@ "zh-chs": "代理关闭了与服务器压缩的{0}%代理会话。已发送:{1},已压缩:{2}", "zh-cht": "代理關閉了與{0}%代理到服務器壓縮的會話。已發送:{1},已壓縮:{2}", "xloc": [ - "default.handlebars->27->1621" + "default.handlebars->27->1623" ] }, { @@ -4276,9 +4276,9 @@ "zh-chs": "代理已连接", "zh-cht": "代理已連接", "xloc": [ - "default.handlebars->27->160", - "default.handlebars->27->656", - "default.handlebars->27->657" + "default.handlebars->27->161", + "default.handlebars->27->658", + "default.handlebars->27->659" ] }, { @@ -4298,7 +4298,7 @@ "zh-chs": "代理已断开连接", "zh-cht": "代理已斷開連接", "xloc": [ - "default.handlebars->27->164" + "default.handlebars->27->165" ] }, { @@ -4318,7 +4318,7 @@ "zh-chs": "代理离线", "zh-cht": "代理離線", "xloc": [ - "default.handlebars->27->994" + "default.handlebars->27->996" ] }, { @@ -4338,7 +4338,7 @@ "zh-chs": "代理在线", "zh-cht": "代理在線", "xloc": [ - "default.handlebars->27->993" + "default.handlebars->27->995" ] }, { @@ -4358,7 +4358,7 @@ "zh-chs": "代理", "zh-cht": "代理", "xloc": [ - "default.handlebars->27->2068" + "default.handlebars->27->2071" ] }, { @@ -4378,7 +4378,7 @@ "zh-chs": "阿尔巴尼亚文", "zh-cht": "阿爾巴尼亞文", "xloc": [ - "default.handlebars->27->1033" + "default.handlebars->27->1035" ] }, { @@ -4399,8 +4399,8 @@ "zh-cht": "所有", "xloc": [ "default-mobile.handlebars->9->117", - "default-mobile.handlebars->9->296", - "default-mobile.handlebars->9->298", + "default-mobile.handlebars->9->297", + "default-mobile.handlebars->9->299", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar->DevFilterSelect->1" ] }, @@ -4421,7 +4421,7 @@ "zh-chs": "全部可用", "zh-cht": "全部可用", "xloc": [ - "default.handlebars->27->1669" + "default.handlebars->27->1672" ] }, { @@ -4458,7 +4458,7 @@ "zh-chs": "所有事件", "zh-cht": "所有事件", "xloc": [ - "default.handlebars->27->1667" + "default.handlebars->27->1670" ] }, { @@ -4478,9 +4478,9 @@ "zh-chs": "全部聚焦", "zh-cht": "全部聚焦", "xloc": [ - "default.handlebars->27->829", "default.handlebars->27->831", - "default.handlebars->27->832" + "default.handlebars->27->833", + "default.handlebars->27->834" ] }, { @@ -4500,8 +4500,8 @@ "zh-chs": "允许用户管理此设备组和该组中的设备。", "zh-cht": "允許用戶管理此裝置群和該群中的裝置。", "xloc": [ - "default.handlebars->27->1415", - "default.handlebars->27->1870" + "default.handlebars->27->1417", + "default.handlebars->27->1873" ] }, { @@ -4521,7 +4521,7 @@ "zh-chs": "允许用户管理此设备。", "zh-cht": "允許用戶管理此裝置。", "xloc": [ - "default.handlebars->27->1416" + "default.handlebars->27->1418" ] }, { @@ -4585,7 +4585,7 @@ "zh-chs": "备用(F10 = ESC + 0)", "zh-cht": "備用(F10 = ESC + 0)", "xloc": [ - "default.handlebars->27->866" + "default.handlebars->27->868" ] }, { @@ -4626,10 +4626,10 @@ "zh-chs": "一直通知", "zh-cht": "一直通知", "xloc": [ - "default.handlebars->27->1327", - "default.handlebars->27->1831", - "default.handlebars->27->1918", - "default.handlebars->27->606" + "default.handlebars->27->1329", + "default.handlebars->27->1834", + "default.handlebars->27->1921", + "default.handlebars->27->608" ] }, { @@ -4649,10 +4649,10 @@ "zh-chs": "一直提示", "zh-cht": "一直提示", "xloc": [ - "default.handlebars->27->1328", - "default.handlebars->27->1832", - "default.handlebars->27->1919", - "default.handlebars->27->607" + "default.handlebars->27->1330", + "default.handlebars->27->1835", + "default.handlebars->27->1922", + "default.handlebars->27->609" ] }, { @@ -4794,7 +4794,7 @@ "zh-chs": "杀毒软件", "zh-cht": "防毒軟體", "xloc": [ - "default.handlebars->27->596" + "default.handlebars->27->598" ] }, { @@ -4814,7 +4814,7 @@ "zh-chs": "任何可支持的", "zh-cht": "任何可支持的", "xloc": [ - "default.handlebars->27->340" + "default.handlebars->27->342" ] }, { @@ -4834,7 +4834,7 @@ "zh-chs": "苹果macOS", "zh-cht": "蘋果macOS", "xloc": [ - "default.handlebars->27->375" + "default.handlebars->27->377" ] }, { @@ -4854,7 +4854,7 @@ "zh-chs": "仅限Apple macOS", "zh-cht": "僅限Apple macOS", "xloc": [ - "default.handlebars->27->342" + "default.handlebars->27->344" ] }, { @@ -4894,7 +4894,7 @@ "zh-chs": "阿拉伯文(阿尔及利亚)", "zh-cht": "阿拉伯文(阿爾及利亞)", "xloc": [ - "default.handlebars->27->1035" + "default.handlebars->27->1037" ] }, { @@ -4914,7 +4914,7 @@ "zh-chs": "阿拉伯文(巴林)", "zh-cht": "阿拉伯文(巴林)", "xloc": [ - "default.handlebars->27->1036" + "default.handlebars->27->1038" ] }, { @@ -4934,7 +4934,7 @@ "zh-chs": "阿拉伯文(埃及)", "zh-cht": "阿拉伯文(埃及)", "xloc": [ - "default.handlebars->27->1037" + "default.handlebars->27->1039" ] }, { @@ -4954,7 +4954,7 @@ "zh-chs": "阿拉伯文(伊拉克)", "zh-cht": "阿拉伯文(伊拉克)", "xloc": [ - "default.handlebars->27->1038" + "default.handlebars->27->1040" ] }, { @@ -4974,7 +4974,7 @@ "zh-chs": "阿拉伯文(约旦)", "zh-cht": "阿拉伯文(約旦)", "xloc": [ - "default.handlebars->27->1039" + "default.handlebars->27->1041" ] }, { @@ -4994,7 +4994,7 @@ "zh-chs": "阿拉伯文(科威特)", "zh-cht": "阿拉伯文(科威特)", "xloc": [ - "default.handlebars->27->1040" + "default.handlebars->27->1042" ] }, { @@ -5014,7 +5014,7 @@ "zh-chs": "阿拉伯文(黎巴嫩)", "zh-cht": "阿拉伯文(黎巴嫩)", "xloc": [ - "default.handlebars->27->1041" + "default.handlebars->27->1043" ] }, { @@ -5034,7 +5034,7 @@ "zh-chs": "阿拉伯文(利比亚)", "zh-cht": "阿拉伯文(利比亞)", "xloc": [ - "default.handlebars->27->1042" + "default.handlebars->27->1044" ] }, { @@ -5054,7 +5054,7 @@ "zh-chs": "阿拉伯文(摩洛哥)", "zh-cht": "阿拉伯文(摩洛哥)", "xloc": [ - "default.handlebars->27->1043" + "default.handlebars->27->1045" ] }, { @@ -5074,7 +5074,7 @@ "zh-chs": "阿拉伯文(阿曼)", "zh-cht": "阿拉伯文(阿曼)", "xloc": [ - "default.handlebars->27->1044" + "default.handlebars->27->1046" ] }, { @@ -5094,7 +5094,7 @@ "zh-chs": "阿拉伯文(卡塔尔)", "zh-cht": "阿拉伯文(卡塔爾)", "xloc": [ - "default.handlebars->27->1045" + "default.handlebars->27->1047" ] }, { @@ -5114,7 +5114,7 @@ "zh-chs": "阿拉伯文(沙特阿拉伯)", "zh-cht": "阿拉伯文(沙特阿拉伯)", "xloc": [ - "default.handlebars->27->1046" + "default.handlebars->27->1048" ] }, { @@ -5134,7 +5134,7 @@ "zh-chs": "阿拉伯文(标准)", "zh-cht": "阿拉伯文(標準)", "xloc": [ - "default.handlebars->27->1034" + "default.handlebars->27->1036" ] }, { @@ -5154,7 +5154,7 @@ "zh-chs": "阿拉伯文(叙利亚)", "zh-cht": "阿拉伯文(敘利亞)", "xloc": [ - "default.handlebars->27->1047" + "default.handlebars->27->1049" ] }, { @@ -5174,7 +5174,7 @@ "zh-chs": "阿拉伯文(突尼斯)", "zh-cht": "阿拉伯文(突尼斯)", "xloc": [ - "default.handlebars->27->1048" + "default.handlebars->27->1050" ] }, { @@ -5194,7 +5194,7 @@ "zh-chs": "阿拉伯文(阿联酋)", "zh-cht": "阿拉伯文(阿聯酋)", "xloc": [ - "default.handlebars->27->1049" + "default.handlebars->27->1051" ] }, { @@ -5214,7 +5214,7 @@ "zh-chs": "阿拉伯文(也门)", "zh-cht": "阿拉伯文(也門)", "xloc": [ - "default.handlebars->27->1050" + "default.handlebars->27->1052" ] }, { @@ -5234,7 +5234,7 @@ "zh-chs": "阿拉贡文", "zh-cht": "阿拉貢文", "xloc": [ - "default.handlebars->27->1051" + "default.handlebars->27->1053" ] }, { @@ -5254,8 +5254,8 @@ "zh-chs": "架构", "zh-cht": "結構", "xloc": [ - "default-mobile.handlebars->9->330", - "default.handlebars->27->921" + "default-mobile.handlebars->9->331", + "default.handlebars->27->923" ] }, { @@ -5275,7 +5275,7 @@ "zh-chs": "您确定要连接到{0}设备吗?", "zh-cht": "你確定要連接到{0}裝置嗎?", "xloc": [ - "default.handlebars->27->266" + "default.handlebars->27->268" ] }, { @@ -5295,8 +5295,8 @@ "zh-chs": "你确定要删除组{0}吗?删除设备组还将删除该组中有关设备的所有信息。", "zh-cht": "你確定要刪除群{0}嗎?刪除裝置群還將刪除該群中有關裝置的所有訊息。", "xloc": [ - "default-mobile.handlebars->9->404", - "default.handlebars->27->1391" + "default-mobile.handlebars->9->405", + "default.handlebars->27->1393" ] }, { @@ -5316,7 +5316,7 @@ "zh-chs": "您确定要删除节点{0}吗?", "zh-cht": "你確定要刪除節點{0}嗎?", "xloc": [ - "default.handlebars->27->776" + "default.handlebars->27->778" ] }, { @@ -5336,7 +5336,7 @@ "zh-chs": "您确定要卸载所选代理吗?", "zh-cht": "你確定要卸載所選代理嗎?", "xloc": [ - "default.handlebars->27->765" + "default.handlebars->27->767" ] }, { @@ -5356,7 +5356,7 @@ "zh-chs": "您确定要卸载所选的{0}代理吗?", "zh-cht": "你確定要卸載所選的{0}代理嗎?", "xloc": [ - "default.handlebars->27->764" + "default.handlebars->27->766" ] }, { @@ -5376,7 +5376,7 @@ "zh-chs": "您确定要{0}插件吗:{1}", "zh-cht": "你確定要{0}外掛嗎:{1}", "xloc": [ - "default.handlebars->27->2108" + "default.handlebars->27->2111" ] }, { @@ -5396,7 +5396,7 @@ "zh-chs": "亚美尼亚文", "zh-cht": "亞美尼亞文", "xloc": [ - "default.handlebars->27->1052" + "default.handlebars->27->1054" ] }, { @@ -5456,7 +5456,7 @@ "zh-chs": "阿萨姆文", "zh-cht": "阿薩姆文", "xloc": [ - "default.handlebars->27->1053" + "default.handlebars->27->1055" ] }, { @@ -5476,7 +5476,7 @@ "zh-chs": "阿斯图里亚斯文", "zh-cht": "阿斯圖里亞斯文", "xloc": [ - "default.handlebars->27->1054" + "default.handlebars->27->1056" ] }, { @@ -5496,7 +5496,7 @@ "zh-chs": "尝试激活英特尔(R)AMT ACM模式", "zh-cht": "嘗試激活英特爾(R)AMT ACM模式", "xloc": [ - "default.handlebars->27->1590" + "default.handlebars->27->1592" ] }, { @@ -5516,7 +5516,7 @@ "zh-chs": "认证软件", "zh-cht": "認證軟體", "xloc": [ - "default.handlebars->27->1922" + "default.handlebars->27->1925" ] }, { @@ -5540,8 +5540,8 @@ "default-mobile.handlebars->9->52", "default-mobile.handlebars->9->71", "default-mobile.handlebars->9->73", - "default.handlebars->27->1018", "default.handlebars->27->1020", + "default.handlebars->27->1022", "default.handlebars->27->125", "default.handlebars->27->130" ] @@ -5623,7 +5623,7 @@ "zh-chs": "自动删除", "zh-cht": "自動刪除", "xloc": [ - "default.handlebars->27->1314" + "default.handlebars->27->1316" ] }, { @@ -5687,7 +5687,7 @@ "zh-chs": "可用內存", "zh-cht": "可用內存", "xloc": [ - "default.handlebars->27->2061" + "default.handlebars->27->2064" ] }, { @@ -5707,7 +5707,7 @@ "zh-chs": "阿塞拜疆文", "zh-cht": "阿塞拜疆文", "xloc": [ - "default.handlebars->27->1055" + "default.handlebars->27->1057" ] }, { @@ -5727,8 +5727,8 @@ "zh-chs": "的BIOS", "zh-cht": "的BIOS", "xloc": [ - "default-mobile.handlebars->9->372", - "default.handlebars->27->973" + "default-mobile.handlebars->9->373", + "default.handlebars->27->975" ] }, { @@ -5823,7 +5823,7 @@ "zh-chs": "背景与互动", "zh-cht": "背景與互動", "xloc": [ - "default.handlebars->27->380" + "default.handlebars->27->382" ] }, { @@ -5843,10 +5843,10 @@ "zh-chs": "背景与互动", "zh-cht": "背景與互動", "xloc": [ - "default.handlebars->27->1494", - "default.handlebars->27->1501", - "default.handlebars->27->352", - "default.handlebars->27->366" + "default.handlebars->27->1496", + "default.handlebars->27->1503", + "default.handlebars->27->354", + "default.handlebars->27->368" ] }, { @@ -5866,11 +5866,11 @@ "zh-chs": "仅背景", "zh-cht": "僅背景", "xloc": [ - "default.handlebars->27->1495", - "default.handlebars->27->1502", - "default.handlebars->27->353", - "default.handlebars->27->367", - "default.handlebars->27->381" + "default.handlebars->27->1497", + "default.handlebars->27->1504", + "default.handlebars->27->355", + "default.handlebars->27->369", + "default.handlebars->27->383" ] }, { @@ -5910,7 +5910,7 @@ "zh-chs": "备用码", "zh-cht": "備用碼", "xloc": [ - "default.handlebars->27->1924" + "default.handlebars->27->1927" ] }, { @@ -5930,7 +5930,7 @@ "zh-chs": "错误的签名", "zh-cht": "錯誤的簽名", "xloc": [ - "default.handlebars->27->2043" + "default.handlebars->27->2046" ] }, { @@ -5950,7 +5950,7 @@ "zh-chs": "错误的网络证书", "zh-cht": "錯誤的網絡憑證", "xloc": [ - "default.handlebars->27->2042" + "default.handlebars->27->2045" ] }, { @@ -5970,7 +5970,7 @@ "zh-chs": "巴斯克", "zh-cht": "巴斯克", "xloc": [ - "default.handlebars->27->1056" + "default.handlebars->27->1058" ] }, { @@ -6010,7 +6010,7 @@ "zh-chs": "白俄罗斯文", "zh-cht": "白俄羅斯文", "xloc": [ - "default.handlebars->27->1058" + "default.handlebars->27->1060" ] }, { @@ -6030,7 +6030,7 @@ "zh-chs": "孟加拉", "zh-cht": "孟加拉", "xloc": [ - "default.handlebars->27->1059" + "default.handlebars->27->1061" ] }, { @@ -6073,7 +6073,7 @@ "zh-chs": "波斯尼亚文", "zh-cht": "波斯尼亞文", "xloc": [ - "default.handlebars->27->1060" + "default.handlebars->27->1062" ] }, { @@ -6093,7 +6093,7 @@ "zh-chs": "布列塔尼", "zh-cht": "布列塔尼", "xloc": [ - "default.handlebars->27->1061" + "default.handlebars->27->1063" ] }, { @@ -6113,7 +6113,7 @@ "zh-chs": "广播", "zh-cht": "廣播", "xloc": [ - "default.handlebars->27->1838", + "default.handlebars->27->1841", "default.handlebars->container->column_l->p4->3->1->0->3->1" ] }, @@ -6134,7 +6134,7 @@ "zh-chs": "广播消息", "zh-cht": "廣播消息", "xloc": [ - "default.handlebars->27->1759" + "default.handlebars->27->1762" ] }, { @@ -6154,7 +6154,7 @@ "zh-chs": "向所有连接的用户广播消息。", "zh-cht": "向所有連接的用戶廣播消息。", "xloc": [ - "default.handlebars->27->1754" + "default.handlebars->27->1757" ] }, { @@ -6174,7 +6174,7 @@ "zh-chs": "保加利亚文", "zh-cht": "保加利亞文", "xloc": [ - "default.handlebars->27->1057" + "default.handlebars->27->1059" ] }, { @@ -6194,7 +6194,7 @@ "zh-chs": "缅甸文", "zh-cht": "緬甸文", "xloc": [ - "default.handlebars->27->1062" + "default.handlebars->27->1064" ] }, { @@ -6214,8 +6214,8 @@ "zh-chs": "CCM", "zh-cht": "CCM", "xloc": [ - "default-mobile.handlebars->9->230", - "default.handlebars->27->575" + "default-mobile.handlebars->9->231", + "default.handlebars->27->577" ] }, { @@ -6235,11 +6235,11 @@ "zh-chs": "CIRA", "zh-cht": "CIRA", "xloc": [ - "default-mobile.handlebars->9->200", - "default.handlebars->27->1379", - "default.handlebars->27->1384", - "default.handlebars->27->212", - "default.handlebars->27->441" + "default-mobile.handlebars->9->201", + "default.handlebars->27->1381", + "default.handlebars->27->1386", + "default.handlebars->27->213", + "default.handlebars->27->443" ] }, { @@ -6259,7 +6259,7 @@ "zh-chs": "CIRA服务器", "zh-cht": "CIRA伺服器", "xloc": [ - "default.handlebars->27->2096" + "default.handlebars->27->2099" ] }, { @@ -6279,7 +6279,7 @@ "zh-chs": "CIRA服务器命令", "zh-cht": "CIRA伺服器指令", "xloc": [ - "default.handlebars->27->2097" + "default.handlebars->27->2100" ] }, { @@ -6299,8 +6299,8 @@ "zh-chs": "CPU", "zh-cht": "CPU", "xloc": [ - "default-mobile.handlebars->9->378", - "default.handlebars->27->979" + "default-mobile.handlebars->9->379", + "default.handlebars->27->981" ] }, { @@ -6320,7 +6320,7 @@ "zh-chs": "CPU负载", "zh-cht": "CPU負載", "xloc": [ - "default.handlebars->27->2057" + "default.handlebars->27->2060" ] }, { @@ -6340,7 +6340,7 @@ "zh-chs": "最近15分钟的CPU负载", "zh-cht": "最近15分鐘的CPU負載", "xloc": [ - "default.handlebars->27->2060" + "default.handlebars->27->2063" ] }, { @@ -6360,7 +6360,7 @@ "zh-chs": "最近5分钟的CPU负载", "zh-cht": "最近5分鐘的CPU負載", "xloc": [ - "default.handlebars->27->2059" + "default.handlebars->27->2062" ] }, { @@ -6380,7 +6380,7 @@ "zh-chs": "最近一分钟的CPU负载", "zh-cht": "最近一分鐘的CPU負載", "xloc": [ - "default.handlebars->27->2058" + "default.handlebars->27->2061" ] }, { @@ -6400,8 +6400,8 @@ "zh-chs": "CR+LF", "zh-cht": "CR+LF", "xloc": [ - "default.handlebars->27->859", - "default.handlebars->27->868", + "default.handlebars->27->861", + "default.handlebars->27->870", "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons" ] }, @@ -6422,7 +6422,7 @@ "zh-chs": "CSV", "zh-cht": "CSV", "xloc": [ - "default.handlebars->27->1677" + "default.handlebars->27->1680" ] }, { @@ -6442,9 +6442,9 @@ "zh-chs": "CSV格式", "zh-cht": "CSV格式", "xloc": [ - "default.handlebars->27->1681", - "default.handlebars->27->1746", - "default.handlebars->27->491" + "default.handlebars->27->1684", + "default.handlebars->27->1749", + "default.handlebars->27->493" ] }, { @@ -6464,7 +6464,7 @@ "zh-chs": "呼叫错误", "zh-cht": "呼叫錯誤", "xloc": [ - "default.handlebars->27->2109" + "default.handlebars->27->2112" ] }, { @@ -6486,7 +6486,7 @@ "xloc": [ "default-mobile.handlebars->9->82", "default-mobile.handlebars->dialog->idx_dlgButtonBar", - "default.handlebars->27->1292", + "default.handlebars->27->1294", "default.handlebars->container->dialog->idx_dlgButtonBar", "desktop.handlebars->p11->dialog->idx_dlgButtonBar", "login-mobile.handlebars->dialog->idx_dlgButtonBar", @@ -6513,10 +6513,10 @@ "zh-chs": "容量", "zh-cht": "容量", "xloc": [ - "default-mobile.handlebars->9->386", - "default-mobile.handlebars->9->388", - "default.handlebars->27->987", - "default.handlebars->27->989" + "default-mobile.handlebars->9->387", + "default-mobile.handlebars->9->389", + "default.handlebars->27->989", + "default.handlebars->27->991" ] }, { @@ -6536,8 +6536,8 @@ "zh-chs": "容量/速度", "zh-cht": "容量/速度", "xloc": [ - "default-mobile.handlebars->9->381", - "default.handlebars->27->982" + "default-mobile.handlebars->9->382", + "default.handlebars->27->984" ] }, { @@ -6557,7 +6557,7 @@ "zh-chs": "加泰罗尼亚文", "zh-cht": "加泰羅尼亞文", "xloc": [ - "default.handlebars->27->1063" + "default.handlebars->27->1065" ] }, { @@ -6577,7 +6577,7 @@ "zh-chs": "在这里为中心显示地图", "zh-cht": "在這裡為中心顯示地圖", "xloc": [ - "default.handlebars->27->537" + "default.handlebars->27->539" ] }, { @@ -6597,7 +6597,7 @@ "zh-chs": "查莫罗", "zh-cht": "查莫羅", "xloc": [ - "default.handlebars->27->1064" + "default.handlebars->27->1066" ] }, { @@ -6639,7 +6639,7 @@ "zh-chs": "更改{0}的电邮", "zh-cht": "更改{0}的電郵", "xloc": [ - "default.handlebars->27->1952" + "default.handlebars->27->1955" ] }, { @@ -6659,9 +6659,9 @@ "zh-chs": "更改组", "zh-cht": "更改群", "xloc": [ - "default.handlebars->27->633", - "default.handlebars->27->773", - "default.handlebars->27->774" + "default.handlebars->27->635", + "default.handlebars->27->775", + "default.handlebars->27->776" ] }, { @@ -6682,8 +6682,8 @@ "zh-cht": "更改密碼", "xloc": [ "default-mobile.handlebars->9->90", - "default.handlebars->27->1259", - "default.handlebars->27->1939" + "default.handlebars->27->1261", + "default.handlebars->27->1942" ] }, { @@ -6703,7 +6703,7 @@ "zh-chs": "更改{0}的密码", "zh-cht": "更改{0}的密碼", "xloc": [ - "default.handlebars->27->1959" + "default.handlebars->27->1962" ] }, { @@ -6723,7 +6723,7 @@ "zh-chs": "更改{0}的真实名称", "zh-cht": "更改{0}的真實名稱", "xloc": [ - "default.handlebars->27->1947" + "default.handlebars->27->1950" ] }, { @@ -6805,7 +6805,7 @@ "zh-chs": "更改该用户的密码", "zh-cht": "更改該用戶的密碼", "xloc": [ - "default.handlebars->27->1938" + "default.handlebars->27->1941" ] }, { @@ -6845,7 +6845,7 @@ "zh-chs": "在此处更改您的帐户电邮地址。", "zh-cht": "在此處更改你的帳戶電郵地址。", "xloc": [ - "default.handlebars->27->1246" + "default.handlebars->27->1248" ] }, { @@ -6865,7 +6865,7 @@ "zh-chs": "在下面的框中两次输入旧密码和新密码,以更改帐户密码。", "zh-cht": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。", "xloc": [ - "default.handlebars->27->1252" + "default.handlebars->27->1254" ] }, { @@ -6885,7 +6885,7 @@ "zh-chs": "更改帐户凭据", "zh-cht": "帳戶憑證已更改", "xloc": [ - "default.handlebars->27->1642" + "default.handlebars->27->1644" ] }, { @@ -6905,7 +6905,7 @@ "zh-chs": "{1}组中的设备{0}已更改:{2}", "zh-cht": "{1}組中的設備{0}已更改:{2}", "xloc": [ - "default.handlebars->27->1626" + "default.handlebars->27->1628" ] }, { @@ -6925,7 +6925,7 @@ "zh-chs": "语言从{1}更改为{2}", "zh-cht": "語言從{1}更改為{2}", "xloc": [ - "default.handlebars->27->1570" + "default.handlebars->27->1572" ] }, { @@ -6945,8 +6945,8 @@ "zh-chs": "已更改{0}的用户设备权限", "zh-cht": "已更改{0}的用戶設備權限", "xloc": [ - "default.handlebars->27->1628", - "default.handlebars->27->1649" + "default.handlebars->27->1630", + "default.handlebars->27->1651" ] }, { @@ -6966,7 +6966,7 @@ "zh-chs": "更改语言将需要刷新页面。", "zh-cht": "更改語言將需要刷新頁面。", "xloc": [ - "default.handlebars->27->1231" + "default.handlebars->27->1233" ] }, { @@ -6986,9 +6986,9 @@ "zh-chs": "聊天", "zh-cht": "聊天", "xloc": [ - "default.handlebars->27->1698", - "default.handlebars->27->686", - "default.handlebars->27->705" + "default.handlebars->27->1701", + "default.handlebars->27->688", + "default.handlebars->27->707" ] }, { @@ -7008,10 +7008,10 @@ "zh-chs": "聊天并通知", "zh-cht": "聊天並通知", "xloc": [ - "default-mobile.handlebars->9->425", - "default-mobile.handlebars->9->443", - "default.handlebars->27->1443", - "default.handlebars->27->1478" + "default-mobile.handlebars->9->426", + "default-mobile.handlebars->9->444", + "default.handlebars->27->1445", + "default.handlebars->27->1480" ] }, { @@ -7051,7 +7051,7 @@ "zh-chs": "车臣", "zh-cht": "車臣", "xloc": [ - "default.handlebars->27->1065" + "default.handlebars->27->1067" ] }, { @@ -7151,8 +7151,8 @@ "zh-chs": "检查...", "zh-cht": "檢查...", "xloc": [ - "default.handlebars->27->1031", - "default.handlebars->27->2103" + "default.handlebars->27->1033", + "default.handlebars->27->2106" ] }, { @@ -7172,7 +7172,7 @@ "zh-chs": "中文", "zh-cht": "中文", "xloc": [ - "default.handlebars->27->1066" + "default.handlebars->27->1068" ] }, { @@ -7192,7 +7192,7 @@ "zh-chs": "中文(香港)", "zh-cht": "中文(香港)", "xloc": [ - "default.handlebars->27->1067" + "default.handlebars->27->1069" ] }, { @@ -7212,7 +7212,7 @@ "zh-chs": "中文(中国)", "zh-cht": "中文(中國)", "xloc": [ - "default.handlebars->27->1068" + "default.handlebars->27->1070" ] }, { @@ -7232,7 +7232,7 @@ "zh-chs": "简体中文", "zh-cht": "簡體中文", "xloc": [ - "default.handlebars->27->1228" + "default.handlebars->27->1230" ] }, { @@ -7252,7 +7252,7 @@ "zh-chs": "中文(新加坡)", "zh-cht": "中文(新加坡)", "xloc": [ - "default.handlebars->27->1069" + "default.handlebars->27->1071" ] }, { @@ -7272,7 +7272,7 @@ "zh-chs": "中文(台湾)", "zh-cht": "中文(台灣)", "xloc": [ - "default.handlebars->27->1070" + "default.handlebars->27->1072" ] }, { @@ -7292,7 +7292,7 @@ "zh-chs": "繁体中文", "zh-cht": "繁體中文", "xloc": [ - "default.handlebars->27->1229" + "default.handlebars->27->1231" ] }, { @@ -7333,7 +7333,7 @@ "zh-chs": "楚瓦什", "zh-cht": "楚瓦什", "xloc": [ - "default.handlebars->27->1071" + "default.handlebars->27->1073" ] }, { @@ -7353,7 +7353,7 @@ "zh-chs": "清理CIRA", "zh-cht": "清理CIRA", "xloc": [ - "default.handlebars->27->314" + "default.handlebars->27->316" ] }, { @@ -7374,16 +7374,16 @@ "zh-cht": "清除", "xloc": [ "default-mobile.handlebars->9->132", - "default-mobile.handlebars->9->314", - "default-mobile.handlebars->9->316", - "default-mobile.handlebars->9->318", - "default-mobile.handlebars->9->320", + "default-mobile.handlebars->9->315", + "default-mobile.handlebars->9->317", + "default-mobile.handlebars->9->319", + "default-mobile.handlebars->9->321", "default-mobile.handlebars->9->59", - "default.handlebars->27->1564", - "default.handlebars->27->898", + "default.handlebars->27->1566", "default.handlebars->27->900", "default.handlebars->27->902", "default.handlebars->27->904", + "default.handlebars->27->906", "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" @@ -7426,7 +7426,7 @@ "zh-chs": "全部清除", "zh-cht": "全部清除", "xloc": [ - "default.handlebars->27->2030" + "default.handlebars->27->2033" ] }, { @@ -7446,7 +7446,7 @@ "zh-chs": "清除核心", "zh-cht": "清除核心", "xloc": [ - "default.handlebars->27->1003" + "default.handlebars->27->1005" ] }, { @@ -7486,7 +7486,7 @@ "zh-chs": "清除此通知", "zh-cht": "清除此通知", "xloc": [ - "default.handlebars->27->2029" + "default.handlebars->27->2032" ] }, { @@ -7546,8 +7546,8 @@ "zh-chs": "单击此处编辑设备组名称", "zh-cht": "單擊此處編輯裝置群名稱", "xloc": [ - "default.handlebars->27->1303", - "default.handlebars->27->1515" + "default.handlebars->27->1305", + "default.handlebars->27->1517" ] }, { @@ -7567,7 +7567,7 @@ "zh-chs": "单击此处编辑服务器端设备名称", "zh-cht": "單擊此處編輯伺服器端裝置名稱", "xloc": [ - "default.handlebars->27->553" + "default.handlebars->27->555" ] }, { @@ -7587,7 +7587,7 @@ "zh-chs": "单击此处编辑用户组名称", "zh-cht": "單擊此處編輯用戶群名稱", "xloc": [ - "default.handlebars->27->1815" + "default.handlebars->27->1818" ] }, { @@ -7648,7 +7648,7 @@ "zh-cht": "單擊確定將驗證電郵發送到:", "xloc": [ "default-mobile.handlebars->9->75", - "default.handlebars->27->1243" + "default.handlebars->27->1245" ] }, { @@ -7688,8 +7688,8 @@ "zh-chs": "客户端控制模式(CCM)", "zh-cht": "客戶端控制模式(CCM)", "xloc": [ - "default-mobile.handlebars->9->359", - "default.handlebars->27->960" + "default-mobile.handlebars->9->360", + "default.handlebars->27->962" ] }, { @@ -7709,7 +7709,7 @@ "zh-chs": "客户编号", "zh-cht": "客戶編號", "xloc": [ - "default.handlebars->27->1285" + "default.handlebars->27->1287" ] }, { @@ -7729,8 +7729,8 @@ "zh-chs": "客户端启动的远程访问", "zh-cht": "客戶端啟動的遠程訪問", "xloc": [ - "default.handlebars->27->1378", - "default.handlebars->27->1383" + "default.handlebars->27->1380", + "default.handlebars->27->1385" ] }, { @@ -7750,7 +7750,7 @@ "zh-chs": "客户机密", "zh-cht": "客戶機密", "xloc": [ - "default.handlebars->27->1286" + "default.handlebars->27->1288" ] }, { @@ -7794,7 +7794,7 @@ "default-mobile.handlebars->9->57", "default.handlebars->27->137", "default.handlebars->27->145", - "default.handlebars->27->850" + "default.handlebars->27->852" ] }, { @@ -7814,7 +7814,7 @@ "zh-chs": "封闭式桌面多路复用会话,{0}秒", "zh-cht": "封閉式桌面多路復用會話,{0}秒", "xloc": [ - "default.handlebars->27->1575" + "default.handlebars->27->1577" ] }, { @@ -7834,7 +7834,7 @@ "zh-chs": "码", "zh-cht": "碼", "xloc": [ - "default.handlebars->27->200" + "default.handlebars->27->201" ] }, { @@ -7883,7 +7883,7 @@ "en": "Command", "nl": "Opdracht", "xloc": [ - "default.handlebars->27->412" + "default.handlebars->27->414" ] }, { @@ -7903,8 +7903,8 @@ "zh-chs": "通用设备组", "zh-cht": "通用裝置群", "xloc": [ - "default.handlebars->27->1846", - "default.handlebars->27->1964" + "default.handlebars->27->1849", + "default.handlebars->27->1967" ] }, { @@ -7924,8 +7924,8 @@ "zh-chs": "通用设备", "zh-cht": "通用裝置", "xloc": [ - "default.handlebars->27->1852", - "default.handlebars->27->1976" + "default.handlebars->27->1855", + "default.handlebars->27->1979" ] }, { @@ -7945,7 +7945,7 @@ "zh-chs": "压缩档案...", "zh-cht": "壓縮檔案...", "xloc": [ - "default.handlebars->27->875" + "default.handlebars->27->877" ] }, { @@ -7966,7 +7966,7 @@ "zh-cht": "將{1}入口{2}中的{0}限製到此位置?", "xloc": [ "default-mobile.handlebars->9->127", - "default.handlebars->27->1559" + "default.handlebars->27->1561" ] }, { @@ -7986,16 +7986,16 @@ "zh-chs": "确认", "zh-cht": "確認", "xloc": [ - "default-mobile.handlebars->9->276", - "default-mobile.handlebars->9->405", - "default.handlebars->27->1392", - "default.handlebars->27->1726", - "default.handlebars->27->1805", - "default.handlebars->27->1866", - "default.handlebars->27->1962", - "default.handlebars->27->467", - "default.handlebars->27->768", - "default.handlebars->27->777" + "default-mobile.handlebars->9->277", + "default-mobile.handlebars->9->406", + "default.handlebars->27->1394", + "default.handlebars->27->1729", + "default.handlebars->27->1808", + "default.handlebars->27->1869", + "default.handlebars->27->1965", + "default.handlebars->27->469", + "default.handlebars->27->770", + "default.handlebars->27->779" ] }, { @@ -8015,8 +8015,8 @@ "zh-chs": "确认将1个副本复制到此位置?", "zh-cht": "確認將1個副本複製到此位置?", "xloc": [ - "default-mobile.handlebars->9->309", - "default.handlebars->27->893" + "default-mobile.handlebars->9->310", + "default.handlebars->27->895" ] }, { @@ -8036,7 +8036,7 @@ "zh-chs": "确认{0}个条目的复制到此位置?", "zh-cht": "確認{0}個條目的複製到此位置?", "xloc": [ - "default.handlebars->27->892" + "default.handlebars->27->894" ] }, { @@ -8056,7 +8056,7 @@ "zh-chs": "确认{0}个条目的副本到此位置?", "zh-cht": "確認{0}個條目的副本到此位置?", "xloc": [ - "default-mobile.handlebars->9->308" + "default-mobile.handlebars->9->309" ] }, { @@ -8076,7 +8076,7 @@ "zh-chs": "确认删除选定的帐户?", "zh-cht": "確認刪除所選帳戶?", "xloc": [ - "default.handlebars->27->1725" + "default.handlebars->27->1728" ] }, { @@ -8096,7 +8096,7 @@ "zh-chs": "确认删除选定的设备?", "zh-cht": "確認刪除所選裝置?", "xloc": [ - "default.handlebars->27->466" + "default.handlebars->27->468" ] }, { @@ -8116,7 +8116,7 @@ "zh-chs": "确认删除选定的用户组?", "zh-cht": "確認刪除所選用戶群?", "xloc": [ - "default.handlebars->27->1804" + "default.handlebars->27->1807" ] }, { @@ -8136,7 +8136,7 @@ "zh-chs": "确认删除用户{0}?", "zh-cht": "確認刪除用戶{0}?", "xloc": [ - "default.handlebars->27->1961" + "default.handlebars->27->1964" ] }, { @@ -8156,7 +8156,7 @@ "zh-chs": "确认删除用户“ {0} ”的成员身份?", "zh-cht": "確認刪除用戶“ {0} ”的成員身份?", "xloc": [ - "default.handlebars->27->1869" + "default.handlebars->27->1872" ] }, { @@ -8176,7 +8176,7 @@ "zh-chs": "确认删除用户组“ {0} ”的成员身份?", "zh-cht": "確認刪除用戶群“ {0} ”的成員身份?", "xloc": [ - "default.handlebars->27->1991" + "default.handlebars->27->1994" ] }, { @@ -8196,8 +8196,8 @@ "zh-chs": "确认将1个条目移动到此位置?", "zh-cht": "確認將1個條目移動到此位置?", "xloc": [ - "default-mobile.handlebars->9->311", - "default.handlebars->27->895" + "default-mobile.handlebars->9->312", + "default.handlebars->27->897" ] }, { @@ -8217,7 +8217,7 @@ "zh-chs": "确认将{0}个条目移到此位置?", "zh-cht": "確認將{0}個條目移到該位置?", "xloc": [ - "default.handlebars->27->894" + "default.handlebars->27->896" ] }, { @@ -8237,7 +8237,7 @@ "zh-chs": "确认将{0}个条目移到该位置?", "zh-cht": "確認將{0}個條目移到該位置?", "xloc": [ - "default-mobile.handlebars->9->310" + "default-mobile.handlebars->9->311" ] }, { @@ -8257,7 +8257,7 @@ "zh-chs": "确认覆盖?", "zh-cht": "確認覆蓋?", "xloc": [ - "default.handlebars->27->1558" + "default.handlebars->27->1560" ] }, { @@ -8277,8 +8277,8 @@ "zh-chs": "确认删除设备“ {0} ”的访问权限?", "zh-cht": "確認刪除裝置“ {0} ”的訪問權限?", "xloc": [ - "default.handlebars->27->1859", - "default.handlebars->27->1982" + "default.handlebars->27->1862", + "default.handlebars->27->1985" ] }, { @@ -8298,8 +8298,8 @@ "zh-chs": "确认删除设备组“ {0} ”的访问权限?", "zh-cht": "確認刪除裝置群“ {0} ”的訪問權限?", "xloc": [ - "default.handlebars->27->1861", - "default.handlebars->27->1995" + "default.handlebars->27->1864", + "default.handlebars->27->1998" ] }, { @@ -8319,7 +8319,7 @@ "zh-chs": "确认删除用户“ {0} ”的访问权限?", "zh-cht": "確認刪除用戶“ {0} ”的訪問權限?", "xloc": [ - "default.handlebars->27->1984" + "default.handlebars->27->1987" ] }, { @@ -8339,7 +8339,7 @@ "zh-chs": "确认删除用户组“ {0} ”的访问权限?", "zh-cht": "確認刪除用戶群“ {0} ”的訪問權限?", "xloc": [ - "default.handlebars->27->1987" + "default.handlebars->27->1990" ] }, { @@ -8359,8 +8359,8 @@ "zh-chs": "确认删除访问权限?", "zh-cht": "確認刪除訪問權限?", "xloc": [ - "default.handlebars->27->1985", - "default.handlebars->27->1988" + "default.handlebars->27->1988", + "default.handlebars->27->1991" ] }, { @@ -8381,7 +8381,7 @@ "zh-cht": "確認刪除身份驗證軟體兩步登入?", "xloc": [ "default-mobile.handlebars->9->74", - "default.handlebars->27->1021" + "default.handlebars->27->1023" ] }, { @@ -8452,7 +8452,7 @@ "zh-chs": "确认删除用户“ {0} ”的权限?", "zh-cht": "確認刪除用戶“ {0} ”的權限?", "xloc": [ - "default.handlebars->27->1487" + "default.handlebars->27->1489" ] }, { @@ -8472,7 +8472,7 @@ "zh-chs": "确认删除用户组“ {0} ”的权限?", "zh-cht": "確認刪除用戶群“ {0} ”的權限?", "xloc": [ - "default.handlebars->27->1489" + "default.handlebars->27->1491" ] }, { @@ -8509,7 +8509,7 @@ "zh-chs": "确认删除用户{0}?", "zh-cht": "確認刪除用戶{0}?", "xloc": [ - "default-mobile.handlebars->9->452" + "default-mobile.handlebars->9->453" ] }, { @@ -8529,11 +8529,11 @@ "zh-chs": "连接", "zh-cht": "連接", "xloc": [ - "default-mobile.handlebars->9->291", + "default-mobile.handlebars->9->292", "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.handlebars->27->1331", - "default.handlebars->27->871", + "default.handlebars->27->1333", + "default.handlebars->27->873", "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", @@ -8559,7 +8559,7 @@ "zh-chs": "全部连接", "zh-cht": "全部連接", "xloc": [ - "default.handlebars->27->265", + "default.handlebars->27->267", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->kvmListToolbar" ] }, @@ -8580,8 +8580,8 @@ "zh-chs": "连接到服务器", "zh-cht": "連接到伺服器", "xloc": [ - "default.handlebars->27->1382", - "default.handlebars->27->1386" + "default.handlebars->27->1384", + "default.handlebars->27->1388" ] }, { @@ -8702,7 +8702,7 @@ "zh-chs": "已连接的英特尔®AMT", "zh-cht": "已連接的Intel® AMT", "xloc": [ - "default.handlebars->27->2048" + "default.handlebars->27->2051" ] }, { @@ -8722,7 +8722,7 @@ "zh-chs": "已连接的用户", "zh-cht": "已连接的用户", "xloc": [ - "default.handlebars->27->2053" + "default.handlebars->27->2056" ] }, { @@ -8742,8 +8742,8 @@ "zh-chs": "现在已连接", "zh-cht": "現在已連接", "xloc": [ - "default-mobile.handlebars->9->334", - "default.handlebars->27->925" + "default-mobile.handlebars->9->335", + "default.handlebars->27->927" ] }, { @@ -8784,13 +8784,13 @@ "zh-cht": "正在連線...", "xloc": [ "default-mobile.handlebars->9->2", - "default-mobile.handlebars->9->327", + "default-mobile.handlebars->9->328", "default-mobile.handlebars->9->37", - "default.handlebars->27->239", - "default.handlebars->27->242", - "default.handlebars->27->268", + "default.handlebars->27->240", + "default.handlebars->27->243", + "default.handlebars->27->270", "default.handlebars->27->9", - "default.handlebars->27->916", + "default.handlebars->27->918", "desktop.handlebars->3->2", "xterm.handlebars->9->2" ] @@ -8812,7 +8812,7 @@ "zh-chs": "连接数量", "zh-cht": "連接數量", "xloc": [ - "default.handlebars->27->2067" + "default.handlebars->27->2070" ] }, { @@ -8832,7 +8832,7 @@ "zh-chs": "连接转发器", "zh-cht": "連接轉發器", "xloc": [ - "default.handlebars->27->2095" + "default.handlebars->27->2098" ] }, { @@ -8892,10 +8892,10 @@ "zh-chs": "连接性", "zh-cht": "連接性", "xloc": [ - "default-mobile.handlebars->9->244", - "default.handlebars->27->1522", - "default.handlebars->27->230", - "default.handlebars->27->620", + "default-mobile.handlebars->9->245", + "default.handlebars->27->1524", + "default.handlebars->27->231", + "default.handlebars->27->622", "default.handlebars->container->column_l->p21->3->1->meshConnChartDiv->1" ] }, @@ -8916,8 +8916,8 @@ "zh-chs": "控制台", "zh-cht": "控制台", "xloc": [ - "default.handlebars->27->681", - "default.handlebars->27->700", + "default.handlebars->27->683", + "default.handlebars->27->702", "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" @@ -8940,7 +8940,7 @@ "zh-chs": "控制台 -", "zh-cht": "控制台 -", "xloc": [ - "default.handlebars->27->554" + "default.handlebars->27->556" ] }, { @@ -8960,8 +8960,8 @@ "zh-chs": "控制", "zh-cht": "控制", "xloc": [ - "default.handlebars->27->680", - "default.handlebars->27->699", + "default.handlebars->27->682", + "default.handlebars->27->701", "messenger.handlebars->13->1" ] }, @@ -8982,7 +8982,7 @@ "zh-chs": "Cookie编码器", "zh-cht": "Cookie編碼器", "xloc": [ - "default.handlebars->27->2081" + "default.handlebars->27->2084" ] }, { @@ -9047,7 +9047,7 @@ "zh-chs": "将Windows 32位代理URL复制到剪贴板", "zh-cht": "將Windows 32位代理URL複製到剪貼板", "xloc": [ - "default.handlebars->27->387" + "default.handlebars->27->389" ] }, { @@ -9067,7 +9067,7 @@ "zh-chs": "将Windows 64位代理URL复制到剪贴板", "zh-cht": "將Windows 64位代理URL複製到剪貼板", "xloc": [ - "default.handlebars->27->391" + "default.handlebars->27->393" ] }, { @@ -9118,8 +9118,8 @@ "zh-chs": "将代理URL复制到剪贴板", "zh-cht": "將代理URL複製到剪貼板", "xloc": [ - "default.handlebars->27->411", - "default.handlebars->27->413" + "default.handlebars->27->413", + "default.handlebars->27->415" ] }, { @@ -9139,10 +9139,10 @@ "zh-chs": "复制连结到剪贴板", "zh-cht": "複製連結到剪貼板", "xloc": [ - "default.handlebars->27->1527", - "default.handlebars->27->1546", - "default.handlebars->27->192", - "default.handlebars->27->369" + "default.handlebars->27->1529", + "default.handlebars->27->1548", + "default.handlebars->27->193", + "default.handlebars->27->371" ] }, { @@ -9162,7 +9162,7 @@ "zh-chs": "将macOS代理URL复制到剪贴板", "zh-cht": "將macOS代理URL複製到剪貼板", "xloc": [ - "default.handlebars->27->399" + "default.handlebars->27->401" ] }, { @@ -9243,7 +9243,7 @@ "zh-chs": "复制:“{0}”到“{1}”", "zh-cht": "複製:“{0}”到“{1}”", "xloc": [ - "default.handlebars->27->1618" + "default.handlebars->27->1620" ] }, { @@ -9389,7 +9389,7 @@ "zh-chs": "核心服务器", "zh-cht": "核心伺服器", "xloc": [ - "default.handlebars->27->2080" + "default.handlebars->27->2083" ] }, { @@ -9409,7 +9409,7 @@ "zh-chs": "科西嘉文", "zh-cht": "科西嘉文", "xloc": [ - "default.handlebars->27->1072" + "default.handlebars->27->1074" ] }, { @@ -9429,7 +9429,7 @@ "zh-chs": "创建帐号", "zh-cht": "創建帳號", "xloc": [ - "default.handlebars->27->1773", + "default.handlebars->27->1776", "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" @@ -9472,7 +9472,7 @@ "zh-chs": "创建用户组", "zh-cht": "創建用戶群", "xloc": [ - "default.handlebars->27->1812" + "default.handlebars->27->1815" ] }, { @@ -9492,7 +9492,7 @@ "zh-chs": "创建连结以与访客共享此设备", "zh-cht": "創建鏈結以與訪客共享此裝置", "xloc": [ - "default.handlebars->27->631" + "default.handlebars->27->633" ] }, { @@ -9512,7 +9512,7 @@ "zh-chs": "使用以下选项创建一个新的设备组。", "zh-cht": "使用以下選項創建一個新的裝置群。", "xloc": [ - "default.handlebars->27->1266" + "default.handlebars->27->1268" ] }, { @@ -9532,7 +9532,7 @@ "zh-chs": "创建一个新的设备组。", "zh-cht": "創建一個新的裝置群。", "xloc": [ - "default.handlebars->27->232" + "default.handlebars->27->233" ] }, { @@ -9552,7 +9552,7 @@ "zh-chs": "创建文件夹:“{0}”", "zh-cht": "創建文件夾:“{0}”", "xloc": [ - "default.handlebars->27->1611" + "default.handlebars->27->1613" ] }, { @@ -9572,7 +9572,7 @@ "zh-chs": "通过导入以下格式的JSON档案一次创建多个帐户:", "zh-cht": "通過導入以下格式的JSON檔案一次創建多個帳戶:", "xloc": [ - "default.handlebars->27->1737" + "default.handlebars->27->1740" ] }, { @@ -9614,7 +9614,7 @@ "zh-chs": "创建的设备组:{0}", "zh-cht": "創建的設備組:{0}", "xloc": [ - "default.handlebars->27->1622" + "default.handlebars->27->1624" ] }, { @@ -9634,7 +9634,7 @@ "zh-chs": "创建一个连结,该连结允许没有帐户的访客将远程桌面访问此设备最多1小时。", "zh-cht": "創建一個鏈結,該鏈結允許沒有帳戶的訪客將遠程桌面訪問此裝置最多1小時。", "xloc": [ - "default.handlebars->27->716" + "default.handlebars->27->718" ] }, { @@ -9654,7 +9654,7 @@ "zh-chs": "创建", "zh-cht": "創建", "xloc": [ - "default.handlebars->27->1898" + "default.handlebars->27->1901" ] }, { @@ -9674,7 +9674,7 @@ "zh-chs": "创建时间", "zh-cht": "創作時間", "xloc": [ - "default.handlebars->27->1313" + "default.handlebars->27->1315" ] }, { @@ -9716,8 +9716,8 @@ "zh-chs": "创建者", "zh-cht": "創作者", "xloc": [ - "default.handlebars->27->1311", - "default.handlebars->27->1312" + "default.handlebars->27->1313", + "default.handlebars->27->1314" ] }, { @@ -9737,7 +9737,7 @@ "zh-chs": "证书", "zh-cht": "證書", "xloc": [ - "default.handlebars->27->1283" + "default.handlebars->27->1285" ] }, { @@ -9757,7 +9757,7 @@ "zh-chs": "克里语", "zh-cht": "克里語", "xloc": [ - "default.handlebars->27->1073" + "default.handlebars->27->1075" ] }, { @@ -9777,7 +9777,7 @@ "zh-chs": "克罗地亚文", "zh-cht": "克羅地亞文", "xloc": [ - "default.handlebars->27->1074" + "default.handlebars->27->1076" ] }, { @@ -9944,7 +9944,7 @@ "zh-chs": "捷克文", "zh-cht": "捷克文", "xloc": [ - "default.handlebars->27->1075" + "default.handlebars->27->1077" ] }, { @@ -9984,7 +9984,7 @@ "zh-chs": "丹麦文", "zh-cht": "丹麥文", "xloc": [ - "default.handlebars->27->1076" + "default.handlebars->27->1078" ] }, { @@ -10004,7 +10004,7 @@ "zh-chs": "数据通道", "zh-cht": "數據通道", "xloc": [ - "default.handlebars->27->820", + "default.handlebars->27->822", "desktop.handlebars->3->12" ] }, @@ -10025,7 +10025,7 @@ "zh-chs": "日期和时间", "zh-cht": "日期和時間", "xloc": [ - "default.handlebars->27->1234" + "default.handlebars->27->1236" ] }, { @@ -10045,8 +10045,8 @@ "zh-chs": "天", "zh-cht": "天", "xloc": [ - "default-mobile.handlebars->9->266", - "default.handlebars->27->752" + "default-mobile.handlebars->9->267", + "default.handlebars->27->754" ] }, { @@ -10066,7 +10066,7 @@ "zh-chs": "停用客户端控制模式(CCM)", "zh-cht": "停用客戶端控制模式(CCM)", "xloc": [ - "default.handlebars->27->1370" + "default.handlebars->27->1372" ] }, { @@ -10086,8 +10086,8 @@ "zh-chs": "沉睡", "zh-cht": "沉睡", "xloc": [ - "default-mobile.handlebars->9->188", - "default.handlebars->27->424" + "default-mobile.handlebars->9->189", + "default.handlebars->27->426" ] }, { @@ -10107,10 +10107,10 @@ "zh-chs": "默认", "zh-cht": "默認", "xloc": [ - "default.handlebars->27->1760", - "default.handlebars->27->1808", - "default.handlebars->27->1819", - "default.handlebars->27->1887" + "default.handlebars->27->1763", + "default.handlebars->27->1811", + "default.handlebars->27->1822", + "default.handlebars->27->1890" ] }, { @@ -10131,12 +10131,12 @@ "zh-cht": "刪除", "xloc": [ "default-mobile.handlebars->9->122", - "default-mobile.handlebars->9->301", + "default-mobile.handlebars->9->302", "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->27->1553", - "default.handlebars->27->524", - "default.handlebars->27->884", + "default.handlebars->27->1555", + "default.handlebars->27->526", + "default.handlebars->27->886", "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", @@ -10164,7 +10164,7 @@ "zh-cht": "刪除帳戶", "xloc": [ "default-mobile.handlebars->9->84", - "default.handlebars->27->1251" + "default.handlebars->27->1253" ] }, { @@ -10184,7 +10184,7 @@ "zh-chs": "删除帐户", "zh-cht": "刪除帳戶", "xloc": [ - "default.handlebars->27->1727" + "default.handlebars->27->1730" ] }, { @@ -10204,8 +10204,8 @@ "zh-chs": "删除设备", "zh-cht": "刪除裝置", "xloc": [ - "default-mobile.handlebars->9->249", - "default.handlebars->27->635" + "default-mobile.handlebars->9->250", + "default.handlebars->27->637" ] }, { @@ -10225,10 +10225,10 @@ "zh-chs": "删除群组", "zh-cht": "刪除群組", "xloc": [ - "default-mobile.handlebars->9->403", - "default-mobile.handlebars->9->406", - "default.handlebars->27->1363", - "default.handlebars->27->1393" + "default-mobile.handlebars->9->404", + "default-mobile.handlebars->9->407", + "default.handlebars->27->1365", + "default.handlebars->27->1395" ] }, { @@ -10248,8 +10248,8 @@ "zh-chs": "删除节点", "zh-cht": "刪除節點", "xloc": [ - "default-mobile.handlebars->9->274", - "default.handlebars->27->778" + "default-mobile.handlebars->9->275", + "default.handlebars->27->780" ] }, { @@ -10269,7 +10269,7 @@ "zh-chs": "删除节点", "zh-cht": "刪除節點", "xloc": [ - "default.handlebars->27->468" + "default.handlebars->27->470" ] }, { @@ -10289,7 +10289,7 @@ "zh-chs": "删除用户", "zh-cht": "刪除用戶", "xloc": [ - "default.handlebars->27->1937" + "default.handlebars->27->1940" ] }, { @@ -10309,8 +10309,8 @@ "zh-chs": "删除用户群组", "zh-cht": "刪除用戶群組", "xloc": [ - "default.handlebars->27->1857", - "default.handlebars->27->1867" + "default.handlebars->27->1860", + "default.handlebars->27->1870" ] }, { @@ -10330,7 +10330,7 @@ "zh-chs": "删除用户群组", "zh-cht": "刪除用戶群組", "xloc": [ - "default.handlebars->27->1806" + "default.handlebars->27->1809" ] }, { @@ -10350,7 +10350,7 @@ "zh-chs": "删除用户{0}", "zh-cht": "刪除用戶{0}", "xloc": [ - "default.handlebars->27->1960" + "default.handlebars->27->1963" ] }, { @@ -10371,7 +10371,7 @@ "zh-cht": "刪除帳戶", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->p2AccountActions->3->9->0", - "default.handlebars->27->1723", + "default.handlebars->27->1726", "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7" ] }, @@ -10392,7 +10392,7 @@ "zh-chs": "删除设备", "zh-cht": "刪除裝置", "xloc": [ - "default.handlebars->27->464" + "default.handlebars->27->466" ] }, { @@ -10412,7 +10412,7 @@ "zh-chs": "删除群组", "zh-cht": "刪除群組", "xloc": [ - "default.handlebars->27->1802" + "default.handlebars->27->1805" ] }, { @@ -10432,7 +10432,7 @@ "zh-chs": "删除项目?", "zh-cht": "刪除項目?", "xloc": [ - "default.handlebars->27->525" + "default.handlebars->27->527" ] }, { @@ -10452,7 +10452,7 @@ "zh-chs": "递归删除:“{0}”,{1}个元素已删除", "zh-cht": "遞歸刪除:“{0}”,{1}個元素已刪除", "xloc": [ - "default.handlebars->27->1613" + "default.handlebars->27->1615" ] }, { @@ -10473,9 +10473,9 @@ "zh-cht": "刪除所選項目?", "xloc": [ "default-mobile.handlebars->9->124", - "default-mobile.handlebars->9->303", - "default.handlebars->27->1555", - "default.handlebars->27->886" + "default-mobile.handlebars->9->304", + "default.handlebars->27->1557", + "default.handlebars->27->888" ] }, { @@ -10495,7 +10495,7 @@ "zh-chs": "删除用户群组{0}?", "zh-cht": "刪除用戶群組{0}?", "xloc": [ - "default.handlebars->27->1865" + "default.handlebars->27->1868" ] }, { @@ -10516,9 +10516,9 @@ "zh-cht": "刪除{0}個所選項目?", "xloc": [ "default-mobile.handlebars->9->123", - "default-mobile.handlebars->9->302", - "default.handlebars->27->1554", - "default.handlebars->27->885" + "default-mobile.handlebars->9->303", + "default.handlebars->27->1556", + "default.handlebars->27->887" ] }, { @@ -10538,7 +10538,7 @@ "zh-chs": "删除{0}?", "zh-cht": "刪除{0}?", "xloc": [ - "default-mobile.handlebars->9->275" + "default-mobile.handlebars->9->276" ] }, { @@ -10558,7 +10558,7 @@ "zh-chs": "删除:“{0}”", "zh-cht": "刪除:“{0}”", "xloc": [ - "default.handlebars->27->1612" + "default.handlebars->27->1614" ] }, { @@ -10578,7 +10578,7 @@ "zh-chs": "删除:“{0}”,{1}个元素已删除", "zh-cht": "刪除:“{0}”,已刪除{1}個元素", "xloc": [ - "default.handlebars->27->1614" + "default.handlebars->27->1616" ] }, { @@ -10598,7 +10598,7 @@ "zh-chs": "被拒绝", "zh-cht": "被拒絕", "xloc": [ - "default.handlebars->27->816", + "default.handlebars->27->818", "desktop.handlebars->3->8" ] }, @@ -10689,25 +10689,25 @@ "zh-cht": "描述", "xloc": [ "default-mobile.handlebars->9->101", - "default-mobile.handlebars->9->221", "default-mobile.handlebars->9->222", - "default-mobile.handlebars->9->280", - "default-mobile.handlebars->9->340", - "default-mobile.handlebars->9->395", - "default-mobile.handlebars->9->408", - "default.handlebars->27->1271", - "default.handlebars->27->1308", - "default.handlebars->27->1395", - "default.handlebars->27->1811", - "default.handlebars->27->1821", - "default.handlebars->27->1822", - "default.handlebars->27->1863", - "default.handlebars->27->565", - "default.handlebars->27->566", + "default-mobile.handlebars->9->223", + "default-mobile.handlebars->9->281", + "default-mobile.handlebars->9->341", + "default-mobile.handlebars->9->396", + "default-mobile.handlebars->9->409", + "default.handlebars->27->1273", + "default.handlebars->27->1310", + "default.handlebars->27->1397", + "default.handlebars->27->1814", + "default.handlebars->27->1824", + "default.handlebars->27->1825", + "default.handlebars->27->1866", + "default.handlebars->27->567", + "default.handlebars->27->568", "default.handlebars->27->77", - "default.handlebars->27->811", - "default.handlebars->27->931", - "default.handlebars->27->941", + "default.handlebars->27->813", + "default.handlebars->27->933", + "default.handlebars->27->943", "default.handlebars->container->column_l->p42->p42tbl->1->0->3" ] }, @@ -10745,11 +10745,11 @@ "zh-chs": "桌面", "zh-cht": "桌面", "xloc": [ - "default-mobile.handlebars->9->256", - "default.handlebars->27->1401", - "default.handlebars->27->2007", - "default.handlebars->27->530", - "default.handlebars->27->856", + "default-mobile.handlebars->9->257", + "default.handlebars->27->1403", + "default.handlebars->27->2010", + "default.handlebars->27->532", + "default.handlebars->27->858", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop", "default.handlebars->contextMenu->cxdesktop", "desktop.handlebars->3->24" @@ -10792,10 +10792,10 @@ "zh-chs": "桌面通知", "zh-cht": "桌面通知", "xloc": [ - "default.handlebars->27->1322", - "default.handlebars->27->1826", - "default.handlebars->27->1913", - "default.handlebars->27->601" + "default.handlebars->27->1324", + "default.handlebars->27->1829", + "default.handlebars->27->1916", + "default.handlebars->27->603" ] }, { @@ -10815,10 +10815,10 @@ "zh-chs": "桌面提示", "zh-cht": "桌面提示", "xloc": [ - "default.handlebars->27->1321", - "default.handlebars->27->1825", - "default.handlebars->27->1912", - "default.handlebars->27->600" + "default.handlebars->27->1323", + "default.handlebars->27->1828", + "default.handlebars->27->1915", + "default.handlebars->27->602" ] }, { @@ -10838,10 +10838,10 @@ "zh-chs": "桌面提示+工具栏", "zh-cht": "桌面提示+工具欄", "xloc": [ - "default.handlebars->27->1319", - "default.handlebars->27->1823", - "default.handlebars->27->1910", - "default.handlebars->27->598" + "default.handlebars->27->1321", + "default.handlebars->27->1826", + "default.handlebars->27->1913", + "default.handlebars->27->600" ] }, { @@ -10882,10 +10882,10 @@ "zh-chs": "桌面工具栏", "zh-cht": "桌面工具欄", "xloc": [ - "default.handlebars->27->1320", - "default.handlebars->27->1824", - "default.handlebars->27->1911", - "default.handlebars->27->599" + "default.handlebars->27->1322", + "default.handlebars->27->1827", + "default.handlebars->27->1914", + "default.handlebars->27->601" ] }, { @@ -10905,7 +10905,7 @@ "zh-chs": "桌面时段", "zh-cht": "桌面時段", "xloc": [ - "default.handlebars->27->855" + "default.handlebars->27->857" ] }, { @@ -10946,7 +10946,7 @@ "zh-chs": "细节", "zh-cht": "細節", "xloc": [ - "default-mobile.handlebars->9->258", + "default-mobile.handlebars->9->259", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevInfo", "default.handlebars->contextMenu->cxdetails" ] @@ -10988,9 +10988,9 @@ "zh-chs": "设备", "zh-cht": "裝置", "xloc": [ - "default.handlebars->27->1424", - "default.handlebars->27->183", - "default.handlebars->27->1979", + "default.handlebars->27->1426", + "default.handlebars->27->184", + "default.handlebars->27->1982", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5" ] }, @@ -11011,8 +11011,8 @@ "zh-chs": "设备指令", "zh-cht": "裝置指令", "xloc": [ - "default-mobile.handlebars->9->265", - "default.handlebars->27->747" + "default-mobile.handlebars->9->266", + "default.handlebars->27->749" ] }, { @@ -11039,14 +11039,14 @@ "zh-chs": "设备组", "zh-cht": "裝置群", "xloc": [ - "default.handlebars->27->1419", - "default.handlebars->27->1422", - "default.handlebars->27->1423", - "default.handlebars->27->1674", - "default.handlebars->27->1849", - "default.handlebars->27->1855", - "default.handlebars->27->1967", - "default.handlebars->27->2016" + "default.handlebars->27->1421", + "default.handlebars->27->1424", + "default.handlebars->27->1425", + "default.handlebars->27->1677", + "default.handlebars->27->1852", + "default.handlebars->27->1858", + "default.handlebars->27->1970", + "default.handlebars->27->2019" ] }, { @@ -11066,8 +11066,8 @@ "zh-chs": "设备组用户", "zh-cht": "裝置群用戶", "xloc": [ - "default-mobile.handlebars->9->450", - "default.handlebars->27->1485" + "default-mobile.handlebars->9->451", + "default.handlebars->27->1487" ] }, { @@ -11088,11 +11088,11 @@ "zh-cht": "裝置群", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->3", - "default.handlebars->27->1690", - "default.handlebars->27->1796", - "default.handlebars->27->1836", - "default.handlebars->27->1907", - "default.handlebars->27->2051", + "default.handlebars->27->1693", + "default.handlebars->27->1799", + "default.handlebars->27->1839", + "default.handlebars->27->1910", + "default.handlebars->27->2054", "default.handlebars->container->column_l->p2->p2info->7" ] }, @@ -11113,7 +11113,7 @@ "zh-chs": "设备信息导出", "zh-cht": "裝置訊息輸出", "xloc": [ - "default.handlebars->27->495" + "default.handlebars->27->497" ] }, { @@ -11133,7 +11133,7 @@ "zh-chs": "设备位置", "zh-cht": "裝置位置", "xloc": [ - "default.handlebars->27->779" + "default.handlebars->27->781" ] }, { @@ -11153,7 +11153,7 @@ "zh-chs": "设备消息", "zh-cht": "裝置訊息", "xloc": [ - "default.handlebars->27->713" + "default.handlebars->27->715" ] }, { @@ -11173,10 +11173,10 @@ "zh-chs": "设备名称", "zh-cht": "裝置名稱", "xloc": [ - "default-mobile.handlebars->9->278", - "default.handlebars->27->2015", - "default.handlebars->27->286", - "default.handlebars->27->809", + "default-mobile.handlebars->9->279", + "default.handlebars->27->2018", + "default.handlebars->27->288", + "default.handlebars->27->811", "player.handlebars->3->9" ] }, @@ -11197,8 +11197,8 @@ "zh-chs": "设备通知", "zh-cht": "裝置通知", "xloc": [ - "default.handlebars->27->489", - "default.handlebars->27->715" + "default.handlebars->27->491", + "default.handlebars->27->717" ] }, { @@ -11218,7 +11218,7 @@ "zh-chs": "设备提示", "zh-cht": "裝置吐司", "xloc": [ - "default-mobile.handlebars->9->254" + "default-mobile.handlebars->9->255" ] }, { @@ -11238,8 +11238,8 @@ "zh-chs": "设备连接。", "zh-cht": "裝置連接。", "xloc": [ - "default.handlebars->27->1239", - "default.handlebars->27->1506" + "default.handlebars->27->1241", + "default.handlebars->27->1508" ] }, { @@ -11259,8 +11259,8 @@ "zh-chs": "设备断开连接。", "zh-cht": "裝置斷開連接。", "xloc": [ - "default.handlebars->27->1240", - "default.handlebars->27->1507" + "default.handlebars->27->1242", + "default.handlebars->27->1509" ] }, { @@ -11280,7 +11280,7 @@ "zh-chs": "创建的设备组:{0}", "zh-cht": "設備組已創建:{0}", "xloc": [ - "default.handlebars->27->1643" + "default.handlebars->27->1645" ] }, { @@ -11300,7 +11300,7 @@ "zh-chs": "设备组已删除:{0}", "zh-cht": "設備組已刪除:{0}", "xloc": [ - "default.handlebars->27->1644" + "default.handlebars->27->1646" ] }, { @@ -11320,7 +11320,7 @@ "zh-chs": "设备组成员身份已更改:{0}", "zh-cht": "設備組成員身份已更改:{0}", "xloc": [ - "default.handlebars->27->1645" + "default.handlebars->27->1647" ] }, { @@ -11340,7 +11340,7 @@ "zh-chs": "其他设备组管理员可以查看和更改设备组注释。", "zh-cht": "其他裝置群管理員可以查看和更改裝置群註釋。", "xloc": [ - "default.handlebars->27->710" + "default.handlebars->27->712" ] }, { @@ -11360,7 +11360,7 @@ "zh-chs": "设备组通知已更改", "zh-cht": "設備組通知已更改", "xloc": [ - "default.handlebars->27->1640" + "default.handlebars->27->1642" ] }, { @@ -11380,7 +11380,7 @@ "zh-chs": "未删除的设备组:{0}", "zh-cht": "未刪除的設備組:{0}", "xloc": [ - "default.handlebars->27->1623" + "default.handlebars->27->1625" ] }, { @@ -11401,9 +11401,9 @@ "zh-cht": "裝置由電池供電", "xloc": [ "default-mobile.handlebars->9->157", - "default-mobile.handlebars->9->212", - "default.handlebars->27->208", - "default.handlebars->27->551" + "default-mobile.handlebars->9->213", + "default.handlebars->27->209", + "default.handlebars->27->553" ] }, { @@ -11423,7 +11423,7 @@ "zh-chs": "检测到设备,但无法获得电源状态。", "zh-cht": "檢測到裝置,但無法獲得電源狀態。", "xloc": [ - "default.handlebars->27->429" + "default.handlebars->27->431" ] }, { @@ -11443,8 +11443,8 @@ "zh-chs": "设备正在休眠(S4)", "zh-cht": "裝置正在休眠(S4)", "xloc": [ - "default-mobile.handlebars->9->196", - "default.handlebars->27->435" + "default-mobile.handlebars->9->197", + "default.handlebars->27->437" ] }, { @@ -11464,8 +11464,8 @@ "zh-chs": "设备处于深度睡眠状态(S3)", "zh-cht": "裝置處於深度睡眠狀態(S3)", "xloc": [ - "default-mobile.handlebars->9->195", - "default.handlebars->27->434" + "default-mobile.handlebars->9->196", + "default.handlebars->27->436" ] }, { @@ -11485,7 +11485,7 @@ "zh-chs": "设备处于深度睡眠状态(S3)。", "zh-cht": "裝置處於深度睡眠狀態(S3)。", "xloc": [ - "default.handlebars->27->423" + "default.handlebars->27->425" ] }, { @@ -11505,7 +11505,7 @@ "zh-chs": "设备处于休眠状态(S4)。", "zh-cht": "裝置處於休眠狀態(S4)。", "xloc": [ - "default.handlebars->27->425" + "default.handlebars->27->427" ] }, { @@ -11525,7 +11525,7 @@ "zh-chs": "设备处于关机状态(S5)。", "zh-cht": "裝置處於關機狀態(S5)。", "xloc": [ - "default.handlebars->27->427" + "default.handlebars->27->429" ] }, { @@ -11545,8 +11545,8 @@ "zh-chs": "设备处于睡眠状态(S1)", "zh-cht": "裝置處於睡眠狀態(S1)", "xloc": [ - "default-mobile.handlebars->9->193", - "default.handlebars->27->432" + "default-mobile.handlebars->9->194", + "default.handlebars->27->434" ] }, { @@ -11566,7 +11566,7 @@ "zh-chs": "设备处于睡眠状态(S1)。", "zh-cht": "裝置處於睡眠狀態(S1)。", "xloc": [ - "default.handlebars->27->419" + "default.handlebars->27->421" ] }, { @@ -11586,8 +11586,8 @@ "zh-chs": "设备处于睡眠状态(S2)", "zh-cht": "裝置處於睡眠狀態(S2)", "xloc": [ - "default-mobile.handlebars->9->194", - "default.handlebars->27->433" + "default-mobile.handlebars->9->195", + "default.handlebars->27->435" ] }, { @@ -11607,7 +11607,7 @@ "zh-chs": "设备处于睡眠状态(S2)。", "zh-cht": "裝置處於睡眠狀態(S2)。", "xloc": [ - "default.handlebars->27->421" + "default.handlebars->27->423" ] }, { @@ -11627,8 +11627,8 @@ "zh-chs": "设备处于软关机状态(S5)", "zh-cht": "裝置處於軟關機狀態(S5)", "xloc": [ - "default-mobile.handlebars->9->197", - "default.handlebars->27->436" + "default-mobile.handlebars->9->198", + "default.handlebars->27->438" ] }, { @@ -11649,9 +11649,9 @@ "zh-cht": "裝置已插入", "xloc": [ "default-mobile.handlebars->9->156", - "default-mobile.handlebars->9->211", - "default.handlebars->27->207", - "default.handlebars->27->550" + "default-mobile.handlebars->9->212", + "default.handlebars->27->208", + "default.handlebars->27->552" ] }, { @@ -11671,8 +11671,8 @@ "zh-chs": "设备已连接电源", "zh-cht": "裝置已連接電源", "xloc": [ - "default-mobile.handlebars->9->192", - "default.handlebars->27->431" + "default-mobile.handlebars->9->193", + "default.handlebars->27->433" ] }, { @@ -11692,7 +11692,7 @@ "zh-chs": "设备已连接电源。", "zh-cht": "裝置已連接電源。", "xloc": [ - "default.handlebars->27->417" + "default.handlebars->27->419" ] }, { @@ -11712,8 +11712,8 @@ "zh-chs": "设备存在,但无法确定电源状态", "zh-cht": "裝置存在,但無法確定電源狀態", "xloc": [ - "default-mobile.handlebars->9->198", - "default.handlebars->27->437" + "default-mobile.handlebars->9->199", + "default.handlebars->27->439" ] }, { @@ -11733,7 +11733,7 @@ "zh-chs": "设备名称", "zh-cht": "裝置名稱", "xloc": [ - "default.handlebars->27->542" + "default.handlebars->27->544" ] }, { @@ -11753,7 +11753,7 @@ "zh-chs": "设备通知", "zh-cht": "設備通知", "xloc": [ - "default.handlebars->27->463" + "default.handlebars->27->465" ] }, { @@ -11773,7 +11773,7 @@ "zh-chs": "设备请求激活Intel(R)AMT ACM,FQDN:{0}", "zh-cht": "設備請求激活Intel(R)AMT ACM,FQDN:{0}", "xloc": [ - "default.handlebars->27->1625" + "default.handlebars->27->1627" ] }, { @@ -11810,8 +11810,8 @@ "zh-chs": "设备", "zh-cht": "裝置", "xloc": [ - "default.handlebars->27->1797", - "default.handlebars->27->1837" + "default.handlebars->27->1800", + "default.handlebars->27->1840" ] }, { @@ -11831,7 +11831,7 @@ "zh-chs": "已禁用", "zh-cht": "已禁用", "xloc": [ - "default.handlebars->27->593" + "default.handlebars->27->595" ] }, { @@ -11851,7 +11851,7 @@ "zh-chs": "禁用的电子邮件两因素身份验证", "zh-cht": "禁用的電子郵件兩因素身份驗證", "xloc": [ - "default.handlebars->27->1656" + "default.handlebars->27->1658" ] }, { @@ -11871,10 +11871,10 @@ "zh-chs": "断线", "zh-cht": "斷線", "xloc": [ - "default-mobile.handlebars->9->292", + "default-mobile.handlebars->9->293", "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3", - "default.handlebars->27->1332", - "default.handlebars->27->872", + "default.handlebars->27->1334", + "default.handlebars->27->874", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->disconnectbutton1span", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->disconnectbutton2span", "desktop.handlebars->p11->deskarea0->deskarea1->3->disconnectbutton1span", @@ -11921,10 +11921,10 @@ "default-mobile.handlebars->9->1", "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3->deskstatus", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3->p13Status", - "default.handlebars->27->219", - "default.handlebars->27->238", - "default.handlebars->27->241", - "default.handlebars->27->267", + "default.handlebars->27->220", + "default.handlebars->27->239", + "default.handlebars->27->242", + "default.handlebars->27->269", "default.handlebars->27->8", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->deskstatus", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->termstatus", @@ -11951,7 +11951,7 @@ "zh-chs": "在远程设备上显示一个消息框。", "zh-cht": "在遠程裝置上顯示一個訊息框。", "xloc": [ - "default.handlebars->27->714" + "default.handlebars->27->716" ] }, { @@ -11991,7 +11991,7 @@ "zh-chs": "在远程设备上显示短信", "zh-cht": "在遠程裝置上顯示短信", "xloc": [ - "default.handlebars->27->629" + "default.handlebars->27->631" ] }, { @@ -12011,7 +12011,7 @@ "zh-chs": "显示设备组名称", "zh-cht": "顯示裝置群名稱", "xloc": [ - "default.handlebars->27->1238" + "default.handlebars->27->1240" ] }, { @@ -12031,7 +12031,7 @@ "zh-chs": "显示名称", "zh-cht": "顯示名稱", "xloc": [ - "default.handlebars->27->841" + "default.handlebars->27->843" ] }, { @@ -12051,7 +12051,7 @@ "zh-chs": "显示公共连结", "zh-cht": "顯示公共鏈結", "xloc": [ - "default.handlebars->27->1526" + "default.handlebars->27->1528" ] }, { @@ -12071,7 +12071,7 @@ "zh-chs": "显示消息框,标题= “{0}”,消息= “{1}”", "zh-cht": "顯示消息框,標題= “{0}”,消息= “{1}”", "xloc": [ - "default.handlebars->27->1585" + "default.handlebars->27->1587" ] }, { @@ -12091,7 +12091,7 @@ "zh-chs": "显示吐司消息,标题= “{0}”,消息= “{1}”", "zh-cht": "顯示吐司消息,標題= “{0}”,消息= “{1}”", "xloc": [ - "default.handlebars->27->1593" + "default.handlebars->27->1595" ] }, { @@ -12111,7 +12111,7 @@ "zh-chs": "什么都不做", "zh-cht": "什麼都不做", "xloc": [ - "default.handlebars->27->1376" + "default.handlebars->27->1378" ] }, { @@ -12131,10 +12131,10 @@ "zh-chs": "域", "zh-cht": "域", "xloc": [ - "default.handlebars->27->1761", - "default.handlebars->27->1809", - "default.handlebars->27->1818", - "default.handlebars->27->1886", + "default.handlebars->27->1764", + "default.handlebars->27->1812", + "default.handlebars->27->1821", + "default.handlebars->27->1889", "mstsc.handlebars->main->1->3->1->2->1->0", "mstsc.handlebars->main->1->3->1->2->3" ] @@ -12156,8 +12156,8 @@ "zh-chs": "不要配置", "zh-cht": "不要配置", "xloc": [ - "default.handlebars->27->1380", - "default.handlebars->27->1385" + "default.handlebars->27->1382", + "default.handlebars->27->1387" ] }, { @@ -12177,7 +12177,7 @@ "zh-chs": "不要连接到服务器", "zh-cht": "不要連接到伺服器", "xloc": [ - "default.handlebars->27->1381" + "default.handlebars->27->1383" ] }, { @@ -12296,8 +12296,8 @@ "zh-chs": "下载档案", "zh-cht": "下載檔案", "xloc": [ - "default-mobile.handlebars->9->322", - "default.handlebars->27->905" + "default-mobile.handlebars->9->323", + "default.handlebars->27->907" ] }, { @@ -12317,7 +12317,7 @@ "zh-chs": "下载MeshCentral Router,一个TCP端口映射工具。", "zh-cht": "下載MeshCentral Router,一個TCP端口映射工具。", "xloc": [ - "default.handlebars->27->236" + "default.handlebars->27->237" ] }, { @@ -12337,7 +12337,7 @@ "zh-chs": "下载MeshCmd", "zh-cht": "下載MeshCmd", "xloc": [ - "default.handlebars->27->801" + "default.handlebars->27->803" ] }, { @@ -12357,7 +12357,7 @@ "zh-chs": "下载MeshCmd,这是一个多功能的指令执行工具。", "zh-cht": "下載MeshCmd,這是一個多功能的指令執行工具。", "xloc": [ - "default.handlebars->27->234" + "default.handlebars->27->235" ] }, { @@ -12397,7 +12397,7 @@ "zh-chs": "下载报告", "zh-cht": "下載報告", "xloc": [ - "default.handlebars->27->1679", + "default.handlebars->27->1682", "default.handlebars->container->column_l->p3->3->1->0->3" ] }, @@ -12418,7 +12418,7 @@ "zh-chs": "下载带有指令档案的“ meshcmd”,以通过此服务器将网络讯息发送到该设备。紧记编辑meshaction.txt并添加您的帐户密码或进行任何必要的更改。", "zh-cht": "下載帶有指令檔案的“ meshcmd”,以通過此服務器將網絡讯息發送到該裝置。緊記編輯meshaction.txt並新增你的帳戶密碼或進行任何必要的更改。", "xloc": [ - "default.handlebars->27->794" + "default.handlebars->27->796" ] }, { @@ -12498,7 +12498,7 @@ "zh-chs": "下载电源事件", "zh-cht": "下載電源事件", "xloc": [ - "default.handlebars->27->753" + "default.handlebars->27->755" ] }, { @@ -12578,7 +12578,7 @@ "zh-chs": "使用以下一种档案格式下载设备列表。", "zh-cht": "使用以下一種檔案格式下載裝置列表。", "xloc": [ - "default.handlebars->27->490" + "default.handlebars->27->492" ] }, { @@ -12598,7 +12598,7 @@ "zh-chs": "使用以下一种档案格式下载事件列表。", "zh-cht": "使用以下一種檔案格式下載事件列表。", "xloc": [ - "default.handlebars->27->1680" + "default.handlebars->27->1683" ] }, { @@ -12618,7 +12618,7 @@ "zh-chs": "使用以下一种档案格式下载用户列表。", "zh-cht": "使用以下一種檔案格式下載用戶列表。", "xloc": [ - "default.handlebars->27->1745" + "default.handlebars->27->1748" ] }, { @@ -12699,7 +12699,7 @@ "zh-chs": "下载:“{0}”", "zh-cht": "下載:“{0}”", "xloc": [ - "default.handlebars->27->1616" + "default.handlebars->27->1618" ] }, { @@ -12739,7 +12739,7 @@ "zh-chs": "代理重复", "zh-cht": "代理重複", "xloc": [ - "default.handlebars->27->2047" + "default.handlebars->27->2050" ] }, { @@ -12779,7 +12779,7 @@ "zh-chs": "复制用户组", "zh-cht": "複製用戶群", "xloc": [ - "default.handlebars->27->1813" + "default.handlebars->27->1816" ] }, { @@ -12816,8 +12816,8 @@ "zh-chs": "持续时间", "zh-cht": "持續時間", "xloc": [ - "default.handlebars->27->2001", - "default.handlebars->27->2021", + "default.handlebars->27->2004", + "default.handlebars->27->2024", "player.handlebars->3->2" ] }, @@ -12838,7 +12838,7 @@ "zh-chs": "在激活期间,代理将有权取得管理员密码信息。", "zh-cht": "在啟動期間,代理將有權取得管理員密碼訊息。", "xloc": [ - "default.handlebars->27->1390" + "default.handlebars->27->1392" ] }, { @@ -12858,7 +12858,7 @@ "zh-chs": "荷兰文(比利时)", "zh-cht": "荷蘭文(比利時)", "xloc": [ - "default.handlebars->27->1078" + "default.handlebars->27->1080" ] }, { @@ -12878,7 +12878,7 @@ "zh-chs": "荷兰文(标准)", "zh-cht": "荷蘭文(標準)", "xloc": [ - "default.handlebars->27->1077" + "default.handlebars->27->1079" ] }, { @@ -13147,8 +13147,8 @@ "zh-chs": "编辑设备", "zh-cht": "編輯裝置", "xloc": [ - "default-mobile.handlebars->9->283", - "default.handlebars->27->814" + "default-mobile.handlebars->9->284", + "default.handlebars->27->816" ] }, { @@ -13168,13 +13168,13 @@ "zh-chs": "编辑设备组", "zh-cht": "編輯裝置群", "xloc": [ - "default-mobile.handlebars->9->409", - "default-mobile.handlebars->9->411", - "default-mobile.handlebars->9->429", - "default.handlebars->27->1396", - "default.handlebars->27->1428", - "default.handlebars->27->1451", - "default.handlebars->27->1463" + "default-mobile.handlebars->9->410", + "default-mobile.handlebars->9->412", + "default-mobile.handlebars->9->430", + "default.handlebars->27->1398", + "default.handlebars->27->1430", + "default.handlebars->27->1453", + "default.handlebars->27->1465" ] }, { @@ -13194,7 +13194,7 @@ "zh-chs": "编辑设备组功能", "zh-cht": "編輯裝置群功能", "xloc": [ - "default.handlebars->27->1414" + "default.handlebars->27->1416" ] }, { @@ -13214,8 +13214,8 @@ "zh-chs": "编辑设备组权限", "zh-cht": "編輯裝置群權限", "xloc": [ - "default.handlebars->27->1448", - "default.handlebars->27->1460" + "default.handlebars->27->1450", + "default.handlebars->27->1462" ] }, { @@ -13235,7 +13235,7 @@ "zh-chs": "编辑设备组用户同意", "zh-cht": "編輯裝置群用戶同意", "xloc": [ - "default.handlebars->27->1397" + "default.handlebars->27->1399" ] }, { @@ -13255,8 +13255,8 @@ "zh-chs": "编辑设备笔记", "zh-cht": "編輯裝置筆記", "xloc": [ - "default-mobile.handlebars->9->423", - "default.handlebars->27->1441" + "default-mobile.handlebars->9->424", + "default.handlebars->27->1443" ] }, { @@ -13276,8 +13276,8 @@ "zh-chs": "编辑设备权限", "zh-cht": "編輯裝置權限", "xloc": [ - "default.handlebars->27->1453", - "default.handlebars->27->1455" + "default.handlebars->27->1455", + "default.handlebars->27->1457" ] }, { @@ -13297,7 +13297,7 @@ "zh-chs": "编辑设备标签", "zh-cht": "編輯裝置標籤", "xloc": [ - "default.handlebars->27->484" + "default.handlebars->27->486" ] }, { @@ -13317,7 +13317,7 @@ "zh-chs": "编辑设备用户同意", "zh-cht": "編輯裝置用戶同意", "xloc": [ - "default.handlebars->27->1399" + "default.handlebars->27->1401" ] }, { @@ -13337,7 +13337,7 @@ "zh-chs": "编辑群组", "zh-cht": "編輯群組", "xloc": [ - "default.handlebars->27->690" + "default.handlebars->27->692" ] }, { @@ -13357,10 +13357,10 @@ "zh-chs": "编辑英特尔®AMT凭证", "zh-cht": "編輯Intel® AMT憑證", "xloc": [ - "default-mobile.handlebars->9->273", - "default.handlebars->27->580", - "default.handlebars->27->583", - "default.handlebars->27->760" + "default-mobile.handlebars->9->274", + "default.handlebars->27->582", + "default.handlebars->27->585", + "default.handlebars->27->762" ] }, { @@ -13380,8 +13380,8 @@ "zh-chs": "编辑笔记", "zh-cht": "編輯筆記", "xloc": [ - "default-mobile.handlebars->9->436", - "default.handlebars->27->1470" + "default-mobile.handlebars->9->437", + "default.handlebars->27->1472" ] }, { @@ -13401,7 +13401,7 @@ "zh-chs": "编辑用户同意", "zh-cht": "編輯用戶同意", "xloc": [ - "default.handlebars->27->1398" + "default.handlebars->27->1400" ] }, { @@ -13421,7 +13421,7 @@ "zh-chs": "编辑用户设备组权限", "zh-cht": "編輯用戶裝置群權限", "xloc": [ - "default.handlebars->27->1461" + "default.handlebars->27->1463" ] }, { @@ -13441,7 +13441,7 @@ "zh-chs": "编辑用户设备权限", "zh-cht": "編輯用戶裝置權限", "xloc": [ - "default.handlebars->27->1456" + "default.handlebars->27->1458" ] }, { @@ -13461,7 +13461,7 @@ "zh-chs": "编辑用户组", "zh-cht": "編輯用戶群", "xloc": [ - "default.handlebars->27->1864" + "default.handlebars->27->1867" ] }, { @@ -13481,13 +13481,13 @@ "zh-chs": "编辑用户组设备权限", "zh-cht": "編輯用戶群裝置權限", "xloc": [ - "default.handlebars->27->1458" + "default.handlebars->27->1460" ] }, { "en": "Edit User Group User Consent", "xloc": [ - "default.handlebars->27->1400" + "default.handlebars->27->1402" ] }, { @@ -13528,7 +13528,7 @@ "zh-chs": "编辑标签", "zh-cht": "編輯標籤", "xloc": [ - "default.handlebars->27->462" + "default.handlebars->27->464" ] }, { @@ -13549,12 +13549,12 @@ "zh-cht": "電郵", "xloc": [ "default-mobile.handlebars->9->78", - "default.handlebars->27->1763", - "default.handlebars->27->1890", - "default.handlebars->27->1892", - "default.handlebars->27->1932", - "default.handlebars->27->1948", - "default.handlebars->27->336", + "default.handlebars->27->1766", + "default.handlebars->27->1893", + "default.handlebars->27->1895", + "default.handlebars->27->1935", + "default.handlebars->27->1951", + "default.handlebars->27->338", "login-mobile.handlebars->5->42", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3", "login.handlebars->5->43", @@ -13586,7 +13586,7 @@ "zh-cht": "電郵地址變更", "xloc": [ "default-mobile.handlebars->9->79", - "default.handlebars->27->1247" + "default.handlebars->27->1249" ] }, { @@ -13607,7 +13607,7 @@ "zh-cht": "電郵認證", "xloc": [ "default-mobile.handlebars->9->68", - "default.handlebars->27->1015" + "default.handlebars->27->1017" ] }, { @@ -13667,7 +13667,7 @@ "zh-cht": "電郵驗證", "xloc": [ "default-mobile.handlebars->9->77", - "default.handlebars->27->1245" + "default.handlebars->27->1247" ] }, { @@ -13687,7 +13687,7 @@ "zh-chs": "电邮邀请", "zh-cht": "電郵邀請", "xloc": [ - "default.handlebars->27->333" + "default.handlebars->27->335" ] }, { @@ -13707,7 +13707,7 @@ "zh-chs": "电邮未验证", "zh-cht": "電郵未驗證", "xloc": [ - "default.handlebars->27->1709" + "default.handlebars->27->1712" ] }, { @@ -13727,8 +13727,8 @@ "zh-chs": "电邮已验证", "zh-cht": "電郵已驗證", "xloc": [ - "default.handlebars->27->1710", - "default.handlebars->27->1884" + "default.handlebars->27->1713", + "default.handlebars->27->1887" ] }, { @@ -13748,7 +13748,7 @@ "zh-chs": "电邮已验证。", "zh-cht": "電郵已驗證。", "xloc": [ - "default.handlebars->27->1769" + "default.handlebars->27->1772" ] }, { @@ -13768,7 +13768,7 @@ "zh-chs": "电邮未验证", "zh-cht": "電郵未驗證", "xloc": [ - "default.handlebars->27->1885" + "default.handlebars->27->1888" ] }, { @@ -13832,7 +13832,7 @@ "zh-chs": "已通过电邮验证,并且需要重置密码。", "zh-cht": "已通過電郵驗證,並且需要重置密碼。", "xloc": [ - "default.handlebars->27->1770" + "default.handlebars->27->1773" ] }, { @@ -13852,7 +13852,7 @@ "zh-chs": "电邮/短信流量", "zh-cht": "電郵/短信流量", "xloc": [ - "default.handlebars->27->2089" + "default.handlebars->27->2092" ] }, { @@ -13898,7 +13898,7 @@ "zh-chs": "启用邀请代码", "zh-cht": "啟用邀請代碼", "xloc": [ - "default.handlebars->27->1491" + "default.handlebars->27->1493" ] }, { @@ -13939,7 +13939,7 @@ "zh-cht": "啟用電郵二因子鑑別。", "xloc": [ "default-mobile.handlebars->9->70", - "default.handlebars->27->1017" + "default.handlebars->27->1019" ] }, { @@ -13979,7 +13979,7 @@ "zh-chs": "已启用", "zh-cht": "已啟用", "xloc": [ - "default.handlebars->27->2023" + "default.handlebars->27->2026" ] }, { @@ -13999,7 +13999,7 @@ "zh-chs": "启用电子邮件两因素身份验证", "zh-cht": "啟用電子郵件兩因素身份驗證", "xloc": [ - "default.handlebars->27->1655" + "default.handlebars->27->1657" ] }, { @@ -14039,7 +14039,7 @@ "zh-chs": "时间结束", "zh-cht": "時間結束", "xloc": [ - "default.handlebars->27->2020" + "default.handlebars->27->2023" ] }, { @@ -14059,7 +14059,7 @@ "zh-chs": "从{1}到{2},{3}秒结束了桌面会话“{0}”", "zh-cht": "從{1}到{2},{3}秒結束了桌面會話“{0}”", "xloc": [ - "default.handlebars->27->1578" + "default.handlebars->27->1580" ] }, { @@ -14079,7 +14079,7 @@ "zh-chs": "从{1}到{2},{3}秒结束了文件管理会话“{0}”", "zh-cht": "從{1}到{2},{3}秒結束了文件管理會話“{0}”", "xloc": [ - "default.handlebars->27->1579" + "default.handlebars->27->1581" ] }, { @@ -14099,7 +14099,7 @@ "zh-chs": "从{1}到{2},{3}秒结束了中继会话“{0}”", "zh-cht": "從{1}到{2},{3}秒結束了中繼會話“{0}”", "xloc": [ - "default.handlebars->27->1576" + "default.handlebars->27->1578" ] }, { @@ -14119,7 +14119,7 @@ "zh-chs": "从{1}到{2},{3}秒结束了终端会话“{0}”", "zh-cht": "從{1}到{2},{3}秒結束了終端會話“{0}”", "xloc": [ - "default.handlebars->27->1577" + "default.handlebars->27->1579" ] }, { @@ -14139,7 +14139,7 @@ "zh-chs": "英文", "zh-cht": "英文", "xloc": [ - "default.handlebars->27->1079" + "default.handlebars->27->1081" ] }, { @@ -14159,7 +14159,7 @@ "zh-chs": "英文(澳洲)", "zh-cht": "英文(澳洲)", "xloc": [ - "default.handlebars->27->1080" + "default.handlebars->27->1082" ] }, { @@ -14179,7 +14179,7 @@ "zh-chs": "英文(伯利茲)", "zh-cht": "英文(伯利茲)", "xloc": [ - "default.handlebars->27->1081" + "default.handlebars->27->1083" ] }, { @@ -14199,7 +14199,7 @@ "zh-chs": "英文(加拿大)", "zh-cht": "英文(加拿大)", "xloc": [ - "default.handlebars->27->1082" + "default.handlebars->27->1084" ] }, { @@ -14219,7 +14219,7 @@ "zh-chs": "英文(爱尔兰)", "zh-cht": "英文(愛爾蘭)", "xloc": [ - "default.handlebars->27->1083" + "default.handlebars->27->1085" ] }, { @@ -14239,7 +14239,7 @@ "zh-chs": "英文(牙买加)", "zh-cht": "英文(牙買加)", "xloc": [ - "default.handlebars->27->1084" + "default.handlebars->27->1086" ] }, { @@ -14259,7 +14259,7 @@ "zh-chs": "英文(纽西兰)", "zh-cht": "英文(紐西蘭)", "xloc": [ - "default.handlebars->27->1085" + "default.handlebars->27->1087" ] }, { @@ -14279,7 +14279,7 @@ "zh-chs": "英文(菲律宾)", "zh-cht": "英文(菲律賓)", "xloc": [ - "default.handlebars->27->1086" + "default.handlebars->27->1088" ] }, { @@ -14299,7 +14299,7 @@ "zh-chs": "英语(南非)", "zh-cht": "英語(南非)", "xloc": [ - "default.handlebars->27->1087" + "default.handlebars->27->1089" ] }, { @@ -14319,7 +14319,7 @@ "zh-chs": "英文(特立尼达和多巴哥)", "zh-cht": "英文(特立尼達和多巴哥)", "xloc": [ - "default.handlebars->27->1088" + "default.handlebars->27->1090" ] }, { @@ -14339,7 +14339,7 @@ "zh-chs": "英文(英国)", "zh-cht": "英文(英國)", "xloc": [ - "default.handlebars->27->1089" + "default.handlebars->27->1091" ] }, { @@ -14359,7 +14359,7 @@ "zh-chs": "美国英文", "zh-cht": "美國英語", "xloc": [ - "default.handlebars->27->1090" + "default.handlebars->27->1092" ] }, { @@ -14379,7 +14379,7 @@ "zh-chs": "英文(津巴布韦)", "zh-cht": "英文(津巴布韋)", "xloc": [ - "default.handlebars->27->1091" + "default.handlebars->27->1093" ] }, { @@ -14399,8 +14399,8 @@ "zh-chs": "输入", "zh-cht": "輸入", "xloc": [ - "default.handlebars->27->1273", - "default.handlebars->27->1274" + "default.handlebars->27->1275", + "default.handlebars->27->1276" ] }, { @@ -14420,7 +14420,7 @@ "zh-chs": "输入管理领域名称的逗号分隔列表。", "zh-cht": "輸入管理領域名稱的逗號分隔列表。", "xloc": [ - "default.handlebars->27->1774" + "default.handlebars->27->1777" ] }, { @@ -14440,7 +14440,7 @@ "zh-chs": "输入IP地址范围以扫描英特尔AMT设备。", "zh-cht": "輸入IP地址範圍以掃描Intel® AMT裝置。", "xloc": [ - "default.handlebars->27->301" + "default.handlebars->27->303" ] }, { @@ -14460,7 +14460,7 @@ "zh-chs": "输入文本,然后单击“确定”以使用美式英语键盘远程输入文本。在继续操作之前,请确保将远程鼠标放置在正确的位置。", "zh-cht": "輸入文本,然後單擊“確定”以使用美式英語鍵盤遠程輸入文本。在繼續操作之前,請確保將遠程光標放置在正確的位置。", "xloc": [ - "default.handlebars->27->835", + "default.handlebars->27->837", "desktop.handlebars->3->22" ] }, @@ -14523,7 +14523,7 @@ "zh-chs": "输入支持SMS的电话号码。验证后,该号码可用于登录验证和其他通知。", "zh-cht": "輸入支持SMS的電話號碼。驗證後,該號碼可用於登入驗證和其他通知。", "xloc": [ - "default.handlebars->27->1012" + "default.handlebars->27->1014" ] }, { @@ -14583,7 +14583,7 @@ "zh-chs": "世界文", "zh-cht": "世界語", "xloc": [ - "default.handlebars->27->1092" + "default.handlebars->27->1094" ] }, { @@ -14603,7 +14603,7 @@ "zh-chs": "爱沙尼亚文", "zh-cht": "愛沙尼亞語", "xloc": [ - "default.handlebars->27->1093" + "default.handlebars->27->1095" ] }, { @@ -14623,7 +14623,7 @@ "zh-chs": "事件详情", "zh-cht": "事件詳情", "xloc": [ - "default.handlebars->27->918" + "default.handlebars->27->920" ] }, { @@ -14643,7 +14643,7 @@ "zh-chs": "事件列表输出", "zh-cht": "事件列表輸出", "xloc": [ - "default.handlebars->27->1685" + "default.handlebars->27->1688" ] }, { @@ -14728,8 +14728,8 @@ "zh-chs": "到期时间", "zh-cht": "到期時間", "xloc": [ - "default.handlebars->27->185", - "default.handlebars->27->733" + "default.handlebars->27->186", + "default.handlebars->27->735" ] }, { @@ -14769,7 +14769,7 @@ "zh-chs": "输出设备信息", "zh-cht": "輸出裝置訊息", "xloc": [ - "default.handlebars->27->461" + "default.handlebars->27->463" ] }, { @@ -14789,7 +14789,7 @@ "zh-chs": "扩充式ASCII", "zh-cht": "擴充式ASCII", "xloc": [ - "default.handlebars->27->863" + "default.handlebars->27->865" ] }, { @@ -14829,7 +14829,7 @@ "zh-chs": "外部", "zh-cht": "外部", "xloc": [ - "default.handlebars->27->2074" + "default.handlebars->27->2077" ] }, { @@ -14869,7 +14869,7 @@ "zh-chs": "FYRO马其顿语", "zh-cht": "FYRO馬其頓語", "xloc": [ - "default.handlebars->27->1143" + "default.handlebars->27->1145" ] }, { @@ -14889,7 +14889,7 @@ "zh-chs": "法罗语", "zh-cht": "法羅語", "xloc": [ - "default.handlebars->27->1094" + "default.handlebars->27->1096" ] }, { @@ -14929,7 +14929,7 @@ "zh-chs": "本地用户拒绝后无法启动远程桌面", "zh-cht": "本地用戶拒絕後無法啟動遠程桌面", "xloc": [ - "default.handlebars->27->1601" + "default.handlebars->27->1603" ] }, { @@ -14949,7 +14949,7 @@ "zh-chs": "本地用户拒绝后无法启动远程文件", "zh-cht": "本地用戶拒絕後無法啟動遠程文件", "xloc": [ - "default.handlebars->27->1608" + "default.handlebars->27->1610" ] }, { @@ -14969,7 +14969,7 @@ "zh-chs": "无法启动远程终端接合{0}({1})", "zh-cht": "無法啟動遠程終端接合{0}({1})", "xloc": [ - "default.handlebars->27->817", + "default.handlebars->27->819", "desktop.handlebars->3->9" ] }, @@ -14990,7 +14990,7 @@ "zh-chs": "波斯文(波斯文)", "zh-cht": "波斯語(波斯語)", "xloc": [ - "default.handlebars->27->1095" + "default.handlebars->27->1097" ] }, { @@ -15032,7 +15032,7 @@ "zh-chs": "功能", "zh-cht": "功能", "xloc": [ - "default.handlebars->27->1318" + "default.handlebars->27->1320" ] }, { @@ -15052,7 +15052,7 @@ "zh-chs": "斐济", "zh-cht": "斐濟", "xloc": [ - "default.handlebars->27->1096" + "default.handlebars->27->1098" ] }, { @@ -15092,9 +15092,9 @@ "zh-chs": "档案编辑器", "zh-cht": "檔案編輯器", "xloc": [ - "default-mobile.handlebars->9->306", - "default.handlebars->27->522", - "default.handlebars->27->889" + "default-mobile.handlebars->9->307", + "default.handlebars->27->524", + "default.handlebars->27->891" ] }, { @@ -15114,8 +15114,8 @@ "zh-chs": "档案操作", "zh-cht": "檔案操作", "xloc": [ - "default.handlebars->27->874", - "default.handlebars->27->876" + "default.handlebars->27->876", + "default.handlebars->27->878" ] }, { @@ -15155,7 +15155,7 @@ "zh-chs": "文件系统驱动", "zh-cht": "FileSystemDriver", "xloc": [ - "default.handlebars->27->844" + "default.handlebars->27->846" ] }, { @@ -15175,11 +15175,11 @@ "zh-chs": "档案", "zh-cht": "檔案", "xloc": [ - "default-mobile.handlebars->9->167", - "default-mobile.handlebars->9->257", - "default.handlebars->27->1408", - "default.handlebars->27->2008", - "default.handlebars->27->253", + "default-mobile.handlebars->9->168", + "default-mobile.handlebars->9->258", + "default.handlebars->27->1410", + "default.handlebars->27->2011", + "default.handlebars->27->255", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles", "default.handlebars->contextMenu->cxfiles" ] @@ -15221,10 +15221,10 @@ "zh-chs": "档案通知", "zh-cht": "檔案通知", "xloc": [ - "default.handlebars->27->1326", - "default.handlebars->27->1830", - "default.handlebars->27->1917", - "default.handlebars->27->605" + "default.handlebars->27->1328", + "default.handlebars->27->1833", + "default.handlebars->27->1920", + "default.handlebars->27->607" ] }, { @@ -15244,10 +15244,10 @@ "zh-chs": "档案提示", "zh-cht": "檔案提示", "xloc": [ - "default.handlebars->27->1325", - "default.handlebars->27->1829", - "default.handlebars->27->1916", - "default.handlebars->27->604" + "default.handlebars->27->1327", + "default.handlebars->27->1832", + "default.handlebars->27->1919", + "default.handlebars->27->606" ] }, { @@ -15290,7 +15290,7 @@ "zh-chs": "录制会话已完成,{0}秒", "zh-cht": "錄製會話已完成,{0}秒", "xloc": [ - "default.handlebars->27->1574" + "default.handlebars->27->1576" ] }, { @@ -15310,7 +15310,7 @@ "zh-chs": "芬兰", "zh-cht": "芬蘭", "xloc": [ - "default.handlebars->27->1097" + "default.handlebars->27->1099" ] }, { @@ -15457,8 +15457,8 @@ "zh-chs": "下次登录时强制重置密码。", "zh-cht": "下次登入時強制重置密碼。", "xloc": [ - "default.handlebars->27->1768", - "default.handlebars->27->1957" + "default.handlebars->27->1771", + "default.handlebars->27->1960" ] }, { @@ -15541,7 +15541,7 @@ "zh-chs": "格式化", "zh-cht": "格式化", "xloc": [ - "default.handlebars->27->1676" + "default.handlebars->27->1679" ] }, { @@ -15582,8 +15582,8 @@ "zh-chs": "自由", "zh-cht": "自由", "xloc": [ - "default.handlebars->27->2032", - "default.handlebars->27->2034" + "default.handlebars->27->2035", + "default.handlebars->27->2037" ] }, { @@ -15624,7 +15624,7 @@ "zh-chs": "法文(比利时)", "zh-cht": "法語(比利時)", "xloc": [ - "default.handlebars->27->1099" + "default.handlebars->27->1101" ] }, { @@ -15644,7 +15644,7 @@ "zh-chs": "法文(加拿大)", "zh-cht": "法語(加拿大)", "xloc": [ - "default.handlebars->27->1100" + "default.handlebars->27->1102" ] }, { @@ -15664,7 +15664,7 @@ "zh-chs": "法文(法国)", "zh-cht": "法語(法國)", "xloc": [ - "default.handlebars->27->1101" + "default.handlebars->27->1103" ] }, { @@ -15684,7 +15684,7 @@ "zh-chs": "法文(卢森堡)", "zh-cht": "法語(盧森堡)", "xloc": [ - "default.handlebars->27->1102" + "default.handlebars->27->1104" ] }, { @@ -15704,7 +15704,7 @@ "zh-chs": "法文(摩纳哥)", "zh-cht": "法語(摩納哥)", "xloc": [ - "default.handlebars->27->1103" + "default.handlebars->27->1105" ] }, { @@ -15724,7 +15724,7 @@ "zh-chs": "法文(标准)", "zh-cht": "法語(標準)", "xloc": [ - "default.handlebars->27->1098" + "default.handlebars->27->1100" ] }, { @@ -15744,7 +15744,7 @@ "zh-chs": "法文(瑞士)", "zh-cht": "法語(瑞士)", "xloc": [ - "default.handlebars->27->1104" + "default.handlebars->27->1106" ] }, { @@ -15764,7 +15764,7 @@ "zh-chs": "弗里斯兰文", "zh-cht": "弗里斯蘭語", "xloc": [ - "default.handlebars->27->1105" + "default.handlebars->27->1107" ] }, { @@ -15784,7 +15784,7 @@ "zh-chs": "弗留利", "zh-cht": "弗留利", "xloc": [ - "default.handlebars->27->1106" + "default.handlebars->27->1108" ] }, { @@ -15805,12 +15805,12 @@ "zh-cht": "完整管理員", "xloc": [ "default-mobile.handlebars->9->105", - "default-mobile.handlebars->9->401", - "default-mobile.handlebars->9->410", - "default-mobile.handlebars->9->428", - "default.handlebars->27->1280", - "default.handlebars->27->1427", - "default.handlebars->27->1780" + "default-mobile.handlebars->9->402", + "default-mobile.handlebars->9->411", + "default-mobile.handlebars->9->429", + "default.handlebars->27->1282", + "default.handlebars->27->1429", + "default.handlebars->27->1783" ] }, { @@ -15830,7 +15830,7 @@ "zh-chs": "完整管理员(保留所有权利)", "zh-cht": "完整管理員(保留所有權利)", "xloc": [ - "default.handlebars->27->1462" + "default.handlebars->27->1464" ] }, { @@ -15867,7 +15867,7 @@ "zh-chs": "完整设备权限", "zh-cht": "完整裝置權限", "xloc": [ - "default.handlebars->27->673" + "default.handlebars->27->675" ] }, { @@ -15887,7 +15887,7 @@ "zh-chs": "全部权限", "zh-cht": "全部權限", "xloc": [ - "default.handlebars->27->689" + "default.handlebars->27->691" ] }, { @@ -15929,7 +15929,7 @@ "zh-chs": "完整管理员", "zh-cht": "完整管理員", "xloc": [ - "default.handlebars->27->1878" + "default.handlebars->27->1881" ] }, { @@ -15949,8 +15949,8 @@ "zh-chs": "GPU", "zh-cht": "GPU", "xloc": [ - "default-mobile.handlebars->9->379", - "default.handlebars->27->980" + "default-mobile.handlebars->9->380", + "default.handlebars->27->982" ] }, { @@ -15970,7 +15970,7 @@ "zh-chs": "盖尔文(爱尔兰)", "zh-cht": "蓋爾語(愛爾蘭)", "xloc": [ - "default.handlebars->27->1108" + "default.handlebars->27->1110" ] }, { @@ -15990,7 +15990,7 @@ "zh-chs": "盖尔文(苏格兰文)", "zh-cht": "蓋爾語(蘇格蘭語)", "xloc": [ - "default.handlebars->27->1107" + "default.handlebars->27->1109" ] }, { @@ -16010,7 +16010,7 @@ "zh-chs": "加拉契文", "zh-cht": "加拉契語", "xloc": [ - "default.handlebars->27->1109" + "default.handlebars->27->1111" ] }, { @@ -16050,7 +16050,7 @@ "zh-chs": "一般", "zh-cht": "一般", "xloc": [ - "default-mobile.handlebars->9->255", + "default-mobile.handlebars->9->256", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDev", "default.handlebars->container->topbar->1->1->MeshSubMenuSpan->MeshSubMenu->1->0->MeshGeneral", "default.handlebars->container->topbar->1->1->ServerSubMenuSpan->ServerSubMenu->1->0->ServerGeneral", @@ -16096,7 +16096,7 @@ "zh-chs": "一般信息", "zh-cht": "一般訊息", "xloc": [ - "default.handlebars->27->529" + "default.handlebars->27->531" ] }, { @@ -16136,7 +16136,7 @@ "zh-chs": "格鲁吉亚文", "zh-cht": "格魯吉亞文", "xloc": [ - "default.handlebars->27->1110" + "default.handlebars->27->1112" ] }, { @@ -16156,7 +16156,7 @@ "zh-chs": "德文(奥地利)", "zh-cht": "德語(奧地利)", "xloc": [ - "default.handlebars->27->1112" + "default.handlebars->27->1114" ] }, { @@ -16176,7 +16176,7 @@ "zh-chs": "德文(德国)", "zh-cht": "德文(德國)", "xloc": [ - "default.handlebars->27->1113" + "default.handlebars->27->1115" ] }, { @@ -16196,7 +16196,7 @@ "zh-chs": "德文(列支敦士登)", "zh-cht": "德文(列支敦士登)", "xloc": [ - "default.handlebars->27->1114" + "default.handlebars->27->1116" ] }, { @@ -16216,7 +16216,7 @@ "zh-chs": "德文(卢森堡)", "zh-cht": "德語(盧森堡)", "xloc": [ - "default.handlebars->27->1115" + "default.handlebars->27->1117" ] }, { @@ -16236,7 +16236,7 @@ "zh-chs": "德文(标准)", "zh-cht": "德語(標準)", "xloc": [ - "default.handlebars->27->1111" + "default.handlebars->27->1113" ] }, { @@ -16256,7 +16256,7 @@ "zh-chs": "德文(瑞士)", "zh-cht": "德文(瑞士)", "xloc": [ - "default.handlebars->27->1116" + "default.handlebars->27->1118" ] }, { @@ -16276,7 +16276,7 @@ "zh-chs": "获取此设备的MQTT登录凭证。", "zh-cht": "獲取此裝置的MQTT登入憑證。", "xloc": [ - "default.handlebars->27->654" + "default.handlebars->27->656" ] }, { @@ -16317,7 +16317,7 @@ "zh-chs": "正在获取剪贴板内容,{0}个字节", "zh-cht": "正在獲取剪貼板內容,{0}個字節", "xloc": [ - "default.handlebars->27->1588" + "default.handlebars->27->1590" ] }, { @@ -16379,7 +16379,7 @@ "zh-chs": "好", "zh-cht": "好", "xloc": [ - "default.handlebars->27->1276" + "default.handlebars->27->1278" ] }, { @@ -16424,9 +16424,9 @@ "zh-chs": "Google云端硬盘备份", "zh-cht": "Google雲端硬盤備份", "xloc": [ - "default.handlebars->27->1287", - "default.handlebars->27->1290", - "default.handlebars->27->201" + "default.handlebars->27->1289", + "default.handlebars->27->1292", + "default.handlebars->27->202" ] }, { @@ -16446,7 +16446,7 @@ "zh-chs": "Google云端硬盘控制台", "zh-cht": "Google雲端硬盤控制台", "xloc": [ - "default.handlebars->27->1284" + "default.handlebars->27->1286" ] }, { @@ -16486,7 +16486,7 @@ "zh-chs": "Google云端硬盘备份当前处于活动状态。", "zh-cht": "Google雲端硬盤備份當前處於活動狀態。", "xloc": [ - "default.handlebars->27->1288" + "default.handlebars->27->1290" ] }, { @@ -16506,7 +16506,7 @@ "zh-chs": "希腊文", "zh-cht": "希臘文", "xloc": [ - "default.handlebars->27->1117" + "default.handlebars->27->1119" ] }, { @@ -16526,8 +16526,8 @@ "zh-chs": "组", "zh-cht": "群", "xloc": [ - "default-mobile.handlebars->9->214", - "default.handlebars->27->557", + "default-mobile.handlebars->9->215", + "default.handlebars->27->559", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->1" ] }, @@ -16548,9 +16548,9 @@ "zh-chs": "集体指令", "zh-cht": "集體指令", "xloc": [ - "default.handlebars->27->1724", - "default.handlebars->27->1803", - "default.handlebars->27->465", + "default.handlebars->27->1727", + "default.handlebars->27->1806", + "default.handlebars->27->467", "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" @@ -16573,7 +16573,7 @@ "zh-chs": "通过...分组", "zh-cht": "通過...分群", "xloc": [ - "default.handlebars->27->1672" + "default.handlebars->27->1675" ] }, { @@ -16593,7 +16593,7 @@ "zh-chs": "组标识符", "zh-cht": "群標識符", "xloc": [ - "default.handlebars->27->1820" + "default.handlebars->27->1823" ] }, { @@ -16613,7 +16613,7 @@ "zh-chs": "群组成员", "zh-cht": "群組成員", "xloc": [ - "default.handlebars->27->1841" + "default.handlebars->27->1844" ] }, { @@ -16633,7 +16633,7 @@ "zh-chs": "用户{0}的群组权限。", "zh-cht": "用戶{0}的群組權限。", "xloc": [ - "default.handlebars->27->1426" + "default.handlebars->27->1428" ] }, { @@ -16653,7 +16653,7 @@ "zh-chs": "{0}的群组权限。", "zh-cht": "{0}的群組權限。", "xloc": [ - "default.handlebars->27->1425" + "default.handlebars->27->1427" ] }, { @@ -16679,7 +16679,7 @@ "zh-chs": "组1,组2,组3", "zh-cht": "群1,群2,群3", "xloc": [ - "default-mobile.handlebars->9->282" + "default-mobile.handlebars->9->283" ] }, { @@ -16719,8 +16719,8 @@ "zh-chs": "访客姓名", "zh-cht": "來賓姓名", "xloc": [ - "default.handlebars->27->184", - "default.handlebars->27->717" + "default.handlebars->27->185", + "default.handlebars->27->719" ] }, { @@ -16740,7 +16740,7 @@ "zh-chs": "古久拉提", "zh-cht": "古久拉提", "xloc": [ - "default.handlebars->27->1118" + "default.handlebars->27->1120" ] }, { @@ -16783,7 +16783,7 @@ "zh-chs": "海地文", "zh-cht": "海地文", "xloc": [ - "default.handlebars->27->1119" + "default.handlebars->27->1121" ] }, { @@ -16823,7 +16823,7 @@ "zh-chs": "强行断开代理", "zh-cht": "強行斷開代理", "xloc": [ - "default.handlebars->27->1007" + "default.handlebars->27->1009" ] }, { @@ -16843,7 +16843,7 @@ "zh-chs": "堆总数", "zh-cht": "堆總數", "xloc": [ - "default.handlebars->27->2076" + "default.handlebars->27->2079" ] }, { @@ -16863,7 +16863,7 @@ "zh-chs": "堆使用", "zh-cht": "堆使用", "xloc": [ - "default.handlebars->27->2075" + "default.handlebars->27->2078" ] }, { @@ -16883,7 +16883,7 @@ "zh-chs": "希伯来文", "zh-cht": "希伯來文", "xloc": [ - "default.handlebars->27->1120" + "default.handlebars->27->1122" ] }, { @@ -16907,6 +16907,31 @@ "mesh-invite.txt" ] }, + { + "en": "Help", + "xloc": [ + "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar->DevFilterSelect->13" + ] + }, + { + "en": "Help Requested, user: {0}, details: {1}", + "xloc": [ + "default.handlebars->27->1667" + ] + }, + { + "en": "Help Requests", + "xloc": [ + "default-mobile.handlebars->9->158", + "default.handlebars->27->245" + ] + }, + { + "en": "Help requested from {0}: {1}", + "xloc": [ + "default.handlebars->27->160" + ] + }, { "cs": "Pomozte MeshCentral přeložit do svého jazyka", "de": "Hilf bei der Übersetzung von MeshCentral", @@ -16924,7 +16949,7 @@ "zh-chs": "帮助翻译MeshCentral", "zh-cht": "幫助翻譯MeshCentral", "xloc": [ - "default.handlebars->27->1235" + "default.handlebars->27->1237" ] }, { @@ -17012,9 +17037,9 @@ "zh-chs": "休眠", "zh-cht": "冬眠", "xloc": [ - "default-mobile.handlebars->9->182", - "default-mobile.handlebars->9->189", - "default.handlebars->27->426", + "default-mobile.handlebars->9->183", + "default-mobile.handlebars->9->190", + "default.handlebars->27->428", "default.handlebars->27->5" ] }, @@ -17035,7 +17060,7 @@ "zh-chs": "印地文", "zh-cht": "印地文", "xloc": [ - "default.handlebars->27->1121" + "default.handlebars->27->1123" ] }, { @@ -17072,8 +17097,8 @@ "zh-chs": "保存1个条目进行复制", "zh-cht": "保存1個項目進行複製", "xloc": [ - "default-mobile.handlebars->9->315", - "default.handlebars->27->899" + "default-mobile.handlebars->9->316", + "default.handlebars->27->901" ] }, { @@ -17093,8 +17118,8 @@ "zh-chs": "保存1个项目进行移动", "zh-cht": "保存1個項目進行移動", "xloc": [ - "default-mobile.handlebars->9->319", - "default.handlebars->27->903" + "default-mobile.handlebars->9->320", + "default.handlebars->27->905" ] }, { @@ -17114,8 +17139,8 @@ "zh-chs": "保存{0}个条目进行复制", "zh-cht": "保留{0}個項目進行複製", "xloc": [ - "default-mobile.handlebars->9->313", - "default.handlebars->27->897" + "default-mobile.handlebars->9->314", + "default.handlebars->27->899" ] }, { @@ -17135,8 +17160,8 @@ "zh-chs": "保存{0}个条目以进行移动", "zh-cht": "保存{0}個項目以進行移動", "xloc": [ - "default-mobile.handlebars->9->317", - "default.handlebars->27->901" + "default-mobile.handlebars->9->318", + "default.handlebars->27->903" ] }, { @@ -17157,7 +17182,7 @@ "zh-cht": "保存{0}項目{1}給{2}", "xloc": [ "default-mobile.handlebars->9->129", - "default.handlebars->27->1561" + "default.handlebars->27->1563" ] }, { @@ -17177,13 +17202,13 @@ "zh-chs": "主机名", "zh-cht": "主機名", "xloc": [ - "default-mobile.handlebars->9->216", "default-mobile.handlebars->9->217", - "default-mobile.handlebars->9->219", - "default-mobile.handlebars->9->279", - "default.handlebars->27->287", - "default.handlebars->27->562", - "default.handlebars->27->810" + "default-mobile.handlebars->9->218", + "default-mobile.handlebars->9->220", + "default-mobile.handlebars->9->280", + "default.handlebars->27->289", + "default.handlebars->27->564", + "default.handlebars->27->812" ] }, { @@ -17203,7 +17228,7 @@ "zh-chs": "主机名同步", "zh-cht": "主機名同步", "xloc": [ - "default.handlebars->27->1315" + "default.handlebars->27->1317" ] }, { @@ -17223,7 +17248,7 @@ "zh-chs": "匈牙利文", "zh-cht": "匈牙利文", "xloc": [ - "default.handlebars->27->1122" + "default.handlebars->27->1124" ] }, { @@ -17243,8 +17268,8 @@ "zh-chs": "IP范围", "zh-cht": "IP範圍", "xloc": [ - "default.handlebars->27->302", - "default.handlebars->27->304" + "default.handlebars->27->304", + "default.handlebars->27->306" ] }, { @@ -17286,11 +17311,11 @@ "zh-chs": "IP:{0}", "zh-cht": "IP:{0}", "xloc": [ - "default-mobile.handlebars->9->348", - "default-mobile.handlebars->9->352", - "default.handlebars->27->939", - "default.handlebars->27->949", - "default.handlebars->27->953" + "default-mobile.handlebars->9->349", + "default-mobile.handlebars->9->353", + "default.handlebars->27->941", + "default.handlebars->27->951", + "default.handlebars->27->955" ] }, { @@ -17310,11 +17335,11 @@ "zh-chs": "IP:{0},掩码:{1},网关:{2}", "zh-cht": "IP:{0},遮罩:{1},閘道:{2}", "xloc": [ - "default-mobile.handlebars->9->346", - "default-mobile.handlebars->9->350", - "default.handlebars->27->937", - "default.handlebars->27->947", - "default.handlebars->27->951" + "default-mobile.handlebars->9->347", + "default-mobile.handlebars->9->351", + "default.handlebars->27->939", + "default.handlebars->27->949", + "default.handlebars->27->953" ] }, { @@ -17334,12 +17359,12 @@ "zh-chs": "IPv4层", "zh-cht": "IPv4層", "xloc": [ - "default-mobile.handlebars->9->345", - "default-mobile.handlebars->9->347", - "default.handlebars->27->936", + "default-mobile.handlebars->9->346", + "default-mobile.handlebars->9->348", "default.handlebars->27->938", - "default.handlebars->27->946", - "default.handlebars->27->948" + "default.handlebars->27->940", + "default.handlebars->27->948", + "default.handlebars->27->950" ] }, { @@ -17422,10 +17447,10 @@ "zh-chs": "IPv6层", "zh-cht": "IPv6層", "xloc": [ - "default-mobile.handlebars->9->349", - "default-mobile.handlebars->9->351", - "default.handlebars->27->950", - "default.handlebars->27->952" + "default-mobile.handlebars->9->350", + "default-mobile.handlebars->9->352", + "default.handlebars->27->952", + "default.handlebars->27->954" ] }, { @@ -17505,7 +17530,7 @@ "zh-chs": "冰岛文", "zh-cht": "冰島文", "xloc": [ - "default.handlebars->27->1123" + "default.handlebars->27->1125" ] }, { @@ -17525,8 +17550,8 @@ "zh-chs": "图标选择", "zh-cht": "圖符選擇", "xloc": [ - "default-mobile.handlebars->9->277", - "default.handlebars->27->808" + "default-mobile.handlebars->9->278", + "default.handlebars->27->810" ] }, { @@ -17546,8 +17571,8 @@ "zh-chs": "识别码", "zh-cht": "識別符", "xloc": [ - "default-mobile.handlebars->9->377", - "default.handlebars->27->978" + "default-mobile.handlebars->9->378", + "default.handlebars->27->980" ] }, { @@ -17673,9 +17698,9 @@ "zh-cht": "個別裝置", "xloc": [ "default-mobile.handlebars->9->148", - "default.handlebars->27->204", - "default.handlebars->27->220", - "default.handlebars->27->221" + "default.handlebars->27->205", + "default.handlebars->27->221", + "default.handlebars->27->222" ] }, { @@ -17695,7 +17720,7 @@ "zh-chs": "印度尼西亚文", "zh-cht": "印度尼西亞文", "xloc": [ - "default.handlebars->27->1124" + "default.handlebars->27->1126" ] }, { @@ -17834,7 +17859,7 @@ "zh-chs": "安装CIRA", "zh-cht": "安裝CIRA", "xloc": [ - "default.handlebars->27->1349" + "default.handlebars->27->1351" ] }, { @@ -17854,7 +17879,7 @@ "zh-chs": "安装本地", "zh-cht": "安裝本地", "xloc": [ - "default.handlebars->27->1351" + "default.handlebars->27->1353" ] }, { @@ -17874,11 +17899,11 @@ "zh-chs": "安装类型", "zh-cht": "安裝方式", "xloc": [ - "default.handlebars->27->1493", - "default.handlebars->27->1500", - "default.handlebars->27->351", - "default.handlebars->27->365", - "default.handlebars->27->379" + "default.handlebars->27->1495", + "default.handlebars->27->1502", + "default.handlebars->27->353", + "default.handlebars->27->367", + "default.handlebars->27->381" ] }, { @@ -17898,7 +17923,7 @@ "zh-chs": "英特尔(F10 = ESC + [OM)", "zh-cht": "Intel(F10 = ESC + [OM)", "xloc": [ - "default.handlebars->27->865", + "default.handlebars->27->867", "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons" ] }, @@ -17919,7 +17944,7 @@ "zh-chs": "英特尔AMT", "zh-cht": "英特爾AMT", "xloc": [ - "default.handlebars->27->2072" + "default.handlebars->27->2075" ] }, { @@ -17939,7 +17964,7 @@ "zh-chs": "英特尔ASCII", "zh-cht": "Intel ASCII", "xloc": [ - "default.handlebars->27->864" + "default.handlebars->27->866" ] }, { @@ -17959,17 +17984,17 @@ "zh-chs": "英特尔®AMT", "zh-cht": "Intel® AMT", "xloc": [ - "default-mobile.handlebars->9->201", - "default-mobile.handlebars->9->236", - "default-mobile.handlebars->9->241", - "default.handlebars->27->1333", - "default.handlebars->27->1343", - "default.handlebars->27->1512", - "default.handlebars->27->1520", - "default.handlebars->27->2094", - "default.handlebars->27->532", - "default.handlebars->27->587", - "default.handlebars->27->615" + "default-mobile.handlebars->9->202", + "default-mobile.handlebars->9->237", + "default-mobile.handlebars->9->242", + "default.handlebars->27->1335", + "default.handlebars->27->1345", + "default.handlebars->27->1514", + "default.handlebars->27->1522", + "default.handlebars->27->2097", + "default.handlebars->27->534", + "default.handlebars->27->589", + "default.handlebars->27->617" ] }, { @@ -17989,8 +18014,8 @@ "zh-chs": "英特尔®AMT CIRA", "zh-cht": "Intel® AMT CIRA", "xloc": [ - "default-mobile.handlebars->9->240", - "default.handlebars->27->613" + "default-mobile.handlebars->9->241", + "default.handlebars->27->615" ] }, { @@ -18010,7 +18035,7 @@ "zh-chs": "英特尔AMT CIRA已连接", "zh-cht": "Intel® AMT CIRA已連接", "xloc": [ - "default.handlebars->27->162" + "default.handlebars->27->163" ] }, { @@ -18030,7 +18055,7 @@ "zh-chs": "英特尔AMT CIRA已断开连接", "zh-cht": "Intel® AMT CIRA已斷開連接", "xloc": [ - "default.handlebars->27->166" + "default.handlebars->27->167" ] }, { @@ -18050,9 +18075,9 @@ "zh-chs": "英特尔®AMT CIRA已连接并可以使用。", "zh-cht": "Intel® AMT CIRA已連接並可以使用。", "xloc": [ - "default.handlebars->27->211", - "default.handlebars->27->440", - "default.handlebars->27->612" + "default.handlebars->27->212", + "default.handlebars->27->442", + "default.handlebars->27->614" ] }, { @@ -18115,7 +18140,7 @@ "zh-chs": "英特尔®AMT政策", "zh-cht": "Intel® AMT政策", "xloc": [ - "default.handlebars->27->1372" + "default.handlebars->27->1374" ] }, { @@ -18135,7 +18160,7 @@ "zh-chs": "英特尔®AMT重定向", "zh-cht": "Intel® AMT重定向", "xloc": [ - "default.handlebars->27->2010", + "default.handlebars->27->2013", "player.handlebars->3->14" ] }, @@ -18156,7 +18181,7 @@ "zh-chs": "英特尔®AMT标签", "zh-cht": "Intel® AMT標籤", "xloc": [ - "default.handlebars->27->591" + "default.handlebars->27->593" ] }, { @@ -18176,7 +18201,7 @@ "zh-chs": "英特尔®AMT WSMAN", "zh-cht": "Intle® AMT WSMAN", "xloc": [ - "default.handlebars->27->2009", + "default.handlebars->27->2012", "player.handlebars->3->13" ] }, @@ -18197,8 +18222,8 @@ "zh-chs": "英特尔®AMT激活", "zh-cht": "Intelreg; AMT啟動", "xloc": [ - "default.handlebars->27->297", - "default.handlebars->27->300" + "default.handlebars->27->299", + "default.handlebars->27->302" ] }, { @@ -18218,9 +18243,9 @@ "zh-chs": "英特尔®AMT已连接", "zh-cht": "Intel ®AMT已連接", "xloc": [ - "default-mobile.handlebars->9->251", - "default.handlebars->27->658", - "default.handlebars->27->659" + "default-mobile.handlebars->9->252", + "default.handlebars->27->660", + "default.handlebars->27->661" ] }, { @@ -18240,8 +18265,8 @@ "zh-chs": "英特尔®AMT桌面和串行事件。", "zh-cht": "Intel® AMT桌面和串行事件。", "xloc": [ - "default.handlebars->27->1241", - "default.handlebars->27->1508" + "default.handlebars->27->1243", + "default.handlebars->27->1510" ] }, { @@ -18261,10 +18286,10 @@ "zh-chs": "检测到英特尔®AMT", "zh-cht": "檢測到Intel® AMT", "xloc": [ - "default-mobile.handlebars->9->252", - "default.handlebars->27->161", - "default.handlebars->27->660", - "default.handlebars->27->661" + "default-mobile.handlebars->9->253", + "default.handlebars->27->162", + "default.handlebars->27->662", + "default.handlebars->27->663" ] }, { @@ -18284,7 +18309,7 @@ "zh-chs": "在Intel® AMT尔AMT", "zh-cht": "在管理控制模式下啟動了Intel® AMT", "xloc": [ - "default.handlebars->27->576" + "default.handlebars->27->578" ] }, { @@ -18304,7 +18329,7 @@ "zh-chs": "英特尔AMT在客户端控制模式下被激活", "zh-cht": "Intel® AMT在客户端控制模式下被启动", "xloc": [ - "default.handlebars->27->574" + "default.handlebars->27->576" ] }, { @@ -18324,7 +18349,7 @@ "zh-chs": "英特尔®AMT可路由并可以使用。", "zh-cht": "Intel® AMT可路由並可以使用。", "xloc": [ - "default.handlebars->27->614" + "default.handlebars->27->616" ] }, { @@ -18344,8 +18369,8 @@ "zh-chs": "英特尔®AMT是可路由的。", "zh-cht": "Intel® AMT是可路由的。", "xloc": [ - "default.handlebars->27->213", - "default.handlebars->27->442" + "default.handlebars->27->214", + "default.handlebars->27->444" ] }, { @@ -18365,7 +18390,7 @@ "zh-chs": "英特尔AMT已设置TLS网络安全", "zh-cht": "Intel® AMT已設置TLS網絡安全性", "xloc": [ - "default.handlebars->27->578" + "default.handlebars->27->580" ] }, { @@ -18385,7 +18410,7 @@ "zh-chs": "未检测到英特尔AMT", "zh-cht": "未檢測到Intel® AMT", "xloc": [ - "default.handlebars->27->165" + "default.handlebars->27->166" ] }, { @@ -18425,9 +18450,9 @@ "zh-chs": "仅限英特尔®AMT,无代理", "zh-cht": "僅限Intel® AMT,無代理", "xloc": [ - "default-mobile.handlebars->9->392", - "default.handlebars->27->1270", - "default.handlebars->27->1305" + "default-mobile.handlebars->9->393", + "default.handlebars->27->1272", + "default.handlebars->27->1307" ] }, { @@ -18447,7 +18472,7 @@ "zh-chs": "英特尔AMT将需要在MEBx中设置受信任的FQDN,或者在有线的网络上:", "zh-cht": "Intel® AMT將需要在MEBx中設置受信任的FQDN,或者在有線的網絡上:", "xloc": [ - "default.handlebars->27->299" + "default.handlebars->27->301" ] }, { @@ -18467,7 +18492,7 @@ "zh-chs": "英特尔®主动管理技术", "zh-cht": "Intel® Active Management Technology", "xloc": [ - "default.handlebars->27->586" + "default.handlebars->27->588" ] }, { @@ -18487,8 +18512,8 @@ "zh-chs": "英特尔®主动管理技术(英特尔®AMT)", "zh-cht": "Intel ® Active Management Technology(Intel® AMT)", "xloc": [ - "default-mobile.handlebars->9->369", - "default.handlebars->27->970" + "default-mobile.handlebars->9->370", + "default.handlebars->27->972" ] }, { @@ -18508,8 +18533,8 @@ "zh-chs": "英特尔®ME", "zh-cht": "Intel® ME", "xloc": [ - "default-mobile.handlebars->9->235", - "default.handlebars->27->585" + "default-mobile.handlebars->9->236", + "default.handlebars->27->587" ] }, { @@ -18529,7 +18554,7 @@ "zh-chs": "英特尔®可管理性引擎", "zh-cht": "Intel® Management Engine", "xloc": [ - "default.handlebars->27->584" + "default.handlebars->27->586" ] }, { @@ -18549,8 +18574,8 @@ "zh-chs": "英特尔®SM", "zh-cht": "Intel® M", "xloc": [ - "default-mobile.handlebars->9->237", - "default.handlebars->27->589" + "default-mobile.handlebars->9->238", + "default.handlebars->27->591" ] }, { @@ -18570,7 +18595,7 @@ "zh-chs": "英特尔®标准可管理性", "zh-cht": "Intel® Standard Manageability", "xloc": [ - "default.handlebars->27->588" + "default.handlebars->27->590" ] }, { @@ -18693,7 +18718,7 @@ "zh-chs": "互动", "zh-cht": "互動", "xloc": [ - "default.handlebars->27->845" + "default.handlebars->27->847" ] }, { @@ -18713,11 +18738,11 @@ "zh-chs": "仅限互动", "zh-cht": "僅限互動", "xloc": [ - "default.handlebars->27->1496", - "default.handlebars->27->1503", - "default.handlebars->27->354", - "default.handlebars->27->368", - "default.handlebars->27->382" + "default.handlebars->27->1498", + "default.handlebars->27->1505", + "default.handlebars->27->356", + "default.handlebars->27->370", + "default.handlebars->27->384" ] }, { @@ -18737,7 +18762,7 @@ "zh-chs": "介面", "zh-cht": "介面", "xloc": [ - "default.handlebars->27->637" + "default.handlebars->27->639" ] }, { @@ -18757,7 +18782,7 @@ "zh-chs": "因纽特文", "zh-cht": "因紐特文", "xloc": [ - "default.handlebars->27->1125" + "default.handlebars->27->1127" ] }, { @@ -18777,7 +18802,7 @@ "zh-chs": "无效的设备组类型", "zh-cht": "無效的裝置群類型", "xloc": [ - "default.handlebars->27->2046" + "default.handlebars->27->2049" ] }, { @@ -18797,7 +18822,7 @@ "zh-chs": "无效的JSON", "zh-cht": "無效的JSON", "xloc": [ - "default.handlebars->27->2040" + "default.handlebars->27->2043" ] }, { @@ -18817,8 +18842,8 @@ "zh-chs": "无效的JSON档案格式。", "zh-cht": "無效的JSON檔案格式。", "xloc": [ - "default.handlebars->27->1742", - "default.handlebars->27->1744" + "default.handlebars->27->1745", + "default.handlebars->27->1747" ] }, { @@ -18838,7 +18863,7 @@ "zh-chs": "无效的JSON档案:{0}。", "zh-cht": "無效的JSON檔案:{0}。", "xloc": [ - "default.handlebars->27->1740" + "default.handlebars->27->1743" ] }, { @@ -18858,7 +18883,7 @@ "zh-chs": "无效的PKCS签名", "zh-cht": "無效的PKCS簽名", "xloc": [ - "default.handlebars->27->2038" + "default.handlebars->27->2041" ] }, { @@ -18878,7 +18903,7 @@ "zh-chs": "無效的RSA密碼", "zh-cht": "無效的RSA密碼", "xloc": [ - "default.handlebars->27->2039" + "default.handlebars->27->2042" ] }, { @@ -19005,7 +19030,7 @@ "zh-chs": "使电邮无效", "zh-cht": "使電郵無效", "xloc": [ - "default.handlebars->27->1718" + "default.handlebars->27->1721" ] }, { @@ -19042,7 +19067,7 @@ "zh-chs": "邀请连接({0})", "zh-cht": "邀請鏈結({0})", "xloc": [ - "default.handlebars->27->182" + "default.handlebars->27->183" ] }, { @@ -19062,7 +19087,7 @@ "zh-chs": "邀请类型", "zh-cht": "邀請類型", "xloc": [ - "default.handlebars->27->331" + "default.handlebars->27->333" ] }, { @@ -19082,7 +19107,7 @@ "zh-chs": "任何人都可以使用邀请代码通过以下公共连接将设备加入该设备组:", "zh-cht": "任何人都可以使用邀請代碼通過以下公共鏈結將裝置加入該裝置群:", "xloc": [ - "default.handlebars->27->1498" + "default.handlebars->27->1500" ] }, { @@ -19122,9 +19147,9 @@ "zh-chs": "邀请", "zh-cht": "邀請", "xloc": [ - "default.handlebars->27->1359", - "default.handlebars->27->284", - "default.handlebars->27->370" + "default.handlebars->27->1361", + "default.handlebars->27->286", + "default.handlebars->27->372" ] }, { @@ -19144,11 +19169,11 @@ "zh-chs": "邀请码", "zh-cht": "邀請碼", "xloc": [ - "default.handlebars->27->1337", - "default.handlebars->27->1492", - "default.handlebars->27->1497", + "default.handlebars->27->1339", + "default.handlebars->27->1494", "default.handlebars->27->1499", - "default.handlebars->27->1504" + "default.handlebars->27->1501", + "default.handlebars->27->1506" ] }, { @@ -19168,7 +19193,7 @@ "zh-chs": "通过共享邀请连结来邀请某人安装网格代理。该连结为用户提供“ {0} ”设备组的安装说明。该连结是公用的,不需要这服务器的帐户。", "zh-cht": "通過共享邀請鏈結來邀請某人安裝mesh agent。該鏈結將用戶指向“ {0} ”裝置群的安裝說明。該鏈結是公用的,不需要這伺服器的帳戶。", "xloc": [ - "default.handlebars->27->357" + "default.handlebars->27->359" ] }, { @@ -19188,8 +19213,8 @@ "zh-chs": "邀请某人在该设备组上安装网格代理。", "zh-cht": "邀請某人在該裝置群上安裝mesh agent。", "xloc": [ - "default.handlebars->27->1358", - "default.handlebars->27->283" + "default.handlebars->27->1360", + "default.handlebars->27->285" ] }, { @@ -19209,7 +19234,7 @@ "zh-chs": "邀请某人安装网状代理。将发送一封电邮,其中包含指向“ {0} ”设备组的网状代理安装的连结。", "zh-cht": "邀請某人安裝mesh agent。將發送一封電郵,其中包含指向“ {0} ”裝置群的mesh agent安裝的鏈結。", "xloc": [ - "default.handlebars->27->334" + "default.handlebars->27->336" ] }, { @@ -19229,7 +19254,7 @@ "zh-chs": "爱尔兰文", "zh-cht": "愛爾蘭文", "xloc": [ - "default.handlebars->27->1126" + "default.handlebars->27->1128" ] }, { @@ -19249,7 +19274,7 @@ "zh-chs": "意大利文(标准)", "zh-cht": "意大利文(標準)", "xloc": [ - "default.handlebars->27->1127" + "default.handlebars->27->1129" ] }, { @@ -19269,7 +19294,7 @@ "zh-chs": "意大利文(瑞士)", "zh-cht": "義大利文(瑞士)", "xloc": [ - "default.handlebars->27->1128" + "default.handlebars->27->1130" ] }, { @@ -19289,7 +19314,7 @@ "zh-chs": "JSON", "zh-cht": "JSON", "xloc": [ - "default.handlebars->27->1678" + "default.handlebars->27->1681" ] }, { @@ -19309,9 +19334,9 @@ "zh-chs": "JSON格式", "zh-cht": "JSON格式", "xloc": [ - "default.handlebars->27->1683", - "default.handlebars->27->1748", - "default.handlebars->27->493" + "default.handlebars->27->1686", + "default.handlebars->27->1751", + "default.handlebars->27->495" ] }, { @@ -19331,7 +19356,7 @@ "zh-chs": "日文", "zh-cht": "日文", "xloc": [ - "default.handlebars->27->1129" + "default.handlebars->27->1131" ] }, { @@ -19351,7 +19376,7 @@ "zh-chs": "已加入桌面Multiplex会话", "zh-cht": "已加入桌面Multiplex會話", "xloc": [ - "default.handlebars->27->1571" + "default.handlebars->27->1573" ] }, { @@ -19371,7 +19396,7 @@ "zh-chs": "卡纳达文", "zh-cht": "卡納達文", "xloc": [ - "default.handlebars->27->1130" + "default.handlebars->27->1132" ] }, { @@ -19391,7 +19416,7 @@ "zh-chs": "克什米尔文", "zh-cht": "克什米爾文", "xloc": [ - "default.handlebars->27->1131" + "default.handlebars->27->1133" ] }, { @@ -19411,7 +19436,7 @@ "zh-chs": "哈萨克文", "zh-cht": "哈薩克文", "xloc": [ - "default.handlebars->27->1132" + "default.handlebars->27->1134" ] }, { @@ -19431,7 +19456,7 @@ "zh-chs": "内核驱动器", "zh-cht": "內核驅動器", "xloc": [ - "default.handlebars->27->846" + "default.handlebars->27->848" ] }, { @@ -19451,8 +19476,8 @@ "zh-chs": "键名", "zh-cht": "鍵名", "xloc": [ - "default.handlebars->27->1023", - "default.handlebars->27->1026" + "default.handlebars->27->1025", + "default.handlebars->27->1028" ] }, { @@ -19512,7 +19537,7 @@ "zh-chs": "高棉文", "zh-cht": "高棉文", "xloc": [ - "default.handlebars->27->1133" + "default.handlebars->27->1135" ] }, { @@ -19532,7 +19557,7 @@ "zh-chs": "杀死进程{0}", "zh-cht": "殺死進程{0}", "xloc": [ - "default.handlebars->27->1586" + "default.handlebars->27->1588" ] }, { @@ -19552,7 +19577,7 @@ "zh-chs": "吉尔吉斯", "zh-cht": "吉爾吉斯", "xloc": [ - "default.handlebars->27->1134" + "default.handlebars->27->1136" ] }, { @@ -19572,7 +19597,7 @@ "zh-chs": "克林贡", "zh-cht": "克林貢", "xloc": [ - "default.handlebars->27->1135" + "default.handlebars->27->1137" ] }, { @@ -19592,8 +19617,8 @@ "zh-chs": "已知的", "zh-cht": "已知的", "xloc": [ - "default-mobile.handlebars->9->368", - "default.handlebars->27->969" + "default-mobile.handlebars->9->369", + "default.handlebars->27->971" ] }, { @@ -19613,7 +19638,7 @@ "zh-chs": "韩文", "zh-cht": "韓文", "xloc": [ - "default.handlebars->27->1136" + "default.handlebars->27->1138" ] }, { @@ -19633,7 +19658,7 @@ "zh-chs": "韩文(朝鲜)", "zh-cht": "韓文(朝鮮)", "xloc": [ - "default.handlebars->27->1137" + "default.handlebars->27->1139" ] }, { @@ -19653,7 +19678,7 @@ "zh-chs": "韩文(韩国)", "zh-cht": "韓文(韓國)", "xloc": [ - "default.handlebars->27->1138" + "default.handlebars->27->1140" ] }, { @@ -19673,8 +19698,8 @@ "zh-chs": "如果", "zh-cht": "如果", "xloc": [ - "default.handlebars->27->860", - "default.handlebars->27->869" + "default.handlebars->27->862", + "default.handlebars->27->871" ] }, { @@ -19694,7 +19719,7 @@ "zh-chs": "语言", "zh-cht": "語言", "xloc": [ - "default.handlebars->27->1233" + "default.handlebars->27->1235" ] }, { @@ -19734,7 +19759,7 @@ "zh-chs": "大焦点", "zh-cht": "大焦點", "xloc": [ - "default.handlebars->27->834" + "default.handlebars->27->836" ] }, { @@ -19947,7 +19972,7 @@ "zh-chs": "最后访问", "zh-cht": "最後訪問", "xloc": [ - "default.handlebars->27->1691" + "default.handlebars->27->1694" ] }, { @@ -19967,7 +19992,7 @@ "zh-chs": "上次登录", "zh-cht": "上次登入", "xloc": [ - "default.handlebars->27->1899" + "default.handlebars->27->1902" ] }, { @@ -19987,15 +20012,15 @@ "zh-chs": "上次代理地址", "zh-cht": "上次代理地址", "xloc": [ - "default-mobile.handlebars->9->336", "default-mobile.handlebars->9->337", "default-mobile.handlebars->9->338", + "default-mobile.handlebars->9->339", "default.handlebars->27->69", "default.handlebars->27->71", "default.handlebars->27->73", - "default.handlebars->27->927", - "default.handlebars->27->928", - "default.handlebars->27->929" + "default.handlebars->27->929", + "default.handlebars->27->930", + "default.handlebars->27->931" ] }, { @@ -20015,11 +20040,11 @@ "zh-chs": "上次代理连接", "zh-cht": "上次代理連接", "xloc": [ - "default-mobile.handlebars->9->333", - "default-mobile.handlebars->9->335", + "default-mobile.handlebars->9->334", + "default-mobile.handlebars->9->336", "default.handlebars->27->68", - "default.handlebars->27->924", - "default.handlebars->27->926" + "default.handlebars->27->926", + "default.handlebars->27->928" ] }, { @@ -20039,7 +20064,7 @@ "zh-chs": "上次更改:{0}", "zh-cht": "上次更改:{0}", "xloc": [ - "default.handlebars->27->1903" + "default.handlebars->27->1906" ] }, { @@ -20099,7 +20124,7 @@ "zh-chs": "上次登录:{0}", "zh-cht": "上次登入:{0}", "xloc": [ - "default.handlebars->27->1701" + "default.handlebars->27->1704" ] }, { @@ -20120,7 +20145,7 @@ "zh-cht": "最後一次發現:", "xloc": [ "default.handlebars->27->65", - "default.handlebars->27->664" + "default.handlebars->27->666" ] }, { @@ -20200,7 +20225,7 @@ "zh-chs": "拉丁文", "zh-cht": "拉丁文", "xloc": [ - "default.handlebars->27->1139" + "default.handlebars->27->1141" ] }, { @@ -20220,7 +20245,7 @@ "zh-chs": "拉脱维亚文", "zh-cht": "拉脫維亞文", "xloc": [ - "default.handlebars->27->1140" + "default.handlebars->27->1142" ] }, { @@ -20240,7 +20265,7 @@ "zh-chs": "启动MeshCentral路由器", "zh-cht": "啟動MeshCentral路由器", "xloc": [ - "default.handlebars->27->785" + "default.handlebars->27->787" ] }, { @@ -20260,7 +20285,7 @@ "zh-chs": "启动noVNC连接到此设备", "zh-cht": "啟動noVNC連接到此裝置", "xloc": [ - "default.handlebars->27->650" + "default.handlebars->27->652" ] }, { @@ -20280,7 +20305,7 @@ "zh-chs": "启动基于Web的RDP连接到此设备", "zh-cht": "啟動基於Web的RDP連接到此裝置", "xloc": [ - "default.handlebars->27->652" + "default.handlebars->27->654" ] }, { @@ -20300,7 +20325,7 @@ "zh-chs": "如没有请留空。", "zh-cht": "如沒有請留空。", "xloc": [ - "default.handlebars->27->1943" + "default.handlebars->27->1946" ] }, { @@ -20345,7 +20370,7 @@ "zh-chs": "离开桌面多路复用会话", "zh-cht": "離開桌面多路復用會話", "xloc": [ - "default.handlebars->27->1572" + "default.handlebars->27->1574" ] }, { @@ -20365,7 +20390,7 @@ "zh-chs": "减", "zh-cht": "減", "xloc": [ - "default.handlebars->27->2111" + "default.handlebars->27->2114" ] }, { @@ -20385,8 +20410,8 @@ "zh-chs": "限制事件", "zh-cht": "限制事件", "xloc": [ - "default.handlebars->27->685", - "default.handlebars->27->704" + "default.handlebars->27->687", + "default.handlebars->27->706" ] }, { @@ -20427,10 +20452,10 @@ "zh-chs": "有限输入", "zh-cht": "有限輸入", "xloc": [ - "default-mobile.handlebars->9->441", - "default.handlebars->27->1476", - "default.handlebars->27->678", - "default.handlebars->27->697" + "default-mobile.handlebars->9->442", + "default.handlebars->27->1478", + "default.handlebars->27->680", + "default.handlebars->27->699" ] }, { @@ -20450,8 +20475,8 @@ "zh-chs": "仅有限输入", "zh-cht": "僅有限輸入", "xloc": [ - "default-mobile.handlebars->9->416", - "default.handlebars->27->1433" + "default-mobile.handlebars->9->417", + "default.handlebars->27->1435" ] }, { @@ -20492,8 +20517,8 @@ "zh-chs": "连结过期", "zh-cht": "鏈結過期", "xloc": [ - "default.handlebars->27->344", - "default.handlebars->27->358" + "default.handlebars->27->346", + "default.handlebars->27->360" ] }, { @@ -20513,7 +20538,7 @@ "zh-chs": "连结邀请", "zh-cht": "鏈結邀請", "xloc": [ - "default.handlebars->27->332" + "default.handlebars->27->334" ] }, { @@ -20554,7 +20579,7 @@ "zh-chs": "Linux / BSD", "zh-cht": "Linux / BSD", "xloc": [ - "default.handlebars->27->373" + "default.handlebars->27->375" ] }, { @@ -20574,7 +20599,7 @@ "zh-chs": "Linux / BSD(卸载)", "zh-cht": "Linux / BSD(解除安裝)", "xloc": [ - "default.handlebars->27->377" + "default.handlebars->27->379" ] }, { @@ -20594,7 +20619,7 @@ "zh-chs": "Linux / BSD / macOS二进制安装程序", "zh-cht": "Linux / BSD / macOS二進制安裝軟體", "xloc": [ - "default.handlebars->27->374" + "default.handlebars->27->376" ] }, { @@ -20677,7 +20702,7 @@ "zh-chs": "Linux ARM,Raspberry Pi(32位)", "zh-cht": "Linux ARM,Raspberry Pi(32位)", "xloc": [ - "default.handlebars->27->792" + "default.handlebars->27->794" ] }, { @@ -20781,7 +20806,7 @@ "zh-chs": "只限Linux", "zh-cht": "只限Linux", "xloc": [ - "default.handlebars->27->343" + "default.handlebars->27->345" ] }, { @@ -20801,7 +20826,7 @@ "zh-chs": "Linux x86(32位)", "zh-cht": "Linux x86(32位)", "xloc": [ - "default.handlebars->27->789" + "default.handlebars->27->791" ] }, { @@ -20821,7 +20846,7 @@ "zh-chs": "Linux x86(64位)", "zh-cht": "Linux x86(64位)", "xloc": [ - "default.handlebars->27->790" + "default.handlebars->27->792" ] }, { @@ -20841,7 +20866,7 @@ "zh-chs": "Linux / BSD / macOS命令外壳", "zh-cht": "Linux / BSD / macOS命令外殼", "xloc": [ - "default.handlebars->27->472" + "default.handlebars->27->474" ] }, { @@ -20899,7 +20924,7 @@ "zh-chs": "立陶宛文", "zh-cht": "立陶宛文", "xloc": [ - "default.handlebars->27->1141" + "default.handlebars->27->1143" ] }, { @@ -20920,11 +20945,11 @@ "zh-cht": "載入中...", "xloc": [ "default-mobile.handlebars->9->72", - "default.handlebars->27->1019", - "default.handlebars->27->1296", - "default.handlebars->27->1300", - "default.handlebars->27->1997", - "default.handlebars->27->781" + "default.handlebars->27->1021", + "default.handlebars->27->1298", + "default.handlebars->27->1302", + "default.handlebars->27->2000", + "default.handlebars->27->783" ] }, { @@ -21006,7 +21031,7 @@ "zh-chs": "本地用户接受的远程终端请求", "zh-cht": "本地用戶接受的遠程終端請求", "xloc": [ - "default.handlebars->27->1594" + "default.handlebars->27->1596" ] }, { @@ -21026,7 +21051,7 @@ "zh-chs": "本地用户拒绝了远程终端请求", "zh-cht": "本地用戶拒絕了遠程終端請求", "xloc": [ - "default.handlebars->27->1595" + "default.handlebars->27->1597" ] }, { @@ -21046,7 +21071,7 @@ "zh-chs": "本地化设置", "zh-cht": "本地化設置", "xloc": [ - "default.handlebars->27->1236", + "default.handlebars->27->1238", "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->7" ] }, @@ -21067,7 +21092,7 @@ "zh-chs": "位置", "zh-cht": "位置", "xloc": [ - "default.handlebars->27->639" + "default.handlebars->27->641" ] }, { @@ -21107,7 +21132,7 @@ "zh-chs": "锁定账户", "zh-cht": "鎖定賬戶", "xloc": [ - "default.handlebars->27->1788" + "default.handlebars->27->1791" ] }, { @@ -21127,8 +21152,8 @@ "zh-chs": "锁定帐户设置", "zh-cht": "鎖定帳戶設置", "xloc": [ - "default.handlebars->27->1445", - "default.handlebars->27->1791" + "default.handlebars->27->1447", + "default.handlebars->27->1794" ] }, { @@ -21148,7 +21173,7 @@ "zh-chs": "锁定账户", "zh-cht": "鎖定賬戶", "xloc": [ - "default.handlebars->27->1721" + "default.handlebars->27->1724" ] }, { @@ -21168,7 +21193,7 @@ "zh-chs": "已锁定", "zh-cht": "已鎖定", "xloc": [ - "default.handlebars->27->1702" + "default.handlebars->27->1705" ] }, { @@ -21188,7 +21213,7 @@ "zh-chs": "被锁定账户", "zh-cht": "被鎖定賬戶", "xloc": [ - "default.handlebars->27->1875" + "default.handlebars->27->1878" ] }, { @@ -21208,7 +21233,7 @@ "zh-chs": "将远程用户锁定在桌面之外", "zh-cht": "將遠程用戶鎖定在桌面之外", "xloc": [ - "default.handlebars->27->1620" + "default.handlebars->27->1622" ] }, { @@ -21228,7 +21253,7 @@ "zh-chs": "记录事件", "zh-cht": "記錄事件", "xloc": [ - "default.handlebars->27->626" + "default.handlebars->27->628" ] }, { @@ -21448,7 +21473,7 @@ "zh-chs": "卢森堡文", "zh-cht": "盧森堡文", "xloc": [ - "default.handlebars->27->1142" + "default.handlebars->27->1144" ] }, { @@ -21468,12 +21493,12 @@ "zh-chs": "MAC层", "zh-cht": "MAC層", "xloc": [ - "default-mobile.handlebars->9->341", - "default-mobile.handlebars->9->343", - "default.handlebars->27->932", + "default-mobile.handlebars->9->342", + "default-mobile.handlebars->9->344", "default.handlebars->27->934", - "default.handlebars->27->942", - "default.handlebars->27->944" + "default.handlebars->27->936", + "default.handlebars->27->944", + "default.handlebars->27->946" ] }, { @@ -21514,9 +21539,9 @@ "zh-chs": "MAC:{0}", "zh-cht": "MAC:{0}", "xloc": [ - "default-mobile.handlebars->9->344", - "default.handlebars->27->935", - "default.handlebars->27->945" + "default-mobile.handlebars->9->345", + "default.handlebars->27->937", + "default.handlebars->27->947" ] }, { @@ -21536,9 +21561,9 @@ "zh-chs": "MAC:{0},网关:{1}", "zh-cht": "MAC:{0},網關:{1}", "xloc": [ - "default-mobile.handlebars->9->342", - "default.handlebars->27->933", - "default.handlebars->27->943" + "default-mobile.handlebars->9->343", + "default.handlebars->27->935", + "default.handlebars->27->945" ] }, { @@ -21600,8 +21625,8 @@ "zh-chs": "MPS服务器", "zh-cht": "MPS伺服器", "xloc": [ - "default.handlebars->27->323", - "default.handlebars->27->329" + "default.handlebars->27->325", + "default.handlebars->27->331" ] }, { @@ -21621,13 +21646,13 @@ "zh-chs": "MQTT", "zh-cht": "MQTT", "xloc": [ - "default-mobile.handlebars->9->203", - "default-mobile.handlebars->9->243", - "default.handlebars->27->218", - "default.handlebars->27->447", - "default.handlebars->27->619", - "default.handlebars->27->997", - "default.handlebars->27->998", + "default-mobile.handlebars->9->204", + "default-mobile.handlebars->9->244", + "default.handlebars->27->1000", + "default.handlebars->27->219", + "default.handlebars->27->449", + "default.handlebars->27->621", + "default.handlebars->27->999", "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->3" ] }, @@ -21648,7 +21673,7 @@ "zh-chs": "MQTT凭证", "zh-cht": "MQTT憑證", "xloc": [ - "default.handlebars->27->195" + "default.handlebars->27->196" ] }, { @@ -21668,7 +21693,7 @@ "zh-chs": "MQTT登录", "zh-cht": "MQTT登入", "xloc": [ - "default.handlebars->27->655" + "default.handlebars->27->657" ] }, { @@ -21688,8 +21713,8 @@ "zh-chs": "MQTT通道已连接", "zh-cht": "MQTT通道已連接", "xloc": [ - "default-mobile.handlebars->9->253", - "default.handlebars->27->663" + "default-mobile.handlebars->9->254", + "default.handlebars->27->665" ] }, { @@ -21709,8 +21734,8 @@ "zh-chs": "MQTT已连接", "zh-cht": "MQTT已連接", "xloc": [ - "default.handlebars->27->163", - "default.handlebars->27->662" + "default.handlebars->27->164", + "default.handlebars->27->664" ] }, { @@ -21730,9 +21755,9 @@ "zh-chs": "与设备的MQTT连接已激活。", "zh-cht": "與裝置的MQTT連接已啟動。", "xloc": [ - "default.handlebars->27->217", - "default.handlebars->27->446", - "default.handlebars->27->618" + "default.handlebars->27->218", + "default.handlebars->27->448", + "default.handlebars->27->620" ] }, { @@ -21752,7 +21777,7 @@ "zh-chs": "MQTT已断开连接", "zh-cht": "MQTT已斷開連接", "xloc": [ - "default.handlebars->27->167" + "default.handlebars->27->168" ] }, { @@ -21832,7 +21857,7 @@ "zh-chs": "主服务器信息", "zh-cht": "主伺服器訊息", "xloc": [ - "default.handlebars->27->2083" + "default.handlebars->27->2086" ] }, { @@ -21852,7 +21877,7 @@ "zh-chs": "马来文", "zh-cht": "馬來文", "xloc": [ - "default.handlebars->27->1144" + "default.handlebars->27->1146" ] }, { @@ -21872,7 +21897,7 @@ "zh-chs": "玛拉雅拉姆文", "zh-cht": "馬拉雅拉姆文", "xloc": [ - "default.handlebars->27->1145" + "default.handlebars->27->1147" ] }, { @@ -21892,7 +21917,7 @@ "zh-chs": "马耳他文", "zh-cht": "馬耳他文", "xloc": [ - "default.handlebars->27->1146" + "default.handlebars->27->1148" ] }, { @@ -21933,10 +21958,10 @@ "zh-chs": "管理设备组计算机", "zh-cht": "管理裝置群電腦", "xloc": [ - "default-mobile.handlebars->9->413", - "default-mobile.handlebars->9->431", - "default.handlebars->27->1430", - "default.handlebars->27->1465" + "default-mobile.handlebars->9->414", + "default-mobile.handlebars->9->432", + "default.handlebars->27->1432", + "default.handlebars->27->1467" ] }, { @@ -21956,10 +21981,10 @@ "zh-chs": "管理设备组用户", "zh-cht": "管理裝置群用戶", "xloc": [ - "default-mobile.handlebars->9->412", - "default-mobile.handlebars->9->430", - "default.handlebars->27->1429", - "default.handlebars->27->1464" + "default-mobile.handlebars->9->413", + "default-mobile.handlebars->9->431", + "default.handlebars->27->1431", + "default.handlebars->27->1466" ] }, { @@ -21979,7 +22004,7 @@ "zh-chs": "管理设备", "zh-cht": "管理裝置", "xloc": [ - "default.handlebars->27->692" + "default.handlebars->27->694" ] }, { @@ -21999,7 +22024,7 @@ "zh-chs": "管理录音", "zh-cht": "管理錄音", "xloc": [ - "default.handlebars->27->1786" + "default.handlebars->27->1789" ] }, { @@ -22039,7 +22064,7 @@ "zh-chs": "管理用户组", "zh-cht": "管理用戶群", "xloc": [ - "default.handlebars->27->1785" + "default.handlebars->27->1788" ] }, { @@ -22059,8 +22084,8 @@ "zh-chs": "管理用户", "zh-cht": "管理用戶", "xloc": [ - "default.handlebars->27->1784", - "default.handlebars->27->691" + "default.handlebars->27->1787", + "default.handlebars->27->693" ] }, { @@ -22186,7 +22211,7 @@ "zh-chs": "使用软件代理进行管理", "zh-cht": "使用軟體代理進行管理", "xloc": [ - "default.handlebars->27->1269" + "default.handlebars->27->1271" ] }, { @@ -22206,8 +22231,8 @@ "zh-chs": "使用软件代理进行管理", "zh-cht": "使用軟體代理進行管理", "xloc": [ - "default-mobile.handlebars->9->393", - "default.handlebars->27->1306" + "default-mobile.handlebars->9->394", + "default.handlebars->27->1308" ] }, { @@ -22227,7 +22252,7 @@ "zh-chs": "经理", "zh-cht": "經理", "xloc": [ - "default.handlebars->27->1707" + "default.handlebars->27->1710" ] }, { @@ -22247,7 +22272,7 @@ "zh-chs": "手工证书", "zh-cht": "手動憑證", "xloc": [ - "default.handlebars->27->310" + "default.handlebars->27->312" ] }, { @@ -22267,7 +22292,7 @@ "zh-chs": "手工用户名/密码", "zh-cht": "手動用戶名/密碼", "xloc": [ - "default.handlebars->27->309" + "default.handlebars->27->311" ] }, { @@ -22287,7 +22312,7 @@ "zh-chs": "毛利文", "zh-cht": "毛利文", "xloc": [ - "default.handlebars->27->1147" + "default.handlebars->27->1149" ] }, { @@ -22328,7 +22353,7 @@ "zh-chs": "马拉地文", "zh-cht": "馬拉地文", "xloc": [ - "default.handlebars->27->1148" + "default.handlebars->27->1150" ] }, { @@ -22348,7 +22373,7 @@ "zh-chs": "达到连接数量上限", "zh-cht": "達到連接數量上限", "xloc": [ - "default.handlebars->27->2044" + "default.handlebars->27->2047" ] }, { @@ -22413,7 +22438,7 @@ "zh-chs": "Megabyte", "zh-cht": "Megabyte", "xloc": [ - "default.handlebars->27->2073" + "default.handlebars->27->2076" ] }, { @@ -22433,9 +22458,9 @@ "zh-chs": "记忆体", "zh-cht": "記憶體", "xloc": [ - "default-mobile.handlebars->9->384", - "default.handlebars->27->2064", - "default.handlebars->27->985", + "default-mobile.handlebars->9->385", + "default.handlebars->27->2067", + "default.handlebars->27->987", "default.handlebars->container->column_l->p40->3->1->p40type->3" ] }, @@ -22456,19 +22481,19 @@ "zh-chs": "网格代理", "zh-cht": "Mesh Agent", "xloc": [ - "default-mobile.handlebars->9->250", - "default-mobile.handlebars->9->332", - "default-mobile.handlebars->9->339", - "default.handlebars->27->384", - "default.handlebars->27->388", - "default.handlebars->27->397", - "default.handlebars->27->401", - "default.handlebars->27->404", - "default.handlebars->27->409", - "default.handlebars->27->567", - "default.handlebars->27->611", - "default.handlebars->27->923", - "default.handlebars->27->930" + "default-mobile.handlebars->9->251", + "default-mobile.handlebars->9->333", + "default-mobile.handlebars->9->340", + "default.handlebars->27->386", + "default.handlebars->27->390", + "default.handlebars->27->399", + "default.handlebars->27->403", + "default.handlebars->27->406", + "default.handlebars->27->411", + "default.handlebars->27->569", + "default.handlebars->27->613", + "default.handlebars->27->925", + "default.handlebars->27->932" ] }, { @@ -22488,8 +22513,8 @@ "zh-chs": "网格代理控制台", "zh-cht": "網格代理控制台", "xloc": [ - "default-mobile.handlebars->9->420", - "default.handlebars->27->1438" + "default-mobile.handlebars->9->421", + "default.handlebars->27->1440" ] }, { @@ -22509,7 +22534,7 @@ "zh-chs": "网格中继", "zh-cht": "Mesh Relay", "xloc": [ - "default.handlebars->27->617" + "default.handlebars->27->619" ] }, { @@ -22529,9 +22554,9 @@ "zh-chs": "已连接网状代理并准备使用。", "zh-cht": "已連接Mesh Agent並準備使用。", "xloc": [ - "default.handlebars->27->209", - "default.handlebars->27->438", - "default.handlebars->27->610" + "default.handlebars->27->210", + "default.handlebars->27->440", + "default.handlebars->27->612" ] }, { @@ -22551,9 +22576,9 @@ "zh-chs": "网格代理可以经过其他代理作为中继访问得到。", "zh-cht": "Mesh Agent可以經過其他代理作為中繼訪問得到。", "xloc": [ - "default.handlebars->27->215", - "default.handlebars->27->444", - "default.handlebars->27->616" + "default.handlebars->27->216", + "default.handlebars->27->446", + "default.handlebars->27->618" ] }, { @@ -22573,8 +22598,8 @@ "zh-chs": "MeshAction(.txt)", "zh-cht": "MeshAction(.txt)", "xloc": [ - "default.handlebars->27->798", - "default.handlebars->27->800" + "default.handlebars->27->800", + "default.handlebars->27->802" ] }, { @@ -22594,7 +22619,7 @@ "zh-chs": "MeshAgent流量", "zh-cht": "MeshAgent流量", "xloc": [ - "default.handlebars->27->2085" + "default.handlebars->27->2088" ] }, { @@ -22614,7 +22639,7 @@ "zh-chs": "MeshAgent更新", "zh-cht": "MeshAgent更新", "xloc": [ - "default.handlebars->27->2086" + "default.handlebars->27->2089" ] }, { @@ -22654,7 +22679,7 @@ "zh-chs": "MeshCentral错误", "zh-cht": "MeshCentral錯誤", "xloc": [ - "default.handlebars->27->1299" + "default.handlebars->27->1301" ] }, { @@ -22674,7 +22699,7 @@ "zh-chs": "MeshCentral路由器", "zh-cht": "MeshCentral Router", "xloc": [ - "default.handlebars->27->786" + "default.handlebars->27->788" ] }, { @@ -22694,7 +22719,7 @@ "zh-chs": "MeshCentral 路由器是Windows工具,用于TCP端口映射。例如,您可以通过该服务器将RDP放入远程设备。", "zh-cht": "MeshCentral Router是Windows工具,用於TCP介面映射。例如,你可以通過該伺服器將RDP放入遠程裝置。", "xloc": [ - "default.handlebars->27->782" + "default.handlebars->27->784" ] }, { @@ -22735,7 +22760,7 @@ "zh-chs": "MeshCentral服务器同级化", "zh-cht": "MeshCentral伺服器同級化", "xloc": [ - "default.handlebars->27->2084" + "default.handlebars->27->2087" ] }, { @@ -22777,7 +22802,7 @@ "xloc": [ "default.handlebars->27->115", "default.handlebars->27->117", - "default.handlebars->27->1295" + "default.handlebars->27->1297" ] }, { @@ -22797,9 +22822,9 @@ "zh-chs": "MeshCmd", "zh-cht": "MeshCmd", "xloc": [ - "default.handlebars->27->235", - "default.handlebars->27->641", - "default.handlebars->27->796" + "default.handlebars->27->236", + "default.handlebars->27->643", + "default.handlebars->27->798" ] }, { @@ -22819,7 +22844,7 @@ "zh-chs": "MeshCmd(Linux ARM,32位)", "zh-cht": "MeshCmd(Linux ARM,32位)", "xloc": [ - "default.handlebars->27->807" + "default.handlebars->27->809" ] }, { @@ -22839,7 +22864,7 @@ "zh-chs": "MeshCmd(Linux x86,32bit)", "zh-cht": "MeshCmd(Linux x86,32bit)", "xloc": [ - "default.handlebars->27->804" + "default.handlebars->27->806" ] }, { @@ -22859,7 +22884,7 @@ "zh-chs": "MeshCmd(Linux x86,64位)", "zh-cht": "MeshCmd(Linux x86,64位)", "xloc": [ - "default.handlebars->27->805" + "default.handlebars->27->807" ] }, { @@ -22879,7 +22904,7 @@ "zh-chs": "MeshCmd(Win32可执行档案)", "zh-cht": "MeshCmd(Win32可執行檔案)", "xloc": [ - "default.handlebars->27->802" + "default.handlebars->27->804" ] }, { @@ -22899,7 +22924,7 @@ "zh-chs": "MeshCmd(Win64可执行档案)", "zh-cht": "MeshCmd(Win64可執行檔案)", "xloc": [ - "default.handlebars->27->803" + "default.handlebars->27->805" ] }, { @@ -22919,7 +22944,7 @@ "zh-chs": "MeshCmd(macOS,64位)", "zh-cht": "MeshCmd(macOS,64位)", "xloc": [ - "default.handlebars->27->806" + "default.handlebars->27->808" ] }, { @@ -22939,7 +22964,7 @@ "zh-chs": "MeshCmd是一个可以执行许多不同操作的命令行工具。可以选择下载和编辑操作档案以提供服务器信息和凭据。", "zh-cht": "MeshCmd是一個可以執行許多不同操作的命令行工具。可以選擇下載和編輯操作檔案以提供伺服器訊息和憑據。", "xloc": [ - "default.handlebars->27->793" + "default.handlebars->27->795" ] }, { @@ -22959,7 +22984,7 @@ "zh-chs": "MeshCommander脚本", "zh-cht": "MeshCommander腳本", "xloc": [ - "default.handlebars->27->308" + "default.handlebars->27->310" ] }, { @@ -23001,8 +23026,8 @@ "zh-chs": "MeshServerRootCert.cer", "zh-cht": "MeshServerRootCert.cer", "xloc": [ - "default.handlebars->27->319", - "default.handlebars->27->326" + "default.handlebars->27->321", + "default.handlebars->27->328" ] }, { @@ -23022,9 +23047,9 @@ "zh-chs": "消息", "zh-cht": "訊息", "xloc": [ - "default.handlebars->27->355", - "default.handlebars->27->628", - "default.handlebars->27->762" + "default.handlebars->27->357", + "default.handlebars->27->630", + "default.handlebars->27->764" ] }, { @@ -23044,7 +23069,7 @@ "zh-chs": "留言框", "zh-cht": "留言框", "xloc": [ - "default.handlebars->27->487" + "default.handlebars->27->489" ] }, { @@ -23064,7 +23089,7 @@ "zh-chs": "消息调度器", "zh-cht": "電郵調度器", "xloc": [ - "default.handlebars->27->2082" + "default.handlebars->27->2085" ] }, { @@ -23186,8 +23211,8 @@ "zh-chs": "模型", "zh-cht": "模型", "xloc": [ - "default-mobile.handlebars->9->385", - "default.handlebars->27->986" + "default-mobile.handlebars->9->386", + "default.handlebars->27->988" ] }, { @@ -23207,7 +23232,7 @@ "zh-chs": "修改节点位置", "zh-cht": "修改節點位置", "xloc": [ - "default.handlebars->27->526" + "default.handlebars->27->528" ] }, { @@ -23227,7 +23252,7 @@ "zh-chs": "摩尔达维亚文", "zh-cht": "摩爾達維亞文", "xloc": [ - "default.handlebars->27->1149" + "default.handlebars->27->1151" ] }, { @@ -23247,7 +23272,7 @@ "zh-chs": "更多", "zh-cht": "更多", "xloc": [ - "default.handlebars->27->2110" + "default.handlebars->27->2113" ] }, { @@ -23267,8 +23292,8 @@ "zh-chs": "母板", "zh-cht": "母板", "xloc": [ - "default-mobile.handlebars->9->380", - "default.handlebars->27->981" + "default-mobile.handlebars->9->381", + "default.handlebars->27->983" ] }, { @@ -23288,7 +23313,7 @@ "zh-chs": "将此设备移到其他设备组", "zh-cht": "將此裝置移至其他裝置群", "xloc": [ - "default.handlebars->27->632" + "default.handlebars->27->634" ] }, { @@ -23308,7 +23333,7 @@ "zh-chs": "移至设备组", "zh-cht": "移至裝置群", "xloc": [ - "default.handlebars->27->452" + "default.handlebars->27->454" ] }, { @@ -23328,7 +23353,7 @@ "zh-chs": "移动:“{0}”到“{1}”", "zh-cht": "移動:“{0}”到“{1}”", "xloc": [ - "default.handlebars->27->1619" + "default.handlebars->27->1621" ] }, { @@ -23348,7 +23373,7 @@ "zh-chs": "将设备{0}移动到组{1}", "zh-cht": "將設備{0}移動到組{1}", "xloc": [ - "default.handlebars->27->1652" + "default.handlebars->27->1654" ] }, { @@ -23388,13 +23413,13 @@ "zh-chs": "多路复用器", "zh-cht": "多工器", "xloc": [ - "default.handlebars->27->2022" + "default.handlebars->27->2025" ] }, { "en": "Must run as user", "xloc": [ - "default.handlebars->27->475" + "default.handlebars->27->477" ] }, { @@ -23527,7 +23552,7 @@ "zh-chs": "我的服务器控制台", "zh-cht": "我的伺服器控制台", "xloc": [ - "default.handlebars->27->992" + "default.handlebars->27->994" ] }, { @@ -23689,8 +23714,8 @@ "zh-chs": "我的密钥", "zh-cht": "我的密鍵", "xloc": [ - "default.handlebars->27->1024", - "default.handlebars->27->1027" + "default.handlebars->27->1026", + "default.handlebars->27->1029" ] }, { @@ -23710,7 +23735,7 @@ "zh-chs": "导航到下面的URL,授予访问权限并将令牌代码复制回去。", "zh-cht": "導航到下面的URL,授予訪問權限並將令牌代碼複製回去。", "xloc": [ - "default.handlebars->27->198" + "default.handlebars->27->199" ] }, { @@ -23730,28 +23755,28 @@ "zh-chs": "名称", "zh-cht": "名稱", "xloc": [ - "default-mobile.handlebars->9->215", - "default-mobile.handlebars->9->328", - "default-mobile.handlebars->9->374", - "default-mobile.handlebars->9->394", - "default-mobile.handlebars->9->407", + "default-mobile.handlebars->9->216", + "default-mobile.handlebars->9->329", + "default-mobile.handlebars->9->375", + "default-mobile.handlebars->9->395", + "default-mobile.handlebars->9->408", "default-mobile.handlebars->9->97", "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea3->deskarea3x->DeskTools->5->1->1", - "default.handlebars->27->1267", - "default.handlebars->27->1307", - "default.handlebars->27->1394", - "default.handlebars->27->1689", - "default.handlebars->27->1794", - "default.handlebars->27->1810", - "default.handlebars->27->1817", - "default.handlebars->27->1862", - "default.handlebars->27->1881", - "default.handlebars->27->555", + "default.handlebars->27->1269", + "default.handlebars->27->1309", + "default.handlebars->27->1396", + "default.handlebars->27->1692", + "default.handlebars->27->1797", + "default.handlebars->27->1813", + "default.handlebars->27->1820", + "default.handlebars->27->1865", + "default.handlebars->27->1884", + "default.handlebars->27->557", "default.handlebars->27->76", - "default.handlebars->27->840", + "default.handlebars->27->842", "default.handlebars->27->90", - "default.handlebars->27->919", - "default.handlebars->27->975", + "default.handlebars->27->921", + "default.handlebars->27->977", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader->3", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsServiceTab->deskToolsServiceHeader->3", "default.handlebars->container->column_l->p42->p42tbl->1->0->2" @@ -23774,7 +23799,7 @@ "zh-chs": "名称(可选)", "zh-cht": "名稱(可選)", "xloc": [ - "default.handlebars->27->335" + "default.handlebars->27->337" ] }, { @@ -23794,7 +23819,7 @@ "zh-chs": "名称1,名称2,名称3", "zh-cht": "名稱1,名稱2,名稱3", "xloc": [ - "default.handlebars->27->1776" + "default.handlebars->27->1779" ] }, { @@ -23814,7 +23839,7 @@ "zh-chs": "纳瓦霍文", "zh-cht": "納瓦霍文", "xloc": [ - "default.handlebars->27->1150" + "default.handlebars->27->1152" ] }, { @@ -23834,7 +23859,7 @@ "zh-chs": "恩东加", "zh-cht": "恩東加", "xloc": [ - "default.handlebars->27->1151" + "default.handlebars->27->1153" ] }, { @@ -23854,7 +23879,7 @@ "zh-chs": "尼泊尔文", "zh-cht": "尼泊爾文", "xloc": [ - "default.handlebars->27->1152" + "default.handlebars->27->1154" ] }, { @@ -23874,7 +23899,7 @@ "zh-chs": "网络接口", "zh-cht": "網絡介面", "xloc": [ - "default.handlebars->27->780" + "default.handlebars->27->782" ] }, { @@ -23911,9 +23936,9 @@ "zh-chs": "网络", "zh-cht": "網路", "xloc": [ - "default-mobile.handlebars->9->353", - "default.handlebars->27->940", - "default.handlebars->27->954" + "default-mobile.handlebars->9->354", + "default.handlebars->27->942", + "default.handlebars->27->956" ] }, { @@ -23954,7 +23979,7 @@ "zh-chs": "生成新的2FA备份代码", "zh-cht": "生成新的2FA備份代碼", "xloc": [ - "default.handlebars->27->1659" + "default.handlebars->27->1661" ] }, { @@ -23995,9 +24020,9 @@ "zh-cht": "新裝置群", "xloc": [ "default-mobile.handlebars->9->91", - "default.handlebars->27->1260", - "default.handlebars->27->1272", - "default.handlebars->27->772" + "default.handlebars->27->1262", + "default.handlebars->27->1274", + "default.handlebars->27->774" ] }, { @@ -24018,9 +24043,9 @@ "zh-cht": "新建檔案夾", "xloc": [ "default-mobile.handlebars->9->120", - "default-mobile.handlebars->9->299", - "default.handlebars->27->1551", - "default.handlebars->27->882", + "default-mobile.handlebars->9->300", + "default.handlebars->27->1553", + "default.handlebars->27->884", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3" ] @@ -24084,8 +24109,8 @@ "xloc": [ "default-mobile.handlebars->9->86", "default-mobile.handlebars->9->87", - "default.handlebars->27->1255", - "default.handlebars->27->1256" + "default.handlebars->27->1257", + "default.handlebars->27->1258" ] }, { @@ -24105,8 +24130,8 @@ "zh-chs": "没有AMT", "zh-cht": "沒有AMT", "xloc": [ - "default.handlebars->27->677", - "default.handlebars->27->696" + "default.handlebars->27->679", + "default.handlebars->27->698" ] }, { @@ -24164,10 +24189,10 @@ "zh-chs": "没有凭证", "zh-cht": "沒有憑證", "xloc": [ - "default-mobile.handlebars->9->233", "default-mobile.handlebars->9->234", - "default.handlebars->27->581", - "default.handlebars->27->582" + "default-mobile.handlebars->9->235", + "default.handlebars->27->583", + "default.handlebars->27->584" ] }, { @@ -24187,9 +24212,9 @@ "zh-chs": "没有桌面", "zh-cht": "沒有桌面", "xloc": [ - "default.handlebars->27->1472", - "default.handlebars->27->679", - "default.handlebars->27->698" + "default.handlebars->27->1474", + "default.handlebars->27->681", + "default.handlebars->27->700" ] }, { @@ -24209,7 +24234,7 @@ "zh-chs": "不能访问桌面", "zh-cht": "不能訪問桌面", "xloc": [ - "default.handlebars->27->1434" + "default.handlebars->27->1436" ] }, { @@ -24229,9 +24254,9 @@ "zh-chs": "找不到事件", "zh-cht": "找不到事件", "xloc": [ - "default.handlebars->27->1665", - "default.handlebars->27->1996", - "default.handlebars->27->917" + "default.handlebars->27->1668", + "default.handlebars->27->1999", + "default.handlebars->27->919" ] }, { @@ -24251,8 +24276,8 @@ "zh-chs": "不能存取档案", "zh-cht": "不能存取檔案", "xloc": [ - "default-mobile.handlebars->9->418", - "default.handlebars->27->1436" + "default-mobile.handlebars->9->419", + "default.handlebars->27->1438" ] }, { @@ -24272,10 +24297,10 @@ "zh-chs": "没有档案", "zh-cht": "沒有檔案", "xloc": [ - "default-mobile.handlebars->9->439", - "default.handlebars->27->1474", - "default.handlebars->27->676", - "default.handlebars->27->695" + "default-mobile.handlebars->9->440", + "default.handlebars->27->1476", + "default.handlebars->27->678", + "default.handlebars->27->697" ] }, { @@ -24295,8 +24320,8 @@ "zh-chs": "无输入", "zh-cht": "無輸入", "xloc": [ - "default.handlebars->27->674", - "default.handlebars->27->693" + "default.handlebars->27->676", + "default.handlebars->27->695" ] }, { @@ -24316,10 +24341,10 @@ "zh-chs": "没有英特尔®AMT", "zh-cht": "沒有Intel® AMT", "xloc": [ - "default-mobile.handlebars->9->419", - "default-mobile.handlebars->9->440", - "default.handlebars->27->1437", - "default.handlebars->27->1475" + "default-mobile.handlebars->9->420", + "default-mobile.handlebars->9->441", + "default.handlebars->27->1439", + "default.handlebars->27->1477" ] }, { @@ -24359,7 +24384,7 @@ "zh-chs": "此网格中没有英特尔®AMT设备", "zh-cht": "此網格中沒有Intel® AMT裝置", "xloc": [ - "default.handlebars->27->224" + "default.handlebars->27->225" ] }, { @@ -24399,7 +24424,7 @@ "zh-chs": "没有成员", "zh-cht": "沒有成員", "xloc": [ - "default.handlebars->27->1844" + "default.handlebars->27->1847" ] }, { @@ -24419,7 +24444,7 @@ "zh-chs": "没有新的设备组", "zh-cht": "沒有新的裝置群", "xloc": [ - "default.handlebars->27->1789" + "default.handlebars->27->1792" ] }, { @@ -24439,9 +24464,9 @@ "zh-chs": "没有政策", "zh-cht": "沒有政策", "xloc": [ - "default.handlebars->27->1338", - "default.handlebars->27->1366", - "default.handlebars->27->1369" + "default.handlebars->27->1340", + "default.handlebars->27->1368", + "default.handlebars->27->1371" ] }, { @@ -24462,12 +24487,12 @@ "zh-cht": "沒有權利", "xloc": [ "default-mobile.handlebars->9->106", - "default-mobile.handlebars->9->402", - "default-mobile.handlebars->9->445", - "default.handlebars->27->1281", - "default.handlebars->27->1480", - "default.handlebars->27->688", - "default.handlebars->27->707" + "default-mobile.handlebars->9->403", + "default-mobile.handlebars->9->446", + "default.handlebars->27->1283", + "default.handlebars->27->1482", + "default.handlebars->27->690", + "default.handlebars->27->709" ] }, { @@ -24487,9 +24512,9 @@ "zh-chs": "没有TLS加密", "zh-cht": "沒有TLS加密", "xloc": [ - "default-mobile.handlebars->9->271", - "default.handlebars->27->293", - "default.handlebars->27->758" + "default-mobile.handlebars->9->272", + "default.handlebars->27->295", + "default.handlebars->27->760" ] }, { @@ -24509,10 +24534,10 @@ "zh-chs": "没有终端", "zh-cht": "沒有終端", "xloc": [ - "default-mobile.handlebars->9->438", - "default.handlebars->27->1473", - "default.handlebars->27->675", - "default.handlebars->27->694" + "default-mobile.handlebars->9->439", + "default.handlebars->27->1475", + "default.handlebars->27->677", + "default.handlebars->27->696" ] }, { @@ -24532,8 +24557,8 @@ "zh-chs": "不能访问终端", "zh-cht": "不能訪問終端", "xloc": [ - "default-mobile.handlebars->9->417", - "default.handlebars->27->1435" + "default-mobile.handlebars->9->418", + "default.handlebars->27->1437" ] }, { @@ -24553,7 +24578,7 @@ "zh-chs": "没有工具(MeshCmd /路由器)", "zh-cht": "沒有工具(MeshCmd /路由器)", "xloc": [ - "default.handlebars->27->1790" + "default.handlebars->27->1793" ] }, { @@ -24573,8 +24598,8 @@ "zh-chs": "没有共同的设备组", "zh-cht": "沒有共同的裝置群", "xloc": [ - "default.handlebars->27->1850", - "default.handlebars->27->1968" + "default.handlebars->27->1853", + "default.handlebars->27->1971" ] }, { @@ -24636,7 +24661,7 @@ "zh-chs": "没有一个设备被加入任何一组,请单击一个设备的“组”以添加到一个组中。", "zh-cht": "沒有一個裝置被加入任何一群,請單擊一個裝置的“群”以新增到一個群中。", "xloc": [ - "default.handlebars->27->222" + "default.handlebars->27->223" ] }, { @@ -24673,7 +24698,7 @@ "zh-chs": "找不到设备。", "zh-cht": "找不到裝置。", "xloc": [ - "default.handlebars->27->543" + "default.handlebars->27->545" ] }, { @@ -24693,8 +24718,8 @@ "zh-chs": "没有共同的设备", "zh-cht": "沒有共同的裝置", "xloc": [ - "default.handlebars->27->1856", - "default.handlebars->27->1980" + "default.handlebars->27->1859", + "default.handlebars->27->1983" ] }, { @@ -24714,7 +24739,7 @@ "zh-chs": "该设备组中没有设备。", "zh-cht": "該裝置群中沒有裝置。", "xloc": [ - "default.handlebars->27->1523" + "default.handlebars->27->1525" ] }, { @@ -24735,7 +24760,7 @@ "zh-cht": "該群中沒有裝置", "xloc": [ "default-mobile.handlebars->9->151", - "default.handlebars->27->226" + "default.handlebars->27->227" ] }, { @@ -24756,7 +24781,7 @@ "zh-cht": "沒有與此搜索匹配的裝置。", "xloc": [ "default-mobile.handlebars->9->149", - "default.handlebars->27->223" + "default.handlebars->27->224" ] }, { @@ -24776,7 +24801,7 @@ "zh-chs": "找不到带有标签的设备。", "zh-cht": "找不到帶有標籤的裝置。", "xloc": [ - "default.handlebars->27->231" + "default.handlebars->27->232" ] }, { @@ -24796,7 +24821,7 @@ "zh-chs": "找不到群组。", "zh-cht": "找不到群組。", "xloc": [ - "default.handlebars->27->1793" + "default.handlebars->27->1796" ] }, { @@ -24816,8 +24841,8 @@ "zh-chs": "没有此设备的讯息。", "zh-cht": "沒有此裝置的訊息。", "xloc": [ - "default-mobile.handlebars->9->390", - "default.handlebars->27->991" + "default-mobile.handlebars->9->391", + "default.handlebars->27->993" ] }, { @@ -24837,7 +24862,7 @@ "zh-chs": "找不到位置。", "zh-cht": "找不到位置。", "xloc": [ - "default.handlebars->27->545" + "default.handlebars->27->547" ] }, { @@ -24877,7 +24902,7 @@ "zh-chs": "没有其他相同类型的设备组。", "zh-cht": "沒有其他相同類型的裝置群。", "xloc": [ - "default.handlebars->27->775" + "default.handlebars->27->777" ] }, { @@ -24917,7 +24942,7 @@ "zh-chs": "没有录音。", "zh-cht": "沒有錄音。", "xloc": [ - "default.handlebars->27->1998" + "default.handlebars->27->2001" ] }, { @@ -24937,7 +24962,7 @@ "zh-chs": "没有服务器权限", "zh-cht": "沒有伺服器權限", "xloc": [ - "default.handlebars->27->1876" + "default.handlebars->27->1879" ] }, { @@ -24957,7 +24982,7 @@ "zh-chs": "没有用户组成员身份", "zh-cht": "沒有用戶群成員身份", "xloc": [ - "default.handlebars->27->1974" + "default.handlebars->27->1977" ] }, { @@ -24977,7 +25002,7 @@ "zh-chs": "未找到相应的用户。", "zh-cht": "未找到相應的用戶。", "xloc": [ - "default.handlebars->27->1697" + "default.handlebars->27->1700" ] }, { @@ -24997,7 +25022,7 @@ "zh-chs": "没有拥有特殊设备权限的用户", "zh-cht": "沒有擁有特殊裝置權限的用戶", "xloc": [ - "default.handlebars->27->672" + "default.handlebars->27->674" ] }, { @@ -25061,38 +25086,38 @@ "default-mobile.handlebars->9->116", "default-mobile.handlebars->9->154", "default-mobile.handlebars->9->155", - "default-mobile.handlebars->9->213", - "default-mobile.handlebars->9->218", - "default-mobile.handlebars->9->220", - "default-mobile.handlebars->9->245", - "default-mobile.handlebars->9->297", - "default-mobile.handlebars->9->396", - "default.handlebars->27->1302", - "default.handlebars->27->1309", - "default.handlebars->27->1317", - "default.handlebars->27->1329", - "default.handlebars->27->1334", + "default-mobile.handlebars->9->214", + "default-mobile.handlebars->9->219", + "default-mobile.handlebars->9->221", + "default-mobile.handlebars->9->246", + "default-mobile.handlebars->9->298", + "default-mobile.handlebars->9->397", + "default.handlebars->27->1304", + "default.handlebars->27->1311", + "default.handlebars->27->1319", + "default.handlebars->27->1331", "default.handlebars->27->1336", - "default.handlebars->27->1514", - "default.handlebars->27->1533", - "default.handlebars->27->1538", - "default.handlebars->27->1673", - "default.handlebars->27->174", - "default.handlebars->27->1814", - "default.handlebars->27->1816", - "default.handlebars->27->1833", - "default.handlebars->27->189", - "default.handlebars->27->1895", - "default.handlebars->27->1904", - "default.handlebars->27->1908", - "default.handlebars->27->1920", - "default.handlebars->27->205", + "default.handlebars->27->1338", + "default.handlebars->27->1516", + "default.handlebars->27->1535", + "default.handlebars->27->1540", + "default.handlebars->27->1676", + "default.handlebars->27->175", + "default.handlebars->27->1817", + "default.handlebars->27->1819", + "default.handlebars->27->1836", + "default.handlebars->27->1898", + "default.handlebars->27->190", + "default.handlebars->27->1907", + "default.handlebars->27->1911", + "default.handlebars->27->1923", "default.handlebars->27->206", - "default.handlebars->27->552", - "default.handlebars->27->563", - "default.handlebars->27->564", - "default.handlebars->27->608", - "default.handlebars->27->621", + "default.handlebars->27->207", + "default.handlebars->27->554", + "default.handlebars->27->565", + "default.handlebars->27->566", + "default.handlebars->27->610", + "default.handlebars->27->623", "default.handlebars->27->63", "default.handlebars->container->column_l->p41->3->3->p41traceStatus" ] @@ -25134,7 +25159,7 @@ "zh-chs": "挪威文", "zh-cht": "挪威文", "xloc": [ - "default.handlebars->27->1153" + "default.handlebars->27->1155" ] }, { @@ -25154,7 +25179,7 @@ "zh-chs": "挪威文(Bokmal)", "zh-cht": "挪威文(Bokmal)", "xloc": [ - "default.handlebars->27->1154" + "default.handlebars->27->1156" ] }, { @@ -25174,7 +25199,7 @@ "zh-chs": "挪威文(尼诺斯克)", "zh-cht": "挪威文(尼諾斯克)", "xloc": [ - "default.handlebars->27->1155" + "default.handlebars->27->1157" ] }, { @@ -25194,10 +25219,10 @@ "zh-chs": "未激活(输入)", "zh-cht": "未啟動(輸入)", "xloc": [ - "default-mobile.handlebars->9->225", - "default-mobile.handlebars->9->357", - "default.handlebars->27->569", - "default.handlebars->27->958" + "default-mobile.handlebars->9->226", + "default-mobile.handlebars->9->358", + "default.handlebars->27->571", + "default.handlebars->27->960" ] }, { @@ -25217,10 +25242,10 @@ "zh-chs": "未激活(预)", "zh-cht": "未啟動(預)", "xloc": [ - "default-mobile.handlebars->9->224", - "default-mobile.handlebars->9->356", - "default.handlebars->27->568", - "default.handlebars->27->957" + "default-mobile.handlebars->9->225", + "default-mobile.handlebars->9->357", + "default.handlebars->27->570", + "default.handlebars->27->959" ] }, { @@ -25240,8 +25265,8 @@ "zh-chs": "未连接", "zh-cht": "未連接", "xloc": [ - "default.handlebars->27->1510", - "default.handlebars->27->1518" + "default.handlebars->27->1512", + "default.handlebars->27->1520" ] }, { @@ -25261,8 +25286,8 @@ "zh-chs": "未知", "zh-cht": "未知", "xloc": [ - "default-mobile.handlebars->9->367", - "default.handlebars->27->968" + "default-mobile.handlebars->9->368", + "default.handlebars->27->970" ] }, { @@ -25282,7 +25307,7 @@ "zh-chs": "不在服务器上", "zh-cht": "不在伺服器上", "xloc": [ - "default.handlebars->27->2014" + "default.handlebars->27->2017" ] }, { @@ -25302,8 +25327,8 @@ "zh-chs": "没有设置", "zh-cht": "沒有設置", "xloc": [ - "default.handlebars->27->1882", - "default.handlebars->27->1883" + "default.handlebars->27->1885", + "default.handlebars->27->1886" ] }, { @@ -25323,7 +25348,7 @@ "zh-chs": "未经审核的", "zh-cht": "未經審核的", "xloc": [ - "default.handlebars->27->1950" + "default.handlebars->27->1953" ] }, { @@ -25343,12 +25368,12 @@ "zh-chs": "笔记", "zh-cht": "筆記", "xloc": [ - "default.handlebars->27->1344", - "default.handlebars->27->1928", - "default.handlebars->27->624", - "default.handlebars->27->684", - "default.handlebars->27->703", - "default.handlebars->27->711" + "default.handlebars->27->1346", + "default.handlebars->27->1931", + "default.handlebars->27->626", + "default.handlebars->27->686", + "default.handlebars->27->705", + "default.handlebars->27->713" ] }, { @@ -25388,8 +25413,8 @@ "zh-chs": "通知设置", "zh-cht": "通知設定", "xloc": [ - "default.handlebars->27->1242", - "default.handlebars->27->1509", + "default.handlebars->27->1244", + "default.handlebars->27->1511", "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->10" ] }, @@ -25410,7 +25435,7 @@ "zh-chs": "通知设置还必须在帐户设置中启用。", "zh-cht": "通知設定還必須在帳戶設定中啟用。", "xloc": [ - "default.handlebars->27->1505" + "default.handlebars->27->1507" ] }, { @@ -25430,7 +25455,7 @@ "zh-chs": "通知音效。", "zh-cht": "通知音效。", "xloc": [ - "default.handlebars->27->1237" + "default.handlebars->27->1239" ] }, { @@ -25450,7 +25475,7 @@ "zh-chs": "通知", "zh-cht": "通知", "xloc": [ - "default.handlebars->27->1335" + "default.handlebars->27->1337" ] }, { @@ -25470,8 +25495,8 @@ "zh-chs": "通知", "zh-cht": "通知", "xloc": [ - "default.handlebars->27->186", - "default.handlebars->27->1934" + "default.handlebars->27->187", + "default.handlebars->27->1937" ] }, { @@ -25491,7 +25516,7 @@ "zh-chs": "仅通知", "zh-cht": "只通知", "xloc": [ - "default.handlebars->27->736" + "default.handlebars->27->738" ] }, { @@ -25511,9 +25536,9 @@ "zh-chs": "通知使用者", "zh-cht": "通知使用者", "xloc": [ - "default.handlebars->27->1402", - "default.handlebars->27->1406", - "default.handlebars->27->1409" + "default.handlebars->27->1404", + "default.handlebars->27->1408", + "default.handlebars->27->1411" ] }, { @@ -25533,7 +25558,7 @@ "zh-chs": "通知{0}", "zh-cht": "通知{0}", "xloc": [ - "default.handlebars->27->1736" + "default.handlebars->27->1739" ] }, { @@ -25555,8 +25580,8 @@ "xloc": [ "default-mobile.handlebars->9->83", "default-mobile.handlebars->dialog->idx_dlgButtonBar", - "default.handlebars->27->1293", - "default.handlebars->27->595", + "default.handlebars->27->1295", + "default.handlebars->27->597", "default.handlebars->container->dialog->idx_dlgButtonBar", "desktop.handlebars->p11->dialog->idx_dlgButtonBar", "login-mobile.handlebars->dialog->idx_dlgButtonBar", @@ -25584,7 +25609,7 @@ "zh-cht": "操作系統名稱", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p2->xdevicesBar->1->5", - "default.handlebars->27->560", + "default.handlebars->27->562", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar->9->1" ] }, @@ -25605,7 +25630,7 @@ "zh-chs": "欧舒丹", "zh-cht": "歐舒丹", "xloc": [ - "default.handlebars->27->1156" + "default.handlebars->27->1158" ] }, { @@ -25625,7 +25650,7 @@ "zh-chs": "发生在{0}", "zh-cht": "發生在{0}", "xloc": [ - "default.handlebars->27->2028" + "default.handlebars->27->2031" ] }, { @@ -25651,7 +25676,7 @@ "zh-chs": "离线用户", "zh-cht": "離線用戶", "xloc": [ - "default.handlebars->27->1694" + "default.handlebars->27->1697" ] }, { @@ -25672,7 +25697,7 @@ "zh-cht": "舊密碼:", "xloc": [ "default-mobile.handlebars->9->85", - "default.handlebars->27->1254" + "default.handlebars->27->1256" ] }, { @@ -25692,7 +25717,7 @@ "zh-chs": "一天", "zh-cht": "一天", "xloc": [ - "default.handlebars->27->1670" + "default.handlebars->27->1673" ] }, { @@ -25755,7 +25780,7 @@ "zh-chs": "在线用户", "zh-cht": "在線用戶", "xloc": [ - "default.handlebars->27->1693" + "default.handlebars->27->1696" ] }, { @@ -25775,9 +25800,9 @@ "zh-chs": "只能编辑小于200k的档案。", "zh-cht": "只能編輯小於200k的檔案。", "xloc": [ - "default-mobile.handlebars->9->307", - "default.handlebars->27->523", - "default.handlebars->27->890" + "default-mobile.handlebars->9->308", + "default.handlebars->27->525", + "default.handlebars->27->892" ] }, { @@ -25838,7 +25863,7 @@ "zh-chs": "在设备上打开页面", "zh-cht": "在裝置上打開頁面", "xloc": [ - "default.handlebars->27->712" + "default.handlebars->27->714" ] }, { @@ -25879,7 +25904,7 @@ "zh-chs": "打开XTerm终端", "zh-cht": "打開XTerm終端", "xloc": [ - "default.handlebars->27->642" + "default.handlebars->27->644" ] }, { @@ -25939,7 +25964,7 @@ "zh-chs": "开头:{0}", "zh-cht": "開場:{0}", "xloc": [ - "default.handlebars->27->1587" + "default.handlebars->27->1589" ] }, { @@ -25959,12 +25984,12 @@ "zh-chs": "操作系统", "zh-cht": "操作系統", "xloc": [ - "default-mobile.handlebars->9->331", - "default.handlebars->27->338", - "default.handlebars->27->371", - "default.handlebars->27->592", - "default.handlebars->27->795", - "default.handlebars->27->922" + "default-mobile.handlebars->9->332", + "default.handlebars->27->340", + "default.handlebars->27->373", + "default.handlebars->27->594", + "default.handlebars->27->797", + "default.handlebars->27->924" ] }, { @@ -25984,12 +26009,12 @@ "zh-chs": "运作", "zh-cht": "操作", "xloc": [ - "default-mobile.handlebars->9->264", - "default.handlebars->27->1720", - "default.handlebars->27->1801", - "default.handlebars->27->455", - "default.handlebars->27->478", - "default.handlebars->27->746" + "default-mobile.handlebars->9->265", + "default.handlebars->27->1723", + "default.handlebars->27->1804", + "default.handlebars->27->457", + "default.handlebars->27->480", + "default.handlebars->27->748" ] }, { @@ -26009,7 +26034,7 @@ "zh-chs": "组织", "zh-cht": "組織", "xloc": [ - "default.handlebars->27->328" + "default.handlebars->27->330" ] }, { @@ -26029,7 +26054,7 @@ "zh-chs": "奥里亚", "zh-cht": "奧里亞", "xloc": [ - "default.handlebars->27->1157" + "default.handlebars->27->1159" ] }, { @@ -26049,7 +26074,7 @@ "zh-chs": "奥罗莫", "zh-cht": "奧羅莫", "xloc": [ - "default.handlebars->27->1158" + "default.handlebars->27->1160" ] }, { @@ -26111,7 +26136,7 @@ "zh-chs": "过时的", "zh-cht": "過時的", "xloc": [ - "default.handlebars->27->594" + "default.handlebars->27->596" ] }, { @@ -26131,7 +26156,7 @@ "zh-chs": "自己的过程", "zh-cht": "自己的過程", "xloc": [ - "default.handlebars->27->847" + "default.handlebars->27->849" ] }, { @@ -26152,7 +26177,7 @@ "zh-cht": "PID", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea3->deskarea3x->DeskTools->5->1->0", - "default.handlebars->27->843", + "default.handlebars->27->845", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader->1" ] }, @@ -26173,8 +26198,8 @@ "zh-chs": "零件号", "zh-cht": "零件號", "xloc": [ - "default-mobile.handlebars->9->383", - "default.handlebars->27->984" + "default-mobile.handlebars->9->384", + "default.handlebars->27->986" ] }, { @@ -26194,7 +26219,7 @@ "zh-chs": "部分的", "zh-cht": "部分的", "xloc": [ - "default.handlebars->27->1708" + "default.handlebars->27->1711" ] }, { @@ -26249,8 +26274,8 @@ "zh-cht": "部分權限", "xloc": [ "default-mobile.handlebars->9->104", - "default-mobile.handlebars->9->400", - "default.handlebars->27->1279" + "default-mobile.handlebars->9->401", + "default.handlebars->27->1281" ] }, { @@ -26270,7 +26295,7 @@ "zh-chs": "部分权限", "zh-cht": "部分權限", "xloc": [ - "default.handlebars->27->1879" + "default.handlebars->27->1882" ] }, { @@ -26310,16 +26335,16 @@ "zh-chs": "密码", "zh-cht": "密碼", "xloc": [ - "default-mobile.handlebars->9->269", - "default.handlebars->27->1764", - "default.handlebars->27->1765", - "default.handlebars->27->1900", - "default.handlebars->27->1902", - "default.handlebars->27->1953", - "default.handlebars->27->1954", - "default.handlebars->27->291", - "default.handlebars->27->322", - "default.handlebars->27->756", + "default-mobile.handlebars->9->270", + "default.handlebars->27->1767", + "default.handlebars->27->1768", + "default.handlebars->27->1903", + "default.handlebars->27->1905", + "default.handlebars->27->1956", + "default.handlebars->27->1957", + "default.handlebars->27->293", + "default.handlebars->27->324", + "default.handlebars->27->758", "login2.handlebars->centralTable->1->0->logincell->loginpanel->1->5->1->2->1", "login2.handlebars->centralTable->1->0->logincell->loginpanel->1->5->1->2->1", "mstsc.handlebars->main->1->3->1->6->1->0", @@ -26460,7 +26485,7 @@ "zh-chs": "密码提示", "zh-cht": "密碼提示", "xloc": [ - "default.handlebars->27->1955" + "default.handlebars->27->1958" ] }, { @@ -26481,7 +26506,7 @@ "zh-cht": "密碼提示:", "xloc": [ "default-mobile.handlebars->9->88", - "default.handlebars->27->1257" + "default.handlebars->27->1259" ] }, { @@ -26501,7 +26526,7 @@ "zh-chs": "密码不符", "zh-cht": "密碼不符", "xloc": [ - "default.handlebars->27->1375" + "default.handlebars->27->1377" ] }, { @@ -26543,8 +26568,8 @@ "zh-chs": "密码*", "zh-cht": "密碼*", "xloc": [ - "default.handlebars->27->1373", - "default.handlebars->27->1374" + "default.handlebars->27->1375", + "default.handlebars->27->1376" ] }, { @@ -26567,8 +26592,8 @@ "account-invite.html->2->5", "default-mobile.handlebars->9->80", "default-mobile.handlebars->9->81", - "default.handlebars->27->1249", - "default.handlebars->27->1250", + "default.handlebars->27->1251", + "default.handlebars->27->1252", "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", @@ -26603,12 +26628,12 @@ "zh-cht": "糊", "xloc": [ "default-mobile.handlebars->9->128", - "default-mobile.handlebars->9->312", + "default-mobile.handlebars->9->313", "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->27->1560", - "default.handlebars->27->870", - "default.handlebars->27->896", + "default.handlebars->27->1562", + "default.handlebars->27->872", + "default.handlebars->27->898", "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" @@ -26671,7 +26696,7 @@ "zh-chs": "执行代理指令", "zh-cht": "執行代理指令", "xloc": [ - "default.handlebars->27->1000" + "default.handlebars->27->1002" ] }, { @@ -26725,7 +26750,7 @@ "zh-chs": "通过下载MeshCMD工具并像下面这样运行,将“ {0} ”组以英特尔AMT管理员控制模式(ACM)激活:", "zh-cht": "通過下載MeshCMD工具並像下面這樣運行,將“ {0} ”群以Intel® AMT管理員控制模式(ACM)啟動:", "xloc": [ - "default.handlebars->27->298" + "default.handlebars->27->300" ] }, { @@ -26745,8 +26770,8 @@ "zh-chs": "执行英特尔®AMT管理员控制模式(ACM)激活。", "zh-cht": "執行英特爾®AMT管理員控制模式(ACM)激活。", "xloc": [ - "default.handlebars->27->1354", - "default.handlebars->27->279" + "default.handlebars->27->1356", + "default.handlebars->27->281" ] }, { @@ -26766,7 +26791,7 @@ "zh-chs": "通过下载MeshCMD工具并像下面这样运行,来执行英特尔®AMT客户端控制模式(CCM)激活以将组\\“ {0} \\”分组:", "zh-cht": "通過下載MeshCMD工具並像下面這樣運行,來執行英特爾®AMT客戶端控制模式(CCM)激活以將組\\“ {0} \\”分組:", "xloc": [ - "default.handlebars->27->296" + "default.handlebars->27->298" ] }, { @@ -26786,8 +26811,8 @@ "zh-chs": "执行英特尔AMT客户端控制模式(CCM)激活。", "zh-cht": "執行Intel® AMT客戶端控制模式(CCM)啟動。", "xloc": [ - "default.handlebars->27->1352", - "default.handlebars->27->277" + "default.handlebars->27->1354", + "default.handlebars->27->279" ] }, { @@ -26807,7 +26832,7 @@ "zh-chs": "执行批量设备通知", "zh-cht": "執行批量設備通知", "xloc": [ - "default.handlebars->27->485" + "default.handlebars->27->487" ] }, { @@ -26827,7 +26852,7 @@ "zh-chs": "执行批量设备标签操作", "zh-cht": "執行批次裝置標籤操作", "xloc": [ - "default.handlebars->27->477" + "default.handlebars->27->479" ] }, { @@ -26847,7 +26872,7 @@ "zh-chs": "在设备上执行电源操作", "zh-cht": "在裝置上執行電源操作", "xloc": [ - "default.handlebars->27->623", + "default.handlebars->27->625", "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" @@ -26870,7 +26895,7 @@ "zh-chs": "执行电源操作= {0},强制执行= {1}", "zh-cht": "執行電源操作= {0},強制執行= {1}", "xloc": [ - "default.handlebars->27->1592" + "default.handlebars->27->1594" ] }, { @@ -26890,9 +26915,9 @@ "zh-chs": "权限", "zh-cht": "權限", "xloc": [ - "default-mobile.handlebars->9->448", - "default.handlebars->27->1483", - "default.handlebars->27->1692" + "default-mobile.handlebars->9->449", + "default.handlebars->27->1485", + "default.handlebars->27->1695" ] }, { @@ -26912,7 +26937,7 @@ "zh-chs": "波斯/伊朗", "zh-cht": "波斯/伊朗", "xloc": [ - "default.handlebars->27->1159" + "default.handlebars->27->1161" ] }, { @@ -26935,10 +26960,10 @@ "default-mobile.handlebars->9->62", "default-mobile.handlebars->9->65", "default-mobile.handlebars->9->67", - "default.handlebars->27->1011", - "default.handlebars->27->1014", + "default.handlebars->27->1013", + "default.handlebars->27->1016", "default.handlebars->27->159", - "default.handlebars->27->1945" + "default.handlebars->27->1948" ] }, { @@ -26958,7 +26983,7 @@ "zh-chs": "电话号码", "zh-cht": "電話號碼", "xloc": [ - "default.handlebars->27->1894" + "default.handlebars->27->1897" ] }, { @@ -26979,8 +27004,8 @@ "zh-cht": "電話號碼:", "xloc": [ "default-mobile.handlebars->9->66", - "default.handlebars->27->1013", - "default.handlebars->27->1944" + "default.handlebars->27->1015", + "default.handlebars->27->1947" ] }, { @@ -27017,7 +27042,7 @@ "zh-chs": "将节点放在这里", "zh-cht": "將節點放在這裡", "xloc": [ - "default.handlebars->27->538" + "default.handlebars->27->540" ] }, { @@ -27077,7 +27102,7 @@ "zh-chs": "请注意,不建议降级。请仅在最近的升级后发生问题时才这样做。", "zh-cht": "請注意,不建議降級。請僅在最近的升級後發生問題時才這樣做。", "xloc": [ - "default.handlebars->27->197" + "default.handlebars->27->198" ] }, { @@ -27119,7 +27144,7 @@ "zh-cht": "請等待幾分鐘以接收驗證。", "xloc": [ "default-mobile.handlebars->9->76", - "default.handlebars->27->1244" + "default.handlebars->27->1246" ] }, { @@ -27139,8 +27164,8 @@ "zh-chs": "插件指令", "zh-cht": "外掛指令", "xloc": [ - "default.handlebars->27->196", - "default.handlebars->27->2107" + "default.handlebars->27->197", + "default.handlebars->27->2110" ] }, { @@ -27160,7 +27185,7 @@ "zh-chs": "插件错误", "zh-cht": "外掛錯誤", "xloc": [ - "default.handlebars->27->202" + "default.handlebars->27->203" ] }, { @@ -27180,7 +27205,7 @@ "zh-chs": "PluginHandler无法事件消息:", "zh-cht": "PluginHandler無法事件消息:", "xloc": [ - "default.handlebars->27->175" + "default.handlebars->27->176" ] }, { @@ -27284,7 +27309,7 @@ "zh-cht": "政策", "xloc": [ "default-mobile.handlebars->9->103", - "default.handlebars->27->1278" + "default.handlebars->27->1280" ] }, { @@ -27304,7 +27329,7 @@ "zh-chs": "波兰文", "zh-cht": "波蘭文", "xloc": [ - "default.handlebars->27->1160" + "default.handlebars->27->1162" ] }, { @@ -27324,7 +27349,7 @@ "zh-chs": "葡萄牙文", "zh-cht": "葡萄牙文", "xloc": [ - "default.handlebars->27->1161" + "default.handlebars->27->1163" ] }, { @@ -27344,7 +27369,7 @@ "zh-chs": "葡萄牙文(巴西)", "zh-cht": "葡萄牙文(巴西)", "xloc": [ - "default.handlebars->27->1162" + "default.handlebars->27->1164" ] }, { @@ -27405,7 +27430,7 @@ "zh-chs": "电源状态", "zh-cht": "電源狀態", "xloc": [ - "default-mobile.handlebars->9->267" + "default-mobile.handlebars->9->268" ] }, { @@ -27425,7 +27450,7 @@ "zh-chs": "电源状态", "zh-cht": "電源狀態", "xloc": [ - "default.handlebars->27->1516", + "default.handlebars->27->1518", "default.handlebars->container->column_l->p21->3->1->meshPowerChartDiv->1" ] }, @@ -27446,10 +27471,10 @@ "zh-chs": "关机", "zh-cht": "關機", "xloc": [ - "default-mobile.handlebars->9->183", - "default-mobile.handlebars->9->263", + "default-mobile.handlebars->9->184", + "default-mobile.handlebars->9->264", "default.handlebars->27->6", - "default.handlebars->27->743" + "default.handlebars->27->745" ] }, { @@ -27469,7 +27494,7 @@ "zh-chs": "关闭设备", "zh-cht": "關閉裝置", "xloc": [ - "default.handlebars->27->460" + "default.handlebars->27->462" ] }, { @@ -27489,10 +27514,10 @@ "zh-chs": "有电源", "zh-cht": "有電源", "xloc": [ - "default-mobile.handlebars->9->178", - "default-mobile.handlebars->9->185", + "default-mobile.handlebars->9->179", + "default-mobile.handlebars->9->186", "default.handlebars->27->1", - "default.handlebars->27->418" + "default.handlebars->27->420" ] }, { @@ -27512,9 +27537,9 @@ "zh-chs": "存在", "zh-cht": "存在", "xloc": [ - "default-mobile.handlebars->9->184", - "default-mobile.handlebars->9->191", - "default.handlebars->27->430", + "default-mobile.handlebars->9->185", + "default-mobile.handlebars->9->192", + "default.handlebars->27->432", "default.handlebars->27->7" ] }, @@ -27535,7 +27560,7 @@ "zh-chs": "存在于服务器上", "zh-cht": "存在於伺服器上", "xloc": [ - "default.handlebars->27->2013" + "default.handlebars->27->2016" ] }, { @@ -27618,7 +27643,7 @@ "zh-chs": "隐私栏", "zh-cht": "隱私欄", "xloc": [ - "default.handlebars->27->188" + "default.handlebars->27->189" ] }, { @@ -27638,8 +27663,8 @@ "zh-chs": "进程控制", "zh-cht": "進程控制", "xloc": [ - "default-mobile.handlebars->9->289", - "default.handlebars->27->857", + "default-mobile.handlebars->9->290", + "default.handlebars->27->859", "desktop.handlebars->3->25" ] }, @@ -27681,7 +27706,7 @@ "zh-chs": "处理控制台命令:“{0}”", "zh-cht": "處理控制台命令:“{0}”", "xloc": [ - "default.handlebars->27->1584" + "default.handlebars->27->1586" ] }, { @@ -27701,7 +27726,7 @@ "zh-chs": "提示", "zh-cht": "提示", "xloc": [ - "default.handlebars->27->187" + "default.handlebars->27->188" ] }, { @@ -27721,7 +27746,7 @@ "zh-chs": "用户同意提示", "zh-cht": "用戶同意提示", "xloc": [ - "default.handlebars->27->735" + "default.handlebars->27->737" ] }, { @@ -27741,9 +27766,9 @@ "zh-chs": "用户同意提示", "zh-cht": "用戶同意提示", "xloc": [ - "default.handlebars->27->1403", - "default.handlebars->27->1407", - "default.handlebars->27->1410" + "default.handlebars->27->1405", + "default.handlebars->27->1409", + "default.handlebars->27->1412" ] }, { @@ -27763,7 +27788,7 @@ "zh-chs": "协议", "zh-cht": "協議", "xloc": [ - "default.handlebars->27->2011", + "default.handlebars->27->2014", "player.handlebars->3->16" ] }, @@ -27801,8 +27826,8 @@ "zh-chs": "配置状态", "zh-cht": "配置狀態", "xloc": [ - "default-mobile.handlebars->9->361", - "default.handlebars->27->962" + "default-mobile.handlebars->9->362", + "default.handlebars->27->964" ] }, { @@ -27823,7 +27848,7 @@ "zh-cht": "公開鏈結", "xloc": [ "default-mobile.handlebars->9->115", - "default.handlebars->27->1545" + "default.handlebars->27->1547" ] }, { @@ -27843,7 +27868,7 @@ "zh-chs": "旁遮普文", "zh-cht": "旁遮普文", "xloc": [ - "default.handlebars->27->1163" + "default.handlebars->27->1165" ] }, { @@ -27863,7 +27888,7 @@ "zh-chs": "旁遮普(印度)", "zh-cht": "旁遮普(印度)", "xloc": [ - "default.handlebars->27->1164" + "default.handlebars->27->1166" ] }, { @@ -27883,7 +27908,7 @@ "zh-chs": "旁遮普(巴基斯坦)", "zh-cht": "旁遮普(巴基斯坦)", "xloc": [ - "default.handlebars->27->1165" + "default.handlebars->27->1167" ] }, { @@ -27903,7 +27928,7 @@ "zh-chs": "Putty", "zh-cht": "Putty", "xloc": [ - "default.handlebars->27->647" + "default.handlebars->27->649" ] }, { @@ -27945,7 +27970,7 @@ "zh-chs": "盖丘亚族", "zh-cht": "蓋丘亞族", "xloc": [ - "default.handlebars->27->1166" + "default.handlebars->27->1168" ] }, { @@ -28009,7 +28034,7 @@ "zh-chs": "RDP", "zh-cht": "RDP", "xloc": [ - "default.handlebars->27->645" + "default.handlebars->27->647" ] }, { @@ -28029,7 +28054,7 @@ "zh-chs": "RDP连接", "zh-cht": "RDP連接", "xloc": [ - "default.handlebars->27->518" + "default.handlebars->27->520" ] }, { @@ -28049,7 +28074,7 @@ "zh-chs": "RDP远程连接端口:", "zh-cht": "RDP遠程連接介面:", "xloc": [ - "default.handlebars->27->517" + "default.handlebars->27->519" ] }, { @@ -28130,7 +28155,7 @@ "zh-chs": "RSS", "zh-cht": "RSS", "xloc": [ - "default.handlebars->27->2077" + "default.handlebars->27->2080" ] }, { @@ -28150,7 +28175,7 @@ "zh-chs": "随机密码。", "zh-cht": "隨機密碼。", "xloc": [ - "default.handlebars->27->1766" + "default.handlebars->27->1769" ] }, { @@ -28190,7 +28215,7 @@ "zh-chs": "重新激活英特尔®AMT", "zh-cht": "重新啟動Intel® AMT", "xloc": [ - "default.handlebars->27->1377" + "default.handlebars->27->1379" ] }, { @@ -28210,9 +28235,9 @@ "zh-chs": "真正的名字", "zh-cht": "真正的名字", "xloc": [ - "default.handlebars->27->1891", - "default.handlebars->27->1893", - "default.handlebars->27->1946" + "default.handlebars->27->1894", + "default.handlebars->27->1896", + "default.handlebars->27->1949" ] }, { @@ -28232,7 +28257,7 @@ "zh-chs": "境界", "zh-cht": "境界", "xloc": [ - "default.handlebars->27->1775" + "default.handlebars->27->1778" ] }, { @@ -28252,14 +28277,14 @@ "zh-chs": "收到无效的网络数据", "zh-cht": "收到無效的網絡數據", "xloc": [ - "default.handlebars->27->819", + "default.handlebars->27->821", "desktop.handlebars->3->11" ] }, { "en": "Record Sessions", "xloc": [ - "default.handlebars->27->1316" + "default.handlebars->27->1318" ] }, { @@ -28285,7 +28310,7 @@ { "en": "Record sessions", "xloc": [ - "default.handlebars->27->1413" + "default.handlebars->27->1415" ] }, { @@ -28305,7 +28330,7 @@ "zh-chs": "记录细节", "zh-cht": "記錄細節", "xloc": [ - "default.handlebars->27->2025" + "default.handlebars->27->2028" ] }, { @@ -28346,9 +28371,9 @@ "zh-cht": "遞迴刪除", "xloc": [ "default-mobile.handlebars->9->121", - "default-mobile.handlebars->9->300", - "default.handlebars->27->1552", - "default.handlebars->27->883" + "default-mobile.handlebars->9->301", + "default.handlebars->27->1554", + "default.handlebars->27->885" ] }, { @@ -28394,7 +28419,7 @@ "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea3->deskarea3x->DeskTools->DeskToolsRefreshButton", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->3", "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->3", - "default.handlebars->27->535", + "default.handlebars->27->537", "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", @@ -28438,9 +28463,9 @@ "zh-chs": "中继", "zh-cht": "中繼", "xloc": [ - "default-mobile.handlebars->9->202", - "default.handlebars->27->216", - "default.handlebars->27->445" + "default-mobile.handlebars->9->203", + "default.handlebars->27->217", + "default.handlebars->27->447" ] }, { @@ -28460,7 +28485,7 @@ "zh-chs": "中继数量", "zh-cht": "中繼數量", "xloc": [ - "default.handlebars->27->2056" + "default.handlebars->27->2059" ] }, { @@ -28480,7 +28505,7 @@ "zh-chs": "中继错误", "zh-cht": "中繼錯誤", "xloc": [ - "default.handlebars->27->2049" + "default.handlebars->27->2052" ] }, { @@ -28500,8 +28525,8 @@ "zh-chs": "中继连接", "zh-cht": "中繼連接", "xloc": [ - "default.handlebars->27->2055", - "default.handlebars->27->2071" + "default.handlebars->27->2058", + "default.handlebars->27->2074" ] }, { @@ -28638,7 +28663,7 @@ "zh-chs": "远程剪贴板", "zh-cht": "遠程剪貼板", "xloc": [ - "default.handlebars->27->838" + "default.handlebars->27->840" ] }, { @@ -28658,10 +28683,10 @@ "zh-chs": "遥控", "zh-cht": "遙控", "xloc": [ - "default-mobile.handlebars->9->414", - "default-mobile.handlebars->9->432", - "default.handlebars->27->1431", - "default.handlebars->27->1466" + "default-mobile.handlebars->9->415", + "default-mobile.handlebars->9->433", + "default.handlebars->27->1433", + "default.handlebars->27->1468" ] }, { @@ -28681,10 +28706,10 @@ "zh-chs": "远程桌面", "zh-cht": "遠程桌面", "xloc": [ - "default-mobile.handlebars->9->158", - "default-mobile.handlebars->9->161", - "default.handlebars->27->244", - "default.handlebars->27->247" + "default-mobile.handlebars->9->159", + "default-mobile.handlebars->9->162", + "default.handlebars->27->246", + "default.handlebars->27->249" ] }, { @@ -28704,8 +28729,8 @@ "zh-chs": "远程桌面连接栏已激活/更新", "zh-cht": "遠程桌面連接欄已激活/更新", "xloc": [ - "default.handlebars->27->1598", - "default.handlebars->27->1604" + "default.handlebars->27->1600", + "default.handlebars->27->1606" ] }, { @@ -28725,7 +28750,7 @@ "zh-chs": "远程桌面连接栏失败或不受支持", "zh-cht": "遠程桌面連接欄失敗或不受支持", "xloc": [ - "default.handlebars->27->1599" + "default.handlebars->27->1601" ] }, { @@ -28745,7 +28770,7 @@ "zh-chs": "远程桌面连接栏失败或不受支持", "zh-cht": "遠程桌面連接欄失敗或不受支持", "xloc": [ - "default.handlebars->27->1605" + "default.handlebars->27->1607" ] }, { @@ -28765,9 +28790,9 @@ "zh-chs": "本地用户强行关闭了远程桌面连接", "zh-cht": "本地用戶強行關閉了遠程桌面連接", "xloc": [ - "default.handlebars->27->1596", - "default.handlebars->27->1600", - "default.handlebars->27->1606" + "default.handlebars->27->1598", + "default.handlebars->27->1602", + "default.handlebars->27->1608" ] }, { @@ -28787,7 +28812,7 @@ "zh-chs": "远程桌面连结", "zh-cht": "遠程桌面鏈結", "xloc": [ - "default.handlebars->27->191" + "default.handlebars->27->192" ] }, { @@ -28807,9 +28832,9 @@ "zh-chs": "远程桌面设置", "zh-cht": "遠程桌面設置", "xloc": [ - "default-mobile.handlebars->9->285", - "default.handlebars->27->270", - "default.handlebars->27->830", + "default-mobile.handlebars->9->286", + "default.handlebars->27->272", + "default.handlebars->27->832", "desktop.handlebars->3->21" ] }, @@ -28830,7 +28855,7 @@ "zh-chs": "远程键盘输入", "zh-cht": "遠程鍵盤輸入", "xloc": [ - "default.handlebars->27->836", + "default.handlebars->27->838", "desktop.handlebars->3->23" ] }, @@ -28851,7 +28876,7 @@ "zh-chs": "远程网格用户", "zh-cht": "遠程網格用戶", "xloc": [ - "default-mobile.handlebars->9->451" + "default-mobile.handlebars->9->452" ] }, { @@ -28888,10 +28913,10 @@ "zh-chs": "仅远程查看", "zh-cht": "僅遠程查看", "xloc": [ - "default-mobile.handlebars->9->415", - "default-mobile.handlebars->9->437", - "default.handlebars->27->1432", - "default.handlebars->27->1471" + "default-mobile.handlebars->9->416", + "default-mobile.handlebars->9->438", + "default.handlebars->27->1434", + "default.handlebars->27->1473" ] }, { @@ -28911,7 +28936,7 @@ "zh-chs": "远程剪贴板的有效期为60秒。", "zh-cht": "遠程剪貼板的有效期為60秒。", "xloc": [ - "default.handlebars->27->837" + "default.handlebars->27->839" ] }, { @@ -28972,7 +28997,7 @@ "zh-chs": "删除配置", "zh-cht": "刪除配置", "xloc": [ - "default.handlebars->27->1289" + "default.handlebars->27->1291" ] }, { @@ -29026,8 +29051,8 @@ "zh-chs": "删除设备组权限", "zh-cht": "刪除裝置群權限", "xloc": [ - "default.handlebars->27->1860", - "default.handlebars->27->1994" + "default.handlebars->27->1863", + "default.handlebars->27->1997" ] }, { @@ -29047,8 +29072,8 @@ "zh-chs": "删除设备权限", "zh-cht": "刪除裝置權限", "xloc": [ - "default.handlebars->27->1858", - "default.handlebars->27->1981" + "default.handlebars->27->1861", + "default.handlebars->27->1984" ] }, { @@ -29085,7 +29110,7 @@ "zh-chs": "删除用户组成员身份", "zh-cht": "刪除用戶群成員身份", "xloc": [ - "default.handlebars->27->1990" + "default.handlebars->27->1993" ] }, { @@ -29105,8 +29130,8 @@ "zh-chs": "删除用户组权限", "zh-cht": "刪除用戶群權限", "xloc": [ - "default.handlebars->27->1488", - "default.handlebars->27->1986" + "default.handlebars->27->1490", + "default.handlebars->27->1989" ] }, { @@ -29126,7 +29151,7 @@ "zh-chs": "删除用户成员资格", "zh-cht": "刪除用戶成員資格", "xloc": [ - "default.handlebars->27->1868" + "default.handlebars->27->1871" ] }, { @@ -29146,8 +29171,8 @@ "zh-chs": "删除用户权限", "zh-cht": "刪除用戶權限", "xloc": [ - "default.handlebars->27->1486", - "default.handlebars->27->1983" + "default.handlebars->27->1488", + "default.handlebars->27->1986" ] }, { @@ -29167,7 +29192,7 @@ "zh-chs": "删除所有两因素认证。", "zh-cht": "刪除所有二因子鑑別。", "xloc": [ - "default.handlebars->27->1958" + "default.handlebars->27->1961" ] }, { @@ -29187,7 +29212,7 @@ "zh-chs": "删除此用户标识的所有先前事件。", "zh-cht": "刪除此用戶標識的所有先前事件。", "xloc": [ - "default.handlebars->27->1767" + "default.handlebars->27->1770" ] }, { @@ -29207,7 +29232,7 @@ "zh-chs": "断开连接后移除设备", "zh-cht": "斷開連接後删除裝置", "xloc": [ - "default.handlebars->27->1411" + "default.handlebars->27->1413" ] }, { @@ -29227,7 +29252,7 @@ "zh-chs": "删除节点位置", "zh-cht": "刪除節點位置", "xloc": [ - "default.handlebars->27->527" + "default.handlebars->27->529" ] }, { @@ -29248,7 +29273,7 @@ "zh-cht": "刪除電話號碼", "xloc": [ "default-mobile.handlebars->9->64", - "default.handlebars->27->1010" + "default.handlebars->27->1012" ] }, { @@ -29268,7 +29293,7 @@ "zh-chs": "移除标签", "zh-cht": "删除標籤", "xloc": [ - "default.handlebars->27->481" + "default.handlebars->27->483" ] }, { @@ -29288,7 +29313,7 @@ "zh-chs": "删除此设备", "zh-cht": "刪除此裝置", "xloc": [ - "default.handlebars->27->634" + "default.handlebars->27->636" ] }, { @@ -29308,7 +29333,7 @@ "zh-chs": "删除此用户", "zh-cht": "刪除此用戶", "xloc": [ - "default.handlebars->27->1936" + "default.handlebars->27->1939" ] }, { @@ -29328,7 +29353,7 @@ "zh-chs": "删除用户组成员身份", "zh-cht": "刪除用戶群成員身份", "xloc": [ - "default.handlebars->27->1972" + "default.handlebars->27->1975" ] }, { @@ -29348,7 +29373,7 @@ "zh-chs": "删除此设备的用户组权限", "zh-cht": "刪除此裝置的用戶群權限", "xloc": [ - "default.handlebars->27->1854" + "default.handlebars->27->1857" ] }, { @@ -29368,8 +29393,8 @@ "zh-chs": "删除此设备组的用户组权限", "zh-cht": "刪除此裝置群的用戶群權限", "xloc": [ - "default.handlebars->27->1848", - "default.handlebars->27->668" + "default.handlebars->27->1851", + "default.handlebars->27->670" ] }, { @@ -29389,11 +29414,11 @@ "zh-chs": "删除此设备组的用户权限", "zh-cht": "刪除此裝置群的用戶權限", "xloc": [ - "default.handlebars->27->1361", - "default.handlebars->27->1842", - "default.handlebars->27->1966", - "default.handlebars->27->1978", - "default.handlebars->27->669" + "default.handlebars->27->1363", + "default.handlebars->27->1845", + "default.handlebars->27->1969", + "default.handlebars->27->1981", + "default.handlebars->27->671" ] }, { @@ -29413,7 +29438,7 @@ "zh-chs": "删除身份验证应用程序", "zh-cht": "刪除身份驗證應用程序", "xloc": [ - "default.handlebars->27->1658" + "default.handlebars->27->1660" ] }, { @@ -29433,7 +29458,7 @@ "zh-chs": "从设备组{1}中删除了设备{0}", "zh-cht": "從設備組{1}中刪除了設備{0}", "xloc": [ - "default.handlebars->27->1654" + "default.handlebars->27->1656" ] }, { @@ -29453,7 +29478,7 @@ "zh-chs": "已删除用户{0}的电话号码", "zh-cht": "已刪除用戶{0}的電話號碼", "xloc": [ - "default.handlebars->27->1664" + "default.handlebars->27->1666" ] }, { @@ -29473,7 +29498,7 @@ "zh-chs": "移除安全密钥", "zh-cht": "移除安全密鑰", "xloc": [ - "default.handlebars->27->1661" + "default.handlebars->27->1663" ] }, { @@ -29493,9 +29518,9 @@ "zh-chs": "删除了{0}的用户设备权限", "zh-cht": "刪除了{0}的用戶設備權限", "xloc": [ - "default.handlebars->27->1627", - "default.handlebars->27->1648", - "default.handlebars->27->1653" + "default.handlebars->27->1629", + "default.handlebars->27->1650", + "default.handlebars->27->1655" ] }, { @@ -29515,7 +29540,7 @@ "zh-chs": "从设备组{1}中删除了用户组{0}", "zh-cht": "從設備組{1}中刪除了用戶組{0}", "xloc": [ - "default.handlebars->27->1637" + "default.handlebars->27->1639" ] }, { @@ -29535,7 +29560,7 @@ "zh-chs": "从设备组{1}中删除了用户{0}", "zh-cht": "已從設備組{1}中刪除用戶{0}", "xloc": [ - "default.handlebars->27->1650" + "default.handlebars->27->1652" ] }, { @@ -29555,8 +29580,8 @@ "zh-chs": "从用户组{1}中删除了用户{0}", "zh-cht": "從用戶組{1}中刪除了用戶{0}", "xloc": [ - "default.handlebars->27->1629", - "default.handlebars->27->1639" + "default.handlebars->27->1631", + "default.handlebars->27->1641" ] }, { @@ -29577,12 +29602,12 @@ "zh-cht": "改名", "xloc": [ "default-mobile.handlebars->9->125", - "default-mobile.handlebars->9->304", + "default-mobile.handlebars->9->305", "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->27->1556", - "default.handlebars->27->521", - "default.handlebars->27->887", + "default.handlebars->27->1558", + "default.handlebars->27->523", + "default.handlebars->27->889", "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" @@ -29605,7 +29630,7 @@ "zh-chs": "重命名:“{0}”为“{1}”", "zh-cht": "重命名:“{0}”為“{1}”", "xloc": [ - "default.handlebars->27->1615" + "default.handlebars->27->1617" ] }, { @@ -29625,7 +29650,7 @@ "zh-chs": "报告日", "zh-cht": "報告日", "xloc": [ - "default.handlebars->27->1671" + "default.handlebars->27->1674" ] }, { @@ -29645,7 +29670,7 @@ "zh-chs": "报告类型", "zh-cht": "報告類型", "xloc": [ - "default.handlebars->27->1666" + "default.handlebars->27->1669" ] }, { @@ -29665,7 +29690,7 @@ "zh-chs": "要求:", "zh-cht": "要求:", "xloc": [ - "default.handlebars->27->1258" + "default.handlebars->27->1260" ] }, { @@ -29686,8 +29711,8 @@ "zh-cht": "要求:{0}。", "xloc": [ "default-mobile.handlebars->9->89", - "default.handlebars->27->1772", - "default.handlebars->27->1956" + "default.handlebars->27->1775", + "default.handlebars->27->1959" ] }, { @@ -29707,7 +29732,7 @@ "zh-chs": "需要浏览器中的Microsoft ClickOnce支持", "zh-cht": "需要瀏覽器中的Microsoft ClickOnce支持", "xloc": [ - "default.handlebars->27->644" + "default.handlebars->27->646" ] }, { @@ -29727,8 +29752,8 @@ "zh-chs": "在浏览器中需要Microsoft ClickOnce支持。", "zh-cht": "在瀏覽器中需要Microsoft ClickOnce支持。", "xloc": [ - "default.handlebars->27->646", - "default.handlebars->27->648" + "default.handlebars->27->648", + "default.handlebars->27->650" ] }, { @@ -29770,8 +29795,8 @@ "zh-chs": "重设", "zh-cht": "重設", "xloc": [ - "default-mobile.handlebars->9->262", - "default.handlebars->27->742", + "default-mobile.handlebars->9->263", + "default.handlebars->27->744", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devMapToolbar" ] }, @@ -29858,7 +29883,7 @@ "zh-chs": "重置设备", "zh-cht": "重置裝置", "xloc": [ - "default.handlebars->27->459" + "default.handlebars->27->461" ] }, { @@ -29898,7 +29923,7 @@ "zh-chs": "重新启动", "zh-cht": "重新啟動", "xloc": [ - "default.handlebars->27->853", + "default.handlebars->27->855", "player.handlebars->p11->deskarea0->deskarea4->3" ] }, @@ -29919,7 +29944,7 @@ "zh-chs": "还原服务器", "zh-cht": "還原伺服器", "xloc": [ - "default.handlebars->27->1294" + "default.handlebars->27->1296" ] }, { @@ -29959,7 +29984,7 @@ "zh-chs": "使用备份还原服务器,这将删除现有服务器数据。仅当您知道自己在做什么时才这样做。", "zh-cht": "使用備份還原伺服器,這將刪除現有伺服器數據。僅當你知道自己在做什麼時才這樣做。", "xloc": [ - "default.handlebars->27->1291" + "default.handlebars->27->1293" ] }, { @@ -29979,7 +30004,7 @@ "zh-chs": "限制条件", "zh-cht": "限制條件", "xloc": [ - "default.handlebars->27->1880" + "default.handlebars->27->1883" ] }, { @@ -29999,7 +30024,7 @@ "zh-chs": "雷托-罗曼语", "zh-cht": "雷托-羅曼語", "xloc": [ - "default.handlebars->27->1167" + "default.handlebars->27->1169" ] }, { @@ -30019,7 +30044,7 @@ "zh-chs": "罗马尼亚文", "zh-cht": "羅馬尼亞文", "xloc": [ - "default.handlebars->27->1168" + "default.handlebars->27->1170" ] }, { @@ -30039,7 +30064,7 @@ "zh-chs": "罗马尼亚文(摩尔达维亚)", "zh-cht": "羅馬尼亞文(摩爾達維亞)", "xloc": [ - "default.handlebars->27->1169" + "default.handlebars->27->1171" ] }, { @@ -30060,9 +30085,9 @@ "zh-cht": "根", "xloc": [ "default-mobile.handlebars->9->107", - "default-mobile.handlebars->9->294", - "default.handlebars->27->1524", - "default.handlebars->27->877" + "default-mobile.handlebars->9->295", + "default.handlebars->27->1526", + "default.handlebars->27->879" ] }, { @@ -30082,8 +30107,8 @@ "zh-chs": "根证书", "zh-cht": "根憑證", "xloc": [ - "default.handlebars->27->318", - "default.handlebars->27->325" + "default.handlebars->27->320", + "default.handlebars->27->327" ] }, { @@ -30103,8 +30128,8 @@ "zh-chs": "根证书档案", "zh-cht": "根憑證檔案", "xloc": [ - "default.handlebars->27->320", - "default.handlebars->27->327" + "default.handlebars->27->322", + "default.handlebars->27->329" ] }, { @@ -30187,7 +30212,7 @@ "zh-chs": "路由器", "zh-cht": "路由器", "xloc": [ - "default.handlebars->27->237" + "default.handlebars->27->238" ] }, { @@ -30207,9 +30232,9 @@ "zh-chs": "运行命令", "zh-cht": "運行命令", "xloc": [ - "default.handlebars->27->476", - "default.handlebars->27->740", - "default.handlebars->27->751" + "default.handlebars->27->478", + "default.handlebars->27->742", + "default.handlebars->27->753" ] }, { @@ -30229,19 +30254,19 @@ "zh-chs": "运行MeshCentral Router,然后单击“安装”以使其可从浏览器启动。", "zh-cht": "運行MeshCentral Router,然後單擊“安裝”以使其可從瀏覽器啟動。", "xloc": [ - "default.handlebars->27->784" + "default.handlebars->27->786" ] }, { "en": "Run as agent", "xloc": [ - "default.handlebars->27->473" + "default.handlebars->27->475" ] }, { "en": "Run as user, agent if no user", "xloc": [ - "default.handlebars->27->474" + "default.handlebars->27->476" ] }, { @@ -30261,7 +30286,7 @@ "zh-chs": "运行命令", "zh-cht": "運行命令", "xloc": [ - "default.handlebars->27->457" + "default.handlebars->27->459" ] }, { @@ -30281,7 +30306,7 @@ "zh-chs": "在所选设备上运行命令。", "zh-cht": "在所選裝置上運行命令。", "xloc": [ - "default.handlebars->27->469" + "default.handlebars->27->471" ] }, { @@ -30301,7 +30326,7 @@ "zh-chs": "在此设备上运行命令。", "zh-cht": "在此裝置上運行命令。", "xloc": [ - "default.handlebars->27->748" + "default.handlebars->27->750" ] }, { @@ -30321,7 +30346,7 @@ "zh-chs": "运行命令", "zh-cht": "運行命令", "xloc": [ - "default.handlebars->27->1591" + "default.handlebars->27->1593" ] }, { @@ -30341,7 +30366,7 @@ "zh-chs": "俄文", "zh-cht": "俄文", "xloc": [ - "default.handlebars->27->1170" + "default.handlebars->27->1172" ] }, { @@ -30361,7 +30386,7 @@ "zh-chs": "俄文(摩尔达维亚)", "zh-cht": "俄文(摩爾達維亞)", "xloc": [ - "default.handlebars->27->1171" + "default.handlebars->27->1173" ] }, { @@ -30381,8 +30406,8 @@ "zh-chs": "短信", "zh-cht": "短信", "xloc": [ - "default.handlebars->27->1925", - "default.handlebars->27->1930", + "default.handlebars->27->1928", + "default.handlebars->27->1933", "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", @@ -30407,7 +30432,7 @@ "zh-chs": "此用户的短信功能电话号码。", "zh-cht": "此用戶的短信功能電話號碼。", "xloc": [ - "default.handlebars->27->1942" + "default.handlebars->27->1945" ] }, { @@ -30449,7 +30474,7 @@ "zh-chs": "与设备名称相同", "zh-cht": "與裝置名稱相同", "xloc": [ - "default.handlebars->27->288" + "default.handlebars->27->290" ] }, { @@ -30469,7 +30494,7 @@ "zh-chs": "萨米(拉普兰)", "zh-cht": "薩米(拉普蘭)", "xloc": [ - "default.handlebars->27->1172" + "default.handlebars->27->1174" ] }, { @@ -30489,8 +30514,8 @@ "zh-chs": "IP范围值样本", "zh-cht": "IP範圍值樣本", "xloc": [ - "default.handlebars->27->169", - "default.handlebars->27->173" + "default.handlebars->27->170", + "default.handlebars->27->174" ] }, { @@ -30527,7 +30552,7 @@ "zh-chs": "三乡", "zh-cht": "三鄉", "xloc": [ - "default.handlebars->27->1173" + "default.handlebars->27->1175" ] }, { @@ -30547,7 +30572,7 @@ "zh-chs": "梵文", "zh-cht": "梵文", "xloc": [ - "default.handlebars->27->1174" + "default.handlebars->27->1176" ] }, { @@ -30567,7 +30592,7 @@ "zh-chs": "撒丁岛", "zh-cht": "撒丁島", "xloc": [ - "default.handlebars->27->1175" + "default.handlebars->27->1177" ] }, { @@ -30628,7 +30653,7 @@ "zh-chs": "保存节点位置", "zh-cht": "保存節點位置", "xloc": [ - "default.handlebars->27->528" + "default.handlebars->27->530" ] }, { @@ -30687,8 +30712,8 @@ "zh-chs": "扫瞄", "zh-cht": "掃瞄", "xloc": [ - "default.handlebars->27->303", - "default.handlebars->27->305" + "default.handlebars->27->305", + "default.handlebars->27->307" ] }, { @@ -30708,7 +30733,7 @@ "zh-chs": "扫描网络", "zh-cht": "掃描網絡", "xloc": [ - "default.handlebars->27->276" + "default.handlebars->27->278" ] }, { @@ -30728,7 +30753,7 @@ "zh-chs": "扫描英特尔®AMT设备", "zh-cht": "掃描Intel® AMT裝置", "xloc": [ - "default.handlebars->27->306" + "default.handlebars->27->308" ] }, { @@ -30748,7 +30773,7 @@ "zh-chs": "扫描未有任何结果。", "zh-cht": "掃描未有任何結果。", "xloc": [ - "default.handlebars->27->172" + "default.handlebars->27->173" ] }, { @@ -30768,7 +30793,7 @@ "zh-chs": "扫描...", "zh-cht": "掃描...", "xloc": [ - "default.handlebars->27->307" + "default.handlebars->27->309" ] }, { @@ -30788,7 +30813,7 @@ "zh-chs": "屏幕", "zh-cht": "屏幕", "xloc": [ - "default-mobile.handlebars->9->287" + "default-mobile.handlebars->9->288" ] }, { @@ -30808,7 +30833,7 @@ "zh-chs": "屏幕选择", "zh-cht": "屏幕選擇", "xloc": [ - "default-mobile.handlebars->9->288" + "default-mobile.handlebars->9->289" ] }, { @@ -30848,7 +30873,7 @@ "zh-chs": "搜寻", "zh-cht": "搜尋", "xloc": [ - "default.handlebars->27->541", + "default.handlebars->27->543", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devMapToolbar" ] }, @@ -30934,8 +30959,8 @@ "zh-chs": "已使用TLS保安", "zh-cht": "已使用TLS保安", "xloc": [ - "default-mobile.handlebars->9->364", - "default.handlebars->27->965" + "default-mobile.handlebars->9->365", + "default.handlebars->27->967" ] }, { @@ -30955,12 +30980,12 @@ "zh-chs": "安全", "zh-cht": "安全", "xloc": [ - "default-mobile.handlebars->9->270", - "default-mobile.handlebars->9->363", - "default.handlebars->27->1926", - "default.handlebars->27->292", - "default.handlebars->27->757", - "default.handlebars->27->964" + "default-mobile.handlebars->9->271", + "default-mobile.handlebars->9->364", + "default.handlebars->27->1929", + "default.handlebars->27->294", + "default.handlebars->27->759", + "default.handlebars->27->966" ] }, { @@ -30980,7 +31005,7 @@ "zh-chs": "安全密钥", "zh-cht": "安全密鑰", "xloc": [ - "default.handlebars->27->1923" + "default.handlebars->27->1926" ] }, { @@ -31020,12 +31045,12 @@ "zh-chs": "全选", "zh-cht": "全選", "xloc": [ - "default.handlebars->27->1548", - "default.handlebars->27->1716", - "default.handlebars->27->1799", - "default.handlebars->27->450", - "default.handlebars->27->879", + "default.handlebars->27->1550", + "default.handlebars->27->1719", + "default.handlebars->27->1802", + "default.handlebars->27->452", "default.handlebars->27->881", + "default.handlebars->27->883", "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", @@ -31051,11 +31076,11 @@ "zh-chs": "选择无", "zh-cht": "選擇無", "xloc": [ - "default.handlebars->27->1547", - "default.handlebars->27->1715", - "default.handlebars->27->1798", - "default.handlebars->27->449", - "default.handlebars->27->880", + "default.handlebars->27->1549", + "default.handlebars->27->1718", + "default.handlebars->27->1801", + "default.handlebars->27->451", + "default.handlebars->27->882", "default.handlebars->meshContextMenu->cxselectnone" ] }, @@ -31076,7 +31101,7 @@ "zh-chs": "为所选设备选择一个新组", "zh-cht": "為所選裝置選擇一個新群", "xloc": [ - "default.handlebars->27->771" + "default.handlebars->27->773" ] }, { @@ -31096,7 +31121,7 @@ "zh-chs": "选择此设备的新组", "zh-cht": "選擇此裝置的新群", "xloc": [ - "default.handlebars->27->770" + "default.handlebars->27->772" ] }, { @@ -31116,7 +31141,7 @@ "zh-chs": "选择要放置的节点", "zh-cht": "選擇要放置的節點", "xloc": [ - "default.handlebars->27->544" + "default.handlebars->27->546" ] }, { @@ -31136,7 +31161,7 @@ "zh-chs": "选择要在所有选定设备上执行的操作。仅在拥有适当权限的情况下才能执行操作。", "zh-cht": "選擇要在所有選定裝置上執行的操作。僅在擁有適當權限的情況下才能執行操作。", "xloc": [ - "default.handlebars->27->454" + "default.handlebars->27->456" ] }, { @@ -31156,8 +31181,8 @@ "zh-chs": "选择要对所有选定用户执行的操作。", "zh-cht": "選擇要對所有選定用戶執行的操作。", "xloc": [ - "default.handlebars->27->1719", - "default.handlebars->27->1800" + "default.handlebars->27->1722", + "default.handlebars->27->1803" ] }, { @@ -31177,8 +31202,8 @@ "zh-chs": "选择要在此设备上执行的操作。", "zh-cht": "選擇要在此裝置上執行的操作。", "xloc": [ - "default-mobile.handlebars->9->259", - "default.handlebars->27->738" + "default-mobile.handlebars->9->260", + "default.handlebars->27->740" ] }, { @@ -31219,8 +31244,8 @@ "zh-chs": "仅自我事件", "zh-cht": "僅自我事件", "xloc": [ - "default-mobile.handlebars->9->442", - "default.handlebars->27->1477" + "default-mobile.handlebars->9->443", + "default.handlebars->27->1479" ] }, { @@ -31263,7 +31288,7 @@ "zh-chs": "发电邮", "zh-cht": "發電郵", "xloc": [ - "default.handlebars->27->1730" + "default.handlebars->27->1733" ] }, { @@ -31283,8 +31308,8 @@ "zh-chs": "发送MQTT消息", "zh-cht": "發送MQTT消息", "xloc": [ - "default.handlebars->27->451", - "default.handlebars->27->744" + "default.handlebars->27->453", + "default.handlebars->27->746" ] }, { @@ -31304,7 +31329,7 @@ "zh-chs": "发送MQTT消息", "zh-cht": "發送MQTT消息", "xloc": [ - "default.handlebars->27->763" + "default.handlebars->27->765" ] }, { @@ -31324,7 +31349,7 @@ "zh-chs": "发送短信", "zh-cht": "發送簡訊", "xloc": [ - "default.handlebars->27->1728" + "default.handlebars->27->1731" ] }, { @@ -31344,7 +31369,7 @@ "zh-chs": "发送短信给该用户", "zh-cht": "發送短信給該用戶", "xloc": [ - "default.handlebars->27->1931" + "default.handlebars->27->1934" ] }, { @@ -31364,7 +31389,7 @@ "zh-chs": "发送电邮给该用户", "zh-cht": "發送電郵給該用戶", "xloc": [ - "default.handlebars->27->1933" + "default.handlebars->27->1936" ] }, { @@ -31384,7 +31409,7 @@ "zh-chs": "向该组中的所有用户发送通知。", "zh-cht": "向該群中的所有用戶發送通知。", "xloc": [ - "default.handlebars->27->1839" + "default.handlebars->27->1842" ] }, { @@ -31404,7 +31429,7 @@ "zh-chs": "向该用户发送文本通知。", "zh-cht": "向該用戶發送文本通知。", "xloc": [ - "default.handlebars->27->1731" + "default.handlebars->27->1734" ] }, { @@ -31424,7 +31449,7 @@ "zh-chs": "发送电邮给用户", "zh-cht": "發送電郵給用戶", "xloc": [ - "default.handlebars->27->1711" + "default.handlebars->27->1714" ] }, { @@ -31444,7 +31469,7 @@ "zh-chs": "发送安装连结", "zh-cht": "發送安裝鏈結", "xloc": [ - "default.handlebars->27->339" + "default.handlebars->27->341" ] }, { @@ -31464,7 +31489,7 @@ "zh-chs": "发送邀请电邮。", "zh-cht": "發送邀請電郵。", "xloc": [ - "default.handlebars->27->1771" + "default.handlebars->27->1774" ] }, { @@ -31586,7 +31611,7 @@ "zh-chs": "发送用户通知", "zh-cht": "發送用戶通知", "xloc": [ - "default.handlebars->27->1935" + "default.handlebars->27->1938" ] }, { @@ -31606,7 +31631,7 @@ "zh-chs": "塞尔维亚", "zh-cht": "塞爾維亞", "xloc": [ - "default.handlebars->27->1178" + "default.handlebars->27->1180" ] }, { @@ -31626,8 +31651,8 @@ "zh-chs": "序列号", "zh-cht": "序列號", "xloc": [ - "default-mobile.handlebars->9->375", - "default.handlebars->27->976" + "default-mobile.handlebars->9->376", + "default.handlebars->27->978" ] }, { @@ -31647,7 +31672,7 @@ "zh-chs": "服务器备份", "zh-cht": "伺服器備份", "xloc": [ - "default.handlebars->27->1781" + "default.handlebars->27->1784" ] }, { @@ -31667,7 +31692,7 @@ "zh-chs": "服务器证书", "zh-cht": "伺服器憑證", "xloc": [ - "default.handlebars->27->2087" + "default.handlebars->27->2090" ] }, { @@ -31687,7 +31712,7 @@ "zh-chs": "服务器数据库", "zh-cht": "伺服器數據庫", "xloc": [ - "default.handlebars->27->2088" + "default.handlebars->27->2091" ] }, { @@ -31707,13 +31732,13 @@ "zh-chs": "服务器档案", "zh-cht": "伺服器檔案", "xloc": [ - "default-mobile.handlebars->9->421", - "default-mobile.handlebars->9->434", - "default.handlebars->27->1439", - "default.handlebars->27->1468", - "default.handlebars->27->1778", - "default.handlebars->27->682", - "default.handlebars->27->701" + "default-mobile.handlebars->9->422", + "default-mobile.handlebars->9->435", + "default.handlebars->27->1441", + "default.handlebars->27->1470", + "default.handlebars->27->1781", + "default.handlebars->27->684", + "default.handlebars->27->703" ] }, { @@ -31733,8 +31758,8 @@ "zh-chs": "服务器权限", "zh-cht": "伺服器權限", "xloc": [ - "default.handlebars->27->1703", - "default.handlebars->27->1792" + "default.handlebars->27->1706", + "default.handlebars->27->1795" ] }, { @@ -31754,7 +31779,7 @@ "zh-chs": "服务器配额", "zh-cht": "伺服器配額", "xloc": [ - "default.handlebars->27->1897" + "default.handlebars->27->1900" ] }, { @@ -31774,7 +31799,7 @@ "zh-chs": "服务器还原", "zh-cht": "伺服器還原", "xloc": [ - "default.handlebars->27->1782" + "default.handlebars->27->1785" ] }, { @@ -31794,7 +31819,7 @@ "zh-chs": "服务器权限", "zh-cht": "伺服器權限", "xloc": [ - "default.handlebars->27->1896" + "default.handlebars->27->1899" ] }, { @@ -31814,7 +31839,7 @@ "zh-chs": "服务器状态", "zh-cht": "伺服器狀態", "xloc": [ - "default.handlebars->27->2035" + "default.handlebars->27->2038" ] }, { @@ -31854,7 +31879,7 @@ "zh-chs": "服务器跟踪", "zh-cht": "伺服器追蹤", "xloc": [ - "default.handlebars->27->2098" + "default.handlebars->27->2101" ] }, { @@ -31874,7 +31899,7 @@ "zh-chs": "服务器更新", "zh-cht": "伺服器更新", "xloc": [ - "default.handlebars->27->1783" + "default.handlebars->27->1786" ] }, { @@ -32017,7 +32042,7 @@ "zh-chs": "ServerStats.csv", "zh-cht": "ServerStats.csv", "xloc": [ - "default.handlebars->27->2079" + "default.handlebars->27->2082" ] }, { @@ -32037,7 +32062,7 @@ "zh-chs": "服务详情", "zh-cht": "服務詳情", "xloc": [ - "default.handlebars->27->854" + "default.handlebars->27->856" ] }, { @@ -32077,7 +32102,7 @@ "zh-chs": "会话", "zh-cht": "節", "xloc": [ - "default.handlebars->27->1999" + "default.handlebars->27->2002" ] }, { @@ -32097,7 +32122,7 @@ "zh-chs": "会话信息", "zh-cht": "會議訊息", "xloc": [ - "default.handlebars->27->827", + "default.handlebars->27->829", "desktop.handlebars->3->19" ] }, @@ -32160,8 +32185,8 @@ "zh-chs": "会话", "zh-cht": "節", "xloc": [ - "default-mobile.handlebars->9->176", - "default.handlebars->27->262", + "default-mobile.handlebars->9->177", + "default.handlebars->27->264", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar->DevFilterSelect->7" ] }, @@ -32182,7 +32207,7 @@ "zh-chs": "设置标签", "zh-cht": "設置標籤", "xloc": [ - "default.handlebars->27->480" + "default.handlebars->27->482" ] }, { @@ -32202,7 +32227,7 @@ "zh-chs": "设置剪贴板内容,{0}个字节", "zh-cht": "設置剪貼板內容,{0}個字節", "xloc": [ - "default.handlebars->27->1589" + "default.handlebars->27->1591" ] }, { @@ -32243,7 +32268,7 @@ "zh-chs": "设定档案", "zh-cht": "設定檔案", "xloc": [ - "default.handlebars->27->392" + "default.handlebars->27->394" ] }, { @@ -32284,7 +32309,7 @@ "zh-chs": "设置CIRA", "zh-cht": "設置CIRA", "xloc": [ - "default.handlebars->27->313" + "default.handlebars->27->315" ] }, { @@ -32304,7 +32329,7 @@ "zh-chs": "设定方法", "zh-cht": "設定方法", "xloc": [ - "default.handlebars->27->311" + "default.handlebars->27->313" ] }, { @@ -32324,7 +32349,7 @@ "zh-chs": "将此服务器设置为自动将备份上传到Google云端硬盘。首先为您的帐户创建并输入Google Drive ClientID和ClientSecret。", "zh-cht": "將此服務器設置為自動將備份上傳到Google雲端硬盤。首先為您的帳戶創建並輸入Google Drive ClientID和ClientSecret。", "xloc": [ - "default.handlebars->27->1282" + "default.handlebars->27->1284" ] }, { @@ -32346,9 +32371,9 @@ "xloc": [ "default-mobile.handlebars->9->3", "default.handlebars->27->10", - "default.handlebars->27->240", - "default.handlebars->27->243", - "default.handlebars->27->269", + "default.handlebars->27->241", + "default.handlebars->27->244", + "default.handlebars->27->271", "desktop.handlebars->3->3", "xterm.handlebars->9->3" ] @@ -32370,7 +32395,7 @@ "zh-chs": "共享", "zh-cht": "共享", "xloc": [ - "default.handlebars->27->630" + "default.handlebars->27->632" ] }, { @@ -32390,8 +32415,8 @@ "zh-chs": "共享设备", "zh-cht": "共享裝置", "xloc": [ - "default.handlebars->27->193", - "default.handlebars->27->737" + "default.handlebars->27->194", + "default.handlebars->27->739" ] }, { @@ -32431,7 +32456,7 @@ "zh-chs": "共享过程", "zh-cht": "共享過程", "xloc": [ - "default.handlebars->27->848" + "default.handlebars->27->850" ] }, { @@ -32582,8 +32607,8 @@ "zh-chs": "只显示自己的事件", "zh-cht": "只顯示自己的事件", "xloc": [ - "default-mobile.handlebars->9->424", - "default.handlebars->27->1442" + "default-mobile.handlebars->9->425", + "default.handlebars->27->1444" ] }, { @@ -32603,7 +32628,7 @@ "zh-chs": "显示连接工具栏", "zh-cht": "顯示連接工具欄", "xloc": [ - "default.handlebars->27->1404" + "default.handlebars->27->1406" ] }, { @@ -32623,7 +32648,7 @@ "zh-chs": "显示设备位置信息", "zh-cht": "顯示裝置位置訊息", "xloc": [ - "default.handlebars->27->638" + "default.handlebars->27->640" ] }, { @@ -32643,7 +32668,7 @@ "zh-chs": "显示设备网络接口信息", "zh-cht": "顯示裝置網絡介面訊息", "xloc": [ - "default.handlebars->27->636" + "default.handlebars->27->638" ] }, { @@ -32683,8 +32708,8 @@ "zh-chs": "显示1分钟", "zh-cht": "顯示1分鐘", "xloc": [ - "default.handlebars->27->1734", - "default.handlebars->27->1757" + "default.handlebars->27->1737", + "default.handlebars->27->1760" ] }, { @@ -32704,8 +32729,8 @@ "zh-chs": "显示10秒", "zh-cht": "顯示10秒", "xloc": [ - "default.handlebars->27->1733", - "default.handlebars->27->1756" + "default.handlebars->27->1736", + "default.handlebars->27->1759" ] }, { @@ -32725,8 +32750,8 @@ "zh-chs": "显示5分钟", "zh-cht": "顯示5分鐘", "xloc": [ - "default.handlebars->27->1735", - "default.handlebars->27->1758" + "default.handlebars->27->1738", + "default.handlebars->27->1761" ] }, { @@ -32746,8 +32771,8 @@ "zh-chs": "显示消息,直到被用户拒绝", "zh-cht": "顯示消息,直到被用戶拒絕", "xloc": [ - "default.handlebars->27->1732", - "default.handlebars->27->1755" + "default.handlebars->27->1735", + "default.handlebars->27->1758" ] }, { @@ -32941,8 +32966,8 @@ "zh-chs": "简单管理员控制模式(ACM)", "zh-cht": "簡單管理員控制模式(ACM)", "xloc": [ - "default.handlebars->27->1341", - "default.handlebars->27->1364" + "default.handlebars->27->1343", + "default.handlebars->27->1366" ] }, { @@ -32962,9 +32987,9 @@ "zh-chs": "简单客户端控制模式(CCM)", "zh-cht": "簡單客戶端控制模式(CCM)", "xloc": [ - "default.handlebars->27->1339", - "default.handlebars->27->1367", - "default.handlebars->27->1371" + "default.handlebars->27->1341", + "default.handlebars->27->1369", + "default.handlebars->27->1373" ] }, { @@ -32984,7 +33009,7 @@ "zh-chs": "信地", "zh-cht": "信地", "xloc": [ - "default.handlebars->27->1176" + "default.handlebars->27->1178" ] }, { @@ -33004,7 +33029,7 @@ "zh-chs": "僧伽罗文", "zh-cht": "僧伽羅文", "xloc": [ - "default.handlebars->27->1177" + "default.handlebars->27->1179" ] }, { @@ -33046,8 +33071,8 @@ "zh-chs": "尺寸", "zh-cht": "尺寸", "xloc": [ - "default.handlebars->27->2002", - "default.handlebars->27->2017", + "default.handlebars->27->2005", + "default.handlebars->27->2020", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSize" ] }, @@ -33068,7 +33093,7 @@ "zh-chs": "缩放:100%", "zh-cht": "縮放:100%", "xloc": [ - "default.handlebars->27->908" + "default.handlebars->27->910" ] }, { @@ -33088,7 +33113,7 @@ "zh-chs": "缩放:125%", "zh-cht": "縮放:125%", "xloc": [ - "default.handlebars->27->909" + "default.handlebars->27->911" ] }, { @@ -33108,7 +33133,7 @@ "zh-chs": "缩放:150%", "zh-cht": "縮放:150%", "xloc": [ - "default.handlebars->27->910" + "default.handlebars->27->912" ] }, { @@ -33128,7 +33153,7 @@ "zh-chs": "缩放:200%", "zh-cht": "縮放:200%", "xloc": [ - "default.handlebars->27->911" + "default.handlebars->27->913" ] }, { @@ -33148,14 +33173,14 @@ "zh-chs": "休眠", "zh-cht": "休眠", "xloc": [ - "default-mobile.handlebars->9->179", "default-mobile.handlebars->9->180", "default-mobile.handlebars->9->181", - "default-mobile.handlebars->9->261", + "default-mobile.handlebars->9->182", + "default-mobile.handlebars->9->262", "default.handlebars->27->2", "default.handlebars->27->3", "default.handlebars->27->4", - "default.handlebars->27->741" + "default.handlebars->27->743" ] }, { @@ -33175,7 +33200,7 @@ "zh-chs": "把装置休眠", "zh-cht": "把裝置休眠", "xloc": [ - "default.handlebars->27->458" + "default.handlebars->27->460" ] }, { @@ -33195,10 +33220,10 @@ "zh-chs": "休眠中", "zh-cht": "休眠中", "xloc": [ - "default-mobile.handlebars->9->186", "default-mobile.handlebars->9->187", - "default.handlebars->27->420", - "default.handlebars->27->422" + "default-mobile.handlebars->9->188", + "default.handlebars->27->422", + "default.handlebars->27->424" ] }, { @@ -33218,7 +33243,7 @@ "zh-chs": "斯洛伐克文", "zh-cht": "斯洛伐克文", "xloc": [ - "default.handlebars->27->1179" + "default.handlebars->27->1181" ] }, { @@ -33238,7 +33263,7 @@ "zh-chs": "斯洛文尼亞文", "zh-cht": "斯洛文尼亞文", "xloc": [ - "default.handlebars->27->1180" + "default.handlebars->27->1182" ] }, { @@ -33301,7 +33326,7 @@ "zh-chs": "小焦点", "zh-cht": "小焦點", "xloc": [ - "default.handlebars->27->833" + "default.handlebars->27->835" ] }, { @@ -33321,7 +33346,7 @@ "zh-chs": "软断开代理", "zh-cht": "軟斷開代理", "xloc": [ - "default.handlebars->27->1006" + "default.handlebars->27->1008" ] }, { @@ -33341,8 +33366,8 @@ "zh-chs": "软关机", "zh-cht": "軟關機", "xloc": [ - "default-mobile.handlebars->9->190", - "default.handlebars->27->428" + "default-mobile.handlebars->9->191", + "default.handlebars->27->430" ] }, { @@ -33382,7 +33407,7 @@ "zh-chs": "索马尼", "zh-cht": "索馬尼", "xloc": [ - "default.handlebars->27->1181" + "default.handlebars->27->1183" ] }, { @@ -33402,7 +33427,7 @@ "zh-chs": "索比亚文", "zh-cht": "索比亞文", "xloc": [ - "default.handlebars->27->1182" + "default.handlebars->27->1184" ] }, { @@ -33553,7 +33578,7 @@ "zh-chs": "西班牙文", "zh-cht": "西班牙文", "xloc": [ - "default.handlebars->27->1183" + "default.handlebars->27->1185" ] }, { @@ -33573,7 +33598,7 @@ "zh-chs": "西班牙文(阿根廷)", "zh-cht": "西班牙文(阿根廷)", "xloc": [ - "default.handlebars->27->1184" + "default.handlebars->27->1186" ] }, { @@ -33593,7 +33618,7 @@ "zh-chs": "西班牙文(玻利维亚)", "zh-cht": "西班牙文(玻利維亞)", "xloc": [ - "default.handlebars->27->1185" + "default.handlebars->27->1187" ] }, { @@ -33613,7 +33638,7 @@ "zh-chs": "西班牙文(智利)", "zh-cht": "西班牙文(智利)", "xloc": [ - "default.handlebars->27->1186" + "default.handlebars->27->1188" ] }, { @@ -33633,7 +33658,7 @@ "zh-chs": "西班牙文(哥伦比亚)", "zh-cht": "西班牙文(哥倫比亞)", "xloc": [ - "default.handlebars->27->1187" + "default.handlebars->27->1189" ] }, { @@ -33653,7 +33678,7 @@ "zh-chs": "西班牙文(哥斯达黎加)", "zh-cht": "西班牙文(哥斯達黎加)", "xloc": [ - "default.handlebars->27->1188" + "default.handlebars->27->1190" ] }, { @@ -33673,7 +33698,7 @@ "zh-chs": "西班牙文(多米尼加共和国)", "zh-cht": "西班牙文(多米尼加共和國)", "xloc": [ - "default.handlebars->27->1189" + "default.handlebars->27->1191" ] }, { @@ -33693,7 +33718,7 @@ "zh-chs": "西班牙文(厄瓜多尔)", "zh-cht": "西班牙文(厄瓜多爾)", "xloc": [ - "default.handlebars->27->1190" + "default.handlebars->27->1192" ] }, { @@ -33713,7 +33738,7 @@ "zh-chs": "西班牙文(萨尔瓦多)", "zh-cht": "西班牙文(薩爾瓦多)", "xloc": [ - "default.handlebars->27->1191" + "default.handlebars->27->1193" ] }, { @@ -33733,7 +33758,7 @@ "zh-chs": "西班牙文(危地马拉)", "zh-cht": "西班牙文(危地馬拉)", "xloc": [ - "default.handlebars->27->1192" + "default.handlebars->27->1194" ] }, { @@ -33753,7 +33778,7 @@ "zh-chs": "西班牙文(洪都拉斯)", "zh-cht": "西班牙文(洪都拉斯)", "xloc": [ - "default.handlebars->27->1193" + "default.handlebars->27->1195" ] }, { @@ -33773,7 +33798,7 @@ "zh-chs": "西班牙文(墨西哥)", "zh-cht": "西班牙文(墨西哥)", "xloc": [ - "default.handlebars->27->1194" + "default.handlebars->27->1196" ] }, { @@ -33793,7 +33818,7 @@ "zh-chs": "西班牙文(尼加拉瓜)", "zh-cht": "西班牙文(尼加拉瓜)", "xloc": [ - "default.handlebars->27->1195" + "default.handlebars->27->1197" ] }, { @@ -33813,7 +33838,7 @@ "zh-chs": "西班牙文(巴拿马)", "zh-cht": "西班牙文(巴拿馬)", "xloc": [ - "default.handlebars->27->1196" + "default.handlebars->27->1198" ] }, { @@ -33833,7 +33858,7 @@ "zh-chs": "西班牙文(巴拉圭)", "zh-cht": "西班牙文(巴拉圭)", "xloc": [ - "default.handlebars->27->1197" + "default.handlebars->27->1199" ] }, { @@ -33853,7 +33878,7 @@ "zh-chs": "西班牙文(秘鲁)", "zh-cht": "西班牙文(秘魯)", "xloc": [ - "default.handlebars->27->1198" + "default.handlebars->27->1200" ] }, { @@ -33873,7 +33898,7 @@ "zh-chs": "西班牙文(波多黎各)", "zh-cht": "西班牙文(波多黎各)", "xloc": [ - "default.handlebars->27->1199" + "default.handlebars->27->1201" ] }, { @@ -33893,7 +33918,7 @@ "zh-chs": "西班牙文(西班牙)", "zh-cht": "西班牙文(西班牙)", "xloc": [ - "default.handlebars->27->1200" + "default.handlebars->27->1202" ] }, { @@ -33913,7 +33938,7 @@ "zh-chs": "西班牙文(乌拉圭)", "zh-cht": "西班牙文(烏拉圭)", "xloc": [ - "default.handlebars->27->1201" + "default.handlebars->27->1203" ] }, { @@ -33933,7 +33958,7 @@ "zh-chs": "西班牙文(委内瑞拉)", "zh-cht": "西班牙文(委內瑞拉)", "xloc": [ - "default.handlebars->27->1202" + "default.handlebars->27->1204" ] }, { @@ -33953,7 +33978,7 @@ "zh-chs": "特殊键", "zh-cht": "特殊鍵", "xloc": [ - "default-mobile.handlebars->9->286" + "default-mobile.handlebars->9->287" ] }, { @@ -34000,7 +34025,7 @@ "zh-chs": "开始", "zh-cht": "開始", "xloc": [ - "default.handlebars->27->851" + "default.handlebars->27->853" ] }, { @@ -34037,9 +34062,9 @@ "zh-chs": "开始时间", "zh-cht": "開始時間", "xloc": [ - "default.handlebars->27->2000", - "default.handlebars->27->2019", - "default.handlebars->27->823", + "default.handlebars->27->2003", + "default.handlebars->27->2022", + "default.handlebars->27->825", "desktop.handlebars->3->15" ] }, @@ -34060,7 +34085,7 @@ "zh-chs": "开始桌面多重会话", "zh-cht": "啟動桌面多路復用會話", "xloc": [ - "default.handlebars->27->1573" + "default.handlebars->27->1575" ] }, { @@ -34080,7 +34105,7 @@ "zh-chs": "从{1}到{2}开始了桌面会话“{0}”", "zh-cht": "從{1}到{2}開始了桌面會話“{0}”", "xloc": [ - "default.handlebars->27->1582" + "default.handlebars->27->1584" ] }, { @@ -34100,7 +34125,7 @@ "zh-chs": "从{1}到{2}开始文件管理会话“{0}”", "zh-cht": "從{1}到{2}開始文件管理會話“{0}”", "xloc": [ - "default.handlebars->27->1583" + "default.handlebars->27->1585" ] }, { @@ -34120,7 +34145,7 @@ "zh-chs": "从{1}到{2}开始中继会话“{0}”", "zh-cht": "從{1}到{2}開始中繼會話“{0}”", "xloc": [ - "default.handlebars->27->1580" + "default.handlebars->27->1582" ] }, { @@ -34140,7 +34165,7 @@ "zh-chs": "使用Toast通知启动远程桌面", "zh-cht": "使用Toast通知啟動遠程桌面", "xloc": [ - "default.handlebars->27->1602" + "default.handlebars->27->1604" ] }, { @@ -34160,7 +34185,7 @@ "zh-chs": "启动远程桌面,而无需通知", "zh-cht": "啟動遠程桌面,而無需通知", "xloc": [ - "default.handlebars->27->1603" + "default.handlebars->27->1605" ] }, { @@ -34180,7 +34205,7 @@ "zh-chs": "启动带有Toast通知的远程文件", "zh-cht": "啟動帶有Toast通知的遠程文件", "xloc": [ - "default.handlebars->27->1609" + "default.handlebars->27->1611" ] }, { @@ -34200,7 +34225,7 @@ "zh-chs": "已启动的远程文件,恕不另行通知", "zh-cht": "已啟動的遠程文件,恕不另行通知", "xloc": [ - "default.handlebars->27->1610" + "default.handlebars->27->1612" ] }, { @@ -34220,7 +34245,7 @@ "zh-chs": "从{1}到{2}开始了终端会话“{0}”", "zh-cht": "從{1}到{2}開始了終端會話“{0}”", "xloc": [ - "default.handlebars->27->1581" + "default.handlebars->27->1583" ] }, { @@ -34240,7 +34265,7 @@ "zh-chs": "接受本地用户后启动远程桌面", "zh-cht": "接受本地用戶後啟動遠程桌面", "xloc": [ - "default.handlebars->27->1597" + "default.handlebars->27->1599" ] }, { @@ -34260,7 +34285,7 @@ "zh-chs": "本地用户接受后启动远程文件", "zh-cht": "本地用戶接受後啟動遠程文件", "xloc": [ - "default.handlebars->27->1607" + "default.handlebars->27->1609" ] }, { @@ -34280,7 +34305,7 @@ "zh-chs": "状况", "zh-cht": "狀態", "xloc": [ - "default.handlebars->27->842", + "default.handlebars->27->844", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsServiceTab->deskToolsServiceHeader->1" ] }, @@ -34321,8 +34346,8 @@ "zh-chs": "状况", "zh-cht": "狀態", "xloc": [ - "default.handlebars->27->1949", - "default.handlebars->27->2012", + "default.handlebars->27->1952", + "default.handlebars->27->2015", "default.handlebars->container->column_l->p42->p42tbl->1->0->7" ] }, @@ -34343,7 +34368,7 @@ "zh-chs": "停止", "zh-cht": "停止", "xloc": [ - "default.handlebars->27->852" + "default.handlebars->27->854" ] }, { @@ -34363,15 +34388,15 @@ "zh-chs": "停止进程", "zh-cht": "停止進程", "xloc": [ - "default.handlebars->27->839" + "default.handlebars->27->841" ] }, { "en": "Stop process #{0} \\\"{1}\\\"?", "nl": "Stop proces #{0} \\\"{1}\\\"?", "xloc": [ - "default-mobile.handlebars->9->290", - "default.handlebars->27->858", + "default-mobile.handlebars->9->291", + "default.handlebars->27->860", "desktop.handlebars->3->26" ] }, @@ -34409,8 +34434,8 @@ "zh-chs": "储存", "zh-cht": "儲存", "xloc": [ - "default-mobile.handlebars->9->389", - "default.handlebars->27->990" + "default-mobile.handlebars->9->390", + "default.handlebars->27->992" ] }, { @@ -34450,7 +34475,7 @@ "zh-chs": "超出储存空间", "zh-cht": "超出儲存空間", "xloc": [ - "default.handlebars->27->1528" + "default.handlebars->27->1530" ] }, { @@ -34470,7 +34495,7 @@ "zh-chs": "强", "zh-cht": "強", "xloc": [ - "default.handlebars->27->1275" + "default.handlebars->27->1277" ] }, { @@ -34515,7 +34540,7 @@ "zh-chs": "主题", "zh-cht": "主題", "xloc": [ - "default.handlebars->27->1729" + "default.handlebars->27->1732" ] }, { @@ -34615,7 +34640,7 @@ "zh-chs": "苏图", "zh-cht": "蘇圖", "xloc": [ - "default.handlebars->27->1203" + "default.handlebars->27->1205" ] }, { @@ -34635,7 +34660,7 @@ "zh-chs": "斯瓦希里文", "zh-cht": "斯瓦希里文", "xloc": [ - "default.handlebars->27->1204" + "default.handlebars->27->1206" ] }, { @@ -34661,7 +34686,7 @@ "zh-chs": "瑞典文", "zh-cht": "瑞典文", "xloc": [ - "default.handlebars->27->1205" + "default.handlebars->27->1207" ] }, { @@ -34681,7 +34706,7 @@ "zh-chs": "瑞典文(芬兰)", "zh-cht": "瑞典文(芬蘭)", "xloc": [ - "default.handlebars->27->1206" + "default.handlebars->27->1208" ] }, { @@ -34701,7 +34726,7 @@ "zh-chs": "瑞典文(瑞典)", "zh-cht": "瑞典文(瑞典)", "xloc": [ - "default.handlebars->27->1207" + "default.handlebars->27->1209" ] }, { @@ -34721,7 +34746,7 @@ "zh-chs": "将服务器设备名称同步到主机名称", "zh-cht": "將伺服器裝置名稱同步到主機名稱", "xloc": [ - "default.handlebars->27->1412" + "default.handlebars->27->1414" ] }, { @@ -34741,7 +34766,7 @@ "zh-chs": "系统类型", "zh-cht": "系統類型", "xloc": [ - "default.handlebars->27->378" + "default.handlebars->27->380" ] }, { @@ -34761,8 +34786,8 @@ "zh-chs": "TCP路由", "zh-cht": "TCP路由", "xloc": [ - "default-mobile.handlebars->9->170", - "default.handlebars->27->256" + "default-mobile.handlebars->9->171", + "default.handlebars->27->258" ] }, { @@ -34849,8 +34874,8 @@ "zh-chs": "TLS", "zh-cht": "TLS", "xloc": [ - "default-mobile.handlebars->9->232", - "default.handlebars->27->579" + "default-mobile.handlebars->9->233", + "default.handlebars->27->581" ] }, { @@ -34870,8 +34895,8 @@ "zh-chs": "未设置TLS", "zh-cht": "未設置TLS", "xloc": [ - "default-mobile.handlebars->9->365", - "default.handlebars->27->966" + "default-mobile.handlebars->9->366", + "default.handlebars->27->968" ] }, { @@ -34891,9 +34916,9 @@ "zh-chs": "需要TLS加密", "zh-cht": "需要TLS加密", "xloc": [ - "default-mobile.handlebars->9->272", - "default.handlebars->27->294", - "default.handlebars->27->759" + "default-mobile.handlebars->9->273", + "default.handlebars->27->296", + "default.handlebars->27->761" ] }, { @@ -34933,8 +34958,8 @@ "zh-chs": "标签1,标签2,标签3", "zh-cht": "標籤1,標籤2,標籤3", "xloc": [ - "default.handlebars->27->483", - "default.handlebars->27->813" + "default.handlebars->27->485", + "default.handlebars->27->815" ] }, { @@ -34954,11 +34979,11 @@ "zh-chs": "标签", "zh-cht": "標籤", "xloc": [ - "default-mobile.handlebars->9->246", "default-mobile.handlebars->9->247", - "default-mobile.handlebars->9->281", - "default.handlebars->27->482", - "default.handlebars->27->812", + "default-mobile.handlebars->9->248", + "default-mobile.handlebars->9->282", + "default.handlebars->27->484", + "default.handlebars->27->814", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->7" ] }, @@ -34979,7 +35004,7 @@ "zh-chs": "泰米尔文", "zh-cht": "泰米爾文", "xloc": [ - "default.handlebars->27->1208" + "default.handlebars->27->1210" ] }, { @@ -34999,7 +35024,7 @@ "zh-chs": "塔塔尔族", "zh-cht": "塔塔爾族", "xloc": [ - "default.handlebars->27->1209" + "default.handlebars->27->1211" ] }, { @@ -35019,7 +35044,7 @@ "zh-chs": "泰卢加", "zh-cht": "泰盧加", "xloc": [ - "default.handlebars->27->1210" + "default.handlebars->27->1212" ] }, { @@ -35039,11 +35064,11 @@ "zh-chs": "终端", "zh-cht": "終端機", "xloc": [ - "default-mobile.handlebars->9->164", - "default.handlebars->27->1405", - "default.handlebars->27->2006", - "default.handlebars->27->250", - "default.handlebars->27->531", + "default-mobile.handlebars->9->165", + "default.handlebars->27->1407", + "default.handlebars->27->2009", + "default.handlebars->27->252", + "default.handlebars->27->533", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevTerminal", "default.handlebars->contextMenu->cxterminal" ] @@ -35085,10 +35110,10 @@ "zh-chs": "终端通知", "zh-cht": "終端機通知", "xloc": [ - "default.handlebars->27->1324", - "default.handlebars->27->1828", - "default.handlebars->27->1915", - "default.handlebars->27->603" + "default.handlebars->27->1326", + "default.handlebars->27->1831", + "default.handlebars->27->1918", + "default.handlebars->27->605" ] }, { @@ -35108,10 +35133,10 @@ "zh-chs": "终端提示", "zh-cht": "終端機提示", "xloc": [ - "default.handlebars->27->1323", - "default.handlebars->27->1827", - "default.handlebars->27->1914", - "default.handlebars->27->602" + "default.handlebars->27->1325", + "default.handlebars->27->1830", + "default.handlebars->27->1917", + "default.handlebars->27->604" ] }, { @@ -35179,7 +35204,7 @@ "zh-chs": "泰国", "zh-cht": "泰國", "xloc": [ - "default.handlebars->27->1211" + "default.handlebars->27->1213" ] }, { @@ -35220,7 +35245,7 @@ "zh-chs": "此计算机所属的设备组的名称", "zh-cht": "此電腦所屬的裝置群的名稱", "xloc": [ - "default.handlebars->27->558" + "default.handlebars->27->560" ] }, { @@ -35240,7 +35265,7 @@ "zh-chs": "此计算机所属的设备组的名称。", "zh-cht": "此電腦所屬的裝置群的名稱。", "xloc": [ - "default.handlebars->27->556" + "default.handlebars->27->558" ] }, { @@ -35260,8 +35285,8 @@ "zh-chs": "此计算机的在操作系统中已设置的名称", "zh-cht": "此電腦在操作系統中已設置的的名稱", "xloc": [ - "default.handlebars->27->559", - "default.handlebars->27->561" + "default.handlebars->27->561", + "default.handlebars->27->563" ] }, { @@ -35281,7 +35306,7 @@ "zh-chs": "目前没有任何通知", "zh-cht": "目前沒有任何通知", "xloc": [ - "default.handlebars->27->2027" + "default.handlebars->27->2030" ] }, { @@ -35321,7 +35346,7 @@ "zh-chs": "这些设置可用于连接该设备的MQTT。", "zh-cht": "這些設置可用於連接該裝置的MQTT。", "xloc": [ - "default.handlebars->27->194" + "default.handlebars->27->195" ] }, { @@ -35342,7 +35367,7 @@ "zh-cht": "此帳戶無權建立新的裝置群。", "xloc": [ "default-mobile.handlebars->9->92", - "default.handlebars->27->1261" + "default.handlebars->27->1263" ] }, { @@ -35362,7 +35387,7 @@ "zh-chs": "这是OS图形用户界面上的可执行档案。您需要'chmod + x meshagent'并运行此档案。", "zh-cht": "這是OS圖形用戶界面上的可執行檔案。你需要'chmod + x meshagent'並運行此檔案。", "xloc": [ - "default.handlebars->27->408" + "default.handlebars->27->410" ] }, { @@ -35419,7 +35444,7 @@ "zh-chs": "这是不安全政策,因为将用代理执行激活。", "zh-cht": "這是不安全政策,因為將用代理執行啟動。", "xloc": [ - "default.handlebars->27->1389" + "default.handlebars->27->1391" ] }, { @@ -35460,7 +35485,7 @@ "zh-chs": "此政策不会影响采用ACM模式的英特尔®AMT的设备。", "zh-cht": "此政策不會影響採用ACM模式的Intel® AMT的裝置。", "xloc": [ - "default.handlebars->27->1388" + "default.handlebars->27->1390" ] }, { @@ -35543,7 +35568,7 @@ "zh-chs": "这会在此设备的事件日志中添加一个条目。", "zh-cht": "這會在此裝置的事件日誌中增加一個記錄。", "xloc": [ - "default.handlebars->27->709" + "default.handlebars->27->711" ] }, { @@ -35580,7 +35605,7 @@ "zh-chs": "这不会从服务器上删除该设备,但是该设备将不再能够连接到服务器。该设备的所有远程访问都将丢失。该设备必须连线,此命令才能起作用。", "zh-cht": "這不會從伺服器上刪除該裝置,但是該裝置將不再能夠連接到伺服器。該裝置的所有遠程訪問都將丟失。該設備必須連線,此命令才能起作用。", "xloc": [ - "default.handlebars->27->766" + "default.handlebars->27->768" ] }, { @@ -35600,7 +35625,7 @@ "zh-chs": "这不会从服务器上删除该设备,但是该设备将不再能够连接到服务器。该设备的所有远程访问都将丢失。该设备必须连线,此命令才能起作用。", "zh-cht": "這不會從伺服器上刪除該裝置,但是該裝置將不再能夠連接到伺服器。該裝置的所有遠程訪問都將丟失。該設備必須連線,此命令才能起作用。", "xloc": [ - "default.handlebars->27->767" + "default.handlebars->27->769" ] }, { @@ -35620,7 +35645,7 @@ "zh-chs": "蒂格雷", "zh-cht": "蒂格雷", "xloc": [ - "default.handlebars->27->1212" + "default.handlebars->27->1214" ] }, { @@ -35660,7 +35685,7 @@ "zh-chs": "时间跨度", "zh-cht": "時間跨度", "xloc": [ - "default.handlebars->27->1668" + "default.handlebars->27->1671" ] }, { @@ -35680,7 +35705,7 @@ "zh-chs": "超时", "zh-cht": "超時", "xloc": [ - "default.handlebars->27->818", + "default.handlebars->27->820", "desktop.handlebars->3->10" ] }, @@ -35701,7 +35726,7 @@ "zh-chs": "标题", "zh-cht": "標題", "xloc": [ - "default.handlebars->27->488" + "default.handlebars->27->490" ] }, { @@ -35721,7 +35746,7 @@ "zh-chs": "要将计算机添加到{0},请运行以下命令。命令需要root凭证。", "zh-cht": "要將電腦新增到{0},請運行以下命令。命令需要root憑據。", "xloc": [ - "default.handlebars->27->394" + "default.handlebars->27->396" ] }, { @@ -35741,7 +35766,7 @@ "zh-chs": "要将新的英特尔®AMT设备添加到具有CIRA的设备组“ {0} ”中,请下载以下脚本档案,并使用 MeshCommander 来运行脚本来配置计算机。", "zh-cht": "要將新的Intel® AMT裝置新增到具有CIRA的裝置群“ {0} ”中,請下載以下腳本檔案並使用 MeshCommander 來運行腳本來配置電腦。", "xloc": [ - "default.handlebars->27->312" + "default.handlebars->27->314" ] }, { @@ -35761,7 +35786,7 @@ "zh-chs": "要将新的英特尔®AMT设备添加到具有CIRA的设备组“ {0} ”,请在英特尔AMT中加载以下证书作为可信赖的根凭证", "zh-cht": "要將新的Intel® AMT裝置新增到具有CIRA的裝置群“ {0} ”,請在Intel AMT中加載以下憑證作為可信賴的根憑證", "xloc": [ - "default.handlebars->27->315" + "default.handlebars->27->317" ] }, { @@ -35781,7 +35806,7 @@ "zh-chs": "要将新的英特尔®AMT设备添加到具有CIRA的设备组“ {0} ”,请在英特尔AMT中加载以下证书作为可信赖的根凭证,使用具有以下通用名称的客户端证书进行身份验证并连接到以下服务器。", "zh-cht": "要將新的Intel® AMT裝置新增到具有CIRA的裝置群“ {0} ”,請在Intel AMT中將以下憑證作為受信任的根加載,使用具有以下一般名稱的客戶端憑證進行身份驗證並連接到以下伺服器。", "xloc": [ - "default.handlebars->27->324" + "default.handlebars->27->326" ] }, { @@ -35801,7 +35826,7 @@ "zh-chs": "要将新计算机添加到设备组“ {0} ”,请下载网状代理并安装该计算机以进行管理。这代理中已嵌入了服务器和设备组信息。", "zh-cht": "要將新電腦新增到裝置群“ {0} ”,請下載mesh agent並安裝該電腦以進行管理。這agent中已嵌入了伺服器和裝置群訊息。", "xloc": [ - "default.handlebars->27->383" + "default.handlebars->27->385" ] }, { @@ -35821,7 +35846,7 @@ "zh-chs": "要将新计算机添加到设备组“ {0} ”,请下载网状代理并安装该计算机以进行管理。该代理安装程序中已嵌入了服务器和设备组讯息。", "zh-cht": "要將新電腦新增到裝置群“ {0} ”,請下載mesh agent並安裝該電腦以進行管理。該代理安裝程序中已嵌入了伺服器和裝置群訊息。", "xloc": [ - "default.handlebars->27->396" + "default.handlebars->27->398" ] }, { @@ -35841,7 +35866,7 @@ "zh-chs": "要删除此帐户,请在下面的两个框中键入帐户密码,然后单击确定。", "zh-cht": "要刪除此帳戶,請在下面的兩個框中鍵入帳戶密碼,然後單擊確定。", "xloc": [ - "default.handlebars->27->1248" + "default.handlebars->27->1250" ] }, { @@ -35944,7 +35969,7 @@ "zh-chs": "要删除网格代理,请下载以下档案,运行并单击“卸载”。", "zh-cht": "要刪除mash agent,請下載以下檔案,運行該檔案,然後單擊“卸載”。", "xloc": [ - "default.handlebars->27->400" + "default.handlebars->27->402" ] }, { @@ -35964,7 +35989,7 @@ "zh-chs": "要删除网格代理,请运行以下命令。需要根凭证。", "zh-cht": "要刪除網格代理,請運行以下命令。需要root憑據。", "xloc": [ - "default.handlebars->27->407" + "default.handlebars->27->409" ] }, { @@ -36004,7 +36029,7 @@ "zh-chs": "吐司通知", "zh-cht": "吐司通知", "xloc": [ - "default.handlebars->27->486" + "default.handlebars->27->488" ] }, { @@ -36320,7 +36345,7 @@ "zh-chs": "主题", "zh-cht": "主題", "xloc": [ - "default.handlebars->27->761" + "default.handlebars->27->763" ] }, { @@ -36380,7 +36405,7 @@ "zh-chs": "用于通过此服务器连接到设备的流量路由器", "zh-cht": "用於通過此伺服器連接到裝置的流量路由器", "xloc": [ - "default.handlebars->27->640" + "default.handlebars->27->642" ] }, { @@ -36420,7 +36445,7 @@ "zh-chs": "特松加", "zh-cht": "特松加", "xloc": [ - "default.handlebars->27->1213" + "default.handlebars->27->1215" ] }, { @@ -36440,7 +36465,7 @@ "zh-chs": "茨瓦纳", "zh-cht": "茨瓦納", "xloc": [ - "default.handlebars->27->1214" + "default.handlebars->27->1216" ] }, { @@ -36460,7 +36485,7 @@ "zh-chs": "土耳其", "zh-cht": "土耳其", "xloc": [ - "default.handlebars->27->1215" + "default.handlebars->27->1217" ] }, { @@ -36480,7 +36505,7 @@ "zh-chs": "土库曼文", "zh-cht": "土庫曼文", "xloc": [ - "default.handlebars->27->1216" + "default.handlebars->27->1218" ] }, { @@ -36520,13 +36545,13 @@ "zh-chs": "类型", "zh-cht": "類型", "xloc": [ - "default-mobile.handlebars->9->397", + "default-mobile.handlebars->9->398", "default-mobile.handlebars->9->98", - "default.handlebars->27->1268", - "default.handlebars->27->1310", - "default.handlebars->27->1365", - "default.handlebars->27->1368", - "default.handlebars->27->849", + "default.handlebars->27->1270", + "default.handlebars->27->1312", + "default.handlebars->27->1367", + "default.handlebars->27->1370", + "default.handlebars->27->851", "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3", "desktop.handlebars->p11->deskarea0->deskarea4->3" ] @@ -36548,7 +36573,7 @@ "zh-chs": "输入密钥名称,选择OTP框,然后按YubiKey™上的按钮。", "zh-cht": "輸入密鑰名稱,選擇OTP框,然後按YubiKey™上的按鈕。", "xloc": [ - "default.handlebars->27->1025" + "default.handlebars->27->1027" ] }, { @@ -36568,7 +36593,7 @@ "zh-chs": "输入要添加的密钥的名称。", "zh-cht": "輸入要新增的密鑰的名稱。", "xloc": [ - "default.handlebars->27->1022" + "default.handlebars->27->1024" ] }, { @@ -36588,8 +36613,8 @@ "zh-chs": "UDP路由", "zh-cht": "UDP路由", "xloc": [ - "default-mobile.handlebars->9->173", - "default.handlebars->27->259" + "default-mobile.handlebars->9->174", + "default.handlebars->27->261" ] }, { @@ -36609,7 +36634,7 @@ "zh-chs": "UTF8终端", "zh-cht": "UTF8終端", "xloc": [ - "default.handlebars->27->862" + "default.handlebars->27->864" ] }, { @@ -36629,7 +36654,7 @@ "zh-chs": "乌克兰", "zh-cht": "烏克蘭", "xloc": [ - "default.handlebars->27->1217" + "default.handlebars->27->1219" ] }, { @@ -36649,8 +36674,8 @@ "zh-chs": "在验证电邮地址之前,无法访问设备。这是密码恢复所必需的。转到“我的帐户”标签以更改和验证电邮地址。", "zh-cht": "在驗證電郵地址之前,無法訪問裝置。這是密碼恢復所必需的。轉到“我的帳戶”標籤以更改和驗證電郵地址。", "xloc": [ - "default.handlebars->27->1263", - "default.handlebars->27->547" + "default.handlebars->27->1265", + "default.handlebars->27->549" ] }, { @@ -36670,7 +36695,7 @@ "zh-chs": "在验证电邮地址之前,无法访问设备。这是密码恢复所必需的。转到“我的帐户”以更改并验证电邮地址。", "zh-cht": "在驗證電郵地址之前,無法訪問裝置。這是密碼恢復所必需的。轉到“我的帳戶”以更改並驗證電郵地址。", "xloc": [ - "default-mobile.handlebars->9->208", + "default-mobile.handlebars->9->209", "default-mobile.handlebars->9->94" ] }, @@ -36691,7 +36716,7 @@ "zh-chs": "在启用两因素身份验证之前,无法访问设备。这是额外的安全性所必需的。转到“我的帐户”,然后查看“帐户安全性”部分。", "zh-cht": "在啟用二因子身份驗證之前,無法訪問裝置。這是額外的安全性所必需的。轉到“我的帳戶”,然後查看“帳戶安全性”部分。", "xloc": [ - "default-mobile.handlebars->9->210", + "default-mobile.handlebars->9->211", "default-mobile.handlebars->9->96" ] }, @@ -36712,8 +36737,8 @@ "zh-chs": "在启用两因素身份验证之前,无法访问设备。这是额外的安全性所必需的。转到“我的帐户”标签,然后查看“帐户安全性”部分。", "zh-cht": "在啟用二因子身份驗證之前,無法訪問裝置。這是額外的安全性所必需的。轉到“我的帳戶”標籤,然後查看“帳戶安全性”部分。", "xloc": [ - "default.handlebars->27->1265", - "default.handlebars->27->549" + "default.handlebars->27->1267", + "default.handlebars->27->551" ] }, { @@ -36797,7 +36822,7 @@ "zh-chs": "无法扫描该地址范围。", "zh-cht": "無法掃描該地址範圍。", "xloc": [ - "default.handlebars->27->168" + "default.handlebars->27->169" ] }, { @@ -36839,10 +36864,10 @@ "zh-chs": "卸载", "zh-cht": "卸載", "xloc": [ - "default-mobile.handlebars->9->444", - "default.handlebars->27->1479", - "default.handlebars->27->687", - "default.handlebars->27->706" + "default-mobile.handlebars->9->445", + "default.handlebars->27->1481", + "default.handlebars->27->689", + "default.handlebars->27->708" ] }, { @@ -36862,9 +36887,9 @@ "zh-chs": "卸载代理", "zh-cht": "卸載代理", "xloc": [ - "default-mobile.handlebars->9->426", - "default.handlebars->27->453", - "default.handlebars->27->745" + "default-mobile.handlebars->9->427", + "default.handlebars->27->455", + "default.handlebars->27->747" ] }, { @@ -36884,7 +36909,7 @@ "zh-chs": "卸载代理/删除设备", "zh-cht": "卸載代理/刪除設備", "xloc": [ - "default.handlebars->27->1444" + "default.handlebars->27->1446" ] }, { @@ -36904,7 +36929,7 @@ "zh-chs": "卸载代理", "zh-cht": "卸載代理", "xloc": [ - "default.handlebars->27->769" + "default.handlebars->27->771" ] }, { @@ -36924,26 +36949,26 @@ "zh-chs": "未知", "zh-cht": "未知", "xloc": [ - "default-mobile.handlebars->9->204", + "default-mobile.handlebars->9->205", "default-mobile.handlebars->9->35", - "default-mobile.handlebars->9->355", - "default-mobile.handlebars->9->362", + "default-mobile.handlebars->9->356", + "default-mobile.handlebars->9->363", "default-mobile.handlebars->9->6", "default.handlebars->27->107", "default.handlebars->27->108", "default.handlebars->27->109", "default.handlebars->27->111", "default.handlebars->27->113", - "default.handlebars->27->1297", - "default.handlebars->27->1298", + "default.handlebars->27->1299", "default.handlebars->27->13", - "default.handlebars->27->1989", - "default.handlebars->27->2004", - "default.handlebars->27->2005", + "default.handlebars->27->1300", + "default.handlebars->27->1992", + "default.handlebars->27->2007", + "default.handlebars->27->2008", "default.handlebars->27->42", - "default.handlebars->27->448", - "default.handlebars->27->956", - "default.handlebars->27->963" + "default.handlebars->27->450", + "default.handlebars->27->958", + "default.handlebars->27->965" ] }, { @@ -36963,8 +36988,8 @@ "zh-chs": "未知#{0}", "zh-cht": "未知#{0}", "xloc": [ - "default-mobile.handlebars->9->391", - "default.handlebars->27->1304" + "default-mobile.handlebars->9->392", + "default.handlebars->27->1306" ] }, { @@ -36984,7 +37009,7 @@ "zh-chs": "未知动作", "zh-cht": "未知動作", "xloc": [ - "default.handlebars->27->2041" + "default.handlebars->27->2044" ] }, { @@ -37004,8 +37029,8 @@ "zh-chs": "未知设备", "zh-cht": "未知裝置", "xloc": [ - "default.handlebars->27->1853", - "default.handlebars->27->1977" + "default.handlebars->27->1856", + "default.handlebars->27->1980" ] }, { @@ -37025,9 +37050,9 @@ "zh-chs": "未知设备组", "zh-cht": "未知裝置群", "xloc": [ - "default.handlebars->27->1847", - "default.handlebars->27->1965", - "default.handlebars->27->2045" + "default.handlebars->27->1850", + "default.handlebars->27->1968", + "default.handlebars->27->2048" ] }, { @@ -37047,7 +37072,7 @@ "zh-chs": "未知群组", "zh-cht": "未知群組", "xloc": [ - "default.handlebars->27->2037" + "default.handlebars->27->2040" ] }, { @@ -37067,8 +37092,8 @@ "zh-chs": "未知状态", "zh-cht": "未知狀態", "xloc": [ - "default-mobile.handlebars->9->227", - "default.handlebars->27->571" + "default-mobile.handlebars->9->228", + "default.handlebars->27->573" ] }, { @@ -37088,7 +37113,7 @@ "zh-chs": "未知用户组", "zh-cht": "未知用戶群", "xloc": [ - "default.handlebars->27->1971" + "default.handlebars->27->1974" ] }, { @@ -37108,8 +37133,8 @@ "zh-chs": "未知版本和状态", "zh-cht": "未知版本和狀態", "xloc": [ - "default-mobile.handlebars->9->229", - "default.handlebars->27->573" + "default-mobile.handlebars->9->230", + "default.handlebars->27->575" ] }, { @@ -37129,9 +37154,9 @@ "zh-chs": "无限制", "zh-cht": "無限", "xloc": [ - "default.handlebars->27->181", - "default.handlebars->27->350", - "default.handlebars->27->364" + "default.handlebars->27->182", + "default.handlebars->27->352", + "default.handlebars->27->366" ] }, { @@ -37151,7 +37176,7 @@ "zh-chs": "解锁帐户", "zh-cht": "解鎖帳戶", "xloc": [ - "default.handlebars->27->1722" + "default.handlebars->27->1725" ] }, { @@ -37195,7 +37220,7 @@ "zh-chs": "最新", "zh-cht": "最新", "xloc": [ - "default.handlebars->27->2105" + "default.handlebars->27->2108" ] }, { @@ -37240,14 +37265,14 @@ "zh-cht": "上載檔案", "xloc": [ "default-mobile.handlebars->9->126", - "default-mobile.handlebars->9->305", - "default-mobile.handlebars->9->323", - "default-mobile.handlebars->9->326", - "default.handlebars->27->1557", - "default.handlebars->27->1565", - "default.handlebars->27->888", - "default.handlebars->27->912", - "default.handlebars->27->915", + "default-mobile.handlebars->9->306", + "default-mobile.handlebars->9->324", + "default-mobile.handlebars->9->327", + "default.handlebars->27->1559", + "default.handlebars->27->1567", + "default.handlebars->27->890", + "default.handlebars->27->914", + "default.handlebars->27->917", "default.handlebars->container->dialog->dialogBody->dialog3->d3localmode->1" ] }, @@ -37268,7 +37293,7 @@ "zh-chs": "上载网格代理核心", "zh-cht": "上載mesh agent核心", "xloc": [ - "default.handlebars->27->1008" + "default.handlebars->27->1010" ] }, { @@ -37288,7 +37313,7 @@ "zh-chs": "上载核心档案", "zh-cht": "上載核心檔案", "xloc": [ - "default.handlebars->27->1005" + "default.handlebars->27->1007" ] }, { @@ -37308,7 +37333,7 @@ "zh-chs": "上载默认服务器核心", "zh-cht": "上載默認伺服器核心", "xloc": [ - "default.handlebars->27->1002" + "default.handlebars->27->1004" ] }, { @@ -37348,7 +37373,7 @@ "zh-chs": "上传恢复核心", "zh-cht": "上傳恢復核心", "xloc": [ - "default.handlebars->27->1004" + "default.handlebars->27->1006" ] }, { @@ -37368,9 +37393,9 @@ "zh-chs": "上传将覆盖1个档案。继续?", "zh-cht": "上傳將覆蓋1個檔案。繼續?", "xloc": [ - "default-mobile.handlebars->9->324", - "default.handlebars->27->1566", - "default.handlebars->27->913" + "default-mobile.handlebars->9->325", + "default.handlebars->27->1568", + "default.handlebars->27->915" ] }, { @@ -37390,9 +37415,9 @@ "zh-chs": "上传将覆盖{0}个档案。继续?", "zh-cht": "上傳將覆蓋{0}個檔案。繼續?", "xloc": [ - "default-mobile.handlebars->9->325", - "default.handlebars->27->1567", - "default.handlebars->27->914" + "default-mobile.handlebars->9->326", + "default.handlebars->27->1569", + "default.handlebars->27->916" ] }, { @@ -37429,7 +37454,7 @@ "zh-chs": "上传:“{0}”", "zh-cht": "上傳:“{0}”", "xloc": [ - "default.handlebars->27->1617" + "default.handlebars->27->1619" ] }, { @@ -37449,7 +37474,7 @@ "zh-chs": "上索布族", "zh-cht": "上索布族", "xloc": [ - "default.handlebars->27->1218" + "default.handlebars->27->1220" ] }, { @@ -37469,7 +37494,7 @@ "zh-chs": "乌尔都文", "zh-cht": "烏爾都文", "xloc": [ - "default.handlebars->27->1219" + "default.handlebars->27->1221" ] }, { @@ -37533,8 +37558,8 @@ "zh-chs": "用过的", "zh-cht": "用過的", "xloc": [ - "default.handlebars->27->2031", - "default.handlebars->27->2033" + "default.handlebars->27->2034", + "default.handlebars->27->2036" ] }, { @@ -37554,13 +37579,13 @@ "zh-chs": "用户", "zh-cht": "用戶", "xloc": [ - "default.handlebars->27->1362", - "default.handlebars->27->1675", - "default.handlebars->27->1704", - "default.handlebars->27->1843", - "default.handlebars->27->2024", - "default.handlebars->27->228", - "default.handlebars->27->671" + "default.handlebars->27->1364", + "default.handlebars->27->1678", + "default.handlebars->27->1707", + "default.handlebars->27->1846", + "default.handlebars->27->2027", + "default.handlebars->27->229", + "default.handlebars->27->673" ] }, { @@ -37580,7 +37605,7 @@ "zh-chs": "用户+档案", "zh-cht": "用戶+檔案", "xloc": [ - "default.handlebars->27->1705" + "default.handlebars->27->1708" ] }, { @@ -37600,10 +37625,10 @@ "zh-chs": "用户帐户导入", "zh-cht": "用戶帳戶導入", "xloc": [ - "default.handlebars->27->1738", - "default.handlebars->27->1739", "default.handlebars->27->1741", - "default.handlebars->27->1743" + "default.handlebars->27->1742", + "default.handlebars->27->1744", + "default.handlebars->27->1746" ] }, { @@ -37623,7 +37648,7 @@ "zh-chs": "用户帐户", "zh-cht": "用戶帳戶", "xloc": [ - "default.handlebars->27->2050" + "default.handlebars->27->2053" ] }, { @@ -37643,9 +37668,9 @@ "zh-chs": "用户授权", "zh-cht": "用戶授權", "xloc": [ - "default-mobile.handlebars->9->399", - "default.handlebars->27->1360", - "default.handlebars->27->667" + "default-mobile.handlebars->9->400", + "default.handlebars->27->1362", + "default.handlebars->27->669" ] }, { @@ -37665,12 +37690,12 @@ "zh-chs": "用户同意", "zh-cht": "用戶同意", "xloc": [ - "default.handlebars->27->1330", - "default.handlebars->27->1834", - "default.handlebars->27->190", - "default.handlebars->27->1921", - "default.handlebars->27->609", - "default.handlebars->27->734" + "default.handlebars->27->1332", + "default.handlebars->27->1837", + "default.handlebars->27->191", + "default.handlebars->27->1924", + "default.handlebars->27->611", + "default.handlebars->27->736" ] }, { @@ -37690,12 +37715,12 @@ "zh-chs": "用户组", "zh-cht": "用戶群", "xloc": [ - "default.handlebars->27->1420", - "default.handlebars->27->1421", - "default.handlebars->27->1807", - "default.handlebars->27->1973", - "default.handlebars->27->1992", - "default.handlebars->27->670" + "default.handlebars->27->1422", + "default.handlebars->27->1423", + "default.handlebars->27->1810", + "default.handlebars->27->1976", + "default.handlebars->27->1995", + "default.handlebars->27->672" ] }, { @@ -37735,7 +37760,7 @@ "zh-chs": "用户组成员", "zh-cht": "用戶群成員", "xloc": [ - "default.handlebars->27->1970" + "default.handlebars->27->1973" ] }, { @@ -37755,7 +37780,7 @@ "zh-chs": "用户识别码", "zh-cht": "用戶識別碼", "xloc": [ - "default-mobile.handlebars->9->447" + "default-mobile.handlebars->9->448" ] }, { @@ -37775,9 +37800,9 @@ "zh-chs": "用户识别码", "zh-cht": "用戶識別碼", "xloc": [ - "default.handlebars->27->1482", - "default.handlebars->27->1888", - "default.handlebars->27->1889" + "default.handlebars->27->1484", + "default.handlebars->27->1891", + "default.handlebars->27->1892" ] }, { @@ -37797,8 +37822,8 @@ "zh-chs": "用户标识符", "zh-cht": "用戶標識符", "xloc": [ - "default.handlebars->27->1418", - "default.handlebars->27->1872" + "default.handlebars->27->1420", + "default.handlebars->27->1875" ] }, { @@ -37818,7 +37843,7 @@ "zh-chs": "用户列表输出", "zh-cht": "用戶列表輸出", "xloc": [ - "default.handlebars->27->1750" + "default.handlebars->27->1753" ] }, { @@ -37838,8 +37863,8 @@ "zh-chs": "用户名", "zh-cht": "用戶名", "xloc": [ - "default-mobile.handlebars->9->446", - "default.handlebars->27->1481" + "default-mobile.handlebars->9->447", + "default.handlebars->27->1483" ] }, { @@ -37914,7 +37939,7 @@ "zh-chs": "用户节", "zh-cht": "用戶節", "xloc": [ - "default.handlebars->27->2070" + "default.handlebars->27->2073" ] }, { @@ -38000,7 +38025,7 @@ "zh-chs": "用户“{0}”", "zh-cht": "用戶“{0}”", "xloc": [ - "default.handlebars->27->826", + "default.handlebars->27->828", "desktop.handlebars->3->18" ] }, @@ -38021,8 +38046,8 @@ "zh-chs": "用户浏览器值", "zh-cht": "用戶瀏覽器值", "xloc": [ - "default.handlebars->27->1230", - "default.handlebars->27->1232" + "default.handlebars->27->1232", + "default.handlebars->27->1234" ] }, { @@ -38042,7 +38067,7 @@ "zh-chs": "用户组已更改:{0}", "zh-cht": "用戶組已更改:{0}", "xloc": [ - "default.handlebars->27->1646" + "default.handlebars->27->1648" ] }, { @@ -38062,7 +38087,7 @@ "zh-chs": "已创建用户组:{0}", "zh-cht": "已創建用戶組:{0}", "xloc": [ - "default.handlebars->27->1636" + "default.handlebars->27->1638" ] }, { @@ -38082,7 +38107,7 @@ "zh-chs": "用户组成员身份已更改:{0}", "zh-cht": "用戶組成員身份已更改:{0}", "xloc": [ - "default.handlebars->27->1634" + "default.handlebars->27->1636" ] }, { @@ -38147,11 +38172,11 @@ "zh-chs": "用户名", "zh-cht": "用戶名", "xloc": [ - "default-mobile.handlebars->9->268", - "default.handlebars->27->1762", - "default.handlebars->27->289", - "default.handlebars->27->321", - "default.handlebars->27->755", + "default-mobile.handlebars->9->269", + "default.handlebars->27->1765", + "default.handlebars->27->291", + "default.handlebars->27->323", + "default.handlebars->27->757", "login2.handlebars->centralTable->1->0->logincell->loginpanel->1->5->1->0->1", "login2.handlebars->centralTable->1->0->logincell->loginpanel->1->5->1->0->1", "mstsc.handlebars->main->1->3->1->4->1->0", @@ -38223,9 +38248,9 @@ "zh-chs": "用户", "zh-cht": "用戶", "xloc": [ - "default.handlebars->27->1795", - "default.handlebars->27->1835", - "default.handlebars->27->2069", + "default.handlebars->27->1798", + "default.handlebars->27->1838", + "default.handlebars->27->2072", "default.handlebars->container->topbar->1->1->UsersSubMenuSpan->UsersSubMenu->1->0->UsersGeneral" ] }, @@ -38246,7 +38271,7 @@ "zh-chs": "用户会话", "zh-cht": "用戶節", "xloc": [ - "default.handlebars->27->2054" + "default.handlebars->27->2057" ] }, { @@ -38266,7 +38291,7 @@ "zh-chs": "VT100 +(F10 = ESC + [OY)", "zh-cht": "VT100 +(F10 = ESC + [OY)", "xloc": [ - "default.handlebars->27->867" + "default.handlebars->27->869" ] }, { @@ -38286,7 +38311,7 @@ "zh-chs": "验证电邮", "zh-cht": "驗證電郵", "xloc": [ - "default.handlebars->27->1717" + "default.handlebars->27->1720" ] }, { @@ -38306,7 +38331,7 @@ "zh-chs": "文达", "zh-cht": "文達", "xloc": [ - "default.handlebars->27->1220" + "default.handlebars->27->1222" ] }, { @@ -38326,10 +38351,10 @@ "zh-chs": "供应商", "zh-cht": "供應商", "xloc": [ - "default-mobile.handlebars->9->370", - "default-mobile.handlebars->9->373", - "default.handlebars->27->971", - "default.handlebars->27->974" + "default-mobile.handlebars->9->371", + "default-mobile.handlebars->9->374", + "default.handlebars->27->973", + "default.handlebars->27->976" ] }, { @@ -38370,7 +38395,7 @@ "zh-chs": "已验证", "zh-cht": "已驗證", "xloc": [ - "default.handlebars->27->1951" + "default.handlebars->27->1954" ] }, { @@ -38412,8 +38437,8 @@ "zh-cht": "驗證電話號碼", "xloc": [ "default-mobile.handlebars->9->63", - "default.handlebars->27->1009", - "default.handlebars->27->1713" + "default.handlebars->27->1011", + "default.handlebars->27->1716" ] }, { @@ -38433,7 +38458,7 @@ "zh-chs": "用户{0}的已验证电话号码", "zh-cht": "用戶{0}的已驗證電話號碼", "xloc": [ - "default.handlebars->27->1663" + "default.handlebars->27->1665" ] }, { @@ -38494,14 +38519,14 @@ "zh-chs": "版本", "zh-cht": "版", "xloc": [ - "default-mobile.handlebars->9->329", - "default-mobile.handlebars->9->354", - "default-mobile.handlebars->9->371", - "default-mobile.handlebars->9->376", - "default.handlebars->27->920", - "default.handlebars->27->955", - "default.handlebars->27->972", - "default.handlebars->27->977", + "default-mobile.handlebars->9->330", + "default-mobile.handlebars->9->355", + "default-mobile.handlebars->9->372", + "default-mobile.handlebars->9->377", + "default.handlebars->27->922", + "default.handlebars->27->957", + "default.handlebars->27->974", + "default.handlebars->27->979", "default.handlebars->container->column_l->p42->p42tbl->1->0->5" ] }, @@ -38522,7 +38547,7 @@ "zh-chs": "版本不兼容,请先升级您的MeshCentral", "zh-cht": "版本不兼容,請先升級你的MeshCentral", "xloc": [ - "default.handlebars->27->2101" + "default.handlebars->27->2104" ] }, { @@ -38564,7 +38589,7 @@ "zh-chs": "越南文", "zh-cht": "越南文", "xloc": [ - "default.handlebars->27->1221" + "default.handlebars->27->1223" ] }, { @@ -38604,7 +38629,7 @@ "zh-chs": "查看所有事件", "zh-cht": "查看所有事件", "xloc": [ - "default.handlebars->27->1787" + "default.handlebars->27->1790" ] }, { @@ -38624,8 +38649,8 @@ "zh-chs": "查看变更日志", "zh-cht": "查看變更日誌", "xloc": [ - "default.handlebars->27->2104", - "default.handlebars->27->2106" + "default.handlebars->27->2107", + "default.handlebars->27->2109" ] }, { @@ -38645,7 +38670,7 @@ "zh-chs": "查看有关此设备的注释", "zh-cht": "查看有關此裝置的註釋", "xloc": [ - "default.handlebars->27->625" + "default.handlebars->27->627" ] }, { @@ -38665,7 +38690,7 @@ "zh-chs": "查看有关此设备组的注释", "zh-cht": "查看有關此裝置群的註釋", "xloc": [ - "default.handlebars->27->1345" + "default.handlebars->27->1347" ] }, { @@ -38685,7 +38710,7 @@ "zh-chs": "查看有关此用户的注释", "zh-cht": "查看有關此用戶的註釋", "xloc": [ - "default.handlebars->27->1929" + "default.handlebars->27->1932" ] }, { @@ -38705,7 +38730,7 @@ "zh-chs": "沃拉普克", "zh-cht": "沃拉普克", "xloc": [ - "default.handlebars->27->1222" + "default.handlebars->27->1224" ] }, { @@ -38765,7 +38790,7 @@ "zh-chs": "正在等待用户授予访问权限...", "zh-cht": "正在等待用戶授予訪問權限...", "xloc": [ - "default.handlebars->27->815", + "default.handlebars->27->817", "desktop.handlebars->3->7" ] }, @@ -38786,8 +38811,8 @@ "zh-chs": "唤醒", "zh-cht": "喚醒", "xloc": [ - "default.handlebars->27->683", - "default.handlebars->27->702" + "default.handlebars->27->685", + "default.handlebars->27->704" ] }, { @@ -38807,10 +38832,10 @@ "zh-chs": "唤醒设备", "zh-cht": "喚醒裝置", "xloc": [ - "default-mobile.handlebars->9->422", - "default-mobile.handlebars->9->435", - "default.handlebars->27->1440", - "default.handlebars->27->1469" + "default-mobile.handlebars->9->423", + "default-mobile.handlebars->9->436", + "default.handlebars->27->1442", + "default.handlebars->27->1471" ] }, { @@ -38830,8 +38855,8 @@ "zh-chs": "唤醒", "zh-cht": "喚醒", "xloc": [ - "default-mobile.handlebars->9->260", - "default.handlebars->27->739" + "default-mobile.handlebars->9->261", + "default.handlebars->27->741" ] }, { @@ -38851,7 +38876,7 @@ "zh-chs": "唤醒设备", "zh-cht": "喚醒裝置", "xloc": [ - "default.handlebars->27->456" + "default.handlebars->27->458" ] }, { @@ -38871,7 +38896,7 @@ "zh-chs": "瓦隆", "zh-cht": "瓦隆", "xloc": [ - "default.handlebars->27->1223" + "default.handlebars->27->1225" ] }, { @@ -38891,7 +38916,7 @@ "zh-chs": "弱", "zh-cht": "弱", "xloc": [ - "default.handlebars->27->1277" + "default.handlebars->27->1279" ] }, { @@ -38936,8 +38961,8 @@ "zh-chs": "网络服务器", "zh-cht": "網絡伺服器", "xloc": [ - "default.handlebars->27->2090", - "default.handlebars->27->2091" + "default.handlebars->27->2093", + "default.handlebars->27->2094" ] }, { @@ -38957,7 +38982,7 @@ "zh-chs": "Web服务器请求", "zh-cht": "Web伺服器請求", "xloc": [ - "default.handlebars->27->2092" + "default.handlebars->27->2095" ] }, { @@ -38977,7 +39002,7 @@ "zh-chs": "Web套接字中继", "zh-cht": "Web插座中繼", "xloc": [ - "default.handlebars->27->2093" + "default.handlebars->27->2096" ] }, { @@ -38997,7 +39022,7 @@ "zh-chs": "网络RDP", "zh-cht": "網絡RDP", "xloc": [ - "default.handlebars->27->653" + "default.handlebars->27->655" ] }, { @@ -39059,7 +39084,7 @@ "zh-chs": "威尔士文", "zh-cht": "威爾士文", "xloc": [ - "default.handlebars->27->1224" + "default.handlebars->27->1226" ] }, { @@ -39079,7 +39104,7 @@ "zh-chs": "启用后,任何人都可以使用邀请代码通过以下公共连结将设备加入该设备组:", "zh-cht": "啟用後,任何人都可以使用邀請代碼通過以下公共鏈結將裝置加入該裝置群:", "xloc": [ - "default.handlebars->27->1490" + "default.handlebars->27->1492" ] }, { @@ -39100,7 +39125,7 @@ "zh-cht": "啟用後,每次登入時,你都可以選擇向電郵帳戶接收登入保安編碼,以提高安全性。", "xloc": [ "default-mobile.handlebars->9->69", - "default.handlebars->27->1016" + "default.handlebars->27->1018" ] }, { @@ -39120,7 +39145,7 @@ "zh-chs": "下次登录时将更改。", "zh-cht": "下次登入時將更改。", "xloc": [ - "default.handlebars->27->1901" + "default.handlebars->27->1904" ] }, { @@ -39314,7 +39339,7 @@ "zh-chs": "Win32可执行档案", "zh-cht": "Win32可執行檔案", "xloc": [ - "default.handlebars->27->783" + "default.handlebars->27->785" ] }, { @@ -39334,7 +39359,7 @@ "zh-chs": "WinSCP", "zh-cht": "WinSCP", "xloc": [ - "default.handlebars->27->649" + "default.handlebars->27->651" ] }, { @@ -39354,7 +39379,7 @@ "zh-chs": "窗口", "zh-cht": "視窗", "xloc": [ - "default.handlebars->27->372" + "default.handlebars->27->374" ] }, { @@ -39374,8 +39399,8 @@ "zh-chs": "Windows(.exe)", "zh-cht": "Windows(.exe)", "xloc": [ - "default.handlebars->27->386", - "default.handlebars->27->403" + "default.handlebars->27->388", + "default.handlebars->27->405" ] }, { @@ -39395,7 +39420,7 @@ "zh-chs": "Windows(32位)", "zh-cht": "Windows(32位)", "xloc": [ - "default.handlebars->27->787" + "default.handlebars->27->789" ] }, { @@ -39415,7 +39440,7 @@ "zh-chs": "Windows(64位)", "zh-cht": "Windows(64位)", "xloc": [ - "default.handlebars->27->788" + "default.handlebars->27->790" ] }, { @@ -39435,7 +39460,7 @@ "zh-chs": "Windows(卸载)", "zh-cht": "Windows(卸載)", "xloc": [ - "default.handlebars->27->376" + "default.handlebars->27->378" ] }, { @@ -39579,8 +39604,8 @@ "zh-chs": "Windows命令提示", "zh-cht": "Windows命令提示", "xloc": [ - "default.handlebars->27->470", - "default.handlebars->27->749" + "default.handlebars->27->472", + "default.handlebars->27->751" ] }, { @@ -39642,8 +39667,8 @@ "zh-chs": "Windows PowerShell", "zh-cht": "Windows PowerShell", "xloc": [ - "default.handlebars->27->471", - "default.handlebars->27->750" + "default.handlebars->27->473", + "default.handlebars->27->752" ] }, { @@ -39663,7 +39688,7 @@ "zh-chs": "仅Windows", "zh-cht": "僅Windows", "xloc": [ - "default.handlebars->27->341" + "default.handlebars->27->343" ] }, { @@ -39683,8 +39708,8 @@ "zh-chs": "Windows x64(.exe)", "zh-cht": "Windows x64(.exe)", "xloc": [ - "default.handlebars->27->390", - "default.handlebars->27->406" + "default.handlebars->27->392", + "default.handlebars->27->408" ] }, { @@ -39724,7 +39749,7 @@ "zh-chs": "换行:关", "zh-cht": "换行:關", "xloc": [ - "default.handlebars->27->907" + "default.handlebars->27->909" ] }, { @@ -39744,7 +39769,7 @@ "zh-chs": "换行:开", "zh-cht": "换行:開", "xloc": [ - "default.handlebars->27->906" + "default.handlebars->27->908" ] }, { @@ -39764,7 +39789,7 @@ "zh-chs": "为此设备写一个事件", "zh-cht": "為此裝置寫一個事件", "xloc": [ - "default.handlebars->27->627" + "default.handlebars->27->629" ] }, { @@ -39825,7 +39850,7 @@ "zh-chs": "XTerm", "zh-cht": "XTerm", "xloc": [ - "default.handlebars->27->643" + "default.handlebars->27->645" ] }, { @@ -39845,7 +39870,7 @@ "zh-chs": "科萨", "zh-cht": "科薩", "xloc": [ - "default.handlebars->27->1225" + "default.handlebars->27->1227" ] }, { @@ -39865,7 +39890,7 @@ "zh-chs": "意第绪文", "zh-cht": "意第緒文", "xloc": [ - "default.handlebars->27->1226" + "default.handlebars->27->1228" ] }, { @@ -39983,7 +40008,7 @@ "zh-chs": "YubiKey™ OTP", "zh-cht": "YubiKey™OTP", "xloc": [ - "default.handlebars->27->1028" + "default.handlebars->27->1030" ] }, { @@ -40023,7 +40048,7 @@ "zh-chs": "邮编档案名", "zh-cht": "郵編檔案名", "xloc": [ - "default.handlebars->27->891" + "default.handlebars->27->893" ] }, { @@ -40043,7 +40068,7 @@ "zh-chs": "缩放至适合范围", "zh-cht": "縮放至適合範圍", "xloc": [ - "default.handlebars->27->536" + "default.handlebars->27->538" ] }, { @@ -40063,8 +40088,8 @@ "zh-chs": "放大到一定程度", "zh-cht": "放大到一定程度", "xloc": [ - "default.handlebars->27->533", - "default.handlebars->27->539" + "default.handlebars->27->535", + "default.handlebars->27->541" ] }, { @@ -40084,8 +40109,8 @@ "zh-chs": "缩小到一定程度", "zh-cht": "縮小到一定程度", "xloc": [ - "default.handlebars->27->534", - "default.handlebars->27->540" + "default.handlebars->27->536", + "default.handlebars->27->542" ] }, { @@ -40105,7 +40130,7 @@ "zh-chs": "祖鲁族", "zh-cht": "祖魯族", "xloc": [ - "default.handlebars->27->1227" + "default.handlebars->27->1229" ] }, { @@ -40373,7 +40398,7 @@ "zh-chs": "\\\\'", "zh-cht": "\\\\'", "xloc": [ - "default.handlebars->27->2102" + "default.handlebars->27->2105" ] }, { @@ -40393,8 +40418,8 @@ "zh-chs": "A:", "zh-cht": "A:", "xloc": [ - "default.handlebars->27->515", - "default.handlebars->27->516" + "default.handlebars->27->517", + "default.handlebars->27->518" ] }, { @@ -40414,8 +40439,8 @@ "zh-chs": "加一", "zh-cht": "加一", "xloc": [ - "default.handlebars->27->225", - "default.handlebars->27->227" + "default.handlebars->27->226", + "default.handlebars->27->228" ] }, { @@ -40435,7 +40460,7 @@ "zh-chs": "管理员", "zh-cht": "管理員", "xloc": [ - "default.handlebars->27->290" + "default.handlebars->27->292" ] }, { @@ -40496,8 +40521,8 @@ "zh-chs": "atag:", "zh-cht": "atag:", "xloc": [ - "default.handlebars->27->513", - "default.handlebars->27->514" + "default.handlebars->27->515", + "default.handlebars->27->516" ] }, { @@ -40599,7 +40624,7 @@ "zh-chs": "console.txt", "zh-cht": "console.txt", "xloc": [ - "default.handlebars->27->999" + "default.handlebars->27->1001" ] }, { @@ -40620,7 +40645,7 @@ "zh-cht": "複製", "xloc": [ "default-mobile.handlebars->9->130", - "default.handlebars->27->1562" + "default.handlebars->27->1564" ] }, { @@ -40660,8 +40685,8 @@ "zh-chs": "devicelist.csv", "zh-cht": "devicelist.csv", "xloc": [ - "default.handlebars->27->492", - "default.handlebars->27->497" + "default.handlebars->27->494", + "default.handlebars->27->499" ] }, { @@ -40681,8 +40706,8 @@ "zh-chs": "devicelist.json", "zh-cht": "devicelist.json", "xloc": [ - "default.handlebars->27->494", - "default.handlebars->27->498" + "default.handlebars->27->496", + "default.handlebars->27->500" ] }, { @@ -40719,8 +40744,8 @@ "zh-chs": "eventslist.csv", "zh-cht": "eventslist.csv", "xloc": [ - "default.handlebars->27->1682", - "default.handlebars->27->1687" + "default.handlebars->27->1685", + "default.handlebars->27->1690" ] }, { @@ -40740,8 +40765,8 @@ "zh-chs": "eventslist.json", "zh-cht": "eventslist.json", "xloc": [ - "default.handlebars->27->1684", - "default.handlebars->27->1688" + "default.handlebars->27->1687", + "default.handlebars->27->1691" ] }, { @@ -40761,7 +40786,7 @@ "zh-chs": "example@email.com", "zh-cht": "example@email.com", "xloc": [ - "default.handlebars->27->337" + "default.handlebars->27->339" ] }, { @@ -40781,8 +40806,8 @@ "zh-chs": "免费", "zh-cht": "免費", "xloc": [ - "default.handlebars->27->2062", - "default.handlebars->27->2065" + "default.handlebars->27->2065", + "default.handlebars->27->2068" ] }, { @@ -40804,8 +40829,8 @@ "xloc": [ "default-mobile.handlebars->9->141", "default-mobile.handlebars->9->142", - "default.handlebars->27->507", - "default.handlebars->27->508" + "default.handlebars->27->509", + "default.handlebars->27->510" ] }, { @@ -40827,8 +40852,8 @@ "xloc": [ "default-mobile.handlebars->9->139", "default-mobile.handlebars->9->140", - "default.handlebars->27->505", - "default.handlebars->27->506" + "default.handlebars->27->507", + "default.handlebars->27->508" ] }, { @@ -40997,7 +41022,7 @@ "zh-chs": "id, name, email, creation, lastlogin, groups, authfactors", "zh-cht": "id, name, email, creation, lastlogin, groups, authfactors", "xloc": [ - "default.handlebars->27->1751" + "default.handlebars->27->1754" ] }, { @@ -41017,7 +41042,7 @@ "zh-chs": "id, name, rname, host, icon, ip, osdesc, state, gruppenname, conn, pwr", "zh-cht": "id, name, rname, host, icon, ip, osdesc, state, gruppenname, conn, pwr", "xloc": [ - "default.handlebars->27->496" + "default.handlebars->27->498" ] }, { @@ -41039,8 +41064,8 @@ "xloc": [ "default-mobile.handlebars->9->137", "default-mobile.handlebars->9->138", - "default.handlebars->27->503", - "default.handlebars->27->504" + "default.handlebars->27->505", + "default.handlebars->27->506" ] }, { @@ -41120,7 +41145,7 @@ "zh-chs": "k max,默认为空白", "zh-cht": "k max,默認為空白", "xloc": [ - "default.handlebars->27->1779" + "default.handlebars->27->1782" ] }, { @@ -41181,7 +41206,7 @@ "zh-chs": "macOS (64位)", "zh-cht": "macOS(64位)", "xloc": [ - "default.handlebars->27->791" + "default.handlebars->27->793" ] }, { @@ -41241,7 +41266,7 @@ "zh-chs": "MeshAgent", "zh-cht": "MeshAgent", "xloc": [ - "default.handlebars->27->410" + "default.handlebars->27->412" ] }, { @@ -41262,7 +41287,7 @@ "zh-cht": "移動", "xloc": [ "default-mobile.handlebars->9->131", - "default.handlebars->27->1563" + "default.handlebars->27->1565" ] }, { @@ -41282,7 +41307,7 @@ "zh-chs": "无VNC", "zh-cht": "無VNC", "xloc": [ - "default.handlebars->27->651" + "default.handlebars->27->653" ] }, { @@ -41302,7 +41327,7 @@ "zh-chs": "noVNC连接", "zh-cht": "noVNC連接", "xloc": [ - "default.handlebars->27->520" + "default.handlebars->27->522" ] }, { @@ -41322,7 +41347,7 @@ "zh-chs": "noVNC远程连接端口:", "zh-cht": "noVNC遠程連接端口:", "xloc": [ - "default.handlebars->27->519" + "default.handlebars->27->521" ] }, { @@ -41359,7 +41384,7 @@ "zh-chs": "servererrors.txt", "zh-cht": "servererrors.txt", "xloc": [ - "default.handlebars->27->1301" + "default.handlebars->27->1303" ] }, { @@ -41379,7 +41404,7 @@ "zh-chs": "servertrace.csv", "zh-cht": "servertrace.csv", "xloc": [ - "default.handlebars->27->2100" + "default.handlebars->27->2103" ] }, { @@ -41401,8 +41426,8 @@ "xloc": [ "default-mobile.handlebars->9->145", "default-mobile.handlebars->9->146", - "default.handlebars->27->511", - "default.handlebars->27->512" + "default.handlebars->27->513", + "default.handlebars->27->514" ] }, { @@ -41424,8 +41449,8 @@ "xloc": [ "default-mobile.handlebars->9->143", "default-mobile.handlebars->9->144", - "default.handlebars->27->509", - "default.handlebars->27->510" + "default.handlebars->27->511", + "default.handlebars->27->512" ] }, { @@ -41445,7 +41470,7 @@ "zh-chs": "time, conn.agent, conn.users, conn.usersessions, conn.relaysession, conn.intelamt, mem.external, mem.heapused, mem.heaptotal, mem.rss", "zh-cht": "time, conn.agent, conn.users, conn.usersessions, conn.relaysession, conn.intelamt, mem.external, mem.heapused, mem.heaptotal, mem.rss", "xloc": [ - "default.handlebars->27->2078" + "default.handlebars->27->2081" ] }, { @@ -41465,7 +41490,7 @@ "zh-chs": "时间,来源,信息", "zh-cht": "時間,來源,訊息", "xloc": [ - "default.handlebars->27->2099" + "default.handlebars->27->2102" ] }, { @@ -41502,8 +41527,8 @@ "zh-chs": "总计", "zh-cht": "總", "xloc": [ - "default.handlebars->27->2063", - "default.handlebars->27->2066" + "default.handlebars->27->2066", + "default.handlebars->27->2069" ] }, { @@ -41525,8 +41550,8 @@ "xloc": [ "default-mobile.handlebars->9->135", "default-mobile.handlebars->9->136", - "default.handlebars->27->501", - "default.handlebars->27->502" + "default.handlebars->27->503", + "default.handlebars->27->504" ] }, { @@ -41565,8 +41590,8 @@ "xloc": [ "default-mobile.handlebars->9->133", "default-mobile.handlebars->9->134", - "default.handlebars->27->499", - "default.handlebars->27->500" + "default.handlebars->27->501", + "default.handlebars->27->502" ] }, { @@ -41586,8 +41611,8 @@ "zh-chs": "userlist.csv", "zh-cht": "userlist.csv", "xloc": [ - "default.handlebars->27->1747", - "default.handlebars->27->1752" + "default.handlebars->27->1750", + "default.handlebars->27->1755" ] }, { @@ -41607,8 +41632,8 @@ "zh-chs": "userlist.json", "zh-cht": "userlist.json", "xloc": [ - "default.handlebars->27->1749", - "default.handlebars->27->1753" + "default.handlebars->27->1752", + "default.handlebars->27->1756" ] }, { @@ -41628,7 +41653,7 @@ "zh-chs": "utc,时间,类型,指令,用户,设备,消息", "zh-cht": "utc,時間,類型,指令,用戶,裝置,消息", "xloc": [ - "default.handlebars->27->1686" + "default.handlebars->27->1689" ] }, { @@ -41668,8 +41693,8 @@ "zh-chs": "{0} Gb", "zh-cht": "{0} Gb", "xloc": [ - "default.handlebars->27->1537", - "default.handlebars->27->1542" + "default.handlebars->27->1539", + "default.handlebars->27->1544" ] }, { @@ -41689,9 +41714,9 @@ "zh-chs": "{0} Kb", "zh-cht": "{0} Kb", "xloc": [ - "default.handlebars->27->1535", - "default.handlebars->27->1540", - "default.handlebars->27->2003" + "default.handlebars->27->1537", + "default.handlebars->27->1542", + "default.handlebars->27->2006" ] }, { @@ -41711,10 +41736,10 @@ "zh-chs": "{0} Mb", "zh-cht": "{0} Mb", "xloc": [ - "default-mobile.handlebars->9->387", - "default.handlebars->27->1536", - "default.handlebars->27->1541", - "default.handlebars->27->988" + "default-mobile.handlebars->9->388", + "default.handlebars->27->1538", + "default.handlebars->27->1543", + "default.handlebars->27->990" ] }, { @@ -41734,8 +41759,8 @@ "zh-chs": "{0} Mb,{1} Mhz", "zh-cht": "{0} Mb,{1} Mhz", "xloc": [ - "default-mobile.handlebars->9->382", - "default.handlebars->27->983" + "default-mobile.handlebars->9->383", + "default.handlebars->27->985" ] }, { @@ -41755,7 +41780,7 @@ "zh-chs": "{0}个活跃会话", "zh-cht": "{0}個活躍節", "xloc": [ - "default.handlebars->27->1941" + "default.handlebars->27->1944" ] }, { @@ -41775,8 +41800,8 @@ "zh-chs": "{0} b", "zh-cht": "{0} b", "xloc": [ - "default.handlebars->27->1534", - "default.handlebars->27->1539" + "default.handlebars->27->1536", + "default.handlebars->27->1541" ] }, { @@ -41797,8 +41822,8 @@ "zh-cht": "{0}個字節", "xloc": [ "default-mobile.handlebars->9->119", - "default.handlebars->27->1550", - "default.handlebars->27->2018", + "default.handlebars->27->1552", + "default.handlebars->27->2021", "download.handlebars->3->2", "download2.handlebars->5->2" ] @@ -41820,7 +41845,7 @@ "zh-chs": "剩余{0}个字节", "zh-cht": "剩餘{0}個字節", "xloc": [ - "default.handlebars->27->1529" + "default.handlebars->27->1531" ] }, { @@ -41840,7 +41865,7 @@ "zh-chs": "{0}个连接", "zh-cht": "{0}個連接", "xloc": [ - "default.handlebars->27->825", + "default.handlebars->27->827", "desktop.handlebars->3->17" ] }, @@ -41861,7 +41886,7 @@ "zh-chs": "剩余{0} GB", "zh-cht": "剩餘{0} GB", "xloc": [ - "default.handlebars->27->1532" + "default.handlebars->27->1534" ] }, { @@ -41881,7 +41906,7 @@ "zh-chs": "{0}个群组", "zh-cht": "{0}個群組", "xloc": [ - "default.handlebars->27->1906" + "default.handlebars->27->1909" ] }, { @@ -41901,7 +41926,7 @@ "zh-chs": "{0}小時", "zh-cht": "{0}小時", "xloc": [ - "default.handlebars->27->177" + "default.handlebars->27->178" ] }, { @@ -41938,7 +41963,7 @@ "zh-chs": "剩余{0}千字节", "zh-cht": "剩餘{0}千字節", "xloc": [ - "default.handlebars->27->1530" + "default.handlebars->27->1532" ] }, { @@ -41980,7 +42005,7 @@ "zh-chs": "剩余{0}兆字节", "zh-cht": "剩餘{0}兆字節", "xloc": [ - "default.handlebars->27->1531" + "default.handlebars->27->1533" ] }, { @@ -42020,7 +42045,7 @@ "zh-chs": "{0}未显示更多用户,请使用搜索框查找用户...", "zh-cht": "{0}未顯示更多用戶,請使用搜索框查找用戶...", "xloc": [ - "default.handlebars->27->1696" + "default.handlebars->27->1699" ] }, { @@ -42040,7 +42065,7 @@ "zh-chs": "{0}个节点", "zh-cht": "{0}個節點", "xloc": [ - "default.handlebars->27->416" + "default.handlebars->27->418" ] }, { @@ -42178,19 +42203,19 @@ "zh-chs": "{0}节", "zh-cht": "{0}節", "xloc": [ - "default-mobile.handlebars->9->160", - "default-mobile.handlebars->9->163", - "default-mobile.handlebars->9->166", - "default-mobile.handlebars->9->169", - "default-mobile.handlebars->9->172", - "default-mobile.handlebars->9->175", - "default.handlebars->27->1700", - "default.handlebars->27->246", - "default.handlebars->27->249", - "default.handlebars->27->252", - "default.handlebars->27->255", - "default.handlebars->27->258", - "default.handlebars->27->261" + "default-mobile.handlebars->9->161", + "default-mobile.handlebars->9->164", + "default-mobile.handlebars->9->167", + "default-mobile.handlebars->9->170", + "default-mobile.handlebars->9->173", + "default-mobile.handlebars->9->176", + "default.handlebars->27->1703", + "default.handlebars->27->248", + "default.handlebars->27->251", + "default.handlebars->27->254", + "default.handlebars->27->257", + "default.handlebars->27->260", + "default.handlebars->27->263" ] }, { @@ -42210,7 +42235,7 @@ "zh-chs": "{0}设置(.msh)", "zh-cht": "{0}设置(.msh)", "xloc": [ - "default.handlebars->27->393" + "default.handlebars->27->395" ] }, { @@ -42272,7 +42297,7 @@ "zh-chs": "{0}个用户", "zh-cht": "{0}個用戶", "xloc": [ - "default.handlebars->27->264" + "default.handlebars->27->266" ] }, { @@ -42332,7 +42357,7 @@ "zh-chs": "{0}k在1档案内。最多{1}k", "zh-cht": "{0}k在1檔案內。最多{1}k", "xloc": [ - "default.handlebars->27->1544" + "default.handlebars->27->1546" ] }, { @@ -42352,7 +42377,7 @@ "zh-chs": "{1}k在{0}个档案中。最多{2}k", "zh-cht": "{1}k在{0}個檔案中。最多{2}k", "xloc": [ - "default.handlebars->27->1543" + "default.handlebars->27->1545" ] }, { diff --git a/views/default-mobile.handlebars b/views/default-mobile.handlebars index 7ca528c7..a4049a11 100644 --- a/views/default-mobile.handlebars +++ b/views/default-mobile.handlebars @@ -570,6 +570,7 @@
+
@@ -1488,6 +1489,8 @@ // If we are looking at the sessions dialog box for this device now, update it //if (xxdialogTag == ('SESSIONS-' + message.event.nodeid)) { showDeviceSessions(message.event.nodeid, true); } + //if (xxdialogTag == ('MESSAGES-' + message.event.nodeid)) { showDeviceMessages(message.event.nodeid, true); } + if (xxdialogTag == ('HELPREQ-' + message.event.nodeid)) { showDeviceHelpRequests(message.event.nodeid, true); } break; } @@ -2319,6 +2322,11 @@ devNotifySub += ''; } + // Help is required + if (node.sessions.help != null) { + devNotifySub += ''; + } + // Battery state if (node.sessions.battery != null) { var bat = node.sessions.battery; @@ -2353,6 +2361,18 @@ } } + // Show device help requests + function showDeviceHelpRequests(nodeid, force, e) { + if (e) haltEvent(e); + if (xxdialogMode && !force) return false; + var node = null, x = ''; + if (nodeid == null) { node = currentNode; } else { node = getNodeFromId(nodeid); } + if ((node == null) || (node.sessions == null)) { setDialogMode(0); return false; } + if (node.sessions.help != null) { for (var j in node.sessions.help) { x += '
' + EscapeHtml(j) + '
' + EscapeHtml(node.sessions.help[j]) + '
'; } } + if (x != '') { setDialogMode(2, "Help Requests" + ' - ' + EscapeHtml(node.name), 1, null, x, 'HELPREQ-' + node._id); } else { setDialogMode(0); } + return false; + } + // Show currently active sessions on this device function showDeviceSessions() { if (xxdialogMode || (currentNode == null)) return; @@ -2485,6 +2505,7 @@ // Setup session notification QV('p10deviceNotify', (currentNode.sessions != null) && ((node.sessions.kvm != null) || (node.sessions.terminal != null) || (node.sessions.files != null) || (node.sessions.tcp != null) || (node.sessions.udp != null))); QV('p10deviceStar', stars[currentNode._id] == 1); + QV('p10deviceHelp', (currentNode.sessions != null) && (currentNode.sessions.help != null)) if ((currentNode.sessions != null) && (currentNode.sessions.msg != null)) { QV('p10deviceMsg', true); QH('p10deviceMsg', Object.keys(currentNode.sessions.msg).length); } else { QV('p10deviceMsg', false); } // Device Battery diff --git a/views/default.handlebars b/views/default.handlebars index a6c7cc5a..f913055b 100644 --- a/views/default.handlebars +++ b/views/default.handlebars @@ -244,6 +244,7 @@ + @@ -511,6 +512,7 @@
+
@@ -2496,7 +2498,18 @@ mainUpdate(32); } if (message.event.noact) break; // Take no action on this event + switch (message.event.action) { + case 'agentlog': { + if (message.event.msgid == 98) { + // This is a agent help request, popup a notification. + if (GetNodeRights(message.event.nodeid) > 0) { + var n = getNodeFromId(message.event.nodeid); + addNotification({ text: format("Help requested from {0}: {1}", message.event.msgArgs[0], message.event.msgArgs[1]), title: n.name, icon: n.icon, nodeid: message.event.nodeid }); + } + } + break; + } case 'recording': { if (p52recordings != null) { p52recordings.unshift(message.event); message.event.present = 1; updateRecordings(); } break; @@ -2953,9 +2966,10 @@ // If we are looking at the sessions dialog box for this device now, update it if (xxdialogTag == ('SESSIONS-' + message.event.nodeid)) { showDeviceSessions(message.event.nodeid, true); } if (xxdialogTag == ('MESSAGES-' + message.event.nodeid)) { showDeviceMessages(message.event.nodeid, true); } + if (xxdialogTag == ('HELPREQ-' + message.event.nodeid)) { showDeviceHelpRequests(message.event.nodeid, true); } - // If we are filtering on sessions, update the visible devices - if (Q('DevFilterSelect').value == 2) { mainUpdate(1); } + // If we are filtering on sessions or help, update the visible devices + if ((Q('DevFilterSelect').value == 2) || (Q('DevFilterSelect').value == 6)) { mainUpdate(1); } break; } case 'stopped': { // Server is stopping. @@ -3459,6 +3473,15 @@ } } + // Help is required + if (node.sessions.help != null) { + if (view == 2) { + devNotifySub += ''; + } else { + devNotifySub += ''; + } + } + // Battery state if ((node.sessions.battery != null) && (view == 1)) { var bat = node.sessions.battery; @@ -3732,6 +3755,18 @@ oldviewmode = view; } + // Show device help requests + function showDeviceHelpRequests(nodeid, force, e) { + if (e) haltEvent(e); + if (xxdialogMode && !force) return false; + var node = null, x = ''; + if (nodeid == null) { node = currentNode; } else { node = getNodeFromId(nodeid); } + if ((node == null) || (node.sessions == null)) { setDialogMode(0); return false; } + if (node.sessions.help != null) { for (var j in node.sessions.help) { x += '
' + EscapeHtml(j) + '
' + EscapeHtml(node.sessions.help[j]) + '
'; } } + if (x != '') { setDialogMode(2, "Help Requests" + ' - ' + EscapeHtml(node.name), 1, null, x, 'HELPREQ-' + node._id); } else { setDialogMode(0); } + return false; + } + // Show currently active sessions on this device function showDeviceSessions(nodeid, force, e) { if (e) haltEvent(e); @@ -4634,6 +4669,7 @@ if (devFilter == 3) { for (var d in nodes) { if (stars[nodes[d]._id] != 1) { nodes[d].v = false; } } } // Starred if (devFilter == 4) { for (var d in nodes) { if (nodes[d].intelamt == null) { nodes[d].v = false; } } } // Intel AMT if (devFilter == 5) { for (var d in nodes) { if ((nodes[d].conn != null) && (nodes[d].conn != 0)) { nodes[d].v = false; } } } // Offline + if (devFilter == 6) { for (var d in nodes) { var n = nodes[d]; if ((n.sessions == null) || (n.sessions.help == null)) { n.v = false; } } } // Sessions } var contextelement = null; @@ -5498,6 +5534,7 @@ // Device Notification QV('p10deviceNotify', (currentNode.sessions != null) && ((currentNode.sessions.kvm != null) || (currentNode.sessions.terminal != null) || (currentNode.sessions.files != null) || (currentNode.sessions.tcp != null) || (currentNode.sessions.udp != null))); QV('p10deviceStar', stars[currentNode._id] == 1); + QV('p10deviceHelp', (currentNode.sessions != null) && (currentNode.sessions.help != null)) if ((currentNode.sessions != null) && (currentNode.sessions.msg != null)) { QV('p10deviceMsg', true); QH('p10deviceMsg', Object.keys(currentNode.sessions.msg).length); } else { QV('p10deviceMsg', false); } // Device Battery @@ -10699,7 +10736,8 @@ 94: "Removed security key", 95: "Added security key", 96: "Verified phone number of user {0}", - 97: "Removed phone number of user {0}" + 97: "Removed phone number of user {0}", + 98: "Help Requested, user: {0}, details: {1}" }; // Highlights the device being hovered