create blank file with New File button in file manager #7525

Signed-off-by: si458 <simonsmith5521@gmail.com>

si458 committed Jan 2, 2026 at 20:18 UTC b32eb2ef9caa6fae4c64d8c5c2fa6ad750928c73
7 files changed +3905 -3789
agents/agentrecoverycore.js
+5
@@ -258,6 +258,11 @@ require('MeshAgent').AddCommandHandler(function (data)
258 fs.mkdirSync(cmd.path);
259 break;
260 }
261 + case 'mkfile': {
262 + // Create a new empty file
263 + fs.closeSync(fs.openSync(cmd.path, 'w'));
264 + break;
265 + }
266 case 'rm': {
267 // Delete, possibly recursive delete
268 for (var i in cmd.delfiles)
agents/meshcmd.js
+5
@@ -2016,6 +2016,11 @@ function kvmCtrlData(channel, cmd) {
2016 fs.mkdirSync(cmd.path);
2017 break;
2018 }
2019 + case 'mkfile': {
2020 + // Create a new empty file
2021 + fs.closeSync(fs.openSync(cmd.path, 'w'));
2022 + break;
2023 + }
2024 case 'rm': {
2025 // Remove many files or folders
2026 for (var i in cmd.delfiles) {
agents/meshcore.js
+6
@@ -3455,6 +3455,12 @@ function onTunnelData(data)
3455 MeshServerLogEx(44, [cmd.path], "Create folder: \"" + cmd.path + "\"", this.httprequest);
3456 break;
3457 }
3458 + case 'mkfile': {
3459 + // Create a new empty file
3460 + fs.closeSync(fs.openSync(cmd.path, 'w'));
3461 + MeshServerLogEx(164, [cmd.path], "Create file: \"" + cmd.path + "\"", this.httprequest);
3462 + break;
3463 + }
3464 case 'rm': {
3465 // Delete, possibly recursive delete
3466 for (var i in cmd.delfiles) {
apprelays.js
+22
@@ -2054,6 +2054,28 @@ module.exports.CreateSshFilesRelay = function (parent, db, ws, req, domain, user
2054 parent.parent.DispatchEvent(targets, obj, { etype: 'node', action: 'agentlog', nodeid: obj.nodeid, userid: user._id, username: user.name, msgid: 44, msgArgs: [requestedPath], msg: 'Create folder: \"' + requestedPath + '\"', domain: domain.id });
2055 break;
2056 }
2057 + case 'mkfile': {
2058 + if (obj.sftp == null) return;
2059 + var requestedPath = msg.path;
2060 + if (requestedPath.startsWith('/') == false) { requestedPath = '/' + requestedPath; }
2061 + obj.sftp.open(requestedPath, 'w', 0o666, function (err, handle) {
2062 + if (err != null) {
2063 + // To-do: Report error?
2064 + } else {
2065 + obj.uploadHandle = handle;
2066 + if (obj.uploadHandle != null) {
2067 + obj.sftp.close(obj.uploadHandle, function () {
2068 + // Event the file create
2069 + const targets = ['*', 'server-users'];
2070 + if (user.groups) { for (var i in user.groups) { targets.push('server-users:' + i); } }
2071 + parent.parent.DispatchEvent(targets, obj, { etype: 'node', action: 'agentlog', nodeid: obj.nodeid, userid: user._id, username: user.name, msgid: 164, msgArgs: [requestedPath], msg: 'Create file: \"' + requestedPath + '\"', domain: domain.id });
2072 + });
2073 + delete obj.uploadHandle;
2074 + }
2075 + }
2076 + });
2077 + break;
2078 + }
2079 case 'rm': {
2080 if (obj.sftp == null) return;
2081 var requestedPath = msg.path;
translate/translate.json
+3849 -3787
@@ -26,10 +26,10 @@
26 "zh-chs": " + CIRA",
27 "zh-cht": " + CIRA",
28 "xloc": [
29 - "default.handlebars->119->2241",
30 - "default.handlebars->119->2243",
31 - "default3.handlebars->117->2237",
32 - "default3.handlebars->117->2239"
29 + "default.handlebars->119->2242",
30 + "default.handlebars->119->2244",
31 + "default3.handlebars->117->2238",
32 + "default3.handlebars->117->2240"
33 ]
34 },
35 {
@@ -330,8 +330,8 @@
330 "zh-chs": " 可以使用密码提示,但不建议使用。",
331 "zh-cht": " 可以使用密碼提示,但不建議使用。",
332 "xloc": [
333 - "default.handlebars->119->2113",
334 - "default3.handlebars->117->2093"
333 + "default.handlebars->119->2114",
334 + "default3.handlebars->117->2094"
335 ]
336 },
337 {
@@ -360,10 +360,10 @@
360 "zh-chs": " 用户需要先登录到该服务器一次,然后才能将其添加到设备组。",
361 "zh-cht": " 用戶需要先登入到該伺服器一次,然後才能將其新增到裝置群。",
362 "xloc": [
363 - "default.handlebars->119->2367",
364 - "default.handlebars->119->2956",
365 - "default3.handlebars->117->2364",
366 - "default3.handlebars->117->2950"
363 + "default.handlebars->119->2368",
364 + "default.handlebars->119->2958",
365 + "default3.handlebars->117->2365",
366 + "default3.handlebars->117->2952"
367 ]
368 },
369 {
@@ -985,9 +985,9 @@
985 "zh-chs": "* 8-16个字符,1个大写,1个小写,1个数字,1个非字母数字。",
986 "zh-cht": "* 8-16個字符,1個大寫,1個小寫,1個數字,1個非字母數字。",
987 "xloc": [
988 - "default.handlebars->119->2325",
988 + "default.handlebars->119->2326",
989 "default.handlebars->119->542",
990 - "default3.handlebars->117->2319",
990 + "default3.handlebars->117->2320",
991 "default3.handlebars->117->538"
992 ]
993 },
@@ -1100,17 +1100,17 @@
1100 "default-mobile.handlebars->53->807",
1101 "default-mobile.handlebars->53->809",
1102 "default-mobile.handlebars->53->811",
1103 - "default.handlebars->119->1644",
1104 - "default.handlebars->119->1646",
1105 - "default.handlebars->119->1648",
1106 - "default.handlebars->119->2443",
1107 - "default.handlebars->119->2729",
1103 + "default.handlebars->119->1645",
1104 + "default.handlebars->119->1647",
1105 + "default.handlebars->119->1649",
1106 + "default.handlebars->119->2444",
1107 + "default.handlebars->119->2731",
1108 "default.handlebars->119->998",
1109 - "default3.handlebars->117->1629",
1110 - "default3.handlebars->117->1631",
1111 - "default3.handlebars->117->1633",
1112 - "default3.handlebars->117->2440",
1113 - "default3.handlebars->117->2726",
1109 + "default3.handlebars->117->1630",
1110 + "default3.handlebars->117->1632",
1111 + "default3.handlebars->117->1634",
1112 + "default3.handlebars->117->2441",
1113 + "default3.handlebars->117->2728",
1114 "default3.handlebars->117->994"
1115 ]
1116 },
@@ -1286,8 +1286,8 @@
1286 "zh-cht": ",MQTT在線",
1287 "xloc": [
1288 "default-mobile.handlebars->53->947",
1289 - "default.handlebars->119->1785",
1290 - "default3.handlebars->117->1768"
1289 + "default.handlebars->119->1786",
1290 + "default3.handlebars->117->1769"
1291 ]
1292 },
1293 {
@@ -1317,9 +1317,9 @@
1317 "zh-cht": ", 不同意",
1318 "xloc": [
1319 "default.handlebars->119->1093",
1320 - "default.handlebars->119->2283",
1320 + "default.handlebars->119->2284",
1321 "default3.handlebars->117->1089",
1322 - "default3.handlebars->117->2279"
1322 + "default3.handlebars->117->2280"
1323 ]
1324 },
1325 {
@@ -1349,9 +1349,9 @@
1349 "zh-cht": ",提示同意",
1350 "xloc": [
1351 "default.handlebars->119->1094",
1352 - "default.handlebars->119->2284",
1352 + "default.handlebars->119->2285",
1353 "default3.handlebars->117->1090",
1354 - "default3.handlebars->117->2280"
1354 + "default3.handlebars->117->2281"
1355 ]
1356 },
1357 {
@@ -1410,9 +1410,9 @@
1410 "zh-cht": ", 每天重複",
1411 "xloc": [
1412 "default.handlebars->119->1090",
1413 - "default.handlebars->119->2280",
1413 + "default.handlebars->119->2281",
1414 "default3.handlebars->117->1086",
1415 - "default3.handlebars->117->2276"
1415 + "default3.handlebars->117->2277"
1416 ]
1417 },
1418 {
@@ -1442,9 +1442,9 @@
1442 "zh-cht": ", 每週重複一次",
1443 "xloc": [
1444 "default.handlebars->119->1091",
1445 - "default.handlebars->119->2281",
1445 + "default.handlebars->119->2282",
1446 "default3.handlebars->117->1087",
1447 - "default3.handlebars->117->2277"
1447 + "default3.handlebars->117->2278"
1448 ]
1449 },
1450 {
@@ -1619,9 +1619,9 @@
1619 "zh-cht": ", 工具欄",
1620 "xloc": [
1621 "default.handlebars->119->1095",
1622 - "default.handlebars->119->2285",
1622 + "default.handlebars->119->2286",
1623 "default3.handlebars->117->1091",
1624 - "default3.handlebars->117->2281"
1624 + "default3.handlebars->117->2282"
1625 ]
1626 },
1627 {
@@ -1677,9 +1677,9 @@
1677 "zh-cht": ", 僅查看桌面",
1678 "xloc": [
1679 "default.handlebars->119->1092",
1680 - "default.handlebars->119->2282",
1680 + "default.handlebars->119->2283",
1681 "default3.handlebars->117->1088",
1682 - "default3.handlebars->117->2278"
1682 + "default3.handlebars->117->2279"
1683 ]
1684 },
1685 {
@@ -2051,11 +2051,11 @@
2051 "default-mobile.handlebars->53->360",
2052 "default-mobile.handlebars->53->700",
2053 "default.handlebars->119->1532",
2054 - "default.handlebars->119->2509",
2055 - "default.handlebars->119->3200",
2054 + "default.handlebars->119->2510",
2055 + "default.handlebars->119->3202",
2056 "default3.handlebars->117->1517",
2057 - "default3.handlebars->117->2506",
2058 - "default3.handlebars->117->3190",
2057 + "default3.handlebars->117->2507",
2058 + "default3.handlebars->117->3192",
2059 "sharing-mobile.handlebars->53->79",
2060 "sharing.handlebars->47->50"
2061 ]
@@ -2142,8 +2142,8 @@
2142 "en": "0 bps",
2143 "xloc": [
2144 "default-mobile.handlebars->53->367",
2145 - "default.handlebars->119->2527",
2146 - "default3.handlebars->117->2524"
2145 + "default.handlebars->119->2528",
2146 + "default3.handlebars->117->2525"
2147 ]
2148 },
2149 {
@@ -2250,8 +2250,8 @@
2250 "zh-chs": "1个活跃时段",
2251 "zh-cht": "1個活躍時段",
2252 "xloc": [
2253 - "default.handlebars->119->3051",
2254 - "default3.handlebars->117->3045"
2253 + "default.handlebars->119->3053",
2254 + "default3.handlebars->117->3047"
2255 ]
2256 },
2257 {
@@ -2282,8 +2282,8 @@
2282 "xloc": [
2283 "default-mobile.handlebars->53->1090",
2284 "default-mobile.handlebars->53->375",
2285 - "default.handlebars->119->2538",
2286 - "default3.handlebars->117->2535",
2285 + "default.handlebars->119->2539",
2286 + "default3.handlebars->117->2536",
2287 "download.handlebars->7->1",
2288 "download2.handlebars->11->1",
2289 "sharing-mobile.handlebars->53->112",
@@ -2410,8 +2410,8 @@
2410 "zh-chs": "1组",
2411 "zh-cht": "1群",
2412 "xloc": [
2413 - "default.handlebars->119->3006",
2414 - "default3.handlebars->117->3000"
2413 + "default.handlebars->119->3008",
2414 + "default3.handlebars->117->3002"
2415 ]
2416 },
2417 {
@@ -2475,9 +2475,9 @@
2475 "zh-cht": "1分鐘",
2476 "xloc": [
2477 "default.handlebars->119->1203",
2478 - "default.handlebars->119->2078",
2478 + "default.handlebars->119->2079",
2479 "default3.handlebars->117->1197",
2480 - "default3.handlebars->117->2059"
2480 + "default3.handlebars->117->2060"
2481 ]
2482 },
2483 {
@@ -2595,8 +2595,8 @@
2595 "zh-chs": "有1个用户没有显示,请使用搜索框查找用户...",
2596 "zh-cht": "有1個用戶沒有顯示,請使用搜尋框搜尋用戶...",
2597 "xloc": [
2598 - "default.handlebars->119->2761",
2599 - "default3.handlebars->117->2758"
2598 + "default.handlebars->119->2763",
2599 + "default3.handlebars->117->2760"
2600 ]
2601 },
2602 {
@@ -2860,7 +2860,7 @@
2860 "default-mobile.handlebars->53->422",
2861 "default-mobile.handlebars->53->426",
2862 "default-mobile.handlebars->53->430",
2863 - "default.handlebars->119->2765",
2863 + "default.handlebars->119->2767",
2864 "default.handlebars->119->460",
2865 "default.handlebars->119->463",
2866 "default.handlebars->119->467",
@@ -2868,7 +2868,7 @@
2868 "default.handlebars->119->475",
2869 "default.handlebars->119->479",
2870 "default.handlebars->119->483",
2871 - "default3.handlebars->117->2762",
2871 + "default3.handlebars->117->2764",
2872 "default3.handlebars->117->456",
2873 "default3.handlebars->117->459",
2874 "default3.handlebars->117->463",
@@ -3088,9 +3088,9 @@
3088 "zh-cht": "10分鐘",
3089 "xloc": [
3090 "default.handlebars->119->1205",
3091 - "default.handlebars->119->2080",
3091 + "default.handlebars->119->2081",
3092 "default3.handlebars->117->1199",
3093 - "default3.handlebars->117->2061"
3093 + "default3.handlebars->117->2062"
3094 ]
3095 },
3096 {
@@ -3299,9 +3299,9 @@
3299 "zh-cht": "12小時",
3300 "xloc": [
3301 "default.handlebars->119->1213",
3302 - "default.handlebars->119->2088",
3302 + "default.handlebars->119->2089",
3303 "default3.handlebars->117->1207",
3304 - "default3.handlebars->117->2069"
3304 + "default3.handlebars->117->2070"
3305 ]
3306 },
3307 {
@@ -3446,9 +3446,9 @@
3446 "zh-cht": "15分鐘",
3447 "xloc": [
3448 "default.handlebars->119->1206",
3449 - "default.handlebars->119->2081",
3449 + "default.handlebars->119->2082",
3450 "default3.handlebars->117->1200",
3451 - "default3.handlebars->117->2062"
3451 + "default3.handlebars->117->2063"
3452 ]
3453 },
3454 {
@@ -3478,9 +3478,9 @@
3478 "zh-cht": "16小時",
3479 "xloc": [
3480 "default.handlebars->119->1214",
3481 - "default.handlebars->119->2089",
3481 + "default.handlebars->119->2090",
3482 "default3.handlebars->117->1208",
3483 - "default3.handlebars->117->2070"
3483 + "default3.handlebars->117->2071"
3484 ]
3485 },
3486 {
@@ -3626,9 +3626,9 @@
3626 "zh-cht": "2天",
3627 "xloc": [
3628 "default.handlebars->119->1216",
3629 - "default.handlebars->119->2091",
3629 + "default.handlebars->119->2092",
3630 "default3.handlebars->117->1210",
3631 - "default3.handlebars->117->2072"
3631 + "default3.handlebars->117->2073"
3632 ]
3633 },
3634 {
@@ -3658,9 +3658,9 @@
3658 "zh-cht": "2小時",
3659 "xloc": [
3660 "default.handlebars->119->1210",
3661 - "default.handlebars->119->2085",
3661 + "default.handlebars->119->2086",
3662 "default3.handlebars->117->1204",
3663 - "default3.handlebars->117->2066"
3663 + "default3.handlebars->117->2067"
3664 ]
3665 },
3666 {
@@ -3871,9 +3871,9 @@
3871 "zh-cht": "24小時",
3872 "xloc": [
3873 "default.handlebars->119->1215",
3874 - "default.handlebars->119->2090",
3874 + "default.handlebars->119->2091",
3875 "default3.handlebars->117->1209",
3876 - "default3.handlebars->117->2071"
3876 + "default3.handlebars->117->2072"
3877 ]
3878 },
3879 {
@@ -3960,8 +3960,8 @@
3960 "zh-chs": "2FA备份代码已清除",
3961 "zh-cht": "2FA備份代碼已清除",
3962 "xloc": [
3963 - "default.handlebars->119->2651",
3964 - "default3.handlebars->117->2648"
3963 + "default.handlebars->119->2652",
3964 + "default3.handlebars->117->2649"
3965 ]
3966 },
3967 {
@@ -4021,8 +4021,8 @@
4021 "zh-chs": "第二个因素",
4022 "zh-cht": "第二個因素",
4023 "xloc": [
4024 - "default.handlebars->119->3239",
4025 - "default3.handlebars->117->3229"
4024 + "default.handlebars->119->3241",
4025 + "default3.handlebars->117->3231"
4026 ]
4027 },
4028 {
@@ -4051,10 +4051,10 @@
4051 "zh-chs": "启用第二因素身份验证",
4052 "zh-cht": "啟用第二因素身份驗證",
4053 "xloc": [
4054 - "default.handlebars->119->2779",
4055 - "default.handlebars->119->3032",
4056 - "default3.handlebars->117->2776",
4057 - "default3.handlebars->117->3026"
4054 + "default.handlebars->119->2781",
4055 + "default.handlebars->119->3034",
4056 + "default3.handlebars->117->2778",
4057 + "default3.handlebars->117->3028"
4058 ]
4059 },
4060 {
@@ -4226,9 +4226,9 @@
4226 "zh-cht": "30分鐘",
4227 "xloc": [
4228 "default.handlebars->119->1207",
4229 - "default.handlebars->119->2082",
4229 + "default.handlebars->119->2083",
4230 "default3.handlebars->117->1201",
4231 - "default3.handlebars->117->2063"
4231 + "default3.handlebars->117->2064"
4232 ]
4233 },
4234 {
@@ -4258,8 +4258,8 @@
4258 "zh-cht": "32 位",
4259 "xloc": [
4260 "default-mobile.handlebars->53->738",
4261 - "default.handlebars->119->1595",
4262 - "default3.handlebars->117->1580"
4261 + "default.handlebars->119->1596",
4262 + "default3.handlebars->117->1581"
4263 ]
4264 },
4265 {
@@ -4347,9 +4347,9 @@
4347 "zh-cht": "4天",
4348 "xloc": [
4349 "default.handlebars->119->1217",
4350 - "default.handlebars->119->2092",
4350 + "default.handlebars->119->2093",
4351 "default3.handlebars->117->1211",
4352 - "default3.handlebars->117->2073"
4352 + "default3.handlebars->117->2074"
4353 ]
4354 },
4355 {
@@ -4379,9 +4379,9 @@
4379 "zh-cht": "4個小時",
4380 "xloc": [
4381 "default.handlebars->119->1211",
4382 - "default.handlebars->119->2086",
4382 + "default.handlebars->119->2087",
4383 "default3.handlebars->117->1205",
4384 - "default3.handlebars->117->2067"
4384 + "default3.handlebars->117->2068"
4385 ]
4386 },
4387 {
@@ -4528,9 +4528,9 @@
4528 "zh-cht": "45分鐘",
4529 "xloc": [
4530 "default.handlebars->119->1208",
4531 - "default.handlebars->119->2083",
4531 + "default.handlebars->119->2084",
4532 "default3.handlebars->117->1202",
4533 - "default3.handlebars->117->2064"
4533 + "default3.handlebars->117->2065"
4534 ]
4535 },
4536 {
@@ -4589,9 +4589,9 @@
4589 "zh-cht": "5分鐘",
4590 "xloc": [
4591 "default.handlebars->119->1204",
4592 - "default.handlebars->119->2079",
4592 + "default.handlebars->119->2080",
4593 "default3.handlebars->117->1198",
4594 - "default3.handlebars->117->2060"
4594 + "default3.handlebars->117->2061"
4595 ]
4596 },
4597 {
@@ -4803,9 +4803,9 @@
4803 "zh-cht": "60分鐘",
4804 "xloc": [
4805 "default.handlebars->119->1209",
4806 - "default.handlebars->119->2084",
4806 + "default.handlebars->119->2085",
4807 "default3.handlebars->117->1203",
4808 - "default3.handlebars->117->2065"
4808 + "default3.handlebars->117->2066"
4809 ]
4810 },
4811 {
@@ -4894,8 +4894,8 @@
4894 "zh-cht": "64 位",
4895 "xloc": [
4896 "default-mobile.handlebars->53->740",
4897 - "default.handlebars->119->1597",
4898 - "default3.handlebars->117->1582"
4897 + "default.handlebars->119->1598",
4898 + "default3.handlebars->117->1583"
4899 ]
4900 },
4901 {
@@ -5087,8 +5087,8 @@
5087 "zh-chs": "7天",
5088 "zh-cht": "7天",
5089 "xloc": [
5090 - "default.handlebars->119->2093",
5091 - "default3.handlebars->117->2074"
5090 + "default.handlebars->119->2094",
5091 + "default3.handlebars->117->2075"
5092 ]
5093 },
5094 {
@@ -5180,11 +5180,11 @@
5180 "zh-cht": "8小時",
5181 "xloc": [
5182 "default.handlebars->119->1212",
5183 - "default.handlebars->119->2087",
5183 + "default.handlebars->119->2088",
5184 "default.handlebars->119->570",
5185 "default.handlebars->119->584",
5186 "default3.handlebars->117->1206",
5187 - "default3.handlebars->117->2068",
5187 + "default3.handlebars->117->2069",
5188 "default3.handlebars->117->566",
5189 "default3.handlebars->117->580"
5190 ]
@@ -5389,10 +5389,10 @@
5389 "zh-cht": "ACM",
5390 "xloc": [
5391 "default-mobile.handlebars->53->501",
5392 - "default.handlebars->119->2261",
5392 + "default.handlebars->119->2262",
5393 "default.handlebars->119->448",
5394 "default.handlebars->119->904",
5395 - "default3.handlebars->117->2257",
5395 + "default3.handlebars->117->2258",
5396 "default3.handlebars->117->444",
5397 "default3.handlebars->117->900"
5398 ]
@@ -5524,8 +5524,8 @@
5524 "zh-chs": "操作系统",
5525 "zh-cht": "AMT操作系統",
5526 "xloc": [
5527 - "default.handlebars->119->3398",
5528 - "default3.handlebars->117->3388"
5527 + "default.handlebars->119->3400",
5528 + "default3.handlebars->117->3390"
5529 ]
5530 },
5531 {
@@ -5553,10 +5553,10 @@
5553 "zh-chs": "AMT-Redir",
5554 "zh-cht": "AMT-Redir",
5555 "xloc": [
5556 - "default.handlebars->119->3249",
5557 - "default.handlebars->119->3302",
5558 - "default3.handlebars->117->3239",
5559 - "default3.handlebars->117->3292"
5556 + "default.handlebars->119->3251",
5557 + "default.handlebars->119->3304",
5558 + "default3.handlebars->117->3241",
5559 + "default3.handlebars->117->3294"
5560 ]
5561 },
5562 {
@@ -5584,10 +5584,10 @@
5584 "zh-chs": "AMT-WSMAN",
5585 "zh-cht": "AMT-WSMAN",
5586 "xloc": [
5587 - "default.handlebars->119->3248",
5588 - "default.handlebars->119->3301",
5589 - "default3.handlebars->117->3238",
5590 - "default3.handlebars->117->3291"
5587 + "default.handlebars->119->3250",
5588 + "default.handlebars->119->3303",
5589 + "default3.handlebars->117->3240",
5590 + "default3.handlebars->117->3293"
5591 ]
5592 },
5593 {
@@ -5855,8 +5855,8 @@
5855 "zh-cht": "拒絕存取",
5856 "xloc": [
5857 "default-mobile.handlebars->53->948",
5858 - "default.handlebars->119->1786",
5859 - "default3.handlebars->117->1769"
5858 + "default.handlebars->119->1787",
5859 + "default3.handlebars->117->1770"
5860 ]
5861 },
5862 {
@@ -5945,8 +5945,8 @@
5945 "zh-chs": "访问服务器档案",
5946 "zh-cht": "存取伺服器檔案",
5947 "xloc": [
5948 - "default.handlebars->119->2962",
5949 - "default3.handlebars->117->2956"
5948 + "default.handlebars->119->2964",
5949 + "default3.handlebars->117->2958"
5950 ]
5951 },
5952 {
@@ -6073,16 +6073,16 @@
6073 "default-mobile.handlebars->53->470",
6074 "default-mobile.handlebars->53->98",
6075 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountSecurity->1->0",
6076 - "default.handlebars->119->2122",
6077 - "default.handlebars->119->2124",
6078 - "default.handlebars->119->3453",
6076 + "default.handlebars->119->2123",
6077 + "default.handlebars->119->2125",
6078 + "default.handlebars->119->3455",
6079 "default.handlebars->119->741",
6080 "default.handlebars->119->864",
6081 "default.handlebars->119->866",
6082 - "default3.handlebars->117->2124",
6082 "default3.handlebars->117->2125",
6084 - "default3.handlebars->117->3441",
6083 + "default3.handlebars->117->2126",
6084 "default3.handlebars->117->3443",
6085 + "default3.handlebars->117->3445",
6086 "default3.handlebars->117->737",
6087 "default3.handlebars->117->860",
6088 "default3.handlebars->117->862"
@@ -6115,8 +6115,8 @@
6115 "zh-cht": "帳號設定",
6116 "xloc": [
6117 "default-mobile.handlebars->53->1057",
6118 - "default.handlebars->119->3322",
6119 - "default3.handlebars->117->3312"
6118 + "default.handlebars->119->3324",
6119 + "default3.handlebars->117->3314"
6120 ]
6121 },
6122 {
@@ -6191,8 +6191,8 @@
6191 "pl": "Konto zmienione di synchronizacji z danymi LDAP.",
6192 "uk": "Акаунт змінено на синхронізацію з даними LDAP.",
6193 "xloc": [
6194 - "default.handlebars->119->2712",
6195 - "default3.handlebars->117->2709"
6194 + "default.handlebars->119->2713",
6195 + "default3.handlebars->117->2710"
6196 ]
6197 },
6198 {
@@ -6221,8 +6221,8 @@
6221 "zh-chs": "帐户已更改:{0}",
6222 "zh-cht": "帳戶已更改:{0}",
6223 "xloc": [
6224 - "default.handlebars->119->2624",
6225 - "default3.handlebars->117->2621"
6224 + "default.handlebars->119->2625",
6225 + "default3.handlebars->117->2622"
6226 ]
6227 },
6228 {
@@ -6251,8 +6251,8 @@
6251 "zh-chs": "创建帐户,电子邮件为{0}",
6252 "zh-cht": "創建帳戶,電子郵件為{0}",
6253 "xloc": [
6254 - "default.handlebars->119->2623",
6255 - "default3.handlebars->117->2620"
6254 + "default.handlebars->119->2624",
6255 + "default3.handlebars->117->2621"
6256 ]
6257 },
6258 {
@@ -6281,8 +6281,8 @@
6281 "zh-chs": "已创建帐户,名称为 {0}。",
6282 "zh-cht": "已創建帳戶,名稱為 {0}。",
6283 "xloc": [
6284 - "default.handlebars->119->2686",
6285 - "default3.handlebars->117->2683"
6284 + "default.handlebars->119->2687",
6285 + "default3.handlebars->117->2684"
6286 ]
6287 },
6288 {
@@ -6311,8 +6311,8 @@
6311 "zh-chs": "创建帐户,用户名是{0}",
6312 "zh-cht": "帳戶已創建,用戶名是{0}",
6313 "xloc": [
6314 - "default.handlebars->119->2622",
6315 - "default3.handlebars->117->2619"
6314 + "default.handlebars->119->2623",
6315 + "default3.handlebars->117->2620"
6316 ]
6317 },
6318 {
@@ -6343,11 +6343,11 @@
6343 "xloc": [
6344 "default-mobile.handlebars->53->69",
6345 "default.handlebars->119->222",
6346 - "default.handlebars->119->2781",
6347 - "default.handlebars->119->2959",
6346 + "default.handlebars->119->2783",
6347 + "default.handlebars->119->2961",
6348 "default3.handlebars->117->219",
6349 - "default3.handlebars->117->2778",
6350 - "default3.handlebars->117->2953"
6349 + "default3.handlebars->117->2780",
6350 + "default3.handlebars->117->2955"
6351 ]
6352 },
6353 {
@@ -6377,8 +6377,8 @@
6377 "zh-cht": "達到帳戶限制。",
6378 "xloc": [
6379 "default-mobile.handlebars->53->1069",
6380 - "default.handlebars->119->3334",
6381 - "default3.handlebars->117->3324",
6380 + "default.handlebars->119->3336",
6381 + "default3.handlebars->117->3326",
6382 "login-mobile.handlebars->23->6",
6383 "login.handlebars->13->8",
6384 "login2.handlebars->17->206"
@@ -6441,8 +6441,8 @@
6441 "zh-chs": "帐号登录",
6442 "zh-cht": "帳號登錄",
6443 "xloc": [
6444 - "default.handlebars->119->2559",
6445 - "default3.handlebars->117->2556"
6444 + "default.handlebars->119->2560",
6445 + "default3.handlebars->117->2557"
6446 ]
6447 },
6448 {
@@ -6471,8 +6471,8 @@
6471 "zh-chs": "来自 {0}、{1}、{2} 的帐户登录",
6472 "zh-cht": "從 {0}、{1}、{2} 登錄帳戶",
6473 "xloc": [
6474 - "default.handlebars->119->2665",
6475 - "default3.handlebars->117->2662"
6474 + "default.handlebars->119->2666",
6475 + "default3.handlebars->117->2663"
6476 ]
6477 },
6478 {
@@ -6486,8 +6486,8 @@
6486 "pl": "Zapisy logowania tokenami użytkownika",
6487 "uk": "Записи токенів входу до акаунту",
6488 "xloc": [
6489 - "default.handlebars->119->3291",
6490 - "default3.handlebars->117->3281"
6489 + "default.handlebars->119->3293",
6490 + "default3.handlebars->117->3283"
6491 ]
6492 },
6493 {
@@ -6516,8 +6516,8 @@
6516 "zh-chs": "帐户登出",
6517 "zh-cht": "帳戶登出",
6518 "xloc": [
6519 - "default.handlebars->119->2560",
6520 - "default3.handlebars->117->2557"
6519 + "default.handlebars->119->2561",
6520 + "default3.handlebars->117->2558"
6521 ]
6522 },
6523 {
@@ -6577,8 +6577,8 @@
6577 "zh-chs": "帐户密码已更改:{0}",
6578 "zh-cht": "帳戶密碼已更改:{0}",
6579 "xloc": [
6580 - "default.handlebars->119->2632",
6581 - "default3.handlebars->117->2629"
6580 + "default.handlebars->119->2633",
6581 + "default3.handlebars->117->2630"
6582 ]
6583 },
6584 {
@@ -6607,8 +6607,8 @@
6607 "zh-chs": "帐户已删除",
6608 "zh-cht": "帳戶已刪除",
6609 "xloc": [
6610 - "default.handlebars->119->2621",
6611 - "default3.handlebars->117->2618"
6610 + "default.handlebars->119->2622",
6611 + "default3.handlebars->117->2619"
6612 ]
6613 },
6614 {
@@ -6668,9 +6668,9 @@
6668 "zh-cht": "指令",
6669 "xloc": [
6670 "default-mobile.handlebars->53->963",
6671 - "default.handlebars->119->1801",
6671 + "default.handlebars->119->1802",
6672 "default.handlebars->container->column_l->p42->p42tbl->1->0->8",
6673 - "default3.handlebars->117->1784",
6673 + "default3.handlebars->117->1785",
6674 "default3.handlebars->container->column_l->p42->p42tbl->1->0->17"
6675 ]
6676 },
@@ -6860,8 +6860,8 @@
6860 "zh-chs": "如果ACM失败,则激活到CCM",
6861 "zh-cht": "如果ACM失敗,則激活到CCM",
6862 "xloc": [
6863 - "default.handlebars->119->2316",
6864 - "default3.handlebars->117->2310"
6863 + "default.handlebars->119->2317",
6864 + "default3.handlebars->117->2311"
6865 ]
6866 },
6867 {
@@ -6894,12 +6894,12 @@
6894 "default-mobile.handlebars->53->498",
6895 "default-mobile.handlebars->53->819",
6896 "default-mobile.handlebars->53->848",
6897 - "default.handlebars->119->1656",
6898 - "default.handlebars->119->1685",
6897 + "default.handlebars->119->1657",
6898 + "default.handlebars->119->1686",
6899 "default.handlebars->119->897",
6900 "default.handlebars->119->899",
6901 - "default3.handlebars->117->1639",
6902 - "default3.handlebars->117->1668",
6901 + "default3.handlebars->117->1640",
6902 + "default3.handlebars->117->1669",
6903 "default3.handlebars->117->893",
6904 "default3.handlebars->117->895"
6905 ]
@@ -6961,9 +6961,9 @@
6961 "zh-cht": "主動設備共享",
6962 "xloc": [
6963 "default.handlebars->119->1075",
6964 - "default.handlebars->119->2265",
6964 + "default.handlebars->119->2266",
6965 "default3.handlebars->117->1071",
6966 - "default3.handlebars->117->2261"
6966 + "default3.handlebars->117->2262"
6967 ]
6968 },
6969 {
@@ -6992,8 +6992,8 @@
6992 "zh-chs": "活动登录令牌",
6993 "zh-cht": "活動登錄令牌",
6994 "xloc": [
6995 - "default.handlebars->119->2153",
6996 - "default3.handlebars->117->2153"
6995 + "default.handlebars->119->2154",
6996 + "default3.handlebars->117->2154"
6997 ]
6998 },
6999 {
@@ -7196,9 +7196,9 @@
7196 "zh-chs": "添加代理",
7197 "zh-cht": "新增代理",
7198 "xloc": [
7199 - "default.handlebars->119->2255",
7199 + "default.handlebars->119->2256",
7200 "default.handlebars->119->502",
7201 - "default3.handlebars->117->2251",
7201 + "default3.handlebars->117->2252",
7202 "default3.handlebars->117->498"
7203 ]
7204 },
@@ -7254,13 +7254,13 @@
7254 "zh-chs": "添加设备",
7255 "zh-cht": "新增裝置",
7256 "xloc": [
7257 - "default.handlebars->119->2259",
7258 - "default.handlebars->119->2934",
7259 - "default.handlebars->119->3129",
7257 + "default.handlebars->119->2260",
7258 + "default.handlebars->119->2936",
7259 + "default.handlebars->119->3131",
7260 "default.handlebars->119->506",
7261 - "default3.handlebars->117->2255",
7262 - "default3.handlebars->117->2928",
7263 - "default3.handlebars->117->3117",
7261 + "default3.handlebars->117->2256",
7262 + "default3.handlebars->117->2930",
7263 + "default3.handlebars->117->3119",
7264 "default3.handlebars->117->502"
7265 ]
7266 },
@@ -7320,13 +7320,13 @@
7320 "zh-chs": "添加设备组",
7321 "zh-cht": "新增裝置群",
7322 "xloc": [
7323 - "default.handlebars->119->2404",
7324 - "default.handlebars->119->2928",
7325 - "default.handlebars->119->3117",
7323 + "default.handlebars->119->2405",
7324 + "default.handlebars->119->2930",
7325 + "default.handlebars->119->3119",
7326 "default.handlebars->119->402",
7327 - "default3.handlebars->117->2401",
7328 - "default3.handlebars->117->2922",
7329 - "default3.handlebars->117->3105",
7327 + "default3.handlebars->117->2402",
7328 + "default3.handlebars->117->2924",
7329 + "default3.handlebars->117->3107",
7330 "default3.handlebars->117->398"
7331 ]
7332 },
@@ -7356,8 +7356,8 @@
7356 "zh-chs": "添加设备组权限",
7357 "zh-cht": "新增裝置群權限",
7358 "xloc": [
7359 - "default.handlebars->119->2401",
7360 - "default3.handlebars->117->2398"
7359 + "default.handlebars->119->2402",
7360 + "default3.handlebars->117->2399"
7361 ]
7362 },
7363 {
@@ -7386,10 +7386,10 @@
7386 "zh-chs": "添加设备权限",
7387 "zh-cht": "新增裝置權限",
7388 "xloc": [
7389 - "default.handlebars->119->2406",
7390 - "default.handlebars->119->2408",
7391 - "default3.handlebars->117->2403",
7392 - "default3.handlebars->117->2405"
7389 + "default.handlebars->119->2407",
7390 + "default.handlebars->119->2409",
7391 + "default3.handlebars->117->2404",
7392 + "default3.handlebars->117->2406"
7393 ]
7394 },
7395 {
@@ -7560,8 +7560,8 @@
7560 "zh-chs": "添加成员身份",
7561 "zh-cht": "新增成員身份",
7562 "xloc": [
7563 - "default.handlebars->119->3149",
7564 - "default3.handlebars->117->3137"
7563 + "default.handlebars->119->3151",
7564 + "default3.handlebars->117->3139"
7565 ]
7566 },
7567 {
@@ -7646,14 +7646,14 @@
7646 "zh-chs": "添加安全密钥",
7647 "zh-cht": "新增安全密鑰",
7648 "xloc": [
7649 - "default.handlebars->119->1868",
7649 "default.handlebars->119->1869",
7650 + "default.handlebars->119->1870",
7651 "default.handlebars->119->256",
7652 "default.handlebars->119->258",
7653 "default.handlebars->119->261",
7654 "default.handlebars->119->263",
7655 - "default3.handlebars->117->1849",
7655 "default3.handlebars->117->1850",
7656 + "default3.handlebars->117->1851",
7657 "default3.handlebars->117->251",
7658 "default3.handlebars->117->253",
7659 "default3.handlebars->117->256",
@@ -7717,8 +7717,8 @@
7717 "zh-chs": "添加用户设备权限",
7718 "zh-cht": "新增用戶裝置權限",
7719 "xloc": [
7720 - "default.handlebars->119->2411",
7721 - "default3.handlebars->117->2408"
7720 + "default.handlebars->119->2412",
7721 + "default3.handlebars->117->2409"
7722 ]
7723 },
7724 {
@@ -7748,13 +7748,13 @@
7748 "zh-cht": "新增用戶群",
7749 "xloc": [
7750 "default.handlebars->119->1068",
7751 - "default.handlebars->119->2249",
7752 - "default.handlebars->119->2403",
7753 - "default.handlebars->119->3123",
7751 + "default.handlebars->119->2250",
7752 + "default.handlebars->119->2404",
7753 + "default.handlebars->119->3125",
7754 "default3.handlebars->117->1064",
7755 - "default3.handlebars->117->2245",
7756 - "default3.handlebars->117->2400",
7757 - "default3.handlebars->117->3111"
7755 + "default3.handlebars->117->2246",
7756 + "default3.handlebars->117->2401",
7757 + "default3.handlebars->117->3113"
7758 ]
7759 },
7760 {
@@ -7783,8 +7783,8 @@
7783 "zh-chs": "添加用户组设备权限",
7784 "zh-cht": "新增用戶群裝置權限",
7785 "xloc": [
7786 - "default.handlebars->119->2413",
7787 - "default3.handlebars->117->2410"
7786 + "default.handlebars->119->2414",
7787 + "default3.handlebars->117->2411"
7788 ]
7789 },
7790 {
@@ -7868,10 +7868,10 @@
7868 "zh-chs": "添加用户",
7869 "zh-cht": "新增用戶",
7870 "xloc": [
7871 - "default.handlebars->119->2248",
7872 - "default.handlebars->119->2923",
7873 - "default3.handlebars->117->2244",
7874 - "default3.handlebars->117->2917"
7871 + "default.handlebars->119->2249",
7872 + "default.handlebars->119->2925",
7873 + "default3.handlebars->117->2245",
7874 + "default3.handlebars->117->2919"
7875 ]
7876 },
7877 {
@@ -7900,8 +7900,8 @@
7900 "zh-chs": "将用户添加到设备组",
7901 "zh-cht": "將用戶新增到裝置群",
7902 "xloc": [
7903 - "default.handlebars->119->2400",
7904 - "default3.handlebars->117->2397"
7903 + "default.handlebars->119->2401",
7904 + "default3.handlebars->117->2398"
7905 ]
7906 },
7907 {
@@ -7930,8 +7930,8 @@
7930 "zh-chs": "将用户添加到用户组",
7931 "zh-cht": "將用戶新增到用戶群",
7932 "xloc": [
7933 - "default.handlebars->119->2958",
7934 - "default3.handlebars->117->2952"
7933 + "default.handlebars->119->2960",
7934 + "default3.handlebars->117->2954"
7935 ]
7936 },
7937 {
@@ -8136,9 +8136,9 @@
8136 "zh-chs": "通过安装Mesh Agent将新计算机添加到该设备组。",
8137 "zh-cht": "通過安裝Mesh Agent將新電腦新增到該裝置群。",
8138 "xloc": [
8139 - "default.handlebars->119->2254",
8139 + "default.handlebars->119->2255",
8140 "default.handlebars->119->501",
8141 - "default3.handlebars->117->2250",
8141 + "default3.handlebars->117->2251",
8142 "default3.handlebars->117->497"
8143 ]
8144 },
@@ -8168,9 +8168,9 @@
8168 "zh-chs": "添加位于本地网络上的设备。",
8169 "zh-cht": "添加位於本地網絡上的設備。",
8170 "xloc": [
8171 - "default.handlebars->119->2258",
8171 + "default.handlebars->119->2259",
8172 "default.handlebars->119->505",
8173 - "default3.handlebars->117->2254",
8173 + "default3.handlebars->117->2255",
8174 "default3.handlebars->117->501"
8175 ]
8176 },
@@ -8290,8 +8290,8 @@
8290 "zh-chs": "添加了身份验证应用程序",
8291 "zh-cht": "添加了身份驗證應用程序",
8292 "xloc": [
8293 - "default.handlebars->119->2648",
8294 - "default3.handlebars->117->2645"
8293 + "default.handlebars->119->2649",
8294 + "default3.handlebars->117->2646"
8295 ]
8296 },
8297 {
@@ -8320,8 +8320,8 @@
8320 "zh-chs": "已将设备共享{0}从{1}添加到{2}",
8321 "zh-cht": "已將設備共享{0}從{1}添加到{2}",
8322 "xloc": [
8323 - "default.handlebars->119->2659",
8324 - "default3.handlebars->117->2656"
8323 + "default.handlebars->119->2660",
8324 + "default3.handlebars->117->2657"
8325 ]
8326 },
8327 {
@@ -8350,8 +8350,8 @@
8350 "zh-chs": "添加了每天重复的设备共享 {0}。",
8351 "zh-cht": "添加了每天重複的設備共享 {0}。",
8352 "xloc": [
8353 - "default.handlebars->119->2696",
8354 - "default3.handlebars->117->2693"
8353 + "default.handlebars->119->2697",
8354 + "default3.handlebars->117->2694"
8355 ]
8356 },
8357 {
@@ -8380,8 +8380,8 @@
8380 "zh-chs": "添加了每周重复的设备共享 {0}。",
8381 "zh-cht": "添加了每週重複的設備共享 {0}。",
8382 "xloc": [
8383 - "default.handlebars->119->2697",
8384 - "default3.handlebars->117->2694"
8383 + "default.handlebars->119->2698",
8384 + "default3.handlebars->117->2695"
8385 ]
8386 },
8387 {
@@ -8410,8 +8410,8 @@
8410 "zh-chs": "添加了无限时间的设备共享 {0}。",
8411 "zh-cht": "添加了無限時間的設備共享 {0}。",
8412 "xloc": [
8413 - "default.handlebars->119->2689",
8414 - "default3.handlebars->117->2686"
8413 + "default.handlebars->119->2690",
8414 + "default3.handlebars->117->2687"
8415 ]
8416 },
8417 {
@@ -8440,10 +8440,10 @@
8440 "zh-chs": "已将设备{0}添加到设备组{1}",
8441 "zh-cht": "已將設備{0}添加到設備組{1}",
8442 "xloc": [
8443 - "default.handlebars->119->2615",
8444 - "default.handlebars->119->2642",
8445 - "default3.handlebars->117->2612",
8446 - "default3.handlebars->117->2639"
8443 + "default.handlebars->119->2616",
8444 + "default.handlebars->119->2643",
8445 + "default3.handlebars->117->2613",
8446 + "default3.handlebars->117->2640"
8447 ]
8448 },
8449 {
@@ -8472,8 +8472,8 @@
8472 "zh-chs": "添加登录令牌",
8473 "zh-cht": "添加了登錄令牌",
8474 "xloc": [
8475 - "default.handlebars->119->2673",
8476 - "default3.handlebars->117->2670"
8475 + "default.handlebars->119->2674",
8476 + "default3.handlebars->117->2671"
8477 ]
8478 },
8479 {
@@ -8502,8 +8502,8 @@
8502 "zh-chs": "新增推送通知认证装置",
8503 "zh-cht": "增加推送通知認證設備",
8504 "xloc": [
8505 - "default.handlebars->119->2671",
8506 - "default3.handlebars->117->2668"
8505 + "default.handlebars->119->2672",
8506 + "default3.handlebars->117->2669"
8507 ]
8508 },
8509 {
@@ -8532,8 +8532,8 @@
8532 "zh-chs": "添加了安全密钥",
8533 "zh-cht": "添加了安全密鑰",
8534 "xloc": [
8535 - "default.handlebars->119->2653",
8536 - "default3.handlebars->117->2650"
8535 + "default.handlebars->119->2654",
8536 + "default3.handlebars->117->2651"
8537 ]
8538 },
8539 {
@@ -8562,8 +8562,8 @@
8562 "zh-chs": "已将用户组{0}添加到设备组{1}",
8563 "zh-cht": "已將用戶組{0}添加到設備組{1}",
8564 "xloc": [
8565 - "default.handlebars->119->2626",
8566 - "default3.handlebars->117->2623"
8565 + "default.handlebars->119->2627",
8566 + "default3.handlebars->117->2624"
8567 ]
8568 },
8569 {
@@ -8592,10 +8592,10 @@
8592 "zh-chs": "已将用户{0}添加到用户组{1}",
8593 "zh-cht": "已將用戶{0}添加到用戶組{1}",
8594 "xloc": [
8595 - "default.handlebars->119->2629",
8596 - "default.handlebars->119->2638",
8597 - "default3.handlebars->117->2626",
8598 - "default3.handlebars->117->2635"
8595 + "default.handlebars->119->2630",
8596 + "default.handlebars->119->2639",
8597 + "default3.handlebars->117->2627",
8598 + "default3.handlebars->117->2636"
8599 ]
8600 },
8601 {
@@ -8684,8 +8684,8 @@
8684 "zh-cht": "管理員控制模式(ACM)",
8685 "xloc": [
8686 "default-mobile.handlebars->53->821",
8687 - "default.handlebars->119->1658",
8688 - "default3.handlebars->117->1641"
8687 + "default.handlebars->119->1659",
8688 + "default3.handlebars->117->1642"
8689 ]
8690 },
8691 {
@@ -8715,8 +8715,8 @@
8715 "zh-cht": "管理員憑證",
8716 "xloc": [
8717 "default-mobile.handlebars->53->827",
8718 - "default.handlebars->119->1664",
8719 - "default3.handlebars->117->1647"
8718 + "default.handlebars->119->1665",
8719 + "default3.handlebars->117->1648"
8720 ]
8721 },
8722 {
@@ -8745,15 +8745,15 @@
8745 "zh-chs": "管理员PowerShell",
8746 "zh-cht": "管理員PowerShell",
8747 "xloc": [
8748 - "default.handlebars->119->3169",
8749 - "default.handlebars->119->3179",
8750 - "default.handlebars->119->3245",
8751 - "default.handlebars->119->3298",
8748 + "default.handlebars->119->3171",
8749 + "default.handlebars->119->3181",
8750 + "default.handlebars->119->3247",
8751 + "default.handlebars->119->3300",
8752 "default.handlebars->termShellContextMenu->3",
8753 - "default3.handlebars->117->3159",
8754 - "default3.handlebars->117->3169",
8755 - "default3.handlebars->117->3235",
8756 - "default3.handlebars->117->3288",
8753 + "default3.handlebars->117->3161",
8754 + "default3.handlebars->117->3171",
8755 + "default3.handlebars->117->3237",
8756 + "default3.handlebars->117->3290",
8757 "default3.handlebars->container->column_l->p12->termTable->1->1->0->1->1->connectbutton2span->5->3->0",
8758 "player.handlebars->29->29",
8759 "xterm.handlebars->termShellContextMenu->cxtermps"
@@ -8785,8 +8785,8 @@
8785 "zh-chs": "管理领域",
8786 "zh-cht": "管理領域",
8787 "xloc": [
8788 - "default.handlebars->119->3010",
8789 - "default3.handlebars->117->3004"
8788 + "default.handlebars->119->3012",
8789 + "default3.handlebars->117->3006"
8790 ]
8791 },
8792 {
@@ -8846,8 +8846,8 @@
8846 "zh-chs": "管理领域",
8847 "zh-cht": "管理領域",
8848 "xloc": [
8849 - "default.handlebars->119->2855",
8850 - "default3.handlebars->117->2849"
8849 + "default.handlebars->119->2857",
8850 + "default3.handlebars->117->2851"
8851 ]
8852 },
8853 {
@@ -8876,8 +8876,8 @@
8876 "zh-chs": "管理员",
8877 "zh-cht": "管理員",
8878 "xloc": [
8879 - "default.handlebars->119->2773",
8880 - "default3.handlebars->117->2770"
8879 + "default.handlebars->119->2775",
8880 + "default3.handlebars->117->2772"
8881 ]
8882 },
8883 {
@@ -8907,8 +8907,8 @@
8907 "zh-cht": "南非文",
8908 "xloc": [
8909 "default-mobile.handlebars->53->115",
8910 - "default.handlebars->119->1871",
8911 - "default3.handlebars->117->1852",
8910 + "default.handlebars->119->1872",
8911 + "default3.handlebars->117->1853",
8912 "login2.handlebars->17->1"
8913 ]
8914 },
@@ -8942,16 +8942,16 @@
8942 "default-mobile.handlebars->53->460",
8943 "default-mobile.handlebars->53->517",
8944 "default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1",
8945 - "default.handlebars->119->2484",
8946 - "default.handlebars->119->2497",
8947 - "default.handlebars->119->3396",
8945 + "default.handlebars->119->2485",
8946 + "default.handlebars->119->2498",
8947 + "default.handlebars->119->3398",
8948 "default.handlebars->119->422",
8949 "default.handlebars->119->729",
8950 "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1",
8951 "default.handlebars->container->dialog->dialogBody->dialog7->1->td7meshkvm",
8952 - "default3.handlebars->117->2481",
8953 - "default3.handlebars->117->2494",
8954 - "default3.handlebars->117->3386",
8952 + "default3.handlebars->117->2482",
8953 + "default3.handlebars->117->2495",
8954 + "default3.handlebars->117->3388",
8955 "default3.handlebars->117->418",
8956 "default3.handlebars->117->725",
8957 "default3.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1",
@@ -8984,10 +8984,10 @@
8984 "zh-chs": "代理+英特尔AMT",
8985 "zh-cht": "代理+Intel&reg; AMT",
8986 "xloc": [
8987 - "default.handlebars->119->2486",
8988 - "default.handlebars->119->2499",
8989 - "default3.handlebars->117->2483",
8990 - "default3.handlebars->117->2496"
8987 + "default.handlebars->119->2487",
8988 + "default.handlebars->119->2500",
8989 + "default3.handlebars->117->2484",
8990 + "default3.handlebars->117->2497"
8991 ]
8992 },
8993 {
@@ -9049,9 +9049,9 @@
9049 "xloc": [
9050 "default-mobile.handlebars->53->1028",
9051 "default-mobile.handlebars->53->599",
9052 - "default.handlebars->119->2421",
9052 + "default.handlebars->119->2422",
9053 "default.handlebars->119->819",
9054 - "default3.handlebars->117->2418",
9054 + "default3.handlebars->117->2419",
9055 "default3.handlebars->117->815"
9056 ]
9057 },
@@ -9081,8 +9081,8 @@
9081 "zh-chs": "代理错误计数器",
9082 "zh-cht": "代理錯誤計數器",
9083 "xloc": [
9084 - "default.handlebars->119->3364",
9085 - "default3.handlebars->117->3354"
9084 + "default.handlebars->119->3366",
9085 + "default3.handlebars->117->3356"
9086 ]
9087 },
9088 {
@@ -9305,9 +9305,9 @@
9305 "zh-cht": "代理自行共享",
9306 "xloc": [
9307 "default.handlebars->119->1096",
9308 - "default.handlebars->119->2286",
9308 + "default.handlebars->119->2287",
9309 "default3.handlebars->117->1092",
9310 - "default3.handlebars->117->2282"
9310 + "default3.handlebars->117->2283"
9311 ]
9312 },
9313 {
@@ -9336,8 +9336,8 @@
9336 "zh-chs": "代理会话",
9337 "zh-cht": "代理時段",
9338 "xloc": [
9339 - "default.handlebars->119->3381",
9340 - "default3.handlebars->117->3371"
9339 + "default.handlebars->119->3383",
9340 + "default3.handlebars->117->3373"
9341 ]
9342 },
9343 {
@@ -9455,9 +9455,9 @@
9455 "zh-chs": "代理类型",
9456 "zh-cht": "代理類型",
9457 "xloc": [
9458 - "default.handlebars->119->2495",
9458 + "default.handlebars->119->2496",
9459 "default.handlebars->container->column_l->p21->p21main->1->1->meshOsChartDiv->1",
9460 - "default3.handlebars->117->2492",
9460 + "default3.handlebars->117->2493",
9461 "default3.handlebars->container->column_l->p21->p21main->1->1->meshOsChartDiv->1"
9462 ]
9463 },
@@ -9519,8 +9519,8 @@
9519 "zh-chs": "代理关闭了与服务器压缩的{0}%代理会话。已发送:{1},已压缩:{2}",
9520 "zh-cht": "代理關閉了與{0}%代理到服務器壓縮的會話。已發送:{1},已壓縮:{2}",
9521 "xloc": [
9522 - "default.handlebars->119->2612",
9523 - "default3.handlebars->117->2609"
9522 + "default.handlebars->119->2613",
9523 + "default3.handlebars->117->2610"
9524 ]
9525 },
9526 {
@@ -9752,8 +9752,8 @@
9752 "zh-cht": "代理離線",
9753 "xloc": [
9754 "default-mobile.handlebars->53->946",
9755 - "default.handlebars->119->1784",
9756 - "default3.handlebars->117->1767"
9755 + "default.handlebars->119->1785",
9756 + "default3.handlebars->117->1768"
9757 ]
9758 },
9759 {
@@ -9783,8 +9783,8 @@
9783 "zh-cht": "代理在線",
9784 "xloc": [
9785 "default-mobile.handlebars->53->945",
9786 - "default.handlebars->119->1783",
9787 - "default3.handlebars->117->1766"
9786 + "default.handlebars->119->1784",
9787 + "default3.handlebars->117->1767"
9788 ]
9789 },
9790 {
@@ -10025,11 +10025,11 @@
10025 "zh-chs": "代理",
10026 "zh-cht": "代理",
10027 "xloc": [
10028 - "default.handlebars->119->2452",
10029 - "default.handlebars->119->3409",
10028 + "default.handlebars->119->2453",
10029 + "default.handlebars->119->3411",
10030 "default.handlebars->119->589",
10031 - "default3.handlebars->117->2449",
10032 - "default3.handlebars->117->3399",
10031 + "default3.handlebars->117->2450",
10032 + "default3.handlebars->117->3401",
10033 "default3.handlebars->117->585"
10034 ]
10035 },
@@ -10060,8 +10060,8 @@
10060 "zh-cht": "阿爾巴尼亞文",
10061 "xloc": [
10062 "default-mobile.handlebars->53->116",
10063 - "default.handlebars->119->1872",
10064 - "default3.handlebars->117->1853",
10063 + "default.handlebars->119->1873",
10064 + "default3.handlebars->117->1854",
10065 "login2.handlebars->17->2"
10066 ]
10067 },
@@ -10107,9 +10107,9 @@
10107 "default-mobile.handlebars->53->374",
10108 "default-mobile.handlebars->53->701",
10109 "default-mobile.handlebars->53->703",
10110 - "default.handlebars->119->3213",
10110 + "default.handlebars->119->3215",
10111 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar->DevFilterSelect->1",
10112 - "default3.handlebars->117->3203",
10112 + "default3.handlebars->117->3205",
10113 "default3.handlebars->container->column_l->p1->devListToolbarSpan->devListToolbar->DevFilterSelect->1",
10114 "sharing-mobile.handlebars->53->80",
10115 "sharing-mobile.handlebars->53->82"
@@ -10141,8 +10141,8 @@
10141 "zh-chs": "全部可用",
10142 "zh-cht": "全部可用",
10143 "xloc": [
10144 - "default.handlebars->119->2735",
10145 - "default3.handlebars->117->2732"
10144 + "default.handlebars->119->2737",
10145 + "default3.handlebars->117->2734"
10146 ]
10147 },
10148 {
@@ -10171,9 +10171,9 @@
10171 "zh-chs": "所有可用的代理",
10172 "zh-cht": "所有可用的代理",
10173 "xloc": [
10174 - "default.handlebars->119->2453",
10174 + "default.handlebars->119->2454",
10175 "default.handlebars->119->590",
10176 - "default3.handlebars->117->2450",
10176 + "default3.handlebars->117->2451",
10177 "default3.handlebars->117->586"
10178 ]
10179 },
@@ -10233,8 +10233,8 @@
10233 "zh-chs": "所有事件",
10234 "zh-cht": "所有事件",
10235 "xloc": [
10236 - "default.handlebars->119->2733",
10237 - "default3.handlebars->117->2730"
10236 + "default.handlebars->119->2735",
10237 + "default3.handlebars->117->2732"
10238 ]
10239 },
10240 {
@@ -10309,7 +10309,7 @@
10309 "zh-chs": "所有主题",
10310 "zh-cht": "所有主題",
10311 "xloc": [
10312 - "default3.handlebars->117->2121"
10312 + "default3.handlebars->117->2122"
10313 ]
10314 },
10315 {
@@ -10344,8 +10344,8 @@
10344 {
10345 "en": "Allow to override server device name until next connection",
10346 "xloc": [
10347 - "default.handlebars->119->2358",
10348 - "default3.handlebars->117->2355"
10347 + "default.handlebars->119->2359",
10348 + "default3.handlebars->117->2356"
10349 ]
10350 },
10351 {
@@ -10374,10 +10374,10 @@
10374 "zh-chs": "允许用户管理此设备组和该组中的设备。",
10375 "zh-cht": "允許用戶管理此裝置群和該群中的裝置。",
10376 "xloc": [
10377 - "default.handlebars->119->2365",
10378 - "default.handlebars->119->2955",
10379 - "default3.handlebars->117->2362",
10380 - "default3.handlebars->117->2949"
10377 + "default.handlebars->119->2366",
10378 + "default.handlebars->119->2957",
10379 + "default3.handlebars->117->2363",
10380 + "default3.handlebars->117->2951"
10381 ]
10382 },
10383 {
@@ -10406,8 +10406,8 @@
10406 "zh-chs": "允许用户管理此设备。",
10407 "zh-cht": "允許用戶管理此裝置。",
10408 "xloc": [
10409 - "default.handlebars->119->2366",
10410 - "default3.handlebars->117->2363"
10409 + "default.handlebars->119->2367",
10410 + "default3.handlebars->117->2364"
10411 ]
10412 },
10413 {
@@ -10749,13 +10749,13 @@
10749 "zh-chs": "一直通知",
10750 "zh-cht": "一直通知",
10751 "xloc": [
10752 - "default.handlebars->119->2225",
10753 - "default.handlebars->119->2914",
10754 - "default.handlebars->119->3019",
10752 + "default.handlebars->119->2226",
10753 + "default.handlebars->119->2916",
10754 + "default.handlebars->119->3021",
10755 "default.handlebars->119->962",
10756 - "default3.handlebars->117->2221",
10757 - "default3.handlebars->117->2908",
10758 - "default3.handlebars->117->3013",
10756 + "default3.handlebars->117->2222",
10757 + "default3.handlebars->117->2910",
10758 + "default3.handlebars->117->3015",
10759 "default3.handlebars->117->958"
10760 ]
10761 },
@@ -10785,13 +10785,13 @@
10785 "zh-chs": "一直提示",
10786 "zh-cht": "一直提示",
10787 "xloc": [
10788 - "default.handlebars->119->2226",
10789 - "default.handlebars->119->2915",
10790 - "default.handlebars->119->3020",
10788 + "default.handlebars->119->2227",
10789 + "default.handlebars->119->2917",
10790 + "default.handlebars->119->3022",
10791 "default.handlebars->119->963",
10792 - "default3.handlebars->117->2222",
10793 - "default3.handlebars->117->2909",
10794 - "default3.handlebars->117->3014",
10792 + "default3.handlebars->117->2223",
10793 + "default3.handlebars->117->2911",
10794 + "default3.handlebars->117->3016",
10795 "default3.handlebars->117->959"
10796 ]
10797 },
@@ -10899,8 +10899,8 @@
10899 "pl": "Wystąpił nieznany błąd.",
10900 "uk": "Сталася невідома помилка.",
10901 "xloc": [
10902 - "default.handlebars->119->3158",
10903 - "default3.handlebars->117->3148"
10902 + "default.handlebars->119->3160",
10903 + "default3.handlebars->117->3150"
10904 ]
10905 },
10906 {
@@ -11071,8 +11071,8 @@
11071 "uk": "Версія Android",
11072 "xloc": [
11073 "default-mobile.handlebars->53->794",
11074 - "default.handlebars->119->1621",
11075 - "default3.handlebars->117->1606"
11074 + "default.handlebars->119->1622",
11075 + "default3.handlebars->117->1607"
11076 ]
11077 },
11078 {
@@ -11132,10 +11132,10 @@
11132 "zh-chs": "杀毒软件未激活",
11133 "zh-cht": "殺毒軟件未激活",
11134 "xloc": [
11135 - "default.handlebars->119->2488",
11136 - "default.handlebars->119->2502",
11137 - "default3.handlebars->117->2485",
11138 - "default3.handlebars->117->2499"
11135 + "default.handlebars->119->2489",
11136 + "default.handlebars->119->2503",
11137 + "default3.handlebars->117->2486",
11138 + "default3.handlebars->117->2500"
11139 ]
11140 },
11141 {
@@ -11579,8 +11579,8 @@
11579 "zh-cht": "阿拉伯文(阿爾及利亞)",
11580 "xloc": [
11581 "default-mobile.handlebars->53->118",
11582 - "default.handlebars->119->1874",
11583 - "default3.handlebars->117->1855",
11582 + "default.handlebars->119->1875",
11583 + "default3.handlebars->117->1856",
11584 "login2.handlebars->17->4"
11585 ]
11586 },
@@ -11611,8 +11611,8 @@
11611 "zh-cht": "阿拉伯文(巴林)",
11612 "xloc": [
11613 "default-mobile.handlebars->53->119",
11614 - "default.handlebars->119->1875",
11615 - "default3.handlebars->117->1856",
11614 + "default.handlebars->119->1876",
11615 + "default3.handlebars->117->1857",
11616 "login2.handlebars->17->5"
11617 ]
11618 },
@@ -11643,8 +11643,8 @@
11643 "zh-cht": "阿拉伯文(埃及)",
11644 "xloc": [
11645 "default-mobile.handlebars->53->120",
11646 - "default.handlebars->119->1876",
11647 - "default3.handlebars->117->1857",
11646 + "default.handlebars->119->1877",
11647 + "default3.handlebars->117->1858",
11648 "login2.handlebars->17->6"
11649 ]
11650 },
@@ -11675,8 +11675,8 @@
11675 "zh-cht": "阿拉伯文(伊拉克)",
11676 "xloc": [
11677 "default-mobile.handlebars->53->121",
11678 - "default.handlebars->119->1877",
11679 - "default3.handlebars->117->1858",
11678 + "default.handlebars->119->1878",
11679 + "default3.handlebars->117->1859",
11680 "login2.handlebars->17->7"
11681 ]
11682 },
@@ -11707,8 +11707,8 @@
11707 "zh-cht": "阿拉伯文(約旦)",
11708 "xloc": [
11709 "default-mobile.handlebars->53->122",
11710 - "default.handlebars->119->1878",
11711 - "default3.handlebars->117->1859",
11710 + "default.handlebars->119->1879",
11711 + "default3.handlebars->117->1860",
11712 "login2.handlebars->17->8"
11713 ]
11714 },
@@ -11739,8 +11739,8 @@
11739 "zh-cht": "阿拉伯文(科威特)",
11740 "xloc": [
11741 "default-mobile.handlebars->53->123",
11742 - "default.handlebars->119->1879",
11743 - "default3.handlebars->117->1860",
11742 + "default.handlebars->119->1880",
11743 + "default3.handlebars->117->1861",
11744 "login2.handlebars->17->9"
11745 ]
11746 },
@@ -11771,8 +11771,8 @@
11771 "zh-cht": "阿拉伯文(黎巴嫩)",
11772 "xloc": [
11773 "default-mobile.handlebars->53->124",
11774 - "default.handlebars->119->1880",
11775 - "default3.handlebars->117->1861",
11774 + "default.handlebars->119->1881",
11775 + "default3.handlebars->117->1862",
11776 "login2.handlebars->17->10"
11777 ]
11778 },
@@ -11803,8 +11803,8 @@
11803 "zh-cht": "阿拉伯文(利比亞)",
11804 "xloc": [
11805 "default-mobile.handlebars->53->125",
11806 - "default.handlebars->119->1881",
11807 - "default3.handlebars->117->1862",
11806 + "default.handlebars->119->1882",
11807 + "default3.handlebars->117->1863",
11808 "login2.handlebars->17->11"
11809 ]
11810 },
@@ -11835,8 +11835,8 @@
11835 "zh-cht": "阿拉伯文(摩洛哥)",
11836 "xloc": [
11837 "default-mobile.handlebars->53->126",
11838 - "default.handlebars->119->1882",
11839 - "default3.handlebars->117->1863",
11838 + "default.handlebars->119->1883",
11839 + "default3.handlebars->117->1864",
11840 "login2.handlebars->17->12"
11841 ]
11842 },
@@ -11867,8 +11867,8 @@
11867 "zh-cht": "阿拉伯文(阿曼)",
11868 "xloc": [
11869 "default-mobile.handlebars->53->127",
11870 - "default.handlebars->119->1883",
11871 - "default3.handlebars->117->1864",
11870 + "default.handlebars->119->1884",
11871 + "default3.handlebars->117->1865",
11872 "login2.handlebars->17->13"
11873 ]
11874 },
@@ -11899,8 +11899,8 @@
11899 "zh-cht": "阿拉伯文(卡塔爾)",
11900 "xloc": [
11901 "default-mobile.handlebars->53->128",
11902 - "default.handlebars->119->1884",
11903 - "default3.handlebars->117->1865",
11902 + "default.handlebars->119->1885",
11903 + "default3.handlebars->117->1866",
11904 "login2.handlebars->17->14"
11905 ]
11906 },
@@ -11931,8 +11931,8 @@
11931 "zh-cht": "阿拉伯文(沙特阿拉伯)",
11932 "xloc": [
11933 "default-mobile.handlebars->53->129",
11934 - "default.handlebars->119->1885",
11935 - "default3.handlebars->117->1866",
11934 + "default.handlebars->119->1886",
11935 + "default3.handlebars->117->1867",
11936 "login2.handlebars->17->15"
11937 ]
11938 },
@@ -11963,8 +11963,8 @@
11963 "zh-cht": "阿拉伯文(標準)",
11964 "xloc": [
11965 "default-mobile.handlebars->53->117",
11966 - "default.handlebars->119->1873",
11967 - "default3.handlebars->117->1854",
11966 + "default.handlebars->119->1874",
11967 + "default3.handlebars->117->1855",
11968 "login2.handlebars->17->3"
11969 ]
11970 },
@@ -11995,8 +11995,8 @@
11995 "zh-cht": "阿拉伯文(敘利亞)",
11996 "xloc": [
11997 "default-mobile.handlebars->53->130",
11998 - "default.handlebars->119->1886",
11999 - "default3.handlebars->117->1867",
11998 + "default.handlebars->119->1887",
11999 + "default3.handlebars->117->1868",
12000 "login2.handlebars->17->16"
12001 ]
12002 },
@@ -12027,8 +12027,8 @@
12027 "zh-cht": "阿拉伯文(突尼斯)",
12028 "xloc": [
12029 "default-mobile.handlebars->53->131",
12030 - "default.handlebars->119->1887",
12031 - "default3.handlebars->117->1868",
12030 + "default.handlebars->119->1888",
12031 + "default3.handlebars->117->1869",
12032 "login2.handlebars->17->17"
12033 ]
12034 },
@@ -12059,8 +12059,8 @@
12059 "zh-cht": "阿拉伯文(阿聯酋)",
12060 "xloc": [
12061 "default-mobile.handlebars->53->132",
12062 - "default.handlebars->119->1888",
12063 - "default3.handlebars->117->1869",
12062 + "default.handlebars->119->1889",
12063 + "default3.handlebars->117->1870",
12064 "login2.handlebars->17->18"
12065 ]
12066 },
@@ -12091,8 +12091,8 @@
12091 "zh-cht": "阿拉伯文(也門)",
12092 "xloc": [
12093 "default-mobile.handlebars->53->133",
12094 - "default.handlebars->119->1889",
12095 - "default3.handlebars->117->1870",
12094 + "default.handlebars->119->1890",
12095 + "default3.handlebars->117->1871",
12096 "login2.handlebars->17->19"
12097 ]
12098 },
@@ -12123,8 +12123,8 @@
12123 "zh-cht": "阿拉貢文",
12124 "xloc": [
12125 "default-mobile.handlebars->53->134",
12126 - "default.handlebars->119->1890",
12127 - "default3.handlebars->117->1871",
12126 + "default.handlebars->119->1891",
12127 + "default3.handlebars->117->1872",
12128 "login2.handlebars->17->20"
12129 ]
12130 },
@@ -12157,12 +12157,12 @@
12157 "default-mobile.handlebars->53->737",
12158 "default-mobile.handlebars->53->739",
12159 "default-mobile.handlebars->53->741",
12160 - "default.handlebars->119->1594",
12161 - "default.handlebars->119->1596",
12162 - "default.handlebars->119->1598",
12163 - "default3.handlebars->117->1579",
12164 - "default3.handlebars->117->1581",
12165 - "default3.handlebars->117->1583"
12160 + "default.handlebars->119->1595",
12161 + "default.handlebars->119->1597",
12162 + "default.handlebars->119->1599",
12163 + "default3.handlebars->117->1580",
12164 + "default3.handlebars->117->1582",
12165 + "default3.handlebars->117->1584"
12166 ]
12167 },
12168 {
@@ -12222,8 +12222,8 @@
12222 "zh-cht": "你確定要刪除群{0}嗎?刪除裝置群還將刪除該群中有關裝置的所有訊息。",
12223 "xloc": [
12224 "default-mobile.handlebars->53->988",
12225 - "default.handlebars->119->2330",
12226 - "default3.handlebars->117->2324"
12225 + "default.handlebars->119->2331",
12226 + "default3.handlebars->117->2325"
12227 ]
12228 },
12229 {
@@ -12356,8 +12356,8 @@
12356 "zh-chs": "您确定要{0}插件吗:{1}",
12357 "zh-cht": "你確定要{0}外掛嗎:{1}",
12358 "xloc": [
12359 - "default.handlebars->119->3462",
12360 - "default3.handlebars->117->3452"
12359 + "default.handlebars->119->3464",
12360 + "default3.handlebars->117->3454"
12361 ]
12362 },
12363 {
@@ -12418,8 +12418,8 @@
12418 "zh-cht": "亞美尼亞文",
12419 "xloc": [
12420 "default-mobile.handlebars->53->135",
12421 - "default.handlebars->119->1891",
12422 - "default3.handlebars->117->1872",
12421 + "default.handlebars->119->1892",
12422 + "default3.handlebars->117->1873",
12423 "login2.handlebars->17->21"
12424 ]
12425 },
@@ -12632,8 +12632,8 @@
12632 "zh-cht": "阿薩姆文",
12633 "xloc": [
12634 "default-mobile.handlebars->53->136",
12635 - "default.handlebars->119->1892",
12636 - "default3.handlebars->117->1873",
12635 + "default.handlebars->119->1893",
12636 + "default3.handlebars->117->1874",
12637 "login2.handlebars->17->22"
12638 ]
12639 },
@@ -12812,8 +12812,8 @@
12812 "zh-cht": "阿斯圖里亞斯文",
12813 "xloc": [
12814 "default-mobile.handlebars->53->137",
12815 - "default.handlebars->119->1893",
12816 - "default3.handlebars->117->1874",
12815 + "default.handlebars->119->1894",
12816 + "default3.handlebars->117->1875",
12817 "login2.handlebars->17->23"
12818 ]
12819 },
@@ -12843,8 +12843,8 @@
12843 "zh-chs": "尝试激活英特尔(R)AMT ACM模式",
12844 "zh-cht": "嘗試激活英特爾(R)AMT ACM模式",
12845 "xloc": [
12846 - "default.handlebars->119->2581",
12847 - "default3.handlebars->117->2578"
12846 + "default.handlebars->119->2582",
12847 + "default3.handlebars->117->2579"
12848 ]
12849 },
12850 {
@@ -12944,8 +12944,8 @@
12944 "zh-chs": "认证软件",
12945 "zh-cht": "認證軟體",
12946 "xloc": [
12947 - "default.handlebars->119->3023",
12948 - "default3.handlebars->117->3017"
12947 + "default.handlebars->119->3025",
12948 + "default3.handlebars->117->3019"
12949 ]
12950 },
12951 {
@@ -12974,12 +12974,12 @@
12974 "zh-chs": "认证设备",
12975 "zh-cht": "認證設備",
12976 "xloc": [
12977 - "default.handlebars->119->1854",
12978 - "default.handlebars->119->1856",
12979 - "default.handlebars->119->1860",
12980 - "default3.handlebars->117->1836",
12981 - "default3.handlebars->117->1838",
12982 - "default3.handlebars->117->1841"
12977 + "default.handlebars->119->1855",
12978 + "default.handlebars->119->1857",
12979 + "default.handlebars->119->1861",
12980 + "default3.handlebars->117->1837",
12981 + "default3.handlebars->117->1839",
12982 + "default3.handlebars->117->1842"
12983 ]
12984 },
12985 {
@@ -13048,12 +13048,12 @@
13048 "default-mobile.handlebars->53->322",
13049 "default-mobile.handlebars->53->75",
13050 "default-mobile.handlebars->53->80",
13051 - "default.handlebars->119->1850",
13052 - "default.handlebars->119->1852",
13051 + "default.handlebars->119->1851",
13052 + "default.handlebars->119->1853",
13053 "default.handlebars->119->230",
13054 "default.handlebars->119->235",
13055 - "default3.handlebars->117->1832",
13056 - "default3.handlebars->117->1834",
13055 + "default3.handlebars->117->1833",
13056 + "default3.handlebars->117->1835",
13057 "default3.handlebars->117->227",
13058 "default3.handlebars->117->232"
13059 ]
@@ -13205,10 +13205,10 @@
13205 "zh-chs": "自动删除",
13206 "zh-cht": "自動刪除",
13207 "xloc": [
13208 - "default.handlebars->119->2208",
13209 - "default.handlebars->119->2726",
13210 - "default3.handlebars->117->2204",
13211 - "default3.handlebars->117->2723"
13208 + "default.handlebars->119->2209",
13209 + "default.handlebars->119->2728",
13210 + "default3.handlebars->117->2205",
13211 + "default3.handlebars->117->2725"
13212 ]
13213 },
13214 {
@@ -13274,8 +13274,8 @@
13274 "zh-chs": "自动下载代理程序核心转储文件:“{0}”",
13275 "zh-cht": "自動下載代理程序核心轉儲文件:“{0}”",
13276 "xloc": [
13277 - "default.handlebars->119->2662",
13278 - "default3.handlebars->117->2659"
13277 + "default.handlebars->119->2663",
13278 + "default3.handlebars->117->2660"
13279 ]
13280 },
13281 {
@@ -13392,8 +13392,8 @@
13392 "zh-chs": "自动移除非活动设备",
13393 "zh-cht": "自動移除非活動設備",
13394 "xloc": [
13395 - "default.handlebars->119->2360",
13396 - "default3.handlebars->117->2357"
13395 + "default.handlebars->119->2361",
13396 + "default3.handlebars->117->2358"
13397 ]
13398 },
13399 {
@@ -13422,8 +13422,8 @@
13422 "zh-chs": "可用內存",
13423 "zh-cht": "可用內存",
13424 "xloc": [
13425 - "default.handlebars->119->3390",
13426 - "default3.handlebars->117->3380"
13425 + "default.handlebars->119->3392",
13426 + "default3.handlebars->117->3382"
13427 ]
13428 },
13429 {
@@ -13453,8 +13453,8 @@
13453 "zh-cht": "阿塞拜疆文",
13454 "xloc": [
13455 "default-mobile.handlebars->53->138",
13456 - "default.handlebars->119->1894",
13457 - "default3.handlebars->117->1875",
13456 + "default.handlebars->119->1895",
13457 + "default3.handlebars->117->1876",
13458 "login2.handlebars->17->24"
13459 ]
13460 },
@@ -13528,8 +13528,8 @@
13528 "zh-cht": "的BIOS",
13529 "xloc": [
13530 "default-mobile.handlebars->53->836",
13531 - "default.handlebars->119->1673",
13532 - "default3.handlebars->117->1656"
13531 + "default.handlebars->119->1674",
13532 + "default3.handlebars->117->1657"
13533 ]
13534 },
13535 {
@@ -13730,12 +13730,12 @@
13730 "zh-chs": "后台运行与交互式运行",
13731 "zh-cht": "背景與互動",
13732 "xloc": [
13733 - "default.handlebars->119->2459",
13734 - "default.handlebars->119->2466",
13733 + "default.handlebars->119->2460",
13734 + "default.handlebars->119->2467",
13735 "default.handlebars->119->576",
13736 "default.handlebars->119->597",
13737 - "default3.handlebars->117->2456",
13738 - "default3.handlebars->117->2463",
13737 + "default3.handlebars->117->2457",
13738 + "default3.handlebars->117->2464",
13739 "default3.handlebars->117->572",
13740 "default3.handlebars->117->593"
13741 ]
@@ -13767,13 +13767,13 @@
13767 "zh-cht": "僅背景",
13768 "xloc": [
13769 "agentinvite.handlebars->13->9",
13770 - "default.handlebars->119->2460",
13771 - "default.handlebars->119->2468",
13770 + "default.handlebars->119->2461",
13771 + "default.handlebars->119->2469",
13772 "default.handlebars->119->577",
13773 "default.handlebars->119->598",
13774 "default.handlebars->119->615",
13775 - "default3.handlebars->117->2457",
13776 - "default3.handlebars->117->2465",
13775 + "default3.handlebars->117->2458",
13776 + "default3.handlebars->117->2466",
13777 "default3.handlebars->117->573",
13778 "default3.handlebars->117->594",
13779 "default3.handlebars->117->611"
@@ -13836,10 +13836,10 @@
13836 "zh-chs": "备用码",
13837 "zh-cht": "備用碼",
13838 "xloc": [
13839 - "default.handlebars->119->3027",
13840 - "default.handlebars->119->3266",
13841 - "default3.handlebars->117->3021",
13842 - "default3.handlebars->117->3256"
13839 + "default.handlebars->119->3029",
13840 + "default.handlebars->119->3268",
13841 + "default3.handlebars->117->3023",
13842 + "default3.handlebars->117->3258"
13843 ]
13844 },
13845 {
@@ -13929,8 +13929,8 @@
13929 "zh-chs": "错误的签名",
13930 "zh-cht": "錯誤的簽名",
13931 "xloc": [
13932 - "default.handlebars->119->3371",
13933 - "default3.handlebars->117->3361"
13932 + "default.handlebars->119->3373",
13933 + "default3.handlebars->117->3363"
13934 ]
13935 },
13936 {
@@ -13959,8 +13959,8 @@
13959 "zh-chs": "错误的网络证书",
13960 "zh-cht": "錯誤的網絡憑證",
13961 "xloc": [
13962 - "default.handlebars->119->3370",
13963 - "default3.handlebars->117->3360"
13962 + "default.handlebars->119->3372",
13963 + "default3.handlebars->117->3362"
13964 ]
13965 },
13966 {
@@ -13990,8 +13990,8 @@
13990 "zh-cht": "巴斯克",
13991 "xloc": [
13992 "default-mobile.handlebars->53->139",
13993 - "default.handlebars->119->1895",
13994 - "default3.handlebars->117->1876",
13993 + "default.handlebars->119->1896",
13994 + "default3.handlebars->117->1877",
13995 "login2.handlebars->17->25"
13996 ]
13997 },
@@ -14096,8 +14096,8 @@
14096 "zh-chs": "将{0}个文件批量上传到文件夹{1}",
14097 "zh-cht": "將{0}個文件批量上傳到文件夾{1}",
14098 "xloc": [
14099 - "default.handlebars->119->2661",
14100 - "default3.handlebars->117->2658"
14099 + "default.handlebars->119->2662",
14100 + "default3.handlebars->117->2659"
14101 ]
14102 },
14103 {
@@ -14124,8 +14124,8 @@
14124 "zh-cht": "電池",
14125 "xloc": [
14126 "default-mobile.handlebars->53->888",
14127 - "default.handlebars->119->1725",
14128 - "default3.handlebars->117->1708"
14127 + "default.handlebars->119->1726",
14128 + "default3.handlebars->117->1709"
14129 ]
14130 },
14131 {
@@ -14154,8 +14154,8 @@
14154 "zh-cht": "電池充電",
14155 "xloc": [
14156 "default-mobile.handlebars->53->886",
14157 - "default.handlebars->119->1723",
14158 - "default3.handlebars->117->1706"
14157 + "default.handlebars->119->1724",
14158 + "default3.handlebars->117->1707"
14159 ]
14160 },
14161 {
@@ -14185,8 +14185,8 @@
14185 "zh-cht": "白俄羅斯文",
14186 "xloc": [
14187 "default-mobile.handlebars->53->141",
14188 - "default.handlebars->119->1897",
14189 - "default3.handlebars->117->1878",
14188 + "default.handlebars->119->1898",
14189 + "default3.handlebars->117->1879",
14190 "login2.handlebars->17->27"
14191 ]
14192 },
@@ -14217,8 +14217,8 @@
14217 "zh-cht": "孟加拉",
14218 "xloc": [
14219 "default-mobile.handlebars->53->142",
14220 - "default.handlebars->119->1898",
14221 - "default3.handlebars->117->1879",
14220 + "default.handlebars->119->1899",
14221 + "default3.handlebars->117->1880",
14222 "login2.handlebars->17->28"
14223 ]
14224 },
@@ -14287,8 +14287,8 @@
14287 "uk": "BitLocker",
14288 "xloc": [
14289 "default-mobile.handlebars->53->923",
14290 - "default.handlebars->119->1760",
14291 - "default3.handlebars->117->1743"
14290 + "default.handlebars->119->1761",
14291 + "default3.handlebars->117->1744"
14292 ]
14293 },
14294 {
@@ -14299,8 +14299,8 @@
14299 "uk": "Інформація о BitLocker",
14300 "xloc": [
14301 "default-mobile.handlebars->53->944",
14302 - "default.handlebars->119->1781",
14303 - "default3.handlebars->117->1764"
14302 + "default.handlebars->119->1782",
14303 + "default3.handlebars->117->1765"
14304 ]
14305 },
14306 {
@@ -14330,8 +14330,8 @@
14330 "zh-cht": "引導加載程序",
14331 "xloc": [
14332 "default-mobile.handlebars->53->791",
14333 - "default.handlebars->119->1618",
14334 - "default3.handlebars->117->1603"
14333 + "default.handlebars->119->1619",
14334 + "default3.handlebars->117->1604"
14335 ]
14336 },
14337 {
@@ -14361,8 +14361,8 @@
14361 "zh-cht": "波斯尼亞文",
14362 "xloc": [
14363 "default-mobile.handlebars->53->143",
14364 - "default.handlebars->119->1899",
14365 - "default3.handlebars->117->1880",
14364 + "default.handlebars->119->1900",
14365 + "default3.handlebars->117->1881",
14366 "login2.handlebars->17->29"
14367 ]
14368 },
@@ -14393,8 +14393,8 @@
14393 "zh-cht": "布列塔尼",
14394 "xloc": [
14395 "default-mobile.handlebars->53->144",
14396 - "default.handlebars->119->1900",
14397 - "default3.handlebars->117->1881",
14396 + "default.handlebars->119->1901",
14397 + "default3.handlebars->117->1882",
14398 "login2.handlebars->17->30"
14399 ]
14400 },
@@ -14424,9 +14424,9 @@
14424 "zh-chs": "广播",
14425 "zh-cht": "廣播",
14426 "xloc": [
14427 - "default.handlebars->119->2921",
14427 + "default.handlebars->119->2923",
14428 "default.handlebars->container->column_l->p4->3->1->0->3->1",
14429 - "default3.handlebars->117->2915",
14429 + "default3.handlebars->117->2917",
14430 "default3.handlebars->container->column_l->p4->3->1->0->1->3"
14431 ]
14432 },
@@ -14456,8 +14456,8 @@
14456 "zh-chs": "广播消息",
14457 "zh-cht": "廣播消息",
14458 "xloc": [
14459 - "default.handlebars->119->2837",
14460 - "default3.handlebars->117->2833"
14459 + "default.handlebars->119->2839",
14460 + "default3.handlebars->117->2835"
14461 ]
14462 },
14463 {
@@ -14486,8 +14486,8 @@
14486 "zh-chs": "向所有连接的用户广播消息。",
14487 "zh-cht": "向所有連接的用戶廣播消息。",
14488 "xloc": [
14489 - "default.handlebars->119->2832",
14490 - "default3.handlebars->117->2828"
14489 + "default.handlebars->119->2834",
14490 + "default3.handlebars->117->2830"
14491 ]
14492 },
14493 {
@@ -14516,8 +14516,8 @@
14516 "zh-chs": "浏览器",
14517 "zh-cht": "瀏覽器",
14518 "xloc": [
14519 - "default.handlebars->119->3237",
14520 - "default3.handlebars->117->3227"
14519 + "default.handlebars->119->3239",
14520 + "default3.handlebars->117->3229"
14521 ]
14522 },
14523 {
@@ -14608,8 +14608,8 @@
14608 "zh-cht": "保加利亞文",
14609 "xloc": [
14610 "default-mobile.handlebars->53->140",
14611 - "default.handlebars->119->1896",
14612 - "default3.handlebars->117->1877",
14611 + "default.handlebars->119->1897",
14612 + "default3.handlebars->117->1878",
14613 "login2.handlebars->17->26"
14614 ]
14615 },
@@ -14640,8 +14640,8 @@
14640 "zh-cht": "緬甸文",
14641 "xloc": [
14642 "default-mobile.handlebars->53->145",
14643 - "default.handlebars->119->1901",
14644 - "default3.handlebars->117->1882",
14643 + "default.handlebars->119->1902",
14644 + "default3.handlebars->117->1883",
14645 "login2.handlebars->17->31"
14646 ]
14647 },
@@ -14671,8 +14671,8 @@
14671 "zh-chs": "默认情况下,不活动的设备将在 1 天后移除。",
14672 "zh-cht": "默認情況下,非活動設備將在 1 天后移除。",
14673 "xloc": [
14674 - "default.handlebars->119->2362",
14675 - "default3.handlebars->117->2359"
14674 + "default.handlebars->119->2363",
14675 + "default3.handlebars->117->2360"
14676 ]
14677 },
14678 {
@@ -14701,8 +14701,8 @@
14701 "zh-chs": "默认情况下,非活动设备将在 {0} 天后移除。",
14702 "zh-cht": "默認情況下,不活動的設備將在 {0} 天后被移除。",
14703 "xloc": [
14704 - "default.handlebars->119->2363",
14705 - "default3.handlebars->117->2360"
14704 + "default.handlebars->119->2364",
14705 + "default3.handlebars->117->2361"
14706 ]
14707 },
14708 {
@@ -14744,8 +14744,8 @@
14744 "zh-chs": "字节输入",
14745 "zh-cht": "字節輸入",
14746 "xloc": [
14747 - "default.handlebars->119->3233",
14748 - "default3.handlebars->117->3223"
14747 + "default.handlebars->119->3235",
14748 + "default3.handlebars->117->3225"
14749 ]
14750 },
14751 {
@@ -14774,8 +14774,8 @@
14774 "zh-chs": "字节输出",
14775 "zh-cht": "字節輸出",
14776 "xloc": [
14777 - "default.handlebars->119->3234",
14778 - "default3.handlebars->117->3224"
14777 + "default.handlebars->119->3236",
14778 + "default3.handlebars->117->3226"
14779 ]
14780 },
14781 {
@@ -14884,8 +14884,8 @@
14884 "zh-chs": "CCM模式",
14885 "zh-cht": "CCM模式",
14886 "xloc": [
14887 - "default.handlebars->119->2313",
14888 - "default3.handlebars->117->2307"
14887 + "default.handlebars->119->2314",
14888 + "default3.handlebars->117->2308"
14889 ]
14890 },
14891 {
@@ -14896,12 +14896,12 @@
14896 "default-mobile.handlebars->53->916",
14897 "default-mobile.handlebars->53->928",
14898 "default-mobile.handlebars->53->935",
14899 - "default.handlebars->119->1753",
14900 - "default.handlebars->119->1765",
14901 - "default.handlebars->119->1772",
14902 - "default3.handlebars->117->1736",
14903 - "default3.handlebars->117->1748",
14904 - "default3.handlebars->117->1755"
14899 + "default.handlebars->119->1754",
14900 + "default.handlebars->119->1766",
14901 + "default.handlebars->119->1773",
14902 + "default3.handlebars->117->1737",
14903 + "default3.handlebars->117->1749",
14904 + "default3.handlebars->117->1756"
14905 ]
14906 },
14907 {
@@ -14931,10 +14931,10 @@
14931 "zh-cht": "CIRA",
14932 "xloc": [
14933 "default-mobile.handlebars->53->461",
14934 - "default.handlebars->119->3397",
14934 + "default.handlebars->119->3399",
14935 "default.handlebars->119->424",
14936 "default.handlebars->119->731",
14937 - "default3.handlebars->117->3387",
14937 + "default3.handlebars->117->3389",
14938 "default3.handlebars->117->420",
14939 "default3.handlebars->117->727"
14940 ]
@@ -14965,8 +14965,8 @@
14965 "zh-chs": "CIRA服务器",
14966 "zh-cht": "CIRA伺服器",
14967 "xloc": [
14968 - "default.handlebars->119->3446",
14969 - "default3.handlebars->117->3436"
14968 + "default.handlebars->119->3448",
14969 + "default3.handlebars->117->3438"
14970 ]
14971 },
14972 {
@@ -14995,8 +14995,8 @@
14995 "zh-chs": "CIRA服务器命令",
14996 "zh-cht": "CIRA伺服器指令",
14997 "xloc": [
14998 - "default.handlebars->119->3447",
14999 - "default3.handlebars->117->3437"
14998 + "default.handlebars->119->3449",
14999 + "default3.handlebars->117->3439"
15000 ]
15001 },
15002 {
@@ -15055,8 +15055,8 @@
15055 "zh-chs": "CIRA设置",
15056 "zh-cht": "CIRA設置",
15057 "xloc": [
15058 - "default.handlebars->119->2321",
15059 - "default3.handlebars->117->2314"
15058 + "default.handlebars->119->2322",
15059 + "default3.handlebars->117->2315"
15060 ]
15061 },
15062 {
@@ -15086,13 +15086,13 @@
15086 "zh-cht": "CPU",
15087 "xloc": [
15088 "default-mobile.handlebars->53->842",
15089 - "default.handlebars->119->1589",
15090 - "default.handlebars->119->1679",
15091 - "default.handlebars->119->3422",
15089 + "default.handlebars->119->1590",
15090 + "default.handlebars->119->1680",
15091 + "default.handlebars->119->3424",
15092 "default.handlebars->container->column_l->p40->3->1->p40type->5",
15093 - "default3.handlebars->117->1574",
15094 - "default3.handlebars->117->1662",
15095 - "default3.handlebars->117->3412",
15093 + "default3.handlebars->117->1575",
15094 + "default3.handlebars->117->1663",
15095 + "default3.handlebars->117->3414",
15096 "default3.handlebars->container->column_l->p40->3->3->p40type->5"
15097 ]
15098 },
@@ -15122,8 +15122,8 @@
15122 "zh-chs": "CPU负载",
15123 "zh-cht": "CPU負載",
15124 "xloc": [
15125 - "default.handlebars->119->3386",
15126 - "default3.handlebars->117->3376"
15125 + "default.handlebars->119->3388",
15126 + "default3.handlebars->117->3378"
15127 ]
15128 },
15129 {
@@ -15152,8 +15152,8 @@
15152 "zh-chs": "最近15分钟的CPU负载",
15153 "zh-cht": "最近15分鐘的CPU負載",
15154 "xloc": [
15155 - "default.handlebars->119->3389",
15156 - "default3.handlebars->117->3379"
15155 + "default.handlebars->119->3391",
15156 + "default3.handlebars->117->3381"
15157 ]
15158 },
15159 {
@@ -15182,8 +15182,8 @@
15182 "zh-chs": "最近5分钟的CPU负载",
15183 "zh-cht": "最近5分鐘的CPU負載",
15184 "xloc": [
15185 - "default.handlebars->119->3388",
15186 - "default3.handlebars->117->3378"
15185 + "default.handlebars->119->3390",
15186 + "default3.handlebars->117->3380"
15187 ]
15188 },
15189 {
@@ -15212,8 +15212,8 @@
15212 "zh-chs": "最近一分钟的CPU负载",
15213 "zh-cht": "最近一分鐘的CPU負載",
15214 "xloc": [
15215 - "default.handlebars->119->3387",
15216 - "default3.handlebars->117->3377"
15215 + "default.handlebars->119->3389",
15216 + "default3.handlebars->117->3379"
15217 ]
15218 },
15219 {
@@ -15279,8 +15279,8 @@
15279 "zh-chs": "CSV",
15280 "zh-cht": "CSV",
15281 "xloc": [
15282 - "default.handlebars->119->2743",
15283 - "default3.handlebars->117->2740"
15282 + "default.handlebars->119->2745",
15283 + "default3.handlebars->117->2742"
15284 ]
15285 },
15286 {
@@ -15309,11 +15309,11 @@
15309 "zh-chs": "CSV格式",
15310 "zh-cht": "CSV格式",
15311 "xloc": [
15312 - "default.handlebars->119->2747",
15313 - "default.handlebars->119->2824",
15312 + "default.handlebars->119->2749",
15313 + "default.handlebars->119->2826",
15314 "default.handlebars->119->804",
15315 - "default3.handlebars->117->2744",
15316 - "default3.handlebars->117->2820",
15315 + "default3.handlebars->117->2746",
15316 + "default3.handlebars->117->2822",
15317 "default3.handlebars->117->800"
15318 ]
15319 },
@@ -15323,8 +15323,8 @@
15323 "nl": "Het CSV bestandsformaat is als volgt:",
15324 "uk": "Формат файлу CSV нижче:",
15325 "xloc": [
15326 - "default.handlebars->119->2810",
15327 - "default3.handlebars->117->2806"
15326 + "default.handlebars->119->2812",
15327 + "default3.handlebars->117->2808"
15328 ]
15329 },
15330 {
@@ -15379,8 +15379,8 @@
15379 "zh-chs": "呼叫错误",
15380 "zh-cht": "呼叫錯誤",
15381 "xloc": [
15382 - "default.handlebars->119->3463",
15383 - "default3.handlebars->117->3453"
15382 + "default.handlebars->119->3465",
15383 + "default3.handlebars->117->3455"
15384 ]
15385 },
15386 {
@@ -15393,10 +15393,10 @@
15393 "pl": "CallMeBot",
15394 "uk": "CallMeBot",
15395 "xloc": [
15396 - "default.handlebars->119->1819",
15397 - "default.handlebars->119->3062",
15398 - "default3.handlebars->117->1801",
15399 - "default3.handlebars->117->3056"
15396 + "default.handlebars->119->1820",
15397 + "default.handlebars->119->3064",
15398 + "default3.handlebars->117->1802",
15399 + "default3.handlebars->117->3058"
15400 ]
15401 },
15402 {
@@ -15458,8 +15458,8 @@
15458 "agent-translations.json",
15459 "default-mobile.handlebars->53->331",
15460 "default-mobile.handlebars->dialog->idx_dlgButtonBar",
15461 - "default.handlebars->119->2175",
15462 - "default.handlebars->119->3452",
15461 + "default.handlebars->119->2176",
15462 + "default.handlebars->119->3454",
15463 "default.handlebars->119->549",
15464 "default.handlebars->container->dialog->idx_dlgButtonBar",
15465 "default3.handlebars->117->545",
@@ -15590,22 +15590,22 @@
15590 "default-mobile.handlebars->53->913",
15591 "default-mobile.handlebars->53->925",
15592 "default-mobile.handlebars->53->932",
15593 - "default.handlebars->119->1728",
15594 - "default.handlebars->119->1734",
15595 - "default.handlebars->119->1740",
15596 - "default.handlebars->119->1745",
15597 - "default.handlebars->119->1747",
15598 - "default.handlebars->119->1750",
15599 - "default.handlebars->119->1762",
15600 - "default.handlebars->119->1769",
15601 - "default3.handlebars->117->1711",
15602 - "default3.handlebars->117->1717",
15603 - "default3.handlebars->117->1723",
15604 - "default3.handlebars->117->1728",
15605 - "default3.handlebars->117->1730",
15606 - "default3.handlebars->117->1733",
15607 - "default3.handlebars->117->1745",
15608 - "default3.handlebars->117->1752"
15593 + "default.handlebars->119->1729",
15594 + "default.handlebars->119->1735",
15595 + "default.handlebars->119->1741",
15596 + "default.handlebars->119->1746",
15597 + "default.handlebars->119->1748",
15598 + "default.handlebars->119->1751",
15599 + "default.handlebars->119->1763",
15600 + "default.handlebars->119->1770",
15601 + "default3.handlebars->117->1712",
15602 + "default3.handlebars->117->1718",
15603 + "default3.handlebars->117->1724",
15604 + "default3.handlebars->117->1729",
15605 + "default3.handlebars->117->1731",
15606 + "default3.handlebars->117->1734",
15607 + "default3.handlebars->117->1746",
15608 + "default3.handlebars->117->1753"
15609 ]
15610 },
15611 {
@@ -15637,12 +15637,12 @@
15637 "default-mobile.handlebars->53->889",
15638 "default-mobile.handlebars->53->895",
15639 "default-mobile.handlebars->53->901",
15640 - "default.handlebars->119->1726",
15641 - "default.handlebars->119->1732",
15642 - "default.handlebars->119->1738",
15643 - "default3.handlebars->117->1709",
15644 - "default3.handlebars->117->1715",
15645 - "default3.handlebars->117->1721"
15640 + "default.handlebars->119->1727",
15641 + "default.handlebars->119->1733",
15642 + "default.handlebars->119->1739",
15643 + "default3.handlebars->117->1710",
15644 + "default3.handlebars->117->1716",
15645 + "default3.handlebars->117->1722"
15646 ]
15647 },
15648 {
@@ -15673,12 +15673,12 @@
15673 "default-mobile.handlebars->53->914",
15674 "default-mobile.handlebars->53->926",
15675 "default-mobile.handlebars->53->933",
15676 - "default.handlebars->119->1751",
15677 - "default.handlebars->119->1763",
15678 - "default.handlebars->119->1770",
15679 - "default3.handlebars->117->1734",
15680 - "default3.handlebars->117->1746",
15681 - "default3.handlebars->117->1753"
15676 + "default.handlebars->119->1752",
15677 + "default.handlebars->119->1764",
15678 + "default.handlebars->119->1771",
15679 + "default3.handlebars->117->1735",
15680 + "default3.handlebars->117->1747",
15681 + "default3.handlebars->117->1754"
15682 ]
15683 },
15684 {
@@ -15708,8 +15708,8 @@
15708 "zh-cht": "加泰羅尼亞文",
15709 "xloc": [
15710 "default-mobile.handlebars->53->146",
15711 - "default.handlebars->119->1902",
15712 - "default3.handlebars->117->1883",
15711 + "default.handlebars->119->1903",
15712 + "default3.handlebars->117->1884",
15713 "login2.handlebars->17->32"
15714 ]
15715 },
@@ -15806,7 +15806,7 @@
15806 "en": "Cerulean",
15807 "nl": "Hemelsblauw",
15808 "xloc": [
15809 - "default3.handlebars->117->2097"
15809 + "default3.handlebars->117->2098"
15810 ]
15811 },
15812 {
@@ -15836,8 +15836,8 @@
15836 "zh-cht": "查莫羅",
15837 "xloc": [
15838 "default-mobile.handlebars->53->147",
15839 - "default.handlebars->119->1903",
15840 - "default3.handlebars->117->1884",
15839 + "default.handlebars->119->1904",
15840 + "default3.handlebars->117->1885",
15841 "login2.handlebars->17->33"
15842 ]
15843 },
@@ -15898,8 +15898,8 @@
15898 "zh-chs": "更改{0}的邮箱",
15899 "zh-cht": "更改{0}的電郵",
15900 "xloc": [
15901 - "default.handlebars->119->3104",
15902 - "default3.handlebars->117->3096"
15901 + "default.handlebars->119->3106",
15902 + "default3.handlebars->117->3098"
15903 ]
15904 },
15905 {
@@ -15978,10 +15978,10 @@
15978 "zh-cht": "更改密碼",
15979 "xloc": [
15980 "default-mobile.handlebars->53->339",
15981 - "default.handlebars->119->2119",
15982 - "default.handlebars->119->3048",
15983 - "default3.handlebars->117->2095",
15984 - "default3.handlebars->117->3042"
15981 + "default.handlebars->119->2120",
15982 + "default.handlebars->119->3050",
15983 + "default3.handlebars->117->2096",
15984 + "default3.handlebars->117->3044"
15985 ]
15986 },
15987 {
@@ -16010,8 +16010,8 @@
16010 "zh-chs": "更改{0}的密码",
16011 "zh-cht": "更改{0}的密碼",
16012 "xloc": [
16013 - "default.handlebars->119->3113",
16014 - "default3.handlebars->117->3101"
16013 + "default.handlebars->119->3115",
16014 + "default3.handlebars->117->3103"
16015 ]
16016 },
16017 {
@@ -16040,8 +16040,8 @@
16040 "zh-chs": "更改{0}的真实名称",
16041 "zh-cht": "更改{0}的真實名稱",
16042 "xloc": [
16043 - "default.handlebars->119->3099",
16044 - "default3.handlebars->117->3092"
16043 + "default.handlebars->119->3101",
16044 + "default3.handlebars->117->3094"
16045 ]
16046 },
16047 {
@@ -16218,8 +16218,8 @@
16218 "zh-chs": "更改该用户的密码",
16219 "zh-cht": "更改該用戶的密碼",
16220 "xloc": [
16221 - "default.handlebars->119->3047",
16222 - "default3.handlebars->117->3041"
16221 + "default.handlebars->119->3049",
16222 + "default3.handlebars->117->3043"
16223 ]
16224 },
16225 {
@@ -16278,8 +16278,8 @@
16278 "zh-chs": "更改您的邮件地址。",
16279 "zh-cht": "在此處更改你的帳戶電郵地址。",
16280 "xloc": [
16281 - "default.handlebars->119->2106",
16282 - "default3.handlebars->117->2088"
16281 + "default.handlebars->119->2107",
16282 + "default3.handlebars->117->2089"
16283 ]
16284 },
16285 {
@@ -16308,8 +16308,8 @@
16308 "zh-chs": "在下面的框中两次输入旧密码和新密码,以更改帐户密码。",
16309 "zh-cht": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。",
16310 "xloc": [
16311 - "default.handlebars->119->2112",
16312 - "default3.handlebars->117->2092"
16311 + "default.handlebars->119->2113",
16312 + "default3.handlebars->117->2093"
16313 ]
16314 },
16315 {
@@ -16338,8 +16338,8 @@
16338 "zh-chs": "更改帐户凭据",
16339 "zh-cht": "帳戶憑證已更改",
16340 "xloc": [
16341 - "default.handlebars->119->2633",
16342 - "default3.handlebars->117->2630"
16341 + "default.handlebars->119->2634",
16342 + "default3.handlebars->117->2631"
16343 ]
16344 },
16345 {
@@ -16368,8 +16368,8 @@
16368 "zh-chs": "将帐户显示名称更改为 {0}。",
16369 "zh-cht": "將帳戶顯示名稱更改為 {0}。",
16370 "xloc": [
16371 - "default.handlebars->119->2685",
16372 - "default3.handlebars->117->2682"
16371 + "default.handlebars->119->2686",
16372 + "default3.handlebars->117->2683"
16373 ]
16374 },
16375 {
@@ -16398,10 +16398,10 @@
16398 "zh-chs": "{1}组中的设备{0}已更改:{2}",
16399 "zh-cht": "{1}組中的設備{0}已更改:{2}",
16400 "xloc": [
16401 - "default.handlebars->119->2617",
16402 - "default.handlebars->119->2698",
16403 - "default3.handlebars->117->2614",
16404 - "default3.handlebars->117->2695"
16401 + "default.handlebars->119->2618",
16402 + "default.handlebars->119->2699",
16403 + "default3.handlebars->117->2615",
16404 + "default3.handlebars->117->2696"
16405 ]
16406 },
16407 {
@@ -16430,8 +16430,8 @@
16430 "zh-chs": "语言从{1}更改为{2}",
16431 "zh-cht": "語言從{1}更改為{2}",
16432 "xloc": [
16433 - "default.handlebars->119->2561",
16434 - "default3.handlebars->117->2558"
16433 + "default.handlebars->119->2562",
16434 + "default3.handlebars->117->2559"
16435 ]
16436 },
16437 {
@@ -16460,10 +16460,10 @@
16460 "zh-chs": "已更改{0}的用户设备权限",
16461 "zh-cht": "已更改{0}的用戶設備權限",
16462 "xloc": [
16463 - "default.handlebars->119->2619",
16464 - "default.handlebars->119->2640",
16465 - "default3.handlebars->117->2616",
16466 - "default3.handlebars->117->2637"
16463 + "default.handlebars->119->2620",
16464 + "default.handlebars->119->2641",
16465 + "default3.handlebars->117->2617",
16466 + "default3.handlebars->117->2638"
16467 ]
16468 },
16469 {
@@ -16519,8 +16519,8 @@
16519 "zh-cht": "更改語言將需要刷新頁面。",
16520 "xloc": [
16521 "default-mobile.handlebars->53->314",
16522 - "default.handlebars->119->2070",
16523 - "default3.handlebars->117->2051"
16522 + "default.handlebars->119->2071",
16523 + "default3.handlebars->117->2052"
16524 ]
16525 },
16526 {
@@ -16547,8 +16547,8 @@
16547 "zh-cht": "收費率",
16548 "xloc": [
16549 "default-mobile.handlebars->53->870",
16550 - "default.handlebars->119->1707",
16551 - "default3.handlebars->117->1690"
16550 + "default.handlebars->119->1708",
16551 + "default3.handlebars->117->1691"
16552 ]
16553 },
16554 {
@@ -16575,8 +16575,8 @@
16575 "zh-cht": "收費",
16576 "xloc": [
16577 "default-mobile.handlebars->53->872",
16578 - "default.handlebars->119->1709",
16579 - "default3.handlebars->117->1692"
16578 + "default.handlebars->119->1710",
16579 + "default3.handlebars->117->1693"
16580 ]
16581 },
16582 {
@@ -16608,15 +16608,15 @@
16608 "default.handlebars->119->1009",
16609 "default.handlebars->119->1128",
16610 "default.handlebars->119->1153",
16611 - "default.handlebars->119->2764",
16612 - "default.handlebars->119->3043",
16613 - "default.handlebars->119->3044",
16611 + "default.handlebars->119->2766",
16612 + "default.handlebars->119->3045",
16613 + "default.handlebars->119->3046",
16614 "default3.handlebars->117->1005",
16615 "default3.handlebars->117->1122",
16616 "default3.handlebars->117->1147",
16617 - "default3.handlebars->117->2761",
16618 - "default3.handlebars->117->3037",
16619 - "default3.handlebars->117->3038"
16617 + "default3.handlebars->117->2763",
16618 + "default3.handlebars->117->3039",
16619 + "default3.handlebars->117->3040"
16620 ]
16621 },
16622 {
@@ -16647,10 +16647,10 @@
16647 "xloc": [
16648 "default-mobile.handlebars->53->1018",
16649 "default-mobile.handlebars->53->1038",
16650 - "default.handlebars->119->2394",
16651 - "default.handlebars->119->2432",
16652 - "default3.handlebars->117->2391",
16653 - "default3.handlebars->117->2429"
16650 + "default.handlebars->119->2395",
16651 + "default.handlebars->119->2433",
16652 + "default3.handlebars->117->2392",
16653 + "default3.handlebars->117->2430"
16654 ]
16655 },
16656 {
@@ -16680,8 +16680,8 @@
16680 "zh-cht": "聊天請求,點擊這裡接受。",
16681 "xloc": [
16682 "default-mobile.handlebars->53->1070",
16683 - "default.handlebars->119->3335",
16684 - "default3.handlebars->117->3325"
16683 + "default.handlebars->119->3337",
16684 + "default3.handlebars->117->3327"
16685 ]
16686 },
16687 {
@@ -16740,8 +16740,8 @@
16740 "zh-cht": "車臣",
16741 "xloc": [
16742 "default-mobile.handlebars->53->148",
16743 - "default.handlebars->119->1904",
16744 - "default3.handlebars->117->1885",
16743 + "default.handlebars->119->1905",
16744 + "default3.handlebars->117->1886",
16745 "login2.handlebars->17->34"
16746 ]
16747 },
@@ -16906,10 +16906,10 @@
16906 "zh-chs": "检查...",
16907 "zh-cht": "檢查...",
16908 "xloc": [
16909 - "default.handlebars->119->1870",
16910 - "default.handlebars->119->3457",
16911 - "default3.handlebars->117->1851",
16912 - "default3.handlebars->117->3447"
16909 + "default.handlebars->119->1871",
16910 + "default.handlebars->119->3459",
16911 + "default3.handlebars->117->1852",
16912 + "default3.handlebars->117->3449"
16913 ]
16914 },
16915 {
@@ -16936,8 +16936,8 @@
16936 "zh-cht": "化學",
16937 "xloc": [
16938 "default-mobile.handlebars->53->864",
16939 - "default.handlebars->119->1701",
16940 - "default3.handlebars->117->1684"
16939 + "default.handlebars->119->1702",
16940 + "default3.handlebars->117->1685"
16941 ]
16942 },
16943 {
@@ -16967,8 +16967,8 @@
16967 "zh-cht": "中文",
16968 "xloc": [
16969 "default-mobile.handlebars->53->149",
16970 - "default.handlebars->119->1905",
16971 - "default3.handlebars->117->1886",
16970 + "default.handlebars->119->1906",
16971 + "default3.handlebars->117->1887",
16972 "login2.handlebars->17->35"
16973 ]
16974 },
@@ -16999,8 +16999,8 @@
16999 "zh-cht": "中文(香港)",
17000 "xloc": [
17001 "default-mobile.handlebars->53->150",
17002 - "default.handlebars->119->1906",
17003 - "default3.handlebars->117->1887",
17002 + "default.handlebars->119->1907",
17003 + "default3.handlebars->117->1888",
17004 "login2.handlebars->17->36"
17005 ]
17006 },
@@ -17031,8 +17031,8 @@
17031 "zh-cht": "中文(中國)",
17032 "xloc": [
17033 "default-mobile.handlebars->53->151",
17034 - "default.handlebars->119->1907",
17035 - "default3.handlebars->117->1888",
17034 + "default.handlebars->119->1908",
17035 + "default3.handlebars->117->1889",
17036 "login2.handlebars->17->37"
17037 ]
17038 },
@@ -17063,8 +17063,8 @@
17063 "zh-cht": "簡體中文",
17064 "xloc": [
17065 "default-mobile.handlebars->53->311",
17066 - "default.handlebars->119->2067",
17067 - "default3.handlebars->117->2048",
17066 + "default.handlebars->119->2068",
17067 + "default3.handlebars->117->2049",
17068 "login2.handlebars->17->197"
17069 ]
17070 },
@@ -17095,8 +17095,8 @@
17095 "zh-cht": "中文(新加坡)",
17096 "xloc": [
17097 "default-mobile.handlebars->53->152",
17098 - "default.handlebars->119->1908",
17099 - "default3.handlebars->117->1889",
17098 + "default.handlebars->119->1909",
17099 + "default3.handlebars->117->1890",
17100 "login2.handlebars->17->38"
17101 ]
17102 },
@@ -17127,8 +17127,8 @@
17127 "zh-cht": "中文(台灣)",
17128 "xloc": [
17129 "default-mobile.handlebars->53->153",
17130 - "default.handlebars->119->1909",
17131 - "default3.handlebars->117->1890",
17130 + "default.handlebars->119->1910",
17131 + "default3.handlebars->117->1891",
17132 "login2.handlebars->17->39"
17133 ]
17134 },
@@ -17159,8 +17159,8 @@
17159 "zh-cht": "繁體中文",
17160 "xloc": [
17161 "default-mobile.handlebars->53->312",
17162 - "default.handlebars->119->2068",
17163 - "default3.handlebars->117->2049",
17162 + "default.handlebars->119->2069",
17163 + "default3.handlebars->117->2050",
17164 "login2.handlebars->17->198"
17165 ]
17166 },
@@ -17222,8 +17222,8 @@
17222 "zh-cht": "楚瓦什",
17223 "xloc": [
17224 "default-mobile.handlebars->53->154",
17225 - "default.handlebars->119->1910",
17226 - "default3.handlebars->117->1891",
17225 + "default.handlebars->119->1911",
17226 + "default3.handlebars->117->1892",
17227 "login2.handlebars->17->40"
17228 ]
17229 },
@@ -17293,18 +17293,18 @@
17293 "default-mobile.handlebars->53->726",
17294 "default-mobile.handlebars->53->89",
17295 "default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->5",
17296 - "default.handlebars->119->1562",
17297 - "default.handlebars->119->1564",
17298 - "default.handlebars->119->1566",
17299 - "default.handlebars->119->1568",
17300 - "default.handlebars->119->2555",
17296 + "default.handlebars->119->1563",
17297 + "default.handlebars->119->1565",
17298 + "default.handlebars->119->1567",
17299 + "default.handlebars->119->1569",
17300 + "default.handlebars->119->2556",
17301 "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7",
17302 "default.handlebars->container->column_l->p41->3->1",
17303 - "default3.handlebars->117->1547",
17304 - "default3.handlebars->117->1549",
17305 - "default3.handlebars->117->1551",
17306 - "default3.handlebars->117->1553",
17307 - "default3.handlebars->117->2552",
17303 + "default3.handlebars->117->1548",
17304 + "default3.handlebars->117->1550",
17305 + "default3.handlebars->117->1552",
17306 + "default3.handlebars->117->1554",
17307 + "default3.handlebars->117->2553",
17308 "default3.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7",
17309 "default3.handlebars->container->column_l->p41->3->3",
17310 "messenger.handlebars->xbottom->1->1->0->5",
@@ -17497,8 +17497,8 @@
17497 "zh-cht": "全部清除",
17498 "xloc": [
17499 "default-mobile.handlebars->53->1053",
17500 - "default.handlebars->119->3318",
17501 - "default3.handlebars->117->3308"
17500 + "default.handlebars->119->3320",
17501 + "default3.handlebars->117->3310"
17502 ]
17503 },
17504 {
@@ -17559,8 +17559,8 @@
17559 "zh-cht": "清除核心",
17560 "xloc": [
17561 "default-mobile.handlebars->53->954",
17562 - "default.handlebars->119->1792",
17563 - "default3.handlebars->117->1775"
17562 + "default.handlebars->119->1793",
17563 + "default3.handlebars->117->1776"
17564 ]
17565 },
17566 {
@@ -17621,8 +17621,8 @@
17621 "zh-cht": "清除此通知",
17622 "xloc": [
17623 "default-mobile.handlebars->53->1052",
17624 - "default.handlebars->119->3317",
17625 - "default3.handlebars->117->3307"
17624 + "default.handlebars->119->3319",
17625 + "default3.handlebars->117->3309"
17626 ]
17627 },
17628 {
@@ -17738,10 +17738,10 @@
17738 "zh-chs": "单击此处编辑设备组名称",
17739 "zh-cht": "單擊此處編輯裝置群名稱",
17740 "xloc": [
17741 - "default.handlebars->119->2189",
17742 - "default.handlebars->119->2493",
17743 - "default3.handlebars->117->2185",
17744 - "default3.handlebars->117->2490"
17741 + "default.handlebars->119->2190",
17742 + "default.handlebars->119->2494",
17743 + "default3.handlebars->117->2186",
17744 + "default3.handlebars->117->2491"
17745 ]
17746 },
17747 {
@@ -17800,8 +17800,8 @@
17800 "zh-chs": "单击此处编辑用户组名称",
17801 "zh-cht": "單擊此處編輯用戶群名稱",
17802 "xloc": [
17803 - "default.handlebars->119->2894",
17804 - "default3.handlebars->117->2888"
17803 + "default.handlebars->119->2896",
17804 + "default3.handlebars->117->2890"
17805 ]
17806 },
17807 {
@@ -17946,8 +17946,8 @@
17946 "zh-cht": "單擊確定將驗證電郵發送到:",
17947 "xloc": [
17948 "default-mobile.handlebars->53->324",
17949 - "default.handlebars->119->2103",
17950 - "default3.handlebars->117->2085"
17949 + "default.handlebars->119->2104",
17950 + "default3.handlebars->117->2086"
17951 ]
17952 },
17953 {
@@ -18063,8 +18063,8 @@
18063 "zh-cht": "客戶端控制模式(CCM)",
18064 "xloc": [
18065 "default-mobile.handlebars->53->820",
18066 - "default.handlebars->119->1657",
18067 - "default3.handlebars->117->1640"
18066 + "default.handlebars->119->1658",
18067 + "default3.handlebars->117->1641"
18068 ]
18069 },
18070 {
@@ -18093,8 +18093,8 @@
18093 "zh-chs": "客户编号",
18094 "zh-cht": "客戶編號",
18095 "xloc": [
18096 - "default.handlebars->119->2166",
18097 - "default3.handlebars->117->2166"
18096 + "default.handlebars->119->2167",
18097 + "default3.handlebars->117->2167"
18098 ]
18099 },
18100 {
@@ -18123,8 +18123,8 @@
18123 "zh-chs": "客户端启动的远程访问",
18124 "zh-cht": "客戶端啟動的遠程訪問",
18125 "xloc": [
18126 - "default.handlebars->119->2320",
18127 - "default3.handlebars->117->2315"
18126 + "default.handlebars->119->2321",
18127 + "default3.handlebars->117->2316"
18128 ]
18129 },
18130 {
@@ -18153,8 +18153,8 @@
18153 "zh-chs": "客户机密",
18154 "zh-cht": "客戶機密",
18155 "xloc": [
18156 - "default.handlebars->119->2167",
18157 - "default3.handlebars->117->2167"
18156 + "default.handlebars->119->2168",
18157 + "default3.handlebars->117->2168"
18158 ]
18159 },
18160 {
@@ -18220,7 +18220,7 @@
18220 "default.handlebars->119->1537",
18221 "default.handlebars->119->242",
18222 "default.handlebars->119->251",
18223 - "default.handlebars->119->3451",
18223 + "default.handlebars->119->3453",
18224 "default3.handlebars->117->1453",
18225 "default3.handlebars->117->1522",
18226 "default3.handlebars->117->347",
@@ -18253,8 +18253,8 @@
18253 "zh-chs": "已关闭桌面多路复用会话 \\\"{0}\\\",{1} 秒",
18254 "zh-cht": "已關閉桌面多路復用會話 \\\"{0}\\\",{1} 秒",
18255 "xloc": [
18256 - "default.handlebars->119->2705",
18257 - "default3.handlebars->117->2702"
18256 + "default.handlebars->119->2706",
18257 + "default3.handlebars->117->2703"
18258 ]
18259 },
18260 {
@@ -18283,8 +18283,8 @@
18283 "zh-chs": "封闭式桌面多路复用会话,{0}秒",
18284 "zh-cht": "封閉式桌面多路復用會話,{0}秒",
18285 "xloc": [
18286 - "default.handlebars->119->2566",
18287 - "default3.handlebars->117->2563"
18286 + "default.handlebars->119->2567",
18287 + "default3.handlebars->117->2564"
18288 ]
18289 },
18290 {
@@ -18499,10 +18499,10 @@
18499 "default-mobile.handlebars->53->1040",
18500 "default.handlebars->119->1130",
18501 "default.handlebars->119->1155",
18502 - "default.handlebars->119->2434",
18502 + "default.handlebars->119->2435",
18503 "default3.handlebars->117->1124",
18504 "default3.handlebars->117->1149",
18505 - "default3.handlebars->117->2431"
18505 + "default3.handlebars->117->2432"
18506 ]
18507 },
18508 {
@@ -18585,10 +18585,10 @@
18585 "zh-chs": "通用设备组",
18586 "zh-cht": "通用裝置群",
18587 "xloc": [
18588 - "default.handlebars->119->2929",
18589 - "default.handlebars->119->3118",
18590 - "default3.handlebars->117->2923",
18591 - "default3.handlebars->117->3106"
18588 + "default.handlebars->119->2931",
18589 + "default.handlebars->119->3120",
18590 + "default3.handlebars->117->2925",
18591 + "default3.handlebars->117->3108"
18592 ]
18593 },
18594 {
@@ -18617,10 +18617,10 @@
18617 "zh-chs": "通用设备",
18618 "zh-cht": "通用裝置",
18619 "xloc": [
18620 - "default.handlebars->119->2935",
18621 - "default.handlebars->119->3130",
18622 - "default3.handlebars->117->2929",
18623 - "default3.handlebars->117->3118"
18620 + "default.handlebars->119->2937",
18621 + "default.handlebars->119->3132",
18622 + "default3.handlebars->117->2931",
18623 + "default3.handlebars->117->3120"
18624 ]
18625 },
18626 {
@@ -18650,8 +18650,8 @@
18650 "zh-cht": "編譯時間",
18651 "xloc": [
18652 "default-mobile.handlebars->53->786",
18653 - "default.handlebars->119->1613",
18654 - "default3.handlebars->117->1598"
18653 + "default.handlebars->119->1614",
18654 + "default3.handlebars->117->1599"
18655 ]
18656 },
18657 {
@@ -18749,8 +18749,8 @@
18749 "pl": "Zapisy pliku konfiguracyjnego",
18750 "uk": "Записи файлу конфігурації",
18751 "xloc": [
18752 - "default.handlebars->119->3284",
18753 - "default3.handlebars->117->3274"
18752 + "default.handlebars->119->3286",
18753 + "default3.handlebars->117->3276"
18754 ]
18755 },
18756 {
@@ -18783,19 +18783,19 @@
18783 "default-mobile.handlebars->53->989",
18784 "default.handlebars->119->1304",
18785 "default.handlebars->119->1313",
18786 - "default.handlebars->119->2331",
18787 - "default.handlebars->119->2794",
18788 - "default.handlebars->119->2884",
18789 - "default.handlebars->119->2951",
18790 - "default.handlebars->119->3116",
18786 + "default.handlebars->119->2332",
18787 + "default.handlebars->119->2796",
18788 + "default.handlebars->119->2886",
18789 + "default.handlebars->119->2953",
18790 + "default.handlebars->119->3118",
18791 "default.handlebars->119->768",
18792 "default3.handlebars->117->1294",
18793 "default3.handlebars->117->1302",
18794 - "default3.handlebars->117->2325",
18795 - "default3.handlebars->117->2791",
18796 - "default3.handlebars->117->2878",
18797 - "default3.handlebars->117->2945",
18798 - "default3.handlebars->117->3104",
18794 + "default3.handlebars->117->2326",
18795 + "default3.handlebars->117->2793",
18796 + "default3.handlebars->117->2880",
18797 + "default3.handlebars->117->2947",
18798 + "default3.handlebars->117->3106",
18799 "default3.handlebars->117->764"
18800 ]
18801 },
@@ -18829,7 +18829,7 @@
18829 "en": "Confirm Password",
18830 "nl": "Bevestig wachtwoord",
18831 "xloc": [
18832 - "default3.handlebars->117->2839"
18832 + "default3.handlebars->117->2841"
18833 ]
18834 },
18835 {
@@ -18859,8 +18859,8 @@
18859 "zh-cht": "確認將1個副本複製到此位置?",
18860 "xloc": [
18861 "default-mobile.handlebars->53->715",
18862 - "default.handlebars->119->1557",
18863 - "default3.handlebars->117->1542",
18862 + "default.handlebars->119->1558",
18863 + "default3.handlebars->117->1543",
18864 "sharing-mobile.handlebars->53->93",
18865 "sharing.handlebars->47->70"
18866 ]
@@ -18891,8 +18891,8 @@
18891 "zh-chs": "确认{0}个条目的复制到此位置?",
18892 "zh-cht": "確認{0}個條目的複製到此位置?",
18893 "xloc": [
18894 - "default.handlebars->119->1556",
18895 - "default3.handlebars->117->1541",
18894 + "default.handlebars->119->1557",
18895 + "default3.handlebars->117->1542",
18896 "sharing.handlebars->47->69"
18897 ]
18898 },
@@ -18952,8 +18952,8 @@
18952 "zh-chs": "确认删除选定的帐户?",
18953 "zh-cht": "確認刪除所選帳戶?",
18954 "xloc": [
18955 - "default.handlebars->119->2793",
18956 - "default3.handlebars->117->2790"
18955 + "default.handlebars->119->2795",
18956 + "default3.handlebars->117->2792"
18957 ]
18958 },
18959 {
@@ -19008,8 +19008,8 @@
19008 "zh-chs": "确认删除选定的用户组?",
19009 "zh-cht": "確認刪除所選用戶群?",
19010 "xloc": [
19011 - "default.handlebars->119->2883",
19012 - "default3.handlebars->117->2877"
19011 + "default.handlebars->119->2885",
19012 + "default3.handlebars->117->2879"
19013 ]
19014 },
19015 {
@@ -19038,24 +19038,24 @@
19038 "zh-chs": "确认删除用户{0}?",
19039 "zh-cht": "確認刪除用戶{0}?",
19040 "xloc": [
19041 - "default.handlebars->119->3115",
19042 - "default3.handlebars->117->3103"
19041 + "default.handlebars->119->3117",
19042 + "default3.handlebars->117->3105"
19043 ]
19044 },
19045 {
19046 "en": "Confirm disabling 2FA Duo login security.",
19047 "nl": "Bevestig het uitschakelen van 2FA Duo inlogbeveiliging.",
19048 "xloc": [
19049 - "default.handlebars->119->1849",
19050 - "default3.handlebars->117->1831"
19049 + "default.handlebars->119->1850",
19050 + "default3.handlebars->117->1832"
19051 ]
19052 },
19053 {
19054 "en": "Confirm enabling of Duo 2FA login security. Once enabled you will be given the option to use Duo at login for added security. Click ok to go thru the steps to enable Duo.",
19055 "nl": "Bevestig het inschakelen van Duo 2FA inlogbeveiliging. Eenmaal ingeschakeld, krijgt u de mogelijkheid om Duo te gebruiken bij het inloggen voor extra veiligheid. Klik op OK om de stappen te doorlopen om Duo in te schakelen.",
19056 "xloc": [
19057 - "default.handlebars->119->1847",
19058 - "default3.handlebars->117->1829"
19057 + "default.handlebars->119->1848",
19058 + "default3.handlebars->117->1830"
19059 ]
19060 },
19061 {
@@ -19084,8 +19084,8 @@
19084 "zh-chs": "确认删除用户“ {0} ”的成员身份?",
19085 "zh-cht": "確認刪除用戶“ {0} ”的成員身份?",
19086 "xloc": [
19087 - "default.handlebars->119->2954",
19088 - "default3.handlebars->117->2948"
19087 + "default.handlebars->119->2956",
19088 + "default3.handlebars->117->2950"
19089 ]
19090 },
19091 {
@@ -19114,8 +19114,8 @@
19114 "zh-chs": "确认删除用户组“ {0} ”的成员身份?",
19115 "zh-cht": "確認刪除用戶群“ {0} ”的成員身份?",
19116 "xloc": [
19117 - "default.handlebars->119->3147",
19118 - "default3.handlebars->117->3135"
19117 + "default.handlebars->119->3149",
19118 + "default3.handlebars->117->3137"
19119 ]
19120 },
19121 {
@@ -19145,8 +19145,8 @@
19145 "zh-cht": "確認將1個條目移動到此位置?",
19146 "xloc": [
19147 "default-mobile.handlebars->53->717",
19148 - "default.handlebars->119->1559",
19149 - "default3.handlebars->117->1544",
19148 + "default.handlebars->119->1560",
19149 + "default3.handlebars->117->1545",
19150 "sharing-mobile.handlebars->53->95",
19151 "sharing.handlebars->47->72"
19152 ]
@@ -19177,8 +19177,8 @@
19177 "zh-chs": "确认将{0}个条目移到此位置?",
19178 "zh-cht": "確認將{0}個條目移到該位置?",
19179 "xloc": [
19180 - "default.handlebars->119->1558",
19181 - "default3.handlebars->117->1543",
19180 + "default.handlebars->119->1559",
19181 + "default3.handlebars->117->1544",
19182 "sharing.handlebars->47->71"
19183 ]
19184 },
@@ -19238,8 +19238,8 @@
19238 "zh-chs": "确认覆盖?",
19239 "zh-cht": "確認覆蓋?",
19240 "xloc": [
19241 - "default.handlebars->119->2547",
19242 - "default3.handlebars->117->2544"
19241 + "default.handlebars->119->2548",
19242 + "default3.handlebars->117->2545"
19243 ]
19244 },
19245 {
@@ -19268,10 +19268,10 @@
19268 "zh-chs": "确认删除设备“ {0} ”的访问权限?",
19269 "zh-cht": "確認刪除裝置“ {0} ”的訪問權限?",
19270 "xloc": [
19271 - "default.handlebars->119->2944",
19272 - "default.handlebars->119->3138",
19273 - "default3.handlebars->117->2938",
19274 - "default3.handlebars->117->3126"
19271 + "default.handlebars->119->2946",
19272 + "default.handlebars->119->3140",
19273 + "default3.handlebars->117->2940",
19274 + "default3.handlebars->117->3128"
19275 ]
19276 },
19277 {
@@ -19300,10 +19300,10 @@
19300 "zh-chs": "确认删除设备组“ {0} ”的访问权限?",
19301 "zh-cht": "確認刪除裝置群“ {0} ”的訪問權限?",
19302 "xloc": [
19303 - "default.handlebars->119->2946",
19304 - "default.handlebars->119->3151",
19305 - "default3.handlebars->117->2940",
19306 - "default3.handlebars->117->3139"
19303 + "default.handlebars->119->2948",
19304 + "default.handlebars->119->3153",
19305 + "default3.handlebars->117->2942",
19306 + "default3.handlebars->117->3141"
19307 ]
19308 },
19309 {
@@ -19332,8 +19332,8 @@
19332 "zh-chs": "确认删除用户“ {0} ”的访问权限?",
19333 "zh-cht": "確認刪除用戶“ {0} ”的訪問權限?",
19334 "xloc": [
19335 - "default.handlebars->119->3140",
19336 - "default3.handlebars->117->3128"
19335 + "default.handlebars->119->3142",
19336 + "default3.handlebars->117->3130"
19337 ]
19338 },
19339 {
@@ -19362,8 +19362,8 @@
19362 "zh-chs": "确认删除用户组“ {0} ”的访问权限?",
19363 "zh-cht": "確認刪除用戶群“ {0} ”的訪問權限?",
19364 "xloc": [
19365 - "default.handlebars->119->3143",
19366 - "default3.handlebars->117->3131"
19365 + "default.handlebars->119->3145",
19366 + "default3.handlebars->117->3133"
19367 ]
19368 },
19369 {
@@ -19392,10 +19392,10 @@
19392 "zh-chs": "确认删除访问权限?",
19393 "zh-cht": "確認刪除訪問權限?",
19394 "xloc": [
19395 - "default.handlebars->119->3141",
19396 - "default.handlebars->119->3144",
19397 - "default3.handlebars->117->3129",
19398 - "default3.handlebars->117->3132"
19395 + "default.handlebars->119->3143",
19396 + "default.handlebars->119->3146",
19397 + "default3.handlebars->117->3131",
19398 + "default3.handlebars->117->3134"
19399 ]
19400 },
19401 {
@@ -19425,8 +19425,8 @@
19425 "zh-cht": "確認刪除身份驗證軟體兩步登入?",
19426 "xloc": [
19427 "default-mobile.handlebars->53->323",
19428 - "default.handlebars->119->1853",
19429 - "default3.handlebars->117->1835"
19428 + "default.handlebars->119->1854",
19429 + "default3.handlebars->117->1836"
19430 ]
19431 },
19432 {
@@ -19481,8 +19481,8 @@
19481 "zh-chs": "确认删除设备共享“{0}”?",
19482 "zh-cht": "確認刪除設備共享“{0}”?",
19483 "xloc": [
19484 - "default.handlebars->119->3136",
19485 - "default3.handlebars->117->3124"
19484 + "default.handlebars->119->3138",
19485 + "default3.handlebars->117->3126"
19486 ]
19487 },
19488 {
@@ -19563,8 +19563,8 @@
19563 "zh-chs": "确认移除推送认证设备?",
19564 "zh-cht": "確認移除推送認證設備?",
19565 "xloc": [
19566 - "default.handlebars->119->1855",
19567 - "default3.handlebars->117->1837"
19566 + "default.handlebars->119->1856",
19567 + "default3.handlebars->117->1838"
19568 ]
19569 },
19570 {
@@ -19593,8 +19593,8 @@
19593 "zh-chs": "确认删除用户“ {0} ”的权限?",
19594 "zh-cht": "確認刪除用戶“ {0} ”的權限?",
19595 "xloc": [
19596 - "default.handlebars->119->2446",
19597 - "default3.handlebars->117->2443"
19596 + "default.handlebars->119->2447",
19597 + "default3.handlebars->117->2444"
19598 ]
19599 },
19600 {
@@ -19623,8 +19623,8 @@
19623 "zh-chs": "确认删除用户组“ {0} ”的权限?",
19624 "zh-cht": "確認刪除用戶群“ {0} ”的權限?",
19625 "xloc": [
19626 - "default.handlebars->119->2448",
19627 - "default3.handlebars->117->2445"
19626 + "default.handlebars->119->2449",
19627 + "default3.handlebars->117->2446"
19628 ]
19629 },
19630 {
@@ -19683,8 +19683,8 @@
19683 "zh-chs": "确认删除此登录令牌?",
19684 "zh-cht": "確認刪除此登錄令牌?",
19685 "xloc": [
19686 - "default.handlebars->119->2159",
19687 - "default3.handlebars->117->2159"
19686 + "default.handlebars->119->2160",
19687 + "default3.handlebars->117->2160"
19688 ]
19689 },
19690 {
@@ -19799,8 +19799,8 @@
19799 "zh-cht": "將{1}入口{2}中的{0}限製到此位置?",
19800 "xloc": [
19801 "default-mobile.handlebars->53->384",
19802 - "default.handlebars->119->2550",
19803 - "default3.handlebars->117->2547"
19802 + "default.handlebars->119->2551",
19803 + "default3.handlebars->117->2548"
19804 ]
19805 },
19806 {
@@ -19833,12 +19833,12 @@
19833 "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
19834 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3",
19835 "default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea1->1->3->connectbutton2span",
19836 - "default.handlebars->119->2229",
19836 + "default.handlebars->119->2230",
19837 "default.handlebars->119->966",
19838 "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1span",
19839 "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2span",
19840 "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3",
19841 - "default3.handlebars->117->2225",
19841 + "default3.handlebars->117->2226",
19842 "default3.handlebars->117->962",
19843 "default3.handlebars->container->column_l->p11->deskarea0->deskarea1->1->connectbutton1span->connectbutton1",
19844 "default3.handlebars->container->column_l->p12->termTable->1->1->0->1->1->connectbutton2span->connectbutton2",
@@ -19940,8 +19940,8 @@
19940 "zh-chs": "连接到服务器",
19941 "zh-cht": "連接到伺服器",
19942 "xloc": [
19943 - "default.handlebars->119->2324",
19944 - "default3.handlebars->117->2318"
19943 + "default.handlebars->119->2325",
19944 + "default3.handlebars->117->2319"
19945 ]
19946 },
19947 {
@@ -20215,8 +20215,8 @@
20215 "zh-chs": "已连接的英特尔&reg;AMT",
20216 "zh-cht": "已連接的Intel&reg; AMT",
20217 "xloc": [
20218 - "default.handlebars->119->3376",
20219 - "default3.handlebars->117->3366"
20218 + "default.handlebars->119->3378",
20219 + "default3.handlebars->117->3368"
20220 ]
20221 },
20222 {
@@ -20245,8 +20245,8 @@
20245 "zh-chs": "已连接的英特尔&reg;AMT CIRA",
20246 "zh-cht": "已連接的Intel&reg; AMT CIRA",
20247 "xloc": [
20248 - "default.handlebars->119->3377",
20249 - "default3.handlebars->117->3367"
20248 + "default.handlebars->119->3379",
20249 + "default3.handlebars->117->3369"
20250 ]
20251 },
20252 {
@@ -20275,8 +20275,8 @@
20275 "zh-chs": "已连接的用户",
20276 "zh-cht": "已连接的用户",
20277 "xloc": [
20278 - "default.handlebars->119->3382",
20279 - "default3.handlebars->117->3372"
20278 + "default.handlebars->119->3384",
20279 + "default3.handlebars->117->3374"
20280 ]
20281 },
20282 {
@@ -20336,8 +20336,8 @@
20336 "zh-cht": "現在已連接",
20337 "xloc": [
20338 "default-mobile.handlebars->53->781",
20339 - "default.handlebars->119->1608",
20340 - "default3.handlebars->117->1593"
20339 + "default.handlebars->119->1609",
20340 + "default3.handlebars->117->1594"
20341 ]
20342 },
20343 {
@@ -20479,12 +20479,12 @@
20479 "default-mobile.handlebars->53->2",
20480 "default-mobile.handlebars->53->52",
20481 "default-mobile.handlebars->53->733",
20482 - "default.handlebars->119->1585",
20482 + "default.handlebars->119->1586",
20483 "default.handlebars->119->408",
20484 "default.handlebars->119->411",
20485 "default.handlebars->119->492",
20486 "default.handlebars->119->9",
20487 - "default3.handlebars->117->1570",
20487 + "default3.handlebars->117->1571",
20488 "default3.handlebars->117->404",
20489 "default3.handlebars->117->407",
20490 "default3.handlebars->117->488",
@@ -20549,8 +20549,8 @@
20549 "zh-chs": "连接数量",
20550 "zh-cht": "連接數量",
20551 "xloc": [
20552 - "default.handlebars->119->3408",
20553 - "default3.handlebars->117->3398"
20552 + "default.handlebars->119->3410",
20553 + "default3.handlebars->117->3400"
20554 ]
20555 },
20556 {
@@ -20620,8 +20620,8 @@
20620 "zh-chs": "连接转发器",
20621 "zh-cht": "連接轉發器",
20622 "xloc": [
20623 - "default.handlebars->119->3445",
20624 - "default3.handlebars->117->3435"
20623 + "default.handlebars->119->3447",
20624 + "default3.handlebars->117->3437"
20625 ]
20626 },
20627 {
@@ -20710,11 +20710,11 @@
20710 "zh-cht": "連接性",
20711 "xloc": [
20712 "default-mobile.handlebars->53->522",
20713 - "default.handlebars->119->2500",
20713 + "default.handlebars->119->2501",
20714 "default.handlebars->119->396",
20715 "default.handlebars->119->983",
20716 "default.handlebars->container->column_l->p21->p21main->1->1->meshConnChartDiv->1",
20717 - "default3.handlebars->117->2497",
20717 + "default3.handlebars->117->2498",
20718 "default3.handlebars->117->392",
20719 "default3.handlebars->117->979",
20720 "default3.handlebars->container->column_l->p21->p21main->1->1->meshConnChartDiv->1"
@@ -20746,8 +20746,8 @@
20746 "zh-chs": "同意",
20747 "zh-cht": "同意",
20748 "xloc": [
20749 - "default.handlebars->119->2725",
20750 - "default3.handlebars->117->2722"
20749 + "default.handlebars->119->2727",
20750 + "default3.handlebars->117->2724"
20751 ]
20752 },
20753 {
@@ -20908,8 +20908,8 @@
20908 "zh-chs": "Cookie编码器",
20909 "zh-cht": "Cookie編碼器",
20910 "xloc": [
20911 - "default.handlebars->119->3428",
20912 - "default3.handlebars->117->3418"
20911 + "default.handlebars->119->3430",
20912 + "default3.handlebars->117->3420"
20913 ]
20914 },
20915 {
@@ -21239,14 +21239,14 @@
21239 "zh-chs": "复制连结到剪贴板",
21240 "zh-cht": "複製連結到剪貼板",
21241 "xloc": [
21242 - "default.handlebars->119->2511",
21243 - "default.handlebars->119->2535",
21242 + "default.handlebars->119->2512",
21243 + "default.handlebars->119->2536",
21244 "default.handlebars->119->326",
21245 "default.handlebars->119->348",
21246 "default.handlebars->119->350",
21247 "default.handlebars->119->600",
21248 - "default3.handlebars->117->2508",
21249 - "default3.handlebars->117->2532",
21248 + "default3.handlebars->117->2509",
21249 + "default3.handlebars->117->2533",
21250 "default3.handlebars->117->321",
21251 "default3.handlebars->117->343",
21252 "default3.handlebars->117->345",
@@ -21409,8 +21409,8 @@
21409 "zh-chs": "复制:“{0}”到“{1}”",
21410 "zh-cht": "複製:“{0}”到“{1}”",
21411 "xloc": [
21412 - "default.handlebars->119->2609",
21413 - "default3.handlebars->117->2606"
21412 + "default.handlebars->119->2610",
21413 + "default3.handlebars->117->2607"
21414 ]
21415 },
21416 {
@@ -21619,8 +21619,8 @@
21619 "zh-chs": "核心服务器",
21620 "zh-cht": "核心伺服器",
21621 "xloc": [
21622 - "default.handlebars->119->3427",
21623 - "default3.handlebars->117->3417"
21622 + "default.handlebars->119->3429",
21623 + "default3.handlebars->117->3419"
21624 ]
21625 },
21626 {
@@ -21650,8 +21650,8 @@
21650 "zh-cht": "科西嘉文",
21651 "xloc": [
21652 "default-mobile.handlebars->53->155",
21653 - "default.handlebars->119->1911",
21654 - "default3.handlebars->117->1892",
21653 + "default.handlebars->119->1912",
21654 + "default3.handlebars->117->1893",
21655 "login2.handlebars->17->41"
21656 ]
21657 },
@@ -21659,7 +21659,7 @@
21659 "en": "Cosmo",
21660 "nl": "Cosmo",
21661 "xloc": [
21662 - "default3.handlebars->117->2098"
21662 + "default3.handlebars->117->2099"
21663 ]
21664 },
21665 {
@@ -21714,8 +21714,8 @@
21714 "zh-chs": "创建帐号",
21715 "zh-cht": "創建帳號",
21716 "xloc": [
21717 - "default.handlebars->119->2851",
21718 - "default3.handlebars->117->2847",
21717 + "default.handlebars->119->2853",
21718 + "default3.handlebars->117->2849",
21719 "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->16->1->1",
21720 "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->16->1->1",
21721 "login2.handlebars->centralTable->1->0->logincell->createpanel->createpanelform->9->1->16->1->1"
@@ -21802,9 +21802,9 @@
21802 "zh-chs": "创建登录令牌",
21803 "zh-cht": "創建登錄令牌",
21804 "xloc": [
21805 - "default.handlebars->119->2096",
21805 + "default.handlebars->119->2097",
21806 "default.handlebars->119->351",
21807 - "default3.handlebars->117->2078"
21807 + "default3.handlebars->117->2079"
21808 ]
21809 },
21810 {
@@ -21833,8 +21833,8 @@
21833 "zh-chs": "创建用户组",
21834 "zh-cht": "創建用戶群",
21835 "xloc": [
21836 - "default.handlebars->119->2891",
21837 - "default3.handlebars->117->2885"
21836 + "default.handlebars->119->2893",
21837 + "default3.handlebars->117->2887"
21838 ]
21839 },
21840 {
@@ -21893,8 +21893,8 @@
21893 "zh-chs": "使用以下选项创建一个新的设备组。",
21894 "zh-cht": "使用以下選項創建一個新的裝置群。",
21895 "xloc": [
21896 - "default.handlebars->119->2126",
21897 - "default3.handlebars->117->2126"
21896 + "default.handlebars->119->2127",
21897 + "default3.handlebars->117->2127"
21898 ]
21899 },
21900 {
@@ -21953,8 +21953,38 @@
21953 "zh-chs": "创建一个临时用户名和密码,可用作您帐户的替代登录名。这对于允许工具或其他服务访问您的帐户非常有用。",
21954 "zh-cht": "創建一個臨時用戶名和密碼,可用作您帳戶的替代登錄名。這對於允許工具或其他服務訪問您的帳戶很有用。",
21955 "xloc": [
21956 - "default.handlebars->119->2076",
21957 - "default3.handlebars->117->2057"
21956 + "default.handlebars->119->2077",
21957 + "default3.handlebars->117->2058"
21958 + ]
21959 + },
21960 + {
21961 + "bs": "Kreiraj fajl: \\\"{0}\\\"",
21962 + "ca": "Crea fitxer: \\\"{0}\\\"",
21963 + "cs": "Vytvořit soubor: \\\"{0}\\\"",
21964 + "da": "Opret fil: \\\"{0}\\\"",
21965 + "de": "Datei erstellen: \\\"{0}\\\"",
21966 + "en": "Create file: \\\"{0}\\\"",
21967 + "es": "Crear archivo: \\\"{0}\\\"",
21968 + "fi": "Luo tiedosto: \\\"{0}\\\"",
21969 + "fr": "Créer un fichier : \\\"{0}\\\"",
21970 + "hi": "फ़ाइल बनाएँ: \\\"{0}\\\"",
21971 + "hu": "Fájl létrehozása: \\\"{0}\\\"",
21972 + "it": "Crea file: \\\"{0}\\\"",
21973 + "ja": "ファイルを作成:「{0}」",
21974 + "ko": "파일 만들기 : \\\"{0}\\\"",
21975 + "nl": "Bestand maken: \\\"{0}\\\"",
21976 + "pl": "Utwórz plik: \\\"{0}\\\"",
21977 + "pt": "Criar arquivo: \\\"{0}\\\"",
21978 + "pt-br": "Criar arquivo: \\\"{0}\\\"",
21979 + "ru": "Создать файл: \\\"{0}\\\"",
21980 + "sv": "Skapa fil: \\\"{0}\\\"",
21981 + "tr": "Dosya oluştur: \\\"{0}\\\"",
21982 + "uk": "Створити файл: \\\"{0}\\\"",
21983 + "zh-chs": "创建文件:“{0}”",
21984 + "zh-cht": "創建文件:“{0}”",
21985 + "xloc": [
21986 + "default.handlebars->119->2723",
21987 + "default3.handlebars->117->2720"
21988 ]
21989 },
21990 {
@@ -22013,8 +22043,8 @@
22043 "zh-chs": "创建文件夹:“{0}”",
22044 "zh-cht": "創建文件夾:“{0}”",
22045 "xloc": [
22016 - "default.handlebars->119->2602",
22017 - "default3.handlebars->117->2599"
22046 + "default.handlebars->119->2603",
22047 + "default3.handlebars->117->2600"
22048 ]
22049 },
22050 {
@@ -22096,8 +22126,8 @@
22126 "nl": "Maak meerdere accounts tegelijk aan door een JSON of een CSV bestand te importeren",
22127 "uk": "Створіть кілька акаунтів одночасно, імпортувавши файл JSON або CSV",
22128 "xloc": [
22099 - "default.handlebars->119->2808",
22100 - "default3.handlebars->117->2804"
22129 + "default.handlebars->119->2810",
22130 + "default3.handlebars->117->2806"
22131 ]
22132 },
22133 {
@@ -22157,8 +22187,8 @@
22187 "zh-chs": "创建的设备组:{0}",
22188 "zh-cht": "創建的設備組:{0}",
22189 "xloc": [
22160 - "default.handlebars->119->2613",
22161 - "default3.handlebars->117->2610"
22190 + "default.handlebars->119->2614",
22191 + "default3.handlebars->117->2611"
22192 ]
22193 },
22194 {
@@ -22269,8 +22299,8 @@
22299 "zh-chs": "创建",
22300 "zh-cht": "創建",
22301 "xloc": [
22272 - "default.handlebars->119->2999",
22273 - "default3.handlebars->117->2993"
22302 + "default.handlebars->119->3001",
22303 + "default3.handlebars->117->2995"
22304 ]
22305 },
22306 {
@@ -22299,8 +22329,8 @@
22329 "zh-chs": "创建时间",
22330 "zh-cht": "創作時間",
22331 "xloc": [
22302 - "default.handlebars->119->2207",
22303 - "default3.handlebars->117->2203"
22332 + "default.handlebars->119->2208",
22333 + "default3.handlebars->117->2204"
22334 ]
22335 },
22336 {
@@ -22360,10 +22390,10 @@
22390 "zh-chs": "创建者",
22391 "zh-cht": "創作者",
22392 "xloc": [
22363 - "default.handlebars->119->2205",
22393 "default.handlebars->119->2206",
22365 - "default3.handlebars->117->2201",
22366 - "default3.handlebars->117->2202"
22394 + "default.handlebars->119->2207",
22395 + "default3.handlebars->117->2202",
22396 + "default3.handlebars->117->2203"
22397 ]
22398 },
22399 {
@@ -22394,10 +22424,10 @@
22424 "xloc": [
22425 "default-mobile.handlebars->53->534",
22426 "default.handlebars->119->1379",
22397 - "default.handlebars->119->2164",
22427 + "default.handlebars->119->2165",
22428 "default.handlebars->119->995",
22429 "default3.handlebars->117->1365",
22400 - "default3.handlebars->117->2164",
22430 + "default3.handlebars->117->2165",
22431 "default3.handlebars->117->991"
22432 ]
22433 },
@@ -22428,8 +22458,8 @@
22458 "zh-cht": "克里語",
22459 "xloc": [
22460 "default-mobile.handlebars->53->156",
22431 - "default.handlebars->119->1912",
22432 - "default3.handlebars->117->1893",
22461 + "default.handlebars->119->1913",
22462 + "default3.handlebars->117->1894",
22463 "login2.handlebars->17->42"
22464 ]
22465 },
@@ -22460,8 +22490,8 @@
22490 "zh-cht": "克羅地亞文",
22491 "xloc": [
22492 "default-mobile.handlebars->53->157",
22463 - "default.handlebars->119->1913",
22464 - "default3.handlebars->117->1894",
22493 + "default.handlebars->119->1914",
22494 + "default3.handlebars->117->1895",
22495 "login2.handlebars->17->43"
22496 ]
22497 },
@@ -22772,8 +22802,8 @@
22802 "zh-cht": "當前密碼不正確。",
22803 "xloc": [
22804 "default-mobile.handlebars->53->1080",
22775 - "default.handlebars->119->3345",
22776 - "default3.handlebars->117->3335"
22805 + "default.handlebars->119->3347",
22806 + "default3.handlebars->117->3337"
22807 ]
22808 },
22809 {
@@ -22878,7 +22908,7 @@
22908 "en": "Cyborg",
22909 "nl": "Cyborg",
22910 "xloc": [
22881 - "default3.handlebars->117->2099"
22911 + "default3.handlebars->117->2100"
22912 ]
22913 },
22914 {
@@ -22905,8 +22935,8 @@
22935 "zh-cht": "循環計數",
22936 "xloc": [
22937 "default-mobile.handlebars->53->859",
22908 - "default.handlebars->119->1696",
22909 - "default3.handlebars->117->1679"
22938 + "default.handlebars->119->1697",
22939 + "default3.handlebars->117->1680"
22940 ]
22941 },
22942 {
@@ -22936,8 +22966,8 @@
22966 "zh-cht": "捷克文",
22967 "xloc": [
22968 "default-mobile.handlebars->53->158",
22939 - "default.handlebars->119->1914",
22940 - "default3.handlebars->117->1895",
22969 + "default.handlebars->119->1915",
22970 + "default3.handlebars->117->1896",
22971 "login2.handlebars->17->44"
22972 ]
22973 },
@@ -22950,8 +22980,8 @@
22980 "uk": "DNS Сервери",
22981 "xloc": [
22982 "default-mobile.handlebars->53->810",
22953 - "default.handlebars->119->1647",
22954 - "default3.handlebars->117->1632"
22983 + "default.handlebars->119->1648",
22984 + "default3.handlebars->117->1633"
22985 ]
22986 },
22987 {
@@ -23041,8 +23071,8 @@
23071 "zh-cht": "丹麥文",
23072 "xloc": [
23073 "default-mobile.handlebars->53->159",
23044 - "default.handlebars->119->1915",
23045 - "default3.handlebars->117->1896",
23074 + "default.handlebars->119->1916",
23075 + "default3.handlebars->117->1897",
23076 "login2.handlebars->17->45"
23077 ]
23078 },
@@ -23081,7 +23111,7 @@
23111 "en": "Darkly",
23112 "nl": "Donker",
23113 "xloc": [
23084 - "default3.handlebars->117->2100"
23114 + "default3.handlebars->117->2101"
23115 ]
23116 },
23117 {
@@ -23127,8 +23157,8 @@
23157 "pl": "Zapisy Bazy Danych",
23158 "uk": "Записи Бази Даних",
23159 "xloc": [
23130 - "default.handlebars->119->3204",
23131 - "default3.handlebars->117->3194"
23160 + "default.handlebars->119->3206",
23161 + "default3.handlebars->117->3196"
23162 ]
23163 },
23164 {
@@ -23158,8 +23188,8 @@
23188 "zh-cht": "日期和時間",
23189 "xloc": [
23190 "default-mobile.handlebars->53->317",
23161 - "default.handlebars->119->2073",
23162 - "default3.handlebars->117->2054"
23191 + "default.handlebars->119->2074",
23192 + "default3.handlebars->117->2055"
23193 ]
23194 },
23195 {
@@ -23190,11 +23220,11 @@
23220 "xloc": [
23221 "default-mobile.handlebars->53->607",
23222 "default.handlebars->119->1288",
23193 - "default.handlebars->119->3208",
23194 - "default.handlebars->119->3211",
23223 + "default.handlebars->119->3210",
23224 + "default.handlebars->119->3213",
23225 "default3.handlebars->117->1278",
23196 - "default3.handlebars->117->3198",
23197 - "default3.handlebars->117->3201"
23226 + "default3.handlebars->117->3200",
23227 + "default3.handlebars->117->3203"
23228 ]
23229 },
23230 {
@@ -23223,10 +23253,10 @@
23253 "zh-chs": "停用",
23254 "zh-cht": "停用",
23255 "xloc": [
23226 - "default.handlebars->119->2239",
23227 - "default.handlebars->119->2303",
23228 - "default3.handlebars->117->2235",
23229 - "default3.handlebars->117->2297"
23256 + "default.handlebars->119->2240",
23257 + "default.handlebars->119->2304",
23258 + "default3.handlebars->117->2236",
23259 + "default3.handlebars->117->2298"
23260 ]
23261 },
23262 {
@@ -23255,8 +23285,8 @@
23285 "zh-chs": "如果设置停用CCM",
23286 "zh-cht": "如果設置停用CCM",
23287 "xloc": [
23258 - "default.handlebars->119->2315",
23259 - "default3.handlebars->117->2309"
23288 + "default.handlebars->119->2316",
23289 + "default3.handlebars->117->2310"
23290 ]
23291 },
23292 {
@@ -23342,15 +23372,15 @@
23372 "zh-chs": "默认",
23373 "zh-cht": "默認",
23374 "xloc": [
23345 - "default.handlebars->119->2838",
23346 - "default.handlebars->119->2887",
23347 - "default.handlebars->119->2898",
23348 - "default.handlebars->119->2972",
23349 - "default3.handlebars->117->2096",
23350 - "default3.handlebars->117->2834",
23351 - "default3.handlebars->117->2881",
23352 - "default3.handlebars->117->2892",
23353 - "default3.handlebars->117->2966"
23375 + "default.handlebars->119->2840",
23376 + "default.handlebars->119->2889",
23377 + "default.handlebars->119->2900",
23378 + "default.handlebars->119->2974",
23379 + "default3.handlebars->117->2097",
23380 + "default3.handlebars->117->2836",
23381 + "default3.handlebars->117->2883",
23382 + "default3.handlebars->117->2894",
23383 + "default3.handlebars->117->2968"
23384 ]
23385 },
23386 {
@@ -23416,15 +23446,15 @@
23446 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1",
23447 "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1",
23448 "default-mobile.handlebars->dialog->idx_dlgButtonBar->5",
23419 - "default.handlebars->119->1547",
23420 - "default.handlebars->119->2542",
23449 + "default.handlebars->119->1548",
23450 + "default.handlebars->119->2543",
23451 "default.handlebars->119->842",
23452 "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
23453 "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
23454 "default.handlebars->container->dialog->idx_dlgButtonBar->5",
23455 "default.handlebars->filesContextMenu->5",
23426 - "default3.handlebars->117->1532",
23427 - "default3.handlebars->117->2539",
23456 + "default3.handlebars->117->1533",
23457 + "default3.handlebars->117->2540",
23458 "default3.handlebars->117->838",
23459 "default3.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
23460 "default3.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
@@ -23468,8 +23498,8 @@
23498 "zh-cht": "刪除帳戶",
23499 "xloc": [
23500 "default-mobile.handlebars->53->333",
23471 - "default.handlebars->119->2111",
23472 - "default3.handlebars->117->2091"
23501 + "default.handlebars->119->2112",
23502 + "default3.handlebars->117->2092"
23503 ]
23504 },
23505 {
@@ -23498,7 +23528,7 @@
23528 "zh-chs": "删除帐户",
23529 "zh-cht": "刪除帳戶",
23530 "xloc": [
23501 - "default.handlebars->119->2795"
23531 + "default.handlebars->119->2797"
23532 ]
23533 },
23534 {
@@ -23590,10 +23620,10 @@
23620 "xloc": [
23621 "default-mobile.handlebars->53->987",
23622 "default-mobile.handlebars->53->990",
23593 - "default.handlebars->119->2291",
23594 - "default.handlebars->119->2332",
23595 - "default3.handlebars->117->2287",
23596 - "default3.handlebars->117->2326"
23623 + "default.handlebars->119->2292",
23624 + "default.handlebars->119->2333",
23625 + "default3.handlebars->117->2288",
23626 + "default3.handlebars->117->2327"
23627 ]
23628 },
23629 {
@@ -23679,8 +23709,8 @@
23709 "zh-chs": "删除用户",
23710 "zh-cht": "刪除用戶",
23711 "xloc": [
23682 - "default.handlebars->119->3046",
23683 - "default3.handlebars->117->3040"
23712 + "default.handlebars->119->3048",
23713 + "default3.handlebars->117->3042"
23714 ]
23715 },
23716 {
@@ -23709,10 +23739,10 @@
23739 "zh-chs": "删除用户群组",
23740 "zh-cht": "刪除用戶群組",
23741 "xloc": [
23712 - "default.handlebars->119->2940",
23713 - "default.handlebars->119->2952",
23714 - "default3.handlebars->117->2934",
23715 - "default3.handlebars->117->2946"
23742 + "default.handlebars->119->2942",
23743 + "default.handlebars->119->2954",
23744 + "default3.handlebars->117->2936",
23745 + "default3.handlebars->117->2948"
23746 ]
23747 },
23748 {
@@ -23741,8 +23771,8 @@
23771 "zh-chs": "删除用户群组",
23772 "zh-cht": "刪除用戶群組",
23773 "xloc": [
23744 - "default.handlebars->119->2885",
23745 - "default3.handlebars->117->2879"
23774 + "default.handlebars->119->2887",
23775 + "default3.handlebars->117->2881"
23776 ]
23777 },
23778 {
@@ -23771,8 +23801,8 @@
23801 "zh-chs": "删除用户{0}",
23802 "zh-cht": "刪除用戶{0}",
23803 "xloc": [
23774 - "default.handlebars->119->3114",
23775 - "default3.handlebars->117->3102"
23804 + "default.handlebars->119->3116",
23805 + "default3.handlebars->117->3104"
23806 ]
23807 },
23808 {
@@ -23802,9 +23832,9 @@
23832 "zh-cht": "刪除帳戶",
23833 "xloc": [
23834 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountActions->3->p2AccountPassActions->5->0",
23805 - "default.handlebars->119->2791",
23835 + "default.handlebars->119->2793",
23836 "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7",
23807 - "default3.handlebars->117->2788",
23837 + "default3.handlebars->117->2790",
23838 "default3.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7"
23839 ]
23840 },
@@ -23864,8 +23894,8 @@
23894 "zh-chs": "删除群组",
23895 "zh-cht": "刪除群組",
23896 "xloc": [
23867 - "default.handlebars->119->2881",
23868 - "default3.handlebars->117->2875"
23897 + "default.handlebars->119->2883",
23898 + "default3.handlebars->117->2877"
23899 ]
23900 },
23901 {
@@ -23924,8 +23954,8 @@
23954 "zh-chs": "递归删除:“{0}”,{1}个元素已删除",
23955 "zh-cht": "遞歸刪除:“{0}”,{1}個元素已刪除",
23956 "xloc": [
23927 - "default.handlebars->119->2604",
23928 - "default3.handlebars->117->2601"
23957 + "default.handlebars->119->2605",
23958 + "default3.handlebars->117->2602"
23959 ]
23960 },
23961 {
@@ -23956,10 +23986,10 @@
23986 "xloc": [
23987 "default-mobile.handlebars->53->381",
23988 "default-mobile.handlebars->53->709",
23959 - "default.handlebars->119->1549",
23960 - "default.handlebars->119->2544",
23961 - "default3.handlebars->117->1534",
23962 - "default3.handlebars->117->2541",
23989 + "default.handlebars->119->1550",
23990 + "default.handlebars->119->2545",
23991 + "default3.handlebars->117->1535",
23992 + "default3.handlebars->117->2542",
23993 "sharing-mobile.handlebars->53->87",
23994 "sharing.handlebars->47->63"
23995 ]
@@ -23990,8 +24020,8 @@
24020 "zh-chs": "删除用户群组{0}?",
24021 "zh-cht": "刪除用戶群組{0}?",
24022 "xloc": [
23993 - "default.handlebars->119->2950",
23994 - "default3.handlebars->117->2944"
24023 + "default.handlebars->119->2952",
24024 + "default3.handlebars->117->2946"
24025 ]
24026 },
24027 {
@@ -24022,10 +24052,10 @@
24052 "xloc": [
24053 "default-mobile.handlebars->53->380",
24054 "default-mobile.handlebars->53->708",
24025 - "default.handlebars->119->1548",
24026 - "default.handlebars->119->2543",
24027 - "default3.handlebars->117->1533",
24028 - "default3.handlebars->117->2540",
24055 + "default.handlebars->119->1549",
24056 + "default.handlebars->119->2544",
24057 + "default3.handlebars->117->1534",
24058 + "default3.handlebars->117->2541",
24059 "sharing-mobile.handlebars->53->86",
24060 "sharing.handlebars->47->62"
24061 ]
@@ -24085,8 +24115,8 @@
24115 "zh-chs": "删除:“{0}”",
24116 "zh-cht": "刪除:“{0}”",
24117 "xloc": [
24088 - "default.handlebars->119->2603",
24089 - "default3.handlebars->117->2600"
24118 + "default.handlebars->119->2604",
24119 + "default3.handlebars->117->2601"
24120 ]
24121 },
24122 {
@@ -24115,8 +24145,8 @@
24145 "zh-chs": "删除:“{0}”,{1}个元素已删除",
24146 "zh-cht": "刪除:“{0}”,已刪除{1}個元素",
24147 "xloc": [
24118 - "default.handlebars->119->2605",
24119 - "default3.handlebars->117->2602"
24148 + "default.handlebars->119->2606",
24149 + "default3.handlebars->117->2603"
24150 ]
24151 },
24152 {
@@ -24165,8 +24195,8 @@
24195 "pl": "Odmówiono zalogowania użytkownika z {0}, {1}, {2}",
24196 "uk": "Відмовлено у вході користувачу з {0}, {1}, {2}",
24197 "xloc": [
24168 - "default.handlebars->119->2713",
24169 - "default3.handlebars->117->2710"
24198 + "default.handlebars->119->2714",
24199 + "default3.handlebars->117->2711"
24200 ]
24201 },
24202 {
@@ -24341,35 +24371,35 @@
24371 "default-mobile.handlebars->53->973",
24372 "default-mobile.handlebars->53->996",
24373 "default.handlebars->119->1358",
24344 - "default.handlebars->119->1592",
24345 - "default.handlebars->119->1623",
24346 - "default.handlebars->119->1633",
24374 + "default.handlebars->119->1593",
24375 + "default.handlebars->119->1624",
24376 + "default.handlebars->119->1634",
24377 "default.handlebars->119->169",
24348 - "default.handlebars->119->2136",
24349 - "default.handlebars->119->2198",
24350 - "default.handlebars->119->2338",
24351 - "default.handlebars->119->2723",
24352 - "default.handlebars->119->2890",
24353 - "default.handlebars->119->2901",
24354 - "default.handlebars->119->2902",
24355 - "default.handlebars->119->2948",
24378 + "default.handlebars->119->2137",
24379 + "default.handlebars->119->2199",
24380 + "default.handlebars->119->2339",
24381 + "default.handlebars->119->2725",
24382 + "default.handlebars->119->2892",
24383 + "default.handlebars->119->2903",
24384 + "default.handlebars->119->2904",
24385 + "default.handlebars->119->2950",
24386 "default.handlebars->119->883",
24387 "default.handlebars->119->884",
24388 "default.handlebars->container->column_l->p42->p42tbl->1->0->3",
24389 "default3.handlebars->117->1343",
24360 - "default3.handlebars->117->1577",
24361 - "default3.handlebars->117->1608",
24362 - "default3.handlebars->117->1618",
24390 + "default3.handlebars->117->1578",
24391 + "default3.handlebars->117->1609",
24392 + "default3.handlebars->117->1619",
24393 "default3.handlebars->117->167",
24364 - "default3.handlebars->117->2136",
24365 - "default3.handlebars->117->2194",
24366 - "default3.handlebars->117->2334",
24394 + "default3.handlebars->117->2137",
24395 + "default3.handlebars->117->2195",
24396 "default3.handlebars->117->2335",
24368 - "default3.handlebars->117->2720",
24369 - "default3.handlebars->117->2884",
24370 - "default3.handlebars->117->2895",
24371 - "default3.handlebars->117->2896",
24372 - "default3.handlebars->117->2942",
24397 + "default3.handlebars->117->2336",
24398 + "default3.handlebars->117->2722",
24399 + "default3.handlebars->117->2886",
24400 + "default3.handlebars->117->2897",
24401 + "default3.handlebars->117->2898",
24402 + "default3.handlebars->117->2944",
24403 "default3.handlebars->117->879",
24404 "default3.handlebars->117->880",
24405 "default3.handlebars->container->column_l->p42->p42tbl->1->0->7"
@@ -24399,8 +24429,8 @@
24429 "zh-cht": "設計容量",
24430 "xloc": [
24431 "default-mobile.handlebars->53->865",
24402 - "default.handlebars->119->1702",
24403 - "default3.handlebars->117->1685"
24432 + "default.handlebars->119->1703",
24433 + "default3.handlebars->117->1686"
24434 ]
24435 },
24436 {
@@ -24459,24 +24489,24 @@
24489 "default.handlebars->119->1079",
24490 "default.handlebars->119->1193",
24491 "default.handlebars->119->1477",
24462 - "default.handlebars->119->2269",
24463 - "default.handlebars->119->2344",
24464 - "default.handlebars->119->3177",
24465 - "default.handlebars->119->3243",
24466 - "default.handlebars->119->3296",
24467 - "default.handlebars->119->3402",
24492 + "default.handlebars->119->2270",
24493 + "default.handlebars->119->2345",
24494 + "default.handlebars->119->3179",
24495 + "default.handlebars->119->3245",
24496 + "default.handlebars->119->3298",
24497 + "default.handlebars->119->3404",
24498 "default.handlebars->119->848",
24499 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop",
24500 "default.handlebars->contextMenu->cxdesktop",
24501 "default3.handlebars->117->1075",
24502 "default3.handlebars->117->1187",
24503 "default3.handlebars->117->1462",
24474 - "default3.handlebars->117->2265",
24475 - "default3.handlebars->117->2341",
24476 - "default3.handlebars->117->3167",
24477 - "default3.handlebars->117->3233",
24478 - "default3.handlebars->117->3286",
24479 - "default3.handlebars->117->3392",
24504 + "default3.handlebars->117->2266",
24505 + "default3.handlebars->117->2342",
24506 + "default3.handlebars->117->3169",
24507 + "default3.handlebars->117->3235",
24508 + "default3.handlebars->117->3288",
24509 + "default3.handlebars->117->3394",
24510 "default3.handlebars->117->844",
24511 "default3.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop",
24512 "default3.handlebars->contextMenu->cxdesktop",
@@ -24513,10 +24543,10 @@
24543 "xloc": [
24544 "default.handlebars->119->1083",
24545 "default.handlebars->119->1196",
24516 - "default.handlebars->119->2273",
24546 + "default.handlebars->119->2274",
24547 "default3.handlebars->117->1079",
24548 "default3.handlebars->117->1190",
24519 - "default3.handlebars->117->2269"
24549 + "default3.handlebars->117->2270"
24550 ]
24551 },
24552 {
@@ -24546,9 +24576,9 @@
24576 "zh-cht": "桌面+終端",
24577 "xloc": [
24578 "default.handlebars->119->1080",
24549 - "default.handlebars->119->2270",
24579 + "default.handlebars->119->2271",
24580 "default3.handlebars->117->1076",
24551 - "default3.handlebars->117->2266"
24581 + "default3.handlebars->117->2267"
24582 ]
24583 },
24584 {
@@ -24579,10 +24609,10 @@
24609 "xloc": [
24610 "default.handlebars->119->1084",
24611 "default.handlebars->119->1198",
24582 - "default.handlebars->119->2274",
24612 + "default.handlebars->119->2275",
24613 "default3.handlebars->117->1080",
24614 "default3.handlebars->117->1192",
24585 - "default3.handlebars->117->2270"
24615 + "default3.handlebars->117->2271"
24616 ]
24617 },
24618 {
@@ -24641,8 +24671,8 @@
24671 "zh-chs": "桌面复用",
24672 "zh-cht": "桌面多路復用",
24673 "xloc": [
24644 - "default.handlebars->119->3407",
24645 - "default3.handlebars->117->3397"
24674 + "default.handlebars->119->3409",
24675 + "default3.handlebars->117->3399"
24676 ]
24677 },
24678 {
@@ -24671,13 +24701,13 @@
24701 "zh-chs": "桌面通知",
24702 "zh-cht": "桌面通知",
24703 "xloc": [
24674 - "default.handlebars->119->2220",
24675 - "default.handlebars->119->2909",
24676 - "default.handlebars->119->3014",
24704 + "default.handlebars->119->2221",
24705 + "default.handlebars->119->2911",
24706 + "default.handlebars->119->3016",
24707 "default.handlebars->119->957",
24678 - "default3.handlebars->117->2216",
24679 - "default3.handlebars->117->2903",
24680 - "default3.handlebars->117->3008",
24708 + "default3.handlebars->117->2217",
24709 + "default3.handlebars->117->2905",
24710 + "default3.handlebars->117->3010",
24711 "default3.handlebars->117->953"
24712 ]
24713 },
@@ -24707,13 +24737,13 @@
24737 "zh-chs": "桌面提示",
24738 "zh-cht": "桌面提示",
24739 "xloc": [
24710 - "default.handlebars->119->2219",
24711 - "default.handlebars->119->2908",
24712 - "default.handlebars->119->3013",
24740 + "default.handlebars->119->2220",
24741 + "default.handlebars->119->2910",
24742 + "default.handlebars->119->3015",
24743 "default.handlebars->119->956",
24714 - "default3.handlebars->117->2215",
24715 - "default3.handlebars->117->2902",
24716 - "default3.handlebars->117->3007",
24744 + "default3.handlebars->117->2216",
24745 + "default3.handlebars->117->2904",
24746 + "default3.handlebars->117->3009",
24747 "default3.handlebars->117->952"
24748 ]
24749 },
@@ -24743,13 +24773,13 @@
24773 "zh-chs": "桌面提示+工具栏",
24774 "zh-cht": "桌面提示+工具欄",
24775 "xloc": [
24746 - "default.handlebars->119->2217",
24747 - "default.handlebars->119->2906",
24748 - "default.handlebars->119->3011",
24776 + "default.handlebars->119->2218",
24777 + "default.handlebars->119->2908",
24778 + "default.handlebars->119->3013",
24779 "default.handlebars->119->954",
24750 - "default3.handlebars->117->2213",
24751 - "default3.handlebars->117->2900",
24752 - "default3.handlebars->117->3005",
24780 + "default3.handlebars->117->2214",
24781 + "default3.handlebars->117->2902",
24782 + "default3.handlebars->117->3007",
24783 "default3.handlebars->117->950"
24784 ]
24785 },
@@ -24779,8 +24809,8 @@
24809 "zh-chs": "桌面会话",
24810 "zh-cht": "桌面會話",
24811 "xloc": [
24782 - "default.handlebars->119->3167",
24783 - "default3.handlebars->117->3157"
24812 + "default.handlebars->119->3169",
24813 + "default3.handlebars->117->3159"
24814 ]
24815 },
24816 {
@@ -24896,13 +24926,13 @@
24926 "zh-chs": "桌面工具栏",
24927 "zh-cht": "桌面工具欄",
24928 "xloc": [
24899 - "default.handlebars->119->2218",
24900 - "default.handlebars->119->2907",
24901 - "default.handlebars->119->3012",
24929 + "default.handlebars->119->2219",
24930 + "default.handlebars->119->2909",
24931 + "default.handlebars->119->3014",
24932 "default.handlebars->119->955",
24903 - "default3.handlebars->117->2214",
24904 - "default3.handlebars->117->2901",
24905 - "default3.handlebars->117->3006",
24933 + "default3.handlebars->117->2215",
24934 + "default3.handlebars->117->2903",
24935 + "default3.handlebars->117->3008",
24936 "default3.handlebars->117->951"
24937 ]
24938 },
@@ -24932,8 +24962,8 @@
24962 "zh-chs": "仅桌面视图",
24963 "zh-cht": "僅桌面視圖",
24964 "xloc": [
24935 - "default.handlebars->119->2987",
24936 - "default3.handlebars->117->2981"
24965 + "default.handlebars->119->2989",
24966 + "default3.handlebars->117->2983"
24967 ]
24968 },
24969 {
@@ -25089,12 +25119,12 @@
25119 "default-mobile.handlebars->53->564",
25120 "default.handlebars->119->1133",
25121 "default.handlebars->119->1158",
25092 - "default.handlebars->119->2437",
25122 + "default.handlebars->119->2438",
25123 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevInfo",
25124 "default.handlebars->contextMenu->cxdetails",
25125 "default3.handlebars->117->1127",
25126 "default3.handlebars->117->1152",
25097 - "default3.handlebars->117->2434",
25127 + "default3.handlebars->117->2435",
25128 "default3.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevInfo",
25129 "default3.handlebars->contextMenu->cxdetails"
25130 ]
@@ -25156,21 +25186,21 @@
25186 "zh-cht": "裝置",
25187 "xloc": [
25188 "default-mobile.handlebars->53->790",
25159 - "default.handlebars->119->1617",
25160 - "default.handlebars->119->1859",
25161 - "default.handlebars->119->2374",
25189 + "default.handlebars->119->1618",
25190 + "default.handlebars->119->1860",
25191 + "default.handlebars->119->2375",
25192 "default.handlebars->119->296",
25163 - "default.handlebars->119->3133",
25164 - "default.handlebars->119->3207",
25165 - "default.handlebars->119->3227",
25193 + "default.handlebars->119->3135",
25194 + "default.handlebars->119->3209",
25195 + "default.handlebars->119->3229",
25196 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5",
25167 - "default3.handlebars->117->1602",
25168 - "default3.handlebars->117->1840",
25169 - "default3.handlebars->117->2371",
25197 + "default3.handlebars->117->1603",
25198 + "default3.handlebars->117->1841",
25199 + "default3.handlebars->117->2372",
25200 "default3.handlebars->117->291",
25171 - "default3.handlebars->117->3121",
25172 - "default3.handlebars->117->3197",
25173 - "default3.handlebars->117->3217",
25201 + "default3.handlebars->117->3123",
25202 + "default3.handlebars->117->3199",
25203 + "default3.handlebars->117->3219",
25204 "default3.handlebars->container->column_l->p1->devListToolbarSpan->7->devListToolbarSort->sortselect->5"
25205 ]
25206 },
@@ -25322,8 +25352,8 @@
25352 "zh-chs": "设备详情",
25353 "zh-cht": "設備詳情",
25354 "xloc": [
25325 - "default.handlebars->119->2398",
25326 - "default3.handlebars->117->2395"
25355 + "default.handlebars->119->2399",
25356 + "default3.handlebars->117->2396"
25357 ]
25358 },
25359 {
@@ -25384,28 +25414,28 @@
25414 "xloc": [
25415 "agent-translations.json",
25416 "default-mobile.handlebars->53->1058",
25387 - "default.handlebars->119->2369",
25388 - "default.handlebars->119->2372",
25417 + "default.handlebars->119->2370",
25418 "default.handlebars->119->2373",
25390 - "default.handlebars->119->2740",
25391 - "default.handlebars->119->2932",
25392 - "default.handlebars->119->2938",
25393 - "default.handlebars->119->3121",
25394 - "default.handlebars->119->3190",
25395 - "default.handlebars->119->3214",
25396 - "default.handlebars->119->3230",
25397 - "default.handlebars->119->3323",
25398 - "default3.handlebars->117->2366",
25399 - "default3.handlebars->117->2369",
25419 + "default.handlebars->119->2374",
25420 + "default.handlebars->119->2742",
25421 + "default.handlebars->119->2934",
25422 + "default.handlebars->119->2940",
25423 + "default.handlebars->119->3123",
25424 + "default.handlebars->119->3192",
25425 + "default.handlebars->119->3216",
25426 + "default.handlebars->119->3232",
25427 + "default.handlebars->119->3325",
25428 + "default3.handlebars->117->2367",
25429 "default3.handlebars->117->2370",
25401 - "default3.handlebars->117->2737",
25402 - "default3.handlebars->117->2926",
25403 - "default3.handlebars->117->2932",
25404 - "default3.handlebars->117->3109",
25405 - "default3.handlebars->117->3180",
25406 - "default3.handlebars->117->3204",
25407 - "default3.handlebars->117->3220",
25408 - "default3.handlebars->117->3313"
25430 + "default3.handlebars->117->2371",
25431 + "default3.handlebars->117->2739",
25432 + "default3.handlebars->117->2928",
25433 + "default3.handlebars->117->2934",
25434 + "default3.handlebars->117->3111",
25435 + "default3.handlebars->117->3182",
25436 + "default3.handlebars->117->3206",
25437 + "default3.handlebars->117->3222",
25438 + "default3.handlebars->117->3315"
25439 ]
25440 },
25441 {
@@ -25435,8 +25465,8 @@
25465 "zh-cht": "裝置群用戶",
25466 "xloc": [
25467 "default-mobile.handlebars->53->1047",
25438 - "default.handlebars->119->2444",
25439 - "default3.handlebars->117->2441"
25468 + "default.handlebars->119->2445",
25469 + "default3.handlebars->117->2442"
25470 ]
25471 },
25472 {
@@ -25466,17 +25496,17 @@
25496 "zh-cht": "裝置群",
25497 "xloc": [
25498 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->3",
25469 - "default.handlebars->119->2756",
25470 - "default.handlebars->119->2875",
25471 - "default.handlebars->119->2919",
25472 - "default.handlebars->119->3008",
25473 - "default.handlebars->119->3380",
25499 + "default.handlebars->119->2758",
25500 + "default.handlebars->119->2877",
25501 + "default.handlebars->119->2921",
25502 + "default.handlebars->119->3010",
25503 + "default.handlebars->119->3382",
25504 "default.handlebars->container->column_l->p2->p2info->9",
25475 - "default3.handlebars->117->2753",
25476 - "default3.handlebars->117->2869",
25477 - "default3.handlebars->117->2913",
25478 - "default3.handlebars->117->3002",
25479 - "default3.handlebars->117->3370",
25505 + "default3.handlebars->117->2755",
25506 + "default3.handlebars->117->2871",
25507 + "default3.handlebars->117->2915",
25508 + "default3.handlebars->117->3004",
25509 + "default3.handlebars->117->3372",
25510 "default3.handlebars->container->column_l->p2->p2info->9"
25511 ]
25512 },
@@ -25598,11 +25628,11 @@
25628 "xloc": [
25629 "default-mobile.handlebars->53->623",
25630 "default.handlebars->119->1356",
25601 - "default.handlebars->119->3189",
25631 + "default.handlebars->119->3191",
25632 "default.handlebars->119->508",
25633 "default.handlebars->119->517",
25634 "default3.handlebars->117->1341",
25605 - "default3.handlebars->117->3179",
25635 + "default3.handlebars->117->3181",
25636 "default3.handlebars->117->504",
25637 "default3.handlebars->117->513",
25638 "player.handlebars->29->25"
@@ -25675,8 +25705,8 @@
25705 "nl": "Apparaat is ingeschakeld",
25706 "uk": "Пристрій Увімкнено",
25707 "xloc": [
25678 - "default.handlebars->119->2717",
25679 - "default3.handlebars->117->2714"
25708 + "default.handlebars->119->2718",
25709 + "default3.handlebars->117->2715"
25710 ]
25711 },
25712 {
@@ -25705,8 +25735,8 @@
25735 "zh-chs": "设备推送",
25736 "zh-cht": "設備推送",
25737 "xloc": [
25708 - "default.handlebars->119->3028",
25709 - "default3.handlebars->117->3022"
25738 + "default.handlebars->119->3030",
25739 + "default3.handlebars->117->3024"
25740 ]
25741 },
25742 {
@@ -25721,8 +25751,8 @@
25751 "pl": "Zapis Powiadomień Push Urządzenia",
25752 "uk": "Запис Push-Сповіщень Пристрою",
25753 "xloc": [
25724 - "default.handlebars->119->3293",
25725 - "default3.handlebars->117->3283"
25754 + "default.handlebars->119->3295",
25755 + "default3.handlebars->117->3285"
25756 ]
25757 },
25758 {
@@ -25737,8 +25767,8 @@
25767 "pl": "Zapis SMBIOS urządzenia",
25768 "uk": "SMBIOS запис пристрою",
25769 "xloc": [
25740 - "default.handlebars->119->3292",
25741 - "default3.handlebars->117->3282"
25770 + "default.handlebars->119->3294",
25771 + "default3.handlebars->117->3284"
25772 ]
25773 },
25774 {
@@ -25820,9 +25850,9 @@
25850 "zh-cht": "設備共享鏈接",
25851 "xloc": [
25852 "default.handlebars->119->1076",
25823 - "default.handlebars->119->2266",
25853 + "default.handlebars->119->2267",
25854 "default3.handlebars->117->1072",
25825 - "default3.handlebars->117->2262"
25855 + "default3.handlebars->117->2263"
25856 ]
25857 },
25858 {
@@ -25976,17 +26006,17 @@
26006 "default.handlebars->119->1102",
26007 "default.handlebars->119->1106",
26008 "default.handlebars->119->1110",
25979 - "default.handlebars->119->2099",
25980 - "default.handlebars->119->2471",
25981 - "default.handlebars->119->2475",
25982 - "default.handlebars->119->2479",
26009 + "default.handlebars->119->2100",
26010 + "default.handlebars->119->2472",
26011 + "default.handlebars->119->2476",
26012 + "default.handlebars->119->2480",
26013 "default3.handlebars->117->1096",
26014 "default3.handlebars->117->1100",
26015 "default3.handlebars->117->1104",
25986 - "default3.handlebars->117->2081",
25987 - "default3.handlebars->117->2468",
25988 - "default3.handlebars->117->2472",
25989 - "default3.handlebars->117->2476"
26016 + "default3.handlebars->117->2082",
26017 + "default3.handlebars->117->2469",
26018 + "default3.handlebars->117->2473",
26019 + "default3.handlebars->117->2477"
26020 ]
26021 },
26022 {
@@ -26018,17 +26048,17 @@
26048 "default.handlebars->119->1103",
26049 "default.handlebars->119->1107",
26050 "default.handlebars->119->1111",
26021 - "default.handlebars->119->2100",
26022 - "default.handlebars->119->2472",
26023 - "default.handlebars->119->2476",
26024 - "default.handlebars->119->2480",
26051 + "default.handlebars->119->2101",
26052 + "default.handlebars->119->2473",
26053 + "default.handlebars->119->2477",
26054 + "default.handlebars->119->2481",
26055 "default3.handlebars->117->1097",
26056 "default3.handlebars->117->1101",
26057 "default3.handlebars->117->1105",
26028 - "default3.handlebars->117->2082",
26029 - "default3.handlebars->117->2469",
26030 - "default3.handlebars->117->2473",
26031 - "default3.handlebars->117->2477"
26058 + "default3.handlebars->117->2083",
26059 + "default3.handlebars->117->2470",
26060 + "default3.handlebars->117->2474",
26061 + "default3.handlebars->117->2478"
26062 ]
26063 },
26064 {
@@ -26057,8 +26087,8 @@
26087 "zh-chs": "创建的设备组:{0}",
26088 "zh-cht": "設備組已創建:{0}",
26089 "xloc": [
26060 - "default.handlebars->119->2634",
26061 - "default3.handlebars->117->2631"
26090 + "default.handlebars->119->2635",
26091 + "default3.handlebars->117->2632"
26092 ]
26093 },
26094 {
@@ -26087,8 +26117,8 @@
26117 "zh-chs": "设备组已删除:{0}",
26118 "zh-cht": "設備組已刪除:{0}",
26119 "xloc": [
26090 - "default.handlebars->119->2635",
26091 - "default3.handlebars->117->2632"
26120 + "default.handlebars->119->2636",
26121 + "default3.handlebars->117->2633"
26122 ]
26123 },
26124 {
@@ -26117,8 +26147,8 @@
26147 "zh-chs": "设备组成员身份已更改:{0}",
26148 "zh-cht": "設備組成員身份已更改:{0}",
26149 "xloc": [
26120 - "default.handlebars->119->2636",
26121 - "default3.handlebars->117->2633"
26150 + "default.handlebars->119->2637",
26151 + "default3.handlebars->117->2634"
26152 ]
26153 },
26154 {
@@ -26178,8 +26208,8 @@
26208 "zh-chs": "设备组通知已更改",
26209 "zh-cht": "設備組通知已更改",
26210 "xloc": [
26181 - "default.handlebars->119->2631",
26182 - "default3.handlebars->117->2628"
26211 + "default.handlebars->119->2632",
26212 + "default3.handlebars->117->2629"
26213 ]
26214 },
26215 {
@@ -26194,8 +26224,8 @@
26224 "pl": "Zapis grupy urządzeń",
26225 "uk": "Запис групи пристроїв",
26226 "xloc": [
26197 - "default.handlebars->119->3278",
26198 - "default3.handlebars->117->3268"
26227 + "default.handlebars->119->3280",
26228 + "default3.handlebars->117->3270"
26229 ]
26230 },
26231 {
@@ -26224,8 +26254,8 @@
26254 "zh-chs": "未删除的设备组:{0}",
26255 "zh-cht": "未刪除的設備組:{0}",
26256 "xloc": [
26227 - "default.handlebars->119->2614",
26228 - "default3.handlebars->117->2611"
26257 + "default.handlebars->119->2615",
26258 + "default3.handlebars->117->2612"
26259 ]
26260 },
26261 {
@@ -26254,8 +26284,8 @@
26284 "zh-chs": "设备组 {0} 已更改:{1}",
26285 "zh-cht": "設備組 {0} 已更改:{1}",
26286 "xloc": [
26257 - "default.handlebars->119->2700",
26258 - "default3.handlebars->117->2697"
26287 + "default.handlebars->119->2701",
26288 + "default3.handlebars->117->2698"
26289 ]
26290 },
26291 {
@@ -26300,8 +26330,8 @@
26330 "pl": "Zapisy informacji urządzenia",
26331 "uk": "Записи інформації про пристрій",
26332 "xloc": [
26303 - "default.handlebars->119->3280",
26304 - "default3.handlebars->117->3270"
26333 + "default.handlebars->119->3282",
26334 + "default3.handlebars->117->3272"
26335 ]
26336 },
26337 {
@@ -26931,8 +26961,8 @@
26961 "pl": "Zapisy zmiany stanu zasilania",
26962 "uk": "Записи про зміни стану живлення",
26963 "xloc": [
26934 - "default.handlebars->119->3286",
26935 - "default3.handlebars->117->3276"
26964 + "default.handlebars->119->3288",
26965 + "default3.handlebars->117->3278"
26966 ]
26967 },
26968 {
@@ -26947,8 +26977,8 @@
26977 "pl": "Zapis urządzenia",
26978 "uk": "Запис пристрою",
26979 "xloc": [
26950 - "default.handlebars->119->3277",
26951 - "default3.handlebars->117->3267"
26980 + "default.handlebars->119->3279",
26981 + "default3.handlebars->117->3269"
26982 ]
26983 },
26984 {
@@ -26977,8 +27007,8 @@
27007 "zh-chs": "设备请求 Intel(R) AMT ACM TLS 激活,FQDN:{0}",
27008 "zh-cht": "設備請求 Intel(R) AMT ACM TLS 激活,FQDN:{0}",
27009 "xloc": [
26980 - "default.handlebars->119->2669",
26981 - "default3.handlebars->117->2666"
27010 + "default.handlebars->119->2670",
27011 + "default3.handlebars->117->2667"
27012 ]
27013 },
27014 {
@@ -27007,8 +27037,8 @@
27037 "zh-chs": "设备请求激活Intel(R)AMT ACM,FQDN:{0}",
27038 "zh-cht": "設備請求激活Intel(R)AMT ACM,FQDN:{0}",
27039 "xloc": [
27010 - "default.handlebars->119->2616",
27011 - "default3.handlebars->117->2613"
27040 + "default.handlebars->119->2617",
27041 + "default3.handlebars->117->2614"
27042 ]
27043 },
27044 {
@@ -27023,8 +27053,8 @@
27053 "pl": "Zapisy udostępniania urządzenia",
27054 "uk": "Записи поширеного пристрою",
27055 "xloc": [
27026 - "default.handlebars->119->3290",
27027 - "default3.handlebars->117->3280"
27056 + "default.handlebars->119->3292",
27057 + "default3.handlebars->117->3282"
27058 ]
27059 },
27060 {
@@ -27039,8 +27069,8 @@
27069 "pl": "Zapisy urządzenia, użytkowników, grup i inne",
27070 "uk": "Пристрій, користувачі, групи та інші записи",
27071 "xloc": [
27042 - "default.handlebars->119->3294",
27043 - "default3.handlebars->117->3284"
27072 + "default.handlebars->119->3296",
27073 + "default3.handlebars->117->3286"
27074 ]
27075 },
27076 {
@@ -27069,12 +27099,12 @@
27099 "zh-chs": "设备",
27100 "zh-cht": "裝置",
27101 "xloc": [
27072 - "default.handlebars->119->2289",
27073 - "default.handlebars->119->2876",
27074 - "default.handlebars->119->2920",
27075 - "default3.handlebars->117->2285",
27076 - "default3.handlebars->117->2870",
27077 - "default3.handlebars->117->2914"
27102 + "default.handlebars->119->2290",
27103 + "default.handlebars->119->2878",
27104 + "default.handlebars->119->2922",
27105 + "default3.handlebars->117->2286",
27106 + "default3.handlebars->117->2872",
27107 + "default3.handlebars->117->2916"
27108 ]
27109 },
27110 {
@@ -27320,8 +27350,8 @@
27350 "en": "Disabled Duo two-factor authentication",
27351 "nl": "Duo twee factorauthenticatie uitgeschakeld",
27352 "xloc": [
27323 - "default.handlebars->119->2719",
27324 - "default3.handlebars->117->2716"
27353 + "default.handlebars->119->2720",
27354 + "default3.handlebars->117->2717"
27355 ]
27356 },
27357 {
@@ -27350,8 +27380,8 @@
27380 "zh-chs": "禁用的电子邮件两因素身份验证",
27381 "zh-cht": "禁用的電子郵件兩因素身份驗證",
27382 "xloc": [
27353 - "default.handlebars->119->2647",
27354 - "default3.handlebars->117->2644"
27383 + "default.handlebars->119->2648",
27384 + "default3.handlebars->117->2645"
27385 ]
27386 },
27387 {
@@ -27378,8 +27408,8 @@
27408 "zh-cht": "出院率",
27409 "xloc": [
27410 "default-mobile.handlebars->53->875",

This file is too large to show in full.

views/default.handlebars
+7 -1
@@ -885,6 +885,7 @@
885 <input type=button style="margin-right:2px" disabled="disabled" id=p13DeleteFileButton value="Delete" onclick="p13deletefile()" />
886 <input type=button style="margin-right:2px" disabled="disabled" id=p13ViewFileButton value="Edit" onclick="p13viewfile()" />
887 <input type=button style="margin-right:2px" disabled="disabled" id=p13NewFolderButton value="New Folder" onclick="p13createfolder()" />
888 + <input type=button style="margin-right:2px" disabled="disabled" id=p13NewFileButton value="New File" onclick="p13createfile()" />
889 <input type=button style="margin-right:2px" disabled="disabled" id=p13UploadButton value="Upload" onclick="p13uploadFile()" />
890 <input type=button style="margin-right:2px" disabled="disabled" id=p13DownloadButton value="Download" onclick="p13downloadButton()" />
891 <input type=button style="margin-right:2px" disabled="disabled" id=p13CutButton value="Cut" onclick="p13copyFile(1)" />
@@ -11531,6 +11532,7 @@
11532 if (p13filetree == null) {
11533 QE('p13DeleteFileButton', false);
11534 QE('p13NewFolderButton', false);
11535 + QE('p13NewFileButton', false);
11536 QE('p13UploadButton', false);
11537 QE('p13RenameFileButton', false);
11538 QE('p13ViewFileButton', false);
@@ -11552,6 +11554,7 @@
11554 QE('p13DeleteFileButton', (cc > 0) && ((p13filetreelocation.length > 0) || (winAgent == false)));
11555 QE('p13NewFolderButton', advancedFeatures && ((p13filetreelocation.length > 0) || (winAgent == false)));
11556 QE('p13UploadButton', ((p13filetreelocation.length > 0) || (winAgent == false) || (currentNode.agent.id == 14)));
11557 + QE('p13NewFileButton', advancedFeatures && ((p13filetreelocation.length > 0) || (winAgent == false)));
11558 QE('p13RenameFileButton', advancedFeatures && (cc == 1) && ((p13filetreelocation.length > 0) || (winAgent == false)));
11559 QE('p13ViewFileButton', advancedFeatures && (cc == 1) && (sfc == 1) && ((p13filetreelocation.length > 0) || (winAgent == false)));
11560 QE('p13SelectAllButton', tc > 0);
@@ -11589,6 +11592,8 @@
11592 function p13selectallfile() { var nv = (p13getFileSelCount() == 0), checkboxes = document.getElementsByName('fd'); for (var i = 0; i < checkboxes.length; i++) { checkboxes[i].checked = nv; } p13setActions(); }
11593 function p13createfolder() { setDialogMode(2, "New Folder", 3, p13createfolderEx, '<input type=text id=p13renameinput maxlength=64 onkeyup=p13fileNameCheck(event) style=width:100% />'); focusTextBox('p13renameinput'); p13fileNameCheck(); }
11594 function p13createfolderEx() { files.sendText({ action: 'mkdir', reqid: 1, path: p13filetreelocation.join('/') + '/' + Q('p13renameinput').value }); p13folderup(999); }
11595 + function p13createfile() { setDialogMode(2, "New File", 3, p13createfileEx, '<input type=text id=p13renameinput maxlength=64 onkeyup=p13fileNameCheck(event) style=width:100% />'); focusTextBox('p13renameinput'); p13fileNameCheck(); }
11596 + function p13createfileEx() { files.sendText({ action: 'mkfile', reqid: 1, path: p13filetreelocation.join('/') + '/' + Q('p13renameinput').value }); p13folderup(999); }
11597 function p13deletefile() { var cc = p13getFileSelCount(), rec = (p13getFileSelDirCount() > 0) ? '<br /><br /><label><input type=checkbox id=p13recdeleteinput>' + "Recursive delete" + '</label><br>' : '<input type=checkbox id=p13recdeleteinput style=\'display:none\'>'; setDialogMode(2, "Delete", 3, p13deletefileEx, (cc > 1) ? (format("Delete {0} selected items?", cc) + rec) : ("Delete selected item?" + rec)); }
11598 function p13deletefileEx() { var delfiles = [], checkboxes = document.getElementsByName('fd'); for (var i = 0; i < checkboxes.length; i++) { if (checkboxes[i].checked) { delfiles.push(p13filetree.dir[checkboxes[i].value].n); } } files.sendText({ action: 'rm', reqid: 1, path: p13filetreelocation.join('/'), delfiles: delfiles, rec: Q('p13recdeleteinput').checked }); p13folderup(999); }
11599 function p13renamefile() { var renamefile, checkboxes = document.getElementsByName('fd'); for (var i = 0; i < checkboxes.length; i++) { if (checkboxes[i].checked) { renamefile = p13filetree.dir[checkboxes[i].value].n; } } setDialogMode(2, "Rename", 3, p13renamefileEx, '<input type=text id=p13renameinput maxlength=64 onkeyup=p13fileNameCheck(event) style=width:100% value="' + renamefile + '" />', { action: 'rename', path: p13filetreelocation.join('/'), oldname: renamefile}); focusTextBox('p13renameinput'); p13fileNameCheck(); }
@@ -15477,7 +15482,8 @@
15482 160: "Enabled Duo two-factor authentication",
15483 161: "Disabled Duo two-factor authentication",
15484 162: "Started messenger session \"{0}\" from {1} to {2}",
15480 - 163: "Removed device {0} from user group {1}"
15485 + 163: "Removed device {0} from user group {1}",
15486 + 164: "Create file: \"{0}\""
15487 };
15488
15489 var eventsShortMessageId = {
views/default3.handlebars
+11 -1
@@ -1255,6 +1255,7 @@
1255 <input type=button disabled="disabled" id=p13DeleteFileButton class="btn btn-primary me-1 btn-sm" value="Delete" onclick="p13deletefile()" />
1256 <input type=button disabled="disabled" id=p13ViewFileButton class="btn btn-primary me-1 btn-sm" value="Edit" onclick="p13viewfile()" />
1257 <input type=button disabled="disabled" id=p13NewFolderButton class="btn btn-primary me-1 btn-sm" value="New Folder" onclick="p13createfolder()" />
1258 + <input type=button disabled="disabled" id=p13NewFileButton class="btn btn-primary me-1 btn-sm" value="New File" onclick="p13createfile()" />
1259 <input type=button disabled="disabled" id=p13UploadButton class="btn btn-primary me-1 btn-sm" value="Upload" onclick="p13uploadFile()" />
1260 <input type=button disabled="disabled" id=p13DownloadButton class="btn btn-primary me-1 btn-sm" value="Download" onclick="p13downloadButton()" />
1261 <input type=button disabled="disabled" id=p13CutButton class="btn btn-primary me-1 btn-sm" value="Cut" onclick="p13copyFile(1)" />
@@ -12537,6 +12538,7 @@
12538 QE('p13DeleteFileButton', false);
12539 QE('p13NewFolderButton', false);
12540 QE('p13UploadButton', false);
12541 + QE('p13NewFileButton', false);
12542 QE('p13RenameFileButton', false);
12543 QE('p13ViewFileButton', false);
12544 QE('p13SelectAllButton', false);
@@ -12557,6 +12559,7 @@
12559 QE('p13DeleteFileButton', (cc > 0) && ((p13filetreelocation.length > 0) || (winAgent == false)));
12560 QE('p13NewFolderButton', advancedFeatures && ((p13filetreelocation.length > 0) || (winAgent == false)));
12561 QE('p13UploadButton', ((p13filetreelocation.length > 0) || (winAgent == false) || (currentNode.agent.id == 14)));
12562 + QE('p13NewFileButton', advancedFeatures && ((p13filetreelocation.length > 0) || (winAgent == false)));
12563 QE('p13RenameFileButton', advancedFeatures && (cc == 1) && ((p13filetreelocation.length > 0) || (winAgent == false)));
12564 QE('p13ViewFileButton', advancedFeatures && (cc == 1) && (sfc == 1) && ((p13filetreelocation.length > 0) || (winAgent == false)));
12565 QE('p13SelectAllButton', tc > 0);
@@ -12598,6 +12601,12 @@
12601 focusTextBox('p13renameinput'); p13fileNameCheck();
12602 }
12603 function p13createfolderEx() { files.sendText({ action: 'mkdir', reqid: 1, path: p13filetreelocation.join('/') + '/' + Q('p13renameinput').value }); p13folderup(999); }
12604 + function p13createfile() {
12605 + setModalContent('xxAddAgent', "New File", '<input type=text id=p13renameinput maxlength=64 onkeyup=p13fileNameCheck(event) style=width:100% />');
12606 + showModal('xxAddAgentModal', 'idx_dlgOkButton', () => p13createfolderEx());
12607 + focusTextBox('p13renameinput'); p13fileNameCheck();
12608 + }
12609 + function p13createfileEx() { files.sendText({ action: 'mkfile', reqid: 1, path: p13filetreelocation.join('/') + '/' + Q('p13renameinput').value }); p13folderup(999); }
12610 function p13deletefile() {
12611 var cc = p13getFileSelCount(), rec = (p13getFileSelDirCount() > 0) ? '<br /><br /><label><input type=checkbox class="form-check-input me-2" id=p13recdeleteinput>' + "Recursive delete" + '</label><br>' : '<input type=checkbox class="form-check-input me-2" id=p13recdeleteinput style=\'display:none\'>';
12612 setModalContent('xxAddAgent', "Delete", (cc > 1) ? (format("Delete {0} selected items?", cc) + rec) : ("Delete selected item?" + rec));
@@ -16838,7 +16847,8 @@
16847 160: "Enabled Duo two-factor authentication",
16848 161: "Disabled Duo two-factor authentication",
16849 162: "Started messenger session \"{0}\" from {1} to {2}",
16841 - 163: "Removed device {0} from user group {1}"
16850 + 163: "Removed device {0} from user group {1}",
16851 + 164: "Create file: \"{0}\""
16852 };
16853
16854 var eventsShortMessageId = {