Dropdown Menu - re-design / Updated Notifications Icon (#7372)

* Redesign user dropdown menu with new icons and UI Replaces the old top menu and UI selection controls with a modern user dropdown menu featuring new icon assets, improved styling, and a UI settings submenu. Updates CSS for layout and responsiveness, adds new PNG icon files, and refactors related JavaScript logic for menu toggling and user image handling. * Replace user dropdown icons with Font Awesome Swapped out image-based icons in the user dropdown menu for Font Awesome icon elements. This change reduces reliance on image assets, improves consistency, and simplifies icon management. * Update icons in user dropdown menu Replaced the UI Settings, Left bar interface, and night mode icons with more appropriate Font Awesome icons for improved clarity and consistency in the user dropdown menu. * Fixed menu position for Fixed Width Style * Updated Dropdown for Translations Refactored hardcoded dropdown text to support translation handling. * Updated Translations * Updated dropdown to close SubMenu on all buttons. * Removed "UserDummyMenuSpan" Not needed any more as we have removed UIMenu * Improve notification icon UI and add badge Replaces the plain notification count with a bell icon and a badge for better visibility. (FA) * notificationBadge & notificationCount:hover * Add new translations Added new translation entries for 'Toggle Dark Mode', 'Toggle Light Mode', 'Toggle Footer Bar', 'Left Bar Interface', and 'Top Bar Interface' * Updated Dropdown background * Updated Dark/Light Mode Toggle * Updated Right Chevron Arrow

TheDevRyan committed Oct 24, 2025 at 12:18 UTC acd6001a8a819244d21946babb8de5d94d063efb
3 files changed +4101 -3495
public/styles/style-bootstrap.css
+190 -8
@@ -2341,8 +2341,8 @@ nav .lbbuttonsel2 {
2341 .notifiyBox {
2342 position: absolute;
2343 z-index: 1000;
2344 - top: 50px;
2345 - right: 26px;
2344 + top: 80px;
2345 + right: 10rem;
2346 width: 300px;
2347 text-align: left;
2348 background-color: #F0ECCD;
@@ -2395,13 +2395,24 @@ nav .lbbuttonsel2 {
2395 min-width: 28px;
2396 font-size: 20px;
2397 border-radius: 5px;
2398 - background-color: lightblue;
2398 text-align: center;
2399 margin: 8px;
2400 cursor: pointer;
2401 padding: 4px;
2402 + position: absolute;
2403 + right: 9rem;
2404 + top: 0.2em;
2405 +}
2406 +#notificationBadge {
2407 + box-shadow: -0.1px 1px 2px #000000;
2408 + -webkit-box-shadow: -0.1px 1px 2px #000000;
2409 + -moz-box-shadow: -0.1px 1px 2px #000000;
2410 + top: 0.95rem;
2411 + left: 1.6rem !important;
2412 +}
2413 +#notificationCount:hover {
2414 + background-color: rgba(255, 255, 255, 0.1);
2415 }
2404 -
2416 .night #notificationCount {
2417 color: black;
2418 }
@@ -3344,6 +3355,12 @@ nav .lbbuttonsel2 {
3355 font-size: 36px;
3356 }
3357
3358 + #masthead {
3359 + background-size: 18rem 2.5rem !important;
3360 + background-position: center left;
3361 + background-repeat: no-repeat !important;
3362 + padding-right: 20px !important;
3363 + }
3364 #MainMeshImage /*, #p2AccountImageFrame */ {
3365 /* text-align: center !important; */
3366 float: none !important;
@@ -3355,17 +3372,40 @@ nav .lbbuttonsel2 {
3372 float: none !important;
3373 text-align: left;
3374 }
3375 + #userDropdown {
3376 + display: inline-block !important;
3377 + position: absolute !important;
3378 + right: 10px !important;
3379 + }
3380
3359 - #logoutControl {
3381 + #userDropdownName {
3382 display: none !important;
3383 }
3384
3363 - #topMenuIcon {
3385 + .userDropdownMobileOnly {
3386 + display: flex !important;
3387 + }
3388 +
3389 + #userDropdownMenuDivider.userDropdownMobileOnly {
3390 display: block !important;
3391 }
3392
3393 + .userDropdownSubmenu {
3394 + right: 100%;
3395 + left: auto;
3396 + top: 13rem !important;
3397 + margin-left: 0;
3398 + margin-right: 4px;
3399 + }
3400 + .userDropdownUISettings {
3401 + position: relative;
3402 + }
3403 +
3404 #notificationCount {
3368 - margin-right: 45px;
3405 + right: 4rem;
3406 + }
3407 + .notifiyBox {
3408 + right: 3.5rem;
3409 }
3410
3411 .notifiyBox:after {
@@ -3404,4 +3444,146 @@ nav .lbbuttonsel2 {
3444
3445 .select2-container--bootstrap-5 .select2-selection--multiple .select2-search {
3446 display: inline !important;
3407 -} */
\ No newline at end of file
3447 +} */
3448 +/* User Dropdown Menu Styles */
3449 +#userDropdown {
3450 + position: absolute;
3451 + display: inline-block;
3452 + z-index: 1000;
3453 + right: 10px;
3454 + background: #00000026;
3455 + border-radius: 4px;
3456 +}
3457 +#userDropdownButton {
3458 + display: flex;
3459 + align-items: center;
3460 + cursor: pointer;
3461 + padding: 6px 8px;
3462 + border-radius: 4px;
3463 + height: 40px;
3464 +}
3465 +
3466 +#userDropdownButton:hover {
3467 + background-color: rgba(255, 255, 255, 0.1);
3468 +}
3469 +
3470 +#userDropdownImage {
3471 + width: 28px;
3472 + height: 28px;
3473 + border-radius: 50%;
3474 + margin-right: 8px;
3475 + border: 2px solid rgba(255, 255, 255, 0.3);
3476 + object-fit: cover;
3477 +}
3478 +
3479 +#userDropdownName {
3480 + margin-right: 6px;
3481 + white-space: nowrap;
3482 +}
3483 +
3484 +#userDropdownArrow {
3485 + font-size: 12px;
3486 +}
3487 +
3488 +#userDropdownMenu {
3489 + display: none;
3490 + position: absolute;
3491 + top: 100%;
3492 + right: 0;
3493 + background-color: #ffffff;
3494 + box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
3495 + border-radius: 4px;
3496 + z-index: 10000;
3497 + min-width: 200px;
3498 + margin-top: 4px;
3499 + transform: translateX(0);
3500 + font-family: sans-serif;
3501 +}
3502 +
3503 +#userDropdownMenuContainer {
3504 + padding: 6px 0;
3505 +}
3506 +
3507 +.userDropdownMenuItem {
3508 + display: flex;
3509 + align-items: center;
3510 + gap: 10px;
3511 + padding: 10px 12px;
3512 + cursor: pointer;
3513 + color: #333;
3514 + white-space: nowrap;
3515 + transition: background-color 0.15s ease;
3516 +}
3517 +
3518 +.userDropdownMenuItem:hover {
3519 + background-color: #f5f5f5;
3520 + border-radius: 4px;
3521 +}
3522 +
3523 +.userDropdownMenuIcon {
3524 + width: 18px;
3525 + height: 18px;
3526 + object-fit: contain;
3527 + flex-shrink: 0;
3528 +}
3529 +
3530 +.userDropdownMenuItem span {
3531 + flex-grow: 1;
3532 + text-align: left;
3533 + color: #333;
3534 + font-size: 14px;
3535 + line-height: 1.2;
3536 +}
3537 +
3538 +#userDropdownMenuDivider {
3539 + border-top: 1px solid #eee;
3540 + margin: 4px 0;
3541 +}
3542 +
3543 +.userDropdownSubmenu {
3544 + position: absolute;
3545 + right: 100%;
3546 + top: 0;
3547 + background-color: #ffffff;
3548 + box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
3549 + border-radius: 4px;
3550 + margin-right: 4px;
3551 + min-width: 200px;
3552 + z-index: 10001;
3553 + padding: 6px 0;
3554 +}
3555 +
3556 +.userDropdownSubmenu .userDropdownMenuItem {
3557 + display: flex;
3558 + align-items: center;
3559 + gap: 10px;
3560 + padding: 10px 12px;
3561 + color: #333;
3562 +}
3563 +
3564 +.userDropdownSubmenu .userDropdownMenuItem:hover {
3565 + background-color: #f5f5f5;
3566 + border-radius: 4px;
3567 +}
3568 +
3569 +.userDropdownSubmenu .userDropdownMenuIcon {
3570 + width: 18px;
3571 + height: 18px;
3572 + object-fit: contain;
3573 + flex-shrink: 0;
3574 +}
3575 +
3576 +.userDropdownMobileOnly {
3577 + display: none;
3578 +}
3579 +
3580 +.userDropdownUISettings img:last-child {
3581 + margin-left: auto;
3582 + width: 14px;
3583 + height: 14px;
3584 + opacity: 0.7;
3585 +}
3586 +
3587 +body:not(.fullscreen) #userDropdown {
3588 + right: calc(50vw - 470px);
3589 +}
\ No newline at end of file
translate/translate.json
+3667 -3390
@@ -28,8 +28,8 @@
28 "xloc": [
29 "default.handlebars->47->2229",
30 "default.handlebars->47->2231",
31 - "default3.handlebars->35->2227",
32 - "default3.handlebars->35->2229"
31 + "default3.handlebars->35->2240",
32 + "default3.handlebars->35->2242"
33 ]
34 },
35 {
@@ -60,7 +60,7 @@
60 "xloc": [
61 "default-mobile.handlebars->11->61",
62 "default.handlebars->47->84",
63 - "default3.handlebars->35->84"
63 + "default3.handlebars->35->97"
64 ]
65 },
66 {
@@ -91,7 +91,7 @@
91 "xloc": [
92 "default-mobile.handlebars->11->59",
93 "default.handlebars->47->82",
94 - "default3.handlebars->35->82"
94 + "default3.handlebars->35->95"
95 ]
96 },
97 {
@@ -122,7 +122,7 @@
122 "xloc": [
123 "default-mobile.handlebars->11->57",
124 "default.handlebars->47->80",
125 - "default3.handlebars->35->80"
125 + "default3.handlebars->35->93"
126 ]
127 },
128 {
@@ -153,7 +153,7 @@
153 "xloc": [
154 "default-mobile.handlebars->11->62",
155 "default.handlebars->47->85",
156 - "default3.handlebars->35->85"
156 + "default3.handlebars->35->98"
157 ]
158 },
159 {
@@ -184,7 +184,7 @@
184 "xloc": [
185 "default-mobile.handlebars->11->60",
186 "default.handlebars->47->83",
187 - "default3.handlebars->35->83"
187 + "default3.handlebars->35->96"
188 ]
189 },
190 {
@@ -215,7 +215,7 @@
215 "xloc": [
216 "default-mobile.handlebars->11->58",
217 "default.handlebars->47->81",
218 - "default3.handlebars->35->81"
218 + "default3.handlebars->35->94"
219 ]
220 },
221 {
@@ -248,8 +248,8 @@
248 "default-mobile.handlebars->11->56",
249 "default.handlebars->47->78",
250 "default.handlebars->47->79",
251 - "default3.handlebars->35->78",
252 - "default3.handlebars->35->79"
251 + "default3.handlebars->35->91",
252 + "default3.handlebars->35->92"
253 ]
254 },
255 {
@@ -331,7 +331,7 @@
331 "zh-cht": " 可以使用密碼提示,但不建議使用。",
332 "xloc": [
333 "default.handlebars->47->2101",
334 - "default3.handlebars->35->2083"
334 + "default3.handlebars->35->2096"
335 ]
336 },
337 {
@@ -362,8 +362,8 @@
362 "xloc": [
363 "default.handlebars->47->2355",
364 "default.handlebars->47->2939",
365 - "default3.handlebars->35->2354",
366 - "default3.handlebars->35->2935"
365 + "default3.handlebars->35->2367",
366 + "default3.handlebars->35->2948"
367 ]
368 },
369 {
@@ -503,7 +503,7 @@
503 "zh-cht": " TLS。",
504 "xloc": [
505 "default.handlebars->47->282",
506 - "default3.handlebars->35->279"
506 + "default3.handlebars->35->292"
507 ]
508 },
509 {
@@ -533,7 +533,7 @@
533 "zh-cht": " 沒有TLS。",
534 "xloc": [
535 "default.handlebars->47->283",
536 - "default3.handlebars->35->280"
536 + "default3.handlebars->35->293"
537 ]
538 },
539 {
@@ -935,7 +935,7 @@
935 "zh-cht": "(可選的)",
936 "xloc": [
937 "default.handlebars->47->579",
938 - "default3.handlebars->35->577"
938 + "default3.handlebars->35->590"
939 ]
940 },
941 {
@@ -987,8 +987,8 @@
987 "xloc": [
988 "default.handlebars->47->2313",
989 "default.handlebars->47->541",
990 - "default3.handlebars->35->2309",
991 - "default3.handlebars->35->539"
990 + "default3.handlebars->35->2322",
991 + "default3.handlebars->35->552"
992 ]
993 },
994 {
@@ -1018,7 +1018,7 @@
1018 "zh-cht": "*對於BSD,首先運行“ pkg install wget sudo bash ”。",
1019 "xloc": [
1020 "default.handlebars->47->638",
1021 - "default3.handlebars->35->636"
1021 + "default3.handlebars->35->649"
1022 ]
1023 },
1024 {
@@ -1106,12 +1106,12 @@
1106 "default.handlebars->47->1667",
1107 "default.handlebars->47->2431",
1108 "default.handlebars->47->2712",
1109 - "default3.handlebars->35->1021",
1110 - "default3.handlebars->35->1650",
1111 - "default3.handlebars->35->1652",
1112 - "default3.handlebars->35->1654",
1113 - "default3.handlebars->35->2430",
1114 - "default3.handlebars->35->2711"
1109 + "default3.handlebars->35->1034",
1110 + "default3.handlebars->35->1663",
1111 + "default3.handlebars->35->1665",
1112 + "default3.handlebars->35->1667",
1113 + "default3.handlebars->35->2443",
1114 + "default3.handlebars->35->2724"
1115 ]
1116 },
1117 {
@@ -1226,7 +1226,7 @@
1226 "xloc": [
1227 "default-mobile.handlebars->11->407",
1228 "default.handlebars->47->368",
1229 - "default3.handlebars->35->366"
1229 + "default3.handlebars->35->379"
1230 ]
1231 },
1232 {
@@ -1256,7 +1256,7 @@
1256 "zh-cht": ", 本地設備",
1257 "xloc": [
1258 "default.handlebars->47->370",
1259 - "default3.handlebars->35->368"
1259 + "default3.handlebars->35->381"
1260 ]
1261 },
1262 {
@@ -1287,7 +1287,7 @@
1287 "xloc": [
1288 "default-mobile.handlebars->11->926",
1289 "default.handlebars->47->1773",
1290 - "default3.handlebars->35->1758"
1290 + "default3.handlebars->35->1771"
1291 ]
1292 },
1293 {
@@ -1318,8 +1318,8 @@
1318 "xloc": [
1319 "default.handlebars->47->1118",
1320 "default.handlebars->47->2271",
1321 - "default3.handlebars->35->1116",
1322 - "default3.handlebars->35->2269"
1321 + "default3.handlebars->35->1129",
1322 + "default3.handlebars->35->2282"
1323 ]
1324 },
1325 {
@@ -1350,8 +1350,8 @@
1350 "xloc": [
1351 "default.handlebars->47->1119",
1352 "default.handlebars->47->2272",
1353 - "default3.handlebars->35->1117",
1354 - "default3.handlebars->35->2270"
1353 + "default3.handlebars->35->1130",
1354 + "default3.handlebars->35->2283"
1355 ]
1356 },
1357 {
@@ -1380,7 +1380,7 @@
1380 "zh-cht": ", RDP",
1381 "xloc": [
1382 "default.handlebars->47->1420",
1383 - "default3.handlebars->35->1408"
1383 + "default3.handlebars->35->1421"
1384 ]
1385 },
1386 {
@@ -1411,8 +1411,8 @@
1411 "xloc": [
1412 "default.handlebars->47->1115",
1413 "default.handlebars->47->2268",
1414 - "default3.handlebars->35->1113",
1415 - "default3.handlebars->35->2266"
1414 + "default3.handlebars->35->1126",
1415 + "default3.handlebars->35->2279"
1416 ]
1417 },
1418 {
@@ -1443,8 +1443,8 @@
1443 "xloc": [
1444 "default.handlebars->47->1116",
1445 "default.handlebars->47->2269",
1446 - "default3.handlebars->35->1114",
1447 - "default3.handlebars->35->2267"
1446 + "default3.handlebars->35->1127",
1447 + "default3.handlebars->35->2280"
1448 ]
1449 },
1450 {
@@ -1500,7 +1500,7 @@
1500 "zh-cht": ", 中繼設備",
1501 "xloc": [
1502 "default.handlebars->47->369",
1503 - "default3.handlebars->35->367"
1503 + "default3.handlebars->35->380"
1504 ]
1505 },
1506 {
@@ -1530,7 +1530,7 @@
1530 "xloc": [
1531 "default-mobile.handlebars->11->710",
1532 "default.handlebars->47->1542",
1533 - "default3.handlebars->35->1529"
1533 + "default3.handlebars->35->1542"
1534 ]
1535 },
1536 {
@@ -1559,7 +1559,7 @@
1559 "zh-cht": ", SSH",
1560 "xloc": [
1561 "default.handlebars->47->1510",
1562 - "default3.handlebars->35->1497"
1562 + "default3.handlebars->35->1510"
1563 ]
1564 },
1565 {
@@ -1588,7 +1588,7 @@
1588 "zh-cht": ",軟體KVM",
1589 "xloc": [
1590 "default.handlebars->47->1403",
1591 - "default3.handlebars->35->1391",
1591 + "default3.handlebars->35->1404",
1592 "sharing.handlebars->11->12"
1593 ]
1594 },
@@ -1620,8 +1620,8 @@
1620 "xloc": [
1621 "default.handlebars->47->1120",
1622 "default.handlebars->47->2273",
1623 - "default3.handlebars->35->1118",
1624 - "default3.handlebars->35->2271"
1623 + "default3.handlebars->35->1131",
1624 + "default3.handlebars->35->2284"
1625 ]
1626 },
1627 {
@@ -1678,8 +1678,8 @@
1678 "xloc": [
1679 "default.handlebars->47->1117",
1680 "default.handlebars->47->2270",
1681 - "default3.handlebars->35->1115",
1682 - "default3.handlebars->35->2268"
1681 + "default3.handlebars->35->1128",
1682 + "default3.handlebars->35->2281"
1683 ]
1684 },
1685 {
@@ -1713,9 +1713,9 @@
1713 "default.handlebars->47->1419",
1714 "default.handlebars->47->1511",
1715 "default.handlebars->47->1543",
1716 - "default3.handlebars->35->1407",
1717 - "default3.handlebars->35->1498",
1718 - "default3.handlebars->35->1530",
1716 + "default3.handlebars->35->1420",
1717 + "default3.handlebars->35->1511",
1718 + "default3.handlebars->35->1543",
1719 "sharing-mobile.handlebars->11->14",
1720 "sharing-mobile.handlebars->11->46",
1721 "sharing-mobile.handlebars->11->63",
@@ -1954,7 +1954,7 @@
1954 "zh-cht": ",{0}觀看",
1955 "xloc": [
1956 "default.handlebars->47->1414",
1957 - "default3.handlebars->35->1402",
1957 + "default3.handlebars->35->1415",
1958 "sharing.handlebars->11->13"
1959 ]
1960 },
@@ -2053,9 +2053,9 @@
2053 "default.handlebars->47->1557",
2054 "default.handlebars->47->2497",
2055 "default.handlebars->47->3183",
2056 - "default3.handlebars->35->1544",
2057 - "default3.handlebars->35->2496",
2058 - "default3.handlebars->35->3173",
2056 + "default3.handlebars->35->1557",
2057 + "default3.handlebars->35->2509",
2058 + "default3.handlebars->35->3186",
2059 "sharing-mobile.handlebars->11->79",
2060 "sharing.handlebars->11->50"
2061 ]
@@ -2110,7 +2110,7 @@
2110 "xloc": [
2111 "default-mobile.handlebars->container->masthead->notificationCount->notificationCount2",
2112 "default.handlebars->container->masthead->7->notificationCount",
2113 - "default3.handlebars->container->masthead->7->notificationCount"
2113 + "default3.handlebars->container->masthead->7->notificationCount->notificationBadge"
2114 ]
2115 },
2116 {
@@ -2243,7 +2243,7 @@
2243 "zh-cht": "1個活躍時段",
2244 "xloc": [
2245 "default.handlebars->47->3034",
2246 - "default3.handlebars->35->3030"
2246 + "default3.handlebars->35->3043"
2247 ]
2248 },
2249 {
@@ -2275,7 +2275,7 @@
2275 "default-mobile.handlebars->11->1069",
2276 "default-mobile.handlebars->11->370",
2277 "default.handlebars->47->2521",
2278 - "default3.handlebars->35->2520",
2278 + "default3.handlebars->35->2533",
2279 "download.handlebars->3->1",
2280 "download2.handlebars->5->1",
2281 "sharing-mobile.handlebars->11->112",
@@ -2338,7 +2338,7 @@
2338 "zh-cht": "1位聯絡文",
2339 "xloc": [
2340 "default.handlebars->47->1416",
2341 - "default3.handlebars->35->1404",
2341 + "default3.handlebars->35->1417",
2342 "sharing.handlebars->11->15"
2343 ]
2344 },
@@ -2371,9 +2371,9 @@
2371 "default.handlebars->47->290",
2372 "default.handlebars->47->570",
2373 "default.handlebars->47->584",
2374 - "default3.handlebars->35->287",
2375 - "default3.handlebars->35->568",
2376 - "default3.handlebars->35->582"
2374 + "default3.handlebars->35->300",
2375 + "default3.handlebars->35->581",
2376 + "default3.handlebars->35->595"
2377 ]
2378 },
2379 {
@@ -2403,7 +2403,7 @@
2403 "zh-cht": "1群",
2404 "xloc": [
2405 "default.handlebars->47->2989",
2406 - "default3.handlebars->35->2985"
2406 + "default3.handlebars->35->2998"
2407 ]
2408 },
2409 {
@@ -2435,9 +2435,9 @@
2435 "default.handlebars->47->288",
2436 "default.handlebars->47->568",
2437 "default.handlebars->47->582",
2438 - "default3.handlebars->35->285",
2439 - "default3.handlebars->35->566",
2440 - "default3.handlebars->35->580"
2438 + "default3.handlebars->35->298",
2439 + "default3.handlebars->35->579",
2440 + "default3.handlebars->35->593"
2441 ]
2442 },
2443 {
@@ -2468,8 +2468,8 @@
2468 "xloc": [
2469 "default.handlebars->47->1228",
2470 "default.handlebars->47->2066",
2471 - "default3.handlebars->35->1224",
2472 - "default3.handlebars->35->2049"
2471 + "default3.handlebars->35->1237",
2472 + "default3.handlebars->35->2062"
2473 ]
2474 },
2475 {
@@ -2499,7 +2499,7 @@
2499 "zh-cht": "1分鐘之後離線",
2500 "xloc": [
2501 "default.handlebars->47->92",
2502 - "default3.handlebars->35->92"
2502 + "default3.handlebars->35->105"
2503 ]
2504 },
2505 {
@@ -2524,7 +2524,7 @@
2524 "tr": "Oturum Açmaya kadar 1 dakika",
2525 "xloc": [
2526 "default.handlebars->47->90",
2527 - "default3.handlebars->35->90"
2527 + "default3.handlebars->35->103"
2528 ]
2529 },
2530 {
@@ -2556,9 +2556,9 @@
2556 "default.handlebars->47->292",
2557 "default.handlebars->47->572",
2558 "default.handlebars->47->586",
2559 - "default3.handlebars->35->289",
2560 - "default3.handlebars->35->570",
2561 - "default3.handlebars->35->584"
2559 + "default3.handlebars->35->302",
2560 + "default3.handlebars->35->583",
2561 + "default3.handlebars->35->597"
2562 ]
2563 },
2564 {
@@ -2588,7 +2588,7 @@
2588 "zh-cht": "有1個用戶沒有顯示,請使用搜尋框搜尋用戶...",
2589 "xloc": [
2590 "default.handlebars->47->2744",
2591 - "default3.handlebars->35->2743"
2591 + "default3.handlebars->35->2756"
2592 ]
2593 },
2594 {
@@ -2618,7 +2618,7 @@
2618 "zh-cht": "1個節點",
2619 "xloc": [
2620 "default.handlebars->47->697",
2621 - "default3.handlebars->35->695"
2621 + "default3.handlebars->35->708"
2622 ]
2623 },
2624 {
@@ -2701,7 +2701,7 @@
2701 "xloc": [
2702 "default-mobile.handlebars->11->587",
2703 "default.handlebars->47->1268",
2704 - "default3.handlebars->35->1264"
2704 + "default3.handlebars->35->1277"
2705 ]
2706 },
2707 {
@@ -2731,7 +2731,7 @@
2731 "zh-cht": "1秒之後離線",
2732 "xloc": [
2733 "default.handlebars->47->88",
2734 - "default3.handlebars->35->88"
2734 + "default3.handlebars->35->101"
2735 ]
2736 },
2737 {
@@ -2756,7 +2756,7 @@
2756 "tr": "Çıkışa Kadar 1 saniye",
2757 "xloc": [
2758 "default.handlebars->47->86",
2759 - "default3.handlebars->35->86"
2759 + "default3.handlebars->35->99"
2760 ]
2761 },
2762 {
@@ -2786,7 +2786,7 @@
2786 "zh-cht": "1 個選定的設備處於離線狀態。",
2787 "xloc": [
2788 "default.handlebars->47->765",
2789 - "default3.handlebars->35->763"
2789 + "default3.handlebars->35->776"
2790 ]
2791 },
2792 {
@@ -2816,7 +2816,7 @@
2816 "zh-cht": "1 個選定的設備在線。",
2817 "xloc": [
2818 "default.handlebars->47->763",
2819 - "default3.handlebars->35->761"
2819 + "default3.handlebars->35->774"
2820 ]
2821 },
2822 {
@@ -2860,14 +2860,14 @@
2860 "default.handlebars->47->474",
2861 "default.handlebars->47->478",
2862 "default.handlebars->47->482",
2863 - "default3.handlebars->35->2747",
2864 - "default3.handlebars->35->457",
2865 - "default3.handlebars->35->460",
2866 - "default3.handlebars->35->464",
2867 - "default3.handlebars->35->468",
2868 - "default3.handlebars->35->472",
2869 - "default3.handlebars->35->476",
2870 - "default3.handlebars->35->480"
2863 + "default3.handlebars->35->2760",
2864 + "default3.handlebars->35->470",
2865 + "default3.handlebars->35->473",
2866 + "default3.handlebars->35->477",
2867 + "default3.handlebars->35->481",
2868 + "default3.handlebars->35->485",
2869 + "default3.handlebars->35->489",
2870 + "default3.handlebars->35->493"
2871 ]
2872 },
2873 {
@@ -2899,9 +2899,9 @@
2899 "default.handlebars->47->291",
2900 "default.handlebars->47->571",
2901 "default.handlebars->47->585",
2902 - "default3.handlebars->35->288",
2903 - "default3.handlebars->35->569",
2904 - "default3.handlebars->35->583"
2902 + "default3.handlebars->35->301",
2903 + "default3.handlebars->35->582",
2904 + "default3.handlebars->35->596"
2905 ]
2906 },
2907 {
@@ -3081,8 +3081,8 @@
3081 "xloc": [
3082 "default.handlebars->47->1230",
3083 "default.handlebars->47->2068",
3084 - "default3.handlebars->35->1226",
3085 - "default3.handlebars->35->2051"
3084 + "default3.handlebars->35->1239",
3085 + "default3.handlebars->35->2064"
3086 ]
3087 },
3088 {
@@ -3113,7 +3113,7 @@
3113 "xloc": [
3114 "default-mobile.handlebars->11->589",
3115 "default.handlebars->47->1270",
3116 - "default3.handlebars->35->1266"
3116 + "default3.handlebars->35->1279"
3117 ]
3118 },
3119 {
@@ -3292,8 +3292,8 @@
3292 "xloc": [
3293 "default.handlebars->47->1238",
3294 "default.handlebars->47->2076",
3295 - "default3.handlebars->35->1234",
3296 - "default3.handlebars->35->2059"
3295 + "default3.handlebars->35->1247",
3296 + "default3.handlebars->35->2072"
3297 ]
3298 },
3299 {
@@ -3439,8 +3439,8 @@
3439 "xloc": [
3440 "default.handlebars->47->1231",
3441 "default.handlebars->47->2069",
3442 - "default3.handlebars->35->1227",
3443 - "default3.handlebars->35->2052"
3442 + "default3.handlebars->35->1240",
3443 + "default3.handlebars->35->2065"
3444 ]
3445 },
3446 {
@@ -3471,8 +3471,8 @@
3471 "xloc": [
3472 "default.handlebars->47->1239",
3473 "default.handlebars->47->2077",
3474 - "default3.handlebars->35->1235",
3475 - "default3.handlebars->35->2060"
3474 + "default3.handlebars->35->1248",
3475 + "default3.handlebars->35->2073"
3476 ]
3477 },
3478 {
@@ -3619,8 +3619,8 @@
3619 "xloc": [
3620 "default.handlebars->47->1241",
3621 "default.handlebars->47->2079",
3622 - "default3.handlebars->35->1237",
3623 - "default3.handlebars->35->2062"
3622 + "default3.handlebars->35->1250",
3623 + "default3.handlebars->35->2075"
3624 ]
3625 },
3626 {
@@ -3651,8 +3651,8 @@
3651 "xloc": [
3652 "default.handlebars->47->1235",
3653 "default.handlebars->47->2073",
3654 - "default3.handlebars->35->1231",
3655 - "default3.handlebars->35->2056"
3654 + "default3.handlebars->35->1244",
3655 + "default3.handlebars->35->2069"
3656 ]
3657 },
3658 {
@@ -3683,7 +3683,7 @@
3683 "xloc": [
3684 "default-mobile.handlebars->11->78",
3685 "default.handlebars->47->232",
3686 - "default3.handlebars->35->231"
3686 + "default3.handlebars->35->244"
3687 ]
3688 },
3689 {
@@ -3714,7 +3714,7 @@
3714 "xloc": [
3715 "default-mobile.handlebars->11->83",
3716 "default.handlebars->47->237",
3717 - "default3.handlebars->35->236"
3717 + "default3.handlebars->35->249"
3718 ]
3719 },
3720 {
@@ -3864,8 +3864,8 @@
3864 "xloc": [
3865 "default.handlebars->47->1240",
3866 "default.handlebars->47->2078",
3867 - "default3.handlebars->35->1236",
3868 - "default3.handlebars->35->2061"
3867 + "default3.handlebars->35->1249",
3868 + "default3.handlebars->35->2074"
3869 ]
3870 },
3871 {
@@ -3953,7 +3953,7 @@
3953 "zh-cht": "2FA備份代碼已清除",
3954 "xloc": [
3955 "default.handlebars->47->2634",
3956 - "default3.handlebars->35->2633"
3956 + "default3.handlebars->35->2646"
3957 ]
3958 },
3959 {
@@ -3984,7 +3984,7 @@
3984 "xloc": [
3985 "default-mobile.handlebars->11->65",
3986 "default.handlebars->47->217",
3987 - "default3.handlebars->35->216"
3987 + "default3.handlebars->35->229"
3988 ]
3989 },
3990 {
@@ -4014,7 +4014,7 @@
4014 "zh-cht": "第二個因素",
4015 "xloc": [
4016 "default.handlebars->47->3222",
4017 - "default3.handlebars->35->3212"
4017 + "default3.handlebars->35->3225"
4018 ]
4019 },
4020 {
@@ -4045,8 +4045,8 @@
4045 "xloc": [
4046 "default.handlebars->47->2762",
4047 "default.handlebars->47->3015",
4048 - "default3.handlebars->35->2761",
4049 - "default3.handlebars->35->3011"
4048 + "default3.handlebars->35->2774",
4049 + "default3.handlebars->35->3024"
4050 ]
4051 },
4052 {
@@ -4219,8 +4219,8 @@
4219 "xloc": [
4220 "default.handlebars->47->1232",
4221 "default.handlebars->47->2070",
4222 - "default3.handlebars->35->1228",
4223 - "default3.handlebars->35->2053"
4222 + "default3.handlebars->35->1241",
4223 + "default3.handlebars->35->2066"
4224 ]
4225 },
4226 {
@@ -4251,7 +4251,7 @@
4251 "xloc": [
4252 "default-mobile.handlebars->11->755",
4253 "default.handlebars->47->1620",
4254 - "default3.handlebars->35->1607"
4254 + "default3.handlebars->35->1620"
4255 ]
4256 },
4257 {
@@ -4340,8 +4340,8 @@
4340 "xloc": [
4341 "default.handlebars->47->1242",
4342 "default.handlebars->47->2080",
4343 - "default3.handlebars->35->1238",
4344 - "default3.handlebars->35->2063"
4343 + "default3.handlebars->35->1251",
4344 + "default3.handlebars->35->2076"
4345 ]
4346 },
4347 {
@@ -4372,8 +4372,8 @@
4372 "xloc": [
4373 "default.handlebars->47->1236",
4374 "default.handlebars->47->2074",
4375 - "default3.handlebars->35->1232",
4376 - "default3.handlebars->35->2057"
4375 + "default3.handlebars->35->1245",
4376 + "default3.handlebars->35->2070"
4377 ]
4378 },
4379 {
@@ -4521,8 +4521,8 @@
4521 "xloc": [
4522 "default.handlebars->47->1233",
4523 "default.handlebars->47->2071",
4524 - "default3.handlebars->35->1229",
4525 - "default3.handlebars->35->2054"
4524 + "default3.handlebars->35->1242",
4525 + "default3.handlebars->35->2067"
4526 ]
4527 },
4528 {
@@ -4582,8 +4582,8 @@
4582 "xloc": [
4583 "default.handlebars->47->1229",
4584 "default.handlebars->47->2067",
4585 - "default3.handlebars->35->1225",
4586 - "default3.handlebars->35->2050"
4585 + "default3.handlebars->35->1238",
4586 + "default3.handlebars->35->2063"
4587 ]
4588 },
4589 {
@@ -4614,7 +4614,7 @@
4614 "xloc": [
4615 "default-mobile.handlebars->11->588",
4616 "default.handlebars->47->1269",
4617 - "default3.handlebars->35->1265"
4617 + "default3.handlebars->35->1278"
4618 ]
4619 },
4620 {
@@ -4796,8 +4796,8 @@
4796 "xloc": [
4797 "default.handlebars->47->1234",
4798 "default.handlebars->47->2072",
4799 - "default3.handlebars->35->1230",
4800 - "default3.handlebars->35->2055"
4799 + "default3.handlebars->35->1243",
4800 + "default3.handlebars->35->2068"
4801 ]
4802 },
4803 {
@@ -4887,7 +4887,7 @@
4887 "xloc": [
4888 "default-mobile.handlebars->11->757",
4889 "default.handlebars->47->1622",
4890 - "default3.handlebars->35->1609"
4890 + "default3.handlebars->35->1622"
4891 ]
4892 },
4893 {
@@ -5050,7 +5050,7 @@
5050 "zh-cht": "7天電源狀態",
5051 "xloc": [
5052 "default.handlebars->47->1315",
5053 - "default3.handlebars->35->1306"
5053 + "default3.handlebars->35->1319"
5054 ]
5055 },
5056 {
@@ -5080,7 +5080,7 @@
5080 "zh-cht": "7天",
5081 "xloc": [
5082 "default.handlebars->47->2081",
5083 - "default3.handlebars->35->2064"
5083 + "default3.handlebars->35->2077"
5084 ]
5085 },
5086 {
@@ -5175,10 +5175,10 @@
5175 "default.handlebars->47->2075",
5176 "default.handlebars->47->569",
5177 "default.handlebars->47->583",
5178 - "default3.handlebars->35->1233",
5179 - "default3.handlebars->35->2058",
5180 - "default3.handlebars->35->567",
5181 - "default3.handlebars->35->581"
5178 + "default3.handlebars->35->1246",
5179 + "default3.handlebars->35->2071",
5180 + "default3.handlebars->35->580",
5181 + "default3.handlebars->35->594"
5182 ]
5183 },
5184 {
@@ -5384,9 +5384,9 @@
5384 "default.handlebars->47->2249",
5385 "default.handlebars->47->447",
5386 "default.handlebars->47->931",
5387 - "default3.handlebars->35->2247",
5388 - "default3.handlebars->35->445",
5389 - "default3.handlebars->35->929"
5387 + "default3.handlebars->35->2260",
5388 + "default3.handlebars->35->458",
5389 + "default3.handlebars->35->942"
5390 ]
5391 },
5392 {
@@ -5466,8 +5466,8 @@
5466 "xloc": [
5467 "default.handlebars->47->425",
5468 "default.handlebars->47->732",
5469 - "default3.handlebars->35->423",
5470 - "default3.handlebars->35->730"
5469 + "default3.handlebars->35->436",
5470 + "default3.handlebars->35->743"
5471 ]
5472 },
5473 {
@@ -5477,7 +5477,7 @@
5477 "pl": "Host AMT",
5478 "xloc": [
5479 "default.handlebars->47->396",
5480 - "default3.handlebars->35->394"
5480 + "default3.handlebars->35->407"
5481 ]
5482 },
5483 {
@@ -5488,7 +5488,7 @@
5488 "pl": "Stan AMT",
5489 "xloc": [
5490 "default.handlebars->47->397",
5491 - "default3.handlebars->35->395"
5491 + "default3.handlebars->35->408"
5492 ]
5493 },
5494 {
@@ -5517,7 +5517,7 @@
5517 "zh-cht": "AMT操作系統",
5518 "xloc": [
5519 "default.handlebars->47->3381",
5520 - "default3.handlebars->35->3371"
5520 + "default3.handlebars->35->3386"
5521 ]
5522 },
5523 {
@@ -5547,8 +5547,8 @@
5547 "xloc": [
5548 "default.handlebars->47->3232",
5549 "default.handlebars->47->3285",
5550 - "default3.handlebars->35->3222",
5551 - "default3.handlebars->35->3275"
5550 + "default3.handlebars->35->3235",
5551 + "default3.handlebars->35->3288"
5552 ]
5553 },
5554 {
@@ -5578,8 +5578,8 @@
5578 "xloc": [
5579 "default.handlebars->47->3231",
5580 "default.handlebars->47->3284",
5581 - "default3.handlebars->35->3221",
5582 - "default3.handlebars->35->3274"
5581 + "default3.handlebars->35->3234",
5582 + "default3.handlebars->35->3287"
5583 ]
5584 },
5585 {
@@ -5588,7 +5588,7 @@
5588 "nl": "APK",
5589 "xloc": [
5590 "default.handlebars->47->659",
5591 - "default3.handlebars->35->657"
5591 + "default3.handlebars->35->670"
5592 ]
5593 },
5594 {
@@ -5601,7 +5601,7 @@
5601 "xloc": [
5602 "default-mobile.handlebars->11->978",
5603 "default.handlebars->47->658",
5604 - "default3.handlebars->35->656"
5604 + "default3.handlebars->35->669"
5605 ]
5606 },
5607 {
@@ -5610,7 +5610,7 @@
5610 "nl": "ARM 64bit versie van de macOS Mesh Agent",
5611 "xloc": [
5612 "default.handlebars->47->647",
5613 - "default3.handlebars->35->645"
5613 + "default3.handlebars->35->658"
5614 ]
5615 },
5616 {
@@ -5624,8 +5624,8 @@
5624 "xloc": [
5625 "default.handlebars->47->632",
5626 "default.handlebars->47->679",
5627 - "default3.handlebars->35->630",
5628 - "default3.handlebars->35->677"
5627 + "default3.handlebars->35->643",
5628 + "default3.handlebars->35->690"
5629 ]
5630 },
5631 {
@@ -5816,8 +5816,8 @@
5816 "default-mobile.handlebars->11->764",
5817 "default.handlebars->47->950",
5818 "default.handlebars->47->952",
5819 - "default3.handlebars->35->948",
5820 - "default3.handlebars->35->950"
5819 + "default3.handlebars->35->961",
5820 + "default3.handlebars->35->963"
5821 ]
5822 },
5823 {
@@ -5848,7 +5848,7 @@
5848 "xloc": [
5849 "default-mobile.handlebars->11->927",
5850 "default.handlebars->47->1774",
5851 - "default3.handlebars->35->1759"
5851 + "default3.handlebars->35->1772"
5852 ]
5853 },
5854 {
@@ -5938,7 +5938,7 @@
5938 "zh-cht": "存取伺服器檔案",
5939 "xloc": [
5940 "default.handlebars->47->2945",
5941 - "default3.handlebars->35->2941"
5941 + "default3.handlebars->35->2954"
5942 ]
5943 },
5944 {
@@ -6071,13 +6071,13 @@
6071 "default.handlebars->47->740",
6072 "default.handlebars->47->891",
6073 "default.handlebars->47->893",
6074 - "default3.handlebars->35->2114",
6075 - "default3.handlebars->35->2115",
6076 - "default3.handlebars->35->3424",
6077 - "default3.handlebars->35->3426",
6078 - "default3.handlebars->35->738",
6079 - "default3.handlebars->35->889",
6080 - "default3.handlebars->35->891"
6074 + "default3.handlebars->35->2127",
6075 + "default3.handlebars->35->2128",
6076 + "default3.handlebars->35->3439",
6077 + "default3.handlebars->35->3441",
6078 + "default3.handlebars->35->751",
6079 + "default3.handlebars->35->902",
6080 + "default3.handlebars->35->904"
6081 ]
6082 },
6083 {
@@ -6108,7 +6108,7 @@
6108 "xloc": [
6109 "default-mobile.handlebars->11->1036",
6110 "default.handlebars->47->3305",
6111 - "default3.handlebars->35->3295"
6111 + "default3.handlebars->35->3310"
6112 ]
6113 },
6114 {
@@ -6184,7 +6184,7 @@
6184 "uk": "Акаунт змінено на синхронізацію з даними LDAP.",
6185 "xloc": [
6186 "default.handlebars->47->2695",
6187 - "default3.handlebars->35->2694"
6187 + "default3.handlebars->35->2707"
6188 ]
6189 },
6190 {
@@ -6214,7 +6214,7 @@
6214 "zh-cht": "帳戶已更改:{0}",
6215 "xloc": [
6216 "default.handlebars->47->2607",
6217 - "default3.handlebars->35->2606"
6217 + "default3.handlebars->35->2619"
6218 ]
6219 },
6220 {
@@ -6244,7 +6244,7 @@
6244 "zh-cht": "創建帳戶,電子郵件為{0}",
6245 "xloc": [
6246 "default.handlebars->47->2606",
6247 - "default3.handlebars->35->2605"
6247 + "default3.handlebars->35->2618"
6248 ]
6249 },
6250 {
@@ -6274,7 +6274,7 @@
6274 "zh-cht": "已創建帳戶,名稱為 {0}。",
6275 "xloc": [
6276 "default.handlebars->47->2669",
6277 - "default3.handlebars->35->2668"
6277 + "default3.handlebars->35->2681"
6278 ]
6279 },
6280 {
@@ -6304,7 +6304,7 @@
6304 "zh-cht": "帳戶已創建,用戶名是{0}",
6305 "xloc": [
6306 "default.handlebars->47->2605",
6307 - "default3.handlebars->35->2604"
6307 + "default3.handlebars->35->2617"
6308 ]
6309 },
6310 {
@@ -6337,9 +6337,9 @@
6337 "default.handlebars->47->221",
6338 "default.handlebars->47->2764",
6339 "default.handlebars->47->2942",
6340 - "default3.handlebars->35->220",
6341 - "default3.handlebars->35->2763",
6342 - "default3.handlebars->35->2938"
6340 + "default3.handlebars->35->233",
6341 + "default3.handlebars->35->2776",
6342 + "default3.handlebars->35->2951"
6343 ]
6344 },
6345 {
@@ -6370,7 +6370,7 @@
6370 "xloc": [
6371 "default-mobile.handlebars->11->1048",
6372 "default.handlebars->47->3317",
6373 - "default3.handlebars->35->3307",
6373 + "default3.handlebars->35->3322",
6374 "login-mobile.handlebars->5->6",
6375 "login.handlebars->5->8",
6376 "login2.handlebars->7->206"
@@ -6434,7 +6434,7 @@
6434 "zh-cht": "帳號登錄",
6435 "xloc": [
6436 "default.handlebars->47->2542",
6437 - "default3.handlebars->35->2541"
6437 + "default3.handlebars->35->2554"
6438 ]
6439 },
6440 {
@@ -6464,7 +6464,7 @@
6464 "zh-cht": "從 {0}、{1}、{2} 登錄帳戶",
6465 "xloc": [
6466 "default.handlebars->47->2648",
6467 - "default3.handlebars->35->2647"
6467 + "default3.handlebars->35->2660"
6468 ]
6469 },
6470 {
@@ -6479,7 +6479,7 @@
6479 "uk": "Записи токенів входу до акаунту",
6480 "xloc": [
6481 "default.handlebars->47->3274",
6482 - "default3.handlebars->35->3264"
6482 + "default3.handlebars->35->3277"
6483 ]
6484 },
6485 {
@@ -6509,7 +6509,7 @@
6509 "zh-cht": "帳戶登出",
6510 "xloc": [
6511 "default.handlebars->47->2543",
6512 - "default3.handlebars->35->2542"
6512 + "default3.handlebars->35->2555"
6513 ]
6514 },
6515 {
@@ -6570,7 +6570,7 @@
6570 "zh-cht": "帳戶密碼已更改:{0}",
6571 "xloc": [
6572 "default.handlebars->47->2615",
6573 - "default3.handlebars->35->2614"
6573 + "default3.handlebars->35->2627"
6574 ]
6575 },
6576 {
@@ -6600,7 +6600,7 @@
6600 "zh-cht": "帳戶已刪除",
6601 "xloc": [
6602 "default.handlebars->47->2604",
6603 - "default3.handlebars->35->2603"
6603 + "default3.handlebars->35->2616"
6604 ]
6605 },
6606 {
@@ -6662,7 +6662,7 @@
6662 "default-mobile.handlebars->11->942",
6663 "default.handlebars->47->1789",
6664 "default.handlebars->container->column_l->p42->p42tbl->1->0->8",
6665 - "default3.handlebars->35->1774",
6665 + "default3.handlebars->35->1787",
6666 "default3.handlebars->container->column_l->p42->p42tbl->1->0->17"
6667 ]
6668 },
@@ -6694,8 +6694,8 @@
6694 "xloc": [
6695 "default.handlebars->47->1362",
6696 "default.handlebars->47->1364",
6697 - "default3.handlebars->35->1351",
6698 - "default3.handlebars->35->1353"
6697 + "default3.handlebars->35->1364",
6698 + "default3.handlebars->35->1366"
6699 ]
6700 },
6701 {
@@ -6732,7 +6732,7 @@
6732 "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1",
6733 "default.handlebars->container->column_l->p12->termTable->1->1->0->1->1",
6734 "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->1",
6735 - "default3.handlebars->35->1022",
6735 + "default3.handlebars->35->1035",
6736 "default3.handlebars->container->column_l->p11->deskarea0->deskarea1->3",
6737 "default3.handlebars->container->column_l->p12->termTable->1->1->0->1->3",
6738 "default3.handlebars->container->column_l->p13->p13toolbar->1->0->1->3"
@@ -6765,7 +6765,7 @@
6765 "zh-cht": "使用FAT格式的USB密鑰在管理控制模式(ACM)中激活英特爾®AMT。將setup.bin放在其上,然後使用此鍵引導一台或多台計算機。",
6766 "xloc": [
6767 "default.handlebars->47->535",
6768 - "default3.handlebars->35->533"
6768 + "default3.handlebars->35->546"
6769 ]
6770 },
6771 {
@@ -6853,7 +6853,7 @@
6853 "zh-cht": "如果ACM失敗,則激活到CCM",
6854 "xloc": [
6855 "default.handlebars->47->2304",
6856 - "default3.handlebars->35->2300"
6856 + "default3.handlebars->35->2313"
6857 ]
6858 },
6859 {
@@ -6888,9 +6888,9 @@
6888 "default.handlebars->47->1675",
6889 "default.handlebars->47->924",
6890 "default.handlebars->47->926",
6891 - "default3.handlebars->35->1660",
6892 - "default3.handlebars->35->922",
6893 - "default3.handlebars->35->924"
6891 + "default3.handlebars->35->1673",
6892 + "default3.handlebars->35->935",
6893 + "default3.handlebars->35->937"
6894 ]
6895 },
6896 {
@@ -6920,7 +6920,7 @@
6920 "zh-cht": "啟動",
6921 "xloc": [
6922 "default.handlebars->47->332",
6923 - "default3.handlebars->35->329"
6923 + "default3.handlebars->35->342"
6924 ]
6925 },
6926 {
@@ -6951,8 +6951,8 @@
6951 "xloc": [
6952 "default.handlebars->47->1100",
6953 "default.handlebars->47->2253",
6954 - "default3.handlebars->35->1098",
6955 - "default3.handlebars->35->2251"
6954 + "default3.handlebars->35->1111",
6955 + "default3.handlebars->35->2264"
6956 ]
6957 },
6958 {
@@ -6982,7 +6982,7 @@
6982 "zh-cht": "活動登錄令牌",
6983 "xloc": [
6984 "default.handlebars->47->2141",
6985 - "default3.handlebars->35->2143"
6985 + "default3.handlebars->35->2156"
6986 ]
6987 },
6988 {
@@ -7013,7 +7013,7 @@
7013 "xloc": [
7014 "default-mobile.handlebars->11->790",
7015 "default.handlebars->47->978",
7016 - "default3.handlebars->35->976"
7016 + "default3.handlebars->35->989"
7017 ]
7018 },
7019 {
@@ -7044,7 +7044,7 @@
7044 "xloc": [
7045 "default-mobile.handlebars->11->789",
7046 "default.handlebars->47->977",
7047 - "default3.handlebars->35->975"
7047 + "default3.handlebars->35->988"
7048 ]
7049 },
7050 {
@@ -7102,8 +7102,8 @@
7102 "default-mobile.handlebars->11->680",
7103 "default.handlebars->47->1452",
7104 "default.handlebars->47->1458",
7105 - "default3.handlebars->35->1441",
7106 - "default3.handlebars->35->1447",
7105 + "default3.handlebars->35->1454",
7106 + "default3.handlebars->35->1460",
7107 "sharing-mobile.handlebars->11->41"
7108 ]
7109 },
@@ -7187,8 +7187,8 @@
7187 "xloc": [
7188 "default.handlebars->47->2243",
7189 "default.handlebars->47->501",
7190 - "default3.handlebars->35->2241",
7191 - "default3.handlebars->35->499"
7190 + "default3.handlebars->35->2254",
7191 + "default3.handlebars->35->512"
7192 ]
7193 },
7194 {
@@ -7247,10 +7247,10 @@
7247 "default.handlebars->47->2917",
7248 "default.handlebars->47->3112",
7249 "default.handlebars->47->505",
7250 - "default3.handlebars->35->2245",
7251 - "default3.handlebars->35->2913",
7252 - "default3.handlebars->35->3102",
7253 - "default3.handlebars->35->503"
7250 + "default3.handlebars->35->2258",
7251 + "default3.handlebars->35->2926",
7252 + "default3.handlebars->35->3115",
7253 + "default3.handlebars->35->516"
7254 ]
7255 },
7256 {
@@ -7280,7 +7280,7 @@
7280 "zh-cht": "新增裝置日誌",
7281 "xloc": [
7282 "default.handlebars->47->1186",
7283 - "default3.handlebars->35->1182"
7283 + "default3.handlebars->35->1195"
7284 ]
7285 },
7286 {
@@ -7313,10 +7313,10 @@
7313 "default.handlebars->47->2911",
7314 "default.handlebars->47->3100",
7315 "default.handlebars->47->401",
7316 - "default3.handlebars->35->2391",
7317 - "default3.handlebars->35->2907",
7318 - "default3.handlebars->35->3090",
7319 - "default3.handlebars->35->399"
7316 + "default3.handlebars->35->2404",
7317 + "default3.handlebars->35->2920",
7318 + "default3.handlebars->35->3103",
7319 + "default3.handlebars->35->412"
7320 ]
7321 },
7322 {
@@ -7346,7 +7346,7 @@
7346 "zh-cht": "新增裝置群權限",
7347 "xloc": [
7348 "default.handlebars->47->2389",
7349 - "default3.handlebars->35->2388"
7349 + "default3.handlebars->35->2401"
7350 ]
7351 },
7352 {
@@ -7377,8 +7377,8 @@
7377 "xloc": [
7378 "default.handlebars->47->2394",
7379 "default.handlebars->47->2396",
7380 - "default3.handlebars->35->2393",
7381 - "default3.handlebars->35->2395"
7380 + "default3.handlebars->35->2406",
7381 + "default3.handlebars->35->2408"
7382 ]
7383 },
7384 {
@@ -7434,7 +7434,7 @@
7434 "zh-cht": "新增Intel® AMT裝置",
7435 "xloc": [
7436 "default.handlebars->47->525",
7437 - "default3.handlebars->35->523"
7437 + "default3.handlebars->35->536"
7438 ]
7439 },
7440 {
@@ -7464,7 +7464,7 @@
7464 "zh-cht": "新增密鑰",
7465 "xloc": [
7466 "default.handlebars->47->251",
7467 - "default3.handlebars->35->248"
7467 + "default3.handlebars->35->261"
7468 ]
7469 },
7470 {
@@ -7494,7 +7494,7 @@
7494 "zh-cht": "新增本地",
7495 "xloc": [
7496 "default.handlebars->47->495",
7497 - "default3.handlebars->35->493"
7497 + "default3.handlebars->35->506"
7498 ]
7499 },
7500 {
@@ -7550,7 +7550,7 @@
7550 "zh-cht": "新增成員身份",
7551 "xloc": [
7552 "default.handlebars->47->3132",
7553 - "default3.handlebars->35->3122"
7553 + "default3.handlebars->35->3135"
7554 ]
7555 },
7556 {
@@ -7580,7 +7580,7 @@
7580 "zh-cht": "新增 Mesh Agent",
7581 "xloc": [
7582 "default.handlebars->47->696",
7583 - "default3.handlebars->35->694"
7583 + "default3.handlebars->35->707"
7584 ]
7585 },
7586 {
@@ -7641,12 +7641,12 @@
7641 "default.handlebars->47->257",
7642 "default.handlebars->47->260",
7643 "default.handlebars->47->262",
7644 - "default3.handlebars->35->1839",
7645 - "default3.handlebars->35->1840",
7646 - "default3.handlebars->35->252",
7647 - "default3.handlebars->35->254",
7648 - "default3.handlebars->35->257",
7649 - "default3.handlebars->35->259"
7644 + "default3.handlebars->35->1852",
7645 + "default3.handlebars->35->1853",
7646 + "default3.handlebars->35->265",
7647 + "default3.handlebars->35->267",
7648 + "default3.handlebars->35->270",
7649 + "default3.handlebars->35->272"
7650 ]
7651 },
7652 {
@@ -7677,7 +7677,7 @@
7677 "xloc": [
7678 "default-mobile.handlebars->11->960",
7679 "default.handlebars->47->1092",
7680 - "default3.handlebars->35->1090"
7680 + "default3.handlebars->35->1103"
7681 ]
7682 },
7683 {
@@ -7707,7 +7707,7 @@
7707 "zh-cht": "新增用戶裝置權限",
7708 "xloc": [
7709 "default.handlebars->47->2399",
7710 - "default3.handlebars->35->2398"
7710 + "default3.handlebars->35->2411"
7711 ]
7712 },
7713 {
@@ -7740,10 +7740,10 @@
7740 "default.handlebars->47->2237",
7741 "default.handlebars->47->2391",
7742 "default.handlebars->47->3106",
7743 - "default3.handlebars->35->1091",
7744 - "default3.handlebars->35->2235",
7745 - "default3.handlebars->35->2390",
7746 - "default3.handlebars->35->3096"
7743 + "default3.handlebars->35->1104",
7744 + "default3.handlebars->35->2248",
7745 + "default3.handlebars->35->2403",
7746 + "default3.handlebars->35->3109"
7747 ]
7748 },
7749 {
@@ -7773,7 +7773,7 @@
7773 "zh-cht": "新增用戶群裝置權限",
7774 "xloc": [
7775 "default.handlebars->47->2401",
7776 - "default3.handlebars->35->2400"
7776 + "default3.handlebars->35->2413"
7777 ]
7778 },
7779 {
@@ -7859,8 +7859,8 @@
7859 "xloc": [
7860 "default.handlebars->47->2236",
7861 "default.handlebars->47->2906",
7862 - "default3.handlebars->35->2234",
7863 - "default3.handlebars->35->2902"
7862 + "default3.handlebars->35->2247",
7863 + "default3.handlebars->35->2915"
7864 ]
7865 },
7866 {
@@ -7890,7 +7890,7 @@
7890 "zh-cht": "將用戶新增到裝置群",
7891 "xloc": [
7892 "default.handlebars->47->2388",
7893 - "default3.handlebars->35->2387"
7893 + "default3.handlebars->35->2400"
7894 ]
7895 },
7896 {
@@ -7920,7 +7920,7 @@
7920 "zh-cht": "將用戶新增到用戶群",
7921 "xloc": [
7922 "default.handlebars->47->2941",
7923 - "default3.handlebars->35->2937"
7923 + "default3.handlebars->35->2950"
7924 ]
7925 },
7926 {
@@ -7950,7 +7950,7 @@
7950 "zh-cht": "新增YubiKey®OTP",
7951 "xloc": [
7952 "default.handlebars->47->252",
7953 - "default3.handlebars->35->249"
7953 + "default3.handlebars->35->262"
7954 ]
7955 },
7956 {
@@ -7980,7 +7980,7 @@
7980 "zh-cht": "將本地設備添加到設備組 \\\"{0}\\\"。",
7981 "xloc": [
7982 "default.handlebars->47->506",
7983 - "default3.handlebars->35->504"
7983 + "default3.handlebars->35->517"
7984 ]
7985 },
7986 {
@@ -8010,7 +8010,7 @@
8010 "zh-cht": "通過掃描本地網絡新增新的Intel® AMT電腦。",
8011 "xloc": [
8012 "default.handlebars->47->496",
8013 - "default3.handlebars->35->494"
8013 + "default3.handlebars->35->507"
8014 ]
8015 },
8016 {
@@ -8066,7 +8066,7 @@
8066 "zh-cht": "新增位於本地網絡上的新Intel® AMT電腦。",
8067 "xloc": [
8068 "default.handlebars->47->494",
8069 - "default3.handlebars->35->492"
8069 + "default3.handlebars->35->505"
8070 ]
8071 },
8072 {
@@ -8096,7 +8096,7 @@
8096 "zh-cht": "將新的Intel® AMT裝置新增到裝置群“{0}”。",
8097 "xloc": [
8098 "default.handlebars->47->515",
8099 - "default3.handlebars->35->513"
8099 + "default3.handlebars->35->526"
8100 ]
8101 },
8102 {
@@ -8127,8 +8127,8 @@
8127 "xloc": [
8128 "default.handlebars->47->2242",
8129 "default.handlebars->47->500",
8130 - "default3.handlebars->35->2240",
8131 - "default3.handlebars->35->498"
8130 + "default3.handlebars->35->2253",
8131 + "default3.handlebars->35->511"
8132 ]
8133 },
8134 {
@@ -8159,8 +8159,8 @@
8159 "xloc": [
8160 "default.handlebars->47->2246",
8161 "default.handlebars->47->504",
8162 - "default3.handlebars->35->2244",
8163 - "default3.handlebars->35->502"
8162 + "default3.handlebars->35->2257",
8163 + "default3.handlebars->35->515"
8164 ]
8165 },
8166 {
@@ -8190,7 +8190,7 @@
8190 "zh-cht": "添加本地設備",
8191 "xloc": [
8192 "default.handlebars->47->514",
8193 - "default3.handlebars->35->512"
8193 + "default3.handlebars->35->525"
8194 ]
8195 },
8196 {
@@ -8220,7 +8220,7 @@
8220 "zh-cht": "新增標籤",
8221 "xloc": [
8222 "default.handlebars->47->772",
8223 - "default3.handlebars->35->770"
8223 + "default3.handlebars->35->783"
8224 ]
8225 },
8226 {
@@ -8250,7 +8250,7 @@
8250 "zh-cht": "通過定期在遠程設備上以管理員身份運行MeshCmd,添加,激活和配置Intel® AMT以將“{0}”分組。",
8251 "xloc": [
8252 "default.handlebars->47->532",
8253 - "default3.handlebars->35->530"
8253 + "default3.handlebars->35->543"
8254 ]
8255 },
8256 {
@@ -8280,7 +8280,7 @@
8280 "zh-cht": "添加了身份驗證應用程序",
8281 "xloc": [
8282 "default.handlebars->47->2631",
8283 - "default3.handlebars->35->2630"
8283 + "default3.handlebars->35->2643"
8284 ]
8285 },
8286 {
@@ -8310,7 +8310,7 @@
8310 "zh-cht": "已將設備共享{0}從{1}添加到{2}",
8311 "xloc": [
8312 "default.handlebars->47->2642",
8313 - "default3.handlebars->35->2641"
8313 + "default3.handlebars->35->2654"
8314 ]
8315 },
8316 {
@@ -8340,7 +8340,7 @@
8340 "zh-cht": "添加了每天重複的設備共享 {0}。",
8341 "xloc": [
8342 "default.handlebars->47->2679",
8343 - "default3.handlebars->35->2678"
8343 + "default3.handlebars->35->2691"
8344 ]
8345 },
8346 {
@@ -8370,7 +8370,7 @@
8370 "zh-cht": "添加了每週重複的設備共享 {0}。",
8371 "xloc": [
8372 "default.handlebars->47->2680",
8373 - "default3.handlebars->35->2679"
8373 + "default3.handlebars->35->2692"
8374 ]
8375 },
8376 {
@@ -8400,7 +8400,7 @@
8400 "zh-cht": "添加了無限時間的設備共享 {0}。",
8401 "xloc": [
8402 "default.handlebars->47->2672",
8403 - "default3.handlebars->35->2671"
8403 + "default3.handlebars->35->2684"
8404 ]
8405 },
8406 {
@@ -8431,8 +8431,8 @@
8431 "xloc": [
8432 "default.handlebars->47->2598",
8433 "default.handlebars->47->2625",
8434 - "default3.handlebars->35->2597",
8435 - "default3.handlebars->35->2624"
8434 + "default3.handlebars->35->2610",
8435 + "default3.handlebars->35->2637"
8436 ]
8437 },
8438 {
@@ -8462,7 +8462,7 @@
8462 "zh-cht": "添加了登錄令牌",
8463 "xloc": [
8464 "default.handlebars->47->2656",
8465 - "default3.handlebars->35->2655"
8465 + "default3.handlebars->35->2668"
8466 ]
8467 },
8468 {
@@ -8492,7 +8492,7 @@
8492 "zh-cht": "增加推送通知認證設備",
8493 "xloc": [
8494 "default.handlebars->47->2654",
8495 - "default3.handlebars->35->2653"
8495 + "default3.handlebars->35->2666"
8496 ]
8497 },
8498 {
@@ -8522,7 +8522,7 @@
8522 "zh-cht": "添加了安全密鑰",
8523 "xloc": [
8524 "default.handlebars->47->2636",
8525 - "default3.handlebars->35->2635"
8525 + "default3.handlebars->35->2648"
8526 ]
8527 },
8528 {
@@ -8552,7 +8552,7 @@
8552 "zh-cht": "已將用戶組{0}添加到設備組{1}",
8553 "xloc": [
8554 "default.handlebars->47->2609",
8555 - "default3.handlebars->35->2608"
8555 + "default3.handlebars->35->2621"
8556 ]
8557 },
8558 {
@@ -8583,8 +8583,8 @@
8583 "xloc": [
8584 "default.handlebars->47->2612",
8585 "default.handlebars->47->2621",
8586 - "default3.handlebars->35->2611",
8587 - "default3.handlebars->35->2620"
8586 + "default3.handlebars->35->2624",
8587 + "default3.handlebars->35->2633"
8588 ]
8589 },
8590 {
@@ -8614,7 +8614,7 @@
8614 "zh-cht": "地址",
8615 "xloc": [
8616 "default.handlebars->47->394",
8617 - "default3.handlebars->35->392"
8617 + "default3.handlebars->35->405"
8618 ]
8619 },
8620 {
@@ -8674,7 +8674,7 @@
8674 "xloc": [
8675 "default-mobile.handlebars->11->831",
8676 "default.handlebars->47->1677",
8677 - "default3.handlebars->35->1662"
8677 + "default3.handlebars->35->1675"
8678 ]
8679 },
8680 {
@@ -8705,7 +8705,7 @@
8705 "xloc": [
8706 "default-mobile.handlebars->11->837",
8707 "default.handlebars->47->1683",
8708 - "default3.handlebars->35->1668"
8708 + "default3.handlebars->35->1681"
8709 ]
8710 },
8711 {
@@ -8739,10 +8739,10 @@
8739 "default.handlebars->47->3228",
8740 "default.handlebars->47->3281",
8741 "default.handlebars->termShellContextMenu->3",
8742 - "default3.handlebars->35->3142",
8743 - "default3.handlebars->35->3152",
8744 - "default3.handlebars->35->3218",
8745 - "default3.handlebars->35->3271",
8742 + "default3.handlebars->35->3155",
8743 + "default3.handlebars->35->3165",
8744 + "default3.handlebars->35->3231",
8745 + "default3.handlebars->35->3284",
8746 "default3.handlebars->container->column_l->p12->termTable->1->1->0->1->1->connectbutton2span->5->3->0",
8747 "player.handlebars->3->29",
8748 "xterm.handlebars->termShellContextMenu->cxtermps"
@@ -8775,7 +8775,7 @@
8775 "zh-cht": "管理領域",
8776 "xloc": [
8777 "default.handlebars->47->2993",
8778 - "default3.handlebars->35->2989"
8778 + "default3.handlebars->35->3002"
8779 ]
8780 },
8781 {
@@ -8836,7 +8836,7 @@
8836 "zh-cht": "管理領域",
8837 "xloc": [
8838 "default.handlebars->47->2838",
8839 - "default3.handlebars->35->2834"
8839 + "default3.handlebars->35->2847"
8840 ]
8841 },
8842 {
@@ -8866,7 +8866,7 @@
8866 "zh-cht": "管理員",
8867 "xloc": [
8868 "default.handlebars->47->2756",
8869 - "default3.handlebars->35->2755"
8869 + "default3.handlebars->35->2768"
8870 ]
8871 },
8872 {
@@ -8897,7 +8897,7 @@
8897 "xloc": [
8898 "default-mobile.handlebars->11->115",
8899 "default.handlebars->47->1859",
8900 - "default3.handlebars->35->1842",
8900 + "default3.handlebars->35->1855",
8901 "login2.handlebars->7->1"
8902 ]
8903 },
@@ -8938,11 +8938,11 @@
8938 "default.handlebars->47->728",
8939 "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1",
8940 "default.handlebars->container->dialog->dialogBody->dialog7->1->td7meshkvm",
8941 - "default3.handlebars->35->2471",
8941 "default3.handlebars->35->2484",
8943 - "default3.handlebars->35->3369",
8944 - "default3.handlebars->35->419",
8945 - "default3.handlebars->35->726",
8942 + "default3.handlebars->35->2497",
8943 + "default3.handlebars->35->3384",
8944 + "default3.handlebars->35->432",
8945 + "default3.handlebars->35->739",
8946 "default3.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1",
8947 "default3.handlebars->container->xxAddAgentModal->xxAddAgentModalConf->1->xxAddAgentBody->dialog7->1->td7meshkvm"
8948 ]
@@ -8975,8 +8975,8 @@
8975 "xloc": [
8976 "default.handlebars->47->2474",
8977 "default.handlebars->47->2487",
8978 - "default3.handlebars->35->2473",
8979 - "default3.handlebars->35->2486"
8978 + "default3.handlebars->35->2486",
8979 + "default3.handlebars->35->2499"
8980 ]
8981 },
8982 {
@@ -9040,8 +9040,8 @@
9040 "default-mobile.handlebars->11->616",
9041 "default.handlebars->47->2409",
9042 "default.handlebars->47->818",
9043 - "default3.handlebars->35->2408",
9044 - "default3.handlebars->35->816"
9043 + "default3.handlebars->35->2421",
9044 + "default3.handlebars->35->829"
9045 ]
9046 },
9047 {
@@ -9071,7 +9071,7 @@
9071 "zh-cht": "代理錯誤計數器",
9072 "xloc": [
9073 "default.handlebars->47->3347",
9074 - "default3.handlebars->35->3337"
9074 + "default3.handlebars->35->3352"
9075 ]
9076 },
9077 {
@@ -9101,7 +9101,7 @@
9101 "zh-cht": "代理 IP 地址",
9102 "xloc": [
9103 "default.handlebars->47->362",
9104 - "default3.handlebars->35->360"
9104 + "default3.handlebars->35->373"
9105 ]
9106 },
9107 {
@@ -9176,7 +9176,7 @@
9176 "xloc": [
9177 "default-mobile.handlebars->11->450",
9178 "default.handlebars->47->485",
9179 - "default3.handlebars->35->483"
9179 + "default3.handlebars->35->496"
9180 ]
9181 },
9182 {
@@ -9293,8 +9293,8 @@
9293 "xloc": [
9294 "default.handlebars->47->1121",
9295 "default.handlebars->47->2274",
9296 - "default3.handlebars->35->1119",
9297 - "default3.handlebars->35->2272"
9296 + "default3.handlebars->35->1132",
9297 + "default3.handlebars->35->2285"
9298 ]
9299 },
9300 {
@@ -9324,7 +9324,7 @@
9324 "zh-cht": "代理時段",
9325 "xloc": [
9326 "default.handlebars->47->3364",
9327 - "default3.handlebars->35->3354"
9327 + "default3.handlebars->35->3369"
9328 ]
9329 },
9330 {
@@ -9381,7 +9381,7 @@
9381 "xloc": [
9382 "default-mobile.handlebars->11->531",
9383 "default.handlebars->47->947",
9384 - "default3.handlebars->35->945"
9384 + "default3.handlebars->35->958"
9385 ]
9386 },
9387 {
@@ -9412,8 +9412,8 @@
9412 "xloc": [
9413 "default.handlebars->47->351",
9414 "default.handlebars->47->384",
9415 - "default3.handlebars->35->349",
9416 - "default3.handlebars->35->382"
9415 + "default3.handlebars->35->362",
9416 + "default3.handlebars->35->395"
9417 ]
9418 },
9419 {
@@ -9444,7 +9444,7 @@
9444 "xloc": [
9445 "default.handlebars->47->2483",
9446 "default.handlebars->container->column_l->p21->p21main->1->1->meshOsChartDiv->1",
9447 - "default3.handlebars->35->2482",
9447 + "default3.handlebars->35->2495",
9448 "default3.handlebars->container->column_l->p21->p21main->1->1->meshOsChartDiv->1"
9449 ]
9450 },
@@ -9476,8 +9476,8 @@
9476 "xloc": [
9477 "default.handlebars->47->352",
9478 "default.handlebars->47->385",
9479 - "default3.handlebars->35->350",
9480 - "default3.handlebars->35->383"
9479 + "default3.handlebars->35->363",
9480 + "default3.handlebars->35->396"
9481 ]
9482 },
9483 {
@@ -9507,7 +9507,7 @@
9507 "zh-cht": "代理關閉了與{0}%代理到服務器壓縮的會話。已發送:{1},已壓縮:{2}",
9508 "xloc": [
9509 "default.handlebars->47->2595",
9510 - "default3.handlebars->35->2594"
9510 + "default3.handlebars->35->2607"
9511 ]
9512 },
9513 {
@@ -9539,9 +9539,9 @@
9539 "default.handlebars->47->1079",
9540 "default.handlebars->47->1080",
9541 "default.handlebars->47->271",
9542 - "default3.handlebars->35->1077",
9543 - "default3.handlebars->35->1078",
9544 - "default3.handlebars->35->268"
9542 + "default3.handlebars->35->1090",
9543 + "default3.handlebars->35->1091",
9544 + "default3.handlebars->35->281"
9545 ]
9546 },
9547 {
@@ -9571,7 +9571,7 @@
9571 "zh-cht": "與有限特權相關的代理",
9572 "xloc": [
9573 "default.handlebars->47->272",
9574 - "default3.handlebars->35->269"
9574 + "default3.handlebars->35->282"
9575 ]
9576 },
9577 {
@@ -9601,7 +9601,7 @@
9601 "zh-cht": "代理已斷開連接",
9602 "xloc": [
9603 "default.handlebars->47->276",
9604 - "default3.handlebars->35->273"
9604 + "default3.handlebars->35->286"
9605 ]
9606 },
9607 {
@@ -9631,7 +9631,7 @@
9631 "zh-cht": "正在跳過代理哈希檢查,這是不安全的。",
9632 "xloc": [
9633 "default.handlebars->47->102",
9634 - "default3.handlebars->35->102"
9634 + "default3.handlebars->35->115"
9635 ]
9636 },
9637 {
@@ -9740,7 +9740,7 @@
9740 "xloc": [
9741 "default-mobile.handlebars->11->925",
9742 "default.handlebars->47->1772",
9743 - "default3.handlebars->35->1757"
9743 + "default3.handlebars->35->1770"
9744 ]
9745 },
9746 {
@@ -9771,7 +9771,7 @@
9771 "xloc": [
9772 "default-mobile.handlebars->11->924",
9773 "default.handlebars->47->1771",
9774 - "default3.handlebars->35->1756"
9774 + "default3.handlebars->35->1769"
9775 ]
9776 },
9777 {
@@ -9879,7 +9879,7 @@
9879 "zh-cht": "代理在特權降低的遠程設備上運行。",
9880 "xloc": [
9881 "default.handlebars->47->1073",
9882 - "default3.handlebars->35->1071"
9882 + "default3.handlebars->35->1084"
9883 ]
9884 },
9885 {
@@ -10015,9 +10015,9 @@
10015 "default.handlebars->47->2440",
10016 "default.handlebars->47->3392",
10017 "default.handlebars->47->588",
10018 - "default3.handlebars->35->2439",
10019 - "default3.handlebars->35->3382",
10020 - "default3.handlebars->35->586"
10018 + "default3.handlebars->35->2452",
10019 + "default3.handlebars->35->3397",
10020 + "default3.handlebars->35->599"
10021 ]
10022 },
10023 {
@@ -10048,7 +10048,7 @@
10048 "xloc": [
10049 "default-mobile.handlebars->11->116",
10050 "default.handlebars->47->1860",
10051 - "default3.handlebars->35->1843",
10051 + "default3.handlebars->35->1856",
10052 "login2.handlebars->7->2"
10053 ]
10054 },
@@ -10061,8 +10061,8 @@
10061 "xloc": [
10062 "default.handlebars->47->1205",
10063 "default.handlebars->47->781",
10064 - "default3.handlebars->35->1201",
10065 - "default3.handlebars->35->779"
10064 + "default3.handlebars->35->1214",
10065 + "default3.handlebars->35->792"
10066 ]
10067 },
10068 {
@@ -10096,7 +10096,7 @@
10096 "default-mobile.handlebars->11->720",
10097 "default.handlebars->47->3196",
10098 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar->DevFilterSelect->1",
10099 - "default3.handlebars->35->3186",
10099 + "default3.handlebars->35->3199",
10100 "default3.handlebars->container->column_l->p1->devListToolbarSpan->devListToolbar->DevFilterSelect->1",
10101 "sharing-mobile.handlebars->11->80",
10102 "sharing-mobile.handlebars->11->82"
@@ -10129,7 +10129,7 @@
10129 "zh-cht": "全部可用",
10130 "xloc": [
10131 "default.handlebars->47->2718",
10132 - "default3.handlebars->35->2717"
10132 + "default3.handlebars->35->2730"
10133 ]
10134 },
10135 {
@@ -10160,8 +10160,8 @@
10160 "xloc": [
10161 "default.handlebars->47->2441",
10162 "default.handlebars->47->589",
10163 - "default3.handlebars->35->2440",
10164 - "default3.handlebars->35->587"
10163 + "default3.handlebars->35->2453",
10164 + "default3.handlebars->35->600"
10165 ]
10166 },
10167 {
@@ -10191,7 +10191,7 @@
10191 "zh-cht": "所有顯示",
10192 "xloc": [
10193 "default.handlebars->47->1503",
10194 - "default3.handlebars->35->1490"
10194 + "default3.handlebars->35->1503"
10195 ]
10196 },
10197 {
@@ -10221,7 +10221,7 @@
10221 "zh-cht": "所有事件",
10222 "xloc": [
10223 "default.handlebars->47->2716",
10224 - "default3.handlebars->35->2715"
10224 + "default3.handlebars->35->2728"
10225 ]
10226 },
10227 {
@@ -10253,9 +10253,9 @@
10253 "default.handlebars->47->1421",
10254 "default.handlebars->47->1423",
10255 "default.handlebars->47->1424",
10256 - "default3.handlebars->35->1409",
10257 - "default3.handlebars->35->1412",
10258 - "default3.handlebars->35->1413"
10256 + "default3.handlebars->35->1422",
10257 + "default3.handlebars->35->1425",
10258 + "default3.handlebars->35->1426"
10259 ]
10260 },
10261 {
@@ -10296,7 +10296,7 @@
10296 "zh-chs": "所有主题",
10297 "zh-cht": "所有主題",
10298 "xloc": [
10299 - "default3.handlebars->35->2111"
10299 + "default3.handlebars->35->2124"
10300 ]
10301 },
10302 {
@@ -10332,7 +10332,7 @@
10332 "en": "Allow to override server device name until next connection",
10333 "xloc": [
10334 "default.handlebars->47->2346",
10335 - "default3.handlebars->35->2345"
10335 + "default3.handlebars->35->2358"
10336 ]
10337 },
10338 {
@@ -10363,8 +10363,8 @@
10363 "xloc": [
10364 "default.handlebars->47->2353",
10365 "default.handlebars->47->2938",
10366 - "default3.handlebars->35->2352",
10367 - "default3.handlebars->35->2934"
10366 + "default3.handlebars->35->2365",
10367 + "default3.handlebars->35->2947"
10368 ]
10369 },
10370 {
@@ -10394,7 +10394,7 @@
10394 "zh-cht": "允許用戶管理此裝置。",
10395 "xloc": [
10396 "default.handlebars->47->2354",
10397 - "default3.handlebars->35->2353"
10397 + "default3.handlebars->35->2366"
10398 ]
10399 },
10400 {
@@ -10424,7 +10424,7 @@
10424 "zh-cht": "允許",
10425 "xloc": [
10426 "default.handlebars->47->299",
10427 - "default3.handlebars->35->296"
10427 + "default3.handlebars->35->309"
10428 ]
10429 },
10430 {
@@ -10514,8 +10514,8 @@
10514 "default-mobile.handlebars->11->677",
10515 "default.handlebars->47->1445",
10516 "default.handlebars->47->1449",
10517 - "default3.handlebars->35->1434",
10518 - "default3.handlebars->35->1438",
10517 + "default3.handlebars->35->1447",
10518 + "default3.handlebars->35->1451",
10519 "sharing-mobile.handlebars->11->34",
10520 "sharing-mobile.handlebars->11->38"
10521 ]
@@ -10547,7 +10547,7 @@
10547 "zh-cht": "替代Shell",
10548 "xloc": [
10549 "default.handlebars->47->1411",
10550 - "default3.handlebars->35->1399"
10550 + "default3.handlebars->35->1412"
10551 ]
10552 },
10553 {
@@ -10639,7 +10639,7 @@
10639 "zh-cht": "備用(F10 = ESC + 0)",
10640 "xloc": [
10641 "default.handlebars->47->1537",
10642 - "default3.handlebars->35->1524",
10642 + "default3.handlebars->35->1537",
10643 "sharing.handlebars->11->37"
10644 ]
10645 },
@@ -10740,10 +10740,10 @@
10740 "default.handlebars->47->2897",
10741 "default.handlebars->47->3002",
10742 "default.handlebars->47->987",
10743 - "default3.handlebars->35->2211",
10744 - "default3.handlebars->35->2893",
10745 - "default3.handlebars->35->2998",
10746 - "default3.handlebars->35->985"
10743 + "default3.handlebars->35->2224",
10744 + "default3.handlebars->35->2906",
10745 + "default3.handlebars->35->3011",
10746 + "default3.handlebars->35->998"
10747 ]
10748 },
10749 {
@@ -10776,10 +10776,10 @@
10776 "default.handlebars->47->2898",
10777 "default.handlebars->47->3003",
10778 "default.handlebars->47->988",
10779 - "default3.handlebars->35->2212",
10780 - "default3.handlebars->35->2894",
10781 - "default3.handlebars->35->2999",
10782 - "default3.handlebars->35->986"
10779 + "default3.handlebars->35->2225",
10780 + "default3.handlebars->35->2907",
10781 + "default3.handlebars->35->3012",
10782 + "default3.handlebars->35->999"
10783 ]
10784 },
10785 {
@@ -10813,7 +10813,7 @@
10813 "nl": "Amazon App Store",
10814 "xloc": [
10815 "default.handlebars->47->656",
10816 - "default3.handlebars->35->654"
10816 + "default3.handlebars->35->667"
10817 ]
10818 },
10819 {
@@ -10887,7 +10887,7 @@
10887 "uk": "Сталася невідома помилка.",
10888 "xloc": [
10889 "default.handlebars->47->3141",
10890 - "default3.handlebars->35->3131"
10890 + "default3.handlebars->35->3144"
10891 ]
10892 },
10893 {
@@ -10954,7 +10954,7 @@
10954 "xloc": [
10955 "default-mobile.handlebars->11->979",
10956 "default.handlebars->47->657",
10957 - "default3.handlebars->35->655"
10957 + "default3.handlebars->35->668"
10958 ]
10959 },
10960 {
@@ -11048,7 +11048,7 @@
11048 "uk": "Android MeshAgent",
11049 "xloc": [
11050 "default.handlebars->47->594",
11051 - "default3.handlebars->35->592"
11051 + "default3.handlebars->35->605"
11052 ]
11053 },
11054 {
@@ -11059,7 +11059,7 @@
11059 "xloc": [
11060 "default-mobile.handlebars->11->806",
11061 "default.handlebars->47->1642",
11062 - "default3.handlebars->35->1629"
11062 + "default3.handlebars->35->1642"
11063 ]
11064 },
11065 {
@@ -11121,8 +11121,8 @@
11121 "xloc": [
11122 "default.handlebars->47->2476",
11123 "default.handlebars->47->2490",
11124 - "default3.handlebars->35->2475",
11125 - "default3.handlebars->35->2489"
11124 + "default3.handlebars->35->2488",
11125 + "default3.handlebars->35->2502"
11126 ]
11127 },
11128 {
@@ -11153,7 +11153,7 @@
11153 "xloc": [
11154 "default-mobile.handlebars->11->787",
11155 "default.handlebars->47->975",
11156 - "default3.handlebars->35->973"
11156 + "default3.handlebars->35->986"
11157 ]
11158 },
11159 {
@@ -11183,7 +11183,7 @@
11183 "zh-cht": "任何可支持的",
11184 "xloc": [
11185 "default.handlebars->47->562",
11186 - "default3.handlebars->35->560"
11186 + "default3.handlebars->35->573"
11187 ]
11188 },
11189 {
@@ -11274,7 +11274,7 @@
11274 "zh-cht": "蘋果macOS",
11275 "xloc": [
11276 "default.handlebars->47->604",
11277 - "default3.handlebars->35->602"
11277 + "default3.handlebars->35->615"
11278 ]
11279 },
11280 {
@@ -11284,7 +11284,7 @@
11284 "uk": "Apple macOS (Деінсталяція)",
11285 "xloc": [
11286 "default.handlebars->47->609",
11287 - "default3.handlebars->35->607"
11287 + "default3.handlebars->35->620"
11288 ]
11289 },
11290 {
@@ -11295,7 +11295,7 @@
11295 "xloc": [
11296 "agentinvite.handlebars->3->12",
11297 "default.handlebars->47->689",
11298 - "default3.handlebars->35->687"
11298 + "default3.handlebars->35->700"
11299 ]
11300 },
11301 {
@@ -11325,7 +11325,7 @@
11325 "zh-cht": "僅限Apple macOS",
11326 "xloc": [
11327 "default.handlebars->47->564",
11328 - "default3.handlebars->35->562"
11328 + "default3.handlebars->35->575"
11329 ]
11330 },
11331 {
@@ -11506,7 +11506,7 @@
11506 "zh-cht": "應用程序,始終連接",
11507 "xloc": [
11508 "default.handlebars->47->618",
11509 - "default3.handlebars->35->616"
11509 + "default3.handlebars->35->629"
11510 ]
11511 },
11512 {
@@ -11536,7 +11536,7 @@
11536 "zh-cht": "應用程序,根據用戶請求連接",
11537 "xloc": [
11538 "default.handlebars->47->617",
11539 - "default3.handlebars->35->615"
11539 + "default3.handlebars->35->628"
11540 ]
11541 },
11542 {
@@ -11567,7 +11567,7 @@
11567 "xloc": [
11568 "default-mobile.handlebars->11->118",
11569 "default.handlebars->47->1862",
11570 - "default3.handlebars->35->1845",
11570 + "default3.handlebars->35->1858",
11571 "login2.handlebars->7->4"
11572 ]
11573 },
@@ -11599,7 +11599,7 @@
11599 "xloc": [
11600 "default-mobile.handlebars->11->119",
11601 "default.handlebars->47->1863",
11602 - "default3.handlebars->35->1846",
11602 + "default3.handlebars->35->1859",
11603 "login2.handlebars->7->5"
11604 ]
11605 },
@@ -11631,7 +11631,7 @@
11631 "xloc": [
11632 "default-mobile.handlebars->11->120",
11633 "default.handlebars->47->1864",
11634 - "default3.handlebars->35->1847",
11634 + "default3.handlebars->35->1860",
11635 "login2.handlebars->7->6"
11636 ]
11637 },
@@ -11663,7 +11663,7 @@
11663 "xloc": [
11664 "default-mobile.handlebars->11->121",
11665 "default.handlebars->47->1865",
11666 - "default3.handlebars->35->1848",
11666 + "default3.handlebars->35->1861",
11667 "login2.handlebars->7->7"
11668 ]
11669 },
@@ -11695,7 +11695,7 @@
11695 "xloc": [
11696 "default-mobile.handlebars->11->122",
11697 "default.handlebars->47->1866",
11698 - "default3.handlebars->35->1849",
11698 + "default3.handlebars->35->1862",
11699 "login2.handlebars->7->8"
11700 ]
11701 },
@@ -11727,7 +11727,7 @@
11727 "xloc": [
11728 "default-mobile.handlebars->11->123",
11729 "default.handlebars->47->1867",
11730 - "default3.handlebars->35->1850",
11730 + "default3.handlebars->35->1863",
11731 "login2.handlebars->7->9"
11732 ]
11733 },
@@ -11759,7 +11759,7 @@
11759 "xloc": [
11760 "default-mobile.handlebars->11->124",
11761 "default.handlebars->47->1868",
11762 - "default3.handlebars->35->1851",
11762 + "default3.handlebars->35->1864",
11763 "login2.handlebars->7->10"
11764 ]
11765 },
@@ -11791,7 +11791,7 @@
11791 "xloc": [
11792 "default-mobile.handlebars->11->125",
11793 "default.handlebars->47->1869",
11794 - "default3.handlebars->35->1852",
11794 + "default3.handlebars->35->1865",
11795 "login2.handlebars->7->11"
11796 ]
11797 },
@@ -11823,7 +11823,7 @@
11823 "xloc": [
11824 "default-mobile.handlebars->11->126",
11825 "default.handlebars->47->1870",
11826 - "default3.handlebars->35->1853",
11826 + "default3.handlebars->35->1866",
11827 "login2.handlebars->7->12"
11828 ]
11829 },
@@ -11855,7 +11855,7 @@
11855 "xloc": [
11856 "default-mobile.handlebars->11->127",
11857 "default.handlebars->47->1871",
11858 - "default3.handlebars->35->1854",
11858 + "default3.handlebars->35->1867",
11859 "login2.handlebars->7->13"
11860 ]
11861 },
@@ -11887,7 +11887,7 @@
11887 "xloc": [
11888 "default-mobile.handlebars->11->128",
11889 "default.handlebars->47->1872",
11890 - "default3.handlebars->35->1855",
11890 + "default3.handlebars->35->1868",
11891 "login2.handlebars->7->14"
11892 ]
11893 },
@@ -11919,7 +11919,7 @@
11919 "xloc": [
11920 "default-mobile.handlebars->11->129",
11921 "default.handlebars->47->1873",
11922 - "default3.handlebars->35->1856",
11922 + "default3.handlebars->35->1869",
11923 "login2.handlebars->7->15"
11924 ]
11925 },
@@ -11951,7 +11951,7 @@
11951 "xloc": [
11952 "default-mobile.handlebars->11->117",
11953 "default.handlebars->47->1861",
11954 - "default3.handlebars->35->1844",
11954 + "default3.handlebars->35->1857",
11955 "login2.handlebars->7->3"
11956 ]
11957 },
@@ -11983,7 +11983,7 @@
11983 "xloc": [
11984 "default-mobile.handlebars->11->130",
11985 "default.handlebars->47->1874",
11986 - "default3.handlebars->35->1857",
11986 + "default3.handlebars->35->1870",
11987 "login2.handlebars->7->16"
11988 ]
11989 },
@@ -12015,7 +12015,7 @@
12015 "xloc": [
12016 "default-mobile.handlebars->11->131",
12017 "default.handlebars->47->1875",
12018 - "default3.handlebars->35->1858",
12018 + "default3.handlebars->35->1871",
12019 "login2.handlebars->7->17"
12020 ]
12021 },
@@ -12047,7 +12047,7 @@
12047 "xloc": [
12048 "default-mobile.handlebars->11->132",
12049 "default.handlebars->47->1876",
12050 - "default3.handlebars->35->1859",
12050 + "default3.handlebars->35->1872",
12051 "login2.handlebars->7->18"
12052 ]
12053 },
@@ -12079,7 +12079,7 @@
12079 "xloc": [
12080 "default-mobile.handlebars->11->133",
12081 "default.handlebars->47->1877",
12082 - "default3.handlebars->35->1860",
12082 + "default3.handlebars->35->1873",
12083 "login2.handlebars->7->19"
12084 ]
12085 },
@@ -12111,7 +12111,7 @@
12111 "xloc": [
12112 "default-mobile.handlebars->11->134",
12113 "default.handlebars->47->1878",
12114 - "default3.handlebars->35->1861",
12114 + "default3.handlebars->35->1874",
12115 "login2.handlebars->7->20"
12116 ]
12117 },
@@ -12147,9 +12147,9 @@
12147 "default.handlebars->47->1619",
12148 "default.handlebars->47->1621",
12149 "default.handlebars->47->1623",
12150 - "default3.handlebars->35->1606",
12151 - "default3.handlebars->35->1608",
12152 - "default3.handlebars->35->1610"
12150 + "default3.handlebars->35->1619",
12151 + "default3.handlebars->35->1621",
12152 + "default3.handlebars->35->1623"
12153 ]
12154 },
12155 {
@@ -12179,7 +12179,7 @@
12179 "zh-cht": "你確定要連接到{0}裝置嗎?",
12180 "xloc": [
12181 "default.handlebars->47->489",
12182 - "default3.handlebars->35->487"
12182 + "default3.handlebars->35->500"
12183 ]
12184 },
12185 {
@@ -12210,7 +12210,7 @@
12210 "xloc": [
12211 "default-mobile.handlebars->11->967",
12212 "default.handlebars->47->2318",
12213 - "default3.handlebars->35->2314"
12213 + "default3.handlebars->35->2327"
12214 ]
12215 },
12216 {
@@ -12240,7 +12240,7 @@
12240 "zh-cht": "你確定要刪除節點{0}嗎?",
12241 "xloc": [
12242 "default.handlebars->47->1337",
12243 - "default3.handlebars->35->1328"
12243 + "default3.handlebars->35->1341"
12244 ]
12245 },
12246 {
@@ -12254,7 +12254,7 @@
12254 "uk": "Ви впевнені, що бажаєте відкрити цей файл/теку на робочому столі віддаленого пристрою?",
12255 "xloc": [
12256 "default.handlebars->47->1559",
12257 - "default3.handlebars->35->1546"
12257 + "default3.handlebars->35->1559"
12258 ]
12259 },
12260 {
@@ -12284,7 +12284,7 @@
12284 "zh-cht": "你確定要卸載所選代理嗎?",
12285 "xloc": [
12286 "default.handlebars->47->1326",
12287 - "default3.handlebars->35->1318"
12287 + "default3.handlebars->35->1331"
12288 ]
12289 },
12290 {
@@ -12314,7 +12314,7 @@
12314 "zh-cht": "你確定要卸載所選的{0}代理嗎?",
12315 "xloc": [
12316 "default.handlebars->47->1325",
12317 - "default3.handlebars->35->1317"
12317 + "default3.handlebars->35->1330"
12318 ]
12319 },
12320 {
@@ -12344,7 +12344,7 @@
12344 "zh-cht": "你確定要{0}外掛嗎:{1}",
12345 "xloc": [
12346 "default.handlebars->47->3445",
12347 - "default3.handlebars->35->3435"
12347 + "default3.handlebars->35->3450"
12348 ]
12349 },
12350 {
@@ -12406,7 +12406,7 @@
12406 "xloc": [
12407 "default-mobile.handlebars->11->135",
12408 "default.handlebars->47->1879",
12409 - "default3.handlebars->35->1862",
12409 + "default3.handlebars->35->1875",
12410 "login2.handlebars->7->21"
12411 ]
12412 },
@@ -12620,7 +12620,7 @@
12620 "xloc": [
12621 "default-mobile.handlebars->11->136",
12622 "default.handlebars->47->1880",
12623 - "default3.handlebars->35->1863",
12623 + "default3.handlebars->35->1876",
12624 "login2.handlebars->7->22"
12625 ]
12626 },
@@ -12739,8 +12739,8 @@
12739 "xloc": [
12740 "default.handlebars->47->663",
12741 "default.handlebars->47->667",
12742 - "default3.handlebars->35->661",
12743 - "default3.handlebars->35->665"
12742 + "default3.handlebars->35->674",
12743 + "default3.handlebars->35->678"
12744 ]
12745 },
12746 {
@@ -12800,7 +12800,7 @@
12800 "xloc": [
12801 "default-mobile.handlebars->11->137",
12802 "default.handlebars->47->1881",
12803 - "default3.handlebars->35->1864",
12803 + "default3.handlebars->35->1877",
12804 "login2.handlebars->7->23"
12805 ]
12806 },
@@ -12831,7 +12831,7 @@
12831 "zh-cht": "嘗試激活英特爾(R)AMT ACM模式",
12832 "xloc": [
12833 "default.handlebars->47->2564",
12834 - "default3.handlebars->35->2563"
12834 + "default3.handlebars->35->2576"
12835 ]
12836 },
12837 {
@@ -12892,9 +12892,9 @@
12892 "default.handlebars->47->1512",
12893 "default.handlebars->47->1516",
12894 "default.handlebars->47->1528",
12895 - "default3.handlebars->35->1499",
12896 - "default3.handlebars->35->1503",
12897 - "default3.handlebars->35->1515",
12895 + "default3.handlebars->35->1512",
12896 + "default3.handlebars->35->1516",
12897 + "default3.handlebars->35->1528",
12898 "sharing-mobile.handlebars->11->47",
12899 "sharing-mobile.handlebars->11->56",
12900 "sharing-mobile.handlebars->11->64",
@@ -12932,7 +12932,7 @@
12932 "zh-cht": "認證軟體",
12933 "xloc": [
12934 "default.handlebars->47->3006",
12935 - "default3.handlebars->35->3002"
12935 + "default3.handlebars->35->3015"
12936 ]
12937 },
12938 {
@@ -12964,9 +12964,9 @@
12964 "default.handlebars->47->1842",
12965 "default.handlebars->47->1844",
12966 "default.handlebars->47->1848",
12967 - "default3.handlebars->35->1826",
12968 - "default3.handlebars->35->1828",
12969 - "default3.handlebars->35->1831"
12967 + "default3.handlebars->35->1839",
12968 + "default3.handlebars->35->1841",
12969 + "default3.handlebars->35->1844"
12970 ]
12971 },
12972 {
@@ -12999,8 +12999,8 @@
12999 "default-mobile.handlebars->11->712",
13000 "default.handlebars->47->1530",
13001 "default.handlebars->47->1545",
13002 - "default3.handlebars->35->1517",
13003 - "default3.handlebars->35->1532",
13002 + "default3.handlebars->35->1530",
13003 + "default3.handlebars->35->1545",
13004 "sharing-mobile.handlebars->11->57",
13005 "sharing-mobile.handlebars->11->74"
13006 ]
@@ -13039,10 +13039,10 @@
13039 "default.handlebars->47->1840",
13040 "default.handlebars->47->229",
13041 "default.handlebars->47->234",
13042 - "default3.handlebars->35->1822",
13043 - "default3.handlebars->35->1824",
13044 - "default3.handlebars->35->228",
13045 - "default3.handlebars->35->233"
13042 + "default3.handlebars->35->1835",
13043 + "default3.handlebars->35->1837",
13044 + "default3.handlebars->35->241",
13045 + "default3.handlebars->35->246"
13046 ]
13047 },
13048 {
@@ -13073,7 +13073,7 @@
13073 "xloc": [
13074 "default-mobile.handlebars->11->76",
13075 "default.handlebars->47->230",
13076 - "default3.handlebars->35->229"
13076 + "default3.handlebars->35->242"
13077 ]
13078 },
13079 {
@@ -13104,7 +13104,7 @@
13104 "xloc": [
13105 "default-mobile.handlebars->11->81",
13106 "default.handlebars->47->235",
13107 - "default3.handlebars->35->234"
13107 + "default3.handlebars->35->247"
13108 ]
13109 },
13110 {
@@ -13194,8 +13194,8 @@
13194 "xloc": [
13195 "default.handlebars->47->2196",
13196 "default.handlebars->47->2709",
13197 - "default3.handlebars->35->2194",
13198 - "default3.handlebars->35->2708"
13197 + "default3.handlebars->35->2207",
13198 + "default3.handlebars->35->2721"
13199 ]
13200 },
13201 {
@@ -13262,7 +13262,7 @@
13262 "zh-cht": "自動下載代理程序核心轉儲文件:“{0}”",
13263 "xloc": [
13264 "default.handlebars->47->2645",
13265 - "default3.handlebars->35->2644"
13265 + "default3.handlebars->35->2657"
13266 ]
13267 },
13268 {
@@ -13380,7 +13380,7 @@
13380 "zh-cht": "自動移除非活動設備",
13381 "xloc": [
13382 "default.handlebars->47->2348",
13383 - "default3.handlebars->35->2347"
13383 + "default3.handlebars->35->2360"
13384 ]
13385 },
13386 {
@@ -13410,7 +13410,7 @@
13410 "zh-cht": "可用內存",
13411 "xloc": [
13412 "default.handlebars->47->3373",
13413 - "default3.handlebars->35->3363"
13413 + "default3.handlebars->35->3378"
13414 ]
13415 },
13416 {
@@ -13441,7 +13441,7 @@
13441 "xloc": [
13442 "default-mobile.handlebars->11->138",
13443 "default.handlebars->47->1882",
13444 - "default3.handlebars->35->1865",
13444 + "default3.handlebars->35->1878",
13445 "login2.handlebars->7->24"
13446 ]
13447 },
@@ -13480,12 +13480,12 @@
13480 "default.handlebars->47->953",
13481 "default.handlebars->47->957",
13482 "default.handlebars->47->961",
13483 - "default3.handlebars->35->433",
13484 - "default3.handlebars->35->435",
13485 - "default3.handlebars->35->437",
13486 - "default3.handlebars->35->951",
13487 - "default3.handlebars->35->955",
13488 - "default3.handlebars->35->959"
13483 + "default3.handlebars->35->446",
13484 + "default3.handlebars->35->448",
13485 + "default3.handlebars->35->450",
13486 + "default3.handlebars->35->964",
13487 + "default3.handlebars->35->968",
13488 + "default3.handlebars->35->972"
13489 ]
13490 },
13491 {
@@ -13516,7 +13516,7 @@
13516 "xloc": [
13517 "default-mobile.handlebars->11->846",
13518 "default.handlebars->47->1692",
13519 - "default3.handlebars->35->1677"
13519 + "default3.handlebars->35->1690"
13520 ]
13521 },
13522 {
@@ -13656,7 +13656,7 @@
13656 "xloc": [
13657 "default-mobile.handlebars->11->654",
13658 "default.handlebars->47->1427",
13659 - "default3.handlebars->35->1416",
13659 + "default3.handlebars->35->1429",
13660 "sharing-mobile.handlebars->11->17"
13661 ]
13662 },
@@ -13688,7 +13688,7 @@
13688 "xloc": [
13689 "agentinvite.handlebars->3->8",
13690 "default.handlebars->47->613",
13691 - "default3.handlebars->35->611"
13691 + "default3.handlebars->35->624"
13692 ]
13693 },
13694 {
@@ -13721,10 +13721,10 @@
13721 "default.handlebars->47->2454",
13722 "default.handlebars->47->575",
13723 "default.handlebars->47->596",
13724 - "default3.handlebars->35->2446",
13725 - "default3.handlebars->35->2453",
13726 - "default3.handlebars->35->573",
13727 - "default3.handlebars->35->594"
13724 + "default3.handlebars->35->2459",
13725 + "default3.handlebars->35->2466",
13726 + "default3.handlebars->35->586",
13727 + "default3.handlebars->35->607"
13728 ]
13729 },
13730 {
@@ -13759,11 +13759,11 @@
13759 "default.handlebars->47->576",
13760 "default.handlebars->47->597",
13761 "default.handlebars->47->614",
13762 - "default3.handlebars->35->2447",
13763 - "default3.handlebars->35->2455",
13764 - "default3.handlebars->35->574",
13765 - "default3.handlebars->35->595",
13766 - "default3.handlebars->35->612"
13762 + "default3.handlebars->35->2460",
13763 + "default3.handlebars->35->2468",
13764 + "default3.handlebars->35->587",
13765 + "default3.handlebars->35->608",
13766 + "default3.handlebars->35->625"
13767 ]
13768 },
13769 {
@@ -13825,8 +13825,8 @@
13825 "xloc": [
13826 "default.handlebars->47->3010",
13827 "default.handlebars->47->3249",
13828 - "default3.handlebars->35->3006",
13829 - "default3.handlebars->35->3239"
13828 + "default3.handlebars->35->3019",
13829 + "default3.handlebars->35->3252"
13830 ]
13831 },
13832 {
@@ -13857,7 +13857,7 @@
13857 "xloc": [
13858 "default-mobile.handlebars->11->66",
13859 "default.handlebars->47->218",
13860 - "default3.handlebars->35->217"
13860 + "default3.handlebars->35->230"
13861 ]
13862 },
13863 {
@@ -13887,7 +13887,7 @@
13887 "zh-cht": "備份路徑不能在 meshcentral-data 文件夾中設置,備份設置被忽略。",
13888 "xloc": [
13889 "default.handlebars->47->114",
13890 - "default3.handlebars->35->114"
13890 + "default3.handlebars->35->127"
13891 ]
13892 },
13893 {
@@ -13917,7 +13917,7 @@
13917 "zh-cht": "錯誤的簽名",
13918 "xloc": [
13919 "default.handlebars->47->3354",
13920 - "default3.handlebars->35->3344"
13920 + "default3.handlebars->35->3359"
13921 ]
13922 },
13923 {
@@ -13947,7 +13947,7 @@
13947 "zh-cht": "錯誤的網絡憑證",
13948 "xloc": [
13949 "default.handlebars->47->3353",
13950 - "default3.handlebars->35->3343"
13950 + "default3.handlebars->35->3358"
13951 ]
13952 },
13953 {
@@ -13978,7 +13978,7 @@
13978 "xloc": [
13979 "default-mobile.handlebars->11->139",
13980 "default.handlebars->47->1883",
13981 - "default3.handlebars->35->1866",
13981 + "default3.handlebars->35->1879",
13982 "login2.handlebars->7->25"
13983 ]
13984 },
@@ -14009,7 +14009,7 @@
14009 "zh-cht": "批處理文件上傳",
14010 "xloc": [
14011 "default.handlebars->47->794",
14012 - "default3.handlebars->35->792"
14012 + "default3.handlebars->35->805"
14013 ]
14014 },
14015 {
@@ -14084,7 +14084,7 @@
14084 "zh-cht": "將{0}個文件批量上傳到文件夾{1}",
14085 "xloc": [
14086 "default.handlebars->47->2644",
14087 - "default3.handlebars->35->2643"
14087 + "default3.handlebars->35->2656"
14088 ]
14089 },
14090 {
@@ -14115,7 +14115,7 @@
14115 "xloc": [
14116 "default-mobile.handlebars->11->141",
14117 "default.handlebars->47->1885",
14118 - "default3.handlebars->35->1868",
14118 + "default3.handlebars->35->1881",
14119 "login2.handlebars->7->27"
14120 ]
14121 },
@@ -14147,7 +14147,7 @@
14147 "xloc": [
14148 "default-mobile.handlebars->11->142",
14149 "default.handlebars->47->1886",
14150 - "default3.handlebars->35->1869",
14150 + "default3.handlebars->35->1882",
14151 "login2.handlebars->7->28"
14152 ]
14153 },
@@ -14217,7 +14217,7 @@
14217 "xloc": [
14218 "default-mobile.handlebars->11->902",
14219 "default.handlebars->47->1748",
14220 - "default3.handlebars->35->1733"
14220 + "default3.handlebars->35->1746"
14221 ]
14222 },
14223 {
@@ -14229,7 +14229,7 @@
14229 "xloc": [
14230 "default-mobile.handlebars->11->923",
14231 "default.handlebars->47->1769",
14232 - "default3.handlebars->35->1754"
14232 + "default3.handlebars->35->1767"
14233 ]
14234 },
14235 {
@@ -14260,7 +14260,7 @@
14260 "xloc": [
14261 "default-mobile.handlebars->11->803",
14262 "default.handlebars->47->1639",
14263 - "default3.handlebars->35->1626"
14263 + "default3.handlebars->35->1639"
14264 ]
14265 },
14266 {
@@ -14291,7 +14291,7 @@
14291 "xloc": [
14292 "default-mobile.handlebars->11->143",
14293 "default.handlebars->47->1887",
14294 - "default3.handlebars->35->1870",
14294 + "default3.handlebars->35->1883",
14295 "login2.handlebars->7->29"
14296 ]
14297 },
@@ -14323,7 +14323,7 @@
14323 "xloc": [
14324 "default-mobile.handlebars->11->144",
14325 "default.handlebars->47->1888",
14326 - "default3.handlebars->35->1871",
14326 + "default3.handlebars->35->1884",
14327 "login2.handlebars->7->30"
14328 ]
14329 },
@@ -14355,7 +14355,7 @@
14355 "xloc": [
14356 "default.handlebars->47->2904",
14357 "default.handlebars->container->column_l->p4->3->1->0->3->1",
14358 - "default3.handlebars->35->2900",
14358 + "default3.handlebars->35->2913",
14359 "default3.handlebars->container->column_l->p4->3->1->0->1->3"
14360 ]
14361 },
@@ -14386,7 +14386,7 @@
14386 "zh-cht": "廣播消息",
14387 "xloc": [
14388 "default.handlebars->47->2820",
14389 - "default3.handlebars->35->2818"
14389 + "default3.handlebars->35->2831"
14390 ]
14391 },
14392 {
@@ -14416,7 +14416,7 @@
14416 "zh-cht": "向所有連接的用戶廣播消息。",
14417 "xloc": [
14418 "default.handlebars->47->2815",
14419 - "default3.handlebars->35->2813"
14419 + "default3.handlebars->35->2826"
14420 ]
14421 },
14422 {
@@ -14446,7 +14446,7 @@
14446 "zh-cht": "瀏覽器",
14447 "xloc": [
14448 "default.handlebars->47->3220",
14449 - "default3.handlebars->35->3210"
14449 + "default3.handlebars->35->3223"
14450 ]
14451 },
14452 {
@@ -14507,7 +14507,7 @@
14507 "xloc": [
14508 "default-mobile.handlebars->11->103",
14509 "default.handlebars->47->66",
14510 - "default3.handlebars->35->66"
14510 + "default3.handlebars->35->79"
14511 ]
14512 },
14513 {
@@ -14538,7 +14538,7 @@
14538 "xloc": [
14539 "default-mobile.handlebars->11->140",
14540 "default.handlebars->47->1884",
14541 - "default3.handlebars->35->1867",
14541 + "default3.handlebars->35->1880",
14542 "login2.handlebars->7->26"
14543 ]
14544 },
@@ -14570,7 +14570,7 @@
14570 "xloc": [
14571 "default-mobile.handlebars->11->145",
14572 "default.handlebars->47->1889",
14573 - "default3.handlebars->35->1872",
14573 + "default3.handlebars->35->1885",
14574 "login2.handlebars->7->31"
14575 ]
14576 },
@@ -14601,7 +14601,7 @@
14601 "zh-cht": "默認情況下,非活動設備將在 1 天后移除。",
14602 "xloc": [
14603 "default.handlebars->47->2350",
14604 - "default3.handlebars->35->2349"
14604 + "default3.handlebars->35->2362"
14605 ]
14606 },
14607 {
@@ -14631,7 +14631,7 @@
14631 "zh-cht": "默認情況下,不活動的設備將在 {0} 天后被移除。",
14632 "xloc": [
14633 "default.handlebars->47->2351",
14634 - "default3.handlebars->35->2350"
14634 + "default3.handlebars->35->2363"
14635 ]
14636 },
14637 {
@@ -14674,7 +14674,7 @@
14674 "zh-cht": "字節輸入",
14675 "xloc": [
14676 "default.handlebars->47->3216",
14677 - "default3.handlebars->35->3206"
14677 + "default3.handlebars->35->3219"
14678 ]
14679 },
14680 {
@@ -14704,7 +14704,7 @@
14704 "zh-cht": "字節輸出",
14705 "xloc": [
14706 "default.handlebars->47->3217",
14707 - "default3.handlebars->35->3207"
14707 + "default3.handlebars->35->3220"
14708 ]
14709 },
14710 {
@@ -14783,8 +14783,8 @@
14783 "default-mobile.handlebars->11->517",
14784 "default.handlebars->47->445",
14785 "default.handlebars->47->929",
14786 - "default3.handlebars->35->443",
14787 - "default3.handlebars->35->927"
14786 + "default3.handlebars->35->456",
14787 + "default3.handlebars->35->940"
14788 ]
14789 },
14790 {
@@ -14814,7 +14814,7 @@
14814 "zh-cht": "CCM模式",
14815 "xloc": [
14816 "default.handlebars->47->2301",
14817 - "default3.handlebars->35->2297"
14817 + "default3.handlebars->35->2310"
14818 ]
14819 },
14820 {
@@ -14828,9 +14828,9 @@
14828 "default.handlebars->47->1741",
14829 "default.handlebars->47->1753",
14830 "default.handlebars->47->1760",
14831 - "default3.handlebars->35->1726",
14832 - "default3.handlebars->35->1738",
14833 - "default3.handlebars->35->1745"
14831 + "default3.handlebars->35->1739",
14832 + "default3.handlebars->35->1751",
14833 + "default3.handlebars->35->1758"
14834 ]
14835 },
14836 {
@@ -14863,9 +14863,9 @@
14863 "default.handlebars->47->3380",
14864 "default.handlebars->47->423",
14865 "default.handlebars->47->730",
14866 - "default3.handlebars->35->3370",
14867 - "default3.handlebars->35->421",
14868 - "default3.handlebars->35->728"
14866 + "default3.handlebars->35->3385",
14867 + "default3.handlebars->35->434",
14868 + "default3.handlebars->35->741"
14869 ]
14870 },
14871 {
@@ -14895,7 +14895,7 @@
14895 "zh-cht": "CIRA伺服器",
14896 "xloc": [
14897 "default.handlebars->47->3429",
14898 - "default3.handlebars->35->3419"
14898 + "default3.handlebars->35->3434"
14899 ]
14900 },
14901 {
@@ -14925,7 +14925,7 @@
14925 "zh-cht": "CIRA伺服器指令",
14926 "xloc": [
14927 "default.handlebars->47->3430",
14928 - "default3.handlebars->35->3420"
14928 + "default3.handlebars->35->3435"
14929 ]
14930 },
14931 {
@@ -14955,7 +14955,7 @@
14955 "zh-cht": "當服務器處於僅 LAN 或僅 WAN 模式時,CIRA 本地 FQDN 將被忽略。",
14956 "xloc": [
14957 "default.handlebars->47->100",
14958 - "default3.handlebars->35->100"
14958 + "default3.handlebars->35->113"
14959 ]
14960 },
14961 {
@@ -14985,7 +14985,7 @@
14985 "zh-cht": "CIRA設置",
14986 "xloc": [
14987 "default.handlebars->47->2309",
14988 - "default3.handlebars->35->2304"
14988 + "default3.handlebars->35->2317"
14989 ]
14990 },
14991 {
@@ -15019,9 +15019,9 @@
15019 "default.handlebars->47->1698",
15020 "default.handlebars->47->3405",
15021 "default.handlebars->container->column_l->p40->3->1->p40type->5",
15022 - "default3.handlebars->35->1601",
15023 - "default3.handlebars->35->1683",
15024 - "default3.handlebars->35->3395",
15022 + "default3.handlebars->35->1614",
15023 + "default3.handlebars->35->1696",
15024 + "default3.handlebars->35->3410",
15025 "default3.handlebars->container->column_l->p40->3->3->p40type->5"
15026 ]
15027 },
@@ -15052,7 +15052,7 @@
15052 "zh-cht": "CPU負載",
15053 "xloc": [
15054 "default.handlebars->47->3369",
15055 - "default3.handlebars->35->3359"
15055 + "default3.handlebars->35->3374"
15056 ]
15057 },
15058 {
@@ -15082,7 +15082,7 @@
15082 "zh-cht": "最近15分鐘的CPU負載",
15083 "xloc": [
15084 "default.handlebars->47->3372",
15085 - "default3.handlebars->35->3362"
15085 + "default3.handlebars->35->3377"
15086 ]
15087 },
15088 {
@@ -15112,7 +15112,7 @@
15112 "zh-cht": "最近5分鐘的CPU負載",
15113 "xloc": [
15114 "default.handlebars->47->3371",
15115 - "default3.handlebars->35->3361"
15115 + "default3.handlebars->35->3376"
15116 ]
15117 },
15118 {
@@ -15142,7 +15142,7 @@
15142 "zh-cht": "最近一分鐘的CPU負載",
15143 "xloc": [
15144 "default.handlebars->47->3370",
15145 - "default3.handlebars->35->3360"
15145 + "default3.handlebars->35->3375"
15146 ]
15147 },
15148 {
@@ -15174,8 +15174,8 @@
15174 "default.handlebars->47->1508",
15175 "default.handlebars->47->1539",
15176 "default.handlebars->container->column_l->p12->termTable->1->1->4->1->1->terminalSettingsButtons",
15177 - "default3.handlebars->35->1495",
15178 - "default3.handlebars->35->1526",
15177 + "default3.handlebars->35->1508",
15178 + "default3.handlebars->35->1539",
15179 "default3.handlebars->container->column_l->p12->termTable->1->1->4->1->3->terminalSettingsButtons",
15180 "sharing.handlebars->11->25",
15181 "sharing.handlebars->11->39",
@@ -15209,7 +15209,7 @@
15209 "zh-cht": "CSV",
15210 "xloc": [
15211 "default.handlebars->47->2726",
15212 - "default3.handlebars->35->2725"
15212 + "default3.handlebars->35->2738"
15213 ]
15214 },
15215 {
@@ -15241,9 +15241,9 @@
15241 "default.handlebars->47->2730",
15242 "default.handlebars->47->2807",
15243 "default.handlebars->47->803",
15244 - "default3.handlebars->35->2729",
15245 - "default3.handlebars->35->2805",
15246 - "default3.handlebars->35->801"
15244 + "default3.handlebars->35->2742",
15245 + "default3.handlebars->35->2818",
15246 + "default3.handlebars->35->814"
15247 ]
15248 },
15249 {
@@ -15253,7 +15253,7 @@
15253 "uk": "Формат файлу CSV нижче:",
15254 "xloc": [
15255 "default.handlebars->47->2793",
15256 - "default3.handlebars->35->2791"
15256 + "default3.handlebars->35->2804"
15257 ]
15258 },
15259 {
@@ -15309,7 +15309,7 @@
15309 "zh-cht": "呼叫錯誤",
15310 "xloc": [
15311 "default.handlebars->47->3446",
15312 - "default3.handlebars->35->3436"
15312 + "default3.handlebars->35->3451"
15313 ]
15314 },
15315 {
@@ -15324,8 +15324,8 @@
15324 "xloc": [
15325 "default.handlebars->47->1807",
15326 "default.handlebars->47->3045",
15327 - "default3.handlebars->35->1791",
15328 - "default3.handlebars->35->3041"
15327 + "default3.handlebars->35->1804",
15328 + "default3.handlebars->35->3054"
15329 ]
15330 },
15331 {
@@ -15355,7 +15355,7 @@
15355 "zh-cht": "不能有超過 4 個 CIRA 本地 FQDN。忽略價值。",
15356 "xloc": [
15357 "default.handlebars->47->101",
15358 - "default3.handlebars->35->101"
15358 + "default3.handlebars->35->114"
15359 ]
15360 },
15361 {
@@ -15391,7 +15391,7 @@
15391 "default.handlebars->47->3435",
15392 "default.handlebars->47->548",
15393 "default.handlebars->container->dialog->idx_dlgButtonBar",
15394 - "default3.handlebars->35->546",
15394 + "default3.handlebars->35->559",
15395 "default3.handlebars->container->xxAddAgentModal->xxAddAgentModalConf->1->5->idx_dlgCancelButton",
15396 "login-mobile.handlebars->dialog->idx_dlgButtonBar",
15397 "login.handlebars->dialog->idx_dlgButtonBar",
@@ -15527,14 +15527,14 @@
15527 "default.handlebars->47->1738",
15528 "default.handlebars->47->1750",
15529 "default.handlebars->47->1757",
15530 - "default3.handlebars->35->1701",
15531 - "default3.handlebars->35->1707",
15532 - "default3.handlebars->35->1713",
15533 - "default3.handlebars->35->1718",
15530 + "default3.handlebars->35->1714",
15531 "default3.handlebars->35->1720",
15535 - "default3.handlebars->35->1723",
15536 - "default3.handlebars->35->1735",
15537 - "default3.handlebars->35->1742"
15532 + "default3.handlebars->35->1726",
15533 + "default3.handlebars->35->1731",
15534 + "default3.handlebars->35->1733",
15535 + "default3.handlebars->35->1736",
15536 + "default3.handlebars->35->1748",
15537 + "default3.handlebars->35->1755"
15538 ]
15539 },
15540 {
@@ -15569,9 +15569,9 @@
15569 "default.handlebars->47->1714",
15570 "default.handlebars->47->1720",
15571 "default.handlebars->47->1726",
15572 - "default3.handlebars->35->1699",
15573 - "default3.handlebars->35->1705",
15574 - "default3.handlebars->35->1711"
15572 + "default3.handlebars->35->1712",
15573 + "default3.handlebars->35->1718",
15574 + "default3.handlebars->35->1724"
15575 ]
15576 },
15577 {
@@ -15586,9 +15586,9 @@
15586 "default.handlebars->47->1739",
15587 "default.handlebars->47->1751",
15588 "default.handlebars->47->1758",
15589 - "default3.handlebars->35->1724",
15590 - "default3.handlebars->35->1736",
15591 - "default3.handlebars->35->1743"
15589 + "default3.handlebars->35->1737",
15590 + "default3.handlebars->35->1749",
15591 + "default3.handlebars->35->1756"
15592 ]
15593 },
15594 {
@@ -15619,7 +15619,7 @@
15619 "xloc": [
15620 "default-mobile.handlebars->11->146",
15621 "default.handlebars->47->1890",
15622 - "default3.handlebars->35->1873",
15622 + "default3.handlebars->35->1886",
15623 "login2.handlebars->7->32"
15624 ]
15625 },
@@ -15650,7 +15650,7 @@
15650 "zh-cht": "在這裡為中心顯示地圖",
15651 "xloc": [
15652 "default.handlebars->47->882",
15653 - "default3.handlebars->35->880"
15653 + "default3.handlebars->35->893"
15654 ]
15655 },
15656 {
@@ -15708,15 +15708,15 @@
15708 "default-mobile.handlebars->11->63",
15709 "default.handlebars->47->124",
15710 "default.handlebars->47->125",
15711 - "default3.handlebars->35->124",
15712 - "default3.handlebars->35->125"
15711 + "default3.handlebars->35->137",
15712 + "default3.handlebars->35->138"
15713 ]
15714 },
15715 {
15716 "en": "Cerulean",
15717 "nl": "Hemelsblauw",
15718 "xloc": [
15719 - "default3.handlebars->35->2087"
15719 + "default3.handlebars->35->2100"
15720 ]
15721 },
15722 {
@@ -15747,7 +15747,7 @@
15747 "xloc": [
15748 "default-mobile.handlebars->11->147",
15749 "default.handlebars->47->1891",
15750 - "default3.handlebars->35->1874",
15750 + "default3.handlebars->35->1887",
15751 "login2.handlebars->7->33"
15752 ]
15753 },
@@ -15809,7 +15809,7 @@
15809 "zh-cht": "更改{0}的電郵",
15810 "xloc": [
15811 "default.handlebars->47->3087",
15812 - "default3.handlebars->35->3081"
15812 + "default3.handlebars->35->3094"
15813 ]
15814 },
15815 {
@@ -15841,9 +15841,9 @@
15841 "default.handlebars->47->1045",
15842 "default.handlebars->47->1334",
15843 "default.handlebars->47->1335",
15844 - "default3.handlebars->35->1043",
15845 - "default3.handlebars->35->1326",
15846 - "default3.handlebars->35->1327"
15844 + "default3.handlebars->35->1056",
15845 + "default3.handlebars->35->1339",
15846 + "default3.handlebars->35->1340"
15847 ]
15848 },
15849 {
@@ -15890,8 +15890,8 @@
15890 "default-mobile.handlebars->11->339",
15891 "default.handlebars->47->2107",
15892 "default.handlebars->47->3031",
15893 - "default3.handlebars->35->2085",
15894 - "default3.handlebars->35->3027"
15893 + "default3.handlebars->35->2098",
15894 + "default3.handlebars->35->3040"
15895 ]
15896 },
15897 {
@@ -15921,7 +15921,7 @@
15921 "zh-cht": "更改{0}的密碼",
15922 "xloc": [
15923 "default.handlebars->47->3096",
15924 - "default3.handlebars->35->3086"
15924 + "default3.handlebars->35->3099"
15925 ]
15926 },
15927 {
@@ -15951,7 +15951,7 @@
15951 "zh-cht": "更改{0}的真實名稱",
15952 "xloc": [
15953 "default.handlebars->47->3082",
15954 - "default3.handlebars->35->3077"
15954 + "default3.handlebars->35->3090"
15955 ]
15956 },
15957 {
@@ -16129,7 +16129,7 @@
16129 "zh-cht": "更改該用戶的密碼",
16130 "xloc": [
16131 "default.handlebars->47->3030",
16132 - "default3.handlebars->35->3026"
16132 + "default3.handlebars->35->3039"
16133 ]
16134 },
16135 {
@@ -16189,7 +16189,7 @@
16189 "zh-cht": "在此處更改你的帳戶電郵地址。",
16190 "xloc": [
16191 "default.handlebars->47->2094",
16192 - "default3.handlebars->35->2078"
16192 + "default3.handlebars->35->2091"
16193 ]
16194 },
16195 {
@@ -16219,7 +16219,7 @@
16219 "zh-cht": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。",
16220 "xloc": [
16221 "default.handlebars->47->2100",
16222 - "default3.handlebars->35->2082"
16222 + "default3.handlebars->35->2095"
16223 ]
16224 },
16225 {
@@ -16249,7 +16249,7 @@
16249 "zh-cht": "帳戶憑證已更改",
16250 "xloc": [
16251 "default.handlebars->47->2616",
16252 - "default3.handlebars->35->2615"
16252 + "default3.handlebars->35->2628"
16253 ]
16254 },
16255 {
@@ -16279,7 +16279,7 @@
16279 "zh-cht": "將帳戶顯示名稱更改為 {0}。",
16280 "xloc": [
16281 "default.handlebars->47->2668",
16282 - "default3.handlebars->35->2667"
16282 + "default3.handlebars->35->2680"
16283 ]
16284 },
16285 {
@@ -16310,8 +16310,8 @@
16310 "xloc": [
16311 "default.handlebars->47->2600",
16312 "default.handlebars->47->2681",
16313 - "default3.handlebars->35->2599",
16314 - "default3.handlebars->35->2680"
16313 + "default3.handlebars->35->2612",
16314 + "default3.handlebars->35->2693"
16315 ]
16316 },
16317 {
@@ -16341,7 +16341,7 @@
16341 "zh-cht": "語言從{1}更改為{2}",
16342 "xloc": [
16343 "default.handlebars->47->2544",
16344 - "default3.handlebars->35->2543"
16344 + "default3.handlebars->35->2556"
16345 ]
16346 },
16347 {
@@ -16372,8 +16372,8 @@
16372 "xloc": [
16373 "default.handlebars->47->2602",
16374 "default.handlebars->47->2623",
16375 - "default3.handlebars->35->2601",
16376 - "default3.handlebars->35->2622"
16375 + "default3.handlebars->35->2614",
16376 + "default3.handlebars->35->2635"
16377 ]
16378 },
16379 {
@@ -16430,7 +16430,7 @@
16430 "xloc": [
16431 "default-mobile.handlebars->11->314",
16432 "default.handlebars->47->2058",
16433 - "default3.handlebars->35->2041"
16433 + "default3.handlebars->35->2054"
16434 ]
16435 },
16436 {
@@ -16465,12 +16465,12 @@
16465 "default.handlebars->47->2747",
16466 "default.handlebars->47->3026",
16467 "default.handlebars->47->3027",
16468 - "default3.handlebars->35->1032",
16469 - "default3.handlebars->35->1149",
16470 - "default3.handlebars->35->1174",
16471 - "default3.handlebars->35->2746",
16472 - "default3.handlebars->35->3022",
16473 - "default3.handlebars->35->3023"
16468 + "default3.handlebars->35->1045",
16469 + "default3.handlebars->35->1162",
16470 + "default3.handlebars->35->1187",
16471 + "default3.handlebars->35->2759",
16472 + "default3.handlebars->35->3035",
16473 + "default3.handlebars->35->3036"
16474 ]
16475 },
16476 {
@@ -16503,8 +16503,8 @@
16503 "default-mobile.handlebars->11->997",
16504 "default.handlebars->47->2382",
16505 "default.handlebars->47->2420",
16506 - "default3.handlebars->35->2381",
16507 - "default3.handlebars->35->2419"
16506 + "default3.handlebars->35->2394",
16507 + "default3.handlebars->35->2432"
16508 ]
16509 },
16510 {
@@ -16535,7 +16535,7 @@
16535 "xloc": [
16536 "default-mobile.handlebars->11->1049",
16537 "default.handlebars->47->3318",
16538 - "default3.handlebars->35->3308"
16538 + "default3.handlebars->35->3323"
16539 ]
16540 },
16541 {
@@ -16595,7 +16595,7 @@
16595 "xloc": [
16596 "default-mobile.handlebars->11->148",
16597 "default.handlebars->47->1892",
16598 - "default3.handlebars->35->1875",
16598 + "default3.handlebars->35->1888",
16599 "login2.handlebars->7->34"
16600 ]
16601 },
@@ -16626,7 +16626,7 @@
16626 "zh-cht": "檢查並單擊確定以清除錯誤日誌。",
16627 "xloc": [
16628 "default.handlebars->47->212",
16629 - "default3.handlebars->35->212"
16629 + "default3.handlebars->35->225"
16630 ]
16631 },
16632 {
@@ -16656,7 +16656,7 @@
16656 "zh-cht": "檢查並單擊確定以開始伺服器自我更新。",
16657 "xloc": [
16658 "default.handlebars->47->207",
16659 - "default3.handlebars->35->207"
16659 + "default3.handlebars->35->220"
16660 ]
16661 },
16662 {
@@ -16701,7 +16701,7 @@
16701 "uk": "Для перевірки програми обміну повідомленнями, введіть код підтвердження після отримання.",
16702 "xloc": [
16703 "default.handlebars->47->267",
16704 - "default3.handlebars->35->264"
16704 + "default3.handlebars->35->277"
16705 ]
16706 },
16707 {
@@ -16731,7 +16731,7 @@
16731 "zh-cht": "檢查你的電話並輸入驗證碼。",
16732 "xloc": [
16733 "default.handlebars->47->264",
16734 - "default3.handlebars->35->261"
16734 + "default3.handlebars->35->274"
16735 ]
16736 },
16737 {
@@ -16762,8 +16762,8 @@
16762 "xloc": [
16763 "default.handlebars->47->1858",
16764 "default.handlebars->47->3440",
16765 - "default3.handlebars->35->1841",
16766 - "default3.handlebars->35->3430"
16765 + "default3.handlebars->35->1854",
16766 + "default3.handlebars->35->3445"
16767 ]
16768 },
16769 {
@@ -16794,7 +16794,7 @@
16794 "xloc": [
16795 "default-mobile.handlebars->11->149",
16796 "default.handlebars->47->1893",
16797 - "default3.handlebars->35->1876",
16797 + "default3.handlebars->35->1889",
16798 "login2.handlebars->7->35"
16799 ]
16800 },
@@ -16826,7 +16826,7 @@
16826 "xloc": [
16827 "default-mobile.handlebars->11->150",
16828 "default.handlebars->47->1894",
16829 - "default3.handlebars->35->1877",
16829 + "default3.handlebars->35->1890",
16830 "login2.handlebars->7->36"
16831 ]
16832 },
@@ -16858,7 +16858,7 @@
16858 "xloc": [
16859 "default-mobile.handlebars->11->151",
16860 "default.handlebars->47->1895",
16861 - "default3.handlebars->35->1878",
16861 + "default3.handlebars->35->1891",
16862 "login2.handlebars->7->37"
16863 ]
16864 },
@@ -16890,7 +16890,7 @@
16890 "xloc": [
16891 "default-mobile.handlebars->11->311",
16892 "default.handlebars->47->2055",
16893 - "default3.handlebars->35->2038",
16893 + "default3.handlebars->35->2051",
16894 "login2.handlebars->7->197"
16895 ]
16896 },
@@ -16922,7 +16922,7 @@
16922 "xloc": [
16923 "default-mobile.handlebars->11->152",
16924 "default.handlebars->47->1896",
16925 - "default3.handlebars->35->1879",
16925 + "default3.handlebars->35->1892",
16926 "login2.handlebars->7->38"
16927 ]
16928 },
@@ -16954,7 +16954,7 @@
16954 "xloc": [
16955 "default-mobile.handlebars->11->153",
16956 "default.handlebars->47->1897",
16957 - "default3.handlebars->35->1880",
16957 + "default3.handlebars->35->1893",
16958 "login2.handlebars->7->39"
16959 ]
16960 },
@@ -16986,7 +16986,7 @@
16986 "xloc": [
16987 "default-mobile.handlebars->11->312",
16988 "default.handlebars->47->2056",
16989 - "default3.handlebars->35->2039",
16989 + "default3.handlebars->35->2052",
16990 "login2.handlebars->7->198"
16991 ]
16992 },
@@ -17049,7 +17049,7 @@
17049 "xloc": [
17050 "default-mobile.handlebars->11->154",
17051 "default.handlebars->47->1898",
17052 - "default3.handlebars->35->1881",
17052 + "default3.handlebars->35->1894",
17053 "login2.handlebars->7->40"
17054 ]
17055 },
@@ -17057,7 +17057,7 @@
17057 "en": "Classic",
17058 "xloc": [
17059 "default.handlebars->47->70",
17060 - "default3.handlebars->35->70"
17060 + "default3.handlebars->35->83"
17061 ]
17062 },
17063 {
@@ -17126,11 +17126,11 @@
17126 "default.handlebars->47->2538",
17127 "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7",
17128 "default.handlebars->container->column_l->p41->3->1",
17129 - "default3.handlebars->35->1574",
17130 - "default3.handlebars->35->1576",
17131 - "default3.handlebars->35->1578",
17132 - "default3.handlebars->35->1580",
17133 - "default3.handlebars->35->2537",
17129 + "default3.handlebars->35->1587",
17130 + "default3.handlebars->35->1589",
17131 + "default3.handlebars->35->1591",
17132 + "default3.handlebars->35->1593",
17133 + "default3.handlebars->35->2550",
17134 "default3.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7",
17135 "default3.handlebars->container->column_l->p41->3->3",
17136 "messenger.handlebars->xbottom->1->1->0->5",
@@ -17231,7 +17231,7 @@
17231 "zh-cht": "清除保安編碼",
17232 "xloc": [
17233 "default.handlebars->47->243",
17234 - "default3.handlebars->35->241"
17234 + "default3.handlebars->35->254"
17235 ]
17236 },
17237 {
@@ -17262,8 +17262,8 @@
17262 "xloc": [
17263 "default.handlebars->47->756",
17264 "default.handlebars->47->798",
17265 - "default3.handlebars->35->754",
17266 - "default3.handlebars->35->796"
17265 + "default3.handlebars->35->767",
17266 + "default3.handlebars->35->809"
17267 ]
17268 },
17269 {
@@ -17293,7 +17293,7 @@
17293 "zh-cht": "清除所選設備上的代理核心?",
17294 "xloc": [
17295 "default.handlebars->47->797",
17296 - "default3.handlebars->35->795"
17296 + "default3.handlebars->35->808"
17297 ]
17298 },
17299 {
@@ -17324,7 +17324,7 @@
17324 "xloc": [
17325 "default-mobile.handlebars->11->1032",
17326 "default.handlebars->47->3301",
17327 - "default3.handlebars->35->3291"
17327 + "default3.handlebars->35->3306"
17328 ]
17329 },
17330 {
@@ -17355,7 +17355,7 @@
17355 "xloc": [
17356 "default-mobile.handlebars->11->414",
17357 "default.handlebars->47->376",
17358 - "default3.handlebars->35->374"
17358 + "default3.handlebars->35->387"
17359 ]
17360 },
17361 {
@@ -17386,7 +17386,7 @@
17386 "xloc": [
17387 "default-mobile.handlebars->11->933",
17388 "default.handlebars->47->1780",
17389 - "default3.handlebars->35->1765"
17389 + "default3.handlebars->35->1778"
17390 ]
17391 },
17392 {
@@ -17417,7 +17417,7 @@
17417 "xloc": [
17418 "default-mobile.handlebars->11->79",
17419 "default.handlebars->47->233",
17420 - "default3.handlebars->35->232"
17420 + "default3.handlebars->35->245"
17421 ]
17422 },
17423 {
@@ -17448,7 +17448,7 @@
17448 "xloc": [
17449 "default-mobile.handlebars->11->1031",
17450 "default.handlebars->47->3300",
17451 - "default3.handlebars->35->3290"
17451 + "default3.handlebars->35->3305"
17452 ]
17453 },
17454 {
@@ -17566,8 +17566,8 @@
17566 "xloc": [
17567 "default.handlebars->47->2177",
17568 "default.handlebars->47->2481",
17569 - "default3.handlebars->35->2175",
17570 - "default3.handlebars->35->2480"
17569 + "default3.handlebars->35->2188",
17570 + "default3.handlebars->35->2493"
17571 ]
17572 },
17573 {
@@ -17597,7 +17597,7 @@
17597 "zh-cht": "單擊此處編輯伺服器端裝置名稱",
17598 "xloc": [
17599 "default.handlebars->47->898",
17600 - "default3.handlebars->35->896"
17600 + "default3.handlebars->35->909"
17601 ]
17602 },
17603 {
@@ -17627,7 +17627,7 @@
17627 "zh-cht": "單擊此處編輯用戶群名稱",
17628 "xloc": [
17629 "default.handlebars->47->2877",
17630 - "default3.handlebars->35->2873"
17630 + "default3.handlebars->35->2886"
17631 ]
17632 },
17633 {
@@ -17773,7 +17773,7 @@
17773 "xloc": [
17774 "default-mobile.handlebars->11->324",
17775 "default.handlebars->47->2091",
17776 - "default3.handlebars->35->2075"
17776 + "default3.handlebars->35->2088"
17777 ]
17778 },
17779 {
@@ -17890,7 +17890,7 @@
17890 "xloc": [
17891 "default-mobile.handlebars->11->830",
17892 "default.handlebars->47->1676",
17893 - "default3.handlebars->35->1661"
17893 + "default3.handlebars->35->1674"
17894 ]
17895 },
17896 {
@@ -17920,7 +17920,7 @@
17920 "zh-cht": "客戶編號",
17921 "xloc": [
17922 "default.handlebars->47->2154",
17923 - "default3.handlebars->35->2156"
17923 + "default3.handlebars->35->2169"
17924 ]
17925 },
17926 {
@@ -17950,7 +17950,7 @@
17950 "zh-cht": "客戶端啟動的遠程訪問",
17951 "xloc": [
17952 "default.handlebars->47->2308",
17953 - "default3.handlebars->35->2305"
17953 + "default3.handlebars->35->2318"
17954 ]
17955 },
17956 {
@@ -17980,7 +17980,7 @@
17980 "zh-cht": "客戶機密",
17981 "xloc": [
17982 "default.handlebars->47->2155",
17983 - "default3.handlebars->35->2157"
17983 + "default3.handlebars->35->2170"
17984 ]
17985 },
17986 {
@@ -18047,9 +18047,9 @@
18047 "default.handlebars->47->241",
18048 "default.handlebars->47->250",
18049 "default.handlebars->47->3434",
18050 - "default3.handlebars->35->1480",
18051 - "default3.handlebars->35->1549",
18052 - "default3.handlebars->35->348",
18050 + "default3.handlebars->35->1493",
18051 + "default3.handlebars->35->1562",
18052 + "default3.handlebars->35->361",
18053 "sharing.handlebars->11->52"
18054 ]
18055 },
@@ -18080,7 +18080,7 @@
18080 "zh-cht": "已關閉桌面多路復用會話 \\\"{0}\\\",{1} 秒",
18081 "xloc": [
18082 "default.handlebars->47->2688",
18083 - "default3.handlebars->35->2687"
18083 + "default3.handlebars->35->2700"
18084 ]
18085 },
18086 {
@@ -18110,7 +18110,7 @@
18110 "zh-cht": "封閉式桌面多路復用會話,{0}秒",
18111 "xloc": [
18112 "default.handlebars->47->2549",
18113 - "default3.handlebars->35->2548"
18113 + "default3.handlebars->35->2561"
18114 ]
18115 },
18116 {
@@ -18140,7 +18140,7 @@
18140 "zh-cht": "碼",
18141 "xloc": [
18142 "default.handlebars->47->333",
18143 - "default3.handlebars->35->330"
18143 + "default3.handlebars->35->343"
18144 ]
18145 },
18146 {
@@ -18263,7 +18263,7 @@
18263 "xloc": [
18264 "agentinvite.handlebars->3->17",
18265 "default.handlebars->47->694",
18266 - "default3.handlebars->35->692"
18266 + "default3.handlebars->35->705"
18267 ]
18268 },
18269 {
@@ -18293,7 +18293,7 @@
18293 "zh-cht": "命令行",
18294 "xloc": [
18295 "default.handlebars->47->134",
18296 - "default3.handlebars->35->134"
18296 + "default3.handlebars->35->147"
18297 ]
18298 },
18299 {
@@ -18326,9 +18326,9 @@
18326 "default.handlebars->47->1155",
18327 "default.handlebars->47->1180",
18328 "default.handlebars->47->2422",
18329 - "default3.handlebars->35->1151",
18330 - "default3.handlebars->35->1176",
18331 - "default3.handlebars->35->2421"
18329 + "default3.handlebars->35->1164",
18330 + "default3.handlebars->35->1189",
18331 + "default3.handlebars->35->2434"
18332 ]
18333 },
18334 {
@@ -18346,7 +18346,7 @@
18346 "xloc": [
18347 "default-mobile.handlebars->11->621",
18348 "default.handlebars->47->823",
18349 - "default3.handlebars->35->821"
18349 + "default3.handlebars->35->834"
18350 ]
18351 },
18352 {
@@ -18364,7 +18364,7 @@
18364 "xloc": [
18365 "default-mobile.handlebars->11->622",
18366 "default.handlebars->47->824",
18367 - "default3.handlebars->35->822"
18367 + "default3.handlebars->35->835"
18368 ]
18369 },
18370 {
@@ -18382,7 +18382,7 @@
18382 "xloc": [
18383 "default-mobile.handlebars->11->620",
18384 "default.handlebars->47->822",
18385 - "default3.handlebars->35->820"
18385 + "default3.handlebars->35->833"
18386 ]
18387 },
18388 {
@@ -18413,8 +18413,8 @@
18413 "xloc": [
18414 "default.handlebars->47->2912",
18415 "default.handlebars->47->3101",
18416 - "default3.handlebars->35->2908",
18417 - "default3.handlebars->35->3091"
18416 + "default3.handlebars->35->2921",
18417 + "default3.handlebars->35->3104"
18418 ]
18419 },
18420 {
@@ -18445,8 +18445,8 @@
18445 "xloc": [
18446 "default.handlebars->47->2918",
18447 "default.handlebars->47->3113",
18448 - "default3.handlebars->35->2914",
18449 - "default3.handlebars->35->3103"
18448 + "default3.handlebars->35->2927",
18449 + "default3.handlebars->35->3116"
18450 ]
18451 },
18452 {
@@ -18477,7 +18477,7 @@
18477 "xloc": [
18478 "default-mobile.handlebars->11->799",
18479 "default.handlebars->47->1635",
18480 - "default3.handlebars->35->1622"
18480 + "default3.handlebars->35->1635"
18481 ]
18482 },
18483 {
@@ -18533,7 +18533,7 @@
18533 "zh-cht": "壓縮檔案...",
18534 "xloc": [
18535 "default.handlebars->47->1550",
18536 - "default3.handlebars->35->1537",
18536 + "default3.handlebars->35->1550",
18537 "sharing.handlebars->11->47"
18538 ]
18539 },
@@ -18576,7 +18576,7 @@
18576 "uk": "Записи файлу конфігурації",
18577 "xloc": [
18578 "default.handlebars->47->3267",
18579 - "default3.handlebars->35->3257"
18579 + "default3.handlebars->35->3270"
18580 ]
18581 },
18582 {
@@ -18615,14 +18615,14 @@
18615 "default.handlebars->47->2934",
18616 "default.handlebars->47->3099",
18617 "default.handlebars->47->767",
18618 - "default3.handlebars->35->1321",
18619 - "default3.handlebars->35->1329",
18620 - "default3.handlebars->35->2315",
18621 - "default3.handlebars->35->2776",
18622 - "default3.handlebars->35->2863",
18623 - "default3.handlebars->35->2930",
18624 - "default3.handlebars->35->3089",
18625 - "default3.handlebars->35->765"
18618 + "default3.handlebars->35->1334",
18619 + "default3.handlebars->35->1342",
18620 + "default3.handlebars->35->2328",
18621 + "default3.handlebars->35->2789",
18622 + "default3.handlebars->35->2876",
18623 + "default3.handlebars->35->2943",
18624 + "default3.handlebars->35->3102",
18625 + "default3.handlebars->35->778"
18626 ]
18627 },
18628 {
@@ -18655,7 +18655,7 @@
18655 "en": "Confirm Password",
18656 "nl": "Bevestig wachtwoord",
18657 "xloc": [
18658 - "default3.handlebars->35->2824"
18658 + "default3.handlebars->35->2837"
18659 ]
18660 },
18661 {
@@ -18686,7 +18686,7 @@
18686 "xloc": [
18687 "default-mobile.handlebars->11->732",
18688 "default.handlebars->47->1582",
18689 - "default3.handlebars->35->1569",
18689 + "default3.handlebars->35->1582",
18690 "sharing-mobile.handlebars->11->93",
18691 "sharing.handlebars->11->70"
18692 ]
@@ -18718,7 +18718,7 @@
18718 "zh-cht": "確認{0}個條目的複製到此位置?",
18719 "xloc": [
18720 "default.handlebars->47->1581",
18721 - "default3.handlebars->35->1568",
18721 + "default3.handlebars->35->1581",
18722 "sharing.handlebars->11->69"
18723 ]
18724 },
@@ -18779,7 +18779,7 @@
18779 "zh-cht": "確認刪除所選帳戶?",
18780 "xloc": [
18781 "default.handlebars->47->2776",
18782 - "default3.handlebars->35->2775"
18782 + "default3.handlebars->35->2788"
18783 ]
18784 },
18785 {
@@ -18835,7 +18835,7 @@
18835 "zh-cht": "確認刪除所選用戶群?",
18836 "xloc": [
18837 "default.handlebars->47->2866",
18838 - "default3.handlebars->35->2862"
18838 + "default3.handlebars->35->2875"
18839 ]
18840 },
18841 {
@@ -18865,7 +18865,7 @@
18865 "zh-cht": "確認刪除用戶{0}?",
18866 "xloc": [
18867 "default.handlebars->47->3098",
18868 - "default3.handlebars->35->3088"
18868 + "default3.handlebars->35->3101"
18869 ]
18870 },
18871 {
@@ -18873,7 +18873,7 @@
18873 "nl": "Bevestig het uitschakelen van 2FA Duo inlogbeveiliging.",
18874 "xloc": [
18875 "default.handlebars->47->1837",
18876 - "default3.handlebars->35->1821"
18876 + "default3.handlebars->35->1834"
18877 ]
18878 },
18879 {
@@ -18881,7 +18881,7 @@
18881 "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.",
18882 "xloc": [
18883 "default.handlebars->47->1835",
18884 - "default3.handlebars->35->1819"
18884 + "default3.handlebars->35->1832"
18885 ]
18886 },
18887 {
@@ -18911,7 +18911,7 @@
18911 "zh-cht": "確認刪除用戶“ {0} ”的成員身份?",
18912 "xloc": [
18913 "default.handlebars->47->2937",
18914 - "default3.handlebars->35->2933"
18914 + "default3.handlebars->35->2946"
18915 ]
18916 },
18917 {
@@ -18941,7 +18941,7 @@
18941 "zh-cht": "確認刪除用戶群“ {0} ”的成員身份?",
18942 "xloc": [
18943 "default.handlebars->47->3130",
18944 - "default3.handlebars->35->3120"
18944 + "default3.handlebars->35->3133"
18945 ]
18946 },
18947 {
@@ -18972,7 +18972,7 @@
18972 "xloc": [
18973 "default-mobile.handlebars->11->734",
18974 "default.handlebars->47->1584",
18975 - "default3.handlebars->35->1571",
18975 + "default3.handlebars->35->1584",
18976 "sharing-mobile.handlebars->11->95",
18977 "sharing.handlebars->11->72"
18978 ]
@@ -19004,7 +19004,7 @@
19004 "zh-cht": "確認將{0}個條目移到該位置?",
19005 "xloc": [
19006 "default.handlebars->47->1583",
19007 - "default3.handlebars->35->1570",
19007 + "default3.handlebars->35->1583",
19008 "sharing.handlebars->11->71"
19009 ]
19010 },
@@ -19065,7 +19065,7 @@
19065 "zh-cht": "確認覆蓋?",
19066 "xloc": [
19067 "default.handlebars->47->2530",
19068 - "default3.handlebars->35->2529"
19068 + "default3.handlebars->35->2542"
19069 ]
19070 },
19071 {
@@ -19096,8 +19096,8 @@
19096 "xloc": [
19097 "default.handlebars->47->2927",
19098 "default.handlebars->47->3121",
19099 - "default3.handlebars->35->2923",
19100 - "default3.handlebars->35->3111"
19099 + "default3.handlebars->35->2936",
19100 + "default3.handlebars->35->3124"
19101 ]
19102 },
19103 {
@@ -19128,8 +19128,8 @@
19128 "xloc": [
19129 "default.handlebars->47->2929",
19130 "default.handlebars->47->3134",
19131 - "default3.handlebars->35->2925",
19132 - "default3.handlebars->35->3124"
19131 + "default3.handlebars->35->2938",
19132 + "default3.handlebars->35->3137"
19133 ]
19134 },
19135 {
@@ -19159,7 +19159,7 @@
19159 "zh-cht": "確認刪除用戶“ {0} ”的訪問權限?",
19160 "xloc": [
19161 "default.handlebars->47->3123",
19162 - "default3.handlebars->35->3113"
19162 + "default3.handlebars->35->3126"
19163 ]
19164 },
19165 {
@@ -19189,7 +19189,7 @@
19189 "zh-cht": "確認刪除用戶群“ {0} ”的訪問權限?",
19190 "xloc": [
19191 "default.handlebars->47->3126",
19192 - "default3.handlebars->35->3116"
19192 + "default3.handlebars->35->3129"
19193 ]
19194 },
19195 {
@@ -19220,8 +19220,8 @@
19220 "xloc": [
19221 "default.handlebars->47->3124",
19222 "default.handlebars->47->3127",
19223 - "default3.handlebars->35->3114",
19224 - "default3.handlebars->35->3117"
19223 + "default3.handlebars->35->3127",
19224 + "default3.handlebars->35->3130"
19225 ]
19226 },
19227 {
@@ -19252,7 +19252,7 @@
19252 "xloc": [
19253 "default-mobile.handlebars->11->323",
19254 "default.handlebars->47->1841",
19255 - "default3.handlebars->35->1825"
19255 + "default3.handlebars->35->1838"
19256 ]
19257 },
19258 {
@@ -19308,7 +19308,7 @@
19308 "zh-cht": "確認刪除設備共享“{0}”?",
19309 "xloc": [
19310 "default.handlebars->47->3119",
19311 - "default3.handlebars->35->3109"
19311 + "default3.handlebars->35->3122"
19312 ]
19313 },
19314 {
@@ -19390,7 +19390,7 @@
19390 "zh-cht": "確認移除推送認證設備?",
19391 "xloc": [
19392 "default.handlebars->47->1843",
19393 - "default3.handlebars->35->1827"
19393 + "default3.handlebars->35->1840"
19394 ]
19395 },
19396 {
@@ -19420,7 +19420,7 @@
19420 "zh-cht": "確認刪除用戶“ {0} ”的權限?",
19421 "xloc": [
19422 "default.handlebars->47->2434",
19423 - "default3.handlebars->35->2433"
19423 + "default3.handlebars->35->2446"
19424 ]
19425 },
19426 {
@@ -19450,7 +19450,7 @@
19450 "zh-cht": "確認刪除用戶群“ {0} ”的權限?",
19451 "xloc": [
19452 "default.handlebars->47->2436",
19453 - "default3.handlebars->35->2435"
19453 + "default3.handlebars->35->2448"
19454 ]
19455 },
19456 {
@@ -19480,7 +19480,7 @@
19480 "zh-cht": "確認刪除所選設備?",
19481 "xloc": [
19482 "default.handlebars->47->761",
19483 - "default3.handlebars->35->759"
19483 + "default3.handlebars->35->772"
19484 ]
19485 },
19486 {
@@ -19510,7 +19510,7 @@
19510 "zh-cht": "確認刪除此登錄令牌?",
19511 "xloc": [
19512 "default.handlebars->47->2147",
19513 - "default3.handlebars->35->2149"
19513 + "default3.handlebars->35->2162"
19514 ]
19515 },
19516 {
@@ -19595,7 +19595,7 @@
19595 "zh-cht": "確認刪除 {0} 個選定的設備?",
19596 "xloc": [
19597 "default.handlebars->47->762",
19598 - "default3.handlebars->35->760"
19598 + "default3.handlebars->35->773"
19599 ]
19600 },
19601 {
@@ -19626,7 +19626,7 @@
19626 "xloc": [
19627 "default-mobile.handlebars->11->379",
19628 "default.handlebars->47->2533",
19629 - "default3.handlebars->35->2532"
19629 + "default3.handlebars->35->2545"
19630 ]
19631 },
19632 {
@@ -19664,8 +19664,8 @@
19664 "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1span",
19665 "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2span",
19666 "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3",
19667 - "default3.handlebars->35->2215",
19668 - "default3.handlebars->35->989",
19667 + "default3.handlebars->35->1002",
19668 + "default3.handlebars->35->2228",
19669 "default3.handlebars->container->column_l->p11->deskarea0->deskarea1->1->connectbutton1span->connectbutton1",
19670 "default3.handlebars->container->column_l->p12->termTable->1->1->0->1->1->connectbutton2span->connectbutton2",
19671 "default3.handlebars->container->column_l->p13->p13toolbar->1->0->1->1->p13Connectspan->p13Connect",
@@ -19710,7 +19710,7 @@
19710 "xloc": [
19711 "default.handlebars->47->488",
19712 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->kvmListToolbar",
19713 - "default3.handlebars->35->486",
19713 + "default3.handlebars->35->499",
19714 "default3.handlebars->container->column_l->p1->devListToolbarSpan->kvmListToolbar"
19715 ]
19716 },
@@ -19767,7 +19767,7 @@
19767 "zh-cht": "連接到伺服器",
19768 "xloc": [
19769 "default.handlebars->47->2312",
19770 - "default3.handlebars->35->2308"
19770 + "default3.handlebars->35->2321"
19771 ]
19772 },
19773 {
@@ -20008,7 +20008,7 @@
20008 "default.handlebars->47->11",
20009 "default.handlebars->47->448",
20010 "default3.handlebars->35->11",
20011 - "default3.handlebars->35->446",
20011 + "default3.handlebars->35->459",
20012 "sharing-mobile.handlebars->11->4",
20013 "sharing.handlebars->11->4",
20014 "ssh.handlebars->3->4",
@@ -20042,7 +20042,7 @@
20042 "zh-cht": "已連接的Intel® AMT",
20043 "xloc": [
20044 "default.handlebars->47->3359",
20045 - "default3.handlebars->35->3349"
20045 + "default3.handlebars->35->3364"
20046 ]
20047 },
20048 {
@@ -20072,7 +20072,7 @@
20072 "zh-cht": "已連接的Intel® AMT CIRA",
20073 "xloc": [
20074 "default.handlebars->47->3360",
20075 - "default3.handlebars->35->3350"
20075 + "default3.handlebars->35->3365"
20076 ]
20077 },
20078 {
@@ -20102,7 +20102,7 @@
20102 "zh-cht": "已连接的用户",
20103 "xloc": [
20104 "default.handlebars->47->3365",
20105 - "default3.handlebars->35->3355"
20105 + "default3.handlebars->35->3370"
20106 ]
20107 },
20108 {
@@ -20163,7 +20163,7 @@
20163 "xloc": [
20164 "default-mobile.handlebars->11->794",
20165 "default.handlebars->47->1630",
20166 - "default3.handlebars->35->1617"
20166 + "default3.handlebars->35->1630"
20167 ]
20168 },
20169 {
@@ -20310,10 +20310,10 @@
20310 "default.handlebars->47->410",
20311 "default.handlebars->47->491",
20312 "default.handlebars->47->9",
20313 - "default3.handlebars->35->1597",
20314 - "default3.handlebars->35->405",
20315 - "default3.handlebars->35->408",
20316 - "default3.handlebars->35->489",
20313 + "default3.handlebars->35->1610",
20314 + "default3.handlebars->35->418",
20315 + "default3.handlebars->35->421",
20316 + "default3.handlebars->35->502",
20317 "default3.handlebars->35->9",
20318 "sharing-mobile.handlebars->11->111",
20319 "sharing-mobile.handlebars->11->2",
@@ -20376,7 +20376,7 @@
20376 "zh-cht": "連接數量",
20377 "xloc": [
20378 "default.handlebars->47->3391",
20379 - "default3.handlebars->35->3381"
20379 + "default3.handlebars->35->3396"
20380 ]
20381 },
20382 {
@@ -20414,8 +20414,8 @@
20414 "default-mobile.handlebars->11->713",
20415 "default.handlebars->47->1529",
20416 "default.handlebars->47->1546",
20417 - "default3.handlebars->35->1516",
20418 - "default3.handlebars->35->1533",
20417 + "default3.handlebars->35->1529",
20418 + "default3.handlebars->35->1546",
20419 "login2.handlebars->7->232",
20420 "sharing-mobile.handlebars->11->75"
20421 ]
@@ -20447,7 +20447,7 @@
20447 "zh-cht": "連接轉發器",
20448 "xloc": [
20449 "default.handlebars->47->3428",
20450 - "default3.handlebars->35->3418"
20450 + "default3.handlebars->35->3433"
20451 ]
20452 },
20453 {
@@ -20540,9 +20540,9 @@
20540 "default.handlebars->47->2488",
20541 "default.handlebars->47->395",
20542 "default.handlebars->container->column_l->p21->p21main->1->1->meshConnChartDiv->1",
20543 - "default3.handlebars->35->1006",
20544 - "default3.handlebars->35->2487",
20545 - "default3.handlebars->35->393",
20543 + "default3.handlebars->35->1019",
20544 + "default3.handlebars->35->2500",
20545 + "default3.handlebars->35->406",
20546 "default3.handlebars->container->column_l->p21->p21main->1->1->meshConnChartDiv->1"
20547 ]
20548 },
@@ -20573,7 +20573,7 @@
20573 "zh-cht": "同意",
20574 "xloc": [
20575 "default.handlebars->47->2708",
20576 - "default3.handlebars->35->2707"
20576 + "default3.handlebars->35->2720"
20577 ]
20578 },
20579 {
@@ -20608,8 +20608,8 @@
20608 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevConsole",
20609 "default.handlebars->container->topbar->1->1->ServerSubMenuSpan->ServerSubMenu->1->0->ServerConsole",
20610 "default.handlebars->contextMenu->cxconsole",
20611 - "default3.handlebars->35->1144",
20612 - "default3.handlebars->35->1169",
20611 + "default3.handlebars->35->1157",
20612 + "default3.handlebars->35->1182",
20613 "default3.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevConsole",
20614 "default3.handlebars->container->topbar->1->1->ServerSubMenuSpan->ServerSubMenu->1->0->ServerConsole",
20615 "default3.handlebars->contextMenu->cxconsole"
@@ -20642,7 +20642,7 @@
20642 "zh-cht": "控制台 -",
20643 "xloc": [
20644 "default.handlebars->47->899",
20645 - "default3.handlebars->35->897"
20645 + "default3.handlebars->35->910"
20646 ]
20647 },
20648 {
@@ -20673,8 +20673,8 @@
20673 "xloc": [
20674 "default.handlebars->47->1147",
20675 "default.handlebars->47->1172",
20676 - "default3.handlebars->35->1143",
20677 - "default3.handlebars->35->1168",
20676 + "default3.handlebars->35->1156",
20677 + "default3.handlebars->35->1181",
20678 "messenger.handlebars->remoteImage->3->2"
20679 ]
20680 },
@@ -20735,7 +20735,7 @@
20735 "zh-cht": "Cookie編碼器",
20736 "xloc": [
20737 "default.handlebars->47->3411",
20738 - "default3.handlebars->35->3401"
20738 + "default3.handlebars->35->3416"
20739 ]
20740 },
20741 {
@@ -20769,7 +20769,7 @@
20769 "default.handlebars->47->640",
20770 "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
20771 "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
20772 - "default3.handlebars->35->638",
20772 + "default3.handlebars->35->651",
20773 "default3.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
20774 "default3.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
20775 "sharing-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->3",
@@ -20805,9 +20805,9 @@
20805 "default.handlebars->47->172",
20806 "default.handlebars->47->180",
20807 "default.handlebars->47->183",
20808 - "default3.handlebars->35->172",
20809 - "default3.handlebars->35->180",
20810 - "default3.handlebars->35->183"
20808 + "default3.handlebars->35->185",
20809 + "default3.handlebars->35->193",
20810 + "default3.handlebars->35->196"
20811 ]
20812 },
20813 {
@@ -20819,7 +20819,7 @@
20819 "uk": "Скопіюйте секретний ключ до буфера обміну",
20820 "xloc": [
20821 "default.handlebars->47->227",
20822 - "default3.handlebars->35->226"
20822 + "default3.handlebars->35->239"
20823 ]
20824 },
20825 {
@@ -20851,9 +20851,9 @@
20851 "default.handlebars->47->660",
20852 "default.handlebars->47->664",
20853 "default.handlebars->47->668",
20854 - "default3.handlebars->35->658",
20855 - "default3.handlebars->35->662",
20856 - "default3.handlebars->35->666"
20854 + "default3.handlebars->35->671",
20855 + "default3.handlebars->35->675",
20856 + "default3.handlebars->35->679"
20857 ]
20858 },
20859 {
@@ -20919,8 +20919,8 @@
20919 "xloc": [
20920 "default.handlebars->47->634",
20921 "default.handlebars->47->681",
20922 - "default3.handlebars->35->632",
20923 - "default3.handlebars->35->679"
20922 + "default3.handlebars->35->645",
20923 + "default3.handlebars->35->692"
20924 ]
20925 },
20926 {
@@ -20934,8 +20934,8 @@
20934 "xloc": [
20935 "default.handlebars->47->626",
20936 "default.handlebars->47->673",
20937 - "default3.handlebars->35->624",
20938 - "default3.handlebars->35->671"
20937 + "default3.handlebars->35->637",
20938 + "default3.handlebars->35->684"
20939 ]
20940 },
20941 {
@@ -20949,8 +20949,8 @@
20949 "xloc": [
20950 "default.handlebars->47->630",
20951 "default.handlebars->47->677",
20952 - "default3.handlebars->35->628",
20953 - "default3.handlebars->35->675"
20952 + "default3.handlebars->35->641",
20953 + "default3.handlebars->35->688"
20954 ]
20955 },
20956 {
@@ -20991,18 +20991,18 @@
20991 "default.handlebars->47->192",
20992 "default.handlebars->47->194",
20993 "default.handlebars->47->196",
20994 - "default3.handlebars->35->161",
20995 - "default3.handlebars->35->163",
20996 - "default3.handlebars->35->165",
20994 "default3.handlebars->35->174",
20995 "default3.handlebars->35->176",
20996 "default3.handlebars->35->178",
21000 - "default3.handlebars->35->186",
21001 - "default3.handlebars->35->188",
21002 - "default3.handlebars->35->190",
21003 - "default3.handlebars->35->192",
21004 - "default3.handlebars->35->194",
21005 - "default3.handlebars->35->196"
20997 + "default3.handlebars->35->187",
20998 + "default3.handlebars->35->189",
20999 + "default3.handlebars->35->191",
21000 + "default3.handlebars->35->199",
21001 + "default3.handlebars->35->201",
21002 + "default3.handlebars->35->203",
21003 + "default3.handlebars->35->205",
21004 + "default3.handlebars->35->207",
21005 + "default3.handlebars->35->209"
21006 ]
21007 },
21008 {
@@ -21035,8 +21035,8 @@
21035 "agentinvite.handlebars->3->18",
21036 "default.handlebars->47->693",
21037 "default.handlebars->47->695",
21038 - "default3.handlebars->35->691",
21039 - "default3.handlebars->35->693"
21038 + "default3.handlebars->35->704",
21039 + "default3.handlebars->35->706"
21040 ]
21041 },
21042 {
@@ -21071,12 +21071,12 @@
21071 "default.handlebars->47->347",
21072 "default.handlebars->47->349",
21073 "default.handlebars->47->599",
21074 - "default3.handlebars->35->2498",
21075 - "default3.handlebars->35->2517",
21076 - "default3.handlebars->35->322",
21077 - "default3.handlebars->35->344",
21078 - "default3.handlebars->35->346",
21079 - "default3.handlebars->35->597"
21074 + "default3.handlebars->35->2511",
21075 + "default3.handlebars->35->2530",
21076 + "default3.handlebars->35->335",
21077 + "default3.handlebars->35->357",
21078 + "default3.handlebars->35->359",
21079 + "default3.handlebars->35->610"
21080 ]
21081 },
21082 {
@@ -21109,10 +21109,10 @@
21109 "default.handlebars->47->649",
21110 "default.handlebars->47->653",
21111 "default.handlebars->47->687",
21112 - "default3.handlebars->35->643",
21113 - "default3.handlebars->35->647",
21114 - "default3.handlebars->35->651",
21115 - "default3.handlebars->35->685"
21112 + "default3.handlebars->35->656",
21113 + "default3.handlebars->35->660",
21114 + "default3.handlebars->35->664",
21115 + "default3.handlebars->35->698"
21116 ]
21117 },
21118 {
@@ -21142,7 +21142,7 @@
21142 "zh-cht": "將名稱複製到剪貼板",
21143 "xloc": [
21144 "default.handlebars->47->170",
21145 - "default3.handlebars->35->170"
21145 + "default3.handlebars->35->183"
21146 ]
21147 },
21148 {
@@ -21175,8 +21175,8 @@
21175 "agentinvite.handlebars->container->column_l->5->linuxtab",
21176 "default.handlebars->47->639",
21177 "default.handlebars->47->683",
21178 - "default3.handlebars->35->637",
21179 - "default3.handlebars->35->681"
21178 + "default3.handlebars->35->650",
21179 + "default3.handlebars->35->694"
21180 ]
21181 },
21182 {
@@ -21206,7 +21206,7 @@
21206 "zh-cht": "將有效代碼複製到剪貼板",
21207 "xloc": [
21208 "default.handlebars->47->244",
21209 - "default3.handlebars->35->242"
21209 + "default3.handlebars->35->255"
21210 ]
21211 },
21212 {
@@ -21236,7 +21236,7 @@
21236 "zh-cht": "複製:“{0}”到“{1}”",
21237 "xloc": [
21238 "default.handlebars->47->2592",
21239 - "default3.handlebars->35->2591"
21239 + "default3.handlebars->35->2604"
21240 ]
21241 },
21242 {
@@ -21446,7 +21446,7 @@
21446 "zh-cht": "核心伺服器",
21447 "xloc": [
21448 "default.handlebars->47->3410",
21449 - "default3.handlebars->35->3400"
21449 + "default3.handlebars->35->3415"
21450 ]
21451 },
21452 {
@@ -21477,7 +21477,7 @@
21477 "xloc": [
21478 "default-mobile.handlebars->11->155",
21479 "default.handlebars->47->1899",
21480 - "default3.handlebars->35->1882",
21480 + "default3.handlebars->35->1895",
21481 "login2.handlebars->7->41"
21482 ]
21483 },
@@ -21485,7 +21485,7 @@
21485 "en": "Cosmo",
21486 "nl": "Cosmo",
21487 "xloc": [
21488 - "default3.handlebars->35->2088"
21488 + "default3.handlebars->35->2101"
21489 ]
21490 },
21491 {
@@ -21541,7 +21541,7 @@
21541 "zh-cht": "創建帳號",
21542 "xloc": [
21543 "default.handlebars->47->2834",
21544 - "default3.handlebars->35->2832",
21544 + "default3.handlebars->35->2845",
21545 "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->16->1->1",
21546 "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->16->1->1",
21547 "login2.handlebars->centralTable->1->0->logincell->createpanel->createpanelform->9->1->16->1->1"
@@ -21630,7 +21630,7 @@
21630 "xloc": [
21631 "default.handlebars->47->2084",
21632 "default.handlebars->47->350",
21633 - "default3.handlebars->35->2068"
21633 + "default3.handlebars->35->2081"
21634 ]
21635 },
21636 {
@@ -21660,7 +21660,7 @@
21660 "zh-cht": "創建用戶群",
21661 "xloc": [
21662 "default.handlebars->47->2874",
21663 - "default3.handlebars->35->2870"
21663 + "default3.handlebars->35->2883"
21664 ]
21665 },
21666 {
@@ -21690,7 +21690,7 @@
21690 "zh-cht": "創建鏈結以與訪客共享此裝置",
21691 "xloc": [
21692 "default.handlebars->47->1037",
21693 - "default3.handlebars->35->1035"
21693 + "default3.handlebars->35->1048"
21694 ]
21695 },
21696 {
@@ -21720,7 +21720,7 @@
21720 "zh-cht": "使用以下選項創建一個新的裝置群。",
21721 "xloc": [
21722 "default.handlebars->47->2114",
21723 - "default3.handlebars->35->2116"
21723 + "default3.handlebars->35->2129"
21724 ]
21725 },
21726 {
@@ -21750,7 +21750,7 @@
21750 "zh-cht": "創建一個新的裝置群。",
21751 "xloc": [
21752 "default.handlebars->47->400",
21753 - "default3.handlebars->35->398"
21753 + "default3.handlebars->35->411"
21754 ]
21755 },
21756 {
@@ -21780,7 +21780,7 @@
21780 "zh-cht": "創建一個臨時用戶名和密碼,可用作您帳戶的替代登錄名。這對於允許工具或其他服務訪問您的帳戶很有用。",
21781 "xloc": [
21782 "default.handlebars->47->2064",
21783 - "default3.handlebars->35->2047"
21783 + "default3.handlebars->35->2060"
21784 ]
21785 },
21786 {
@@ -21810,7 +21810,7 @@
21810 "zh-cht": "創建文件夾(如果不存在)?",
21811 "xloc": [
21812 "default.handlebars->47->792",
21813 - "default3.handlebars->35->790"
21813 + "default3.handlebars->35->803"
21814 ]
21815 },
21816 {
@@ -21840,7 +21840,7 @@
21840 "zh-cht": "創建文件夾:“{0}”",
21841 "xloc": [
21842 "default.handlebars->47->2585",
21843 - "default3.handlebars->35->2584"
21843 + "default3.handlebars->35->2597"
21844 ]
21845 },
21846 {
@@ -21886,7 +21886,7 @@
21886 "uk": "Створіть кілька пристроїв Intel® AMT одночасно, імпортувавши файл JSON у такому форматі:",
21887 "xloc": [
21888 "default.handlebars->47->526",
21889 - "default3.handlebars->35->524"
21889 + "default3.handlebars->35->537"
21890 ]
21891 },
21892 {
@@ -21923,7 +21923,7 @@
21923 "uk": "Створіть кілька акаунтів одночасно, імпортувавши файл JSON або CSV",
21924 "xloc": [
21925 "default.handlebars->47->2791",
21926 - "default3.handlebars->35->2789"
21926 + "default3.handlebars->35->2802"
21927 ]
21928 },
21929 {
@@ -21984,7 +21984,7 @@
21984 "zh-cht": "創建的設備組:{0}",
21985 "xloc": [
21986 "default.handlebars->47->2596",
21987 - "default3.handlebars->35->2595"
21987 + "default3.handlebars->35->2608"
21988 ]
21989 },
21990 {
@@ -22014,7 +22014,7 @@
22014 "zh-cht": "創建一個鏈接,該鏈接允許沒有帳戶的訪客在有限的時間內遠程控制此設備。",
22015 "xloc": [
22016 "default.handlebars->47->1216",
22017 - "default3.handlebars->35->1212"
22017 + "default3.handlebars->35->1225"
22018 ]
22019 },
22020 {
@@ -22096,7 +22096,7 @@
22096 "zh-cht": "創建",
22097 "xloc": [
22098 "default.handlebars->47->2982",
22099 - "default3.handlebars->35->2978"
22099 + "default3.handlebars->35->2991"
22100 ]
22101 },
22102 {
@@ -22126,7 +22126,7 @@
22126 "zh-cht": "創作時間",
22127 "xloc": [
22128 "default.handlebars->47->2195",
22129 - "default3.handlebars->35->2193"
22129 + "default3.handlebars->35->2206"
22130 ]
22131 },
22132 {
@@ -22188,8 +22188,8 @@
22188 "xloc": [
22189 "default.handlebars->47->2193",
22190 "default.handlebars->47->2194",
22191 - "default3.handlebars->35->2191",
22192 - "default3.handlebars->35->2192"
22191 + "default3.handlebars->35->2204",
22192 + "default3.handlebars->35->2205"
22193 ]
22194 },
22195 {
@@ -22222,9 +22222,9 @@
22222 "default.handlebars->47->1020",
22223 "default.handlebars->47->1404",
22224 "default.handlebars->47->2152",
22225 - "default3.handlebars->35->1018",
22226 - "default3.handlebars->35->1392",
22227 - "default3.handlebars->35->2154"
22225 + "default3.handlebars->35->1031",
22226 + "default3.handlebars->35->1405",
22227 + "default3.handlebars->35->2167"
22228 ]
22229 },
22230 {
@@ -22255,7 +22255,7 @@
22255 "xloc": [
22256 "default-mobile.handlebars->11->156",
22257 "default.handlebars->47->1900",
22258 - "default3.handlebars->35->1883",
22258 + "default3.handlebars->35->1896",
22259 "login2.handlebars->7->42"
22260 ]
22261 },
@@ -22287,7 +22287,7 @@
22287 "xloc": [
22288 "default-mobile.handlebars->11->157",
22289 "default.handlebars->47->1901",
22290 - "default3.handlebars->35->1884",
22290 + "default3.handlebars->35->1897",
22291 "login2.handlebars->7->43"
22292 ]
22293 },
@@ -22386,9 +22386,9 @@
22386 "default.handlebars->47->1446",
22387 "default.handlebars->47->1450",
22388 "default.handlebars->47->64",
22389 - "default3.handlebars->35->1435",
22390 - "default3.handlebars->35->1439",
22391 - "default3.handlebars->35->64",
22389 + "default3.handlebars->35->1448",
22390 + "default3.handlebars->35->1452",
22391 + "default3.handlebars->35->77",
22392 "sharing-mobile.handlebars->11->35",
22393 "sharing-mobile.handlebars->11->39",
22394 "sharing.handlebars->11->24"
@@ -22568,7 +22568,7 @@
22568 "zh-cht": "當前版本",
22569 "xloc": [
22570 "default.handlebars->47->201",
22571 - "default3.handlebars->35->201"
22571 + "default3.handlebars->35->214"
22572 ]
22573 },
22574 {
@@ -22599,7 +22599,7 @@
22599 "xloc": [
22600 "default-mobile.handlebars->11->1059",
22601 "default.handlebars->47->3328",
22602 - "default3.handlebars->35->3318"
22602 + "default3.handlebars->35->3333"
22603 ]
22604 },
22605 {
@@ -22704,7 +22704,7 @@
22704 "en": "Cyborg",
22705 "nl": "Cyborg",
22706 "xloc": [
22707 - "default3.handlebars->35->2089"
22707 + "default3.handlebars->35->2102"
22708 ]
22709 },
22710 {
@@ -22735,7 +22735,7 @@
22735 "xloc": [
22736 "default-mobile.handlebars->11->158",
22737 "default.handlebars->47->1902",
22738 - "default3.handlebars->35->1885",
22738 + "default3.handlebars->35->1898",
22739 "login2.handlebars->7->44"
22740 ]
22741 },
@@ -22749,7 +22749,7 @@
22749 "xloc": [
22750 "default-mobile.handlebars->11->820",
22751 "default.handlebars->47->1666",
22752 - "default3.handlebars->35->1653"
22752 + "default3.handlebars->35->1666"
22753 ]
22754 },
22755 {
@@ -22779,7 +22779,7 @@
22779 "zh-cht": "DNS suffix",
22780 "xloc": [
22781 "default.handlebars->47->169",
22782 - "default3.handlebars->35->169"
22782 + "default3.handlebars->35->182"
22783 ]
22784 },
22785 {
@@ -22809,7 +22809,7 @@
22809 "zh-cht": "日常的",
22810 "xloc": [
22811 "default.handlebars->47->308",
22812 - "default3.handlebars->35->305"
22812 + "default3.handlebars->35->318"
22813 ]
22814 },
22815 {
@@ -22840,7 +22840,7 @@
22840 "xloc": [
22841 "default-mobile.handlebars->11->159",
22842 "default.handlebars->47->1903",
22843 - "default3.handlebars->35->1886",
22843 + "default3.handlebars->35->1899",
22844 "login2.handlebars->7->45"
22845 ]
22846 },
@@ -22872,14 +22872,14 @@
22872 "xloc": [
22873 "default-mobile.handlebars->11->105",
22874 "default.handlebars->47->68",
22875 - "default3.handlebars->35->68"
22875 + "default3.handlebars->35->81"
22876 ]
22877 },
22878 {
22879 "en": "Darkly",
22880 "nl": "Donker",
22881 "xloc": [
22882 - "default3.handlebars->35->2090"
22882 + "default3.handlebars->35->2103"
22883 ]
22884 },
22885 {
@@ -22909,7 +22909,7 @@
22909 "zh-cht": "數據通道",
22910 "xloc": [
22911 "default.handlebars->47->1402",
22912 - "default3.handlebars->35->1390",
22912 + "default3.handlebars->35->1403",
22913 "sharing.handlebars->11->11"
22914 ]
22915 },
@@ -22926,7 +22926,7 @@
22926 "uk": "Записи Бази Даних",
22927 "xloc": [
22928 "default.handlebars->47->3187",
22929 - "default3.handlebars->35->3177"
22929 + "default3.handlebars->35->3190"
22930 ]
22931 },
22932 {
@@ -22957,7 +22957,7 @@
22957 "xloc": [
22958 "default-mobile.handlebars->11->317",
22959 "default.handlebars->47->2061",
22960 - "default3.handlebars->35->2044"
22960 + "default3.handlebars->35->2057"
22961 ]
22962 },
22963 {
@@ -22990,9 +22990,9 @@
22990 "default.handlebars->47->1313",
22991 "default.handlebars->47->3191",
22992 "default.handlebars->47->3194",
22993 - "default3.handlebars->35->1305",
22994 - "default3.handlebars->35->3181",
22995 - "default3.handlebars->35->3184"
22993 + "default3.handlebars->35->1318",
22994 + "default3.handlebars->35->3194",
22995 + "default3.handlebars->35->3197"
22996 ]
22997 },
22998 {
@@ -23023,8 +23023,8 @@
23023 "xloc": [
23024 "default.handlebars->47->2227",
23025 "default.handlebars->47->2291",
23026 - "default3.handlebars->35->2225",
23027 - "default3.handlebars->35->2287"
23026 + "default3.handlebars->35->2238",
23027 + "default3.handlebars->35->2300"
23028 ]
23029 },
23030 {
@@ -23054,7 +23054,7 @@
23054 "zh-cht": "如果設置停用CCM",
23055 "xloc": [
23056 "default.handlebars->47->2303",
23057 - "default3.handlebars->35->2299"
23057 + "default3.handlebars->35->2312"
23058 ]
23059 },
23060 {
@@ -23111,7 +23111,7 @@
23111 "xloc": [
23112 "default-mobile.handlebars->11->462",
23113 "default.handlebars->47->706",
23114 - "default3.handlebars->35->704"
23114 + "default3.handlebars->35->717"
23115 ]
23116 },
23117 {
@@ -23144,11 +23144,11 @@
23144 "default.handlebars->47->2870",
23145 "default.handlebars->47->2881",
23146 "default.handlebars->47->2955",
23147 - "default3.handlebars->35->2086",
23148 - "default3.handlebars->35->2819",
23149 - "default3.handlebars->35->2866",
23150 - "default3.handlebars->35->2877",
23151 - "default3.handlebars->35->2951"
23147 + "default3.handlebars->35->2099",
23148 + "default3.handlebars->35->2832",
23149 + "default3.handlebars->35->2879",
23150 + "default3.handlebars->35->2890",
23151 + "default3.handlebars->35->2964"
23152 ]
23153 },
23154 {
@@ -23179,7 +23179,7 @@
23179 "xloc": [
23180 "default-mobile.handlebars->11->661",
23181 "default.handlebars->47->1434",
23182 - "default3.handlebars->35->1423",
23182 + "default3.handlebars->35->1436",
23183 "sharing-mobile.handlebars->11->23"
23184 ]
23185 },
@@ -23221,9 +23221,9 @@
23221 "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
23222 "default.handlebars->container->dialog->idx_dlgButtonBar->5",
23223 "default.handlebars->filesContextMenu->5",
23224 - "default3.handlebars->35->1559",
23225 - "default3.handlebars->35->2524",
23226 - "default3.handlebars->35->867",
23224 + "default3.handlebars->35->1572",
23225 + "default3.handlebars->35->2537",
23226 + "default3.handlebars->35->880",
23227 "default3.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
23228 "default3.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
23229 "default3.handlebars->container->xxAddAgentModal->xxAddAgentModalConf->1->5->idx_dlgDeleteButton",
@@ -23267,7 +23267,7 @@
23267 "xloc": [
23268 "default-mobile.handlebars->11->333",
23269 "default.handlebars->47->2099",
23270 - "default3.handlebars->35->2081"
23270 + "default3.handlebars->35->2094"
23271 ]
23272 },
23273 {
@@ -23327,7 +23327,7 @@
23327 "xloc": [
23328 "default-mobile.handlebars->11->560",
23329 "default.handlebars->47->1047",
23330 - "default3.handlebars->35->1045"
23330 + "default3.handlebars->35->1058"
23331 ]
23332 },
23333 {
@@ -23357,7 +23357,7 @@
23357 "zh-cht": "刪除設備",
23358 "xloc": [
23359 "default.handlebars->47->768",
23360 - "default3.handlebars->35->766"
23360 + "default3.handlebars->35->779"
23361 ]
23362 },
23363 {
@@ -23390,8 +23390,8 @@
23390 "default-mobile.handlebars->11->969",
23391 "default.handlebars->47->2279",
23392 "default.handlebars->47->2320",
23393 - "default3.handlebars->35->2277",
23394 - "default3.handlebars->35->2316"
23393 + "default3.handlebars->35->2290",
23394 + "default3.handlebars->35->2329"
23395 ]
23396 },
23397 {
@@ -23422,7 +23422,7 @@
23422 "xloc": [
23423 "default-mobile.handlebars->11->632",
23424 "default.handlebars->47->1339",
23425 - "default3.handlebars->35->1330"
23425 + "default3.handlebars->35->1343"
23426 ]
23427 },
23428 {
@@ -23478,7 +23478,7 @@
23478 "zh-cht": "刪除用戶",
23479 "xloc": [
23480 "default.handlebars->47->3029",
23481 - "default3.handlebars->35->3025"
23481 + "default3.handlebars->35->3038"
23482 ]
23483 },
23484 {
@@ -23509,8 +23509,8 @@
23509 "xloc": [
23510 "default.handlebars->47->2923",
23511 "default.handlebars->47->2935",

This file is too large to show in full.

views/default3.handlebars
+244 -97
@@ -145,14 +145,21 @@
145 <div class="title" onclick="go(1,event)">{{{title1}}}</div>
146 <div class="title2">{{{title2}}}</div>
147 <div style="float:right">
148 - <div id=notificationCount onclick="clickNotificationIcon()" class="unselectable" style="display: none;"
149 - title="Click to view current notifications">0</div>
148 + <div id="notificationCount"
149 + class="position-relative"
150 + title="Click to view current notifications"
151 + onclick="clickNotificationIcon()"
152 + style="display: none;">
153 + <i class="fa-solid fa-bell fa-lg text-white"></i>
154 + <span id="notificationBadge"
155 + class="position-absolute top-1 start-100 translate-middle badge rounded-pill bg-danger"
156 + style="font-size: 0.65rem;">
157 + 0
158 + </span>
159 + </div>
160 </div>
161 <p id="logoutControl"><span id=logoutControlSpan class="logoncontrolspan"></span><span id=idleTimeoutNotify
162 style="color:yellow"></span></p>
153 - <img id="topMenuIcon" class=noselect
154 - style="position:absolute;right:0;top:10px;color:#c8c8c8;font-size:44px;margin-right:8px;cursor:pointer;display:none"
155 - onclick=topMenu() src="/images/3bars-30.png" width=30 height=30 />
163 <div class=textnewui id=textnewui onmouseup=toggleBootstrapUIMode() onkeypress="if (event.key=='Enter') { toggleBootstrapUIMode(); }">
164 <b>Try the new MeshCentral UI</b>
165 </div>
@@ -172,55 +179,6 @@
179 <div>
180 <div style="position:relative">
181 <span id=logoutControlSpan2></span>
175 - <div tabindex=0 id=uiMenuButton title="User interface selection" onclick="showUserInterfaceSelectMenu()" onkeypress="if (event.key == 'Enter') showUserInterfaceSelectMenu()">
176 - &diams;
177 - <div id=uiMenu style="display:none">
178 - <table>
179 - <tr>
180 - <td>
181 - <div tabindex=0 id=uiViewButton1 class=uiSelector
182 - onclick=userInterfaceSelectMenu(1) title="Left bar interface"
183 - onkeypress="if (event.key == 'Enter') userInterfaceSelectMenu(1)">
184 - <div class="uiSelector1"></div>
185 - </div>
186 - <div tabindex=0 id=uiViewButton2 class=uiSelector
187 - onclick=userInterfaceSelectMenu(2) title="Top bar interface"
188 - onkeypress="if (event.key == 'Enter') userInterfaceSelectMenu(2)">
189 - <div class="uiSelector2"></div>
190 - </div>
191 - <div tabindex=0 id=uiViewButton3 class=uiSelector
192 - onclick=userInterfaceSelectMenu(3) title="Fixed width interface"
193 - onkeypress="if (event.key == 'Enter') userInterfaceSelectMenu(3)">
194 - <div class="uiSelector3"></div>
195 - </div>
196 - <div tabindex=0 id=uiViewButton7 class=uiSelector
197 - onclick=toggleBootstrapUIMode() title="Toggle Modern UI"
198 - onkeypress="if (event.key == 'Enter') toggleBootstrapUIMode()">
199 - <div class="uiSelector7"></div>
200 - </div>
201 - </td>
202 - <td>
203 - <div tabindex=0 id=uiViewButton6 class=uiSelector onclick="showNotes(false)"
204 - title="Personal Notes"
205 - onkeypress="if (event.key == 'Enter') showNotes(false)">
206 - <div class="uiSelector6"></div>
207 - </div>
208 - <div tabindex=0 id=uiViewButton4 class=uiSelector onclick=toggleNightMode()
209 - title="Toggle night mode"
210 - onkeypress="if (event.key == 'Enter') toggleNightMode()">
211 - <div class="uiSelector4"></div>
212 - </div>
213 - <div tabindex=0 id=uiViewButton5 class=uiSelector onclick=toggleFooterBarMode()
214 - title="Toggle footer bar"
215 - onkeypress="if (event.key == 'Enter') toggleFooterBarMode()">
216 - <div class="uiSelector5"></div>
217 - </div>
218 - <div class=uiSelector_end>&nbsp;</div>
219 - </td>
220 - </tr>
221 - </table>
222 - </div>
223 - </div>
182 <table id=MainMenuSpan cellpadding=0 cellspacing=0 class=style1>
183 <tr>
184 <td tabindex=0 id=MainMenuMyDevices class="topbar_td style3x" onmouseup=go(1,event)
@@ -332,13 +290,6 @@
290 </tr>
291 </table>
292 </div>
335 - <div id=UserDummyMenuSpan>
336 - <table id=UserDummyMenu cellpadding=0 cellspacing=0 class=style1>
337 - <tr>
338 - <td class=style3 style="">&nbsp;</td>
339 - </tr>
340 - </table>
341 - </div>
293 </div>
294 </div>
295 </div>
@@ -1975,17 +1926,6 @@
1926 class="btn btn-outline-success" /><input type=submit id=p13loginSubmit2 style="display:none"
1927 class="btn btn-outline-success" /></form>
1928
1978 - <div id=topMenu style="z-index:1000;background-color:#ffffff;box-shadow:0px 0px 15px #666;font-family:Arial,Helvetica,sans-serif;border-radius:0px 0px 5px 5px;position:fixed;top:50px;right:5px;width:170px;display:none">
1979 - <div style="padding:12px;border-top:1px solid gray;color:black;cursor:pointer" onclick=topMenu(1)>My Devices</div>
1980 - <div style="padding:12px;border-top:1px solid gray;color:black;cursor:pointer" onclick=topMenu(2)>My Account</div>
1981 - <div style="padding:12px;border-top:1px solid gray;color:black;cursor:pointer" onclick=topMenu(3)>My Events</div>
1982 - <div style="padding:12px;border-top:1px solid gray;color:black;cursor:pointer" onclick=topMenu(5)>My Files</div>
1983 - <div style="padding:12px;border-top:1px solid gray;color:black;cursor:pointer" onclick=topMenu(4)>My Users</div>
1984 - <div style="padding:12px;border-top:1px solid gray;color:black;cursor:pointer" onclick=topMenu(6)>My Server</div>
1985 - <div id="logoutMenuOption">
1986 - <a id="logoutMenuOptionRef" href=/logout><div style="padding:12px;border-top:1px solid gray;color:black;cursor:pointer">Logout</div></a>
1987 - </div>
1988 - </div>
1929
1930 <audio id="chimes"><source src="sounds/chimes.mp3" type="audio/mp3" /></audio>
1931 <iframe style=display:none name="fileDownloadFrame"></iframe>
@@ -2180,11 +2120,108 @@
2120 // Setup logout control
2121 var logoutControl = '';
2122 if (logoutControls) {
2183 - if (logoutControls.name != null) { logoutControl = ('<span onmouseup=go(2) CLASS="LogoffLinkColor" style="cursor:pointer">' + format("Welcome {0}.", logoutControls.name) + '</span>'); }
2184 - if (logoutControls.logoutUrl != null) { logoutControl += format(' <a href="' + logoutControls.logoutUrl + '" CLASS="LogoffLinkColor">' + "Logout" + '</a>'); }
2123 + if (logoutControls.name != null) {
2124 + var userImageSrc = 'images/user-256.png';
2125 + if (userinfo && userinfo.flags && (userinfo.flags & 1)) {
2126 + if (userinfo.accountImageRnd == null) { userinfo.accountImageRnd = Math.floor(Math.random() * 9999999999); }
2127 + userImageSrc = 'userimage.ashx?rnd=' + userinfo.accountImageRnd;
2128 + }
2129 +
2130 + logoutControl = '<div id="userDropdown">' +
2131 + '<div id="userDropdownButton">' +
2132 + '<img id="userDropdownImage" src="' + userImageSrc + '" />' +
2133 + '<span id="userDropdownName" class="LogoffLinkColor">' + logoutControls.name + '</span>' +
2134 + '<i class="fa fa-chevron-down LogoffLinkColor" style="font-size: 12px;"></i>' +
2135 + '</div>' +
2136 + '<div id="userDropdownMenu">' +
2137 + '<div id="userDropdownMenuContainer">' +
2138 +
2139 + '<div class="userDropdownMenuItem userDropdownMobileOnly" onclick="goForward(\'devices\'); QV(\'userDropdownMenu\', false); QV(\'uiSubmenu\', false); resetChevronArrow(); document.removeEventListener(\'click\', closeUISubmenu);">' +
2140 + '<i class="fa fa-desktop userDropdownMenuIcon"></i>' +
2141 + '<span>' + "My Devices" + '</span>' +
2142 + '</div>' +
2143 +
2144 + '<div class="userDropdownMenuItem userDropdownMobileOnly" onclick="goForward(\'events\'); QV(\'userDropdownMenu\', false); QV(\'uiSubmenu\', false); resetChevronArrow(); document.removeEventListener(\'click\', closeUISubmenu);">' +
2145 + '<i class="fa fa-calendar userDropdownMenuIcon"></i>' +
2146 + '<span>' + "My Events" + '</span>' +
2147 + '</div>' +
2148 +
2149 + '<div class="userDropdownMenuItem userDropdownMobileOnly" onclick="goForward(\'users\'); QV(\'userDropdownMenu\', false); QV(\'uiSubmenu\', false); resetChevronArrow(); document.removeEventListener(\'click\', closeUISubmenu);">' +
2150 + '<i class="fa fa-users userDropdownMenuIcon"></i>' +
2151 + '<span>' + "My Users" + '</span>' +
2152 + '</div>' +
2153 +
2154 + '<div class="userDropdownMenuItem userDropdownMobileOnly" onclick="goForward(\'files\'); QV(\'userDropdownMenu\', false); QV(\'uiSubmenu\', false); resetChevronArrow(); document.removeEventListener(\'click\', closeUISubmenu);">' +
2155 + '<i class="fa fa-folder userDropdownMenuIcon"></i>' +
2156 + '<span>' + "My Files" + '</span>' +
2157 + '</div>' +
2158 +
2159 + '<div class="userDropdownMenuItem userDropdownMobileOnly" onclick="goForward(\'server\'); QV(\'userDropdownMenu\', false); QV(\'uiSubmenu\', false); resetChevronArrow(); document.removeEventListener(\'click\', closeUISubmenu);">' +
2160 + '<i class="fa fa-server userDropdownMenuIcon"></i>' +
2161 + '<span>' + "My Server" + '</span>' +
2162 + '</div>' +
2163 +
2164 + '<div id="userDropdownMenuDivider" class="userDropdownMobileOnly"></div>' +
2165 +
2166 + '<div class="userDropdownMenuItem userDropdownUISettings" onclick="toggleUISubmenu(event);">' +
2167 + '<i class="fa fa-sliders userDropdownMenuIcon"></i>' +
2168 + '<span>' + "UI Settings" + '</span>' +
2169 + '<i class="fa fa-chevron-right userDropdownMenuIcon" style="margin-left: auto; margin-right: 0; transition: transform 0.3s ease;"></i>' +
2170 + '</div>' +
2171 +
2172 + '<div id="uiSubmenu" class="userDropdownSubmenu" style="display:none;" onclick="event.stopPropagation();">' +
2173 + '<div class="userDropdownMenuItem" onclick="toggleBootstrapUIMode(); QV(\'userDropdownMenu\', false); QV(\'uiSubmenu\', false); resetChevronArrow(); document.removeEventListener(\'click\', closeUISubmenu);">' +
2174 + '<i class="fa fa-toggle-on userDropdownMenuIcon"></i>' +
2175 + '<span>' + "Toggle Modern UI" + '</span>' +
2176 + '</div>' +
2177 + '<div class="userDropdownMenuItem" onclick="userInterfaceSelectMenu(1); QV(\'userDropdownMenu\', false); QV(\'uiSubmenu\', false); resetChevronArrow(); document.removeEventListener(\'click\', closeUISubmenu);">' +
2178 + '<i class="fa fa-window-maximize fa-rotate-270 userDropdownMenuIcon"></i>' +
2179 + '<span>' + "Left Bar Interface" + '</span>' +
2180 + '</div>' +
2181 + '<div class="userDropdownMenuItem" onclick="userInterfaceSelectMenu(2); QV(\'userDropdownMenu\', false); QV(\'uiSubmenu\', false); resetChevronArrow(); document.removeEventListener(\'click\', closeUISubmenu);">' +
2182 + '<i class="fa fa-window-maximize userDropdownMenuIcon"></i>' +
2183 + '<span>' + "Top Bar Interface" + '</span>' +
2184 + '</div>' +
2185 + '<div class="userDropdownMenuItem" onclick="userInterfaceSelectMenu(3); QV(\'userDropdownMenu\', false); QV(\'uiSubmenu\', false); resetChevronArrow(); document.removeEventListener(\'click\', closeUISubmenu);">' +
2186 + '<i class="fa fa-columns userDropdownMenuIcon"></i>' +
2187 + '<span>' + "Fixed Width Interface" + '</span>' +
2188 + '</div>' +
2189 + '<div class="userDropdownMenuItem" onclick="toggleFooterBarMode(); QV(\'userDropdownMenu\', false); QV(\'uiSubmenu\', false); resetChevronArrow(); document.removeEventListener(\'click\', closeUISubmenu);">' +
2190 + '<i class="fa fa-window-minimize userDropdownMenuIcon"></i>' +
2191 + '<span>' + "Toggle Footer Bar" + '</span>' +
2192 + '</div>' +
2193 + '</div>' +
2194 +
2195 + '<div class="userDropdownMenuItem" onclick="toggleNightMode(); QV(\'userDropdownMenu\', false); QV(\'uiSubmenu\', false); resetChevronArrow(); document.removeEventListener(\'click\', closeUISubmenu);">' +
2196 + '<i class="fa ' + (document.body.classList.contains('night') ? 'fa-sun' : 'fa-moon') + ' userDropdownMenuIcon"></i>' +
2197 + '<span>' + "Toggle night mode" + '</span>' +
2198 + '</div>' +
2199 +
2200 + '<div class="userDropdownMenuItem" onclick="showNotes(false); QV(\'userDropdownMenu\', false); QV(\'uiSubmenu\', false); resetChevronArrow(); document.removeEventListener(\'click\', closeUISubmenu);">' +
2201 + '<i class="fa fa-sticky-note userDropdownMenuIcon"></i>' +
2202 + '<span>' + "Personal Notes" + '</span>' +
2203 + '</div>' +
2204 +
2205 + '<div class="userDropdownMenuItem" onclick="go(2); QV(\'userDropdownMenu\', false); QV(\'uiSubmenu\', false); resetChevronArrow(); document.removeEventListener(\'click\', closeUISubmenu);">' +
2206 + '<i class="fa fa-user userDropdownMenuIcon"></i>' +
2207 + '<span>' + "My Account" + '</span>' +
2208 + '</div>' +
2209 +
2210 + '<div id="userDropdownMenuDivider"></div>';
2211 +
2212 + if (logoutControls.logoutUrl != null) {
2213 + logoutControl += '<div class="userDropdownMenuItem" onclick="QV(\'uiSubmenu\', false); resetChevronArrow(); document.removeEventListener(\'click\', closeUISubmenu); window.location.href=\'' + logoutControls.logoutUrl + '\'">' +
2214 + '<i class="fa fa-sign-out userDropdownMenuIcon"></i>' +
2215 + '<span>' + "Logout" + '</span>' +
2216 + '</div>';
2217 + }
2218 +
2219 + logoutControl += '</div></div></div>';
2220 + }
2221 }
2222 if (args.hide & 1) { QH('logoutControlSpan2', logoutControl); } else { QH('logoutControlSpan', logoutControl); }
2187 - if (logoutControls && logoutControls.logoutUrl) { Q('logoutMenuOptionRef').href = logoutControls.logoutUrl; }
2223 +
2224 + setTimeout(updateUserDropdown, 100);
2225
2226 // Setup the context menu
2227 document.onclick = function (e) { hideContextMenu(); }
@@ -2612,6 +2649,94 @@
2649 if (footerBar) { Q('uiViewButton5').classList.add('uiSelectorSel'); }
2650 }
2651
2652 + // Toggle user dropdown menu
2653 + function toggleUserDropdown() {
2654 + if (xxdialogMode) return;
2655 + var userDropdownMenu = Q('userDropdownMenu');
2656 + if (userDropdownMenu) {
2657 + var isVisible = (userDropdownMenu.style.display == 'none' || userDropdownMenu.style.display == '');
2658 + if (isVisible) {
2659 + userDropdownMenu.style.display = 'block';
2660 + QV('uiMenu', false);
2661 + QV('topMenu', false);
2662 + updateNightModeIcon();
2663 + } else {
2664 + userDropdownMenu.style.display = 'none';
2665 + var uiSubmenu = Q('uiSubmenu');
2666 + if (uiSubmenu) {
2667 + uiSubmenu.style.display = 'none';
2668 + }
2669 + resetChevronArrow();
2670 + }
2671 + }
2672 + }
2673 + function updateUserDropdown() {
2674 + if (logoutControls && logoutControls.name) {
2675 + var userImageSrc = 'images/user-256.png';
2676 + if (userinfo && userinfo.flags && (userinfo.flags & 1)) {
2677 + if (userinfo.accountImageRnd == null) { userinfo.accountImageRnd = Math.floor(Math.random() * 9999999999); }
2678 + userImageSrc = 'userimage.ashx?rnd=' + userinfo.accountImageRnd;
2679 + }
2680 +
2681 + var userImage = Q('userDropdownImage');
2682 + if (userImage) {
2683 + userImage.src = userImageSrc;
2684 + }
2685 +
2686 + var userDropdownButton = Q('userDropdownButton');
2687 + if (userDropdownButton) {
2688 + userDropdownButton.onclick = function(e) {
2689 + e.preventDefault();
2690 + e.stopPropagation();
2691 + toggleUserDropdown();
2692 + return false;
2693 + };
2694 + }
2695 +
2696 + var userDropdownMenu = Q('userDropdownMenu');
2697 + if (userDropdownMenu) {
2698 + userDropdownMenu.style.display = 'none';
2699 + }
2700 + }
2701 + }
2702 +
2703 + function toggleUISubmenu(event) {
2704 + if (event) {
2705 + event.stopPropagation();
2706 + }
2707 + var uiSubmenu = Q('uiSubmenu');
2708 + if (uiSubmenu) {
2709 + var isVisible = (uiSubmenu.style.display == 'block');
2710 + uiSubmenu.style.display = isVisible ? 'none' : 'block';
2711 +
2712 + var chevronIcon = document.querySelector('.userDropdownMenuItem[onclick*="toggleUISubmenu"] .fa-chevron-right');
2713 + if (chevronIcon) {
2714 + if (isVisible) {
2715 + chevronIcon.style.transform = 'rotate(0deg)';
2716 + } else {
2717 + chevronIcon.style.transform = 'rotate(90deg)';
2718 + }
2719 + }
2720 + if (!isVisible) {
2721 + setTimeout(function() {
2722 + document.addEventListener('click', closeUISubmenu);
2723 + }, 10);
2724 + }
2725 + }
2726 + }
2727 +
2728 + function closeUISubmenu(event) {
2729 + var uiSubmenu = Q('uiSubmenu');
2730 + var userDropdown = Q('userDropdown');
2731 + if (uiSubmenu && userDropdown) {
2732 + if (!uiSubmenu.contains(event.target) && !userDropdown.contains(event.target)) {
2733 + uiSubmenu.style.display = 'none';
2734 + resetChevronArrow();
2735 + document.removeEventListener('click', closeUISubmenu);
2736 + }
2737 + }
2738 + }
2739 +
2740 function userInterfaceSelectMenu(s) {
2741 if (s) { uiMode = s; putstore('uiMode', uiMode); }
2742 webPageFullScreen = (uiMode < 3);
@@ -2681,7 +2806,6 @@
2806 QC('body').remove('fullscreen');
2807 QC('body').remove('arg_hide');
2808 if (xxcurrentView >= 10) QC('column_l').add('room4submenu');
2684 - QV('UserDummyMenuSpan', false);
2809 leftBar.classList.add('d-none');
2810 //QV('page_leftbar', false);
2811 } else {
@@ -2690,7 +2814,6 @@
2814 QV('page_leftbar', !(args.hide & 16));
2815 QV('MainMenuSpan', !(args.hide & 16));
2816 if (xxcurrentView >= 10) QC('column_l').remove('room4submenu');
2693 - QV('UserDummyMenuSpan', (xxcurrentView < 10) && webPageFullScreen);
2817 leftBar.classList.remove('d-none');
2818 }
2819 mainUpdate(512);
@@ -2843,6 +2966,7 @@
2966
2967 // If we are site administrator, register to get server statistics
2968 if ((siteRights & 21) != 0) { meshserver.send({ action: 'serverstats', interval: 10000 }); }
2969 + updateUserDropdown();
2970 }
2971
2972 // To boost the speed of the web page when even floods occur, this method perform a delayed update on the web page.
@@ -3109,6 +3233,7 @@
3233 userinfo = message.userinfo;
3234 updateSiteAdmin();
3235 updateSelf();
3236 + updateUserDropdown();
3237 break;
3238 }
3239 case 'users': {
@@ -4638,22 +4763,6 @@
4763 // MY DEVICES
4764 //
4765
4641 - function topMenu(select) {
4642 - if ((xxdialogMode != null) && (xxdialogMode != 0) && (xxdialogMode != 999)) return;
4643 - if (select === undefined) {
4644 - var x = (QS('topMenu').display == 'none');
4645 - if (x == true) { if ((xxdialogMode == 0) || (xxdialogMode == null)) { QV('topMenu', true); xxdialogMode = 999; } } else { QV('topMenu', false); xxdialogMode = 0; }
4646 - } else {
4647 - QV('topMenu', false);
4648 - xxdialogMode = 0;
4649 - if ((select == 1)) { goForward('devices'); }
4650 - if ((select == 2)) { goForward('account'); }
4651 - if ((select == 3)) { goForward('events'); }
4652 - if ((select == 4)) { goForward('users'); }
4653 - if ((select == 5)) { goForward('files'); }
4654 - if ((select == 6)) { goForward('server'); }
4655 - }
4656 - }
4766
4767 function onRealNameCheckBox() {
4768 showRealNames = Q('RealNameCheckBox').checked;
@@ -7587,6 +7696,7 @@
7696 QV('filesContextMenu', false);
7697 QV('deskPlayerContextMenu', false);
7698 QV('deskKeyShortcutContextMenu', false);
7699 + QV('userDropdownMenu', false);
7700 QV('deskPreConfigShortcutContextMenu', false);
7701 QV('deskPreConfigScriptContextMenu', false);
7702 QV('expandAllContextMenu', false);
@@ -19384,12 +19494,50 @@
19494
19495 // Set the notification count on the upper right of the screen
19496 function setNotificationCount(c) {
19387 - if (parseInt(Q('notificationCount').innerHTML) == c) return; // If the count did not change, exit now.
19388 - QH('notificationCount', c);
19389 - QS('notificationCount')['background-color'] = (c == 0) ? 'lightblue' : 'orange';
19497 + var badge = Q('notificationBadge');
19498 + if (parseInt(badge.innerHTML) === c) return;
19499 + badge.innerHTML = c;
19500 QV('notificationCount', c > 0);
19501 }
19502
19503 + // Close notification box when clicking outside
19504 + function setupNotificationClickOutside() {
19505 + document.addEventListener('click', function(event) {
19506 + var notificationBox = Q('notifiyBox');
19507 + var notificationIcon = Q('notificationCount');
19508 + if (notificationBox && QS('notifiyBox')['display'] !== 'none') {
19509 + if (!notificationBox.contains(event.target) && !notificationIcon.contains(event.target)) {
19510 + QV('notifiyBox', false);
19511 + }
19512 + }
19513 + });
19514 + }
19515 + setupNotificationClickOutside();
19516 +
19517 + // Update night mode icon and text in dropdown menu
19518 + function updateNightModeIcon() {
19519 + var nightModeItem = document.querySelector('.userDropdownMenuItem[onclick*="toggleNightMode"]');
19520 + if (nightModeItem) {
19521 + var icon = nightModeItem.querySelector('.userDropdownMenuIcon');
19522 + var textSpan = nightModeItem.querySelector('span');
19523 + if (icon && textSpan) {
19524 + var isNightMode = document.body.classList.contains('night');
19525 + var iconClass = isNightMode ? 'fa-sun' : 'fa-moon';
19526 + var text = isNightMode ? "Toggle Light Mode" : "Toggle Dark Mode";
19527 + var newIcon = document.createElement('i');
19528 + newIcon.className = 'fa ' + iconClass + ' userDropdownMenuIcon';
19529 + icon.parentNode.replaceChild(newIcon, icon);
19530 + textSpan.textContent = text;
19531 + }
19532 + }
19533 + }
19534 + function resetChevronArrow() {
19535 + var chevronIcon = document.querySelector('.userDropdownMenuItem[onclick*="toggleUISubmenu"] .fa-chevron-right');
19536 + if (chevronIcon) {
19537 + chevronIcon.style.transform = 'rotate(0deg)';
19538 + }
19539 + }
19540 +
19541 // Refresh the notification box
19542 function drawNotifications() {
19543 var notifySettings = getstore('notifications', 0);
@@ -20266,7 +20414,6 @@
20414 if ((x == 0) && (webPageFullScreen)) { QC('body').add('arg_hide'); }
20415
20416 QV('MainSubMenuSpan', (x >= 10) && (x < 20));
20269 - QV('UserDummyMenuSpan', (x == 51) || ((x < 10) && (x != 6) && webPageFullScreen));
20417 QV('MeshSubMenuSpan', (x >= 20) && (x < 30));
20418 QV('UserSubMenuSpan', (x >= 30) && (x < 40));
20419 QV('ServerSubMenuSpan', x == 6 || x == 115 || x == 40 || x == 41 || x == 42 || x == 43);