add unzip to files

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

Simon Smith committed Mar 2, 2024 at 15:16 UTC 9241c434355df247dd464f282cb0fce12da08c32
3 files changed +1911 -1823
agents/meshcore.js
+22 -4
@@ -3438,6 +3438,24 @@ function onTunnelData(data)
3438 this.zip.on('progress', require('events').moderated(function (name, p) { this.xws.write(Buffer.from(JSON.stringify({ action: 'dialogmessage', msg: 'zippingFile', file: ((process.platform == 'win32') ? (name.split('/').join('\\')) : name), progress: p }))); }, 1000));
3439 this.zip.pipe(out);
3440 break;
3441 + case 'unzip':
3442 + if (this.unzip != null) return; // Unzip operating is currently running, exit now.
3443 + this.unzip = require('zip-reader').read(cmd.input);
3444 + this.unzip._dest = cmd.dest;
3445 + this.unzip.xws = this;
3446 + this.unzip.then(function (zipped) {
3447 + this.xws.write(Buffer.from(JSON.stringify({ action: 'dialogmessage', msg: 'unzipping' })));
3448 + zipped.xws = this.xws;
3449 + zipped.extractAll(this._dest).then(function () { // finished extracting
3450 + zipped.xws.write(Buffer.from(JSON.stringify({ action: 'dialogmessage', msg: null })));
3451 + zipped.xws.write(Buffer.from(JSON.stringify({ action: 'refresh' })));
3452 + delete zipped.xws.unzip;
3453 + }, function (e) { // error extracting
3454 + zipped.xws.write(Buffer.from(JSON.stringify({ action: 'dialogmessage', msg: 'unziperror', error: e })));
3455 + delete zipped.xws.unzip;
3456 + });
3457 + }, function (e) { this.xws.write(Buffer.from(JSON.stringify({ action: 'dialogmessage', msg: 'unziperror', error: e }))); delete this.xws.unzip });
3458 + break;
3459 case 'cancel':
3460 // Cancel zip operation if present
3461 try { this.zipcancel = true; this.zip.cancel(function () { }); } catch (ex) { }
@@ -4247,12 +4265,12 @@ function processConsoleCommand(cmd, args, rights, sessionid) {
4265 break;
4266 case 'unzip':
4267 if (args['_'].length == 0) {
4250 - response = "Proper usage: unzip input, destination"; // Display usage
4268 + response = "Proper usage: unzip input,destination"; // Display usage
4269 } else {
4270 var p = args['_'].join(' ').split(',');
4253 - if (p.length != 2) { response = "Proper usage: unzip input, destination"; break; } // Display usage
4254 - var prom = require('zip-reader').read(p[0]);
4255 - prom._dest = p[1];
4271 + if (p.length != 2) { response = "Proper usage: unzip input,destination"; break; } // Display usage
4272 + var prom = require('zip-reader').read(p[0].trim());
4273 + prom._dest = p[1].trim();
4274 prom.self = this;
4275 prom.sessionid = sessionid;
4276 prom.then(function (zipped) {
translate/translate.json
+1858 -1817
@@ -28,7 +28,7 @@
28 "en": " (",
29 "nl": " (",
30 "xloc": [
31 - "default.handlebars->47->1502"
31 + "default.handlebars->47->1506"
32 ]
33 },
34 {
@@ -55,8 +55,8 @@
55 "zh-cht": " + CIRA",
56 "hu": " + CIRA",
57 "xloc": [
58 - "default.handlebars->47->2141",
59 - "default.handlebars->47->2143"
58 + "default.handlebars->47->2151",
59 + "default.handlebars->47->2153"
60 ]
61 },
62 {
@@ -329,7 +329,7 @@
329 "zh-cht": " 可以使用密碼提示,但不建議使用。",
330 "hu": "Jelszó tipp használható, de nem ajánlott.",
331 "xloc": [
332 - "default.handlebars->47->2017"
332 + "default.handlebars->47->2027"
333 ]
334 },
335 {
@@ -356,8 +356,8 @@
356 "zh-cht": " 用戶需要先登入到該伺服器一次,然後才能將其新增到裝置群。",
357 "hu": " A felhasználóknak egyszer be kell jelentkezniük erre a kiszolgálóra, mielőtt hozzáadhatók lennének egy eszközcsoporthoz.",
358 "xloc": [
359 - "default.handlebars->47->2265",
360 - "default.handlebars->47->2837"
359 + "default.handlebars->47->2275",
360 + "default.handlebars->47->2847"
361 ]
362 },
363 {
@@ -907,7 +907,7 @@
907 "hu": ")",
908 "xloc": [
909 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3createMeshLink1",
910 - "default.handlebars->47->1503"
910 + "default.handlebars->47->1507"
911 ]
912 },
913 {
@@ -934,7 +934,7 @@
934 "zh-cht": "* 8個字符,1個大寫,1個小寫,1個數字,1個非字母數字。",
935 "hu": "* 8 karakter, 1 nagybetű, 1 kisbetű , 1 szám, 1 speciális karakter.",
936 "xloc": [
937 - "default.handlebars->47->2225",
937 + "default.handlebars->47->2235",
938 "default.handlebars->47->526"
939 ]
940 },
@@ -1039,11 +1039,11 @@
1039 "default-mobile.handlebars->11->783",
1040 "default-mobile.handlebars->11->785",
1041 "default-mobile.handlebars->11->971",
1042 - "default.handlebars->47->1601",
1043 - "default.handlebars->47->1603",
1044 - "default.handlebars->47->1605",
1045 - "default.handlebars->47->2341",
1046 - "default.handlebars->47->2617",
1042 + "default.handlebars->47->1611",
1043 + "default.handlebars->47->1613",
1044 + "default.handlebars->47->1615",
1045 + "default.handlebars->47->2351",
1046 + "default.handlebars->47->2627",
1047 "default.handlebars->47->981"
1048 ]
1049 },
@@ -1205,7 +1205,7 @@
1205 "hu": ", MQTT online",
1206 "xloc": [
1207 "default-mobile.handlebars->11->874",
1208 - "default.handlebars->47->1695"
1208 + "default.handlebars->47->1705"
1209 ]
1210 },
1211 {
@@ -1233,7 +1233,7 @@
1233 "hu": ", Nincs hozzájárulás",
1234 "xloc": [
1235 "default.handlebars->47->1076",
1236 - "default.handlebars->47->2183"
1236 + "default.handlebars->47->2193"
1237 ]
1238 },
1239 {
@@ -1261,7 +1261,7 @@
1261 "hu": ", Hozzájárulás kérése a kapcsolódáshoz",
1262 "xloc": [
1263 "default.handlebars->47->1077",
1264 - "default.handlebars->47->2184"
1264 + "default.handlebars->47->2194"
1265 ]
1266 },
1267 {
@@ -1316,7 +1316,7 @@
1316 "hu": ", naponta ismétlődően",
1317 "xloc": [
1318 "default.handlebars->47->1073",
1319 - "default.handlebars->47->2180"
1319 + "default.handlebars->47->2190"
1320 ]
1321 },
1322 {
@@ -1344,7 +1344,7 @@
1344 "hu": ", hetente ismétlődően",
1345 "xloc": [
1346 "default.handlebars->47->1074",
1347 - "default.handlebars->47->2181"
1347 + "default.handlebars->47->2191"
1348 ]
1349 },
1350 {
@@ -1506,7 +1506,7 @@
1506 "hu": ", Tálca értesítés",
1507 "xloc": [
1508 "default.handlebars->47->1078",
1509 - "default.handlebars->47->2185"
1509 + "default.handlebars->47->2195"
1510 ]
1511 },
1512 {
@@ -1558,7 +1558,7 @@
1558 "hu": ", csak megtekintés",
1559 "xloc": [
1560 "default.handlebars->47->1075",
1561 - "default.handlebars->47->2182"
1561 + "default.handlebars->47->2192"
1562 ]
1563 },
1564 {
@@ -1917,9 +1917,9 @@
1917 "xloc": [
1918 "default-mobile.handlebars->11->346",
1919 "default-mobile.handlebars->11->686",
1920 - "default.handlebars->47->1501",
1921 - "default.handlebars->47->2407",
1922 - "default.handlebars->47->3073",
1920 + "default.handlebars->47->1505",
1921 + "default.handlebars->47->2417",
1922 + "default.handlebars->47->3083",
1923 "sharing.handlebars->11->50"
1924 ]
1925 },
@@ -1947,6 +1947,20 @@
1947 "zh-cht": ".json",
1948 "hu": ".json"
1949 },
1950 + {
1951 + "en": ".zip",
1952 + "xloc": [
1953 + "default.handlebars->47->1530"
1954 + ]
1955 + },
1956 + {
1957 + "en": "/",
1958 + "xloc": [
1959 + "default.handlebars->47->1528",
1960 + "default.handlebars->47->1529",
1961 + "default.handlebars->47->1531"
1962 + ]
1963 + },
1964 {
1965 "cs": "0",
1966 "da": "0",
@@ -2097,7 +2111,7 @@
2111 "zh-cht": "1個活躍時段",
2112 "hu": "1 aktív munkamenet",
2113 "xloc": [
2100 - "default.handlebars->47->2931"
2114 + "default.handlebars->47->2941"
2115 ]
2116 },
2117 {
@@ -2126,7 +2140,7 @@
2140 "xloc": [
2141 "default-mobile.handlebars->11->1015",
2142 "default-mobile.handlebars->11->356",
2129 - "default.handlebars->47->2431",
2143 + "default.handlebars->47->2441",
2144 "download.handlebars->3->1",
2145 "download2.handlebars->5->1",
2146 "sharing.handlebars->11->96"
@@ -2240,7 +2254,7 @@
2254 "zh-cht": "1群",
2255 "hu": "1 csoport",
2256 "xloc": [
2243 - "default.handlebars->47->2887"
2257 + "default.handlebars->47->2897"
2258 ]
2259 },
2260 {
@@ -2297,7 +2311,7 @@
2311 "hu": "1 perc",
2312 "xloc": [
2313 "default.handlebars->47->1185",
2300 - "default.handlebars->47->1982"
2314 + "default.handlebars->47->1992"
2315 ]
2316 },
2317 {
@@ -2380,7 +2394,7 @@
2394 "zh-cht": "有1個用戶沒有顯示,請使用搜尋框搜尋用戶...",
2395 "hu": "1 további felhasználó nem jelenik meg, használja a keresőmezőt a felhasználók kereséséhez...",
2396 "xloc": [
2383 - "default.handlebars->47->2649"
2397 + "default.handlebars->47->2659"
2398 ]
2399 },
2400 {
@@ -2598,7 +2612,7 @@
2612 "default-mobile.handlebars->11->425",
2613 "default-mobile.handlebars->11->429",
2614 "default-mobile.handlebars->11->433",
2601 - "default.handlebars->47->2653",
2615 + "default.handlebars->47->2663",
2616 "default.handlebars->47->444",
2617 "default.handlebars->47->447",
2618 "default.handlebars->47->451",
@@ -2801,7 +2815,7 @@
2815 "hu": "10 perc",
2816 "xloc": [
2817 "default.handlebars->47->1187",
2804 - "default.handlebars->47->1984"
2818 + "default.handlebars->47->1994"
2819 ]
2820 },
2821 {
@@ -3022,7 +3036,7 @@
3036 "hu": "12 óra",
3037 "xloc": [
3038 "default.handlebars->47->1195",
3025 - "default.handlebars->47->1992"
3039 + "default.handlebars->47->2002"
3040 ]
3041 },
3042 {
@@ -3211,7 +3225,7 @@
3225 "hu": "15 perc",
3226 "xloc": [
3227 "default.handlebars->47->1188",
3214 - "default.handlebars->47->1985"
3228 + "default.handlebars->47->1995"
3229 ]
3230 },
3231 {
@@ -3239,7 +3253,7 @@
3253 "hu": "12 óra",
3254 "xloc": [
3255 "default.handlebars->47->1196",
3242 - "default.handlebars->47->1993"
3256 + "default.handlebars->47->2003"
3257 ]
3258 },
3259 {
@@ -3456,7 +3470,7 @@
3470 "hu": "2 nap",
3471 "xloc": [
3472 "default.handlebars->47->1198",
3459 - "default.handlebars->47->1995"
3473 + "default.handlebars->47->2005"
3474 ]
3475 },
3476 {
@@ -3484,7 +3498,7 @@
3498 "hu": "2 óra",
3499 "xloc": [
3500 "default.handlebars->47->1192",
3487 - "default.handlebars->47->1989"
3501 + "default.handlebars->47->1999"
3502 ]
3503 },
3504 {
@@ -3678,7 +3692,7 @@
3692 "hu": "24 óra",
3693 "xloc": [
3694 "default.handlebars->47->1197",
3681 - "default.handlebars->47->1994"
3695 + "default.handlebars->47->2004"
3696 ]
3697 },
3698 {
@@ -3758,7 +3772,7 @@
3772 "zh-cht": "2FA備份代碼已清除",
3773 "hu": "2FA biztonsági kódok törölve",
3774 "xloc": [
3761 - "default.handlebars->47->2544"
3775 + "default.handlebars->47->2554"
3776 ]
3777 },
3778 {
@@ -3813,7 +3827,7 @@
3827 "zh-cht": "第二個因素",
3828 "hu": "2. faktor",
3829 "xloc": [
3816 - "default.handlebars->47->3110"
3830 + "default.handlebars->47->3120"
3831 ]
3832 },
3833 {
@@ -3840,8 +3854,8 @@
3854 "zh-cht": "啟用第二因素身份驗證",
3855 "hu": "2. faktoros hitelesítés engedélyezve",
3856 "xloc": [
3843 - "default.handlebars->47->2667",
3844 - "default.handlebars->47->2912"
3857 + "default.handlebars->47->2677",
3858 + "default.handlebars->47->2922"
3859 ]
3860 },
3861 {
@@ -4002,7 +4016,7 @@
4016 "hu": "30 perc",
4017 "xloc": [
4018 "default.handlebars->47->1189",
4005 - "default.handlebars->47->1986"
4019 + "default.handlebars->47->1996"
4020 ]
4021 },
4022 {
@@ -4030,7 +4044,7 @@
4044 "hu": "32-bit",
4045 "xloc": [
4046 "default-mobile.handlebars->11->723",
4033 - "default.handlebars->47->1559"
4047 + "default.handlebars->47->1569"
4048 ]
4049 },
4050 {
@@ -4114,7 +4128,7 @@
4128 "hu": "4 nap",
4129 "xloc": [
4130 "default.handlebars->47->1199",
4117 - "default.handlebars->47->1996"
4131 + "default.handlebars->47->2006"
4132 ]
4133 },
4134 {
@@ -4142,7 +4156,7 @@
4156 "hu": "4 óra",
4157 "xloc": [
4158 "default.handlebars->47->1193",
4145 - "default.handlebars->47->1990"
4159 + "default.handlebars->47->2000"
4160 ]
4161 },
4162 {
@@ -4281,7 +4295,7 @@
4295 "hu": "45 perc",
4296 "xloc": [
4297 "default.handlebars->47->1190",
4284 - "default.handlebars->47->1987"
4298 + "default.handlebars->47->1997"
4299 ]
4300 },
4301 {
@@ -4336,7 +4350,7 @@
4350 "hu": "5 perc",
4351 "xloc": [
4352 "default.handlebars->47->1186",
4339 - "default.handlebars->47->1983"
4353 + "default.handlebars->47->1993"
4354 ]
4355 },
4356 {
@@ -4533,7 +4547,7 @@
4547 "hu": "60 perc",
4548 "xloc": [
4549 "default.handlebars->47->1191",
4536 - "default.handlebars->47->1988"
4550 + "default.handlebars->47->1998"
4551 ]
4552 },
4553 {
@@ -4617,7 +4631,7 @@
4631 "hu": "64-bit",
4632 "xloc": [
4633 "default-mobile.handlebars->11->725",
4620 - "default.handlebars->47->1561"
4634 + "default.handlebars->47->1571"
4635 ]
4636 },
4637 {
@@ -4827,7 +4841,7 @@
4841 "zh-cht": "7天",
4842 "hu": "7 nap",
4843 "xloc": [
4830 - "default.handlebars->47->1997"
4844 + "default.handlebars->47->2007"
4845 ]
4846 },
4847 {
@@ -4912,7 +4926,7 @@
4926 "hu": "8 óra",
4927 "xloc": [
4928 "default.handlebars->47->1194",
4915 - "default.handlebars->47->1991",
4929 + "default.handlebars->47->2001",
4930 "default.handlebars->47->554",
4931 "default.handlebars->47->568"
4932 ]
@@ -5223,7 +5237,7 @@
5237 "pl": "<b>Serwery DNS</b>",
5238 "xloc": [
5239 "default-mobile.handlebars->11->784",
5226 - "default.handlebars->47->1604"
5240 + "default.handlebars->47->1614"
5241 ]
5242 },
5243 {
@@ -5373,7 +5387,7 @@
5387 "hu": "ACM",
5388 "xloc": [
5389 "default-mobile.handlebars->11->504",
5376 - "default.handlebars->47->2161",
5390 + "default.handlebars->47->2171",
5391 "default.handlebars->47->432",
5392 "default.handlebars->47->890"
5393 ]
@@ -5494,7 +5508,7 @@
5508 "zh-cht": "AMT操作系統",
5509 "hu": "AMT-OS",
5510 "xloc": [
5497 - "default.handlebars->47->3255"
5511 + "default.handlebars->47->3265"
5512 ]
5513 },
5514 {
@@ -5521,7 +5535,7 @@
5535 "zh-cht": "AMT-Redir",
5536 "hu": "AMT-Redir",
5537 "xloc": [
5524 - "default.handlebars->47->3117"
5538 + "default.handlebars->47->3127"
5539 ]
5540 },
5541 {
@@ -5548,7 +5562,7 @@
5562 "zh-cht": "AMT-WSMAN",
5563 "hu": "AMT-WSMAN",
5564 "xloc": [
5551 - "default.handlebars->47->3116"
5565 + "default.handlebars->47->3126"
5566 ]
5567 },
5568 {
@@ -5771,7 +5785,7 @@
5785 "hu": "Hozzáférés megtagadva",
5786 "xloc": [
5787 "default-mobile.handlebars->11->875",
5774 - "default.handlebars->47->1696"
5788 + "default.handlebars->47->1706"
5789 ]
5790 },
5791 {
@@ -5854,7 +5868,7 @@
5868 "zh-cht": "存取伺服器檔案",
5869 "hu": "Hozzáférés a kiszolgálófájlokhoz",
5870 "xloc": [
5857 - "default.handlebars->47->2843"
5871 + "default.handlebars->47->2853"
5872 ]
5873 },
5874 {
@@ -5971,9 +5985,9 @@
5985 "default-mobile.handlebars->11->471",
5986 "default-mobile.handlebars->11->473",
5987 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountSecurity->1->0",
5974 - "default.handlebars->47->2026",
5975 - "default.handlebars->47->2028",
5976 - "default.handlebars->47->3309",
5988 + "default.handlebars->47->2036",
5989 + "default.handlebars->47->2038",
5990 + "default.handlebars->47->3319",
5991 "default.handlebars->47->850",
5992 "default.handlebars->47->852"
5993 ]
@@ -6003,7 +6017,7 @@
6017 "hu": "Fiókbeállítások",
6018 "xloc": [
6019 "default-mobile.handlebars->11->982",
6006 - "default.handlebars->47->3180"
6020 + "default.handlebars->47->3190"
6021 ]
6022 },
6023 {
@@ -6069,7 +6083,7 @@
6083 "fr": "Compte modifié pour se synchroniser avec les données LDAP.",
6084 "hu": "Fiók megváltozott: LDAP-adatokkal való szinkronizálás.",
6085 "xloc": [
6072 - "default.handlebars->47->2605"
6086 + "default.handlebars->47->2615"
6087 ]
6088 },
6089 {
@@ -6096,7 +6110,7 @@
6110 "zh-cht": "帳戶已更改:{0}",
6111 "hu": "Fiók megváltozott: {0}",
6112 "xloc": [
6099 - "default.handlebars->47->2517"
6113 + "default.handlebars->47->2527"
6114 ]
6115 },
6116 {
@@ -6123,7 +6137,7 @@
6137 "zh-cht": "創建帳戶,電子郵件為{0}",
6138 "hu": "Fiók létrehozva, az e-mail címe {0} ",
6139 "xloc": [
6126 - "default.handlebars->47->2516"
6140 + "default.handlebars->47->2526"
6141 ]
6142 },
6143 {
@@ -6150,7 +6164,7 @@
6164 "zh-cht": "已創建帳戶,名稱為 {0}。",
6165 "hu": "Fiók létrehozva, név: {0}. ",
6166 "xloc": [
6153 - "default.handlebars->47->2579"
6167 + "default.handlebars->47->2589"
6168 ]
6169 },
6170 {
@@ -6177,7 +6191,7 @@
6191 "zh-cht": "帳戶已創建,用戶名是{0}",
6192 "hu": "Fiók létrehozva, felhasználónév {0} ",
6193 "xloc": [
6180 - "default.handlebars->47->2515"
6194 + "default.handlebars->47->2525"
6195 ]
6196 },
6197 {
@@ -6206,8 +6220,8 @@
6220 "xloc": [
6221 "default-mobile.handlebars->11->66",
6222 "default.handlebars->47->210",
6209 - "default.handlebars->47->2669",
6210 - "default.handlebars->47->2840"
6223 + "default.handlebars->47->2679",
6224 + "default.handlebars->47->2850"
6225 ]
6226 },
6227 {
@@ -6235,7 +6249,7 @@
6249 "hu": "Elérte a fiókkorlátot.",
6250 "xloc": [
6251 "default-mobile.handlebars->11->994",
6238 - "default.handlebars->47->3192",
6252 + "default.handlebars->47->3202",
6253 "login-mobile.handlebars->5->6",
6254 "login.handlebars->5->8",
6255 "login2.handlebars->7->207"
@@ -6294,7 +6308,7 @@
6308 "zh-cht": "帳號登錄",
6309 "hu": "Bejelentkezés a fiókba",
6310 "xloc": [
6297 - "default.handlebars->47->2452"
6311 + "default.handlebars->47->2462"
6312 ]
6313 },
6314 {
@@ -6321,7 +6335,7 @@
6335 "zh-cht": "從 {0}、{1}、{2} 登錄帳戶",
6336 "hu": "Bejelentkezés a fiókba innen: {0}, {1}, {2}",
6337 "xloc": [
6324 - "default.handlebars->47->2558"
6338 + "default.handlebars->47->2568"
6339 ]
6340 },
6341 {
@@ -6332,7 +6346,7 @@
6346 "fr": "Enregistrements des jetons de connexion au compte",
6347 "hu": "Fiók bejelentkezési token rekordok",
6348 "xloc": [
6335 - "default.handlebars->47->3159"
6349 + "default.handlebars->47->3169"
6350 ]
6351 },
6352 {
@@ -6359,7 +6373,7 @@
6373 "zh-cht": "帳戶登出",
6374 "hu": "Fiók kijelentkezés",
6375 "xloc": [
6362 - "default.handlebars->47->2453"
6376 + "default.handlebars->47->2463"
6377 ]
6378 },
6379 {
@@ -6415,7 +6429,7 @@
6429 "zh-cht": "帳戶密碼已更改:{0}",
6430 "hu": "Fiók jelszava megváltozott: {0}",
6431 "xloc": [
6418 - "default.handlebars->47->2525"
6432 + "default.handlebars->47->2535"
6433 ]
6434 },
6435 {
@@ -6442,7 +6456,7 @@
6456 "zh-cht": "帳戶已刪除",
6457 "hu": "Fiók eltávolítva",
6458 "xloc": [
6445 - "default.handlebars->47->2514"
6459 + "default.handlebars->47->2524"
6460 ]
6461 },
6462 {
@@ -6497,7 +6511,7 @@
6511 "hu": "Művelet",
6512 "xloc": [
6513 "default-mobile.handlebars->11->881",
6500 - "default.handlebars->47->1702",
6514 + "default.handlebars->47->1712",
6515 "default.handlebars->container->column_l->p42->p42tbl->1->0->8"
6516 ]
6517 },
@@ -6668,7 +6682,7 @@
6682 "zh-cht": "如果ACM失敗,則激活到CCM",
6683 "hu": "Aktiválja a CCM-et, ha az ACM meghiúsul",
6684 "xloc": [
6671 - "default.handlebars->47->2216"
6685 + "default.handlebars->47->2226"
6686 ]
6687 },
6688 {
@@ -6698,7 +6712,7 @@
6712 "default-mobile.handlebars->11->499",
6713 "default-mobile.handlebars->11->501",
6714 "default-mobile.handlebars->11->791",
6701 - "default.handlebars->47->1611",
6715 + "default.handlebars->47->1621",
6716 "default.handlebars->47->883",
6717 "default.handlebars->47->885"
6718 ]
@@ -6755,7 +6769,7 @@
6769 "hu": "Atív eszközmegosztás",
6770 "xloc": [
6771 "default.handlebars->47->1058",
6758 - "default.handlebars->47->2165"
6772 + "default.handlebars->47->2175"
6773 ]
6774 },
6775 {
@@ -6782,7 +6796,7 @@
6796 "zh-cht": "活動登錄令牌",
6797 "hu": "Aktív bejelentkezési tokenek",
6798 "xloc": [
6785 - "default.handlebars->47->2057"
6799 + "default.handlebars->47->2067"
6800 ]
6801 },
6802 {
@@ -6964,7 +6978,7 @@
6978 "zh-cht": "新增代理",
6979 "hu": "Agent hozzáadása",
6980 "xloc": [
6967 - "default.handlebars->47->2155",
6981 + "default.handlebars->47->2165",
6982 "default.handlebars->47->485"
6983 ]
6984 },
@@ -7016,9 +7030,9 @@
7030 "zh-cht": "新增裝置",
7031 "hu": "Eszköz hozzáadása",
7032 "xloc": [
7019 - "default.handlebars->47->2159",
7020 - "default.handlebars->47->2815",
7021 - "default.handlebars->47->3009",
7033 + "default.handlebars->47->2169",
7034 + "default.handlebars->47->2825",
7035 + "default.handlebars->47->3019",
7036 "default.handlebars->47->489"
7037 ]
7038 },
@@ -7073,9 +7087,9 @@
7087 "zh-cht": "新增裝置群",
7088 "hu": "Eszközcsoport hozzáadása",
7089 "xloc": [
7076 - "default.handlebars->47->2302",
7077 - "default.handlebars->47->2809",
7078 - "default.handlebars->47->2997",
7090 + "default.handlebars->47->2312",
7091 + "default.handlebars->47->2819",
7092 + "default.handlebars->47->3007",
7093 "default.handlebars->47->385"
7094 ]
7095 },
@@ -7103,7 +7117,7 @@
7117 "zh-cht": "新增裝置群權限",
7118 "hu": "Eszközcsoport engedélyek hozzáadása",
7119 "xloc": [
7106 - "default.handlebars->47->2299"
7120 + "default.handlebars->47->2309"
7121 ]
7122 },
7123 {
@@ -7130,8 +7144,8 @@
7144 "zh-cht": "新增裝置權限",
7145 "hu": "Eszköz engedélyek hozzáadása",
7146 "xloc": [
7133 - "default.handlebars->47->2304",
7134 - "default.handlebars->47->2306"
7147 + "default.handlebars->47->2314",
7148 + "default.handlebars->47->2316"
7149 ]
7150 },
7151 {
@@ -7287,7 +7301,7 @@
7301 "zh-cht": "新增成員身份",
7302 "hu": "Hozzáadás Felhasználói Csoporthoz",
7303 "xloc": [
7290 - "default.handlebars->47->3029"
7304 + "default.handlebars->47->3039"
7305 ]
7306 },
7307 {
@@ -7365,8 +7379,8 @@
7379 "zh-cht": "新增安全密鑰",
7380 "hu": "Biztonsági kulcs hozzáadása",
7381 "xloc": [
7368 - "default.handlebars->47->1772",
7369 - "default.handlebars->47->1773",
7382 + "default.handlebars->47->1782",
7383 + "default.handlebars->47->1783",
7384 "default.handlebars->47->241",
7385 "default.handlebars->47->243",
7386 "default.handlebars->47->246",
@@ -7425,7 +7439,7 @@
7439 "zh-cht": "新增用戶裝置權限",
7440 "hu": "Felhasználói eszköz engedélyek hozzáadása",
7441 "xloc": [
7428 - "default.handlebars->47->2309"
7442 + "default.handlebars->47->2319"
7443 ]
7444 },
7445 {
@@ -7453,9 +7467,9 @@
7467 "hu": "Felhasználói csoport hozzáadása",
7468 "xloc": [
7469 "default.handlebars->47->1051",
7456 - "default.handlebars->47->2149",
7457 - "default.handlebars->47->2301",
7458 - "default.handlebars->47->3003"
7470 + "default.handlebars->47->2159",
7471 + "default.handlebars->47->2311",
7472 + "default.handlebars->47->3013"
7473 ]
7474 },
7475 {
@@ -7482,7 +7496,7 @@
7496 "zh-cht": "新增用戶群裝置權限",
7497 "hu": "Felhasználói csoport eszköz engedélyek hozzáadása",
7498 "xloc": [
7485 - "default.handlebars->47->2311"
7499 + "default.handlebars->47->2321"
7500 ]
7501 },
7502 {
@@ -7560,8 +7574,8 @@
7574 "zh-cht": "新增用戶",
7575 "hu": "Felhasználók hozzáadása",
7576 "xloc": [
7563 - "default.handlebars->47->2148",
7564 - "default.handlebars->47->2804"
7577 + "default.handlebars->47->2158",
7578 + "default.handlebars->47->2814"
7579 ]
7580 },
7581 {
@@ -7588,7 +7602,7 @@
7602 "zh-cht": "將用戶新增到裝置群",
7603 "hu": "Felhasználók hozzáadása az eszköz csoporthoz",
7604 "xloc": [
7591 - "default.handlebars->47->2298"
7605 + "default.handlebars->47->2308"
7606 ]
7607 },
7608 {
@@ -7615,7 +7629,7 @@
7629 "zh-cht": "將用戶新增到用戶群",
7630 "hu": "Felhasználók hozzáadása az felhasználó csoporthoz",
7631 "xloc": [
7618 - "default.handlebars->47->2839"
7632 + "default.handlebars->47->2849"
7633 ]
7634 },
7635 {
@@ -7801,7 +7815,7 @@
7815 "zh-cht": "通過安裝Mesh Agent將新電腦新增到該裝置群。",
7816 "hu": "Adjon hozzá egy új számítógépet ehhez az eszközcsoporthoz a Mesh Agent telepítésével.",
7817 "xloc": [
7804 - "default.handlebars->47->2154",
7818 + "default.handlebars->47->2164",
7819 "default.handlebars->47->484"
7820 ]
7821 },
@@ -7829,7 +7843,7 @@
7843 "zh-cht": "添加位於本地網絡上的設備。",
7844 "hu": "Helyi hálózaton található eszköz hozzáadása.",
7845 "xloc": [
7832 - "default.handlebars->47->2158",
7846 + "default.handlebars->47->2168",
7847 "default.handlebars->47->488"
7848 ]
7849 },
@@ -7938,7 +7952,7 @@
7952 "zh-cht": "添加了身份驗證應用程序",
7953 "hu": "Hitelesítési alkalmazás hozzáadva",
7954 "xloc": [
7941 - "default.handlebars->47->2541"
7955 + "default.handlebars->47->2551"
7956 ]
7957 },
7958 {
@@ -7965,7 +7979,7 @@
7979 "zh-cht": "已將設備共享{0}從{1}添加到{2}",
7980 "hu": "{0} eszközmegosztás hozzáadva {1} és {2} között",
7981 "xloc": [
7968 - "default.handlebars->47->2552"
7982 + "default.handlebars->47->2562"
7983 ]
7984 },
7985 {
@@ -7992,7 +8006,7 @@
8006 "zh-cht": "添加了每天重複的設備共享 {0}。",
8007 "hu": "Naponta ismétlődő {0} eszközmegosztás hozzáadva.",
8008 "xloc": [
7995 - "default.handlebars->47->2589"
8009 + "default.handlebars->47->2599"
8010 ]
8011 },
8012 {
@@ -8019,7 +8033,7 @@
8033 "zh-cht": "添加了每週重複的設備共享 {0}。",
8034 "hu": "Hetente ismétlődő {0} eszközmegosztás hozzáadva.",
8035 "xloc": [
8022 - "default.handlebars->47->2590"
8036 + "default.handlebars->47->2600"
8037 ]
8038 },
8039 {
@@ -8046,7 +8060,7 @@
8060 "zh-cht": "添加了無限時間的設備共享 {0}。",
8061 "hu": "{0} eszközmegosztás hozzáadva korlátlan ideig.",
8062 "xloc": [
8049 - "default.handlebars->47->2582"
8063 + "default.handlebars->47->2592"
8064 ]
8065 },
8066 {
@@ -8073,8 +8087,8 @@
8087 "zh-cht": "已將設備{0}添加到設備組{1}",
8088 "hu": "A(z) {0} eszköz hozzáadva a(z) {1} eszközcsoporthoz",
8089 "xloc": [
8076 - "default.handlebars->47->2508",
8077 - "default.handlebars->47->2535"
8090 + "default.handlebars->47->2518",
8091 + "default.handlebars->47->2545"
8092 ]
8093 },
8094 {
@@ -8101,7 +8115,7 @@
8115 "zh-cht": "添加了登錄令牌",
8116 "hu": "Bejelentkezési token hozzáadva",
8117 "xloc": [
8104 - "default.handlebars->47->2566"
8118 + "default.handlebars->47->2576"
8119 ]
8120 },
8121 {
@@ -8128,7 +8142,7 @@
8142 "zh-cht": "增加推送通知認證設備",
8143 "hu": "Push értesítési hitelesítő eszköz hozzáadva",
8144 "xloc": [
8131 - "default.handlebars->47->2564"
8145 + "default.handlebars->47->2574"
8146 ]
8147 },
8148 {
@@ -8155,7 +8169,7 @@
8169 "zh-cht": "添加了安全密鑰",
8170 "hu": "Biztonsági kulcs hozzáadva",
8171 "xloc": [
8158 - "default.handlebars->47->2546"
8172 + "default.handlebars->47->2556"
8173 ]
8174 },
8175 {
@@ -8182,7 +8196,7 @@
8196 "zh-cht": "已將用戶組{0}添加到設備組{1}",
8197 "hu": "{0} felhasználói csoport hozzáadva a(z) {1} eszközcsoporthoz",
8198 "xloc": [
8185 - "default.handlebars->47->2519"
8199 + "default.handlebars->47->2529"
8200 ]
8201 },
8202 {
@@ -8209,8 +8223,8 @@
8223 "zh-cht": "已將用戶{0}添加到用戶組{1}",
8224 "hu": "{0} felhasználó hozzáadva a(z) {1} felhasználói csoporthoz",
8225 "xloc": [
8212 - "default.handlebars->47->2522",
8213 - "default.handlebars->47->2531"
8226 + "default.handlebars->47->2532",
8227 + "default.handlebars->47->2541"
8228 ]
8229 },
8230 {
@@ -8292,7 +8306,7 @@
8306 "hu": "Admin Control Mode (ACM)",
8307 "xloc": [
8308 "default-mobile.handlebars->11->793",
8295 - "default.handlebars->47->1613"
8309 + "default.handlebars->47->1623"
8310 ]
8311 },
8312 {
@@ -8320,7 +8334,7 @@
8334 "hu": "Adminisztrátor Hitelesítő adatok",
8335 "xloc": [
8336 "default-mobile.handlebars->11->799",
8323 - "default.handlebars->47->1619"
8337 + "default.handlebars->47->1629"
8338 ]
8339 },
8340 {
@@ -8375,7 +8389,7 @@
8389 "zh-cht": "管理領域",
8390 "hu": "Adminisztratív Realms",
8391 "xloc": [
8378 - "default.handlebars->47->2891"
8392 + "default.handlebars->47->2901"
8393 ]
8394 },
8395 {
@@ -8430,7 +8444,7 @@
8444 "zh-cht": "管理領域",
8445 "hu": "Adminisztratív Realms",
8446 "xloc": [
8433 - "default.handlebars->47->2736"
8447 + "default.handlebars->47->2746"
8448 ]
8449 },
8450 {
@@ -8457,7 +8471,7 @@
8471 "zh-cht": "管理員",
8472 "hu": "Adminisztrátor",
8473 "xloc": [
8460 - "default.handlebars->47->2661"
8474 + "default.handlebars->47->2671"
8475 ]
8476 },
8477 {
@@ -8485,7 +8499,7 @@
8499 "hu": "afrikai",
8500 "xloc": [
8501 "default-mobile.handlebars->11->104",
8488 - "default.handlebars->47->1775",
8502 + "default.handlebars->47->1785",
8503 "login2.handlebars->7->1"
8504 ]
8505 },
@@ -8517,9 +8531,9 @@
8531 "default-mobile.handlebars->11->463",
8532 "default-mobile.handlebars->11->520",
8533 "default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1",
8520 - "default.handlebars->47->2382",
8521 - "default.handlebars->47->2395",
8522 - "default.handlebars->47->3253",
8534 + "default.handlebars->47->2392",
8535 + "default.handlebars->47->2405",
8536 + "default.handlebars->47->3263",
8537 "default.handlebars->47->405",
8538 "default.handlebars->47->693",
8539 "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1",
@@ -8550,8 +8564,8 @@
8564 "zh-cht": "代理+Intel&reg; AMT",
8565 "hu": "Agent + Intel® AMT",
8566 "xloc": [
8553 - "default.handlebars->47->2384",
8554 - "default.handlebars->47->2397"
8567 + "default.handlebars->47->2394",
8568 + "default.handlebars->47->2407"
8569 ]
8570 },
8571 {
@@ -8607,7 +8621,7 @@
8621 "hu": "Agent konzol",
8622 "xloc": [
8623 "default-mobile.handlebars->11->953",
8610 - "default.handlebars->47->2319",
8624 + "default.handlebars->47->2329",
8625 "default.handlebars->47->781"
8626 ]
8627 },
@@ -8635,7 +8649,7 @@
8649 "zh-cht": "代理錯誤計數器",
8650 "hu": "Agrnt hiba számlálók",
8651 "xloc": [
8638 - "default.handlebars->47->3222"
8652 + "default.handlebars->47->3232"
8653 ]
8654 },
8655 {
@@ -8824,7 +8838,7 @@
8838 "hu": "Agent Ön-Megosztás",
8839 "xloc": [
8840 "default.handlebars->47->1079",
8827 - "default.handlebars->47->2186"
8841 + "default.handlebars->47->2196"
8842 ]
8843 },
8844 {
@@ -8851,7 +8865,7 @@
8865 "zh-cht": "代理時段",
8866 "hu": "Agent munkamenetek",
8867 "xloc": [
8854 - "default.handlebars->47->3238"
8868 + "default.handlebars->47->3248"
8869 ]
8870 },
8871 {
@@ -8958,7 +8972,7 @@
8972 "zh-cht": "代理類型",
8973 "hu": "Agent típusok",
8974 "xloc": [
8961 - "default.handlebars->47->2393",
8975 + "default.handlebars->47->2403",
8976 "default.handlebars->container->column_l->p21->p21main->1->1->meshOsChartDiv->1"
8977 ]
8978 },
@@ -9014,7 +9028,7 @@
9028 "zh-cht": "代理關閉了與{0}%代理到服務器壓縮的會話。已發送:{1},已壓縮:{2}",
9029 "hu": "Az Agent lezárta a munkamenetet {0}%-os ügynök-szerver-tömörítéssel. Elküldve: {1}, tömörítve: {2}",
9030 "xloc": [
9017 - "default.handlebars->47->2505"
9031 + "default.handlebars->47->2515"
9032 ]
9033 },
9034 {
@@ -9224,7 +9238,7 @@
9238 "hu": "Offline Agent",
9239 "xloc": [
9240 "default-mobile.handlebars->11->873",
9227 - "default.handlebars->47->1694"
9241 + "default.handlebars->47->1704"
9242 ]
9243 },
9244 {
@@ -9252,7 +9266,7 @@
9266 "hu": "Online Agent",
9267 "xloc": [
9268 "default-mobile.handlebars->11->872",
9255 - "default.handlebars->47->1693"
9269 + "default.handlebars->47->1703"
9270 ]
9271 },
9272 {
@@ -9474,8 +9488,8 @@
9488 "zh-cht": "代理",
9489 "hu": "Agent-ek",
9490 "xloc": [
9477 - "default.handlebars->47->2350",
9478 - "default.handlebars->47->3266",
9491 + "default.handlebars->47->2360",
9492 + "default.handlebars->47->3276",
9493 "default.handlebars->47->573"
9494 ]
9495 },
@@ -9504,7 +9518,7 @@
9518 "hu": "albán",
9519 "xloc": [
9520 "default-mobile.handlebars->11->105",
9507 - "default.handlebars->47->1776",
9521 + "default.handlebars->47->1786",
9522 "login2.handlebars->7->2"
9523 ]
9524 },
@@ -9544,7 +9558,7 @@
9558 "default-mobile.handlebars->11->355",
9559 "default-mobile.handlebars->11->687",
9560 "default-mobile.handlebars->11->689",
9547 - "default.handlebars->47->3086",
9561 + "default.handlebars->47->3096",
9562 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar->DevFilterSelect->1"
9563 ]
9564 },
@@ -9572,7 +9586,7 @@
9586 "zh-cht": "全部可用",
9587 "hu": "Összes elérhető",
9588 "xloc": [
9575 - "default.handlebars->47->2623"
9589 + "default.handlebars->47->2633"
9590 ]
9591 },
9592 {
@@ -9599,7 +9613,7 @@
9613 "zh-cht": "所有可用的代理",
9614 "hu": "Az összes rendelkezésre álló Agent",
9615 "xloc": [
9602 - "default.handlebars->47->2351",
9616 + "default.handlebars->47->2361",
9617 "default.handlebars->47->574"
9618 ]
9619 },
@@ -9654,7 +9668,7 @@
9668 "zh-cht": "所有事件",
9669 "hu": "Összes Esemény",
9670 "xloc": [
9657 - "default.handlebars->47->2621"
9671 + "default.handlebars->47->2631"
9672 ]
9673 },
9674 {
@@ -9737,8 +9751,8 @@
9751 "zh-cht": "允許用戶管理此裝置群和該群中的裝置。",
9752 "hu": "Engedélyezi a felhasználók számára az eszközcsoport és a csoportba tartozó eszközök kezelését.",
9753 "xloc": [
9740 - "default.handlebars->47->2263",
9741 - "default.handlebars->47->2836"
9754 + "default.handlebars->47->2273",
9755 + "default.handlebars->47->2846"
9756 ]
9757 },
9758 {
@@ -9765,7 +9779,7 @@
9779 "zh-cht": "允許用戶管理此裝置。",
9780 "hu": "Engedélyezze a felhasználóknak, hogy kezeljék ezt az eszközt.",
9781 "xloc": [
9768 - "default.handlebars->47->2264"
9782 + "default.handlebars->47->2274"
9783 ]
9784 },
9785 {
@@ -10067,9 +10081,9 @@
10081 "zh-cht": "一直通知",
10082 "hu": "Minden kapcsolat értesítés",
10083 "xloc": [
10070 - "default.handlebars->47->2125",
10071 - "default.handlebars->47->2795",
10072 - "default.handlebars->47->2900",
10084 + "default.handlebars->47->2135",
10085 + "default.handlebars->47->2805",
10086 + "default.handlebars->47->2910",
10087 "default.handlebars->47->945"
10088 ]
10089 },
@@ -10097,9 +10111,9 @@
10111 "zh-cht": "一直提示",
10112 "hu": "Minden kapcsolat engedélykérés",
10113 "xloc": [
10100 - "default.handlebars->47->2126",
10101 - "default.handlebars->47->2796",
10102 - "default.handlebars->47->2901",
10114 + "default.handlebars->47->2136",
10115 + "default.handlebars->47->2806",
10116 + "default.handlebars->47->2911",
10117 "default.handlebars->47->946"
10118 ]
10119 },
@@ -10190,7 +10204,7 @@
10204 "hu": "Ismeretlen hiba történt.",
10205 "de": "Ein unbekannter Fehler ist aufgetreten.",
10206 "xloc": [
10193 - "default.handlebars->47->3038"
10207 + "default.handlebars->47->3048"
10208 ]
10209 },
10210 {
@@ -10392,8 +10406,8 @@
10406 "zh-cht": "殺毒軟件未激活",
10407 "hu": "A vírusirtó nem aktív",
10408 "xloc": [
10395 - "default.handlebars->47->2386",
10396 - "default.handlebars->47->2400"
10409 + "default.handlebars->47->2396",
10410 + "default.handlebars->47->2410"
10411 ]
10412 },
10413 {
@@ -10762,7 +10776,7 @@
10776 "hu": "arab (Algéria)",
10777 "xloc": [
10778 "default-mobile.handlebars->11->107",
10765 - "default.handlebars->47->1778",
10779 + "default.handlebars->47->1788",
10780 "login2.handlebars->7->4"
10781 ]
10782 },
@@ -10791,7 +10805,7 @@
10805 "hu": "arab (Bahrein)",
10806 "xloc": [
10807 "default-mobile.handlebars->11->108",
10794 - "default.handlebars->47->1779",
10808 + "default.handlebars->47->1789",
10809 "login2.handlebars->7->5"
10810 ]
10811 },
@@ -10820,7 +10834,7 @@
10834 "hu": "arab (Egyiptom)",
10835 "xloc": [
10836 "default-mobile.handlebars->11->109",
10823 - "default.handlebars->47->1780",
10837 + "default.handlebars->47->1790",
10838 "login2.handlebars->7->6"
10839 ]
10840 },
@@ -10849,7 +10863,7 @@
10863 "hu": "arab (Irak)",
10864 "xloc": [
10865 "default-mobile.handlebars->11->110",
10852 - "default.handlebars->47->1781",
10866 + "default.handlebars->47->1791",
10867 "login2.handlebars->7->7"
10868 ]
10869 },
@@ -10878,7 +10892,7 @@
10892 "hu": "arab (Jordánia)",
10893 "xloc": [
10894 "default-mobile.handlebars->11->111",
10881 - "default.handlebars->47->1782",
10895 + "default.handlebars->47->1792",
10896 "login2.handlebars->7->8"
10897 ]
10898 },
@@ -10907,7 +10921,7 @@
10921 "hu": "arab (Kuvait)",
10922 "xloc": [
10923 "default-mobile.handlebars->11->112",
10910 - "default.handlebars->47->1783",
10924 + "default.handlebars->47->1793",
10925 "login2.handlebars->7->9"
10926 ]
10927 },
@@ -10936,7 +10950,7 @@
10950 "hu": "arab (Libanon)",
10951 "xloc": [
10952 "default-mobile.handlebars->11->113",
10939 - "default.handlebars->47->1784",
10953 + "default.handlebars->47->1794",
10954 "login2.handlebars->7->10"
10955 ]
10956 },
@@ -10965,7 +10979,7 @@
10979 "hu": "arab (Líbia)",
10980 "xloc": [
10981 "default-mobile.handlebars->11->114",
10968 - "default.handlebars->47->1785",
10982 + "default.handlebars->47->1795",
10983 "login2.handlebars->7->11"
10984 ]
10985 },
@@ -10994,7 +11008,7 @@
11008 "hu": "arab (Marokkó)",
11009 "xloc": [
11010 "default-mobile.handlebars->11->115",
10997 - "default.handlebars->47->1786",
11011 + "default.handlebars->47->1796",
11012 "login2.handlebars->7->12"
11013 ]
11014 },
@@ -11023,7 +11037,7 @@
11037 "hu": "arab (Omán)",
11038 "xloc": [
11039 "default-mobile.handlebars->11->116",
11026 - "default.handlebars->47->1787",
11040 + "default.handlebars->47->1797",
11041 "login2.handlebars->7->13"
11042 ]
11043 },
@@ -11052,7 +11066,7 @@
11066 "hu": "arab (Katar)",
11067 "xloc": [
11068 "default-mobile.handlebars->11->117",
11055 - "default.handlebars->47->1788",
11069 + "default.handlebars->47->1798",
11070 "login2.handlebars->7->14"
11071 ]
11072 },
@@ -11081,7 +11095,7 @@
11095 "hu": "arab (Szaúd-Arábia)",
11096 "xloc": [
11097 "default-mobile.handlebars->11->118",
11084 - "default.handlebars->47->1789",
11098 + "default.handlebars->47->1799",
11099 "login2.handlebars->7->15"
11100 ]
11101 },
@@ -11110,7 +11124,7 @@
11124 "hu": "arab",
11125 "xloc": [
11126 "default-mobile.handlebars->11->106",
11113 - "default.handlebars->47->1777",
11127 + "default.handlebars->47->1787",
11128 "login2.handlebars->7->3"
11129 ]
11130 },
@@ -11139,7 +11153,7 @@
11153 "hu": "arab (Szíria)",
11154 "xloc": [
11155 "default-mobile.handlebars->11->119",
11142 - "default.handlebars->47->1790",
11156 + "default.handlebars->47->1800",
11157 "login2.handlebars->7->16"
11158 ]
11159 },
@@ -11168,7 +11182,7 @@
11182 "hu": "arab (Tunézia)",
11183 "xloc": [
11184 "default-mobile.handlebars->11->120",
11171 - "default.handlebars->47->1791",
11185 + "default.handlebars->47->1801",
11186 "login2.handlebars->7->17"
11187 ]
11188 },
@@ -11197,7 +11211,7 @@
11211 "hu": "arab (Egyesült Arab Emírségek)",
11212 "xloc": [
11213 "default-mobile.handlebars->11->121",
11200 - "default.handlebars->47->1792",
11214 + "default.handlebars->47->1802",
11215 "login2.handlebars->7->18"
11216 ]
11217 },
@@ -11226,7 +11240,7 @@
11240 "hu": "arab (Jemen)",
11241 "xloc": [
11242 "default-mobile.handlebars->11->122",
11229 - "default.handlebars->47->1793",
11243 + "default.handlebars->47->1803",
11244 "login2.handlebars->7->19"
11245 ]
11246 },
@@ -11255,7 +11269,7 @@
11269 "hu": "aragóniai",
11270 "xloc": [
11271 "default-mobile.handlebars->11->123",
11258 - "default.handlebars->47->1794",
11272 + "default.handlebars->47->1804",
11273 "login2.handlebars->7->20"
11274 ]
11275 },
@@ -11286,9 +11300,9 @@
11300 "default-mobile.handlebars->11->722",
11301 "default-mobile.handlebars->11->724",
11302 "default-mobile.handlebars->11->726",
11289 - "default.handlebars->47->1558",
11290 - "default.handlebars->47->1560",
11291 - "default.handlebars->47->1562"
11303 + "default.handlebars->47->1568",
11304 + "default.handlebars->47->1570",
11305 + "default.handlebars->47->1572"
11306 ]
11307 },
11308 {
@@ -11343,7 +11357,7 @@
11357 "hu": "Biztos, hogy törölni szeretné a {0} csoportot? Az eszközcsoport törlése a csoportba tartozó eszközökre vonatkozó összes információt is törli.",
11358 "xloc": [
11359 "default-mobile.handlebars->11->913",
11346 - "default.handlebars->47->2230"
11360 + "default.handlebars->47->2240"
11361 ]
11362 },
11363 {
@@ -11451,7 +11465,7 @@
11465 "zh-cht": "你確定要{0}外掛嗎:{1}",
11466 "hu": "Biztosm, hogy {0} szeretné használni a következő beépülő modult: {1}",
11467 "xloc": [
11454 - "default.handlebars->47->3318"
11468 + "default.handlebars->47->3328"
11469 ]
11470 },
11471 {
@@ -11507,7 +11521,7 @@
11521 "hu": "örmény",
11522 "xloc": [
11523 "default-mobile.handlebars->11->124",
11510 - "default.handlebars->47->1795",
11524 + "default.handlebars->47->1805",
11525 "login2.handlebars->7->21"
11526 ]
11527 },
@@ -11699,7 +11713,7 @@
11713 "hu": "asszámi",
11714 "xloc": [
11715 "default-mobile.handlebars->11->125",
11702 - "default.handlebars->47->1796",
11716 + "default.handlebars->47->1806",
11717 "login2.handlebars->7->22"
11718 ]
11719 },
@@ -11863,7 +11877,7 @@
11877 "hu": "asztúriai",
11878 "xloc": [
11879 "default-mobile.handlebars->11->126",
11866 - "default.handlebars->47->1797",
11880 + "default.handlebars->47->1807",
11881 "login2.handlebars->7->23"
11882 ]
11883 },
@@ -11891,7 +11905,7 @@
11905 "zh-cht": "嘗試激活英特爾(R)AMT ACM模式",
11906 "hu": "Intel(R) AMT ACM üzemmód aktiválásának kísérlete",
11907 "xloc": [
11894 - "default.handlebars->47->2474"
11908 + "default.handlebars->47->2484"
11909 ]
11910 },
11911 {
@@ -11978,7 +11992,7 @@
11992 "zh-cht": "認證軟體",
11993 "hu": "Hitelesítő alkalmazás beállítva",
11994 "xloc": [
11981 - "default.handlebars->47->2904"
11995 + "default.handlebars->47->2914"
11996 ]
11997 },
11998 {
@@ -12005,9 +12019,9 @@
12019 "zh-cht": "認證設備",
12020 "hu": "Hitelesítési eszköz",
12021 "xloc": [
12008 - "default.handlebars->47->1758",
12009 - "default.handlebars->47->1760",
12010 - "default.handlebars->47->1764"
12022 + "default.handlebars->47->1768",
12023 + "default.handlebars->47->1770",
12024 + "default.handlebars->47->1774"
12025 ]
12026 },
12027 {
@@ -12068,8 +12082,8 @@
12082 "default-mobile.handlebars->11->311",
12083 "default-mobile.handlebars->11->70",
12084 "default-mobile.handlebars->11->73",
12071 - "default.handlebars->47->1754",
12072 - "default.handlebars->47->1756",
12085 + "default.handlebars->47->1764",
12086 + "default.handlebars->47->1766",
12087 "default.handlebars->47->216",
12088 "default.handlebars->47->221"
12089 ]
@@ -12206,8 +12220,8 @@
12220 "zh-cht": "自動刪除",
12221 "hu": "Automatikus eltávolítás",
12222 "xloc": [
12209 - "default.handlebars->47->2110",
12210 - "default.handlebars->47->2614"
12223 + "default.handlebars->47->2120",
12224 + "default.handlebars->47->2624"
12225 ]
12226 },
12227 {
@@ -12265,7 +12279,7 @@
12279 "zh-cht": "自動下載代理程序核心轉儲文件:“{0}”",
12280 "hu": "Agent core dump fájl automatikus letöltése: \\\"{0}\\\"",
12281 "xloc": [
12268 - "default.handlebars->47->2555"
12282 + "default.handlebars->47->2565"
12283 ]
12284 },
12285 {
@@ -12371,7 +12385,7 @@
12385 "zh-cht": "自動移除非活動設備",
12386 "hu": "Az inaktív eszközök automatikus eltávolítása",
12387 "xloc": [
12374 - "default.handlebars->47->2258"
12388 + "default.handlebars->47->2268"
12389 ]
12390 },
12391 {
@@ -12398,7 +12412,7 @@
12412 "zh-cht": "可用內存",
12413 "hu": "Elérhető memória",
12414 "xloc": [
12401 - "default.handlebars->47->3247"
12415 + "default.handlebars->47->3257"
12416 ]
12417 },
12418 {
@@ -12426,7 +12440,7 @@
12440 "hu": "azerbajdzsáni",
12441 "xloc": [
12442 "default-mobile.handlebars->11->127",
12429 - "default.handlebars->47->1798",
12443 + "default.handlebars->47->1808",
12444 "login2.handlebars->7->24"
12445 ]
12446 },
@@ -12487,7 +12501,7 @@
12501 "hu": "BIOS",
12502 "xloc": [
12503 "default-mobile.handlebars->11->808",
12490 - "default.handlebars->47->1628"
12504 + "default.handlebars->47->1638"
12505 ]
12506 },
12507 {
@@ -12660,8 +12674,8 @@
12674 "zh-cht": "背景與互動",
12675 "hu": "Háttérben és interaktív módon",
12676 "xloc": [
12663 - "default.handlebars->47->2357",
12664 - "default.handlebars->47->2364",
12677 + "default.handlebars->47->2367",
12678 + "default.handlebars->47->2374",
12679 "default.handlebars->47->560",
12680 "default.handlebars->47->581"
12681 ]
@@ -12691,8 +12705,8 @@
12705 "hu": "Csak háttérben",
12706 "xloc": [
12707 "agentinvite.handlebars->3->9",
12694 - "default.handlebars->47->2358",
12695 - "default.handlebars->47->2365",
12708 + "default.handlebars->47->2368",
12709 + "default.handlebars->47->2375",
12710 "default.handlebars->47->561",
12711 "default.handlebars->47->582",
12712 "default.handlebars->47->598"
@@ -12750,8 +12764,8 @@
12764 "zh-cht": "備用碼",
12765 "hu": "Biztonsági kódok generálva",
12766 "xloc": [
12753 - "default.handlebars->47->2907",
12754 - "default.handlebars->47->3134"
12767 + "default.handlebars->47->2917",
12768 + "default.handlebars->47->3144"
12769 ]
12770 },
12771 {
@@ -12833,7 +12847,7 @@
12847 "zh-cht": "錯誤的簽名",
12848 "hu": "Rossz aláírás",
12849 "xloc": [
12836 - "default.handlebars->47->3229"
12850 + "default.handlebars->47->3239"
12851 ]
12852 },
12853 {
@@ -12860,7 +12874,7 @@
12874 "zh-cht": "錯誤的網絡憑證",
12875 "hu": "Rossz web tanúsítvány",
12876 "xloc": [
12863 - "default.handlebars->47->3228"
12877 + "default.handlebars->47->3238"
12878 ]
12879 },
12880 {
@@ -12888,7 +12902,7 @@
12902 "hu": "baszk",
12903 "xloc": [
12904 "default-mobile.handlebars->11->128",
12891 - "default.handlebars->47->1799",
12905 + "default.handlebars->47->1809",
12906 "login2.handlebars->7->25"
12907 ]
12908 },
@@ -12970,7 +12984,7 @@
12984 "zh-cht": "將{0}個文件批量上傳到文件夾{1}",
12985 "hu": "{0} fájl kötegelt feltöltése a(z) {1} mappába",
12986 "xloc": [
12973 - "default.handlebars->47->2554"
12987 + "default.handlebars->47->2564"
12988 ]
12989 },
12990 {
@@ -12998,7 +13012,7 @@
13012 "hu": "fehérorosz",
13013 "xloc": [
13014 "default-mobile.handlebars->11->130",
13001 - "default.handlebars->47->1801",
13015 + "default.handlebars->47->1811",
13016 "login2.handlebars->7->27"
13017 ]
13018 },
@@ -13027,7 +13041,7 @@
13041 "hu": "bengáli",
13042 "xloc": [
13043 "default-mobile.handlebars->11->131",
13030 - "default.handlebars->47->1802",
13044 + "default.handlebars->47->1812",
13045 "login2.handlebars->7->28"
13046 ]
13047 },
@@ -13090,7 +13104,7 @@
13104 "nl": "BitLocker",
13105 "xloc": [
13106 "default-mobile.handlebars->11->864",
13093 - "default.handlebars->47->1684"
13107 + "default.handlebars->47->1694"
13108 ]
13109 },
13110 {
@@ -13099,7 +13113,7 @@
13113 "pl": "Informacje o BitLocker",
13114 "xloc": [
13115 "default-mobile.handlebars->11->871",
13102 - "default.handlebars->47->1691"
13116 + "default.handlebars->47->1701"
13117 ]
13118 },
13119 {
@@ -13127,7 +13141,7 @@
13141 "hu": "Rendszerbetöltő",
13142 "xloc": [
13143 "default-mobile.handlebars->11->768",
13130 - "default.handlebars->47->1578"
13144 + "default.handlebars->47->1588"
13145 ]
13146 },
13147 {
@@ -13155,7 +13169,7 @@
13169 "hu": "bosznia",
13170 "xloc": [
13171 "default-mobile.handlebars->11->132",
13158 - "default.handlebars->47->1803",
13172 + "default.handlebars->47->1813",
13173 "login2.handlebars->7->29"
13174 ]
13175 },
@@ -13184,7 +13198,7 @@
13198 "hu": "breton",
13199 "xloc": [
13200 "default-mobile.handlebars->11->133",
13187 - "default.handlebars->47->1804",
13201 + "default.handlebars->47->1814",
13202 "login2.handlebars->7->30"
13203 ]
13204 },
@@ -13212,7 +13226,7 @@
13226 "zh-cht": "廣播",
13227 "hu": "Broadcast üzenet...",
13228 "xloc": [
13215 - "default.handlebars->47->2802",
13229 + "default.handlebars->47->2812",
13230 "default.handlebars->container->column_l->p4->3->1->0->3->1"
13231 ]
13232 },
@@ -13240,7 +13254,7 @@
13254 "zh-cht": "廣播消息",
13255 "hu": "Broadcast üzenet",
13256 "xloc": [
13243 - "default.handlebars->47->2718"
13257 + "default.handlebars->47->2728"
13258 ]
13259 },
13260 {
@@ -13267,7 +13281,7 @@
13281 "zh-cht": "向所有連接的用戶廣播消息。",
13282 "hu": "Üzenet küldése az összes csatlakoztatott felhasználónak.",
13283 "xloc": [
13270 - "default.handlebars->47->2713"
13284 + "default.handlebars->47->2723"
13285 ]
13286 },
13287 {
@@ -13294,7 +13308,7 @@
13308 "zh-cht": "瀏覽器",
13309 "hu": "Böngésző",
13310 "xloc": [
13297 - "default.handlebars->47->3108"
13311 + "default.handlebars->47->3118"
13312 ]
13313 },
13314 {
@@ -13377,7 +13391,7 @@
13391 "hu": "bolgár",
13392 "xloc": [
13393 "default-mobile.handlebars->11->129",
13380 - "default.handlebars->47->1800",
13394 + "default.handlebars->47->1810",
13395 "login2.handlebars->7->26"
13396 ]
13397 },
@@ -13406,7 +13420,7 @@
13420 "hu": "burmai",
13421 "xloc": [
13422 "default-mobile.handlebars->11->134",
13409 - "default.handlebars->47->1805",
13423 + "default.handlebars->47->1815",
13424 "login2.handlebars->7->31"
13425 ]
13426 },
@@ -13434,7 +13448,7 @@
13448 "zh-cht": "默認情況下,非活動設備將在 1 天后移除。",
13449 "hu": "Alapértelmezés szerint az inaktív eszközök 1 nap után eltávolításra kerülnek.",
13450 "xloc": [
13437 - "default.handlebars->47->2260"
13451 + "default.handlebars->47->2270"
13452 ]
13453 },
13454 {
@@ -13461,7 +13475,7 @@
13475 "zh-cht": "默認情況下,不活動的設備將在 {0} 天后被移除。",
13476 "hu": "Alapértelmezés szerint az inaktív eszközök {0} nap után eltávolításra kerülnek.",
13477 "xloc": [
13464 - "default.handlebars->47->2261"
13478 + "default.handlebars->47->2271"
13479 ]
13480 },
13481 {
@@ -13497,7 +13511,7 @@
13511 "zh-cht": "字節輸入",
13512 "hu": "Fogadott Byte-ok",
13513 "xloc": [
13500 - "default.handlebars->47->3104"
13514 + "default.handlebars->47->3114"
13515 ]
13516 },
13517 {
@@ -13524,7 +13538,7 @@
13538 "zh-cht": "字節輸出",
13539 "hu": "Küldött Byte-ok",
13540 "xloc": [
13527 - "default.handlebars->47->3105"
13541 + "default.handlebars->47->3115"
13542 ]
13543 },
13544 {
@@ -13621,7 +13635,7 @@
13635 "zh-cht": "CCM模式",
13636 "hu": "CCM mode",
13637 "xloc": [
13624 - "default.handlebars->47->2213"
13638 + "default.handlebars->47->2223"
13639 ]
13640 },
13641 {
@@ -13629,7 +13643,7 @@
13643 "nl": "CD-ROM",
13644 "xloc": [
13645 "default-mobile.handlebars->11->857",
13632 - "default.handlebars->47->1677"
13646 + "default.handlebars->47->1687"
13647 ]
13648 },
13649 {
@@ -13657,7 +13671,7 @@
13671 "hu": "CIRA",
13672 "xloc": [
13673 "default-mobile.handlebars->11->464",
13660 - "default.handlebars->47->3254",
13674 + "default.handlebars->47->3264",
13675 "default.handlebars->47->407",
13676 "default.handlebars->47->695"
13677 ]
@@ -13686,7 +13700,7 @@
13700 "zh-cht": "CIRA伺服器",
13701 "hu": "CIRA Kiszolgáló",
13702 "xloc": [
13689 - "default.handlebars->47->3302"
13703 + "default.handlebars->47->3312"
13704 ]
13705 },
13706 {
@@ -13713,7 +13727,7 @@
13727 "zh-cht": "CIRA伺服器指令",
13728 "hu": "CIRA kiszolgáló parancsok",
13729 "xloc": [
13716 - "default.handlebars->47->3303"
13730 + "default.handlebars->47->3313"
13731 ]
13732 },
13733 {
@@ -13767,7 +13781,7 @@
13781 "zh-cht": "CIRA設置",
13782 "hu": "CIRA beállítás",
13783 "xloc": [
13770 - "default.handlebars->47->2221"
13784 + "default.handlebars->47->2231"
13785 ]
13786 },
13787 {
@@ -13795,9 +13809,9 @@
13809 "hu": "CPU",
13810 "xloc": [
13811 "default-mobile.handlebars->11->814",
13798 - "default.handlebars->47->1554",
13799 - "default.handlebars->47->1634",
13800 - "default.handlebars->47->3278",
13812 + "default.handlebars->47->1564",
13813 + "default.handlebars->47->1644",
13814 + "default.handlebars->47->3288",
13815 "default.handlebars->container->column_l->p40->3->1->p40type->5"
13816 ]
13817 },
@@ -13825,7 +13839,7 @@
13839 "zh-cht": "CPU負載",
13840 "hu": "CPU terhelés",
13841 "xloc": [
13828 - "default.handlebars->47->3243"
13842 + "default.handlebars->47->3253"
13843 ]
13844 },
13845 {
@@ -13852,7 +13866,7 @@
13866 "zh-cht": "最近15分鐘的CPU負載",
13867 "hu": "CPU terhelés az elmúlt 15 percben",
13868 "xloc": [
13855 - "default.handlebars->47->3246"
13869 + "default.handlebars->47->3256"
13870 ]
13871 },
13872 {
@@ -13879,7 +13893,7 @@
13893 "zh-cht": "最近5分鐘的CPU負載",
13894 "hu": "CPU terhelés az elmúlt 5 percben",
13895 "xloc": [
13882 - "default.handlebars->47->3245"
13896 + "default.handlebars->47->3255"
13897 ]
13898 },
13899 {
@@ -13906,7 +13920,7 @@
13920 "zh-cht": "最近一分鐘的CPU負載",
13921 "hu": "CPU terhelés az utolsó percben",
13922 "xloc": [
13909 - "default.handlebars->47->3244"
13923 + "default.handlebars->47->3254"
13924 ]
13925 },
13926 {
@@ -13965,7 +13979,7 @@
13979 "zh-cht": "CSV",
13980 "hu": "CSV",
13981 "xloc": [
13968 - "default.handlebars->47->2631"
13982 + "default.handlebars->47->2641"
13983 ]
13984 },
13985 {
@@ -13992,8 +14006,8 @@
14006 "zh-cht": "CSV格式",
14007 "hu": "CSV Formátum",
14008 "xloc": [
13995 - "default.handlebars->47->2635",
13996 - "default.handlebars->47->2705",
14009 + "default.handlebars->47->2645",
14010 + "default.handlebars->47->2715",
14011 "default.handlebars->47->766"
14012 ]
14013 },
@@ -14045,7 +14059,7 @@
14059 "zh-cht": "呼叫錯誤",
14060 "hu": "Hívás hiba",
14061 "xloc": [
14048 - "default.handlebars->47->3319"
14062 + "default.handlebars->47->3329"
14063 ]
14064 },
14065 {
@@ -14055,8 +14069,8 @@
14069 "nl": "CallMeBot",
14070 "pl": "CallMeBot",
14071 "xloc": [
14058 - "default.handlebars->47->1727",
14059 - "default.handlebars->47->2942"
14072 + "default.handlebars->47->1737",
14073 + "default.handlebars->47->2952"
14074 ]
14075 },
14076 {
@@ -14113,8 +14127,8 @@
14127 "agent-translations.json",
14128 "default-mobile.handlebars->11->320",
14129 "default-mobile.handlebars->dialog->idx_dlgButtonBar",
14116 - "default.handlebars->47->2077",
14117 - "default.handlebars->47->3308",
14130 + "default.handlebars->47->2087",
14131 + "default.handlebars->47->3318",
14132 "default.handlebars->47->533",
14133 "default.handlebars->container->dialog->idx_dlgButtonBar",
14134 "login-mobile.handlebars->dialog->idx_dlgButtonBar",
@@ -14231,12 +14245,12 @@
14245 "default-mobile.handlebars->11->849",
14246 "default-mobile.handlebars->11->851",
14247 "default-mobile.handlebars->11->854",
14234 - "default.handlebars->47->1652",
14235 - "default.handlebars->47->1658",
14236 - "default.handlebars->47->1664",
14237 - "default.handlebars->47->1669",
14238 - "default.handlebars->47->1671",
14239 - "default.handlebars->47->1674"
14248 + "default.handlebars->47->1662",
14249 + "default.handlebars->47->1668",
14250 + "default.handlebars->47->1674",
14251 + "default.handlebars->47->1679",
14252 + "default.handlebars->47->1681",
14253 + "default.handlebars->47->1684"
14254 ]
14255 },
14256 {
@@ -14266,9 +14280,9 @@
14280 "default-mobile.handlebars->11->830",
14281 "default-mobile.handlebars->11->836",
14282 "default-mobile.handlebars->11->842",
14269 - "default.handlebars->47->1650",
14270 - "default.handlebars->47->1656",
14271 - "default.handlebars->47->1662"
14283 + "default.handlebars->47->1660",
14284 + "default.handlebars->47->1666",
14285 + "default.handlebars->47->1672"
14286 ]
14287 },
14288 {
@@ -14276,7 +14290,7 @@
14290 "nl": "Resterende capaciteit",
14291 "xloc": [
14292 "default-mobile.handlebars->11->855",
14279 - "default.handlebars->47->1675"
14293 + "default.handlebars->47->1685"
14294 ]
14295 },
14296 {
@@ -14304,7 +14318,7 @@
14318 "hu": "katalán",
14319 "xloc": [
14320 "default-mobile.handlebars->11->135",
14307 - "default.handlebars->47->1806",
14321 + "default.handlebars->47->1816",
14322 "login2.handlebars->7->32"
14323 ]
14324 },
@@ -14413,7 +14427,7 @@
14427 "hu": "chamorro",
14428 "xloc": [
14429 "default-mobile.handlebars->11->136",
14416 - "default.handlebars->47->1807",
14430 + "default.handlebars->47->1817",
14431 "login2.handlebars->7->33"
14432 ]
14433 },
@@ -14470,7 +14484,7 @@
14484 "zh-cht": "更改{0}的電郵",
14485 "hu": "{0} e-mail-címének módosítása",
14486 "xloc": [
14473 - "default.handlebars->47->2984"
14487 + "default.handlebars->47->2994"
14488 ]
14489 },
14490 {
@@ -14527,8 +14541,8 @@
14541 "hu": "Jelszó módosítása",
14542 "xloc": [
14543 "default-mobile.handlebars->11->328",
14530 - "default.handlebars->47->2023",
14531 - "default.handlebars->47->2928"
14544 + "default.handlebars->47->2033",
14545 + "default.handlebars->47->2938"
14546 ]
14547 },
14548 {
@@ -14555,7 +14569,7 @@
14569 "zh-cht": "更改{0}的密碼",
14570 "hu": "Jelszó módosítása: {0}",
14571 "xloc": [
14558 - "default.handlebars->47->2993"
14572 + "default.handlebars->47->3003"
14573 ]
14574 },
14575 {
@@ -14582,7 +14596,7 @@
14596 "zh-cht": "更改{0}的真實名稱",
14597 "hu": "{0} felhasználó teljes nevének módosítása",
14598 "xloc": [
14585 - "default.handlebars->47->2979"
14599 + "default.handlebars->47->2989"
14600 ]
14601 },
14602 {
@@ -14743,7 +14757,7 @@
14757 "zh-cht": "更改該用戶的密碼",
14758 "hu": "A felhasználó jelszavának módosítása",
14759 "xloc": [
14746 - "default.handlebars->47->2927"
14760 + "default.handlebars->47->2937"
14761 ]
14762 },
14763 {
@@ -14797,7 +14811,7 @@
14811 "zh-cht": "在此處更改你的帳戶電郵地址。",
14812 "hu": "Itt módosíthatja fiókja e-mail címét.",
14813 "xloc": [
14800 - "default.handlebars->47->2010"
14814 + "default.handlebars->47->2020"
14815 ]
14816 },
14817 {
@@ -14824,7 +14838,7 @@
14838 "zh-cht": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。",
14839 "hu": "Módosítsa fiókja jelszavát a jelenlegi és az új jelszó kétszeri beírásával az alábbi mezőkbe.",
14840 "xloc": [
14827 - "default.handlebars->47->2016"
14841 + "default.handlebars->47->2026"
14842 ]
14843 },
14844 {
@@ -14851,7 +14865,7 @@
14865 "zh-cht": "帳戶憑證已更改",
14866 "hu": "A fiók hitelesítő adatai megváltoztak",
14867 "xloc": [
14854 - "default.handlebars->47->2526"
14868 + "default.handlebars->47->2536"
14869 ]
14870 },
14871 {
@@ -14878,7 +14892,7 @@
14892 "zh-cht": "將帳戶顯示名稱更改為 {0}。",
14893 "hu": "A fiók megjelenített neve {0}-re változott.",
14894 "xloc": [
14881 - "default.handlebars->47->2578"
14895 + "default.handlebars->47->2588"
14896 ]
14897 },
14898 {
@@ -14905,8 +14919,8 @@
14919 "zh-cht": "{1}組中的設備{0}已更改:{2}",
14920 "hu": "{0} eszközt a {1} csoportból áthelyezésre került {2} csoportba",
14921 "xloc": [
14908 - "default.handlebars->47->2510",
14909 - "default.handlebars->47->2591"
14922 + "default.handlebars->47->2520",
14923 + "default.handlebars->47->2601"
14924 ]
14925 },
14926 {
@@ -14933,7 +14947,7 @@
14947 "zh-cht": "語言從{1}更改為{2}",
14948 "hu": "A nyelv megváltozott. régi nyelv: {1}, új nyelv: {2}",
14949 "xloc": [
14936 - "default.handlebars->47->2454"
14950 + "default.handlebars->47->2464"
14951 ]
14952 },
14953 {
@@ -14960,8 +14974,8 @@
14974 "zh-cht": "已更改{0}的用戶設備權限",
14975 "hu": "Módosult a(z) {0} felhasználói eszközjogai",
14976 "xloc": [
14963 - "default.handlebars->47->2512",
14964 - "default.handlebars->47->2533"
14977 + "default.handlebars->47->2522",
14978 + "default.handlebars->47->2543"
14979 ]
14980 },
14981 {
@@ -15013,7 +15027,7 @@
15027 "hu": "A nyelv megváltoztatásához az oldal frissítése szükséges!",
15028 "xloc": [
15029 "default-mobile.handlebars->11->303",
15016 - "default.handlebars->47->1974"
15030 + "default.handlebars->47->1984"
15031 ]
15032 },
15033 {
@@ -15042,9 +15056,9 @@
15056 "xloc": [
15057 "default.handlebars->47->1111",
15058 "default.handlebars->47->1136",
15045 - "default.handlebars->47->2652",
15046 - "default.handlebars->47->2923",
15047 - "default.handlebars->47->2924",
15059 + "default.handlebars->47->2662",
15060 + "default.handlebars->47->2933",
15061 + "default.handlebars->47->2934",
15062 "default.handlebars->47->992"
15063 ]
15064 },
@@ -15074,8 +15088,8 @@
15088 "xloc": [
15089 "default-mobile.handlebars->11->943",
15090 "default-mobile.handlebars->11->963",
15077 - "default.handlebars->47->2292",
15078 - "default.handlebars->47->2330"
15091 + "default.handlebars->47->2302",
15092 + "default.handlebars->47->2340"
15093 ]
15094 },
15095 {
@@ -15103,7 +15117,7 @@
15117 "hu": "Csevegés kezdeményezés, kattintson ide az elfogadáshoz.",
15118 "xloc": [
15119 "default-mobile.handlebars->11->995",
15106 - "default.handlebars->47->3193"
15120 + "default.handlebars->47->3203"
15121 ]
15122 },
15123 {
@@ -15158,7 +15172,7 @@
15172 "hu": "csecsen",
15173 "xloc": [
15174 "default-mobile.handlebars->11->137",
15161 - "default.handlebars->47->1808",
15175 + "default.handlebars->47->1818",
15176 "login2.handlebars->7->34"
15177 ]
15178 },
@@ -15306,8 +15320,8 @@
15320 "zh-cht": "檢查...",
15321 "hu": "Ellenőrzés...",
15322 "xloc": [
15309 - "default.handlebars->47->1774",
15310 - "default.handlebars->47->3313"
15323 + "default.handlebars->47->1784",
15324 + "default.handlebars->47->3323"
15325 ]
15326 },
15327 {
@@ -15335,7 +15349,7 @@
15349 "hu": "kínai",
15350 "xloc": [
15351 "default-mobile.handlebars->11->138",
15338 - "default.handlebars->47->1809",
15352 + "default.handlebars->47->1819",
15353 "login2.handlebars->7->35"
15354 ]
15355 },
@@ -15364,7 +15378,7 @@
15378 "hu": "kínai (Hongkong)",
15379 "xloc": [
15380 "default-mobile.handlebars->11->139",
15367 - "default.handlebars->47->1810",
15381 + "default.handlebars->47->1820",
15382 "login2.handlebars->7->36"
15383 ]
15384 },
@@ -15393,7 +15407,7 @@
15407 "hu": "kínai (Kínai Népköztársaság)",
15408 "xloc": [
15409 "default-mobile.handlebars->11->140",
15396 - "default.handlebars->47->1811",
15410 + "default.handlebars->47->1821",
15411 "login2.handlebars->7->37"
15412 ]
15413 },
@@ -15422,7 +15436,7 @@
15436 "hu": "kínai (egyszerűsített)",
15437 "xloc": [
15438 "default-mobile.handlebars->11->300",
15425 - "default.handlebars->47->1971",
15439 + "default.handlebars->47->1981",
15440 "login2.handlebars->7->197"
15441 ]
15442 },
@@ -15451,7 +15465,7 @@
15465 "hu": "kínai (Szingapúr)",
15466 "xloc": [
15467 "default-mobile.handlebars->11->141",
15454 - "default.handlebars->47->1812",
15468 + "default.handlebars->47->1822",
15469 "login2.handlebars->7->38"
15470 ]
15471 },
@@ -15480,7 +15494,7 @@
15494 "hu": "kínai (Tajvan)",
15495 "xloc": [
15496 "default-mobile.handlebars->11->142",
15483 - "default.handlebars->47->1813",
15497 + "default.handlebars->47->1823",
15498 "login2.handlebars->7->39"
15499 ]
15500 },
@@ -15509,7 +15523,7 @@
15523 "hu": "kínai (hagyományos)",
15524 "xloc": [
15525 "default-mobile.handlebars->11->301",
15512 - "default.handlebars->47->1972",
15526 + "default.handlebars->47->1982",
15527 "login2.handlebars->7->198"
15528 ]
15529 },
@@ -15566,7 +15580,7 @@
15580 "hu": "csuvas",
15581 "xloc": [
15582 "default-mobile.handlebars->11->143",
15569 - "default.handlebars->47->1814",
15583 + "default.handlebars->47->1824",
15584 "login2.handlebars->7->40"
15585 ]
15586 },
@@ -15625,11 +15639,11 @@
15639 "default-mobile.handlebars->11->712",
15640 "default-mobile.handlebars->11->80",
15641 "default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->5",
15628 - "default.handlebars->47->1530",
15629 - "default.handlebars->47->1532",
15630 - "default.handlebars->47->1534",
15631 - "default.handlebars->47->1536",
15632 - "default.handlebars->47->2448",
15642 + "default.handlebars->47->1540",
15643 + "default.handlebars->47->1542",
15644 + "default.handlebars->47->1544",
15645 + "default.handlebars->47->1546",
15646 + "default.handlebars->47->2458",
15647 "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7",
15648 "default.handlebars->container->column_l->p41->3->1",
15649 "messenger.handlebars->xbottom->1->1->0->5",
@@ -15802,7 +15816,7 @@
15816 "hu": "Összes törlése",
15817 "xloc": [
15818 "default-mobile.handlebars->11->978",
15805 - "default.handlebars->47->3176"
15819 + "default.handlebars->47->3186"
15820 ]
15821 },
15822 {
@@ -15858,7 +15872,7 @@
15872 "hu": "Core törlése",
15873 "xloc": [
15874 "default-mobile.handlebars->11->883",
15861 - "default.handlebars->47->1704"
15875 + "default.handlebars->47->1714"
15876 ]
15877 },
15878 {
@@ -15913,7 +15927,7 @@
15927 "hu": "Törölje ezt az értesítést",
15928 "xloc": [
15929 "default-mobile.handlebars->11->977",
15916 - "default.handlebars->47->3175"
15930 + "default.handlebars->47->3185"
15931 ]
15932 },
15933 {
@@ -16021,8 +16035,8 @@
16035 "zh-cht": "單擊此處編輯裝置群名稱",
16036 "hu": "Kattintson ide az eszközcsoport nevének szerkesztéséhez",
16037 "xloc": [
16024 - "default.handlebars->47->2091",
16025 - "default.handlebars->47->2391"
16038 + "default.handlebars->47->2101",
16039 + "default.handlebars->47->2401"
16040 ]
16041 },
16042 {
@@ -16076,7 +16090,7 @@
16090 "zh-cht": "單擊此處編輯用戶群名稱",
16091 "hu": "Kattintson ide a felhasználói csoport nevének szerkesztéséhez",
16092 "xloc": [
16079 - "default.handlebars->47->2775"
16093 + "default.handlebars->47->2785"
16094 ]
16095 },
16096 {
@@ -16211,7 +16225,7 @@
16225 "hu": "Kattintson az OK gombra, ha megerősítő e-mailt szeretne küldeni a következő címre:",
16226 "xloc": [
16227 "default-mobile.handlebars->11->313",
16214 - "default.handlebars->47->2007"
16228 + "default.handlebars->47->2017"
16229 ]
16230 },
16231 {
@@ -16318,7 +16332,7 @@
16332 "hu": "Client Control Mode (CCM)",
16333 "xloc": [
16334 "default-mobile.handlebars->11->792",
16321 - "default.handlebars->47->1612"
16335 + "default.handlebars->47->1622"
16336 ]
16337 },
16338 {
@@ -16345,7 +16359,7 @@
16359 "zh-cht": "客戶編號",
16360 "hu": "Client ID",
16361 "xloc": [
16348 - "default.handlebars->47->2070"
16362 + "default.handlebars->47->2080"
16363 ]
16364 },
16365 {
@@ -16372,7 +16386,7 @@
16386 "zh-cht": "客戶端啟動的遠程訪問",
16387 "hu": "Ügyfél által kezdeményezett távoli elérés",
16388 "xloc": [
16375 - "default.handlebars->47->2220"
16389 + "default.handlebars->47->2230"
16390 ]
16391 },
16392 {
@@ -16399,7 +16413,7 @@
16413 "zh-cht": "客戶機密",
16414 "hu": "Client Secret",
16415 "xloc": [
16402 - "default.handlebars->47->2071"
16416 + "default.handlebars->47->2081"
16417 ]
16418 },
16419 {
@@ -16457,10 +16471,10 @@
16471 "agent-translations.json",
16472 "default-mobile.handlebars->11->78",
16473 "default.handlebars->47->1440",
16460 - "default.handlebars->47->1506",
16474 + "default.handlebars->47->1510",
16475 "default.handlebars->47->228",
16476 "default.handlebars->47->236",
16463 - "default.handlebars->47->3307",
16477 + "default.handlebars->47->3317",
16478 "sharing.handlebars->11->52"
16479 ]
16480 },
@@ -16488,7 +16502,7 @@
16502 "zh-cht": "已關閉桌面多路復用會話 \\\"{0}\\\",{1} 秒",
16503 "hu": "Lezárt asztali multiplex munkamenet \\\"{0}\\\", {1} másodperc",
16504 "xloc": [
16491 - "default.handlebars->47->2598"
16505 + "default.handlebars->47->2608"
16506 ]
16507 },
16508 {
@@ -16515,7 +16529,7 @@
16529 "zh-cht": "封閉式桌面多路復用會話,{0}秒",
16530 "hu": "Lezárt asztali multiplex munkamenet, {0} másodperc",
16531 "xloc": [
16518 - "default.handlebars->47->2459"
16532 + "default.handlebars->47->2469"
16533 ]
16534 },
16535 {
@@ -16708,7 +16722,7 @@
16722 "default-mobile.handlebars->11->965",
16723 "default.handlebars->47->1113",
16724 "default.handlebars->47->1138",
16711 - "default.handlebars->47->2332"
16725 + "default.handlebars->47->2342"
16726 ]
16727 },
16728 {
@@ -16774,8 +16788,8 @@
16788 "zh-cht": "通用裝置群",
16789 "hu": "Eszközcsoport jogosultságok",
16790 "xloc": [
16777 - "default.handlebars->47->2810",
16778 - "default.handlebars->47->2998"
16791 + "default.handlebars->47->2820",
16792 + "default.handlebars->47->3008"
16793 ]
16794 },
16795 {
@@ -16802,8 +16816,8 @@
16816 "zh-cht": "通用裝置",
16817 "hu": "Eszköz jogosultságok",
16818 "xloc": [
16805 - "default.handlebars->47->2816",
16806 - "default.handlebars->47->3010"
16819 + "default.handlebars->47->2826",
16820 + "default.handlebars->47->3020"
16821 ]
16822 },
16823 {
@@ -16831,7 +16845,7 @@
16845 "hu": "Fordítás ideje",
16846 "xloc": [
16847 "default-mobile.handlebars->11->764",
16834 - "default.handlebars->47->1574"
16848 + "default.handlebars->47->1584"
16849 ]
16850 },
16851 {
@@ -16919,7 +16933,7 @@
16933 "hu": "Konfigurációs fájl rekordok",
16934 "de": "Aufzeichnungen von Konfigurationsdatei",
16935 "xloc": [
16922 - "default.handlebars->47->3152"
16936 + "default.handlebars->47->3162"
16937 ]
16938 },
16939 {
@@ -16950,11 +16964,11 @@
16964 "default-mobile.handlebars->11->914",
16965 "default.handlebars->47->1278",
16966 "default.handlebars->47->1287",
16953 - "default.handlebars->47->2231",
16954 - "default.handlebars->47->2682",
16955 - "default.handlebars->47->2765",
16956 - "default.handlebars->47->2832",
16957 - "default.handlebars->47->2996",
16967 + "default.handlebars->47->2241",
16968 + "default.handlebars->47->2692",
16969 + "default.handlebars->47->2775",
16970 + "default.handlebars->47->2842",
16971 + "default.handlebars->47->3006",
16972 "default.handlebars->47->730"
16973 ]
16974 },
@@ -17007,7 +17021,7 @@
17021 "hu": "Megerősíti 1 bejegyzés másolatát erre a helyre?",
17022 "xloc": [
17023 "default-mobile.handlebars->11->701",
17010 - "default.handlebars->47->1525",
17024 + "default.handlebars->47->1535",
17025 "sharing.handlebars->11->70"
17026 ]
17027 },
@@ -17035,7 +17049,7 @@
17049 "zh-cht": "確認{0}個條目的複製到此位置?",
17050 "hu": "Megerősíti a {0} bejegyzések másolását erre a helyre?",
17051 "xloc": [
17038 - "default.handlebars->47->1524",
17052 + "default.handlebars->47->1534",
17053 "sharing.handlebars->11->69"
17054 ]
17055 },
@@ -17090,7 +17104,7 @@
17104 "zh-cht": "確認刪除所選帳戶?",
17105 "hu": "Megerősíti a kiválasztott fiók(ok) törlését?",
17106 "xloc": [
17093 - "default.handlebars->47->2681"
17107 + "default.handlebars->47->2691"
17108 ]
17109 },
17110 {
@@ -17141,7 +17155,7 @@
17155 "zh-cht": "確認刪除所選用戶群?",
17156 "hu": "Megerősíti a kiválasztott felhasználói csoport(ok) törlését?",
17157 "xloc": [
17144 - "default.handlebars->47->2764"
17158 + "default.handlebars->47->2774"
17159 ]
17160 },
17161 {
@@ -17168,7 +17182,7 @@
17182 "zh-cht": "確認刪除用戶{0}?",
17183 "hu": "Megerősíti a(z) {0} felhasználó törlését?",
17184 "xloc": [
17171 - "default.handlebars->47->2995"
17185 + "default.handlebars->47->3005"
17186 ]
17187 },
17188 {
@@ -17195,7 +17209,7 @@
17209 "zh-cht": "確認刪除用戶“ {0} ”的成員身份?",
17210 "hu": "Megerősíti a \\\"{0}\\\" felhasználó tagságának eltávolítását?",
17211 "xloc": [
17198 - "default.handlebars->47->2835"
17212 + "default.handlebars->47->2845"
17213 ]
17214 },
17215 {
@@ -17222,7 +17236,7 @@
17236 "zh-cht": "確認刪除用戶群“ {0} ”的成員身份?",
17237 "hu": "Megerősíti a \\\"{0}\\\" felhasználói csoport tagság eltávolítását?",
17238 "xloc": [
17225 - "default.handlebars->47->3027"
17239 + "default.handlebars->47->3037"
17240 ]
17241 },
17242 {
@@ -17250,7 +17264,7 @@
17264 "hu": "Megerősíti 1 bejegyzés áthelyezését erre a helyre?",
17265 "xloc": [
17266 "default-mobile.handlebars->11->703",
17253 - "default.handlebars->47->1527",
17267 + "default.handlebars->47->1537",
17268 "sharing.handlebars->11->72"
17269 ]
17270 },
@@ -17278,7 +17292,7 @@
17292 "zh-cht": "確認將{0}個條目移到該位置?",
17293 "hu": "Megerősíti {0} bejegyzés áthelyezését erre a helyre?",
17294 "xloc": [
17281 - "default.handlebars->47->1526",
17295 + "default.handlebars->47->1536",
17296 "sharing.handlebars->11->71"
17297 ]
17298 },
@@ -17333,7 +17347,7 @@
17347 "zh-cht": "確認覆蓋?",
17348 "hu": "Megerősíti a felülírást?",
17349 "xloc": [
17336 - "default.handlebars->47->2440"
17350 + "default.handlebars->47->2450"
17351 ]
17352 },
17353 {
@@ -17360,8 +17374,8 @@
17374 "zh-cht": "確認刪除裝置“ {0} ”的訪問權限?",
17375 "hu": "Megerősíti a \\\"{0}\\\" eszköz hozzáférési jogainak eltávolítását?",
17376 "xloc": [
17363 - "default.handlebars->47->2825",
17364 - "default.handlebars->47->3018"
17377 + "default.handlebars->47->2835",
17378 + "default.handlebars->47->3028"
17379 ]
17380 },
17381 {
@@ -17388,8 +17402,8 @@
17402 "zh-cht": "確認刪除裝置群“ {0} ”的訪問權限?",
17403 "hu": "Megerősíti a \\\"{0}\\\" eszközcsoport hozzáférési jogainak eltávolítását?",
17404 "xloc": [
17391 - "default.handlebars->47->2827",
17392 - "default.handlebars->47->3031"
17405 + "default.handlebars->47->2837",
17406 + "default.handlebars->47->3041"
17407 ]
17408 },
17409 {
@@ -17416,7 +17430,7 @@
17430 "zh-cht": "確認刪除用戶“ {0} ”的訪問權限?",
17431 "hu": "Megerősíti a \\\"{0}\\\" felhasználó hozzáférési jogainak eltávolítását?",
17432 "xloc": [
17419 - "default.handlebars->47->3020"
17433 + "default.handlebars->47->3030"
17434 ]
17435 },
17436 {
@@ -17443,7 +17457,7 @@
17457 "zh-cht": "確認刪除用戶群“ {0} ”的訪問權限?",
17458 "hu": "Megerősíti a \\\"{0}\\\" felhasználói csoport hozzáférési jogainak eltávolítását?",
17459 "xloc": [
17446 - "default.handlebars->47->3023"
17460 + "default.handlebars->47->3033"
17461 ]
17462 },
17463 {
@@ -17470,8 +17484,8 @@
17484 "zh-cht": "確認刪除訪問權限?",
17485 "hu": "Megerősíti a hozzáférési jogok eltávolítását?",
17486 "xloc": [
17473 - "default.handlebars->47->3021",
17474 - "default.handlebars->47->3024"
17487 + "default.handlebars->47->3031",
17488 + "default.handlebars->47->3034"
17489 ]
17490 },
17491 {
@@ -17499,7 +17513,7 @@
17513 "hu": "Megerősíti a hitelesítő alkalmazás, kétlépcsős bejelentkezés eltávolítását?",
17514 "xloc": [
17515 "default-mobile.handlebars->11->312",
17502 - "default.handlebars->47->1757"
17516 + "default.handlebars->47->1767"
17517 ]
17518 },
17519 {
@@ -17550,7 +17564,7 @@
17564 "zh-cht": "確認刪除設備共享“{0}”?",
17565 "hu": "Megerősíti a(z) \\\"{0}\\\" eszközmegosztás eltávolítását?",
17566 "xloc": [
17553 - "default.handlebars->47->3016"
17567 + "default.handlebars->47->3026"
17568 ]
17569 },
17570 {
@@ -17625,7 +17639,7 @@
17639 "zh-cht": "確認移除推送認證設備?",
17640 "hu": "Megerősíti a Push-hitelesítési eszköz eltávolítását?",
17641 "xloc": [
17628 - "default.handlebars->47->1759"
17642 + "default.handlebars->47->1769"
17643 ]
17644 },
17645 {
@@ -17652,7 +17666,7 @@
17666 "zh-cht": "確認刪除用戶“ {0} ”的權限?",
17667 "hu": "Megerősíti a \\\"{0}\\\" felhasználó jogainak eltávolítását?",
17668 "xloc": [
17655 - "default.handlebars->47->2344"
17669 + "default.handlebars->47->2354"
17670 ]
17671 },
17672 {
@@ -17679,7 +17693,7 @@
17693 "zh-cht": "確認刪除用戶群“ {0} ”的權限?",
17694 "hu": "Megerősíti a \\\"{0}\\\" felhasználói csoport jogainak eltávolítását?",
17695 "xloc": [
17682 - "default.handlebars->47->2346"
17696 + "default.handlebars->47->2356"
17697 ]
17698 },
17699 {
@@ -17733,7 +17747,7 @@
17747 "zh-cht": "確認刪除此登錄令牌?",
17748 "hu": "Megerősíti ennek a bejelentkezési tokennek az eltávolítását?",
17749 "xloc": [
17736 - "default.handlebars->47->2063"
17750 + "default.handlebars->47->2073"
17751 ]
17752 },
17753 {
@@ -17839,7 +17853,7 @@
17853 "hu": "Megerősíti {0} / {1} bejegyzés {2} erre a helyre?",
17854 "xloc": [
17855 "default-mobile.handlebars->11->365",
17842 - "default.handlebars->47->2443"
17856 + "default.handlebars->47->2453"
17857 ]
17858 },
17859 {
@@ -17870,7 +17884,7 @@
17884 "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
17885 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3",
17886 "default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea1->1->3->connectbutton2span",
17873 - "default.handlebars->47->2129",
17887 + "default.handlebars->47->2139",
17888 "default.handlebars->47->949",
17889 "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1span",
17890 "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2span",
@@ -17960,7 +17974,7 @@
17974 "zh-cht": "連接到伺服器",
17975 "hu": "Csatlakozás a kiszolgálóhoz",
17976 "xloc": [
17963 - "default.handlebars->47->2224"
17977 + "default.handlebars->47->2234"
17978 ]
17979 },
17980 {
@@ -18204,7 +18218,7 @@
18218 "zh-cht": "已連接的Intel&reg; AMT",
18219 "hu": "Csatlakozott Intel&reg; AMT",
18220 "xloc": [
18207 - "default.handlebars->47->3234"
18221 + "default.handlebars->47->3244"
18222 ]
18223 },
18224 {
@@ -18231,7 +18245,7 @@
18245 "zh-cht": "已连接的用户",
18246 "hu": "Csatlakozott felhasználók",
18247 "xloc": [
18234 - "default.handlebars->47->3239"
18248 + "default.handlebars->47->3249"
18249 ]
18250 },
18251 {
@@ -18287,7 +18301,7 @@
18301 "hu": "Csatlakoztatva most",
18302 "xloc": [
18303 "default-mobile.handlebars->11->759",
18290 - "default.handlebars->47->1569"
18304 + "default.handlebars->47->1579"
18305 ]
18306 },
18307 {
@@ -18419,7 +18433,7 @@
18433 "default-mobile.handlebars->11->2",
18434 "default-mobile.handlebars->11->50",
18435 "default-mobile.handlebars->11->719",
18422 - "default.handlebars->47->1550",
18436 + "default.handlebars->47->1560",
18437 "default.handlebars->47->391",
18438 "default.handlebars->47->394",
18439 "default.handlebars->47->475",
@@ -18478,7 +18492,7 @@
18492 "zh-cht": "連接數量",
18493 "hu": "Kapcsolatok száma",
18494 "xloc": [
18481 - "default.handlebars->47->3265"
18495 + "default.handlebars->47->3275"
18496 ]
18497 },
18498 {
@@ -18535,7 +18549,7 @@
18549 "zh-cht": "連接轉發器",
18550 "hu": "Kapccsolat Relay",
18551 "xloc": [
18538 - "default.handlebars->47->3301"
18552 + "default.handlebars->47->3311"
18553 ]
18554 },
18555 {
@@ -18617,7 +18631,7 @@
18631 "hu": "Kapcsolódás",
18632 "xloc": [
18633 "default-mobile.handlebars->11->525",
18620 - "default.handlebars->47->2398",
18634 + "default.handlebars->47->2408",
18635 "default.handlebars->47->379",
18636 "default.handlebars->47->966",
18637 "default.handlebars->container->column_l->p21->p21main->1->1->meshConnChartDiv->1"
@@ -18647,7 +18661,7 @@
18661 "zh-cht": "同意",
18662 "hu": "Hozzájárulás",
18663 "xloc": [
18650 - "default.handlebars->47->2613"
18664 + "default.handlebars->47->2623"
18665 ]
18666 },
18667 {
@@ -18790,7 +18804,7 @@
18804 "zh-cht": "Cookie編碼器",
18805 "hu": "Cookie kódoló",
18806 "xloc": [
18793 - "default.handlebars->47->3284"
18807 + "default.handlebars->47->3294"
18808 ]
18809 },
18810 {
@@ -19058,8 +19072,8 @@
19072 "zh-cht": "複製連結到剪貼板",
19073 "hu": "Hivatkozás másolása a vágólapra.",
19074 "xloc": [
19061 - "default.handlebars->47->2409",
19062 - "default.handlebars->47->2428",
19075 + "default.handlebars->47->2419",
19076 + "default.handlebars->47->2438",
19077 "default.handlebars->47->311",
19078 "default.handlebars->47->333",
19079 "default.handlebars->47->335",
@@ -19201,7 +19215,7 @@
19215 "zh-cht": "複製:“{0}”到“{1}”",
19216 "hu": "Másolás: \\\"{0}\\\" ide: \\\"{1}\\\"",
19217 "xloc": [
19204 - "default.handlebars->47->2502"
19218 + "default.handlebars->47->2512"
19219 ]
19220 },
19221 {
@@ -19396,7 +19410,7 @@
19410 "zh-cht": "核心伺服器",
19411 "hu": "Core Server",
19412 "xloc": [
19399 - "default.handlebars->47->3283"
19413 + "default.handlebars->47->3293"
19414 ]
19415 },
19416 {
@@ -19424,7 +19438,7 @@
19438 "hu": "korzikai",
19439 "xloc": [
19440 "default-mobile.handlebars->11->144",
19427 - "default.handlebars->47->1815",
19441 + "default.handlebars->47->1825",
19442 "login2.handlebars->7->41"
19443 ]
19444 },
@@ -19476,7 +19490,7 @@
19490 "zh-cht": "創建帳號",
19491 "hu": "Fiók létrehozása",
19492 "xloc": [
19479 - "default.handlebars->47->2732",
19493 + "default.handlebars->47->2742",
19494 "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->16->1->1",
19495 "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->16->1->1",
19496 "login2.handlebars->centralTable->1->0->logincell->createpanel->createpanelform->9->1->16->1->1"
@@ -19557,7 +19571,7 @@
19571 "zh-cht": "創建登錄令牌",
19572 "hu": "Bejelentkezési token létrehozása",
19573 "xloc": [
19560 - "default.handlebars->47->2000",
19574 + "default.handlebars->47->2010",
19575 "default.handlebars->47->336"
19576 ]
19577 },
@@ -19585,7 +19599,7 @@
19599 "zh-cht": "創建用戶群",
19600 "hu": "Felhasználó csoport létrehozása",
19601 "xloc": [
19588 - "default.handlebars->47->2772"
19602 + "default.handlebars->47->2782"
19603 ]
19604 },
19605 {
@@ -19639,7 +19653,7 @@
19653 "zh-cht": "使用以下選項創建一個新的裝置群。",
19654 "hu": "Hozzon létre egy új eszközcsoportot az alábbi lehetőségek segítségével.",
19655 "xloc": [
19642 - "default.handlebars->47->2030"
19656 + "default.handlebars->47->2040"
19657 ]
19658 },
19659 {
@@ -19693,7 +19707,7 @@
19707 "zh-cht": "創建一個臨時用戶名和密碼,可用作您帳戶的替代登錄名。這對於允許工具或其他服務訪問您的帳戶很有用。",
19708 "hu": "Hozzon létre egy ideiglenes felhasználónevet és jelszót, amelyet alternatív bejelentkezési lehetőségként használhat a fiókjához. Ez akkor hasznos, ha lehetővé teszi, hogy eszközök vagy más szolgáltatások hozzáférjenek a fiókjához.",
19709 "xloc": [
19696 - "default.handlebars->47->1980"
19710 + "default.handlebars->47->1990"
19711 ]
19712 },
19713 {
@@ -19747,7 +19761,7 @@
19761 "zh-cht": "創建文件夾:“{0}”",
19762 "hu": "Mappa létrehozása: \\\"{0}\\\"",
19763 "xloc": [
19750 - "default.handlebars->47->2495"
19764 + "default.handlebars->47->2505"
19765 ]
19766 },
19767 {
@@ -19813,7 +19827,7 @@
19827 "zh-cht": "通過導入以下格式的JSON檔案一次創建多個帳戶:",
19828 "hu": "Hozzon létre egyszerre több fiókot a következő formátumú JSON fájl importálásával:",
19829 "xloc": [
19816 - "default.handlebars->47->2696"
19830 + "default.handlebars->47->2706"
19831 ]
19832 },
19833 {
@@ -19869,7 +19883,7 @@
19883 "zh-cht": "創建的設備組:{0}",
19884 "hu": "Eszközcsoport létrehozva: {0}",
19885 "xloc": [
19872 - "default.handlebars->47->2506"
19886 + "default.handlebars->47->2516"
19887 ]
19888 },
19889 {
@@ -19971,7 +19985,7 @@
19985 "zh-cht": "創建",
19986 "hu": "Létrehozás",
19987 "xloc": [
19974 - "default.handlebars->47->2880"
19988 + "default.handlebars->47->2890"
19989 ]
19990 },
19991 {
@@ -19998,7 +20012,7 @@
20012 "zh-cht": "創作時間",
20013 "hu": "Létrehozás ideje",
20014 "xloc": [
20001 - "default.handlebars->47->2109"
20015 + "default.handlebars->47->2119"
20016 ]
20017 },
20018 {
@@ -20054,8 +20068,8 @@
20068 "zh-cht": "創作者",
20069 "hu": "Létrehozó",
20070 "xloc": [
20057 - "default.handlebars->47->2107",
20058 - "default.handlebars->47->2108"
20071 + "default.handlebars->47->2117",
20072 + "default.handlebars->47->2118"
20073 ]
20074 },
20075 {
@@ -20084,7 +20098,7 @@
20098 "xloc": [
20099 "default-mobile.handlebars->11->537",
20100 "default.handlebars->47->1353",
20087 - "default.handlebars->47->2068",
20101 + "default.handlebars->47->2078",
20102 "default.handlebars->47->978"
20103 ]
20104 },
@@ -20113,7 +20127,7 @@
20127 "hu": "cree",
20128 "xloc": [
20129 "default-mobile.handlebars->11->145",
20116 - "default.handlebars->47->1816",
20130 + "default.handlebars->47->1826",
20131 "login2.handlebars->7->42"
20132 ]
20133 },
@@ -20142,7 +20156,7 @@
20156 "hu": "horvát",
20157 "xloc": [
20158 "default-mobile.handlebars->11->146",
20145 - "default.handlebars->47->1817",
20159 + "default.handlebars->47->1827",
20160 "login2.handlebars->7->43"
20161 ]
20162 },
@@ -20420,7 +20434,7 @@
20434 "hu": "A jelenlegi jelszó nem megfelelő.",
20435 "xloc": [
20436 "default-mobile.handlebars->11->1005",
20423 - "default.handlebars->47->3203"
20437 + "default.handlebars->47->3213"
20438 ]
20439 },
20440 {
@@ -20534,7 +20548,7 @@
20548 "hu": "cseh",
20549 "xloc": [
20550 "default-mobile.handlebars->11->147",
20537 - "default.handlebars->47->1818",
20551 + "default.handlebars->47->1828",
20552 "login2.handlebars->7->44"
20553 ]
20554 },
@@ -20617,7 +20631,7 @@
20631 "hu": "dán",
20632 "xloc": [
20633 "default-mobile.handlebars->11->148",
20620 - "default.handlebars->47->1819",
20634 + "default.handlebars->47->1829",
20635 "login2.handlebars->7->45"
20636 ]
20637 },
@@ -20686,7 +20700,7 @@
20700 "hu": "Adatbázis rekordok",
20701 "de": "Datenbankaufzeichnungen",
20702 "xloc": [
20689 - "default.handlebars->47->3077"
20703 + "default.handlebars->47->3087"
20704 ]
20705 },
20706 {
@@ -20714,7 +20728,7 @@
20728 "hu": "Dátum és idő",
20729 "xloc": [
20730 "default-mobile.handlebars->11->306",
20717 - "default.handlebars->47->1977"
20731 + "default.handlebars->47->1987"
20732 ]
20733 },
20734 {
@@ -20743,8 +20757,8 @@
20757 "xloc": [
20758 "default-mobile.handlebars->11->593",
20759 "default.handlebars->47->1262",
20746 - "default.handlebars->47->3081",
20747 - "default.handlebars->47->3084"
20760 + "default.handlebars->47->3091",
20761 + "default.handlebars->47->3094"
20762 ]
20763 },
20764 {
@@ -20771,8 +20785,8 @@
20785 "zh-cht": "停用",
20786 "hu": "Deaktiválás",
20787 "xloc": [
20774 - "default.handlebars->47->2139",
20775 - "default.handlebars->47->2203"
20788 + "default.handlebars->47->2149",
20789 + "default.handlebars->47->2213"
20790 ]
20791 },
20792 {
@@ -20799,7 +20813,7 @@
20813 "zh-cht": "如果設置停用CCM",
20814 "hu": "CCM kikapcsolása ha be van állítva",
20815 "xloc": [
20802 - "default.handlebars->47->2215"
20816 + "default.handlebars->47->2225"
20817 ]
20818 },
20819 {
@@ -20878,10 +20892,10 @@
20892 "zh-cht": "默認",
20893 "hu": "Alapértelmezett",
20894 "xloc": [
20881 - "default.handlebars->47->2719",
20882 - "default.handlebars->47->2768",
20883 - "default.handlebars->47->2779",
20884 - "default.handlebars->47->2853"
20895 + "default.handlebars->47->2729",
20896 + "default.handlebars->47->2778",
20897 + "default.handlebars->47->2789",
20898 + "default.handlebars->47->2863"
20899 ]
20900 },
20901 {
@@ -20941,8 +20955,8 @@
20955 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1",
20956 "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1",
20957 "default-mobile.handlebars->dialog->idx_dlgButtonBar->5",
20944 - "default.handlebars->47->1516",
20945 - "default.handlebars->47->2435",
20958 + "default.handlebars->47->1520",
20959 + "default.handlebars->47->2445",
20960 "default.handlebars->47->828",
20961 "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
20962 "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
@@ -20981,7 +20995,7 @@
20995 "hu": "Fiók törlése",
20996 "xloc": [
20997 "default-mobile.handlebars->11->322",
20984 - "default.handlebars->47->2015"
20998 + "default.handlebars->47->2025"
20999 ]
21000 },
21001 {
@@ -21008,7 +21022,7 @@
21022 "zh-cht": "刪除帳戶",
21023 "hu": "Fiókok törlése",
21024 "xloc": [
21011 - "default.handlebars->47->2683"
21025 + "default.handlebars->47->2693"
21026 ]
21027 },
21028 {
@@ -21092,8 +21106,8 @@
21106 "xloc": [
21107 "default-mobile.handlebars->11->912",
21108 "default-mobile.handlebars->11->915",
21095 - "default.handlebars->47->2191",
21096 - "default.handlebars->47->2232"
21109 + "default.handlebars->47->2201",
21110 + "default.handlebars->47->2242"
21111 ]
21112 },
21113 {
@@ -21172,7 +21186,7 @@
21186 "zh-cht": "刪除用戶",
21187 "hu": "Felhasználó törlése",
21188 "xloc": [
21175 - "default.handlebars->47->2926"
21189 + "default.handlebars->47->2936"
21190 ]
21191 },
21192 {
@@ -21199,8 +21213,8 @@
21213 "zh-cht": "刪除用戶群組",
21214 "hu": "Felhasználói csoport törlése",
21215 "xloc": [
21202 - "default.handlebars->47->2821",
21203 - "default.handlebars->47->2833"
21216 + "default.handlebars->47->2831",
21217 + "default.handlebars->47->2843"
21218 ]
21219 },
21220 {
@@ -21227,7 +21241,7 @@
21241 "zh-cht": "刪除用戶群組",
21242 "hu": "Felhasználói csoportok törlése",
21243 "xloc": [
21230 - "default.handlebars->47->2766"
21244 + "default.handlebars->47->2776"
21245 ]
21246 },
21247 {
@@ -21254,7 +21268,7 @@
21268 "zh-cht": "刪除用戶{0}",
21269 "hu": "Felhasználó törlése: {0}",
21270 "xloc": [
21257 - "default.handlebars->47->2994"
21271 + "default.handlebars->47->3004"
21272 ]
21273 },
21274 {
@@ -21282,7 +21296,7 @@
21296 "hu": "Fiók törlése",
21297 "xloc": [
21298 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountActions->3->9->0",
21285 - "default.handlebars->47->2679",
21299 + "default.handlebars->47->2689",
21300 "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7"
21301 ]
21302 },
@@ -21337,7 +21351,7 @@
21351 "zh-cht": "刪除群組",
21352 "hu": "Csoport törlése",
21353 "xloc": [
21340 - "default.handlebars->47->2762"
21354 + "default.handlebars->47->2772"
21355 ]
21356 },
21357 {
@@ -21391,7 +21405,7 @@
21405 "zh-cht": "遞歸刪除:“{0}”,{1}個元素已刪除",
21406 "hu": "Rekurzív törlés: \\\"{0}\\\", {1} eltávolított elem(ek)",
21407 "xloc": [
21394 - "default.handlebars->47->2497"
21408 + "default.handlebars->47->2507"
21409 ]
21410 },
21411 {
@@ -21420,8 +21434,8 @@
21434 "xloc": [
21435 "default-mobile.handlebars->11->362",
21436 "default-mobile.handlebars->11->695",
21423 - "default.handlebars->47->1518",
21424 - "default.handlebars->47->2437",
21437 + "default.handlebars->47->1522",
21438 + "default.handlebars->47->2447",
21439 "sharing.handlebars->11->63"
21440 ]
21441 },
@@ -21449,7 +21463,7 @@
21463 "zh-cht": "刪除用戶群組{0}?",
21464 "hu": "Törli a(z) {0} felhasználói csoportot?",
21465 "xloc": [
21452 - "default.handlebars->47->2831"
21466 + "default.handlebars->47->2841"
21467 ]
21468 },
21469 {
@@ -21478,8 +21492,8 @@
21492 "xloc": [
21493 "default-mobile.handlebars->11->361",
21494 "default-mobile.handlebars->11->694",
21481 - "default.handlebars->47->1517",
21482 - "default.handlebars->47->2436",
21495 + "default.handlebars->47->1521",
21496 + "default.handlebars->47->2446",
21497 "sharing.handlebars->11->62"
21498 ]
21499 },
@@ -21534,7 +21548,7 @@
21548 "zh-cht": "刪除:“{0}”",
21549 "hu": "Törlés: \\\"{0}\\\"",
21550 "xloc": [
21537 - "default.handlebars->47->2496"
21551 + "default.handlebars->47->2506"
21552 ]
21553 },
21554 {
@@ -21561,7 +21575,7 @@
21575 "zh-cht": "刪除:“{0}”,已刪除{1}個元素",
21576 "hu": "Törlés: \\\"{0}\\\", {1} elem eltávolítva",
21577 "xloc": [
21564 - "default.handlebars->47->2498"
21578 + "default.handlebars->47->2508"
21579 ]
21580 },
21581 {
@@ -21603,7 +21617,7 @@
21617 "hu": "Felhasználói bejelentkezés megtagadva: {0}, {1}, {2}",
21618 "de": "Login des Benutzers von {0}, {1}, {2} verweigert",
21619 "xloc": [
21606 - "default.handlebars->47->2606"
21620 + "default.handlebars->47->2616"
21621 ]
21622 },
21623 {
@@ -21759,16 +21773,16 @@
21773 "default-mobile.handlebars->11->921",
21774 "default.handlebars->47->1332",
21775 "default.handlebars->47->157",
21762 - "default.handlebars->47->1582",
21776 "default.handlebars->47->1592",
21764 - "default.handlebars->47->2040",
21765 - "default.handlebars->47->2100",
21766 - "default.handlebars->47->2238",
21767 - "default.handlebars->47->2611",
21768 - "default.handlebars->47->2771",
21769 - "default.handlebars->47->2782",
21770 - "default.handlebars->47->2783",
21771 - "default.handlebars->47->2829",
21777 + "default.handlebars->47->1602",
21778 + "default.handlebars->47->2050",
21779 + "default.handlebars->47->2110",
21780 + "default.handlebars->47->2248",
21781 + "default.handlebars->47->2621",
21782 + "default.handlebars->47->2781",
21783 + "default.handlebars->47->2792",
21784 + "default.handlebars->47->2793",
21785 + "default.handlebars->47->2839",
21786 "default.handlebars->47->869",
21787 "default.handlebars->47->870",
21788 "default.handlebars->container->column_l->p42->p42tbl->1->0->3"
@@ -21826,12 +21840,12 @@
21840 "default.handlebars->47->1062",
21841 "default.handlebars->47->1175",
21842 "default.handlebars->47->1450",
21829 - "default.handlebars->47->2169",
21830 - "default.handlebars->47->2244",
21831 - "default.handlebars->47->3054",
21832 - "default.handlebars->47->3114",
21833 - "default.handlebars->47->3164",
21834 - "default.handlebars->47->3259",
21843 + "default.handlebars->47->2179",
21844 + "default.handlebars->47->2254",
21845 + "default.handlebars->47->3064",
21846 + "default.handlebars->47->3124",
21847 + "default.handlebars->47->3174",
21848 + "default.handlebars->47->3269",
21849 "default.handlebars->47->834",
21850 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop",
21851 "default.handlebars->contextMenu->cxdesktop",
@@ -21865,7 +21879,7 @@
21879 "xloc": [
21880 "default.handlebars->47->1066",
21881 "default.handlebars->47->1178",
21868 - "default.handlebars->47->2173"
21882 + "default.handlebars->47->2183"
21883 ]
21884 },
21885 {
@@ -21893,7 +21907,7 @@
21907 "hu": "Asztal + Terminál",
21908 "xloc": [
21909 "default.handlebars->47->1063",
21896 - "default.handlebars->47->2170"
21910 + "default.handlebars->47->2180"
21911 ]
21912 },
21913 {
@@ -21922,7 +21936,7 @@
21936 "xloc": [
21937 "default.handlebars->47->1067",
21938 "default.handlebars->47->1180",
21925 - "default.handlebars->47->2174"
21939 + "default.handlebars->47->2184"
21940 ]
21941 },
21942 {
@@ -21976,7 +21990,7 @@
21990 "zh-cht": "桌面多路復用",
21991 "hu": "Asztal Multiplex",
21992 "xloc": [
21979 - "default.handlebars->47->3264"
21993 + "default.handlebars->47->3274"
21994 ]
21995 },
21996 {
@@ -22003,9 +22017,9 @@
22017 "zh-cht": "桌面通知",
22018 "hu": "Asztal kapcsolat értesítés",
22019 "xloc": [
22006 - "default.handlebars->47->2120",
22007 - "default.handlebars->47->2790",
22008 - "default.handlebars->47->2895",
22020 + "default.handlebars->47->2130",
22021 + "default.handlebars->47->2800",
22022 + "default.handlebars->47->2905",
22023 "default.handlebars->47->940"
22024 ]
22025 },
@@ -22033,9 +22047,9 @@
22047 "zh-cht": "桌面提示",
22048 "hu": "Asztal kapcsolat engedélykérés",
22049 "xloc": [
22036 - "default.handlebars->47->2119",
22037 - "default.handlebars->47->2789",
22038 - "default.handlebars->47->2894",
22050 + "default.handlebars->47->2129",
22051 + "default.handlebars->47->2799",
22052 + "default.handlebars->47->2904",
22053 "default.handlebars->47->939"
22054 ]
22055 },
@@ -22063,9 +22077,9 @@
22077 "zh-cht": "桌面提示+工具欄",
22078 "hu": "Asztal kapcsolat engedélykérés és eszköztár",
22079 "xloc": [
22066 - "default.handlebars->47->2117",
22067 - "default.handlebars->47->2787",
22068 - "default.handlebars->47->2892",
22080 + "default.handlebars->47->2127",
22081 + "default.handlebars->47->2797",
22082 + "default.handlebars->47->2902",
22083 "default.handlebars->47->937"
22084 ]
22085 },
@@ -22093,7 +22107,7 @@
22107 "zh-cht": "桌面會話",
22108 "hu": "Asztal munkamenet",
22109 "xloc": [
22096 - "default.handlebars->47->3047"
22110 + "default.handlebars->47->3057"
22111 ]
22112 },
22113 {
@@ -22200,9 +22214,9 @@
22214 "zh-cht": "桌面工具欄",
22215 "hu": "Asztal kapcsolat eszköztár",
22216 "xloc": [
22203 - "default.handlebars->47->2118",
22204 - "default.handlebars->47->2788",
22205 - "default.handlebars->47->2893",
22217 + "default.handlebars->47->2128",
22218 + "default.handlebars->47->2798",
22219 + "default.handlebars->47->2903",
22220 "default.handlebars->47->938"
22221 ]
22222 },
@@ -22230,7 +22244,7 @@
22244 "zh-cht": "僅桌面視圖",
22245 "hu": "Asztal csak megtekintés",
22246 "xloc": [
22233 - "default.handlebars->47->2868"
22247 + "default.handlebars->47->2878"
22248 ]
22249 },
22250 {
@@ -22370,7 +22384,7 @@
22384 "default-mobile.handlebars->11->564",
22385 "default.handlebars->47->1116",
22386 "default.handlebars->47->1141",
22373 - "default.handlebars->47->2335",
22387 + "default.handlebars->47->2345",
22388 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevInfo",
22389 "default.handlebars->contextMenu->cxdetails"
22390 ]
@@ -22427,13 +22441,13 @@
22441 "hu": "Eszköz",
22442 "xloc": [
22443 "default-mobile.handlebars->11->767",
22430 - "default.handlebars->47->1577",
22431 - "default.handlebars->47->1763",
22432 - "default.handlebars->47->2272",
22444 + "default.handlebars->47->1587",
22445 + "default.handlebars->47->1773",
22446 + "default.handlebars->47->2282",
22447 "default.handlebars->47->281",
22434 - "default.handlebars->47->3013",
22435 - "default.handlebars->47->3080",
22436 - "default.handlebars->47->3098",
22448 + "default.handlebars->47->3023",
22449 + "default.handlebars->47->3090",
22450 + "default.handlebars->47->3108",
22451 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5"
22452 ]
22453 },
@@ -22569,7 +22583,7 @@
22583 "zh-cht": "設備詳情",
22584 "hu": "Eszköz részéletek elérése",
22585 "xloc": [
22572 - "default.handlebars->47->2296"
22586 + "default.handlebars->47->2306"
22587 ]
22588 },
22589 {
@@ -22625,17 +22639,17 @@
22639 "xloc": [
22640 "agent-translations.json",
22641 "default-mobile.handlebars->11->983",
22628 - "default.handlebars->47->2267",
22629 - "default.handlebars->47->2270",
22630 - "default.handlebars->47->2271",
22631 - "default.handlebars->47->2628",
22632 - "default.handlebars->47->2813",
22633 - "default.handlebars->47->2819",
22634 - "default.handlebars->47->3001",
22635 - "default.handlebars->47->3063",
22636 - "default.handlebars->47->3087",
22637 - "default.handlebars->47->3101",
22638 - "default.handlebars->47->3181"
22642 + "default.handlebars->47->2277",
22643 + "default.handlebars->47->2280",
22644 + "default.handlebars->47->2281",
22645 + "default.handlebars->47->2638",
22646 + "default.handlebars->47->2823",
22647 + "default.handlebars->47->2829",
22648 + "default.handlebars->47->3011",
22649 + "default.handlebars->47->3073",
22650 + "default.handlebars->47->3097",
22651 + "default.handlebars->47->3111",
22652 + "default.handlebars->47->3191"
22653 ]
22654 },
22655 {
@@ -22663,7 +22677,7 @@
22677 "hu": "Eszköz Csoport Felhasználó",
22678 "xloc": [
22679 "default-mobile.handlebars->11->972",
22666 - "default.handlebars->47->2342"
22680 + "default.handlebars->47->2352"
22681 ]
22682 },
22683 {
@@ -22691,11 +22705,11 @@
22705 "hu": "Eszköz csoportok",
22706 "xloc": [
22707 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->3",
22694 - "default.handlebars->47->2644",
22695 - "default.handlebars->47->2756",
22696 - "default.handlebars->47->2800",
22697 - "default.handlebars->47->2889",
22698 - "default.handlebars->47->3237",
22708 + "default.handlebars->47->2654",
22709 + "default.handlebars->47->2766",
22710 + "default.handlebars->47->2810",
22711 + "default.handlebars->47->2899",
22712 + "default.handlebars->47->3247",
22713 "default.handlebars->container->column_l->p2->p2info->9"
22714 ]
22715 },
@@ -22806,7 +22820,7 @@
22820 "xloc": [
22821 "default-mobile.handlebars->11->609",
22822 "default.handlebars->47->1330",
22809 - "default.handlebars->47->3062",
22823 + "default.handlebars->47->3072",
22824 "default.handlebars->47->491",
22825 "default.handlebars->47->500",
22826 "player.handlebars->3->25"
@@ -22891,7 +22905,7 @@
22905 "zh-cht": "設備推送",
22906 "hu": "Device Push",
22907 "xloc": [
22894 - "default.handlebars->47->2908"
22908 + "default.handlebars->47->2918"
22909 ]
22910 },
22911 {
@@ -22903,7 +22917,7 @@
22917 "hu": "Eszköz push értesítés rekord",
22918 "de": "Aufzeichnungen zu Push-Benachrichtigungen des Geräts",
22919 "xloc": [
22906 - "default.handlebars->47->3161"
22920 + "default.handlebars->47->3171"
22921 ]
22922 },
22923 {
@@ -22915,7 +22929,7 @@
22929 "hu": "Eszköz SMBIOS rekord",
22930 "de": "SMBIOS Geräteaufzeichnungen",
22931 "xloc": [
22918 - "default.handlebars->47->3160"
22932 + "default.handlebars->47->3170"
22933 ]
22934 },
22935 {
@@ -22991,7 +23005,7 @@
23005 "hu": "Eszközmegosztási link",
23006 "xloc": [
23007 "default.handlebars->47->1059",
22994 - "default.handlebars->47->2166"
23008 + "default.handlebars->47->2176"
23009 ]
23010 },
23011 {
@@ -23131,10 +23145,10 @@
23145 "default.handlebars->47->1085",
23146 "default.handlebars->47->1089",
23147 "default.handlebars->47->1093",
23134 - "default.handlebars->47->2003",
23135 - "default.handlebars->47->2369",
23136 - "default.handlebars->47->2373",
23137 - "default.handlebars->47->2377"
23148 + "default.handlebars->47->2013",
23149 + "default.handlebars->47->2379",
23150 + "default.handlebars->47->2383",
23151 + "default.handlebars->47->2387"
23152 ]
23153 },
23154 {
@@ -23164,10 +23178,10 @@
23178 "default.handlebars->47->1086",
23179 "default.handlebars->47->1090",
23180 "default.handlebars->47->1094",
23167 - "default.handlebars->47->2004",
23168 - "default.handlebars->47->2370",
23169 - "default.handlebars->47->2374",
23170 - "default.handlebars->47->2378"
23181 + "default.handlebars->47->2014",
23182 + "default.handlebars->47->2380",
23183 + "default.handlebars->47->2384",
23184 + "default.handlebars->47->2388"
23185 ]
23186 },
23187 {
@@ -23194,7 +23208,7 @@
23208 "zh-cht": "設備組已創建:{0}",
23209 "hu": "Eszközcsoport létrehozva: {0}",
23210 "xloc": [
23197 - "default.handlebars->47->2527"
23211 + "default.handlebars->47->2537"
23212 ]
23213 },
23214 {
@@ -23221,7 +23235,7 @@
23235 "zh-cht": "設備組已刪除:{0}",
23236 "hu": "Eszközcsoport törölve: {0}",
23237 "xloc": [
23224 - "default.handlebars->47->2528"
23238 + "default.handlebars->47->2538"
23239 ]
23240 },
23241 {
@@ -23248,7 +23262,7 @@
23262 "zh-cht": "設備組成員身份已更改:{0}",
23263 "hu": "Eszközcsoport tagság megváltozott: {0}",
23264 "xloc": [
23251 - "default.handlebars->47->2529"
23265 + "default.handlebars->47->2539"
23266 ]
23267 },
23268 {
@@ -23303,7 +23317,7 @@
23317 "zh-cht": "設備組通知已更改",
23318 "hu": "Eszközcsoport értesítés megváltozott",
23319 "xloc": [
23306 - "default.handlebars->47->2524"
23320 + "default.handlebars->47->2534"
23321 ]
23322 },
23323 {
@@ -23315,7 +23329,7 @@
23329 "hu": "Eszközcsoport rekordok",
23330 "de": "Gerätegruppenaufzeichnungen",
23331 "xloc": [
23318 - "default.handlebars->47->3146"
23332 + "default.handlebars->47->3156"
23333 ]
23334 },
23335 {
@@ -23342,7 +23356,7 @@
23356 "zh-cht": "未刪除的設備組:{0}",
23357 "hu": "Eszközcsoport törlés visszavonva: {0}",
23358 "xloc": [
23345 - "default.handlebars->47->2507"
23359 + "default.handlebars->47->2517"
23360 ]
23361 },
23362 {
@@ -23369,7 +23383,7 @@
23383 "zh-cht": "設備組 {0} 已更改:{1}",
23384 "hu": "{0} eszközcsoport :{1} megváltozott",
23385 "xloc": [
23372 - "default.handlebars->47->2593"
23386 + "default.handlebars->47->2603"
23387 ]
23388 },
23389 {
@@ -23408,7 +23422,7 @@
23422 "hu": "Eszköz információs rekordok",
23423 "de": "Aufzeichnungen zu Geräteinformationen",
23424 "xloc": [
23411 - "default.handlebars->47->3148"
23425 + "default.handlebars->47->3158"
23426 ]
23427 },
23428 {
@@ -23973,7 +23987,7 @@
23987 "fr": "Enregistrement de l'état de l'alimentation de l'appareil",
23988 "hu": "Eszköz energiaellátás változás rekordok",
23989 "xloc": [
23976 - "default.handlebars->47->3154"
23990 + "default.handlebars->47->3164"
23991 ]
23992 },
23993 {
@@ -23985,7 +23999,7 @@
23999 "hu": "Eszköz rekordok",
24000 "de": "Geräteaufzeichnungen",
24001 "xloc": [
23988 - "default.handlebars->47->3145"
24002 + "default.handlebars->47->3155"
24003 ]
24004 },
24005 {
@@ -24012,7 +24026,7 @@
24026 "zh-cht": "設備請求 Intel(R) AMT ACM TLS 激活,FQDN:{0}",
24027 "hu": "Eszköz által kért Intel(R) AMT ACM TLS aktiválás, FQDN: {0}",
24028 "xloc": [
24015 - "default.handlebars->47->2562"
24029 + "default.handlebars->47->2572"
24030 ]
24031 },
24032 {
@@ -24039,7 +24053,7 @@
24053 "zh-cht": "設備請求激活Intel(R)AMT ACM,FQDN:{0}",
24054 "hu": "Eszköz által kért Intel(R) AMT ACM aktiválás, FQDN: {0}",
24055 "xloc": [
24042 - "default.handlebars->47->2509"
24056 + "default.handlebars->47->2519"
24057 ]
24058 },
24059 {
@@ -24051,7 +24065,7 @@
24065 "hu": "Eszközmegosztási rekordok",
24066 "de": "Aufzeichnungen zu Geräte-Teilen",
24067 "xloc": [
24054 - "default.handlebars->47->3158"
24068 + "default.handlebars->47->3168"
24069 ]
24070 },
24071 {
@@ -24063,7 +24077,7 @@
24077 "hu": "Eszköz, felhasználók, csoportok és egyéb rekordok",
24078 "de": "Aufzeichnungen zu Geräten, Benutzern und Weiteres",
24079 "xloc": [
24066 - "default.handlebars->47->3162"
24080 + "default.handlebars->47->3172"
24081 ]
24082 },
24083 {
@@ -24114,9 +24128,9 @@
24128 "zh-cht": "裝置",
24129 "hu": "Eszközök",
24130 "xloc": [
24117 - "default.handlebars->47->2189",
24118 - "default.handlebars->47->2757",
24119 - "default.handlebars->47->2801"
24131 + "default.handlebars->47->2199",
24132 + "default.handlebars->47->2767",
24133 + "default.handlebars->47->2811"
24134 ]
24135 },
24136 {
@@ -24358,7 +24372,7 @@
24372 "zh-cht": "禁用的電子郵件兩因素身份驗證",
24373 "hu": "Kétfaktoros e-mail hitelesítés kikapcsolása",
24374 "xloc": [
24361 - "default.handlebars->47->2540"
24375 + "default.handlebars->47->2550"
24376 ]
24377 },
24378 {
@@ -24389,7 +24403,7 @@
24403 "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
24404 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3",
24405 "default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea1->1->3->disconnectbutton2span",
24392 - "default.handlebars->47->2130",
24406 + "default.handlebars->47->2140",
24407 "default.handlebars->47->950",
24408 "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->disconnectbutton1span",
24409 "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->disconnectbutton2span",
@@ -24598,8 +24612,8 @@
24612 "pl": "Discord",
24613 "de": "Discord",
24614 "xloc": [
24601 - "default.handlebars->47->1725",
24602 - "default.handlebars->47->2940"
24615 + "default.handlebars->47->1735",
24616 + "default.handlebars->47->2950"
24617 ]
24618 },
24619 {
@@ -24789,7 +24803,7 @@
24803 "zh-cht": "顯示裝置群名稱",
24804 "hu": "Eszközcsoport nevének megjelenítése",
24805 "xloc": [
24792 - "default.handlebars->47->2002"
24806 + "default.handlebars->47->2012"
24807 ]
24808 },
24809 {
@@ -24843,7 +24857,7 @@
24857 "zh-cht": "顯示公共鏈結",
24858 "hu": "Publikus link megjelenítése",
24859 "xloc": [
24846 - "default.handlebars->47->2408"
24860 + "default.handlebars->47->2418"
24861 ]
24862 },
24863 {
@@ -24878,7 +24892,7 @@
24892 "nl": "Waarschuwingsvenster weergeven, title=\\\"{0}\\\", message=\\\"{1}\\\"",
24893 "pl": "Wyświetl okno powiadomienia, tytuł=\\\"{0}\\\", wiadomość=\\\"{1}\\\"",
24894 "xloc": [
24881 - "default.handlebars->47->2609"
24895 + "default.handlebars->47->2619"
24896 ]
24897 },
24898 {
@@ -24905,7 +24919,7 @@
24919 "zh-cht": "顯示消息框,標題= “{0}”,消息= “{1}”",
24920 "hu": "Üzenetdoboz megjelenítése, cím=\\\"{0}\\\", üzenet=\\\"{1}\\\"",
24921 "xloc": [
24908 - "default.handlebars->47->2469"
24922 + "default.handlebars->47->2479"
24923 ]
24924 },
24925 {
@@ -24932,7 +24946,7 @@
24946 "zh-cht": "顯示吐司消息,標題= “{0}”,消息= “{1}”",
24947 "hu": "Alkalmazás üzenet megjelenítése, title=\\\"{0}\\\", message=\\\"{1}\\\"",
24948 "xloc": [
24935 - "default.handlebars->47->2477"
24949 + "default.handlebars->47->2487"
24950 ]
24951 },
24952 {
@@ -24959,8 +24973,8 @@
24973 "zh-cht": "什麼都不做",
24974 "hu": "Ne csináljon semmit",
24975 "xloc": [
24962 - "default.handlebars->47->2218",
24963 - "default.handlebars->47->2222"
24976 + "default.handlebars->47->2228",
24977 + "default.handlebars->47->2232"
24978 ]
24979 },
24980 {
@@ -24989,10 +25003,10 @@
25003 "xloc": [
25004 "default.handlebars->47->126",
25005 "default.handlebars->47->1356",
24992 - "default.handlebars->47->2720",
24993 - "default.handlebars->47->2769",
24994 - "default.handlebars->47->2778",
24995 - "default.handlebars->47->2852",
25006 + "default.handlebars->47->2730",
25007 + "default.handlebars->47->2779",
25008 + "default.handlebars->47->2788",
25009 + "default.handlebars->47->2862",
25010 "mstsc.handlebars->main->1->3->1->rowdomain->1->0",
25011 "mstsc.handlebars->main->1->3->1->rowdomain->3"
25012 ]
@@ -25045,7 +25059,7 @@
25059 "zh-cht": "請勿更改,如果設置請保留CCM",
25060 "hu": "Ne módosítsa, tartsa meg a CCM-et, ha beállítva van",
25061 "xloc": [
25048 - "default.handlebars->47->2214"
25062 + "default.handlebars->47->2224"
25063 ]
25064 },
25065 {
@@ -25096,7 +25110,7 @@
25110 "zh-cht": "不要連接到伺服器",
25111 "hu": "Ne csatlakozzon a kiszolgálóhoz",
25112 "xloc": [
25099 - "default.handlebars->47->2223"
25113 + "default.handlebars->47->2233"
25114 ]
25115 },
25116 {
@@ -25339,7 +25353,7 @@
25353 "hu": "Fájl letöltése",
25354 "xloc": [
25355 "default-mobile.handlebars->11->714",
25342 - "default.handlebars->47->1537",
25356 + "default.handlebars->47->1547",
25357 "sharing.handlebars->11->82"
25358 ]
25359 },
@@ -25475,7 +25489,7 @@
25489 "zh-cht": "下載報告",
25490 "hu": "Jelentés letöltése",
25491 "xloc": [
25478 - "default.handlebars->47->2633",
25492 + "default.handlebars->47->2643",
25493 "default.handlebars->container->column_l->p3->3->1->0->3",
25494 "default.handlebars->container->column_l->p60->3->1->0->3->1->p60downloadReportDiv"
25495 ]
@@ -25585,7 +25599,7 @@
25599 "zh-cht": "下載設備列表",
25600 "hu": "Eszközlista letöltése",
25601 "xloc": [
25588 - "default.handlebars->47->2187"
25602 + "default.handlebars->47->2197"
25603 ]
25604 },
25605 {
@@ -25801,7 +25815,7 @@
25815 "zh-cht": "使用以下一種檔案格式下載事件列表。",
25816 "hu": "Töltse le az események listáját az alábbi fájlformátumokban.",
25817 "xloc": [
25804 - "default.handlebars->47->2634"
25818 + "default.handlebars->47->2644"
25819 ]
25820 },
25821 {
@@ -25828,7 +25842,7 @@
25842 "zh-cht": "使用以下一種檔案格式下載用戶列表。",
25843 "hu": "Töltse le a felhasználók listáját az alábbi fájlformátumok valamelyikével.",
25844 "xloc": [
25831 - "default.handlebars->47->2704"
25845 + "default.handlebars->47->2714"
25846 ]
25847 },
25848 {
@@ -25937,7 +25951,7 @@
25951 "zh-cht": "下載:“{0}”",
25952 "hu": "Letöltés: \\\"{0}\\\"",
25953 "xloc": [
25940 - "default.handlebars->47->2500"
25954 + "default.handlebars->47->2510"
25955 ]
25956 },
25957 {
@@ -25964,7 +25978,7 @@
25978 "zh-cht": "下載:\\\"{0}\\\",大小:{1}",
25979 "hu": "Letöltés: \\\"{0}\\\", Méret: {1}",
25980 "xloc": [
25967 - "default.handlebars->47->2557"
25981 + "default.handlebars->47->2567"
25982 ]
25983 },
25984 {
@@ -26018,7 +26032,7 @@
26032 "zh-cht": "代理重複",
26033 "hu": "Duplikált Agent",
26034 "xloc": [
26021 - "default.handlebars->47->3233"
26035 + "default.handlebars->47->3243"
26036 ]
26037 },
26038 {
@@ -26072,7 +26086,7 @@
26086 "zh-cht": "複製用戶群",
26087 "hu": "Felhasználó csoport duplikálása",
26088 "xloc": [
26075 - "default.handlebars->47->2773"
26089 + "default.handlebars->47->2783"
26090 ]
26091 },
26092 {
@@ -26126,8 +26140,8 @@
26140 "default.handlebars->47->1211",
26141 "default.handlebars->47->287",
26142 "default.handlebars->47->289",
26129 - "default.handlebars->47->3042",
26130 - "default.handlebars->47->3068",
26143 + "default.handlebars->47->3052",
26144 + "default.handlebars->47->3078",
26145 "player.handlebars->3->18"
26146 ]
26147 },
@@ -26180,7 +26194,7 @@
26194 "hu": "holland (Belga)",
26195 "xloc": [
26196 "default-mobile.handlebars->11->150",
26183 - "default.handlebars->47->1821",
26197 + "default.handlebars->47->1831",
26198 "login2.handlebars->7->47"
26199 ]
26200 },
@@ -26209,7 +26223,7 @@
26223 "hu": "holland",
26224 "xloc": [
26225 "default-mobile.handlebars->11->149",
26212 - "default.handlebars->47->1820",
26226 + "default.handlebars->47->1830",
26227 "login2.handlebars->7->46"
26228 ]
26229 },
@@ -26660,12 +26674,12 @@
26674 "default-mobile.handlebars->11->922",
26675 "default-mobile.handlebars->11->929",
26676 "default-mobile.handlebars->11->949",
26663 - "default.handlebars->47->2233",
26664 - "default.handlebars->47->2236",
26665 - "default.handlebars->47->2239",
26666 - "default.handlebars->47->2276",
26667 - "default.handlebars->47->2303",
26668 - "default.handlebars->47->2315"
26677 + "default.handlebars->47->2243",
26678 + "default.handlebars->47->2246",
26679 + "default.handlebars->47->2249",
26680 + "default.handlebars->47->2286",
26681 + "default.handlebars->47->2313",
26682 + "default.handlebars->47->2325"
26683 ]
26684 },
26685 {
@@ -26692,7 +26706,7 @@
26706 "zh-cht": "編輯裝置群功能",
26707 "hu": "Eszköz Csoport funkciók szerkesztése",
26708 "xloc": [
26695 - "default.handlebars->47->2262"
26709 + "default.handlebars->47->2272"
26710 ]
26711 },
26712 {
@@ -26719,8 +26733,8 @@
26733 "zh-cht": "編輯裝置群權限",
26734 "hu": "Eszközcsoport engedélyek szerkesztése",
26735 "xloc": [
26722 - "default.handlebars->47->2300",
26723 - "default.handlebars->47->2312"
26736 + "default.handlebars->47->2310",
26737 + "default.handlebars->47->2322"
26738 ]
26739 },
26740 {
@@ -26747,7 +26761,7 @@
26761 "zh-cht": "編輯裝置群用戶同意",
26762 "hu": "Eszközcsoport felhasználói hozzájárulások szerkesztése",
26763 "xloc": [
26750 - "default.handlebars->47->2240"
26764 + "default.handlebars->47->2250"
26765 ]
26766 },
26767 {
@@ -26775,7 +26789,7 @@
26789 "hu": "Eszköz jegyzetek szerkesztése",
26790 "xloc": [
26791 "default-mobile.handlebars->11->941",
26778 - "default.handlebars->47->2290"
26792 + "default.handlebars->47->2300"
26793 ]
26794 },
26795 {
@@ -26802,8 +26816,8 @@
26816 "zh-cht": "編輯裝置權限",
26817 "hu": "Eszköz engedélyek szerkesztése",
26818 "xloc": [
26805 - "default.handlebars->47->2305",
26806 - "default.handlebars->47->2307"
26819 + "default.handlebars->47->2315",
26820 + "default.handlebars->47->2317"
26821 ]
26822 },
26823 {
@@ -26857,7 +26871,7 @@
26871 "zh-cht": "編輯裝置用戶同意",
26872 "hu": "Felhasználói hozzájárulások szerkesztése",
26873 "xloc": [
26860 - "default.handlebars->47->2242"
26874 + "default.handlebars->47->2252"
26875 ]
26876 },
26877 {
@@ -26946,7 +26960,7 @@
26960 "hu": "Jegyzetek szerkesztése",
26961 "xloc": [
26962 "default-mobile.handlebars->11->956",
26949 - "default.handlebars->47->2322"
26963 + "default.handlebars->47->2332"
26964 ]
26965 },
26966 {
@@ -26973,7 +26987,7 @@
26987 "zh-cht": "編輯用戶同意",
26988 "hu": "Felhasználói hozzájárulások szerkesztése",
26989 "xloc": [
26976 - "default.handlebars->47->2241"
26990 + "default.handlebars->47->2251"
26991 ]
26992 },
26993 {
@@ -27000,7 +27014,7 @@
27014 "zh-cht": "編輯用戶裝置群權限",
27015 "hu": "Felhasználói eszközcsoport engedélyek szerkesztése",
27016 "xloc": [
27003 - "default.handlebars->47->2313"
27017 + "default.handlebars->47->2323"
27018 ]
27019 },
27020 {
@@ -27027,7 +27041,7 @@
27041 "zh-cht": "編輯用戶裝置權限",
27042 "hu": "Felhasználói eszközengedélyek szerkesztése",
27043 "xloc": [
27030 - "default.handlebars->47->2308"
27044 + "default.handlebars->47->2318"
27045 ]
27046 },
27047 {
@@ -27054,7 +27068,7 @@
27068 "zh-cht": "編輯用戶特徵",
27069 "hu": "Felhasználói funkciók szerkesztése",
27070 "xloc": [
27057 - "default.handlebars->47->2977"
27071 + "default.handlebars->47->2987"
27072 ]
27073 },
27074 {
@@ -27081,7 +27095,7 @@
27095 "zh-cht": "編輯用戶群",
27096 "hu": "Felhasználói csoport szerkesztése",
27097 "xloc": [
27084 - "default.handlebars->47->2830"
27098 + "default.handlebars->47->2840"
27099 ]
27100 },
27101 {
@@ -27108,7 +27122,7 @@
27122 "zh-cht": "編輯用戶群裝置權限",
27123 "hu": "Felhasználói csoport eszköz engedélyeinek szerkesztése",
27124 "xloc": [
27111 - "default.handlebars->47->2310"
27125 + "default.handlebars->47->2320"
27126 ]
27127 },
27128 {
@@ -27135,7 +27149,7 @@
27149 "zh-cht": "編輯用戶組功能",
27150 "hu": "Felhasználói Csoportok funkciók szerkesztése",
27151 "xloc": [
27138 - "default.handlebars->47->2823"
27152 + "default.handlebars->47->2833"
27153 ]
27154 },
27155 {
@@ -27162,7 +27176,7 @@
27176 "zh-cht": "編輯用戶組用戶同意",
27177 "hu": "Felhasználói Csoport felhasználói hozzájárulások szerkesztése",
27178 "xloc": [
27165 - "default.handlebars->47->2243"
27179 + "default.handlebars->47->2253"
27180 ]
27181 },
27182 {
@@ -27296,12 +27310,12 @@
27310 "hu": "Email",
27311 "xloc": [
27312 "default-mobile.handlebars->11->316",
27299 - "default.handlebars->47->2722",
27300 - "default.handlebars->47->2856",
27301 - "default.handlebars->47->2858",
27302 - "default.handlebars->47->2906",
27303 - "default.handlebars->47->2919",
27304 - "default.handlebars->47->2980",
27313 + "default.handlebars->47->2732",
27314 + "default.handlebars->47->2866",
27315 + "default.handlebars->47->2868",
27316 + "default.handlebars->47->2916",
27317 + "default.handlebars->47->2929",
27318 + "default.handlebars->47->2990",
27319 "default.handlebars->47->543",
27320 "login-mobile.handlebars->5->45",
27321 "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3",
@@ -27324,7 +27338,7 @@
27338 "pl": "Email ({0})",
27339 "de": "E-Mail ({0})",
27340 "xloc": [
27327 - "default.handlebars->47->2132",
27341 + "default.handlebars->47->2142",
27342 "default.handlebars->47->952"
27343 ]
27344 },
@@ -27353,7 +27367,7 @@
27367 "hu": "E-mail cím módosítása",
27368 "xloc": [
27369 "default-mobile.handlebars->11->317",
27356 - "default.handlebars->47->2011"
27370 + "default.handlebars->47->2021"
27371 ]
27372 },
27373 {
@@ -27381,7 +27395,7 @@
27395 "hu": "E-mail hitelesítés",
27396 "xloc": [
27397 "default-mobile.handlebars->11->101",
27384 - "default.handlebars->47->1751"
27398 + "default.handlebars->47->1761"
27399 ]
27400 },
27401 {
@@ -27496,7 +27510,7 @@
27510 "hu": "Email értesítés",
27511 "xloc": [
27512 "default.handlebars->47->1088",
27499 - "default.handlebars->47->2372"
27513 + "default.handlebars->47->2382"
27514 ]
27515 },
27516 {
@@ -27548,7 +27562,7 @@
27562 "hu": "Email megerősítés",
27563 "xloc": [
27564 "default-mobile.handlebars->11->315",
27551 - "default.handlebars->47->2009"
27565 + "default.handlebars->47->2019"
27566 ]
27567 },
27568 {
@@ -27576,7 +27590,7 @@
27590 "hu": "A \\\"{0}\\\" e-mail domain nem engedélyezett. Csak ({1}) engedélyezett",
27591 "xloc": [
27592 "default-mobile.handlebars->11->1014",
27579 - "default.handlebars->47->3212"
27593 + "default.handlebars->47->3222"
27594 ]
27595 },
27596 {
@@ -27630,7 +27644,7 @@
27644 "zh-cht": "電郵未驗證",
27645 "hu": "Az e-mail cím nincs megerősítve.",
27646 "xloc": [
27633 - "default.handlebars->47->2664"
27647 + "default.handlebars->47->2674"
27648 ]
27649 },
27650 {
@@ -27657,8 +27671,8 @@
27671 "zh-cht": "電子郵件已驗證",
27672 "hu": "Az e-mail cím megerősítve.",
27673 "xloc": [
27660 - "default.handlebars->47->2665",
27661 - "default.handlebars->47->2850"
27674 + "default.handlebars->47->2675",
27675 + "default.handlebars->47->2860"
27676 ]
27677 },
27678 {
@@ -27685,7 +27699,7 @@
27699 "zh-cht": "電郵已驗證。",
27700 "hu": "Az e-mail cím megerősítve.",
27701 "xloc": [
27688 - "default.handlebars->47->2728"
27702 + "default.handlebars->47->2738"
27703 ]
27704 },
27705 {
@@ -27712,7 +27726,7 @@
27726 "zh-cht": "電郵未驗證",
27727 "hu": "Az e-mail cím nincs megerősítve.",
27728 "xloc": [
27715 - "default.handlebars->47->2851"
27729 + "default.handlebars->47->2861"
27730 ]
27731 },
27732 {
@@ -27764,7 +27778,7 @@
27778 "hu": "E-mail elküldve.",
27779 "xloc": [
27780 "default-mobile.handlebars->11->998",
27767 - "default.handlebars->47->3196",
27781 + "default.handlebars->47->3206",
27782 "login-mobile.handlebars->5->2",
27783 "login.handlebars->5->2",
27784 "login2.handlebars->7->201"
@@ -27847,7 +27861,7 @@
27861 "zh-cht": "已通過電郵驗證,並且需要重置密碼。",
27862 "hu": "E-mail megerősített és kötelező jelszó-visszaállítás szükséges.",
27863 "xloc": [
27850 - "default.handlebars->47->2729"
27864 + "default.handlebars->47->2739"
27865 ]
27866 },
27867 {
@@ -27898,7 +27912,7 @@
27912 "zh-cht": "電子郵件/短信/推送流量",
27913 "hu": "E-mail/SMS/Push forgalom",
27914 "xloc": [
27901 - "default.handlebars->47->3292"
27915 + "default.handlebars->47->3302"
27916 ]
27917 },
27918 {
@@ -28012,7 +28026,7 @@
28026 "zh-cht": "啟用邀請代碼",
28027 "hu": "Meghívókódok engedélyezése",
28028 "xloc": [
28015 - "default.handlebars->47->2348"
28029 + "default.handlebars->47->2358"
28030 ]
28031 },
28032 {
@@ -28067,7 +28081,7 @@
28081 "hu": "Kétfaktoros e-mail hitelesítés engedélyezése.",
28082 "xloc": [
28083 "default-mobile.handlebars->11->103",
28070 - "default.handlebars->47->1753"
28084 + "default.handlebars->47->1763"
28085 ]
28086 },
28087 {
@@ -28123,8 +28137,8 @@
28137 "xloc": [
28138 "default-mobile.handlebars->11->860",
28139 "default.handlebars->47->129",
28126 - "default.handlebars->47->1680",
28127 - "default.handlebars->47->3070"
28140 + "default.handlebars->47->1690",
28141 + "default.handlebars->47->3080"
28142 ]
28143 },
28144 {
@@ -28151,7 +28165,7 @@
28165 "zh-cht": "啟用電子郵件兩因素身份驗證",
28166 "hu": "Kétfaktoros e-mail hitelesítés engedélyezve",
28167 "xloc": [
28154 - "default.handlebars->47->2539"
28168 + "default.handlebars->47->2549"
28169 ]
28170 },
28171 {
@@ -28232,7 +28246,7 @@
28246 "zh-cht": "編碼:RAW",
28247 "hu": "Kódolás: RAW",
28248 "xloc": [
28235 - "default.handlebars->47->1544"
28249 + "default.handlebars->47->1554"
28250 ]
28251 },
28252 {
@@ -28259,7 +28273,7 @@
28273 "zh-cht": "編碼:UTF8",
28274 "hu": "Kódolás: UTF8",
28275 "xloc": [
28262 - "default.handlebars->47->1545"
28276 + "default.handlebars->47->1555"
28277 ]
28278 },
28279 {
@@ -28267,7 +28281,7 @@
28281 "nl": "Versleuteling wordt uitgevoerd",
28282 "xloc": [
28283 "default-mobile.handlebars->11->862",
28270 - "default.handlebars->47->1682"
28284 + "default.handlebars->47->1692"
28285 ]
28286 },
28287 {
@@ -28322,7 +28336,7 @@
28336 "zh-cht": "時間結束",
28337 "hu": "Befejezés ideje",
28338 "xloc": [
28325 - "default.handlebars->47->3067"
28339 + "default.handlebars->47->3077"
28340 ]
28341 },
28342 {
@@ -28349,7 +28363,7 @@
28363 "zh-cht": "從{1}到{2},{3}秒結束了桌面會話“{0}”",
28364 "hu": "Befejezett asztali munkamenet \\\"{0}\\\", {1} és {2} között, {3} másodperc",
28365 "xloc": [
28352 - "default.handlebars->47->2462"
28366 + "default.handlebars->47->2472"
28367 ]
28368 },
28369 {
@@ -28376,7 +28390,7 @@
28390 "zh-cht": "從{1}到{2},{3}秒結束了文件管理會話“{0}”",
28391 "hu": "Befejezett fájl munkamenet \\\"{0}\\\" az {1}-től {2}-ig, {3} másodperc",
28392 "xloc": [
28379 - "default.handlebars->47->2463"
28393 + "default.handlebars->47->2473"
28394 ]
28395 },
28396 {
@@ -28403,7 +28417,7 @@
28417 "zh-cht": "已結束本地中繼會話 \\\"{0}\\\",協議 {1} 到 {2},{3} 秒",
28418 "hu": "Befejezett helyi relay munkamenet \\\"{0}\\\" protokol {1} és {2} között, {3} másodperc",
28419 "xloc": [
28406 - "default.handlebars->47->2572"
28420 + "default.handlebars->47->2582"
28421 ]
28422 },
28423 {
@@ -28430,7 +28444,7 @@
28444 "zh-cht": "從 {1} 到 {2} 結束的 Messenger 會話 \\\"{0}\\\",{3} 秒",
28445 "hu": "Befejezett üzenetküldő munkamenet \\\"{0}\\\" {1} és {2} között, {3} másodperc",
28446 "xloc": [
28433 - "default.handlebars->47->2563"
28447 + "default.handlebars->47->2573"
28448 ]
28449 },
28450 {
@@ -28457,7 +28471,7 @@
28471 "zh-cht": "從{1}到{2},{3}秒結束了中繼會話“{0}”",
28472 "hu": "Befejezett relay munkamenet \\\"{0}\\\" {1} és {2} között, {3} másodperc",
28473 "xloc": [
28460 - "default.handlebars->47->2460"
28474 + "default.handlebars->47->2470"
28475 ]
28476 },
28477 {
@@ -28484,7 +28498,7 @@
28498 "zh-cht": "從{1}到{2},{3}秒結束了終端會話“{0}”",
28499 "hu": "Befejezett terminál munkamenet \\\"{0}\\\" az {1}-től {2}-ig, {3} másodperc",
28500 "xloc": [
28487 - "default.handlebars->47->2461"
28501 + "default.handlebars->47->2471"
28502 ]
28503 },
28504 {
@@ -28512,7 +28526,7 @@
28526 "hu": "angol",
28527 "xloc": [
28528 "default-mobile.handlebars->11->151",
28515 - "default.handlebars->47->1822",
28529 + "default.handlebars->47->1832",
28530 "login2.handlebars->7->48"
28531 ]
28532 },
@@ -28541,7 +28555,7 @@
28555 "hu": "angol (Ausztrália)",
28556 "xloc": [
28557 "default-mobile.handlebars->11->152",
28544 - "default.handlebars->47->1823",
28558 + "default.handlebars->47->1833",
28559 "login2.handlebars->7->49"
28560 ]
28561 },
@@ -28570,7 +28584,7 @@
28584 "hu": "angol (Belize)",
28585 "xloc": [
28586 "default-mobile.handlebars->11->153",
28573 - "default.handlebars->47->1824",
28587 + "default.handlebars->47->1834",
28588 "login2.handlebars->7->50"
28589 ]
28590 },
@@ -28599,7 +28613,7 @@
28613 "hu": "angol (Kanada)",
28614 "xloc": [
28615 "default-mobile.handlebars->11->154",
28602 - "default.handlebars->47->1825",
28616 + "default.handlebars->47->1835",
28617 "login2.handlebars->7->51"
28618 ]
28619 },
@@ -28628,7 +28642,7 @@
28642 "hu": "angol (Írország)",
28643 "xloc": [
28644 "default-mobile.handlebars->11->155",
28631 - "default.handlebars->47->1826",
28645 + "default.handlebars->47->1836",
28646 "login2.handlebars->7->52"
28647 ]
28648 },
@@ -28657,7 +28671,7 @@
28671 "hu": "angol (Jamaika)",
28672 "xloc": [
28673 "default-mobile.handlebars->11->156",
28660 - "default.handlebars->47->1827",
28674 + "default.handlebars->47->1837",
28675 "login2.handlebars->7->53"
28676 ]
28677 },
@@ -28686,7 +28700,7 @@
28700 "hu": "angol (Új-Zéland)",
28701 "xloc": [
28702 "default-mobile.handlebars->11->157",
28689 - "default.handlebars->47->1828",
28703 + "default.handlebars->47->1838",
28704 "login2.handlebars->7->54"
28705 ]
28706 },
@@ -28715,7 +28729,7 @@
28729 "hu": "angol (Fülöp-szigetek)",
28730 "xloc": [
28731 "default-mobile.handlebars->11->158",
28718 - "default.handlebars->47->1829",
28732 + "default.handlebars->47->1839",
28733 "login2.handlebars->7->55"
28734 ]
28735 },
@@ -28744,7 +28758,7 @@
28758 "hu": "angol (Dél-Afrika)",
28759 "xloc": [
28760 "default-mobile.handlebars->11->159",
28747 - "default.handlebars->47->1830",
28761 + "default.handlebars->47->1840",
28762 "login2.handlebars->7->56"
28763 ]
28764 },
@@ -28773,7 +28787,7 @@
28787 "hu": "angol (Trinidad és Tobago)",
28788 "xloc": [
28789 "default-mobile.handlebars->11->160",
28776 - "default.handlebars->47->1831",
28790 + "default.handlebars->47->1841",
28791 "login2.handlebars->7->57"
28792 ]
28793 },
@@ -28802,7 +28816,7 @@
28816 "hu": "angol (Egyesült Királyság)",
28817 "xloc": [
28818 "default-mobile.handlebars->11->161",
28805 - "default.handlebars->47->1832",
28819 + "default.handlebars->47->1842",
28820 "login2.handlebars->7->58"
28821 ]
28822 },
@@ -28831,7 +28845,7 @@
28845 "hu": "angol (USA)",
28846 "xloc": [
28847 "default-mobile.handlebars->11->162",
28834 - "default.handlebars->47->1833",
28848 + "default.handlebars->47->1843",
28849 "login2.handlebars->7->59"
28850 ]
28851 },
@@ -28860,7 +28874,7 @@
28874 "hu": "angol (Zimbabwe)",
28875 "xloc": [
28876 "default-mobile.handlebars->11->163",
28863 - "default.handlebars->47->1834",
28877 + "default.handlebars->47->1844",
28878 "login2.handlebars->7->60"
28879 ]
28880 },
@@ -28914,9 +28928,9 @@
28928 "xloc": [
28929 "default-mobile.handlebars->11->625",
28930 "default.handlebars->47->1378",
28917 - "default.handlebars->47->1509",
28918 - "default.handlebars->47->2048",
28919 - "default.handlebars->47->2049",
28931 + "default.handlebars->47->1513",
28932 + "default.handlebars->47->2058",
28933 + "default.handlebars->47->2059",
28934 "sharing.handlebars->11->55"
28935 ]
28936 },
@@ -28944,7 +28958,7 @@
28958 "zh-cht": "輸入管理領域名稱的逗號分隔列表。",
28959 "hu": "Adja meg az adminisztratív realm nevek vesszővel elválasztott listáját. (Ezek nem domain-ek)",
28960 "xloc": [
28947 - "default.handlebars->47->2733"
28961 + "default.handlebars->47->2743"
28962 ]
28963 },
28964 {
@@ -29180,7 +29194,7 @@
29194 "zh-cht": "輸入支持SMS的電話號碼。驗證後,該號碼可用於登入驗證和其他通知。",
29195 "hu": "Írja be az SMS fogadásra alkalmas telefonszámát. Az ellenőrzést követően a szám felhasználható bejelentkezés ellenőrzésére és egyéb értesítésekre.",
29196 "xloc": [
29183 - "default.handlebars->47->1717"
29197 + "default.handlebars->47->1727"
29198 ]
29199 },
29200 {
@@ -29191,7 +29205,7 @@
29205 "pl": "Wprowadź swoją usługę przesyłania wiadomości. Po weryfikacji, ten serwer może wysyłać weryfikację logowania i inne powiadomienia.",
29206 "de": "Geben Sie ihren Messengerdienst und Nutzernamen ein. Sobald Sie verifiziert sind, kann dieser Server Ihnen Loginverifikationen und andere Benachrichtigungen senden.",
29207 "xloc": [
29194 - "default.handlebars->47->1723"
29208 + "default.handlebars->47->1733"
29209 ]
29210 },
29211 {
@@ -29346,7 +29360,7 @@
29360 "hu": "Hiba, a \\\"{0}\\\" meghívókód már használatban van.",
29361 "xloc": [
29362 "default-mobile.handlebars->11->1006",
29349 - "default.handlebars->47->3204"
29363 + "default.handlebars->47->3214"
29364 ]
29365 },
29366 {
@@ -29374,7 +29388,7 @@
29388 "hu": "Hiba, a jelszó nem módosult.",
29389 "xloc": [
29390 "default-mobile.handlebars->11->1003",
29377 - "default.handlebars->47->3201"
29391 + "default.handlebars->47->3211"
29392 ]
29393 },
29394 {
@@ -29402,7 +29416,7 @@
29416 "hu": "Hiba, nem lehet átváltani a gyakran használt jelszóra.",
29417 "xloc": [
29418 "default-mobile.handlebars->11->1002",
29405 - "default.handlebars->47->3200"
29419 + "default.handlebars->47->3210"
29420 ]
29421 },
29422 {
@@ -29430,7 +29444,7 @@
29444 "hu": "Hiba, nem lehet átváltani a korábban használt jelszóra.",
29445 "xloc": [
29446 "default-mobile.handlebars->11->1001",
29433 - "default.handlebars->47->3199"
29447 + "default.handlebars->47->3209"
29448 ]
29449 },
29450 {
@@ -29521,7 +29535,7 @@
29535 "hu": "eszperantó",
29536 "xloc": [
29537 "default-mobile.handlebars->11->164",
29524 - "default.handlebars->47->1835",
29538 + "default.handlebars->47->1845",
29539 "login2.handlebars->7->61"
29540 ]
29541 },
@@ -29574,7 +29588,7 @@
29588 "hu": "észt",
29589 "xloc": [
29590 "default-mobile.handlebars->11->165",
29577 - "default.handlebars->47->1836",
29591 + "default.handlebars->47->1846",
29592 "login2.handlebars->7->62"
29593 ]
29594 },
@@ -29626,7 +29640,7 @@
29640 "zh-cht": "事件詳情",
29641 "hu": "Az esemény részletei",
29642 "xloc": [
29629 - "default.handlebars->47->1553"
29643 + "default.handlebars->47->1563"
29644 ]
29645 },
29646 {
@@ -29653,7 +29667,7 @@
29667 "zh-cht": "事件列表輸出",
29668 "hu": "Eseménylista exportálás",
29669 "xloc": [
29656 - "default.handlebars->47->2639"
29670 + "default.handlebars->47->2649"
29671 ]
29672 },
29673 {
@@ -29665,7 +29679,7 @@
29679 "hu": "Esemény rekordok",
29680 "de": "Eventaufzeichnungen",
29681 "xloc": [
29668 - "default.handlebars->47->3155"
29682 + "default.handlebars->47->3165"
29683 ]
29684 },
29685 {
@@ -29860,7 +29874,7 @@
29874 "hu": "Lejárati idő",
29875 "xloc": [
29876 "default.handlebars->47->1206",
29863 - "default.handlebars->47->1999",
29877 + "default.handlebars->47->2009",
29878 "default.handlebars->47->292"
29879 ]
29880 },
@@ -29915,7 +29929,7 @@
29929 "zh-cht": "過期{0}",
29930 "hu": "Lejárat {0}",
29931 "xloc": [
29918 - "default.handlebars->47->2062",
29932 + "default.handlebars->47->2072",
29933 "sharing.handlebars->11->95"
29934 ]
29935 },
@@ -30026,7 +30040,7 @@
30040 "zh-cht": "外部",
30041 "hu": "Külső",
30042 "xloc": [
30029 - "default.handlebars->47->3272"
30043 + "default.handlebars->47->3282"
30044 ]
30045 },
30046 {
@@ -30053,7 +30067,7 @@
30067 "zh-cht": "FIDO 密鑰",
30068 "hu": "FIDO kulcs",
30069 "xloc": [
30056 - "default.handlebars->47->3135"
30070 + "default.handlebars->47->3145"
30071 ]
30072 },
30073 {
@@ -30108,7 +30122,7 @@
30122 "hu": "FYRO macedón",
30123 "xloc": [
30124 "default-mobile.handlebars->11->215",
30111 - "default.handlebars->47->1886",
30125 + "default.handlebars->47->1896",
30126 "login2.handlebars->7->112"
30127 ]
30128 },
@@ -30120,8 +30134,8 @@
30134 "pl": "Facebook",
30135 "de": "Facebook",
30136 "xloc": [
30123 - "default.handlebars->47->1737",
30124 - "default.handlebars->47->2952"
30137 + "default.handlebars->47->1747",
30138 + "default.handlebars->47->2962"
30139 ]
30140 },
30141 {
@@ -30149,7 +30163,7 @@
30163 "hu": "feröer-szigeteki",
30164 "xloc": [
30165 "default-mobile.handlebars->11->166",
30152 - "default.handlebars->47->1837",
30166 + "default.handlebars->47->1847",
30167 "login2.handlebars->7->63"
30168 ]
30169 },
@@ -30205,7 +30219,7 @@
30219 "hu": "Nem sikerült megváltoztatni az e-mail címet, mert egy másik fiók már használja: {0}.",
30220 "xloc": [
30221 "default-mobile.handlebars->11->997",
30208 - "default.handlebars->47->3195"
30222 + "default.handlebars->47->3205"
30223 ]
30224 },
30225 {
@@ -30285,7 +30299,7 @@
30299 "zh-cht": "本地用戶拒絕後無法啟動遠程桌面",
30300 "hu": "A helyi felhasználó elutasítása után nem sikerült elindítani a távoli asztalt",
30301 "xloc": [
30288 - "default.handlebars->47->2485"
30302 + "default.handlebars->47->2495"
30303 ]
30304 },
30305 {
@@ -30336,7 +30350,7 @@
30350 "zh-cht": "本地用戶拒絕後無法啟動遠程文件",
30351 "hu": "A helyi felhasználó elutasítása után nem sikerült elindítani a távoli fájl elérést",
30352 "xloc": [
30339 - "default.handlebars->47->2492"
30353 + "default.handlebars->47->2502"
30354 ]
30355 },
30356 {
@@ -30418,7 +30432,7 @@
30432 "hu": "fárszi (perzsa)",
30433 "xloc": [
30434 "default-mobile.handlebars->11->167",
30421 - "default.handlebars->47->1838",
30435 + "default.handlebars->47->1848",
30436 "login2.handlebars->7->64"
30437 ]
30438 },
@@ -30475,9 +30489,9 @@
30489 "zh-cht": "功能",
30490 "hu": "Funkciók",
30491 "xloc": [
30478 - "default.handlebars->47->2116",
30479 - "default.handlebars->47->2786",
30480 - "default.handlebars->47->2877"
30492 + "default.handlebars->47->2126",
30493 + "default.handlebars->47->2796",
30494 + "default.handlebars->47->2887"
30495 ]
30496 },
30497 {
@@ -30505,7 +30519,7 @@
30519 "hu": "fidzsi",
30520 "xloc": [
30521 "default-mobile.handlebars->11->168",
30508 - "default.handlebars->47->1839",
30522 + "default.handlebars->47->1849",
30523 "login2.handlebars->7->65"
30524 ]
30525 },
@@ -30561,8 +30575,8 @@
30575 "hu": "Fájl szerkesztő",
30576 "xloc": [
30577 "default-mobile.handlebars->11->698",
30564 - "default.handlebars->47->1521",
30565 - "default.handlebars->47->2441",
30578 + "default.handlebars->47->1525",
30579 + "default.handlebars->47->2451",
30580 "default.handlebars->47->826",
30581 "sharing.handlebars->11->66"
30582 ]
@@ -30617,6 +30631,8 @@
30631 "xloc": [
30632 "default.handlebars->47->1497",
30633 "default.handlebars->47->1499",
30634 + "default.handlebars->47->1501",
30635 + "default.handlebars->47->1503",
30636 "sharing.handlebars->11->46",
30637 "sharing.handlebars->11->48"
30638 ]
@@ -30654,7 +30670,7 @@
30670 "pl": "System Plików",
30671 "xloc": [
30672 "default-mobile.handlebars->11->858",
30657 - "default.handlebars->47->1678"
30673 + "default.handlebars->47->1688"
30674 ]
30675 },
30676 {
@@ -30681,7 +30697,7 @@
30697 "zh-cht": "文件傳輸",
30698 "hu": "Fálj átvitel",
30699 "xloc": [
30684 - "default.handlebars->47->3048"
30700 + "default.handlebars->47->3058"
30701 ]
30702 },
30703 {
@@ -30739,12 +30755,12 @@
30755 "default-mobile.handlebars->11->563",
30756 "default.handlebars->47->1064",
30757 "default.handlebars->47->1177",
30742 - "default.handlebars->47->2171",
30743 - "default.handlebars->47->2251",
30744 - "default.handlebars->47->3055",
30745 - "default.handlebars->47->3115",
30746 - "default.handlebars->47->3165",
30747 - "default.handlebars->47->3260",
30758 + "default.handlebars->47->2181",
30759 + "default.handlebars->47->2261",
30760 + "default.handlebars->47->3065",
30761 + "default.handlebars->47->3125",
30762 + "default.handlebars->47->3175",
30763 + "default.handlebars->47->3270",
30764 "default.handlebars->47->457",
30765 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles",
30766 "default.handlebars->contextMenu->cxfiles",
@@ -30802,9 +30818,9 @@
30818 "zh-cht": "檔案通知",
30819 "hu": "Fájl kapcsolat értesítés",
30820 "xloc": [
30805 - "default.handlebars->47->2124",
30806 - "default.handlebars->47->2794",
30807 - "default.handlebars->47->2899",
30821 + "default.handlebars->47->2134",
30822 + "default.handlebars->47->2804",
30823 + "default.handlebars->47->2909",
30824 "default.handlebars->47->944"
30825 ]
30826 },
@@ -30832,9 +30848,9 @@
30848 "zh-cht": "檔案提示",
30849 "hu": "Fájl kapcsolat engedélykérés",
30850 "xloc": [
30835 - "default.handlebars->47->2123",
30836 - "default.handlebars->47->2793",
30837 - "default.handlebars->47->2898",
30851 + "default.handlebars->47->2133",
30852 + "default.handlebars->47->2803",
30853 + "default.handlebars->47->2908",
30854 "default.handlebars->47->943"
30855 ]
30856 },
@@ -30863,7 +30879,7 @@
30879 "hu": "Szűrő",
30880 "xloc": [
30881 "default-mobile.handlebars->container->page_content->column_l->p2->xdevicesBar->1",
30866 - "default.handlebars->47->1505",
30882 + "default.handlebars->47->1509",
30883 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar",
30884 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->kvmListToolbar",
30885 "default.handlebars->container->column_l->p4->3->1->0->3->3",
@@ -30949,7 +30965,7 @@
30965 "zh-cht": "查找文件",
30966 "hu": "Fájlok keresése",
30967 "xloc": [
30952 - "default.handlebars->47->1508",
30968 + "default.handlebars->47->1512",
30969 "sharing.handlebars->11->54"
30970 ]
30971 },
@@ -30977,7 +30993,7 @@
30993 "zh-cht": "已完成錄製會話 \\\"{0}\\\",{1} 秒",
30994 "hu": "Felvétel kész, \\\"{0}\\\", {1} másodperc",
30995 "xloc": [
30980 - "default.handlebars->47->2597"
30996 + "default.handlebars->47->2607"
30997 ]
30998 },
30999 {
@@ -31004,7 +31020,7 @@
31020 "zh-cht": "錄製會話已完成,{0}秒",
31021 "hu": "Felvétel kész, {0} másodperc",
31022 "xloc": [
31007 - "default.handlebars->47->2458"
31023 + "default.handlebars->47->2468"
31024 ]
31025 },
31026 {
@@ -31032,7 +31048,7 @@
31048 "hu": "finn",
31049 "xloc": [
31050 "default-mobile.handlebars->11->169",
31035 - "default.handlebars->47->1840",
31051 + "default.handlebars->47->1850",
31052 "login2.handlebars->7->66"
31053 ]
31054 },
@@ -31090,8 +31106,8 @@
31106 "zh-cht": "防火牆未激活",
31107 "hu": "Tűzfal nincs bekapcsolva",
31108 "xloc": [
31093 - "default.handlebars->47->2388",
31094 - "default.handlebars->47->2402"
31109 + "default.handlebars->47->2398",
31110 + "default.handlebars->47->2412"
31111 ]
31112 },
31113 {
@@ -31158,7 +31174,7 @@
31174 "zh-cht": "標誌",
31175 "hu": "Jelzők",
31176 "xloc": [
31161 - "default.handlebars->47->2612"
31177 + "default.handlebars->47->2622"
31178 ]
31179 },
31180 {
@@ -31485,8 +31501,8 @@
31501 "zh-cht": "下次登入時強制重置密碼。",
31502 "hu": "A következő bejelentkezéskor kötelező a jelszót megváltozgatni.",
31503 "xloc": [
31488 - "default.handlebars->47->2727",
31489 - "default.handlebars->47->2991"
31504 + "default.handlebars->47->2737",
31505 + "default.handlebars->47->3001"
31506 ]
31507 },
31508 {
@@ -31513,7 +31529,7 @@
31529 "zh-cht": "強行斷開用戶 {0} 的桌面會話",
31530 "hu": "A {0} felhasználó asztali munkamenetének erőszakos megszakítása",
31531 "xloc": [
31516 - "default.handlebars->47->2585"
31532 + "default.handlebars->47->2595"
31533 ]
31534 },
31535 {
@@ -31540,7 +31556,7 @@
31556 "zh-cht": "強制斷開用戶 {0} 的文件會話",
31557 "hu": "A {0} felhasználó fájlmunkamenetének erőszakos szétkapcsolása",
31558 "xloc": [
31543 - "default.handlebars->47->2587"
31559 + "default.handlebars->47->2597"
31560 ]
31561 },
31562 {
@@ -31567,7 +31583,7 @@
31583 "zh-cht": "強制斷開用戶 {0} 的路由會話",
31584 "hu": "A {0} felhasználó átjárómunkamenetének erőszakos szétkapcsolása",
31585 "xloc": [
31570 - "default.handlebars->47->2588"
31586 + "default.handlebars->47->2598"
31587 ]
31588 },
31589 {
@@ -31594,7 +31610,7 @@
31610 "zh-cht": "強制斷開用戶 {0} 的終端會話",
31611 "hu": "A {0} felhasználó terminál munkamenetének erőszakos szétkapcsolása",
31612 "xloc": [
31597 - "default.handlebars->47->2586"
31613 + "default.handlebars->47->2596"
31614 ]
31615 },
31616 {
@@ -31705,7 +31721,7 @@
31721 "zh-cht": "格式化",
31722 "hu": "Format",
31723 "xloc": [
31708 - "default.handlebars->47->2630"
31724 + "default.handlebars->47->2640"
31725 ]
31726 },
31727 {
@@ -31785,8 +31801,8 @@
31801 "zh-cht": "自由",
31802 "hu": "Free",
31803 "xloc": [
31788 - "default.handlebars->47->3218",
31789 - "default.handlebars->47->3220"
31804 + "default.handlebars->47->3228",
31805 + "default.handlebars->47->3230"
31806 ]
31807 },
31808 {
@@ -31796,8 +31812,8 @@
31812 "hu": "Ingyenes szolgáltatás az ntfy.sh oldalon",
31813 "pl": "Darmowa usługa z ntfy.sh",
31814 "xloc": [
31799 - "default.handlebars->47->1740",
31800 - "default.handlebars->47->2955"
31815 + "default.handlebars->47->1750",
31816 + "default.handlebars->47->2965"
31817 ]
31818 },
31819 {
@@ -31853,7 +31869,7 @@
31869 "hu": "francia (Belgium)",
31870 "xloc": [
31871 "default-mobile.handlebars->11->171",
31856 - "default.handlebars->47->1842",
31872 + "default.handlebars->47->1852",
31873 "login2.handlebars->7->68"
31874 ]
31875 },
@@ -31882,7 +31898,7 @@
31898 "hu": "francia (Kanada)",
31899 "xloc": [
31900 "default-mobile.handlebars->11->172",
31885 - "default.handlebars->47->1843",
31901 + "default.handlebars->47->1853",
31902 "login2.handlebars->7->69"
31903 ]
31904 },
@@ -31911,7 +31927,7 @@
31927 "hu": "francia (Franciaország)",
31928 "xloc": [
31929 "default-mobile.handlebars->11->173",
31914 - "default.handlebars->47->1844",
31930 + "default.handlebars->47->1854",
31931 "login2.handlebars->7->70"
31932 ]
31933 },
@@ -31940,7 +31956,7 @@
31956 "hu": "francia (Luxembourg)",
31957 "xloc": [
31958 "default-mobile.handlebars->11->174",
31943 - "default.handlebars->47->1845",
31959 + "default.handlebars->47->1855",
31960 "login2.handlebars->7->71"
31961 ]
31962 },
@@ -31969,7 +31985,7 @@
31985 "hu": "francia (Monaco)",
31986 "xloc": [
31987 "default-mobile.handlebars->11->175",
31972 - "default.handlebars->47->1846",
31988 + "default.handlebars->47->1856",
31989 "login2.handlebars->7->72"
31990 ]
31991 },
@@ -31998,7 +32014,7 @@
32014 "hu": "francia",
32015 "xloc": [
32016 "default-mobile.handlebars->11->170",
32001 - "default.handlebars->47->1841",
32017 + "default.handlebars->47->1851",
32018 "login2.handlebars->7->67"
32019 ]
32020 },
@@ -32027,7 +32043,7 @@
32043 "hu": "francia (Svájc)",
32044 "xloc": [
32045 "default-mobile.handlebars->11->176",
32030 - "default.handlebars->47->1847",
32046 + "default.handlebars->47->1857",
32047 "login2.handlebars->7->73"
32048 ]
32049 },
@@ -32056,7 +32072,7 @@
32072 "hu": "fríz",
32073 "xloc": [
32074 "default-mobile.handlebars->11->177",
32059 - "default.handlebars->47->1848",
32075 + "default.handlebars->47->1858",
32076 "login2.handlebars->7->74"
32077 ]
32078 },
@@ -32085,7 +32101,7 @@
32101 "hu": "friuli",
32102 "xloc": [
32103 "default-mobile.handlebars->11->178",
32088 - "default.handlebars->47->1849",
32104 + "default.handlebars->47->1859",
32105 "login2.handlebars->7->75"
32106 ]
32107 },
@@ -32117,9 +32133,9 @@
32133 "default-mobile.handlebars->11->910",
32134 "default-mobile.handlebars->11->928",
32135 "default-mobile.handlebars->11->948",
32120 - "default.handlebars->47->2055",
32121 - "default.handlebars->47->2275",
32122 - "default.handlebars->47->2739"
32136 + "default.handlebars->47->2065",
32137 + "default.handlebars->47->2285",
32138 + "default.handlebars->47->2749"
32139 ]
32140 },
32141 {
@@ -32146,7 +32162,7 @@
32162 "zh-cht": "完整管理員(保留所有權利)",
32163 "hu": "Teljes jogú adminisztrátor (minden jog)",
32164 "xloc": [
32149 - "default.handlebars->47->2314"
32165 + "default.handlebars->47->2324"
32166 ]
32167 },
32168 {
@@ -32308,7 +32324,7 @@
32324 "zh-cht": "完整管理員",
32325 "hu": "Teljes körű adminisztrátor",
32326 "xloc": [
32311 - "default.handlebars->47->2844"
32327 + "default.handlebars->47->2854"
32328 ]
32329 },
32330 {
@@ -32335,8 +32351,8 @@
32351 "zh-cht": "全自動的",
32352 "hu": "Teljesen automatikus",
32353 "xloc": [
32338 - "default.handlebars->47->2144",
32339 - "default.handlebars->47->2205"
32354 + "default.handlebars->47->2154",
32355 + "default.handlebars->47->2215"
32356 ]
32357 },
32358 {
@@ -32344,7 +32360,7 @@
32360 "nl": "Volledig gedecodeerd",
32361 "xloc": [
32362 "default-mobile.handlebars->11->861",
32347 - "default.handlebars->47->1681"
32363 + "default.handlebars->47->1691"
32364 ]
32365 },
32366 {
@@ -32352,7 +32368,7 @@
32368 "nl": "Volledig gecodeerd",
32369 "xloc": [
32370 "default-mobile.handlebars->11->863",
32355 - "default.handlebars->47->1683"
32371 + "default.handlebars->47->1693"
32372 ]
32373 },
32374 {
@@ -32407,7 +32423,7 @@
32423 "hu": "GPU",
32424 "xloc": [
32425 "default-mobile.handlebars->11->815",
32410 - "default.handlebars->47->1635"
32426 + "default.handlebars->47->1645"
32427 ]
32428 },
32429 {
@@ -32435,7 +32451,7 @@
32451 "hu": "gael (Ír)",
32452 "xloc": [
32453 "default-mobile.handlebars->11->180",
32438 - "default.handlebars->47->1851",
32454 + "default.handlebars->47->1861",
32455 "login2.handlebars->7->77"
32456 ]
32457 },
@@ -32464,7 +32480,7 @@
32480 "hu": "gael (Skót)",
32481 "xloc": [
32482 "default-mobile.handlebars->11->179",
32467 - "default.handlebars->47->1850",
32483 + "default.handlebars->47->1860",
32484 "login2.handlebars->7->76"
32485 ]
32486 },
@@ -32493,7 +32509,7 @@
32509 "hu": "galíciai",
32510 "xloc": [
32511 "default-mobile.handlebars->11->181",
32496 - "default.handlebars->47->1852",
32512 + "default.handlebars->47->1862",
32513 "login2.handlebars->7->78"
32514 ]
32515 },
@@ -32548,7 +32564,7 @@
32564 "hu": "Átjáró: {0}",
32565 "xloc": [
32566 "default-mobile.handlebars->11->779",
32551 - "default.handlebars->47->1599"
32567 + "default.handlebars->47->1609"
32568 ]
32569 },
32570 {
@@ -32689,7 +32705,7 @@
32705 "zh-cht": "生成報告",

This file is too large to show in full.

views/default.handlebars
+31 -2
@@ -869,6 +869,7 @@
869 <input type=button style="margin-right:2px" disabled="disabled" id=p13CopyButton value="Copy" onclick="p13copyFile(0)" />
870 <input type=button style="margin-right:2px" disabled="disabled" id=p13PasteButton value="Paste" onclick="p13pasteFile()" />
871 <input type=button style="margin-right:2px" disabled="disabled" id=p13ZipButton value="Zip" onclick="p13zipFiles()" />
872 + <input type=button style="margin-right:2px" disabled="disabled" id=p13UnZipButton value="UnZip" onclick="p13unzipFile()" />
873 <input type=button style="margin-right:2px" disabled="disabled" id=p13RefreshButton value="Refresh" onclick="p13folderup(9999)" />
874 <input type=button style="margin-right:2px" disabled="disabled" id=p13FindButton value="Find" onclick="p13findfile()" />
875 <input type=button style="margin-right:2px" disabled="disabled" id=p13GoToFolderButton value="GoTo" onclick="p13gotofolder()" />
@@ -10962,10 +10963,16 @@
10963 setDialogMode(0); // Close the dialog box
10964 } else if ((data.msg == 'zipping') && ((!xxdialogMode) || (xxdialogTag == 'fileMsgDialog'))) {
10965 // Show the dialog box message
10965 - setDialogMode(2, "File Operation", 10, p13fileOperationDialogEx, '<div style=margin:10px>' + "Compressing files..." + '<div>', 'fileMsgDialog');
10966 + setDialogMode(2, "File Operation", 10, p13fileOperationDialogEx, '<div style=margin:10px>' + "Compressing files..." + '</div>', 'fileMsgDialog');
10967 + } else if ((data.msg == 'unzipping') && ((!xxdialogMode) || (xxdialogTag == 'fileMsgDialog'))) {
10968 + // Show the dialog box message
10969 + setDialogMode(2, "File Operation", 10, null, '<div style=margin:10px>' + "Unzipping file..." + '</div>', 'fileMsgDialog');
10970 + } else if ((data.msg == 'unziperror') && ((!xxdialogMode) || (xxdialogTag == 'fileMsgDialog'))) {
10971 + // Show the dialog box message
10972 + setDialogMode(2, "File Operation", 10, null, '<div style=margin:10px>' + "Unzipping Error" + '</div><br />' + EscapeHtml(data.error), 'fileMsgDialog');
10973 } else if ((data.msg == 'zippingFile') && ((!xxdialogMode) || (xxdialogTag == 'fileMsgDialog'))) {
10974 // Show the dialog box message
10968 - setDialogMode(2, "File Operation", 10, p13fileOperationDialogEx, '<div style=margin:10px>' + EscapeHtml(data.file) + '<div><br /><progress value=' + EscapeHtml(data.progress) + ' style=width:100% max=100 />', 'fileMsgDialog');
10975 + setDialogMode(2, "File Operation", 10, p13fileOperationDialogEx, '<div style=margin:10px>' + EscapeHtml(data.file) + '</div><br /><progress value=' + EscapeHtml(data.progress) + ' style=width:100% max=100 />', 'fileMsgDialog');
10976 }
10977 return;
10978 }
@@ -11205,6 +11212,7 @@
11212 QE('p13CutButton', false);
11213 QE('p13CopyButton', false);
11214 QE('p13ZipButton', false);
11215 + QE('p13UnZipButton', false);
11216 QE('p13PasteButton', false);
11217 QE('p13GoToFolderButton', false);
11218 QE('p13DownloadButton', false);
@@ -11223,6 +11231,7 @@
11231 QE('p13CutButton', advancedFeatures && (cc > 0) && (cc == sfc) && ((p13filetreelocation.length > 0) || (winAgent == false)));
11232 QE('p13CopyButton', advancedFeatures && (cc > 0) && (cc == sfc) && ((p13filetreelocation.length > 0) || (winAgent == false)));
11233 QE('p13ZipButton', advancedFeatures && (cc > 0) && ((p13filetreelocation.length > 0) || (winAgent == false)));
11234 + QE('p13UnZipButton', advancedFeatures && (cc == 1) && (sfc == 1) && ((p13filetreelocation.length > 0) || (winAgent == false)) && p13getFileSelAllowedExt('.zip'));
11235 QE('p13PasteButton', advancedFeatures && ((p13filetreelocation.length > 0) || (winAgent == false)) && ((p13clipboard != null) && (p13clipboard.length > 0)));
11236 QE('p13GoToFolderButton', true);
11237 QE('p13DownloadButton', advancedFeatures && (cc > 0) && (cc == sfc) && ((p13filetreelocation.length > 0) || (winAgent == false)));
@@ -11238,12 +11247,14 @@
11247 QV('p13CutButton', filesNode.mtype != 3);
11248 QV('p13CopyButton', filesNode.mtype != 3);
11249 QV('p13ZipButton', filesNode.mtype != 3);
11250 + QV('p13UnZipButton', filesNode.mtype != 3);
11251 QV('p13PasteButton', filesNode.mtype != 3);
11252 }
11253
11254 function p13getFileSelCount(includeDirs) { var cc = 0; var checkboxes = document.getElementsByName('fd'); for (var i = 0; i < checkboxes.length; i++) { if ((checkboxes[i].checked) && ((includeDirs != false) || (checkboxes[i].attributes.file.value == '3'))) cc++; } return cc; }
11255 function p13getFileSelDirCount() { var cc = 0, checkboxes = document.getElementsByName('fd'); for (var i = 0; i < checkboxes.length; i++) { if ((checkboxes[i].checked) && (checkboxes[i].attributes.file.value == '999')) cc++; } return cc; }
11256 function p13getFileCount() { var cc = 0; var checkboxes = document.getElementsByName('fd'); return checkboxes.length; }
11257 + function p13getFileSelAllowedExt(ext) { var checkboxes = document.getElementsByName('fd'); for (var i = 0; i < checkboxes.length; i++) { if ((checkboxes[i].checked) && (!p13filetree.dir[checkboxes[i].value].n.endsWith(ext))) return false; } return true; }
11258 function p13selectallfile() { var nv = (p13getFileSelCount() == 0), checkboxes = document.getElementsByName('fd'); for (var i = 0; i < checkboxes.length; i++) { checkboxes[i].checked = nv; } p13setActions(); }
11259 function p13createfolder() { setDialogMode(2, "New Folder", 3, p13createfolderEx, '<input type=text id=p13renameinput maxlength=64 onkeyup=p13fileNameCheck(event) style=width:100% />'); focusTextBox('p13renameinput'); p13fileNameCheck(); }
11260 function p13createfolderEx() { files.sendText({ action: 'mkdir', reqid: 1, path: p13filetreelocation.join('/') + '/' + Q('p13renameinput').value }); p13folderup(999); }
@@ -11267,6 +11278,24 @@
11278 }
11279 }
11280
11281 + function p13unzipFile() {
11282 + var dest, input, checkboxes = document.getElementsByName('fd');
11283 + for (var i = 0; i < checkboxes.length; i++) {
11284 + if (checkboxes[i].checked) {
11285 + var slash = isWindowsNode(currentNode) ? "\\" : "/";
11286 + dest = (isWindowsNode(currentNode) ? "" : "/") + p13filetreelocation.join(slash) + slash + p13filetree.dir[checkboxes[i].value].n.split(".zip")[0] + slash;
11287 + input = (isWindowsNode(currentNode) ? "" : "/") + p13filetreelocation.join(slash) + slash + p13filetree.dir[checkboxes[i].value].n;
11288 + }
11289 + }
11290 + setDialogMode(2, "UnZip To Folder", 3, p13unzipFileEx, '<input type=text id=p13unzipfolderinput maxlength=64 style=width:100% value="' + dest + '" />', { action: 'unzip', input: input });
11291 + focusTextBox('p13unzipfolderinput');
11292 + }
11293 +
11294 + function p13unzipFileEx(a, tag) {
11295 + tag.dest = Q('p13unzipfolderinput').value;
11296 + files.sendText(tag);
11297 + }
11298 +
11299 function p13zipFiles() {
11300 var inputFiles = [], checkboxes = document.getElementsByName('fd');
11301 for (var i = 0; i < checkboxes.length; i++) { if (checkboxes[i].checked) { inputFiles.push(p13filetree.dir[checkboxes[i].value].n); } }