Refactor: Rebuilt Masthead User Dropdown for Cleaner Structure and Modern Behavior (#7398)

* Update default3.handlebars * Update default3.handlebars * Update style-bootstrap.css * Update translate.json * Improve user dropdown menu visibility and control Refactored user dropdown menu items in default3.handlebars to add unique IDs and a new 'mobile-menu-item' class for better visibility control. Added logic to conditionally show/hide menu items based on UI mode and feature flags, including forced Modern UI and night mode. Updated CSS to remove unnecessary border styling. updated webserver.js to set a feature flag when Modern UI is forced. * Adjust desktop breakpoint and submenu animation logic Changed desktop breakpoint from 1025px to 769px in both CSS and JS to better align with responsive design. Submenu animation now respects the user's reduced motion preference, disabling transitions when 'prefers-reduced-motion' is enabled. * Improve masthead layout and text overflow handling * Refine mobile menu item visibility logic Updated the logic for showing/hiding mobile menu items based on uiMode. Now, only menu items without 'users-menu-item', 'files-menu-item', or 'server-menu-item' classes are shown when uiMode is not 2 or 3. * Update style-bootstrap.css * Comment out toggleModernUIMenuItem line Comment out the toggleModernUIMenuItem visibility check. * Update translate.json

TheDevRyan committed Nov 17, 2025 at 11:46 UTC 53f108fe7b698b2973190e83e4c3792c59dfe48c
4 files changed +3952 -3610
public/styles/style-bootstrap.css
+242 -62
@@ -92,7 +92,7 @@ body {
92 grid-gap: 0px;
93 grid-template-areas: "header header" "sidebar nav" "sidebar content" "sidebar footer";
94 -ms-grid-columns: 90px 1fr;
95 - grid-template-columns: 90px auto;
95 + grid-template-columns: 70px auto;
96 -ms-grid-rows: 66px 24px 1fr 45px;
97 grid-template-rows: 66px 24px auto 45px;
98 }
@@ -128,20 +128,52 @@ body {
128 }
129
130 #masthead {
131 + display: flex;
132 + justify-content: space-between;
133 + align-items: center;
134 width: auto;
135 margin: 0;
133 - padding: 0;
134 - overflow: hidden;
135 - text-align: right;
136 + padding: 0 1rem;
137 background-color: #036;
138 background-image: url(../logo.png);
138 - background-position-x: 0px;
139 - background-position-y: 0px;
140 - background-attachment: initial;
139 + background-position: 0 0;
140 background-repeat: no-repeat;
142 - /*width: 960px;*/
141 height: 66px;
142 }
143 +.masthead-container {
144 + display: flex;
145 + justify-content: space-between;
146 + align-items: center;
147 + padding: 0.5rem 1rem;
148 + width: 100%;
149 +}
150 +.idle-timeout-notify {
151 + color: yellow;
152 +}
153 +.masthead-left {
154 + display: flex;
155 + align-items: center;
156 + gap: 1rem;
157 + flex: 1 1 auto;
158 + min-width: 0;
159 + overflow: hidden;
160 +}
161 +
162 +.masthead-right {
163 + display: flex;
164 + align-items: center;
165 + gap: 1.5rem;
166 + flex: 0 0 auto;
167 +}
168 +
169 +.notification-icon {
170 + cursor: pointer;
171 +}
172 +
173 +.user-menu-container {
174 + display: flex;
175 + align-items: center;
176 +}
177
178 .fullscreen #masthead {
179 width: 100%;
@@ -163,41 +195,164 @@ body {
195 display: none;
196 }
197
198 +.masthead-left {
199 + display: flex;
200 + align-items: center;
201 + gap: 1rem;
202 + flex: 1 1 auto;
203 + min-width: 0;
204 + overflow: hidden;
205 +}
206 +
207 +.masthead-title {
208 + display: flex;
209 + align-items: center;
210 + flex-shrink: 0;
211 +}
212 +
213 +.masthead-titles-container {
214 + display: flex;
215 + align-items: center;
216 + gap: 0.5rem;
217 + flex: 1 1 auto;
218 + min-width: 0;
219 + overflow: hidden;
220 +}
221 +
222 #masthead .title {
167 - float: left;
168 - height: 66px;
223 color: #c8c8c8;
170 - padding-left: 14px;
224 font-size: 46px;
225 font-family: Arial,Helvetica,sans-serif;
226 font-weight: bold;
227 text-shadow: 1px 1px 2px #000;
228 + cursor: pointer;
229 + overflow: hidden;
230 + text-overflow: ellipsis;
231 + white-space: nowrap;
232 + flex-shrink: 1;
233 + min-width: 0;
234 }
235
236 #masthead .title2 {
178 - float: left;
179 - height: 66px;
237 color: #c8c8c8;
181 - padding-left: 5px;
182 - padding-top: 12px;
238 font-size: 14px;
239 font-family: Arial,Helvetica,sans-serif;
240 font-weight: bold;
241 text-shadow: 1px 1px 2px #000;
242 + cursor: pointer;
243 + padding-top: 12px;
244 + padding-bottom: 30px;
245 + overflow: hidden;
246 + text-overflow: ellipsis;
247 + white-space: nowrap;
248 + flex-shrink: 1;
249 + min-width: 0;
250 +}
251 +
252 +@media (max-width: 1500px) {
253 + #masthead .title {
254 + font-size: 40px;
255 + }
256 +}
257 +
258 +@media (max-width: 1300px) {
259 + #masthead .title {
260 + font-size: 34px;
261 + white-space: normal;
262 + line-height: 1.1;
263 + }
264 +
265 + #masthead .title2 {
266 + font-size: 13px;
267 + padding-top: 10px;
268 + padding-bottom: 20px;
269 + white-space: normal;
270 + line-height: 1.2;
271 + }
272 +}
273 +
274 +@media (max-width: 1100px) {
275 + .masthead-left {
276 + gap: 0.75rem;
277 + }
278 +
279 + .masthead-titles-container {
280 + max-width: 100%;
281 + }
282 +
283 + #masthead .title {
284 + font-size: 30px;
285 + }
286 +}
287 +
288 +.masthead-right {
289 + display: flex;
290 + align-items: center;
291 + gap: 0.5rem;
292 + margin-left: auto;
293 + flex-direction: row; /* Ensure horizontal layout */
294 +}
295 +
296 +.notification-icon {
297 + display: flex;
298 + align-items: center;
299 + cursor: pointer;
300 + padding: 0.5rem;
301 + border-radius: 4px;
302 }
303
304 +.notification-icon:hover {
305 + background-color: rgba(255, 255, 255, 0.1);
306 +}
307 +
308 +#notificationCount {
309 + display: inline-flex;
310 + align-items: center;
311 + justify-content: center;
312 + cursor: pointer;
313 + height: 40px;
314 + padding: 6px 8px;
315 + border-radius: 4px;
316 + position: static;
317 + flex: 0 0 auto;
318 + min-width: unset;
319 + margin: 0;
320 + top: auto;
321 + right: auto;
322 +}
323 +
324 +#notificationCount:hover {
325 + background-color: rgba(255, 255, 255, 0.1);
326 +}
327 +
328 +#notificationBadge {
329 + font-size: 0.65rem !important;
330 + box-shadow: -0.1px 1px 2px #000000;
331 + -webkit-box-shadow: -0.1px 1px 2px #000000;
332 + -moz-box-shadow: -0.1px 1px 2px #000000;
333 +}
334 +
335 +.user-menu-container {
336 + display: flex;
337 + align-items: center;
338 + flex: 0 0 auto; /* Prevent flex item from growing or shrinking */
339 +}
340 +
341 +
342 +
343 #page_leftbar {
344 -ms-grid-column: 1;
345 -ms-grid-row: 2;
346 -ms-grid-row-span: 3;
347 height: 100%;
348 /* height: calc(100vh - 66px); */
195 - width: 90px;
349 + width: 70px;
350 z-index: 1000;
351 background: #113962;
352 background: linear-gradient(to bottom, #104893 0%,#113962 100%);
353 color: white;
354 overflow-y: hidden;
355 + overflow-x: hidden;
356 display: none;
357 }
358
@@ -2352,10 +2507,10 @@ nav .lbbuttonsel2 {
2507 }
2508
2509 .notifiyBox {
2355 - position: absolute;
2510 + position: fixed;
2511 z-index: 1000;
2512 top: 80px;
2358 - right: 10rem;
2513 + right: 8.3rem;
2514 width: 300px;
2515 text-align: left;
2516 background-color: #F0ECCD;
@@ -2369,6 +2524,11 @@ nav .lbbuttonsel2 {
2524 max-height: 200px;
2525 }
2526
2527 +body:not(.fullscreen) .notifiyBox {
2528 + position: absolute;
2529 + right: calc(50vw - 512px + 10rem);
2530 +}
2531 +
2532 .night .notifiyBox {
2533 color: black;
2534 }
@@ -2403,19 +2563,7 @@ nav .lbbuttonsel2 {
2563 .notification:hover {
2564 background-color: #EFE8B6;
2565 }
2406 -
2407 -#notificationCount {
2408 - min-width: 28px;
2409 - font-size: 20px;
2410 - border-radius: 5px;
2411 - text-align: center;
2412 - margin: 8px;
2413 - cursor: pointer;
2414 - padding: 4px;
2415 - position: absolute;
2416 - right: 9rem;
2417 - top: 0.2em;
2418 -}
2566 +
2567 #notificationBadge {
2568 box-shadow: -0.1px 1px 2px #000000;
2569 -webkit-box-shadow: -0.1px 1px 2px #000000;
@@ -3314,8 +3462,17 @@ nav .lbbuttonsel2 {
3462
3463 .sidebar .nav-link {
3464 font-size: xx-large;
3465 +
3466 +}
3467 +
3468 +.nav-link {
3469 + width: unset !important;
3470 }
3318 -
3471 +
3472 +.nav {
3473 + --bs-nav-link-padding-x: 19px !important;
3474 +}
3475 +
3476 .card:hover, #p2AccountImage:hover, #p2canvas:hover {
3477 background: #f3f5f7 !important;
3478 }
@@ -3365,7 +3522,31 @@ nav .lbbuttonsel2 {
3522 }
3523
3524 #masthead .title {
3368 - font-size: 36px;
3525 + font-size: 22px;
3526 + padding-top: 4px;
3527 + }
3528 +
3529 + #masthead .title2 {
3530 + font-size: 12px;
3531 + padding-top: 2px;
3532 + padding-bottom: 10px;
3533 + }
3534 +
3535 + .masthead-left {
3536 + gap: 0.5rem;
3537 + max-width: calc(100% - 120px);
3538 + }
3539 +
3540 + .masthead-titles-container {
3541 + flex-direction: column;
3542 + align-items: flex-start;
3543 + gap: 0;
3544 + }
3545 +
3546 + .masthead-titles-container {
3547 + flex-direction: column;
3548 + align-items: flex-start;
3549 + gap: 0;
3550 }
3551
3552 #masthead {
@@ -3386,9 +3567,7 @@ nav .lbbuttonsel2 {
3567 text-align: left;
3568 }
3569 #userDropdown {
3389 - display: inline-block !important;
3390 - position: absolute !important;
3391 - right: 10px !important;
3570 + display: flex !important;
3571 }
3572
3573 #userDropdownName {
@@ -3400,7 +3579,7 @@ nav .lbbuttonsel2 {
3579 }
3580
3581 #userDropdownMenuDivider.userDropdownMobileOnly {
3403 - display: block !important;
3582 + display: block;
3583 }
3584
3585 .userDropdownSubmenu {
@@ -3428,16 +3607,10 @@ nav .lbbuttonsel2 {
3607 border-radius: 0 !important;
3608 }
3609
3431 - .userDropdownSubmenu .userDropdownMenuItem {
3432 - border-left: 3px solid #444444 !important;
3433 - }
3610 .userDropdownMenuItem:hover {
3611 border-radius: unset !important;
3612 }
3613
3438 - #notificationCount {
3439 - right: 4rem;
3440 - }
3614 .notifiyBox {
3615 right: 3.5rem;
3616 }
@@ -3480,10 +3653,9 @@ nav .lbbuttonsel2 {
3653 } */
3654 /* User Dropdown Menu Styles */
3655 #userDropdown {
3483 - position: absolute;
3484 - display: inline-block;
3656 + display: flex;
3657 + align-items: center;
3658 z-index: 1000;
3486 - right: 10px;
3659 background: #00000026;
3660 border-radius: 4px;
3661 }
@@ -3518,6 +3690,10 @@ nav .lbbuttonsel2 {
3690 font-size: 12px;
3691 }
3692
3693 +#userDropdown {
3694 + position: relative;
3695 +}
3696 +
3697 #userDropdownMenu {
3698 display: none;
3699 position: absolute;
@@ -3534,6 +3710,8 @@ nav .lbbuttonsel2 {
3710 font-size: small;
3711 }
3712
3713 +
3714 +
3715 #userDropdownMenuContainer {
3716 padding: 6px 0;
3717 }
@@ -3579,6 +3757,10 @@ nav .lbbuttonsel2 {
3757 border-top: var(--bs-border-width) solid;
3758 }
3759
3760 +.userDropdownUISettings {
3761 + position: relative;
3762 +}
3763 +
3764 .userDropdownSubmenu {
3765 position: absolute;
3766 right: 96%;
@@ -3591,6 +3773,7 @@ nav .lbbuttonsel2 {
3773 z-index: 10001;
3774 padding: 6px 0;
3775 font-size: small;
3776 + display: none;
3777 }
3778
3779 .userDropdownSubmenu .userDropdownMenuItem {
@@ -3626,30 +3809,27 @@ nav .lbbuttonsel2 {
3809 background-color: #292c2c;
3810 }
3811
3629 -body:not(.fullscreen) #userDropdown {
3630 - right: calc(50vw - 470px);
3812 +.userDropdownUISettings .fa-chevron-right {
3813 + transition: transform 0.3s ease;
3814 + transform: rotate(0deg);
3815 +}
3816 +
3817 +.userDropdownUISettings .fa-chevron-right.rotated {
3818 + transform: rotate(90deg);
3819 }
3632 -@media (min-width: 1025px) {
3820 +
3821 +@media (min-width: 769px) {
3822 .userDropdownSubmenu {
3634 - display: block !important;
3823 position: absolute;
3824 + display: none;
3825 opacity: 0;
3826 transform: translateX(12px);
3827 transition: opacity 0.2s ease, transform 0.3s ease;
3639 - pointer-events: none;
3828 }
3641 -
3642 - .userDropdownUISettings:hover + .userDropdownSubmenu,
3643 - .userDropdownSubmenu:hover,
3644 - .userDropdownMenuItem:hover .userDropdownSubmenu {
3645 - display: block !important;
3829 +
3830 + .userDropdownSubmenu.show {
3831 + display: block;
3832 opacity: 1;
3833 transform: translateX(0);
3648 - pointer-events: auto;
3649 - }
3650 - .userDropdownUISettings:hover .fa-chevron-right,
3651 - .userDropdownUISettings:has(+ .userDropdownSubmenu:hover) .fa-chevron-right {
3652 - transform: rotate(90deg) !important;
3653 - transition: transform 0.3s ease;
3834 }
3835 }
\ No newline at end of file
translate/translate.json
+3389 -3389
@@ -28,8 +28,8 @@
28 "xloc": [
29 "default.handlebars->119->2234",
30 "default.handlebars->119->2236",
31 - "default3.handlebars->117->2245",
32 - "default3.handlebars->117->2247"
31 + "default3.handlebars->117->2230",
32 + "default3.handlebars->117->2232"
33 ]
34 },
35 {
@@ -60,7 +60,7 @@
60 "xloc": [
61 "default-mobile.handlebars->53->61",
62 "default.handlebars->119->84",
63 - "default3.handlebars->117->97"
63 + "default3.handlebars->117->82"
64 ]
65 },
66 {
@@ -91,7 +91,7 @@
91 "xloc": [
92 "default-mobile.handlebars->53->59",
93 "default.handlebars->119->82",
94 - "default3.handlebars->117->95"
94 + "default3.handlebars->117->80"
95 ]
96 },
97 {
@@ -122,7 +122,7 @@
122 "xloc": [
123 "default-mobile.handlebars->53->57",
124 "default.handlebars->119->80",
125 - "default3.handlebars->117->93"
125 + "default3.handlebars->117->78"
126 ]
127 },
128 {
@@ -153,7 +153,7 @@
153 "xloc": [
154 "default-mobile.handlebars->53->62",
155 "default.handlebars->119->85",
156 - "default3.handlebars->117->98"
156 + "default3.handlebars->117->83"
157 ]
158 },
159 {
@@ -184,7 +184,7 @@
184 "xloc": [
185 "default-mobile.handlebars->53->60",
186 "default.handlebars->119->83",
187 - "default3.handlebars->117->96"
187 + "default3.handlebars->117->81"
188 ]
189 },
190 {
@@ -215,7 +215,7 @@
215 "xloc": [
216 "default-mobile.handlebars->53->58",
217 "default.handlebars->119->81",
218 - "default3.handlebars->117->94"
218 + "default3.handlebars->117->79"
219 ]
220 },
221 {
@@ -248,8 +248,8 @@
248 "default-mobile.handlebars->53->56",
249 "default.handlebars->119->78",
250 "default.handlebars->119->79",
251 - "default3.handlebars->117->91",
252 - "default3.handlebars->117->92"
251 + "default3.handlebars->117->76",
252 + "default3.handlebars->117->77"
253 ]
254 },
255 {
@@ -331,7 +331,7 @@
331 "zh-cht": " 可以使用密碼提示,但不建議使用。",
332 "xloc": [
333 "default.handlebars->119->2106",
334 - "default3.handlebars->117->2101"
334 + "default3.handlebars->117->2086"
335 ]
336 },
337 {
@@ -362,8 +362,8 @@
362 "xloc": [
363 "default.handlebars->119->2360",
364 "default.handlebars->119->2949",
365 - "default3.handlebars->117->2372",
366 - "default3.handlebars->117->2958"
365 + "default3.handlebars->117->2357",
366 + "default3.handlebars->117->2943"
367 ]
368 },
369 {
@@ -503,7 +503,7 @@
503 "zh-cht": " TLS。",
504 "xloc": [
505 "default.handlebars->119->283",
506 - "default3.handlebars->117->293"
506 + "default3.handlebars->117->278"
507 ]
508 },
509 {
@@ -533,7 +533,7 @@
533 "zh-cht": " 沒有TLS。",
534 "xloc": [
535 "default.handlebars->119->284",
536 - "default3.handlebars->117->294"
536 + "default3.handlebars->117->279"
537 ]
538 },
539 {
@@ -935,7 +935,7 @@
935 "zh-cht": "(可選的)",
936 "xloc": [
937 "default.handlebars->119->580",
938 - "default3.handlebars->117->591"
938 + "default3.handlebars->117->576"
939 ]
940 },
941 {
@@ -987,8 +987,8 @@
987 "xloc": [
988 "default.handlebars->119->2318",
989 "default.handlebars->119->542",
990 - "default3.handlebars->117->2327",
991 - "default3.handlebars->117->553"
990 + "default3.handlebars->117->2312",
991 + "default3.handlebars->117->538"
992 ]
993 },
994 {
@@ -1018,7 +1018,7 @@
1018 "zh-cht": "*對於BSD,首先運行“ pkg install wget sudo bash ”。",
1019 "xloc": [
1020 "default.handlebars->119->639",
1021 - "default3.handlebars->117->650"
1021 + "default3.handlebars->117->635"
1022 ]
1023 },
1024 {
@@ -1106,12 +1106,12 @@
1106 "default.handlebars->119->1672",
1107 "default.handlebars->119->2436",
1108 "default.handlebars->119->2722",
1109 - "default3.handlebars->117->1036",
1110 - "default3.handlebars->117->1668",
1111 - "default3.handlebars->117->1670",
1112 - "default3.handlebars->117->1672",
1113 - "default3.handlebars->117->2448",
1114 - "default3.handlebars->117->2734"
1109 + "default3.handlebars->117->1021",
1110 + "default3.handlebars->117->1653",
1111 + "default3.handlebars->117->1655",
1112 + "default3.handlebars->117->1657",
1113 + "default3.handlebars->117->2433",
1114 + "default3.handlebars->117->2719"
1115 ]
1116 },
1117 {
@@ -1226,7 +1226,7 @@
1226 "xloc": [
1227 "default-mobile.handlebars->53->412",
1228 "default.handlebars->119->369",
1229 - "default3.handlebars->117->380"
1229 + "default3.handlebars->117->365"
1230 ]
1231 },
1232 {
@@ -1256,7 +1256,7 @@
1256 "zh-cht": ", 本地設備",
1257 "xloc": [
1258 "default.handlebars->119->371",
1259 - "default3.handlebars->117->382"
1259 + "default3.handlebars->117->367"
1260 ]
1261 },
1262 {
@@ -1287,7 +1287,7 @@
1287 "xloc": [
1288 "default-mobile.handlebars->53->935",
1289 "default.handlebars->119->1778",
1290 - "default3.handlebars->117->1776"
1290 + "default3.handlebars->117->1761"
1291 ]
1292 },
1293 {
@@ -1318,8 +1318,8 @@
1318 "xloc": [
1319 "default.handlebars->119->1120",
1320 "default.handlebars->119->2276",
1321 - "default3.handlebars->117->1131",
1322 - "default3.handlebars->117->2287"
1321 + "default3.handlebars->117->1116",
1322 + "default3.handlebars->117->2272"
1323 ]
1324 },
1325 {
@@ -1350,8 +1350,8 @@
1350 "xloc": [
1351 "default.handlebars->119->1121",
1352 "default.handlebars->119->2277",
1353 - "default3.handlebars->117->1132",
1354 - "default3.handlebars->117->2288"
1353 + "default3.handlebars->117->1117",
1354 + "default3.handlebars->117->2273"
1355 ]
1356 },
1357 {
@@ -1380,7 +1380,7 @@
1380 "zh-cht": ", RDP",
1381 "xloc": [
1382 "default.handlebars->119->1422",
1383 - "default3.handlebars->117->1423"
1383 + "default3.handlebars->117->1408"
1384 ]
1385 },
1386 {
@@ -1411,8 +1411,8 @@
1411 "xloc": [
1412 "default.handlebars->119->1117",
1413 "default.handlebars->119->2273",
1414 - "default3.handlebars->117->1128",
1415 - "default3.handlebars->117->2284"
1414 + "default3.handlebars->117->1113",
1415 + "default3.handlebars->117->2269"
1416 ]
1417 },
1418 {
@@ -1443,8 +1443,8 @@
1443 "xloc": [
1444 "default.handlebars->119->1118",
1445 "default.handlebars->119->2274",
1446 - "default3.handlebars->117->1129",
1447 - "default3.handlebars->117->2285"
1446 + "default3.handlebars->117->1114",
1447 + "default3.handlebars->117->2270"
1448 ]
1449 },
1450 {
@@ -1500,7 +1500,7 @@
1500 "zh-cht": ", 中繼設備",
1501 "xloc": [
1502 "default.handlebars->119->370",
1503 - "default3.handlebars->117->381"
1503 + "default3.handlebars->117->366"
1504 ]
1505 },
1506 {
@@ -1530,7 +1530,7 @@
1530 "xloc": [
1531 "default-mobile.handlebars->53->715",
1532 "default.handlebars->119->1544",
1533 - "default3.handlebars->117->1544"
1533 + "default3.handlebars->117->1529"
1534 ]
1535 },
1536 {
@@ -1559,7 +1559,7 @@
1559 "zh-cht": ", SSH",
1560 "xloc": [
1561 "default.handlebars->119->1512",
1562 - "default3.handlebars->117->1512"
1562 + "default3.handlebars->117->1497"
1563 ]
1564 },
1565 {
@@ -1588,7 +1588,7 @@
1588 "zh-cht": ",軟體KVM",
1589 "xloc": [
1590 "default.handlebars->119->1405",
1591 - "default3.handlebars->117->1406",
1591 + "default3.handlebars->117->1391",
1592 "sharing.handlebars->47->12"
1593 ]
1594 },
@@ -1620,8 +1620,8 @@
1620 "xloc": [
1621 "default.handlebars->119->1122",
1622 "default.handlebars->119->2278",
1623 - "default3.handlebars->117->1133",
1624 - "default3.handlebars->117->2289"
1623 + "default3.handlebars->117->1118",
1624 + "default3.handlebars->117->2274"
1625 ]
1626 },
1627 {
@@ -1678,8 +1678,8 @@
1678 "xloc": [
1679 "default.handlebars->119->1119",
1680 "default.handlebars->119->2275",
1681 - "default3.handlebars->117->1130",
1682 - "default3.handlebars->117->2286"
1681 + "default3.handlebars->117->1115",
1682 + "default3.handlebars->117->2271"
1683 ]
1684 },
1685 {
@@ -1713,9 +1713,9 @@
1713 "default.handlebars->119->1421",
1714 "default.handlebars->119->1513",
1715 "default.handlebars->119->1545",
1716 - "default3.handlebars->117->1422",
1717 - "default3.handlebars->117->1513",
1718 - "default3.handlebars->117->1545",
1716 + "default3.handlebars->117->1407",
1717 + "default3.handlebars->117->1498",
1718 + "default3.handlebars->117->1530",
1719 "sharing-mobile.handlebars->53->14",
1720 "sharing-mobile.handlebars->53->46",
1721 "sharing-mobile.handlebars->53->63",
@@ -1954,7 +1954,7 @@
1954 "zh-cht": ",{0}觀看",
1955 "xloc": [
1956 "default.handlebars->119->1416",
1957 - "default3.handlebars->117->1417",
1957 + "default3.handlebars->117->1402",
1958 "sharing.handlebars->47->13"
1959 ]
1960 },
@@ -2053,9 +2053,9 @@
2053 "default.handlebars->119->1559",
2054 "default.handlebars->119->2502",
2055 "default.handlebars->119->3193",
2056 - "default3.handlebars->117->1559",
2057 - "default3.handlebars->117->2514",
2058 - "default3.handlebars->117->3196",
2056 + "default3.handlebars->117->1544",
2057 + "default3.handlebars->117->2499",
2058 + "default3.handlebars->117->3183",
2059 "sharing-mobile.handlebars->53->79",
2060 "sharing.handlebars->47->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->notificationBadge"
2113 + "default3.handlebars->container->masthead->3->notificationCount->notificationBadge"
2114 ]
2115 },
2116 {
@@ -2143,7 +2143,7 @@
2143 "xloc": [
2144 "default-mobile.handlebars->53->367",
2145 "default.handlebars->119->2520",
2146 - "default3.handlebars->117->2532"
2146 + "default3.handlebars->117->2517"
2147 ]
2148 },
2149 {
@@ -2251,7 +2251,7 @@
2251 "zh-cht": "1個活躍時段",
2252 "xloc": [
2253 "default.handlebars->119->3044",
2254 - "default3.handlebars->117->3053"
2254 + "default3.handlebars->117->3038"
2255 ]
2256 },
2257 {
@@ -2283,7 +2283,7 @@
2283 "default-mobile.handlebars->53->1078",
2284 "default-mobile.handlebars->53->375",
2285 "default.handlebars->119->2531",
2286 - "default3.handlebars->117->2543",
2286 + "default3.handlebars->117->2528",
2287 "download.handlebars->7->1",
2288 "download2.handlebars->11->1",
2289 "sharing-mobile.handlebars->53->112",
@@ -2346,7 +2346,7 @@
2346 "zh-cht": "1位聯絡文",
2347 "xloc": [
2348 "default.handlebars->119->1418",
2349 - "default3.handlebars->117->1419",
2349 + "default3.handlebars->117->1404",
2350 "sharing.handlebars->47->15"
2351 ]
2352 },
@@ -2379,9 +2379,9 @@
2379 "default.handlebars->119->291",
2380 "default.handlebars->119->571",
2381 "default.handlebars->119->585",
2382 - "default3.handlebars->117->301",
2383 - "default3.handlebars->117->582",
2384 - "default3.handlebars->117->596"
2382 + "default3.handlebars->117->286",
2383 + "default3.handlebars->117->567",
2384 + "default3.handlebars->117->581"
2385 ]
2386 },
2387 {
@@ -2411,7 +2411,7 @@
2411 "zh-cht": "1群",
2412 "xloc": [
2413 "default.handlebars->119->2999",
2414 - "default3.handlebars->117->3008"
2414 + "default3.handlebars->117->2993"
2415 ]
2416 },
2417 {
@@ -2443,9 +2443,9 @@
2443 "default.handlebars->119->289",
2444 "default.handlebars->119->569",
2445 "default.handlebars->119->583",
2446 - "default3.handlebars->117->299",
2447 - "default3.handlebars->117->580",
2448 - "default3.handlebars->117->594"
2446 + "default3.handlebars->117->284",
2447 + "default3.handlebars->117->565",
2448 + "default3.handlebars->117->579"
2449 ]
2450 },
2451 {
@@ -2476,8 +2476,8 @@
2476 "xloc": [
2477 "default.handlebars->119->1230",
2478 "default.handlebars->119->2071",
2479 - "default3.handlebars->117->1239",
2480 - "default3.handlebars->117->2067"
2479 + "default3.handlebars->117->1224",
2480 + "default3.handlebars->117->2052"
2481 ]
2482 },
2483 {
@@ -2507,7 +2507,7 @@
2507 "zh-cht": "1分鐘之後離線",
2508 "xloc": [
2509 "default.handlebars->119->92",
2510 - "default3.handlebars->117->105"
2510 + "default3.handlebars->117->90"
2511 ]
2512 },
2513 {
@@ -2532,7 +2532,7 @@
2532 "tr": "Oturum Açmaya kadar 1 dakika",
2533 "xloc": [
2534 "default.handlebars->119->90",
2535 - "default3.handlebars->117->103"
2535 + "default3.handlebars->117->88"
2536 ]
2537 },
2538 {
@@ -2564,9 +2564,9 @@
2564 "default.handlebars->119->293",
2565 "default.handlebars->119->573",
2566 "default.handlebars->119->587",
2567 - "default3.handlebars->117->303",
2568 - "default3.handlebars->117->584",
2569 - "default3.handlebars->117->598"
2567 + "default3.handlebars->117->288",
2568 + "default3.handlebars->117->569",
2569 + "default3.handlebars->117->583"
2570 ]
2571 },
2572 {
@@ -2596,7 +2596,7 @@
2596 "zh-cht": "有1個用戶沒有顯示,請使用搜尋框搜尋用戶...",
2597 "xloc": [
2598 "default.handlebars->119->2754",
2599 - "default3.handlebars->117->2766"
2599 + "default3.handlebars->117->2751"
2600 ]
2601 },
2602 {
@@ -2626,7 +2626,7 @@
2626 "zh-cht": "1個節點",
2627 "xloc": [
2628 "default.handlebars->119->698",
2629 - "default3.handlebars->117->709"
2629 + "default3.handlebars->117->694"
2630 ]
2631 },
2632 {
@@ -2709,7 +2709,7 @@
2709 "xloc": [
2710 "default-mobile.handlebars->53->592",
2711 "default.handlebars->119->1270",
2712 - "default3.handlebars->117->1279"
2712 + "default3.handlebars->117->1264"
2713 ]
2714 },
2715 {
@@ -2739,7 +2739,7 @@
2739 "zh-cht": "1秒之後離線",
2740 "xloc": [
2741 "default.handlebars->119->88",
2742 - "default3.handlebars->117->101"
2742 + "default3.handlebars->117->86"
2743 ]
2744 },
2745 {
@@ -2764,7 +2764,7 @@
2764 "tr": "Çıkışa Kadar 1 saniye",
2765 "xloc": [
2766 "default.handlebars->119->86",
2767 - "default3.handlebars->117->99"
2767 + "default3.handlebars->117->84"
2768 ]
2769 },
2770 {
@@ -2794,7 +2794,7 @@
2794 "zh-cht": "1 個選定的設備處於離線狀態。",
2795 "xloc": [
2796 "default.handlebars->119->766",
2797 - "default3.handlebars->117->777"
2797 + "default3.handlebars->117->762"
2798 ]
2799 },
2800 {
@@ -2824,7 +2824,7 @@
2824 "zh-cht": "1 個選定的設備在線。",
2825 "xloc": [
2826 "default.handlebars->119->764",
2827 - "default3.handlebars->117->775"
2827 + "default3.handlebars->117->760"
2828 ]
2829 },
2830 {
@@ -2868,14 +2868,14 @@
2868 "default.handlebars->119->475",
2869 "default.handlebars->119->479",
2870 "default.handlebars->119->483",
2871 - "default3.handlebars->117->2770",
2871 + "default3.handlebars->117->2755",
2872 + "default3.handlebars->117->456",
2873 + "default3.handlebars->117->459",
2874 + "default3.handlebars->117->463",
2875 + "default3.handlebars->117->467",
2876 "default3.handlebars->117->471",
2873 - "default3.handlebars->117->474",
2874 - "default3.handlebars->117->478",
2875 - "default3.handlebars->117->482",
2876 - "default3.handlebars->117->486",
2877 - "default3.handlebars->117->490",
2878 - "default3.handlebars->117->494"
2877 + "default3.handlebars->117->475",
2878 + "default3.handlebars->117->479"
2879 ]
2880 },
2881 {
@@ -2907,9 +2907,9 @@
2907 "default.handlebars->119->292",
2908 "default.handlebars->119->572",
2909 "default.handlebars->119->586",
2910 - "default3.handlebars->117->302",
2911 - "default3.handlebars->117->583",
2912 - "default3.handlebars->117->597"
2910 + "default3.handlebars->117->287",
2911 + "default3.handlebars->117->568",
2912 + "default3.handlebars->117->582"
2913 ]
2914 },
2915 {
@@ -3089,8 +3089,8 @@
3089 "xloc": [
3090 "default.handlebars->119->1232",
3091 "default.handlebars->119->2073",
3092 - "default3.handlebars->117->1241",
3093 - "default3.handlebars->117->2069"
3092 + "default3.handlebars->117->1226",
3093 + "default3.handlebars->117->2054"
3094 ]
3095 },
3096 {
@@ -3121,7 +3121,7 @@
3121 "xloc": [
3122 "default-mobile.handlebars->53->594",
3123 "default.handlebars->119->1272",
3124 - "default3.handlebars->117->1281"
3124 + "default3.handlebars->117->1266"
3125 ]
3126 },
3127 {
@@ -3300,8 +3300,8 @@
3300 "xloc": [
3301 "default.handlebars->119->1240",
3302 "default.handlebars->119->2081",
3303 - "default3.handlebars->117->1249",
3304 - "default3.handlebars->117->2077"
3303 + "default3.handlebars->117->1234",
3304 + "default3.handlebars->117->2062"
3305 ]
3306 },
3307 {
@@ -3447,8 +3447,8 @@
3447 "xloc": [
3448 "default.handlebars->119->1233",
3449 "default.handlebars->119->2074",
3450 - "default3.handlebars->117->1242",
3451 - "default3.handlebars->117->2070"
3450 + "default3.handlebars->117->1227",
3451 + "default3.handlebars->117->2055"
3452 ]
3453 },
3454 {
@@ -3479,8 +3479,8 @@
3479 "xloc": [
3480 "default.handlebars->119->1241",
3481 "default.handlebars->119->2082",
3482 - "default3.handlebars->117->1250",
3483 - "default3.handlebars->117->2078"
3482 + "default3.handlebars->117->1235",
3483 + "default3.handlebars->117->2063"
3484 ]
3485 },
3486 {
@@ -3627,8 +3627,8 @@
3627 "xloc": [
3628 "default.handlebars->119->1243",
3629 "default.handlebars->119->2084",
3630 - "default3.handlebars->117->1252",
3631 - "default3.handlebars->117->2080"
3630 + "default3.handlebars->117->1237",
3631 + "default3.handlebars->117->2065"
3632 ]
3633 },
3634 {
@@ -3659,8 +3659,8 @@
3659 "xloc": [
3660 "default.handlebars->119->1237",
3661 "default.handlebars->119->2078",
3662 - "default3.handlebars->117->1246",
3663 - "default3.handlebars->117->2074"
3662 + "default3.handlebars->117->1231",
3663 + "default3.handlebars->117->2059"
3664 ]
3665 },
3666 {
@@ -3691,7 +3691,7 @@
3691 "xloc": [
3692 "default-mobile.handlebars->53->78",
3693 "default.handlebars->119->233",
3694 - "default3.handlebars->117->245"
3694 + "default3.handlebars->117->230"
3695 ]
3696 },
3697 {
@@ -3722,7 +3722,7 @@
3722 "xloc": [
3723 "default-mobile.handlebars->53->83",
3724 "default.handlebars->119->238",
3725 - "default3.handlebars->117->250"
3725 + "default3.handlebars->117->235"
3726 ]
3727 },
3728 {
@@ -3872,8 +3872,8 @@
3872 "xloc": [
3873 "default.handlebars->119->1242",
3874 "default.handlebars->119->2083",
3875 - "default3.handlebars->117->1251",
3876 - "default3.handlebars->117->2079"
3875 + "default3.handlebars->117->1236",
3876 + "default3.handlebars->117->2064"
3877 ]
3878 },
3879 {
@@ -3961,7 +3961,7 @@
3961 "zh-cht": "2FA備份代碼已清除",
3962 "xloc": [
3963 "default.handlebars->119->2644",
3964 - "default3.handlebars->117->2656"
3964 + "default3.handlebars->117->2641"
3965 ]
3966 },
3967 {
@@ -3992,7 +3992,7 @@
3992 "xloc": [
3993 "default-mobile.handlebars->53->65",
3994 "default.handlebars->119->218",
3995 - "default3.handlebars->117->230"
3995 + "default3.handlebars->117->215"
3996 ]
3997 },
3998 {
@@ -4022,7 +4022,7 @@
4022 "zh-cht": "第二個因素",
4023 "xloc": [
4024 "default.handlebars->119->3232",
4025 - "default3.handlebars->117->3235"
4025 + "default3.handlebars->117->3222"
4026 ]
4027 },
4028 {
@@ -4053,8 +4053,8 @@
4053 "xloc": [
4054 "default.handlebars->119->2772",
4055 "default.handlebars->119->3025",
4056 - "default3.handlebars->117->2784",
4057 - "default3.handlebars->117->3034"
4056 + "default3.handlebars->117->2769",
4057 + "default3.handlebars->117->3019"
4058 ]
4059 },
4060 {
@@ -4227,8 +4227,8 @@
4227 "xloc": [
4228 "default.handlebars->119->1234",
4229 "default.handlebars->119->2075",
4230 - "default3.handlebars->117->1243",
4231 - "default3.handlebars->117->2071"
4230 + "default3.handlebars->117->1228",
4231 + "default3.handlebars->117->2056"
4232 ]
4233 },
4234 {
@@ -4259,7 +4259,7 @@
4259 "xloc": [
4260 "default-mobile.handlebars->53->760",
4261 "default.handlebars->119->1622",
4262 - "default3.handlebars->117->1622"
4262 + "default3.handlebars->117->1607"
4263 ]
4264 },
4265 {
@@ -4348,8 +4348,8 @@
4348 "xloc": [
4349 "default.handlebars->119->1244",
4350 "default.handlebars->119->2085",
4351 - "default3.handlebars->117->1253",
4352 - "default3.handlebars->117->2081"
4351 + "default3.handlebars->117->1238",
4352 + "default3.handlebars->117->2066"
4353 ]
4354 },
4355 {
@@ -4380,8 +4380,8 @@
4380 "xloc": [
4381 "default.handlebars->119->1238",
4382 "default.handlebars->119->2079",
4383 - "default3.handlebars->117->1247",
4384 - "default3.handlebars->117->2075"
4383 + "default3.handlebars->117->1232",
4384 + "default3.handlebars->117->2060"
4385 ]
4386 },
4387 {
@@ -4529,8 +4529,8 @@
4529 "xloc": [
4530 "default.handlebars->119->1235",
4531 "default.handlebars->119->2076",
4532 - "default3.handlebars->117->1244",
4533 - "default3.handlebars->117->2072"
4532 + "default3.handlebars->117->1229",
4533 + "default3.handlebars->117->2057"
4534 ]
4535 },
4536 {
@@ -4590,8 +4590,8 @@
4590 "xloc": [
4591 "default.handlebars->119->1231",
4592 "default.handlebars->119->2072",
4593 - "default3.handlebars->117->1240",
4594 - "default3.handlebars->117->2068"
4593 + "default3.handlebars->117->1225",
4594 + "default3.handlebars->117->2053"
4595 ]
4596 },
4597 {
@@ -4622,7 +4622,7 @@
4622 "xloc": [
4623 "default-mobile.handlebars->53->593",
4624 "default.handlebars->119->1271",
4625 - "default3.handlebars->117->1280"
4625 + "default3.handlebars->117->1265"
4626 ]
4627 },
4628 {
@@ -4804,8 +4804,8 @@
4804 "xloc": [
4805 "default.handlebars->119->1236",
4806 "default.handlebars->119->2077",
4807 - "default3.handlebars->117->1245",
4808 - "default3.handlebars->117->2073"
4807 + "default3.handlebars->117->1230",
4808 + "default3.handlebars->117->2058"
4809 ]
4810 },
4811 {
@@ -4895,7 +4895,7 @@
4895 "xloc": [
4896 "default-mobile.handlebars->53->762",
4897 "default.handlebars->119->1624",
4898 - "default3.handlebars->117->1624"
4898 + "default3.handlebars->117->1609"
4899 ]
4900 },
4901 {
@@ -5058,7 +5058,7 @@
5058 "zh-cht": "7天電源狀態",
5059 "xloc": [
5060 "default.handlebars->119->1317",
5061 - "default3.handlebars->117->1321"
5061 + "default3.handlebars->117->1306"
5062 ]
5063 },
5064 {
@@ -5088,7 +5088,7 @@
5088 "zh-cht": "7天",
5089 "xloc": [
5090 "default.handlebars->119->2086",
5091 - "default3.handlebars->117->2082"
5091 + "default3.handlebars->117->2067"
5092 ]
5093 },
5094 {
@@ -5183,10 +5183,10 @@
5183 "default.handlebars->119->2080",
5184 "default.handlebars->119->570",
5185 "default.handlebars->119->584",
5186 - "default3.handlebars->117->1248",
5187 - "default3.handlebars->117->2076",
5188 - "default3.handlebars->117->581",
5189 - "default3.handlebars->117->595"
5186 + "default3.handlebars->117->1233",
5187 + "default3.handlebars->117->2061",
5188 + "default3.handlebars->117->566",
5189 + "default3.handlebars->117->580"
5190 ]
5191 },
5192 {
@@ -5392,9 +5392,9 @@
5392 "default.handlebars->119->2254",
5393 "default.handlebars->119->448",
5394 "default.handlebars->119->932",
5395 - "default3.handlebars->117->2265",
5396 - "default3.handlebars->117->459",
5397 - "default3.handlebars->117->943"
5395 + "default3.handlebars->117->2250",
5396 + "default3.handlebars->117->444",
5397 + "default3.handlebars->117->928"
5398 ]
5399 },
5400 {
@@ -5474,8 +5474,8 @@
5474 "xloc": [
5475 "default.handlebars->119->426",
5476 "default.handlebars->119->733",
5477 - "default3.handlebars->117->437",
5478 - "default3.handlebars->117->744"
5477 + "default3.handlebars->117->422",
5478 + "default3.handlebars->117->729"
5479 ]
5480 },
5481 {
@@ -5485,7 +5485,7 @@
5485 "pl": "Host AMT",
5486 "xloc": [
5487 "default.handlebars->119->397",
5488 - "default3.handlebars->117->408"
5488 + "default3.handlebars->117->393"
5489 ]
5490 },
5491 {
@@ -5496,7 +5496,7 @@
5496 "pl": "Stan AMT",
5497 "xloc": [
5498 "default.handlebars->119->398",
5499 - "default3.handlebars->117->409"
5499 + "default3.handlebars->117->394"
5500 ]
5501 },
5502 {
@@ -5525,7 +5525,7 @@
5525 "zh-cht": "AMT操作系統",
5526 "xloc": [
5527 "default.handlebars->119->3391",
5528 - "default3.handlebars->117->3396"
5528 + "default3.handlebars->117->3381"
5529 ]
5530 },
5531 {
@@ -5555,8 +5555,8 @@
5555 "xloc": [
5556 "default.handlebars->119->3242",
5557 "default.handlebars->119->3295",
5558 - "default3.handlebars->117->3245",
5559 - "default3.handlebars->117->3298"
5558 + "default3.handlebars->117->3232",
5559 + "default3.handlebars->117->3285"
5560 ]
5561 },
5562 {
@@ -5586,8 +5586,8 @@
5586 "xloc": [
5587 "default.handlebars->119->3241",
5588 "default.handlebars->119->3294",
5589 - "default3.handlebars->117->3244",
5590 - "default3.handlebars->117->3297"
5589 + "default3.handlebars->117->3231",
5590 + "default3.handlebars->117->3284"
5591 ]
5592 },
5593 {
@@ -5596,7 +5596,7 @@
5596 "nl": "APK",
5597 "xloc": [
5598 "default.handlebars->119->660",
5599 - "default3.handlebars->117->671"
5599 + "default3.handlebars->117->656"
5600 ]
5601 },
5602 {
@@ -5609,7 +5609,7 @@
5609 "xloc": [
5610 "default-mobile.handlebars->53->987",
5611 "default.handlebars->119->659",
5612 - "default3.handlebars->117->670"
5612 + "default3.handlebars->117->655"
5613 ]
5614 },
5615 {
@@ -5618,7 +5618,7 @@
5618 "nl": "ARM 64bit versie van de macOS Mesh Agent",
5619 "xloc": [
5620 "default.handlebars->119->648",
5621 - "default3.handlebars->117->659"
5621 + "default3.handlebars->117->644"
5622 ]
5623 },
5624 {
@@ -5632,8 +5632,8 @@
5632 "xloc": [
5633 "default.handlebars->119->633",
5634 "default.handlebars->119->680",
5635 - "default3.handlebars->117->644",
5636 - "default3.handlebars->117->691"
5635 + "default3.handlebars->117->629",
5636 + "default3.handlebars->117->676"
5637 ]
5638 },
5639 {
@@ -5824,8 +5824,8 @@
5824 "default-mobile.handlebars->53->769",
5825 "default.handlebars->119->951",
5826 "default.handlebars->119->953",
5827 - "default3.handlebars->117->962",
5828 - "default3.handlebars->117->964"
5827 + "default3.handlebars->117->947",
5828 + "default3.handlebars->117->949"
5829 ]
5830 },
5831 {
@@ -5856,7 +5856,7 @@
5856 "xloc": [
5857 "default-mobile.handlebars->53->936",
5858 "default.handlebars->119->1779",
5859 - "default3.handlebars->117->1777"
5859 + "default3.handlebars->117->1762"
5860 ]
5861 },
5862 {
@@ -5946,7 +5946,7 @@
5946 "zh-cht": "存取伺服器檔案",
5947 "xloc": [
5948 "default.handlebars->119->2955",
5949 - "default3.handlebars->117->2964"
5949 + "default3.handlebars->117->2949"
5950 ]
5951 },
5952 {
@@ -6079,13 +6079,13 @@
6079 "default.handlebars->119->741",
6080 "default.handlebars->119->892",
6081 "default.handlebars->119->894",
6082 - "default3.handlebars->117->2132",
6083 - "default3.handlebars->117->2133",
6084 - "default3.handlebars->117->3449",
6085 - "default3.handlebars->117->3451",
6086 - "default3.handlebars->117->752",
6087 - "default3.handlebars->117->903",
6088 - "default3.handlebars->117->905"
6082 + "default3.handlebars->117->2117",
6083 + "default3.handlebars->117->2118",
6084 + "default3.handlebars->117->3434",
6085 + "default3.handlebars->117->3436",
6086 + "default3.handlebars->117->737",
6087 + "default3.handlebars->117->888",
6088 + "default3.handlebars->117->890"
6089 ]
6090 },
6091 {
@@ -6116,7 +6116,7 @@
6116 "xloc": [
6117 "default-mobile.handlebars->53->1045",
6118 "default.handlebars->119->3315",
6119 - "default3.handlebars->117->3320"
6119 + "default3.handlebars->117->3305"
6120 ]
6121 },
6122 {
@@ -6192,7 +6192,7 @@
6192 "uk": "Акаунт змінено на синхронізацію з даними LDAP.",
6193 "xloc": [
6194 "default.handlebars->119->2705",
6195 - "default3.handlebars->117->2717"
6195 + "default3.handlebars->117->2702"
6196 ]
6197 },
6198 {
@@ -6222,7 +6222,7 @@
6222 "zh-cht": "帳戶已更改:{0}",
6223 "xloc": [
6224 "default.handlebars->119->2617",
6225 - "default3.handlebars->117->2629"
6225 + "default3.handlebars->117->2614"
6226 ]
6227 },
6228 {
@@ -6252,7 +6252,7 @@
6252 "zh-cht": "創建帳戶,電子郵件為{0}",
6253 "xloc": [
6254 "default.handlebars->119->2616",
6255 - "default3.handlebars->117->2628"
6255 + "default3.handlebars->117->2613"
6256 ]
6257 },
6258 {
@@ -6282,7 +6282,7 @@
6282 "zh-cht": "已創建帳戶,名稱為 {0}。",
6283 "xloc": [
6284 "default.handlebars->119->2679",
6285 - "default3.handlebars->117->2691"
6285 + "default3.handlebars->117->2676"
6286 ]
6287 },
6288 {
@@ -6312,7 +6312,7 @@
6312 "zh-cht": "帳戶已創建,用戶名是{0}",
6313 "xloc": [
6314 "default.handlebars->119->2615",
6315 - "default3.handlebars->117->2627"
6315 + "default3.handlebars->117->2612"
6316 ]
6317 },
6318 {
@@ -6345,9 +6345,9 @@
6345 "default.handlebars->119->222",
6346 "default.handlebars->119->2774",
6347 "default.handlebars->119->2952",
6348 - "default3.handlebars->117->234",
6349 - "default3.handlebars->117->2786",
6350 - "default3.handlebars->117->2961"
6348 + "default3.handlebars->117->219",
6349 + "default3.handlebars->117->2771",
6350 + "default3.handlebars->117->2946"
6351 ]
6352 },
6353 {
@@ -6378,7 +6378,7 @@
6378 "xloc": [
6379 "default-mobile.handlebars->53->1057",
6380 "default.handlebars->119->3327",
6381 - "default3.handlebars->117->3332",
6381 + "default3.handlebars->117->3317",
6382 "login-mobile.handlebars->23->6",
6383 "login.handlebars->13->8",
6384 "login2.handlebars->17->206"
@@ -6442,7 +6442,7 @@
6442 "zh-cht": "帳號登錄",
6443 "xloc": [
6444 "default.handlebars->119->2552",
6445 - "default3.handlebars->117->2564"
6445 + "default3.handlebars->117->2549"
6446 ]
6447 },
6448 {
@@ -6472,7 +6472,7 @@
6472 "zh-cht": "從 {0}、{1}、{2} 登錄帳戶",
6473 "xloc": [
6474 "default.handlebars->119->2658",
6475 - "default3.handlebars->117->2670"
6475 + "default3.handlebars->117->2655"
6476 ]
6477 },
6478 {
@@ -6487,7 +6487,7 @@
6487 "uk": "Записи токенів входу до акаунту",
6488 "xloc": [
6489 "default.handlebars->119->3284",
6490 - "default3.handlebars->117->3287"
6490 + "default3.handlebars->117->3274"
6491 ]
6492 },
6493 {
@@ -6517,7 +6517,7 @@
6517 "zh-cht": "帳戶登出",
6518 "xloc": [
6519 "default.handlebars->119->2553",
6520 - "default3.handlebars->117->2565"
6520 + "default3.handlebars->117->2550"
6521 ]
6522 },
6523 {
@@ -6578,7 +6578,7 @@
6578 "zh-cht": "帳戶密碼已更改:{0}",
6579 "xloc": [
6580 "default.handlebars->119->2625",
6581 - "default3.handlebars->117->2637"
6581 + "default3.handlebars->117->2622"
6582 ]
6583 },
6584 {
@@ -6608,7 +6608,7 @@
6608 "zh-cht": "帳戶已刪除",
6609 "xloc": [
6610 "default.handlebars->119->2614",
6611 - "default3.handlebars->117->2626"
6611 + "default3.handlebars->117->2611"
6612 ]
6613 },
6614 {
@@ -6670,7 +6670,7 @@
6670 "default-mobile.handlebars->53->951",
6671 "default.handlebars->119->1794",
6672 "default.handlebars->container->column_l->p42->p42tbl->1->0->8",
6673 - "default3.handlebars->117->1792",
6673 + "default3.handlebars->117->1777",
6674 "default3.handlebars->container->column_l->p42->p42tbl->1->0->17"
6675 ]
6676 },
@@ -6702,8 +6702,8 @@
6702 "xloc": [
6703 "default.handlebars->119->1364",
6704 "default.handlebars->119->1366",
6705 - "default3.handlebars->117->1366",
6706 - "default3.handlebars->117->1368"
6705 + "default3.handlebars->117->1351",
6706 + "default3.handlebars->117->1353"
6707 ]
6708 },
6709 {
@@ -6740,7 +6740,7 @@
6740 "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1",
6741 "default.handlebars->container->column_l->p12->termTable->1->1->0->1->1",
6742 "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->1",
6743 - "default3.handlebars->117->1037",
6743 + "default3.handlebars->117->1022",
6744 "default3.handlebars->container->column_l->p11->deskarea0->deskarea1->3",
6745 "default3.handlebars->container->column_l->p12->termTable->1->1->0->1->3",
6746 "default3.handlebars->container->column_l->p13->p13toolbar->1->0->1->3"
@@ -6773,7 +6773,7 @@
6773 "zh-cht": "使用FAT格式的USB密鑰在管理控制模式(ACM)中激活英特爾®AMT。將setup.bin放在其上,然後使用此鍵引導一台或多台計算機。",
6774 "xloc": [
6775 "default.handlebars->119->536",
6776 - "default3.handlebars->117->547"
6776 + "default3.handlebars->117->532"
6777 ]
6778 },
6779 {
@@ -6861,7 +6861,7 @@
6861 "zh-cht": "如果ACM失敗,則激活到CCM",
6862 "xloc": [
6863 "default.handlebars->119->2309",
6864 - "default3.handlebars->117->2318"
6864 + "default3.handlebars->117->2303"
6865 ]
6866 },
6867 {
@@ -6896,9 +6896,9 @@
6896 "default.handlebars->119->1680",
6897 "default.handlebars->119->925",
6898 "default.handlebars->119->927",
6899 - "default3.handlebars->117->1678",
6900 - "default3.handlebars->117->936",
6901 - "default3.handlebars->117->938"
6899 + "default3.handlebars->117->1663",
6900 + "default3.handlebars->117->921",
6901 + "default3.handlebars->117->923"
6902 ]
6903 },
6904 {
@@ -6928,7 +6928,7 @@
6928 "zh-cht": "啟動",
6929 "xloc": [
6930 "default.handlebars->119->333",
6931 - "default3.handlebars->117->343"
6931 + "default3.handlebars->117->328"
6932 ]
6933 },
6934 {
@@ -6959,8 +6959,8 @@
6959 "xloc": [
6960 "default.handlebars->119->1102",
6961 "default.handlebars->119->2258",
6962 - "default3.handlebars->117->1113",
6963 - "default3.handlebars->117->2269"
6962 + "default3.handlebars->117->1098",
6963 + "default3.handlebars->117->2254"
6964 ]
6965 },
6966 {
@@ -6990,7 +6990,7 @@
6990 "zh-cht": "活動登錄令牌",
6991 "xloc": [
6992 "default.handlebars->119->2146",
6993 - "default3.handlebars->117->2161"
6993 + "default3.handlebars->117->2146"
6994 ]
6995 },
6996 {
@@ -7021,7 +7021,7 @@
7021 "xloc": [
7022 "default-mobile.handlebars->53->796",
7023 "default.handlebars->119->980",
7024 - "default3.handlebars->117->991"
7024 + "default3.handlebars->117->976"
7025 ]
7026 },
7027 {
@@ -7052,7 +7052,7 @@
7052 "xloc": [
7053 "default-mobile.handlebars->53->795",
7054 "default.handlebars->119->979",
7055 - "default3.handlebars->117->990"
7055 + "default3.handlebars->117->975"
7056 ]
7057 },
7058 {
@@ -7110,8 +7110,8 @@
7110 "default-mobile.handlebars->53->685",
7111 "default.handlebars->119->1454",
7112 "default.handlebars->119->1460",
7113 - "default3.handlebars->117->1456",
7114 - "default3.handlebars->117->1462",
7113 + "default3.handlebars->117->1441",
7114 + "default3.handlebars->117->1447",
7115 "sharing-mobile.handlebars->53->41"
7116 ]
7117 },
@@ -7195,8 +7195,8 @@
7195 "xloc": [
7196 "default.handlebars->119->2248",
7197 "default.handlebars->119->502",
7198 - "default3.handlebars->117->2259",
7199 - "default3.handlebars->117->513"
7198 + "default3.handlebars->117->2244",
7199 + "default3.handlebars->117->498"
7200 ]
7201 },
7202 {
@@ -7255,10 +7255,10 @@
7255 "default.handlebars->119->2927",
7256 "default.handlebars->119->3122",
7257 "default.handlebars->119->506",
7258 - "default3.handlebars->117->2263",
7259 - "default3.handlebars->117->2936",
7260 - "default3.handlebars->117->3125",
7261 - "default3.handlebars->117->517"
7258 + "default3.handlebars->117->2248",
7259 + "default3.handlebars->117->2921",
7260 + "default3.handlebars->117->3110",
7261 + "default3.handlebars->117->502"
7262 ]
7263 },
7264 {
@@ -7288,7 +7288,7 @@
7288 "zh-cht": "新增裝置日誌",
7289 "xloc": [
7290 "default.handlebars->119->1188",
7291 - "default3.handlebars->117->1197"
7291 + "default3.handlebars->117->1182"
7292 ]
7293 },
7294 {
@@ -7321,10 +7321,10 @@
7321 "default.handlebars->119->2921",
7322 "default.handlebars->119->3110",
7323 "default.handlebars->119->402",
7324 - "default3.handlebars->117->2409",
7325 - "default3.handlebars->117->2930",
7326 - "default3.handlebars->117->3113",
7327 - "default3.handlebars->117->413"
7324 + "default3.handlebars->117->2394",
7325 + "default3.handlebars->117->2915",
7326 + "default3.handlebars->117->3098",
7327 + "default3.handlebars->117->398"
7328 ]
7329 },
7330 {
@@ -7354,7 +7354,7 @@
7354 "zh-cht": "新增裝置群權限",
7355 "xloc": [
7356 "default.handlebars->119->2394",
7357 - "default3.handlebars->117->2406"
7357 + "default3.handlebars->117->2391"
7358 ]
7359 },
7360 {
@@ -7385,8 +7385,8 @@
7385 "xloc": [
7386 "default.handlebars->119->2399",
7387 "default.handlebars->119->2401",
7388 - "default3.handlebars->117->2411",
7389 - "default3.handlebars->117->2413"
7388 + "default3.handlebars->117->2396",
7389 + "default3.handlebars->117->2398"
7390 ]
7391 },
7392 {
@@ -7442,7 +7442,7 @@
7442 "zh-cht": "新增Intel® AMT裝置",
7443 "xloc": [
7444 "default.handlebars->119->526",
7445 - "default3.handlebars->117->537"
7445 + "default3.handlebars->117->522"
7446 ]
7447 },
7448 {
@@ -7472,7 +7472,7 @@
7472 "zh-cht": "新增密鑰",
7473 "xloc": [
7474 "default.handlebars->119->252",
7475 - "default3.handlebars->117->262"
7475 + "default3.handlebars->117->247"
7476 ]
7477 },
7478 {
@@ -7502,7 +7502,7 @@
7502 "zh-cht": "新增本地",
7503 "xloc": [
7504 "default.handlebars->119->496",
7505 - "default3.handlebars->117->507"
7505 + "default3.handlebars->117->492"
7506 ]
7507 },
7508 {
@@ -7558,7 +7558,7 @@
7558 "zh-cht": "新增成員身份",
7559 "xloc": [
7560 "default.handlebars->119->3142",
7561 - "default3.handlebars->117->3145"
7561 + "default3.handlebars->117->3130"
7562 ]
7563 },
7564 {
@@ -7588,7 +7588,7 @@
7588 "zh-cht": "新增 Mesh Agent",
7589 "xloc": [
7590 "default.handlebars->119->697",
7591 - "default3.handlebars->117->708"
7591 + "default3.handlebars->117->693"
7592 ]
7593 },
7594 {
@@ -7649,12 +7649,12 @@
7649 "default.handlebars->119->258",
7650 "default.handlebars->119->261",
7651 "default.handlebars->119->263",
7652 - "default3.handlebars->117->1857",
7653 - "default3.handlebars->117->1858",
7654 - "default3.handlebars->117->266",
7655 - "default3.handlebars->117->268",
7656 - "default3.handlebars->117->271",
7657 - "default3.handlebars->117->273"
7652 + "default3.handlebars->117->1842",
7653 + "default3.handlebars->117->1843",
7654 + "default3.handlebars->117->251",
7655 + "default3.handlebars->117->253",
7656 + "default3.handlebars->117->256",
7657 + "default3.handlebars->117->258"
7658 ]
7659 },
7660 {
@@ -7685,7 +7685,7 @@
7685 "xloc": [
7686 "default-mobile.handlebars->53->969",
7687 "default.handlebars->119->1094",
7688 - "default3.handlebars->117->1105"
7688 + "default3.handlebars->117->1090"
7689 ]
7690 },
7691 {
@@ -7715,7 +7715,7 @@
7715 "zh-cht": "新增用戶裝置權限",
7716 "xloc": [
7717 "default.handlebars->119->2404",
7718 - "default3.handlebars->117->2416"
7718 + "default3.handlebars->117->2401"
7719 ]
7720 },
7721 {
@@ -7748,10 +7748,10 @@
7748 "default.handlebars->119->2242",
7749 "default.handlebars->119->2396",
7750 "default.handlebars->119->3116",
7751 - "default3.handlebars->117->1106",
7752 - "default3.handlebars->117->2253",
7753 - "default3.handlebars->117->2408",
7754 - "default3.handlebars->117->3119"
7751 + "default3.handlebars->117->1091",
7752 + "default3.handlebars->117->2238",
7753 + "default3.handlebars->117->2393",
7754 + "default3.handlebars->117->3104"
7755 ]
7756 },
7757 {
@@ -7781,7 +7781,7 @@
7781 "zh-cht": "新增用戶群裝置權限",
7782 "xloc": [
7783 "default.handlebars->119->2406",
7784 - "default3.handlebars->117->2418"
7784 + "default3.handlebars->117->2403"
7785 ]
7786 },
7787 {
@@ -7867,8 +7867,8 @@
7867 "xloc": [
7868 "default.handlebars->119->2241",
7869 "default.handlebars->119->2916",
7870 - "default3.handlebars->117->2252",
7871 - "default3.handlebars->117->2925"
7870 + "default3.handlebars->117->2237",
7871 + "default3.handlebars->117->2910"
7872 ]
7873 },
7874 {
@@ -7898,7 +7898,7 @@
7898 "zh-cht": "將用戶新增到裝置群",
7899 "xloc": [
7900 "default.handlebars->119->2393",
7901 - "default3.handlebars->117->2405"
7901 + "default3.handlebars->117->2390"
7902 ]
7903 },
7904 {
@@ -7928,7 +7928,7 @@
7928 "zh-cht": "將用戶新增到用戶群",
7929 "xloc": [
7930 "default.handlebars->119->2951",
7931 - "default3.handlebars->117->2960"
7931 + "default3.handlebars->117->2945"
7932 ]
7933 },
7934 {
@@ -7958,7 +7958,7 @@
7958 "zh-cht": "新增YubiKey®OTP",
7959 "xloc": [
7960 "default.handlebars->119->253",
7961 - "default3.handlebars->117->263"
7961 + "default3.handlebars->117->248"
7962 ]
7963 },
7964 {
@@ -7988,7 +7988,7 @@
7988 "zh-cht": "將本地設備添加到設備組 \\\"{0}\\\"。",
7989 "xloc": [
7990 "default.handlebars->119->507",
7991 - "default3.handlebars->117->518"
7991 + "default3.handlebars->117->503"
7992 ]
7993 },
7994 {
@@ -8018,7 +8018,7 @@
8018 "zh-cht": "通過掃描本地網絡新增新的Intel® AMT電腦。",
8019 "xloc": [
8020 "default.handlebars->119->497",
8021 - "default3.handlebars->117->508"
8021 + "default3.handlebars->117->493"
8022 ]
8023 },
8024 {
@@ -8074,7 +8074,7 @@
8074 "zh-cht": "新增位於本地網絡上的新Intel® AMT電腦。",
8075 "xloc": [
8076 "default.handlebars->119->495",
8077 - "default3.handlebars->117->506"
8077 + "default3.handlebars->117->491"
8078 ]
8079 },
8080 {
@@ -8104,7 +8104,7 @@
8104 "zh-cht": "將新的Intel® AMT裝置新增到裝置群“{0}”。",
8105 "xloc": [
8106 "default.handlebars->119->516",
8107 - "default3.handlebars->117->527"
8107 + "default3.handlebars->117->512"
8108 ]
8109 },
8110 {
@@ -8135,8 +8135,8 @@
8135 "xloc": [
8136 "default.handlebars->119->2247",
8137 "default.handlebars->119->501",
8138 - "default3.handlebars->117->2258",
8139 - "default3.handlebars->117->512"
8138 + "default3.handlebars->117->2243",
8139 + "default3.handlebars->117->497"
8140 ]
8141 },
8142 {
@@ -8167,8 +8167,8 @@
8167 "xloc": [
8168 "default.handlebars->119->2251",
8169 "default.handlebars->119->505",
8170 - "default3.handlebars->117->2262",
8171 - "default3.handlebars->117->516"
8170 + "default3.handlebars->117->2247",
8171 + "default3.handlebars->117->501"
8172 ]
8173 },
8174 {
@@ -8198,7 +8198,7 @@
8198 "zh-cht": "添加本地設備",
8199 "xloc": [
8200 "default.handlebars->119->515",
8201 - "default3.handlebars->117->526"
8201 + "default3.handlebars->117->511"
8202 ]
8203 },
8204 {
@@ -8228,7 +8228,7 @@
8228 "zh-cht": "新增標籤",
8229 "xloc": [
8230 "default.handlebars->119->773",
8231 - "default3.handlebars->117->784"
8231 + "default3.handlebars->117->769"
8232 ]
8233 },
8234 {
@@ -8258,7 +8258,7 @@
8258 "zh-cht": "通過定期在遠程設備上以管理員身份運行MeshCmd,添加,激活和配置Intel® AMT以將“{0}”分組。",
8259 "xloc": [
8260 "default.handlebars->119->533",
8261 - "default3.handlebars->117->544"
8261 + "default3.handlebars->117->529"
8262 ]
8263 },
8264 {
@@ -8288,7 +8288,7 @@
8288 "zh-cht": "添加了身份驗證應用程序",
8289 "xloc": [
8290 "default.handlebars->119->2641",
8291 - "default3.handlebars->117->2653"
8291 + "default3.handlebars->117->2638"
8292 ]
8293 },
8294 {
@@ -8318,7 +8318,7 @@
8318 "zh-cht": "已將設備共享{0}從{1}添加到{2}",
8319 "xloc": [
8320 "default.handlebars->119->2652",
8321 - "default3.handlebars->117->2664"
8321 + "default3.handlebars->117->2649"
8322 ]
8323 },
8324 {
@@ -8348,7 +8348,7 @@
8348 "zh-cht": "添加了每天重複的設備共享 {0}。",
8349 "xloc": [
8350 "default.handlebars->119->2689",
8351 - "default3.handlebars->117->2701"
8351 + "default3.handlebars->117->2686"
8352 ]
8353 },
8354 {
@@ -8378,7 +8378,7 @@
8378 "zh-cht": "添加了每週重複的設備共享 {0}。",
8379 "xloc": [
8380 "default.handlebars->119->2690",
8381 - "default3.handlebars->117->2702"
8381 + "default3.handlebars->117->2687"
8382 ]
8383 },
8384 {
@@ -8408,7 +8408,7 @@
8408 "zh-cht": "添加了無限時間的設備共享 {0}。",
8409 "xloc": [
8410 "default.handlebars->119->2682",
8411 - "default3.handlebars->117->2694"
8411 + "default3.handlebars->117->2679"
8412 ]
8413 },
8414 {
@@ -8439,8 +8439,8 @@
8439 "xloc": [
8440 "default.handlebars->119->2608",
8441 "default.handlebars->119->2635",
8442 - "default3.handlebars->117->2620",
8443 - "default3.handlebars->117->2647"
8442 + "default3.handlebars->117->2605",
8443 + "default3.handlebars->117->2632"
8444 ]
8445 },
8446 {
@@ -8470,7 +8470,7 @@
8470 "zh-cht": "添加了登錄令牌",
8471 "xloc": [
8472 "default.handlebars->119->2666",
8473 - "default3.handlebars->117->2678"
8473 + "default3.handlebars->117->2663"
8474 ]
8475 },
8476 {
@@ -8500,7 +8500,7 @@
8500 "zh-cht": "增加推送通知認證設備",
8501 "xloc": [
8502 "default.handlebars->119->2664",
8503 - "default3.handlebars->117->2676"
8503 + "default3.handlebars->117->2661"
8504 ]
8505 },
8506 {
@@ -8530,7 +8530,7 @@
8530 "zh-cht": "添加了安全密鑰",
8531 "xloc": [
8532 "default.handlebars->119->2646",
8533 - "default3.handlebars->117->2658"
8533 + "default3.handlebars->117->2643"
8534 ]
8535 },
8536 {
@@ -8560,7 +8560,7 @@
8560 "zh-cht": "已將用戶組{0}添加到設備組{1}",
8561 "xloc": [
8562 "default.handlebars->119->2619",
8563 - "default3.handlebars->117->2631"
8563 + "default3.handlebars->117->2616"
8564 ]
8565 },
8566 {
@@ -8591,8 +8591,8 @@
8591 "xloc": [
8592 "default.handlebars->119->2622",
8593 "default.handlebars->119->2631",
8594 - "default3.handlebars->117->2634",
8595 - "default3.handlebars->117->2643"
8594 + "default3.handlebars->117->2619",
8595 + "default3.handlebars->117->2628"
8596 ]
8597 },
8598 {
@@ -8622,7 +8622,7 @@
8622 "zh-cht": "地址",
8623 "xloc": [
8624 "default.handlebars->119->395",
8625 - "default3.handlebars->117->406"
8625 + "default3.handlebars->117->391"
8626 ]
8627 },
8628 {
@@ -8682,7 +8682,7 @@
8682 "xloc": [
8683 "default-mobile.handlebars->53->840",
8684 "default.handlebars->119->1682",
8685 - "default3.handlebars->117->1680"
8685 + "default3.handlebars->117->1665"
8686 ]
8687 },
8688 {
@@ -8713,7 +8713,7 @@
8713 "xloc": [
8714 "default-mobile.handlebars->53->846",
8715 "default.handlebars->119->1688",
8716 - "default3.handlebars->117->1686"
8716 + "default3.handlebars->117->1671"
8717 ]
8718 },
8719 {
@@ -8747,10 +8747,10 @@
8747 "default.handlebars->119->3238",
8748 "default.handlebars->119->3291",
8749 "default.handlebars->termShellContextMenu->3",
8750 - "default3.handlebars->117->3165",
8751 - "default3.handlebars->117->3175",
8752 - "default3.handlebars->117->3241",
8753 - "default3.handlebars->117->3294",
8750 + "default3.handlebars->117->3152",
8751 + "default3.handlebars->117->3162",
8752 + "default3.handlebars->117->3228",
8753 + "default3.handlebars->117->3281",
8754 "default3.handlebars->container->column_l->p12->termTable->1->1->0->1->1->connectbutton2span->5->3->0",
8755 "player.handlebars->29->29",
8756 "xterm.handlebars->termShellContextMenu->cxtermps"
@@ -8783,7 +8783,7 @@
8783 "zh-cht": "管理領域",
8784 "xloc": [
8785 "default.handlebars->119->3003",
8786 - "default3.handlebars->117->3012"
8786 + "default3.handlebars->117->2997"
8787 ]
8788 },
8789 {
@@ -8844,7 +8844,7 @@
8844 "zh-cht": "管理領域",
8845 "xloc": [
8846 "default.handlebars->119->2848",
8847 - "default3.handlebars->117->2857"
8847 + "default3.handlebars->117->2842"
8848 ]
8849 },
8850 {
@@ -8874,7 +8874,7 @@
8874 "zh-cht": "管理員",
8875 "xloc": [
8876 "default.handlebars->119->2766",
8877 - "default3.handlebars->117->2778"
8877 + "default3.handlebars->117->2763"
8878 ]
8879 },
8880 {
@@ -8905,7 +8905,7 @@
8905 "xloc": [
8906 "default-mobile.handlebars->53->115",
8907 "default.handlebars->119->1864",
8908 - "default3.handlebars->117->1860",
8908 + "default3.handlebars->117->1845",
8909 "login2.handlebars->17->1"
8910 ]
8911 },
@@ -8946,11 +8946,11 @@
8946 "default.handlebars->119->729",
8947 "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1",
8948 "default.handlebars->container->dialog->dialogBody->dialog7->1->td7meshkvm",
8949 - "default3.handlebars->117->2489",
8950 - "default3.handlebars->117->2502",
8951 - "default3.handlebars->117->3394",
8952 - "default3.handlebars->117->433",
8953 - "default3.handlebars->117->740",
8949 + "default3.handlebars->117->2474",
8950 + "default3.handlebars->117->2487",
8951 + "default3.handlebars->117->3379",
8952 + "default3.handlebars->117->418",
8953 + "default3.handlebars->117->725",
8954 "default3.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1",
8955 "default3.handlebars->container->xxAddAgentModal->xxAddAgentModalConf->1->xxAddAgentBody->dialog7->1->td7meshkvm"
8956 ]
@@ -8983,8 +8983,8 @@
8983 "xloc": [
8984 "default.handlebars->119->2479",
8985 "default.handlebars->119->2492",
8986 - "default3.handlebars->117->2491",
8987 - "default3.handlebars->117->2504"
8986 + "default3.handlebars->117->2476",
8987 + "default3.handlebars->117->2489"
8988 ]
8989 },
8990 {
@@ -9048,8 +9048,8 @@
9048 "default-mobile.handlebars->53->621",
9049 "default.handlebars->119->2414",
9050 "default.handlebars->119->819",
9051 - "default3.handlebars->117->2426",
9052 - "default3.handlebars->117->830"
9051 + "default3.handlebars->117->2411",
9052 + "default3.handlebars->117->815"
9053 ]
9054 },
9055 {
@@ -9079,7 +9079,7 @@
9079 "zh-cht": "代理錯誤計數器",
9080 "xloc": [
9081 "default.handlebars->119->3357",
9082 - "default3.handlebars->117->3362"
9082 + "default3.handlebars->117->3347"
9083 ]
9084 },
9085 {
@@ -9109,7 +9109,7 @@
9109 "zh-cht": "代理 IP 地址",
9110 "xloc": [
9111 "default.handlebars->119->363",
9112 - "default3.handlebars->117->374"
9112 + "default3.handlebars->117->359"
9113 ]
9114 },
9115 {
@@ -9186,7 +9186,7 @@
9186 "xloc": [
9187 "default-mobile.handlebars->53->455",
9188 "default.handlebars->119->486",
9189 - "default3.handlebars->117->497"
9189 + "default3.handlebars->117->482"
9190 ]
9191 },
9192 {
@@ -9303,8 +9303,8 @@
9303 "xloc": [
9304 "default.handlebars->119->1123",
9305 "default.handlebars->119->2279",
9306 - "default3.handlebars->117->1134",
9307 - "default3.handlebars->117->2290"
9306 + "default3.handlebars->117->1119",
9307 + "default3.handlebars->117->2275"
9308 ]
9309 },
9310 {
@@ -9334,7 +9334,7 @@
9334 "zh-cht": "代理時段",
9335 "xloc": [
9336 "default.handlebars->119->3374",
9337 - "default3.handlebars->117->3379"
9337 + "default3.handlebars->117->3364"
9338 ]
9339 },
9340 {
@@ -9391,7 +9391,7 @@
9391 "xloc": [
9392 "default-mobile.handlebars->53->536",
9393 "default.handlebars->119->948",
9394 - "default3.handlebars->117->959"
9394 + "default3.handlebars->117->944"
9395 ]
9396 },
9397 {
@@ -9422,8 +9422,8 @@
9422 "xloc": [
9423 "default.handlebars->119->352",
9424 "default.handlebars->119->385",
9425 - "default3.handlebars->117->363",
9426 - "default3.handlebars->117->396"
9425 + "default3.handlebars->117->348",
9426 + "default3.handlebars->117->381"
9427 ]
9428 },
9429 {
@@ -9454,7 +9454,7 @@
9454 "xloc": [
9455 "default.handlebars->119->2488",
9456 "default.handlebars->container->column_l->p21->p21main->1->1->meshOsChartDiv->1",
9457 - "default3.handlebars->117->2500",
9457 + "default3.handlebars->117->2485",
9458 "default3.handlebars->container->column_l->p21->p21main->1->1->meshOsChartDiv->1"
9459 ]
9460 },
@@ -9486,8 +9486,8 @@
9486 "xloc": [
9487 "default.handlebars->119->353",
9488 "default.handlebars->119->386",
9489 - "default3.handlebars->117->364",
9490 - "default3.handlebars->117->397"
9489 + "default3.handlebars->117->349",
9490 + "default3.handlebars->117->382"
9491 ]
9492 },
9493 {
@@ -9517,7 +9517,7 @@
9517 "zh-cht": "代理關閉了與{0}%代理到服務器壓縮的會話。已發送:{1},已壓縮:{2}",
9518 "xloc": [
9519 "default.handlebars->119->2605",
9520 - "default3.handlebars->117->2617"
9520 + "default3.handlebars->117->2602"
9521 ]
9522 },
9523 {
@@ -9549,9 +9549,9 @@
9549 "default.handlebars->119->1081",
9550 "default.handlebars->119->1082",
9551 "default.handlebars->119->272",
9552 - "default3.handlebars->117->1092",
9553 - "default3.handlebars->117->1093",
9554 - "default3.handlebars->117->282"
9552 + "default3.handlebars->117->1077",
9553 + "default3.handlebars->117->1078",
9554 + "default3.handlebars->117->267"
9555 ]
9556 },
9557 {
@@ -9581,7 +9581,7 @@
9581 "zh-cht": "與有限特權相關的代理",
9582 "xloc": [
9583 "default.handlebars->119->273",
9584 - "default3.handlebars->117->283"
9584 + "default3.handlebars->117->268"
9585 ]
9586 },
9587 {
@@ -9611,7 +9611,7 @@
9611 "zh-cht": "代理已斷開連接",
9612 "xloc": [
9613 "default.handlebars->119->277",
9614 - "default3.handlebars->117->287"
9614 + "default3.handlebars->117->272"
9615 ]
9616 },
9617 {
@@ -9641,7 +9641,7 @@
9641 "zh-cht": "正在跳過代理哈希檢查,這是不安全的。",
9642 "xloc": [
9643 "default.handlebars->119->102",
9644 - "default3.handlebars->117->115"
9644 + "default3.handlebars->117->100"
9645 ]
9646 },
9647 {
@@ -9750,7 +9750,7 @@
9750 "xloc": [
9751 "default-mobile.handlebars->53->934",
9752 "default.handlebars->119->1777",
9753 - "default3.handlebars->117->1775"
9753 + "default3.handlebars->117->1760"
9754 ]
9755 },
9756 {
@@ -9781,7 +9781,7 @@
9781 "xloc": [
9782 "default-mobile.handlebars->53->933",
9783 "default.handlebars->119->1776",
9784 - "default3.handlebars->117->1774"
9784 + "default3.handlebars->117->1759"
9785 ]
9786 },
9787 {
@@ -9889,7 +9889,7 @@
9889 "zh-cht": "代理在特權降低的遠程設備上運行。",
9890 "xloc": [
9891 "default.handlebars->119->1075",
9892 - "default3.handlebars->117->1086"
9892 + "default3.handlebars->117->1071"
9893 ]
9894 },
9895 {
@@ -10025,9 +10025,9 @@
10025 "default.handlebars->119->2445",
10026 "default.handlebars->119->3402",
10027 "default.handlebars->119->589",
10028 - "default3.handlebars->117->2457",
10029 - "default3.handlebars->117->3407",
10030 - "default3.handlebars->117->600"
10028 + "default3.handlebars->117->2442",
10029 + "default3.handlebars->117->3392",
10030 + "default3.handlebars->117->585"
10031 ]
10032 },
10033 {
@@ -10058,7 +10058,7 @@
10058 "xloc": [
10059 "default-mobile.handlebars->53->116",
10060 "default.handlebars->119->1865",
10061 - "default3.handlebars->117->1861",
10061 + "default3.handlebars->117->1846",
10062 "login2.handlebars->17->2"
10063 ]
10064 },
@@ -10071,8 +10071,8 @@
10071 "xloc": [
10072 "default.handlebars->119->1207",
10073 "default.handlebars->119->782",
10074 - "default3.handlebars->117->1216",
10075 - "default3.handlebars->117->793"
10074 + "default3.handlebars->117->1201",
10075 + "default3.handlebars->117->778"
10076 ]
10077 },
10078 {
@@ -10106,7 +10106,7 @@
10106 "default-mobile.handlebars->53->725",
10107 "default.handlebars->119->3206",
10108 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar->DevFilterSelect->1",
10109 - "default3.handlebars->117->3209",
10109 + "default3.handlebars->117->3196",
10110 "default3.handlebars->container->column_l->p1->devListToolbarSpan->devListToolbar->DevFilterSelect->1",
10111 "sharing-mobile.handlebars->53->80",
10112 "sharing-mobile.handlebars->53->82"
@@ -10139,7 +10139,7 @@
10139 "zh-cht": "全部可用",
10140 "xloc": [
10141 "default.handlebars->119->2728",
10142 - "default3.handlebars->117->2740"
10142 + "default3.handlebars->117->2725"
10143 ]
10144 },
10145 {
@@ -10170,8 +10170,8 @@
10170 "xloc": [
10171 "default.handlebars->119->2446",
10172 "default.handlebars->119->590",
10173 - "default3.handlebars->117->2458",
10174 - "default3.handlebars->117->601"
10173 + "default3.handlebars->117->2443",
10174 + "default3.handlebars->117->586"
10175 ]
10176 },
10177 {
@@ -10201,7 +10201,7 @@
10201 "zh-cht": "所有顯示",
10202 "xloc": [
10203 "default.handlebars->119->1505",
10204 - "default3.handlebars->117->1505"
10204 + "default3.handlebars->117->1490"
10205 ]
10206 },
10207 {
@@ -10231,7 +10231,7 @@
10231 "zh-cht": "所有事件",
10232 "xloc": [
10233 "default.handlebars->119->2726",
10234 - "default3.handlebars->117->2738"
10234 + "default3.handlebars->117->2723"
10235 ]
10236 },
10237 {
@@ -10263,9 +10263,9 @@
10263 "default.handlebars->119->1423",
10264 "default.handlebars->119->1425",
10265 "default.handlebars->119->1426",
10266 - "default3.handlebars->117->1424",
10267 - "default3.handlebars->117->1427",
10268 - "default3.handlebars->117->1428"
10266 + "default3.handlebars->117->1409",
10267 + "default3.handlebars->117->1412",
10268 + "default3.handlebars->117->1413"
10269 ]
10270 },
10271 {
@@ -10306,7 +10306,7 @@
10306 "zh-chs": "所有主题",
10307 "zh-cht": "所有主題",
10308 "xloc": [
10309 - "default3.handlebars->117->2129"
10309 + "default3.handlebars->117->2114"
10310 ]
10311 },
10312 {
@@ -10342,7 +10342,7 @@
10342 "en": "Allow to override server device name until next connection",
10343 "xloc": [
10344 "default.handlebars->119->2351",
10345 - "default3.handlebars->117->2363"
10345 + "default3.handlebars->117->2348"
10346 ]
10347 },
10348 {
@@ -10373,8 +10373,8 @@
10373 "xloc": [
10374 "default.handlebars->119->2358",
10375 "default.handlebars->119->2948",
10376 - "default3.handlebars->117->2370",
10377 - "default3.handlebars->117->2957"
10376 + "default3.handlebars->117->2355",
10377 + "default3.handlebars->117->2942"
10378 ]
10379 },
10380 {
@@ -10404,7 +10404,7 @@
10404 "zh-cht": "允許用戶管理此裝置。",
10405 "xloc": [
10406 "default.handlebars->119->2359",
10407 - "default3.handlebars->117->2371"
10407 + "default3.handlebars->117->2356"
10408 ]
10409 },
10410 {
@@ -10434,7 +10434,7 @@
10434 "zh-cht": "允許",
10435 "xloc": [
10436 "default.handlebars->119->300",
10437 - "default3.handlebars->117->310"
10437 + "default3.handlebars->117->295"
10438 ]
10439 },
10440 {
@@ -10524,8 +10524,8 @@
10524 "default-mobile.handlebars->53->682",
10525 "default.handlebars->119->1447",
10526 "default.handlebars->119->1451",
10527 - "default3.handlebars->117->1449",
10528 - "default3.handlebars->117->1453",
10527 + "default3.handlebars->117->1434",
10528 + "default3.handlebars->117->1438",
10529 "sharing-mobile.handlebars->53->34",
10530 "sharing-mobile.handlebars->53->38"
10531 ]
@@ -10557,7 +10557,7 @@
10557 "zh-cht": "替代Shell",
10558 "xloc": [
10559 "default.handlebars->119->1413",
10560 - "default3.handlebars->117->1414"
10560 + "default3.handlebars->117->1399"
10561 ]
10562 },
10563 {
@@ -10649,7 +10649,7 @@
10649 "zh-cht": "備用(F10 = ESC + 0)",
10650 "xloc": [
10651 "default.handlebars->119->1539",
10652 - "default3.handlebars->117->1539",
10652 + "default3.handlebars->117->1524",
10653 "sharing.handlebars->47->37"
10654 ]
10655 },
@@ -10750,10 +10750,10 @@
10750 "default.handlebars->119->2907",
10751 "default.handlebars->119->3012",
10752 "default.handlebars->119->989",
10753 - "default3.handlebars->117->1000",
10754 - "default3.handlebars->117->2229",
10755 - "default3.handlebars->117->2916",
10756 - "default3.handlebars->117->3021"
10753 + "default3.handlebars->117->2214",
10754 + "default3.handlebars->117->2901",
10755 + "default3.handlebars->117->3006",
10756 + "default3.handlebars->117->985"
10757 ]
10758 },
10759 {
@@ -10786,10 +10786,10 @@
10786 "default.handlebars->119->2908",
10787 "default.handlebars->119->3013",
10788 "default.handlebars->119->990",
10789 - "default3.handlebars->117->1001",
10790 - "default3.handlebars->117->2230",
10791 - "default3.handlebars->117->2917",
10792 - "default3.handlebars->117->3022"
10789 + "default3.handlebars->117->2215",
10790 + "default3.handlebars->117->2902",
10791 + "default3.handlebars->117->3007",
10792 + "default3.handlebars->117->986"
10793 ]
10794 },
10795 {
@@ -10823,7 +10823,7 @@
10823 "nl": "Amazon App Store",
10824 "xloc": [
10825 "default.handlebars->119->657",
10826 - "default3.handlebars->117->668"
10826 + "default3.handlebars->117->653"
10827 ]
10828 },
10829 {
@@ -10897,7 +10897,7 @@
10897 "uk": "Сталася невідома помилка.",
10898 "xloc": [
10899 "default.handlebars->119->3151",
10900 - "default3.handlebars->117->3154"
10900 + "default3.handlebars->117->3141"
10901 ]
10902 },
10903 {
@@ -10964,7 +10964,7 @@
10964 "xloc": [
10965 "default-mobile.handlebars->53->988",
10966 "default.handlebars->119->658",
10967 - "default3.handlebars->117->669"
10967 + "default3.handlebars->117->654"
10968 ]
10969 },
10970 {
@@ -11058,7 +11058,7 @@
11058 "uk": "Android MeshAgent",
11059 "xloc": [
11060 "default.handlebars->119->595",
11061 - "default3.handlebars->117->606"
11061 + "default3.handlebars->117->591"
11062 ]
11063 },
11064 {
@@ -11069,7 +11069,7 @@
11069 "xloc": [
11070 "default-mobile.handlebars->53->813",
11071 "default.handlebars->119->1645",
11072 - "default3.handlebars->117->1645"
11072 + "default3.handlebars->117->1630"
11073 ]
11074 },
11075 {
@@ -11131,8 +11131,8 @@
11131 "xloc": [
11132 "default.handlebars->119->2481",
11133 "default.handlebars->119->2495",
11134 - "default3.handlebars->117->2493",
11135 - "default3.handlebars->117->2507"
11134 + "default3.handlebars->117->2478",
11135 + "default3.handlebars->117->2492"
11136 ]
11137 },
11138 {
@@ -11163,7 +11163,7 @@
11163 "xloc": [
11164 "default-mobile.handlebars->53->793",
11165 "default.handlebars->119->977",
11166 - "default3.handlebars->117->988"
11166 + "default3.handlebars->117->973"
11167 ]
11168 },
11169 {
@@ -11193,7 +11193,7 @@
11193 "zh-cht": "任何可支持的",
11194 "xloc": [
11195 "default.handlebars->119->563",
11196 - "default3.handlebars->117->574"
11196 + "default3.handlebars->117->559"
11197 ]
11198 },
11199 {
@@ -11284,7 +11284,7 @@
11284 "zh-cht": "蘋果macOS",
11285 "xloc": [
11286 "default.handlebars->119->605",
11287 - "default3.handlebars->117->616"
11287 + "default3.handlebars->117->601"
11288 ]
11289 },
11290 {
@@ -11294,7 +11294,7 @@
11294 "uk": "Apple macOS (Деінсталяція)",
11295 "xloc": [
11296 "default.handlebars->119->610",
11297 - "default3.handlebars->117->621"
11297 + "default3.handlebars->117->606"
11298 ]
11299 },
11300 {
@@ -11305,7 +11305,7 @@
11305 "xloc": [
11306 "agentinvite.handlebars->13->12",
11307 "default.handlebars->119->690",
11308 - "default3.handlebars->117->701"
11308 + "default3.handlebars->117->686"
11309 ]
11310 },
11311 {
@@ -11335,7 +11335,7 @@
11335 "zh-cht": "僅限Apple macOS",
11336 "xloc": [
11337 "default.handlebars->119->565",
11338 - "default3.handlebars->117->576"
11338 + "default3.handlebars->117->561"
11339 ]
11340 },
11341 {
@@ -11516,7 +11516,7 @@
11516 "zh-cht": "應用程序,始終連接",
11517 "xloc": [
11518 "default.handlebars->119->619",
11519 - "default3.handlebars->117->630"
11519 + "default3.handlebars->117->615"
11520 ]
11521 },
11522 {
@@ -11546,7 +11546,7 @@
11546 "zh-cht": "應用程序,根據用戶請求連接",
11547 "xloc": [
11548 "default.handlebars->119->618",
11549 - "default3.handlebars->117->629"
11549 + "default3.handlebars->117->614"
11550 ]
11551 },
11552 {
@@ -11577,7 +11577,7 @@
11577 "xloc": [
11578 "default-mobile.handlebars->53->118",
11579 "default.handlebars->119->1867",
11580 - "default3.handlebars->117->1863",
11580 + "default3.handlebars->117->1848",
11581 "login2.handlebars->17->4"
11582 ]
11583 },
@@ -11609,7 +11609,7 @@
11609 "xloc": [
11610 "default-mobile.handlebars->53->119",
11611 "default.handlebars->119->1868",
11612 - "default3.handlebars->117->1864",
11612 + "default3.handlebars->117->1849",
11613 "login2.handlebars->17->5"
11614 ]
11615 },
@@ -11641,7 +11641,7 @@
11641 "xloc": [
11642 "default-mobile.handlebars->53->120",
11643 "default.handlebars->119->1869",
11644 - "default3.handlebars->117->1865",
11644 + "default3.handlebars->117->1850",
11645 "login2.handlebars->17->6"
11646 ]
11647 },
@@ -11673,7 +11673,7 @@
11673 "xloc": [
11674 "default-mobile.handlebars->53->121",
11675 "default.handlebars->119->1870",
11676 - "default3.handlebars->117->1866",
11676 + "default3.handlebars->117->1851",
11677 "login2.handlebars->17->7"
11678 ]
11679 },
@@ -11705,7 +11705,7 @@
11705 "xloc": [
11706 "default-mobile.handlebars->53->122",
11707 "default.handlebars->119->1871",
11708 - "default3.handlebars->117->1867",
11708 + "default3.handlebars->117->1852",
11709 "login2.handlebars->17->8"
11710 ]
11711 },
@@ -11737,7 +11737,7 @@
11737 "xloc": [
11738 "default-mobile.handlebars->53->123",
11739 "default.handlebars->119->1872",
11740 - "default3.handlebars->117->1868",
11740 + "default3.handlebars->117->1853",
11741 "login2.handlebars->17->9"
11742 ]
11743 },
@@ -11769,7 +11769,7 @@
11769 "xloc": [
11770 "default-mobile.handlebars->53->124",
11771 "default.handlebars->119->1873",
11772 - "default3.handlebars->117->1869",
11772 + "default3.handlebars->117->1854",
11773 "login2.handlebars->17->10"
11774 ]
11775 },
@@ -11801,7 +11801,7 @@
11801 "xloc": [
11802 "default-mobile.handlebars->53->125",
11803 "default.handlebars->119->1874",
11804 - "default3.handlebars->117->1870",
11804 + "default3.handlebars->117->1855",
11805 "login2.handlebars->17->11"
11806 ]
11807 },
@@ -11833,7 +11833,7 @@
11833 "xloc": [
11834 "default-mobile.handlebars->53->126",
11835 "default.handlebars->119->1875",
11836 - "default3.handlebars->117->1871",
11836 + "default3.handlebars->117->1856",
11837 "login2.handlebars->17->12"
11838 ]
11839 },
@@ -11865,7 +11865,7 @@
11865 "xloc": [
11866 "default-mobile.handlebars->53->127",
11867 "default.handlebars->119->1876",
11868 - "default3.handlebars->117->1872",
11868 + "default3.handlebars->117->1857",
11869 "login2.handlebars->17->13"
11870 ]
11871 },
@@ -11897,7 +11897,7 @@
11897 "xloc": [
11898 "default-mobile.handlebars->53->128",
11899 "default.handlebars->119->1877",
11900 - "default3.handlebars->117->1873",
11900 + "default3.handlebars->117->1858",
11901 "login2.handlebars->17->14"
11902 ]
11903 },
@@ -11929,7 +11929,7 @@
11929 "xloc": [
11930 "default-mobile.handlebars->53->129",
11931 "default.handlebars->119->1878",
11932 - "default3.handlebars->117->1874",
11932 + "default3.handlebars->117->1859",
11933 "login2.handlebars->17->15"
11934 ]
11935 },
@@ -11961,7 +11961,7 @@
11961 "xloc": [
11962 "default-mobile.handlebars->53->117",
11963 "default.handlebars->119->1866",
11964 - "default3.handlebars->117->1862",
11964 + "default3.handlebars->117->1847",
11965 "login2.handlebars->17->3"
11966 ]
11967 },
@@ -11993,7 +11993,7 @@
11993 "xloc": [
11994 "default-mobile.handlebars->53->130",
11995 "default.handlebars->119->1879",
11996 - "default3.handlebars->117->1875",
11996 + "default3.handlebars->117->1860",
11997 "login2.handlebars->17->16"
11998 ]
11999 },
@@ -12025,7 +12025,7 @@
12025 "xloc": [
12026 "default-mobile.handlebars->53->131",
12027 "default.handlebars->119->1880",
12028 - "default3.handlebars->117->1876",
12028 + "default3.handlebars->117->1861",
12029 "login2.handlebars->17->17"
12030 ]
12031 },
@@ -12057,7 +12057,7 @@
12057 "xloc": [
12058 "default-mobile.handlebars->53->132",
12059 "default.handlebars->119->1881",
12060 - "default3.handlebars->117->1877",
12060 + "default3.handlebars->117->1862",
12061 "login2.handlebars->17->18"
12062 ]
12063 },
@@ -12089,7 +12089,7 @@
12089 "xloc": [
12090 "default-mobile.handlebars->53->133",
12091 "default.handlebars->119->1882",
12092 - "default3.handlebars->117->1878",
12092 + "default3.handlebars->117->1863",
12093 "login2.handlebars->17->19"
12094 ]
12095 },
@@ -12121,7 +12121,7 @@
12121 "xloc": [
12122 "default-mobile.handlebars->53->134",
12123 "default.handlebars->119->1883",
12124 - "default3.handlebars->117->1879",
12124 + "default3.handlebars->117->1864",
12125 "login2.handlebars->17->20"
12126 ]
12127 },
@@ -12157,9 +12157,9 @@
12157 "default.handlebars->119->1621",
12158 "default.handlebars->119->1623",
12159 "default.handlebars->119->1625",
12160 - "default3.handlebars->117->1621",
12161 - "default3.handlebars->117->1623",
12162 - "default3.handlebars->117->1625"
12160 + "default3.handlebars->117->1606",
12161 + "default3.handlebars->117->1608",
12162 + "default3.handlebars->117->1610"
12163 ]
12164 },
12165 {
@@ -12189,7 +12189,7 @@
12189 "zh-cht": "你確定要連接到{0}裝置嗎?",
12190 "xloc": [
12191 "default.handlebars->119->490",
12192 - "default3.handlebars->117->501"
12192 + "default3.handlebars->117->486"
12193 ]
12194 },
12195 {
@@ -12220,7 +12220,7 @@
12220 "xloc": [
12221 "default-mobile.handlebars->53->976",
12222 "default.handlebars->119->2323",
12223 - "default3.handlebars->117->2332"
12223 + "default3.handlebars->117->2317"
12224 ]
12225 },
12226 {
@@ -12250,7 +12250,7 @@
12250 "zh-cht": "你確定要刪除節點{0}嗎?",
12251 "xloc": [
12252 "default.handlebars->119->1339",
12253 - "default3.handlebars->117->1343"
12253 + "default3.handlebars->117->1328"
12254 ]
12255 },
12256 {
@@ -12264,7 +12264,7 @@
12264 "uk": "Ви впевнені, що бажаєте відкрити цей файл/теку на робочому столі віддаленого пристрою?",
12265 "xloc": [
12266 "default.handlebars->119->1561",
12267 - "default3.handlebars->117->1561"
12267 + "default3.handlebars->117->1546"
12268 ]
12269 },
12270 {
@@ -12294,7 +12294,7 @@
12294 "zh-cht": "你確定要卸載所選代理嗎?",
12295 "xloc": [
12296 "default.handlebars->119->1328",
12297 - "default3.handlebars->117->1333"
12297 + "default3.handlebars->117->1318"
12298 ]
12299 },
12300 {
@@ -12324,7 +12324,7 @@
12324 "zh-cht": "你確定要卸載所選的{0}代理嗎?",
12325 "xloc": [
12326 "default.handlebars->119->1327",
12327 - "default3.handlebars->117->1332"
12327 + "default3.handlebars->117->1317"
12328 ]
12329 },
12330 {
@@ -12354,7 +12354,7 @@
12354 "zh-cht": "你確定要{0}外掛嗎:{1}",
12355 "xloc": [
12356 "default.handlebars->119->3455",
12357 - "default3.handlebars->117->3460"
12357 + "default3.handlebars->117->3445"
12358 ]
12359 },
12360 {
@@ -12416,7 +12416,7 @@
12416 "xloc": [
12417 "default-mobile.handlebars->53->135",
12418 "default.handlebars->119->1884",
12419 - "default3.handlebars->117->1880",
12419 + "default3.handlebars->117->1865",
12420 "login2.handlebars->17->21"
12421 ]
12422 },
@@ -12630,7 +12630,7 @@
12630 "xloc": [
12631 "default-mobile.handlebars->53->136",
12632 "default.handlebars->119->1885",
12633 - "default3.handlebars->117->1881",
12633 + "default3.handlebars->117->1866",
12634 "login2.handlebars->17->22"
12635 ]
12636 },
@@ -12749,8 +12749,8 @@
12749 "xloc": [
12750 "default.handlebars->119->664",
12751 "default.handlebars->119->668",
12752 - "default3.handlebars->117->675",
12753 - "default3.handlebars->117->679"
12752 + "default3.handlebars->117->660",
12753 + "default3.handlebars->117->664"
12754 ]
12755 },
12756 {
@@ -12810,7 +12810,7 @@
12810 "xloc": [
12811 "default-mobile.handlebars->53->137",
12812 "default.handlebars->119->1886",
12813 - "default3.handlebars->117->1882",
12813 + "default3.handlebars->117->1867",
12814 "login2.handlebars->17->23"
12815 ]
12816 },
@@ -12841,7 +12841,7 @@
12841 "zh-cht": "嘗試激活英特爾(R)AMT ACM模式",
12842 "xloc": [
12843 "default.handlebars->119->2574",
12844 - "default3.handlebars->117->2586"
12844 + "default3.handlebars->117->2571"
12845 ]
12846 },
12847 {
@@ -12902,9 +12902,9 @@
12902 "default.handlebars->119->1514",
12903 "default.handlebars->119->1518",
12904 "default.handlebars->119->1530",
12905 - "default3.handlebars->117->1514",
12906 - "default3.handlebars->117->1518",
12907 - "default3.handlebars->117->1530",
12905 + "default3.handlebars->117->1499",
12906 + "default3.handlebars->117->1503",
12907 + "default3.handlebars->117->1515",
12908 "sharing-mobile.handlebars->53->47",
12909 "sharing-mobile.handlebars->53->56",
12910 "sharing-mobile.handlebars->53->64",
@@ -12942,7 +12942,7 @@
12942 "zh-cht": "認證軟體",
12943 "xloc": [
12944 "default.handlebars->119->3016",
12945 - "default3.handlebars->117->3025"
12945 + "default3.handlebars->117->3010"
12946 ]
12947 },
12948 {
@@ -12974,9 +12974,9 @@
12974 "default.handlebars->119->1847",
12975 "default.handlebars->119->1849",
12976 "default.handlebars->119->1853",
12977 - "default3.handlebars->117->1844",
12978 - "default3.handlebars->117->1846",
12979 - "default3.handlebars->117->1849"
12977 + "default3.handlebars->117->1829",
12978 + "default3.handlebars->117->1831",
12979 + "default3.handlebars->117->1834"
12980 ]
12981 },
12982 {
@@ -13009,8 +13009,8 @@
13009 "default-mobile.handlebars->53->717",
13010 "default.handlebars->119->1532",
13011 "default.handlebars->119->1547",
13012 + "default3.handlebars->117->1517",
13013 "default3.handlebars->117->1532",
13013 - "default3.handlebars->117->1547",
13014 "sharing-mobile.handlebars->53->57",
13015 "sharing-mobile.handlebars->53->74"
13016 ]
@@ -13049,10 +13049,10 @@
13049 "default.handlebars->119->1845",
13050 "default.handlebars->119->230",
13051 "default.handlebars->119->235",
13052 - "default3.handlebars->117->1840",
13053 - "default3.handlebars->117->1842",
13054 - "default3.handlebars->117->242",
13055 - "default3.handlebars->117->247"
13052 + "default3.handlebars->117->1825",
13053 + "default3.handlebars->117->1827",
13054 + "default3.handlebars->117->227",
13055 + "default3.handlebars->117->232"
13056 ]
13057 },
13058 {
@@ -13083,7 +13083,7 @@
13083 "xloc": [
13084 "default-mobile.handlebars->53->76",
13085 "default.handlebars->119->231",
13086 - "default3.handlebars->117->243"
13086 + "default3.handlebars->117->228"
13087 ]
13088 },
13089 {
@@ -13114,7 +13114,7 @@
13114 "xloc": [
13115 "default-mobile.handlebars->53->81",
13116 "default.handlebars->119->236",
13117 - "default3.handlebars->117->248"
13117 + "default3.handlebars->117->233"
13118 ]
13119 },
13120 {
@@ -13204,8 +13204,8 @@
13204 "xloc": [
13205 "default.handlebars->119->2201",
13206 "default.handlebars->119->2719",
13207 - "default3.handlebars->117->2212",
13208 - "default3.handlebars->117->2731"
13207 + "default3.handlebars->117->2197",
13208 + "default3.handlebars->117->2716"
13209 ]
13210 },
13211 {
@@ -13272,7 +13272,7 @@
13272 "zh-cht": "自動下載代理程序核心轉儲文件:“{0}”",
13273 "xloc": [
13274 "default.handlebars->119->2655",
13275 - "default3.handlebars->117->2667"
13275 + "default3.handlebars->117->2652"
13276 ]
13277 },
13278 {
@@ -13390,7 +13390,7 @@
13390 "zh-cht": "自動移除非活動設備",
13391 "xloc": [
13392 "default.handlebars->119->2353",
13393 - "default3.handlebars->117->2365"
13393 + "default3.handlebars->117->2350"
13394 ]
13395 },
13396 {
@@ -13420,7 +13420,7 @@
13420 "zh-cht": "可用內存",
13421 "xloc": [
13422 "default.handlebars->119->3383",
13423 - "default3.handlebars->117->3388"
13423 + "default3.handlebars->117->3373"
13424 ]
13425 },
13426 {
@@ -13451,7 +13451,7 @@
13451 "xloc": [
13452 "default-mobile.handlebars->53->138",
13453 "default.handlebars->119->1887",
13454 - "default3.handlebars->117->1883",
13454 + "default3.handlebars->117->1868",
13455 "login2.handlebars->17->24"
13456 ]
13457 },
@@ -13490,12 +13490,12 @@
13490 "default.handlebars->119->954",
13491 "default.handlebars->119->958",
13492 "default.handlebars->119->962",
13493 - "default3.handlebars->117->447",
13494 - "default3.handlebars->117->449",
13495 - "default3.handlebars->117->451",
13496 - "default3.handlebars->117->965",
13497 - "default3.handlebars->117->969",
13498 - "default3.handlebars->117->973"
13493 + "default3.handlebars->117->432",
13494 + "default3.handlebars->117->434",
13495 + "default3.handlebars->117->436",
13496 + "default3.handlebars->117->950",
13497 + "default3.handlebars->117->954",
13498 + "default3.handlebars->117->958"
13499 ]
13500 },
13501 {
@@ -13526,7 +13526,7 @@
13526 "xloc": [
13527 "default-mobile.handlebars->53->855",
13528 "default.handlebars->119->1697",
13529 - "default3.handlebars->117->1695"
13529 + "default3.handlebars->117->1680"
13530 ]
13531 },
13532 {
@@ -13666,7 +13666,7 @@
13666 "xloc": [
13667 "default-mobile.handlebars->53->659",
13668 "default.handlebars->119->1429",
13669 - "default3.handlebars->117->1431",
13669 + "default3.handlebars->117->1416",
13670 "sharing-mobile.handlebars->53->17"
13671 ]
13672 },
@@ -13698,7 +13698,7 @@
13698 "xloc": [
13699 "agentinvite.handlebars->13->8",
13700 "default.handlebars->119->614",
13701 - "default3.handlebars->117->625"
13701 + "default3.handlebars->117->610"
13702 ]
13703 },
13704 {
@@ -13731,10 +13731,10 @@
13731 "default.handlebars->119->2459",
13732 "default.handlebars->119->576",
13733 "default.handlebars->119->597",
13734 - "default3.handlebars->117->2464",
13735 - "default3.handlebars->117->2471",
13736 - "default3.handlebars->117->587",
13737 - "default3.handlebars->117->608"
13734 + "default3.handlebars->117->2449",
13735 + "default3.handlebars->117->2456",
13736 + "default3.handlebars->117->572",
13737 + "default3.handlebars->117->593"
13738 ]
13739 },
13740 {
@@ -13769,11 +13769,11 @@
13769 "default.handlebars->119->577",
13770 "default.handlebars->119->598",
13771 "default.handlebars->119->615",
13772 - "default3.handlebars->117->2465",
13773 - "default3.handlebars->117->2473",
13774 - "default3.handlebars->117->588",
13775 - "default3.handlebars->117->609",
13776 - "default3.handlebars->117->626"
13772 + "default3.handlebars->117->2450",
13773 + "default3.handlebars->117->2458",
13774 + "default3.handlebars->117->573",
13775 + "default3.handlebars->117->594",
13776 + "default3.handlebars->117->611"
13777 ]
13778 },
13779 {
@@ -13835,8 +13835,8 @@
13835 "xloc": [
13836 "default.handlebars->119->3020",
13837 "default.handlebars->119->3259",
13838 - "default3.handlebars->117->3029",
13839 - "default3.handlebars->117->3262"
13838 + "default3.handlebars->117->3014",
13839 + "default3.handlebars->117->3249"
13840 ]
13841 },
13842 {
@@ -13867,7 +13867,7 @@
13867 "xloc": [
13868 "default-mobile.handlebars->53->66",
13869 "default.handlebars->119->219",
13870 - "default3.handlebars->117->231"
13870 + "default3.handlebars->117->216"
13871 ]
13872 },
13873 {
@@ -13897,7 +13897,7 @@
13897 "zh-cht": "備份路徑不能在 meshcentral-data 文件夾中設置,備份設置被忽略。",
13898 "xloc": [
13899 "default.handlebars->119->114",
13900 - "default3.handlebars->117->127"
13900 + "default3.handlebars->117->112"
13901 ]
13902 },
13903 {
@@ -13927,7 +13927,7 @@
13927 "zh-cht": "錯誤的簽名",
13928 "xloc": [
13929 "default.handlebars->119->3364",
13930 - "default3.handlebars->117->3369"
13930 + "default3.handlebars->117->3354"
13931 ]
13932 },
13933 {
@@ -13957,7 +13957,7 @@
13957 "zh-cht": "錯誤的網絡憑證",
13958 "xloc": [
13959 "default.handlebars->119->3363",
13960 - "default3.handlebars->117->3368"
13960 + "default3.handlebars->117->3353"
13961 ]
13962 },
13963 {
@@ -13988,7 +13988,7 @@
13988 "xloc": [
13989 "default-mobile.handlebars->53->139",
13990 "default.handlebars->119->1888",
13991 - "default3.handlebars->117->1884",
13991 + "default3.handlebars->117->1869",
13992 "login2.handlebars->17->25"
13993 ]
13994 },
@@ -14019,7 +14019,7 @@
14019 "zh-cht": "批處理文件上傳",
14020 "xloc": [
14021 "default.handlebars->119->795",
14022 - "default3.handlebars->117->806"
14022 + "default3.handlebars->117->791"
14023 ]
14024 },
14025 {
@@ -14094,7 +14094,7 @@
14094 "zh-cht": "將{0}個文件批量上傳到文件夾{1}",
14095 "xloc": [
14096 "default.handlebars->119->2654",
14097 - "default3.handlebars->117->2666"
14097 + "default3.handlebars->117->2651"
14098 ]
14099 },
14100 {
@@ -14125,7 +14125,7 @@
14125 "xloc": [
14126 "default-mobile.handlebars->53->141",
14127 "default.handlebars->119->1890",
14128 - "default3.handlebars->117->1886",
14128 + "default3.handlebars->117->1871",
14129 "login2.handlebars->17->27"
14130 ]
14131 },
@@ -14157,7 +14157,7 @@
14157 "xloc": [
14158 "default-mobile.handlebars->53->142",
14159 "default.handlebars->119->1891",
14160 - "default3.handlebars->117->1887",
14160 + "default3.handlebars->117->1872",
14161 "login2.handlebars->17->28"
14162 ]
14163 },
@@ -14227,7 +14227,7 @@
14227 "xloc": [
14228 "default-mobile.handlebars->53->911",
14229 "default.handlebars->119->1753",
14230 - "default3.handlebars->117->1751"
14230 + "default3.handlebars->117->1736"
14231 ]
14232 },
14233 {
@@ -14239,7 +14239,7 @@
14239 "xloc": [
14240 "default-mobile.handlebars->53->932",
14241 "default.handlebars->119->1774",
14242 - "default3.handlebars->117->1772"
14242 + "default3.handlebars->117->1757"
14243 ]
14244 },
14245 {
@@ -14270,7 +14270,7 @@
14270 "xloc": [
14271 "default-mobile.handlebars->53->810",
14272 "default.handlebars->119->1642",
14273 - "default3.handlebars->117->1642"
14273 + "default3.handlebars->117->1627"
14274 ]
14275 },
14276 {
@@ -14301,7 +14301,7 @@
14301 "xloc": [
14302 "default-mobile.handlebars->53->143",
14303 "default.handlebars->119->1892",
14304 - "default3.handlebars->117->1888",
14304 + "default3.handlebars->117->1873",
14305 "login2.handlebars->17->29"
14306 ]
14307 },
@@ -14333,7 +14333,7 @@
14333 "xloc": [
14334 "default-mobile.handlebars->53->144",
14335 "default.handlebars->119->1893",
14336 - "default3.handlebars->117->1889",
14336 + "default3.handlebars->117->1874",
14337 "login2.handlebars->17->30"
14338 ]
14339 },
@@ -14365,7 +14365,7 @@
14365 "xloc": [
14366 "default.handlebars->119->2914",
14367 "default.handlebars->container->column_l->p4->3->1->0->3->1",
14368 - "default3.handlebars->117->2923",
14368 + "default3.handlebars->117->2908",
14369 "default3.handlebars->container->column_l->p4->3->1->0->1->3"
14370 ]
14371 },
@@ -14396,7 +14396,7 @@
14396 "zh-cht": "廣播消息",
14397 "xloc": [
14398 "default.handlebars->119->2830",
14399 - "default3.handlebars->117->2841"
14399 + "default3.handlebars->117->2826"
14400 ]
14401 },
14402 {
@@ -14426,7 +14426,7 @@
14426 "zh-cht": "向所有連接的用戶廣播消息。",
14427 "xloc": [
14428 "default.handlebars->119->2825",
14429 - "default3.handlebars->117->2836"
14429 + "default3.handlebars->117->2821"
14430 ]
14431 },
14432 {
@@ -14456,7 +14456,7 @@
14456 "zh-cht": "瀏覽器",
14457 "xloc": [
14458 "default.handlebars->119->3230",
14459 - "default3.handlebars->117->3233"
14459 + "default3.handlebars->117->3220"
14460 ]
14461 },
14462 {
@@ -14517,7 +14517,7 @@
14517 "xloc": [
14518 "default-mobile.handlebars->53->103",
14519 "default.handlebars->119->66",
14520 - "default3.handlebars->117->79"
14520 + "default3.handlebars->117->64"
14521 ]
14522 },
14523 {
@@ -14548,7 +14548,7 @@
14548 "xloc": [
14549 "default-mobile.handlebars->53->140",
14550 "default.handlebars->119->1889",
14551 - "default3.handlebars->117->1885",
14551 + "default3.handlebars->117->1870",
14552 "login2.handlebars->17->26"
14553 ]
14554 },
@@ -14580,7 +14580,7 @@
14580 "xloc": [
14581 "default-mobile.handlebars->53->145",
14582 "default.handlebars->119->1894",
14583 - "default3.handlebars->117->1890",
14583 + "default3.handlebars->117->1875",
14584 "login2.handlebars->17->31"
14585 ]
14586 },
@@ -14611,7 +14611,7 @@
14611 "zh-cht": "默認情況下,非活動設備將在 1 天后移除。",
14612 "xloc": [
14613 "default.handlebars->119->2355",
14614 - "default3.handlebars->117->2367"
14614 + "default3.handlebars->117->2352"
14615 ]
14616 },
14617 {
@@ -14641,7 +14641,7 @@
14641 "zh-cht": "默認情況下,不活動的設備將在 {0} 天后被移除。",
14642 "xloc": [
14643 "default.handlebars->119->2356",
14644 - "default3.handlebars->117->2368"
14644 + "default3.handlebars->117->2353"
14645 ]
14646 },
14647 {
@@ -14684,7 +14684,7 @@
14684 "zh-cht": "字節輸入",
14685 "xloc": [
14686 "default.handlebars->119->3226",
14687 - "default3.handlebars->117->3229"
14687 + "default3.handlebars->117->3216"
14688 ]
14689 },
14690 {
@@ -14714,7 +14714,7 @@
14714 "zh-cht": "字節輸出",
14715 "xloc": [
14716 "default.handlebars->119->3227",
14717 - "default3.handlebars->117->3230"
14717 + "default3.handlebars->117->3217"
14718 ]
14719 },
14720 {
@@ -14793,8 +14793,8 @@
14793 "default-mobile.handlebars->53->522",
14794 "default.handlebars->119->446",
14795 "default.handlebars->119->930",
14796 - "default3.handlebars->117->457",
14797 - "default3.handlebars->117->941"
14796 + "default3.handlebars->117->442",
14797 + "default3.handlebars->117->926"
14798 ]
14799 },
14800 {
@@ -14824,7 +14824,7 @@
14824 "zh-cht": "CCM模式",
14825 "xloc": [
14826 "default.handlebars->119->2306",
14827 - "default3.handlebars->117->2315"
14827 + "default3.handlebars->117->2300"
14828 ]
14829 },
14830 {
@@ -14838,9 +14838,9 @@
14838 "default.handlebars->119->1746",
14839 "default.handlebars->119->1758",
14840 "default.handlebars->119->1765",
14841 - "default3.handlebars->117->1744",
14842 - "default3.handlebars->117->1756",
14843 - "default3.handlebars->117->1763"
14841 + "default3.handlebars->117->1729",
14842 + "default3.handlebars->117->1741",
14843 + "default3.handlebars->117->1748"
14844 ]
14845 },
14846 {
@@ -14873,9 +14873,9 @@
14873 "default.handlebars->119->3390",
14874 "default.handlebars->119->424",
14875 "default.handlebars->119->731",
14876 - "default3.handlebars->117->3395",
14877 - "default3.handlebars->117->435",
14878 - "default3.handlebars->117->742"
14876 + "default3.handlebars->117->3380",
14877 + "default3.handlebars->117->420",
14878 + "default3.handlebars->117->727"
14879 ]
14880 },
14881 {
@@ -14905,7 +14905,7 @@
14905 "zh-cht": "CIRA伺服器",
14906 "xloc": [
14907 "default.handlebars->119->3439",
14908 - "default3.handlebars->117->3444"
14908 + "default3.handlebars->117->3429"
14909 ]
14910 },
14911 {
@@ -14935,7 +14935,7 @@
14935 "zh-cht": "CIRA伺服器指令",
14936 "xloc": [
14937 "default.handlebars->119->3440",
14938 - "default3.handlebars->117->3445"
14938 + "default3.handlebars->117->3430"
14939 ]
14940 },
14941 {
@@ -14965,7 +14965,7 @@
14965 "zh-cht": "當服務器處於僅 LAN 或僅 WAN 模式時,CIRA 本地 FQDN 將被忽略。",
14966 "xloc": [
14967 "default.handlebars->119->100",
14968 - "default3.handlebars->117->113"
14968 + "default3.handlebars->117->98"
14969 ]
14970 },
14971 {
@@ -14995,7 +14995,7 @@
14995 "zh-cht": "CIRA設置",
14996 "xloc": [
14997 "default.handlebars->119->2314",
14998 - "default3.handlebars->117->2322"
14998 + "default3.handlebars->117->2307"
14999 ]
15000 },
15001 {
@@ -15029,9 +15029,9 @@
15029 "default.handlebars->119->1703",
15030 "default.handlebars->119->3415",
15031 "default.handlebars->container->column_l->p40->3->1->p40type->5",
15032 - "default3.handlebars->117->1616",
15033 - "default3.handlebars->117->1701",
15034 - "default3.handlebars->117->3420",
15032 + "default3.handlebars->117->1601",
15033 + "default3.handlebars->117->1686",
15034 + "default3.handlebars->117->3405",
15035 "default3.handlebars->container->column_l->p40->3->3->p40type->5"
15036 ]
15037 },
@@ -15062,7 +15062,7 @@
15062 "zh-cht": "CPU負載",
15063 "xloc": [
15064 "default.handlebars->119->3379",
15065 - "default3.handlebars->117->3384"
15065 + "default3.handlebars->117->3369"
15066 ]
15067 },
15068 {
@@ -15092,7 +15092,7 @@
15092 "zh-cht": "最近15分鐘的CPU負載",
15093 "xloc": [
15094 "default.handlebars->119->3382",
15095 - "default3.handlebars->117->3387"
15095 + "default3.handlebars->117->3372"
15096 ]
15097 },
15098 {
@@ -15122,7 +15122,7 @@
15122 "zh-cht": "最近5分鐘的CPU負載",
15123 "xloc": [
15124 "default.handlebars->119->3381",
15125 - "default3.handlebars->117->3386"
15125 + "default3.handlebars->117->3371"
15126 ]
15127 },
15128 {
@@ -15152,7 +15152,7 @@
15152 "zh-cht": "最近一分鐘的CPU負載",
15153 "xloc": [
15154 "default.handlebars->119->3380",
15155 - "default3.handlebars->117->3385"
15155 + "default3.handlebars->117->3370"
15156 ]
15157 },
15158 {
@@ -15184,8 +15184,8 @@
15184 "default.handlebars->119->1510",
15185 "default.handlebars->119->1541",
15186 "default.handlebars->container->column_l->p12->termTable->1->1->4->1->1->terminalSettingsButtons",
15187 - "default3.handlebars->117->1510",
15188 - "default3.handlebars->117->1541",
15187 + "default3.handlebars->117->1495",
15188 + "default3.handlebars->117->1526",
15189 "default3.handlebars->container->column_l->p12->termTable->1->1->4->1->3->terminalSettingsButtons",
15190 "sharing.handlebars->47->25",
15191 "sharing.handlebars->47->39",
@@ -15219,7 +15219,7 @@
15219 "zh-cht": "CSV",
15220 "xloc": [
15221 "default.handlebars->119->2736",
15222 - "default3.handlebars->117->2748"
15222 + "default3.handlebars->117->2733"
15223 ]
15224 },
15225 {
@@ -15251,9 +15251,9 @@
15251 "default.handlebars->119->2740",
15252 "default.handlebars->119->2817",
15253 "default.handlebars->119->804",
15254 - "default3.handlebars->117->2752",
15255 - "default3.handlebars->117->2828",
15256 - "default3.handlebars->117->815"
15254 + "default3.handlebars->117->2737",
15255 + "default3.handlebars->117->2813",
15256 + "default3.handlebars->117->800"
15257 ]
15258 },
15259 {
@@ -15263,7 +15263,7 @@
15263 "uk": "Формат файлу CSV нижче:",
15264 "xloc": [
15265 "default.handlebars->119->2803",
15266 - "default3.handlebars->117->2814"
15266 + "default3.handlebars->117->2799"
15267 ]
15268 },
15269 {
@@ -15319,7 +15319,7 @@
15319 "zh-cht": "呼叫錯誤",
15320 "xloc": [
15321 "default.handlebars->119->3456",
15322 - "default3.handlebars->117->3461"
15322 + "default3.handlebars->117->3446"
15323 ]
15324 },
15325 {
@@ -15334,8 +15334,8 @@
15334 "xloc": [
15335 "default.handlebars->119->1812",
15336 "default.handlebars->119->3055",
15337 - "default3.handlebars->117->1809",
15338 - "default3.handlebars->117->3064"
15337 + "default3.handlebars->117->1794",
15338 + "default3.handlebars->117->3049"
15339 ]
15340 },
15341 {
@@ -15365,7 +15365,7 @@
15365 "zh-cht": "不能有超過 4 個 CIRA 本地 FQDN。忽略價值。",
15366 "xloc": [
15367 "default.handlebars->119->101",
15368 - "default3.handlebars->117->114"
15368 + "default3.handlebars->117->99"
15369 ]
15370 },
15371 {
@@ -15401,7 +15401,7 @@
15401 "default.handlebars->119->3445",
15402 "default.handlebars->119->549",
15403 "default.handlebars->container->dialog->idx_dlgButtonBar",
15404 - "default3.handlebars->117->560",
15404 + "default3.handlebars->117->545",
15405 "default3.handlebars->container->xxAddAgentModal->xxAddAgentModalConf->1->5->idx_dlgCancelButton",
15406 "login-mobile.handlebars->dialog->idx_dlgButtonBar",
15407 "login.handlebars->dialog->idx_dlgButtonBar",
@@ -15537,14 +15537,14 @@
15537 "default.handlebars->119->1743",
15538 "default.handlebars->119->1755",
15539 "default.handlebars->119->1762",
15540 - "default3.handlebars->117->1719",
15541 - "default3.handlebars->117->1725",
15542 - "default3.handlebars->117->1731",
15543 - "default3.handlebars->117->1736",
15540 + "default3.handlebars->117->1704",
15541 + "default3.handlebars->117->1710",
15542 + "default3.handlebars->117->1716",
15543 + "default3.handlebars->117->1721",
15544 + "default3.handlebars->117->1723",
15545 + "default3.handlebars->117->1726",
15546 "default3.handlebars->117->1738",
15545 - "default3.handlebars->117->1741",
15546 - "default3.handlebars->117->1753",
15547 - "default3.handlebars->117->1760"
15547 + "default3.handlebars->117->1745"
15548 ]
15549 },
15550 {
@@ -15579,9 +15579,9 @@
15579 "default.handlebars->119->1719",
15580 "default.handlebars->119->1725",
15581 "default.handlebars->119->1731",
15582 - "default3.handlebars->117->1717",
15583 - "default3.handlebars->117->1723",
15584 - "default3.handlebars->117->1729"
15582 + "default3.handlebars->117->1702",
15583 + "default3.handlebars->117->1708",
15584 + "default3.handlebars->117->1714"
15585 ]
15586 },
15587 {
@@ -15596,9 +15596,9 @@
15596 "default.handlebars->119->1744",
15597 "default.handlebars->119->1756",
15598 "default.handlebars->119->1763",
15599 - "default3.handlebars->117->1742",
15600 - "default3.handlebars->117->1754",
15601 - "default3.handlebars->117->1761"
15599 + "default3.handlebars->117->1727",
15600 + "default3.handlebars->117->1739",
15601 + "default3.handlebars->117->1746"
15602 ]
15603 },
15604 {
@@ -15629,7 +15629,7 @@
15629 "xloc": [
15630 "default-mobile.handlebars->53->146",
15631 "default.handlebars->119->1895",
15632 - "default3.handlebars->117->1891",
15632 + "default3.handlebars->117->1876",
15633 "login2.handlebars->17->32"
15634 ]
15635 },
@@ -15660,7 +15660,7 @@
15660 "zh-cht": "在這裡為中心顯示地圖",
15661 "xloc": [
15662 "default.handlebars->119->883",
15663 - "default3.handlebars->117->894"
15663 + "default3.handlebars->117->879"
15664 ]
15665 },
15666 {
@@ -15718,15 +15718,15 @@
15718 "default-mobile.handlebars->53->63",
15719 "default.handlebars->119->124",
15720 "default.handlebars->119->125",
15721 - "default3.handlebars->117->137",
15722 - "default3.handlebars->117->138"
15721 + "default3.handlebars->117->122",
15722 + "default3.handlebars->117->123"
15723 ]
15724 },
15725 {
15726 "en": "Cerulean",
15727 "nl": "Hemelsblauw",
15728 "xloc": [
15729 - "default3.handlebars->117->2105"
15729 + "default3.handlebars->117->2090"
15730 ]
15731 },
15732 {
@@ -15757,7 +15757,7 @@
15757 "xloc": [
15758 "default-mobile.handlebars->53->147",
15759 "default.handlebars->119->1896",
15760 - "default3.handlebars->117->1892",
15760 + "default3.handlebars->117->1877",
15761 "login2.handlebars->17->33"
15762 ]
15763 },
@@ -15819,7 +15819,7 @@
15819 "zh-cht": "更改{0}的電郵",
15820 "xloc": [
15821 "default.handlebars->119->3097",
15822 - "default3.handlebars->117->3104"
15822 + "default3.handlebars->117->3089"
15823 ]
15824 },
15825 {
@@ -15851,9 +15851,9 @@
15851 "default.handlebars->119->1047",
15852 "default.handlebars->119->1336",
15853 "default.handlebars->119->1337",
15854 - "default3.handlebars->117->1058",
15855 - "default3.handlebars->117->1341",
15856 - "default3.handlebars->117->1342"
15854 + "default3.handlebars->117->1043",
15855 + "default3.handlebars->117->1326",
15856 + "default3.handlebars->117->1327"
15857 ]
15858 },
15859 {
@@ -15900,8 +15900,8 @@
15900 "default-mobile.handlebars->53->339",
15901 "default.handlebars->119->2112",
15902 "default.handlebars->119->3041",
15903 - "default3.handlebars->117->2103",
15904 - "default3.handlebars->117->3050"
15903 + "default3.handlebars->117->2088",
15904 + "default3.handlebars->117->3035"
15905 ]
15906 },
15907 {
@@ -15931,7 +15931,7 @@
15931 "zh-cht": "更改{0}的密碼",
15932 "xloc": [
15933 "default.handlebars->119->3106",
15934 - "default3.handlebars->117->3109"
15934 + "default3.handlebars->117->3094"
15935 ]
15936 },
15937 {
@@ -15961,7 +15961,7 @@
15961 "zh-cht": "更改{0}的真實名稱",
15962 "xloc": [
15963 "default.handlebars->119->3092",
15964 - "default3.handlebars->117->3100"
15964 + "default3.handlebars->117->3085"
15965 ]
15966 },
15967 {
@@ -16139,7 +16139,7 @@
16139 "zh-cht": "更改該用戶的密碼",
16140 "xloc": [
16141 "default.handlebars->119->3040",
16142 - "default3.handlebars->117->3049"
16142 + "default3.handlebars->117->3034"
16143 ]
16144 },
16145 {
@@ -16199,7 +16199,7 @@
16199 "zh-cht": "在此處更改你的帳戶電郵地址。",
16200 "xloc": [
16201 "default.handlebars->119->2099",
16202 - "default3.handlebars->117->2096"
16202 + "default3.handlebars->117->2081"
16203 ]
16204 },
16205 {
@@ -16229,7 +16229,7 @@
16229 "zh-cht": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。",
16230 "xloc": [
16231 "default.handlebars->119->2105",
16232 - "default3.handlebars->117->2100"
16232 + "default3.handlebars->117->2085"
16233 ]
16234 },
16235 {
@@ -16259,7 +16259,7 @@
16259 "zh-cht": "帳戶憑證已更改",
16260 "xloc": [
16261 "default.handlebars->119->2626",
16262 - "default3.handlebars->117->2638"
16262 + "default3.handlebars->117->2623"
16263 ]
16264 },
16265 {
@@ -16289,7 +16289,7 @@
16289 "zh-cht": "將帳戶顯示名稱更改為 {0}。",
16290 "xloc": [
16291 "default.handlebars->119->2678",
16292 - "default3.handlebars->117->2690"
16292 + "default3.handlebars->117->2675"
16293 ]
16294 },
16295 {
@@ -16320,8 +16320,8 @@
16320 "xloc": [
16321 "default.handlebars->119->2610",
16322 "default.handlebars->119->2691",
16323 - "default3.handlebars->117->2622",
16324 - "default3.handlebars->117->2703"
16323 + "default3.handlebars->117->2607",
16324 + "default3.handlebars->117->2688"
16325 ]
16326 },
16327 {
@@ -16351,7 +16351,7 @@
16351 "zh-cht": "語言從{1}更改為{2}",
16352 "xloc": [
16353 "default.handlebars->119->2554",
16354 - "default3.handlebars->117->2566"
16354 + "default3.handlebars->117->2551"
16355 ]
16356 },
16357 {
@@ -16382,8 +16382,8 @@
16382 "xloc": [
16383 "default.handlebars->119->2612",
16384 "default.handlebars->119->2633",
16385 - "default3.handlebars->117->2624",
16386 - "default3.handlebars->117->2645"
16385 + "default3.handlebars->117->2609",
16386 + "default3.handlebars->117->2630"
16387 ]
16388 },
16389 {
@@ -16440,7 +16440,7 @@
16440 "xloc": [
16441 "default-mobile.handlebars->53->314",
16442 "default.handlebars->119->2063",
16443 - "default3.handlebars->117->2059"
16443 + "default3.handlebars->117->2044"
16444 ]
16445 },
16446 {
@@ -16475,12 +16475,12 @@
16475 "default.handlebars->119->2757",
16476 "default.handlebars->119->3036",
16477 "default.handlebars->119->3037",
16478 - "default3.handlebars->117->1047",
16479 - "default3.handlebars->117->1164",
16480 - "default3.handlebars->117->1189",
16481 - "default3.handlebars->117->2769",
16482 - "default3.handlebars->117->3045",
16483 - "default3.handlebars->117->3046"
16478 + "default3.handlebars->117->1032",
16479 + "default3.handlebars->117->1149",
16480 + "default3.handlebars->117->1174",
16481 + "default3.handlebars->117->2754",
16482 + "default3.handlebars->117->3030",
16483 + "default3.handlebars->117->3031"
16484 ]
16485 },
16486 {
@@ -16513,8 +16513,8 @@
16513 "default-mobile.handlebars->53->1026",
16514 "default.handlebars->119->2387",
16515 "default.handlebars->119->2425",
16516 - "default3.handlebars->117->2399",
16517 - "default3.handlebars->117->2437"
16516 + "default3.handlebars->117->2384",
16517 + "default3.handlebars->117->2422"
16518 ]
16519 },
16520 {
@@ -16545,7 +16545,7 @@
16545 "xloc": [
16546 "default-mobile.handlebars->53->1058",
16547 "default.handlebars->119->3328",
16548 - "default3.handlebars->117->3333"
16548 + "default3.handlebars->117->3318"
16549 ]
16550 },
16551 {
@@ -16605,7 +16605,7 @@
16605 "xloc": [
16606 "default-mobile.handlebars->53->148",
16607 "default.handlebars->119->1897",
16608 - "default3.handlebars->117->1893",
16608 + "default3.handlebars->117->1878",
16609 "login2.handlebars->17->34"
16610 ]
16611 },
@@ -16636,7 +16636,7 @@
16636 "zh-cht": "檢查並單擊確定以清除錯誤日誌。",
16637 "xloc": [
16638 "default.handlebars->119->213",
16639 - "default3.handlebars->117->226"
16639 + "default3.handlebars->117->211"
16640 ]
16641 },
16642 {
@@ -16666,7 +16666,7 @@
16666 "zh-cht": "檢查並單擊確定以開始伺服器自我更新。",
16667 "xloc": [
16668 "default.handlebars->119->208",
16669 - "default3.handlebars->117->221"
16669 + "default3.handlebars->117->206"
16670 ]
16671 },
16672 {
@@ -16711,7 +16711,7 @@
16711 "uk": "Для перевірки програми обміну повідомленнями, введіть код підтвердження після отримання.",
16712 "xloc": [
16713 "default.handlebars->119->268",
16714 - "default3.handlebars->117->278"
16714 + "default3.handlebars->117->263"
16715 ]
16716 },
16717 {
@@ -16741,7 +16741,7 @@
16741 "zh-cht": "檢查你的電話並輸入驗證碼。",
16742 "xloc": [
16743 "default.handlebars->119->265",
16744 - "default3.handlebars->117->275"
16744 + "default3.handlebars->117->260"
16745 ]
16746 },
16747 {
@@ -16772,8 +16772,8 @@
16772 "xloc": [
16773 "default.handlebars->119->1863",
16774 "default.handlebars->119->3450",
16775 - "default3.handlebars->117->1859",
16776 - "default3.handlebars->117->3455"
16775 + "default3.handlebars->117->1844",
16776 + "default3.handlebars->117->3440"
16777 ]
16778 },
16779 {
@@ -16804,7 +16804,7 @@
16804 "xloc": [
16805 "default-mobile.handlebars->53->149",
16806 "default.handlebars->119->1898",
16807 - "default3.handlebars->117->1894",
16807 + "default3.handlebars->117->1879",
16808 "login2.handlebars->17->35"
16809 ]
16810 },
@@ -16836,7 +16836,7 @@
16836 "xloc": [
16837 "default-mobile.handlebars->53->150",
16838 "default.handlebars->119->1899",
16839 - "default3.handlebars->117->1895",
16839 + "default3.handlebars->117->1880",
16840 "login2.handlebars->17->36"
16841 ]
16842 },
@@ -16868,7 +16868,7 @@
16868 "xloc": [
16869 "default-mobile.handlebars->53->151",
16870 "default.handlebars->119->1900",
16871 - "default3.handlebars->117->1896",
16871 + "default3.handlebars->117->1881",
16872 "login2.handlebars->17->37"
16873 ]
16874 },
@@ -16900,7 +16900,7 @@
16900 "xloc": [
16901 "default-mobile.handlebars->53->311",
16902 "default.handlebars->119->2060",
16903 - "default3.handlebars->117->2056",
16903 + "default3.handlebars->117->2041",
16904 "login2.handlebars->17->197"
16905 ]
16906 },
@@ -16932,7 +16932,7 @@
16932 "xloc": [
16933 "default-mobile.handlebars->53->152",
16934 "default.handlebars->119->1901",
16935 - "default3.handlebars->117->1897",
16935 + "default3.handlebars->117->1882",
16936 "login2.handlebars->17->38"
16937 ]
16938 },
@@ -16964,7 +16964,7 @@
16964 "xloc": [
16965 "default-mobile.handlebars->53->153",
16966 "default.handlebars->119->1902",
16967 - "default3.handlebars->117->1898",
16967 + "default3.handlebars->117->1883",
16968 "login2.handlebars->17->39"
16969 ]
16970 },
@@ -16996,7 +16996,7 @@
16996 "xloc": [
16997 "default-mobile.handlebars->53->312",
16998 "default.handlebars->119->2061",
16999 - "default3.handlebars->117->2057",
16999 + "default3.handlebars->117->2042",
17000 "login2.handlebars->17->198"
17001 ]
17002 },
@@ -17059,7 +17059,7 @@
17059 "xloc": [
17060 "default-mobile.handlebars->53->154",
17061 "default.handlebars->119->1903",
17062 - "default3.handlebars->117->1899",
17062 + "default3.handlebars->117->1884",
17063 "login2.handlebars->17->40"
17064 ]
17065 },
@@ -17067,7 +17067,7 @@
17067 "en": "Classic",
17068 "xloc": [
17069 "default.handlebars->119->70",
17070 - "default3.handlebars->117->83"
17070 + "default3.handlebars->117->68"
17071 ]
17072 },
17073 {
@@ -17136,11 +17136,11 @@
17136 "default.handlebars->119->2548",
17137 "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7",
17138 "default.handlebars->container->column_l->p41->3->1",
17139 - "default3.handlebars->117->1589",
17140 - "default3.handlebars->117->1591",
17141 - "default3.handlebars->117->1593",
17142 - "default3.handlebars->117->1595",
17143 - "default3.handlebars->117->2560",
17139 + "default3.handlebars->117->1574",
17140 + "default3.handlebars->117->1576",
17141 + "default3.handlebars->117->1578",
17142 + "default3.handlebars->117->1580",
17143 + "default3.handlebars->117->2545",
17144 "default3.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7",
17145 "default3.handlebars->container->column_l->p41->3->3",
17146 "messenger.handlebars->xbottom->1->1->0->5",
@@ -17241,7 +17241,7 @@
17241 "zh-cht": "清除保安編碼",
17242 "xloc": [
17243 "default.handlebars->119->244",
17244 - "default3.handlebars->117->255"
17244 + "default3.handlebars->117->240"
17245 ]
17246 },
17247 {
@@ -17272,8 +17272,8 @@
17272 "xloc": [
17273 "default.handlebars->119->757",
17274 "default.handlebars->119->799",
17275 - "default3.handlebars->117->768",
17276 - "default3.handlebars->117->810"
17275 + "default3.handlebars->117->753",
17276 + "default3.handlebars->117->795"
17277 ]
17278 },
17279 {
@@ -17303,7 +17303,7 @@
17303 "zh-cht": "清除所選設備上的代理核心?",
17304 "xloc": [
17305 "default.handlebars->119->798",
17306 - "default3.handlebars->117->809"
17306 + "default3.handlebars->117->794"
17307 ]
17308 },
17309 {
@@ -17334,7 +17334,7 @@
17334 "xloc": [
17335 "default-mobile.handlebars->53->1041",
17336 "default.handlebars->119->3311",
17337 - "default3.handlebars->117->3316"
17337 + "default3.handlebars->117->3301"
17338 ]
17339 },
17340 {
@@ -17365,7 +17365,7 @@
17365 "xloc": [
17366 "default-mobile.handlebars->53->419",
17367 "default.handlebars->119->377",
17368 - "default3.handlebars->117->388"
17368 + "default3.handlebars->117->373"
17369 ]
17370 },
17371 {
@@ -17396,7 +17396,7 @@
17396 "xloc": [
17397 "default-mobile.handlebars->53->942",
17398 "default.handlebars->119->1785",
17399 - "default3.handlebars->117->1783"
17399 + "default3.handlebars->117->1768"
17400 ]
17401 },
17402 {
@@ -17427,7 +17427,7 @@
17427 "xloc": [
17428 "default-mobile.handlebars->53->79",
17429 "default.handlebars->119->234",
17430 - "default3.handlebars->117->246"
17430 + "default3.handlebars->117->231"
17431 ]
17432 },
17433 {
@@ -17458,7 +17458,7 @@
17458 "xloc": [
17459 "default-mobile.handlebars->53->1040",
17460 "default.handlebars->119->3310",
17461 - "default3.handlebars->117->3315"
17461 + "default3.handlebars->117->3300"
17462 ]
17463 },
17464 {
@@ -17576,8 +17576,8 @@
17576 "xloc": [
17577 "default.handlebars->119->2182",
17578 "default.handlebars->119->2486",
17579 - "default3.handlebars->117->2193",
17580 - "default3.handlebars->117->2498"
17579 + "default3.handlebars->117->2178",
17580 + "default3.handlebars->117->2483"
17581 ]
17582 },
17583 {
@@ -17607,7 +17607,7 @@
17607 "zh-cht": "單擊此處編輯伺服器端裝置名稱",
17608 "xloc": [
17609 "default.handlebars->119->899",
17610 - "default3.handlebars->117->910"
17610 + "default3.handlebars->117->895"
17611 ]
17612 },
17613 {
@@ -17637,7 +17637,7 @@
17637 "zh-cht": "單擊此處編輯用戶群名稱",
17638 "xloc": [
17639 "default.handlebars->119->2887",
17640 - "default3.handlebars->117->2896"
17640 + "default3.handlebars->117->2881"
17641 ]
17642 },
17643 {
@@ -17783,7 +17783,7 @@
17783 "xloc": [
17784 "default-mobile.handlebars->53->324",
17785 "default.handlebars->119->2096",
17786 - "default3.handlebars->117->2093"
17786 + "default3.handlebars->117->2078"
17787 ]
17788 },
17789 {
@@ -17869,7 +17869,7 @@
17869 "xloc": [
17870 "default-mobile.handlebars->container->masthead",
17871 "default.handlebars->container->masthead->7",
17872 - "default3.handlebars->container->masthead->7"
17872 + "default3.handlebars->container->masthead->3"
17873 ]
17874 },
17875 {
@@ -17900,7 +17900,7 @@
17900 "xloc": [
17901 "default-mobile.handlebars->53->839",
17902 "default.handlebars->119->1681",
17903 - "default3.handlebars->117->1679"
17903 + "default3.handlebars->117->1664"
17904 ]
17905 },
17906 {
@@ -17930,7 +17930,7 @@
17930 "zh-cht": "客戶編號",
17931 "xloc": [
17932 "default.handlebars->119->2159",
17933 - "default3.handlebars->117->2174"
17933 + "default3.handlebars->117->2159"
17934 ]
17935 },
17936 {
@@ -17960,7 +17960,7 @@
17960 "zh-cht": "客戶端啟動的遠程訪問",
17961 "xloc": [
17962 "default.handlebars->119->2313",
17963 - "default3.handlebars->117->2323"
17963 + "default3.handlebars->117->2308"
17964 ]
17965 },
17966 {
@@ -17990,7 +17990,7 @@
17990 "zh-cht": "客戶機密",
17991 "xloc": [
17992 "default.handlebars->119->2160",
17993 - "default3.handlebars->117->2175"
17993 + "default3.handlebars->117->2160"
17994 ]
17995 },
17996 {
@@ -18057,9 +18057,9 @@
18057 "default.handlebars->119->242",
18058 "default.handlebars->119->251",
18059 "default.handlebars->119->3444",
18060 - "default3.handlebars->117->1495",
18061 - "default3.handlebars->117->1564",
18062 - "default3.handlebars->117->362",
18060 + "default3.handlebars->117->1480",
18061 + "default3.handlebars->117->1549",
18062 + "default3.handlebars->117->347",
18063 "sharing.handlebars->47->52"
18064 ]
18065 },
@@ -18090,7 +18090,7 @@
18090 "zh-cht": "已關閉桌面多路復用會話 \\\"{0}\\\",{1} 秒",
18091 "xloc": [
18092 "default.handlebars->119->2698",
18093 - "default3.handlebars->117->2710"
18093 + "default3.handlebars->117->2695"
18094 ]
18095 },
18096 {
@@ -18120,7 +18120,7 @@
18120 "zh-cht": "封閉式桌面多路復用會話,{0}秒",
18121 "xloc": [
18122 "default.handlebars->119->2559",
18123 - "default3.handlebars->117->2571"
18123 + "default3.handlebars->117->2556"
18124 ]
18125 },
18126 {
@@ -18150,7 +18150,7 @@
18150 "zh-cht": "碼",
18151 "xloc": [
18152 "default.handlebars->119->334",
18153 - "default3.handlebars->117->344"
18153 + "default3.handlebars->117->329"
18154 ]
18155 },
18156 {
@@ -18273,7 +18273,7 @@
18273 "xloc": [
18274 "agentinvite.handlebars->13->17",
18275 "default.handlebars->119->695",
18276 - "default3.handlebars->117->706"
18276 + "default3.handlebars->117->691"
18277 ]
18278 },
18279 {
@@ -18303,7 +18303,7 @@
18303 "zh-cht": "命令行",
18304 "xloc": [
18305 "default.handlebars->119->134",
18306 - "default3.handlebars->117->147"
18306 + "default3.handlebars->117->132"
18307 ]
18308 },
18309 {
@@ -18336,9 +18336,9 @@
18336 "default.handlebars->119->1157",
18337 "default.handlebars->119->1182",
18338 "default.handlebars->119->2427",
18339 - "default3.handlebars->117->1166",
18340 - "default3.handlebars->117->1191",
18341 - "default3.handlebars->117->2439"
18339 + "default3.handlebars->117->1151",
18340 + "default3.handlebars->117->1176",
18341 + "default3.handlebars->117->2424"
18342 ]
18343 },
18344 {
@@ -18356,7 +18356,7 @@
18356 "xloc": [
18357 "default-mobile.handlebars->53->626",
18358 "default.handlebars->119->824",
18359 - "default3.handlebars->117->835"
18359 + "default3.handlebars->117->820"
18360 ]
18361 },
18362 {
@@ -18374,7 +18374,7 @@
18374 "xloc": [
18375 "default-mobile.handlebars->53->627",
18376 "default.handlebars->119->825",
18377 - "default3.handlebars->117->836"
18377 + "default3.handlebars->117->821"
18378 ]
18379 },
18380 {
@@ -18392,7 +18392,7 @@
18392 "xloc": [
18393 "default-mobile.handlebars->53->625",
18394 "default.handlebars->119->823",
18395 - "default3.handlebars->117->834"
18395 + "default3.handlebars->117->819"
18396 ]
18397 },
18398 {
@@ -18423,8 +18423,8 @@
18423 "xloc": [
18424 "default.handlebars->119->2922",
18425 "default.handlebars->119->3111",
18426 - "default3.handlebars->117->2931",
18427 - "default3.handlebars->117->3114"
18426 + "default3.handlebars->117->2916",
18427 + "default3.handlebars->117->3099"
18428 ]
18429 },
18430 {
@@ -18455,8 +18455,8 @@
18455 "xloc": [
18456 "default.handlebars->119->2928",
18457 "default.handlebars->119->3123",
18458 - "default3.handlebars->117->2937",
18459 - "default3.handlebars->117->3126"
18458 + "default3.handlebars->117->2922",
18459 + "default3.handlebars->117->3111"
18460 ]
18461 },
18462 {
@@ -18487,7 +18487,7 @@
18487 "xloc": [
18488 "default-mobile.handlebars->53->806",
18489 "default.handlebars->119->1638",
18490 - "default3.handlebars->117->1638"
18490 + "default3.handlebars->117->1623"
18491 ]
18492 },
18493 {
@@ -18543,7 +18543,7 @@
18543 "zh-cht": "壓縮檔案...",
18544 "xloc": [
18545 "default.handlebars->119->1552",
18546 - "default3.handlebars->117->1552",
18546 + "default3.handlebars->117->1537",
18547 "sharing.handlebars->47->47"
18548 ]
18549 },
@@ -18586,7 +18586,7 @@
18586 "uk": "Записи файлу конфігурації",
18587 "xloc": [
18588 "default.handlebars->119->3277",
18589 - "default3.handlebars->117->3280"
18589 + "default3.handlebars->117->3267"
18590 ]
18591 },
18592 {
@@ -18625,14 +18625,14 @@
18625 "default.handlebars->119->2944",
18626 "default.handlebars->119->3109",
18627 "default.handlebars->119->768",
18628 - "default3.handlebars->117->1336",
18629 - "default3.handlebars->117->1344",
18630 - "default3.handlebars->117->2333",
18631 - "default3.handlebars->117->2799",
18632 - "default3.handlebars->117->2886",
18633 - "default3.handlebars->117->2953",
18634 - "default3.handlebars->117->3112",
18635 - "default3.handlebars->117->779"
18628 + "default3.handlebars->117->1321",
18629 + "default3.handlebars->117->1329",
18630 + "default3.handlebars->117->2318",
18631 + "default3.handlebars->117->2784",
18632 + "default3.handlebars->117->2871",
18633 + "default3.handlebars->117->2938",
18634 + "default3.handlebars->117->3097",
18635 + "default3.handlebars->117->764"
18636 ]
18637 },
18638 {
@@ -18665,7 +18665,7 @@
18665 "en": "Confirm Password",
18666 "nl": "Bevestig wachtwoord",
18667 "xloc": [
18668 - "default3.handlebars->117->2847"
18668 + "default3.handlebars->117->2832"
18669 ]
18670 },
18671 {
@@ -18696,7 +18696,7 @@
18696 "xloc": [
18697 "default-mobile.handlebars->53->737",
18698 "default.handlebars->119->1584",
18699 - "default3.handlebars->117->1584",
18699 + "default3.handlebars->117->1569",
18700 "sharing-mobile.handlebars->53->93",
18701 "sharing.handlebars->47->70"
18702 ]
@@ -18728,7 +18728,7 @@
18728 "zh-cht": "確認{0}個條目的複製到此位置?",
18729 "xloc": [
18730 "default.handlebars->119->1583",
18731 - "default3.handlebars->117->1583",
18731 + "default3.handlebars->117->1568",
18732 "sharing.handlebars->47->69"
18733 ]
18734 },
@@ -18789,7 +18789,7 @@
18789 "zh-cht": "確認刪除所選帳戶?",
18790 "xloc": [
18791 "default.handlebars->119->2786",
18792 - "default3.handlebars->117->2798"
18792 + "default3.handlebars->117->2783"
18793 ]
18794 },
18795 {
@@ -18845,7 +18845,7 @@
18845 "zh-cht": "確認刪除所選用戶群?",
18846 "xloc": [
18847 "default.handlebars->119->2876",
18848 - "default3.handlebars->117->2885"
18848 + "default3.handlebars->117->2870"
18849 ]
18850 },
18851 {
@@ -18875,7 +18875,7 @@
18875 "zh-cht": "確認刪除用戶{0}?",
18876 "xloc": [
18877 "default.handlebars->119->3108",
18878 - "default3.handlebars->117->3111"
18878 + "default3.handlebars->117->3096"
18879 ]
18880 },
18881 {
@@ -18883,7 +18883,7 @@
18883 "nl": "Bevestig het uitschakelen van 2FA Duo inlogbeveiliging.",
18884 "xloc": [
18885 "default.handlebars->119->1842",
18886 - "default3.handlebars->117->1839"
18886 + "default3.handlebars->117->1824"
18887 ]
18888 },
18889 {
@@ -18891,7 +18891,7 @@
18891 "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.",
18892 "xloc": [
18893 "default.handlebars->119->1840",
18894 - "default3.handlebars->117->1837"
18894 + "default3.handlebars->117->1822"
18895 ]
18896 },
18897 {
@@ -18921,7 +18921,7 @@
18921 "zh-cht": "確認刪除用戶“ {0} ”的成員身份?",
18922 "xloc": [
18923 "default.handlebars->119->2947",
18924 - "default3.handlebars->117->2956"
18924 + "default3.handlebars->117->2941"
18925 ]
18926 },
18927 {
@@ -18951,7 +18951,7 @@
18951 "zh-cht": "確認刪除用戶群“ {0} ”的成員身份?",
18952 "xloc": [
18953 "default.handlebars->119->3140",
18954 - "default3.handlebars->117->3143"
18954 + "default3.handlebars->117->3128"
18955 ]
18956 },
18957 {
@@ -18982,7 +18982,7 @@
18982 "xloc": [
18983 "default-mobile.handlebars->53->739",
18984 "default.handlebars->119->1586",
18985 - "default3.handlebars->117->1586",
18985 + "default3.handlebars->117->1571",
18986 "sharing-mobile.handlebars->53->95",
18987 "sharing.handlebars->47->72"
18988 ]
@@ -19014,7 +19014,7 @@
19014 "zh-cht": "確認將{0}個條目移到該位置?",
19015 "xloc": [
19016 "default.handlebars->119->1585",
19017 - "default3.handlebars->117->1585",
19017 + "default3.handlebars->117->1570",
19018 "sharing.handlebars->47->71"
19019 ]
19020 },
@@ -19075,7 +19075,7 @@
19075 "zh-cht": "確認覆蓋?",
19076 "xloc": [
19077 "default.handlebars->119->2540",
19078 - "default3.handlebars->117->2552"
19078 + "default3.handlebars->117->2537"
19079 ]
19080 },
19081 {
@@ -19106,8 +19106,8 @@
19106 "xloc": [
19107 "default.handlebars->119->2937",
19108 "default.handlebars->119->3131",
19109 - "default3.handlebars->117->2946",
19110 - "default3.handlebars->117->3134"
19109 + "default3.handlebars->117->2931",
19110 + "default3.handlebars->117->3119"
19111 ]
19112 },
19113 {
@@ -19138,8 +19138,8 @@
19138 "xloc": [
19139 "default.handlebars->119->2939",
19140 "default.handlebars->119->3144",
19141 - "default3.handlebars->117->2948",
19142 - "default3.handlebars->117->3147"
19141 + "default3.handlebars->117->2933",
19142 + "default3.handlebars->117->3132"
19143 ]
19144 },
19145 {
@@ -19169,7 +19169,7 @@
19169 "zh-cht": "確認刪除用戶“ {0} ”的訪問權限?",
19170 "xloc": [
19171 "default.handlebars->119->3133",
19172 - "default3.handlebars->117->3136"
19172 + "default3.handlebars->117->3121"
19173 ]
19174 },
19175 {
@@ -19199,7 +19199,7 @@
19199 "zh-cht": "確認刪除用戶群“ {0} ”的訪問權限?",
19200 "xloc": [
19201 "default.handlebars->119->3136",
19202 - "default3.handlebars->117->3139"
19202 + "default3.handlebars->117->3124"
19203 ]
19204 },
19205 {
@@ -19230,8 +19230,8 @@
19230 "xloc": [
19231 "default.handlebars->119->3134",
19232 "default.handlebars->119->3137",
19233 - "default3.handlebars->117->3137",
19234 - "default3.handlebars->117->3140"
19233 + "default3.handlebars->117->3122",
19234 + "default3.handlebars->117->3125"
19235 ]
19236 },
19237 {
@@ -19262,7 +19262,7 @@
19262 "xloc": [
19263 "default-mobile.handlebars->53->323",
19264 "default.handlebars->119->1846",
19265 - "default3.handlebars->117->1843"
19265 + "default3.handlebars->117->1828"
19266 ]
19267 },
19268 {
@@ -19318,7 +19318,7 @@
19318 "zh-cht": "確認刪除設備共享“{0}”?",
19319 "xloc": [
19320 "default.handlebars->119->3129",
19321 - "default3.handlebars->117->3132"
19321 + "default3.handlebars->117->3117"
19322 ]
19323 },
19324 {
@@ -19400,7 +19400,7 @@
19400 "zh-cht": "確認移除推送認證設備?",
19401 "xloc": [
19402 "default.handlebars->119->1848",
19403 - "default3.handlebars->117->1845"
19403 + "default3.handlebars->117->1830"
19404 ]
19405 },
19406 {
@@ -19430,7 +19430,7 @@
19430 "zh-cht": "確認刪除用戶“ {0} ”的權限?",
19431 "xloc": [
19432 "default.handlebars->119->2439",
19433 - "default3.handlebars->117->2451"
19433 + "default3.handlebars->117->2436"
19434 ]
19435 },
19436 {
@@ -19460,7 +19460,7 @@
19460 "zh-cht": "確認刪除用戶群“ {0} ”的權限?",
19461 "xloc": [
19462 "default.handlebars->119->2441",
19463 - "default3.handlebars->117->2453"
19463 + "default3.handlebars->117->2438"
19464 ]
19465 },
19466 {
@@ -19490,7 +19490,7 @@
19490 "zh-cht": "確認刪除所選設備?",
19491 "xloc": [
19492 "default.handlebars->119->762",
19493 - "default3.handlebars->117->773"
19493 + "default3.handlebars->117->758"
19494 ]
19495 },
19496 {
@@ -19520,7 +19520,7 @@
19520 "zh-cht": "確認刪除此登錄令牌?",
19521 "xloc": [
19522 "default.handlebars->119->2152",
19523 - "default3.handlebars->117->2167"
19523 + "default3.handlebars->117->2152"
19524 ]
19525 },
19526 {
@@ -19605,7 +19605,7 @@
19605 "zh-cht": "確認刪除 {0} 個選定的設備?",
19606 "xloc": [
19607 "default.handlebars->119->763",
19608 - "default3.handlebars->117->774"
19608 + "default3.handlebars->117->759"
19609 ]
19610 },
19611 {
@@ -19636,7 +19636,7 @@
19636 "xloc": [
19637 "default-mobile.handlebars->53->384",
19638 "default.handlebars->119->2543",
19639 - "default3.handlebars->117->2555"
19639 + "default3.handlebars->117->2540"
19640 ]
19641 },
19642 {
@@ -19674,8 +19674,8 @@
19674 "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1span",
19675 "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2span",
19676 "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3",
19677 - "default3.handlebars->117->1004",
19678 - "default3.handlebars->117->2233",
19677 + "default3.handlebars->117->2218",
19678 + "default3.handlebars->117->989",
19679 "default3.handlebars->container->column_l->p11->deskarea0->deskarea1->1->connectbutton1span->connectbutton1",
19680 "default3.handlebars->container->column_l->p12->termTable->1->1->0->1->1->connectbutton2span->connectbutton2",
19681 "default3.handlebars->container->column_l->p13->p13toolbar->1->0->1->1->p13Connectspan->p13Connect",
@@ -19720,7 +19720,7 @@
19720 "xloc": [
19721 "default.handlebars->119->489",
19722 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->kvmListToolbar",
19723 - "default3.handlebars->117->500",
19723 + "default3.handlebars->117->485",
19724 "default3.handlebars->container->column_l->p1->devListToolbarSpan->kvmListToolbar"
19725 ]
19726 },
@@ -19777,7 +19777,7 @@
19777 "zh-cht": "連接到伺服器",
19778 "xloc": [
19779 "default.handlebars->119->2317",
19780 - "default3.handlebars->117->2326"
19780 + "default3.handlebars->117->2311"
19781 ]
19782 },
19783 {
@@ -20018,7 +20018,7 @@
20018 "default.handlebars->119->11",
20019 "default.handlebars->119->449",
20020 "default3.handlebars->117->11",
20021 - "default3.handlebars->117->460",
20021 + "default3.handlebars->117->445",
20022 "sharing-mobile.handlebars->53->4",
20023 "sharing.handlebars->47->4",
20024 "ssh.handlebars->19->4",
@@ -20052,7 +20052,7 @@
20052 "zh-cht": "已連接的Intel® AMT",
20053 "xloc": [
20054 "default.handlebars->119->3369",
20055 - "default3.handlebars->117->3374"
20055 + "default3.handlebars->117->3359"
20056 ]
20057 },
20058 {
@@ -20082,7 +20082,7 @@
20082 "zh-cht": "已連接的Intel® AMT CIRA",
20083 "xloc": [
20084 "default.handlebars->119->3370",
20085 - "default3.handlebars->117->3375"
20085 + "default3.handlebars->117->3360"
20086 ]
20087 },
20088 {
@@ -20112,7 +20112,7 @@
20112 "zh-cht": "已连接的用户",
20113 "xloc": [
20114 "default.handlebars->119->3375",
20115 - "default3.handlebars->117->3380"
20115 + "default3.handlebars->117->3365"
20116 ]
20117 },
20118 {
@@ -20173,7 +20173,7 @@
20173 "xloc": [
20174 "default-mobile.handlebars->53->801",
20175 "default.handlebars->119->1633",
20176 - "default3.handlebars->117->1633"
20176 + "default3.handlebars->117->1618"
20177 ]
20178 },
20179 {
@@ -20320,10 +20320,10 @@
20320 "default.handlebars->119->411",
20321 "default.handlebars->119->492",
20322 "default.handlebars->119->9",
20323 - "default3.handlebars->117->1612",
20324 - "default3.handlebars->117->419",
20325 - "default3.handlebars->117->422",
20326 - "default3.handlebars->117->503",
20323 + "default3.handlebars->117->1597",
20324 + "default3.handlebars->117->404",
20325 + "default3.handlebars->117->407",
20326 + "default3.handlebars->117->488",
20327 "default3.handlebars->117->9",
20328 "sharing-mobile.handlebars->53->111",
20329 "sharing-mobile.handlebars->53->2",
@@ -20386,7 +20386,7 @@
20386 "zh-cht": "連接數量",
20387 "xloc": [
20388 "default.handlebars->119->3401",
20389 - "default3.handlebars->117->3406"
20389 + "default3.handlebars->117->3391"
20390 ]
20391 },
20392 {
@@ -20424,8 +20424,8 @@
20424 "default-mobile.handlebars->53->718",
20425 "default.handlebars->119->1531",
20426 "default.handlebars->119->1548",
20427 - "default3.handlebars->117->1531",
20428 - "default3.handlebars->117->1548",
20427 + "default3.handlebars->117->1516",
20428 + "default3.handlebars->117->1533",
20429 "login2.handlebars->17->232",
20430 "sharing-mobile.handlebars->53->75"
20431 ]
@@ -20457,7 +20457,7 @@
20457 "zh-cht": "連接轉發器",
20458 "xloc": [
20459 "default.handlebars->119->3438",
20460 - "default3.handlebars->117->3443"
20460 + "default3.handlebars->117->3428"
20461 ]
20462 },
20463 {
@@ -20550,9 +20550,9 @@
20550 "default.handlebars->119->2493",
20551 "default.handlebars->119->396",
20552 "default.handlebars->container->column_l->p21->p21main->1->1->meshConnChartDiv->1",
20553 - "default3.handlebars->117->1021",
20554 - "default3.handlebars->117->2505",
20555 - "default3.handlebars->117->407",
20553 + "default3.handlebars->117->1006",
20554 + "default3.handlebars->117->2490",
20555 + "default3.handlebars->117->392",
20556 "default3.handlebars->container->column_l->p21->p21main->1->1->meshConnChartDiv->1"
20557 ]
20558 },
@@ -20583,7 +20583,7 @@
20583 "zh-cht": "同意",
20584 "xloc": [
20585 "default.handlebars->119->2718",
20586 - "default3.handlebars->117->2730"
20586 + "default3.handlebars->117->2715"
20587 ]
20588 },
20589 {
@@ -20618,8 +20618,8 @@
20618 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevConsole",
20619 "default.handlebars->container->topbar->1->1->ServerSubMenuSpan->ServerSubMenu->1->0->ServerConsole",
20620 "default.handlebars->contextMenu->cxconsole",
20621 - "default3.handlebars->117->1159",
20622 - "default3.handlebars->117->1184",
20621 + "default3.handlebars->117->1144",
20622 + "default3.handlebars->117->1169",
20623 "default3.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevConsole",
20624 "default3.handlebars->container->topbar->1->1->ServerSubMenuSpan->ServerSubMenu->1->0->ServerConsole",
20625 "default3.handlebars->contextMenu->cxconsole"
@@ -20652,7 +20652,7 @@
20652 "zh-cht": "控制台 -",
20653 "xloc": [
20654 "default.handlebars->119->900",
20655 - "default3.handlebars->117->911"
20655 + "default3.handlebars->117->896"
20656 ]
20657 },
20658 {
@@ -20683,8 +20683,8 @@
20683 "xloc": [
20684 "default.handlebars->119->1149",
20685 "default.handlebars->119->1174",
20686 - "default3.handlebars->117->1158",
20687 - "default3.handlebars->117->1183",
20686 + "default3.handlebars->117->1143",
20687 + "default3.handlebars->117->1168",
20688 "messenger.handlebars->remoteImage->3->2"
20689 ]
20690 },
@@ -20745,7 +20745,7 @@
20745 "zh-cht": "Cookie編碼器",
20746 "xloc": [
20747 "default.handlebars->119->3421",
20748 - "default3.handlebars->117->3426"
20748 + "default3.handlebars->117->3411"
20749 ]
20750 },
20751 {
@@ -20779,7 +20779,7 @@
20779 "default.handlebars->119->641",
20780 "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
20781 "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
20782 - "default3.handlebars->117->652",
20782 + "default3.handlebars->117->637",
20783 "default3.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
20784 "default3.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
20785 "sharing-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->3",
@@ -20815,9 +20815,9 @@
20815 "default.handlebars->119->173",
20816 "default.handlebars->119->181",
20817 "default.handlebars->119->184",
20818 - "default3.handlebars->117->186",
20819 - "default3.handlebars->117->194",
20820 - "default3.handlebars->117->197"
20818 + "default3.handlebars->117->171",
20819 + "default3.handlebars->117->179",
20820 + "default3.handlebars->117->182"
20821 ]
20822 },
20823 {
@@ -20829,7 +20829,7 @@
20829 "uk": "Скопіюйте секретний ключ до буфера обміну",
20830 "xloc": [
20831 "default.handlebars->119->228",
20832 - "default3.handlebars->117->240"
20832 + "default3.handlebars->117->225"
20833 ]
20834 },
20835 {
@@ -20861,9 +20861,9 @@
20861 "default.handlebars->119->661",
20862 "default.handlebars->119->665",
20863 "default.handlebars->119->669",
20864 - "default3.handlebars->117->672",
20865 - "default3.handlebars->117->676",
20866 - "default3.handlebars->117->680"
20864 + "default3.handlebars->117->657",
20865 + "default3.handlebars->117->661",
20866 + "default3.handlebars->117->665"
20867 ]
20868 },
20869 {
@@ -20929,8 +20929,8 @@
20929 "xloc": [
20930 "default.handlebars->119->635",
20931 "default.handlebars->119->682",
20932 - "default3.handlebars->117->646",
20933 - "default3.handlebars->117->693"
20932 + "default3.handlebars->117->631",
20933 + "default3.handlebars->117->678"
20934 ]
20935 },
20936 {
@@ -20944,8 +20944,8 @@
20944 "xloc": [
20945 "default.handlebars->119->627",
20946 "default.handlebars->119->674",
20947 - "default3.handlebars->117->638",
20948 - "default3.handlebars->117->685"
20947 + "default3.handlebars->117->623",
20948 + "default3.handlebars->117->670"
20949 ]
20950 },
20951 {
@@ -20959,8 +20959,8 @@
20959 "xloc": [
20960 "default.handlebars->119->631",
20961 "default.handlebars->119->678",
20962 - "default3.handlebars->117->642",
20963 - "default3.handlebars->117->689"
20962 + "default3.handlebars->117->627",
20963 + "default3.handlebars->117->674"
20964 ]
20965 },
20966 {
@@ -21001,18 +21001,18 @@
21001 "default.handlebars->119->193",
21002 "default.handlebars->119->195",
21003 "default.handlebars->119->197",
21004 + "default3.handlebars->117->160",
21005 + "default3.handlebars->117->162",
21006 + "default3.handlebars->117->164",
21007 + "default3.handlebars->117->173",
21008 "default3.handlebars->117->175",
21009 "default3.handlebars->117->177",
21006 - "default3.handlebars->117->179",
21007 - "default3.handlebars->117->188",
21008 - "default3.handlebars->117->190",
21009 - "default3.handlebars->117->192",
21010 - "default3.handlebars->117->200",
21011 - "default3.handlebars->117->202",
21012 - "default3.handlebars->117->204",
21013 - "default3.handlebars->117->206",
21014 - "default3.handlebars->117->208",
21015 - "default3.handlebars->117->210"
21010 + "default3.handlebars->117->185",
21011 + "default3.handlebars->117->187",
21012 + "default3.handlebars->117->189",
21013 + "default3.handlebars->117->191",
21014 + "default3.handlebars->117->193",
21015 + "default3.handlebars->117->195"
21016 ]
21017 },
21018 {
@@ -21045,8 +21045,8 @@
21045 "agentinvite.handlebars->13->18",
21046 "default.handlebars->119->694",
21047 "default.handlebars->119->696",
21048 - "default3.handlebars->117->705",
21049 - "default3.handlebars->117->707"
21048 + "default3.handlebars->117->690",
21049 + "default3.handlebars->117->692"
21050 ]
21051 },
21052 {
@@ -21081,12 +21081,12 @@
21081 "default.handlebars->119->348",
21082 "default.handlebars->119->350",
21083 "default.handlebars->119->600",
21084 - "default3.handlebars->117->2516",
21085 - "default3.handlebars->117->2540",
21086 - "default3.handlebars->117->336",
21087 - "default3.handlebars->117->358",
21088 - "default3.handlebars->117->360",
21089 - "default3.handlebars->117->611"
21084 + "default3.handlebars->117->2501",
21085 + "default3.handlebars->117->2525",
21086 + "default3.handlebars->117->321",
21087 + "default3.handlebars->117->343",
21088 + "default3.handlebars->117->345",
21089 + "default3.handlebars->117->596"
21090 ]
21091 },
21092 {
@@ -21119,10 +21119,10 @@
21119 "default.handlebars->119->650",
21120 "default.handlebars->119->654",
21121 "default.handlebars->119->688",
21122 - "default3.handlebars->117->657",
21123 - "default3.handlebars->117->661",
21124 - "default3.handlebars->117->665",
21125 - "default3.handlebars->117->699"
21122 + "default3.handlebars->117->642",
21123 + "default3.handlebars->117->646",
21124 + "default3.handlebars->117->650",
21125 + "default3.handlebars->117->684"
21126 ]
21127 },
21128 {
@@ -21152,7 +21152,7 @@
21152 "zh-cht": "將名稱複製到剪貼板",
21153 "xloc": [
21154 "default.handlebars->119->171",
21155 - "default3.handlebars->117->184"
21155 + "default3.handlebars->117->169"
21156 ]
21157 },
21158 {
@@ -21185,8 +21185,8 @@
21185 "agentinvite.handlebars->container->column_l->5->linuxtab",
21186 "default.handlebars->119->640",
21187 "default.handlebars->119->684",
21188 - "default3.handlebars->117->651",
21189 - "default3.handlebars->117->695"
21188 + "default3.handlebars->117->636",
21189 + "default3.handlebars->117->680"
21190 ]
21191 },
21192 {
@@ -21216,7 +21216,7 @@
21216 "zh-cht": "將有效代碼複製到剪貼板",
21217 "xloc": [
21218 "default.handlebars->119->245",
21219 - "default3.handlebars->117->256"
21219 + "default3.handlebars->117->241"
21220 ]
21221 },
21222 {
@@ -21246,7 +21246,7 @@
21246 "zh-cht": "複製:“{0}”到“{1}”",
21247 "xloc": [
21248 "default.handlebars->119->2602",
21249 - "default3.handlebars->117->2614"
21249 + "default3.handlebars->117->2599"
21250 ]
21251 },
21252 {
@@ -21456,7 +21456,7 @@
21456 "zh-cht": "核心伺服器",
21457 "xloc": [
21458 "default.handlebars->119->3420",
21459 - "default3.handlebars->117->3425"
21459 + "default3.handlebars->117->3410"
21460 ]
21461 },
21462 {
@@ -21487,7 +21487,7 @@
21487 "xloc": [
21488 "default-mobile.handlebars->53->155",
21489 "default.handlebars->119->1904",
21490 - "default3.handlebars->117->1900",
21490 + "default3.handlebars->117->1885",
21491 "login2.handlebars->17->41"
21492 ]
21493 },
@@ -21495,7 +21495,7 @@
21495 "en": "Cosmo",
21496 "nl": "Cosmo",
21497 "xloc": [
21498 - "default3.handlebars->117->2106"
21498 + "default3.handlebars->117->2091"
21499 ]
21500 },
21501 {
@@ -21551,7 +21551,7 @@
21551 "zh-cht": "創建帳號",
21552 "xloc": [
21553 "default.handlebars->119->2844",
21554 - "default3.handlebars->117->2855",
21554 + "default3.handlebars->117->2840",
21555 "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->16->1->1",
21556 "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->16->1->1",
21557 "login2.handlebars->centralTable->1->0->logincell->createpanel->createpanelform->9->1->16->1->1"
@@ -21640,7 +21640,7 @@
21640 "xloc": [
21641 "default.handlebars->119->2089",
21642 "default.handlebars->119->351",
21643 - "default3.handlebars->117->2086"
21643 + "default3.handlebars->117->2071"
21644 ]
21645 },
21646 {
@@ -21670,7 +21670,7 @@
21670 "zh-cht": "創建用戶群",
21671 "xloc": [
21672 "default.handlebars->119->2884",
21673 - "default3.handlebars->117->2893"
21673 + "default3.handlebars->117->2878"
21674 ]
21675 },
21676 {
@@ -21700,7 +21700,7 @@
21700 "zh-cht": "創建鏈結以與訪客共享此裝置",
21701 "xloc": [
21702 "default.handlebars->119->1039",
21703 - "default3.handlebars->117->1050"
21703 + "default3.handlebars->117->1035"
21704 ]
21705 },
21706 {
@@ -21730,7 +21730,7 @@
21730 "zh-cht": "使用以下選項創建一個新的裝置群。",
21731 "xloc": [
21732 "default.handlebars->119->2119",
21733 - "default3.handlebars->117->2134"
21733 + "default3.handlebars->117->2119"
21734 ]
21735 },
21736 {
@@ -21760,7 +21760,7 @@
21760 "zh-cht": "創建一個新的裝置群。",
21761 "xloc": [
21762 "default.handlebars->119->401",
21763 - "default3.handlebars->117->412"
21763 + "default3.handlebars->117->397"
21764 ]
21765 },
21766 {
@@ -21790,7 +21790,7 @@
21790 "zh-cht": "創建一個臨時用戶名和密碼,可用作您帳戶的替代登錄名。這對於允許工具或其他服務訪問您的帳戶很有用。",
21791 "xloc": [
21792 "default.handlebars->119->2069",
21793 - "default3.handlebars->117->2065"
21793 + "default3.handlebars->117->2050"
21794 ]
21795 },
21796 {
@@ -21820,7 +21820,7 @@
21820 "zh-cht": "創建文件夾(如果不存在)?",
21821 "xloc": [
21822 "default.handlebars->119->793",
21823 - "default3.handlebars->117->804"
21823 + "default3.handlebars->117->789"
21824 ]
21825 },
21826 {
@@ -21850,7 +21850,7 @@
21850 "zh-cht": "創建文件夾:“{0}”",
21851 "xloc": [
21852 "default.handlebars->119->2595",
21853 - "default3.handlebars->117->2607"
21853 + "default3.handlebars->117->2592"
21854 ]
21855 },
21856 {
@@ -21896,7 +21896,7 @@
21896 "uk": "Створіть кілька пристроїв Intel® AMT одночасно, імпортувавши файл JSON у такому форматі:",
21897 "xloc": [
21898 "default.handlebars->119->527",
21899 - "default3.handlebars->117->538"
21899 + "default3.handlebars->117->523"
21900 ]
21901 },
21902 {
@@ -21933,7 +21933,7 @@
21933 "uk": "Створіть кілька акаунтів одночасно, імпортувавши файл JSON або CSV",
21934 "xloc": [
21935 "default.handlebars->119->2801",
21936 - "default3.handlebars->117->2812"
21936 + "default3.handlebars->117->2797"
21937 ]
21938 },
21939 {
@@ -21994,7 +21994,7 @@
21994 "zh-cht": "創建的設備組:{0}",
21995 "xloc": [
21996 "default.handlebars->119->2606",
21997 - "default3.handlebars->117->2618"
21997 + "default3.handlebars->117->2603"
21998 ]
21999 },
22000 {
@@ -22024,7 +22024,7 @@
22024 "zh-cht": "創建一個鏈接,該鏈接允許沒有帳戶的訪客在有限的時間內遠程控制此設備。",
22025 "xloc": [
22026 "default.handlebars->119->1218",
22027 - "default3.handlebars->117->1227"
22027 + "default3.handlebars->117->1212"
22028 ]
22029 },
22030 {
@@ -22106,7 +22106,7 @@
22106 "zh-cht": "創建",
22107 "xloc": [
22108 "default.handlebars->119->2992",
22109 - "default3.handlebars->117->3001"
22109 + "default3.handlebars->117->2986"
22110 ]
22111 },
22112 {
@@ -22136,7 +22136,7 @@
22136 "zh-cht": "創作時間",
22137 "xloc": [
22138 "default.handlebars->119->2200",
22139 - "default3.handlebars->117->2211"
22139 + "default3.handlebars->117->2196"
22140 ]
22141 },
22142 {
@@ -22198,8 +22198,8 @@
22198 "xloc": [
22199 "default.handlebars->119->2198",
22200 "default.handlebars->119->2199",
22201 - "default3.handlebars->117->2209",
22202 - "default3.handlebars->117->2210"
22201 + "default3.handlebars->117->2194",
22202 + "default3.handlebars->117->2195"
22203 ]
22204 },
22205 {
@@ -22232,9 +22232,9 @@
22232 "default.handlebars->119->1022",
22233 "default.handlebars->119->1406",
22234 "default.handlebars->119->2157",
22235 - "default3.handlebars->117->1033",
22236 - "default3.handlebars->117->1407",
22237 - "default3.handlebars->117->2172"
22235 + "default3.handlebars->117->1018",
22236 + "default3.handlebars->117->1392",
22237 + "default3.handlebars->117->2157"
22238 ]
22239 },
22240 {
@@ -22265,7 +22265,7 @@
22265 "xloc": [
22266 "default-mobile.handlebars->53->156",
22267 "default.handlebars->119->1905",
22268 - "default3.handlebars->117->1901",
22268 + "default3.handlebars->117->1886",
22269 "login2.handlebars->17->42"
22270 ]
22271 },
@@ -22297,7 +22297,7 @@
22297 "xloc": [
22298 "default-mobile.handlebars->53->157",
22299 "default.handlebars->119->1906",
22300 - "default3.handlebars->117->1902",
22300 + "default3.handlebars->117->1887",
22301 "login2.handlebars->17->43"
22302 ]
22303 },
@@ -22396,9 +22396,9 @@
22396 "default.handlebars->119->1448",
22397 "default.handlebars->119->1452",
22398 "default.handlebars->119->64",
22399 - "default3.handlebars->117->1450",
22400 - "default3.handlebars->117->1454",
22401 - "default3.handlebars->117->77",
22399 + "default3.handlebars->117->1435",
22400 + "default3.handlebars->117->1439",
22401 + "default3.handlebars->117->62",
22402 "sharing-mobile.handlebars->53->35",
22403 "sharing-mobile.handlebars->53->39",
22404 "sharing.handlebars->47->24"
@@ -22578,7 +22578,7 @@
22578 "zh-cht": "當前版本",
22579 "xloc": [
22580 "default.handlebars->119->202",
22581 - "default3.handlebars->117->215"
22581 + "default3.handlebars->117->200"
22582 ]
22583 },
22584 {
@@ -22609,7 +22609,7 @@
22609 "xloc": [
22610 "default-mobile.handlebars->53->1068",
22611 "default.handlebars->119->3338",
22612 - "default3.handlebars->117->3343"
22612 + "default3.handlebars->117->3328"
22613 ]
22614 },
22615 {
@@ -22714,7 +22714,7 @@
22714 "en": "Cyborg",
22715 "nl": "Cyborg",
22716 "xloc": [
22717 - "default3.handlebars->117->2107"
22717 + "default3.handlebars->117->2092"
22718 ]
22719 },
22720 {
@@ -22745,7 +22745,7 @@
22745 "xloc": [
22746 "default-mobile.handlebars->53->158",
22747 "default.handlebars->119->1907",
22748 - "default3.handlebars->117->1903",
22748 + "default3.handlebars->117->1888",
22749 "login2.handlebars->17->44"
22750 ]
22751 },
@@ -22759,7 +22759,7 @@
22759 "xloc": [
22760 "default-mobile.handlebars->53->829",
22761 "default.handlebars->119->1671",
22762 - "default3.handlebars->117->1671"
22762 + "default3.handlebars->117->1656"
22763 ]
22764 },
22765 {
@@ -22789,7 +22789,7 @@
22789 "zh-cht": "DNS suffix",
22790 "xloc": [
22791 "default.handlebars->119->170",
22792 - "default3.handlebars->117->183"
22792 + "default3.handlebars->117->168"
22793 ]
22794 },
22795 {
@@ -22819,7 +22819,7 @@
22819 "zh-cht": "日常的",
22820 "xloc": [
22821 "default.handlebars->119->309",
22822 - "default3.handlebars->117->319"
22822 + "default3.handlebars->117->304"
22823 ]
22824 },
22825 {
@@ -22850,7 +22850,7 @@
22850 "xloc": [
22851 "default-mobile.handlebars->53->159",
22852 "default.handlebars->119->1908",
22853 - "default3.handlebars->117->1904",
22853 + "default3.handlebars->117->1889",
22854 "login2.handlebars->17->45"
22855 ]
22856 },
@@ -22882,14 +22882,14 @@
22882 "xloc": [
22883 "default-mobile.handlebars->53->105",
22884 "default.handlebars->119->68",
22885 - "default3.handlebars->117->81"
22885 + "default3.handlebars->117->66"
22886 ]
22887 },
22888 {
22889 "en": "Darkly",
22890 "nl": "Donker",
22891 "xloc": [
22892 - "default3.handlebars->117->2108"
22892 + "default3.handlebars->117->2093"
22893 ]
22894 },
22895 {
@@ -22919,7 +22919,7 @@
22919 "zh-cht": "數據通道",
22920 "xloc": [
22921 "default.handlebars->119->1404",
22922 - "default3.handlebars->117->1405",
22922 + "default3.handlebars->117->1390",
22923 "sharing.handlebars->47->11"
22924 ]
22925 },
@@ -22936,7 +22936,7 @@
22936 "uk": "Записи Бази Даних",
22937 "xloc": [
22938 "default.handlebars->119->3197",
22939 - "default3.handlebars->117->3200"
22939 + "default3.handlebars->117->3187"
22940 ]
22941 },
22942 {
@@ -22967,7 +22967,7 @@
22967 "xloc": [
22968 "default-mobile.handlebars->53->317",
22969 "default.handlebars->119->2066",
22970 - "default3.handlebars->117->2062"
22970 + "default3.handlebars->117->2047"
22971 ]
22972 },
22973 {
@@ -23000,9 +23000,9 @@
23000 "default.handlebars->119->1315",
23001 "default.handlebars->119->3201",
23002 "default.handlebars->119->3204",
23003 - "default3.handlebars->117->1320",
23004 - "default3.handlebars->117->3204",
23005 - "default3.handlebars->117->3207"
23003 + "default3.handlebars->117->1305",
23004 + "default3.handlebars->117->3191",
23005 + "default3.handlebars->117->3194"
23006 ]
23007 },
23008 {
@@ -23033,8 +23033,8 @@
23033 "xloc": [
23034 "default.handlebars->119->2232",
23035 "default.handlebars->119->2296",
23036 - "default3.handlebars->117->2243",
23037 - "default3.handlebars->117->2305"
23036 + "default3.handlebars->117->2228",
23037 + "default3.handlebars->117->2290"
23038 ]
23039 },
23040 {
@@ -23064,7 +23064,7 @@
23064 "zh-cht": "如果設置停用CCM",
23065 "xloc": [
23066 "default.handlebars->119->2308",
23067 - "default3.handlebars->117->2317"
23067 + "default3.handlebars->117->2302"
23068 ]
23069 },
23070 {
@@ -23121,7 +23121,7 @@
23121 "xloc": [
23122 "default-mobile.handlebars->53->467",
23123 "default.handlebars->119->707",
23124 - "default3.handlebars->117->718"
23124 + "default3.handlebars->117->703"
23125 ]
23126 },
23127 {
@@ -23154,11 +23154,11 @@
23154 "default.handlebars->119->2880",
23155 "default.handlebars->119->2891",
23156 "default.handlebars->119->2965",
23157 - "default3.handlebars->117->2104",
23158 - "default3.handlebars->117->2842",
23159 - "default3.handlebars->117->2889",
23160 - "default3.handlebars->117->2900",
23161 - "default3.handlebars->117->2974"
23157 + "default3.handlebars->117->2089",
23158 + "default3.handlebars->117->2827",
23159 + "default3.handlebars->117->2874",
23160 + "default3.handlebars->117->2885",
23161 + "default3.handlebars->117->2959"
23162 ]
23163 },
23164 {
@@ -23189,7 +23189,7 @@
23189 "xloc": [
23190 "default-mobile.handlebars->53->666",
23191 "default.handlebars->119->1436",
23192 - "default3.handlebars->117->1438",
23192 + "default3.handlebars->117->1423",
23193 "sharing-mobile.handlebars->53->23"
23194 ]
23195 },
@@ -23231,9 +23231,9 @@
23231 "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
23232 "default.handlebars->container->dialog->idx_dlgButtonBar->5",
23233 "default.handlebars->filesContextMenu->5",
23234 - "default3.handlebars->117->1574",
23235 - "default3.handlebars->117->2547",
23236 - "default3.handlebars->117->881",
23234 + "default3.handlebars->117->1559",
23235 + "default3.handlebars->117->2532",
23236 + "default3.handlebars->117->866",
23237 "default3.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
23238 "default3.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
23239 "default3.handlebars->container->xxAddAgentModal->xxAddAgentModalConf->1->5->idx_dlgDeleteButton",
@@ -23277,7 +23277,7 @@
23277 "xloc": [
23278 "default-mobile.handlebars->53->333",
23279 "default.handlebars->119->2104",
23280 - "default3.handlebars->117->2099"
23280 + "default3.handlebars->117->2084"
23281 ]
23282 },
23283 {
@@ -23337,7 +23337,7 @@
23337 "xloc": [
23338 "default-mobile.handlebars->53->565",
23339 "default.handlebars->119->1049",
23340 - "default3.handlebars->117->1060"
23340 + "default3.handlebars->117->1045"
23341 ]
23342 },
23343 {
@@ -23367,7 +23367,7 @@
23367 "zh-cht": "刪除設備",
23368 "xloc": [
23369 "default.handlebars->119->769",
23370 - "default3.handlebars->117->780"
23370 + "default3.handlebars->117->765"
23371 ]
23372 },
23373 {
@@ -23400,8 +23400,8 @@
23400 "default-mobile.handlebars->53->978",
23401 "default.handlebars->119->2284",
23402 "default.handlebars->119->2325",
23403 - "default3.handlebars->117->2295",
23404 - "default3.handlebars->117->2334"
23403 + "default3.handlebars->117->2280",
23404 + "default3.handlebars->117->2319"
23405 ]
23406 },
23407 {
@@ -23432,7 +23432,7 @@
23432 "xloc": [
23433 "default-mobile.handlebars->53->637",
23434 "default.handlebars->119->1341",

This file is too large to show in full.

views/default3.handlebars
+320 -159
@@ -140,26 +140,120 @@
140 <!-- main page -->
141 <div id=container>
142 <div id="notifiyBox" class="notifiyBox" style="display:none"></div>
143 - <div id=masthead class=noselect>
144 - <div style="float:left">{{{titlehtml}}}</div>
145 - <div class="title" onclick="go(1,event)">{{{title1}}}</div>
146 - <div class="title2">{{{title2}}}</div>
147 - <div style="float:right">
143 + <div id="masthead" class="noselect masthead-container">
144 + <div class="masthead-left">
145 + <div class="masthead-title" onclick="go(1,event)">{{{titlehtml}}}</div>
146 + <div class="masthead-titles-container">
147 + <div class="title" onclick="go(1,event)">{{{title1}}}</div>
148 + <div class="title2" onclick="go(1,event)">{{{title2}}}</div>
149 + </div>
150 + </div>
151 +
152 + <div class="masthead-right">
153 <div id="notificationCount"
149 - class="position-relative"
154 + class="notification-icon position-relative"
155 title="Click to view current notifications"
156 onclick="clickNotificationIcon()"
157 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>
158 + <i class="fa-solid fa-bell fa-xl text-white"></i>
159 + <span id="notificationBadge"
160 + class="position-absolute top-1 start-100 translate-middle badge rounded-pill bg-danger">0</span>
161 + </div>
162 +
163 + <div class="user-menu-container">
164 + <div id="userDropdown">
165 + <div id="userDropdownButton">
166 + <img id="userDropdownImage" src="images/user-256.png" alt="User" />
167 + <span id="userDropdownName" class="LogoffLinkColor"></span>
168 + <i class="fa fa-chevron-down LogoffLinkColor" style="font-size: 12px;"></i>
169 + </div>
170 + <div id="userDropdownMenu">
171 + <div id="userDropdownMenuContainer">
172 + <div class="userDropdownMenuItem userDropdownMobileOnly mobile-menu-item" data-action="devices" onclick="handleUserMenuItem('devices')">
173 + <i class="fa fa-desktop userDropdownMenuIcon"></i>
174 + <span>My Devices</span>
175 + </div>
176 +
177 + <div class="userDropdownMenuItem userDropdownMobileOnly mobile-menu-item" data-action="events" onclick="handleUserMenuItem('events')">
178 + <i class="fa fa-calendar userDropdownMenuIcon"></i>
179 + <span>My Events</span>
180 + </div>
181 +
182 + <div id="mobileUsersMenuItem" class="userDropdownMenuItem userDropdownMobileOnly users-menu-item mobile-menu-item d-none" data-action="users" onclick="handleUserMenuItem('users')">
183 + <i class="fa fa-users userDropdownMenuIcon"></i>
184 + <span>My Users</span>
185 + </div>
186 +
187 + <div id="mobileFilesMenuItem" class="userDropdownMenuItem userDropdownMobileOnly files-menu-item mobile-menu-item d-none" data-action="files" onclick="handleUserMenuItem('files')">
188 + <i class="fa fa-folder userDropdownMenuIcon"></i>
189 + <span>My Files</span>
190 + </div>
191 +
192 + <div id="mobileServerMenuItem" class="userDropdownMenuItem userDropdownMobileOnly server-menu-item mobile-menu-item d-none" data-action="server" onclick="handleUserMenuItem('server')">
193 + <i class="fa fa-server userDropdownMenuIcon"></i>
194 + <span>My Server</span>
195 + </div>
196 +
197 + <div id="userDropdownMenuDivider" class="userDropdownMobileOnly mobile-menu-item"></div>
198 +
199 + <div class="userDropdownMenuItem userDropdownUISettings" onclick="toggleUISubmenu(); event.stopPropagation();">
200 + <i class="fa fa-sliders userDropdownMenuIcon"></i>
201 + <span>UI Settings</span>
202 + <i class="fa fa-chevron-right userDropdownMenuIcon submenu-arrow"></i>
203 + </div>
204 +
205 + <div id="uiSubmenu" class="userDropdownSubmenu">
206 + <div id="toggleModernUIMenuItem" class="userDropdownMenuItem" data-action="toggle-modern-ui" onclick="handleUserMenuItem('toggle-modern-ui')">
207 + <i class="fa fa-toggle-on userDropdownMenuIcon"></i>
208 + <span>Toggle Modern UI</span>
209 + </div>
210 + <div class="userDropdownMenuItem" data-action="left-bar" onclick="handleUserMenuItem('left-bar')">
211 + <i class="fa fa-window-maximize fa-rotate-270 userDropdownMenuIcon"></i>
212 + <span>Left Bar Interface</span>
213 + </div>
214 + <div class="userDropdownMenuItem" data-action="top-bar" onclick="handleUserMenuItem('top-bar')">
215 + <i class="fa fa-window-maximize userDropdownMenuIcon"></i>
216 + <span>Top Bar Interface</span>
217 + </div>
218 + <div class="userDropdownMenuItem" data-action="fixed-width" onclick="handleUserMenuItem('fixed-width')">
219 + <i class="fa fa-columns userDropdownMenuIcon"></i>
220 + <span>Fixed Width Interface</span>
221 + </div>
222 + <div id="toggleFooterMenuItem" class="userDropdownMenuItem" data-action="toggle-footer" onclick="handleUserMenuItem('toggle-footer')">
223 + <i class="fa fa-window-minimize userDropdownMenuIcon"></i>
224 + <span>Toggle Footer Bar</span>
225 + </div>
226 + <div id="userDropdownMenuDivider" class="userDropdownMobileOnly"></div>
227 + </div>
228 +
229 + <div id="toggleNightMenuItem" class="userDropdownMenuItem" data-action="toggle-night" onclick="toggleNightMode(); QV('userDropdownMenu', false); QV('uiSubmenu', false); resetChevronArrow();">
230 + <i id="nightModeIcon" class="fa userDropdownMenuIcon night-mode-icon"></i>
231 + <span id="nightModeText">Toggle night mode</span>
232 + </div>
233 +
234 +
235 + <div class="userDropdownMenuItem" data-action="notes" onclick="handleUserMenuItem('notes')">
236 + <i class="fa fa-sticky-note userDropdownMenuIcon"></i>
237 + <span>Personal Notes</span>
238 + </div>
239 +
240 + <div class="userDropdownMenuItem" data-action="account" onclick="handleUserMenuItem('account')">
241 + <i class="fa fa-user userDropdownMenuIcon"></i>
242 + <span>My Account</span>
243 + </div>
244 +
245 + <div id="userDropdownMenuDivider"></div>
246 +
247 + <div class="userDropdownMenuItem" data-action="logout" onclick="handleUserMenuItem('logout')">
248 + <i class="fa fa-sign-out userDropdownMenuIcon"></i>
249 + <span>Logout</span>
250 + </div>
251 + </div>
252 + </div>
253 + </div>
254 + <span id="idleTimeoutNotify" class="idle-timeout-notify"></span>
255 </div>
256 </div>
161 - <p id="logoutControl"><span id=logoutControlSpan class="logoncontrolspan"></span><span id=idleTimeoutNotify
162 - style="color:yellow"></span></p>
257 </div>
258 <div class="sidebar flex-column" id="page_leftbar">
259 <div style="height:24px"></div>
@@ -2112,120 +2206,13 @@
2206 }
2207 args.hide = hide;
2208 QV('uiViewButton5', !(args.hide & 4)); // Hide the footer toggle button if footer is hidden anyway.
2209 + QV('toggleFooterMenuItem', !(args.hide & 4)); // Hide the footer toggle menu item if footer is hidden anyway.
2210 + QV('toggleNightMenuItem', ((features2 & 0x00100000) == 0) && ((features2 & 0x00200000) == 0)); // Hide night mode toggle if permanent night (1) or day (2) mode is set
2211 + //QV('toggleModernUIMenuItem', ((features2 & 0x80000000) == 0)); // Show only if allowed and not forced siteStyle=3
2212 + updateMobileTopBarVisibility();
2213 adjustPanels();
2214
2117 - // Setup logout control
2118 - var logoutControl = '';
2119 - if (logoutControls) {
2120 - if (logoutControls.name != null) {
2121 - var userImageSrc = 'images/user-256.png';
2122 - if (userinfo && userinfo.flags && (userinfo.flags & 1)) {
2123 - if (userinfo.accountImageRnd == null) { userinfo.accountImageRnd = Math.floor(Math.random() * 9999999999); }
2124 - userImageSrc = 'userimage.ashx?rnd=' + userinfo.accountImageRnd;
2125 - }
2126 -
2127 - // Check permissions
2128 - var siteRights = userinfo ? userinfo.siteadmin : 0;
2129 - var serverFeatures = parseInt('{{{serverfeatures}}}');
2130 - var canViewUsers = ((users != null) && ((features & 4) == 0)) || (((userinfo && userinfo.siteadmin & 512) != 0) && ((features & 0x08000000) != 0));
2131 - var canViewFiles = (siteRights & 8) != 0;
2132 - var canViewServer = (siteRights & 21) && ((serverFeatures & 64) != 0);
2133 -
2134 - logoutControl = '<div id="userDropdown">' +
2135 - '<div id="userDropdownButton">' +
2136 - '<img id="userDropdownImage" src="' + userImageSrc + '" />' +
2137 - '<span id="userDropdownName" class="LogoffLinkColor">' + logoutControls.name + '</span>' +
2138 - '<i class="fa fa-chevron-down LogoffLinkColor" style="font-size: 12px;"></i>' +
2139 - '</div>' +
2140 - '<div id="userDropdownMenu">' +
2141 - '<div id="userDropdownMenuContainer">' +
2142 -
2143 - '<div class="userDropdownMenuItem userDropdownMobileOnly" onclick="goForward(\'devices\'); QV(\'userDropdownMenu\', false); QV(\'uiSubmenu\', false); resetChevronArrow(); document.removeEventListener(\'click\', closeUISubmenu);">' +
2144 - '<i class="fa fa-desktop userDropdownMenuIcon"></i>' +
2145 - '<span>' + "My Devices" + '</span>' +
2146 - '</div>' +
2147 -
2148 - '<div class="userDropdownMenuItem userDropdownMobileOnly" onclick="goForward(\'events\'); QV(\'userDropdownMenu\', false); QV(\'uiSubmenu\', false); resetChevronArrow(); document.removeEventListener(\'click\', closeUISubmenu);">' +
2149 - '<i class="fa fa-calendar userDropdownMenuIcon"></i>' +
2150 - '<span>' + "My Events" + '</span>' +
2151 - '</div>' +
2152 -
2153 - (canViewUsers ? '<div class="userDropdownMenuItem userDropdownMobileOnly" onclick="goForward(\'users\'); QV(\'userDropdownMenu\', false); QV(\'uiSubmenu\', false); resetChevronArrow(); document.removeEventListener(\'click\', closeUISubmenu);">' +
2154 - '<i class="fa fa-users userDropdownMenuIcon"></i>' +
2155 - '<span>' + "My Users" + '</span>' +
2156 - '</div>' : '') +
2157 -
2158 - (canViewFiles ? '<div class="userDropdownMenuItem userDropdownMobileOnly" onclick="goForward(\'files\'); QV(\'userDropdownMenu\', false); QV(\'uiSubmenu\', false); resetChevronArrow(); document.removeEventListener(\'click\', closeUISubmenu);">' +
2159 - '<i class="fa fa-folder userDropdownMenuIcon"></i>' +
2160 - '<span>' + "My Files" + '</span>' +
2161 - '</div>' : '') +
2162 -
2163 - (canViewServer ? '<div class="userDropdownMenuItem userDropdownMobileOnly" onclick="goForward(\'server\'); QV(\'userDropdownMenu\', false); QV(\'uiSubmenu\', false); resetChevronArrow(); document.removeEventListener(\'click\', closeUISubmenu);">' +
2164 - '<i class="fa fa-server userDropdownMenuIcon"></i>' +
2165 - '<span>' + "My Server" + '</span>' +
2166 - '</div>' : '') +
2167 -
2168 - '<div id="userDropdownMenuDivider" class="userDropdownMobileOnly"></div>' +
2169 -
2170 - '<div class="userDropdownMenuItem userDropdownUISettings" onclick="toggleUISubmenu(event);">' +
2171 - '<i class="fa fa-sliders userDropdownMenuIcon"></i>' +
2172 - '<span>' + "UI Settings" + '</span>' +
2173 - '<i class="fa fa-chevron-right userDropdownMenuIcon" style="margin-left: auto; margin-right: 0; transition: transform 0.3s ease;"></i>' +
2174 - '</div>' +
2175 -
2176 - '<div id="uiSubmenu" class="userDropdownSubmenu" style="display:none;" onclick="event.stopPropagation();">' +
2177 - '<div class="userDropdownMenuItem" onclick="toggleBootstrapUIMode(); QV(\'userDropdownMenu\', false); QV(\'uiSubmenu\', false); resetChevronArrow(); document.removeEventListener(\'click\', closeUISubmenu);">' +
2178 - '<i class="fa fa-toggle-on userDropdownMenuIcon"></i>' +
2179 - '<span>' + "Toggle Modern UI" + '</span>' +
2180 - '</div>' +
2181 - '<div class="userDropdownMenuItem" onclick="userInterfaceSelectMenu(1); QV(\'userDropdownMenu\', false); QV(\'uiSubmenu\', false); resetChevronArrow(); document.removeEventListener(\'click\', closeUISubmenu);">' +
2182 - '<i class="fa fa-window-maximize fa-rotate-270 userDropdownMenuIcon"></i>' +
2183 - '<span>' + "Left Bar Interface" + '</span>' +
2184 - '</div>' +
2185 - '<div class="userDropdownMenuItem" onclick="userInterfaceSelectMenu(2); QV(\'userDropdownMenu\', false); QV(\'uiSubmenu\', false); resetChevronArrow(); document.removeEventListener(\'click\', closeUISubmenu);">' +
2186 - '<i class="fa fa-window-maximize userDropdownMenuIcon"></i>' +
2187 - '<span>' + "Top Bar Interface" + '</span>' +
2188 - '</div>' +
2189 - '<div class="userDropdownMenuItem" onclick="userInterfaceSelectMenu(3); QV(\'userDropdownMenu\', false); QV(\'uiSubmenu\', false); resetChevronArrow(); document.removeEventListener(\'click\', closeUISubmenu);">' +
2190 - '<i class="fa fa-columns userDropdownMenuIcon"></i>' +
2191 - '<span>' + "Fixed Width Interface" + '</span>' +
2192 - '</div>' +
2193 - '<div class="userDropdownMenuItem" onclick="toggleFooterBarMode(); QV(\'userDropdownMenu\', false); QV(\'uiSubmenu\', false); resetChevronArrow(); document.removeEventListener(\'click\', closeUISubmenu);">' +
2194 - '<i class="fa fa-window-minimize userDropdownMenuIcon"></i>' +
2195 - '<span>' + "Toggle Footer Bar" + '</span>' +
2196 - '</div>' +
2197 - '</div>' +
2198 -
2199 - '<div class="userDropdownMenuItem" onclick="toggleNightMode(); QV(\'userDropdownMenu\', false); QV(\'uiSubmenu\', false); resetChevronArrow(); document.removeEventListener(\'click\', closeUISubmenu);">' +
2200 - '<i class="fa ' + (document.body.classList.contains('night') ? 'fa-sun' : 'fa-moon') + ' userDropdownMenuIcon"></i>' +
2201 - '<span>' + "Toggle night mode" + '</span>' +
2202 - '</div>' +
2203 -
2204 - '<div class="userDropdownMenuItem" onclick="showNotes(false); QV(\'userDropdownMenu\', false); QV(\'uiSubmenu\', false); resetChevronArrow(); document.removeEventListener(\'click\', closeUISubmenu);">' +
2205 - '<i class="fa fa-sticky-note userDropdownMenuIcon"></i>' +
2206 - '<span>' + "Personal Notes" + '</span>' +
2207 - '</div>' +
2208 -
2209 - '<div class="userDropdownMenuItem" onclick="go(2); QV(\'userDropdownMenu\', false); QV(\'uiSubmenu\', false); resetChevronArrow(); document.removeEventListener(\'click\', closeUISubmenu);">' +
2210 - '<i class="fa fa-user userDropdownMenuIcon"></i>' +
2211 - '<span>' + "My Account" + '</span>' +
2212 - '</div>' +
2213 -
2214 - '<div id="userDropdownMenuDivider"></div>';
2215 -
2216 - if (logoutControls.logoutUrl != null) {
2217 - logoutControl += '<div class="userDropdownMenuItem" onclick="QV(\'uiSubmenu\', false); resetChevronArrow(); document.removeEventListener(\'click\', closeUISubmenu); window.location.href=\'' + logoutControls.logoutUrl + '\'">' +
2218 - '<i class="fa fa-sign-out userDropdownMenuIcon"></i>' +
2219 - '<span>' + "Logout" + '</span>' +
2220 - '</div>';
2221 - }
2222 -
2223 - logoutControl += '</div></div></div>';
2224 - }
2225 - }
2226 - if (args.hide & 1) { QH('logoutControlSpan2', logoutControl); } else { QH('logoutControlSpan', logoutControl); }
2227 -
2228 - setTimeout(updateUserDropdown, 100);
2215 + setTimeout(updateUserDropdownVisibility, 100);
2216
2217 // Setup the context menu
2218 document.onclick = function (e) { hideContextMenu(); }
@@ -2664,6 +2651,7 @@
2651 QV('uiMenu', false);
2652 QV('topMenu', false);
2653 updateNightModeIcon();
2654 + updateMobileTopBarVisibility();
2655 } else {
2656 userDropdownMenu.style.display = 'none';
2657 var uiSubmenu = Q('uiSubmenu');
@@ -2707,21 +2695,27 @@
2695 function toggleUISubmenu(event) {
2696 if (event) {
2697 event.stopPropagation();
2698 + event.preventDefault();
2699 }
2700 var uiSubmenu = Q('uiSubmenu');
2701 if (uiSubmenu) {
2702 var isVisible = (uiSubmenu.style.display == 'block');
2714 - uiSubmenu.style.display = isVisible ? 'none' : 'block';
2703
2716 - var chevronIcon = document.querySelector('.userDropdownMenuItem[onclick*="toggleUISubmenu"] .fa-chevron-right');
2717 - if (chevronIcon) {
2718 - if (isVisible) {
2719 - chevronIcon.style.transform = 'rotate(0deg)';
2720 - } else {
2721 - chevronIcon.style.transform = 'rotate(90deg)';
2704 + if (isVisible) {
2705 + uiSubmenu.style.display = 'none';
2706 + uiSubmenu.classList.remove('show');
2707 + var chevronIcon = document.querySelector('.userDropdownUISettings .fa-chevron-right');
2708 + if (chevronIcon) {
2709 + chevronIcon.classList.remove('rotated');
2710 + }
2711 + document.removeEventListener('click', closeUISubmenu);
2712 + } else {
2713 + uiSubmenu.style.display = 'block';
2714 + uiSubmenu.classList.add('show');
2715 + var chevronIcon = document.querySelector('.userDropdownUISettings .fa-chevron-right');
2716 + if (chevronIcon) {
2717 + chevronIcon.classList.add('rotated');
2718 }
2723 - }
2724 - if (!isVisible) {
2719 setTimeout(function() {
2720 document.addEventListener('click', closeUISubmenu);
2721 }, 10);
@@ -2735,7 +2729,11 @@
2729 if (uiSubmenu && userDropdown) {
2730 if (!uiSubmenu.contains(event.target) && !userDropdown.contains(event.target)) {
2731 uiSubmenu.style.display = 'none';
2738 - resetChevronArrow();
2732 + uiSubmenu.classList.remove('show');
2733 + var chevronIcon = document.querySelector('.userDropdownUISettings .fa-chevron-right');
2734 + if (chevronIcon) {
2735 + chevronIcon.classList.remove('rotated');
2736 + }
2737 document.removeEventListener('click', closeUISubmenu);
2738 }
2739 }
@@ -2751,6 +2749,21 @@
2749 adjustPanels();
2750 }
2751
2752 + function updateMobileTopBarVisibility() {
2753 + try {
2754 + var items = document.querySelectorAll('.mobile-menu-item');
2755 + for (var i = 0; i < items.length; i++) {
2756 + if ((uiMode == 2) || (uiMode == 3)) {
2757 + items[i].classList.add('d-none');
2758 + } else {
2759 + if (!(items[i].classList.contains('users-menu-item') || items[i].classList.contains('files-menu-item') || items[i].classList.contains('server-menu-item'))) {
2760 + items[i].classList.remove('d-none');
2761 + }
2762 + }
2763 + }
2764 + } catch (ex) { }
2765 + }
2766 +
2767 function toggleNightMode() {
2768 if (xxdialogMode) return;
2769 var cNightMode = getstore('nightMode', '0');
@@ -2930,6 +2943,7 @@
2943 QV('p2AccountImageFrame', !accountSettingsLocked)
2944 QV('p2ServerActions', (siteRights & 21) && ((serverFeatures & 143) != 0));
2945 QV('LeftMenuMyServer', (siteRights & 21) && ((serverFeatures & 64) != 0)); // 16 + 4 + 1
2946 + try { (QS('LeftMenuMyServer').display == 'none') ? QC('mobileServerMenuItem').add('d-none') : QC('mobileServerMenuItem').remove('d-none'); } catch (e) { }
2947 QV('MainMenuMyServer', siteRights & 21);
2948 QV('p2ServerActionsBackup', (siteRights & 1) && ((serverFeatures & 1) != 0));
2949 QV('p2ServerActionsRestore', (siteRights & 4) && ((serverFeatures & 2) != 0));
@@ -2938,6 +2952,7 @@
2952 QV('p2ServerActionsConfig', (siteRights & 16) && ((serverFeatures & 128) != 0));
2953 QV('MainMenuMyFiles', siteRights & 8);
2954 QV('LeftMenuMyFiles', siteRights & 8);
2955 + try { (QS('LeftMenuMyFiles').display == 'none') ? QC('mobileFilesMenuItem').add('d-none') : QC('mobileFilesMenuItem').remove('d-none'); } catch (e) { }
2956 if (((siteRights & 8) == 0) && (xxcurrentView == 5)) { setDialogMode(0); go(1); }
2957 if (currentNode != null) { gotoDevice(currentNode._id, xxcurrentView, true); }
2958
@@ -3067,6 +3082,7 @@
3082 // Adjust "My Users" tabs
3083 QV('MainMenuMyUsers', ((users != null) && ((features & 4) == 0)) || (((userinfo.siteadmin & 512) != 0) && ((features & 0x08000000) != 0)));
3084 QV('LeftMenuMyUsers', ((users != null) && ((features & 4) == 0)) || (((userinfo.siteadmin & 512) != 0) && ((features & 0x08000000) != 0)));
3085 + try { (QS('LeftMenuMyUsers').display == 'none') ? QC('mobileUsersMenuItem').add('d-none') : QC('mobileUsersMenuItem').remove('d-none'); } catch (e) { }
3086 QV('UsersGeneral', ((users != null) && ((features & 4) == 0)));
3087 QV('UsersGroups', ((users != null) && ((features & 4) == 0)));
3088 QV('UsersRecordings', ((userinfo.siteadmin & 512) != 0) && ((features & 0x08000000) != 0));
@@ -18822,6 +18838,174 @@
18838 meshserver.send({ action: 'removemeshuser', meshid: meshid, userid: currentUser._id });
18839 }
18840
18841 +
18842 + //
18843 + // UserDropDown Menu
18844 + //
18845 +
18846 + var userDropdownOpen = false;
18847 + var uiSubmenuOpen = false;
18848 +
18849 + function initializeUserDropdown() {
18850 + var dropdownButton = Q('userDropdownButton');
18851 + var dropdownMenu = Q('userDropdownMenu');
18852 + var uiSettingsButton = document.querySelector('.userDropdownUISettings');
18853 + var uiSubmenu = Q('uiSubmenu');
18854 +
18855 + if (!dropdownButton || !dropdownMenu) return;
18856 +
18857 + QS('uiSubmenu').display = 'none';
18858 + QS('uiSubmenu').opacity = '0';
18859 + QS('uiSubmenu').transform = 'translateX(12px)';
18860 + dropdownMenu.classList.remove('show');
18861 +
18862 + dropdownButton.onclick = function(e) {
18863 + e.preventDefault();
18864 + e.stopPropagation();
18865 + userDropdownOpen = !userDropdownOpen;
18866 + dropdownMenu.classList.toggle('show');
18867 + if (!userDropdownOpen) {
18868 + QS('uiSubmenu').display = 'none';
18869 + QS('uiSubmenu').opacity = '0';
18870 + QS('uiSubmenu').transform = 'translateX(12px)';
18871 + uiSubmenuOpen = false;
18872 + resetChevronArrow();
18873 + }
18874 + };
18875 +
18876 + document.addEventListener('click', function(e) {
18877 + var uiSubmenu = Q('uiSubmenu');
18878 + if (!dropdownMenu.contains(e.target) && !dropdownButton.contains(e.target) && !uiSubmenu.contains(e.target)) {
18879 + dropdownMenu.classList.remove('show');
18880 + QS('uiSubmenu').display = 'none';
18881 + QS('uiSubmenu').opacity = '0';
18882 + QS('uiSubmenu').transform = 'translateX(12px)';
18883 + userDropdownOpen = false;
18884 + uiSubmenuOpen = false;
18885 + resetChevronArrow();
18886 + }
18887 + });
18888 + }
18889 +
18890 + function toggleUISubmenu() {
18891 + uiSubmenuOpen = !uiSubmenuOpen;
18892 +
18893 + var uiSubmenu = Q('uiSubmenu');
18894 + var isDesktop = window.innerWidth > 769;
18895 + var reduceMotion = (window.matchMedia && window.matchMedia('(prefers-reduced-motion: reduce)').matches);
18896 +
18897 + if (uiSubmenuOpen) {
18898 + QS('uiSubmenu').display = 'block';
18899 +
18900 + if (isDesktop && (reduceMotion == false)) {
18901 + setTimeout(function() {
18902 + QS('uiSubmenu').opacity = '1';
18903 + QS('uiSubmenu').transform = 'translateX(0)';
18904 + }, 10);
18905 + } else {
18906 + QS('uiSubmenu').opacity = '1';
18907 + QS('uiSubmenu').transform = 'translateX(0)';
18908 + }
18909 + } else {
18910 + if (isDesktop && (reduceMotion == false)) {
18911 + QS('uiSubmenu').opacity = '0';
18912 + QS('uiSubmenu').transform = 'translateX(12px)';
18913 + setTimeout(function() {
18914 + QS('uiSubmenu').display = 'none';
18915 + }, 300);
18916 + } else {
18917 + QS('uiSubmenu').display = 'none';
18918 + QS('uiSubmenu').opacity = '0';
18919 + QS('uiSubmenu').transform = 'translateX(12px)';
18920 + }
18921 + }
18922 +
18923 + var chevronIcon = document.querySelector('.userDropdownUISettings .fa-chevron-right');
18924 + if (chevronIcon) {
18925 + chevronIcon.style.transform = uiSubmenuOpen ? 'rotate(90deg)' : '';
18926 + }
18927 + }
18928 +
18929 + function handleUserMenuItem(action) {
18930 + Q('userDropdownMenu').classList.remove('show');
18931 + QS('uiSubmenu').display = 'none';
18932 + QS('uiSubmenu').opacity = '0';
18933 + QS('uiSubmenu').transform = 'translateX(12px)';
18934 + userDropdownOpen = false;
18935 + uiSubmenuOpen = false;
18936 + resetChevronArrow();
18937 +
18938 + switch(action) {
18939 + case 'devices': goForward('devices'); break;
18940 + case 'events': goForward('events'); break;
18941 + case 'users': goForward('users'); break;
18942 + case 'files': goForward('files'); break;
18943 + case 'server': goForward('server'); break;
18944 + case 'toggle-modern-ui': toggleBootstrapUIMode(); break;
18945 + case 'left-bar': userInterfaceSelectMenu(1); break;
18946 + case 'top-bar': userInterfaceSelectMenu(2); break;
18947 + case 'fixed-width': userInterfaceSelectMenu(3); break;
18948 + case 'toggle-footer': toggleFooterBarMode(); break;
18949 + case 'toggle-night': toggleNightMode(); break;
18950 + case 'notes': showNotes(false); break;
18951 + case 'account': go(2); break;
18952 + case 'logout':
18953 + if (logoutControls && logoutControls.logoutUrl) {
18954 + window.location.href = logoutControls.logoutUrl;
18955 + }
18956 + break;
18957 + }
18958 + }
18959 +
18960 + function resetChevronArrow() {
18961 + var arrow = document.querySelector('.userDropdownUISettings .fa-chevron-right');
18962 + if (arrow) arrow.style.transform = '';
18963 + }
18964 +
18965 + function updateUserDropdownVisibility() {
18966 + var userDropdown = Q('userDropdown');
18967 + var dropdownName = Q('userDropdownName');
18968 + var dropdownImage = Q('userDropdownImage');
18969 +
18970 + if (logoutControls && logoutControls.name) {
18971 + QS('userDropdown').display = 'block';
18972 + dropdownName.textContent = logoutControls.name;
18973 +
18974 + if (userinfo && userinfo.flags && (userinfo.flags & 1)) {
18975 + var rnd = userinfo.accountImageRnd || Math.floor(Math.random() * 9999999999);
18976 + dropdownImage.src = 'userimage.ashx?rnd=' + rnd;
18977 + }
18978 + } else {
18979 + QS('userDropdown').display = 'none';
18980 + }
18981 + }
18982 +
18983 + function updateNightModeIcon() {
18984 + var nightModeItem = document.querySelector('.userDropdownMenuItem[data-action="toggle-night"]');
18985 + if (nightModeItem) {
18986 + var icon = nightModeItem.querySelector('#nightModeIcon');
18987 + var textSpan = nightModeItem.querySelector('#nightModeText');
18988 + if (icon && textSpan) {
18989 + var isNightMode = document.body.classList.contains('night');
18990 + var iconClass = isNightMode ? 'fa-sun' : 'fa-moon';
18991 + var text = isNightMode ? "Toggle Light Mode" : "Toggle Dark Mode";
18992 + var newIcon = document.createElement('i');
18993 + newIcon.id = 'nightModeIcon';
18994 + newIcon.className = 'fa ' + iconClass + ' userDropdownMenuIcon night-mode-icon';
18995 + icon.parentNode.replaceChild(newIcon, icon);
18996 + textSpan.textContent = text;
18997 + }
18998 + }
18999 + }
19000 + document.addEventListener('DOMContentLoaded', function() {
19001 + initializeUserDropdown();
19002 + updateUserDropdownVisibility();
19003 + updateNightModeIcon();
19004 + });
19005 +
19006 +
19007 +
19008 +
19009 //
19010 // MY USER EVENTS
19011 //
@@ -19532,29 +19716,6 @@
19716 }
19717 setupNotificationClickOutside();
19718
19535 - // Update night mode icon and text in dropdown menu
19536 - function updateNightModeIcon() {
19537 - var nightModeItem = document.querySelector('.userDropdownMenuItem[onclick*="toggleNightMode"]');
19538 - if (nightModeItem) {
19539 - var icon = nightModeItem.querySelector('.userDropdownMenuIcon');
19540 - var textSpan = nightModeItem.querySelector('span');
19541 - if (icon && textSpan) {
19542 - var isNightMode = document.body.classList.contains('night');
19543 - var iconClass = isNightMode ? 'fa-sun' : 'fa-moon';
19544 - var text = isNightMode ? "Toggle Light Mode" : "Toggle Dark Mode";
19545 - var newIcon = document.createElement('i');
19546 - newIcon.className = 'fa ' + iconClass + ' userDropdownMenuIcon';
19547 - icon.parentNode.replaceChild(newIcon, icon);
19548 - textSpan.textContent = text;
19549 - }
19550 - }
19551 - }
19552 - function resetChevronArrow() {
19553 - var chevronIcon = document.querySelector('.userDropdownMenuItem[onclick*="toggleUISubmenu"] .fa-chevron-right');
19554 - if (chevronIcon) {
19555 - chevronIcon.style.transform = 'rotate(0deg)';
19556 - }
19557 - }
19719
19720 // Refresh the notification box
19721 function drawNotifications() {
webserver.js
+1
@@ -3393,6 +3393,7 @@ module.exports.CreateWebServer = function (parent, db, args, certificates, doneF
3393 if (domain.devicesearchbargroupname === true) { features2 += 0x10000000; } // Search bar will find by group name too
3394 if (((typeof domain.passwordrequirements != 'object') || (domain.passwordrequirements.duo2factor != false)) && (typeof domain.duo2factor == 'object') && (typeof domain.duo2factor.integrationkey == 'string') && (typeof domain.duo2factor.secretkey == 'string') && (typeof domain.duo2factor.apihostname == 'string')) { features2 += 0x20000000; } // using Duo for 2FA is allowed
3395 if (domain.showmodernuitoggle == true) { features2 += 0x40000000; } // Indicates that the new UI should be shown
3396 + if (domain.sitestyle === 3) { features2 |= 0x80000000; } // Indicates that Modern UI is forced (siteStyle = 3)
3397 return { features: features, features2: features2 };
3398 }
3399