diff --git a/amtmanager.js b/amtmanager.js
index eeff17c4..c29834a8 100644
--- a/amtmanager.js
+++ b/amtmanager.js
@@ -1130,7 +1130,7 @@ module.exports.CreateAmtManager = function (parent) {
if (responses['IPS_HTTPProxyService'].status == 400) { delete responses['IPS_HTTPProxyService']; }
for (var i in responses) { if (responses[i].status != 200) { status = responses[i].status; } }
}
- if (status != 200) { dev.consoleMsg("Failed get CIRA state (" + status + ")."); removeAmtDevice(dev); return; }
+ if (status != 200) { dev.consoleMsg("Failed to get CIRA state (" + status + ")."); removeAmtDevice(dev); return; }
if ((responses['AMT_UserInitiatedConnectionService'] == null) || (responses['AMT_UserInitiatedConnectionService'].response == null)) { dev.consoleMsg("Invalid CIRA state."); removeAmtDevice(dev); return; }
dev.cira = {};
diff --git a/meshuser.js b/meshuser.js
index 09d2a41d..306c9515 100644
--- a/meshuser.js
+++ b/meshuser.js
@@ -18,7 +18,6 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
const fs = require('fs');
const path = require('path');
const common = parent.common;
-
// Cross domain messages, for cross-domain administrators only.
const allowedCrossDomainMessages = ['accountcreate', 'accountremove', 'accountchange', 'createusergroup', 'deleteusergroup', 'usergroupchange'];
@@ -3306,11 +3305,11 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
if (common.validateObject(command.amtpolicy) == false) break; // Check the amtpolicy
if (common.validateInt(command.amtpolicy.type, 0, 4) == false) break; // Check the amtpolicy.type
if (command.amtpolicy.type === 2) {
- if (common.validateString(command.amtpolicy.password, 0, 32) == false) break; // Check the amtpolicy.password
+ if ((command.amtpolicy.password != null) && (common.validateString(command.amtpolicy.password, 0, 32) == false)) break; // Check the amtpolicy.password
if ((command.amtpolicy.badpass != null) && common.validateInt(command.amtpolicy.badpass, 0, 1) == false) break; // Check the amtpolicy.badpass
if (common.validateInt(command.amtpolicy.cirasetup, 0, 2) == false) break; // Check the amtpolicy.cirasetup
} else if (command.amtpolicy.type === 3) {
- if (common.validateString(command.amtpolicy.password, 0, 32) == false) break; // Check the amtpolicy.password
+ if ((command.amtpolicy.password != null) && (common.validateString(command.amtpolicy.password, 0, 32) == false)) break; // Check the amtpolicy.password
if ((command.amtpolicy.badpass != null) && common.validateInt(command.amtpolicy.badpass, 0, 1) == false) break; // Check the amtpolicy.badpass
if (common.validateInt(command.amtpolicy.cirasetup, 0, 2) == false) break; // Check the amtpolicy.cirasetup
}
@@ -3326,11 +3325,15 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
// Perform the Intel AMT policy change
change = 'Intel AMT policy change';
var amtpolicy = { type: command.amtpolicy.type };
- if ((command.amtpolicy.type === 2) || (command.amtpolicy.type === 3)) { amtpolicy = { type: command.amtpolicy.type, password: command.amtpolicy.password, badpass: command.amtpolicy.badpass, cirasetup: command.amtpolicy.cirasetup }; }
+ if ((command.amtpolicy.type === 2) || (command.amtpolicy.type === 3)) {
+ amtpolicy = { type: command.amtpolicy.type, badpass: command.amtpolicy.badpass, cirasetup: command.amtpolicy.cirasetup };
+ if ((command.amtpolicy.password == null) && (mesh.amt != null) && (typeof mesh.amt.password == 'string')) { amtpolicy.password = mesh.amt.password; } // Keep the last password
+ if ((typeof command.amtpolicy.password == 'string') && (command.amtpolicy.password.length >= 8)) { amtpolicy.password = command.amtpolicy.password; } // Set a new password
+ }
mesh.amt = amtpolicy;
db.Set(mesh);
var amtpolicy2 = Object.assign({}, amtpolicy); // Shallow clone
- delete amtpolicy2.password;
+ if (amtpolicy2.password != null) { amtpolicy2.password = 1; }
var event = { etype: 'mesh', userid: user._id, username: user.name, meshid: mesh._id, amt: amtpolicy2, action: 'meshchange', links: mesh.links, msg: change, domain: domain.id, invite: mesh.invite };
if (db.changeStream) { event.noact = 1; } // If DB change stream is active, don't use this event to change the mesh. Another event will come.
parent.parent.DispatchEvent(parent.CreateMeshDispatchTargets(mesh, [user._id]), obj, event);
diff --git a/translate/translate.json b/translate/translate.json
index 75d88fdb..7547d1e9 100644
--- a/translate/translate.json
+++ b/translate/translate.json
@@ -224,8 +224,8 @@
"zh-chs": " 用户需要先登录到该服务器一次,然后才能将其添加到设备组。",
"zh-cht": " 用戶需要先登入到該伺服器一次,然後才能將其新增到裝置群。",
"xloc": [
- "default.handlebars->29->1401",
- "default.handlebars->29->1861"
+ "default.handlebars->29->1403",
+ "default.handlebars->29->1863"
]
},
{
@@ -415,6 +415,12 @@
"default.handlebars->container->column_l->p2->p2info->p2createMeshLink1"
]
},
+ {
+ "en": "* 8 characters, 1 upper, 1 lower, 1 numeric, 1 non-alpha numeric.",
+ "xloc": [
+ "default.handlebars->29->1372"
+ ]
+ },
{
"cs": "* Pro BSD, nejprve spusťte „pkg install wget sudo bash“.",
"de": "* Unter BSD, führe zunächst \\\"pkg install wget sudo bash\\\" aus.",
@@ -450,10 +456,7 @@
"ru": "* Оставьте пустым для установления случайного пароля каждому устройству.",
"tr": "* Her cihaza rastgele bir şifre atamak için boş bırakın.",
"zh-chs": "*保留空白可为每个设备分配一个随机密码。",
- "zh-cht": "*保留空白可為每個裝置分配一個隨機密碼。",
- "xloc": [
- "default.handlebars->29->1368"
- ]
+ "zh-cht": "*保留空白可為每個裝置分配一個隨機密碼。"
},
{
"cs": ",",
@@ -490,7 +493,7 @@
"zh-cht": ",",
"xloc": [
"default-mobile.handlebars->9->467",
- "default.handlebars->29->1471"
+ "default.handlebars->29->1473"
]
},
{
@@ -762,8 +765,8 @@
"xloc": [
"default-mobile.handlebars->9->108",
"default-mobile.handlebars->9->307",
- "default.handlebars->29->1512",
- "default.handlebars->29->2016",
+ "default.handlebars->29->1514",
+ "default.handlebars->29->2018",
"default.handlebars->29->868"
]
},
@@ -820,7 +823,7 @@
"zh-chs": "1个活跃时段",
"zh-cht": "1個活躍時段",
"xloc": [
- "default.handlebars->29->1930"
+ "default.handlebars->29->1932"
]
},
{
@@ -842,7 +845,7 @@
"xloc": [
"default-mobile.handlebars->9->118",
"default-mobile.handlebars->9->471",
- "default.handlebars->29->1536",
+ "default.handlebars->29->1538",
"download.handlebars->3->1",
"download2.handlebars->5->1"
]
@@ -907,7 +910,7 @@
"zh-chs": "1组",
"zh-cht": "1群",
"xloc": [
- "default.handlebars->29->1895"
+ "default.handlebars->29->1897"
]
},
{
@@ -1011,7 +1014,7 @@
"zh-chs": "有1个用户没有显示,请使用搜索框查找用户...",
"zh-cht": "有1個用戶沒有顯示,請使用搜尋框搜尋用戶...",
"xloc": [
- "default.handlebars->29->1685"
+ "default.handlebars->29->1687"
]
},
{
@@ -1077,7 +1080,7 @@
"default-mobile.handlebars->9->172",
"default-mobile.handlebars->9->175",
"default-mobile.handlebars->9->178",
- "default.handlebars->29->1689",
+ "default.handlebars->29->1691",
"default.handlebars->29->250",
"default.handlebars->29->253",
"default.handlebars->29->256",
@@ -1494,7 +1497,7 @@
"zh-chs": "2FA备份代码已清除",
"zh-cht": "2FA備份代碼已清除",
"xloc": [
- "default.handlebars->29->1647"
+ "default.handlebars->29->1649"
]
},
{
@@ -1514,8 +1517,8 @@
"zh-chs": "启用第二因素身份验证",
"zh-cht": "啟用第二因素身份驗證",
"xloc": [
- "default.handlebars->29->1702",
- "default.handlebars->29->1917"
+ "default.handlebars->29->1704",
+ "default.handlebars->29->1919"
]
},
{
@@ -2497,7 +2500,7 @@
"zh-chs": "访问服务器档案",
"zh-cht": "存取伺服器檔案",
"xloc": [
- "default.handlebars->29->1867"
+ "default.handlebars->29->1869"
]
},
{
@@ -2650,7 +2653,7 @@
"zh-chs": "帐户已更改:{0}",
"zh-cht": "帳戶已更改:{0}",
"xloc": [
- "default.handlebars->29->1620"
+ "default.handlebars->29->1622"
]
},
{
@@ -2670,7 +2673,7 @@
"zh-chs": "创建帐户,电子邮件为{0}",
"zh-cht": "創建帳戶,電子郵件為{0}",
"xloc": [
- "default.handlebars->29->1619"
+ "default.handlebars->29->1621"
]
},
{
@@ -2690,7 +2693,7 @@
"zh-chs": "创建帐户,用户名是{0}",
"zh-cht": "帳戶已創建,用戶名是{0}",
"xloc": [
- "default.handlebars->29->1618"
+ "default.handlebars->29->1620"
]
},
{
@@ -2710,8 +2713,8 @@
"zh-chs": "帐户已被锁定",
"zh-cht": "帳戶已被鎖定",
"xloc": [
- "default.handlebars->29->1704",
- "default.handlebars->29->1864"
+ "default.handlebars->29->1706",
+ "default.handlebars->29->1866"
]
},
{
@@ -2775,7 +2778,7 @@
"zh-chs": "帐号登录",
"zh-cht": "帳號登錄",
"xloc": [
- "default.handlebars->29->1555"
+ "default.handlebars->29->1557"
]
},
{
@@ -2795,7 +2798,7 @@
"zh-chs": "帐户登出",
"zh-cht": "帳戶登出",
"xloc": [
- "default.handlebars->29->1556"
+ "default.handlebars->29->1558"
]
},
{
@@ -2837,7 +2840,7 @@
"zh-chs": "帐户密码已更改:{0}",
"zh-cht": "帳戶密碼已更改:{0}",
"xloc": [
- "default.handlebars->29->1628"
+ "default.handlebars->29->1630"
]
},
{
@@ -2857,7 +2860,7 @@
"zh-chs": "帐户已删除",
"zh-cht": "帳戶已刪除",
"xloc": [
- "default.handlebars->29->1617"
+ "default.handlebars->29->1619"
]
},
{
@@ -3108,8 +3111,8 @@
"zh-chs": "添加设备",
"zh-cht": "新增裝置",
"xloc": [
- "default.handlebars->29->1841",
- "default.handlebars->29->1965"
+ "default.handlebars->29->1843",
+ "default.handlebars->29->1967"
]
},
{
@@ -3149,9 +3152,9 @@
"zh-chs": "添加设备组",
"zh-cht": "新增裝置群",
"xloc": [
- "default.handlebars->29->1435",
- "default.handlebars->29->1835",
- "default.handlebars->29->1953",
+ "default.handlebars->29->1437",
+ "default.handlebars->29->1837",
+ "default.handlebars->29->1955",
"default.handlebars->29->237"
]
},
@@ -3172,7 +3175,7 @@
"zh-chs": "添加设备组权限",
"zh-cht": "新增裝置群權限",
"xloc": [
- "default.handlebars->29->1432"
+ "default.handlebars->29->1434"
]
},
{
@@ -3192,8 +3195,8 @@
"zh-chs": "添加设备权限",
"zh-cht": "新增裝置權限",
"xloc": [
- "default.handlebars->29->1437",
- "default.handlebars->29->1439"
+ "default.handlebars->29->1439",
+ "default.handlebars->29->1441"
]
},
{
@@ -3290,7 +3293,7 @@
"zh-chs": "添加成员身份",
"zh-cht": "新增成員身份",
"xloc": [
- "default.handlebars->29->1983"
+ "default.handlebars->29->1985"
]
},
{
@@ -3376,7 +3379,7 @@
"zh-chs": "添加用户设备权限",
"zh-cht": "新增用戶裝置權限",
"xloc": [
- "default.handlebars->29->1442"
+ "default.handlebars->29->1444"
]
},
{
@@ -3397,8 +3400,8 @@
"zh-cht": "新增用戶群",
"xloc": [
"default.handlebars->29->1340",
- "default.handlebars->29->1434",
- "default.handlebars->29->1959",
+ "default.handlebars->29->1436",
+ "default.handlebars->29->1961",
"default.handlebars->29->647"
]
},
@@ -3419,7 +3422,7 @@
"zh-chs": "添加用户组设备权限",
"zh-cht": "新增用戶群裝置權限",
"xloc": [
- "default.handlebars->29->1444"
+ "default.handlebars->29->1446"
]
},
{
@@ -3477,7 +3480,7 @@
"zh-cht": "新增用戶",
"xloc": [
"default.handlebars->29->1339",
- "default.handlebars->29->1830"
+ "default.handlebars->29->1832"
]
},
{
@@ -3497,7 +3500,7 @@
"zh-chs": "将用户添加到设备组",
"zh-cht": "將用戶新增到裝置群",
"xloc": [
- "default.handlebars->29->1431"
+ "default.handlebars->29->1433"
]
},
{
@@ -3517,7 +3520,7 @@
"zh-chs": "将用户添加到用户组",
"zh-cht": "將用戶新增到用戶群",
"xloc": [
- "default.handlebars->29->1863"
+ "default.handlebars->29->1865"
]
},
{
@@ -3681,7 +3684,7 @@
"zh-chs": "添加了身份验证应用程序",
"zh-cht": "添加了身份驗證應用程序",
"xloc": [
- "default.handlebars->29->1644"
+ "default.handlebars->29->1646"
]
},
{
@@ -3701,8 +3704,8 @@
"zh-chs": "已将设备{0}添加到设备组{1}",
"zh-cht": "已將設備{0}添加到設備組{1}",
"xloc": [
- "default.handlebars->29->1611",
- "default.handlebars->29->1638"
+ "default.handlebars->29->1613",
+ "default.handlebars->29->1640"
]
},
{
@@ -3722,7 +3725,7 @@
"zh-chs": "添加了安全密钥",
"zh-cht": "添加了安全密鑰",
"xloc": [
- "default.handlebars->29->1649"
+ "default.handlebars->29->1651"
]
},
{
@@ -3742,7 +3745,7 @@
"zh-chs": "已将用户组{0}添加到设备组{1}",
"zh-cht": "已將用戶組{0}添加到設備組{1}",
"xloc": [
- "default.handlebars->29->1622"
+ "default.handlebars->29->1624"
]
},
{
@@ -3762,8 +3765,8 @@
"zh-chs": "已将用户{0}添加到用户组{1}",
"zh-cht": "已將用戶{0}添加到用戶組{1}",
"xloc": [
- "default.handlebars->29->1625",
- "default.handlebars->29->1634"
+ "default.handlebars->29->1627",
+ "default.handlebars->29->1636"
]
},
{
@@ -3886,7 +3889,7 @@
"zh-chs": "管理领域",
"zh-cht": "管理領域",
"xloc": [
- "default.handlebars->29->1899"
+ "default.handlebars->29->1901"
]
},
{
@@ -3927,7 +3930,7 @@
"zh-chs": "管理领域",
"zh-cht": "管理領域",
"xloc": [
- "default.handlebars->29->1767"
+ "default.handlebars->29->1769"
]
},
{
@@ -3947,7 +3950,7 @@
"zh-chs": "管理员",
"zh-cht": "管理員",
"xloc": [
- "default.handlebars->29->1696"
+ "default.handlebars->29->1698"
]
},
{
@@ -3990,8 +3993,8 @@
"default-mobile.handlebars->9->203",
"default-mobile.handlebars->9->228",
"default-mobile.handlebars->9->250",
- "default.handlebars->29->1498",
- "default.handlebars->29->1506",
+ "default.handlebars->29->1500",
+ "default.handlebars->29->1508",
"default.handlebars->29->213",
"default.handlebars->29->415",
"default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->1"
@@ -4014,8 +4017,8 @@
"zh-chs": "代理+英特尔AMT",
"zh-cht": "代理+Intel® AMT",
"xloc": [
- "default.handlebars->29->1500",
- "default.handlebars->29->1508"
+ "default.handlebars->29->1502",
+ "default.handlebars->29->1510"
]
},
{
@@ -4056,7 +4059,7 @@
"zh-cht": "代理控制台",
"xloc": [
"default-mobile.handlebars->9->449",
- "default.handlebars->29->1452"
+ "default.handlebars->29->1454"
]
},
{
@@ -4076,7 +4079,7 @@
"zh-chs": "代理错误计数器",
"zh-cht": "代理錯誤計數器",
"xloc": [
- "default.handlebars->29->2026"
+ "default.handlebars->29->2028"
]
},
{
@@ -4179,7 +4182,7 @@
"zh-chs": "代理时段",
"zh-cht": "代理時段",
"xloc": [
- "default.handlebars->29->2042"
+ "default.handlebars->29->2044"
]
},
{
@@ -4220,7 +4223,7 @@
"zh-chs": "代理类型",
"zh-cht": "代理類型",
"xloc": [
- "default.handlebars->29->1504",
+ "default.handlebars->29->1506",
"default.handlebars->container->column_l->p21->3->1->meshOsChartDiv->1"
]
},
@@ -4241,7 +4244,7 @@
"zh-chs": "代理关闭了与服务器压缩的{0}%代理会话。已发送:{1},已压缩:{2}",
"zh-cht": "代理關閉了與{0}%代理到服務器壓縮的會話。已發送:{1},已壓縮:{2}",
"xloc": [
- "default.handlebars->29->1608"
+ "default.handlebars->29->1610"
]
},
{
@@ -4351,7 +4354,7 @@
"zh-chs": "代理",
"zh-cht": "代理",
"xloc": [
- "default.handlebars->29->2058"
+ "default.handlebars->29->2060"
]
},
{
@@ -4414,7 +4417,7 @@
"zh-chs": "全部可用",
"zh-cht": "全部可用",
"xloc": [
- "default.handlebars->29->1659"
+ "default.handlebars->29->1661"
]
},
{
@@ -4451,7 +4454,7 @@
"zh-chs": "所有事件",
"zh-cht": "所有事件",
"xloc": [
- "default.handlebars->29->1657"
+ "default.handlebars->29->1659"
]
},
{
@@ -4493,8 +4496,8 @@
"zh-chs": "允许用户管理此设备组和该组中的设备。",
"zh-cht": "允許用戶管理此裝置群和該群中的裝置。",
"xloc": [
- "default.handlebars->29->1399",
- "default.handlebars->29->1860"
+ "default.handlebars->29->1401",
+ "default.handlebars->29->1862"
]
},
{
@@ -4514,7 +4517,7 @@
"zh-chs": "允许用户管理此设备。",
"zh-cht": "允許用戶管理此裝置。",
"xloc": [
- "default.handlebars->29->1400"
+ "default.handlebars->29->1402"
]
},
{
@@ -4620,8 +4623,8 @@
"zh-cht": "一直通知",
"xloc": [
"default.handlebars->29->1319",
- "default.handlebars->29->1821",
- "default.handlebars->29->1908",
+ "default.handlebars->29->1823",
+ "default.handlebars->29->1910",
"default.handlebars->29->585"
]
},
@@ -4643,8 +4646,8 @@
"zh-cht": "一直提示",
"xloc": [
"default.handlebars->29->1320",
- "default.handlebars->29->1822",
- "default.handlebars->29->1909",
+ "default.handlebars->29->1824",
+ "default.handlebars->29->1911",
"default.handlebars->29->586"
]
},
@@ -5270,7 +5273,7 @@
"zh-cht": "你確定要刪除群{0}嗎?刪除裝置群還將刪除該群中有關裝置的所有訊息。",
"xloc": [
"default-mobile.handlebars->9->418",
- "default.handlebars->29->1375"
+ "default.handlebars->29->1377"
]
},
{
@@ -5350,7 +5353,7 @@
"zh-chs": "您确定要{0}插件吗:{1}",
"zh-cht": "你確定要{0}外掛嗎:{1}",
"xloc": [
- "default.handlebars->29->2098"
+ "default.handlebars->29->2100"
]
},
{
@@ -5470,7 +5473,7 @@
"zh-chs": "尝试激活英特尔(R)AMT ACM模式",
"zh-cht": "嘗試激活英特爾(R)AMT ACM模式",
"xloc": [
- "default.handlebars->29->1577"
+ "default.handlebars->29->1579"
]
},
{
@@ -5490,7 +5493,7 @@
"zh-chs": "认证软件",
"zh-cht": "認證軟體",
"xloc": [
- "default.handlebars->29->1912"
+ "default.handlebars->29->1914"
]
},
{
@@ -5661,7 +5664,7 @@
"zh-chs": "可用內存",
"zh-cht": "可用內存",
"xloc": [
- "default.handlebars->29->2051"
+ "default.handlebars->29->2053"
]
},
{
@@ -5817,8 +5820,8 @@
"zh-chs": "背景与互动",
"zh-cht": "背景與互動",
"xloc": [
- "default.handlebars->29->1481",
- "default.handlebars->29->1488",
+ "default.handlebars->29->1483",
+ "default.handlebars->29->1490",
"default.handlebars->29->328",
"default.handlebars->29->342"
]
@@ -5840,8 +5843,8 @@
"zh-chs": "仅背景",
"zh-cht": "僅背景",
"xloc": [
- "default.handlebars->29->1482",
- "default.handlebars->29->1489",
+ "default.handlebars->29->1484",
+ "default.handlebars->29->1491",
"default.handlebars->29->329",
"default.handlebars->29->343",
"default.handlebars->29->357"
@@ -5884,7 +5887,7 @@
"zh-chs": "备用码",
"zh-cht": "備用碼",
"xloc": [
- "default.handlebars->29->1914"
+ "default.handlebars->29->1916"
]
},
{
@@ -5904,7 +5907,7 @@
"zh-chs": "错误的签名",
"zh-cht": "錯誤的簽名",
"xloc": [
- "default.handlebars->29->2033"
+ "default.handlebars->29->2035"
]
},
{
@@ -5924,7 +5927,7 @@
"zh-chs": "错误的网络证书",
"zh-cht": "錯誤的網絡憑證",
"xloc": [
- "default.handlebars->29->2032"
+ "default.handlebars->29->2034"
]
},
{
@@ -6087,7 +6090,7 @@
"zh-chs": "广播",
"zh-cht": "廣播",
"xloc": [
- "default.handlebars->29->1828",
+ "default.handlebars->29->1830",
"default.handlebars->container->column_l->p4->3->1->0->3->1"
]
},
@@ -6108,7 +6111,7 @@
"zh-chs": "广播消息",
"zh-cht": "廣播消息",
"xloc": [
- "default.handlebars->29->1749"
+ "default.handlebars->29->1751"
]
},
{
@@ -6128,7 +6131,7 @@
"zh-chs": "向所有连接的用户广播消息。",
"zh-cht": "向所有連接的用戶廣播消息。",
"xloc": [
- "default.handlebars->29->1744"
+ "default.handlebars->29->1746"
]
},
{
@@ -6210,7 +6213,6 @@
"zh-cht": "CIRA",
"xloc": [
"default-mobile.handlebars->9->204",
- "default.handlebars->29->1364",
"default.handlebars->29->215",
"default.handlebars->29->417"
]
@@ -6232,7 +6234,7 @@
"zh-chs": "CIRA服务器",
"zh-cht": "CIRA伺服器",
"xloc": [
- "default.handlebars->29->2086"
+ "default.handlebars->29->2088"
]
},
{
@@ -6252,7 +6254,13 @@
"zh-chs": "CIRA服务器命令",
"zh-cht": "CIRA伺服器指令",
"xloc": [
- "default.handlebars->29->2087"
+ "default.handlebars->29->2089"
+ ]
+ },
+ {
+ "en": "CIRA setup",
+ "xloc": [
+ "default.handlebars->29->1368"
]
},
{
@@ -6293,7 +6301,7 @@
"zh-chs": "CPU负载",
"zh-cht": "CPU負載",
"xloc": [
- "default.handlebars->29->2047"
+ "default.handlebars->29->2049"
]
},
{
@@ -6313,7 +6321,7 @@
"zh-chs": "最近15分钟的CPU负载",
"zh-cht": "最近15分鐘的CPU負載",
"xloc": [
- "default.handlebars->29->2050"
+ "default.handlebars->29->2052"
]
},
{
@@ -6333,7 +6341,7 @@
"zh-chs": "最近5分钟的CPU负载",
"zh-cht": "最近5分鐘的CPU負載",
"xloc": [
- "default.handlebars->29->2049"
+ "default.handlebars->29->2051"
]
},
{
@@ -6353,7 +6361,7 @@
"zh-chs": "最近一分钟的CPU负载",
"zh-cht": "最近一分鐘的CPU負載",
"xloc": [
- "default.handlebars->29->2048"
+ "default.handlebars->29->2050"
]
},
{
@@ -6395,7 +6403,7 @@
"zh-chs": "CSV",
"zh-cht": "CSV",
"xloc": [
- "default.handlebars->29->1667"
+ "default.handlebars->29->1669"
]
},
{
@@ -6415,8 +6423,8 @@
"zh-chs": "CSV格式",
"zh-cht": "CSV格式",
"xloc": [
- "default.handlebars->29->1671",
- "default.handlebars->29->1736",
+ "default.handlebars->29->1673",
+ "default.handlebars->29->1738",
"default.handlebars->29->467"
]
},
@@ -6437,7 +6445,7 @@
"zh-chs": "呼叫错误",
"zh-cht": "呼叫錯誤",
"xloc": [
- "default.handlebars->29->2099"
+ "default.handlebars->29->2101"
]
},
{
@@ -6614,7 +6622,7 @@
"zh-chs": "更改{0}的电邮",
"zh-cht": "更改{0}的電郵",
"xloc": [
- "default.handlebars->29->1942"
+ "default.handlebars->29->1944"
]
},
{
@@ -6658,7 +6666,7 @@
"xloc": [
"default-mobile.handlebars->9->90",
"default.handlebars->29->1251",
- "default.handlebars->29->1929"
+ "default.handlebars->29->1931"
]
},
{
@@ -6678,7 +6686,7 @@
"zh-chs": "更改{0}的密码",
"zh-cht": "更改{0}的密碼",
"xloc": [
- "default.handlebars->29->1949"
+ "default.handlebars->29->1951"
]
},
{
@@ -6698,7 +6706,7 @@
"zh-chs": "更改{0}的真实名称",
"zh-cht": "更改{0}的真實名稱",
"xloc": [
- "default.handlebars->29->1937"
+ "default.handlebars->29->1939"
]
},
{
@@ -6780,7 +6788,7 @@
"zh-chs": "更改该用户的密码",
"zh-cht": "更改該用戶的密碼",
"xloc": [
- "default.handlebars->29->1928"
+ "default.handlebars->29->1930"
]
},
{
@@ -6860,7 +6868,7 @@
"zh-chs": "更改帐户凭据",
"zh-cht": "帳戶憑證已更改",
"xloc": [
- "default.handlebars->29->1629"
+ "default.handlebars->29->1631"
]
},
{
@@ -6880,7 +6888,7 @@
"zh-chs": "{1}组中的设备{0}已更改:{2}",
"zh-cht": "{1}組中的設備{0}已更改:{2}",
"xloc": [
- "default.handlebars->29->1613"
+ "default.handlebars->29->1615"
]
},
{
@@ -6900,7 +6908,7 @@
"zh-chs": "语言从{1}更改为{2}",
"zh-cht": "語言從{1}更改為{2}",
"xloc": [
- "default.handlebars->29->1557"
+ "default.handlebars->29->1559"
]
},
{
@@ -6920,8 +6928,8 @@
"zh-chs": "已更改{0}的用户设备权限",
"zh-cht": "已更改{0}的用戶設備權限",
"xloc": [
- "default.handlebars->29->1615",
- "default.handlebars->29->1636"
+ "default.handlebars->29->1617",
+ "default.handlebars->29->1638"
]
},
{
@@ -6961,7 +6969,7 @@
"zh-chs": "聊天",
"zh-cht": "聊天",
"xloc": [
- "default.handlebars->29->1688",
+ "default.handlebars->29->1690",
"default.handlebars->29->667",
"default.handlebars->29->688"
]
@@ -6985,8 +6993,8 @@
"xloc": [
"default-mobile.handlebars->9->439",
"default-mobile.handlebars->9->459",
- "default.handlebars->29->1427",
- "default.handlebars->29->1463"
+ "default.handlebars->29->1429",
+ "default.handlebars->29->1465"
]
},
{
@@ -7127,7 +7135,7 @@
"zh-cht": "檢查...",
"xloc": [
"default.handlebars->29->1023",
- "default.handlebars->29->2093"
+ "default.handlebars->29->2095"
]
},
{
@@ -7351,7 +7359,7 @@
"default-mobile.handlebars->9->330",
"default-mobile.handlebars->9->332",
"default-mobile.handlebars->9->59",
- "default.handlebars->29->1551",
+ "default.handlebars->29->1553",
"default.handlebars->29->888",
"default.handlebars->29->890",
"default.handlebars->29->892",
@@ -7398,7 +7406,7 @@
"zh-chs": "全部清除",
"zh-cht": "全部清除",
"xloc": [
- "default.handlebars->29->2020"
+ "default.handlebars->29->2022"
]
},
{
@@ -7466,7 +7474,7 @@
"zh-chs": "清除此通知",
"zh-cht": "清除此通知",
"xloc": [
- "default.handlebars->29->2019"
+ "default.handlebars->29->2021"
]
},
{
@@ -7527,7 +7535,7 @@
"zh-cht": "單擊此處編輯裝置群名稱",
"xloc": [
"default.handlebars->29->1295",
- "default.handlebars->29->1502"
+ "default.handlebars->29->1504"
]
},
{
@@ -7567,7 +7575,7 @@
"zh-chs": "单击此处编辑用户组名称",
"zh-cht": "單擊此處編輯用戶群名稱",
"xloc": [
- "default.handlebars->29->1805"
+ "default.handlebars->29->1807"
]
},
{
@@ -7709,7 +7717,7 @@
"zh-chs": "客户端启动的远程访问",
"zh-cht": "客戶端啟動的遠程訪問",
"xloc": [
- "default.handlebars->29->1363"
+ "default.handlebars->29->1367"
]
},
{
@@ -7793,7 +7801,7 @@
"zh-chs": "封闭式桌面多路复用会话,{0}秒",
"zh-cht": "封閉式桌面多路復用會話,{0}秒",
"xloc": [
- "default.handlebars->29->1562"
+ "default.handlebars->29->1564"
]
},
{
@@ -7877,7 +7885,7 @@
"nl": "Opdrachten",
"xloc": [
"default-mobile.handlebars->9->461",
- "default.handlebars->29->1465",
+ "default.handlebars->29->1467",
"default.handlebars->29->669",
"default.handlebars->29->690"
]
@@ -7899,8 +7907,8 @@
"zh-chs": "通用设备组",
"zh-cht": "通用裝置群",
"xloc": [
- "default.handlebars->29->1836",
- "default.handlebars->29->1954"
+ "default.handlebars->29->1838",
+ "default.handlebars->29->1956"
]
},
{
@@ -7920,8 +7928,8 @@
"zh-chs": "通用设备",
"zh-cht": "通用裝置",
"xloc": [
- "default.handlebars->29->1842",
- "default.handlebars->29->1966"
+ "default.handlebars->29->1844",
+ "default.handlebars->29->1968"
]
},
{
@@ -7962,7 +7970,7 @@
"zh-cht": "將{1}入口{2}中的{0}限製到此位置?",
"xloc": [
"default-mobile.handlebars->9->127",
- "default.handlebars->29->1546"
+ "default.handlebars->29->1548"
]
},
{
@@ -7984,11 +7992,11 @@
"xloc": [
"default-mobile.handlebars->9->288",
"default-mobile.handlebars->9->419",
- "default.handlebars->29->1376",
- "default.handlebars->29->1716",
- "default.handlebars->29->1795",
- "default.handlebars->29->1856",
- "default.handlebars->29->1952",
+ "default.handlebars->29->1378",
+ "default.handlebars->29->1718",
+ "default.handlebars->29->1797",
+ "default.handlebars->29->1858",
+ "default.handlebars->29->1954",
"default.handlebars->29->443",
"default.handlebars->29->758",
"default.handlebars->29->767"
@@ -8072,7 +8080,7 @@
"zh-chs": "确认删除选定的帐户?",
"zh-cht": "確認刪除所選帳戶?",
"xloc": [
- "default.handlebars->29->1715"
+ "default.handlebars->29->1717"
]
},
{
@@ -8112,7 +8120,7 @@
"zh-chs": "确认删除选定的用户组?",
"zh-cht": "確認刪除所選用戶群?",
"xloc": [
- "default.handlebars->29->1794"
+ "default.handlebars->29->1796"
]
},
{
@@ -8132,7 +8140,7 @@
"zh-chs": "确认删除用户{0}?",
"zh-cht": "確認刪除用戶{0}?",
"xloc": [
- "default.handlebars->29->1951"
+ "default.handlebars->29->1953"
]
},
{
@@ -8152,7 +8160,7 @@
"zh-chs": "确认删除用户“ {0} ”的成员身份?",
"zh-cht": "確認刪除用戶“ {0} ”的成員身份?",
"xloc": [
- "default.handlebars->29->1859"
+ "default.handlebars->29->1861"
]
},
{
@@ -8172,7 +8180,7 @@
"zh-chs": "确认删除用户组“ {0} ”的成员身份?",
"zh-cht": "確認刪除用戶群“ {0} ”的成員身份?",
"xloc": [
- "default.handlebars->29->1981"
+ "default.handlebars->29->1983"
]
},
{
@@ -8253,7 +8261,7 @@
"zh-chs": "确认覆盖?",
"zh-cht": "確認覆蓋?",
"xloc": [
- "default.handlebars->29->1545"
+ "default.handlebars->29->1547"
]
},
{
@@ -8273,8 +8281,8 @@
"zh-chs": "确认删除设备“ {0} ”的访问权限?",
"zh-cht": "確認刪除裝置“ {0} ”的訪問權限?",
"xloc": [
- "default.handlebars->29->1849",
- "default.handlebars->29->1972"
+ "default.handlebars->29->1851",
+ "default.handlebars->29->1974"
]
},
{
@@ -8294,8 +8302,8 @@
"zh-chs": "确认删除设备组“ {0} ”的访问权限?",
"zh-cht": "確認刪除裝置群“ {0} ”的訪問權限?",
"xloc": [
- "default.handlebars->29->1851",
- "default.handlebars->29->1985"
+ "default.handlebars->29->1853",
+ "default.handlebars->29->1987"
]
},
{
@@ -8315,7 +8323,7 @@
"zh-chs": "确认删除用户“ {0} ”的访问权限?",
"zh-cht": "確認刪除用戶“ {0} ”的訪問權限?",
"xloc": [
- "default.handlebars->29->1974"
+ "default.handlebars->29->1976"
]
},
{
@@ -8335,7 +8343,7 @@
"zh-chs": "确认删除用户组“ {0} ”的访问权限?",
"zh-cht": "確認刪除用戶群“ {0} ”的訪問權限?",
"xloc": [
- "default.handlebars->29->1977"
+ "default.handlebars->29->1979"
]
},
{
@@ -8355,8 +8363,8 @@
"zh-chs": "确认删除访问权限?",
"zh-cht": "確認刪除訪問權限?",
"xloc": [
- "default.handlebars->29->1975",
- "default.handlebars->29->1978"
+ "default.handlebars->29->1977",
+ "default.handlebars->29->1980"
]
},
{
@@ -8448,7 +8456,7 @@
"zh-chs": "确认删除用户“ {0} ”的权限?",
"zh-cht": "確認刪除用戶“ {0} ”的權限?",
"xloc": [
- "default.handlebars->29->1474"
+ "default.handlebars->29->1476"
]
},
{
@@ -8468,7 +8476,7 @@
"zh-chs": "确认删除用户组“ {0} ”的权限?",
"zh-cht": "確認刪除用戶群“ {0} ”的權限?",
"xloc": [
- "default.handlebars->29->1476"
+ "default.handlebars->29->1478"
]
},
{
@@ -8576,7 +8584,7 @@
"zh-chs": "连接到服务器",
"zh-cht": "連接到伺服器",
"xloc": [
- "default.handlebars->29->1367"
+ "default.handlebars->29->1371"
]
},
{
@@ -8697,7 +8705,7 @@
"zh-chs": "已连接的英特尔®AMT",
"zh-cht": "已連接的Intel® AMT",
"xloc": [
- "default.handlebars->29->2038"
+ "default.handlebars->29->2040"
]
},
{
@@ -8717,7 +8725,7 @@
"zh-chs": "已连接的用户",
"zh-cht": "已连接的用户",
"xloc": [
- "default.handlebars->29->2043"
+ "default.handlebars->29->2045"
]
},
{
@@ -8807,7 +8815,7 @@
"zh-chs": "连接数量",
"zh-cht": "連接數量",
"xloc": [
- "default.handlebars->29->2057"
+ "default.handlebars->29->2059"
]
},
{
@@ -8827,7 +8835,7 @@
"zh-chs": "连接转发器",
"zh-cht": "連接轉發器",
"xloc": [
- "default.handlebars->29->2085"
+ "default.handlebars->29->2087"
]
},
{
@@ -8888,7 +8896,7 @@
"zh-cht": "連接性",
"xloc": [
"default-mobile.handlebars->9->255",
- "default.handlebars->29->1509",
+ "default.handlebars->29->1511",
"default.handlebars->29->234",
"default.handlebars->29->599",
"default.handlebars->container->column_l->p21->3->1->meshConnChartDiv->1"
@@ -8977,7 +8985,7 @@
"zh-chs": "Cookie编码器",
"zh-cht": "Cookie編碼器",
"xloc": [
- "default.handlebars->29->2071"
+ "default.handlebars->29->2073"
]
},
{
@@ -9134,8 +9142,8 @@
"zh-chs": "复制连结到剪贴板",
"zh-cht": "複製連結到剪貼板",
"xloc": [
- "default.handlebars->29->1514",
- "default.handlebars->29->1533",
+ "default.handlebars->29->1516",
+ "default.handlebars->29->1535",
"default.handlebars->29->195",
"default.handlebars->29->345"
]
@@ -9238,7 +9246,7 @@
"zh-chs": "复制:“{0}”到“{1}”",
"zh-cht": "複製:“{0}”到“{1}”",
"xloc": [
- "default.handlebars->29->1605"
+ "default.handlebars->29->1607"
]
},
{
@@ -9384,7 +9392,7 @@
"zh-chs": "核心服务器",
"zh-cht": "核心伺服器",
"xloc": [
- "default.handlebars->29->2070"
+ "default.handlebars->29->2072"
]
},
{
@@ -9424,7 +9432,7 @@
"zh-chs": "创建帐号",
"zh-cht": "創建帳號",
"xloc": [
- "default.handlebars->29->1763",
+ "default.handlebars->29->1765",
"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"
@@ -9467,7 +9475,7 @@
"zh-chs": "创建用户组",
"zh-cht": "創建用戶群",
"xloc": [
- "default.handlebars->29->1802"
+ "default.handlebars->29->1804"
]
},
{
@@ -9547,7 +9555,7 @@
"zh-chs": "创建文件夹:“{0}”",
"zh-cht": "創建文件夾:“{0}”",
"xloc": [
- "default.handlebars->29->1598"
+ "default.handlebars->29->1600"
]
},
{
@@ -9567,7 +9575,7 @@
"zh-chs": "通过导入以下格式的JSON档案一次创建多个帐户:",
"zh-cht": "通過導入以下格式的JSON檔案一次創建多個帳戶:",
"xloc": [
- "default.handlebars->29->1727"
+ "default.handlebars->29->1729"
]
},
{
@@ -9609,7 +9617,7 @@
"zh-chs": "创建的设备组:{0}",
"zh-cht": "創建的設備組:{0}",
"xloc": [
- "default.handlebars->29->1609"
+ "default.handlebars->29->1611"
]
},
{
@@ -9649,7 +9657,7 @@
"zh-chs": "创建",
"zh-cht": "創建",
"xloc": [
- "default.handlebars->29->1888"
+ "default.handlebars->29->1890"
]
},
{
@@ -10044,6 +10052,12 @@
"default.handlebars->29->742"
]
},
+ {
+ "en": "Deactivate",
+ "xloc": [
+ "default.handlebars->29->1354"
+ ]
+ },
{
"cs": "Deaktivovat klientem řízený řetim (CCM)",
"de": "Client Control Mode (CCM) deaktivieren",
@@ -10059,10 +10073,7 @@
"ru": "Деактивировать режим управления клиентом (CCM)",
"tr": "İstemci Kontrol Modunu (CCM) devre dışı bırakın",
"zh-chs": "停用客户端控制模式(CCM)",
- "zh-cht": "停用客戶端控制模式(CCM)",
- "xloc": [
- "default.handlebars->29->1354"
- ]
+ "zh-cht": "停用客戶端控制模式(CCM)"
},
{
"cs": "Hluboký spánek",
@@ -10102,10 +10113,10 @@
"zh-chs": "默认",
"zh-cht": "默認",
"xloc": [
- "default.handlebars->29->1750",
- "default.handlebars->29->1798",
- "default.handlebars->29->1809",
- "default.handlebars->29->1877"
+ "default.handlebars->29->1752",
+ "default.handlebars->29->1800",
+ "default.handlebars->29->1811",
+ "default.handlebars->29->1879"
]
},
{
@@ -10129,7 +10140,7 @@
"default-mobile.handlebars->9->313",
"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->29->1540",
+ "default.handlebars->29->1542",
"default.handlebars->29->500",
"default.handlebars->29->874",
"default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
@@ -10179,7 +10190,7 @@
"zh-chs": "删除帐户",
"zh-cht": "刪除帳戶",
"xloc": [
- "default.handlebars->29->1717"
+ "default.handlebars->29->1719"
]
},
{
@@ -10223,7 +10234,7 @@
"default-mobile.handlebars->9->417",
"default-mobile.handlebars->9->420",
"default.handlebars->29->1350",
- "default.handlebars->29->1377"
+ "default.handlebars->29->1379"
]
},
{
@@ -10284,7 +10295,7 @@
"zh-chs": "删除用户",
"zh-cht": "刪除用戶",
"xloc": [
- "default.handlebars->29->1927"
+ "default.handlebars->29->1929"
]
},
{
@@ -10304,8 +10315,8 @@
"zh-chs": "删除用户群组",
"zh-cht": "刪除用戶群組",
"xloc": [
- "default.handlebars->29->1847",
- "default.handlebars->29->1857"
+ "default.handlebars->29->1849",
+ "default.handlebars->29->1859"
]
},
{
@@ -10325,7 +10336,7 @@
"zh-chs": "删除用户群组",
"zh-cht": "刪除用戶群組",
"xloc": [
- "default.handlebars->29->1796"
+ "default.handlebars->29->1798"
]
},
{
@@ -10345,7 +10356,7 @@
"zh-chs": "删除用户{0}",
"zh-cht": "刪除用戶{0}",
"xloc": [
- "default.handlebars->29->1950"
+ "default.handlebars->29->1952"
]
},
{
@@ -10366,7 +10377,7 @@
"zh-cht": "刪除帳戶",
"xloc": [
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->p2AccountActions->3->9->0",
- "default.handlebars->29->1713",
+ "default.handlebars->29->1715",
"default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7"
]
},
@@ -10407,7 +10418,7 @@
"zh-chs": "删除群组",
"zh-cht": "刪除群組",
"xloc": [
- "default.handlebars->29->1792"
+ "default.handlebars->29->1794"
]
},
{
@@ -10447,7 +10458,7 @@
"zh-chs": "递归删除:“{0}”,{1}个元素已删除",
"zh-cht": "遞歸刪除:“{0}”,{1}個元素已刪除",
"xloc": [
- "default.handlebars->29->1600"
+ "default.handlebars->29->1602"
]
},
{
@@ -10469,7 +10480,7 @@
"xloc": [
"default-mobile.handlebars->9->124",
"default-mobile.handlebars->9->315",
- "default.handlebars->29->1542",
+ "default.handlebars->29->1544",
"default.handlebars->29->876"
]
},
@@ -10490,7 +10501,7 @@
"zh-chs": "删除用户群组{0}?",
"zh-cht": "刪除用戶群組{0}?",
"xloc": [
- "default.handlebars->29->1855"
+ "default.handlebars->29->1857"
]
},
{
@@ -10512,7 +10523,7 @@
"xloc": [
"default-mobile.handlebars->9->123",
"default-mobile.handlebars->9->314",
- "default.handlebars->29->1541",
+ "default.handlebars->29->1543",
"default.handlebars->29->875"
]
},
@@ -10553,7 +10564,7 @@
"zh-chs": "删除:“{0}”",
"zh-cht": "刪除:“{0}”",
"xloc": [
- "default.handlebars->29->1599"
+ "default.handlebars->29->1601"
]
},
{
@@ -10573,7 +10584,7 @@
"zh-chs": "删除:“{0}”,{1}个元素已删除",
"zh-cht": "刪除:“{0}”,已刪除{1}個元素",
"xloc": [
- "default.handlebars->29->1601"
+ "default.handlebars->29->1603"
]
},
{
@@ -10692,11 +10703,11 @@
"default-mobile.handlebars->9->422",
"default.handlebars->29->1263",
"default.handlebars->29->1300",
- "default.handlebars->29->1379",
- "default.handlebars->29->1801",
- "default.handlebars->29->1811",
- "default.handlebars->29->1812",
- "default.handlebars->29->1853",
+ "default.handlebars->29->1381",
+ "default.handlebars->29->1803",
+ "default.handlebars->29->1813",
+ "default.handlebars->29->1814",
+ "default.handlebars->29->1855",
"default.handlebars->29->541",
"default.handlebars->29->542",
"default.handlebars->29->77",
@@ -10741,8 +10752,8 @@
"zh-cht": "桌面",
"xloc": [
"default-mobile.handlebars->9->267",
- "default.handlebars->29->1385",
- "default.handlebars->29->1997",
+ "default.handlebars->29->1387",
+ "default.handlebars->29->1999",
"default.handlebars->29->506",
"default.handlebars->29->846",
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop",
@@ -10788,8 +10799,8 @@
"zh-cht": "桌面通知",
"xloc": [
"default.handlebars->29->1314",
- "default.handlebars->29->1816",
- "default.handlebars->29->1903",
+ "default.handlebars->29->1818",
+ "default.handlebars->29->1905",
"default.handlebars->29->580"
]
},
@@ -10811,8 +10822,8 @@
"zh-cht": "桌面提示",
"xloc": [
"default.handlebars->29->1313",
- "default.handlebars->29->1815",
- "default.handlebars->29->1902",
+ "default.handlebars->29->1817",
+ "default.handlebars->29->1904",
"default.handlebars->29->579"
]
},
@@ -10834,8 +10845,8 @@
"zh-cht": "桌面提示+工具欄",
"xloc": [
"default.handlebars->29->1311",
- "default.handlebars->29->1813",
- "default.handlebars->29->1900",
+ "default.handlebars->29->1815",
+ "default.handlebars->29->1902",
"default.handlebars->29->577"
]
},
@@ -10878,8 +10889,8 @@
"zh-cht": "桌面工具欄",
"xloc": [
"default.handlebars->29->1312",
- "default.handlebars->29->1814",
- "default.handlebars->29->1901",
+ "default.handlebars->29->1816",
+ "default.handlebars->29->1903",
"default.handlebars->29->578"
]
},
@@ -10983,9 +10994,9 @@
"zh-chs": "设备",
"zh-cht": "裝置",
"xloc": [
- "default.handlebars->29->1408",
+ "default.handlebars->29->1410",
"default.handlebars->29->186",
- "default.handlebars->29->1969",
+ "default.handlebars->29->1971",
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5"
]
},
@@ -11034,14 +11045,14 @@
"zh-chs": "设备组",
"zh-cht": "裝置群",
"xloc": [
- "default.handlebars->29->1403",
- "default.handlebars->29->1406",
- "default.handlebars->29->1407",
- "default.handlebars->29->1664",
- "default.handlebars->29->1839",
- "default.handlebars->29->1845",
- "default.handlebars->29->1957",
- "default.handlebars->29->2006"
+ "default.handlebars->29->1405",
+ "default.handlebars->29->1408",
+ "default.handlebars->29->1409",
+ "default.handlebars->29->1666",
+ "default.handlebars->29->1841",
+ "default.handlebars->29->1847",
+ "default.handlebars->29->1959",
+ "default.handlebars->29->2008"
]
},
{
@@ -11062,7 +11073,7 @@
"zh-cht": "裝置群用戶",
"xloc": [
"default-mobile.handlebars->9->468",
- "default.handlebars->29->1472"
+ "default.handlebars->29->1474"
]
},
{
@@ -11083,11 +11094,11 @@
"zh-cht": "裝置群",
"xloc": [
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->3",
- "default.handlebars->29->1680",
- "default.handlebars->29->1786",
- "default.handlebars->29->1826",
- "default.handlebars->29->1897",
- "default.handlebars->29->2041",
+ "default.handlebars->29->1682",
+ "default.handlebars->29->1788",
+ "default.handlebars->29->1828",
+ "default.handlebars->29->1899",
+ "default.handlebars->29->2043",
"default.handlebars->container->column_l->p2->p2info->7"
]
},
@@ -11169,7 +11180,7 @@
"zh-cht": "裝置名稱",
"xloc": [
"default-mobile.handlebars->9->290",
- "default.handlebars->29->2005",
+ "default.handlebars->29->2007",
"default.handlebars->29->287",
"default.handlebars->29->799",
"player.handlebars->3->9"
@@ -11234,7 +11245,7 @@
"zh-cht": "裝置連接。",
"xloc": [
"default.handlebars->29->1231",
- "default.handlebars->29->1493"
+ "default.handlebars->29->1495"
]
},
{
@@ -11255,7 +11266,7 @@
"zh-cht": "裝置斷開連接。",
"xloc": [
"default.handlebars->29->1232",
- "default.handlebars->29->1494"
+ "default.handlebars->29->1496"
]
},
{
@@ -11275,7 +11286,7 @@
"zh-chs": "创建的设备组:{0}",
"zh-cht": "設備組已創建:{0}",
"xloc": [
- "default.handlebars->29->1630"
+ "default.handlebars->29->1632"
]
},
{
@@ -11295,7 +11306,7 @@
"zh-chs": "设备组已删除:{0}",
"zh-cht": "設備組已刪除:{0}",
"xloc": [
- "default.handlebars->29->1631"
+ "default.handlebars->29->1633"
]
},
{
@@ -11315,7 +11326,7 @@
"zh-chs": "设备组成员身份已更改:{0}",
"zh-cht": "設備組成員身份已更改:{0}",
"xloc": [
- "default.handlebars->29->1632"
+ "default.handlebars->29->1634"
]
},
{
@@ -11355,7 +11366,7 @@
"zh-chs": "设备组通知已更改",
"zh-cht": "設備組通知已更改",
"xloc": [
- "default.handlebars->29->1627"
+ "default.handlebars->29->1629"
]
},
{
@@ -11375,7 +11386,7 @@
"zh-chs": "未删除的设备组:{0}",
"zh-cht": "未刪除的設備組:{0}",
"xloc": [
- "default.handlebars->29->1610"
+ "default.handlebars->29->1612"
]
},
{
@@ -11768,7 +11779,7 @@
"zh-chs": "设备请求激活Intel(R)AMT ACM,FQDN:{0}",
"zh-cht": "設備請求激活Intel(R)AMT ACM,FQDN:{0}",
"xloc": [
- "default.handlebars->29->1612"
+ "default.handlebars->29->1614"
]
},
{
@@ -11805,8 +11816,8 @@
"zh-chs": "设备",
"zh-cht": "裝置",
"xloc": [
- "default.handlebars->29->1787",
- "default.handlebars->29->1827"
+ "default.handlebars->29->1789",
+ "default.handlebars->29->1829"
]
},
{
@@ -11846,7 +11857,7 @@
"zh-chs": "禁用的电子邮件两因素身份验证",
"zh-cht": "禁用的電子郵件兩因素身份驗證",
"xloc": [
- "default.handlebars->29->1643"
+ "default.handlebars->29->1645"
]
},
{
@@ -12046,7 +12057,7 @@
"zh-chs": "显示公共连结",
"zh-cht": "顯示公共鏈結",
"xloc": [
- "default.handlebars->29->1513"
+ "default.handlebars->29->1515"
]
},
{
@@ -12066,7 +12077,7 @@
"zh-chs": "显示消息框,标题= “{0}”,消息= “{1}”",
"zh-cht": "顯示消息框,標題= “{0}”,消息= “{1}”",
"xloc": [
- "default.handlebars->29->1572"
+ "default.handlebars->29->1574"
]
},
{
@@ -12086,7 +12097,7 @@
"zh-chs": "显示吐司消息,标题= “{0}”,消息= “{1}”",
"zh-cht": "顯示吐司消息,標題= “{0}”,消息= “{1}”",
"xloc": [
- "default.handlebars->29->1580"
+ "default.handlebars->29->1582"
]
},
{
@@ -12106,7 +12117,8 @@
"zh-chs": "什么都不做",
"zh-cht": "什麼都不做",
"xloc": [
- "default.handlebars->29->1361"
+ "default.handlebars->29->1365",
+ "default.handlebars->29->1369"
]
},
{
@@ -12126,10 +12138,10 @@
"zh-chs": "域",
"zh-cht": "域",
"xloc": [
- "default.handlebars->29->1751",
- "default.handlebars->29->1799",
- "default.handlebars->29->1808",
- "default.handlebars->29->1876",
+ "default.handlebars->29->1753",
+ "default.handlebars->29->1801",
+ "default.handlebars->29->1810",
+ "default.handlebars->29->1878",
"mstsc.handlebars->main->1->3->1->2->1->0",
"mstsc.handlebars->main->1->3->1->2->3"
]
@@ -12149,10 +12161,7 @@
"ru": "Не настраивать",
"tr": "Yapılandırma",
"zh-chs": "不要配置",
- "zh-cht": "不要配置",
- "xloc": [
- "default.handlebars->29->1365"
- ]
+ "zh-cht": "不要配置"
},
{
"cs": "Nepřipojovat k serveru",
@@ -12171,7 +12180,7 @@
"zh-chs": "不要连接到服务器",
"zh-cht": "不要連接到伺服器",
"xloc": [
- "default.handlebars->29->1366"
+ "default.handlebars->29->1370"
]
},
{
@@ -12391,7 +12400,7 @@
"zh-chs": "下载报告",
"zh-cht": "下載報告",
"xloc": [
- "default.handlebars->29->1669",
+ "default.handlebars->29->1671",
"default.handlebars->container->column_l->p3->3->1->0->3"
]
},
@@ -12592,7 +12601,7 @@
"zh-chs": "使用以下一种档案格式下载事件列表。",
"zh-cht": "使用以下一種檔案格式下載事件列表。",
"xloc": [
- "default.handlebars->29->1670"
+ "default.handlebars->29->1672"
]
},
{
@@ -12612,7 +12621,7 @@
"zh-chs": "使用以下一种档案格式下载用户列表。",
"zh-cht": "使用以下一種檔案格式下載用戶列表。",
"xloc": [
- "default.handlebars->29->1735"
+ "default.handlebars->29->1737"
]
},
{
@@ -12693,7 +12702,7 @@
"zh-chs": "下载:“{0}”",
"zh-cht": "下載:“{0}”",
"xloc": [
- "default.handlebars->29->1603"
+ "default.handlebars->29->1605"
]
},
{
@@ -12733,7 +12742,7 @@
"zh-chs": "代理重复",
"zh-cht": "代理重複",
"xloc": [
- "default.handlebars->29->2037"
+ "default.handlebars->29->2039"
]
},
{
@@ -12773,7 +12782,7 @@
"zh-chs": "复制用户组",
"zh-cht": "複製用戶群",
"xloc": [
- "default.handlebars->29->1803"
+ "default.handlebars->29->1805"
]
},
{
@@ -12810,8 +12819,8 @@
"zh-chs": "持续时间",
"zh-cht": "持續時間",
"xloc": [
- "default.handlebars->29->1991",
- "default.handlebars->29->2011",
+ "default.handlebars->29->1993",
+ "default.handlebars->29->2013",
"player.handlebars->3->2"
]
},
@@ -12830,10 +12839,7 @@
"ru": "Во время активации агент будет иметь доступ к паролю администратора.",
"tr": "Etkinleştirme sırasında, aracının yönetici parolası bilgilerine erişimi olacaktır.",
"zh-chs": "在激活期间,代理将有权取得管理员密码信息。",
- "zh-cht": "在啟動期間,代理將有權取得管理員密碼訊息。",
- "xloc": [
- "default.handlebars->29->1371"
- ]
+ "zh-cht": "在啟動期間,代理將有權取得管理員密碼訊息。"
},
{
"cs": "nizozemština (Belgie)",
@@ -13165,10 +13171,10 @@
"default-mobile.handlebars->9->423",
"default-mobile.handlebars->9->425",
"default-mobile.handlebars->9->445",
- "default.handlebars->29->1380",
- "default.handlebars->29->1412",
- "default.handlebars->29->1436",
- "default.handlebars->29->1448"
+ "default.handlebars->29->1382",
+ "default.handlebars->29->1414",
+ "default.handlebars->29->1438",
+ "default.handlebars->29->1450"
]
},
{
@@ -13188,7 +13194,7 @@
"zh-chs": "编辑设备组功能",
"zh-cht": "編輯裝置群功能",
"xloc": [
- "default.handlebars->29->1398"
+ "default.handlebars->29->1400"
]
},
{
@@ -13208,8 +13214,8 @@
"zh-chs": "编辑设备组权限",
"zh-cht": "編輯裝置群權限",
"xloc": [
- "default.handlebars->29->1433",
- "default.handlebars->29->1445"
+ "default.handlebars->29->1435",
+ "default.handlebars->29->1447"
]
},
{
@@ -13229,7 +13235,7 @@
"zh-chs": "编辑设备组用户同意",
"zh-cht": "編輯裝置群用戶同意",
"xloc": [
- "default.handlebars->29->1381"
+ "default.handlebars->29->1383"
]
},
{
@@ -13250,7 +13256,7 @@
"zh-cht": "編輯裝置筆記",
"xloc": [
"default-mobile.handlebars->9->437",
- "default.handlebars->29->1425"
+ "default.handlebars->29->1427"
]
},
{
@@ -13270,8 +13276,8 @@
"zh-chs": "编辑设备权限",
"zh-cht": "編輯裝置權限",
"xloc": [
- "default.handlebars->29->1438",
- "default.handlebars->29->1440"
+ "default.handlebars->29->1440",
+ "default.handlebars->29->1442"
]
},
{
@@ -13311,7 +13317,7 @@
"zh-chs": "编辑设备用户同意",
"zh-cht": "編輯裝置用戶同意",
"xloc": [
- "default.handlebars->29->1383"
+ "default.handlebars->29->1385"
]
},
{
@@ -13379,7 +13385,7 @@
"zh-cht": "編輯筆記",
"xloc": [
"default-mobile.handlebars->9->452",
- "default.handlebars->29->1455"
+ "default.handlebars->29->1457"
]
},
{
@@ -13399,7 +13405,7 @@
"zh-chs": "编辑用户同意",
"zh-cht": "編輯用戶同意",
"xloc": [
- "default.handlebars->29->1382"
+ "default.handlebars->29->1384"
]
},
{
@@ -13419,7 +13425,7 @@
"zh-chs": "编辑用户设备组权限",
"zh-cht": "編輯用戶裝置群權限",
"xloc": [
- "default.handlebars->29->1446"
+ "default.handlebars->29->1448"
]
},
{
@@ -13439,7 +13445,7 @@
"zh-chs": "编辑用户设备权限",
"zh-cht": "編輯用戶裝置權限",
"xloc": [
- "default.handlebars->29->1441"
+ "default.handlebars->29->1443"
]
},
{
@@ -13459,7 +13465,7 @@
"zh-chs": "编辑用户组",
"zh-cht": "編輯用戶群",
"xloc": [
- "default.handlebars->29->1854"
+ "default.handlebars->29->1856"
]
},
{
@@ -13479,14 +13485,14 @@
"zh-chs": "编辑用户组设备权限",
"zh-cht": "編輯用戶群裝置權限",
"xloc": [
- "default.handlebars->29->1443"
+ "default.handlebars->29->1445"
]
},
{
"en": "Edit User Group User Consent",
"nl": "Bewerk groepsgebruikerstoestemming",
"xloc": [
- "default.handlebars->29->1384"
+ "default.handlebars->29->1386"
]
},
{
@@ -13548,11 +13554,11 @@
"zh-cht": "電郵",
"xloc": [
"default-mobile.handlebars->9->78",
- "default.handlebars->29->1753",
- "default.handlebars->29->1880",
+ "default.handlebars->29->1755",
"default.handlebars->29->1882",
- "default.handlebars->29->1922",
- "default.handlebars->29->1938",
+ "default.handlebars->29->1884",
+ "default.handlebars->29->1924",
+ "default.handlebars->29->1940",
"default.handlebars->29->312",
"login-mobile.handlebars->5->42",
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3",
@@ -13706,7 +13712,7 @@
"zh-chs": "电邮未验证",
"zh-cht": "電郵未驗證",
"xloc": [
- "default.handlebars->29->1699"
+ "default.handlebars->29->1701"
]
},
{
@@ -13726,8 +13732,8 @@
"zh-chs": "电邮已验证",
"zh-cht": "電郵已驗證",
"xloc": [
- "default.handlebars->29->1700",
- "default.handlebars->29->1874"
+ "default.handlebars->29->1702",
+ "default.handlebars->29->1876"
]
},
{
@@ -13747,7 +13753,7 @@
"zh-chs": "电邮已验证。",
"zh-cht": "電郵已驗證。",
"xloc": [
- "default.handlebars->29->1759"
+ "default.handlebars->29->1761"
]
},
{
@@ -13767,7 +13773,7 @@
"zh-chs": "电邮未验证",
"zh-cht": "電郵未驗證",
"xloc": [
- "default.handlebars->29->1875"
+ "default.handlebars->29->1877"
]
},
{
@@ -13831,7 +13837,7 @@
"zh-chs": "已通过电邮验证,并且需要重置密码。",
"zh-cht": "已通過電郵驗證,並且需要重置密碼。",
"xloc": [
- "default.handlebars->29->1760"
+ "default.handlebars->29->1762"
]
},
{
@@ -13851,7 +13857,7 @@
"zh-chs": "电邮/短信流量",
"zh-cht": "電郵/短信流量",
"xloc": [
- "default.handlebars->29->2079"
+ "default.handlebars->29->2081"
]
},
{
@@ -13897,7 +13903,7 @@
"zh-chs": "启用邀请代码",
"zh-cht": "啟用邀請代碼",
"xloc": [
- "default.handlebars->29->1478"
+ "default.handlebars->29->1480"
]
},
{
@@ -13978,7 +13984,7 @@
"zh-chs": "已启用",
"zh-cht": "已啟用",
"xloc": [
- "default.handlebars->29->2013"
+ "default.handlebars->29->2015"
]
},
{
@@ -13998,7 +14004,7 @@
"zh-chs": "启用电子邮件两因素身份验证",
"zh-cht": "啟用電子郵件兩因素身份驗證",
"xloc": [
- "default.handlebars->29->1642"
+ "default.handlebars->29->1644"
]
},
{
@@ -14038,7 +14044,7 @@
"zh-chs": "时间结束",
"zh-cht": "時間結束",
"xloc": [
- "default.handlebars->29->2010"
+ "default.handlebars->29->2012"
]
},
{
@@ -14058,7 +14064,7 @@
"zh-chs": "从{1}到{2},{3}秒结束了桌面会话“{0}”",
"zh-cht": "從{1}到{2},{3}秒結束了桌面會話“{0}”",
"xloc": [
- "default.handlebars->29->1565"
+ "default.handlebars->29->1567"
]
},
{
@@ -14078,7 +14084,7 @@
"zh-chs": "从{1}到{2},{3}秒结束了文件管理会话“{0}”",
"zh-cht": "從{1}到{2},{3}秒結束了文件管理會話“{0}”",
"xloc": [
- "default.handlebars->29->1566"
+ "default.handlebars->29->1568"
]
},
{
@@ -14098,7 +14104,7 @@
"zh-chs": "从{1}到{2},{3}秒结束了中继会话“{0}”",
"zh-cht": "從{1}到{2},{3}秒結束了中繼會話“{0}”",
"xloc": [
- "default.handlebars->29->1563"
+ "default.handlebars->29->1565"
]
},
{
@@ -14118,7 +14124,7 @@
"zh-chs": "从{1}到{2},{3}秒结束了终端会话“{0}”",
"zh-cht": "從{1}到{2},{3}秒結束了終端會話“{0}”",
"xloc": [
- "default.handlebars->29->1564"
+ "default.handlebars->29->1566"
]
},
{
@@ -14419,7 +14425,7 @@
"zh-chs": "输入管理领域名称的逗号分隔列表。",
"zh-cht": "輸入管理領域名稱的逗號分隔列表。",
"xloc": [
- "default.handlebars->29->1764"
+ "default.handlebars->29->1766"
]
},
{
@@ -14642,7 +14648,7 @@
"zh-chs": "事件列表输出",
"zh-cht": "事件列表輸出",
"xloc": [
- "default.handlebars->29->1675"
+ "default.handlebars->29->1677"
]
},
{
@@ -14835,7 +14841,7 @@
"zh-chs": "外部",
"zh-cht": "外部",
"xloc": [
- "default.handlebars->29->2064"
+ "default.handlebars->29->2066"
]
},
{
@@ -14935,7 +14941,7 @@
"zh-chs": "本地用户拒绝后无法启动远程桌面",
"zh-cht": "本地用戶拒絕後無法啟動遠程桌面",
"xloc": [
- "default.handlebars->29->1588"
+ "default.handlebars->29->1590"
]
},
{
@@ -14955,7 +14961,7 @@
"zh-chs": "本地用户拒绝后无法启动远程文件",
"zh-cht": "本地用戶拒絕後無法啟動遠程文件",
"xloc": [
- "default.handlebars->29->1595"
+ "default.handlebars->29->1597"
]
},
{
@@ -15183,8 +15189,8 @@
"xloc": [
"default-mobile.handlebars->9->171",
"default-mobile.handlebars->9->268",
- "default.handlebars->29->1392",
- "default.handlebars->29->1998",
+ "default.handlebars->29->1394",
+ "default.handlebars->29->2000",
"default.handlebars->29->258",
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles",
"default.handlebars->contextMenu->cxfiles"
@@ -15228,8 +15234,8 @@
"zh-cht": "檔案通知",
"xloc": [
"default.handlebars->29->1318",
- "default.handlebars->29->1820",
- "default.handlebars->29->1907",
+ "default.handlebars->29->1822",
+ "default.handlebars->29->1909",
"default.handlebars->29->584"
]
},
@@ -15251,8 +15257,8 @@
"zh-cht": "檔案提示",
"xloc": [
"default.handlebars->29->1317",
- "default.handlebars->29->1819",
- "default.handlebars->29->1906",
+ "default.handlebars->29->1821",
+ "default.handlebars->29->1908",
"default.handlebars->29->583"
]
},
@@ -15296,7 +15302,7 @@
"zh-chs": "录制会话已完成,{0}秒",
"zh-cht": "錄製會話已完成,{0}秒",
"xloc": [
- "default.handlebars->29->1561"
+ "default.handlebars->29->1563"
]
},
{
@@ -15469,8 +15475,8 @@
"zh-chs": "下次登录时强制重置密码。",
"zh-cht": "下次登入時強制重置密碼。",
"xloc": [
- "default.handlebars->29->1758",
- "default.handlebars->29->1947"
+ "default.handlebars->29->1760",
+ "default.handlebars->29->1949"
]
},
{
@@ -15553,7 +15559,7 @@
"zh-chs": "格式化",
"zh-cht": "格式化",
"xloc": [
- "default.handlebars->29->1666"
+ "default.handlebars->29->1668"
]
},
{
@@ -15594,8 +15600,8 @@
"zh-chs": "自由",
"zh-cht": "自由",
"xloc": [
- "default.handlebars->29->2022",
- "default.handlebars->29->2024"
+ "default.handlebars->29->2024",
+ "default.handlebars->29->2026"
]
},
{
@@ -15821,8 +15827,8 @@
"default-mobile.handlebars->9->424",
"default-mobile.handlebars->9->444",
"default.handlebars->29->1272",
- "default.handlebars->29->1411",
- "default.handlebars->29->1770"
+ "default.handlebars->29->1413",
+ "default.handlebars->29->1772"
]
},
{
@@ -15842,7 +15848,7 @@
"zh-chs": "完整管理员(保留所有权利)",
"zh-cht": "完整管理員(保留所有權利)",
"xloc": [
- "default.handlebars->29->1447"
+ "default.handlebars->29->1449"
]
},
{
@@ -15941,7 +15947,7 @@
"zh-chs": "完整管理员",
"zh-cht": "完整管理員",
"xloc": [
- "default.handlebars->29->1868"
+ "default.handlebars->29->1870"
]
},
{
@@ -16336,7 +16342,7 @@
"zh-chs": "正在获取剪贴板内容,{0}个字节",
"zh-cht": "正在獲取剪貼板內容,{0}個字節",
"xloc": [
- "default.handlebars->29->1575"
+ "default.handlebars->29->1577"
]
},
{
@@ -16567,8 +16573,8 @@
"zh-chs": "集体指令",
"zh-cht": "集體指令",
"xloc": [
- "default.handlebars->29->1714",
- "default.handlebars->29->1793",
+ "default.handlebars->29->1716",
+ "default.handlebars->29->1795",
"default.handlebars->29->441",
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar",
"default.handlebars->container->column_l->p4->3->1->0->3->3",
@@ -16592,7 +16598,7 @@
"zh-chs": "通过...分组",
"zh-cht": "通過...分群",
"xloc": [
- "default.handlebars->29->1662"
+ "default.handlebars->29->1664"
]
},
{
@@ -16612,7 +16618,7 @@
"zh-chs": "组标识符",
"zh-cht": "群標識符",
"xloc": [
- "default.handlebars->29->1810"
+ "default.handlebars->29->1812"
]
},
{
@@ -16632,7 +16638,7 @@
"zh-chs": "群组成员",
"zh-cht": "群組成員",
"xloc": [
- "default.handlebars->29->1831"
+ "default.handlebars->29->1833"
]
},
{
@@ -16652,7 +16658,7 @@
"zh-chs": "用户{0}的群组权限。",
"zh-cht": "用戶{0}的群組權限。",
"xloc": [
- "default.handlebars->29->1410"
+ "default.handlebars->29->1412"
]
},
{
@@ -16672,7 +16678,7 @@
"zh-chs": "{0}的群组权限。",
"zh-cht": "{0}的群組權限。",
"xloc": [
- "default.handlebars->29->1409"
+ "default.handlebars->29->1411"
]
},
{
@@ -16863,7 +16869,7 @@
"zh-chs": "堆总数",
"zh-cht": "堆總數",
"xloc": [
- "default.handlebars->29->2066"
+ "default.handlebars->29->2068"
]
},
{
@@ -16883,7 +16889,7 @@
"zh-chs": "堆使用",
"zh-cht": "堆使用",
"xloc": [
- "default.handlebars->29->2065"
+ "default.handlebars->29->2067"
]
},
{
@@ -16938,7 +16944,7 @@
"en": "Help Requested, user: {0}, details: {1}",
"nl": "Hulp verzoek van, user: {0}, details: {1}",
"xloc": [
- "default.handlebars->29->1652"
+ "default.handlebars->29->1654"
]
},
{
@@ -17199,7 +17205,7 @@
"zh-cht": "保存{0}項目{1}給{2}",
"xloc": [
"default-mobile.handlebars->9->129",
- "default.handlebars->29->1548"
+ "default.handlebars->29->1550"
]
},
{
@@ -17592,6 +17598,12 @@
"default.handlebars->29->968"
]
},
+ {
+ "en": "If in CCM, reactivate Intel® AMT",
+ "xloc": [
+ "default.handlebars->29->1366"
+ ]
+ },
{
"cs": "Pokud je platný, resetujte odeslanou poštu.",
"de": "Falls gültig, gesendete E-Mail zurücksetzen.",
@@ -17910,8 +17922,8 @@
"zh-chs": "安装类型",
"zh-cht": "安裝方式",
"xloc": [
- "default.handlebars->29->1480",
- "default.handlebars->29->1487",
+ "default.handlebars->29->1482",
+ "default.handlebars->29->1489",
"default.handlebars->29->327",
"default.handlebars->29->341",
"default.handlebars->29->355"
@@ -17955,7 +17967,7 @@
"zh-chs": "英特尔AMT",
"zh-cht": "英特爾AMT",
"xloc": [
- "default.handlebars->29->2062"
+ "default.handlebars->29->2064"
]
},
{
@@ -18000,9 +18012,9 @@
"default-mobile.handlebars->9->252",
"default.handlebars->29->1325",
"default.handlebars->29->1336",
- "default.handlebars->29->1499",
- "default.handlebars->29->1507",
- "default.handlebars->29->2084",
+ "default.handlebars->29->1501",
+ "default.handlebars->29->1509",
+ "default.handlebars->29->2086",
"default.handlebars->29->508",
"default.handlebars->29->566",
"default.handlebars->29->594"
@@ -18171,7 +18183,7 @@
"zh-chs": "英特尔®AMT重定向",
"zh-cht": "Intel® AMT重定向",
"xloc": [
- "default.handlebars->29->2000",
+ "default.handlebars->29->2002",
"player.handlebars->3->14"
]
},
@@ -18212,7 +18224,7 @@
"zh-chs": "英特尔®AMT WSMAN",
"zh-cht": "Intle® AMT WSMAN",
"xloc": [
- "default.handlebars->29->1999",
+ "default.handlebars->29->2001",
"player.handlebars->3->13"
]
},
@@ -18273,7 +18285,7 @@
"zh-cht": "Intel® AMT桌面和串行事件。",
"xloc": [
"default.handlebars->29->1233",
- "default.handlebars->29->1495"
+ "default.handlebars->29->1497"
]
},
{
@@ -18749,8 +18761,8 @@
"zh-chs": "仅限互动",
"zh-cht": "僅限互動",
"xloc": [
- "default.handlebars->29->1483",
- "default.handlebars->29->1490",
+ "default.handlebars->29->1485",
+ "default.handlebars->29->1492",
"default.handlebars->29->330",
"default.handlebars->29->344",
"default.handlebars->29->358"
@@ -18822,7 +18834,7 @@
"zh-chs": "无效的设备组类型",
"zh-cht": "無效的裝置群類型",
"xloc": [
- "default.handlebars->29->2036"
+ "default.handlebars->29->2038"
]
},
{
@@ -18842,7 +18854,7 @@
"zh-chs": "无效的JSON",
"zh-cht": "無效的JSON",
"xloc": [
- "default.handlebars->29->2030"
+ "default.handlebars->29->2032"
]
},
{
@@ -18862,8 +18874,8 @@
"zh-chs": "无效的JSON档案格式。",
"zh-cht": "無效的JSON檔案格式。",
"xloc": [
- "default.handlebars->29->1732",
- "default.handlebars->29->1734"
+ "default.handlebars->29->1734",
+ "default.handlebars->29->1736"
]
},
{
@@ -18883,7 +18895,7 @@
"zh-chs": "无效的JSON档案:{0}。",
"zh-cht": "無效的JSON檔案:{0}。",
"xloc": [
- "default.handlebars->29->1730"
+ "default.handlebars->29->1732"
]
},
{
@@ -18903,7 +18915,7 @@
"zh-chs": "无效的PKCS签名",
"zh-cht": "無效的PKCS簽名",
"xloc": [
- "default.handlebars->29->2028"
+ "default.handlebars->29->2030"
]
},
{
@@ -18923,7 +18935,7 @@
"zh-chs": "無效的RSA密碼",
"zh-cht": "無效的RSA密碼",
"xloc": [
- "default.handlebars->29->2029"
+ "default.handlebars->29->2031"
]
},
{
@@ -19050,7 +19062,7 @@
"zh-chs": "使电邮无效",
"zh-cht": "使電郵無效",
"xloc": [
- "default.handlebars->29->1708"
+ "default.handlebars->29->1710"
]
},
{
@@ -19127,7 +19139,7 @@
"zh-chs": "任何人都可以使用邀请代码通过以下公共连接将设备加入该设备组:",
"zh-cht": "任何人都可以使用邀請代碼通過以下公共鏈結將裝置加入該裝置群:",
"xloc": [
- "default.handlebars->29->1485"
+ "default.handlebars->29->1487"
]
},
{
@@ -19190,10 +19202,10 @@
"zh-cht": "邀請碼",
"xloc": [
"default.handlebars->29->1329",
- "default.handlebars->29->1479",
- "default.handlebars->29->1484",
+ "default.handlebars->29->1481",
"default.handlebars->29->1486",
- "default.handlebars->29->1491"
+ "default.handlebars->29->1488",
+ "default.handlebars->29->1493"
]
},
{
@@ -19334,7 +19346,7 @@
"zh-chs": "JSON",
"zh-cht": "JSON",
"xloc": [
- "default.handlebars->29->1668"
+ "default.handlebars->29->1670"
]
},
{
@@ -19354,8 +19366,8 @@
"zh-chs": "JSON格式",
"zh-cht": "JSON格式",
"xloc": [
- "default.handlebars->29->1673",
- "default.handlebars->29->1738",
+ "default.handlebars->29->1675",
+ "default.handlebars->29->1740",
"default.handlebars->29->469"
]
},
@@ -19396,7 +19408,7 @@
"zh-chs": "已加入桌面Multiplex会话",
"zh-cht": "已加入桌面Multiplex會話",
"xloc": [
- "default.handlebars->29->1558"
+ "default.handlebars->29->1560"
]
},
{
@@ -19459,6 +19471,12 @@
"default.handlebars->29->1124"
]
},
+ {
+ "en": "Keep existing password",
+ "xloc": [
+ "default.handlebars->29->1358"
+ ]
+ },
{
"cs": "Ovladač jádra",
"de": "Kernel-Treiber",
@@ -19577,7 +19595,7 @@
"zh-chs": "杀死进程{0}",
"zh-cht": "殺死進程{0}",
"xloc": [
- "default.handlebars->29->1573"
+ "default.handlebars->29->1575"
]
},
{
@@ -19992,7 +20010,7 @@
"zh-chs": "最后访问",
"zh-cht": "最後訪問",
"xloc": [
- "default.handlebars->29->1681"
+ "default.handlebars->29->1683"
]
},
{
@@ -20012,7 +20030,7 @@
"zh-chs": "上次登录",
"zh-cht": "上次登入",
"xloc": [
- "default.handlebars->29->1889"
+ "default.handlebars->29->1891"
]
},
{
@@ -20084,7 +20102,7 @@
"zh-chs": "上次更改:{0}",
"zh-cht": "上次更改:{0}",
"xloc": [
- "default.handlebars->29->1893"
+ "default.handlebars->29->1895"
]
},
{
@@ -20144,7 +20162,7 @@
"zh-chs": "上次登录:{0}",
"zh-cht": "上次登入:{0}",
"xloc": [
- "default.handlebars->29->1691"
+ "default.handlebars->29->1693"
]
},
{
@@ -20345,7 +20363,7 @@
"zh-chs": "如没有请留空。",
"zh-cht": "如沒有請留空。",
"xloc": [
- "default.handlebars->29->1933"
+ "default.handlebars->29->1935"
]
},
{
@@ -20390,7 +20408,7 @@
"zh-chs": "离开桌面多路复用会话",
"zh-cht": "離開桌面多路復用會話",
"xloc": [
- "default.handlebars->29->1559"
+ "default.handlebars->29->1561"
]
},
{
@@ -20410,7 +20428,7 @@
"zh-chs": "减",
"zh-cht": "減",
"xloc": [
- "default.handlebars->29->2101"
+ "default.handlebars->29->2103"
]
},
{
@@ -20473,7 +20491,7 @@
"zh-cht": "有限輸入",
"xloc": [
"default-mobile.handlebars->9->457",
- "default.handlebars->29->1461",
+ "default.handlebars->29->1463",
"default.handlebars->29->659",
"default.handlebars->29->680"
]
@@ -20496,7 +20514,7 @@
"zh-cht": "僅有限輸入",
"xloc": [
"default-mobile.handlebars->9->430",
- "default.handlebars->29->1417"
+ "default.handlebars->29->1419"
]
},
{
@@ -20969,7 +20987,7 @@
"default.handlebars->29->1011",
"default.handlebars->29->1288",
"default.handlebars->29->1292",
- "default.handlebars->29->1987",
+ "default.handlebars->29->1989",
"default.handlebars->29->771"
]
},
@@ -21052,7 +21070,7 @@
"zh-chs": "本地用户接受的远程终端请求",
"zh-cht": "本地用戶接受的遠程終端請求",
"xloc": [
- "default.handlebars->29->1581"
+ "default.handlebars->29->1583"
]
},
{
@@ -21072,7 +21090,7 @@
"zh-chs": "本地用户拒绝了远程终端请求",
"zh-cht": "本地用戶拒絕了遠程終端請求",
"xloc": [
- "default.handlebars->29->1582"
+ "default.handlebars->29->1584"
]
},
{
@@ -21153,7 +21171,7 @@
"zh-chs": "锁定账户",
"zh-cht": "鎖定賬戶",
"xloc": [
- "default.handlebars->29->1778"
+ "default.handlebars->29->1780"
]
},
{
@@ -21173,7 +21191,7 @@
"zh-chs": "锁定帐户设置",
"zh-cht": "鎖定帳戶設置",
"xloc": [
- "default.handlebars->29->1781"
+ "default.handlebars->29->1783"
]
},
{
@@ -21193,7 +21211,7 @@
"zh-chs": "锁定账户",
"zh-cht": "鎖定賬戶",
"xloc": [
- "default.handlebars->29->1711"
+ "default.handlebars->29->1713"
]
},
{
@@ -21213,7 +21231,7 @@
"zh-chs": "已锁定",
"zh-cht": "已鎖定",
"xloc": [
- "default.handlebars->29->1692"
+ "default.handlebars->29->1694"
]
},
{
@@ -21233,7 +21251,7 @@
"zh-chs": "被锁定账户",
"zh-cht": "被鎖定賬戶",
"xloc": [
- "default.handlebars->29->1865"
+ "default.handlebars->29->1867"
]
},
{
@@ -21253,7 +21271,7 @@
"zh-chs": "将远程用户锁定在桌面之外",
"zh-cht": "將遠程用戶鎖定在桌面之外",
"xloc": [
- "default.handlebars->29->1607"
+ "default.handlebars->29->1609"
]
},
{
@@ -21873,7 +21891,7 @@
"zh-chs": "主服务器信息",
"zh-cht": "主伺服器訊息",
"xloc": [
- "default.handlebars->29->2073"
+ "default.handlebars->29->2075"
]
},
{
@@ -21976,8 +21994,8 @@
"xloc": [
"default-mobile.handlebars->9->427",
"default-mobile.handlebars->9->447",
- "default.handlebars->29->1414",
- "default.handlebars->29->1450"
+ "default.handlebars->29->1416",
+ "default.handlebars->29->1452"
]
},
{
@@ -21999,8 +22017,8 @@
"xloc": [
"default-mobile.handlebars->9->426",
"default-mobile.handlebars->9->446",
- "default.handlebars->29->1413",
- "default.handlebars->29->1449"
+ "default.handlebars->29->1415",
+ "default.handlebars->29->1451"
]
},
{
@@ -22040,7 +22058,7 @@
"zh-chs": "管理录音",
"zh-cht": "管理錄音",
"xloc": [
- "default.handlebars->29->1776"
+ "default.handlebars->29->1778"
]
},
{
@@ -22080,7 +22098,7 @@
"zh-chs": "管理用户组",
"zh-cht": "管理用戶群",
"xloc": [
- "default.handlebars->29->1775"
+ "default.handlebars->29->1777"
]
},
{
@@ -22100,7 +22118,7 @@
"zh-chs": "管理用户",
"zh-cht": "管理用戶",
"xloc": [
- "default.handlebars->29->1774",
+ "default.handlebars->29->1776",
"default.handlebars->29->674"
]
},
@@ -22268,7 +22286,7 @@
"zh-chs": "经理",
"zh-cht": "經理",
"xloc": [
- "default.handlebars->29->1697"
+ "default.handlebars->29->1699"
]
},
{
@@ -22383,7 +22401,7 @@
"zh-chs": "达到连接数量上限",
"zh-cht": "達到連接數量上限",
"xloc": [
- "default.handlebars->29->2034"
+ "default.handlebars->29->2036"
]
},
{
@@ -22448,7 +22466,7 @@
"zh-chs": "Megabyte",
"zh-cht": "Megabyte",
"xloc": [
- "default.handlebars->29->2063"
+ "default.handlebars->29->2065"
]
},
{
@@ -22469,7 +22487,7 @@
"zh-cht": "記憶體",
"xloc": [
"default-mobile.handlebars->9->398",
- "default.handlebars->29->2054",
+ "default.handlebars->29->2056",
"default.handlebars->29->977",
"default.handlebars->container->column_l->p40->3->1->p40type->3"
]
@@ -22524,7 +22542,7 @@
"zh-cht": "網格代理控制台",
"xloc": [
"default-mobile.handlebars->9->434",
- "default.handlebars->29->1422"
+ "default.handlebars->29->1424"
]
},
{
@@ -22629,7 +22647,7 @@
"zh-chs": "MeshAgent流量",
"zh-cht": "MeshAgent流量",
"xloc": [
- "default.handlebars->29->2075"
+ "default.handlebars->29->2077"
]
},
{
@@ -22649,7 +22667,7 @@
"zh-chs": "MeshAgent更新",
"zh-cht": "MeshAgent更新",
"xloc": [
- "default.handlebars->29->2076"
+ "default.handlebars->29->2078"
]
},
{
@@ -22770,7 +22788,7 @@
"zh-chs": "MeshCentral服务器同级化",
"zh-cht": "MeshCentral伺服器同級化",
"xloc": [
- "default.handlebars->29->2074"
+ "default.handlebars->29->2076"
]
},
{
@@ -23092,7 +23110,7 @@
"zh-chs": "消息调度器",
"zh-cht": "電郵調度器",
"xloc": [
- "default.handlebars->29->2072"
+ "default.handlebars->29->2074"
]
},
{
@@ -23275,7 +23293,7 @@
"zh-chs": "更多",
"zh-cht": "更多",
"xloc": [
- "default.handlebars->29->2100"
+ "default.handlebars->29->2102"
]
},
{
@@ -23356,7 +23374,7 @@
"zh-chs": "移动:“{0}”到“{1}”",
"zh-cht": "移動:“{0}”到“{1}”",
"xloc": [
- "default.handlebars->29->1606"
+ "default.handlebars->29->1608"
]
},
{
@@ -23376,7 +23394,7 @@
"zh-chs": "将设备{0}移动到组{1}",
"zh-cht": "將設備{0}移動到組{1}",
"xloc": [
- "default.handlebars->29->1639"
+ "default.handlebars->29->1641"
]
},
{
@@ -23416,7 +23434,7 @@
"zh-chs": "多路复用器",
"zh-cht": "多工器",
"xloc": [
- "default.handlebars->29->2012"
+ "default.handlebars->29->2014"
]
},
{
@@ -23769,13 +23787,13 @@
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea3->deskarea3x->DeskTools->5->1->1",
"default.handlebars->29->1259",
"default.handlebars->29->1299",
- "default.handlebars->29->1378",
- "default.handlebars->29->1679",
- "default.handlebars->29->1784",
- "default.handlebars->29->1800",
- "default.handlebars->29->1807",
- "default.handlebars->29->1852",
- "default.handlebars->29->1871",
+ "default.handlebars->29->1380",
+ "default.handlebars->29->1681",
+ "default.handlebars->29->1786",
+ "default.handlebars->29->1802",
+ "default.handlebars->29->1809",
+ "default.handlebars->29->1854",
+ "default.handlebars->29->1873",
"default.handlebars->29->531",
"default.handlebars->29->76",
"default.handlebars->29->830",
@@ -23824,7 +23842,7 @@
"zh-chs": "名称1,名称2,名称3",
"zh-cht": "名稱1,名稱2,名稱3",
"xloc": [
- "default.handlebars->29->1766"
+ "default.handlebars->29->1768"
]
},
{
@@ -23984,7 +24002,7 @@
"zh-chs": "生成新的2FA备份代码",
"zh-cht": "生成新的2FA備份代碼",
"xloc": [
- "default.handlebars->29->1646"
+ "default.handlebars->29->1648"
]
},
{
@@ -24049,7 +24067,7 @@
"xloc": [
"default-mobile.handlebars->9->120",
"default-mobile.handlebars->9->311",
- "default.handlebars->29->1538",
+ "default.handlebars->29->1540",
"default.handlebars->29->872",
"default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
"default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3"
@@ -24095,6 +24113,13 @@
"default-mobile.handlebars->9->58"
]
},
+ {
+ "en": "New password*",
+ "xloc": [
+ "default.handlebars->29->1362",
+ "default.handlebars->29->1363"
+ ]
+ },
{
"cs": "Nové heslo:",
"de": "Neues Passwort:",
@@ -24217,7 +24242,7 @@
"zh-chs": "没有桌面",
"zh-cht": "沒有桌面",
"xloc": [
- "default.handlebars->29->1457",
+ "default.handlebars->29->1459",
"default.handlebars->29->660",
"default.handlebars->29->681"
]
@@ -24239,7 +24264,7 @@
"zh-chs": "不能访问桌面",
"zh-cht": "不能訪問桌面",
"xloc": [
- "default.handlebars->29->1418"
+ "default.handlebars->29->1420"
]
},
{
@@ -24259,8 +24284,8 @@
"zh-chs": "找不到事件",
"zh-cht": "找不到事件",
"xloc": [
- "default.handlebars->29->1655",
- "default.handlebars->29->1986",
+ "default.handlebars->29->1657",
+ "default.handlebars->29->1988",
"default.handlebars->29->907"
]
},
@@ -24282,7 +24307,7 @@
"zh-cht": "不能存取檔案",
"xloc": [
"default-mobile.handlebars->9->432",
- "default.handlebars->29->1420"
+ "default.handlebars->29->1422"
]
},
{
@@ -24303,7 +24328,7 @@
"zh-cht": "沒有檔案",
"xloc": [
"default-mobile.handlebars->9->455",
- "default.handlebars->29->1459",
+ "default.handlebars->29->1461",
"default.handlebars->29->657",
"default.handlebars->29->678"
]
@@ -24348,8 +24373,8 @@
"xloc": [
"default-mobile.handlebars->9->433",
"default-mobile.handlebars->9->456",
- "default.handlebars->29->1421",
- "default.handlebars->29->1460"
+ "default.handlebars->29->1423",
+ "default.handlebars->29->1462"
]
},
{
@@ -24429,7 +24454,7 @@
"zh-chs": "没有成员",
"zh-cht": "沒有成員",
"xloc": [
- "default.handlebars->29->1834"
+ "default.handlebars->29->1836"
]
},
{
@@ -24449,7 +24474,7 @@
"zh-chs": "没有新的设备组",
"zh-cht": "沒有新的裝置群",
"xloc": [
- "default.handlebars->29->1779"
+ "default.handlebars->29->1781"
]
},
{
@@ -24494,7 +24519,7 @@
"default-mobile.handlebars->9->416",
"default-mobile.handlebars->9->463",
"default.handlebars->29->1273",
- "default.handlebars->29->1467",
+ "default.handlebars->29->1469",
"default.handlebars->29->671",
"default.handlebars->29->692"
]
@@ -24539,7 +24564,7 @@
"zh-cht": "沒有終端",
"xloc": [
"default-mobile.handlebars->9->454",
- "default.handlebars->29->1458",
+ "default.handlebars->29->1460",
"default.handlebars->29->656",
"default.handlebars->29->677"
]
@@ -24562,7 +24587,7 @@
"zh-cht": "不能訪問終端",
"xloc": [
"default-mobile.handlebars->9->431",
- "default.handlebars->29->1419"
+ "default.handlebars->29->1421"
]
},
{
@@ -24582,7 +24607,7 @@
"zh-chs": "没有工具(MeshCmd /路由器)",
"zh-cht": "沒有工具(MeshCmd /路由器)",
"xloc": [
- "default.handlebars->29->1780"
+ "default.handlebars->29->1782"
]
},
{
@@ -24610,8 +24635,8 @@
"zh-chs": "没有共同的设备组",
"zh-cht": "沒有共同的裝置群",
"xloc": [
- "default.handlebars->29->1840",
- "default.handlebars->29->1958"
+ "default.handlebars->29->1842",
+ "default.handlebars->29->1960"
]
},
{
@@ -24731,8 +24756,8 @@
"zh-chs": "没有共同的设备",
"zh-cht": "沒有共同的裝置",
"xloc": [
- "default.handlebars->29->1846",
- "default.handlebars->29->1970"
+ "default.handlebars->29->1848",
+ "default.handlebars->29->1972"
]
},
{
@@ -24752,7 +24777,7 @@
"zh-chs": "该设备组中没有设备。",
"zh-cht": "該裝置群中沒有裝置。",
"xloc": [
- "default.handlebars->29->1510"
+ "default.handlebars->29->1512"
]
},
{
@@ -24835,7 +24860,7 @@
"zh-chs": "找不到群组。",
"zh-cht": "找不到群組。",
"xloc": [
- "default.handlebars->29->1783"
+ "default.handlebars->29->1785"
]
},
{
@@ -24956,7 +24981,7 @@
"zh-chs": "没有录音。",
"zh-cht": "沒有錄音。",
"xloc": [
- "default.handlebars->29->1988"
+ "default.handlebars->29->1990"
]
},
{
@@ -24976,7 +25001,7 @@
"zh-chs": "没有服务器权限",
"zh-cht": "沒有伺服器權限",
"xloc": [
- "default.handlebars->29->1866"
+ "default.handlebars->29->1868"
]
},
{
@@ -24996,7 +25021,7 @@
"zh-chs": "没有用户组成员身份",
"zh-cht": "沒有用戶群成員身份",
"xloc": [
- "default.handlebars->29->1964"
+ "default.handlebars->29->1966"
]
},
{
@@ -25016,7 +25041,7 @@
"zh-chs": "未找到相应的用户。",
"zh-cht": "未找到相應的用戶。",
"xloc": [
- "default.handlebars->29->1687"
+ "default.handlebars->29->1689"
]
},
{
@@ -25112,18 +25137,18 @@
"default.handlebars->29->1321",
"default.handlebars->29->1326",
"default.handlebars->29->1328",
- "default.handlebars->29->1501",
- "default.handlebars->29->1520",
- "default.handlebars->29->1525",
- "default.handlebars->29->1663",
+ "default.handlebars->29->1503",
+ "default.handlebars->29->1522",
+ "default.handlebars->29->1527",
+ "default.handlebars->29->1665",
"default.handlebars->29->177",
- "default.handlebars->29->1804",
"default.handlebars->29->1806",
- "default.handlebars->29->1823",
- "default.handlebars->29->1885",
- "default.handlebars->29->1894",
- "default.handlebars->29->1898",
- "default.handlebars->29->1910",
+ "default.handlebars->29->1808",
+ "default.handlebars->29->1825",
+ "default.handlebars->29->1887",
+ "default.handlebars->29->1896",
+ "default.handlebars->29->1900",
+ "default.handlebars->29->1912",
"default.handlebars->29->192",
"default.handlebars->29->208",
"default.handlebars->29->209",
@@ -25279,8 +25304,8 @@
"zh-chs": "未连接",
"zh-cht": "未連接",
"xloc": [
- "default.handlebars->29->1497",
- "default.handlebars->29->1505"
+ "default.handlebars->29->1499",
+ "default.handlebars->29->1507"
]
},
{
@@ -25321,7 +25346,7 @@
"zh-chs": "不在服务器上",
"zh-cht": "不在伺服器上",
"xloc": [
- "default.handlebars->29->2004"
+ "default.handlebars->29->2006"
]
},
{
@@ -25341,8 +25366,8 @@
"zh-chs": "没有设置",
"zh-cht": "沒有設置",
"xloc": [
- "default.handlebars->29->1872",
- "default.handlebars->29->1873"
+ "default.handlebars->29->1874",
+ "default.handlebars->29->1875"
]
},
{
@@ -25362,7 +25387,7 @@
"zh-chs": "未经审核的",
"zh-cht": "未經審核的",
"xloc": [
- "default.handlebars->29->1940"
+ "default.handlebars->29->1942"
]
},
{
@@ -25383,7 +25408,7 @@
"zh-cht": "筆記",
"xloc": [
"default.handlebars->29->1337",
- "default.handlebars->29->1918",
+ "default.handlebars->29->1920",
"default.handlebars->29->603",
"default.handlebars->29->665",
"default.handlebars->29->686",
@@ -25428,7 +25453,7 @@
"zh-cht": "通知設定",
"xloc": [
"default.handlebars->29->1234",
- "default.handlebars->29->1496",
+ "default.handlebars->29->1498",
"default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->10"
]
},
@@ -25449,7 +25474,7 @@
"zh-chs": "通知设置还必须在帐户设置中启用。",
"zh-cht": "通知設定還必須在帳戶設定中啟用。",
"xloc": [
- "default.handlebars->29->1492"
+ "default.handlebars->29->1494"
]
},
{
@@ -25510,7 +25535,7 @@
"zh-cht": "通知",
"xloc": [
"default.handlebars->29->189",
- "default.handlebars->29->1924"
+ "default.handlebars->29->1926"
]
},
{
@@ -25550,9 +25575,9 @@
"zh-chs": "通知使用者",
"zh-cht": "通知使用者",
"xloc": [
- "default.handlebars->29->1386",
- "default.handlebars->29->1390",
- "default.handlebars->29->1393"
+ "default.handlebars->29->1388",
+ "default.handlebars->29->1392",
+ "default.handlebars->29->1395"
]
},
{
@@ -25572,7 +25597,7 @@
"zh-chs": "通知{0}",
"zh-cht": "通知{0}",
"xloc": [
- "default.handlebars->29->1726"
+ "default.handlebars->29->1728"
]
},
{
@@ -25664,7 +25689,7 @@
"zh-chs": "发生在{0}",
"zh-cht": "發生在{0}",
"xloc": [
- "default.handlebars->29->2018"
+ "default.handlebars->29->2020"
]
},
{
@@ -25691,7 +25716,7 @@
"zh-chs": "离线用户",
"zh-cht": "離線用戶",
"xloc": [
- "default.handlebars->29->1684"
+ "default.handlebars->29->1686"
]
},
{
@@ -25732,7 +25757,7 @@
"zh-chs": "一天",
"zh-cht": "一天",
"xloc": [
- "default.handlebars->29->1660"
+ "default.handlebars->29->1662"
]
},
{
@@ -25795,7 +25820,7 @@
"zh-chs": "在线用户",
"zh-cht": "在線用戶",
"xloc": [
- "default.handlebars->29->1683"
+ "default.handlebars->29->1685"
]
},
{
@@ -25979,7 +26004,7 @@
"zh-chs": "开头:{0}",
"zh-cht": "開場:{0}",
"xloc": [
- "default.handlebars->29->1574"
+ "default.handlebars->29->1576"
]
},
{
@@ -26025,8 +26050,8 @@
"zh-cht": "操作",
"xloc": [
"default-mobile.handlebars->9->275",
- "default.handlebars->29->1710",
- "default.handlebars->29->1791",
+ "default.handlebars->29->1712",
+ "default.handlebars->29->1793",
"default.handlebars->29->439",
"default.handlebars->29->454",
"default.handlebars->29->731"
@@ -26231,7 +26256,7 @@
"zh-chs": "部分的",
"zh-cht": "部分的",
"xloc": [
- "default.handlebars->29->1698"
+ "default.handlebars->29->1700"
]
},
{
@@ -26307,7 +26332,7 @@
"zh-chs": "部分权限",
"zh-cht": "部分權限",
"xloc": [
- "default.handlebars->29->1869"
+ "default.handlebars->29->1871"
]
},
{
@@ -26348,12 +26373,13 @@
"zh-cht": "密碼",
"xloc": [
"default-mobile.handlebars->9->281",
- "default.handlebars->29->1754",
- "default.handlebars->29->1755",
- "default.handlebars->29->1890",
+ "default.handlebars->29->1359",
+ "default.handlebars->29->1756",
+ "default.handlebars->29->1757",
"default.handlebars->29->1892",
- "default.handlebars->29->1943",
- "default.handlebars->29->1944",
+ "default.handlebars->29->1894",
+ "default.handlebars->29->1945",
+ "default.handlebars->29->1946",
"default.handlebars->29->292",
"default.handlebars->29->746",
"login2.handlebars->centralTable->1->0->logincell->loginpanel->1->5->1->2->1",
@@ -26496,7 +26522,7 @@
"zh-chs": "密码提示",
"zh-cht": "密碼提示",
"xloc": [
- "default.handlebars->29->1945"
+ "default.handlebars->29->1947"
]
},
{
@@ -26535,10 +26561,7 @@
"ru": "Пароль не совпадает",
"tr": "Şifre eşleşmiyor",
"zh-chs": "密码不符",
- "zh-cht": "密碼不符",
- "xloc": [
- "default.handlebars->29->1360"
- ]
+ "zh-cht": "密碼不符"
},
{
"cs": "Heslo odmítnuto, zkuste jiné.",
@@ -26577,11 +26600,7 @@
"ru": "Пароль*",
"tr": "Parola*",
"zh-chs": "密码*",
- "zh-cht": "密碼*",
- "xloc": [
- "default.handlebars->29->1358",
- "default.handlebars->29->1359"
- ]
+ "zh-cht": "密碼*"
},
{
"cs": "Heslo:",
@@ -26642,7 +26661,7 @@
"default-mobile.handlebars->9->324",
"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->29->1547",
+ "default.handlebars->29->1549",
"default.handlebars->29->860",
"default.handlebars->29->886",
"default.handlebars->container->column_l->p12->termTable->1->1->6->1->3",
@@ -26899,7 +26918,7 @@
"zh-chs": "执行电源操作= {0},强制执行= {1}",
"zh-cht": "執行電源操作= {0},強制執行= {1}",
"xloc": [
- "default.handlebars->29->1579"
+ "default.handlebars->29->1581"
]
},
{
@@ -26920,8 +26939,8 @@
"zh-cht": "權限",
"xloc": [
"default-mobile.handlebars->9->466",
- "default.handlebars->29->1470",
- "default.handlebars->29->1682"
+ "default.handlebars->29->1472",
+ "default.handlebars->29->1684"
]
},
{
@@ -26967,7 +26986,7 @@
"default.handlebars->29->1003",
"default.handlebars->29->1006",
"default.handlebars->29->159",
- "default.handlebars->29->1935"
+ "default.handlebars->29->1937"
]
},
{
@@ -26987,7 +27006,7 @@
"zh-chs": "电话号码",
"zh-cht": "電話號碼",
"xloc": [
- "default.handlebars->29->1884"
+ "default.handlebars->29->1886"
]
},
{
@@ -27009,7 +27028,7 @@
"xloc": [
"default-mobile.handlebars->9->66",
"default.handlebars->29->1005",
- "default.handlebars->29->1934"
+ "default.handlebars->29->1936"
]
},
{
@@ -27169,7 +27188,7 @@
"zh-cht": "外掛指令",
"xloc": [
"default.handlebars->29->199",
- "default.handlebars->29->2097"
+ "default.handlebars->29->2099"
]
},
{
@@ -27454,7 +27473,7 @@
"zh-chs": "电源状态",
"zh-cht": "電源狀態",
"xloc": [
- "default.handlebars->29->1503",
+ "default.handlebars->29->1505",
"default.handlebars->container->column_l->p21->3->1->meshPowerChartDiv->1"
]
},
@@ -27564,7 +27583,7 @@
"zh-chs": "存在于服务器上",
"zh-cht": "存在於伺服器上",
"xloc": [
- "default.handlebars->29->2003"
+ "default.handlebars->29->2005"
]
},
{
@@ -27710,7 +27729,7 @@
"zh-chs": "处理控制台命令:“{0}”",
"zh-cht": "處理控制台命令:“{0}”",
"xloc": [
- "default.handlebars->29->1571"
+ "default.handlebars->29->1573"
]
},
{
@@ -27770,9 +27789,9 @@
"zh-chs": "用户同意提示",
"zh-cht": "用戶同意提示",
"xloc": [
- "default.handlebars->29->1387",
- "default.handlebars->29->1391",
- "default.handlebars->29->1394"
+ "default.handlebars->29->1389",
+ "default.handlebars->29->1393",
+ "default.handlebars->29->1396"
]
},
{
@@ -27792,7 +27811,7 @@
"zh-chs": "协议",
"zh-cht": "協議",
"xloc": [
- "default.handlebars->29->2001",
+ "default.handlebars->29->2003",
"player.handlebars->3->16"
]
},
@@ -27852,7 +27871,7 @@
"zh-cht": "公開鏈結",
"xloc": [
"default-mobile.handlebars->9->115",
- "default.handlebars->29->1532"
+ "default.handlebars->29->1534"
]
},
{
@@ -28159,7 +28178,13 @@
"zh-chs": "RSS",
"zh-cht": "RSS",
"xloc": [
- "default.handlebars->29->2067"
+ "default.handlebars->29->2069"
+ ]
+ },
+ {
+ "en": "Randomize password",
+ "xloc": [
+ "default.handlebars->29->1360"
]
},
{
@@ -28179,7 +28204,7 @@
"zh-chs": "随机密码。",
"zh-cht": "隨機密碼。",
"xloc": [
- "default.handlebars->29->1756"
+ "default.handlebars->29->1758"
]
},
{
@@ -28217,10 +28242,7 @@
"ru": "Реактивировать Intel® AMT",
"tr": "Intel® AMT'yi yeniden etkinleştirin",
"zh-chs": "重新激活英特尔®AMT",
- "zh-cht": "重新啟動Intel® AMT",
- "xloc": [
- "default.handlebars->29->1362"
- ]
+ "zh-cht": "重新啟動Intel® AMT"
},
{
"cs": "Skutečné jméno",
@@ -28239,9 +28261,9 @@
"zh-chs": "真正的名字",
"zh-cht": "真正的名字",
"xloc": [
- "default.handlebars->29->1881",
"default.handlebars->29->1883",
- "default.handlebars->29->1936"
+ "default.handlebars->29->1885",
+ "default.handlebars->29->1938"
]
},
{
@@ -28261,7 +28283,7 @@
"zh-chs": "境界",
"zh-cht": "境界",
"xloc": [
- "default.handlebars->29->1765"
+ "default.handlebars->29->1767"
]
},
{
@@ -28316,7 +28338,7 @@
"en": "Record sessions",
"nl": "Sessies opnemen",
"xloc": [
- "default.handlebars->29->1397"
+ "default.handlebars->29->1399"
]
},
{
@@ -28336,7 +28358,7 @@
"zh-chs": "记录细节",
"zh-cht": "記錄細節",
"xloc": [
- "default.handlebars->29->2015"
+ "default.handlebars->29->2017"
]
},
{
@@ -28378,7 +28400,7 @@
"xloc": [
"default-mobile.handlebars->9->121",
"default-mobile.handlebars->9->312",
- "default.handlebars->29->1539",
+ "default.handlebars->29->1541",
"default.handlebars->29->873"
]
},
@@ -28498,7 +28520,7 @@
"zh-chs": "中继数量",
"zh-cht": "中繼數量",
"xloc": [
- "default.handlebars->29->2046"
+ "default.handlebars->29->2048"
]
},
{
@@ -28518,7 +28540,7 @@
"zh-chs": "中继错误",
"zh-cht": "中繼錯誤",
"xloc": [
- "default.handlebars->29->2039"
+ "default.handlebars->29->2041"
]
},
{
@@ -28538,8 +28560,8 @@
"zh-chs": "中继连接",
"zh-cht": "中繼連接",
"xloc": [
- "default.handlebars->29->2045",
- "default.handlebars->29->2061"
+ "default.handlebars->29->2047",
+ "default.handlebars->29->2063"
]
},
{
@@ -28684,7 +28706,7 @@
"nl": "Externe opdrachten",
"xloc": [
"default-mobile.handlebars->9->441",
- "default.handlebars->29->1429"
+ "default.handlebars->29->1431"
]
},
{
@@ -28706,8 +28728,8 @@
"xloc": [
"default-mobile.handlebars->9->428",
"default-mobile.handlebars->9->448",
- "default.handlebars->29->1415",
- "default.handlebars->29->1451"
+ "default.handlebars->29->1417",
+ "default.handlebars->29->1453"
]
},
{
@@ -28750,8 +28772,8 @@
"zh-chs": "远程桌面连接栏已激活/更新",
"zh-cht": "遠程桌面連接欄已激活/更新",
"xloc": [
- "default.handlebars->29->1585",
- "default.handlebars->29->1591"
+ "default.handlebars->29->1587",
+ "default.handlebars->29->1593"
]
},
{
@@ -28771,7 +28793,7 @@
"zh-chs": "远程桌面连接栏失败或不受支持",
"zh-cht": "遠程桌面連接欄失敗或不受支持",
"xloc": [
- "default.handlebars->29->1586"
+ "default.handlebars->29->1588"
]
},
{
@@ -28791,7 +28813,7 @@
"zh-chs": "远程桌面连接栏失败或不受支持",
"zh-cht": "遠程桌面連接欄失敗或不受支持",
"xloc": [
- "default.handlebars->29->1592"
+ "default.handlebars->29->1594"
]
},
{
@@ -28811,9 +28833,9 @@
"zh-chs": "本地用户强行关闭了远程桌面连接",
"zh-cht": "本地用戶強行關閉了遠程桌面連接",
"xloc": [
- "default.handlebars->29->1583",
- "default.handlebars->29->1587",
- "default.handlebars->29->1593"
+ "default.handlebars->29->1585",
+ "default.handlebars->29->1589",
+ "default.handlebars->29->1595"
]
},
{
@@ -28936,8 +28958,8 @@
"xloc": [
"default-mobile.handlebars->9->429",
"default-mobile.handlebars->9->453",
- "default.handlebars->29->1416",
- "default.handlebars->29->1456"
+ "default.handlebars->29->1418",
+ "default.handlebars->29->1458"
]
},
{
@@ -29072,8 +29094,8 @@
"zh-chs": "删除设备组权限",
"zh-cht": "刪除裝置群權限",
"xloc": [
- "default.handlebars->29->1850",
- "default.handlebars->29->1984"
+ "default.handlebars->29->1852",
+ "default.handlebars->29->1986"
]
},
{
@@ -29093,8 +29115,8 @@
"zh-chs": "删除设备权限",
"zh-cht": "刪除裝置權限",
"xloc": [
- "default.handlebars->29->1848",
- "default.handlebars->29->1971"
+ "default.handlebars->29->1850",
+ "default.handlebars->29->1973"
]
},
{
@@ -29131,7 +29153,7 @@
"zh-chs": "删除用户组成员身份",
"zh-cht": "刪除用戶群成員身份",
"xloc": [
- "default.handlebars->29->1980"
+ "default.handlebars->29->1982"
]
},
{
@@ -29151,8 +29173,8 @@
"zh-chs": "删除用户组权限",
"zh-cht": "刪除用戶群權限",
"xloc": [
- "default.handlebars->29->1475",
- "default.handlebars->29->1976"
+ "default.handlebars->29->1477",
+ "default.handlebars->29->1978"
]
},
{
@@ -29172,7 +29194,7 @@
"zh-chs": "删除用户成员资格",
"zh-cht": "刪除用戶成員資格",
"xloc": [
- "default.handlebars->29->1858"
+ "default.handlebars->29->1860"
]
},
{
@@ -29192,8 +29214,8 @@
"zh-chs": "删除用户权限",
"zh-cht": "刪除用戶權限",
"xloc": [
- "default.handlebars->29->1473",
- "default.handlebars->29->1973"
+ "default.handlebars->29->1475",
+ "default.handlebars->29->1975"
]
},
{
@@ -29213,7 +29235,7 @@
"zh-chs": "删除所有两因素认证。",
"zh-cht": "刪除所有二因子鑑別。",
"xloc": [
- "default.handlebars->29->1948"
+ "default.handlebars->29->1950"
]
},
{
@@ -29233,7 +29255,7 @@
"zh-chs": "删除此用户标识的所有先前事件。",
"zh-cht": "刪除此用戶標識的所有先前事件。",
"xloc": [
- "default.handlebars->29->1757"
+ "default.handlebars->29->1759"
]
},
{
@@ -29253,7 +29275,7 @@
"zh-chs": "断开连接后移除设备",
"zh-cht": "斷開連接後删除裝置",
"xloc": [
- "default.handlebars->29->1395"
+ "default.handlebars->29->1397"
]
},
{
@@ -29354,7 +29376,7 @@
"zh-chs": "删除此用户",
"zh-cht": "刪除此用戶",
"xloc": [
- "default.handlebars->29->1926"
+ "default.handlebars->29->1928"
]
},
{
@@ -29374,7 +29396,7 @@
"zh-chs": "删除用户组成员身份",
"zh-cht": "刪除用戶群成員身份",
"xloc": [
- "default.handlebars->29->1962"
+ "default.handlebars->29->1964"
]
},
{
@@ -29394,7 +29416,7 @@
"zh-chs": "删除此设备的用户组权限",
"zh-cht": "刪除此裝置的用戶群權限",
"xloc": [
- "default.handlebars->29->1844"
+ "default.handlebars->29->1846"
]
},
{
@@ -29414,7 +29436,7 @@
"zh-chs": "删除此设备组的用户组权限",
"zh-cht": "刪除此裝置群的用戶群權限",
"xloc": [
- "default.handlebars->29->1838",
+ "default.handlebars->29->1840",
"default.handlebars->29->649"
]
},
@@ -29436,9 +29458,9 @@
"zh-cht": "刪除此裝置群的用戶權限",
"xloc": [
"default.handlebars->29->1348",
- "default.handlebars->29->1832",
- "default.handlebars->29->1956",
- "default.handlebars->29->1968",
+ "default.handlebars->29->1834",
+ "default.handlebars->29->1958",
+ "default.handlebars->29->1970",
"default.handlebars->29->650"
]
},
@@ -29459,7 +29481,7 @@
"zh-chs": "删除身份验证应用程序",
"zh-cht": "刪除身份驗證應用程序",
"xloc": [
- "default.handlebars->29->1645"
+ "default.handlebars->29->1647"
]
},
{
@@ -29479,7 +29501,7 @@
"zh-chs": "从设备组{1}中删除了设备{0}",
"zh-cht": "從設備組{1}中刪除了設備{0}",
"xloc": [
- "default.handlebars->29->1641"
+ "default.handlebars->29->1643"
]
},
{
@@ -29499,7 +29521,7 @@
"zh-chs": "已删除用户{0}的电话号码",
"zh-cht": "已刪除用戶{0}的電話號碼",
"xloc": [
- "default.handlebars->29->1651"
+ "default.handlebars->29->1653"
]
},
{
@@ -29519,7 +29541,7 @@
"zh-chs": "移除安全密钥",
"zh-cht": "移除安全密鑰",
"xloc": [
- "default.handlebars->29->1648"
+ "default.handlebars->29->1650"
]
},
{
@@ -29539,9 +29561,9 @@
"zh-chs": "删除了{0}的用户设备权限",
"zh-cht": "刪除了{0}的用戶設備權限",
"xloc": [
- "default.handlebars->29->1614",
- "default.handlebars->29->1635",
- "default.handlebars->29->1640"
+ "default.handlebars->29->1616",
+ "default.handlebars->29->1637",
+ "default.handlebars->29->1642"
]
},
{
@@ -29561,7 +29583,7 @@
"zh-chs": "从设备组{1}中删除了用户组{0}",
"zh-cht": "從設備組{1}中刪除了用戶組{0}",
"xloc": [
- "default.handlebars->29->1624"
+ "default.handlebars->29->1626"
]
},
{
@@ -29581,7 +29603,7 @@
"zh-chs": "从设备组{1}中删除了用户{0}",
"zh-cht": "已從設備組{1}中刪除用戶{0}",
"xloc": [
- "default.handlebars->29->1637"
+ "default.handlebars->29->1639"
]
},
{
@@ -29601,8 +29623,8 @@
"zh-chs": "从用户组{1}中删除了用户{0}",
"zh-cht": "從用戶組{1}中刪除了用戶{0}",
"xloc": [
- "default.handlebars->29->1616",
- "default.handlebars->29->1626"
+ "default.handlebars->29->1618",
+ "default.handlebars->29->1628"
]
},
{
@@ -29626,7 +29648,7 @@
"default-mobile.handlebars->9->316",
"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->29->1543",
+ "default.handlebars->29->1545",
"default.handlebars->29->497",
"default.handlebars->29->877",
"default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
@@ -29651,7 +29673,7 @@
"zh-chs": "重命名:“{0}”为“{1}”",
"zh-cht": "重命名:“{0}”為“{1}”",
"xloc": [
- "default.handlebars->29->1602"
+ "default.handlebars->29->1604"
]
},
{
@@ -29671,7 +29693,7 @@
"zh-chs": "报告日",
"zh-cht": "報告日",
"xloc": [
- "default.handlebars->29->1661"
+ "default.handlebars->29->1663"
]
},
{
@@ -29691,7 +29713,7 @@
"zh-chs": "报告类型",
"zh-cht": "報告類型",
"xloc": [
- "default.handlebars->29->1656"
+ "default.handlebars->29->1658"
]
},
{
@@ -29732,8 +29754,8 @@
"zh-cht": "要求:{0}。",
"xloc": [
"default-mobile.handlebars->9->89",
- "default.handlebars->29->1762",
- "default.handlebars->29->1946"
+ "default.handlebars->29->1764",
+ "default.handlebars->29->1948"
]
},
{
@@ -29826,7 +29848,7 @@
"nl": "Reset / uitschakelen",
"xloc": [
"default-mobile.handlebars->9->442",
- "default.handlebars->29->1430"
+ "default.handlebars->29->1432"
]
},
{
@@ -29940,7 +29962,7 @@
"nl": "Reset/Uit",
"xloc": [
"default-mobile.handlebars->9->462",
- "default.handlebars->29->1466",
+ "default.handlebars->29->1468",
"default.handlebars->29->670",
"default.handlebars->29->691"
]
@@ -30052,7 +30074,7 @@
"zh-chs": "限制条件",
"zh-cht": "限制條件",
"xloc": [
- "default.handlebars->29->1870"
+ "default.handlebars->29->1872"
]
},
{
@@ -30134,7 +30156,7 @@
"xloc": [
"default-mobile.handlebars->9->107",
"default-mobile.handlebars->9->306",
- "default.handlebars->29->1511",
+ "default.handlebars->29->1513",
"default.handlebars->29->867"
]
},
@@ -30388,21 +30410,21 @@
"zh-chs": "运行命令",
"zh-cht": "運行命令",
"xloc": [
- "default.handlebars->29->1578"
+ "default.handlebars->29->1580"
]
},
{
"en": "Running commands as user",
"nl": "Commando's uitvoeren als gebruiker",
"xloc": [
- "default.handlebars->29->1653"
+ "default.handlebars->29->1655"
]
},
{
"en": "Running commands as user if possible",
"nl": "Indien mogelijk commando's uitvoeren als gebruiker",
"xloc": [
- "default.handlebars->29->1654"
+ "default.handlebars->29->1656"
]
},
{
@@ -30462,8 +30484,8 @@
"zh-chs": "短信",
"zh-cht": "短信",
"xloc": [
- "default.handlebars->29->1915",
- "default.handlebars->29->1920",
+ "default.handlebars->29->1917",
+ "default.handlebars->29->1922",
"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",
@@ -30488,7 +30510,7 @@
"zh-chs": "此用户的短信功能电话号码。",
"zh-cht": "此用戶的短信功能電話號碼。",
"xloc": [
- "default.handlebars->29->1932"
+ "default.handlebars->29->1934"
]
},
{
@@ -31038,7 +31060,7 @@
"xloc": [
"default-mobile.handlebars->9->282",
"default-mobile.handlebars->9->375",
- "default.handlebars->29->1916",
+ "default.handlebars->29->1918",
"default.handlebars->29->293",
"default.handlebars->29->747",
"default.handlebars->29->954"
@@ -31061,7 +31083,7 @@
"zh-chs": "安全密钥",
"zh-cht": "安全密鑰",
"xloc": [
- "default.handlebars->29->1913"
+ "default.handlebars->29->1915"
]
},
{
@@ -31101,9 +31123,9 @@
"zh-chs": "全选",
"zh-cht": "全選",
"xloc": [
- "default.handlebars->29->1535",
- "default.handlebars->29->1706",
- "default.handlebars->29->1789",
+ "default.handlebars->29->1537",
+ "default.handlebars->29->1708",
+ "default.handlebars->29->1791",
"default.handlebars->29->426",
"default.handlebars->29->869",
"default.handlebars->29->871",
@@ -31132,9 +31154,9 @@
"zh-chs": "选择无",
"zh-cht": "選擇無",
"xloc": [
- "default.handlebars->29->1534",
- "default.handlebars->29->1705",
- "default.handlebars->29->1788",
+ "default.handlebars->29->1536",
+ "default.handlebars->29->1707",
+ "default.handlebars->29->1790",
"default.handlebars->29->425",
"default.handlebars->29->870",
"default.handlebars->meshContextMenu->cxselectnone"
@@ -31237,8 +31259,8 @@
"zh-chs": "选择要对所有选定用户执行的操作。",
"zh-cht": "選擇要對所有選定用戶執行的操作。",
"xloc": [
- "default.handlebars->29->1709",
- "default.handlebars->29->1790"
+ "default.handlebars->29->1711",
+ "default.handlebars->29->1792"
]
},
{
@@ -31262,6 +31284,12 @@
"default.handlebars->29->723"
]
},
+ {
+ "en": "Select new password",
+ "xloc": [
+ "default.handlebars->29->1361"
+ ]
+ },
{
"cs": "Vybrat vše",
"de": "Alle auswählen",
@@ -31301,7 +31329,7 @@
"zh-cht": "僅自我事件",
"xloc": [
"default-mobile.handlebars->9->458",
- "default.handlebars->29->1462"
+ "default.handlebars->29->1464"
]
},
{
@@ -31344,7 +31372,7 @@
"zh-chs": "发电邮",
"zh-cht": "發電郵",
"xloc": [
- "default.handlebars->29->1720"
+ "default.handlebars->29->1722"
]
},
{
@@ -31405,7 +31433,7 @@
"zh-chs": "发送短信",
"zh-cht": "發送簡訊",
"xloc": [
- "default.handlebars->29->1718"
+ "default.handlebars->29->1720"
]
},
{
@@ -31425,7 +31453,7 @@
"zh-chs": "发送短信给该用户",
"zh-cht": "發送短信給該用戶",
"xloc": [
- "default.handlebars->29->1921"
+ "default.handlebars->29->1923"
]
},
{
@@ -31445,7 +31473,7 @@
"zh-chs": "发送电邮给该用户",
"zh-cht": "發送電郵給該用戶",
"xloc": [
- "default.handlebars->29->1923"
+ "default.handlebars->29->1925"
]
},
{
@@ -31465,7 +31493,7 @@
"zh-chs": "向该组中的所有用户发送通知。",
"zh-cht": "向該群中的所有用戶發送通知。",
"xloc": [
- "default.handlebars->29->1829"
+ "default.handlebars->29->1831"
]
},
{
@@ -31485,7 +31513,7 @@
"zh-chs": "向该用户发送文本通知。",
"zh-cht": "向該用戶發送文本通知。",
"xloc": [
- "default.handlebars->29->1721"
+ "default.handlebars->29->1723"
]
},
{
@@ -31505,7 +31533,7 @@
"zh-chs": "发送电邮给用户",
"zh-cht": "發送電郵給用戶",
"xloc": [
- "default.handlebars->29->1701"
+ "default.handlebars->29->1703"
]
},
{
@@ -31545,7 +31573,7 @@
"zh-chs": "发送邀请电邮。",
"zh-cht": "發送邀請電郵。",
"xloc": [
- "default.handlebars->29->1761"
+ "default.handlebars->29->1763"
]
},
{
@@ -31667,7 +31695,7 @@
"zh-chs": "发送用户通知",
"zh-cht": "發送用戶通知",
"xloc": [
- "default.handlebars->29->1925"
+ "default.handlebars->29->1927"
]
},
{
@@ -31728,7 +31756,7 @@
"zh-chs": "服务器备份",
"zh-cht": "伺服器備份",
"xloc": [
- "default.handlebars->29->1771"
+ "default.handlebars->29->1773"
]
},
{
@@ -31748,7 +31776,7 @@
"zh-chs": "服务器证书",
"zh-cht": "伺服器憑證",
"xloc": [
- "default.handlebars->29->2077"
+ "default.handlebars->29->2079"
]
},
{
@@ -31768,7 +31796,7 @@
"zh-chs": "服务器数据库",
"zh-cht": "伺服器數據庫",
"xloc": [
- "default.handlebars->29->2078"
+ "default.handlebars->29->2080"
]
},
{
@@ -31790,9 +31818,9 @@
"xloc": [
"default-mobile.handlebars->9->435",
"default-mobile.handlebars->9->450",
- "default.handlebars->29->1423",
- "default.handlebars->29->1453",
- "default.handlebars->29->1768",
+ "default.handlebars->29->1425",
+ "default.handlebars->29->1455",
+ "default.handlebars->29->1770",
"default.handlebars->29->663",
"default.handlebars->29->684"
]
@@ -31814,8 +31842,8 @@
"zh-chs": "服务器权限",
"zh-cht": "伺服器權限",
"xloc": [
- "default.handlebars->29->1693",
- "default.handlebars->29->1782"
+ "default.handlebars->29->1695",
+ "default.handlebars->29->1784"
]
},
{
@@ -31835,7 +31863,7 @@
"zh-chs": "服务器配额",
"zh-cht": "伺服器配額",
"xloc": [
- "default.handlebars->29->1887"
+ "default.handlebars->29->1889"
]
},
{
@@ -31855,7 +31883,7 @@
"zh-chs": "服务器还原",
"zh-cht": "伺服器還原",
"xloc": [
- "default.handlebars->29->1772"
+ "default.handlebars->29->1774"
]
},
{
@@ -31875,7 +31903,7 @@
"zh-chs": "服务器权限",
"zh-cht": "伺服器權限",
"xloc": [
- "default.handlebars->29->1886"
+ "default.handlebars->29->1888"
]
},
{
@@ -31895,7 +31923,7 @@
"zh-chs": "服务器状态",
"zh-cht": "伺服器狀態",
"xloc": [
- "default.handlebars->29->2025"
+ "default.handlebars->29->2027"
]
},
{
@@ -31935,7 +31963,7 @@
"zh-chs": "服务器跟踪",
"zh-cht": "伺服器追蹤",
"xloc": [
- "default.handlebars->29->2088"
+ "default.handlebars->29->2090"
]
},
{
@@ -31955,7 +31983,7 @@
"zh-chs": "服务器更新",
"zh-cht": "伺服器更新",
"xloc": [
- "default.handlebars->29->1773"
+ "default.handlebars->29->1775"
]
},
{
@@ -32098,7 +32126,7 @@
"zh-chs": "ServerStats.csv",
"zh-cht": "ServerStats.csv",
"xloc": [
- "default.handlebars->29->2069"
+ "default.handlebars->29->2071"
]
},
{
@@ -32158,7 +32186,7 @@
"zh-chs": "会话",
"zh-cht": "節",
"xloc": [
- "default.handlebars->29->1989"
+ "default.handlebars->29->1991"
]
},
{
@@ -32283,7 +32311,7 @@
"zh-chs": "设置剪贴板内容,{0}个字节",
"zh-cht": "設置剪貼板內容,{0}個字節",
"xloc": [
- "default.handlebars->29->1576"
+ "default.handlebars->29->1578"
]
},
{
@@ -32665,7 +32693,7 @@
"zh-cht": "只顯示自己的事件",
"xloc": [
"default-mobile.handlebars->9->438",
- "default.handlebars->29->1426"
+ "default.handlebars->29->1428"
]
},
{
@@ -32685,7 +32713,7 @@
"zh-chs": "显示连接工具栏",
"zh-cht": "顯示連接工具欄",
"xloc": [
- "default.handlebars->29->1388"
+ "default.handlebars->29->1390"
]
},
{
@@ -32765,8 +32793,8 @@
"zh-chs": "显示1分钟",
"zh-cht": "顯示1分鐘",
"xloc": [
- "default.handlebars->29->1724",
- "default.handlebars->29->1747"
+ "default.handlebars->29->1726",
+ "default.handlebars->29->1749"
]
},
{
@@ -32786,8 +32814,8 @@
"zh-chs": "显示10秒",
"zh-cht": "顯示10秒",
"xloc": [
- "default.handlebars->29->1723",
- "default.handlebars->29->1746"
+ "default.handlebars->29->1725",
+ "default.handlebars->29->1748"
]
},
{
@@ -32807,8 +32835,8 @@
"zh-chs": "显示5分钟",
"zh-cht": "顯示5分鐘",
"xloc": [
- "default.handlebars->29->1725",
- "default.handlebars->29->1748"
+ "default.handlebars->29->1727",
+ "default.handlebars->29->1750"
]
},
{
@@ -32828,8 +32856,8 @@
"zh-chs": "显示消息,直到被用户拒绝",
"zh-cht": "顯示消息,直到被用戶拒絕",
"xloc": [
- "default.handlebars->29->1722",
- "default.handlebars->29->1745"
+ "default.handlebars->29->1724",
+ "default.handlebars->29->1747"
]
},
{
@@ -33127,8 +33155,8 @@
"zh-chs": "尺寸",
"zh-cht": "尺寸",
"xloc": [
- "default.handlebars->29->1992",
- "default.handlebars->29->2007",
+ "default.handlebars->29->1994",
+ "default.handlebars->29->2009",
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSize"
]
},
@@ -34118,8 +34146,8 @@
"zh-chs": "开始时间",
"zh-cht": "開始時間",
"xloc": [
- "default.handlebars->29->1990",
- "default.handlebars->29->2009",
+ "default.handlebars->29->1992",
+ "default.handlebars->29->2011",
"default.handlebars->29->813",
"desktop.handlebars->3->15"
]
@@ -34141,7 +34169,7 @@
"zh-chs": "开始桌面多重会话",
"zh-cht": "啟動桌面多路復用會話",
"xloc": [
- "default.handlebars->29->1560"
+ "default.handlebars->29->1562"
]
},
{
@@ -34161,7 +34189,7 @@
"zh-chs": "从{1}到{2}开始了桌面会话“{0}”",
"zh-cht": "從{1}到{2}開始了桌面會話“{0}”",
"xloc": [
- "default.handlebars->29->1569"
+ "default.handlebars->29->1571"
]
},
{
@@ -34181,7 +34209,7 @@
"zh-chs": "从{1}到{2}开始文件管理会话“{0}”",
"zh-cht": "從{1}到{2}開始文件管理會話“{0}”",
"xloc": [
- "default.handlebars->29->1570"
+ "default.handlebars->29->1572"
]
},
{
@@ -34201,7 +34229,7 @@
"zh-chs": "从{1}到{2}开始中继会话“{0}”",
"zh-cht": "從{1}到{2}開始中繼會話“{0}”",
"xloc": [
- "default.handlebars->29->1567"
+ "default.handlebars->29->1569"
]
},
{
@@ -34221,7 +34249,7 @@
"zh-chs": "使用Toast通知启动远程桌面",
"zh-cht": "使用Toast通知啟動遠程桌面",
"xloc": [
- "default.handlebars->29->1589"
+ "default.handlebars->29->1591"
]
},
{
@@ -34241,7 +34269,7 @@
"zh-chs": "启动远程桌面,而无需通知",
"zh-cht": "啟動遠程桌面,而無需通知",
"xloc": [
- "default.handlebars->29->1590"
+ "default.handlebars->29->1592"
]
},
{
@@ -34261,7 +34289,7 @@
"zh-chs": "启动带有Toast通知的远程文件",
"zh-cht": "啟動帶有Toast通知的遠程文件",
"xloc": [
- "default.handlebars->29->1596"
+ "default.handlebars->29->1598"
]
},
{
@@ -34281,7 +34309,7 @@
"zh-chs": "已启动的远程文件,恕不另行通知",
"zh-cht": "已啟動的遠程文件,恕不另行通知",
"xloc": [
- "default.handlebars->29->1597"
+ "default.handlebars->29->1599"
]
},
{
@@ -34301,7 +34329,7 @@
"zh-chs": "从{1}到{2}开始了终端会话“{0}”",
"zh-cht": "從{1}到{2}開始了終端會話“{0}”",
"xloc": [
- "default.handlebars->29->1568"
+ "default.handlebars->29->1570"
]
},
{
@@ -34321,7 +34349,7 @@
"zh-chs": "接受本地用户后启动远程桌面",
"zh-cht": "接受本地用戶後啟動遠程桌面",
"xloc": [
- "default.handlebars->29->1584"
+ "default.handlebars->29->1586"
]
},
{
@@ -34341,7 +34369,7 @@
"zh-chs": "本地用户接受后启动远程文件",
"zh-cht": "本地用戶接受後啟動遠程文件",
"xloc": [
- "default.handlebars->29->1594"
+ "default.handlebars->29->1596"
]
},
{
@@ -34402,8 +34430,8 @@
"zh-chs": "状况",
"zh-cht": "狀態",
"xloc": [
- "default.handlebars->29->1939",
- "default.handlebars->29->2002",
+ "default.handlebars->29->1941",
+ "default.handlebars->29->2004",
"default.handlebars->container->column_l->p42->p42tbl->1->0->7"
]
},
@@ -34531,7 +34559,7 @@
"zh-chs": "超出储存空间",
"zh-cht": "超出儲存空間",
"xloc": [
- "default.handlebars->29->1515"
+ "default.handlebars->29->1517"
]
},
{
@@ -34596,7 +34624,7 @@
"zh-chs": "主题",
"zh-cht": "主題",
"xloc": [
- "default.handlebars->29->1719"
+ "default.handlebars->29->1721"
]
},
{
@@ -34803,7 +34831,7 @@
"zh-chs": "将服务器设备名称同步到主机名称",
"zh-cht": "將伺服器裝置名稱同步到主機名稱",
"xloc": [
- "default.handlebars->29->1396"
+ "default.handlebars->29->1398"
]
},
{
@@ -35122,8 +35150,8 @@
"zh-cht": "終端機",
"xloc": [
"default-mobile.handlebars->9->168",
- "default.handlebars->29->1389",
- "default.handlebars->29->1996",
+ "default.handlebars->29->1391",
+ "default.handlebars->29->1998",
"default.handlebars->29->255",
"default.handlebars->29->507",
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevTerminal",
@@ -35168,8 +35196,8 @@
"zh-cht": "終端機通知",
"xloc": [
"default.handlebars->29->1316",
- "default.handlebars->29->1818",
- "default.handlebars->29->1905",
+ "default.handlebars->29->1820",
+ "default.handlebars->29->1907",
"default.handlebars->29->582"
]
},
@@ -35191,8 +35219,8 @@
"zh-cht": "終端機提示",
"xloc": [
"default.handlebars->29->1315",
- "default.handlebars->29->1817",
- "default.handlebars->29->1904",
+ "default.handlebars->29->1819",
+ "default.handlebars->29->1906",
"default.handlebars->29->581"
]
},
@@ -35363,7 +35391,7 @@
"zh-chs": "目前没有任何通知",
"zh-cht": "目前沒有任何通知",
"xloc": [
- "default.handlebars->29->2017"
+ "default.handlebars->29->2019"
]
},
{
@@ -35499,15 +35527,12 @@
"ru": "Это не безопасная политика, так как агенты будут выполнять активацию.",
"tr": "Aracılar etkinleştirme gerçekleştireceğinden bu güvenli bir politika değildir.",
"zh-chs": "这是不安全政策,因为将用代理执行激活。",
- "zh-cht": "這是不安全政策,因為將用代理執行啟動。",
- "xloc": [
- "default.handlebars->29->1370"
- ]
+ "zh-cht": "這是不安全政策,因為將用代理執行啟動。"
},
{
"en": "This is the recommanded policy. Intel® AMT activation and management is completely automated and the server will attempt to make best possible use of hardware management.",
"xloc": [
- "default.handlebars->29->1374"
+ "default.handlebars->29->1376"
]
},
{
@@ -35548,7 +35573,7 @@
"zh-chs": "此政策不会影响采用ACM模式的英特尔®AMT的设备。",
"zh-cht": "此政策不會影響採用ACM模式的Intel® AMT的裝置。",
"xloc": [
- "default.handlebars->29->1369"
+ "default.handlebars->29->1373"
]
},
{
@@ -35748,7 +35773,7 @@
"zh-chs": "时间跨度",
"zh-cht": "時間跨度",
"xloc": [
- "default.handlebars->29->1658"
+ "default.handlebars->29->1660"
]
},
{
@@ -36915,7 +36940,7 @@
"zh-cht": "卸載",
"xloc": [
"default-mobile.handlebars->9->460",
- "default.handlebars->29->1464",
+ "default.handlebars->29->1466",
"default.handlebars->29->668",
"default.handlebars->29->689"
]
@@ -36959,7 +36984,7 @@
"zh-chs": "卸载代理/删除设备",
"zh-cht": "卸載代理/刪除設備",
"xloc": [
- "default.handlebars->29->1428"
+ "default.handlebars->29->1430"
]
},
{
@@ -37012,9 +37037,9 @@
"default.handlebars->29->1289",
"default.handlebars->29->1290",
"default.handlebars->29->13",
- "default.handlebars->29->1979",
- "default.handlebars->29->1994",
- "default.handlebars->29->1995",
+ "default.handlebars->29->1981",
+ "default.handlebars->29->1996",
+ "default.handlebars->29->1997",
"default.handlebars->29->42",
"default.handlebars->29->424",
"default.handlebars->29->946",
@@ -37059,7 +37084,7 @@
"zh-chs": "未知动作",
"zh-cht": "未知動作",
"xloc": [
- "default.handlebars->29->2031"
+ "default.handlebars->29->2033"
]
},
{
@@ -37079,8 +37104,8 @@
"zh-chs": "未知设备",
"zh-cht": "未知裝置",
"xloc": [
- "default.handlebars->29->1843",
- "default.handlebars->29->1967"
+ "default.handlebars->29->1845",
+ "default.handlebars->29->1969"
]
},
{
@@ -37100,9 +37125,9 @@
"zh-chs": "未知设备组",
"zh-cht": "未知裝置群",
"xloc": [
- "default.handlebars->29->1837",
- "default.handlebars->29->1955",
- "default.handlebars->29->2035"
+ "default.handlebars->29->1839",
+ "default.handlebars->29->1957",
+ "default.handlebars->29->2037"
]
},
{
@@ -37122,7 +37147,7 @@
"zh-chs": "未知群组",
"zh-cht": "未知群組",
"xloc": [
- "default.handlebars->29->2027"
+ "default.handlebars->29->2029"
]
},
{
@@ -37163,7 +37188,7 @@
"zh-chs": "未知用户组",
"zh-cht": "未知用戶群",
"xloc": [
- "default.handlebars->29->1961"
+ "default.handlebars->29->1963"
]
},
{
@@ -37187,6 +37212,12 @@
"default.handlebars->29->549"
]
},
+ {
+ "en": "Unknown password",
+ "xloc": [
+ "default.handlebars->29->1364"
+ ]
+ },
{
"cs": "Neomezeno",
"de": "Unbegrenzt",
@@ -37226,7 +37257,7 @@
"zh-chs": "解锁帐户",
"zh-cht": "解鎖帳戶",
"xloc": [
- "default.handlebars->29->1712"
+ "default.handlebars->29->1714"
]
},
{
@@ -37270,7 +37301,7 @@
"zh-chs": "最新",
"zh-cht": "最新",
"xloc": [
- "default.handlebars->29->2095"
+ "default.handlebars->29->2097"
]
},
{
@@ -37318,8 +37349,8 @@
"default-mobile.handlebars->9->317",
"default-mobile.handlebars->9->335",
"default-mobile.handlebars->9->338",
- "default.handlebars->29->1544",
- "default.handlebars->29->1552",
+ "default.handlebars->29->1546",
+ "default.handlebars->29->1554",
"default.handlebars->29->878",
"default.handlebars->29->902",
"default.handlebars->29->905",
@@ -37444,7 +37475,7 @@
"zh-cht": "上傳將覆蓋1個檔案。繼續?",
"xloc": [
"default-mobile.handlebars->9->336",
- "default.handlebars->29->1553",
+ "default.handlebars->29->1555",
"default.handlebars->29->903"
]
},
@@ -37466,7 +37497,7 @@
"zh-cht": "上傳將覆蓋{0}個檔案。繼續?",
"xloc": [
"default-mobile.handlebars->9->337",
- "default.handlebars->29->1554",
+ "default.handlebars->29->1556",
"default.handlebars->29->904"
]
},
@@ -37504,7 +37535,7 @@
"zh-chs": "上传:“{0}”",
"zh-cht": "上傳:“{0}”",
"xloc": [
- "default.handlebars->29->1604"
+ "default.handlebars->29->1606"
]
},
{
@@ -37608,8 +37639,8 @@
"zh-chs": "用过的",
"zh-cht": "用過的",
"xloc": [
- "default.handlebars->29->2021",
- "default.handlebars->29->2023"
+ "default.handlebars->29->2023",
+ "default.handlebars->29->2025"
]
},
{
@@ -37630,10 +37661,10 @@
"zh-cht": "用戶",
"xloc": [
"default.handlebars->29->1349",
- "default.handlebars->29->1665",
- "default.handlebars->29->1694",
- "default.handlebars->29->1833",
- "default.handlebars->29->2014",
+ "default.handlebars->29->1667",
+ "default.handlebars->29->1696",
+ "default.handlebars->29->1835",
+ "default.handlebars->29->2016",
"default.handlebars->29->232",
"default.handlebars->29->652"
]
@@ -37655,7 +37686,7 @@
"zh-chs": "用户+档案",
"zh-cht": "用戶+檔案",
"xloc": [
- "default.handlebars->29->1695"
+ "default.handlebars->29->1697"
]
},
{
@@ -37675,10 +37706,10 @@
"zh-chs": "用户帐户导入",
"zh-cht": "用戶帳戶導入",
"xloc": [
- "default.handlebars->29->1728",
- "default.handlebars->29->1729",
+ "default.handlebars->29->1730",
"default.handlebars->29->1731",
- "default.handlebars->29->1733"
+ "default.handlebars->29->1733",
+ "default.handlebars->29->1735"
]
},
{
@@ -37698,7 +37729,7 @@
"zh-chs": "用户帐户",
"zh-cht": "用戶帳戶",
"xloc": [
- "default.handlebars->29->2040"
+ "default.handlebars->29->2042"
]
},
{
@@ -37741,8 +37772,8 @@
"zh-cht": "用戶同意",
"xloc": [
"default.handlebars->29->1322",
- "default.handlebars->29->1824",
- "default.handlebars->29->1911",
+ "default.handlebars->29->1826",
+ "default.handlebars->29->1913",
"default.handlebars->29->193",
"default.handlebars->29->588",
"default.handlebars->29->719"
@@ -37765,11 +37796,11 @@
"zh-chs": "用户组",
"zh-cht": "用戶群",
"xloc": [
- "default.handlebars->29->1404",
- "default.handlebars->29->1405",
- "default.handlebars->29->1797",
- "default.handlebars->29->1963",
- "default.handlebars->29->1982",
+ "default.handlebars->29->1406",
+ "default.handlebars->29->1407",
+ "default.handlebars->29->1799",
+ "default.handlebars->29->1965",
+ "default.handlebars->29->1984",
"default.handlebars->29->651"
]
},
@@ -37810,7 +37841,7 @@
"zh-chs": "用户组成员",
"zh-cht": "用戶群成員",
"xloc": [
- "default.handlebars->29->1960"
+ "default.handlebars->29->1962"
]
},
{
@@ -37850,9 +37881,9 @@
"zh-chs": "用户识别码",
"zh-cht": "用戶識別碼",
"xloc": [
- "default.handlebars->29->1469",
- "default.handlebars->29->1878",
- "default.handlebars->29->1879"
+ "default.handlebars->29->1471",
+ "default.handlebars->29->1880",
+ "default.handlebars->29->1881"
]
},
{
@@ -37872,8 +37903,8 @@
"zh-chs": "用户标识符",
"zh-cht": "用戶標識符",
"xloc": [
- "default.handlebars->29->1402",
- "default.handlebars->29->1862"
+ "default.handlebars->29->1404",
+ "default.handlebars->29->1864"
]
},
{
@@ -37893,7 +37924,7 @@
"zh-chs": "用户列表输出",
"zh-cht": "用戶列表輸出",
"xloc": [
- "default.handlebars->29->1740"
+ "default.handlebars->29->1742"
]
},
{
@@ -37914,7 +37945,7 @@
"zh-cht": "用戶名",
"xloc": [
"default-mobile.handlebars->9->464",
- "default.handlebars->29->1468"
+ "default.handlebars->29->1470"
]
},
{
@@ -37989,7 +38020,7 @@
"zh-chs": "用户节",
"zh-cht": "用戶節",
"xloc": [
- "default.handlebars->29->2060"
+ "default.handlebars->29->2062"
]
},
{
@@ -38114,7 +38145,7 @@
"zh-chs": "用户组已更改:{0}",
"zh-cht": "用戶組已更改:{0}",
"xloc": [
- "default.handlebars->29->1633"
+ "default.handlebars->29->1635"
]
},
{
@@ -38134,7 +38165,7 @@
"zh-chs": "已创建用户组:{0}",
"zh-cht": "已創建用戶組:{0}",
"xloc": [
- "default.handlebars->29->1623"
+ "default.handlebars->29->1625"
]
},
{
@@ -38154,7 +38185,7 @@
"zh-chs": "用户组成员身份已更改:{0}",
"zh-cht": "用戶組成員身份已更改:{0}",
"xloc": [
- "default.handlebars->29->1621"
+ "default.handlebars->29->1623"
]
},
{
@@ -38220,7 +38251,7 @@
"zh-cht": "用戶名",
"xloc": [
"default-mobile.handlebars->9->280",
- "default.handlebars->29->1752",
+ "default.handlebars->29->1754",
"default.handlebars->29->290",
"default.handlebars->29->745",
"login2.handlebars->centralTable->1->0->logincell->loginpanel->1->5->1->0->1",
@@ -38294,9 +38325,9 @@
"zh-chs": "用户",
"zh-cht": "用戶",
"xloc": [
- "default.handlebars->29->1785",
- "default.handlebars->29->1825",
- "default.handlebars->29->2059",
+ "default.handlebars->29->1787",
+ "default.handlebars->29->1827",
+ "default.handlebars->29->2061",
"default.handlebars->container->topbar->1->1->UsersSubMenuSpan->UsersSubMenu->1->0->UsersGeneral"
]
},
@@ -38317,7 +38348,7 @@
"zh-chs": "用户会话",
"zh-cht": "用戶節",
"xloc": [
- "default.handlebars->29->2044"
+ "default.handlebars->29->2046"
]
},
{
@@ -38357,7 +38388,7 @@
"zh-chs": "验证电邮",
"zh-cht": "驗證電郵",
"xloc": [
- "default.handlebars->29->1707"
+ "default.handlebars->29->1709"
]
},
{
@@ -38441,7 +38472,7 @@
"zh-chs": "已验证",
"zh-cht": "已驗證",
"xloc": [
- "default.handlebars->29->1941"
+ "default.handlebars->29->1943"
]
},
{
@@ -38484,7 +38515,7 @@
"xloc": [
"default-mobile.handlebars->9->63",
"default.handlebars->29->1001",
- "default.handlebars->29->1703"
+ "default.handlebars->29->1705"
]
},
{
@@ -38504,7 +38535,7 @@
"zh-chs": "用户{0}的已验证电话号码",
"zh-cht": "用戶{0}的已驗證電話號碼",
"xloc": [
- "default.handlebars->29->1650"
+ "default.handlebars->29->1652"
]
},
{
@@ -38593,7 +38624,7 @@
"zh-chs": "版本不兼容,请先升级您的MeshCentral",
"zh-cht": "版本不兼容,請先升級你的MeshCentral",
"xloc": [
- "default.handlebars->29->2091"
+ "default.handlebars->29->2093"
]
},
{
@@ -38675,7 +38706,7 @@
"zh-chs": "查看所有事件",
"zh-cht": "查看所有事件",
"xloc": [
- "default.handlebars->29->1777"
+ "default.handlebars->29->1779"
]
},
{
@@ -38695,8 +38726,8 @@
"zh-chs": "查看变更日志",
"zh-cht": "查看變更日誌",
"xloc": [
- "default.handlebars->29->2094",
- "default.handlebars->29->2096"
+ "default.handlebars->29->2096",
+ "default.handlebars->29->2098"
]
},
{
@@ -38756,7 +38787,7 @@
"zh-chs": "查看有关此用户的注释",
"zh-cht": "查看有關此用戶的註釋",
"xloc": [
- "default.handlebars->29->1919"
+ "default.handlebars->29->1921"
]
},
{
@@ -38880,8 +38911,8 @@
"xloc": [
"default-mobile.handlebars->9->436",
"default-mobile.handlebars->9->451",
- "default.handlebars->29->1424",
- "default.handlebars->29->1454"
+ "default.handlebars->29->1426",
+ "default.handlebars->29->1456"
]
},
{
@@ -39007,8 +39038,8 @@
"zh-chs": "网络服务器",
"zh-cht": "網絡伺服器",
"xloc": [
- "default.handlebars->29->2080",
- "default.handlebars->29->2081"
+ "default.handlebars->29->2082",
+ "default.handlebars->29->2083"
]
},
{
@@ -39028,7 +39059,7 @@
"zh-chs": "Web服务器请求",
"zh-cht": "Web伺服器請求",
"xloc": [
- "default.handlebars->29->2082"
+ "default.handlebars->29->2084"
]
},
{
@@ -39048,7 +39079,7 @@
"zh-chs": "Web套接字中继",
"zh-cht": "Web插座中繼",
"xloc": [
- "default.handlebars->29->2083"
+ "default.handlebars->29->2085"
]
},
{
@@ -39150,7 +39181,7 @@
"zh-chs": "启用后,任何人都可以使用邀请代码通过以下公共连结将设备加入该设备组:",
"zh-cht": "啟用後,任何人都可以使用邀請代碼通過以下公共鏈結將裝置加入該裝置群:",
"xloc": [
- "default.handlebars->29->1477"
+ "default.handlebars->29->1479"
]
},
{
@@ -39177,13 +39208,16 @@
{
"en": "When this policy is selected, Intel® AMT is not managed by this server. Intel AMT can still be used by manually activating and configuring it.",
"xloc": [
- "default.handlebars->29->1372"
+ "default.handlebars->29->1374"
]
},
{
- "en": "When this policy is selected, any Intel® AMT in Client Control Mode (CCM) will be deactivated. Devices in Admin Control Mode (ACM) can still be managed manually.",
+ "en": "When this policy is selected, any Intel® AMT in Client Control Mode (CCM) will be deactivated. Devices in Admin Control Mode (ACM) can still be managed manually."
+ },
+ {
+ "en": "When this policy is selected, any Intel® AMT in Client Control Mode (CCM) will be deactivated. Other devices will have CIRA cleared and can still be managed manually.",
"xloc": [
- "default.handlebars->29->1373"
+ "default.handlebars->29->1375"
]
},
{
@@ -39203,7 +39237,7 @@
"zh-chs": "下次登录时将更改。",
"zh-cht": "下次登入時將更改。",
"xloc": [
- "default.handlebars->29->1891"
+ "default.handlebars->29->1893"
]
},
{
@@ -40456,7 +40490,7 @@
"zh-chs": "\\\\'",
"zh-cht": "\\\\'",
"xloc": [
- "default.handlebars->29->2092"
+ "default.handlebars->29->2094"
]
},
{
@@ -40703,7 +40737,7 @@
"zh-cht": "複製",
"xloc": [
"default-mobile.handlebars->9->130",
- "default.handlebars->29->1549"
+ "default.handlebars->29->1551"
]
},
{
@@ -40802,8 +40836,8 @@
"zh-chs": "eventslist.csv",
"zh-cht": "eventslist.csv",
"xloc": [
- "default.handlebars->29->1672",
- "default.handlebars->29->1677"
+ "default.handlebars->29->1674",
+ "default.handlebars->29->1679"
]
},
{
@@ -40823,8 +40857,8 @@
"zh-chs": "eventslist.json",
"zh-cht": "eventslist.json",
"xloc": [
- "default.handlebars->29->1674",
- "default.handlebars->29->1678"
+ "default.handlebars->29->1676",
+ "default.handlebars->29->1680"
]
},
{
@@ -40864,8 +40898,8 @@
"zh-chs": "免费",
"zh-cht": "免費",
"xloc": [
- "default.handlebars->29->2052",
- "default.handlebars->29->2055"
+ "default.handlebars->29->2054",
+ "default.handlebars->29->2057"
]
},
{
@@ -41080,7 +41114,7 @@
"zh-chs": "id, name, email, creation, lastlogin, groups, authfactors",
"zh-cht": "id, name, email, creation, lastlogin, groups, authfactors",
"xloc": [
- "default.handlebars->29->1741"
+ "default.handlebars->29->1743"
]
},
{
@@ -41203,7 +41237,7 @@
"zh-chs": "k max,默认为空白",
"zh-cht": "k max,默認為空白",
"xloc": [
- "default.handlebars->29->1769"
+ "default.handlebars->29->1771"
]
},
{
@@ -41345,7 +41379,7 @@
"zh-cht": "移動",
"xloc": [
"default-mobile.handlebars->9->131",
- "default.handlebars->29->1550"
+ "default.handlebars->29->1552"
]
},
{
@@ -41462,7 +41496,7 @@
"zh-chs": "servertrace.csv",
"zh-cht": "servertrace.csv",
"xloc": [
- "default.handlebars->29->2090"
+ "default.handlebars->29->2092"
]
},
{
@@ -41528,7 +41562,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->29->2068"
+ "default.handlebars->29->2070"
]
},
{
@@ -41548,7 +41582,7 @@
"zh-chs": "时间,来源,信息",
"zh-cht": "時間,來源,訊息",
"xloc": [
- "default.handlebars->29->2089"
+ "default.handlebars->29->2091"
]
},
{
@@ -41585,8 +41619,8 @@
"zh-chs": "总计",
"zh-cht": "總",
"xloc": [
- "default.handlebars->29->2053",
- "default.handlebars->29->2056"
+ "default.handlebars->29->2055",
+ "default.handlebars->29->2058"
]
},
{
@@ -41669,8 +41703,8 @@
"zh-chs": "userlist.csv",
"zh-cht": "userlist.csv",
"xloc": [
- "default.handlebars->29->1737",
- "default.handlebars->29->1742"
+ "default.handlebars->29->1739",
+ "default.handlebars->29->1744"
]
},
{
@@ -41690,8 +41724,8 @@
"zh-chs": "userlist.json",
"zh-cht": "userlist.json",
"xloc": [
- "default.handlebars->29->1739",
- "default.handlebars->29->1743"
+ "default.handlebars->29->1741",
+ "default.handlebars->29->1745"
]
},
{
@@ -41711,7 +41745,7 @@
"zh-chs": "utc,时间,类型,指令,用户,设备,消息",
"zh-cht": "utc,時間,類型,指令,用戶,裝置,消息",
"xloc": [
- "default.handlebars->29->1676"
+ "default.handlebars->29->1678"
]
},
{
@@ -41751,8 +41785,8 @@
"zh-chs": "{0} Gb",
"zh-cht": "{0} Gb",
"xloc": [
- "default.handlebars->29->1524",
- "default.handlebars->29->1529"
+ "default.handlebars->29->1526",
+ "default.handlebars->29->1531"
]
},
{
@@ -41772,9 +41806,9 @@
"zh-chs": "{0} Kb",
"zh-cht": "{0} Kb",
"xloc": [
- "default.handlebars->29->1522",
- "default.handlebars->29->1527",
- "default.handlebars->29->1993"
+ "default.handlebars->29->1524",
+ "default.handlebars->29->1529",
+ "default.handlebars->29->1995"
]
},
{
@@ -41796,8 +41830,8 @@
"xloc": [
"default-mobile.handlebars->9->396",
"default-mobile.handlebars->9->401",
- "default.handlebars->29->1523",
- "default.handlebars->29->1528",
+ "default.handlebars->29->1525",
+ "default.handlebars->29->1530",
"default.handlebars->29->975",
"default.handlebars->29->980"
]
@@ -41840,7 +41874,7 @@
"zh-chs": "{0}个活跃会话",
"zh-cht": "{0}個活躍節",
"xloc": [
- "default.handlebars->29->1931"
+ "default.handlebars->29->1933"
]
},
{
@@ -41860,8 +41894,8 @@
"zh-chs": "{0} b",
"zh-cht": "{0} b",
"xloc": [
- "default.handlebars->29->1521",
- "default.handlebars->29->1526"
+ "default.handlebars->29->1523",
+ "default.handlebars->29->1528"
]
},
{
@@ -41882,8 +41916,8 @@
"zh-cht": "{0}個字節",
"xloc": [
"default-mobile.handlebars->9->119",
- "default.handlebars->29->1537",
- "default.handlebars->29->2008",
+ "default.handlebars->29->1539",
+ "default.handlebars->29->2010",
"download.handlebars->3->2",
"download2.handlebars->5->2"
]
@@ -41905,7 +41939,7 @@
"zh-chs": "剩余{0}个字节",
"zh-cht": "剩餘{0}個字節",
"xloc": [
- "default.handlebars->29->1516"
+ "default.handlebars->29->1518"
]
},
{
@@ -41946,7 +41980,7 @@
"zh-chs": "剩余{0} GB",
"zh-cht": "剩餘{0} GB",
"xloc": [
- "default.handlebars->29->1519"
+ "default.handlebars->29->1521"
]
},
{
@@ -41966,7 +42000,7 @@
"zh-chs": "{0}个群组",
"zh-cht": "{0}個群組",
"xloc": [
- "default.handlebars->29->1896"
+ "default.handlebars->29->1898"
]
},
{
@@ -42023,7 +42057,7 @@
"zh-chs": "剩余{0}千字节",
"zh-cht": "剩餘{0}千字節",
"xloc": [
- "default.handlebars->29->1517"
+ "default.handlebars->29->1519"
]
},
{
@@ -42065,7 +42099,7 @@
"zh-chs": "剩余{0}兆字节",
"zh-cht": "剩餘{0}兆字節",
"xloc": [
- "default.handlebars->29->1518"
+ "default.handlebars->29->1520"
]
},
{
@@ -42105,7 +42139,7 @@
"zh-chs": "{0}未显示更多用户,请使用搜索框查找用户...",
"zh-cht": "{0}未顯示更多用戶,請使用搜索框查找用戶...",
"xloc": [
- "default.handlebars->29->1686"
+ "default.handlebars->29->1688"
]
},
{
@@ -42269,7 +42303,7 @@
"default-mobile.handlebars->9->173",
"default-mobile.handlebars->9->176",
"default-mobile.handlebars->9->179",
- "default.handlebars->29->1690",
+ "default.handlebars->29->1692",
"default.handlebars->29->251",
"default.handlebars->29->254",
"default.handlebars->29->257",
@@ -42417,7 +42451,7 @@
"zh-chs": "{0}k在1档案内。最多{1}k",
"zh-cht": "{0}k在1檔案內。最多{1}k",
"xloc": [
- "default.handlebars->29->1531"
+ "default.handlebars->29->1533"
]
},
{
@@ -42437,7 +42471,7 @@
"zh-chs": "{1}k在{0}个档案中。最多{2}k",
"zh-cht": "{1}k在{0}個檔案中。最多{2}k",
"xloc": [
- "default.handlebars->29->1530"
+ "default.handlebars->29->1532"
]
},
{
diff --git a/views/default.handlebars b/views/default.handlebars
index 2fc72329..b6eb4077 100644
--- a/views/default.handlebars
+++ b/views/default.handlebars
@@ -9528,7 +9528,9 @@
// Set the current Intel AMT policy
if (currentMesh.amt && (currentMesh.amt.type == 2) || (currentMesh.amt.type == 3)) {
Q('dp20amtpolicypass').value = currentMesh.amt.password;
- if ((currentMesh.amt.type == 2) && (currentMesh.amt.badpass != null)) { Q('dp20amtbadpass').value = currentMesh.amt.badpass; }
+ if ((currentMesh.amt.type == 2) || (currentMesh.amt.type == 3)) {
+ if (currentMesh.amt.badpass != null) { Q('dp20amtbadpass').value = currentMesh.amt.badpass; }
+ }
if ((features & 0x400) == 0) { Q('dp20amtcira').value = currentMesh.amt.cirasetup; }
}
@@ -9537,44 +9539,49 @@
function p20editMeshAmtChange() {
var ptype = Q('dp20amtpolicy').value, x = '';
- if ((ptype >= 2) && (ptype < 4)) {
- x = addHtmlValue("Password*", ' ')
- x += addHtmlValue("Password*", ' ')
- x += addHtmlValue("Password mismatch", '' + "Do nothing" + ' ' + "Reactivate Intel® AMT" + ' ');
- if ((features & 0x400) == 0) { x += addHtmlValue('' + "CIRA" + ' ', '' + "Don't configure" + ' ' + "Don't connect to server" + ' ' + "Connect to server" + ' '); }
- x += '' + "* Leave blank to assign a random password to each device." + ' ';
- if (currentMesh.mtype == 2) {
- if (ptype == 2) {
- x += '' + "This policy will not impact devices with Intel® AMT in ACM mode." + ' ';
- x += '' + "This is not a secure policy as agents will be performing activation." + ' ';
- } else {
- x += '' + "During activation, the agent will have access to admin password infomation." + ' ';
- }
- }
+ if ((ptype == 2) || (ptype == 3)) {
+ var keeppass = ((currentMesh.amt != null) && (currentMesh.amt.password == 1))?'' + "Keep existing password" + ' ':'';
+ x += addHtmlValue("Password", '' + "Randomize password" + ' ' + keeppass+ '' + "Select new password" + ' ');
+ x += '
';
+ x += addHtmlValue("New password*", ' ')
+ x += addHtmlValue("New password*", ' ')
+ x += '
';
+ x += addHtmlValue("Unknown password", '' + "Do nothing" + ' ' + "If in CCM, reactivate Intel® AMT" + ' ');
+ if ((features & 0x400) == 0) { x += addHtmlValue('' + "CIRA setup" + ' ', '' + "Do nothing" + ' ' + "Don't connect to server" + ' ' + "Connect to server" + ' '); }
+ x += ' ' + "* 8 characters, 1 upper, 1 lower, 1 numeric, 1 non-alpha numeric." + ' ';
+ if ((currentMesh.mtype == 2) && (ptype == 2)) { x += ' ' + "This policy will not impact devices with Intel® AMT in ACM mode." + ' '; }
}
if (ptype == 0) { x = '' + "When this policy is selected, Intel® AMT is not managed by this server. Intel AMT can still be used by manually activating and configuring it." + '
'; }
if (ptype == 1) { x = '' + "When this policy is selected, any Intel® AMT in Client Control Mode (CCM) will be deactivated. Other devices will have CIRA cleared and can still be managed manually." + '
'; }
if (ptype == 4) { x = '' + "This is the recommanded policy. Intel® AMT activation and management is completely automated and the server will attempt to make best possible use of hardware management." + '
'; }
QH('dp20amtpolicydiv', x);
- setTimeout(dp20amtValidatePolicy, 1);
+ setTimeout(dp20amtValidatePolicy, 500);
}
function dp20amtValidatePolicy() {
var ok = true, ptype = Q('dp20amtpolicy').value;
- if ((ptype == 2) || (ptype == 3)) {
+ if (((ptype == 2) || (ptype == 3)) && (Q('dp20amtpass').value == 2)) {
var pass = Q('dp20amtpolicypass').value, pass2 = Q('dp20amtpolicypass2').value;
- ok = ((pass === pass2) && ((pass === '') ? true : passwordcheck(pass)));
+ ok = ((pass === pass2) && passwordcheck(pass));
}
QE('idx_dlgOkButton', ok);
+ if ((ptype == 2) || (ptype == 3)) { QV('dp20amtpassdiv', Q('dp20amtpass').value == 2); }
+ QV('dp10passNotify', ((ptype == 2) || (ptype == 3)) && (Q('dp20amtpass').value == 2));
}
function p20editMeshAmtEx() {
var ptype = parseInt(Q('dp20amtpolicy').value), amtpolicy = { type: ptype };
+ var password = null;
+ if ((ptype == 2) || (ptype == 3)) {
+ if (Q('dp20amtpass').value == 0) { password = ''; } // Randomize
+ if (Q('dp20amtpass').value == 1) { password = null; } // Keep same
+ if (Q('dp20amtpass').value == 2) { password = Q('dp20amtpolicypass').value; } // Set new password
+ }
if (ptype == 2) { // CCM policy
- amtpolicy = { type: ptype, password: Q('dp20amtpolicypass').value, badpass: parseInt(Q('dp20amtbadpass').value) };
+ amtpolicy = { type: ptype, password: password, badpass: parseInt(Q('dp20amtbadpass').value) };
if ((features & 0x400) == 0) { amtpolicy.cirasetup = parseInt(Q('dp20amtcira').value); } else { amtpolicy.cirasetup = 1; }
} else if (ptype == 3) { // ACM policy
- amtpolicy = { type: ptype, password: Q('dp20amtpolicypass').value, badpass: parseInt(Q('dp20amtbadpass').value) };
+ amtpolicy = { type: ptype, password: password, badpass: parseInt(Q('dp20amtbadpass').value) };
if ((features & 0x400) == 0) { amtpolicy.cirasetup = parseInt(Q('dp20amtcira').value); } else { amtpolicy.cirasetup = 1; }
} else if (ptype == 4) { // Fully automatic policy
amtpolicy = { type: ptype };
diff --git a/webserver.js b/webserver.js
index d1d0cd38..3403a875 100644
--- a/webserver.js
+++ b/webserver.js
@@ -2296,7 +2296,7 @@ module.exports.CreateWebServer = function (parent, db, args, certificates) {
if (obj.args.webrtc == true) { features += 0x00000080; } // Enable WebRTC (Default false for now)
if (obj.args.clickonce !== false) { features += 0x00000100; } // Enable ClickOnce (Default true)
if (obj.args.allowhighqualitydesktop !== false) { features += 0x00000200; } // Enable AllowHighQualityDesktop (Default true)
- if (obj.args.lanonly == true || obj.args.mpsport == 0) { features += 0x00000400; } // No CIRA
+ if ((obj.args.lanonly == true) || (obj.args.mpsport == 0)) { features += 0x00000400; } // No CIRA
if ((obj.parent.serverSelfWriteAllowed == true) && (user != null) && (user.siteadmin == 0xFFFFFFFF)) { features += 0x00000800; } // Server can self-write (Allows self-update)
if ((parent.config.settings.no2factorauth !== true) && (domain.auth != 'sspi') && (obj.parent.certificates.CommonName.indexOf('.') != -1) && (obj.args.nousers !== true) && (user._id.split('/')[2][0] != '~')) { features += 0x00001000; } // 2FA login supported
if (domain.agentnoproxy === true) { features += 0x00002000; } // Indicates that agents should be installed without using a HTTP proxy
@@ -5915,7 +5915,7 @@ module.exports.CreateWebServer = function (parent, db, args, certificates) {
if ((r.amt != null) && (r.amt.password != null)) {
r = Object.assign({}, r); // Shallow clone
r.amt = Object.assign({}, r.amt); // Shallow clone
- if (r.amt.password != null) { r.amt.password = 1; } // Remove the Intel AMT password from the policy
+ if ((r.amt.password != null) && (r.amt.password != '')) { r.amt.password = 1; } // Remove the Intel AMT password from the policy
}
return r;
}