Completed work on host-based AMT ACM TLS activation.
Ylian Saint-Hilaire committed
Mar 16, 2021 at 16:29 UTC
8e19f3bdf577d9b48f7d74d5c8debb127a5c4dfa
4 files changed
+617
-521
agents/modules_meshcore/amt-mei.js
+2
-2
@@ -430,7 +430,7 @@ function amt_heci() {
430
431
// Send the command
432
this.sendCommand(139, data, function (header, fn, opt) {
433
- if (header.Status == 0) {
433
+ if ((header.Status == 0) && (header.Data != null)) {
434
var amtHash = null;
435
if (header.Data[0] == 2) { amtHash = header.Data.slice(1, 33); } // SHA256
436
if (header.Data[0] == 3) { amtHash = header.Data.slice(1, 49); } // SHA384
@@ -439,7 +439,7 @@ function amt_heci() {
439
opt.unshift({ status: header.Status });
440
}
441
fn.apply(this, opt);
442
- }, func, optional);
442
+ }, func, optional);
443
}
444
}
445
amtmanager.js
+115
-26
@@ -258,8 +258,8 @@ module.exports.CreateAmtManager = function (parent) {
258
break;
259
case 'startTlsHostConfig':
260
if (dev.acmTlsInfo == null) break;
261
- if ((typeof jsondata.value != 'object') || (typeof jsondata.value.status != 'number') || (jsondata.value.status != 0)) {
262
- removeAmtDevice(dev, 2); // Failed to start TLS configuration
261
+ if ((typeof jsondata.value != 'object') || (typeof jsondata.value.status != 'number')) {
262
+ removeAmtDevice(dev, 2); // Invalid startTlsHostConfig response
263
} else {
264
activateIntelAmtTlsAcmEx(dev, jsondata.value); // Start TLS activation.
265
}
@@ -421,7 +421,7 @@ module.exports.CreateAmtManager = function (parent) {
421
return;
422
}
423
// Check if we have an ACM activation policy, but the device is in CCM
424
- if (((dev.policy.amtPolicy == 3) || (dev.policy.amtPolicy == 4)) && ((dev.mpsConnection.tag.meiState.Flags & 2) != 0)) {
424
+ if (((dev.policy.amtPolicy == 3) || (dev.policy.amtPolicy == 4)) && (dev.mpsConnection.tag.meiState.ProvisioningState == 2) && ((dev.mpsConnection.tag.meiState.Flags & 2) != 0)) {
425
// This device in is CCM, check if we can upgrade to ACM
426
if (activateIntelAmt(dev) == false) return; // If this return true, the platform is in CCM and can't go to ACM, keep going with management.
427
}
@@ -480,7 +480,7 @@ module.exports.CreateAmtManager = function (parent) {
480
// Handle the case where the Intel AMT relay or LMS is connected (connType 1 or 2)
481
// Check to see if CIRA is connected on this server.
482
var ciraconn = dev.mpsConnection;
483
- if ((ciraconn == null) || (ciraconn.tag == null) || (ciraconn.tag.boundPorts == null)) { console.log('r2'); removeAmtDevice(dev, 11); return; } // Relay connection not valid
483
+ if ((ciraconn == null) || (ciraconn.tag == null) || (ciraconn.tag.boundPorts == null)) { removeAmtDevice(dev, 11); return; } // Relay connection not valid
484
485
// See what user/pass to try.
486
var user = null, pass = null;
@@ -491,11 +491,11 @@ module.exports.CreateAmtManager = function (parent) {
491
// Connect now
492
var comm;
493
if (dev.tlsfail !== true) {
494
- parent.debug('amt', dev.name, (dev.connType == 1) ? 'Relay-Connect' : 'LMS-Connect', "TLS", user, pass);
494
+ parent.debug('amt', dev.name, (dev.connType == 1) ? 'Relay-Connect' : 'LMS-Connect', "TLS", user);
495
comm = CreateWsmanComm(dev.nodeid, 16993, user, pass, 1, null, ciraconn); // Perform TLS
496
comm.xtlsFingerprint = 0; // Perform no certificate checking
497
} else {
498
- parent.debug('amt', dev.name, (dev.connType == 1) ? 'Relay-Connect' : 'LMS-Connect', "NoTLS", user, pass);
498
+ parent.debug('amt', dev.name, (dev.connType == 1) ? 'Relay-Connect' : 'LMS-Connect', "NoTLS", user);
499
comm = CreateWsmanComm(dev.nodeid, 16992, user, pass, 0, null, ciraconn); // No TLS
500
}
501
var wsstack = WsmanStackCreateService(comm);
@@ -951,7 +951,11 @@ module.exports.CreateAmtManager = function (parent) {
951
if (certInstanceId == null) { dev.consoleMsg("Failed to get TLS certificate identifier."); removeAmtDevice(dev, 25); return; }
952
953
// Set the TLS certificate
954
- dev.setTlsSecurityPendingCalls = 3;
954
+ if (dev.hbacmtls == 1) {
955
+ dev.setTlsSecurityPendingCalls = 2; // Set remote port only
956
+ } else {
957
+ dev.setTlsSecurityPendingCalls = 3; // Set local and remote port
958
+ }
959
if (dev.policy.tlsCredentialContext.length > 0) {
960
// Modify the current context
961
var newTLSCredentialContext = Clone(dev.policy.tlsCredentialContext[0]);
@@ -979,9 +983,18 @@ module.exports.CreateAmtManager = function (parent) {
983
xxTlsSettings2[localNdx]['Enabled'] = true;
984
delete xxTlsSettings2[localNdx]['TrustedCN'];
985
982
- // Update TLS settings
983
- dev.amtstack.Put('AMT_TLSSettingData', xxTlsSettings2[0], amtSwitchToTls, 0, 1, xxTlsSettings2[0]);
984
- dev.amtstack.Put('AMT_TLSSettingData', xxTlsSettings2[1], amtSwitchToTls, 0, 1, xxTlsSettings2[1]);
986
+ if (dev.hbacmtls == 1) {
987
+ // If we are doing Host-based TLS ACM activation, you need to only enable the remote port with TLS.
988
+ // If you enable on local port, the commit() will succeed but be ignored.
989
+ dev.consoleMsg("Enabling TLS on remote port...");
990
+ if (remoteNdx == 0) { dev.amtstack.Put('AMT_TLSSettingData', xxTlsSettings2[0], amtSwitchToTls, 0, 1, xxTlsSettings2[0]); }
991
+ else { dev.amtstack.Put('AMT_TLSSettingData', xxTlsSettings2[1], amtSwitchToTls, 0, 1, xxTlsSettings2[1]); }
992
+ delete dev.hbacmtls; // Remove this indication
993
+ } else {
994
+ // Update TLS settings
995
+ dev.amtstack.Put('AMT_TLSSettingData', xxTlsSettings2[0], amtSwitchToTls, 0, 1, xxTlsSettings2[0]);
996
+ dev.amtstack.Put('AMT_TLSSettingData', xxTlsSettings2[1], amtSwitchToTls, 0, 1, xxTlsSettings2[1]);
997
+ }
998
});
999
1000
}, responses.Body['KeyPair']['ReferenceParameters']['SelectorSet']['Selector']['Value']);
@@ -1003,11 +1016,12 @@ module.exports.CreateAmtManager = function (parent) {
1016
1017
// Check if all the calls are done & perform a commit
1018
if ((--dev.setTlsSecurityPendingCalls) == 0) {
1019
+ dev.consoleMsg("Performing Commit()...");
1020
dev.amtstack.AMT_SetupAndConfigurationService_CommitChanges(null, function (stack, name, responses, status) {
1021
const dev = stack.dev;
1022
if (isAmtDeviceValid(dev) == false) return; // Device no longer exists, ignore this request.
1023
if (status != 200) { dev.consoleMsg("Failed perform commit (" + status + ")."); removeAmtDevice(dev, 27); return; }
1010
- dev.consoleMsg("Enabled TLS, holding 5 seconds...");
1024
+ dev.consoleMsg("Enabled TLS, holding 10 seconds...");
1025
1026
// Update device in the database
1027
dev.intelamt.tls = dev.aquired.tls = 1;
@@ -1022,7 +1036,7 @@ module.exports.CreateAmtManager = function (parent) {
1036
// Wait 5 seconds before attempting to manage this device some more
1037
var f = function doManage() { if (isAmtDeviceValid(dev)) { devTaskCompleted(doManage.dev); } }
1038
f.dev = dev;
1025
- setTimeout(f, 5000);
1039
+ setTimeout(f, 10000);
1040
});
1041
}
1042
}
@@ -1816,7 +1830,7 @@ module.exports.CreateAmtManager = function (parent) {
1830
if ((cert.cn == '*') || (cert.cn == trustedFqdn)) {
1831
for (var j in deviceHashes) {
1832
var hashInfo = deviceHashes[j];
1819
- if (hashInfo.isActive == 1) {
1833
+ if ((hashInfo != null) && (hashInfo.isActive == 1)) {
1834
if ((hashInfo.hashAlgorithmStr == 'SHA256') && (hashInfo.certificateHash.toLowerCase() == cert.sha256)) { return { cert: cert, fqdn: trustedFqdn, hash: cert.sha256 }; } // Found a match
1835
else if ((hashInfo.hashAlgorithmStr == 'SHA1') && (hashInfo.certificateHash.toLowerCase() == cert.sha1)) { return { cert: cert, fqdn: trustedFqdn, hash: cert.sha1 }; } // Found a match
1836
}
@@ -1858,17 +1872,17 @@ module.exports.CreateAmtManager = function (parent) {
1872
removeAmtDevice(dev);
1873
} else {
1874
// Setup the WSMAN stack, no TLS
1875
+ dev.consoleMsg("Attempting TLS connection...");
1876
var comm = CreateWsmanComm(dev.nodeid, 16993, 'admin', '', 1, { cert: dev.acmTlsInfo.certs.join(''), key: dev.acmTlsInfo.signkey }, dev.mpsConnection); // TLS with client certificate chain and key.
1877
comm.xtlsFingerprint = startConfigData.hash.toLowerCase(); // Intel AMT leaf TLS cert need to match this hash (SHA256 or SHA384)
1878
var wsstack = WsmanStackCreateService(comm);
1879
dev.amtstack = AmtStackCreateService(wsstack);
1880
dev.amtstack.dev = dev;
1866
- dev.amtstack.BatchEnum(null, ['*AMT_GeneralSettings', '*IPS_HostBasedSetupService'], activateIntelAmtTlsAcmEx1);
1881
+ dev.amtstack.BatchEnum(null, ['*AMT_GeneralSettings', 'CIM_SoftwareIdentity', '*AMT_SetupAndConfigurationService'], activateIntelAmtTlsAcmEx1);
1882
}
1883
}
1884
1885
function activateIntelAmtTlsAcmEx1(stack, name, responses, status) {
1871
- console.log('activateIntelAmtTlsAcmEx1', status, responses);
1886
const dev = stack.dev;
1887
if (isAmtDeviceValid(dev) == false) return; // Device no longer exists, ignore this request.
1888
@@ -1877,31 +1891,105 @@ module.exports.CreateAmtManager = function (parent) {
1891
dev.consoleMsg("Failed to perform ACM TLS connection.");
1892
//activateIntelAmtAcm(dev); // It's possible to fallback to legacy WSMAN ACM activation here if we needed to..
1893
removeAmtDevice(dev);
1880
- } else {
1881
- // TODO!!!
1882
- console.log('TODO!!!!!');
1894
+ return;
1895
}
1884
- }
1885
-
1886
-
1887
-
1888
-
1889
-
1890
-
1896
1897
+ // Fetch the Intel AMT version from WSMAN
1898
+ if ((responses != null) && (responses['CIM_SoftwareIdentity'] != null) && (responses['CIM_SoftwareIdentity'].responses != null)) {
1899
+ var amtlogicalelements = [];
1900
+ amtlogicalelements = responses['CIM_SoftwareIdentity'].responses;
1901
+ if (responses['AMT_SetupAndConfigurationService'] != null && responses['AMT_SetupAndConfigurationService'].response != null) {
1902
+ amtlogicalelements.push(responses['AMT_SetupAndConfigurationService'].response);
1903
+ }
1904
+ if (amtlogicalelements.length > 0) {
1905
+ var vs = getInstance(amtlogicalelements, 'AMT')['VersionString'];
1906
+ if (vs != null) {
1907
+ dev.aquired.version = vs;
1908
+ dev.aquired.versionmajor = parseInt(dev.aquired.version.split('.')[0]);
1909
+ dev.aquired.versionminor = parseInt(dev.aquired.version.split('.')[1]);
1910
+ }
1911
+ }
1912
+ }
1913
1914
+ // Fetch the Intel AMT version from HTTP stack
1915
+ if ((dev.amtversionstr == null) && (stack.wsman.comm.amtVersion != null)) {
1916
+ var s = stack.wsman.comm.amtVersion.split('.');
1917
+ if (s.length >= 3) {
1918
+ dev.aquired.version = s[0] + '.' + s[1] + '.' + s[2];
1919
+ dev.aquired.versionmajor = parseInt(s[0]);
1920
+ dev.aquired.versionminor = parseInt(s[1]);
1921
+ }
1922
+ }
1923
1924
+ // If we can't get the Intel AMT version, stop here.
1925
+ if (dev.aquired.version == null) { dev.consoleMsg('Could not get Intel AMT version.'); removeAmtDevice(dev); return; } // Could not get Intel AMT version, disconnect();
1926
1927
+ // Get the digest realm
1928
+ if (responses['AMT_GeneralSettings'] && responses['AMT_GeneralSettings'].response && (typeof responses['AMT_GeneralSettings'].response['DigestRealm'] == 'string')) {
1929
+ // Set the realm in the stack since we are not doing HTTP digest and this will be checked later by different code.
1930
+ dev.aquired.realm = dev.amtstack.wsman.comm.digestRealm = responses['AMT_GeneralSettings'].response['DigestRealm'];
1931
+ } else {
1932
+ dev.consoleMsg('Could not get Intel AMT digest realm.'); removeAmtDevice(dev); return;
1933
+ }
1934
1935
+ // Looks like we are doing well.
1936
+ dev.consoleMsg('Succesful TLS connection, Intel AMT v' + dev.aquired.version);
1937
1938
+ // Log this activation event
1939
+ var event = { etype: 'node', action: 'amtactivate', nodeid: dev.nodeid, domain: dev.domainid, msgid: 111, msgArgs: [dev.temp.acminfo.fqdn], msg: 'Device requested Intel(R) AMT ACM TLS activation, FQDN: ' + dev.temp.acminfo.fqdn };
1940
+ if (parent.db.changeStream) { event.noact = 1; } // If DB change stream is active, don't use this event to change the node. Another event will come.
1941
+ parent.DispatchEvent(parent.webserver.CreateMeshDispatchTargets(dev.meshid, [dev.nodeid]), obj, event);
1942
1943
+ // Log the activation request, logging is a required step for activation.
1944
+ var domain = parent.config.domains[dev.domainid];
1945
+ if (domain == null) { dev.consoleMsg("Invalid domain."); removeAmtDevice(dev, 41); return; }
1946
+ if (parent.certificateOperations.logAmtActivation(domain, { time: new Date(), action: 'acmactivate-tls', domain: dev.domainid, amtUuid: dev.mpsConnection.tag.meiState.UUID, amtRealm: dev.aquired.realm, user: 'admin', password: dev.temp.pass, ipport: dev.mpsConnection.remoteAddr + ':' + dev.mpsConnection.remotePort, nodeid: dev.nodeid, meshid: dev.meshid, computerName: dev.name }) == false) {
1947
+ dev.consoleMsg("Unable to log operation."); removeAmtDevice(dev, 42); return;
1948
+ }
1949
1950
+ // See what admin password to use
1951
+ dev.aquired.user = 'admin';
1952
+ dev.aquired.pass = dev.temp.password;
1953
1954
+ // Set the account password
1955
+ if (typeof dev.temp.mebxpass == 'string') {
1956
+ // Set the new MEBx password
1957
+ dev.consoleMsg('Setting MEBx password...');
1958
+ dev.amtstack.AMT_SetupAndConfigurationService_SetMEBxPassword(dev.temp.mebxpass, activateIntelAmtTlsAcmEx2);
1959
+ } else {
1960
+ // Set the admin password
1961
+ dev.consoleMsg('Setting admin password...');
1962
+ dev.amtstack.AMT_AuthorizationService_SetAdminAclEntryEx(dev.aquired.user, hex_md5(dev.aquired.user + ':' + dev.aquired.realm + ':' + dev.aquired.pass), activateIntelAmtTlsAcmEx3);
1963
+ }
1964
+ }
1965
1966
+ // Response from setting MEBx password
1967
+ function activateIntelAmtTlsAcmEx2(stack, name, responses, status) {
1968
+ const dev = stack.dev;
1969
+ if (isAmtDeviceValid(dev) == false) return; // Device no longer exists, ignore this request.
1970
+ if (status != 200) { dev.consoleMsg('Failed to set MEBx password, status=' + status + '.'); destroyDevice(dev); return; }
1971
+ dev.consoleMsg('MEBx password set. Setting admin password...');
1972
1973
+ // Set the admin password
1974
+ dev.amtstack.AMT_AuthorizationService_SetAdminAclEntryEx(dev.aquired.user, hex_md5(dev.aquired.user + ':' + dev.aquired.realm + ':' + dev.aquired.pass), activateIntelAmtTlsAcmEx3);
1975
+ }
1976
1977
+ // Response from setting admin password
1978
+ function activateIntelAmtTlsAcmEx3(stack, name, responses, status) {
1979
+ const dev = stack.dev;
1980
+ if (isAmtDeviceValid(dev) == false) return; // Device no longer exists, ignore this request.
1981
+ if (status != 200) { dev.consoleMsg('Failed to set admin password, status=' + status + '.'); removeAmtDevice(dev); return; }
1982
+ dev.consoleMsg('Admin password set.');
1983
1984
+ // Switch the state of Intel AMT.
1985
+ if ((dev.mpsConnection != null) && (dev.mpsConnection.tag != null) && (dev.mpsConnection.tag.meiState != null)) { dev.mpsConnection.tag.meiState.ProvisioningState = 2; }
1986
+ dev.aquired.controlMode = 2; // 1 = CCM, 2 = ACM
1987
+ dev.aquired.state = 2; // Activated
1988
+ dev.hbacmtls = 1; // Indicate that we are doing a Host
1989
1990
+ // Proceed to going the normal Intel AMT sync. This will trigger a commit when the TLS cert is setup.
1991
+ dev.amtstack.BatchEnum(null, ['*AMT_GeneralSettings', '*IPS_HostBasedSetupService'], attemptLocalConnectResponse);
1992
+ }
1993
1994
// Attempt Intel AMT ACM activation
1995
function activateIntelAmtAcm(dev, password, acminfo) {
@@ -2008,7 +2096,7 @@ module.exports.CreateAmtManager = function (parent) {
2096
delete dev.temp;
2097
UpdateDevice(dev);
2098
2011
- // Wait 10 seconds before attempting to manage this device in CCM
2099
+ // Wait 10 seconds before attempting to manage this device in ACM
2100
var f = function doManage() { if (isAmtDeviceValid(dev)) { attemptInitialContact(doManage.dev); } }
2101
f.dev = dev;
2102
setTimeout(f, 10000);
@@ -2096,6 +2184,7 @@ module.exports.CreateAmtManager = function (parent) {
2184
function getRandomAmtPassword() { var p; do { p = Buffer.from(parent.crypto.randomBytes(9), 'binary').toString('base64').split('/').join('@'); } while (checkAmtPassword(p) == false); return p; }
2185
function getRandomPassword() { return Buffer.from(parent.crypto.randomBytes(9), 'binary').toString('base64').split('/').join('@'); }
2186
function getRandomLowerCase(len) { var r = '', random = parent.crypto.randomBytes(len); for (var i = 0; i < len; i++) { r += String.fromCharCode(97 + (random[i] % 26)); } return r; }
2187
+ function getInstance(x, y) { for (var i in x) { if (x[i]['InstanceID'] == y) return x[i]; } return null; }
2188
2189
function hex_md5(str) { return parent.crypto.createHash('md5').update(str).digest('hex'); }
2190
function Clone(v) { return JSON.parse(JSON.stringify(v)); }
translate/translate.json
+498
-492
@@ -225,7 +225,7 @@
225
"zh-cht": " 用戶需要先登入到該伺服器一次,然後才能將其新增到裝置群。",
226
"xloc": [
227
"default.handlebars->31->1560",
228
- "default.handlebars->31->2042"
228
+ "default.handlebars->31->2043"
229
]
230
},
231
{
@@ -829,7 +829,7 @@
829
"default-mobile.handlebars->11->370",
830
"default.handlebars->31->1003",
831
"default.handlebars->31->1683",
832
- "default.handlebars->31->2205"
832
+ "default.handlebars->31->2206"
833
]
834
},
835
{
@@ -886,7 +886,7 @@
886
"zh-chs": "1个活跃时段",
887
"zh-cht": "1個活躍時段",
888
"xloc": [
889
- "default.handlebars->31->2115"
889
+ "default.handlebars->31->2116"
890
]
891
},
892
{
@@ -973,7 +973,7 @@
973
"zh-chs": "1组",
974
"zh-cht": "1群",
975
"xloc": [
976
- "default.handlebars->31->2076"
976
+ "default.handlebars->31->2077"
977
]
978
},
979
{
@@ -1077,7 +1077,7 @@
1077
"zh-chs": "有1个用户没有显示,请使用搜索框查找用户...",
1078
"zh-cht": "有1個用戶沒有顯示,請使用搜尋框搜尋用戶...",
1079
"xloc": [
1080
- "default.handlebars->31->1866"
1080
+ "default.handlebars->31->1867"
1081
]
1082
},
1083
{
@@ -1143,7 +1143,7 @@
1143
"default-mobile.handlebars->11->202",
1144
"default-mobile.handlebars->11->205",
1145
"default-mobile.handlebars->11->208",
1146
- "default.handlebars->31->1870",
1146
+ "default.handlebars->31->1871",
1147
"default.handlebars->31->277",
1148
"default.handlebars->31->280",
1149
"default.handlebars->31->283",
@@ -1646,8 +1646,8 @@
1646
"zh-chs": "启用第二因素身份验证",
1647
"zh-cht": "啟用第二因素身份驗證",
1648
"xloc": [
1649
- "default.handlebars->31->1883",
1650
- "default.handlebars->31->2098"
1649
+ "default.handlebars->31->1884",
1650
+ "default.handlebars->31->2099"
1651
]
1652
},
1653
{
@@ -2750,7 +2750,7 @@
2750
"zh-chs": "访问服务器档案",
2751
"zh-cht": "存取伺服器檔案",
2752
"xloc": [
2753
- "default.handlebars->31->2048"
2753
+ "default.handlebars->31->2049"
2754
]
2755
},
2756
{
@@ -2841,7 +2841,7 @@
2841
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->p2AccountSecurity->1->0",
2842
"default.handlebars->31->1405",
2843
"default.handlebars->31->1407",
2844
- "default.handlebars->31->2321",
2844
+ "default.handlebars->31->2322",
2845
"default.handlebars->31->584",
2846
"default.handlebars->31->586"
2847
]
@@ -2852,7 +2852,7 @@
2852
"fr": "Paramètres du compte",
2853
"xloc": [
2854
"default-mobile.handlebars->11->588",
2855
- "default.handlebars->31->2213"
2855
+ "default.handlebars->31->2214"
2856
]
2857
},
2858
{
@@ -2973,8 +2973,8 @@
2973
"zh-chs": "帐户已被锁定",
2974
"zh-cht": "帳戶已被鎖定",
2975
"xloc": [
2976
- "default.handlebars->31->1885",
2977
- "default.handlebars->31->2045"
2976
+ "default.handlebars->31->1886",
2977
+ "default.handlebars->31->2046"
2978
]
2979
},
2980
{
@@ -2995,7 +2995,7 @@
2995
"zh-cht": "達到帳戶限制。",
2996
"xloc": [
2997
"default-mobile.handlebars->11->600",
2998
- "default.handlebars->31->2225",
2998
+ "default.handlebars->31->2226",
2999
"login-mobile.handlebars->5->6",
3000
"login.handlebars->5->6",
3001
"login2.handlebars->7->7"
@@ -3448,8 +3448,8 @@
3448
"zh-chs": "添加设备",
3449
"zh-cht": "新增裝置",
3450
"xloc": [
3451
- "default.handlebars->31->2022",
3452
- "default.handlebars->31->2152"
3451
+ "default.handlebars->31->2023",
3452
+ "default.handlebars->31->2153"
3453
]
3454
},
3455
{
@@ -3490,8 +3490,8 @@
3490
"zh-cht": "新增裝置群",
3491
"xloc": [
3492
"default.handlebars->31->1595",
3493
- "default.handlebars->31->2016",
3494
- "default.handlebars->31->2140",
3493
+ "default.handlebars->31->2017",
3494
+ "default.handlebars->31->2141",
3495
"default.handlebars->31->247"
3496
]
3497
},
@@ -3630,7 +3630,7 @@
3630
"zh-chs": "添加成员身份",
3631
"zh-cht": "新增成員身份",
3632
"xloc": [
3633
- "default.handlebars->31->2172"
3633
+ "default.handlebars->31->2173"
3634
]
3635
},
3636
{
@@ -3738,7 +3738,7 @@
3738
"xloc": [
3739
"default.handlebars->31->1491",
3740
"default.handlebars->31->1594",
3741
- "default.handlebars->31->2146",
3741
+ "default.handlebars->31->2147",
3742
"default.handlebars->31->726"
3743
]
3744
},
@@ -3817,7 +3817,7 @@
3817
"zh-cht": "新增用戶",
3818
"xloc": [
3819
"default.handlebars->31->1490",
3820
- "default.handlebars->31->2011"
3820
+ "default.handlebars->31->2012"
3821
]
3822
},
3823
{
@@ -3857,7 +3857,7 @@
3857
"zh-chs": "将用户添加到用户组",
3858
"zh-cht": "將用戶新增到用戶群",
3859
"xloc": [
3860
- "default.handlebars->31->2044"
3860
+ "default.handlebars->31->2045"
3861
]
3862
},
3863
{
@@ -4260,7 +4260,7 @@
4260
"zh-chs": "管理领域",
4261
"zh-cht": "管理領域",
4262
"xloc": [
4263
- "default.handlebars->31->2080"
4263
+ "default.handlebars->31->2081"
4264
]
4265
},
4266
{
@@ -4301,7 +4301,7 @@
4301
"zh-chs": "管理领域",
4302
"zh-cht": "管理領域",
4303
"xloc": [
4304
- "default.handlebars->31->1948"
4304
+ "default.handlebars->31->1949"
4305
]
4306
},
4307
{
@@ -4321,7 +4321,7 @@
4321
"zh-chs": "管理员",
4322
"zh-cht": "管理員",
4323
"xloc": [
4324
- "default.handlebars->31->1877"
4324
+ "default.handlebars->31->1878"
4325
]
4326
},
4327
{
@@ -4453,7 +4453,7 @@
4453
"zh-chs": "代理错误计数器",
4454
"zh-cht": "代理錯誤計數器",
4455
"xloc": [
4456
- "default.handlebars->31->2250"
4456
+ "default.handlebars->31->2251"
4457
]
4458
},
4459
{
@@ -4556,7 +4556,7 @@
4556
"zh-chs": "代理时段",
4557
"zh-cht": "代理時段",
4558
"xloc": [
4559
- "default.handlebars->31->2266"
4559
+ "default.handlebars->31->2267"
4560
]
4561
},
4562
{
@@ -4743,7 +4743,7 @@
4743
"zh-chs": "代理",
4744
"zh-cht": "代理",
4745
"xloc": [
4746
- "default.handlebars->31->2282"
4746
+ "default.handlebars->31->2283"
4747
]
4748
},
4749
{
@@ -4806,7 +4806,7 @@
4806
"zh-chs": "全部可用",
4807
"zh-cht": "全部可用",
4808
"xloc": [
4809
- "default.handlebars->31->1840"
4809
+ "default.handlebars->31->1841"
4810
]
4811
},
4812
{
@@ -4846,7 +4846,7 @@
4846
"zh-chs": "所有事件",
4847
"zh-cht": "所有事件",
4848
"xloc": [
4849
- "default.handlebars->31->1838"
4849
+ "default.handlebars->31->1839"
4850
]
4851
},
4852
{
@@ -4889,7 +4889,7 @@
4889
"zh-cht": "允許用戶管理此裝置群和該群中的裝置。",
4890
"xloc": [
4891
"default.handlebars->31->1558",
4892
- "default.handlebars->31->2041"
4892
+ "default.handlebars->31->2042"
4893
]
4894
},
4895
{
@@ -5054,8 +5054,8 @@
5054
"zh-cht": "一直通知",
5055
"xloc": [
5056
"default.handlebars->31->1470",
5057
- "default.handlebars->31->2002",
5058
- "default.handlebars->31->2089",
5057
+ "default.handlebars->31->2003",
5058
+ "default.handlebars->31->2090",
5059
"default.handlebars->31->659"
5060
]
5061
},
@@ -5077,8 +5077,8 @@
5077
"zh-cht": "一直提示",
5078
"xloc": [
5079
"default.handlebars->31->1471",
5080
- "default.handlebars->31->2003",
5081
- "default.handlebars->31->2090",
5080
+ "default.handlebars->31->2004",
5081
+ "default.handlebars->31->2091",
5082
"default.handlebars->31->660"
5083
]
5084
},
@@ -5850,7 +5850,7 @@
5850
"zh-chs": "您确定要{0}插件吗:{1}",
5851
"zh-cht": "你確定要{0}外掛嗎:{1}",
5852
"xloc": [
5853
- "default.handlebars->31->2330"
5853
+ "default.handlebars->31->2331"
5854
]
5855
},
5856
{
@@ -5990,7 +5990,7 @@
5990
"zh-chs": "认证软件",
5991
"zh-cht": "認證軟體",
5992
"xloc": [
5993
- "default.handlebars->31->2093"
5993
+ "default.handlebars->31->2094"
5994
]
5995
},
5996
{
@@ -6181,7 +6181,7 @@
6181
"zh-chs": "可用內存",
6182
"zh-cht": "可用內存",
6183
"xloc": [
6184
- "default.handlebars->31->2275"
6184
+ "default.handlebars->31->2276"
6185
]
6186
},
6187
{
@@ -6427,7 +6427,7 @@
6427
"zh-chs": "备用码",
6428
"zh-cht": "備用碼",
6429
"xloc": [
6430
- "default.handlebars->31->2095"
6430
+ "default.handlebars->31->2096"
6431
]
6432
},
6433
{
@@ -6447,7 +6447,7 @@
6447
"zh-chs": "错误的签名",
6448
"zh-cht": "錯誤的簽名",
6449
"xloc": [
6450
- "default.handlebars->31->2257"
6450
+ "default.handlebars->31->2258"
6451
]
6452
},
6453
{
@@ -6467,7 +6467,7 @@
6467
"zh-chs": "错误的网络证书",
6468
"zh-cht": "錯誤的網絡憑證",
6469
"xloc": [
6470
- "default.handlebars->31->2256"
6470
+ "default.handlebars->31->2257"
6471
]
6472
},
6473
{
@@ -6679,7 +6679,7 @@
6679
"zh-chs": "广播",
6680
"zh-cht": "廣播",
6681
"xloc": [
6682
- "default.handlebars->31->2009",
6682
+ "default.handlebars->31->2010",
6683
"default.handlebars->container->column_l->p4->3->1->0->3->1"
6684
]
6685
},
@@ -6700,7 +6700,7 @@
6700
"zh-chs": "广播消息",
6701
"zh-cht": "廣播消息",
6702
"xloc": [
6703
- "default.handlebars->31->1930"
6703
+ "default.handlebars->31->1931"
6704
]
6705
},
6706
{
@@ -6720,7 +6720,7 @@
6720
"zh-chs": "向所有连接的用户广播消息。",
6721
"zh-cht": "向所有連接的用戶廣播消息。",
6722
"xloc": [
6723
- "default.handlebars->31->1925"
6723
+ "default.handlebars->31->1926"
6724
]
6725
},
6726
{
@@ -6852,7 +6852,7 @@
6852
"zh-chs": "CIRA服务器",
6853
"zh-cht": "CIRA伺服器",
6854
"xloc": [
6855
- "default.handlebars->31->2314"
6855
+ "default.handlebars->31->2315"
6856
]
6857
},
6858
{
@@ -6872,7 +6872,7 @@
6872
"zh-chs": "CIRA服务器命令",
6873
"zh-cht": "CIRA伺服器指令",
6874
"xloc": [
6875
- "default.handlebars->31->2315"
6875
+ "default.handlebars->31->2316"
6876
]
6877
},
6878
{
@@ -6933,7 +6933,7 @@
6933
"zh-chs": "CPU负载",
6934
"zh-cht": "CPU負載",
6935
"xloc": [
6936
- "default.handlebars->31->2271"
6936
+ "default.handlebars->31->2272"
6937
]
6938
},
6939
{
@@ -6953,7 +6953,7 @@
6953
"zh-chs": "最近15分钟的CPU负载",
6954
"zh-cht": "最近15分鐘的CPU負載",
6955
"xloc": [
6956
- "default.handlebars->31->2274"
6956
+ "default.handlebars->31->2275"
6957
]
6958
},
6959
{
@@ -6973,7 +6973,7 @@
6973
"zh-chs": "最近5分钟的CPU负载",
6974
"zh-cht": "最近5分鐘的CPU負載",
6975
"xloc": [
6976
- "default.handlebars->31->2273"
6976
+ "default.handlebars->31->2274"
6977
]
6978
},
6979
{
@@ -6993,7 +6993,7 @@
6993
"zh-chs": "最近一分钟的CPU负载",
6994
"zh-cht": "最近一分鐘的CPU負載",
6995
"xloc": [
6996
- "default.handlebars->31->2272"
6996
+ "default.handlebars->31->2273"
6997
]
6998
},
6999
{
@@ -7038,7 +7038,7 @@
7038
"zh-chs": "CSV",
7039
"zh-cht": "CSV",
7040
"xloc": [
7041
- "default.handlebars->31->1848"
7041
+ "default.handlebars->31->1849"
7042
]
7043
},
7044
{
@@ -7058,8 +7058,8 @@
7058
"zh-chs": "CSV格式",
7059
"zh-cht": "CSV格式",
7060
"xloc": [
7061
- "default.handlebars->31->1852",
7062
- "default.handlebars->31->1917",
7061
+ "default.handlebars->31->1853",
7062
+ "default.handlebars->31->1918",
7063
"default.handlebars->31->523"
7064
]
7065
},
@@ -7097,7 +7097,7 @@
7097
"zh-chs": "呼叫错误",
7098
"zh-cht": "呼叫錯誤",
7099
"xloc": [
7100
- "default.handlebars->31->2331"
7100
+ "default.handlebars->31->2332"
7101
]
7102
},
7103
{
@@ -7121,7 +7121,7 @@
7121
"default-mobile.handlebars->11->104",
7122
"default-mobile.handlebars->dialog->idx_dlgButtonBar",
7123
"default.handlebars->31->1435",
7124
- "default.handlebars->31->2320",
7124
+ "default.handlebars->31->2321",
7125
"default.handlebars->container->dialog->idx_dlgButtonBar",
7126
"desktop.handlebars->p11->dialog->idx_dlgButtonBar",
7127
"login-mobile.handlebars->dialog->idx_dlgButtonBar",
@@ -7277,7 +7277,7 @@
7277
"zh-chs": "更改{0}的电邮",
7278
"zh-cht": "更改{0}的電郵",
7279
"xloc": [
7280
- "default.handlebars->31->2127"
7280
+ "default.handlebars->31->2128"
7281
]
7282
},
7283
{
@@ -7321,7 +7321,7 @@
7321
"xloc": [
7322
"default-mobile.handlebars->11->112",
7323
"default.handlebars->31->1402",
7324
- "default.handlebars->31->2112"
7324
+ "default.handlebars->31->2113"
7325
]
7326
},
7327
{
@@ -7341,7 +7341,7 @@
7341
"zh-chs": "更改{0}的密码",
7342
"zh-cht": "更改{0}的密碼",
7343
"xloc": [
7344
- "default.handlebars->31->2136"
7344
+ "default.handlebars->31->2137"
7345
]
7346
},
7347
{
@@ -7361,7 +7361,7 @@
7361
"zh-chs": "更改{0}的真实名称",
7362
"zh-cht": "更改{0}的真實名稱",
7363
"xloc": [
7364
- "default.handlebars->31->2122"
7364
+ "default.handlebars->31->2123"
7365
]
7366
},
7367
{
@@ -7443,7 +7443,7 @@
7443
"zh-chs": "更改该用户的密码",
7444
"zh-cht": "更改該用戶的密碼",
7445
"xloc": [
7446
- "default.handlebars->31->2111"
7446
+ "default.handlebars->31->2112"
7447
]
7448
},
7449
{
@@ -7624,9 +7624,9 @@
7624
"zh-chs": "聊天",
7625
"zh-cht": "聊天",
7626
"xloc": [
7627
- "default.handlebars->31->1869",
7628
- "default.handlebars->31->2107",
7627
+ "default.handlebars->31->1870",
7628
"default.handlebars->31->2108",
7629
+ "default.handlebars->31->2109",
7630
"default.handlebars->31->685",
7631
"default.handlebars->31->757",
7632
"default.handlebars->31->779"
@@ -7661,7 +7661,7 @@
7661
"fr": "Demande de discussion, cliquez ici pour accepter.",
7662
"xloc": [
7663
"default-mobile.handlebars->11->601",
7664
- "default.handlebars->31->2226"
7664
+ "default.handlebars->31->2227"
7665
]
7666
},
7667
{
@@ -7802,7 +7802,7 @@
7802
"zh-cht": "檢查...",
7803
"xloc": [
7804
"default.handlebars->31->1174",
7805
- "default.handlebars->31->2325"
7805
+ "default.handlebars->31->2326"
7806
]
7807
},
7808
{
@@ -8090,7 +8090,7 @@
8090
"zh-cht": "全部清除",
8091
"xloc": [
8092
"default-mobile.handlebars->11->584",
8093
- "default.handlebars->31->2209"
8093
+ "default.handlebars->31->2210"
8094
]
8095
},
8096
{
@@ -8173,7 +8173,7 @@
8173
"zh-cht": "清除此通知",
8174
"xloc": [
8175
"default-mobile.handlebars->11->583",
8176
- "default.handlebars->31->2208"
8176
+ "default.handlebars->31->2209"
8177
]
8178
},
8179
{
@@ -8274,7 +8274,7 @@
8274
"zh-chs": "单击此处编辑用户组名称",
8275
"zh-cht": "單擊此處編輯用戶群名稱",
8276
"xloc": [
8277
- "default.handlebars->31->1986"
8277
+ "default.handlebars->31->1987"
8278
]
8279
},
8280
{
@@ -8512,7 +8512,7 @@
8512
"default.handlebars->31->1005",
8513
"default.handlebars->31->152",
8514
"default.handlebars->31->160",
8515
- "default.handlebars->31->2319",
8515
+ "default.handlebars->31->2320",
8516
"default.handlebars->31->972"
8517
]
8518
},
@@ -8678,8 +8678,8 @@
8678
"zh-chs": "通用设备组",
8679
"zh-cht": "通用裝置群",
8680
"xloc": [
8681
- "default.handlebars->31->2017",
8682
- "default.handlebars->31->2141"
8681
+ "default.handlebars->31->2018",
8682
+ "default.handlebars->31->2142"
8683
]
8684
},
8685
{
@@ -8699,8 +8699,8 @@
8699
"zh-chs": "通用设备",
8700
"zh-cht": "通用裝置",
8701
"xloc": [
8702
- "default.handlebars->31->2023",
8703
- "default.handlebars->31->2153"
8702
+ "default.handlebars->31->2024",
8703
+ "default.handlebars->31->2154"
8704
]
8705
},
8706
{
@@ -8752,10 +8752,10 @@
8752
"default-mobile.handlebars->11->321",
8753
"default-mobile.handlebars->11->525",
8754
"default.handlebars->31->1535",
8755
- "default.handlebars->31->1897",
8756
- "default.handlebars->31->1976",
8757
- "default.handlebars->31->2037",
8758
- "default.handlebars->31->2139",
8755
+ "default.handlebars->31->1898",
8756
+ "default.handlebars->31->1977",
8757
+ "default.handlebars->31->2038",
8758
+ "default.handlebars->31->2140",
8759
"default.handlebars->31->487",
8760
"default.handlebars->31->858",
8761
"default.handlebars->31->867"
@@ -8839,7 +8839,7 @@
8839
"zh-chs": "确认删除选定的帐户?",
8840
"zh-cht": "確認刪除所選帳戶?",
8841
"xloc": [
8842
- "default.handlebars->31->1896"
8842
+ "default.handlebars->31->1897"
8843
]
8844
},
8845
{
@@ -8879,7 +8879,7 @@
8879
"zh-chs": "确认删除选定的用户组?",
8880
"zh-cht": "確認刪除所選用戶群?",
8881
"xloc": [
8882
- "default.handlebars->31->1975"
8882
+ "default.handlebars->31->1976"
8883
]
8884
},
8885
{
@@ -8899,7 +8899,7 @@
8899
"zh-chs": "确认删除用户{0}?",
8900
"zh-cht": "確認刪除用戶{0}?",
8901
"xloc": [
8902
- "default.handlebars->31->2138"
8902
+ "default.handlebars->31->2139"
8903
]
8904
},
8905
{
@@ -8919,7 +8919,7 @@
8919
"zh-chs": "确认删除用户“ {0} ”的成员身份?",
8920
"zh-cht": "確認刪除用戶“ {0} ”的成員身份?",
8921
"xloc": [
8922
- "default.handlebars->31->2040"
8922
+ "default.handlebars->31->2041"
8923
]
8924
},
8925
{
@@ -8939,7 +8939,7 @@
8939
"zh-chs": "确认删除用户组“ {0} ”的成员身份?",
8940
"zh-cht": "確認刪除用戶群“ {0} ”的成員身份?",
8941
"xloc": [
8942
- "default.handlebars->31->2170"
8942
+ "default.handlebars->31->2171"
8943
]
8944
},
8945
{
@@ -9040,8 +9040,8 @@
9040
"zh-chs": "确认删除设备“ {0} ”的访问权限?",
9041
"zh-cht": "確認刪除裝置“ {0} ”的訪問權限?",
9042
"xloc": [
9043
- "default.handlebars->31->2030",
9044
- "default.handlebars->31->2161"
9043
+ "default.handlebars->31->2031",
9044
+ "default.handlebars->31->2162"
9045
]
9046
},
9047
{
@@ -9061,8 +9061,8 @@
9061
"zh-chs": "确认删除设备组“ {0} ”的访问权限?",
9062
"zh-cht": "確認刪除裝置群“ {0} ”的訪問權限?",
9063
"xloc": [
9064
- "default.handlebars->31->2032",
9065
- "default.handlebars->31->2174"
9064
+ "default.handlebars->31->2033",
9065
+ "default.handlebars->31->2175"
9066
]
9067
},
9068
{
@@ -9082,7 +9082,7 @@
9082
"zh-chs": "确认删除用户“ {0} ”的访问权限?",
9083
"zh-cht": "確認刪除用戶“ {0} ”的訪問權限?",
9084
"xloc": [
9085
- "default.handlebars->31->2163"
9085
+ "default.handlebars->31->2164"
9086
]
9087
},
9088
{
@@ -9102,7 +9102,7 @@
9102
"zh-chs": "确认删除用户组“ {0} ”的访问权限?",
9103
"zh-cht": "確認刪除用戶群“ {0} ”的訪問權限?",
9104
"xloc": [
9105
- "default.handlebars->31->2166"
9105
+ "default.handlebars->31->2167"
9106
]
9107
},
9108
{
@@ -9122,8 +9122,8 @@
9122
"zh-chs": "确认删除访问权限?",
9123
"zh-cht": "確認刪除訪問權限?",
9124
"xloc": [
9125
- "default.handlebars->31->2164",
9126
- "default.handlebars->31->2167"
9125
+ "default.handlebars->31->2165",
9126
+ "default.handlebars->31->2168"
9127
]
9128
},
9129
{
@@ -9181,7 +9181,7 @@
9181
"zh-chs": "确认删除设备共享“{0}”?",
9182
"zh-cht": "確認刪除設備共享“{0}”?",
9183
"xloc": [
9184
- "default.handlebars->31->2159"
9184
+ "default.handlebars->31->2160"
9185
]
9186
},
9187
{
@@ -9508,7 +9508,7 @@
9508
"zh-chs": "已连接的英特尔®AMT",
9509
"zh-cht": "已連接的Intel® AMT",
9510
"xloc": [
9511
- "default.handlebars->31->2262"
9511
+ "default.handlebars->31->2263"
9512
]
9513
},
9514
{
@@ -9528,7 +9528,7 @@
9528
"zh-chs": "已连接的用户",
9529
"zh-cht": "已连接的用户",
9530
"xloc": [
9531
- "default.handlebars->31->2267"
9531
+ "default.handlebars->31->2268"
9532
]
9533
},
9534
{
@@ -9619,7 +9619,7 @@
9619
"zh-chs": "连接数量",
9620
"zh-cht": "連接數量",
9621
"xloc": [
9622
- "default.handlebars->31->2281"
9622
+ "default.handlebars->31->2282"
9623
]
9624
},
9625
{
@@ -9639,7 +9639,7 @@
9639
"zh-chs": "连接转发器",
9640
"zh-cht": "連接轉發器",
9641
"xloc": [
9642
- "default.handlebars->31->2313"
9642
+ "default.handlebars->31->2314"
9643
]
9644
},
9645
{
@@ -9790,7 +9790,7 @@
9790
"zh-chs": "Cookie编码器",
9791
"zh-cht": "Cookie編碼器",
9792
"xloc": [
9793
- "default.handlebars->31->2297"
9793
+ "default.handlebars->31->2298"
9794
]
9795
},
9796
{
@@ -10199,7 +10199,7 @@
10199
"zh-chs": "核心服务器",
10200
"zh-cht": "核心伺服器",
10201
"xloc": [
10202
- "default.handlebars->31->2296"
10202
+ "default.handlebars->31->2297"
10203
]
10204
},
10205
{
@@ -10239,7 +10239,7 @@
10239
"zh-chs": "创建帐号",
10240
"zh-cht": "創建帳號",
10241
"xloc": [
10242
- "default.handlebars->31->1944",
10242
+ "default.handlebars->31->1945",
10243
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->12->1->1",
10244
"login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1",
10245
"login2.handlebars->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1"
@@ -10282,7 +10282,7 @@
10282
"zh-chs": "创建用户组",
10283
"zh-cht": "創建用戶群",
10284
"xloc": [
10285
- "default.handlebars->31->1983"
10285
+ "default.handlebars->31->1984"
10286
]
10287
},
10288
{
@@ -10402,7 +10402,7 @@
10402
"zh-chs": "通过导入以下格式的JSON档案一次创建多个帐户:",
10403
"zh-cht": "通過導入以下格式的JSON檔案一次創建多個帳戶:",
10404
"xloc": [
10405
- "default.handlebars->31->1908"
10405
+ "default.handlebars->31->1909"
10406
]
10407
},
10408
{
@@ -10518,7 +10518,7 @@
10518
"zh-chs": "创建",
10519
"zh-cht": "創建",
10520
"xloc": [
10521
- "default.handlebars->31->2069"
10521
+ "default.handlebars->31->2070"
10522
]
10523
},
10524
{
@@ -10816,7 +10816,7 @@
10816
"fr": "Le mot de passe actuel n'est pas correct.",
10817
"xloc": [
10818
"default-mobile.handlebars->11->611",
10819
- "default.handlebars->31->2236"
10819
+ "default.handlebars->31->2237"
10820
]
10821
},
10822
{
@@ -11084,10 +11084,10 @@
11084
"zh-chs": "默认",
11085
"zh-cht": "默認",
11086
"xloc": [
11087
- "default.handlebars->31->1931",
11088
- "default.handlebars->31->1979",
11089
- "default.handlebars->31->1990",
11090
- "default.handlebars->31->2058"
11087
+ "default.handlebars->31->1932",
11088
+ "default.handlebars->31->1980",
11089
+ "default.handlebars->31->1991",
11090
+ "default.handlebars->31->2059"
11091
]
11092
},
11093
{
@@ -11171,7 +11171,7 @@
11171
"zh-chs": "删除帐户",
11172
"zh-cht": "刪除帳戶",
11173
"xloc": [
11174
- "default.handlebars->31->1898"
11174
+ "default.handlebars->31->1899"
11175
]
11176
},
11177
{
@@ -11276,7 +11276,7 @@
11276
"zh-chs": "删除用户",
11277
"zh-cht": "刪除用戶",
11278
"xloc": [
11279
- "default.handlebars->31->2110"
11279
+ "default.handlebars->31->2111"
11280
]
11281
},
11282
{
@@ -11296,8 +11296,8 @@
11296
"zh-chs": "删除用户群组",
11297
"zh-cht": "刪除用戶群組",
11298
"xloc": [
11299
- "default.handlebars->31->2028",
11300
- "default.handlebars->31->2038"
11299
+ "default.handlebars->31->2029",
11300
+ "default.handlebars->31->2039"
11301
]
11302
},
11303
{
@@ -11317,7 +11317,7 @@
11317
"zh-chs": "删除用户群组",
11318
"zh-cht": "刪除用戶群組",
11319
"xloc": [
11320
- "default.handlebars->31->1977"
11320
+ "default.handlebars->31->1978"
11321
]
11322
},
11323
{
@@ -11337,7 +11337,7 @@
11337
"zh-chs": "删除用户{0}",
11338
"zh-cht": "刪除用戶{0}",
11339
"xloc": [
11340
- "default.handlebars->31->2137"
11340
+ "default.handlebars->31->2138"
11341
]
11342
},
11343
{
@@ -11358,7 +11358,7 @@
11358
"zh-cht": "刪除帳戶",
11359
"xloc": [
11360
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->p2AccountActions->3->9->0",
11361
- "default.handlebars->31->1894",
11361
+ "default.handlebars->31->1895",
11362
"default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7"
11363
]
11364
},
@@ -11399,7 +11399,7 @@
11399
"zh-chs": "删除群组",
11400
"zh-cht": "刪除群組",
11401
"xloc": [
11402
- "default.handlebars->31->1973"
11402
+ "default.handlebars->31->1974"
11403
]
11404
},
11405
{
@@ -11482,7 +11482,7 @@
11482
"zh-chs": "删除用户群组{0}?",
11483
"zh-cht": "刪除用戶群組{0}?",
11484
"xloc": [
11485
- "default.handlebars->31->2036"
11485
+ "default.handlebars->31->2037"
11486
]
11487
},
11488
{
@@ -11689,10 +11689,10 @@
11689
"default.handlebars->31->1414",
11690
"default.handlebars->31->1451",
11691
"default.handlebars->31->1538",
11692
- "default.handlebars->31->1982",
11693
- "default.handlebars->31->1992",
11692
+ "default.handlebars->31->1983",
11693
"default.handlebars->31->1993",
11695
- "default.handlebars->31->2034",
11694
+ "default.handlebars->31->1994",
11695
+ "default.handlebars->31->2035",
11696
"default.handlebars->31->603",
11697
"default.handlebars->31->604",
11698
"default.handlebars->31->906",
@@ -11736,7 +11736,7 @@
11736
"xloc": [
11737
"default-mobile.handlebars->11->297",
11738
"default.handlebars->31->1544",
11739
- "default.handlebars->31->2186",
11739
+ "default.handlebars->31->2187",
11740
"default.handlebars->31->568",
11741
"default.handlebars->31->738",
11742
"default.handlebars->31->794",
@@ -11784,8 +11784,8 @@
11784
"zh-cht": "桌面通知",
11785
"xloc": [
11786
"default.handlebars->31->1465",
11787
- "default.handlebars->31->1997",
11788
- "default.handlebars->31->2084",
11787
+ "default.handlebars->31->1998",
11788
+ "default.handlebars->31->2085",
11789
"default.handlebars->31->654"
11790
]
11791
},
@@ -11807,8 +11807,8 @@
11807
"zh-cht": "桌面提示",
11808
"xloc": [
11809
"default.handlebars->31->1464",
11810
- "default.handlebars->31->1996",
11811
- "default.handlebars->31->2083",
11810
+ "default.handlebars->31->1997",
11811
+ "default.handlebars->31->2084",
11812
"default.handlebars->31->653"
11813
]
11814
},
@@ -11830,8 +11830,8 @@
11830
"zh-cht": "桌面提示+工具欄",
11831
"xloc": [
11832
"default.handlebars->31->1462",
11833
- "default.handlebars->31->1994",
11834
- "default.handlebars->31->2081",
11833
+ "default.handlebars->31->1995",
11834
+ "default.handlebars->31->2082",
11835
"default.handlebars->31->651"
11836
]
11837
},
@@ -11895,8 +11895,8 @@
11895
"zh-cht": "桌面工具欄",
11896
"xloc": [
11897
"default.handlebars->31->1463",
11898
- "default.handlebars->31->1995",
11899
- "default.handlebars->31->2082",
11898
+ "default.handlebars->31->1996",
11899
+ "default.handlebars->31->2083",
11900
"default.handlebars->31->652"
11901
]
11902
},
@@ -12012,7 +12012,7 @@
12012
"default.handlebars->31->1063",
12013
"default.handlebars->31->1567",
12014
"default.handlebars->31->201",
12015
- "default.handlebars->31->2156",
12015
+ "default.handlebars->31->2157",
12016
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5"
12017
]
12018
},
@@ -12080,12 +12080,12 @@
12080
"default.handlebars->31->1562",
12081
"default.handlebars->31->1565",
12082
"default.handlebars->31->1566",
12083
- "default.handlebars->31->1845",
12084
- "default.handlebars->31->2020",
12085
- "default.handlebars->31->2026",
12086
- "default.handlebars->31->2144",
12087
- "default.handlebars->31->2195",
12088
- "default.handlebars->31->2214"
12083
+ "default.handlebars->31->1846",
12084
+ "default.handlebars->31->2021",
12085
+ "default.handlebars->31->2027",
12086
+ "default.handlebars->31->2145",
12087
+ "default.handlebars->31->2196",
12088
+ "default.handlebars->31->2215"
12089
]
12090
},
12091
{
@@ -12127,11 +12127,11 @@
12127
"zh-cht": "裝置群",
12128
"xloc": [
12129
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->3",
12130
- "default.handlebars->31->1861",
12131
- "default.handlebars->31->1967",
12132
- "default.handlebars->31->2007",
12133
- "default.handlebars->31->2078",
12134
- "default.handlebars->31->2265",
12130
+ "default.handlebars->31->1862",
12131
+ "default.handlebars->31->1968",
12132
+ "default.handlebars->31->2008",
12133
+ "default.handlebars->31->2079",
12134
+ "default.handlebars->31->2266",
12135
"default.handlebars->container->column_l->p2->p2info->7"
12136
]
12137
},
@@ -12213,7 +12213,7 @@
12213
"zh-cht": "裝置名稱",
12214
"xloc": [
12215
"default-mobile.handlebars->11->323",
12216
- "default.handlebars->31->2194",
12216
+ "default.handlebars->31->2195",
12217
"default.handlebars->31->314",
12218
"default.handlebars->31->904",
12219
"player.handlebars->3->9"
@@ -12840,6 +12840,12 @@
12840
"default.handlebars->31->475"
12841
]
12842
},
12843
+ {
12844
+ "en": "Device requested Intel(R) AMT ACM TLS activation, FQDN: {0}",
12845
+ "xloc": [
12846
+ "default.handlebars->31->1836"
12847
+ ]
12848
+ },
12849
{
12850
"cs": "Zařízení požadovalo aktivaci Intel (R) AMT ACM, FQDN: {0}",
12851
"de": "Gerät hat Intel (R) AMT ACM-Aktivierung angefordert, FQDN: {0}",
@@ -12894,8 +12900,8 @@
12900
"zh-chs": "设备",
12901
"zh-cht": "裝置",
12902
"xloc": [
12897
- "default.handlebars->31->1968",
12898
- "default.handlebars->31->2008"
12903
+ "default.handlebars->31->1969",
12904
+ "default.handlebars->31->2009"
12905
]
12906
},
12907
{
@@ -13249,10 +13255,10 @@
13255
"zh-chs": "域",
13256
"zh-cht": "域",
13257
"xloc": [
13252
- "default.handlebars->31->1932",
13253
- "default.handlebars->31->1980",
13254
- "default.handlebars->31->1989",
13255
- "default.handlebars->31->2057",
13258
+ "default.handlebars->31->1933",
13259
+ "default.handlebars->31->1981",
13260
+ "default.handlebars->31->1990",
13261
+ "default.handlebars->31->2058",
13262
"mstsc.handlebars->main->1->3->1->2->1->0",
13263
"mstsc.handlebars->main->1->3->1->2->3"
13264
]
@@ -13540,7 +13546,7 @@
13546
"zh-chs": "下载报告",
13547
"zh-cht": "下載報告",
13548
"xloc": [
13543
- "default.handlebars->31->1850",
13549
+ "default.handlebars->31->1851",
13550
"default.handlebars->container->column_l->p3->3->1->0->3"
13551
]
13552
},
@@ -13749,7 +13755,7 @@
13755
"zh-chs": "使用以下一种档案格式下载事件列表。",
13756
"zh-cht": "使用以下一種檔案格式下載事件列表。",
13757
"xloc": [
13752
- "default.handlebars->31->1851"
13758
+ "default.handlebars->31->1852"
13759
]
13760
},
13761
{
@@ -13769,7 +13775,7 @@
13775
"zh-chs": "使用以下一种档案格式下载用户列表。",
13776
"zh-cht": "使用以下一種檔案格式下載用戶列表。",
13777
"xloc": [
13772
- "default.handlebars->31->1916"
13778
+ "default.handlebars->31->1917"
13779
]
13780
},
13781
{
@@ -13898,7 +13904,7 @@
13904
"zh-chs": "代理重复",
13905
"zh-cht": "代理重複",
13906
"xloc": [
13901
- "default.handlebars->31->2261"
13907
+ "default.handlebars->31->2262"
13908
]
13909
},
13910
{
@@ -13938,7 +13944,7 @@
13944
"zh-chs": "复制用户组",
13945
"zh-cht": "複製用戶群",
13946
"xloc": [
13941
- "default.handlebars->31->1984"
13947
+ "default.handlebars->31->1985"
13948
]
13949
},
13950
{
@@ -13975,8 +13981,8 @@
13981
"zh-chs": "持续时间",
13982
"zh-cht": "持續時間",
13983
"xloc": [
13978
- "default.handlebars->31->2180",
13979
- "default.handlebars->31->2200",
13984
+ "default.handlebars->31->2181",
13985
+ "default.handlebars->31->2201",
13986
"player.handlebars->3->2"
13987
]
13988
},
@@ -14640,7 +14646,7 @@
14646
"zh-chs": "编辑用户组",
14647
"zh-cht": "編輯用戶群",
14648
"xloc": [
14643
- "default.handlebars->31->2035"
14649
+ "default.handlebars->31->2036"
14650
]
14651
},
14652
{
@@ -14762,11 +14768,11 @@
14768
"zh-cht": "電郵",
14769
"xloc": [
14770
"default-mobile.handlebars->11->100",
14765
- "default.handlebars->31->1934",
14766
- "default.handlebars->31->2061",
14767
- "default.handlebars->31->2063",
14768
- "default.handlebars->31->2103",
14769
- "default.handlebars->31->2123",
14771
+ "default.handlebars->31->1935",
14772
+ "default.handlebars->31->2062",
14773
+ "default.handlebars->31->2064",
14774
+ "default.handlebars->31->2104",
14775
+ "default.handlebars->31->2124",
14776
"default.handlebars->31->347",
14777
"login-mobile.handlebars->5->42",
14778
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3",
@@ -14920,7 +14926,7 @@
14926
"zh-chs": "电邮未验证",
14927
"zh-cht": "電郵未驗證",
14928
"xloc": [
14923
- "default.handlebars->31->1880"
14929
+ "default.handlebars->31->1881"
14930
]
14931
},
14932
{
@@ -14940,8 +14946,8 @@
14946
"zh-chs": "电子邮件已验证",
14947
"zh-cht": "電子郵件已驗證",
14948
"xloc": [
14943
- "default.handlebars->31->1881",
14944
- "default.handlebars->31->2055"
14949
+ "default.handlebars->31->1882",
14950
+ "default.handlebars->31->2056"
14951
]
14952
},
14953
{
@@ -14961,7 +14967,7 @@
14967
"zh-chs": "电邮已验证。",
14968
"zh-cht": "電郵已驗證。",
14969
"xloc": [
14964
- "default.handlebars->31->1940"
14970
+ "default.handlebars->31->1941"
14971
]
14972
},
14973
{
@@ -14981,7 +14987,7 @@
14987
"zh-chs": "电邮未验证",
14988
"zh-cht": "電郵未驗證",
14989
"xloc": [
14984
- "default.handlebars->31->2056"
14990
+ "default.handlebars->31->2057"
14991
]
14992
},
14993
{
@@ -15002,7 +15008,7 @@
15008
"zh-cht": "電郵已發送。",
15009
"xloc": [
15010
"default-mobile.handlebars->11->604",
15005
- "default.handlebars->31->2229",
15011
+ "default.handlebars->31->2230",
15012
"login-mobile.handlebars->5->2",
15013
"login.handlebars->5->2",
15014
"login2.handlebars->7->3"
@@ -15047,7 +15053,7 @@
15053
"zh-chs": "已通过电邮验证,并且需要重置密码。",
15054
"zh-cht": "已通過電郵驗證,並且需要重置密碼。",
15055
"xloc": [
15050
- "default.handlebars->31->1941"
15056
+ "default.handlebars->31->1942"
15057
]
15058
},
15059
{
@@ -15071,7 +15077,7 @@
15077
"en": "Email/SMS/Push Traffic",
15078
"nl": "Email/SMS/Push verkeer",
15079
"xloc": [
15074
- "default.handlebars->31->2305"
15080
+ "default.handlebars->31->2306"
15081
]
15082
},
15083
{
@@ -15198,7 +15204,7 @@
15204
"zh-chs": "已启用",
15205
"zh-cht": "已啟用",
15206
"xloc": [
15201
- "default.handlebars->31->2202"
15207
+ "default.handlebars->31->2203"
15208
]
15209
},
15210
{
@@ -15267,7 +15273,7 @@
15273
"zh-chs": "时间结束",
15274
"zh-cht": "時間結束",
15275
"xloc": [
15270
- "default.handlebars->31->2199"
15276
+ "default.handlebars->31->2200"
15277
]
15278
},
15279
{
@@ -15651,7 +15657,7 @@
15657
"zh-chs": "输入管理领域名称的逗号分隔列表。",
15658
"zh-cht": "輸入管理領域名稱的逗號分隔列表。",
15659
"xloc": [
15654
- "default.handlebars->31->1945"
15660
+ "default.handlebars->31->1946"
15661
]
15662
},
15663
{
@@ -15802,7 +15808,7 @@
15808
"fr": "Erreur, code d'invitation \\\"{0}\\\" déjà utilisé.",
15809
"xloc": [
15810
"default-mobile.handlebars->11->612",
15805
- "default.handlebars->31->2237"
15811
+ "default.handlebars->31->2238"
15812
]
15813
},
15814
{
@@ -15811,7 +15817,7 @@
15817
"fr": "Erreur, mot de passe non modifié.",
15818
"xloc": [
15819
"default-mobile.handlebars->11->609",
15814
- "default.handlebars->31->2234"
15820
+ "default.handlebars->31->2235"
15821
]
15822
},
15823
{
@@ -15820,7 +15826,7 @@
15826
"fr": "Erreur, impossible de changer le mot de passe couramment utilisé.",
15827
"xloc": [
15828
"default-mobile.handlebars->11->608",
15823
- "default.handlebars->31->2233"
15829
+ "default.handlebars->31->2234"
15830
]
15831
},
15832
{
@@ -15829,7 +15835,7 @@
15835
"fr": "Erreur, impossible de changer le mot de passe précédemment utilisé.",
15836
"xloc": [
15837
"default-mobile.handlebars->11->607",
15832
- "default.handlebars->31->2232"
15838
+ "default.handlebars->31->2233"
15839
]
15840
},
15841
{
@@ -15938,7 +15944,7 @@
15944
"zh-chs": "事件列表输出",
15945
"zh-cht": "事件列表輸出",
15946
"xloc": [
15941
- "default.handlebars->31->1856"
15947
+ "default.handlebars->31->1857"
15948
]
15949
},
15950
{
@@ -16168,7 +16174,7 @@
16174
"zh-chs": "外部",
16175
"zh-cht": "外部",
16176
"xloc": [
16171
- "default.handlebars->31->2288"
16177
+ "default.handlebars->31->2289"
16178
]
16179
},
16180
{
@@ -16257,7 +16263,7 @@
16263
"fr": "Échec de la modification de l'adresse e-mail, un autre compte utilise déjà: {0}.",
16264
"xloc": [
16265
"default-mobile.handlebars->11->603",
16260
- "default.handlebars->31->2228"
16266
+ "default.handlebars->31->2229"
16267
]
16268
},
16269
{
@@ -16544,7 +16550,7 @@
16550
"default-mobile.handlebars->11->201",
16551
"default-mobile.handlebars->11->298",
16552
"default.handlebars->31->1551",
16547
- "default.handlebars->31->2187",
16553
+ "default.handlebars->31->2188",
16554
"default.handlebars->31->285",
16555
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles",
16556
"default.handlebars->contextMenu->cxfiles"
@@ -16588,8 +16594,8 @@
16594
"zh-cht": "檔案通知",
16595
"xloc": [
16596
"default.handlebars->31->1469",
16591
- "default.handlebars->31->2001",
16592
- "default.handlebars->31->2088",
16597
+ "default.handlebars->31->2002",
16598
+ "default.handlebars->31->2089",
16599
"default.handlebars->31->658"
16600
]
16601
},
@@ -16611,8 +16617,8 @@
16617
"zh-cht": "檔案提示",
16618
"xloc": [
16619
"default.handlebars->31->1468",
16614
- "default.handlebars->31->2000",
16615
- "default.handlebars->31->2087",
16620
+ "default.handlebars->31->2001",
16621
+ "default.handlebars->31->2088",
16622
"default.handlebars->31->657"
16623
]
16624
},
@@ -16927,8 +16933,8 @@
16933
"zh-chs": "下次登录时强制重置密码。",
16934
"zh-cht": "下次登入時強制重置密碼。",
16935
"xloc": [
16930
- "default.handlebars->31->1939",
16931
- "default.handlebars->31->2134"
16936
+ "default.handlebars->31->1940",
16937
+ "default.handlebars->31->2135"
16938
]
16939
},
16940
{
@@ -17011,7 +17017,7 @@
17017
"zh-chs": "格式化",
17018
"zh-cht": "格式化",
17019
"xloc": [
17014
- "default.handlebars->31->1847"
17020
+ "default.handlebars->31->1848"
17021
]
17022
},
17023
{
@@ -17052,8 +17058,8 @@
17058
"zh-chs": "自由",
17059
"zh-cht": "自由",
17060
"xloc": [
17055
- "default.handlebars->31->2246",
17056
- "default.handlebars->31->2248"
17061
+ "default.handlebars->31->2247",
17062
+ "default.handlebars->31->2249"
17063
]
17064
},
17065
{
@@ -17280,7 +17286,7 @@
17286
"default-mobile.handlebars->11->554",
17287
"default.handlebars->31->1423",
17288
"default.handlebars->31->1570",
17283
- "default.handlebars->31->1951"
17289
+ "default.handlebars->31->1952"
17290
]
17291
},
17292
{
@@ -17419,7 +17425,7 @@
17425
"zh-chs": "完整管理员",
17426
"zh-cht": "完整管理員",
17427
"xloc": [
17422
- "default.handlebars->31->2049"
17428
+ "default.handlebars->31->2050"
17429
]
17430
},
17431
{
@@ -18067,8 +18073,8 @@
18073
"zh-chs": "集体指令",
18074
"zh-cht": "集體指令",
18075
"xloc": [
18070
- "default.handlebars->31->1895",
18071
- "default.handlebars->31->1974",
18076
+ "default.handlebars->31->1896",
18077
+ "default.handlebars->31->1975",
18078
"default.handlebars->31->485",
18079
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar",
18080
"default.handlebars->container->column_l->p4->3->1->0->3->3",
@@ -18092,7 +18098,7 @@
18098
"zh-chs": "通过...分组",
18099
"zh-cht": "通過...分群",
18100
"xloc": [
18095
- "default.handlebars->31->1843"
18101
+ "default.handlebars->31->1844"
18102
]
18103
},
18104
{
@@ -18112,7 +18118,7 @@
18118
"zh-chs": "组标识符",
18119
"zh-cht": "群標識符",
18120
"xloc": [
18115
- "default.handlebars->31->1991"
18121
+ "default.handlebars->31->1992"
18122
]
18123
},
18124
{
@@ -18132,7 +18138,7 @@
18138
"zh-chs": "群组成员",
18139
"zh-cht": "群組成員",
18140
"xloc": [
18135
- "default.handlebars->31->2012"
18141
+ "default.handlebars->31->2013"
18142
]
18143
},
18144
{
@@ -18392,7 +18398,7 @@
18398
"zh-chs": "堆总数",
18399
"zh-cht": "堆總數",
18400
"xloc": [
18395
- "default.handlebars->31->2290"
18401
+ "default.handlebars->31->2291"
18402
]
18403
},
18404
{
@@ -18412,7 +18418,7 @@
18418
"zh-chs": "堆使用",
18419
"zh-cht": "堆使用",
18420
"xloc": [
18415
- "default.handlebars->31->2289"
18421
+ "default.handlebars->31->2290"
18422
]
18423
},
18424
{
@@ -19616,7 +19622,7 @@
19622
"zh-chs": "英特尔AMT",
19623
"zh-cht": "英特爾AMT",
19624
"xloc": [
19619
- "default.handlebars->31->2286"
19625
+ "default.handlebars->31->2287"
19626
]
19627
},
19628
{
@@ -19624,7 +19630,7 @@
19630
"fr": "Gestionnaire Intel AMT",
19631
"nl": "Intel AMT beheerder",
19632
"xloc": [
19627
- "default.handlebars->31->2312"
19633
+ "default.handlebars->31->2313"
19634
]
19635
},
19636
{
@@ -19672,7 +19678,7 @@
19678
"default.handlebars->31->1487",
19679
"default.handlebars->31->1659",
19680
"default.handlebars->31->1672",
19675
- "default.handlebars->31->2311",
19681
+ "default.handlebars->31->2312",
19682
"default.handlebars->31->570",
19683
"default.handlebars->31->628",
19684
"default.handlebars->31->668"
@@ -19862,7 +19868,7 @@
19868
"zh-chs": "英特尔®AMT重定向",
19869
"zh-cht": "Intel® AMT重定向",
19870
"xloc": [
19865
- "default.handlebars->31->2189",
19871
+ "default.handlebars->31->2190",
19872
"player.handlebars->3->14"
19873
]
19874
},
@@ -19903,7 +19909,7 @@
19909
"zh-chs": "英特尔®AMT WSMAN",
19910
"zh-cht": "Intle® AMT WSMAN",
19911
"xloc": [
19906
- "default.handlebars->31->2188",
19912
+ "default.handlebars->31->2189",
19913
"player.handlebars->3->13"
19914
]
19915
},
@@ -20549,7 +20555,7 @@
20555
"zh-chs": "无效的设备组类型",
20556
"zh-cht": "無效的裝置群類型",
20557
"xloc": [
20552
- "default.handlebars->31->2260"
20558
+ "default.handlebars->31->2261"
20559
]
20560
},
20561
{
@@ -20569,7 +20575,7 @@
20575
"zh-chs": "无效的JSON",
20576
"zh-cht": "無效的JSON",
20577
"xloc": [
20572
- "default.handlebars->31->2254"
20578
+ "default.handlebars->31->2255"
20579
]
20580
},
20581
{
@@ -20589,8 +20595,8 @@
20595
"zh-chs": "无效的JSON档案格式。",
20596
"zh-cht": "無效的JSON檔案格式。",
20597
"xloc": [
20592
- "default.handlebars->31->1913",
20593
- "default.handlebars->31->1915"
20598
+ "default.handlebars->31->1914",
20599
+ "default.handlebars->31->1916"
20600
]
20601
},
20602
{
@@ -20610,7 +20616,7 @@
20616
"zh-chs": "无效的JSON档案:{0}。",
20617
"zh-cht": "無效的JSON檔案:{0}。",
20618
"xloc": [
20613
- "default.handlebars->31->1911"
20619
+ "default.handlebars->31->1912"
20620
]
20621
},
20622
{
@@ -20630,7 +20636,7 @@
20636
"zh-chs": "无效的PKCS签名",
20637
"zh-cht": "無效的PKCS簽名",
20638
"xloc": [
20633
- "default.handlebars->31->2252"
20639
+ "default.handlebars->31->2253"
20640
]
20641
},
20642
{
@@ -20650,7 +20656,7 @@
20656
"zh-chs": "無效的RSA密碼",
20657
"zh-cht": "無效的RSA密碼",
20658
"xloc": [
20653
- "default.handlebars->31->2253"
20659
+ "default.handlebars->31->2254"
20660
]
20661
},
20662
{
@@ -20659,7 +20665,7 @@
20665
"fr": "Message SMS non valide",
20666
"xloc": [
20667
"default-mobile.handlebars->11->615",
20662
- "default.handlebars->31->2240"
20668
+ "default.handlebars->31->2241"
20669
]
20670
},
20671
{
@@ -20690,7 +20696,7 @@
20696
"fr": "Domaine non valide",
20697
"xloc": [
20698
"default-mobile.handlebars->11->595",
20693
- "default.handlebars->31->2220"
20699
+ "default.handlebars->31->2221"
20700
]
20701
},
20702
{
@@ -20699,7 +20705,7 @@
20705
"fr": "Email invalide",
20706
"xloc": [
20707
"default-mobile.handlebars->11->594",
20702
- "default.handlebars->31->2219"
20708
+ "default.handlebars->31->2220"
20709
]
20710
},
20711
{
@@ -20772,7 +20778,7 @@
20778
"xloc": [
20779
"default-mobile.handlebars->11->593",
20780
"default-mobile.handlebars->11->77",
20775
- "default.handlebars->31->2218",
20781
+ "default.handlebars->31->2219",
20782
"default.handlebars->31->229"
20783
]
20784
},
@@ -20782,7 +20788,7 @@
20788
"fr": "Autorisations de site non valides",
20789
"xloc": [
20790
"default-mobile.handlebars->11->596",
20785
- "default.handlebars->31->2221"
20791
+ "default.handlebars->31->2222"
20792
]
20793
},
20794
{
@@ -20821,7 +20827,7 @@
20827
"fr": "Nom d'utilisateur invalide",
20828
"xloc": [
20829
"default-mobile.handlebars->11->592",
20824
- "default.handlebars->31->2217"
20830
+ "default.handlebars->31->2218"
20831
]
20832
},
20833
{
@@ -20841,7 +20847,7 @@
20847
"zh-chs": "使电邮无效",
20848
"zh-cht": "使電郵無效",
20849
"xloc": [
20844
- "default.handlebars->31->1889"
20850
+ "default.handlebars->31->1890"
20851
]
20852
},
20853
{
@@ -20986,7 +20992,7 @@
20992
"default.handlebars->31->1644",
20993
"default.handlebars->31->1646",
20994
"default.handlebars->31->1651",
20989
- "default.handlebars->31->2215"
20995
+ "default.handlebars->31->2216"
20996
]
20997
},
20998
{
@@ -21127,7 +21133,7 @@
21133
"zh-chs": "JSON",
21134
"zh-cht": "JSON",
21135
"xloc": [
21130
- "default.handlebars->31->1849"
21136
+ "default.handlebars->31->1850"
21137
]
21138
},
21139
{
@@ -21147,8 +21153,8 @@
21153
"zh-chs": "JSON格式",
21154
"zh-cht": "JSON格式",
21155
"xloc": [
21150
- "default.handlebars->31->1854",
21151
- "default.handlebars->31->1919",
21156
+ "default.handlebars->31->1855",
21157
+ "default.handlebars->31->1920",
21158
"default.handlebars->31->525"
21159
]
21160
},
@@ -21810,7 +21816,7 @@
21816
"zh-chs": "最后访问",
21817
"zh-cht": "最後訪問",
21818
"xloc": [
21813
- "default.handlebars->31->1862"
21819
+ "default.handlebars->31->1863"
21820
]
21821
},
21822
{
@@ -21830,7 +21836,7 @@
21836
"zh-chs": "上次登录",
21837
"zh-cht": "上次登入",
21838
"xloc": [
21833
- "default.handlebars->31->2070"
21839
+ "default.handlebars->31->2071"
21840
]
21841
},
21842
{
@@ -21902,7 +21908,7 @@
21908
"zh-chs": "上次更改:{0}",
21909
"zh-cht": "上次更改:{0}",
21910
"xloc": [
21905
- "default.handlebars->31->2074"
21911
+ "default.handlebars->31->2075"
21912
]
21913
},
21914
{
@@ -21962,7 +21968,7 @@
21968
"zh-chs": "上次登录:{0}",
21969
"zh-cht": "上次登入:{0}",
21970
"xloc": [
21965
- "default.handlebars->31->1872"
21971
+ "default.handlebars->31->1873"
21972
]
21973
},
21974
{
@@ -22163,7 +22169,7 @@
22169
"zh-chs": "如没有请留空。",
22170
"zh-cht": "如沒有請留空。",
22171
"xloc": [
22166
- "default.handlebars->31->2118"
22172
+ "default.handlebars->31->2119"
22173
]
22174
},
22175
{
@@ -22237,7 +22243,7 @@
22243
"zh-chs": "减",
22244
"zh-cht": "減",
22245
"xloc": [
22240
- "default.handlebars->31->2333"
22246
+ "default.handlebars->31->2334"
22247
]
22248
},
22249
{
@@ -22888,8 +22894,8 @@
22894
"default.handlebars->31->1162",
22895
"default.handlebars->31->1439",
22896
"default.handlebars->31->1443",
22891
- "default.handlebars->31->2129",
22892
- "default.handlebars->31->2176",
22897
+ "default.handlebars->31->2130",
22898
+ "default.handlebars->31->2177",
22899
"default.handlebars->31->871"
22900
]
22901
},
@@ -23073,7 +23079,7 @@
23079
"zh-chs": "锁定账户",
23080
"zh-cht": "鎖定賬戶",
23081
"xloc": [
23076
- "default.handlebars->31->1959"
23082
+ "default.handlebars->31->1960"
23083
]
23084
},
23085
{
@@ -23093,7 +23099,7 @@
23099
"zh-chs": "锁定帐户设置",
23100
"zh-cht": "鎖定帳戶設置",
23101
"xloc": [
23096
- "default.handlebars->31->1962"
23102
+ "default.handlebars->31->1963"
23103
]
23104
},
23105
{
@@ -23113,7 +23119,7 @@
23119
"zh-chs": "锁定账户",
23120
"zh-cht": "鎖定賬戶",
23121
"xloc": [
23116
- "default.handlebars->31->1892"
23122
+ "default.handlebars->31->1893"
23123
]
23124
},
23125
{
@@ -23141,7 +23147,7 @@
23147
"zh-chs": "已锁定",
23148
"zh-cht": "已鎖定",
23149
"xloc": [
23144
- "default.handlebars->31->1873"
23150
+ "default.handlebars->31->1874"
23151
]
23152
},
23153
{
@@ -23162,7 +23168,7 @@
23168
"zh-cht": "被鎖定賬戶",
23169
"xloc": [
23170
"default-mobile.handlebars->11->76",
23165
- "default.handlebars->31->2046",
23171
+ "default.handlebars->31->2047",
23172
"default.handlebars->31->228"
23173
]
23174
},
@@ -23817,7 +23823,7 @@
23823
"zh-chs": "主服务器信息",
23824
"zh-cht": "主伺服器訊息",
23825
"xloc": [
23820
- "default.handlebars->31->2299"
23826
+ "default.handlebars->31->2300"
23827
]
23828
},
23829
{
@@ -23984,7 +23990,7 @@
23990
"zh-chs": "管理录音",
23991
"zh-cht": "管理錄音",
23992
"xloc": [
23987
- "default.handlebars->31->1957"
23993
+ "default.handlebars->31->1958"
23994
]
23995
},
23996
{
@@ -24024,7 +24030,7 @@
24030
"zh-chs": "管理用户组",
24031
"zh-cht": "管理用戶群",
24032
"xloc": [
24027
- "default.handlebars->31->1956"
24033
+ "default.handlebars->31->1957"
24034
]
24035
},
24036
{
@@ -24044,7 +24050,7 @@
24050
"zh-chs": "管理用户",
24051
"zh-cht": "管理用戶",
24052
"xloc": [
24047
- "default.handlebars->31->1955",
24053
+ "default.handlebars->31->1956",
24054
"default.handlebars->31->764"
24055
]
24056
},
@@ -24212,7 +24218,7 @@
24218
"zh-chs": "经理",
24219
"zh-cht": "經理",
24220
"xloc": [
24215
- "default.handlebars->31->1878"
24221
+ "default.handlebars->31->1879"
24222
]
24223
},
24224
{
@@ -24327,7 +24333,7 @@
24333
"zh-chs": "达到连接数量上限",
24334
"zh-cht": "達到連接數量上限",
24335
"xloc": [
24330
- "default.handlebars->31->2258"
24336
+ "default.handlebars->31->2259"
24337
]
24338
},
24339
{
@@ -24392,7 +24398,7 @@
24398
"zh-chs": "Megabyte",
24399
"zh-cht": "Megabyte",
24400
"xloc": [
24395
- "default.handlebars->31->2287"
24401
+ "default.handlebars->31->2288"
24402
]
24403
},
24404
{
@@ -24414,7 +24420,7 @@
24420
"xloc": [
24421
"default-mobile.handlebars->11->485",
24422
"default.handlebars->31->1124",
24417
- "default.handlebars->31->2278",
24423
+ "default.handlebars->31->2279",
24424
"default.handlebars->container->column_l->p40->3->1->p40type->3"
24425
]
24426
},
@@ -24613,7 +24619,7 @@
24619
"zh-chs": "MeshAgent流量",
24620
"zh-cht": "MeshAgent流量",
24621
"xloc": [
24616
- "default.handlebars->31->2301"
24622
+ "default.handlebars->31->2302"
24623
]
24624
},
24625
{
@@ -24633,7 +24639,7 @@
24639
"zh-chs": "MeshAgent更新",
24640
"zh-cht": "MeshAgent更新",
24641
"xloc": [
24636
- "default.handlebars->31->2302"
24642
+ "default.handlebars->31->2303"
24643
]
24644
},
24645
{
@@ -24762,7 +24768,7 @@
24768
"zh-chs": "MeshCentral服务器同级化",
24769
"zh-cht": "MeshCentral伺服器同級化",
24770
"xloc": [
24765
- "default.handlebars->31->2300"
24771
+ "default.handlebars->31->2301"
24772
]
24773
},
24774
{
@@ -25139,7 +25145,7 @@
25145
"zh-chs": "消息调度器",
25146
"zh-cht": "電郵調度器",
25147
"xloc": [
25142
- "default.handlebars->31->2298"
25148
+ "default.handlebars->31->2299"
25149
]
25150
},
25151
{
@@ -25341,7 +25347,7 @@
25347
"zh-chs": "更多",
25348
"zh-cht": "更多",
25349
"xloc": [
25344
- "default.handlebars->31->2332"
25350
+ "default.handlebars->31->2333"
25351
]
25352
},
25353
{
@@ -25490,7 +25496,7 @@
25496
"zh-chs": "多路复用器",
25497
"zh-cht": "多工器",
25498
"xloc": [
25493
- "default.handlebars->31->2201"
25499
+ "default.handlebars->31->2202"
25500
]
25501
},
25502
{
@@ -25899,12 +25905,12 @@
25905
"default.handlebars->31->1410",
25906
"default.handlebars->31->1450",
25907
"default.handlebars->31->1537",
25902
- "default.handlebars->31->1860",
25903
- "default.handlebars->31->1965",
25904
- "default.handlebars->31->1981",
25905
- "default.handlebars->31->1988",
25906
- "default.handlebars->31->2033",
25907
- "default.handlebars->31->2052",
25908
+ "default.handlebars->31->1861",
25909
+ "default.handlebars->31->1966",
25910
+ "default.handlebars->31->1982",
25911
+ "default.handlebars->31->1989",
25912
+ "default.handlebars->31->2034",
25913
+ "default.handlebars->31->2053",
25914
"default.handlebars->31->593",
25915
"default.handlebars->31->91",
25916
"default.handlebars->31->962",
@@ -25950,7 +25956,7 @@
25956
"zh-chs": "名称1,名称2,名称3",
25957
"zh-cht": "名稱1,名稱2,名稱3",
25958
"xloc": [
25953
- "default.handlebars->31->1947"
25959
+ "default.handlebars->31->1948"
25960
]
25961
},
25962
{
@@ -26119,7 +26125,7 @@
26125
"fr": "Nouveau compte",
26126
"xloc": [
26127
"default-mobile.handlebars->11->585",
26122
- "default.handlebars->31->2210"
26128
+ "default.handlebars->31->2211"
26129
]
26130
},
26131
{
@@ -26466,8 +26472,8 @@
26472
"zh-cht": "找不到事件",
26473
"xloc": [
26474
"default.handlebars->31->1047",
26469
- "default.handlebars->31->1836",
26470
- "default.handlebars->31->2175"
26475
+ "default.handlebars->31->1837",
26476
+ "default.handlebars->31->2176"
26477
]
26478
},
26479
{
@@ -26635,7 +26641,7 @@
26641
"zh-chs": "没有成员",
26642
"zh-cht": "沒有成員",
26643
"xloc": [
26638
- "default.handlebars->31->2015"
26644
+ "default.handlebars->31->2016"
26645
]
26646
},
26647
{
@@ -26655,7 +26661,7 @@
26661
"zh-chs": "没有新的设备组",
26662
"zh-cht": "沒有新的裝置群",
26663
"xloc": [
26658
- "default.handlebars->31->1960"
26664
+ "default.handlebars->31->1961"
26665
]
26666
},
26667
{
@@ -26788,7 +26794,7 @@
26794
"zh-chs": "没有工具(MeshCmd /路由器)",
26795
"zh-cht": "沒有工具(MeshCmd /路由器)",
26796
"xloc": [
26791
- "default.handlebars->31->1961"
26797
+ "default.handlebars->31->1962"
26798
]
26799
},
26800
{
@@ -26838,8 +26844,8 @@
26844
"zh-chs": "没有共同的设备组",
26845
"zh-cht": "沒有共同的裝置群",
26846
"xloc": [
26841
- "default.handlebars->31->2021",
26842
- "default.handlebars->31->2145"
26847
+ "default.handlebars->31->2022",
26848
+ "default.handlebars->31->2146"
26849
]
26850
},
26851
{
@@ -26959,8 +26965,8 @@
26965
"zh-chs": "没有共同的设备",
26966
"zh-cht": "沒有共同的裝置",
26967
"xloc": [
26962
- "default.handlebars->31->2027",
26963
- "default.handlebars->31->2157"
26968
+ "default.handlebars->31->2028",
26969
+ "default.handlebars->31->2158"
26970
]
26971
},
26972
{
@@ -27083,7 +27089,7 @@
27089
"zh-chs": "找不到群组。",
27090
"zh-cht": "找不到群組。",
27091
"xloc": [
27086
- "default.handlebars->31->1964"
27092
+ "default.handlebars->31->1965"
27093
]
27094
},
27095
{
@@ -27182,7 +27188,7 @@
27188
"fr": "Aucun numéro de téléphone pour cet utilisateur",
27189
"xloc": [
27190
"default-mobile.handlebars->11->616",
27185
- "default.handlebars->31->2241"
27191
+ "default.handlebars->31->2242"
27192
]
27193
},
27194
{
@@ -27222,7 +27228,7 @@
27228
"zh-chs": "没有录音。",
27229
"zh-cht": "沒有錄音。",
27230
"xloc": [
27225
- "default.handlebars->31->2177"
27231
+ "default.handlebars->31->2178"
27232
]
27233
},
27234
{
@@ -27242,7 +27248,7 @@
27248
"zh-chs": "没有服务器权限",
27249
"zh-cht": "沒有伺服器權限",
27250
"xloc": [
27245
- "default.handlebars->31->2047"
27251
+ "default.handlebars->31->2048"
27252
]
27253
},
27254
{
@@ -27262,7 +27268,7 @@
27268
"zh-chs": "没有用户组成员身份",
27269
"zh-cht": "沒有用戶群成員身份",
27270
"xloc": [
27265
- "default.handlebars->31->2151"
27271
+ "default.handlebars->31->2152"
27272
]
27273
},
27274
{
@@ -27271,7 +27277,7 @@
27277
"fr": "Aucun droit de gestion des utilisateurs",
27278
"xloc": [
27279
"default-mobile.handlebars->11->614",
27274
- "default.handlebars->31->2239"
27280
+ "default.handlebars->31->2240"
27281
]
27282
},
27283
{
@@ -27291,7 +27297,7 @@
27297
"zh-chs": "未找到相应的用户。",
27298
"zh-cht": "未找到相應的用戶。",
27299
"xloc": [
27294
- "default.handlebars->31->1868"
27300
+ "default.handlebars->31->1869"
27301
]
27302
},
27303
{
@@ -27391,15 +27397,15 @@
27397
"default.handlebars->31->1666",
27398
"default.handlebars->31->1691",
27399
"default.handlebars->31->1696",
27394
- "default.handlebars->31->1844",
27400
+ "default.handlebars->31->1845",
27401
"default.handlebars->31->192",
27396
- "default.handlebars->31->1985",
27397
- "default.handlebars->31->1987",
27398
- "default.handlebars->31->2004",
27399
- "default.handlebars->31->2066",
27400
- "default.handlebars->31->2075",
27401
- "default.handlebars->31->2079",
27402
- "default.handlebars->31->2091",
27402
+ "default.handlebars->31->1986",
27403
+ "default.handlebars->31->1988",
27404
+ "default.handlebars->31->2005",
27405
+ "default.handlebars->31->2067",
27406
+ "default.handlebars->31->2076",
27407
+ "default.handlebars->31->2080",
27408
+ "default.handlebars->31->2092",
27409
"default.handlebars->31->211",
27410
"default.handlebars->31->258",
27411
"default.handlebars->31->259",
@@ -27624,7 +27630,7 @@
27630
"zh-chs": "不在服务器上",
27631
"zh-cht": "不在伺服器上",
27632
"xloc": [
27627
- "default.handlebars->31->2193"
27633
+ "default.handlebars->31->2194"
27634
]
27635
},
27636
{
@@ -27644,8 +27650,8 @@
27650
"zh-chs": "没有设置",
27651
"zh-cht": "沒有設置",
27652
"xloc": [
27647
- "default.handlebars->31->2053",
27648
- "default.handlebars->31->2054"
27653
+ "default.handlebars->31->2054",
27654
+ "default.handlebars->31->2055"
27655
]
27656
},
27657
{
@@ -27665,7 +27671,7 @@
27671
"zh-chs": "未经审核的",
27672
"zh-cht": "未經審核的",
27673
"xloc": [
27668
- "default.handlebars->31->2125"
27674
+ "default.handlebars->31->2126"
27675
]
27676
},
27677
{
@@ -27686,7 +27692,7 @@
27692
"zh-cht": "筆記",
27693
"xloc": [
27694
"default.handlebars->31->1488",
27689
- "default.handlebars->31->2099",
27695
+ "default.handlebars->31->2100",
27696
"default.handlebars->31->679",
27697
"default.handlebars->31->755",
27698
"default.handlebars->31->777",
@@ -27813,7 +27819,7 @@
27819
"zh-cht": "通知",
27820
"xloc": [
27821
"default.handlebars->31->208",
27816
- "default.handlebars->31->2105"
27822
+ "default.handlebars->31->2106"
27823
]
27824
},
27825
{
@@ -27875,7 +27881,7 @@
27881
"zh-chs": "通知{0}",
27882
"zh-cht": "通知{0}",
27883
"xloc": [
27878
- "default.handlebars->31->1907"
27884
+ "default.handlebars->31->1908"
27885
]
27886
},
27887
{
@@ -27883,7 +27889,7 @@
27889
"fr": "Null",
27890
"nl": "Null",
27891
"xloc": [
27886
- "default.handlebars->31->2292"
27892
+ "default.handlebars->31->2293"
27893
]
27894
},
27895
{
@@ -27987,7 +27993,7 @@
27993
"zh-cht": "發生在{0}",
27994
"xloc": [
27995
"default-mobile.handlebars->11->582",
27990
- "default.handlebars->31->2207"
27996
+ "default.handlebars->31->2208"
27997
]
27998
},
27999
{
@@ -28027,7 +28033,7 @@
28033
"zh-chs": "离线用户",
28034
"zh-cht": "離線用戶",
28035
"xloc": [
28030
- "default.handlebars->31->1865"
28036
+ "default.handlebars->31->1866"
28037
]
28038
},
28039
{
@@ -28088,7 +28094,7 @@
28094
"zh-chs": "一天",
28095
"zh-cht": "一天",
28096
"xloc": [
28091
- "default.handlebars->31->1841"
28097
+ "default.handlebars->31->1842"
28098
]
28099
},
28100
{
@@ -28151,7 +28157,7 @@
28157
"zh-chs": "在线用户",
28158
"zh-cht": "在線用戶",
28159
"xloc": [
28154
- "default.handlebars->31->1864"
28160
+ "default.handlebars->31->1865"
28161
]
28162
},
28163
{
@@ -28382,8 +28388,8 @@
28388
"zh-cht": "操作",
28389
"xloc": [
28390
"default-mobile.handlebars->11->306",
28385
- "default.handlebars->31->1891",
28386
- "default.handlebars->31->1972",
28391
+ "default.handlebars->31->1892",
28392
+ "default.handlebars->31->1973",
28393
"default.handlebars->31->483",
28394
"default.handlebars->31->498",
28395
"default.handlebars->31->830"
@@ -28632,7 +28638,7 @@
28638
"zh-chs": "部分的",
28639
"zh-cht": "部分的",
28640
"xloc": [
28635
- "default.handlebars->31->1879"
28641
+ "default.handlebars->31->1880"
28642
]
28643
},
28644
{
@@ -28708,7 +28714,7 @@
28714
"zh-chs": "部分权限",
28715
"zh-cht": "部分權限",
28716
"xloc": [
28711
- "default.handlebars->31->2050"
28717
+ "default.handlebars->31->2051"
28718
]
28719
},
28720
{
@@ -28750,12 +28756,12 @@
28756
"xloc": [
28757
"default-mobile.handlebars->11->314",
28758
"default.handlebars->31->1512",
28753
- "default.handlebars->31->1935",
28759
"default.handlebars->31->1936",
28755
- "default.handlebars->31->2071",
28756
- "default.handlebars->31->2073",
28757
- "default.handlebars->31->2130",
28760
+ "default.handlebars->31->1937",
28761
+ "default.handlebars->31->2072",
28762
+ "default.handlebars->31->2074",
28763
"default.handlebars->31->2131",
28764
+ "default.handlebars->31->2132",
28765
"default.handlebars->31->319",
28766
"default.handlebars->31->846",
28767
"login2.handlebars->centralTable->1->0->logincell->loginpanel->1->loginuserpassdiv->1->1->2->1",
@@ -28866,7 +28872,7 @@
28872
"fr": "Mot de passe changé.",
28873
"xloc": [
28874
"default-mobile.handlebars->11->610",
28869
- "default.handlebars->31->2235"
28875
+ "default.handlebars->31->2236"
28876
]
28877
},
28878
{
@@ -28907,7 +28913,7 @@
28913
"zh-chs": "密码提示",
28914
"zh-cht": "密碼提示",
28915
"xloc": [
28910
- "default.handlebars->31->2132"
28916
+ "default.handlebars->31->2133"
28917
]
28918
},
28919
{
@@ -29330,7 +29336,7 @@
29336
"fr": "Permission refusée",
29337
"xloc": [
29338
"default-mobile.handlebars->11->591",
29333
- "default.handlebars->31->2216"
29339
+ "default.handlebars->31->2217"
29340
]
29341
},
29342
{
@@ -29352,7 +29358,7 @@
29358
"xloc": [
29359
"default-mobile.handlebars->11->576",
29360
"default.handlebars->31->1630",
29355
- "default.handlebars->31->1863"
29361
+ "default.handlebars->31->1864"
29362
]
29363
},
29364
{
@@ -29398,7 +29404,7 @@
29404
"default.handlebars->31->1154",
29405
"default.handlebars->31->1157",
29406
"default.handlebars->31->174",
29401
- "default.handlebars->31->2120"
29407
+ "default.handlebars->31->2121"
29408
]
29409
},
29410
{
@@ -29418,7 +29424,7 @@
29424
"zh-chs": "电话号码",
29425
"zh-cht": "電話號碼",
29426
"xloc": [
29421
- "default.handlebars->31->2065"
29427
+ "default.handlebars->31->2066"
29428
]
29429
},
29430
{
@@ -29440,7 +29446,7 @@
29446
"xloc": [
29447
"default-mobile.handlebars->11->88",
29448
"default.handlebars->31->1156",
29443
- "default.handlebars->31->2119"
29449
+ "default.handlebars->31->2120"
29450
]
29451
},
29452
{
@@ -29620,7 +29626,7 @@
29626
"zh-cht": "外掛指令",
29627
"xloc": [
29628
"default.handlebars->31->219",
29623
- "default.handlebars->31->2329"
29629
+ "default.handlebars->31->2330"
29630
]
29631
},
29632
{
@@ -30035,7 +30041,7 @@
30041
"zh-chs": "存在于服务器上",
30042
"zh-cht": "存在於伺服器上",
30043
"xloc": [
30038
- "default.handlebars->31->2192"
30044
+ "default.handlebars->31->2193"
30045
]
30046
},
30047
{
@@ -30129,8 +30135,8 @@
30135
"default-mobile.handlebars->11->78",
30136
"default-mobile.handlebars->11->79",
30137
"default.handlebars->31->1150",
30132
- "default.handlebars->31->2114",
30133
- "default.handlebars->31->2128",
30138
+ "default.handlebars->31->2115",
30139
+ "default.handlebars->31->2129",
30140
"default.handlebars->31->230"
30141
]
30142
},
@@ -30322,7 +30328,7 @@
30328
"zh-chs": "协议",
30329
"zh-cht": "協議",
30330
"xloc": [
30325
- "default.handlebars->31->2190",
30331
+ "default.handlebars->31->2191",
30332
"player.handlebars->3->16"
30333
]
30334
},
@@ -30703,7 +30709,7 @@
30709
"zh-chs": "RSS",
30710
"zh-cht": "RSS",
30711
"xloc": [
30706
- "default.handlebars->31->2291"
30712
+ "default.handlebars->31->2292"
30713
]
30714
},
30715
{
@@ -30763,7 +30769,7 @@
30769
"zh-chs": "随机密码。",
30770
"zh-cht": "隨機密碼。",
30771
"xloc": [
30766
- "default.handlebars->31->1937"
30772
+ "default.handlebars->31->1938"
30773
]
30774
},
30775
{
@@ -30820,9 +30826,9 @@
30826
"zh-chs": "真正的名字",
30827
"zh-cht": "真正的名字",
30828
"xloc": [
30823
- "default.handlebars->31->2062",
30824
- "default.handlebars->31->2064",
30825
- "default.handlebars->31->2121"
30829
+ "default.handlebars->31->2063",
30830
+ "default.handlebars->31->2065",
30831
+ "default.handlebars->31->2122"
30832
]
30833
},
30834
{
@@ -30842,7 +30848,7 @@
30848
"zh-chs": "境界",
30849
"zh-cht": "境界",
30850
"xloc": [
30845
- "default.handlebars->31->1946"
30851
+ "default.handlebars->31->1947"
30852
]
30853
},
30854
{
@@ -30945,7 +30951,7 @@
30951
"zh-chs": "记录细节",
30952
"zh-cht": "記錄細節",
30953
"xloc": [
30948
- "default.handlebars->31->2204"
30954
+ "default.handlebars->31->2205"
30955
]
30956
},
30957
{
@@ -31119,7 +31125,7 @@
31125
"zh-chs": "中继数量",
31126
"zh-cht": "中繼數量",
31127
"xloc": [
31122
- "default.handlebars->31->2270"
31128
+ "default.handlebars->31->2271"
31129
]
31130
},
31131
{
@@ -31139,7 +31145,7 @@
31145
"zh-chs": "中继错误",
31146
"zh-cht": "中繼錯誤",
31147
"xloc": [
31142
- "default.handlebars->31->2263"
31148
+ "default.handlebars->31->2264"
31149
]
31150
},
31151
{
@@ -31159,8 +31165,8 @@
31165
"zh-chs": "中继连接",
31166
"zh-cht": "中繼連接",
31167
"xloc": [
31162
- "default.handlebars->31->2269",
31163
- "default.handlebars->31->2285"
31168
+ "default.handlebars->31->2270",
31169
+ "default.handlebars->31->2286"
31170
]
31171
},
31172
{
@@ -31727,8 +31733,8 @@
31733
"zh-chs": "删除设备组权限",
31734
"zh-cht": "刪除裝置群權限",
31735
"xloc": [
31730
- "default.handlebars->31->2031",
31731
- "default.handlebars->31->2173"
31736
+ "default.handlebars->31->2032",
31737
+ "default.handlebars->31->2174"
31738
]
31739
},
31740
{
@@ -31748,8 +31754,8 @@
31754
"zh-chs": "删除设备权限",
31755
"zh-cht": "刪除裝置權限",
31756
"xloc": [
31751
- "default.handlebars->31->2029",
31752
- "default.handlebars->31->2160"
31757
+ "default.handlebars->31->2030",
31758
+ "default.handlebars->31->2161"
31759
]
31760
},
31761
{
@@ -31769,7 +31775,7 @@
31775
"zh-chs": "删除设备共享",
31776
"zh-cht": "刪除設備共享",
31777
"xloc": [
31772
- "default.handlebars->31->2158"
31778
+ "default.handlebars->31->2159"
31779
]
31780
},
31781
{
@@ -31806,7 +31812,7 @@
31812
"zh-chs": "删除用户组成员身份",
31813
"zh-cht": "刪除用戶群成員身份",
31814
"xloc": [
31809
- "default.handlebars->31->2169"
31815
+ "default.handlebars->31->2170"
31816
]
31817
},
31818
{
@@ -31827,7 +31833,7 @@
31833
"zh-cht": "刪除用戶群權限",
31834
"xloc": [
31835
"default.handlebars->31->1635",
31830
- "default.handlebars->31->2165"
31836
+ "default.handlebars->31->2166"
31837
]
31838
},
31839
{
@@ -31847,7 +31853,7 @@
31853
"zh-chs": "删除用户成员资格",
31854
"zh-cht": "刪除用戶成員資格",
31855
"xloc": [
31850
- "default.handlebars->31->2039"
31856
+ "default.handlebars->31->2040"
31857
]
31858
},
31859
{
@@ -31868,7 +31874,7 @@
31874
"zh-cht": "刪除用戶權限",
31875
"xloc": [
31876
"default.handlebars->31->1633",
31871
- "default.handlebars->31->2162"
31877
+ "default.handlebars->31->2163"
31878
]
31879
},
31880
{
@@ -31888,7 +31894,7 @@
31894
"zh-chs": "删除所有两因素认证。",
31895
"zh-cht": "刪除所有二因子鑑別。",
31896
"xloc": [
31891
- "default.handlebars->31->2135"
31897
+ "default.handlebars->31->2136"
31898
]
31899
},
31900
{
@@ -31908,7 +31914,7 @@
31914
"zh-chs": "删除此用户标识的所有先前事件。",
31915
"zh-cht": "刪除此用戶標識的所有先前事件。",
31916
"xloc": [
31911
- "default.handlebars->31->1938"
31917
+ "default.handlebars->31->1939"
31918
]
31919
},
31920
{
@@ -32049,7 +32055,7 @@
32055
"zh-chs": "删除此用户",
32056
"zh-cht": "刪除此用戶",
32057
"xloc": [
32052
- "default.handlebars->31->2109"
32058
+ "default.handlebars->31->2110"
32059
]
32060
},
32061
{
@@ -32069,7 +32075,7 @@
32075
"zh-chs": "删除用户组成员身份",
32076
"zh-cht": "刪除用戶群成員身份",
32077
"xloc": [
32072
- "default.handlebars->31->2149"
32078
+ "default.handlebars->31->2150"
32079
]
32080
},
32081
{
@@ -32089,7 +32095,7 @@
32095
"zh-chs": "删除此设备的用户组权限",
32096
"zh-cht": "刪除此裝置的用戶群權限",
32097
"xloc": [
32092
- "default.handlebars->31->2025"
32098
+ "default.handlebars->31->2026"
32099
]
32100
},
32101
{
@@ -32109,7 +32115,7 @@
32115
"zh-chs": "删除此设备组的用户组权限",
32116
"zh-cht": "刪除此裝置群的用戶群權限",
32117
"xloc": [
32112
- "default.handlebars->31->2019",
32118
+ "default.handlebars->31->2020",
32119
"default.handlebars->31->728"
32120
]
32121
},
@@ -32131,9 +32137,9 @@
32137
"zh-cht": "刪除此裝置群的用戶權限",
32138
"xloc": [
32139
"default.handlebars->31->1501",
32134
- "default.handlebars->31->2013",
32135
- "default.handlebars->31->2143",
32136
- "default.handlebars->31->2155",
32140
+ "default.handlebars->31->2014",
32141
+ "default.handlebars->31->2144",
32142
+ "default.handlebars->31->2156",
32143
"default.handlebars->31->729"
32144
]
32145
},
@@ -32386,7 +32392,7 @@
32392
"zh-chs": "报告日",
32393
"zh-cht": "報告日",
32394
"xloc": [
32389
- "default.handlebars->31->1842"
32395
+ "default.handlebars->31->1843"
32396
]
32397
},
32398
{
@@ -32406,7 +32412,7 @@
32412
"zh-chs": "报告类型",
32413
"zh-cht": "報告類型",
32414
"xloc": [
32409
- "default.handlebars->31->1837"
32415
+ "default.handlebars->31->1838"
32416
]
32417
},
32418
{
@@ -32447,8 +32453,8 @@
32453
"zh-cht": "要求:{0}。",
32454
"xloc": [
32455
"default-mobile.handlebars->11->111",
32450
- "default.handlebars->31->1943",
32451
- "default.handlebars->31->2133"
32456
+ "default.handlebars->31->1944",
32457
+ "default.handlebars->31->2134"
32458
]
32459
},
32460
{
@@ -32807,7 +32813,7 @@
32813
"zh-chs": "限制条件",
32814
"zh-cht": "限制條件",
32815
"xloc": [
32810
- "default.handlebars->31->2051"
32816
+ "default.handlebars->31->2052"
32817
]
32818
},
32819
{
@@ -33296,8 +33302,8 @@
33302
"zh-chs": "短信",
33303
"zh-cht": "短信",
33304
"xloc": [
33299
- "default.handlebars->31->2096",
33300
- "default.handlebars->31->2101",
33305
+ "default.handlebars->31->2097",
33306
+ "default.handlebars->31->2102",
33307
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3",
33308
"login.handlebars->container->column_l->centralTable->1->0->logincell->resettokenpanel->1->5->1->2->1->3",
33309
"login.handlebars->container->column_l->centralTable->1->0->logincell->tokenpanel->1->7->1->4->1->3",
@@ -33322,7 +33328,7 @@
33328
"zh-chs": "此用户的短信功能电话号码。",
33329
"zh-cht": "此用戶的短信功能電話號碼。",
33330
"xloc": [
33325
- "default.handlebars->31->2117"
33331
+ "default.handlebars->31->2118"
33332
]
33333
},
33334
{
@@ -33331,7 +33337,7 @@
33337
"fr": "Erreur SMS",
33338
"xloc": [
33339
"default-mobile.handlebars->11->618",
33334
- "default.handlebars->31->2243"
33340
+ "default.handlebars->31->2244"
33341
]
33342
},
33343
{
@@ -33340,7 +33346,7 @@
33346
"fr": "Erreur SMS: {0}",
33347
"xloc": [
33348
"default-mobile.handlebars->11->619",
33343
- "default.handlebars->31->2244"
33349
+ "default.handlebars->31->2245"
33350
]
33351
},
33352
{
@@ -33349,7 +33355,7 @@
33355
"fr": "Passerelle SMS non activée",
33356
"xloc": [
33357
"default-mobile.handlebars->11->613",
33352
- "default.handlebars->31->2238"
33358
+ "default.handlebars->31->2239"
33359
]
33360
},
33361
{
@@ -33380,7 +33386,7 @@
33386
"fr": "SMS envoyé avec succès.",
33387
"xloc": [
33388
"default-mobile.handlebars->11->617",
33383
- "default.handlebars->31->2242"
33389
+ "default.handlebars->31->2243"
33390
]
33391
},
33392
{
@@ -33929,7 +33935,7 @@
33935
"default-mobile.handlebars->11->462",
33936
"default.handlebars->31->1101",
33937
"default.handlebars->31->1680",
33932
- "default.handlebars->31->2097",
33938
+ "default.handlebars->31->2098",
33939
"default.handlebars->31->320",
33940
"default.handlebars->31->847",
33941
"default.handlebars->container->column_l->p21->p21main->1->1->meshSecurityChartDiv->1"
@@ -33952,7 +33958,7 @@
33958
"zh-chs": "安全密钥",
33959
"zh-cht": "安全密鑰",
33960
"xloc": [
33955
- "default.handlebars->31->2094"
33961
+ "default.handlebars->31->2095"
33962
]
33963
},
33964
{
@@ -33961,7 +33967,7 @@
33967
"fr": "Avertissement de sécurité",
33968
"xloc": [
33969
"default-mobile.handlebars->11->587",
33964
- "default.handlebars->31->2212"
33970
+ "default.handlebars->31->2213"
33971
]
33972
},
33973
{
@@ -34004,8 +34010,8 @@
34010
"default.handlebars->31->1009",
34011
"default.handlebars->31->1011",
34012
"default.handlebars->31->1706",
34007
- "default.handlebars->31->1887",
34008
- "default.handlebars->31->1970",
34013
+ "default.handlebars->31->1888",
34014
+ "default.handlebars->31->1971",
34015
"default.handlebars->31->466",
34016
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar",
34017
"default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
@@ -34034,8 +34040,8 @@
34040
"xloc": [
34041
"default.handlebars->31->1010",
34042
"default.handlebars->31->1705",
34037
- "default.handlebars->31->1886",
34038
- "default.handlebars->31->1969",
34043
+ "default.handlebars->31->1887",
34044
+ "default.handlebars->31->1970",
34045
"default.handlebars->31->465",
34046
"default.handlebars->meshContextMenu->cxselectnone"
34047
]
@@ -34137,8 +34143,8 @@
34143
"zh-chs": "选择要对所有选定用户执行的操作。",
34144
"zh-cht": "選擇要對所有選定用戶執行的操作。",
34145
"xloc": [
34140
- "default.handlebars->31->1890",
34141
- "default.handlebars->31->1971"
34146
+ "default.handlebars->31->1891",
34147
+ "default.handlebars->31->1972"
34148
]
34149
},
34150
{
@@ -34265,7 +34271,7 @@
34271
"zh-chs": "发电邮",
34272
"zh-cht": "發電郵",
34273
"xloc": [
34268
- "default.handlebars->31->1901"
34274
+ "default.handlebars->31->1902"
34275
]
34276
},
34277
{
@@ -34326,7 +34332,7 @@
34332
"zh-chs": "发送短信",
34333
"zh-cht": "發送簡訊",
34334
"xloc": [
34329
- "default.handlebars->31->1899"
34335
+ "default.handlebars->31->1900"
34336
]
34337
},
34338
{
@@ -34346,7 +34352,7 @@
34352
"zh-chs": "发送短信给该用户",
34353
"zh-cht": "發送短信給該用戶",
34354
"xloc": [
34349
- "default.handlebars->31->2102"
34355
+ "default.handlebars->31->2103"
34356
]
34357
},
34358
{
@@ -34366,7 +34372,7 @@
34372
"zh-chs": "发送电邮给该用户",
34373
"zh-cht": "發送電郵給該用戶",
34374
"xloc": [
34369
- "default.handlebars->31->2104"
34375
+ "default.handlebars->31->2105"
34376
]
34377
},
34378
{
@@ -34386,7 +34392,7 @@
34392
"zh-chs": "向该组中的所有用户发送通知。",
34393
"zh-cht": "向該群中的所有用戶發送通知。",
34394
"xloc": [
34389
- "default.handlebars->31->2010"
34395
+ "default.handlebars->31->2011"
34396
]
34397
},
34398
{
@@ -34406,7 +34412,7 @@
34412
"zh-chs": "向该用户发送文本通知。",
34413
"zh-cht": "向該用戶發送文本通知。",
34414
"xloc": [
34409
- "default.handlebars->31->1902"
34415
+ "default.handlebars->31->1903"
34416
]
34417
},
34418
{
@@ -34426,7 +34432,7 @@
34432
"zh-chs": "发送电邮给用户",
34433
"zh-cht": "發送電郵給用戶",
34434
"xloc": [
34429
- "default.handlebars->31->1882"
34435
+ "default.handlebars->31->1883"
34436
]
34437
},
34438
{
@@ -34466,7 +34472,7 @@
34472
"zh-chs": "发送邀请电邮。",
34473
"zh-cht": "發送邀請電郵。",
34474
"xloc": [
34469
- "default.handlebars->31->1942"
34475
+ "default.handlebars->31->1943"
34476
]
34477
},
34478
{
@@ -34589,7 +34595,7 @@
34595
"zh-chs": "发送用户通知",
34596
"zh-cht": "發送用戶通知",
34597
"xloc": [
34592
- "default.handlebars->31->2106"
34598
+ "default.handlebars->31->2107"
34599
]
34600
},
34601
{
@@ -34658,7 +34664,7 @@
34664
"zh-chs": "服务器备份",
34665
"zh-cht": "伺服器備份",
34666
"xloc": [
34661
- "default.handlebars->31->1952"
34667
+ "default.handlebars->31->1953"
34668
]
34669
},
34670
{
@@ -34678,7 +34684,7 @@
34684
"zh-chs": "服务器证书",
34685
"zh-cht": "伺服器憑證",
34686
"xloc": [
34681
- "default.handlebars->31->2303"
34687
+ "default.handlebars->31->2304"
34688
]
34689
},
34690
{
@@ -34698,7 +34704,7 @@
34704
"zh-chs": "服务器数据库",
34705
"zh-cht": "伺服器數據庫",
34706
"xloc": [
34701
- "default.handlebars->31->2304"
34707
+ "default.handlebars->31->2305"
34708
]
34709
},
34710
{
@@ -34722,7 +34728,7 @@
34728
"default-mobile.handlebars->11->560",
34729
"default.handlebars->31->1583",
34730
"default.handlebars->31->1613",
34725
- "default.handlebars->31->1949",
34731
+ "default.handlebars->31->1950",
34732
"default.handlebars->31->753",
34733
"default.handlebars->31->775"
34734
]
@@ -34753,7 +34759,7 @@
34759
"fr": "Limite du serveur",
34760
"xloc": [
34761
"default-mobile.handlebars->11->586",
34756
- "default.handlebars->31->2211"
34762
+ "default.handlebars->31->2212"
34763
]
34764
},
34765
{
@@ -34781,8 +34787,8 @@
34787
"zh-chs": "服务器权限",
34788
"zh-cht": "伺服器權限",
34789
"xloc": [
34784
- "default.handlebars->31->1874",
34785
- "default.handlebars->31->1963"
34790
+ "default.handlebars->31->1875",
34791
+ "default.handlebars->31->1964"
34792
]
34793
},
34794
{
@@ -34802,7 +34808,7 @@
34808
"zh-chs": "服务器配额",
34809
"zh-cht": "伺服器配額",
34810
"xloc": [
34805
- "default.handlebars->31->2068"
34811
+ "default.handlebars->31->2069"
34812
]
34813
},
34814
{
@@ -34822,7 +34828,7 @@
34828
"zh-chs": "服务器还原",
34829
"zh-cht": "伺服器還原",
34830
"xloc": [
34825
- "default.handlebars->31->1953"
34831
+ "default.handlebars->31->1954"
34832
]
34833
},
34834
{
@@ -34842,7 +34848,7 @@
34848
"zh-chs": "服务器权限",
34849
"zh-cht": "伺服器權限",
34850
"xloc": [
34845
- "default.handlebars->31->2067"
34851
+ "default.handlebars->31->2068"
34852
]
34853
},
34854
{
@@ -34862,7 +34868,7 @@
34868
"zh-chs": "服务器状态",
34869
"zh-cht": "伺服器狀態",
34870
"xloc": [
34865
- "default.handlebars->31->2249"
34871
+ "default.handlebars->31->2250"
34872
]
34873
},
34874
{
@@ -34902,7 +34908,7 @@
34908
"zh-chs": "服务器跟踪",
34909
"zh-cht": "伺服器追蹤",
34910
"xloc": [
34905
- "default.handlebars->31->2316"
34911
+ "default.handlebars->31->2317"
34912
]
34913
},
34914
{
@@ -34910,7 +34916,7 @@
34916
"nl": "Server Tracing Event",
34917
"fr": "Évènement du serveur",
34918
"xloc": [
34913
- "default.handlebars->31->2295"
34919
+ "default.handlebars->31->2296"
34920
]
34921
},
34922
{
@@ -34971,7 +34977,7 @@
34977
"zh-chs": "服务器更新",
34978
"zh-cht": "伺服器更新",
34979
"xloc": [
34974
- "default.handlebars->31->1954"
34980
+ "default.handlebars->31->1955"
34981
]
34982
},
34983
{
@@ -35136,7 +35142,7 @@
35142
"zh-chs": "ServerStats.csv",
35143
"zh-cht": "ServerStats.csv",
35144
"xloc": [
35139
- "default.handlebars->31->2294"
35145
+ "default.handlebars->31->2295"
35146
]
35147
},
35148
{
@@ -35196,7 +35202,7 @@
35202
"zh-chs": "会话",
35203
"zh-cht": "節",
35204
"xloc": [
35199
- "default.handlebars->31->2178"
35205
+ "default.handlebars->31->2179"
35206
]
35207
},
35208
{
@@ -35932,8 +35938,8 @@
35938
"zh-chs": "显示1分钟",
35939
"zh-cht": "顯示1分鐘",
35940
"xloc": [
35935
- "default.handlebars->31->1905",
35936
- "default.handlebars->31->1928"
35941
+ "default.handlebars->31->1906",
35942
+ "default.handlebars->31->1929"
35943
]
35944
},
35945
{
@@ -35953,8 +35959,8 @@
35959
"zh-chs": "显示10秒",
35960
"zh-cht": "顯示10秒",
35961
"xloc": [
35956
- "default.handlebars->31->1904",
35957
- "default.handlebars->31->1927"
35962
+ "default.handlebars->31->1905",
35963
+ "default.handlebars->31->1928"
35964
]
35965
},
35966
{
@@ -35974,8 +35980,8 @@
35980
"zh-chs": "显示5分钟",
35981
"zh-cht": "顯示5分鐘",
35982
"xloc": [
35977
- "default.handlebars->31->1906",
35978
- "default.handlebars->31->1929"
35983
+ "default.handlebars->31->1907",
35984
+ "default.handlebars->31->1930"
35985
]
35986
},
35987
{
@@ -35995,8 +36001,8 @@
36001
"zh-chs": "显示消息,直到被用户拒绝",
36002
"zh-cht": "顯示消息,直到被用戶拒絕",
36003
"xloc": [
35998
- "default.handlebars->31->1903",
35999
- "default.handlebars->31->1926"
36004
+ "default.handlebars->31->1904",
36005
+ "default.handlebars->31->1927"
36006
]
36007
},
36008
{
@@ -36294,8 +36300,8 @@
36300
"zh-chs": "尺寸",
36301
"zh-cht": "尺寸",
36302
"xloc": [
36297
- "default.handlebars->31->2181",
36298
- "default.handlebars->31->2196",
36303
+ "default.handlebars->31->2182",
36304
+ "default.handlebars->31->2197",
36305
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSize"
36306
]
36307
},
@@ -37300,8 +37306,8 @@
37306
"zh-cht": "開始時間",
37307
"xloc": [
37308
"default.handlebars->31->206",
37303
- "default.handlebars->31->2179",
37304
- "default.handlebars->31->2198",
37309
+ "default.handlebars->31->2180",
37310
+ "default.handlebars->31->2199",
37311
"default.handlebars->31->918",
37312
"desktop.handlebars->3->14"
37313
]
@@ -37632,8 +37638,8 @@
37638
"zh-chs": "状况",
37639
"zh-cht": "狀態",
37640
"xloc": [
37635
- "default.handlebars->31->2124",
37636
- "default.handlebars->31->2191",
37641
+ "default.handlebars->31->2125",
37642
+ "default.handlebars->31->2192",
37643
"default.handlebars->container->column_l->p42->p42tbl->1->0->7"
37644
]
37645
},
@@ -37838,7 +37844,7 @@
37844
"zh-chs": "主题",
37845
"zh-cht": "主題",
37846
"xloc": [
37841
- "default.handlebars->31->1900"
37847
+ "default.handlebars->31->1901"
37848
]
37849
},
37850
{
@@ -38439,7 +38445,7 @@
38445
"xloc": [
38446
"default-mobile.handlebars->11->198",
38447
"default.handlebars->31->1548",
38442
- "default.handlebars->31->2185",
38448
+ "default.handlebars->31->2186",
38449
"default.handlebars->31->282",
38450
"default.handlebars->31->569",
38451
"default.handlebars->31->737",
@@ -38486,8 +38492,8 @@
38492
"zh-cht": "終端機通知",
38493
"xloc": [
38494
"default.handlebars->31->1467",
38489
- "default.handlebars->31->1999",
38490
- "default.handlebars->31->2086",
38495
+ "default.handlebars->31->2000",
38496
+ "default.handlebars->31->2087",
38497
"default.handlebars->31->656"
38498
]
38499
},
@@ -38509,8 +38515,8 @@
38515
"zh-cht": "終端機提示",
38516
"xloc": [
38517
"default.handlebars->31->1466",
38512
- "default.handlebars->31->1998",
38513
- "default.handlebars->31->2085",
38518
+ "default.handlebars->31->1999",
38519
+ "default.handlebars->31->2086",
38520
"default.handlebars->31->655"
38521
]
38522
},
@@ -38760,7 +38766,7 @@
38766
"zh-cht": "目前沒有任何通知",
38767
"xloc": [
38768
"default-mobile.handlebars->11->581",
38763
- "default.handlebars->31->2206"
38769
+ "default.handlebars->31->2207"
38770
]
38771
},
38772
{
@@ -38769,7 +38775,7 @@
38775
"fr": "Il y a eu {0} tentatives de connexion infructueuses sur ce compte depuis la dernière connexion.",
38776
"xloc": [
38777
"default-mobile.handlebars->11->602",
38772
- "default.handlebars->31->2227"
38778
+ "default.handlebars->31->2228"
38779
]
38780
},
38781
{
@@ -39185,7 +39191,7 @@
39191
"zh-chs": "时间跨度",
39192
"zh-cht": "時間跨度",
39193
"xloc": [
39188
- "default.handlebars->31->1839"
39194
+ "default.handlebars->31->1840"
39195
]
39196
},
39197
{
@@ -40322,7 +40328,7 @@
40328
"zh-cht": "在啟用兩因素身份驗證之前,無法訪問此功能。這是額外的安全性所必需的。轉到“我的帳戶”標籤,然後查看“帳戶安全性”部分。",
40329
"xloc": [
40330
"default.handlebars->31->1408",
40325
- "default.handlebars->31->2322",
40331
+ "default.handlebars->31->2323",
40332
"default.handlebars->31->587"
40333
]
40334
},
@@ -40332,7 +40338,7 @@
40338
"fr": "Impossible d'ajouter un utilisateur dans ce mode",
40339
"xloc": [
40340
"default-mobile.handlebars->11->598",
40335
- "default.handlebars->31->2223"
40341
+ "default.handlebars->31->2224"
40342
]
40343
},
40344
{
@@ -40565,9 +40571,9 @@
40571
"default.handlebars->31->13",
40572
"default.handlebars->31->1440",
40573
"default.handlebars->31->1441",
40568
- "default.handlebars->31->2168",
40569
- "default.handlebars->31->2183",
40574
+ "default.handlebars->31->2169",
40575
"default.handlebars->31->2184",
40576
+ "default.handlebars->31->2185",
40577
"default.handlebars->31->44",
40578
"default.handlebars->31->464",
40579
"default.handlebars->31->47",
@@ -40616,7 +40622,7 @@
40622
"zh-chs": "未知动作",
40623
"zh-cht": "未知動作",
40624
"xloc": [
40619
- "default.handlebars->31->2255"
40625
+ "default.handlebars->31->2256"
40626
]
40627
},
40628
{
@@ -40636,8 +40642,8 @@
40642
"zh-chs": "未知设备",
40643
"zh-cht": "未知裝置",
40644
"xloc": [
40639
- "default.handlebars->31->2024",
40640
- "default.handlebars->31->2154"
40645
+ "default.handlebars->31->2025",
40646
+ "default.handlebars->31->2155"
40647
]
40648
},
40649
{
@@ -40657,9 +40663,9 @@
40663
"zh-chs": "未知设备组",
40664
"zh-cht": "未知裝置群",
40665
"xloc": [
40660
- "default.handlebars->31->2018",
40661
- "default.handlebars->31->2142",
40662
- "default.handlebars->31->2259"
40666
+ "default.handlebars->31->2019",
40667
+ "default.handlebars->31->2143",
40668
+ "default.handlebars->31->2260"
40669
]
40670
},
40671
{
@@ -40679,7 +40685,7 @@
40685
"zh-chs": "未知群组",
40686
"zh-cht": "未知群組",
40687
"xloc": [
40682
- "default.handlebars->31->2251"
40688
+ "default.handlebars->31->2252"
40689
]
40690
},
40691
{
@@ -40720,7 +40726,7 @@
40726
"zh-chs": "未知用户组",
40727
"zh-cht": "未知用戶群",
40728
"xloc": [
40723
- "default.handlebars->31->2148"
40729
+ "default.handlebars->31->2149"
40730
]
40731
},
40732
{
@@ -40803,7 +40809,7 @@
40809
"zh-chs": "解锁帐户",
40810
"zh-cht": "解鎖帳戶",
40811
"xloc": [
40806
- "default.handlebars->31->1893"
40812
+ "default.handlebars->31->1894"
40813
]
40814
},
40815
{
@@ -40869,7 +40875,7 @@
40875
"zh-chs": "最新",
40876
"zh-cht": "最新",
40877
"xloc": [
40872
- "default.handlebars->31->2327"
40878
+ "default.handlebars->31->2328"
40879
]
40880
},
40881
{
@@ -41327,8 +41333,8 @@
41333
"zh-chs": "用过的",
41334
"zh-cht": "用過的",
41335
"xloc": [
41330
- "default.handlebars->31->2245",
41331
- "default.handlebars->31->2247"
41336
+ "default.handlebars->31->2246",
41337
+ "default.handlebars->31->2248"
41338
]
41339
},
41340
{
@@ -41349,10 +41355,10 @@
41355
"zh-cht": "用戶",
41356
"xloc": [
41357
"default.handlebars->31->1502",
41352
- "default.handlebars->31->1846",
41353
- "default.handlebars->31->1875",
41354
- "default.handlebars->31->2014",
41355
- "default.handlebars->31->2203",
41358
+ "default.handlebars->31->1847",
41359
+ "default.handlebars->31->1876",
41360
+ "default.handlebars->31->2015",
41361
+ "default.handlebars->31->2204",
41362
"default.handlebars->31->242",
41363
"default.handlebars->31->731"
41364
]
@@ -41374,7 +41380,7 @@
41380
"zh-chs": "用户+档案",
41381
"zh-cht": "用戶+檔案",
41382
"xloc": [
41377
- "default.handlebars->31->1876"
41383
+ "default.handlebars->31->1877"
41384
]
41385
},
41386
{
@@ -41394,10 +41400,10 @@
41400
"zh-chs": "用户帐户导入",
41401
"zh-cht": "用戶帳戶導入",
41402
"xloc": [
41397
- "default.handlebars->31->1909",
41403
"default.handlebars->31->1910",
41399
- "default.handlebars->31->1912",
41400
- "default.handlebars->31->1914"
41404
+ "default.handlebars->31->1911",
41405
+ "default.handlebars->31->1913",
41406
+ "default.handlebars->31->1915"
41407
]
41408
},
41409
{
@@ -41417,7 +41423,7 @@
41423
"zh-chs": "用户帐户",
41424
"zh-cht": "用戶帳戶",
41425
"xloc": [
41420
- "default.handlebars->31->2264"
41426
+ "default.handlebars->31->2265"
41427
]
41428
},
41429
{
@@ -41460,8 +41466,8 @@
41466
"zh-cht": "用戶同意",
41467
"xloc": [
41468
"default.handlebars->31->1473",
41463
- "default.handlebars->31->2005",
41464
- "default.handlebars->31->2092",
41469
+ "default.handlebars->31->2006",
41470
+ "default.handlebars->31->2093",
41471
"default.handlebars->31->212",
41472
"default.handlebars->31->662",
41473
"default.handlebars->31->818"
@@ -41486,9 +41492,9 @@
41492
"xloc": [
41493
"default.handlebars->31->1563",
41494
"default.handlebars->31->1564",
41489
- "default.handlebars->31->1978",
41490
- "default.handlebars->31->2150",
41491
- "default.handlebars->31->2171",
41495
+ "default.handlebars->31->1979",
41496
+ "default.handlebars->31->2151",
41497
+ "default.handlebars->31->2172",
41498
"default.handlebars->31->730"
41499
]
41500
},
@@ -41529,7 +41535,7 @@
41535
"zh-chs": "用户组成员",
41536
"zh-cht": "用戶群成員",
41537
"xloc": [
41532
- "default.handlebars->31->2147"
41538
+ "default.handlebars->31->2148"
41539
]
41540
},
41541
{
@@ -41570,8 +41576,8 @@
41576
"zh-cht": "用戶識別碼",
41577
"xloc": [
41578
"default.handlebars->31->1629",
41573
- "default.handlebars->31->2059",
41574
- "default.handlebars->31->2060"
41579
+ "default.handlebars->31->2060",
41580
+ "default.handlebars->31->2061"
41581
]
41582
},
41583
{
@@ -41592,7 +41598,7 @@
41598
"zh-cht": "用戶標識符",
41599
"xloc": [
41600
"default.handlebars->31->1561",
41595
- "default.handlebars->31->2043"
41601
+ "default.handlebars->31->2044"
41602
]
41603
},
41604
{
@@ -41620,7 +41626,7 @@
41626
"zh-chs": "用户列表输出",
41627
"zh-cht": "用戶列表輸出",
41628
"xloc": [
41623
- "default.handlebars->31->1921"
41629
+ "default.handlebars->31->1922"
41630
]
41631
},
41632
{
@@ -41716,7 +41722,7 @@
41722
"zh-chs": "用户节",
41723
"zh-cht": "用戶節",
41724
"xloc": [
41719
- "default.handlebars->31->2284"
41725
+ "default.handlebars->31->2285"
41726
]
41727
},
41728
{
@@ -41809,7 +41815,7 @@
41815
"fr": "L'utilisateur existe déjà",
41816
"xloc": [
41817
"default-mobile.handlebars->11->597",
41812
- "default.handlebars->31->2222"
41818
+ "default.handlebars->31->2223"
41819
]
41820
},
41821
{
@@ -41940,7 +41946,7 @@
41946
"fr": "Utilisateur {0} introuvable.",
41947
"xloc": [
41948
"default-mobile.handlebars->11->605",
41943
- "default.handlebars->31->2230"
41949
+ "default.handlebars->31->2231"
41950
]
41951
},
41952
{
@@ -41981,7 +41987,7 @@
41987
"zh-cht": "用戶名",
41988
"xloc": [
41989
"default-mobile.handlebars->11->313",
41984
- "default.handlebars->31->1933",
41990
+ "default.handlebars->31->1934",
41991
"default.handlebars->31->317",
41992
"default.handlebars->31->845",
41993
"login2.handlebars->centralTable->1->0->logincell->loginpanel->1->loginuserpassdiv->1->1->0->1",
@@ -42055,9 +42061,9 @@
42061
"zh-chs": "用户",
42062
"zh-cht": "用戶",
42063
"xloc": [
42058
- "default.handlebars->31->1966",
42059
- "default.handlebars->31->2006",
42060
- "default.handlebars->31->2283",
42064
+ "default.handlebars->31->1967",
42065
+ "default.handlebars->31->2007",
42066
+ "default.handlebars->31->2284",
42067
"default.handlebars->container->topbar->1->1->UsersSubMenuSpan->UsersSubMenu->1->0->UsersGeneral"
42068
]
42069
},
@@ -42078,7 +42084,7 @@
42084
"zh-chs": "用户会话",
42085
"zh-cht": "用戶節",
42086
"xloc": [
42081
- "default.handlebars->31->2268"
42087
+ "default.handlebars->31->2269"
42088
]
42089
},
42090
{
@@ -42087,7 +42093,7 @@
42093
"fr": "Utilisateurs {0} introuvables.",
42094
"xloc": [
42095
"default-mobile.handlebars->11->606",
42090
- "default.handlebars->31->2231"
42096
+ "default.handlebars->31->2232"
42097
]
42098
},
42099
{
@@ -42137,7 +42143,7 @@
42143
"zh-chs": "验证电邮",
42144
"zh-cht": "驗證電郵",
42145
"xloc": [
42140
- "default.handlebars->31->1888"
42146
+ "default.handlebars->31->1889"
42147
]
42148
},
42149
{
@@ -42146,7 +42152,7 @@
42152
"fr": "Exception de validation",
42153
"xloc": [
42154
"default-mobile.handlebars->11->599",
42149
- "default.handlebars->31->2224"
42155
+ "default.handlebars->31->2225"
42156
]
42157
},
42158
{
@@ -42250,7 +42256,7 @@
42256
"zh-chs": "已验证",
42257
"zh-cht": "已驗證",
42258
"xloc": [
42253
- "default.handlebars->31->2126"
42259
+ "default.handlebars->31->2127"
42260
]
42261
},
42262
{
@@ -42293,7 +42299,7 @@
42299
"xloc": [
42300
"default-mobile.handlebars->11->85",
42301
"default.handlebars->31->1152",
42296
- "default.handlebars->31->1884"
42302
+ "default.handlebars->31->1885"
42303
]
42304
},
42305
{
@@ -42402,7 +42408,7 @@
42408
"zh-chs": "版本不兼容,请先升级您的MeshCentral",
42409
"zh-cht": "版本不兼容,請先升級你的MeshCentral",
42410
"xloc": [
42405
- "default.handlebars->31->2323"
42411
+ "default.handlebars->31->2324"
42412
]
42413
},
42414
{
@@ -42484,7 +42490,7 @@
42490
"zh-chs": "查看所有事件",
42491
"zh-cht": "查看所有事件",
42492
"xloc": [
42487
- "default.handlebars->31->1958"
42493
+ "default.handlebars->31->1959"
42494
]
42495
},
42496
{
@@ -42504,8 +42510,8 @@
42510
"zh-chs": "查看变更日志",
42511
"zh-cht": "查看變更日誌",
42512
"xloc": [
42507
- "default.handlebars->31->2326",
42508
- "default.handlebars->31->2328"
42513
+ "default.handlebars->31->2327",
42514
+ "default.handlebars->31->2329"
42515
]
42516
},
42517
{
@@ -42565,7 +42571,7 @@
42571
"zh-chs": "查看有关此用户的注释",
42572
"zh-cht": "查看有關此用戶的註釋",
42573
"xloc": [
42568
- "default.handlebars->31->2100"
42574
+ "default.handlebars->31->2101"
42575
]
42576
},
42577
{
@@ -42582,7 +42588,7 @@
42588
"nl": "Bekijk eerdere aanmeldingen voor deze gebruiker",
42589
"fr": "Historique des connexions de cet utilisateur",
42590
"xloc": [
42585
- "default.handlebars->31->2113"
42591
+ "default.handlebars->31->2114"
42592
]
42593
},
42594
{
@@ -42920,8 +42926,8 @@
42926
"zh-chs": "网络服务器",
42927
"zh-cht": "網絡伺服器",
42928
"xloc": [
42923
- "default.handlebars->31->2306",
42924
- "default.handlebars->31->2307"
42929
+ "default.handlebars->31->2307",
42930
+ "default.handlebars->31->2308"
42931
]
42932
},
42933
{
@@ -42929,7 +42935,7 @@
42935
"nl": "Webserver HTTP Headers",
42936
"fr": "Entêtes du serveur web HTTP",
42937
"xloc": [
42932
- "default.handlebars->31->2310"
42938
+ "default.handlebars->31->2311"
42939
]
42940
},
42941
{
@@ -42949,7 +42955,7 @@
42955
"zh-chs": "Web服务器请求",
42956
"zh-cht": "Web伺服器請求",
42957
"xloc": [
42952
- "default.handlebars->31->2308"
42958
+ "default.handlebars->31->2309"
42959
]
42960
},
42961
{
@@ -42969,7 +42975,7 @@
42975
"zh-chs": "Web套接字中继",
42976
"zh-cht": "Web插座中繼",
42977
"xloc": [
42972
- "default.handlebars->31->2309"
42978
+ "default.handlebars->31->2310"
42979
]
42980
},
42981
{
@@ -43169,7 +43175,7 @@
43175
"zh-chs": "下次登录时将更改。",
43176
"zh-cht": "下次登入時將更改。",
43177
"xloc": [
43172
- "default.handlebars->31->2072"
43178
+ "default.handlebars->31->2073"
43179
]
43180
},
43181
{
@@ -44464,7 +44470,7 @@
44470
"zh-chs": "\\\\'",
44471
"zh-cht": "\\\\'",
44472
"xloc": [
44467
- "default.handlebars->31->2324"
44473
+ "default.handlebars->31->2325"
44474
]
44475
},
44476
{
@@ -44858,8 +44864,8 @@
44864
"zh-chs": "eventslist.csv",
44865
"zh-cht": "eventslist.csv",
44866
"xloc": [
44861
- "default.handlebars->31->1853",
44862
- "default.handlebars->31->1858"
44867
+ "default.handlebars->31->1854",
44868
+ "default.handlebars->31->1859"
44869
]
44870
},
44871
{
@@ -44879,8 +44885,8 @@
44885
"zh-chs": "eventslist.json",
44886
"zh-cht": "eventslist.json",
44887
"xloc": [
44882
- "default.handlebars->31->1855",
44883
- "default.handlebars->31->1859"
44888
+ "default.handlebars->31->1856",
44889
+ "default.handlebars->31->1860"
44890
]
44891
},
44892
{
@@ -44920,8 +44926,8 @@
44926
"zh-chs": "免费",
44927
"zh-cht": "免費",
44928
"xloc": [
44923
- "default.handlebars->31->2276",
44924
- "default.handlebars->31->2279"
44929
+ "default.handlebars->31->2277",
44930
+ "default.handlebars->31->2280"
44931
]
44932
},
44933
{
@@ -45136,7 +45142,7 @@
45142
"zh-chs": "id, name, email, creation, lastlogin, groups, authfactors",
45143
"zh-cht": "id, name, email, creation, lastlogin, groups, authfactors",
45144
"xloc": [
45139
- "default.handlebars->31->1922"
45145
+ "default.handlebars->31->1923"
45146
]
45147
},
45148
{
@@ -45259,7 +45265,7 @@
45265
"zh-chs": "k max,默认为空白",
45266
"zh-cht": "k max,默認為空白",
45267
"xloc": [
45262
- "default.handlebars->31->1950"
45268
+ "default.handlebars->31->1951"
45269
]
45270
},
45271
{
@@ -45607,7 +45613,7 @@
45613
"zh-chs": "servertrace.csv",
45614
"zh-cht": "servertrace.csv",
45615
"xloc": [
45610
- "default.handlebars->31->2318"
45616
+ "default.handlebars->31->2319"
45617
]
45618
},
45619
{
@@ -45673,7 +45679,7 @@
45679
"zh-chs": "time, conn.agent, conn.users, conn.usersessions, conn.relaysession, conn.intelamt, mem.external, mem.heapused, mem.heaptotal, mem.rss",
45680
"zh-cht": "time, conn.agent, conn.users, conn.usersessions, conn.relaysession, conn.intelamt, mem.external, mem.heapused, mem.heaptotal, mem.rss",
45681
"xloc": [
45676
- "default.handlebars->31->2293"
45682
+ "default.handlebars->31->2294"
45683
]
45684
},
45685
{
@@ -45693,7 +45699,7 @@
45699
"zh-chs": "时间,来源,信息",
45700
"zh-cht": "時間,來源,訊息",
45701
"xloc": [
45696
- "default.handlebars->31->2317"
45702
+ "default.handlebars->31->2318"
45703
]
45704
},
45705
{
@@ -45730,8 +45736,8 @@
45736
"zh-chs": "总计",
45737
"zh-cht": "總",
45738
"xloc": [
45733
- "default.handlebars->31->2277",
45734
- "default.handlebars->31->2280"
45739
+ "default.handlebars->31->2278",
45740
+ "default.handlebars->31->2281"
45741
]
45742
},
45743
{
@@ -45814,8 +45820,8 @@
45820
"zh-chs": "userlist.csv",
45821
"zh-cht": "userlist.csv",
45822
"xloc": [
45817
- "default.handlebars->31->1918",
45818
- "default.handlebars->31->1923"
45823
+ "default.handlebars->31->1919",
45824
+ "default.handlebars->31->1924"
45825
]
45826
},
45827
{
@@ -45835,8 +45841,8 @@
45841
"zh-chs": "userlist.json",
45842
"zh-cht": "userlist.json",
45843
"xloc": [
45838
- "default.handlebars->31->1920",
45839
- "default.handlebars->31->1924"
45844
+ "default.handlebars->31->1921",
45845
+ "default.handlebars->31->1925"
45846
]
45847
},
45848
{
@@ -45856,7 +45862,7 @@
45862
"zh-chs": "utc,时间,类型,指令,用户,设备,消息",
45863
"zh-cht": "utc,時間,類型,指令,用戶,裝置,消息",
45864
"xloc": [
45859
- "default.handlebars->31->1857"
45865
+ "default.handlebars->31->1858"
45866
]
45867
},
45868
{
@@ -45940,7 +45946,7 @@
45946
"xloc": [
45947
"default.handlebars->31->1693",
45948
"default.handlebars->31->1698",
45943
- "default.handlebars->31->2182"
45949
+ "default.handlebars->31->2183"
45950
]
45951
},
45952
{
@@ -46006,7 +46012,7 @@
46012
"zh-chs": "{0}个活跃会话",
46013
"zh-cht": "{0}個活躍節",
46014
"xloc": [
46009
- "default.handlebars->31->2116"
46015
+ "default.handlebars->31->2117"
46016
]
46017
},
46018
{
@@ -46049,7 +46055,7 @@
46055
"xloc": [
46056
"default-mobile.handlebars->11->141",
46057
"default.handlebars->31->1708",
46052
- "default.handlebars->31->2197",
46058
+ "default.handlebars->31->2198",
46059
"download.handlebars->3->2",
46060
"download2.handlebars->5->2"
46061
]
@@ -46139,7 +46145,7 @@
46145
"zh-chs": "{0}个群组",
46146
"zh-cht": "{0}個群組",
46147
"xloc": [
46142
- "default.handlebars->31->2077"
46148
+ "default.handlebars->31->2078"
46149
]
46150
},
46151
{
@@ -46278,7 +46284,7 @@
46284
"zh-chs": "{0}未显示更多用户,请使用搜索框查找用户...",
46285
"zh-cht": "{0}未顯示更多用戶,請使用搜索框查找用戶...",
46286
"xloc": [
46281
- "default.handlebars->31->1867"
46287
+ "default.handlebars->31->1868"
46288
]
46289
},
46290
{
@@ -46442,7 +46448,7 @@
46448
"default-mobile.handlebars->11->203",
46449
"default-mobile.handlebars->11->206",
46450
"default-mobile.handlebars->11->209",
46445
- "default.handlebars->31->1871",
46451
+ "default.handlebars->31->1872",
46452
"default.handlebars->31->278",
46453
"default.handlebars->31->281",
46454
"default.handlebars->31->284",
views/default.handlebars
+2
-1
@@ -11641,7 +11641,8 @@
11641
107: "Account login from {0}, {1}, {2}",
11642
108: "User login attempt with incorrect 2nd factor from {0}, {1}, {2}",
11643
109: "User login attempt on locked account from {0}, {1}, {2}",
11644
- 110: "Invalid user login attempt from {0}, {1}, {2}"
11644
+ 110: "Invalid user login attempt from {0}, {1}, {2}",
11645
+ 111: "Device requested Intel(R) AMT ACM TLS activation, FQDN: {0}"
11646
};
11647
11648
// Highlights the device being hovered