Version 1.0.55

Ylian Saint-Hilaire committed Jul 20, 2022 at 15:02 UTC e319b56f5636290782c8dd81cb469b5811c2f6f3
5 files changed +662 -650
agents/MeshCmd-signed.exe
Binary files a/agents/MeshCmd-signed.exe and b/agents/MeshCmd-signed.exe differ
agents/MeshCmd64-signed.exe
Binary files a/agents/MeshCmd64-signed.exe and b/agents/MeshCmd64-signed.exe differ
agents/meshcmd.js
+20 -14
@@ -129,6 +129,7 @@ function run(argv) {
129 if ((typeof args.id) == 'string') { settings.id = args.id; }
130 if ((typeof args.username) == 'string') { settings.username = args.username; }
131 if ((typeof args.password) == 'string') { settings.password = args.password; }
132 + if ((typeof args.passwordhex) == 'string') { settings.password = Buffer.from(args.passwordhex, 'hex').toString(); }
133 if ((typeof args.url) == 'string') { settings.url = args.url; }
134 if ((typeof args.type) == 'string') { settings.type = args.type; }
135 if ((typeof args.user) == 'string') { settings.username = args.user; }
@@ -172,6 +173,12 @@ function run(argv) {
173 if ((argv.length > 1) && (actions.indexOf(argv[1].toUpperCase()) >= 0)) { settings.action = argv[1]; }
174 if (globalDebugFlags != 0) { console.setInfoLevel(1); }
175
176 + if (settings.debuglevel > 1) {
177 + if (settings.hostname) { console.log('Hostname HEX: ' + Buffer.from(settings.hostname, 'binary').toString('hex')); }
178 + if (settings.username) { console.log('Username HEX: ' + Buffer.from(settings.username, 'binary').toString('hex')); }
179 + if (settings.password) { console.log('Password HEX: ' + Buffer.from(settings.password, 'binary').toString('hex')); }
180 + }
181 +
182 // Validate meshaction.txt
183 if (settings.action == null) {
184 console.log('MeshCentral Command (MeshCmd) ' + meshCmdVersion);
@@ -379,15 +386,13 @@ function run(argv) {
386 console.log('\r\Required arguments:\r\n');
387 console.log(' --scan [ip range] The IP address range to perform the scan on.');
388 } else if (action == 'amtwifi') {
382 - console.log('AmtWifi is used to get/set Intel AMT Wifi configuration. Example usage:\r\n\r\n meshcmd amtwifi --host 1.2.3.4 --user admin --pass mypassword --list');
389 + console.log('AmtWifi is used to list, add or delete Intel AMT Wifi configuration. Example usage:\r\n\r\n meshcmd amtwifi --host 1.2.3.4 --user admin --pass mypassword --list');
390 console.log('\r\nRequired arguments:\r\n');
391 console.log(' --host [hostname] The IP address or DNS name of Intel AMT, 127.0.0.1 is default.');
392 console.log(' --pass [password] The Intel AMT login password.');
386 - console.log(' --[action] Action options are list, add, del.');
393 console.log('\r\nOptional arguments:\r\n');
394 console.log(' --user [username] The Intel AMT login username, admin is default.');
395 console.log(' --tls Specifies that TLS must be used.');
390 - console.log(' --list List Wifi profiles');
396 console.log(' --add Add new Wifi profile');
397 console.log(' --name New Wifi profile name');
398 console.log(' --priority Priority of this profile - default 0');
@@ -2575,6 +2580,7 @@ function performAmtWifiConfig0(state, args) {
2580 }
2581
2582 function performAmtWifiConfig1(stack, name, response, status, args) {
2583 + if (status == 600) { console.log('Unable to login, check that Intel AMT password is correct.'); exit(1); return; }
2584 if (status == 200) {
2585 var wifiAuthMethod = { 1: "Other", 2: "Open", 3: "Shared Key", 4: "WPA PSK", 5: "WPA 802.1x", 6: "WPA2 PSK", 7: "WPA2 802.1x", 32768: "WPA3 802.1x" };
2586 var wifiEncMethod = { 1: "Other", 2: "WEP", 3: "TKIP", 4: "CCMP", 5: "None" }
@@ -2586,17 +2592,7 @@ function performAmtWifiConfig1(stack, name, response, status, args) {
2592 }
2593
2594 if (args) {
2589 - if (args.list) {
2590 - console.log('List of Intel AMT Wifi profiles:');
2591 - if (wifiProfiles.length == 0) {
2592 - console.log('No Wifi profiles is stored.');
2593 - }
2594 - for (var t in wifiProfiles) {
2595 - var w = wifiProfiles[t];
2596 - console.log('Profile Name: ' + t + '; Priority: ' + w['Priority'] + '; SSID: ' + w['SSID'] + '; Security: ' + wifiAuthMethod[w['AuthenticationMethod']] + '/' + wifiEncMethod[w['EncryptionMethod']]);
2597 - }
2598 - exit(0);
2599 - } else if (args.add) {
2595 + if (args.add) {
2596 if (args.auth == null) { args.auth = 6; } // if not set, default to WPA2 PSK
2597 if (args.enc == null) { args.enc = 3; } // if not set, default to TKIP
2598 if (args.priority == null) { args.priority = 0; } // if not set, default to 0
@@ -2642,6 +2638,16 @@ function performAmtWifiConfig1(stack, name, response, status, args) {
2638 exit(0);
2639 },
2640 0, 1);
2641 + } else {
2642 + console.log('List of Intel AMT Wifi profiles:');
2643 + var wikiProfileCount = 0;
2644 + for (var t in wifiProfiles) {
2645 + var w = wifiProfiles[t];
2646 + console.log('Profile Name: ' + t + '; Priority: ' + w['Priority'] + '; SSID: ' + w['SSID'] + '; Security: ' + wifiAuthMethod[w['AuthenticationMethod']] + '/' + wifiEncMethod[w['EncryptionMethod']]);
2647 + wikiProfileCount++;
2648 + }
2649 + if (wikiProfileCount == 0) { console.log(' (No Wifi profiles stored)'); }
2650 + exit(0);
2651 }
2652 } else {
2653 exit(0);
package.json
+1 -1
@@ -1,6 +1,6 @@
1 {
2 "name": "meshcentral",
3 - "version": "1.0.54",
3 + "version": "1.0.55",
4 "keywords": [
5 "Remote Device Management",
6 "Remote Device Monitoring",
translate/translate.json
+641 -635
@@ -326,7 +326,7 @@
326 "zh-cht": " 用戶需要先登入到該伺服器一次,然後才能將其新增到裝置群。",
327 "xloc": [
328 "default.handlebars->45->2034",
329 - "default.handlebars->45->2591"
329 + "default.handlebars->45->2592"
330 ]
331 },
332 {
@@ -947,7 +947,7 @@
947 "default.handlebars->45->1455",
948 "default.handlebars->45->1457",
949 "default.handlebars->45->2108",
950 - "default.handlebars->45->2374",
950 + "default.handlebars->45->2375",
951 "default.handlebars->45->900"
952 ]
953 },
@@ -1761,7 +1761,7 @@
1761 "default-mobile.handlebars->11->475",
1762 "default.handlebars->45->1363",
1763 "default.handlebars->45->2169",
1764 - "default.handlebars->45->2789",
1764 + "default.handlebars->45->2790",
1765 "sharing.handlebars->11->50"
1766 ]
1767 },
@@ -1926,7 +1926,7 @@
1926 "zh-chs": "1个活跃时段",
1927 "zh-cht": "1個活躍時段",
1928 "xloc": [
1929 - "default.handlebars->45->2679"
1929 + "default.handlebars->45->2680"
1930 ]
1931 },
1932 {
@@ -2059,7 +2059,7 @@
2059 "zh-chs": "1组",
2060 "zh-cht": "1群",
2061 "xloc": [
2062 - "default.handlebars->45->2638"
2062 + "default.handlebars->45->2639"
2063 ]
2064 },
2065 {
@@ -2189,7 +2189,7 @@
2189 "zh-chs": "有1个用户没有显示,请使用搜索框查找用户...",
2190 "zh-cht": "有1個用戶沒有顯示,請使用搜尋框搜尋用戶...",
2191 "xloc": [
2192 - "default.handlebars->45->2406"
2192 + "default.handlebars->45->2407"
2193 ]
2194 },
2195 {
@@ -2391,7 +2391,7 @@
2391 "default-mobile.handlebars->11->218",
2392 "default-mobile.handlebars->11->222",
2393 "default-mobile.handlebars->11->226",
2394 - "default.handlebars->45->2410",
2394 + "default.handlebars->45->2411",
2395 "default.handlebars->45->402",
2396 "default.handlebars->45->405",
2397 "default.handlebars->45->409",
@@ -3518,7 +3518,7 @@
3518 "zh-chs": "第二个因素",
3519 "zh-cht": "第二個因素",
3520 "xloc": [
3521 - "default.handlebars->45->2825"
3521 + "default.handlebars->45->2826"
3522 ]
3523 },
3524 {
@@ -3543,8 +3543,8 @@
3543 "zh-chs": "启用第二因素身份验证",
3544 "zh-cht": "啟用第二因素身份驗證",
3545 "xloc": [
3546 - "default.handlebars->45->2424",
3547 - "default.handlebars->45->2662"
3546 + "default.handlebars->45->2425",
3547 + "default.handlebars->45->2663"
3548 ]
3549 },
3550 {
@@ -4964,7 +4964,7 @@
4964 "zh-chs": "操作系统",
4965 "zh-cht": "AMT操作系統",
4966 "xloc": [
4967 - "default.handlebars->45->2947"
4967 + "default.handlebars->45->2948"
4968 ]
4969 },
4970 {
@@ -4989,7 +4989,7 @@
4989 "zh-chs": "AMT-Redir",
4990 "zh-cht": "AMT-Redir",
4991 "xloc": [
4992 - "default.handlebars->45->2832"
4992 + "default.handlebars->45->2833"
4993 ]
4994 },
4995 {
@@ -5014,7 +5014,7 @@
5014 "zh-chs": "AMT-WSMAN",
5015 "zh-cht": "AMT-WSMAN",
5016 "xloc": [
5017 - "default.handlebars->45->2831"
5017 + "default.handlebars->45->2832"
5018 ]
5019 },
5020 {
@@ -5275,7 +5275,7 @@
5275 "zh-chs": "访问服务器档案",
5276 "zh-cht": "存取伺服器檔案",
5277 "xloc": [
5278 - "default.handlebars->45->2597"
5278 + "default.handlebars->45->2598"
5279 ]
5280 },
5281 {
@@ -5386,7 +5386,7 @@
5386 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountSecurity->1->0",
5387 "default.handlebars->45->1802",
5388 "default.handlebars->45->1804",
5389 - "default.handlebars->45->3000",
5389 + "default.handlebars->45->3001",
5390 "default.handlebars->45->778",
5391 "default.handlebars->45->780"
5392 ]
@@ -5414,7 +5414,7 @@
5414 "zh-cht": "帳號設定",
5415 "xloc": [
5416 "default-mobile.handlebars->11->711",
5417 - "default.handlebars->45->2876"
5417 + "default.handlebars->45->2877"
5418 ]
5419 },
5420 {
@@ -5468,6 +5468,12 @@
5468 "default.handlebars->container->column_l->p2->p2info->p2AccountActions->1->0"
5469 ]
5470 },
5471 + {
5472 + "en": "Account changed to sync with LDAP data.",
5473 + "xloc": [
5474 + "default.handlebars->45->2367"
5475 + ]
5476 + },
5477 {
5478 "cs": "Účet změněn: {0}",
5479 "da": "Kontoen er ændret: {0}",
@@ -5592,8 +5598,8 @@
5598 "xloc": [
5599 "default-mobile.handlebars->11->64",
5600 "default.handlebars->45->199",
5595 - "default.handlebars->45->2426",
5596 - "default.handlebars->45->2594"
5601 + "default.handlebars->45->2427",
5602 + "default.handlebars->45->2595"
5603 ]
5604 },
5605 {
@@ -5619,7 +5625,7 @@
5625 "zh-cht": "達到帳戶限制。",
5626 "xloc": [
5627 "default-mobile.handlebars->11->723",
5622 - "default.handlebars->45->2888",
5628 + "default.handlebars->45->2889",
5629 "login-mobile.handlebars->5->6",
5630 "login.handlebars->5->6",
5631 "login2.handlebars->7->8"
@@ -6334,8 +6340,8 @@
6340 "zh-cht": "新增裝置",
6341 "xloc": [
6342 "default.handlebars->45->1930",
6337 - "default.handlebars->45->2569",
6338 - "default.handlebars->45->2728",
6343 + "default.handlebars->45->2570",
6344 + "default.handlebars->45->2729",
6345 "default.handlebars->45->447"
6346 ]
6347 },
@@ -6387,8 +6393,8 @@
6393 "zh-cht": "新增裝置群",
6394 "xloc": [
6395 "default.handlebars->45->2070",
6390 - "default.handlebars->45->2563",
6391 - "default.handlebars->45->2716",
6396 + "default.handlebars->45->2564",
6397 + "default.handlebars->45->2717",
6398 "default.handlebars->45->357"
6399 ]
6400 },
@@ -6584,7 +6590,7 @@
6590 "zh-chs": "添加成员身份",
6591 "zh-cht": "新增成員身份",
6592 "xloc": [
6587 - "default.handlebars->45->2748"
6593 + "default.handlebars->45->2749"
6594 ]
6595 },
6596 {
@@ -6739,7 +6745,7 @@
6745 "xloc": [
6746 "default.handlebars->45->1922",
6747 "default.handlebars->45->2069",
6742 - "default.handlebars->45->2722",
6748 + "default.handlebars->45->2723",
6749 "default.handlebars->45->968"
6750 ]
6751 },
@@ -6838,7 +6844,7 @@
6844 "zh-cht": "新增用戶",
6845 "xloc": [
6846 "default.handlebars->45->1921",
6841 - "default.handlebars->45->2558"
6847 + "default.handlebars->45->2559"
6848 ]
6849 },
6850 {
@@ -6888,7 +6894,7 @@
6894 "zh-chs": "将用户添加到用户组",
6895 "zh-cht": "將用戶新增到用戶群",
6896 "xloc": [
6891 - "default.handlebars->45->2593"
6897 + "default.handlebars->45->2594"
6898 ]
6899 },
6900 {
@@ -7592,7 +7598,7 @@
7598 "zh-chs": "管理领域",
7599 "zh-cht": "管理領域",
7600 "xloc": [
7595 - "default.handlebars->45->2642"
7601 + "default.handlebars->45->2643"
7602 ]
7603 },
7604 {
@@ -7643,7 +7649,7 @@
7649 "zh-chs": "管理领域",
7650 "zh-cht": "管理領域",
7651 "xloc": [
7646 - "default.handlebars->45->2491"
7652 + "default.handlebars->45->2492"
7653 ]
7654 },
7655 {
@@ -7668,7 +7674,7 @@
7674 "zh-chs": "管理员",
7675 "zh-cht": "管理員",
7676 "xloc": [
7671 - "default.handlebars->45->2418"
7677 + "default.handlebars->45->2419"
7678 ]
7679 },
7680 {
@@ -7724,7 +7730,7 @@
7730 "default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1",
7731 "default.handlebars->45->2144",
7732 "default.handlebars->45->2157",
7727 - "default.handlebars->45->2945",
7733 + "default.handlebars->45->2946",
7734 "default.handlebars->45->377",
7735 "default.handlebars->45->631",
7736 "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1",
@@ -7831,7 +7837,7 @@
7837 "zh-chs": "代理错误计数器",
7838 "zh-cht": "代理錯誤計數器",
7839 "xloc": [
7834 - "default.handlebars->45->2914"
7840 + "default.handlebars->45->2915"
7841 ]
7842 },
7843 {
@@ -8031,7 +8037,7 @@
8037 "zh-chs": "代理时段",
8038 "zh-cht": "代理時段",
8039 "xloc": [
8034 - "default.handlebars->45->2930"
8040 + "default.handlebars->45->2931"
8041 ]
8042 },
8043 {
@@ -8607,7 +8613,7 @@
8613 "zh-cht": "代理",
8614 "xloc": [
8615 "default.handlebars->45->2117",
8610 - "default.handlebars->45->2958",
8616 + "default.handlebars->45->2959",
8617 "default.handlebars->45->524"
8618 ]
8619 },
@@ -8661,7 +8667,7 @@
8667 "default-mobile.handlebars->11->148",
8668 "default-mobile.handlebars->11->476",
8669 "default-mobile.handlebars->11->478",
8664 - "default.handlebars->45->2801",
8670 + "default.handlebars->45->2802",
8671 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar->DevFilterSelect->1"
8672 ]
8673 },
@@ -8687,7 +8693,7 @@
8693 "zh-chs": "全部可用",
8694 "zh-cht": "全部可用",
8695 "xloc": [
8690 - "default.handlebars->45->2380"
8696 + "default.handlebars->45->2381"
8697 ]
8698 },
8699 {
@@ -8763,7 +8769,7 @@
8769 "zh-chs": "所有事件",
8770 "zh-cht": "所有事件",
8771 "xloc": [
8766 - "default.handlebars->45->2378"
8772 + "default.handlebars->45->2379"
8773 ]
8774 },
8775 {
@@ -8841,7 +8847,7 @@
8847 "zh-cht": "允許用戶管理此裝置群和該群中的裝置。",
8848 "xloc": [
8849 "default.handlebars->45->2032",
8844 - "default.handlebars->45->2590"
8850 + "default.handlebars->45->2591"
8851 ]
8852 },
8853 {
@@ -9147,8 +9153,8 @@
9153 "zh-cht": "一直通知",
9154 "xloc": [
9155 "default.handlebars->45->1898",
9150 - "default.handlebars->45->2549",
9151 - "default.handlebars->45->2651",
9156 + "default.handlebars->45->2550",
9157 + "default.handlebars->45->2652",
9158 "default.handlebars->45->864"
9159 ]
9160 },
@@ -9175,8 +9181,8 @@
9181 "zh-cht": "一直提示",
9182 "xloc": [
9183 "default.handlebars->45->1899",
9178 - "default.handlebars->45->2550",
9179 - "default.handlebars->45->2652",
9184 + "default.handlebars->45->2551",
9185 + "default.handlebars->45->2653",
9186 "default.handlebars->45->865"
9187 ]
9188 },
@@ -10373,7 +10379,7 @@
10379 "zh-chs": "您确定要{0}插件吗:{1}",
10380 "zh-cht": "你確定要{0}外掛嗎:{1}",
10381 "xloc": [
10376 - "default.handlebars->45->3009"
10382 + "default.handlebars->45->3010"
10383 ]
10384 },
10385 {
@@ -10856,7 +10862,7 @@
10862 "zh-chs": "认证软件",
10863 "zh-cht": "認證軟體",
10864 "xloc": [
10859 - "default.handlebars->45->2655"
10865 + "default.handlebars->45->2656"
10866 ]
10867 },
10868 {
@@ -11069,7 +11075,7 @@
11075 "zh-cht": "自動刪除",
11076 "xloc": [
11077 "default.handlebars->45->1883",
11072 - "default.handlebars->45->2371"
11078 + "default.handlebars->45->2372"
11079 ]
11080 },
11081 {
@@ -11246,7 +11252,7 @@
11252 "zh-chs": "可用內存",
11253 "zh-cht": "可用內存",
11254 "xloc": [
11249 - "default.handlebars->45->2939"
11255 + "default.handlebars->45->2940"
11256 ]
11257 },
11258 {
@@ -11572,8 +11578,8 @@
11578 "zh-chs": "备用码",
11579 "zh-cht": "備用碼",
11580 "xloc": [
11575 - "default.handlebars->45->2658",
11576 - "default.handlebars->45->2849"
11581 + "default.handlebars->45->2659",
11582 + "default.handlebars->45->2850"
11583 ]
11584 },
11585 {
@@ -11649,7 +11655,7 @@
11655 "zh-chs": "错误的签名",
11656 "zh-cht": "錯誤的簽名",
11657 "xloc": [
11652 - "default.handlebars->45->2921"
11658 + "default.handlebars->45->2922"
11659 ]
11660 },
11661 {
@@ -11674,7 +11680,7 @@
11680 "zh-chs": "错误的网络证书",
11681 "zh-cht": "錯誤的網絡憑證",
11682 "xloc": [
11677 - "default.handlebars->45->2920"
11683 + "default.handlebars->45->2921"
11684 ]
11685 },
11686 {
@@ -11975,7 +11981,7 @@
11981 "zh-chs": "广播",
11982 "zh-cht": "廣播",
11983 "xloc": [
11978 - "default.handlebars->45->2556",
11984 + "default.handlebars->45->2557",
11985 "default.handlebars->container->column_l->p4->3->1->0->3->1"
11986 ]
11987 },
@@ -12001,7 +12007,7 @@
12007 "zh-chs": "广播消息",
12008 "zh-cht": "廣播消息",
12009 "xloc": [
12004 - "default.handlebars->45->2473"
12010 + "default.handlebars->45->2474"
12011 ]
12012 },
12013 {
@@ -12026,7 +12032,7 @@
12032 "zh-chs": "向所有连接的用户广播消息。",
12033 "zh-cht": "向所有連接的用戶廣播消息。",
12034 "xloc": [
12029 - "default.handlebars->45->2468"
12035 + "default.handlebars->45->2469"
12036 ]
12037 },
12038 {
@@ -12051,7 +12057,7 @@
12057 "zh-chs": "浏览器",
12058 "zh-cht": "瀏覽器",
12059 "xloc": [
12054 - "default.handlebars->45->2823"
12060 + "default.handlebars->45->2824"
12061 ]
12062 },
12063 {
@@ -12227,7 +12233,7 @@
12233 "zh-chs": "字节输入",
12234 "zh-cht": "字節輸入",
12235 "xloc": [
12230 - "default.handlebars->45->2819"
12236 + "default.handlebars->45->2820"
12237 ]
12238 },
12239 {
@@ -12252,7 +12258,7 @@
12258 "zh-chs": "字节输出",
12259 "zh-cht": "字節輸出",
12260 "xloc": [
12255 - "default.handlebars->45->2820"
12261 + "default.handlebars->45->2821"
12262 ]
12263 },
12264 {
@@ -12363,7 +12369,7 @@
12369 "zh-cht": "CIRA",
12370 "xloc": [
12371 "default-mobile.handlebars->11->257",
12366 - "default.handlebars->45->2946",
12372 + "default.handlebars->45->2947",
12373 "default.handlebars->45->379",
12374 "default.handlebars->45->633"
12375 ]
@@ -12390,7 +12396,7 @@
12396 "zh-chs": "CIRA服务器",
12397 "zh-cht": "CIRA伺服器",
12398 "xloc": [
12393 - "default.handlebars->45->2993"
12399 + "default.handlebars->45->2994"
12400 ]
12401 },
12402 {
@@ -12415,7 +12421,7 @@
12421 "zh-chs": "CIRA服务器命令",
12422 "zh-cht": "CIRA伺服器指令",
12423 "xloc": [
12418 - "default.handlebars->45->2994"
12424 + "default.handlebars->45->2995"
12425 ]
12426 },
12427 {
@@ -12492,7 +12498,7 @@
12498 "xloc": [
12499 "default-mobile.handlebars->11->587",
12500 "default.handlebars->45->1484",
12495 - "default.handlebars->45->2970",
12501 + "default.handlebars->45->2971",
12502 "default.handlebars->container->column_l->p40->3->1->p40type->5"
12503 ]
12504 },
@@ -12518,7 +12524,7 @@
12524 "zh-chs": "CPU负载",
12525 "zh-cht": "CPU負載",
12526 "xloc": [
12521 - "default.handlebars->45->2935"
12527 + "default.handlebars->45->2936"
12528 ]
12529 },
12530 {
@@ -12543,7 +12549,7 @@
12549 "zh-chs": "最近15分钟的CPU负载",
12550 "zh-cht": "最近15分鐘的CPU負載",
12551 "xloc": [
12546 - "default.handlebars->45->2938"
12552 + "default.handlebars->45->2939"
12553 ]
12554 },
12555 {
@@ -12568,7 +12574,7 @@
12574 "zh-chs": "最近5分钟的CPU负载",
12575 "zh-cht": "最近5分鐘的CPU負載",
12576 "xloc": [
12571 - "default.handlebars->45->2937"
12577 + "default.handlebars->45->2938"
12578 ]
12579 },
12580 {
@@ -12593,7 +12599,7 @@
12599 "zh-chs": "最近一分钟的CPU负载",
12600 "zh-cht": "最近一分鐘的CPU負載",
12601 "xloc": [
12596 - "default.handlebars->45->2936"
12602 + "default.handlebars->45->2937"
12603 ]
12604 },
12605 {
@@ -12648,7 +12654,7 @@
12654 "zh-chs": "CSV",
12655 "zh-cht": "CSV",
12656 "xloc": [
12651 - "default.handlebars->45->2388"
12657 + "default.handlebars->45->2389"
12658 ]
12659 },
12660 {
@@ -12673,8 +12679,8 @@
12679 "zh-chs": "CSV格式",
12680 "zh-cht": "CSV格式",
12681 "xloc": [
12676 - "default.handlebars->45->2392",
12677 - "default.handlebars->45->2460",
12682 + "default.handlebars->45->2393",
12683 + "default.handlebars->45->2461",
12684 "default.handlebars->45->705"
12685 ]
12686 },
@@ -12722,7 +12728,7 @@
12728 "zh-chs": "呼叫错误",
12729 "zh-cht": "呼叫錯誤",
12730 "xloc": [
12725 - "default.handlebars->45->3010"
12731 + "default.handlebars->45->3011"
12732 ]
12733 },
12734 {
@@ -12776,7 +12782,7 @@
12782 "default-mobile.handlebars->11->113",
12783 "default-mobile.handlebars->dialog->idx_dlgButtonBar",
12784 "default.handlebars->45->1853",
12779 - "default.handlebars->45->2999",
12785 + "default.handlebars->45->3000",
12786 "default.handlebars->45->484",
12787 "default.handlebars->container->dialog->idx_dlgButtonBar",
12788 "login-mobile.handlebars->dialog->idx_dlgButtonBar",
@@ -13086,7 +13092,7 @@
13092 "zh-chs": "更改{0}的电邮",
13093 "zh-cht": "更改{0}的電郵",
13094 "xloc": [
13089 - "default.handlebars->45->2703"
13095 + "default.handlebars->45->2704"
13096 ]
13097 },
13098 {
@@ -13140,7 +13146,7 @@
13146 "xloc": [
13147 "default-mobile.handlebars->11->121",
13148 "default.handlebars->45->1799",
13143 - "default.handlebars->45->2676"
13149 + "default.handlebars->45->2677"
13150 ]
13151 },
13152 {
@@ -13165,7 +13171,7 @@
13171 "zh-chs": "更改{0}的密码",
13172 "zh-cht": "更改{0}的密碼",
13173 "xloc": [
13168 - "default.handlebars->45->2712"
13174 + "default.handlebars->45->2713"
13175 ]
13176 },
13177 {
@@ -13190,7 +13196,7 @@
13196 "zh-chs": "更改{0}的真实名称",
13197 "zh-cht": "更改{0}的真實名稱",
13198 "xloc": [
13193 - "default.handlebars->45->2698"
13199 + "default.handlebars->45->2699"
13200 ]
13201 },
13202 {
@@ -13339,7 +13345,7 @@
13345 "zh-chs": "更改该用户的密码",
13346 "zh-cht": "更改該用戶的密碼",
13347 "xloc": [
13342 - "default.handlebars->45->2675"
13348 + "default.handlebars->45->2676"
13349 ]
13350 },
13351 {
@@ -13615,9 +13621,9 @@
13621 "xloc": [
13622 "default.handlebars->45->1021",
13623 "default.handlebars->45->1043",
13618 - "default.handlebars->45->2409",
13619 - "default.handlebars->45->2671",
13624 + "default.handlebars->45->2410",
13625 "default.handlebars->45->2672",
13626 + "default.handlebars->45->2673",
13627 "default.handlebars->45->909"
13628 ]
13629 },
@@ -13672,7 +13678,7 @@
13678 "zh-cht": "聊天請求,點擊這裡接受。",
13679 "xloc": [
13680 "default-mobile.handlebars->11->724",
13675 - "default.handlebars->45->2889"
13681 + "default.handlebars->45->2890"
13682 ]
13683 },
13684 {
@@ -13848,7 +13854,7 @@
13854 "zh-cht": "檢查...",
13855 "xloc": [
13856 "default.handlebars->45->1550",
13851 - "default.handlebars->45->3004"
13857 + "default.handlebars->45->3005"
13858 ]
13859 },
13860 {
@@ -14293,7 +14299,7 @@
14299 "zh-cht": "全部清除",
14300 "xloc": [
14301 "default-mobile.handlebars->11->707",
14296 - "default.handlebars->45->2872"
14302 + "default.handlebars->45->2873"
14303 ]
14304 },
14305 {
@@ -14396,7 +14402,7 @@
14402 "zh-cht": "清除此通知",
14403 "xloc": [
14404 "default-mobile.handlebars->11->706",
14399 - "default.handlebars->45->2871"
14405 + "default.handlebars->45->2872"
14406 ]
14407 },
14408 {
@@ -14547,7 +14553,7 @@
14553 "zh-chs": "单击此处编辑用户组名称",
14554 "zh-cht": "單擊此處編輯用戶群名稱",
14555 "xloc": [
14550 - "default.handlebars->45->2530"
14556 + "default.handlebars->45->2531"
14557 ]
14558 },
14559 {
@@ -14903,7 +14909,7 @@
14909 "default.handlebars->45->1365",
14910 "default.handlebars->45->217",
14911 "default.handlebars->45->225",
14906 - "default.handlebars->45->2998",
14912 + "default.handlebars->45->2999",
14913 "sharing.handlebars->11->52"
14914 ]
14915 },
@@ -15157,8 +15163,8 @@
15163 "zh-chs": "通用设备组",
15164 "zh-cht": "通用裝置群",
15165 "xloc": [
15160 - "default.handlebars->45->2564",
15161 - "default.handlebars->45->2717"
15166 + "default.handlebars->45->2565",
15167 + "default.handlebars->45->2718"
15168 ]
15169 },
15170 {
@@ -15183,8 +15189,8 @@
15189 "zh-chs": "通用设备",
15190 "zh-cht": "通用裝置",
15191 "xloc": [
15186 - "default.handlebars->45->2570",
15187 - "default.handlebars->45->2729"
15192 + "default.handlebars->45->2571",
15193 + "default.handlebars->45->2730"
15194 ]
15195 },
15196 {
@@ -15310,10 +15316,10 @@
15316 "default.handlebars->45->1156",
15317 "default.handlebars->45->1165",
15318 "default.handlebars->45->2000",
15313 - "default.handlebars->45->2438",
15314 - "default.handlebars->45->2520",
15315 - "default.handlebars->45->2586",
15316 - "default.handlebars->45->2715",
15319 + "default.handlebars->45->2439",
15320 + "default.handlebars->45->2521",
15321 + "default.handlebars->45->2587",
15322 + "default.handlebars->45->2716",
15323 "default.handlebars->45->668"
15324 ]
15325 },
@@ -15439,7 +15445,7 @@
15445 "zh-chs": "确认删除选定的帐户?",
15446 "zh-cht": "確認刪除所選帳戶?",
15447 "xloc": [
15442 - "default.handlebars->45->2437"
15448 + "default.handlebars->45->2438"
15449 ]
15450 },
15451 {
@@ -15486,7 +15492,7 @@
15492 "zh-chs": "确认删除选定的用户组?",
15493 "zh-cht": "確認刪除所選用戶群?",
15494 "xloc": [
15489 - "default.handlebars->45->2519"
15495 + "default.handlebars->45->2520"
15496 ]
15497 },
15498 {
@@ -15511,7 +15517,7 @@
15517 "zh-chs": "确认删除用户{0}?",
15518 "zh-cht": "確認刪除用戶{0}?",
15519 "xloc": [
15514 - "default.handlebars->45->2714"
15520 + "default.handlebars->45->2715"
15521 ]
15522 },
15523 {
@@ -15536,7 +15542,7 @@
15542 "zh-chs": "确认删除用户“ {0} ”的成员身份?",
15543 "zh-cht": "確認刪除用戶“ {0} ”的成員身份?",
15544 "xloc": [
15539 - "default.handlebars->45->2589"
15545 + "default.handlebars->45->2590"
15546 ]
15547 },
15548 {
@@ -15561,7 +15567,7 @@
15567 "zh-chs": "确认删除用户组“ {0} ”的成员身份?",
15568 "zh-cht": "確認刪除用戶群“ {0} ”的成員身份?",
15569 "xloc": [
15564 - "default.handlebars->45->2746"
15570 + "default.handlebars->45->2747"
15571 ]
15572 },
15573 {
@@ -15689,8 +15695,8 @@
15695 "zh-chs": "确认删除设备“ {0} ”的访问权限?",
15696 "zh-cht": "確認刪除裝置“ {0} ”的訪問權限?",
15697 "xloc": [
15692 - "default.handlebars->45->2579",
15693 - "default.handlebars->45->2737"
15698 + "default.handlebars->45->2580",
15699 + "default.handlebars->45->2738"
15700 ]
15701 },
15702 {
@@ -15715,8 +15721,8 @@
15721 "zh-chs": "确认删除设备组“ {0} ”的访问权限?",
15722 "zh-cht": "確認刪除裝置群“ {0} ”的訪問權限?",
15723 "xloc": [
15718 - "default.handlebars->45->2581",
15719 - "default.handlebars->45->2750"
15724 + "default.handlebars->45->2582",
15725 + "default.handlebars->45->2751"
15726 ]
15727 },
15728 {
@@ -15741,7 +15747,7 @@
15747 "zh-chs": "确认删除用户“ {0} ”的访问权限?",
15748 "zh-cht": "確認刪除用戶“ {0} ”的訪問權限?",
15749 "xloc": [
15744 - "default.handlebars->45->2739"
15750 + "default.handlebars->45->2740"
15751 ]
15752 },
15753 {
@@ -15766,7 +15772,7 @@
15772 "zh-chs": "确认删除用户组“ {0} ”的访问权限?",
15773 "zh-cht": "確認刪除用戶群“ {0} ”的訪問權限?",
15774 "xloc": [
15769 - "default.handlebars->45->2742"
15775 + "default.handlebars->45->2743"
15776 ]
15777 },
15778 {
@@ -15791,8 +15797,8 @@
15797 "zh-chs": "确认删除访问权限?",
15798 "zh-cht": "確認刪除訪問權限?",
15799 "xloc": [
15794 - "default.handlebars->45->2740",
15795 - "default.handlebars->45->2743"
15800 + "default.handlebars->45->2741",
15801 + "default.handlebars->45->2744"
15802 ]
15803 },
15804 {
@@ -15865,7 +15871,7 @@
15871 "zh-chs": "确认删除设备共享“{0}”?",
15872 "zh-cht": "確認刪除設備共享“{0}”?",
15873 "xloc": [
15868 - "default.handlebars->45->2735"
15874 + "default.handlebars->45->2736"
15875 ]
15876 },
15877 {
@@ -16471,7 +16477,7 @@
16477 "zh-chs": "已连接的英特尔®AMT",
16478 "zh-cht": "已連接的Intel® AMT",
16479 "xloc": [
16474 - "default.handlebars->45->2926"
16480 + "default.handlebars->45->2927"
16481 ]
16482 },
16483 {
@@ -16496,7 +16502,7 @@
16502 "zh-chs": "已连接的用户",
16503 "zh-cht": "已连接的用户",
16504 "xloc": [
16499 - "default.handlebars->45->2931"
16505 + "default.handlebars->45->2932"
16506 ]
16507 },
16508 {
@@ -16725,7 +16731,7 @@
16731 "zh-chs": "连接数量",
16732 "zh-cht": "連接數量",
16733 "xloc": [
16728 - "default.handlebars->45->2957"
16734 + "default.handlebars->45->2958"
16735 ]
16736 },
16737 {
@@ -16778,7 +16784,7 @@
16784 "zh-chs": "连接转发器",
16785 "zh-cht": "連接轉發器",
16786 "xloc": [
16781 - "default.handlebars->45->2992"
16787 + "default.handlebars->45->2993"
16788 ]
16789 },
16790 {
@@ -16882,7 +16888,7 @@
16888 "zh-chs": "同意",
16889 "zh-cht": "同意",
16890 "xloc": [
16885 - "default.handlebars->45->2370"
16891 + "default.handlebars->45->2371"
16892 ]
16893 },
16894 {
@@ -17015,7 +17021,7 @@
17021 "zh-chs": "Cookie编码器",
17022 "zh-cht": "Cookie編碼器",
17023 "xloc": [
17018 - "default.handlebars->45->2976"
17024 + "default.handlebars->45->2977"
17025 ]
17026 },
17027 {
@@ -17549,7 +17555,7 @@
17555 "zh-chs": "核心服务器",
17556 "zh-cht": "核心伺服器",
17557 "xloc": [
17552 - "default.handlebars->45->2975"
17558 + "default.handlebars->45->2976"
17559 ]
17560 },
17561 {
@@ -17621,7 +17627,7 @@
17627 "zh-chs": "创建帐号",
17628 "zh-cht": "創建帳號",
17629 "xloc": [
17624 - "default.handlebars->45->2487",
17630 + "default.handlebars->45->2488",
17631 "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->16->1->1",
17632 "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->16->1->1",
17633 "login2.handlebars->centralTable->1->0->logincell->createpanel->createpanelform->9->1->16->1->1"
@@ -17722,7 +17728,7 @@
17728 "zh-chs": "创建用户组",
17729 "zh-cht": "創建用戶群",
17730 "xloc": [
17725 - "default.handlebars->45->2527"
17731 + "default.handlebars->45->2528"
17732 ]
17733 },
17734 {
@@ -17922,7 +17928,7 @@
17928 "zh-chs": "通过导入以下格式的JSON档案一次创建多个帐户:",
17929 "zh-cht": "通過導入以下格式的JSON檔案一次創建多個帳戶:",
17930 "xloc": [
17925 - "default.handlebars->45->2451"
17931 + "default.handlebars->45->2452"
17932 ]
17933 },
17934 {
@@ -18068,7 +18074,7 @@
18074 "zh-chs": "创建",
18075 "zh-cht": "創建",
18076 "xloc": [
18071 - "default.handlebars->45->2631"
18077 + "default.handlebars->45->2632"
18078 ]
18079 },
18080 {
@@ -18481,7 +18487,7 @@
18487 "zh-cht": "當前密碼不正確。",
18488 "xloc": [
18489 "default-mobile.handlebars->11->734",
18484 - "default.handlebars->45->2899"
18490 + "default.handlebars->45->2900"
18491 ]
18492 },
18493 {
@@ -18765,8 +18771,8 @@
18771 "xloc": [
18772 "default-mobile.handlebars->11->384",
18773 "default.handlebars->45->1140",
18768 - "default.handlebars->45->2796",
18769 - "default.handlebars->45->2799"
18774 + "default.handlebars->45->2797",
18775 + "default.handlebars->45->2800"
18776 ]
18777 },
18778 {
@@ -18890,10 +18896,10 @@
18896 "zh-chs": "默认",
18897 "zh-cht": "默認",
18898 "xloc": [
18893 - "default.handlebars->45->2474",
18894 - "default.handlebars->45->2523",
18895 - "default.handlebars->45->2534",
18896 - "default.handlebars->45->2607"
18899 + "default.handlebars->45->2475",
18900 + "default.handlebars->45->2524",
18901 + "default.handlebars->45->2535",
18902 + "default.handlebars->45->2608"
18903 ]
18904 },
18905 {
@@ -19012,7 +19018,7 @@
19018 "zh-chs": "删除帐户",
19019 "zh-cht": "刪除帳戶",
19020 "xloc": [
19015 - "default.handlebars->45->2439"
19021 + "default.handlebars->45->2440"
19022 ]
19023 },
19024 {
@@ -19164,7 +19170,7 @@
19170 "zh-chs": "删除用户",
19171 "zh-cht": "刪除用戶",
19172 "xloc": [
19167 - "default.handlebars->45->2674"
19173 + "default.handlebars->45->2675"
19174 ]
19175 },
19176 {
@@ -19189,8 +19195,8 @@
19195 "zh-chs": "删除用户群组",
19196 "zh-cht": "刪除用戶群組",
19197 "xloc": [
19192 - "default.handlebars->45->2575",
19193 - "default.handlebars->45->2587"
19198 + "default.handlebars->45->2576",
19199 + "default.handlebars->45->2588"
19200 ]
19201 },
19202 {
@@ -19215,7 +19221,7 @@
19221 "zh-chs": "删除用户群组",
19222 "zh-cht": "刪除用戶群組",
19223 "xloc": [
19218 - "default.handlebars->45->2521"
19224 + "default.handlebars->45->2522"
19225 ]
19226 },
19227 {
@@ -19240,7 +19246,7 @@
19246 "zh-chs": "删除用户{0}",
19247 "zh-cht": "刪除用戶{0}",
19248 "xloc": [
19243 - "default.handlebars->45->2713"
19249 + "default.handlebars->45->2714"
19250 ]
19251 },
19252 {
@@ -19266,7 +19272,7 @@
19272 "zh-cht": "刪除帳戶",
19273 "xloc": [
19274 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountActions->3->9->0",
19269 - "default.handlebars->45->2435",
19275 + "default.handlebars->45->2436",
19276 "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7"
19277 ]
19278 },
@@ -19317,7 +19323,7 @@
19323 "zh-chs": "删除群组",
19324 "zh-cht": "刪除群組",
19325 "xloc": [
19320 - "default.handlebars->45->2517"
19326 + "default.handlebars->45->2518"
19327 ]
19328 },
19329 {
@@ -19421,7 +19427,7 @@
19427 "zh-chs": "删除用户群组{0}?",
19428 "zh-cht": "刪除用戶群組{0}?",
19429 "xloc": [
19424 - "default.handlebars->45->2585"
19430 + "default.handlebars->45->2586"
19431 ]
19432 },
19433 {
@@ -19704,11 +19710,11 @@
19710 "default.handlebars->45->1816",
19711 "default.handlebars->45->1873",
19712 "default.handlebars->45->2007",
19707 - "default.handlebars->45->2368",
19708 - "default.handlebars->45->2526",
19709 - "default.handlebars->45->2536",
19713 + "default.handlebars->45->2369",
19714 + "default.handlebars->45->2527",
19715 "default.handlebars->45->2537",
19711 - "default.handlebars->45->2583",
19716 + "default.handlebars->45->2538",
19717 + "default.handlebars->45->2584",
19718 "default.handlebars->45->797",
19719 "default.handlebars->45->798",
19720 "default.handlebars->container->column_l->p42->p42tbl->1->0->3"
@@ -19763,10 +19769,10 @@
19769 "default.handlebars->45->1312",
19770 "default.handlebars->45->1940",
19771 "default.handlebars->45->2013",
19766 - "default.handlebars->45->2770",
19767 - "default.handlebars->45->2829",
19768 - "default.handlebars->45->2860",
19769 - "default.handlebars->45->2951",
19772 + "default.handlebars->45->2771",
19773 + "default.handlebars->45->2830",
19774 + "default.handlebars->45->2861",
19775 + "default.handlebars->45->2952",
19776 "default.handlebars->45->762",
19777 "default.handlebars->45->979",
19778 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop",
@@ -19902,7 +19908,7 @@
19908 "zh-chs": "桌面复用",
19909 "zh-cht": "桌面多路復用",
19910 "xloc": [
19905 - "default.handlebars->45->2956"
19911 + "default.handlebars->45->2957"
19912 ]
19913 },
19914 {
@@ -19928,8 +19934,8 @@
19934 "zh-cht": "桌面通知",
19935 "xloc": [
19936 "default.handlebars->45->1893",
19931 - "default.handlebars->45->2544",
19932 - "default.handlebars->45->2646",
19937 + "default.handlebars->45->2545",
19938 + "default.handlebars->45->2647",
19939 "default.handlebars->45->859"
19940 ]
19941 },
@@ -19956,8 +19962,8 @@
19962 "zh-cht": "桌面提示",
19963 "xloc": [
19964 "default.handlebars->45->1892",
19959 - "default.handlebars->45->2543",
19960 - "default.handlebars->45->2645",
19965 + "default.handlebars->45->2544",
19966 + "default.handlebars->45->2646",
19967 "default.handlebars->45->858"
19968 ]
19969 },
@@ -19984,8 +19990,8 @@
19990 "zh-cht": "桌面提示+工具欄",
19991 "xloc": [
19992 "default.handlebars->45->1890",
19987 - "default.handlebars->45->2541",
19988 - "default.handlebars->45->2643",
19993 + "default.handlebars->45->2542",
19994 + "default.handlebars->45->2644",
19995 "default.handlebars->45->856"
19996 ]
19997 },
@@ -20011,7 +20017,7 @@
20017 "zh-chs": "桌面会话",
20018 "zh-cht": "桌面會話",
20019 "xloc": [
20014 - "default.handlebars->45->2763"
20020 + "default.handlebars->45->2764"
20021 ]
20022 },
20023 {
@@ -20111,8 +20117,8 @@
20117 "zh-cht": "桌面工具欄",
20118 "xloc": [
20119 "default.handlebars->45->1891",
20114 - "default.handlebars->45->2542",
20115 - "default.handlebars->45->2644",
20120 + "default.handlebars->45->2543",
20121 + "default.handlebars->45->2645",
20122 "default.handlebars->45->857"
20123 ]
20124 },
@@ -20138,7 +20144,7 @@
20144 "zh-chs": "仅桌面视图",
20145 "zh-cht": "僅桌面視圖",
20146 "xloc": [
20141 - "default.handlebars->45->2619"
20147 + "default.handlebars->45->2620"
20148 ]
20149 },
20150 {
@@ -20323,9 +20329,9 @@
20329 "default.handlebars->45->1539",
20330 "default.handlebars->45->2041",
20331 "default.handlebars->45->267",
20326 - "default.handlebars->45->2732",
20327 - "default.handlebars->45->2795",
20328 - "default.handlebars->45->2813",
20332 + "default.handlebars->45->2733",
20333 + "default.handlebars->45->2796",
20334 + "default.handlebars->45->2814",
20335 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5"
20336 ]
20337 },
@@ -20484,14 +20490,14 @@
20490 "default.handlebars->45->2036",
20491 "default.handlebars->45->2039",
20492 "default.handlebars->45->2040",
20487 - "default.handlebars->45->2385",
20488 - "default.handlebars->45->2567",
20489 - "default.handlebars->45->2573",
20490 - "default.handlebars->45->2720",
20491 - "default.handlebars->45->2779",
20492 - "default.handlebars->45->2802",
20493 - "default.handlebars->45->2816",
20494 - "default.handlebars->45->2877"
20493 + "default.handlebars->45->2386",
20494 + "default.handlebars->45->2568",
20495 + "default.handlebars->45->2574",
20496 + "default.handlebars->45->2721",
20497 + "default.handlebars->45->2780",
20498 + "default.handlebars->45->2803",
20499 + "default.handlebars->45->2817",
20500 + "default.handlebars->45->2878"
20501 ]
20502 },
20503 {
@@ -20543,11 +20549,11 @@
20549 "zh-cht": "裝置群",
20550 "xloc": [
20551 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->3",
20546 - "default.handlebars->45->2401",
20547 - "default.handlebars->45->2511",
20548 - "default.handlebars->45->2554",
20549 - "default.handlebars->45->2640",
20550 - "default.handlebars->45->2929",
20552 + "default.handlebars->45->2402",
20553 + "default.handlebars->45->2512",
20554 + "default.handlebars->45->2555",
20555 + "default.handlebars->45->2641",
20556 + "default.handlebars->45->2930",
20557 "default.handlebars->container->column_l->p2->p2info->9"
20558 ]
20559 },
@@ -20650,7 +20656,7 @@
20656 "xloc": [
20657 "default-mobile.handlebars->11->400",
20658 "default.handlebars->45->1206",
20653 - "default.handlebars->45->2778",
20659 + "default.handlebars->45->2779",
20660 "default.handlebars->45->449",
20661 "default.handlebars->45->458",
20662 "player.handlebars->3->25"
@@ -20729,7 +20735,7 @@
20735 "zh-chs": "设备推送",
20736 "zh-cht": "設備推送",
20737 "xloc": [
20732 - "default.handlebars->45->2659"
20738 + "default.handlebars->45->2660"
20739 ]
20740 },
20741 {
@@ -21772,8 +21778,8 @@
21778 "zh-cht": "裝置",
21779 "xloc": [
21780 "default.handlebars->45->1958",
21775 - "default.handlebars->45->2512",
21776 - "default.handlebars->45->2555"
21781 + "default.handlebars->45->2513",
21782 + "default.handlebars->45->2556"
21783 ]
21784 },
21785 {
@@ -22562,10 +22568,10 @@
22568 "xloc": [
22569 "default.handlebars->45->118",
22570 "default.handlebars->45->1231",
22565 - "default.handlebars->45->2475",
22566 - "default.handlebars->45->2524",
22567 - "default.handlebars->45->2533",
22568 - "default.handlebars->45->2606",
22571 + "default.handlebars->45->2476",
22572 + "default.handlebars->45->2525",
22573 + "default.handlebars->45->2534",
22574 + "default.handlebars->45->2607",
22575 "mstsc.handlebars->main->1->3->1->rowdomain->1->0",
22576 "mstsc.handlebars->main->1->3->1->rowdomain->3"
22577 ]
@@ -23010,7 +23016,7 @@
23016 "zh-chs": "下载报告",
23017 "zh-cht": "下載報告",
23018 "xloc": [
23013 - "default.handlebars->45->2390",
23019 + "default.handlebars->45->2391",
23020 "default.handlebars->container->column_l->p3->3->1->0->3",
23021 "default.handlebars->container->column_l->p60->3->1->0->3->1->p60downloadReportDiv"
23022 ]
@@ -23312,7 +23318,7 @@
23318 "zh-chs": "使用以下一种档案格式下载事件列表。",
23319 "zh-cht": "使用以下一種檔案格式下載事件列表。",
23320 "xloc": [
23315 - "default.handlebars->45->2391"
23321 + "default.handlebars->45->2392"
23322 ]
23323 },
23324 {
@@ -23337,7 +23343,7 @@
23343 "zh-chs": "使用以下一种档案格式下载用户列表。",
23344 "zh-cht": "使用以下一種檔案格式下載用戶列表。",
23345 "xloc": [
23340 - "default.handlebars->45->2459"
23346 + "default.handlebars->45->2460"
23347 ]
23348 },
23349 {
@@ -23513,7 +23519,7 @@
23519 "zh-chs": "代理重复",
23520 "zh-cht": "代理重複",
23521 "xloc": [
23516 - "default.handlebars->45->2925"
23522 + "default.handlebars->45->2926"
23523 ]
23524 },
23525 {
@@ -23563,7 +23569,7 @@
23569 "zh-chs": "复制用户组",
23570 "zh-cht": "複製用戶群",
23571 "xloc": [
23566 - "default.handlebars->45->2528"
23572 + "default.handlebars->45->2529"
23573 ]
23574 },
23575 {
@@ -23613,8 +23619,8 @@
23619 "default.handlebars->45->1098",
23620 "default.handlebars->45->273",
23621 "default.handlebars->45->275",
23616 - "default.handlebars->45->2758",
23617 - "default.handlebars->45->2784",
23622 + "default.handlebars->45->2759",
23623 + "default.handlebars->45->2785",
23624 "player.handlebars->3->18"
23625 ]
23626 },
@@ -24471,7 +24477,7 @@
24477 "zh-chs": "编辑用户特征",
24478 "zh-cht": "編輯用戶特徵",
24479 "xloc": [
24474 - "default.handlebars->45->2696"
24480 + "default.handlebars->45->2697"
24481 ]
24482 },
24483 {
@@ -24496,7 +24502,7 @@
24502 "zh-chs": "编辑用户组",
24503 "zh-cht": "編輯用戶群",
24504 "xloc": [
24499 - "default.handlebars->45->2584"
24505 + "default.handlebars->45->2585"
24506 ]
24507 },
24508 {
@@ -24546,7 +24552,7 @@
24552 "zh-chs": "编辑用户组功能",
24553 "zh-cht": "編輯用戶組功能",
24554 "xloc": [
24549 - "default.handlebars->45->2577"
24555 + "default.handlebars->45->2578"
24556 ]
24557 },
24558 {
@@ -24695,12 +24701,12 @@
24701 "zh-cht": "電郵",
24702 "xloc": [
24703 "default-mobile.handlebars->11->109",
24698 - "default.handlebars->45->2477",
24699 - "default.handlebars->45->2610",
24700 - "default.handlebars->45->2612",
24701 - "default.handlebars->45->2657",
24702 - "default.handlebars->45->2667",
24703 - "default.handlebars->45->2699",
24704 + "default.handlebars->45->2478",
24705 + "default.handlebars->45->2611",
24706 + "default.handlebars->45->2613",
24707 + "default.handlebars->45->2658",
24708 + "default.handlebars->45->2668",
24709 + "default.handlebars->45->2700",
24710 "default.handlebars->45->494",
24711 "login-mobile.handlebars->5->45",
24712 "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3",
@@ -24943,7 +24949,7 @@
24949 "zh-cht": "不允許使用電子郵件域 \\\"{0}\\\"。只允許 ({1})",
24950 "xloc": [
24951 "default-mobile.handlebars->11->743",
24946 - "default.handlebars->45->2908"
24952 + "default.handlebars->45->2909"
24953 ]
24954 },
24955 {
@@ -24993,7 +24999,7 @@
24999 "zh-chs": "电邮未验证",
25000 "zh-cht": "電郵未驗證",
25001 "xloc": [
24996 - "default.handlebars->45->2421"
25002 + "default.handlebars->45->2422"
25003 ]
25004 },
25005 {
@@ -25018,8 +25024,8 @@
25024 "zh-chs": "电子邮件已验证",
25025 "zh-cht": "電子郵件已驗證",
25026 "xloc": [
25021 - "default.handlebars->45->2422",
25022 - "default.handlebars->45->2604"
25027 + "default.handlebars->45->2423",
25028 + "default.handlebars->45->2605"
25029 ]
25030 },
25031 {
@@ -25044,7 +25050,7 @@
25050 "zh-chs": "电邮已验证。",
25051 "zh-cht": "電郵已驗證。",
25052 "xloc": [
25047 - "default.handlebars->45->2483"
25053 + "default.handlebars->45->2484"
25054 ]
25055 },
25056 {
@@ -25069,7 +25075,7 @@
25075 "zh-chs": "电邮未验证",
25076 "zh-cht": "電郵未驗證",
25077 "xloc": [
25072 - "default.handlebars->45->2605"
25078 + "default.handlebars->45->2606"
25079 ]
25080 },
25081 {
@@ -25117,7 +25123,7 @@
25123 "zh-cht": "電郵已發送。",
25124 "xloc": [
25125 "default-mobile.handlebars->11->727",
25120 - "default.handlebars->45->2892",
25126 + "default.handlebars->45->2893",
25127 "login-mobile.handlebars->5->2",
25128 "login.handlebars->5->2",
25129 "login2.handlebars->7->3"
@@ -25194,7 +25200,7 @@
25200 "zh-chs": "已通过电邮验证,并且需要重置密码。",
25201 "zh-cht": "已通過電郵驗證,並且需要重置密碼。",
25202 "xloc": [
25197 - "default.handlebars->45->2484"
25203 + "default.handlebars->45->2485"
25204 ]
25205 },
25206 {
@@ -25241,7 +25247,7 @@
25247 "zh-chs": "电子邮件/短信/推送流量",
25248 "zh-cht": "電子郵件/短信/推送流量",
25249 "xloc": [
25244 - "default.handlebars->45->2984"
25250 + "default.handlebars->45->2985"
25251 ]
25252 },
25253 {
@@ -25449,7 +25455,7 @@
25455 "zh-cht": "已啟用",
25456 "xloc": [
25457 "default.handlebars->45->121",
25452 - "default.handlebars->45->2786"
25458 + "default.handlebars->45->2787"
25459 ]
25460 },
25461 {
@@ -25625,7 +25631,7 @@
25631 "zh-chs": "时间结束",
25632 "zh-cht": "時間結束",
25633 "xloc": [
25628 - "default.handlebars->45->2783"
25634 + "default.handlebars->45->2784"
25635 ]
25636 },
25637 {
@@ -26177,7 +26183,7 @@
26183 "zh-chs": "输入管理领域名称的逗号分隔列表。",
26184 "zh-cht": "輸入管理領域名稱的逗號分隔列表。",
26185 "xloc": [
26180 - "default.handlebars->45->2488"
26186 + "default.handlebars->45->2489"
26187 ]
26188 },
26189 {
@@ -26538,7 +26544,7 @@
26544 "zh-cht": "錯誤,邀請碼 \\\"{0}\\\" 已在使用中。",
26545 "xloc": [
26546 "default-mobile.handlebars->11->735",
26541 - "default.handlebars->45->2900"
26547 + "default.handlebars->45->2901"
26548 ]
26549 },
26550 {
@@ -26564,7 +26570,7 @@
26570 "zh-cht": "錯誤,密碼未更改。",
26571 "xloc": [
26572 "default-mobile.handlebars->11->732",
26567 - "default.handlebars->45->2897"
26573 + "default.handlebars->45->2898"
26574 ]
26575 },
26576 {
@@ -26590,7 +26596,7 @@
26596 "zh-cht": "錯誤,無法更改為常用密碼。",
26597 "xloc": [
26598 "default-mobile.handlebars->11->731",
26593 - "default.handlebars->45->2896"
26599 + "default.handlebars->45->2897"
26600 ]
26601 },
26602 {
@@ -26616,7 +26622,7 @@
26622 "zh-cht": "錯誤,無法更改為以前使用的密碼。",
26623 "xloc": [
26624 "default-mobile.handlebars->11->730",
26619 - "default.handlebars->45->2895"
26625 + "default.handlebars->45->2896"
26626 ]
26627 },
26628 {
@@ -26811,7 +26817,7 @@
26817 "zh-chs": "事件列表输出",
26818 "zh-cht": "事件列表輸出",
26819 "xloc": [
26814 - "default.handlebars->45->2396"
26820 + "default.handlebars->45->2397"
26821 ]
26822 },
26823 {
@@ -27146,7 +27152,7 @@
27152 "zh-chs": "外部",
27153 "zh-cht": "外部",
27154 "xloc": [
27149 - "default.handlebars->45->2964"
27155 + "default.handlebars->45->2965"
27156 ]
27157 },
27158 {
@@ -27171,7 +27177,7 @@
27177 "zh-chs": "FIDO 密钥",
27178 "zh-cht": "FIDO 密鑰",
27179 "xloc": [
27174 - "default.handlebars->45->2850"
27180 + "default.handlebars->45->2851"
27181 ]
27182 },
27183 {
@@ -27297,7 +27303,7 @@
27303 "zh-cht": "更改電子郵件地址失敗,另一個帳戶已在使用:{0}。",
27304 "xloc": [
27305 "default-mobile.handlebars->11->726",
27300 - "default.handlebars->45->2891"
27306 + "default.handlebars->45->2892"
27307 ]
27308 },
27309 {
@@ -27546,8 +27552,8 @@
27552 "zh-cht": "功能",
27553 "xloc": [
27554 "default.handlebars->45->1889",
27549 - "default.handlebars->45->2540",
27550 - "default.handlebars->45->2628"
27555 + "default.handlebars->45->2541",
27556 + "default.handlebars->45->2629"
27557 ]
27558 },
27559 {
@@ -27726,7 +27732,7 @@
27732 "zh-chs": "文件传输",
27733 "zh-cht": "文件傳輸",
27734 "xloc": [
27729 - "default.handlebars->45->2764"
27735 + "default.handlebars->45->2765"
27736 ]
27737 },
27738 {
@@ -27781,10 +27787,10 @@
27787 "default.handlebars->45->1066",
27788 "default.handlebars->45->1942",
27789 "default.handlebars->45->2020",
27784 - "default.handlebars->45->2771",
27785 - "default.handlebars->45->2830",
27786 - "default.handlebars->45->2861",
27787 - "default.handlebars->45->2952",
27790 + "default.handlebars->45->2772",
27791 + "default.handlebars->45->2831",
27792 + "default.handlebars->45->2862",
27793 + "default.handlebars->45->2953",
27794 "default.handlebars->45->415",
27795 "default.handlebars->45->981",
27796 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles",
@@ -27840,8 +27846,8 @@
27846 "zh-cht": "檔案通知",
27847 "xloc": [
27848 "default.handlebars->45->1897",
27843 - "default.handlebars->45->2548",
27844 - "default.handlebars->45->2650",
27849 + "default.handlebars->45->2549",
27850 + "default.handlebars->45->2651",
27851 "default.handlebars->45->863"
27852 ]
27853 },
@@ -27868,8 +27874,8 @@
27874 "zh-cht": "檔案提示",
27875 "xloc": [
27876 "default.handlebars->45->1896",
27871 - "default.handlebars->45->2547",
27872 - "default.handlebars->45->2649",
27877 + "default.handlebars->45->2548",
27878 + "default.handlebars->45->2650",
27879 "default.handlebars->45->862"
27880 ]
27881 },
@@ -28161,7 +28167,7 @@
28167 "zh-chs": "标志",
28168 "zh-cht": "標誌",
28169 "xloc": [
28164 - "default.handlebars->45->2369"
28170 + "default.handlebars->45->2370"
28171 ]
28172 },
28173 {
@@ -28464,8 +28470,8 @@
28470 "zh-chs": "下次登录时强制重置密码。",
28471 "zh-cht": "下次登入時強制重置密碼。",
28472 "xloc": [
28467 - "default.handlebars->45->2482",
28468 - "default.handlebars->45->2710"
28473 + "default.handlebars->45->2483",
28474 + "default.handlebars->45->2711"
28475 ]
28476 },
28477 {
@@ -28668,7 +28674,7 @@
28674 "zh-chs": "格式化",
28675 "zh-cht": "格式化",
28676 "xloc": [
28671 - "default.handlebars->45->2387"
28677 + "default.handlebars->45->2388"
28678 ]
28679 },
28680 {
@@ -28742,8 +28748,8 @@
28748 "zh-chs": "自由",
28749 "zh-cht": "自由",
28750 "xloc": [
28745 - "default.handlebars->45->2910",
28746 - "default.handlebars->45->2912"
28751 + "default.handlebars->45->2911",
28752 + "default.handlebars->45->2913"
28753 ]
28754 },
28755 {
@@ -29025,7 +29031,7 @@
29031 "default-mobile.handlebars->11->677",
29032 "default.handlebars->45->1831",
29033 "default.handlebars->45->2044",
29028 - "default.handlebars->45->2494"
29034 + "default.handlebars->45->2495"
29035 ]
29036 },
29037 {
@@ -29200,7 +29206,7 @@
29206 "zh-chs": "完整管理员",
29207 "zh-cht": "完整管理員",
29208 "xloc": [
29203 - "default.handlebars->45->2598"
29209 + "default.handlebars->45->2599"
29210 ]
29211 },
29212 {
@@ -29508,7 +29514,7 @@
29514 "zh-chs": "生成报告",
29515 "zh-cht": "生成報告",
29516 "xloc": [
29511 - "default.handlebars->45->2811"
29517 + "default.handlebars->45->2812"
29518 ]
29519 },
29520 {
@@ -30094,7 +30100,7 @@
30100 "zh-cht": "群",
30101 "xloc": [
30102 "default-mobile.handlebars->11->271",
30097 - "default.handlebars->45->2827",
30103 + "default.handlebars->45->2828",
30104 "default.handlebars->45->789",
30105 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->1"
30106 ]
@@ -30121,8 +30127,8 @@
30127 "zh-chs": "集体指令",
30128 "zh-cht": "集體指令",
30129 "xloc": [
30124 - "default.handlebars->45->2436",
30125 - "default.handlebars->45->2518",
30130 + "default.handlebars->45->2437",
30131 + "default.handlebars->45->2519",
30132 "default.handlebars->45->661",
30133 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar",
30134 "default.handlebars->container->column_l->p4->3->1->0->3->3",
@@ -30151,7 +30157,7 @@
30157 "zh-chs": "通过...分组",
30158 "zh-cht": "通過...分群",
30159 "xloc": [
30154 - "default.handlebars->45->2383"
30160 + "default.handlebars->45->2384"
30161 ]
30162 },
30163 {
@@ -30177,7 +30183,7 @@
30183 "zh-cht": "群標識符",
30184 "xloc": [
30185 "agent-translations.json",
30180 - "default.handlebars->45->2535"
30186 + "default.handlebars->45->2536"
30187 ]
30188 },
30189 {
@@ -30202,7 +30208,7 @@
30208 "zh-chs": "群组成员",
30209 "zh-cht": "群組成員",
30210 "xloc": [
30205 - "default.handlebars->45->2559"
30211 + "default.handlebars->45->2560"
30212 ]
30213 },
30214 {
@@ -30252,8 +30258,8 @@
30258 "zh-chs": "通过...分组",
30259 "zh-cht": "通過...分群",
30260 "xloc": [
30255 - "default.handlebars->45->2797",
30256 - "default.handlebars->45->2800"
30261 + "default.handlebars->45->2798",
30262 + "default.handlebars->45->2801"
30263 ]
30264 },
30265 {
@@ -30278,7 +30284,7 @@
30284 "zh-chs": "团队名字",
30285 "zh-cht": "團隊名字",
30286 "xloc": [
30281 - "default.handlebars->45->2367"
30287 + "default.handlebars->45->2368"
30288 ]
30289 },
30290 {
@@ -30428,7 +30434,7 @@
30434 "zh-chs": "来宾",
30435 "zh-cht": "來賓",
30436 "xloc": [
30431 - "default.handlebars->45->2817"
30437 + "default.handlebars->45->2818"
30438 ]
30439 },
30440 {
@@ -30555,7 +30561,7 @@
30561 "zh-chs": "HTTP",
30562 "zh-cht": "HTTP",
30563 "xloc": [
30558 - "default.handlebars->45->2948",
30564 + "default.handlebars->45->2949",
30565 "default.handlebars->45->392",
30566 "default.handlebars->45->931"
30567 ]
@@ -30833,7 +30839,7 @@
30839 "zh-chs": "硬件一次性密码",
30840 "zh-cht": "硬件一次性密碼",
30841 "xloc": [
30836 - "default.handlebars->45->2852"
30842 + "default.handlebars->45->2853"
30843 ]
30844 },
30845 {
@@ -30858,7 +30864,7 @@
30864 "zh-chs": "堆总数",
30865 "zh-cht": "堆總數",
30866 "xloc": [
30861 - "default.handlebars->45->2966"
30867 + "default.handlebars->45->2967"
30868 ]
30869 },
30870 {
@@ -30883,7 +30889,7 @@
30889 "zh-chs": "堆使用",
30890 "zh-cht": "堆使用",
30891 "xloc": [
30886 - "default.handlebars->45->2965"
30892 + "default.handlebars->45->2966"
30893 ]
30894 },
30895 {
@@ -31530,8 +31536,8 @@
31536 "zh-chs": "IP地址",
31537 "zh-cht": "IP地址",
31538 "xloc": [
31533 - "default.handlebars->45->2822",
31534 - "default.handlebars->45->2857"
31539 + "default.handlebars->45->2823",
31540 + "default.handlebars->45->2858"
31541 ]
31542 },
31543 {
@@ -32622,8 +32628,8 @@
32628 "zh-chs": "第二个因素不正确",
32629 "zh-cht": "第二個因素不正確",
32630 "xloc": [
32625 - "default.handlebars->45->2845",
32626 - "default.handlebars->45->2865"
32631 + "default.handlebars->45->2846",
32632 + "default.handlebars->45->2866"
32633 ]
32634 },
32635 {
@@ -33100,7 +33106,7 @@
33106 "zh-chs": "英特尔AMT",
33107 "zh-cht": "英特爾AMT",
33108 "xloc": [
33103 - "default.handlebars->45->2962"
33109 + "default.handlebars->45->2963"
33110 ]
33111 },
33112 {
@@ -33200,7 +33206,7 @@
33206 "zh-chs": "英特尔 AMT 经理",
33207 "zh-cht": "英特爾 AMT 經理",
33208 "xloc": [
33203 - "default.handlebars->45->2991"
33209 + "default.handlebars->45->2992"
33210 ]
33211 },
33212 {
@@ -33283,7 +33289,7 @@
33289 "default.handlebars->45->1918",
33290 "default.handlebars->45->2145",
33291 "default.handlebars->45->2158",
33286 - "default.handlebars->45->2990",
33292 + "default.handlebars->45->2991",
33293 "default.handlebars->45->764",
33294 "default.handlebars->45->831",
33295 "default.handlebars->45->870",
@@ -33646,8 +33652,8 @@
33652 "zh-chs": "英特尔®AMT重定向",
33653 "zh-cht": "Intel® AMT重定向",
33654 "xloc": [
33649 - "default.handlebars->45->2766",
33650 - "default.handlebars->45->2773",
33655 + "default.handlebars->45->2767",
33656 + "default.handlebars->45->2774",
33657 "player.handlebars->3->30"
33658 ]
33659 },
@@ -33724,8 +33730,8 @@
33730 "zh-chs": "英特尔®AMT WSMAN",
33731 "zh-cht": "Intle® AMT WSMAN",
33732 "xloc": [
33727 - "default.handlebars->45->2765",
33728 - "default.handlebars->45->2772",
33733 + "default.handlebars->45->2766",
33734 + "default.handlebars->45->2773",
33735 "player.handlebars->3->29"
33736 ]
33737 },
@@ -34728,7 +34734,7 @@
34734 "zh-chs": "无效的设备组类型",
34735 "zh-cht": "無效的裝置群類型",
34736 "xloc": [
34731 - "default.handlebars->45->2924"
34737 + "default.handlebars->45->2925"
34738 ]
34739 },
34740 {
@@ -34753,7 +34759,7 @@
34759 "zh-chs": "无效的JSON",
34760 "zh-cht": "無效的JSON",
34761 "xloc": [
34756 - "default.handlebars->45->2918"
34762 + "default.handlebars->45->2919"
34763 ]
34764 },
34765 {
@@ -34779,8 +34785,8 @@
34785 "zh-cht": "無效的JSON檔案格式。",
34786 "xloc": [
34787 "default.handlebars->45->1968",
34782 - "default.handlebars->45->2456",
34783 - "default.handlebars->45->2458"
34788 + "default.handlebars->45->2457",
34789 + "default.handlebars->45->2459"
34790 ]
34791 },
34792 {
@@ -34806,7 +34812,7 @@
34812 "zh-cht": "無效的JSON檔案:{0}。",
34813 "xloc": [
34814 "default.handlebars->45->1964",
34809 - "default.handlebars->45->2454"
34815 + "default.handlebars->45->2455"
34816 ]
34817 },
34818 {
@@ -34931,7 +34937,7 @@
34937 "zh-chs": "无效的PKCS签名",
34938 "zh-cht": "無效的PKCS簽名",
34939 "xloc": [
34934 - "default.handlebars->45->2916"
34940 + "default.handlebars->45->2917"
34941 ]
34942 },
34943 {
@@ -34956,7 +34962,7 @@
34962 "zh-chs": "無效的RSA密碼",
34963 "zh-cht": "無效的RSA密碼",
34964 "xloc": [
34959 - "default.handlebars->45->2917"
34965 + "default.handlebars->45->2918"
34966 ]
34967 },
34968 {
@@ -34982,7 +34988,7 @@
34988 "zh-cht": "短信無效",
34989 "xloc": [
34990 "default-mobile.handlebars->11->738",
34985 - "default.handlebars->45->2903"
34991 + "default.handlebars->45->2904"
34992 ]
34993 },
34994 {
@@ -35060,7 +35066,7 @@
35066 "zh-cht": "無效域",
35067 "xloc": [
35068 "default-mobile.handlebars->11->718",
35063 - "default.handlebars->45->2883"
35069 + "default.handlebars->45->2884"
35070 ]
35071 },
35072 {
@@ -35108,7 +35114,7 @@
35114 "zh-cht": "不合規電郵",
35115 "xloc": [
35116 "default-mobile.handlebars->11->717",
35111 - "default.handlebars->45->2882"
35117 + "default.handlebars->45->2883"
35118 ]
35119 },
35120 {
@@ -35211,8 +35217,8 @@
35217 "zh-chs": "无效的登录尝试",
35218 "zh-cht": "無效的登錄嘗試",
35219 "xloc": [
35214 - "default.handlebars->45->2847",
35215 - "default.handlebars->45->2867"
35220 + "default.handlebars->45->2848",
35221 + "default.handlebars->45->2868"
35222 ]
35223 },
35224 {
@@ -35239,7 +35245,7 @@
35245 "xloc": [
35246 "default-mobile.handlebars->11->716",
35247 "default-mobile.handlebars->11->85",
35242 - "default.handlebars->45->2881",
35248 + "default.handlebars->45->2882",
35249 "default.handlebars->45->310"
35250 ]
35251 },
@@ -35275,7 +35281,7 @@
35281 "zh-cht": "無效的網站權限",
35282 "xloc": [
35283 "default-mobile.handlebars->11->719",
35278 - "default.handlebars->45->2884"
35284 + "default.handlebars->45->2885"
35285 ]
35286 },
35287 {
@@ -35353,7 +35359,7 @@
35359 "zh-cht": "無效的用戶名",
35360 "xloc": [
35361 "default-mobile.handlebars->11->715",
35356 - "default.handlebars->45->2880"
35362 + "default.handlebars->45->2881"
35363 ]
35364 },
35365 {
@@ -35400,7 +35406,7 @@
35406 "zh-chs": "使电邮无效",
35407 "zh-cht": "使電郵無效",
35408 "xloc": [
35403 - "default.handlebars->45->2430"
35409 + "default.handlebars->45->2431"
35410 ]
35411 },
35412 {
@@ -35580,7 +35586,7 @@
35586 "default.handlebars->45->2127",
35587 "default.handlebars->45->2129",
35588 "default.handlebars->45->2134",
35583 - "default.handlebars->45->2878"
35589 + "default.handlebars->45->2879"
35590 ]
35591 },
35592 {
@@ -35605,7 +35611,7 @@
35611 "zh-chs": "邀请代码",
35612 "zh-cht": "邀請代碼",
35613 "xloc": [
35608 - "default.handlebars->45->2372"
35614 + "default.handlebars->45->2373"
35615 ]
35616 },
35617 {
@@ -35828,7 +35834,7 @@
35834 "zh-chs": "JSON",
35835 "zh-cht": "JSON",
35836 "xloc": [
35831 - "default.handlebars->45->2389"
35837 + "default.handlebars->45->2390"
35838 ]
35839 },
35840 {
@@ -35853,8 +35859,8 @@
35859 "zh-chs": "JSON格式",
35860 "zh-cht": "JSON格式",
35861 "xloc": [
35856 - "default.handlebars->45->2394",
35857 - "default.handlebars->45->2462",
35862 + "default.handlebars->45->2395",
35863 + "default.handlebars->45->2463",
35864 "default.handlebars->45->707"
35865 ]
35866 },
@@ -36741,7 +36747,7 @@
36747 "zh-chs": "过去30天",
36748 "zh-cht": "過去30天",
36749 "xloc": [
36744 - "default.handlebars->45->2805",
36750 + "default.handlebars->45->2806",
36751 "default.handlebars->container->column_l->p40->3->1->p40time->9"
36752 ]
36753 },
@@ -36822,7 +36828,7 @@
36828 "zh-chs": "过去 7 天",
36829 "zh-cht": "過去 7 天",
36830 "xloc": [
36825 - "default.handlebars->45->2804"
36831 + "default.handlebars->45->2805"
36832 ]
36833 },
36834 {
@@ -36872,7 +36878,7 @@
36878 "zh-chs": "最后访问",
36879 "zh-cht": "最後訪問",
36880 "xloc": [
36875 - "default.handlebars->45->2402"
36881 + "default.handlebars->45->2403"
36882 ]
36883 },
36884 {
@@ -36897,7 +36903,7 @@
36903 "zh-chs": "最后一天",
36904 "zh-cht": "最後一天",
36905 "xloc": [
36900 - "default.handlebars->45->2803"
36906 + "default.handlebars->45->2804"
36907 ]
36908 },
36909 {
@@ -36922,7 +36928,7 @@
36928 "zh-chs": "上次登录",
36929 "zh-cht": "上次登入",
36930 "xloc": [
36925 - "default.handlebars->45->2632"
36931 + "default.handlebars->45->2633"
36932 ]
36933 },
36934 {
@@ -36974,7 +36980,7 @@
36980 "zh-chs": "上次访问:{0}",
36981 "zh-cht": "上次訪問:{0}",
36982 "xloc": [
36977 - "default.handlebars->45->2412"
36983 + "default.handlebars->45->2413"
36984 ]
36985 },
36986 {
@@ -37061,7 +37067,7 @@
37067 "zh-chs": "上次更改:{0}",
37068 "zh-cht": "上次更改:{0}",
37069 "xloc": [
37064 - "default.handlebars->45->2636"
37070 + "default.handlebars->45->2637"
37071 ]
37072 },
37073 {
@@ -37136,7 +37142,7 @@
37142 "zh-chs": "上次登录:{0}",
37143 "zh-cht": "上次登入:{0}",
37144 "xloc": [
37139 - "default.handlebars->45->2413"
37145 + "default.handlebars->45->2414"
37146 ]
37147 },
37148 {
@@ -37456,7 +37462,7 @@
37462 "zh-chs": "如没有请留空。",
37463 "zh-cht": "如沒有請留空。",
37464 "xloc": [
37459 - "default.handlebars->45->2682"
37465 + "default.handlebars->45->2683"
37466 ]
37467 },
37468 {
@@ -37778,7 +37784,7 @@
37784 "zh-chs": "长度",
37785 "zh-cht": "長度",
37786 "xloc": [
37781 - "default.handlebars->45->2818"
37787 + "default.handlebars->45->2819"
37788 ]
37789 },
37790 {
@@ -38725,8 +38731,8 @@
38731 "default.handlebars->45->1531",
38732 "default.handlebars->45->1857",
38733 "default.handlebars->45->1861",
38728 - "default.handlebars->45->2705",
38729 - "default.handlebars->45->2754"
38734 + "default.handlebars->45->2706",
38735 + "default.handlebars->45->2755"
38736 ]
38737 },
38738 {
@@ -39076,7 +39082,7 @@
39082 "zh-chs": "锁定账户",
39083 "zh-cht": "鎖定賬戶",
39084 "xloc": [
39079 - "default.handlebars->45->2502"
39085 + "default.handlebars->45->2503"
39086 ]
39087 },
39088 {
@@ -39101,7 +39107,7 @@
39107 "zh-chs": "锁定帐户设置",
39108 "zh-cht": "鎖定帳戶設置",
39109 "xloc": [
39104 - "default.handlebars->45->2506"
39110 + "default.handlebars->45->2507"
39111 ]
39112 },
39113 {
@@ -39151,7 +39157,7 @@
39157 "zh-chs": "锁定账户",
39158 "zh-cht": "鎖定賬戶",
39159 "xloc": [
39154 - "default.handlebars->45->2433"
39160 + "default.handlebars->45->2434"
39161 ]
39162 },
39163 {
@@ -39277,7 +39283,7 @@
39283 "zh-chs": "已锁定",
39284 "zh-cht": "已鎖定",
39285 "xloc": [
39280 - "default.handlebars->45->2414"
39286 + "default.handlebars->45->2415"
39287 ]
39288 },
39289 {
@@ -39303,9 +39309,9 @@
39309 "zh-cht": "被鎖定賬戶",
39310 "xloc": [
39311 "default-mobile.handlebars->11->84",
39306 - "default.handlebars->45->2595",
39307 - "default.handlebars->45->2846",
39308 - "default.handlebars->45->2866",
39312 + "default.handlebars->45->2596",
39313 + "default.handlebars->45->2847",
39314 + "default.handlebars->45->2867",
39315 "default.handlebars->45->309"
39316 ]
39317 },
@@ -39565,7 +39571,7 @@
39571 "zh-chs": "登录令牌",
39572 "zh-cht": "登錄令牌",
39573 "xloc": [
39568 - "default.handlebars->45->2856"
39574 + "default.handlebars->45->2857"
39575 ]
39576 },
39577 {
@@ -40343,7 +40349,7 @@
40349 "zh-chs": "主服务器信息",
40350 "zh-cht": "主伺服器訊息",
40351 "xloc": [
40346 - "default.handlebars->45->2978"
40352 + "default.handlebars->45->2979"
40353 ]
40354 },
40355 {
@@ -40576,7 +40582,7 @@
40582 "zh-chs": "管理录音",
40583 "zh-cht": "管理錄音",
40584 "xloc": [
40579 - "default.handlebars->45->2500"
40585 + "default.handlebars->45->2501"
40586 ]
40587 },
40588 {
@@ -40626,7 +40632,7 @@
40632 "zh-chs": "管理用户组",
40633 "zh-cht": "管理用戶群",
40634 "xloc": [
40629 - "default.handlebars->45->2499"
40635 + "default.handlebars->45->2500"
40636 ]
40637 },
40638 {
@@ -40652,7 +40658,7 @@
40658 "zh-cht": "管理用戶",
40659 "xloc": [
40660 "default.handlebars->45->1028",
40655 - "default.handlebars->45->2498"
40661 + "default.handlebars->45->2499"
40662 ]
40663 },
40664 {
@@ -40884,7 +40890,7 @@
40890 "zh-chs": "经理",
40891 "zh-cht": "經理",
40892 "xloc": [
40887 - "default.handlebars->45->2419"
40893 + "default.handlebars->45->2420"
40894 ]
40895 },
40896 {
@@ -41098,7 +41104,7 @@
41104 "zh-chs": "达到连接数量上限",
41105 "zh-cht": "達到連接數量上限",
41106 "xloc": [
41101 - "default.handlebars->45->2922"
41107 + "default.handlebars->45->2923"
41108 ]
41109 },
41110 {
@@ -41203,8 +41209,8 @@
41209 "zh-chs": "Megabyte",
41210 "zh-cht": "Megabyte",
41211 "xloc": [
41206 - "default.handlebars->45->2963",
41207 - "default.handlebars->45->2968"
41212 + "default.handlebars->45->2964",
41213 + "default.handlebars->45->2969"
41214 ]
41215 },
41216 {
@@ -41231,7 +41237,7 @@
41237 "xloc": [
41238 "default-mobile.handlebars->11->595",
41239 "default.handlebars->45->1492",
41234 - "default.handlebars->45->2942",
41240 + "default.handlebars->45->2943",
41241 "default.handlebars->container->column_l->p40->3->1->p40type->3"
41242 ]
41243 },
@@ -41470,7 +41476,7 @@
41476 "zh-chs": "MeshAgent流量",
41477 "zh-cht": "MeshAgent流量",
41478 "xloc": [
41473 - "default.handlebars->45->2980"
41479 + "default.handlebars->45->2981"
41480 ]
41481 },
41482 {
@@ -41495,7 +41501,7 @@
41501 "zh-chs": "MeshAgent更新",
41502 "zh-cht": "MeshAgent更新",
41503 "xloc": [
41498 - "default.handlebars->45->2981"
41504 + "default.handlebars->45->2982"
41505 ]
41506 },
41507 {
@@ -41939,7 +41945,7 @@
41945 "zh-chs": "MeshCentral服务器同级化",
41946 "zh-cht": "MeshCentral伺服器同級化",
41947 "xloc": [
41942 - "default.handlebars->45->2979"
41948 + "default.handlebars->45->2980"
41949 ]
41950 },
41951 {
@@ -42360,7 +42366,7 @@
42366 "zh-cht": "訊息",
42367 "xloc": [
42368 "default.handlebars->45->1150",
42363 - "default.handlebars->45->2824",
42369 + "default.handlebars->45->2825",
42370 "default.handlebars->45->514",
42371 "default.handlebars->45->907"
42372 ]
@@ -42412,7 +42418,7 @@
42418 "zh-chs": "消息调度器",
42419 "zh-cht": "電郵調度器",
42420 "xloc": [
42415 - "default.handlebars->45->2977"
42421 + "default.handlebars->45->2978"
42422 ]
42423 },
42424 {
@@ -42487,8 +42493,8 @@
42493 "zh-chs": "信使",
42494 "zh-cht": "信使",
42495 "xloc": [
42490 - "default.handlebars->45->2767",
42491 - "default.handlebars->45->2833"
42496 + "default.handlebars->45->2768",
42497 + "default.handlebars->45->2834"
42498 ]
42499 },
42500 {
@@ -42991,7 +42997,7 @@
42997 "zh-chs": "多路复用器",
42998 "zh-cht": "多工器",
42999 "xloc": [
42994 - "default.handlebars->45->2785"
43000 + "default.handlebars->45->2786"
43001 ]
43002 },
43003 {
@@ -43575,12 +43581,12 @@
43581 "default.handlebars->45->1840",
43582 "default.handlebars->45->1872",
43583 "default.handlebars->45->2006",
43578 - "default.handlebars->45->2400",
43579 - "default.handlebars->45->2509",
43580 - "default.handlebars->45->2525",
43581 - "default.handlebars->45->2532",
43582 - "default.handlebars->45->2582",
43583 - "default.handlebars->45->2601",
43584 + "default.handlebars->45->2401",
43585 + "default.handlebars->45->2510",
43586 + "default.handlebars->45->2526",
43587 + "default.handlebars->45->2533",
43588 + "default.handlebars->45->2583",
43589 + "default.handlebars->45->2602",
43590 "default.handlebars->45->314",
43591 "default.handlebars->45->787",
43592 "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader->3",
@@ -43635,7 +43641,7 @@
43641 "zh-chs": "名称1,名称2,名称3",
43642 "zh-cht": "名稱1,名稱2,名稱3",
43643 "xloc": [
43638 - "default.handlebars->45->2490"
43644 + "default.handlebars->45->2491"
43645 ]
43646 },
43647 {
@@ -43862,7 +43868,7 @@
43868 "zh-cht": "新賬戶",
43869 "xloc": [
43870 "default-mobile.handlebars->11->708",
43865 - "default.handlebars->45->2873"
43871 + "default.handlebars->45->2874"
43872 ]
43873 },
43874 {
@@ -44271,7 +44277,7 @@
44277 "zh-chs": "无座席控制台",
44278 "zh-cht": "無代理控制台",
44279 "xloc": [
44274 - "default.handlebars->45->2691"
44280 + "default.handlebars->45->2692"
44281 ]
44282 },
44283 {
@@ -44296,7 +44302,7 @@
44302 "zh-chs": "没有控制台",
44303 "zh-cht": "沒有控制台",
44304 "xloc": [
44299 - "default.handlebars->45->2622"
44305 + "default.handlebars->45->2623"
44306 ]
44307 },
44308 {
@@ -44352,7 +44358,7 @@
44358 "default.handlebars->45->1013",
44359 "default.handlebars->45->1035",
44360 "default.handlebars->45->2092",
44355 - "default.handlebars->45->2618"
44361 + "default.handlebars->45->2619"
44362 ]
44363 },
44364 {
@@ -44378,7 +44384,7 @@
44384 "zh-cht": "不能訪問桌面",
44385 "xloc": [
44386 "default.handlebars->45->2052",
44381 - "default.handlebars->45->2687"
44387 + "default.handlebars->45->2688"
44388 ]
44389 },
44390 {
@@ -44426,8 +44432,8 @@
44432 "zh-cht": "找不到事件",
44433 "xloc": [
44434 "default.handlebars->45->1411",
44429 - "default.handlebars->45->2376",
44430 - "default.handlebars->45->2753"
44435 + "default.handlebars->45->2377",
44436 + "default.handlebars->45->2754"
44437 ]
44438 },
44439 {
@@ -44454,7 +44460,7 @@
44460 "xloc": [
44461 "default-mobile.handlebars->11->665",
44462 "default.handlebars->45->2054",
44457 - "default.handlebars->45->2690"
44463 + "default.handlebars->45->2691"
44464 ]
44465 },
44466 {
@@ -44483,7 +44489,7 @@
44489 "default.handlebars->45->1010",
44490 "default.handlebars->45->1032",
44491 "default.handlebars->45->2094",
44486 - "default.handlebars->45->2621"
44492 + "default.handlebars->45->2622"
44493 ]
44494 },
44495 {
@@ -44659,7 +44665,7 @@
44665 "zh-chs": "没有成员",
44666 "zh-cht": "沒有成員",
44667 "xloc": [
44662 - "default.handlebars->45->2562"
44668 + "default.handlebars->45->2563"
44669 ]
44670 },
44671 {
@@ -44684,7 +44690,7 @@
44690 "zh-chs": "没有新的设备组",
44691 "zh-cht": "沒有新的裝置群",
44692 "xloc": [
44687 - "default.handlebars->45->2503"
44693 + "default.handlebars->45->2504"
44694 ]
44695 },
44696 {
@@ -44709,7 +44715,7 @@
44715 "zh-chs": "没有新设备",
44716 "zh-cht": "沒有新設備",
44717 "xloc": [
44712 - "default.handlebars->45->2504"
44718 + "default.handlebars->45->2505"
44719 ]
44720 },
44721 {
@@ -44782,8 +44788,8 @@
44788 "zh-chs": "没有遥控器",
44789 "zh-cht": "沒有遙控器",
44790 "xloc": [
44785 - "default.handlebars->45->2624",
44786 - "default.handlebars->45->2693"
44791 + "default.handlebars->45->2625",
44792 + "default.handlebars->45->2694"
44793 ]
44794 },
44795 {
@@ -44808,8 +44814,8 @@
44814 "zh-chs": "没有遥控器",
44815 "zh-cht": "沒有遙控器",
44816 "xloc": [
44811 - "default.handlebars->45->2617",
44812 - "default.handlebars->45->2686"
44817 + "default.handlebars->45->2618",
44818 + "default.handlebars->45->2687"
44819 ]
44820 },
44821 {
@@ -44834,8 +44840,8 @@
44840 "zh-chs": "无重置/关闭",
44841 "zh-cht": "無重置/關閉",
44842 "xloc": [
44837 - "default.handlebars->45->2626",
44838 - "default.handlebars->45->2695"
44843 + "default.handlebars->45->2627",
44844 + "default.handlebars->45->2696"
44845 ]
44846 },
44847 {
@@ -44944,7 +44950,7 @@
44950 "default.handlebars->45->1009",
44951 "default.handlebars->45->1031",
44952 "default.handlebars->45->2093",
44947 - "default.handlebars->45->2620"
44953 + "default.handlebars->45->2621"
44954 ]
44955 },
44956 {
@@ -44971,7 +44977,7 @@
44977 "xloc": [
44978 "default-mobile.handlebars->11->664",
44979 "default.handlebars->45->2053",
44974 - "default.handlebars->45->2689"
44980 + "default.handlebars->45->2690"
44981 ]
44982 },
44983 {
@@ -44996,7 +45002,7 @@
45002 "zh-chs": "没有工具(MeshCmd /路由器)",
45003 "zh-cht": "沒有工具(MeshCmd /路由器)",
45004 "xloc": [
44999 - "default.handlebars->45->2505"
45005 + "default.handlebars->45->2506"
45006 ]
45007 },
45008 {
@@ -45021,8 +45027,8 @@
45027 "zh-chs": "无卸载",
45028 "zh-cht": "無卸載",
45029 "xloc": [
45024 - "default.handlebars->45->2623",
45025 - "default.handlebars->45->2692"
45030 + "default.handlebars->45->2624",
45031 + "default.handlebars->45->2693"
45032 ]
45033 },
45034 {
@@ -45047,8 +45053,8 @@
45053 "zh-chs": "没有唤醒",
45054 "zh-cht": "沒有喚醒",
45055 "xloc": [
45050 - "default.handlebars->45->2625",
45051 - "default.handlebars->45->2694"
45056 + "default.handlebars->45->2626",
45057 + "default.handlebars->45->2695"
45058 ]
45059 },
45060 {
@@ -45174,8 +45180,8 @@
45180 "zh-chs": "没有共同的设备组",
45181 "zh-cht": "沒有共同的裝置群",
45182 "xloc": [
45177 - "default.handlebars->45->2568",
45178 - "default.handlebars->45->2721"
45183 + "default.handlebars->45->2569",
45184 + "default.handlebars->45->2722"
45185 ]
45186 },
45187 {
@@ -45325,8 +45331,8 @@
45331 "zh-chs": "没有共同的设备",
45332 "zh-cht": "沒有共同的裝置",
45333 "xloc": [
45328 - "default.handlebars->45->2574",
45329 - "default.handlebars->45->2733"
45334 + "default.handlebars->45->2575",
45335 + "default.handlebars->45->2734"
45336 ]
45337 },
45338 {
@@ -45505,7 +45511,7 @@
45511 "zh-chs": "找不到群组。",
45512 "zh-cht": "找不到群組。",
45513 "xloc": [
45508 - "default.handlebars->45->2508"
45514 + "default.handlebars->45->2509"
45515 ]
45516 },
45517 {
@@ -45784,7 +45790,7 @@
45790 "zh-cht": "沒有此用戶的電話號碼",
45791 "xloc": [
45792 "default-mobile.handlebars->11->739",
45787 - "default.handlebars->45->2904"
45793 + "default.handlebars->45->2905"
45794 ]
45795 },
45796 {
@@ -45834,7 +45840,7 @@
45840 "zh-chs": "没有录音。",
45841 "zh-cht": "沒有錄音。",
45842 "xloc": [
45837 - "default.handlebars->45->2755"
45843 + "default.handlebars->45->2756"
45844 ]
45845 },
45846 {
@@ -45907,7 +45913,7 @@
45913 "zh-chs": "没有服务器权限",
45914 "zh-cht": "沒有伺服器權限",
45915 "xloc": [
45910 - "default.handlebars->45->2596"
45916 + "default.handlebars->45->2597"
45917 ]
45918 },
45919 {
@@ -45954,7 +45960,7 @@
45960 "zh-chs": "没有用户组成员身份",
45961 "zh-cht": "沒有用戶群成員身份",
45962 "xloc": [
45957 - "default.handlebars->45->2727"
45963 + "default.handlebars->45->2728"
45964 ]
45965 },
45966 {
@@ -45980,7 +45986,7 @@
45986 "zh-cht": "沒有用戶管理權限",
45987 "xloc": [
45988 "default-mobile.handlebars->11->737",
45983 - "default.handlebars->45->2902"
45989 + "default.handlebars->45->2903"
45990 ]
45991 },
45992 {
@@ -46005,7 +46011,7 @@
46011 "zh-chs": "未找到相应的用户。",
46012 "zh-cht": "未找到相應的用戶。",
46013 "xloc": [
46008 - "default.handlebars->45->2408"
46014 + "default.handlebars->45->2409"
46015 ]
46016 },
46017 {
@@ -46152,18 +46158,18 @@
46158 "default.handlebars->45->2152",
46159 "default.handlebars->45->2177",
46160 "default.handlebars->45->2182",
46155 - "default.handlebars->45->2384",
46156 - "default.handlebars->45->2529",
46157 - "default.handlebars->45->2531",
46158 - "default.handlebars->45->2539",
46159 - "default.handlebars->45->2551",
46161 + "default.handlebars->45->2385",
46162 + "default.handlebars->45->2530",
46163 + "default.handlebars->45->2532",
46164 + "default.handlebars->45->2540",
46165 + "default.handlebars->45->2552",
46166 "default.handlebars->45->258",
46161 - "default.handlebars->45->2615",
46162 - "default.handlebars->45->2627",
46163 - "default.handlebars->45->2637",
46164 - "default.handlebars->45->2641",
46165 - "default.handlebars->45->2653",
46166 - "default.handlebars->45->2848",
46167 + "default.handlebars->45->2616",
46168 + "default.handlebars->45->2628",
46169 + "default.handlebars->45->2638",
46170 + "default.handlebars->45->2642",
46171 + "default.handlebars->45->2654",
46172 + "default.handlebars->45->2849",
46173 "default.handlebars->45->286",
46174 "default.handlebars->45->368",
46175 "default.handlebars->45->369",
@@ -46477,7 +46483,7 @@
46483 "zh-chs": "不在服务器上",
46484 "zh-cht": "不在伺服器上",
46485 "xloc": [
46480 - "default.handlebars->45->2777"
46486 + "default.handlebars->45->2778"
46487 ]
46488 },
46489 {
@@ -46502,8 +46508,8 @@
46508 "zh-chs": "没有设置",
46509 "zh-cht": "沒有設置",
46510 "xloc": [
46505 - "default.handlebars->45->2602",
46506 - "default.handlebars->45->2603"
46511 + "default.handlebars->45->2603",
46512 + "default.handlebars->45->2604"
46513 ]
46514 },
46515 {
@@ -46528,7 +46534,7 @@
46534 "zh-chs": "未经审核的",
46535 "zh-cht": "未經審核的",
46536 "xloc": [
46531 - "default.handlebars->45->2701"
46537 + "default.handlebars->45->2702"
46538 ]
46539 },
46540 {
@@ -46560,7 +46566,7 @@
46566 "default.handlebars->45->1041",
46567 "default.handlebars->45->1051",
46568 "default.handlebars->45->1919",
46563 - "default.handlebars->45->2663",
46569 + "default.handlebars->45->2664",
46570 "default.handlebars->45->903"
46571 ]
46572 },
@@ -46734,7 +46740,7 @@
46740 "zh-chs": "通知",
46741 "zh-cht": "通知",
46742 "xloc": [
46737 - "default.handlebars->45->2669",
46743 + "default.handlebars->45->2670",
46744 "default.handlebars->45->283"
46745 ]
46746 },
@@ -46812,7 +46818,7 @@
46818 "zh-chs": "通知{0}",
46819 "zh-cht": "通知{0}",
46820 "xloc": [
46815 - "default.handlebars->45->2448"
46821 + "default.handlebars->45->2449"
46822 ]
46823 },
46824 {
@@ -46837,7 +46843,7 @@
46843 "zh-chs": "空值",
46844 "zh-cht": "無效的",
46845 "xloc": [
46840 - "default.handlebars->45->2971"
46846 + "default.handlebars->45->2972"
46847 ]
46848 },
46849 {
@@ -47034,7 +47040,7 @@
47040 "zh-cht": "發生在{0}",
47041 "xloc": [
47042 "default-mobile.handlebars->11->705",
47037 - "default.handlebars->45->2870"
47043 + "default.handlebars->45->2871"
47044 ]
47045 },
47046 {
@@ -47111,7 +47117,7 @@
47117 "zh-chs": "离线用户",
47118 "zh-cht": "離線用戶",
47119 "xloc": [
47114 - "default.handlebars->45->2405"
47120 + "default.handlebars->45->2406"
47121 ]
47122 },
47123 {
@@ -47187,7 +47193,7 @@
47193 "zh-chs": "一天",
47194 "zh-cht": "一天",
47195 "xloc": [
47190 - "default.handlebars->45->2381"
47196 + "default.handlebars->45->2382"
47197 ]
47198 },
47199 {
@@ -47238,7 +47244,7 @@
47244 "zh-chs": "一次性密码",
47245 "zh-cht": "一次性密碼",
47246 "xloc": [
47241 - "default.handlebars->45->2854"
47247 + "default.handlebars->45->2855"
47248 ]
47249 },
47250 {
@@ -47290,7 +47296,7 @@
47296 "zh-chs": "在线用户",
47297 "zh-cht": "在線用戶",
47298 "xloc": [
47293 - "default.handlebars->45->2404"
47299 + "default.handlebars->45->2405"
47300 ]
47301 },
47302 {
@@ -47315,7 +47321,7 @@
47321 "zh-chs": "只显示前 100 个用户",
47322 "zh-cht": "僅顯示前 100 個用戶",
47323 "xloc": [
47318 - "default.handlebars->45->2449"
47324 + "default.handlebars->45->2450"
47325 ]
47326 },
47327 {
@@ -47715,7 +47721,7 @@
47721 "default-mobile.handlebars->11->533",
47722 "default.handlebars->45->1186",
47723 "default.handlebars->45->1420",
47718 - "default.handlebars->45->2821",
47724 + "default.handlebars->45->2822",
47725 "default.handlebars->45->324",
47726 "default.handlebars->45->496",
47727 "default.handlebars->45->544",
@@ -47746,8 +47752,8 @@
47752 "xloc": [
47753 "default-mobile.handlebars->11->371",
47754 "default.handlebars->45->1121",
47749 - "default.handlebars->45->2432",
47750 - "default.handlebars->45->2516",
47755 + "default.handlebars->45->2433",
47756 + "default.handlebars->45->2517",
47757 "default.handlebars->45->660",
47758 "default.handlebars->45->679"
47759 ]
@@ -48265,7 +48271,7 @@
48271 "zh-chs": "部分的",
48272 "zh-cht": "部分的",
48273 "xloc": [
48268 - "default.handlebars->45->2420"
48274 + "default.handlebars->45->2421"
48275 ]
48276 },
48277 {
@@ -48361,7 +48367,7 @@
48367 "zh-chs": "部分权限",
48368 "zh-cht": "部分權限",
48369 "xloc": [
48364 - "default.handlebars->45->2599"
48370 + "default.handlebars->45->2600"
48371 ]
48372 },
48373 {
@@ -48420,12 +48426,12 @@
48426 "default.handlebars->45->1337",
48427 "default.handlebars->45->1822",
48428 "default.handlebars->45->1977",
48423 - "default.handlebars->45->2478",
48429 "default.handlebars->45->2479",
48425 - "default.handlebars->45->2633",
48426 - "default.handlebars->45->2635",
48427 - "default.handlebars->45->2706",
48430 + "default.handlebars->45->2480",
48431 + "default.handlebars->45->2634",
48432 + "default.handlebars->45->2636",
48433 "default.handlebars->45->2707",
48434 + "default.handlebars->45->2708",
48435 "default.handlebars->45->318",
48436 "default.handlebars->45->463",
48437 "login2.handlebars->centralTable->1->0->logincell->loginpanel->loginpanelform->loginuserpassdiv->1->1->2->1",
@@ -48575,7 +48581,7 @@
48581 "zh-cht": "密碼已更改。",
48582 "xloc": [
48583 "default-mobile.handlebars->11->733",
48578 - "default.handlebars->45->2898"
48584 + "default.handlebars->45->2899"
48585 ]
48586 },
48587 {
@@ -48626,7 +48632,7 @@
48632 "zh-chs": "密码提示",
48633 "zh-cht": "密碼提示",
48634 "xloc": [
48629 - "default.handlebars->45->2708"
48635 + "default.handlebars->45->2709"
48636 ]
48637 },
48638 {
@@ -49396,7 +49402,7 @@
49402 "zh-cht": "沒有權限",
49403 "xloc": [
49404 "default-mobile.handlebars->11->714",
49399 - "default.handlebars->45->2879"
49405 + "default.handlebars->45->2880"
49406 ]
49407 },
49408 {
@@ -49423,7 +49429,7 @@
49429 "xloc": [
49430 "default-mobile.handlebars->11->699",
49431 "default.handlebars->45->2107",
49426 - "default.handlebars->45->2403"
49432 + "default.handlebars->45->2404"
49433 ]
49434 },
49435 {
@@ -49529,7 +49535,7 @@
49535 "default.handlebars->45->1523",
49536 "default.handlebars->45->1526",
49537 "default.handlebars->45->241",
49532 - "default.handlebars->45->2684"
49538 + "default.handlebars->45->2685"
49539 ]
49540 },
49541 {
@@ -49554,7 +49560,7 @@
49560 "zh-chs": "电话号码",
49561 "zh-cht": "電話號碼",
49562 "xloc": [
49557 - "default.handlebars->45->2614"
49563 + "default.handlebars->45->2615"
49564 ]
49565 },
49566 {
@@ -49581,7 +49587,7 @@
49587 "xloc": [
49588 "default-mobile.handlebars->11->97",
49589 "default.handlebars->45->1525",
49584 - "default.handlebars->45->2683"
49590 + "default.handlebars->45->2684"
49591 ]
49592 },
49593 {
@@ -49806,7 +49812,7 @@
49812 "zh-cht": "外掛指令",
49813 "xloc": [
49814 "default.handlebars->45->299",
49809 - "default.handlebars->45->3008"
49815 + "default.handlebars->45->3009"
49816 ]
49817 },
49818 {
@@ -50539,7 +50545,7 @@
50545 "zh-chs": "存在于服务器上",
50546 "zh-cht": "存在於伺服器上",
50547 "xloc": [
50542 - "default.handlebars->45->2776"
50548 + "default.handlebars->45->2777"
50549 ]
50550 },
50551 {
@@ -50670,8 +50676,8 @@
50676 "default-mobile.handlebars->11->86",
50677 "default-mobile.handlebars->11->87",
50678 "default.handlebars->45->1518",
50673 - "default.handlebars->45->2678",
50674 - "default.handlebars->45->2704",
50679 + "default.handlebars->45->2679",
50680 + "default.handlebars->45->2705",
50681 "default.handlebars->45->311"
50682 ]
50683 },
@@ -51072,7 +51078,7 @@
51078 "zh-chs": "协议",
51079 "zh-cht": "協議",
51080 "xloc": [
51075 - "default.handlebars->45->2774",
51081 + "default.handlebars->45->2775",
51082 "player.handlebars->3->32"
51083 ]
51084 },
@@ -51342,7 +51348,7 @@
51348 "zh-chs": "推送通知",
51349 "zh-cht": "推送通知",
51350 "xloc": [
51345 - "default.handlebars->45->2853"
51351 + "default.handlebars->45->2854"
51352 ]
51353 },
51354 {
@@ -51794,7 +51800,7 @@
51800 "zh-chs": "RSS",
51801 "zh-cht": "RSS",
51802 "xloc": [
51797 - "default.handlebars->45->2967"
51803 + "default.handlebars->45->2968"
51804 ]
51805 },
51806 {
@@ -51869,7 +51875,7 @@
51875 "zh-chs": "随机密码。",
51876 "zh-cht": "隨機密碼。",
51877 "xloc": [
51872 - "default.handlebars->45->2480"
51878 + "default.handlebars->45->2481"
51879 ]
51880 },
51881 {
@@ -51991,9 +51997,9 @@
51997 "zh-chs": "真正的名字",
51998 "zh-cht": "真正的名字",
51999 "xloc": [
51994 - "default.handlebars->45->2611",
51995 - "default.handlebars->45->2613",
51996 - "default.handlebars->45->2697"
52000 + "default.handlebars->45->2612",
52001 + "default.handlebars->45->2614",
52002 + "default.handlebars->45->2698"
52003 ]
52004 },
52005 {
@@ -52018,7 +52024,7 @@
52024 "zh-chs": "境界",
52025 "zh-cht": "境界",
52026 "xloc": [
52021 - "default.handlebars->45->2489"
52027 + "default.handlebars->45->2490"
52028 ]
52029 },
52030 {
@@ -52072,8 +52078,8 @@
52078 "zh-cht": "記錄會議",
52079 "xloc": [
52080 "default.handlebars->45->1886",
52075 - "default.handlebars->45->2538",
52076 - "default.handlebars->45->2616"
52081 + "default.handlebars->45->2539",
52082 + "default.handlebars->45->2617"
52083 ]
52084 },
52085 {
@@ -52124,8 +52130,8 @@
52130 "zh-cht": "記錄會議",
52131 "xloc": [
52132 "default.handlebars->45->2023",
52127 - "default.handlebars->45->2576",
52128 - "default.handlebars->45->2685"
52133 + "default.handlebars->45->2577",
52134 + "default.handlebars->45->2686"
52135 ]
52136 },
52137 {
@@ -52150,7 +52156,7 @@
52156 "zh-chs": "记录细节",
52157 "zh-cht": "記錄細節",
52158 "xloc": [
52153 - "default.handlebars->45->2788"
52159 + "default.handlebars->45->2789"
52160 ]
52161 },
52162 {
@@ -52463,7 +52469,7 @@
52469 "zh-cht": "中繼",
52470 "xloc": [
52471 "default-mobile.handlebars->11->259",
52466 - "default.handlebars->45->2949",
52472 + "default.handlebars->45->2950",
52473 "default.handlebars->45->383",
52474 "default.handlebars->45->387",
52475 "default.handlebars->45->637"
@@ -52491,7 +52497,7 @@
52497 "zh-chs": "中继数量",
52498 "zh-cht": "中繼數量",
52499 "xloc": [
52494 - "default.handlebars->45->2934"
52500 + "default.handlebars->45->2935"
52501 ]
52502 },
52503 {
@@ -52545,7 +52551,7 @@
52551 "zh-chs": "中继错误",
52552 "zh-cht": "中繼錯誤",
52553 "xloc": [
52548 - "default.handlebars->45->2927"
52554 + "default.handlebars->45->2928"
52555 ]
52556 },
52557 {
@@ -52592,8 +52598,8 @@
52598 "zh-chs": "中继连接",
52599 "zh-cht": "中繼連接",
52600 "xloc": [
52595 - "default.handlebars->45->2933",
52596 - "default.handlebars->45->2961"
52601 + "default.handlebars->45->2934",
52602 + "default.handlebars->45->2962"
52603 ]
52604 },
52605 {
@@ -52618,7 +52624,7 @@
52624 "zh-chs": "继电器装置",
52625 "zh-cht": "繼電器裝置",
52626 "xloc": [
52621 - "default.handlebars->45->2373"
52627 + "default.handlebars->45->2374"
52628 ]
52629 },
52630 {
@@ -52690,7 +52696,7 @@
52696 "zh-chs": "记住设备",
52697 "zh-cht": "記住設備",
52698 "xloc": [
52693 - "default.handlebars->45->2855"
52699 + "default.handlebars->45->2856"
52700 ]
52701 },
52702 {
@@ -53587,7 +53593,7 @@
53593 "zh-chs": "远程会话",
53594 "zh-cht": "遠程會話",
53595 "xloc": [
53590 - "default.handlebars->45->2790"
53596 + "default.handlebars->45->2791"
53597 ]
53598 },
53599 {
@@ -53732,7 +53738,7 @@
53738 "default-mobile.handlebars->11->686",
53739 "default.handlebars->45->2049",
53740 "default.handlebars->45->2091",
53735 - "default.handlebars->45->2688"
53741 + "default.handlebars->45->2689"
53742 ]
53743 },
53744 {
@@ -53997,8 +54003,8 @@
54003 "zh-chs": "删除设备组权限",
54004 "zh-cht": "刪除裝置群權限",
54005 "xloc": [
54000 - "default.handlebars->45->2580",
54001 - "default.handlebars->45->2749"
54006 + "default.handlebars->45->2581",
54007 + "default.handlebars->45->2750"
54008 ]
54009 },
54010 {
@@ -54023,8 +54029,8 @@
54029 "zh-chs": "删除设备权限",
54030 "zh-cht": "刪除裝置權限",
54031 "xloc": [
54026 - "default.handlebars->45->2578",
54027 - "default.handlebars->45->2736"
54032 + "default.handlebars->45->2579",
54033 + "default.handlebars->45->2737"
54034 ]
54035 },
54036 {
@@ -54049,7 +54055,7 @@
54055 "zh-chs": "删除设备共享",
54056 "zh-cht": "刪除設備共享",
54057 "xloc": [
54052 - "default.handlebars->45->2734"
54058 + "default.handlebars->45->2735"
54059 ]
54060 },
54061 {
@@ -54121,7 +54127,7 @@
54127 "zh-chs": "删除用户组成员身份",
54128 "zh-cht": "刪除用戶群成員身份",
54129 "xloc": [
54124 - "default.handlebars->45->2745"
54130 + "default.handlebars->45->2746"
54131 ]
54132 },
54133 {
@@ -54147,7 +54153,7 @@
54153 "zh-cht": "刪除用戶群權限",
54154 "xloc": [
54155 "default.handlebars->45->2112",
54150 - "default.handlebars->45->2741"
54156 + "default.handlebars->45->2742"
54157 ]
54158 },
54159 {
@@ -54172,7 +54178,7 @@
54178 "zh-chs": "删除用户成员资格",
54179 "zh-cht": "刪除用戶成員資格",
54180 "xloc": [
54175 - "default.handlebars->45->2588"
54181 + "default.handlebars->45->2589"
54182 ]
54183 },
54184 {
@@ -54198,7 +54204,7 @@
54204 "zh-cht": "刪除用戶權限",
54205 "xloc": [
54206 "default.handlebars->45->2110",
54201 - "default.handlebars->45->2738"
54207 + "default.handlebars->45->2739"
54208 ]
54209 },
54210 {
@@ -54223,7 +54229,7 @@
54229 "zh-chs": "删除所有两因素认证。",
54230 "zh-cht": "刪除所有二因子鑑別。",
54231 "xloc": [
54226 - "default.handlebars->45->2711"
54232 + "default.handlebars->45->2712"
54233 ]
54234 },
54235 {
@@ -54248,7 +54254,7 @@
54254 "zh-chs": "删除此用户标识的所有先前事件。",
54255 "zh-cht": "刪除此用戶標識的所有先前事件。",
54256 "xloc": [
54251 - "default.handlebars->45->2481"
54257 + "default.handlebars->45->2482"
54258 ]
54259 },
54260 {
@@ -54475,7 +54481,7 @@
54481 "zh-chs": "删除此用户",
54482 "zh-cht": "刪除此用戶",
54483 "xloc": [
54478 - "default.handlebars->45->2673"
54484 + "default.handlebars->45->2674"
54485 ]
54486 },
54487 {
@@ -54500,7 +54506,7 @@
54506 "zh-chs": "删除用户组成员身份",
54507 "zh-cht": "刪除用戶群成員身份",
54508 "xloc": [
54503 - "default.handlebars->45->2725"
54509 + "default.handlebars->45->2726"
54510 ]
54511 },
54512 {
@@ -54525,7 +54531,7 @@
54531 "zh-chs": "删除此设备的用户组权限",
54532 "zh-cht": "刪除此裝置的用戶群權限",
54533 "xloc": [
54528 - "default.handlebars->45->2572"
54534 + "default.handlebars->45->2573"
54535 ]
54536 },
54537 {
@@ -54550,7 +54556,7 @@
54556 "zh-chs": "删除此设备组的用户组权限",
54557 "zh-cht": "刪除此裝置群的用戶群權限",
54558 "xloc": [
54553 - "default.handlebars->45->2566",
54559 + "default.handlebars->45->2567",
54560 "default.handlebars->45->970"
54561 ]
54562 },
@@ -54577,9 +54583,9 @@
54583 "zh-cht": "刪除此裝置群的用戶權限",
54584 "xloc": [
54585 "default.handlebars->45->1934",
54580 - "default.handlebars->45->2560",
54581 - "default.handlebars->45->2719",
54582 - "default.handlebars->45->2731",
54586 + "default.handlebars->45->2561",
54587 + "default.handlebars->45->2720",
54588 + "default.handlebars->45->2732",
54589 "default.handlebars->45->971"
54590 ]
54591 },
@@ -55013,7 +55019,7 @@
55019 "zh-chs": "报告日",
55020 "zh-cht": "報告日",
55021 "xloc": [
55016 - "default.handlebars->45->2382"
55022 + "default.handlebars->45->2383"
55023 ]
55024 },
55025 {
@@ -55038,7 +55044,7 @@
55044 "zh-chs": "报告类型",
55045 "zh-cht": "報告類型",
55046 "xloc": [
55041 - "default.handlebars->45->2377"
55047 + "default.handlebars->45->2378"
55048 ]
55049 },
55050 {
@@ -55063,7 +55069,7 @@
55069 "zh-chs": "报告未返回任何内容。",
55070 "zh-cht": "報告未返回任何內容。",
55071 "xloc": [
55066 - "default.handlebars->45->2826"
55072 + "default.handlebars->45->2827"
55073 ]
55074 },
55075 {
@@ -55088,7 +55094,7 @@
55094 "zh-chs": "报告.csv",
55095 "zh-cht": "報告.csv",
55096 "xloc": [
55091 - "default.handlebars->45->2868"
55097 + "default.handlebars->45->2869"
55098 ]
55099 },
55100 {
@@ -55283,8 +55289,8 @@
55289 "zh-cht": "要求:{0}。",
55290 "xloc": [
55291 "default-mobile.handlebars->11->120",
55286 - "default.handlebars->45->2486",
55287 - "default.handlebars->45->2709"
55292 + "default.handlebars->45->2487",
55293 + "default.handlebars->45->2710"
55294 ]
55295 },
55296 {
@@ -55728,7 +55734,7 @@
55734 "zh-chs": "限制条件",
55735 "zh-cht": "限制條件",
55736 "xloc": [
55731 - "default.handlebars->45->2600"
55737 + "default.handlebars->45->2601"
55738 ]
55739 },
55740 {
@@ -56549,8 +56555,8 @@
56555 "zh-chs": "短信",
56556 "zh-cht": "短信",
56557 "xloc": [
56552 - "default.handlebars->45->2660",
56553 - "default.handlebars->45->2665",
56558 + "default.handlebars->45->2661",
56559 + "default.handlebars->45->2666",
56560 "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3",
56561 "login.handlebars->container->column_l->centralTable->1->0->logincell->resettokenpanel->1->5->1->2->1->3",
56562 "login.handlebars->container->column_l->centralTable->1->0->logincell->tokenpanel->1->7->1->4->1->3",
@@ -56580,7 +56586,7 @@
56586 "zh-chs": "此用户的短信功能电话号码。",
56587 "zh-cht": "此用戶的短信功能電話號碼。",
56588 "xloc": [
56583 - "default.handlebars->45->2681"
56589 + "default.handlebars->45->2682"
56590 ]
56591 },
56592 {
@@ -56606,7 +56612,7 @@
56612 "zh-cht": "短信錯誤",
56613 "xloc": [
56614 "default-mobile.handlebars->11->741",
56609 - "default.handlebars->45->2906"
56615 + "default.handlebars->45->2907"
56616 ]
56617 },
56618 {
@@ -56632,7 +56638,7 @@
56638 "zh-cht": "短信錯誤:{0}",
56639 "xloc": [
56640 "default-mobile.handlebars->11->742",
56635 - "default.handlebars->45->2907"
56641 + "default.handlebars->45->2908"
56642 ]
56643 },
56644 {
@@ -56683,7 +56689,7 @@
56689 "zh-cht": "短信網關未啟用",
56690 "xloc": [
56691 "default-mobile.handlebars->11->736",
56686 - "default.handlebars->45->2901"
56692 + "default.handlebars->45->2902"
56693 ]
56694 },
56695 {
@@ -56708,7 +56714,7 @@
56714 "zh-chs": "短信",
56715 "zh-cht": "短信",
56716 "xloc": [
56711 - "default.handlebars->45->2851"
56717 + "default.handlebars->45->2852"
56718 ]
56719 },
56720 {
@@ -56783,7 +56789,7 @@
56789 "zh-cht": "短信成功發送。",
56790 "xloc": [
56791 "default-mobile.handlebars->11->740",
56786 - "default.handlebars->45->2905"
56792 + "default.handlebars->45->2906"
56793 ]
56794 },
56795 {
@@ -57883,7 +57889,7 @@
57889 "default.handlebars->45->1145",
57890 "default.handlebars->45->1468",
57891 "default.handlebars->45->2166",
57886 - "default.handlebars->45->2661",
57892 + "default.handlebars->45->2662",
57893 "default.handlebars->45->464",
57894 "default.handlebars->container->column_l->p21->p21main->1->1->meshSecurityChartDiv->1"
57895 ]
@@ -57919,7 +57925,7 @@
57925 "zh-chs": "安全密钥",
57926 "zh-cht": "安全密鑰",
57927 "xloc": [
57922 - "default.handlebars->45->2656"
57928 + "default.handlebars->45->2657"
57929 ]
57930 },
57931 {
@@ -57945,7 +57951,7 @@
57951 "zh-cht": "安全警告",
57952 "xloc": [
57953 "default-mobile.handlebars->11->710",
57948 - "default.handlebars->45->2875"
57954 + "default.handlebars->45->2876"
57955 ]
57956 },
57957 {
@@ -58029,8 +58035,8 @@
58035 "default.handlebars->45->1369",
58036 "default.handlebars->45->1371",
58037 "default.handlebars->45->2192",
58032 - "default.handlebars->45->2428",
58033 - "default.handlebars->45->2514",
58038 + "default.handlebars->45->2429",
58039 + "default.handlebars->45->2515",
58040 "default.handlebars->45->485",
58041 "default.handlebars->45->642",
58042 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar",
@@ -58068,7 +58074,7 @@
58074 "xloc": [
58075 "default.handlebars->45->1095",
58076 "default.handlebars->45->1097",
58071 - "default.handlebars->45->2809"
58077 + "default.handlebars->45->2810"
58078 ]
58079 },
58080 {
@@ -58095,8 +58101,8 @@
58101 "xloc": [
58102 "default.handlebars->45->1370",
58103 "default.handlebars->45->2191",
58098 - "default.handlebars->45->2427",
58099 - "default.handlebars->45->2513",
58104 + "default.handlebars->45->2428",
58105 + "default.handlebars->45->2514",
58106 "default.handlebars->45->641",
58107 "default.handlebars->meshContextMenu->cxselectnone",
58108 "sharing.handlebars->11->57"
@@ -58249,8 +58255,8 @@
58255 "zh-chs": "选择要对所有选定用户执行的操作。",
58256 "zh-cht": "選擇要對所有選定用戶執行的操作。",
58257 "xloc": [
58252 - "default.handlebars->45->2431",
58253 - "default.handlebars->45->2515"
58258 + "default.handlebars->45->2432",
58259 + "default.handlebars->45->2516"
58260 ]
58261 },
58262 {
@@ -58429,7 +58435,7 @@
58435 "zh-chs": "发电邮",
58436 "zh-cht": "發電郵",
58437 "xloc": [
58432 - "default.handlebars->45->2442"
58438 + "default.handlebars->45->2443"
58439 ]
58440 },
58441 {
@@ -58505,7 +58511,7 @@
58511 "zh-chs": "发送短信",
58512 "zh-cht": "發送簡訊",
58513 "xloc": [
58508 - "default.handlebars->45->2440"
58514 + "default.handlebars->45->2441"
58515 ]
58516 },
58517 {
@@ -58530,7 +58536,7 @@
58536 "zh-chs": "发送短信给该用户",
58537 "zh-cht": "發送短信給該用戶",
58538 "xloc": [
58533 - "default.handlebars->45->2666"
58539 + "default.handlebars->45->2667"
58540 ]
58541 },
58542 {
@@ -58555,7 +58561,7 @@
58561 "zh-chs": "发送电邮给该用户",
58562 "zh-cht": "發送電郵給該用戶",
58563 "xloc": [
58558 - "default.handlebars->45->2668"
58564 + "default.handlebars->45->2669"
58565 ]
58566 },
58567 {
@@ -58580,7 +58586,7 @@
58586 "zh-chs": "向该组中的所有用户发送通知。",
58587 "zh-cht": "向該群中的所有用戶發送通知。",
58588 "xloc": [
58583 - "default.handlebars->45->2557"
58589 + "default.handlebars->45->2558"
58590 ]
58591 },
58592 {
@@ -58605,7 +58611,7 @@
58611 "zh-chs": "向该用户发送文本通知。",
58612 "zh-cht": "向該用戶發送文本通知。",
58613 "xloc": [
58608 - "default.handlebars->45->2443"
58614 + "default.handlebars->45->2444"
58615 ]
58616 },
58617 {
@@ -58630,7 +58636,7 @@
58636 "zh-chs": "发送电邮给用户",
58637 "zh-cht": "發送電郵給用戶",
58638 "xloc": [
58633 - "default.handlebars->45->2423"
58639 + "default.handlebars->45->2424"
58640 ]
58641 },
58642 {
@@ -58680,7 +58686,7 @@
58686 "zh-chs": "发送邀请电邮。",
58687 "zh-cht": "發送邀請電郵。",
58688 "xloc": [
58683 - "default.handlebars->45->2485"
58689 + "default.handlebars->45->2486"
58690 ]
58691 },
58692 {
@@ -58833,7 +58839,7 @@
58839 "zh-chs": "发送用户通知",
58840 "zh-cht": "發送用戶通知",
58841 "xloc": [
58836 - "default.handlebars->45->2670"
58842 + "default.handlebars->45->2671"
58843 ]
58844 },
58845 {
@@ -59006,7 +59012,7 @@
59012 "zh-chs": "服务器备份",
59013 "zh-cht": "伺服器備份",
59014 "xloc": [
59009 - "default.handlebars->45->2495"
59015 + "default.handlebars->45->2496"
59016 ]
59017 },
59018 {
@@ -59031,7 +59037,7 @@
59037 "zh-chs": "服务器证书",
59038 "zh-cht": "伺服器憑證",
59039 "xloc": [
59034 - "default.handlebars->45->2982"
59040 + "default.handlebars->45->2983"
59041 ]
59042 },
59043 {
@@ -59081,7 +59087,7 @@
59087 "zh-chs": "服务器数据库",
59088 "zh-cht": "伺服器數據庫",
59089 "xloc": [
59084 - "default.handlebars->45->2983"
59090 + "default.handlebars->45->2984"
59091 ]
59092 },
59093 {
@@ -59112,7 +59118,7 @@
59118 "default.handlebars->45->1039",
59119 "default.handlebars->45->2057",
59120 "default.handlebars->45->2088",
59115 - "default.handlebars->45->2492"
59121 + "default.handlebars->45->2493"
59122 ]
59123 },
59124 {
@@ -59163,7 +59169,7 @@
59169 "zh-cht": "服務器限制",
59170 "xloc": [
59171 "default-mobile.handlebars->11->709",
59166 - "default.handlebars->45->2874"
59172 + "default.handlebars->45->2875"
59173 ]
59174 },
59175 {
@@ -59213,8 +59219,8 @@
59219 "zh-chs": "服务器权限",
59220 "zh-cht": "伺服器權限",
59221 "xloc": [
59216 - "default.handlebars->45->2415",
59217 - "default.handlebars->45->2507"
59222 + "default.handlebars->45->2416",
59223 + "default.handlebars->45->2508"
59224 ]
59225 },
59226 {
@@ -59239,7 +59245,7 @@
59245 "zh-chs": "服务器配额",
59246 "zh-cht": "伺服器配額",
59247 "xloc": [
59242 - "default.handlebars->45->2630"
59248 + "default.handlebars->45->2631"
59249 ]
59250 },
59251 {
@@ -59264,7 +59270,7 @@
59270 "zh-chs": "服务器还原",
59271 "zh-cht": "伺服器還原",
59272 "xloc": [
59267 - "default.handlebars->45->2496"
59273 + "default.handlebars->45->2497"
59274 ]
59275 },
59276 {
@@ -59289,7 +59295,7 @@
59295 "zh-chs": "服务器权限",
59296 "zh-cht": "伺服器權限",
59297 "xloc": [
59292 - "default.handlebars->45->2629"
59298 + "default.handlebars->45->2630"
59299 ]
59300 },
59301 {
@@ -59314,7 +59320,7 @@
59320 "zh-chs": "服务器状态",
59321 "zh-cht": "伺服器狀態",
59322 "xloc": [
59317 - "default.handlebars->45->2913"
59323 + "default.handlebars->45->2914"
59324 ]
59325 },
59326 {
@@ -59364,7 +59370,7 @@
59370 "zh-chs": "服务器跟踪",
59371 "zh-cht": "伺服器追蹤",
59372 "xloc": [
59367 - "default.handlebars->45->2995"
59373 + "default.handlebars->45->2996"
59374 ]
59375 },
59376 {
@@ -59389,7 +59395,7 @@
59395 "zh-chs": "服务器跟踪事件",
59396 "zh-cht": "服務器跟踪事件",
59397 "xloc": [
59392 - "default.handlebars->45->2974"
59398 + "default.handlebars->45->2975"
59399 ]
59400 },
59401 {
@@ -59465,7 +59471,7 @@
59471 "zh-chs": "服务器更新",
59472 "zh-cht": "伺服器更新",
59473 "xloc": [
59468 - "default.handlebars->45->2497"
59474 + "default.handlebars->45->2498"
59475 ]
59476 },
59477 {
@@ -59718,7 +59724,7 @@
59724 "zh-chs": "ServerStats.csv",
59725 "zh-cht": "ServerStats.csv",
59726 "xloc": [
59721 - "default.handlebars->45->2973"
59727 + "default.handlebars->45->2974"
59728 ]
59729 },
59730 {
@@ -59793,8 +59799,8 @@
59799 "zh-chs": "会话",
59800 "zh-cht": "節",
59801 "xloc": [
59796 - "default.handlebars->45->2756",
59797 - "default.handlebars->45->2814",
59802 + "default.handlebars->45->2757",
59803 + "default.handlebars->45->2815",
59804 "ssh.handlebars->3->24",
59805 "ssh.handlebars->3->26"
59806 ]
@@ -60979,7 +60985,7 @@
60985 "zh-chs": "显示流量",
60986 "zh-cht": "顯示流量",
60987 "xloc": [
60982 - "default.handlebars->45->2810"
60988 + "default.handlebars->45->2811"
60989 ]
60990 },
60991 {
@@ -61129,8 +61135,8 @@
61135 "zh-chs": "显示1分钟",
61136 "zh-cht": "顯示1分鐘",
61137 "xloc": [
61132 - "default.handlebars->45->2446",
61133 - "default.handlebars->45->2471"
61138 + "default.handlebars->45->2447",
61139 + "default.handlebars->45->2472"
61140 ]
61141 },
61142 {
@@ -61155,8 +61161,8 @@
61161 "zh-chs": "显示10秒",
61162 "zh-cht": "顯示10秒",
61163 "xloc": [
61158 - "default.handlebars->45->2445",
61159 - "default.handlebars->45->2470"
61164 + "default.handlebars->45->2446",
61165 + "default.handlebars->45->2471"
61166 ]
61167 },
61168 {
@@ -61181,8 +61187,8 @@
61187 "zh-chs": "显示5分钟",
61188 "zh-cht": "顯示5分鐘",
61189 "xloc": [
61184 - "default.handlebars->45->2447",
61185 - "default.handlebars->45->2472"
61190 + "default.handlebars->45->2448",
61191 + "default.handlebars->45->2473"
61192 ]
61193 },
61194 {
@@ -61207,8 +61213,8 @@
61213 "zh-chs": "显示消息,直到被用户拒绝",
61214 "zh-cht": "顯示消息,直到被用戶拒絕",
61215 "xloc": [
61210 - "default.handlebars->45->2444",
61211 - "default.handlebars->45->2469"
61216 + "default.handlebars->45->2445",
61217 + "default.handlebars->45->2470"
61218 ]
61219 },
61220 {
@@ -61625,7 +61631,7 @@
61631 "zh-chs": "单点登录",
61632 "zh-cht": "單點登錄",
61633 "xloc": [
61628 - "default.handlebars->45->2858"
61634 + "default.handlebars->45->2859"
61635 ]
61636 },
61637 {
@@ -61672,8 +61678,8 @@
61678 "zh-chs": "尺寸",
61679 "zh-cht": "尺寸",
61680 "xloc": [
61675 - "default.handlebars->45->2759",
61676 - "default.handlebars->45->2780",
61681 + "default.handlebars->45->2760",
61682 + "default.handlebars->45->2781",
61683 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSize"
61684 ]
61685 },
@@ -62977,9 +62983,9 @@
62983 "default.handlebars->45->119",
62984 "default.handlebars->45->1239",
62985 "default.handlebars->45->272",
62980 - "default.handlebars->45->2757",
62986 + "default.handlebars->45->2758",
62987 "default.handlebars->45->277",
62982 - "default.handlebars->45->2782",
62988 + "default.handlebars->45->2783",
62989 "sharing.handlebars->11->14"
62990 ]
62991 },
@@ -63600,8 +63606,8 @@
63606 "zh-chs": "状况",
63607 "zh-cht": "狀態",
63608 "xloc": [
63603 - "default.handlebars->45->2700",
63604 - "default.handlebars->45->2775",
63609 + "default.handlebars->45->2701",
63610 + "default.handlebars->45->2776",
63611 "default.handlebars->container->column_l->p42->p42tbl->1->0->7"
63612 ]
63613 },
@@ -63930,7 +63936,7 @@
63936 "zh-chs": "主题",
63937 "zh-cht": "主題",
63938 "xloc": [
63933 - "default.handlebars->45->2441"
63939 + "default.handlebars->45->2442"
63940 ]
63941 },
63942 {
@@ -63980,8 +63986,8 @@
63986 "zh-chs": "成功登录",
63987 "zh-cht": "成功登錄",
63988 "xloc": [
63983 - "default.handlebars->45->2844",
63984 - "default.handlebars->45->2864"
63989 + "default.handlebars->45->2845",
63990 + "default.handlebars->45->2865"
63991 ]
63992 },
63993 {
@@ -64956,10 +64962,10 @@
64962 "default.handlebars->45->1065",
64963 "default.handlebars->45->1939",
64964 "default.handlebars->45->2017",
64959 - "default.handlebars->45->2769",
64960 - "default.handlebars->45->2828",
64961 - "default.handlebars->45->2859",
64962 - "default.handlebars->45->2950",
64965 + "default.handlebars->45->2770",
64966 + "default.handlebars->45->2829",
64967 + "default.handlebars->45->2860",
64968 + "default.handlebars->45->2951",
64969 "default.handlebars->45->411",
64970 "default.handlebars->45->763",
64971 "default.handlebars->45->978",
@@ -65043,8 +65049,8 @@
65049 "zh-cht": "終端機通知",
65050 "xloc": [
65051 "default.handlebars->45->1895",
65046 - "default.handlebars->45->2546",
65047 - "default.handlebars->45->2648",
65052 + "default.handlebars->45->2547",
65053 + "default.handlebars->45->2649",
65054 "default.handlebars->45->861"
65055 ]
65056 },
@@ -65071,8 +65077,8 @@
65077 "zh-cht": "終端機提示",
65078 "xloc": [
65079 "default.handlebars->45->1894",
65074 - "default.handlebars->45->2545",
65075 - "default.handlebars->45->2647",
65080 + "default.handlebars->45->2546",
65081 + "default.handlebars->45->2648",
65082 "default.handlebars->45->860"
65083 ]
65084 },
@@ -65098,7 +65104,7 @@
65104 "zh-chs": "终端会话",
65105 "zh-cht": "終端會話",
65106 "xloc": [
65101 - "default.handlebars->45->2762"
65107 + "default.handlebars->45->2763"
65108 ]
65109 },
65110 {
@@ -65481,7 +65487,7 @@
65487 "zh-cht": "目前沒有任何通知",
65488 "xloc": [
65489 "default-mobile.handlebars->11->704",
65484 - "default.handlebars->45->2869"
65490 + "default.handlebars->45->2870"
65491 ]
65492 },
65493 {
@@ -65507,7 +65513,7 @@
65513 "zh-cht": "自上次登錄以來,此帳戶有 {0} 次登錄嘗試失敗。",
65514 "xloc": [
65515 "default-mobile.handlebars->11->725",
65510 - "default.handlebars->45->2890"
65516 + "default.handlebars->45->2891"
65517 ]
65518 },
65519 {
@@ -65728,9 +65734,9 @@
65734 "zh-cht": "這是一個嘉賓分享會",
65735 "xloc": [
65736 "default.handlebars->45->1410",
65731 - "default.handlebars->45->2375",
65732 - "default.handlebars->45->2751",
65733 - "default.handlebars->45->2752"
65737 + "default.handlebars->45->2376",
65738 + "default.handlebars->45->2752",
65739 + "default.handlebars->45->2753"
65740 ]
65741 },
65742 {
@@ -66127,8 +66133,8 @@
66133 "xloc": [
66134 "default-mobile.handlebars->11->360",
66135 "default.handlebars->45->1106",
66130 - "default.handlebars->45->2807",
66131 - "default.handlebars->45->2812",
66136 + "default.handlebars->45->2808",
66137 + "default.handlebars->45->2813",
66138 "player.handlebars->3->17"
66139 ]
66140 },
@@ -66155,7 +66161,7 @@
66161 "zh-cht": "時間範圍",
66162 "xloc": [
66163 "default.handlebars->45->1094",
66158 - "default.handlebars->45->2808"
66164 + "default.handlebars->45->2809"
66165 ]
66166 },
66167 {
@@ -66180,7 +66186,7 @@
66186 "zh-chs": "时间跨度",
66187 "zh-cht": "時間跨度",
66188 "xloc": [
66183 - "default.handlebars->45->2379"
66189 + "default.handlebars->45->2380"
66190 ]
66191 },
66192 {
@@ -66206,7 +66212,7 @@
66212 "zh-cht": "時間範圍",
66213 "xloc": [
66214 "default.handlebars->45->1090",
66209 - "default.handlebars->45->2806"
66215 + "default.handlebars->45->2807"
66216 ]
66217 },
66218 {
@@ -67741,7 +67747,7 @@
67747 "default.handlebars->45->1812",
67748 "default.handlebars->45->1875",
67749 "default.handlebars->45->1970",
67744 - "default.handlebars->45->2793",
67750 + "default.handlebars->45->2794",
67751 "default.handlebars->45->452",
67752 "default.handlebars->container->column_l->p11->deskarea0->deskarea4->5",
67753 "sharing.handlebars->p11->deskarea0->deskarea4->3"
@@ -68063,7 +68069,7 @@
68069 "zh-cht": "在啟用兩因素身份驗證之前,無法訪問此功能。這是額外的安全性所必需的。轉到“我的帳戶”標籤,然後查看“帳戶安全性”部分。",
68070 "xloc": [
68071 "default.handlebars->45->1805",
68066 - "default.handlebars->45->3001",
68072 + "default.handlebars->45->3002",
68073 "default.handlebars->45->781"
68074 ]
68075 },
@@ -68090,7 +68096,7 @@
68096 "zh-cht": "此模式下無法添加用戶",
68097 "xloc": [
68098 "default-mobile.handlebars->11->721",
68093 - "default.handlebars->45->2886"
68099 + "default.handlebars->45->2887"
68100 ]
68101 },
68102 {
@@ -68687,15 +68693,15 @@
68693 "default.handlebars->45->1858",
68694 "default.handlebars->45->1859",
68695 "default.handlebars->45->1876",
68690 - "default.handlebars->45->2744",
68691 - "default.handlebars->45->2761",
68692 - "default.handlebars->45->2768",
68693 - "default.handlebars->45->2838",
68696 + "default.handlebars->45->2745",
68697 + "default.handlebars->45->2762",
68698 + "default.handlebars->45->2769",
68699 "default.handlebars->45->2839",
68700 "default.handlebars->45->2840",
68701 "default.handlebars->45->2841",
68702 "default.handlebars->45->2842",
68698 - "default.handlebars->45->2862",
68703 + "default.handlebars->45->2843",
68704 + "default.handlebars->45->2863",
68705 "default.handlebars->45->44",
68706 "default.handlebars->45->51",
68707 "default.handlebars->45->52",
@@ -68750,7 +68756,7 @@
68756 "zh-chs": "未知动作",
68757 "zh-cht": "未知動作",
68758 "xloc": [
68753 - "default.handlebars->45->2919"
68759 + "default.handlebars->45->2920"
68760 ]
68761 },
68762 {
@@ -68775,8 +68781,8 @@
68781 "zh-chs": "未知设备",
68782 "zh-cht": "未知裝置",
68783 "xloc": [
68778 - "default.handlebars->45->2571",
68779 - "default.handlebars->45->2730"
68784 + "default.handlebars->45->2572",
68785 + "default.handlebars->45->2731"
68786 ]
68787 },
68788 {
@@ -68801,9 +68807,9 @@
68807 "zh-chs": "未知设备组",
68808 "zh-cht": "未知裝置群",
68809 "xloc": [
68804 - "default.handlebars->45->2565",
68805 - "default.handlebars->45->2718",
68806 - "default.handlebars->45->2923"
68810 + "default.handlebars->45->2566",
68811 + "default.handlebars->45->2719",
68812 + "default.handlebars->45->2924"
68813 ]
68814 },
68815 {
@@ -68828,7 +68834,7 @@
68834 "zh-chs": "未知群组",
68835 "zh-cht": "未知群組",
68836 "xloc": [
68831 - "default.handlebars->45->2915"
68837 + "default.handlebars->45->2916"
68838 ]
68839 },
68840 {
@@ -68879,8 +68885,8 @@
68885 "zh-chs": "未知用户",
68886 "zh-cht": "未知用戶",
68887 "xloc": [
68882 - "default.handlebars->45->2843",
68883 - "default.handlebars->45->2863"
68888 + "default.handlebars->45->2844",
68889 + "default.handlebars->45->2864"
68890 ]
68891 },
68892 {
@@ -68905,7 +68911,7 @@
68911 "zh-chs": "未知用户组",
68912 "zh-cht": "未知用戶群",
68913 "xloc": [
68908 - "default.handlebars->45->2724"
68914 + "default.handlebars->45->2725"
68915 ]
68916 },
68917 {
@@ -69010,7 +69016,7 @@
69016 "zh-chs": "解锁帐户",
69017 "zh-cht": "解鎖帳戶",
69018 "xloc": [
69013 - "default.handlebars->45->2434"
69019 + "default.handlebars->45->2435"
69020 ]
69021 },
69022 {
@@ -69142,7 +69148,7 @@
69148 "zh-chs": "最新",
69149 "zh-cht": "最新",
69150 "xloc": [
69145 - "default.handlebars->45->3006"
69151 + "default.handlebars->45->3007"
69152 ]
69153 },
69154 {
@@ -69695,7 +69701,7 @@
69701 "zh-chs": "用法",
69702 "zh-cht": "用法",
69703 "xloc": [
69698 - "default.handlebars->45->2969"
69704 + "default.handlebars->45->2970"
69705 ]
69706 },
69707 {
@@ -69899,8 +69905,8 @@
69905 "zh-chs": "用过的",
69906 "zh-cht": "用過的",
69907 "xloc": [
69902 - "default.handlebars->45->2909",
69903 - "default.handlebars->45->2911"
69908 + "default.handlebars->45->2910",
69909 + "default.handlebars->45->2912"
69910 ]
69911 },
69912 {
@@ -69927,13 +69933,13 @@
69933 "xloc": [
69934 "default.handlebars->45->117",
69935 "default.handlebars->45->1935",
69930 - "default.handlebars->45->2386",
69931 - "default.handlebars->45->2416",
69932 - "default.handlebars->45->2561",
69933 - "default.handlebars->45->2787",
69934 - "default.handlebars->45->2794",
69935 - "default.handlebars->45->2798",
69936 - "default.handlebars->45->2815",
69936 + "default.handlebars->45->2387",
69937 + "default.handlebars->45->2417",
69938 + "default.handlebars->45->2562",
69939 + "default.handlebars->45->2788",
69940 + "default.handlebars->45->2795",
69941 + "default.handlebars->45->2799",
69942 + "default.handlebars->45->2816",
69943 "default.handlebars->45->351",
69944 "default.handlebars->45->973"
69945 ]
@@ -69960,7 +69966,7 @@
69966 "zh-chs": "用户+档案",
69967 "zh-cht": "用戶+檔案",
69968 "xloc": [
69963 - "default.handlebars->45->2417"
69969 + "default.handlebars->45->2418"
69970 ]
69971 },
69972 {
@@ -69986,10 +69992,10 @@
69992 "zh-cht": "用戶帳戶導入",
69993 "xloc": [
69994 "default.handlebars->45->1965",
69989 - "default.handlebars->45->2452",
69995 "default.handlebars->45->2453",
69991 - "default.handlebars->45->2455",
69992 - "default.handlebars->45->2457"
69996 + "default.handlebars->45->2454",
69997 + "default.handlebars->45->2456",
69998 + "default.handlebars->45->2458"
69999 ]
70000 },
70001 {
@@ -70014,7 +70020,7 @@
70020 "zh-chs": "用户帐户",
70021 "zh-cht": "用戶帳戶",
70022 "xloc": [
70017 - "default.handlebars->45->2928"
70023 + "default.handlebars->45->2929"
70024 ]
70025 },
70026 {
@@ -70068,8 +70074,8 @@
70074 "xloc": [
70075 "default.handlebars->45->1099",
70076 "default.handlebars->45->1901",
70071 - "default.handlebars->45->2552",
70072 - "default.handlebars->45->2654",
70077 + "default.handlebars->45->2553",
70078 + "default.handlebars->45->2655",
70079 "default.handlebars->45->287",
70080 "default.handlebars->45->867"
70081 ]
@@ -70098,9 +70104,9 @@
70104 "xloc": [
70105 "default.handlebars->45->2037",
70106 "default.handlebars->45->2038",
70101 - "default.handlebars->45->2522",
70102 - "default.handlebars->45->2726",
70103 - "default.handlebars->45->2747",
70107 + "default.handlebars->45->2523",
70108 + "default.handlebars->45->2727",
70109 + "default.handlebars->45->2748",
70110 "default.handlebars->45->972"
70111 ]
70112 },
@@ -70151,7 +70157,7 @@
70157 "zh-chs": "用户组成员",
70158 "zh-cht": "用戶群成員",
70159 "xloc": [
70154 - "default.handlebars->45->2723"
70160 + "default.handlebars->45->2724"
70161 ]
70162 },
70163 {
@@ -70202,8 +70208,8 @@
70208 "zh-cht": "用戶識別碼",
70209 "xloc": [
70210 "default.handlebars->45->2106",
70205 - "default.handlebars->45->2608",
70206 - "default.handlebars->45->2609"
70211 + "default.handlebars->45->2609",
70212 + "default.handlebars->45->2610"
70213 ]
70214 },
70215 {
@@ -70229,7 +70235,7 @@
70235 "zh-cht": "用戶標識符",
70236 "xloc": [
70237 "default.handlebars->45->2035",
70232 - "default.handlebars->45->2592"
70238 + "default.handlebars->45->2593"
70239 ]
70240 },
70241 {
@@ -70279,7 +70285,7 @@
70285 "zh-chs": "用户列表输出",
70286 "zh-cht": "用戶列表輸出",
70287 "xloc": [
70282 - "default.handlebars->45->2464"
70288 + "default.handlebars->45->2465"
70289 ]
70290 },
70291 {
@@ -70304,7 +70310,7 @@
70310 "zh-chs": "用户登录",
70311 "zh-cht": "用戶登錄",
70312 "xloc": [
70307 - "default.handlebars->45->2792"
70313 + "default.handlebars->45->2793"
70314 ]
70315 },
70316 {
@@ -70451,7 +70457,7 @@
70457 "zh-chs": "用户节",
70458 "zh-cht": "用戶節",
70459 "xloc": [
70454 - "default.handlebars->45->2960"
70460 + "default.handlebars->45->2961"
70461 ]
70462 },
70463 {
@@ -70505,7 +70511,7 @@
70511 "zh-chs": "用户流量使用",
70512 "zh-cht": "用戶流量使用",
70513 "xloc": [
70508 - "default.handlebars->45->2791"
70514 + "default.handlebars->45->2792"
70515 ]
70516 },
70517 {
@@ -70606,7 +70612,7 @@
70612 "zh-cht": "用戶已存在",
70613 "xloc": [
70614 "default-mobile.handlebars->11->720",
70609 - "default.handlebars->45->2885"
70615 + "default.handlebars->45->2886"
70616 ]
70617 },
70618 {
@@ -70838,7 +70844,7 @@
70844 "zh-cht": "未找到用戶 {0}。",
70845 "xloc": [
70846 "default-mobile.handlebars->11->728",
70841 - "default.handlebars->45->2893"
70847 + "default.handlebars->45->2894"
70848 ]
70849 },
70850 {
@@ -70898,7 +70904,7 @@
70904 "default.handlebars->45->1836",
70905 "default.handlebars->45->1841",
70906 "default.handlebars->45->1879",
70901 - "default.handlebars->45->2476",
70907 + "default.handlebars->45->2477",
70908 "default.handlebars->45->316",
70909 "default.handlebars->45->461",
70910 "login2.handlebars->centralTable->1->0->logincell->loginpanel->loginpanelform->loginuserpassdiv->1->1->0->1",
@@ -71048,9 +71054,9 @@
71054 "zh-chs": "用户",
71055 "zh-cht": "用戶",
71056 "xloc": [
71051 - "default.handlebars->45->2510",
71052 - "default.handlebars->45->2553",
71053 - "default.handlebars->45->2959",
71057 + "default.handlebars->45->2511",
71058 + "default.handlebars->45->2554",
71059 + "default.handlebars->45->2960",
71060 "default.handlebars->container->topbar->1->1->UsersSubMenuSpan->UsersSubMenu->1->0->UsersGeneral"
71061 ]
71062 },
@@ -71076,7 +71082,7 @@
71082 "zh-chs": "用户会话",
71083 "zh-cht": "用戶節",
71084 "xloc": [
71079 - "default.handlebars->45->2932"
71085 + "default.handlebars->45->2933"
71086 ]
71087 },
71088 {
@@ -71101,7 +71107,7 @@
71107 "zh-chs": "用户视图",
71108 "zh-cht": "用戶視圖",
71109 "xloc": [
71104 - "default.handlebars->45->2450"
71110 + "default.handlebars->45->2451"
71111 ]
71112 },
71113 {
@@ -71127,7 +71133,7 @@
71133 "zh-cht": "未找到用戶 {0}。",
71134 "xloc": [
71135 "default-mobile.handlebars->11->729",
71130 - "default.handlebars->45->2894"
71136 + "default.handlebars->45->2895"
71137 ]
71138 },
71139 {
@@ -71254,7 +71260,7 @@
71260 "zh-chs": "验证电邮",
71261 "zh-cht": "驗證電郵",
71262 "xloc": [
71257 - "default.handlebars->45->2429"
71263 + "default.handlebars->45->2430"
71264 ]
71265 },
71266 {
@@ -71280,7 +71286,7 @@
71286 "zh-cht": "驗證異常",
71287 "xloc": [
71288 "default-mobile.handlebars->11->722",
71283 - "default.handlebars->45->2887"
71289 + "default.handlebars->45->2888"
71290 ]
71291 },
71292 {
@@ -71434,7 +71440,7 @@
71440 "zh-chs": "已验证",
71441 "zh-cht": "已驗證",
71442 "xloc": [
71437 - "default.handlebars->45->2702"
71443 + "default.handlebars->45->2703"
71444 ]
71445 },
71446 {
@@ -71487,7 +71493,7 @@
71493 "xloc": [
71494 "default-mobile.handlebars->11->94",
71495 "default.handlebars->45->1521",
71490 - "default.handlebars->45->2425"
71496 + "default.handlebars->45->2426"
71497 ]
71498 },
71499 {
@@ -71621,7 +71627,7 @@
71627 "zh-chs": "版本不兼容,请先升级您的MeshCentral",
71628 "zh-cht": "版本不兼容,請先升級你的MeshCentral",
71629 "xloc": [
71624 - "default.handlebars->45->3002"
71630 + "default.handlebars->45->3003"
71631 ]
71632 },
71633 {
@@ -71771,7 +71777,7 @@
71777 "zh-chs": "查看所有事件",
71778 "zh-cht": "查看所有事件",
71779 "xloc": [
71774 - "default.handlebars->45->2501"
71780 + "default.handlebars->45->2502"
71781 ]
71782 },
71783 {
@@ -71818,8 +71824,8 @@
71824 "zh-chs": "查看变更日志",
71825 "zh-cht": "查看變更日誌",
71826 "xloc": [
71821 - "default.handlebars->45->3005",
71822 - "default.handlebars->45->3007"
71827 + "default.handlebars->45->3006",
71828 + "default.handlebars->45->3008"
71829 ]
71830 },
71831 {
@@ -71894,7 +71900,7 @@
71900 "zh-chs": "查看有关此用户的注释",
71901 "zh-cht": "查看有關此用戶的註釋",
71902 "xloc": [
71897 - "default.handlebars->45->2664"
71903 + "default.handlebars->45->2665"
71904 ]
71905 },
71906 {
@@ -71945,7 +71951,7 @@
71951 "zh-chs": "查看此用户以前的登录",
71952 "zh-cht": "查看此用戶以前的登錄信息",
71953 "xloc": [
71948 - "default.handlebars->45->2677"
71954 + "default.handlebars->45->2678"
71955 ]
71956 },
71957 {
@@ -72468,8 +72474,8 @@
72474 "zh-chs": "网络服务器",
72475 "zh-cht": "網絡伺服器",
72476 "xloc": [
72471 - "default.handlebars->45->2985",
72472 - "default.handlebars->45->2986"
72477 + "default.handlebars->45->2986",
72478 + "default.handlebars->45->2987"
72479 ]
72480 },
72481 {
@@ -72494,7 +72500,7 @@
72500 "zh-chs": "Web 服务器 HTTP 标头",
72501 "zh-cht": "Web 服務器 HTTP 標頭",
72502 "xloc": [
72497 - "default.handlebars->45->2989"
72503 + "default.handlebars->45->2990"
72504 ]
72505 },
72506 {
@@ -72519,7 +72525,7 @@
72525 "zh-chs": "Web服务器请求",
72526 "zh-cht": "Web伺服器請求",
72527 "xloc": [
72522 - "default.handlebars->45->2987"
72528 + "default.handlebars->45->2988"
72529 ]
72530 },
72531 {
@@ -72544,7 +72550,7 @@
72550 "zh-chs": "Web套接字中继",
72551 "zh-cht": "Web插座中繼",
72552 "xloc": [
72547 - "default.handlebars->45->2988"
72553 + "default.handlebars->45->2989"
72554 ]
72555 },
72556 {
@@ -72569,7 +72575,7 @@
72575 "zh-chs": "网络RDP",
72576 "zh-cht": "網絡RDP",
72577 "xloc": [
72572 - "default.handlebars->45->2834",
72578 + "default.handlebars->45->2835",
72579 "default.handlebars->45->943",
72580 "default.handlebars->contextMenu->cxwebrdp"
72581 ]
@@ -72596,7 +72602,7 @@
72602 "zh-chs": "网络SFTP",
72603 "zh-cht": "網絡SFTP",
72604 "xloc": [
72599 - "default.handlebars->45->2836"
72605 + "default.handlebars->45->2837"
72606 ]
72607 },
72608 {
@@ -72621,7 +72627,7 @@
72627 "zh-chs": "网络SSH",
72628 "zh-cht": "網絡SSH",
72629 "xloc": [
72624 - "default.handlebars->45->2835",
72630 + "default.handlebars->45->2836",
72631 "default.handlebars->45->945",
72632 "default.handlebars->contextMenu->cxwebssh"
72633 ]
@@ -72648,7 +72654,7 @@
72654 "zh-chs": "网络VNC",
72655 "zh-cht": "網絡-VNC",
72656 "xloc": [
72651 - "default.handlebars->45->2837",
72657 + "default.handlebars->45->2838",
72658 "default.handlebars->45->941",
72659 "default.handlebars->contextMenu->cxwebvnc"
72660 ]
@@ -72675,7 +72681,7 @@
72681 "zh-chs": "网络RDP",
72682 "zh-cht": "WebRDP",
72683 "xloc": [
72678 - "default.handlebars->45->2953"
72684 + "default.handlebars->45->2954"
72685 ]
72686 },
72687 {
@@ -72700,7 +72706,7 @@
72706 "zh-chs": "网络SSH",
72707 "zh-cht": "網絡SSH",
72708 "xloc": [
72703 - "default.handlebars->45->2954"
72709 + "default.handlebars->45->2955"
72710 ]
72711 },
72712 {
@@ -72750,7 +72756,7 @@
72756 "zh-chs": "网络VNC",
72757 "zh-cht": "網絡VNC",
72758 "xloc": [
72753 - "default.handlebars->45->2955"
72759 + "default.handlebars->45->2956"
72760 ]
72761 },
72762 {
@@ -73000,7 +73006,7 @@
73006 "zh-chs": "下次登录时将更改。",
73007 "zh-cht": "下次登入時將更改。",
73008 "xloc": [
73003 - "default.handlebars->45->2634"
73009 + "default.handlebars->45->2635"
73010 ]
73011 },
73012 {
@@ -74884,7 +74890,7 @@
74890 "zh-chs": "\\\\'",
74891 "zh-cht": "\\\\'",
74892 "xloc": [
74887 - "default.handlebars->45->3003"
74893 + "default.handlebars->45->3004"
74894 ]
74895 },
74896 {
@@ -75603,8 +75609,8 @@
75609 "zh-chs": "eventslist.csv",
75610 "zh-cht": "eventslist.csv",
75611 "xloc": [
75606 - "default.handlebars->45->2393",
75607 - "default.handlebars->45->2398"
75612 + "default.handlebars->45->2394",
75613 + "default.handlebars->45->2399"
75614 ]
75615 },
75616 {
@@ -75629,8 +75635,8 @@
75635 "zh-chs": "eventslist.json",
75636 "zh-cht": "eventslist.json",
75637 "xloc": [
75632 - "default.handlebars->45->2395",
75633 - "default.handlebars->45->2399"
75638 + "default.handlebars->45->2396",
75639 + "default.handlebars->45->2400"
75640 ]
75641 },
75642 {
@@ -75706,8 +75712,8 @@
75712 "zh-chs": "免费",
75713 "zh-cht": "免費",
75714 "xloc": [
75709 - "default.handlebars->45->2940",
75710 - "default.handlebars->45->2943"
75715 + "default.handlebars->45->2941",
75716 + "default.handlebars->45->2944"
75717 ]
75718 },
75719 {
@@ -75994,7 +76000,7 @@
76000 "zh-chs": "ID、姓名、电子邮件、创建、lastlogin、组、authfactors、siteadmin、useradmin、锁定",
76001 "zh-cht": "ID、姓名、電子郵件、創建、lastlogin、組、authfactors、siteadmin、useradmin、鎖定",
76002 "xloc": [
75997 - "default.handlebars->45->2465"
76003 + "default.handlebars->45->2466"
76004 ]
76005 },
76006 {
@@ -76213,7 +76219,7 @@
76219 "zh-chs": "k max,默认为空白",
76220 "zh-cht": "k max,默認為空白",
76221 "xloc": [
76216 - "default.handlebars->45->2493"
76222 + "default.handlebars->45->2494"
76223 ]
76224 },
76225 {
@@ -76873,7 +76879,7 @@
76879 "zh-chs": "servertrace.csv",
76880 "zh-cht": "servertrace.csv",
76881 "xloc": [
76876 - "default.handlebars->45->2997"
76882 + "default.handlebars->45->2998"
76883 ]
76884 },
76885 {
@@ -76976,7 +76982,7 @@
76982 "zh-chs": "time, conn.agent, conn.users, conn.usersessions, conn.relaysession, conn.intelamt, mem.external, mem.heapused, mem.heaptotal, mem.rss",
76983 "zh-cht": "time, conn.agent, conn.users, conn.usersessions, conn.relaysession, conn.intelamt, mem.external, mem.heapused, mem.heaptotal, mem.rss",
76984 "xloc": [
76979 - "default.handlebars->45->2972"
76985 + "default.handlebars->45->2973"
76986 ]
76987 },
76988 {
@@ -77001,7 +77007,7 @@
77007 "zh-chs": "时间,来源,信息",
77008 "zh-cht": "時間,來源,訊息",
77009 "xloc": [
77004 - "default.handlebars->45->2996"
77010 + "default.handlebars->45->2997"
77011 ]
77012 },
77013 {
@@ -77048,8 +77054,8 @@
77054 "zh-chs": "总计",
77055 "zh-cht": "總",
77056 "xloc": [
77051 - "default.handlebars->45->2941",
77052 - "default.handlebars->45->2944"
77057 + "default.handlebars->45->2942",
77058 + "default.handlebars->45->2945"
77059 ]
77060 },
77061 {
@@ -77177,8 +77183,8 @@
77183 "zh-chs": "userlist.csv",
77184 "zh-cht": "userlist.csv",
77185 "xloc": [
77180 - "default.handlebars->45->2461",
77181 - "default.handlebars->45->2466"
77186 + "default.handlebars->45->2462",
77187 + "default.handlebars->45->2467"
77188 ]
77189 },
77190 {
@@ -77203,8 +77209,8 @@
77209 "zh-chs": "userlist.json",
77210 "zh-cht": "userlist.json",
77211 "xloc": [
77206 - "default.handlebars->45->2463",
77207 - "default.handlebars->45->2467"
77212 + "default.handlebars->45->2464",
77213 + "default.handlebars->45->2468"
77214 ]
77215 },
77216 {
@@ -77229,7 +77235,7 @@
77235 "zh-chs": "utc,时间,类型,指令,用户,设备,消息",
77236 "zh-cht": "utc,時間,類型,指令,用戶,裝置,消息",
77237 "xloc": [
77232 - "default.handlebars->45->2397"
77238 + "default.handlebars->45->2398"
77239 ]
77240 },
77241 {
@@ -77501,7 +77507,7 @@
77507 "xloc": [
77508 "default.handlebars->45->2179",
77509 "default.handlebars->45->2184",
77504 - "default.handlebars->45->2760"
77510 + "default.handlebars->45->2761"
77511 ]
77512 },
77513 {
@@ -77626,7 +77632,7 @@
77632 "zh-chs": "{0}个活跃会话",
77633 "zh-cht": "{0}個活躍節",
77634 "xloc": [
77629 - "default.handlebars->45->2680"
77635 + "default.handlebars->45->2681"
77636 ]
77637 },
77638 {
@@ -77679,7 +77685,7 @@
77685 "xloc": [
77686 "default-mobile.handlebars->11->150",
77687 "default.handlebars->45->2194",
77682 - "default.handlebars->45->2781",
77688 + "default.handlebars->45->2782",
77689 "download.handlebars->3->2",
77690 "download2.handlebars->5->2",
77691 "sharing.handlebars->11->97"
@@ -77830,7 +77836,7 @@
77836 "zh-chs": "{0}个群组",
77837 "zh-cht": "{0}個群組",
77838 "xloc": [
77833 - "default.handlebars->45->2639"
77839 + "default.handlebars->45->2640"
77840 ]
77841 },
77842 {
@@ -78076,7 +78082,7 @@
78082 "zh-chs": "{0}未显示更多用户,请使用搜索框查找用户...",
78083 "zh-cht": "{0}未顯示更多用戶,請使用搜索框查找用戶...",
78084 "xloc": [
78079 - "default.handlebars->45->2407"
78085 + "default.handlebars->45->2408"
78086 ]
78087 },
78088 {
@@ -78499,7 +78505,7 @@
78505 "default-mobile.handlebars->11->219",
78506 "default-mobile.handlebars->11->223",
78507 "default-mobile.handlebars->11->227",
78502 - "default.handlebars->45->2411",
78508 + "default.handlebars->45->2412",
78509 "default.handlebars->45->403",
78510 "default.handlebars->45->406",
78511 "default.handlebars->45->410",