Intel AMT fixes.
Ylian Saint-Hilaire committed
Feb 17, 2024 at 12:33 UTC
4637e6b3b3217af65780a6401642d18667374fb1
4 files changed
+3276
-3204
amtmanager.js
+33
-9
@@ -707,7 +707,15 @@ module.exports.CreateAmtManager = function (parent) {
707
dev.aquired.controlMode = responses['IPS_HostBasedSetupService'].response.CurrentControlMode; // 1 = CCM, 2 = ACM
708
if (typeof stack.wsman.comm.amtVersion == 'string') { // Set the Intel AMT version using the HTTP header if present
709
var verSplit = stack.wsman.comm.amtVersion.split('.');
710
- if (verSplit.length >= 3) { dev.aquired.version = verSplit[0] + '.' + verSplit[1] + '.' + verSplit[2]; dev.aquired.majorver = parseInt(verSplit[0]); dev.aquired.minorver = parseInt(verSplit[1]); dev.aquired.maintenance=parseInt(verSplit[2]);}
710
+ if (verSplit.length >= 2) {
711
+ dev.aquired.version = verSplit[0] + '.' + verSplit[1];
712
+ dev.aquired.majorver = parseInt(verSplit[0]);
713
+ dev.aquired.minorver = parseInt(verSplit[1]);
714
+ if (verSplit.length >= 3) {
715
+ dev.aquired.version = verSplit[0] + '.' + verSplit[1] + '.' + verSplit[2];
716
+ dev.aquired.maintenancever = parseInt(verSplit[2]);
717
+ }
718
+ }
719
}
720
dev.aquired.realm = stack.wsman.comm.digestRealm;
721
dev.aquired.user = dev.intelamt.user = stack.wsman.comm.user;
@@ -2621,7 +2629,14 @@ module.exports.CreateAmtManager = function (parent) {
2629
if (domain && domain.amtmanager && (domain.amtmanager.tlsacmactivation == true)) { TlsAcmActivation = true; }
2630
2631
// Check Intel AMT version
2624
- if (typeof dev.intelamt.ver == 'string') { var verSplit = dev.intelamt.ver.split('.'); if (verSplit.length >= 3) { dev.aquired.majorver = parseInt(verSplit[0]); dev.aquired.minorver = parseInt(verSplit[1]); dev.aquired.maintenance = parseInt(verSplit[2]);} }
2632
+ if (typeof dev.intelamt.ver == 'string') {
2633
+ var verSplit = dev.intelamt.ver.split('.');
2634
+ if (verSplit.length >= 2) {
2635
+ dev.aquired.majorver = parseInt(verSplit[0]);
2636
+ dev.aquired.minorver = parseInt(verSplit[1]);
2637
+ if (verSplit.length >= 3) { dev.aquired.maintenancever = parseInt(verSplit[2]); }
2638
+ }
2639
+ }
2640
2641
// If this is Intel AMT 14 or better and allowed, we are going to attempt a host-based end-to-end TLS activation.
2642
if (TlsAcmActivation && (dev.aquired.majorver >= 14)) {
@@ -2677,7 +2692,15 @@ module.exports.CreateAmtManager = function (parent) {
2692
dev.aquired.controlMode = 1; // 1 = CCM, 2 = ACM
2693
if (typeof dev.amtstack.wsman.comm.amtVersion == 'string') {
2694
var verSplit = dev.amtstack.wsman.comm.amtVersion.split('.');
2680
- if (verSplit.length >= 3) { dev.aquired.version = verSplit[0] + '.' + verSplit[1] + '.' + verSplit[2]; dev.aquired.majorver = parseInt(verSplit[0]); dev.aquired.minorver = parseInt(verSplit[1]); dev.aquired.maintenance = parseInt(verSplit[2]);}
2695
+ if (verSplit.length >= 2) {
2696
+ dev.aquired.version = verSplit[0] + '.' + verSplit[1];
2697
+ dev.aquired.majorver = parseInt(verSplit[0]);
2698
+ dev.aquired.minorver = parseInt(verSplit[1]);
2699
+ if (verSplit.length >= 3) {
2700
+ dev.aquired.version = verSplit[0] + '.' + verSplit[1] + '.' + verSplit[2];
2701
+ dev.aquired.maintenancever = parseInt(verSplit[2]);
2702
+ }
2703
+ }
2704
}
2705
if ((typeof dev.mpsConnection.tag.meiState.OsHostname == 'string') && (typeof dev.mpsConnection.tag.meiState.OsDnsSuffix == 'string')) {
2706
dev.aquired.host = dev.mpsConnection.tag.meiState.OsHostname + '.' + dev.mpsConnection.tag.meiState.OsDnsSuffix;
@@ -2815,9 +2838,7 @@ module.exports.CreateAmtManager = function (parent) {
2838
version = dev.aquired.version.split('.')
2839
dev.aquired.versionmajor = parseInt(version[0]);
2840
dev.aquired.versionminor = parseInt(version[1]);
2818
- if(version.length > 2){
2819
- dev.aquired.versionmaintenance = version[2];
2820
- }
2841
+ if (version.length > 2) { dev.aquired.versionmaintenance = parseInt(version[2]); }
2842
}
2843
}
2844
}
@@ -2825,11 +2846,14 @@ module.exports.CreateAmtManager = function (parent) {
2846
// Fetch the Intel AMT version from HTTP stack
2847
if ((dev.amtversionstr == null) && (stack.wsman.comm.amtVersion != null)) {
2848
var s = stack.wsman.comm.amtVersion.split('.');
2828
- if (s.length >= 3) {
2829
- dev.aquired.version = s[0] + '.' + s[1] + '.' + s[2];
2849
+ if (s.length >= 2) {
2850
+ dev.aquired.version = s[0] + '.' + s[1] + '.';
2851
dev.aquired.versionmajor = parseInt(s[0]);
2852
dev.aquired.versionminor = parseInt(s[1]);
2832
- dev.aquired.versionmaintenance = parseInt(s[2]);
2853
+ if (s.length >= 3) {
2854
+ dev.aquired.version = s[0] + '.' + s[1] + '.' + s[2];
2855
+ dev.aquired.versionmaintenance = parseInt(s[2]);
2856
+ }
2857
}
2858
}
2859
amtprovisioningserver.js
+10
-7
@@ -201,10 +201,10 @@ module.exports.CreateAmtProvisioningServer = function (parent, config) {
201
var vs = getInstance(amtlogicalelements, 'AMT')['VersionString'];
202
if (vs != null) {
203
dev.aquired.version = vs;
204
- version = parseInt(dev.aquired.version.split('.'));
205
- dev.aquired.versionmajor = parseInt(version[0]);
206
- dev.aquired.versionminor = parseInt(version[1]);
207
- dev.aquired.maintenance = parseInt(version[2]);
204
+ const versionSplit = parseInt(dev.aquired.version.split('.'));
205
+ dev.aquired.versionmajor = parseInt(versionSplit[0]);
206
+ dev.aquired.versionminor = parseInt(versionSplit[1]);
207
+ if (versionSplit.length >= 3) { dev.aquired.versionmaintenance = parseInt(versionSplit[2]); }
208
}
209
}
210
}
@@ -212,11 +212,14 @@ module.exports.CreateAmtProvisioningServer = function (parent, config) {
212
// Fetch the Intel AMT version from HTTP stack
213
if ((dev.amtversionstr == null) && (stack.wsman.comm.amtVersion != null)) {
214
var s = stack.wsman.comm.amtVersion.split('.');
215
- if (s.length >= 3) {
216
- dev.aquired.version = s[0] + '.' + s[1] + '.' + s[2];
215
+ if (s.length >= 2) {
216
+ dev.aquired.version = s[0] + '.' + s[1];
217
dev.aquired.versionmajor = parseInt(s[0]);
218
dev.aquired.versionminor = parseInt(s[1]);
219
- dev.aquired.maintenance = parseInt(s[2]);
219
+ if (s.length >= 3) {
220
+ dev.aquired.version = s[0] + '.' + s[1] + '.' + s[2];
221
+ dev.aquired.versionmaintenance = parseInt(s[2]);
222
+ }
223
}
224
}
225
translate/translate.json
+3215
-3182
@@ -24,6 +24,12 @@
24
"default.handlebars->container->column_l->p31->3->1->0->5->p31limitdropdown"
25
]
26
},
27
+ {
28
+ "en": " (",
29
+ "xloc": [
30
+ "default.handlebars->47->1491"
31
+ ]
32
+ },
33
{
34
"bs": " + CIRA",
35
"cs": " + CIRA",
@@ -48,8 +54,8 @@
54
"zh-cht": " + CIRA",
55
"hu": " + CIRA",
56
"xloc": [
51
- "default.handlebars->47->2093",
52
- "default.handlebars->47->2095"
57
+ "default.handlebars->47->2099",
58
+ "default.handlebars->47->2101"
59
]
60
},
61
{
@@ -77,7 +83,7 @@
83
"hu": " - Reset 1 nap múlva.",
84
"xloc": [
85
"default-mobile.handlebars->11->59",
80
- "default.handlebars->47->78"
86
+ "default.handlebars->47->79"
87
]
88
},
89
{
@@ -105,7 +111,7 @@
111
"hu": " - Reset 1 óra múlva.",
112
"xloc": [
113
"default-mobile.handlebars->11->57",
108
- "default.handlebars->47->76"
114
+ "default.handlebars->47->77"
115
]
116
},
117
{
@@ -133,7 +139,7 @@
139
"hu": " - Reset 1 perc.",
140
"xloc": [
141
"default-mobile.handlebars->11->55",
136
- "default.handlebars->47->74"
142
+ "default.handlebars->47->75"
143
]
144
},
145
{
@@ -161,7 +167,7 @@
167
"hu": " - Reset {0} nap múlva.",
168
"xloc": [
169
"default-mobile.handlebars->11->60",
164
- "default.handlebars->47->79"
170
+ "default.handlebars->47->80"
171
]
172
},
173
{
@@ -189,7 +195,7 @@
195
"hu": " - Reset {0} óra múlva.",
196
"xloc": [
197
"default-mobile.handlebars->11->58",
192
- "default.handlebars->47->77"
198
+ "default.handlebars->47->78"
199
]
200
},
201
{
@@ -217,7 +223,7 @@
223
"hu": " - Reset {0} perc múlva.",
224
"xloc": [
225
"default-mobile.handlebars->11->56",
220
- "default.handlebars->47->75"
226
+ "default.handlebars->47->76"
227
]
228
},
229
{
@@ -246,8 +252,8 @@
252
"xloc": [
253
"default-mobile.handlebars->11->53",
254
"default-mobile.handlebars->11->54",
249
- "default.handlebars->47->72",
250
- "default.handlebars->47->73"
255
+ "default.handlebars->47->73",
256
+ "default.handlebars->47->74"
257
]
258
},
259
{
@@ -322,7 +328,7 @@
328
"zh-cht": " 可以使用密碼提示,但不建議使用。",
329
"hu": "Jelszó tipp használható, de nem ajánlott.",
330
"xloc": [
325
- "default.handlebars->47->1969"
331
+ "default.handlebars->47->1975"
332
]
333
},
334
{
@@ -349,8 +355,8 @@
355
"zh-cht": " 用戶需要先登入到該伺服器一次,然後才能將其新增到裝置群。",
356
"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.",
357
"xloc": [
352
- "default.handlebars->47->2217",
353
- "default.handlebars->47->2789"
358
+ "default.handlebars->47->2223",
359
+ "default.handlebars->47->2795"
360
]
361
},
362
{
@@ -479,7 +485,7 @@
485
"zh-cht": " TLS。",
486
"hu": "TLS-sel.",
487
"xloc": [
482
- "default.handlebars->47->267"
488
+ "default.handlebars->47->268"
489
]
490
},
491
{
@@ -506,7 +512,7 @@
512
"zh-cht": " 沒有TLS。",
513
"hu": " TLS nélkül.",
514
"xloc": [
509
- "default.handlebars->47->268"
515
+ "default.handlebars->47->269"
516
]
517
},
518
{
@@ -785,6 +791,12 @@
791
"agentinvite.handlebars->3->17"
792
]
793
},
794
+ {
795
+ "en": "')",
796
+ "xloc": [
797
+ "default.handlebars->47->924"
798
+ ]
799
+ },
800
{
801
"cs": "(",
802
"da": "(",
@@ -878,7 +890,7 @@
890
"zh-cht": "(可選的)",
891
"hu": "(opcionális)",
892
"xloc": [
881
- "default.handlebars->47->551"
893
+ "default.handlebars->47->552"
894
]
895
},
896
{
@@ -899,7 +911,8 @@
911
"ru": ")",
912
"hu": ")",
913
"xloc": [
902
- "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3createMeshLink1"
914
+ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3createMeshLink1",
915
+ "default.handlebars->47->1492"
916
]
917
},
918
{
@@ -926,8 +939,8 @@
939
"zh-cht": "* 8個字符,1個大寫,1個小寫,1個數字,1個非字母數字。",
940
"hu": "* 8 karakter, 1 nagybetű, 1 kisbetű , 1 szám, 1 speciális karakter.",
941
"xloc": [
929
- "default.handlebars->47->2177",
930
- "default.handlebars->47->513"
942
+ "default.handlebars->47->2183",
943
+ "default.handlebars->47->514"
944
]
945
},
946
{
@@ -954,7 +967,7 @@
967
"zh-cht": "*對於BSD,首先運行“ pkg install wget sudo bash ”。",
968
"hu": "* BSD esetén először futtassa a \\\"pkg install wget sudo bash\\\" parancsot.",
969
"xloc": [
957
- "default.handlebars->47->609"
970
+ "default.handlebars->47->610"
971
]
972
},
973
{
@@ -1031,12 +1044,12 @@
1044
"default-mobile.handlebars->11->784",
1045
"default-mobile.handlebars->11->786",
1046
"default-mobile.handlebars->11->943",
1034
- "default.handlebars->47->1582",
1035
- "default.handlebars->47->1584",
1036
- "default.handlebars->47->1586",
1037
- "default.handlebars->47->2293",
1038
- "default.handlebars->47->2569",
1039
- "default.handlebars->47->969"
1047
+ "default.handlebars->47->1588",
1048
+ "default.handlebars->47->1590",
1049
+ "default.handlebars->47->1592",
1050
+ "default.handlebars->47->2299",
1051
+ "default.handlebars->47->2575",
1052
+ "default.handlebars->47->972"
1053
]
1054
},
1055
{
@@ -1142,7 +1155,7 @@
1155
"hu": ", csak Intel® AMT",
1156
"xloc": [
1157
"default-mobile.handlebars->11->393",
1145
- "default.handlebars->47->350"
1158
+ "default.handlebars->47->351"
1159
]
1160
},
1161
{
@@ -1169,7 +1182,7 @@
1182
"zh-cht": ", 本地設備",
1183
"hu": ", Helyi eszközök",
1184
"xloc": [
1172
- "default.handlebars->47->352"
1185
+ "default.handlebars->47->353"
1186
]
1187
},
1188
{
@@ -1197,7 +1210,7 @@
1210
"hu": ", MQTT online",
1211
"xloc": [
1212
"default-mobile.handlebars->11->846",
1200
- "default.handlebars->47->1647"
1213
+ "default.handlebars->47->1653"
1214
]
1215
},
1216
{
@@ -1224,8 +1237,8 @@
1237
"zh-cht": ", 不同意",
1238
"hu": ", Nincs hozzájárulás",
1239
"xloc": [
1227
- "default.handlebars->47->1064",
1228
- "default.handlebars->47->2135"
1240
+ "default.handlebars->47->1067",
1241
+ "default.handlebars->47->2141"
1242
]
1243
},
1244
{
@@ -1252,8 +1265,8 @@
1265
"zh-cht": ",提示同意",
1266
"hu": ", Hozzájárulás kérése a kapcsolódáshoz",
1267
"xloc": [
1255
- "default.handlebars->47->1065",
1256
- "default.handlebars->47->2136"
1268
+ "default.handlebars->47->1068",
1269
+ "default.handlebars->47->2142"
1270
]
1271
},
1272
{
@@ -1280,7 +1293,7 @@
1293
"zh-cht": ", RDP",
1294
"hu": ", RDP",
1295
"xloc": [
1283
- "default.handlebars->47->1354"
1296
+ "default.handlebars->47->1358"
1297
]
1298
},
1299
{
@@ -1307,8 +1320,8 @@
1320
"zh-cht": ", 每天重複",
1321
"hu": ", naponta ismétlődően",
1322
"xloc": [
1310
- "default.handlebars->47->1061",
1311
- "default.handlebars->47->2132"
1323
+ "default.handlebars->47->1064",
1324
+ "default.handlebars->47->2138"
1325
]
1326
},
1327
{
@@ -1335,8 +1348,8 @@
1348
"zh-cht": ", 每週重複一次",
1349
"hu": ", hetente ismétlődően",
1350
"xloc": [
1338
- "default.handlebars->47->1062",
1339
- "default.handlebars->47->2133"
1351
+ "default.handlebars->47->1065",
1352
+ "default.handlebars->47->2139"
1353
]
1354
},
1355
{
@@ -1387,7 +1400,7 @@
1400
"zh-cht": ", 中繼設備",
1401
"hu": ", Relayed Devices",
1402
"xloc": [
1390
- "default.handlebars->47->351"
1403
+ "default.handlebars->47->352"
1404
]
1405
},
1406
{
@@ -1415,7 +1428,7 @@
1428
"hu": ", SFTP",
1429
"xloc": [
1430
"default-mobile.handlebars->11->679",
1418
- "default.handlebars->47->1475"
1431
+ "default.handlebars->47->1479"
1432
]
1433
},
1434
{
@@ -1442,7 +1455,7 @@
1455
"zh-cht": ", SSH",
1456
"hu": ", SSH",
1457
"xloc": [
1445
- "default.handlebars->47->1443"
1458
+ "default.handlebars->47->1447"
1459
]
1460
},
1461
{
@@ -1469,7 +1482,7 @@
1482
"zh-cht": ",軟體KVM",
1483
"hu": ", Soft-KVM",
1484
"xloc": [
1472
- "default.handlebars->47->1337",
1485
+ "default.handlebars->47->1341",
1486
"sharing.handlebars->11->12"
1487
]
1488
},
@@ -1497,8 +1510,8 @@
1510
"zh-cht": ", 工具欄",
1511
"hu": ", Tálca értesítés",
1512
"xloc": [
1500
- "default.handlebars->47->1066",
1501
- "default.handlebars->47->2137"
1513
+ "default.handlebars->47->1069",
1514
+ "default.handlebars->47->2143"
1515
]
1516
},
1517
{
@@ -1549,8 +1562,8 @@
1562
"zh-cht": ", 僅查看桌面",
1563
"hu": ", csak megtekintés",
1564
"xloc": [
1552
- "default.handlebars->47->1063",
1553
- "default.handlebars->47->2134"
1565
+ "default.handlebars->47->1066",
1566
+ "default.handlebars->47->2140"
1567
]
1568
},
1569
{
@@ -1580,9 +1593,9 @@
1593
"default-mobile.handlebars->11->620",
1594
"default-mobile.handlebars->11->657",
1595
"default-mobile.handlebars->11->680",
1583
- "default.handlebars->47->1353",
1584
- "default.handlebars->47->1444",
1585
- "default.handlebars->47->1476",
1596
+ "default.handlebars->47->1357",
1597
+ "default.handlebars->47->1448",
1598
+ "default.handlebars->47->1480",
1599
"sharing.handlebars->11->19",
1600
"sharing.handlebars->11->27",
1601
"sharing.handlebars->11->44",
@@ -1796,7 +1809,7 @@
1809
"zh-cht": ",{0}觀看",
1810
"hu": ", {0} nézi",
1811
"xloc": [
1799
- "default.handlebars->47->1348",
1812
+ "default.handlebars->47->1352",
1813
"sharing.handlebars->11->13"
1814
]
1815
},
@@ -1909,9 +1922,9 @@
1922
"xloc": [
1923
"default-mobile.handlebars->11->346",
1924
"default-mobile.handlebars->11->686",
1912
- "default.handlebars->47->1486",
1913
- "default.handlebars->47->2359",
1914
- "default.handlebars->47->3025",
1925
+ "default.handlebars->47->1490",
1926
+ "default.handlebars->47->2365",
1927
+ "default.handlebars->47->3031",
1928
"sharing.handlebars->11->50"
1929
]
1930
},
@@ -2089,7 +2102,7 @@
2102
"zh-cht": "1個活躍時段",
2103
"hu": "1 aktív munkamenet",
2104
"xloc": [
2092
- "default.handlebars->47->2883"
2105
+ "default.handlebars->47->2889"
2106
]
2107
},
2108
{
@@ -2118,7 +2131,7 @@
2131
"xloc": [
2132
"default-mobile.handlebars->11->356",
2133
"default-mobile.handlebars->11->987",
2121
- "default.handlebars->47->2383",
2134
+ "default.handlebars->47->2389",
2135
"download.handlebars->3->1",
2136
"download2.handlebars->5->1",
2137
"sharing.handlebars->11->96"
@@ -2175,7 +2188,7 @@
2188
"zh-cht": "1位聯絡文",
2189
"hu": "1 csatlakozás",
2190
"xloc": [
2178
- "default.handlebars->47->1350",
2191
+ "default.handlebars->47->1354",
2192
"sharing.handlebars->11->15"
2193
]
2194
},
@@ -2203,9 +2216,9 @@
2216
"zh-cht": "1天",
2217
"hu": "1 nap",
2218
"xloc": [
2206
- "default.handlebars->47->275",
2207
- "default.handlebars->47->542",
2208
- "default.handlebars->47->556"
2219
+ "default.handlebars->47->276",
2220
+ "default.handlebars->47->543",
2221
+ "default.handlebars->47->557"
2222
]
2223
},
2224
{
@@ -2232,7 +2245,7 @@
2245
"zh-cht": "1群",
2246
"hu": "1 csoport",
2247
"xloc": [
2235
- "default.handlebars->47->2839"
2248
+ "default.handlebars->47->2845"
2249
]
2250
},
2251
{
@@ -2259,9 +2272,9 @@
2272
"zh-cht": "1小時",
2273
"hu": "1 óra",
2274
"xloc": [
2262
- "default.handlebars->47->273",
2263
- "default.handlebars->47->540",
2264
- "default.handlebars->47->554"
2275
+ "default.handlebars->47->274",
2276
+ "default.handlebars->47->541",
2277
+ "default.handlebars->47->555"
2278
]
2279
},
2280
{
@@ -2288,8 +2301,8 @@
2301
"zh-cht": "1分鐘",
2302
"hu": "1 perc",
2303
"xloc": [
2291
- "default.handlebars->47->1172",
2292
- "default.handlebars->47->1934"
2304
+ "default.handlebars->47->1176",
2305
+ "default.handlebars->47->1940"
2306
]
2307
},
2308
{
@@ -2316,7 +2329,7 @@
2329
"zh-cht": "1分鐘之後離線",
2330
"hu": "1 perc a kapcsolat megszakításáig",
2331
"xloc": [
2319
- "default.handlebars->47->82"
2332
+ "default.handlebars->47->83"
2333
]
2334
},
2335
{
@@ -2343,9 +2356,9 @@
2356
"zh-cht": "1個月",
2357
"hu": "1 hónap",
2358
"xloc": [
2346
- "default.handlebars->47->277",
2347
- "default.handlebars->47->544",
2348
- "default.handlebars->47->558"
2359
+ "default.handlebars->47->278",
2360
+ "default.handlebars->47->545",
2361
+ "default.handlebars->47->559"
2362
]
2363
},
2364
{
@@ -2372,7 +2385,7 @@
2385
"zh-cht": "有1個用戶沒有顯示,請使用搜尋框搜尋用戶...",
2386
"hu": "1 további felhasználó nem jelenik meg, használja a keresőmezőt a felhasználók kereséséhez...",
2387
"xloc": [
2375
- "default.handlebars->47->2601"
2388
+ "default.handlebars->47->2607"
2389
]
2390
},
2391
{
@@ -2399,7 +2412,7 @@
2412
"zh-cht": "1個節點",
2413
"hu": "1 node",
2414
"xloc": [
2402
- "default.handlebars->47->649"
2415
+ "default.handlebars->47->650"
2416
]
2417
},
2418
{
@@ -2475,7 +2488,7 @@
2488
"hu": "1 másodperc",
2489
"xloc": [
2490
"default-mobile.handlebars->11->570",
2478
- "default.handlebars->47->1209"
2491
+ "default.handlebars->47->1213"
2492
]
2493
},
2494
{
@@ -2502,7 +2515,7 @@
2515
"zh-cht": "1秒之後離線",
2516
"hu": "1 másodperc a kapcsolat megszakításáig",
2517
"xloc": [
2505
- "default.handlebars->47->80"
2518
+ "default.handlebars->47->81"
2519
]
2520
},
2521
{
@@ -2529,7 +2542,7 @@
2542
"zh-cht": "1 個選定的設備處於離線狀態。",
2543
"hu": "1 kiválasztott eszköz offline.",
2544
"xloc": [
2532
- "default.handlebars->47->715"
2545
+ "default.handlebars->47->716"
2546
]
2547
},
2548
{
@@ -2556,7 +2569,7 @@
2569
"zh-cht": "1 個選定的設備在線。",
2570
"hu": "1 kiválasztott eszköz online.",
2571
"xloc": [
2559
- "default.handlebars->47->713"
2572
+ "default.handlebars->47->714"
2573
]
2574
},
2575
{
@@ -2590,14 +2603,14 @@
2603
"default-mobile.handlebars->11->425",
2604
"default-mobile.handlebars->11->429",
2605
"default-mobile.handlebars->11->433",
2593
- "default.handlebars->47->2605",
2594
- "default.handlebars->47->431",
2595
- "default.handlebars->47->434",
2596
- "default.handlebars->47->438",
2597
- "default.handlebars->47->442",
2598
- "default.handlebars->47->446",
2599
- "default.handlebars->47->450",
2600
- "default.handlebars->47->454"
2606
+ "default.handlebars->47->2611",
2607
+ "default.handlebars->47->432",
2608
+ "default.handlebars->47->435",
2609
+ "default.handlebars->47->439",
2610
+ "default.handlebars->47->443",
2611
+ "default.handlebars->47->447",
2612
+ "default.handlebars->47->451",
2613
+ "default.handlebars->47->455"
2614
]
2615
},
2616
{
@@ -2624,9 +2637,9 @@
2637
"zh-cht": "1週",
2638
"hu": "1 hét",
2639
"xloc": [
2627
- "default.handlebars->47->276",
2628
- "default.handlebars->47->543",
2629
- "default.handlebars->47->557"
2640
+ "default.handlebars->47->277",
2641
+ "default.handlebars->47->544",
2642
+ "default.handlebars->47->558"
2643
]
2644
},
2645
{
@@ -2792,8 +2805,8 @@
2805
"zh-cht": "10分鐘",
2806
"hu": "10 perc",
2807
"xloc": [
2795
- "default.handlebars->47->1174",
2796
- "default.handlebars->47->1936"
2808
+ "default.handlebars->47->1178",
2809
+ "default.handlebars->47->1942"
2810
]
2811
},
2812
{
@@ -2821,7 +2834,7 @@
2834
"hu": "10 másodperc",
2835
"xloc": [
2836
"default-mobile.handlebars->11->572",
2824
- "default.handlebars->47->1211"
2837
+ "default.handlebars->47->1215"
2838
]
2839
},
2840
{
@@ -3013,8 +3026,8 @@
3026
"zh-cht": "12小時",
3027
"hu": "12 óra",
3028
"xloc": [
3016
- "default.handlebars->47->1182",
3017
- "default.handlebars->47->1944"
3029
+ "default.handlebars->47->1186",
3030
+ "default.handlebars->47->1950"
3031
]
3032
},
3033
{
@@ -3202,8 +3215,8 @@
3215
"zh-cht": "15分鐘",
3216
"hu": "15 perc",
3217
"xloc": [
3205
- "default.handlebars->47->1175",
3206
- "default.handlebars->47->1937"
3218
+ "default.handlebars->47->1179",
3219
+ "default.handlebars->47->1943"
3220
]
3221
},
3222
{
@@ -3230,8 +3243,8 @@
3243
"zh-cht": "16小時",
3244
"hu": "12 óra",
3245
"xloc": [
3233
- "default.handlebars->47->1183",
3234
- "default.handlebars->47->1945"
3246
+ "default.handlebars->47->1187",
3247
+ "default.handlebars->47->1951"
3248
]
3249
},
3250
{
@@ -3447,8 +3460,8 @@
3460
"zh-cht": "2天",
3461
"hu": "2 nap",
3462
"xloc": [
3450
- "default.handlebars->47->1185",
3451
- "default.handlebars->47->1947"
3463
+ "default.handlebars->47->1189",
3464
+ "default.handlebars->47->1953"
3465
]
3466
},
3467
{
@@ -3475,8 +3488,8 @@
3488
"zh-cht": "2小時",
3489
"hu": "2 óra",
3490
"xloc": [
3478
- "default.handlebars->47->1179",
3479
- "default.handlebars->47->1941"
3491
+ "default.handlebars->47->1183",
3492
+ "default.handlebars->47->1947"
3493
]
3494
},
3495
{
@@ -3503,7 +3516,7 @@
3516
"zh-cht": "兩步登入啟用失敗。",
3517
"hu": "A kétlépcsős bejelentkezés aktiválása nem sikerült.",
3518
"xloc": [
3506
- "default.handlebars->47->218"
3519
+ "default.handlebars->47->219"
3520
]
3521
},
3522
{
@@ -3530,7 +3543,7 @@
3543
"zh-cht": "兩步登入啟用刪除失敗。",
3544
"hu": "Nem sikerült eltávolítani a 2 faktoros hitelesítést.",
3545
"xloc": [
3533
- "default.handlebars->47->223"
3546
+ "default.handlebars->47->224"
3547
]
3548
},
3549
{
@@ -3669,8 +3682,8 @@
3682
"zh-cht": "24小時",
3683
"hu": "24 óra",
3684
"xloc": [
3672
- "default.handlebars->47->1184",
3673
- "default.handlebars->47->1946"
3685
+ "default.handlebars->47->1188",
3686
+ "default.handlebars->47->1952"
3687
]
3688
},
3689
{
@@ -3750,7 +3763,7 @@
3763
"zh-cht": "2FA備份代碼已清除",
3764
"hu": "2FA biztonsági kódok törölve",
3765
"xloc": [
3753
- "default.handlebars->47->2496"
3766
+ "default.handlebars->47->2502"
3767
]
3768
},
3769
{
@@ -3778,7 +3791,7 @@
3791
"hu": "2FA zárolva van",
3792
"xloc": [
3793
"default-mobile.handlebars->11->62",
3781
- "default.handlebars->47->205"
3794
+ "default.handlebars->47->206"
3795
]
3796
},
3797
{
@@ -3805,7 +3818,7 @@
3818
"zh-cht": "第二個因素",
3819
"hu": "2. faktor",
3820
"xloc": [
3808
- "default.handlebars->47->3062"
3821
+ "default.handlebars->47->3068"
3822
]
3823
},
3824
{
@@ -3832,8 +3845,8 @@
3845
"zh-cht": "啟用第二因素身份驗證",
3846
"hu": "2. faktoros hitelesítés engedélyezve",
3847
"xloc": [
3835
- "default.handlebars->47->2619",
3836
- "default.handlebars->47->2864"
3848
+ "default.handlebars->47->2625",
3849
+ "default.handlebars->47->2870"
3850
]
3851
},
3852
{
@@ -3993,8 +4006,8 @@
4006
"zh-cht": "30分鐘",
4007
"hu": "30 perc",
4008
"xloc": [
3996
- "default.handlebars->47->1176",
3997
- "default.handlebars->47->1938"
4009
+ "default.handlebars->47->1180",
4010
+ "default.handlebars->47->1944"
4011
]
4012
},
4013
{
@@ -4022,7 +4035,7 @@
4035
"hu": "32-bit",
4036
"xloc": [
4037
"default-mobile.handlebars->11->723",
4025
- "default.handlebars->47->1540"
4038
+ "default.handlebars->47->1546"
4039
]
4040
},
4041
{
@@ -4049,7 +4062,7 @@
4062
"zh-cht": "MeshAgent的32位版本",
4063
"hu": "MeshAgent 32 bites verziója",
4064
"xloc": [
4052
- "default.handlebars->47->635"
4065
+ "default.handlebars->47->636"
4066
]
4067
},
4068
{
@@ -4105,8 +4118,8 @@
4118
"zh-cht": "4天",
4119
"hu": "4 nap",
4120
"xloc": [
4108
- "default.handlebars->47->1186",
4109
- "default.handlebars->47->1948"
4121
+ "default.handlebars->47->1190",
4122
+ "default.handlebars->47->1954"
4123
]
4124
},
4125
{
@@ -4133,8 +4146,8 @@
4146
"zh-cht": "4個小時",
4147
"hu": "4 óra",
4148
"xloc": [
4136
- "default.handlebars->47->1180",
4137
- "default.handlebars->47->1942"
4149
+ "default.handlebars->47->1184",
4150
+ "default.handlebars->47->1948"
4151
]
4152
},
4153
{
@@ -4272,8 +4285,8 @@
4285
"zh-cht": "45分鐘",
4286
"hu": "45 perc",
4287
"xloc": [
4275
- "default.handlebars->47->1177",
4276
- "default.handlebars->47->1939"
4288
+ "default.handlebars->47->1181",
4289
+ "default.handlebars->47->1945"
4290
]
4291
},
4292
{
@@ -4327,8 +4340,8 @@
4340
"zh-cht": "5分鐘",
4341
"hu": "5 perc",
4342
"xloc": [
4330
- "default.handlebars->47->1173",
4331
- "default.handlebars->47->1935"
4343
+ "default.handlebars->47->1177",
4344
+ "default.handlebars->47->1941"
4345
]
4346
},
4347
{
@@ -4356,7 +4369,7 @@
4369
"hu": "5 másodperc",
4370
"xloc": [
4371
"default-mobile.handlebars->11->571",
4359
- "default.handlebars->47->1210"
4372
+ "default.handlebars->47->1214"
4373
]
4374
},
4375
{
@@ -4524,8 +4537,8 @@
4537
"zh-cht": "60分鐘",
4538
"hu": "60 perc",
4539
"xloc": [
4527
- "default.handlebars->47->1178",
4528
- "default.handlebars->47->1940"
4540
+ "default.handlebars->47->1182",
4541
+ "default.handlebars->47->1946"
4542
]
4543
},
4544
{
@@ -4609,7 +4622,7 @@
4622
"hu": "64-bit",
4623
"xloc": [
4624
"default-mobile.handlebars->11->725",
4612
- "default.handlebars->47->1542"
4625
+ "default.handlebars->47->1548"
4626
]
4627
},
4628
{
@@ -4690,7 +4703,7 @@
4703
"zh-cht": "64位版本的macOS Mesh Agent",
4704
"hu": "Mesh Agent macOS 64 bites verziója",
4705
"xloc": [
4693
- "default.handlebars->47->614"
4706
+ "default.handlebars->47->615"
4707
]
4708
},
4709
{
@@ -4717,7 +4730,7 @@
4730
"zh-cht": "MeshAgent的64位版本",
4731
"hu": "MeshAgent 64 bites verziója",
4732
"xloc": [
4720
- "default.handlebars->47->638"
4733
+ "default.handlebars->47->639"
4734
]
4735
},
4736
{
@@ -4792,7 +4805,7 @@
4805
"zh-cht": "7天電源狀態",
4806
"hu": "7 napos energiaellátás állapota",
4807
"xloc": [
4795
- "default.handlebars->47->1250"
4808
+ "default.handlebars->47->1254"
4809
]
4810
},
4811
{
@@ -4819,7 +4832,7 @@
4832
"zh-cht": "7天",
4833
"hu": "7 nap",
4834
"xloc": [
4822
- "default.handlebars->47->1949"
4835
+ "default.handlebars->47->1955"
4836
]
4837
},
4838
{
@@ -4903,10 +4916,10 @@
4916
"zh-cht": "8小時",
4917
"hu": "8 óra",
4918
"xloc": [
4906
- "default.handlebars->47->1181",
4907
- "default.handlebars->47->1943",
4908
- "default.handlebars->47->541",
4909
- "default.handlebars->47->555"
4919
+ "default.handlebars->47->1185",
4920
+ "default.handlebars->47->1949",
4921
+ "default.handlebars->47->542",
4922
+ "default.handlebars->47->556"
4923
]
4924
},
4925
{
@@ -5044,7 +5057,7 @@
5057
"zh-cht": "</table>",
5058
"hu": "<<",
5059
"xloc": [
5047
- "default.handlebars->47->620"
5060
+ "default.handlebars->47->621"
5061
]
5062
},
5063
{
@@ -5098,7 +5111,7 @@
5111
"zh-cht": "<a href=\\\"https://www.yubico.com/\\\" rel=\\\"noreferrer noopener\\\" target=\\\"_blank\\\">硬件密鑰</a>用作輔助登入身份驗證。",
5112
"hu": "A <a href=\\\"https://www.yubico.com/\\\" rel=\\\"noreferrer noopener\\\" target=\\\"_blank\\\">hardware kulcsok</a> másodlagos bejelentkezési hitelesítésre szolgálnak.",
5113
"xloc": [
5101
- "default.handlebars->47->232"
5114
+ "default.handlebars->47->233"
5115
]
5116
},
5117
{
@@ -5214,32 +5227,32 @@
5227
"nl": "<b>DNS Servers</b>",
5228
"xloc": [
5229
"default-mobile.handlebars->11->785",
5217
- "default.handlebars->47->1585"
5230
+ "default.handlebars->47->1591"
5231
]
5232
},
5233
{
5234
"en": "<div style=margin-bottom:4px>Perform batch device notification</div>",
5235
"nl": "<div style=margin-bottom:4px>Perform batch device notification</div>",
5236
"xloc": [
5224
- "default.handlebars->47->728"
5237
+ "default.handlebars->47->729"
5238
]
5239
},
5240
{
5241
"en": "<span style=color:green>OK</span>",
5242
"nl": "<span style=color:green>OK</span>",
5243
"xloc": [
5231
- "default.handlebars->47->413",
5232
- "default.handlebars->47->415",
5233
- "default.handlebars->47->417"
5244
+ "default.handlebars->47->414",
5245
+ "default.handlebars->47->416",
5246
+ "default.handlebars->47->418"
5247
]
5248
},
5249
{
5250
"en": "<span style=color:red>BAD</span>",
5251
"nl": "<span style=color:red>FOUT</span>",
5252
"xloc": [
5240
- "default.handlebars->47->414",
5241
- "default.handlebars->47->416",
5242
- "default.handlebars->47->418"
5253
+ "default.handlebars->47->415",
5254
+ "default.handlebars->47->417",
5255
+ "default.handlebars->47->419"
5256
]
5257
},
5258
{
@@ -5266,21 +5279,21 @@
5279
"zh-cht": "<table style=width:180px>",
5280
"hu": "<table style=width:180px>",
5281
"xloc": [
5269
- "default.handlebars->47->617"
5282
+ "default.handlebars->47->618"
5283
]
5284
},
5285
{
5286
"en": "<tr><td style=text-align:center><a rel=\\\"noreferrer noopener\\\" target=_blank href=\\\"https://play.google.com/store/apps/details?id=com.meshcentral.agent2\\\"><img style=cursor:pointer src=\\\"images/google-play-140.png\\\" width=140 srcset=\\\"images/google-play-280.png 2x\\\" /></a></td></tr>",
5287
"nl": "<tr><td style=text-align:center><a rel=\\\"noreferrer noopener\\\" target=_blank href=\\\"https://play.google.com/store/apps/details?id=com.meshcentral.agent2\\\"><img style=cursor:pointer src=\\\"images/google-play-140.png\\\" width=140 srcset=\\\"images/google-play-280.png 2x\\\" /></a></td></tr>",
5288
"xloc": [
5276
- "default.handlebars->47->618"
5289
+ "default.handlebars->47->619"
5290
]
5291
},
5292
{
5293
"en": "<tr><td style=text-align:center><a rel=\\\"noreferrer noopener\\\" target=_blank href=\\\"https://www.amazon.co.uk/gp/product/B097Z4Q7SK/\\\"><img style=cursor:pointer src=\\\"images/amazon-appstore-140.png\\\" width=140 srcset=\\\"images/amazon-appstore-280.png 2x\\\" /></a></td></tr>",
5294
"nl": "<tr><td style=text-align:center><a rel=\\\"noreferrer noopener\\\" target=_blank href=\\\"https://www.amazon.co.uk/gp/product/B097Z4Q7SK/\\\"><img style=cursor:pointer src=\\\"images/amazon-appstore-140.png\\\" width=140 srcset=\\\"images/amazon-appstore-280.png 2x\\\" /></a></td></tr>",
5295
"xloc": [
5283
- "default.handlebars->47->619"
5296
+ "default.handlebars->47->620"
5297
]
5298
},
5299
{
@@ -5359,8 +5372,8 @@
5372
"hu": "ACM",
5373
"xloc": [
5374
"default-mobile.handlebars->11->504",
5362
- "default.handlebars->47->2113",
5363
- "default.handlebars->47->877"
5375
+ "default.handlebars->47->2119",
5376
+ "default.handlebars->47->878"
5377
]
5378
},
5379
{
@@ -5435,8 +5448,8 @@
5448
"zh-cht": "AMT",
5449
"hu": "AMT",
5450
"xloc": [
5438
- "default.handlebars->47->404",
5439
- "default.handlebars->47->684"
5451
+ "default.handlebars->47->405",
5452
+ "default.handlebars->47->685"
5453
]
5454
},
5455
{
@@ -5463,7 +5476,7 @@
5476
"zh-cht": "AMT操作系統",
5477
"hu": "AMT-OS",
5478
"xloc": [
5466
- "default.handlebars->47->3207"
5479
+ "default.handlebars->47->3213"
5480
]
5481
},
5482
{
@@ -5490,7 +5503,7 @@
5503
"zh-cht": "AMT-Redir",
5504
"hu": "AMT-Redir",
5505
"xloc": [
5493
- "default.handlebars->47->3069"
5506
+ "default.handlebars->47->3075"
5507
]
5508
},
5509
{
@@ -5517,14 +5530,14 @@
5530
"zh-cht": "AMT-WSMAN",
5531
"hu": "AMT-WSMAN",
5532
"xloc": [
5520
- "default.handlebars->47->3068"
5533
+ "default.handlebars->47->3074"
5534
]
5535
},
5536
{
5537
"en": "APK",
5538
"nl": "APK",
5539
"xloc": [
5527
- "default.handlebars->47->623"
5540
+ "default.handlebars->47->624"
5541
]
5542
},
5543
{
@@ -5532,7 +5545,7 @@
5545
"nl": "APK versie van de MeshAgent",
5546
"xloc": [
5547
"default-mobile.handlebars->11->896",
5535
- "default.handlebars->47->622"
5548
+ "default.handlebars->47->623"
5549
]
5550
},
5551
{
@@ -5540,7 +5553,7 @@
5553
"nl": "ARM 64bit versie van de MeshAgent",
5554
"de": "ARM 64bit Version des MeshAgents",
5555
"xloc": [
5543
- "default.handlebars->47->603"
5556
+ "default.handlebars->47->604"
5557
]
5558
},
5559
{
@@ -5709,8 +5722,8 @@
5722
"xloc": [
5723
"default-mobile.handlebars->11->730",
5724
"default-mobile.handlebars->11->732",
5712
- "default.handlebars->47->896",
5713
- "default.handlebars->47->898"
5725
+ "default.handlebars->47->897",
5726
+ "default.handlebars->47->899"
5727
]
5728
},
5729
{
@@ -5738,7 +5751,7 @@
5751
"hu": "Hozzáférés megtagadva",
5752
"xloc": [
5753
"default-mobile.handlebars->11->847",
5741
- "default.handlebars->47->1648"
5754
+ "default.handlebars->47->1654"
5755
]
5756
},
5757
{
@@ -5821,7 +5834,7 @@
5834
"zh-cht": "存取伺服器檔案",
5835
"hu": "Hozzáférés a kiszolgálófájlokhoz",
5836
"xloc": [
5824
- "default.handlebars->47->2795"
5837
+ "default.handlebars->47->2801"
5838
]
5839
},
5840
{
@@ -5938,11 +5951,11 @@
5951
"default-mobile.handlebars->11->471",
5952
"default-mobile.handlebars->11->473",
5953
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountSecurity->1->0",
5941
- "default.handlebars->47->1978",
5942
- "default.handlebars->47->1980",
5943
- "default.handlebars->47->3261",
5944
- "default.handlebars->47->837",
5945
- "default.handlebars->47->839"
5954
+ "default.handlebars->47->1984",
5955
+ "default.handlebars->47->1986",
5956
+ "default.handlebars->47->3267",
5957
+ "default.handlebars->47->838",
5958
+ "default.handlebars->47->840"
5959
]
5960
},
5961
{
@@ -5970,7 +5983,7 @@
5983
"hu": "Fiókbeállítások",
5984
"xloc": [
5985
"default-mobile.handlebars->11->954",
5973
- "default.handlebars->47->3132"
5986
+ "default.handlebars->47->3138"
5987
]
5988
},
5989
{
@@ -6036,7 +6049,7 @@
6049
"fr": "Compte modifié pour se synchroniser avec les données LDAP.",
6050
"hu": "Fiók megváltozott: LDAP-adatokkal való szinkronizálás.",
6051
"xloc": [
6039
- "default.handlebars->47->2557"
6052
+ "default.handlebars->47->2563"
6053
]
6054
},
6055
{
@@ -6063,7 +6076,7 @@
6076
"zh-cht": "帳戶已更改:{0}",
6077
"hu": "Fiók megváltozott: {0}",
6078
"xloc": [
6066
- "default.handlebars->47->2469"
6079
+ "default.handlebars->47->2475"
6080
]
6081
},
6082
{
@@ -6090,7 +6103,7 @@
6103
"zh-cht": "創建帳戶,電子郵件為{0}",
6104
"hu": "Fiók létrehozva, az e-mail címe {0} ",
6105
"xloc": [
6093
- "default.handlebars->47->2468"
6106
+ "default.handlebars->47->2474"
6107
]
6108
},
6109
{
@@ -6117,7 +6130,7 @@
6130
"zh-cht": "已創建帳戶,名稱為 {0}。",
6131
"hu": "Fiók létrehozva, név: {0}. ",
6132
"xloc": [
6120
- "default.handlebars->47->2531"
6133
+ "default.handlebars->47->2537"
6134
]
6135
},
6136
{
@@ -6144,7 +6157,7 @@
6157
"zh-cht": "帳戶已創建,用戶名是{0}",
6158
"hu": "Fiók létrehozva, felhasználónév {0} ",
6159
"xloc": [
6147
- "default.handlebars->47->2467"
6160
+ "default.handlebars->47->2473"
6161
]
6162
},
6163
{
@@ -6172,9 +6185,9 @@
6185
"hu": "Fiók zárolva",
6186
"xloc": [
6187
"default-mobile.handlebars->11->66",
6175
- "default.handlebars->47->209",
6176
- "default.handlebars->47->2621",
6177
- "default.handlebars->47->2792"
6188
+ "default.handlebars->47->210",
6189
+ "default.handlebars->47->2627",
6190
+ "default.handlebars->47->2798"
6191
]
6192
},
6193
{
@@ -6202,7 +6215,7 @@
6215
"hu": "Elérte a fiókkorlátot.",
6216
"xloc": [
6217
"default-mobile.handlebars->11->966",
6205
- "default.handlebars->47->3144",
6218
+ "default.handlebars->47->3150",
6219
"login-mobile.handlebars->5->6",
6220
"login.handlebars->5->8",
6221
"login2.handlebars->7->207"
@@ -6261,7 +6274,7 @@
6274
"zh-cht": "帳號登錄",
6275
"hu": "Bejelentkezés a fiókba",
6276
"xloc": [
6264
- "default.handlebars->47->2404"
6277
+ "default.handlebars->47->2410"
6278
]
6279
},
6280
{
@@ -6288,7 +6301,7 @@
6301
"zh-cht": "從 {0}、{1}、{2} 登錄帳戶",
6302
"hu": "Bejelentkezés a fiókba innen: {0}, {1}, {2}",
6303
"xloc": [
6291
- "default.handlebars->47->2510"
6304
+ "default.handlebars->47->2516"
6305
]
6306
},
6307
{
@@ -6299,7 +6312,7 @@
6312
"fr": "Enregistrements des jetons de connexion au compte",
6313
"hu": "Fiók bejelentkezési token rekordok",
6314
"xloc": [
6302
- "default.handlebars->47->3111"
6315
+ "default.handlebars->47->3117"
6316
]
6317
},
6318
{
@@ -6326,7 +6339,7 @@
6339
"zh-cht": "帳戶登出",
6340
"hu": "Fiók kijelentkezés",
6341
"xloc": [
6329
- "default.handlebars->47->2405"
6342
+ "default.handlebars->47->2411"
6343
]
6344
},
6345
{
@@ -6382,7 +6395,7 @@
6395
"zh-cht": "帳戶密碼已更改:{0}",
6396
"hu": "Fiók jelszava megváltozott: {0}",
6397
"xloc": [
6385
- "default.handlebars->47->2477"
6398
+ "default.handlebars->47->2483"
6399
]
6400
},
6401
{
@@ -6409,7 +6422,7 @@
6422
"zh-cht": "帳戶已刪除",
6423
"hu": "Fiók eltávolítva",
6424
"xloc": [
6412
- "default.handlebars->47->2466"
6425
+ "default.handlebars->47->2472"
6426
]
6427
},
6428
{
@@ -6464,7 +6477,7 @@
6477
"hu": "Művelet",
6478
"xloc": [
6479
"default-mobile.handlebars->11->853",
6467
- "default.handlebars->47->1654",
6480
+ "default.handlebars->47->1660",
6481
"default.handlebars->container->column_l->p42->p42tbl->1->0->8"
6482
]
6483
},
@@ -6492,8 +6505,8 @@
6505
"zh-cht": "動作檔案",
6506
"hu": "Művelet fájl",
6507
"xloc": [
6495
- "default.handlebars->47->1297",
6496
- "default.handlebars->47->1299"
6508
+ "default.handlebars->47->1301",
6509
+ "default.handlebars->47->1303"
6510
]
6511
},
6512
{
@@ -6524,7 +6537,7 @@
6537
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea4->1->3",
6538
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->1",
6539
"default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea4->1->3",
6527
- "default.handlebars->47->970",
6540
+ "default.handlebars->47->973",
6541
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->1",
6542
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->1",
6543
"default.handlebars->container->column_l->p13->p13toolbar->1->0->1->1"
@@ -6554,7 +6567,7 @@
6567
"zh-cht": "使用FAT格式的USB密鑰在管理控制模式(ACM)中激活英特爾®AMT。將setup.bin放在其上,然後使用此鍵引導一台或多台計算機。",
6568
"hu": "Aktiválja az Intel® AMT-t Admin Control Mode (ACM) üzemmódban egy FAT formátumú USB pendrive segítségével. Helyezze rá a setup.bin fájlt, és indítson el egy vagy több számítógépet ezzel az USB pendrive-val.",
6569
"xloc": [
6557
- "default.handlebars->47->507"
6570
+ "default.handlebars->47->508"
6571
]
6572
},
6573
{
@@ -6635,7 +6648,7 @@
6648
"zh-cht": "如果ACM失敗,則激活到CCM",
6649
"hu": "Aktiválja a CCM-et, ha az ACM meghiúsul",
6650
"xloc": [
6638
- "default.handlebars->47->2168"
6651
+ "default.handlebars->47->2174"
6652
]
6653
},
6654
{
@@ -6665,9 +6678,9 @@
6678
"default-mobile.handlebars->11->499",
6679
"default-mobile.handlebars->11->501",
6680
"default-mobile.handlebars->11->792",
6668
- "default.handlebars->47->1592",
6669
- "default.handlebars->47->870",
6670
- "default.handlebars->47->872"
6681
+ "default.handlebars->47->1598",
6682
+ "default.handlebars->47->871",
6683
+ "default.handlebars->47->873"
6684
]
6685
},
6686
{
@@ -6694,7 +6707,7 @@
6707
"zh-cht": "啟動",
6708
"hu": "Aktiválás",
6709
"xloc": [
6697
- "default.handlebars->47->317"
6710
+ "default.handlebars->47->318"
6711
]
6712
},
6713
{
@@ -6721,8 +6734,8 @@
6734
"zh-cht": "主動設備共享",
6735
"hu": "Atív eszközmegosztás",
6736
"xloc": [
6724
- "default.handlebars->47->1046",
6725
- "default.handlebars->47->2117"
6737
+ "default.handlebars->47->1049",
6738
+ "default.handlebars->47->2123"
6739
]
6740
},
6741
{
@@ -6749,7 +6762,7 @@
6762
"zh-cht": "活動登錄令牌",
6763
"hu": "Aktív bejelentkezési tokenek",
6764
"xloc": [
6752
- "default.handlebars->47->2009"
6765
+ "default.handlebars->47->2015"
6766
]
6767
},
6768
{
@@ -6776,7 +6789,7 @@
6789
"zh-cht": "活躍用戶",
6790
"hu": "Aktív felhasználó",
6791
"xloc": [
6779
- "default.handlebars->47->924"
6792
+ "default.handlebars->47->927"
6793
]
6794
},
6795
{
@@ -6803,7 +6816,7 @@
6816
"zh-cht": "活躍用戶",
6817
"hu": "Aktív felhasználók",
6818
"xloc": [
6806
- "default.handlebars->47->923"
6819
+ "default.handlebars->47->926"
6820
]
6821
},
6822
{
@@ -6855,8 +6868,8 @@
6868
"hu": "Hozzáadás",
6869
"xloc": [
6870
"default-mobile.handlebars->11->649",
6858
- "default.handlebars->47->1386",
6859
- "default.handlebars->47->1391"
6871
+ "default.handlebars->47->1390",
6872
+ "default.handlebars->47->1395"
6873
]
6874
},
6875
{
@@ -6931,8 +6944,8 @@
6944
"zh-cht": "新增代理",
6945
"hu": "Agent hozzáadása",
6946
"xloc": [
6934
- "default.handlebars->47->2107",
6935
- "default.handlebars->47->472"
6947
+ "default.handlebars->47->2113",
6948
+ "default.handlebars->47->473"
6949
]
6950
},
6951
{
@@ -6983,10 +6996,10 @@
6996
"zh-cht": "新增裝置",
6997
"hu": "Eszköz hozzáadása",
6998
"xloc": [
6986
- "default.handlebars->47->2111",
6987
- "default.handlebars->47->2767",
6988
- "default.handlebars->47->2961",
6989
- "default.handlebars->47->476"
6999
+ "default.handlebars->47->2117",
7000
+ "default.handlebars->47->2773",
7001
+ "default.handlebars->47->2967",
7002
+ "default.handlebars->47->477"
7003
]
7004
},
7005
{
@@ -7013,7 +7026,7 @@
7026
"zh-cht": "新增裝置日誌",
7027
"hu": "Eszköz esemény hozzáadása",
7028
"xloc": [
7016
- "default.handlebars->47->1132"
7029
+ "default.handlebars->47->1136"
7030
]
7031
},
7032
{
@@ -7040,10 +7053,10 @@
7053
"zh-cht": "新增裝置群",
7054
"hu": "Eszközcsoport hozzáadása",
7055
"xloc": [
7043
- "default.handlebars->47->2254",
7044
- "default.handlebars->47->2761",
7045
- "default.handlebars->47->2949",
7046
- "default.handlebars->47->380"
7056
+ "default.handlebars->47->2260",
7057
+ "default.handlebars->47->2767",
7058
+ "default.handlebars->47->2955",
7059
+ "default.handlebars->47->381"
7060
]
7061
},
7062
{
@@ -7070,7 +7083,7 @@
7083
"zh-cht": "新增裝置群權限",
7084
"hu": "Eszközcsoport engedélyek hozzáadása",
7085
"xloc": [
7073
- "default.handlebars->47->2251"
7086
+ "default.handlebars->47->2257"
7087
]
7088
},
7089
{
@@ -7097,8 +7110,8 @@
7110
"zh-cht": "新增裝置權限",
7111
"hu": "Eszköz engedélyek hozzáadása",
7112
"xloc": [
7100
- "default.handlebars->47->2256",
7101
- "default.handlebars->47->2258"
7113
+ "default.handlebars->47->2262",
7114
+ "default.handlebars->47->2264"
7115
]
7116
},
7117
{
@@ -7149,7 +7162,7 @@
7162
"zh-cht": "新增Intel® AMT裝置",
7163
"hu": "Intel® AMT eszköz hozzáadása",
7164
"xloc": [
7152
- "default.handlebars->47->496"
7165
+ "default.handlebars->47->497"
7166
]
7167
},
7168
{
@@ -7176,7 +7189,7 @@
7189
"zh-cht": "新增密鑰",
7190
"hu": "Kulcs hozzáadása",
7191
"xloc": [
7179
- "default.handlebars->47->236"
7192
+ "default.handlebars->47->237"
7193
]
7194
},
7195
{
@@ -7203,7 +7216,7 @@
7216
"zh-cht": "新增本地",
7217
"hu": "Helyi hozzáadása",
7218
"xloc": [
7206
- "default.handlebars->47->466"
7219
+ "default.handlebars->47->467"
7220
]
7221
},
7222
{
@@ -7254,7 +7267,7 @@
7267
"zh-cht": "新增成員身份",
7268
"hu": "Hozzáadás Felhasználói Csoporthoz",
7269
"xloc": [
7257
- "default.handlebars->47->2981"
7270
+ "default.handlebars->47->2987"
7271
]
7272
},
7273
{
@@ -7281,7 +7294,7 @@
7294
"zh-cht": "新增 Mesh Agent",
7295
"hu": "Mesh Agent hozzáadása",
7296
"xloc": [
7284
- "default.handlebars->47->648"
7297
+ "default.handlebars->47->649"
7298
]
7299
},
7300
{
@@ -7332,12 +7345,12 @@
7345
"zh-cht": "新增安全密鑰",
7346
"hu": "Biztonsági kulcs hozzáadása",
7347
"xloc": [
7335
- "default.handlebars->47->1724",
7336
- "default.handlebars->47->1725",
7337
- "default.handlebars->47->240",
7338
- "default.handlebars->47->242",
7339
- "default.handlebars->47->245",
7340
- "default.handlebars->47->247"
7348
+ "default.handlebars->47->1730",
7349
+ "default.handlebars->47->1731",
7350
+ "default.handlebars->47->241",
7351
+ "default.handlebars->47->243",
7352
+ "default.handlebars->47->246",
7353
+ "default.handlebars->47->248"
7354
]
7355
},
7356
{
@@ -7365,7 +7378,7 @@
7378
"hu": "Felhasználó hozzáadása",
7379
"xloc": [
7380
"default-mobile.handlebars->11->878",
7368
- "default.handlebars->47->1038"
7381
+ "default.handlebars->47->1041"
7382
]
7383
},
7384
{
@@ -7392,7 +7405,7 @@
7405
"zh-cht": "新增用戶裝置權限",
7406
"hu": "Felhasználói eszköz engedélyek hozzáadása",
7407
"xloc": [
7395
- "default.handlebars->47->2261"
7408
+ "default.handlebars->47->2267"
7409
]
7410
},
7411
{
@@ -7419,10 +7432,10 @@
7432
"zh-cht": "新增用戶群",
7433
"hu": "Felhasználói csoport hozzáadása",
7434
"xloc": [
7422
- "default.handlebars->47->1039",
7423
- "default.handlebars->47->2101",
7424
- "default.handlebars->47->2253",
7425
- "default.handlebars->47->2955"
7435
+ "default.handlebars->47->1042",
7436
+ "default.handlebars->47->2107",
7437
+ "default.handlebars->47->2259",
7438
+ "default.handlebars->47->2961"
7439
]
7440
},
7441
{
@@ -7449,7 +7462,7 @@
7462
"zh-cht": "新增用戶群裝置權限",
7463
"hu": "Felhasználói csoport eszköz engedélyek hozzáadása",
7464
"xloc": [
7452
- "default.handlebars->47->2263"
7465
+ "default.handlebars->47->2269"
7466
]
7467
},
7468
{
@@ -7527,8 +7540,8 @@
7540
"zh-cht": "新增用戶",
7541
"hu": "Felhasználók hozzáadása",
7542
"xloc": [
7530
- "default.handlebars->47->2100",
7531
- "default.handlebars->47->2756"
7543
+ "default.handlebars->47->2106",
7544
+ "default.handlebars->47->2762"
7545
]
7546
},
7547
{
@@ -7555,7 +7568,7 @@
7568
"zh-cht": "將用戶新增到裝置群",
7569
"hu": "Felhasználók hozzáadása az eszköz csoporthoz",
7570
"xloc": [
7558
- "default.handlebars->47->2250"
7571
+ "default.handlebars->47->2256"
7572
]
7573
},
7574
{
@@ -7582,7 +7595,7 @@
7595
"zh-cht": "將用戶新增到用戶群",
7596
"hu": "Felhasználók hozzáadása az felhasználó csoporthoz",
7597
"xloc": [
7585
- "default.handlebars->47->2791"
7598
+ "default.handlebars->47->2797"
7599
]
7600
},
7601
{
@@ -7609,7 +7622,7 @@
7622
"zh-cht": "新增YubiKey®OTP",
7623
"hu": "YubiKey® OTP hozzáadása",
7624
"xloc": [
7612
- "default.handlebars->47->237"
7625
+ "default.handlebars->47->238"
7626
]
7627
},
7628
{
@@ -7636,7 +7649,7 @@
7649
"zh-cht": "將本地設備添加到設備組 \\\"{0}\\\"。",
7650
"hu": "Helyi eszköz hozzáadása a \\\"{0}\\\" eszközcsoporthoz.",
7651
"xloc": [
7639
- "default.handlebars->47->477"
7652
+ "default.handlebars->47->478"
7653
]
7654
},
7655
{
@@ -7663,7 +7676,7 @@
7676
"zh-cht": "通過掃描本地網絡新增新的Intel® AMT電腦。",
7677
"hu": "Adjon hozzá egy új Intel® AMT számítógépet a helyi hálózat átvizsgálásával.",
7678
"xloc": [
7666
- "default.handlebars->47->467"
7679
+ "default.handlebars->47->468"
7680
]
7681
},
7682
{
@@ -7714,7 +7727,7 @@
7727
"zh-cht": "新增位於本地網絡上的新Intel® AMT電腦。",
7728
"hu": "Adjon hozzá egy új Intel® AMT számítógépet, amely a helyi hálózaton található.",
7729
"xloc": [
7717
- "default.handlebars->47->465"
7730
+ "default.handlebars->47->466"
7731
]
7732
},
7733
{
@@ -7741,7 +7754,7 @@
7754
"zh-cht": "將新的Intel® AMT裝置新增到裝置群“{0}”。",
7755
"hu": "Új Intel® AMT eszköz hozzáadása a \\\"{0}\\\" eszközcsoporthoz.",
7756
"xloc": [
7744
- "default.handlebars->47->486"
7757
+ "default.handlebars->47->487"
7758
]
7759
},
7760
{
@@ -7768,8 +7781,8 @@
7781
"zh-cht": "通過安裝Mesh Agent將新電腦新增到該裝置群。",
7782
"hu": "Adjon hozzá egy új számítógépet ehhez az eszközcsoporthoz a Mesh Agent telepítésével.",
7783
"xloc": [
7771
- "default.handlebars->47->2106",
7772
- "default.handlebars->47->471"
7784
+ "default.handlebars->47->2112",
7785
+ "default.handlebars->47->472"
7786
]
7787
},
7788
{
@@ -7796,8 +7809,8 @@
7809
"zh-cht": "添加位於本地網絡上的設備。",
7810
"hu": "Helyi hálózaton található eszköz hozzáadása.",
7811
"xloc": [
7799
- "default.handlebars->47->2110",
7800
- "default.handlebars->47->475"
7812
+ "default.handlebars->47->2116",
7813
+ "default.handlebars->47->476"
7814
]
7815
},
7816
{
@@ -7824,7 +7837,7 @@
7837
"zh-cht": "添加本地設備",
7838
"hu": "Helyi eszköz hozzáadása",
7839
"xloc": [
7827
- "default.handlebars->47->485"
7840
+ "default.handlebars->47->486"
7841
]
7842
},
7843
{
@@ -7851,7 +7864,7 @@
7864
"zh-cht": "新增標籤",
7865
"hu": "Cimkék hozzáadása",
7866
"xloc": [
7854
- "default.handlebars->47->722"
7867
+ "default.handlebars->47->723"
7868
]
7869
},
7870
{
@@ -7878,7 +7891,7 @@
7891
"zh-cht": "通過定期在遠程設備上以管理員身份運行MeshCmd,添加,激活和配置Intel®AMT以將“{0}”分組。",
7892
"hu": "Adja hozzá, aktiválja és konfigurálja az Intel® AMT-t a \\\"{0}\\\" csoporthoz úgy, hogy rendszeres időközönként rendszergazdaként futtatja a MeshCmd-t a távoli eszközön.",
7893
"xloc": [
7881
- "default.handlebars->47->504"
7894
+ "default.handlebars->47->505"
7895
]
7896
},
7897
{
@@ -7905,7 +7918,7 @@
7918
"zh-cht": "添加了身份驗證應用程序",
7919
"hu": "Hitelesítési alkalmazás hozzáadva",
7920
"xloc": [
7908
- "default.handlebars->47->2493"
7921
+ "default.handlebars->47->2499"
7922
]
7923
},
7924
{
@@ -7932,7 +7945,7 @@
7945
"zh-cht": "已將設備共享{0}從{1}添加到{2}",
7946
"hu": "{0} eszközmegosztás hozzáadva {1} és {2} között",
7947
"xloc": [
7935
- "default.handlebars->47->2504"
7948
+ "default.handlebars->47->2510"
7949
]
7950
},
7951
{
@@ -7959,7 +7972,7 @@
7972
"zh-cht": "添加了每天重複的設備共享 {0}。",
7973
"hu": "Naponta ismétlődő {0} eszközmegosztás hozzáadva.",
7974
"xloc": [
7962
- "default.handlebars->47->2541"
7975
+ "default.handlebars->47->2547"
7976
]
7977
},
7978
{
@@ -7986,7 +7999,7 @@
7999
"zh-cht": "添加了每週重複的設備共享 {0}。",
8000
"hu": "Hetente ismétlődő {0} eszközmegosztás hozzáadva.",
8001
"xloc": [
7989
- "default.handlebars->47->2542"
8002
+ "default.handlebars->47->2548"
8003
]
8004
},
8005
{
@@ -8013,7 +8026,7 @@
8026
"zh-cht": "添加了無限時間的設備共享 {0}。",
8027
"hu": "{0} eszközmegosztás hozzáadva korlátlan ideig.",
8028
"xloc": [
8016
- "default.handlebars->47->2534"
8029
+ "default.handlebars->47->2540"
8030
]
8031
},
8032
{
@@ -8040,8 +8053,8 @@
8053
"zh-cht": "已將設備{0}添加到設備組{1}",
8054
"hu": "A(z) {0} eszköz hozzáadva a(z) {1} eszközcsoporthoz",
8055
"xloc": [
8043
- "default.handlebars->47->2460",
8044
- "default.handlebars->47->2487"
8056
+ "default.handlebars->47->2466",
8057
+ "default.handlebars->47->2493"
8058
]
8059
},
8060
{
@@ -8068,7 +8081,7 @@
8081
"zh-cht": "添加了登錄令牌",
8082
"hu": "Bejelentkezési token hozzáadva",
8083
"xloc": [
8071
- "default.handlebars->47->2518"
8084
+ "default.handlebars->47->2524"
8085
]
8086
},
8087
{
@@ -8095,7 +8108,7 @@
8108
"zh-cht": "增加推送通知認證設備",
8109
"hu": "Push értesítési hitelesítő eszköz hozzáadva",
8110
"xloc": [
8098
- "default.handlebars->47->2516"
8111
+ "default.handlebars->47->2522"
8112
]
8113
},
8114
{
@@ -8122,7 +8135,7 @@
8135
"zh-cht": "添加了安全密鑰",
8136
"hu": "Biztonsági kulcs hozzáadva",
8137
"xloc": [
8125
- "default.handlebars->47->2498"
8138
+ "default.handlebars->47->2504"
8139
]
8140
},
8141
{
@@ -8149,7 +8162,7 @@
8162
"zh-cht": "已將用戶組{0}添加到設備組{1}",
8163
"hu": "{0} felhasználói csoport hozzáadva a(z) {1} eszközcsoporthoz",
8164
"xloc": [
8152
- "default.handlebars->47->2471"
8165
+ "default.handlebars->47->2477"
8166
]
8167
},
8168
{
@@ -8176,8 +8189,8 @@
8189
"zh-cht": "已將用戶{0}添加到用戶組{1}",
8190
"hu": "{0} felhasználó hozzáadva a(z) {1} felhasználói csoporthoz",
8191
"xloc": [
8179
- "default.handlebars->47->2474",
8180
- "default.handlebars->47->2483"
8192
+ "default.handlebars->47->2480",
8193
+ "default.handlebars->47->2489"
8194
]
8195
},
8196
{
@@ -8204,7 +8217,7 @@
8217
"zh-cht": "地址",
8218
"hu": "Cím",
8219
"xloc": [
8207
- "default.handlebars->47->375"
8220
+ "default.handlebars->47->376"
8221
]
8222
},
8223
{
@@ -8259,7 +8272,7 @@
8272
"hu": "Admin Control Mode (ACM)",
8273
"xloc": [
8274
"default-mobile.handlebars->11->794",
8262
- "default.handlebars->47->1594"
8275
+ "default.handlebars->47->1600"
8276
]
8277
},
8278
{
@@ -8287,7 +8300,7 @@
8300
"hu": "Adminisztrátor Hitelesítő adatok",
8301
"xloc": [
8302
"default-mobile.handlebars->11->800",
8290
- "default.handlebars->47->1600"
8303
+ "default.handlebars->47->1606"
8304
]
8305
},
8306
{
@@ -8342,7 +8355,7 @@
8355
"zh-cht": "管理領域",
8356
"hu": "Adminisztratív Realms",
8357
"xloc": [
8345
- "default.handlebars->47->2843"
8358
+ "default.handlebars->47->2849"
8359
]
8360
},
8361
{
@@ -8397,7 +8410,7 @@
8410
"zh-cht": "管理領域",
8411
"hu": "Adminisztratív Realms",
8412
"xloc": [
8400
- "default.handlebars->47->2688"
8413
+ "default.handlebars->47->2694"
8414
]
8415
},
8416
{
@@ -8424,7 +8437,7 @@
8437
"zh-cht": "管理員",
8438
"hu": "Adminisztrátor",
8439
"xloc": [
8427
- "default.handlebars->47->2613"
8440
+ "default.handlebars->47->2619"
8441
]
8442
},
8443
{
@@ -8452,7 +8465,7 @@
8465
"hu": "afrikai",
8466
"xloc": [
8467
"default-mobile.handlebars->11->104",
8455
- "default.handlebars->47->1727",
8468
+ "default.handlebars->47->1733",
8469
"login2.handlebars->7->1"
8470
]
8471
},
@@ -8484,11 +8497,11 @@
8497
"default-mobile.handlebars->11->463",
8498
"default-mobile.handlebars->11->520",
8499
"default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1",
8487
- "default.handlebars->47->2334",
8488
- "default.handlebars->47->2347",
8489
- "default.handlebars->47->3205",
8490
- "default.handlebars->47->400",
8491
- "default.handlebars->47->680",
8500
+ "default.handlebars->47->2340",
8501
+ "default.handlebars->47->2353",
8502
+ "default.handlebars->47->3211",
8503
+ "default.handlebars->47->401",
8504
+ "default.handlebars->47->681",
8505
"default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1",
8506
"default.handlebars->container->dialog->dialogBody->dialog7->1->td7meshkvm"
8507
]
@@ -8517,8 +8530,8 @@
8530
"zh-cht": "代理+Intel® AMT",
8531
"hu": "Agent + Intel® AMT",
8532
"xloc": [
8520
- "default.handlebars->47->2336",
8521
- "default.handlebars->47->2349"
8533
+ "default.handlebars->47->2342",
8534
+ "default.handlebars->47->2355"
8535
]
8536
},
8537
{
@@ -8574,8 +8587,8 @@
8587
"hu": "Agent konzol",
8588
"xloc": [
8589
"default-mobile.handlebars->11->925",
8577
- "default.handlebars->47->2271",
8578
- "default.handlebars->47->768"
8590
+ "default.handlebars->47->2277",
8591
+ "default.handlebars->47->769"
8592
]
8593
},
8594
{
@@ -8602,7 +8615,7 @@
8615
"zh-cht": "代理錯誤計數器",
8616
"hu": "Agrnt hiba számlálók",
8617
"xloc": [
8605
- "default.handlebars->47->3174"
8618
+ "default.handlebars->47->3180"
8619
]
8620
},
8621
{
@@ -8629,7 +8642,7 @@
8642
"zh-cht": "代理 IP 地址",
8643
"hu": "Agent IP cím",
8644
"xloc": [
8632
- "default.handlebars->47->346"
8645
+ "default.handlebars->47->347"
8646
]
8647
},
8648
{
@@ -8684,7 +8697,7 @@
8697
"hu": "Agent üzenetek",
8698
"xloc": [
8699
"default-mobile.handlebars->11->436",
8687
- "default.handlebars->47->457"
8700
+ "default.handlebars->47->458"
8701
]
8702
},
8703
{
@@ -8790,8 +8803,8 @@
8803
"zh-cht": "代理自行共享",
8804
"hu": "Agent Ön-Megosztás",
8805
"xloc": [
8793
- "default.handlebars->47->1067",
8794
- "default.handlebars->47->2138"
8806
+ "default.handlebars->47->1070",
8807
+ "default.handlebars->47->2144"
8808
]
8809
},
8810
{
@@ -8818,7 +8831,7 @@
8831
"zh-cht": "代理時段",
8832
"hu": "Agent munkamenetek",
8833
"xloc": [
8821
- "default.handlebars->47->3190"
8834
+ "default.handlebars->47->3196"
8835
]
8836
},
8837
{
@@ -8870,7 +8883,7 @@
8883
"hu": "Agent Cimke",
8884
"xloc": [
8885
"default-mobile.handlebars->11->517",
8873
- "default.handlebars->47->893"
8886
+ "default.handlebars->47->894"
8887
]
8888
},
8889
{
@@ -8897,8 +8910,8 @@
8910
"zh-cht": "代理類型",
8911
"hu": "Agent típus",
8912
"xloc": [
8900
- "default.handlebars->47->336",
8901
- "default.handlebars->47->366"
8913
+ "default.handlebars->47->337",
8914
+ "default.handlebars->47->367"
8915
]
8916
},
8917
{
@@ -8925,7 +8938,7 @@
8938
"zh-cht": "代理類型",
8939
"hu": "Agent típusok",
8940
"xloc": [
8928
- "default.handlebars->47->2345",
8941
+ "default.handlebars->47->2351",
8942
"default.handlebars->container->column_l->p21->p21main->1->1->meshOsChartDiv->1"
8943
]
8944
},
@@ -8953,8 +8966,8 @@
8966
"zh-cht": "代理版本",
8967
"hu": "Agent verzió",
8968
"xloc": [
8956
- "default.handlebars->47->337",
8957
- "default.handlebars->47->367"
8969
+ "default.handlebars->47->338",
8970
+ "default.handlebars->47->368"
8971
]
8972
},
8973
{
@@ -8981,7 +8994,7 @@
8994
"zh-cht": "代理關閉了與{0}%代理到服務器壓縮的會話。已發送:{1},已壓縮:{2}",
8995
"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}",
8996
"xloc": [
8984
- "default.handlebars->47->2457"
8997
+ "default.handlebars->47->2463"
8998
]
8999
},
9000
{
@@ -9008,9 +9021,9 @@
9021
"zh-cht": "代理已連接",
9022
"hu": "Agent csatlakozott",
9023
"xloc": [
9011
- "default.handlebars->47->1025",
9012
- "default.handlebars->47->1026",
9013
- "default.handlebars->47->256"
9024
+ "default.handlebars->47->1028",
9025
+ "default.handlebars->47->1029",
9026
+ "default.handlebars->47->257"
9027
]
9028
},
9029
{
@@ -9037,7 +9050,7 @@
9050
"zh-cht": "與有限特權相關的代理",
9051
"hu": "Agent csatlakozott, korlátozott jogosultságokkal",
9052
"xloc": [
9040
- "default.handlebars->47->257"
9053
+ "default.handlebars->47->258"
9054
]
9055
},
9056
{
@@ -9064,7 +9077,7 @@
9077
"zh-cht": "代理已斷開連接",
9078
"hu": "Agent lecsatlakozott",
9079
"xloc": [
9067
- "default.handlebars->47->261"
9080
+ "default.handlebars->47->262"
9081
]
9082
},
9083
{
@@ -9091,7 +9104,7 @@
9104
"zh-cht": "正在跳過代理哈希檢查,這是不安全的。",
9105
"hu": "Az Agent hash ellenőrzése kihagyásra kerül, ami nem biztonságos.",
9106
"xloc": [
9094
- "default.handlebars->47->92"
9107
+ "default.handlebars->47->93"
9108
]
9109
},
9110
{
@@ -9191,7 +9204,7 @@
9204
"hu": "Offline Agent",
9205
"xloc": [
9206
"default-mobile.handlebars->11->845",
9194
- "default.handlebars->47->1646"
9207
+ "default.handlebars->47->1652"
9208
]
9209
},
9210
{
@@ -9219,7 +9232,7 @@
9232
"hu": "Online Agent",
9233
"xloc": [
9234
"default-mobile.handlebars->11->844",
9222
- "default.handlebars->47->1645"
9235
+ "default.handlebars->47->1651"
9236
]
9237
},
9238
{
@@ -9318,7 +9331,7 @@
9331
"zh-cht": "代理在特權降低的遠程設備上運行。",
9332
"hu": "Az Agent csökkentett jogosultságokkal fut a távoli eszközön.",
9333
"xloc": [
9321
- "default.handlebars->47->1019"
9334
+ "default.handlebars->47->1022"
9335
]
9336
},
9337
{
@@ -9441,9 +9454,9 @@
9454
"zh-cht": "代理",
9455
"hu": "Agent-ek",
9456
"xloc": [
9444
- "default.handlebars->47->2302",
9445
- "default.handlebars->47->3218",
9446
- "default.handlebars->47->560"
9457
+ "default.handlebars->47->2308",
9458
+ "default.handlebars->47->3224",
9459
+ "default.handlebars->47->561"
9460
]
9461
},
9462
{
@@ -9471,7 +9484,7 @@
9484
"hu": "albán",
9485
"xloc": [
9486
"default-mobile.handlebars->11->105",
9474
- "default.handlebars->47->1728",
9487
+ "default.handlebars->47->1734",
9488
"login2.handlebars->7->2"
9489
]
9490
},
@@ -9479,8 +9492,8 @@
9492
"en": "Alert Box",
9493
"nl": "Alert Box",
9494
"xloc": [
9482
- "default.handlebars->47->1149",
9483
- "default.handlebars->47->731"
9495
+ "default.handlebars->47->1153",
9496
+ "default.handlebars->47->732"
9497
]
9498
},
9499
{
@@ -9510,7 +9523,7 @@
9523
"default-mobile.handlebars->11->355",
9524
"default-mobile.handlebars->11->687",
9525
"default-mobile.handlebars->11->689",
9513
- "default.handlebars->47->3038",
9526
+ "default.handlebars->47->3044",
9527
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar->DevFilterSelect->1"
9528
]
9529
},
@@ -9538,7 +9551,7 @@
9551
"zh-cht": "全部可用",
9552
"hu": "Összes elérhető",
9553
"xloc": [
9541
- "default.handlebars->47->2575"
9554
+ "default.handlebars->47->2581"
9555
]
9556
},
9557
{
@@ -9565,8 +9578,8 @@
9578
"zh-cht": "所有可用的代理",
9579
"hu": "Az összes rendelkezésre álló Agent",
9580
"xloc": [
9568
- "default.handlebars->47->2303",
9569
- "default.handlebars->47->561"
9581
+ "default.handlebars->47->2309",
9582
+ "default.handlebars->47->562"
9583
]
9584
},
9585
{
@@ -9593,7 +9606,7 @@
9606
"zh-cht": "所有顯示",
9607
"hu": "Összes Kijelző",
9608
"xloc": [
9596
- "default.handlebars->47->1436"
9609
+ "default.handlebars->47->1440"
9610
]
9611
},
9612
{
@@ -9620,7 +9633,7 @@
9633
"zh-cht": "所有事件",
9634
"hu": "Összes Esemény",
9635
"xloc": [
9623
- "default.handlebars->47->2573"
9636
+ "default.handlebars->47->2579"
9637
]
9638
},
9639
{
@@ -9647,9 +9660,9 @@
9660
"zh-cht": "全部聚焦",
9661
"hu": "Teljes Focus mode",
9662
"xloc": [
9650
- "default.handlebars->47->1355",
9651
- "default.handlebars->47->1357",
9652
- "default.handlebars->47->1358"
9663
+ "default.handlebars->47->1359",
9664
+ "default.handlebars->47->1361",
9665
+ "default.handlebars->47->1362"
9666
]
9667
},
9668
{
@@ -9703,8 +9716,8 @@
9716
"zh-cht": "允許用戶管理此裝置群和該群中的裝置。",
9717
"hu": "Engedélyezi a felhasználók számára az eszközcsoport és a csoportba tartozó eszközök kezelését.",
9718
"xloc": [
9706
- "default.handlebars->47->2215",
9707
- "default.handlebars->47->2788"
9719
+ "default.handlebars->47->2221",
9720
+ "default.handlebars->47->2794"
9721
]
9722
},
9723
{
@@ -9731,7 +9744,7 @@
9744
"zh-cht": "允許用戶管理此裝置。",
9745
"hu": "Engedélyezze a felhasználóknak, hogy kezeljék ezt az eszközt.",
9746
"xloc": [
9734
- "default.handlebars->47->2216"
9747
+ "default.handlebars->47->2222"
9748
]
9749
},
9750
{
@@ -9758,7 +9771,7 @@
9771
"zh-cht": "允許",
9772
"hu": "Engedélyezve",
9773
"xloc": [
9761
- "default.handlebars->47->284"
9774
+ "default.handlebars->47->285"
9775
]
9776
},
9777
{
@@ -9839,8 +9852,8 @@
9852
"xloc": [
9853
"default-mobile.handlebars->11->642",
9854
"default-mobile.handlebars->11->646",
9842
- "default.handlebars->47->1379",
9843
- "default.handlebars->47->1383"
9855
+ "default.handlebars->47->1383",
9856
+ "default.handlebars->47->1387"
9857
]
9858
},
9859
{
@@ -9867,7 +9880,7 @@
9880
"zh-cht": "替代Shell",
9881
"hu": "Alternatív Shell",
9882
"xloc": [
9870
- "default.handlebars->47->1345"
9883
+ "default.handlebars->47->1349"
9884
]
9885
},
9886
{
@@ -9950,7 +9963,7 @@
9963
"zh-cht": "備用(F10 = ESC + 0)",
9964
"hu": "Alternatív (F10 = ESC+0)",
9965
"xloc": [
9953
- "default.handlebars->47->1470",
9966
+ "default.handlebars->47->1474",
9967
"sharing.handlebars->11->37"
9968
]
9969
},
@@ -10033,10 +10046,10 @@
10046
"zh-cht": "一直通知",
10047
"hu": "Minden kapcsolat értesítés",
10048
"xloc": [
10036
- "default.handlebars->47->2077",
10037
- "default.handlebars->47->2747",
10038
- "default.handlebars->47->2852",
10039
- "default.handlebars->47->933"
10049
+ "default.handlebars->47->2083",
10050
+ "default.handlebars->47->2753",
10051
+ "default.handlebars->47->2858",
10052
+ "default.handlebars->47->936"
10053
]
10054
},
10055
{
@@ -10063,10 +10076,10 @@
10076
"zh-cht": "一直提示",
10077
"hu": "Minden kapcsolat engedélykérés",
10078
"xloc": [
10066
- "default.handlebars->47->2078",
10067
- "default.handlebars->47->2748",
10068
- "default.handlebars->47->2853",
10069
- "default.handlebars->47->934"
10079
+ "default.handlebars->47->2084",
10080
+ "default.handlebars->47->2754",
10081
+ "default.handlebars->47->2859",
10082
+ "default.handlebars->47->937"
10083
]
10084
},
10085
{
@@ -10156,7 +10169,7 @@
10169
"hu": "Ismeretlen hiba történt.",
10170
"de": "Ein unbekannter Fehler ist aufgetreten.",
10171
"xloc": [
10159
- "default.handlebars->47->2990"
10172
+ "default.handlebars->47->2996"
10173
]
10174
},
10175
{
@@ -10215,7 +10228,7 @@
10228
"hu": "Android APK",
10229
"xloc": [
10230
"default-mobile.handlebars->11->897",
10218
- "default.handlebars->47->621"
10231
+ "default.handlebars->47->622"
10232
]
10233
},
10234
{
@@ -10303,7 +10316,7 @@
10316
"en": "Android MeshAgent",
10317
"nl": "Android MeshAgent",
10318
"xloc": [
10306
- "default.handlebars->47->566"
10319
+ "default.handlebars->47->567"
10320
]
10321
},
10322
{
@@ -10358,8 +10371,8 @@
10371
"zh-cht": "殺毒軟件未激活",
10372
"hu": "A vírusirtó nem aktív",
10373
"xloc": [
10361
- "default.handlebars->47->2338",
10362
- "default.handlebars->47->2352"
10374
+ "default.handlebars->47->2344",
10375
+ "default.handlebars->47->2358"
10376
]
10377
},
10378
{
@@ -10387,7 +10400,7 @@
10400
"hu": "Antivírus",
10401
"xloc": [
10402
"default-mobile.handlebars->11->755",
10390
- "default.handlebars->47->921"
10403
+ "default.handlebars->47->922"
10404
]
10405
},
10406
{
@@ -10414,7 +10427,7 @@
10427
"zh-cht": "任何可支持的",
10428
"hu": "Bármilyen támogatott",
10429
"xloc": [
10417
- "default.handlebars->47->534"
10430
+ "default.handlebars->47->535"
10431
]
10432
},
10433
{
@@ -10496,7 +10509,7 @@
10509
"zh-cht": "蘋果macOS",
10510
"hu": "Apple macOS",
10511
"xloc": [
10499
- "default.handlebars->47->576"
10512
+ "default.handlebars->47->577"
10513
]
10514
},
10515
{
@@ -10523,7 +10536,7 @@
10536
"zh-cht": "僅限Apple macOS",
10537
"hu": "csak Apple macOS",
10538
"xloc": [
10526
- "default.handlebars->47->536"
10539
+ "default.handlebars->47->537"
10540
]
10541
},
10542
{
@@ -10673,7 +10686,7 @@
10686
"zh-cht": "應用程序,始終連接",
10687
"hu": "Alkalmazás, állandó csatlakozás",
10688
"xloc": [
10676
- "default.handlebars->47->589"
10689
+ "default.handlebars->47->590"
10690
]
10691
},
10692
{
@@ -10700,7 +10713,7 @@
10713
"zh-cht": "應用程序,根據用戶請求連接",
10714
"hu": "Alkalmazás, csatlakozás a felhasználó kérésére",
10715
"xloc": [
10703
- "default.handlebars->47->588"
10716
+ "default.handlebars->47->589"
10717
]
10718
},
10719
{
@@ -10728,7 +10741,7 @@
10741
"hu": "arab (Algéria)",
10742
"xloc": [
10743
"default-mobile.handlebars->11->107",
10731
- "default.handlebars->47->1730",
10744
+ "default.handlebars->47->1736",
10745
"login2.handlebars->7->4"
10746
]
10747
},
@@ -10757,7 +10770,7 @@
10770
"hu": "arab (Bahrein)",
10771
"xloc": [
10772
"default-mobile.handlebars->11->108",
10760
- "default.handlebars->47->1731",
10773
+ "default.handlebars->47->1737",
10774
"login2.handlebars->7->5"
10775
]
10776
},
@@ -10786,7 +10799,7 @@
10799
"hu": "arab (Egyiptom)",
10800
"xloc": [
10801
"default-mobile.handlebars->11->109",
10789
- "default.handlebars->47->1732",
10802
+ "default.handlebars->47->1738",
10803
"login2.handlebars->7->6"
10804
]
10805
},
@@ -10815,7 +10828,7 @@
10828
"hu": "arab (Irak)",
10829
"xloc": [
10830
"default-mobile.handlebars->11->110",
10818
- "default.handlebars->47->1733",
10831
+ "default.handlebars->47->1739",
10832
"login2.handlebars->7->7"
10833
]
10834
},
@@ -10844,7 +10857,7 @@
10857
"hu": "arab (Jordánia)",
10858
"xloc": [
10859
"default-mobile.handlebars->11->111",
10847
- "default.handlebars->47->1734",
10860
+ "default.handlebars->47->1740",
10861
"login2.handlebars->7->8"
10862
]
10863
},
@@ -10873,7 +10886,7 @@
10886
"hu": "arab (Kuvait)",
10887
"xloc": [
10888
"default-mobile.handlebars->11->112",
10876
- "default.handlebars->47->1735",
10889
+ "default.handlebars->47->1741",
10890
"login2.handlebars->7->9"
10891
]
10892
},
@@ -10902,7 +10915,7 @@
10915
"hu": "arab (Libanon)",
10916
"xloc": [
10917
"default-mobile.handlebars->11->113",
10905
- "default.handlebars->47->1736",
10918
+ "default.handlebars->47->1742",
10919
"login2.handlebars->7->10"
10920
]
10921
},
@@ -10931,7 +10944,7 @@
10944
"hu": "arab (Líbia)",
10945
"xloc": [
10946
"default-mobile.handlebars->11->114",
10934
- "default.handlebars->47->1737",
10947
+ "default.handlebars->47->1743",
10948
"login2.handlebars->7->11"
10949
]
10950
},
@@ -10960,7 +10973,7 @@
10973
"hu": "arab (Marokkó)",
10974
"xloc": [
10975
"default-mobile.handlebars->11->115",
10963
- "default.handlebars->47->1738",
10976
+ "default.handlebars->47->1744",
10977
"login2.handlebars->7->12"
10978
]
10979
},
@@ -10989,7 +11002,7 @@
11002
"hu": "arab (Omán)",
11003
"xloc": [
11004
"default-mobile.handlebars->11->116",
10992
- "default.handlebars->47->1739",
11005
+ "default.handlebars->47->1745",
11006
"login2.handlebars->7->13"
11007
]
11008
},
@@ -11018,7 +11031,7 @@
11031
"hu": "arab (Katar)",
11032
"xloc": [
11033
"default-mobile.handlebars->11->117",
11021
- "default.handlebars->47->1740",
11034
+ "default.handlebars->47->1746",
11035
"login2.handlebars->7->14"
11036
]
11037
},
@@ -11047,7 +11060,7 @@
11060
"hu": "arab (Szaúd-Arábia)",
11061
"xloc": [
11062
"default-mobile.handlebars->11->118",
11050
- "default.handlebars->47->1741",
11063
+ "default.handlebars->47->1747",
11064
"login2.handlebars->7->15"
11065
]
11066
},
@@ -11076,7 +11089,7 @@
11089
"hu": "arab",
11090
"xloc": [
11091
"default-mobile.handlebars->11->106",
11079
- "default.handlebars->47->1729",
11092
+ "default.handlebars->47->1735",
11093
"login2.handlebars->7->3"
11094
]
11095
},
@@ -11105,7 +11118,7 @@
11118
"hu": "arab (Szíria)",
11119
"xloc": [
11120
"default-mobile.handlebars->11->119",
11108
- "default.handlebars->47->1742",
11121
+ "default.handlebars->47->1748",
11122
"login2.handlebars->7->16"
11123
]
11124
},
@@ -11134,7 +11147,7 @@
11147
"hu": "arab (Tunézia)",
11148
"xloc": [
11149
"default-mobile.handlebars->11->120",
11137
- "default.handlebars->47->1743",
11150
+ "default.handlebars->47->1749",
11151
"login2.handlebars->7->17"
11152
]
11153
},
@@ -11163,7 +11176,7 @@
11176
"hu": "arab (Egyesült Arab Emírségek)",
11177
"xloc": [
11178
"default-mobile.handlebars->11->121",
11166
- "default.handlebars->47->1744",
11179
+ "default.handlebars->47->1750",
11180
"login2.handlebars->7->18"
11181
]
11182
},
@@ -11192,7 +11205,7 @@
11205
"hu": "arab (Jemen)",
11206
"xloc": [
11207
"default-mobile.handlebars->11->122",
11195
- "default.handlebars->47->1745",
11208
+ "default.handlebars->47->1751",
11209
"login2.handlebars->7->19"
11210
]
11211
},
@@ -11221,7 +11234,7 @@
11234
"hu": "aragóniai",
11235
"xloc": [
11236
"default-mobile.handlebars->11->123",
11224
- "default.handlebars->47->1746",
11237
+ "default.handlebars->47->1752",
11238
"login2.handlebars->7->20"
11239
]
11240
},
@@ -11252,9 +11265,9 @@
11265
"default-mobile.handlebars->11->722",
11266
"default-mobile.handlebars->11->724",
11267
"default-mobile.handlebars->11->726",
11255
- "default.handlebars->47->1539",
11256
- "default.handlebars->47->1541",
11257
- "default.handlebars->47->1543"
11268
+ "default.handlebars->47->1545",
11269
+ "default.handlebars->47->1547",
11270
+ "default.handlebars->47->1549"
11271
]
11272
},
11273
{
@@ -11281,7 +11294,7 @@
11294
"zh-cht": "你確定要連接到{0}裝置嗎?",
11295
"hu": "Biztos, hogy {0} eszközökhöz szeretne csatlakozni?",
11296
"xloc": [
11284
- "default.handlebars->47->460"
11297
+ "default.handlebars->47->461"
11298
]
11299
},
11300
{
@@ -11309,7 +11322,7 @@
11322
"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.",
11323
"xloc": [
11324
"default-mobile.handlebars->11->885",
11312
- "default.handlebars->47->2182"
11325
+ "default.handlebars->47->2188"
11326
]
11327
},
11328
{
@@ -11336,7 +11349,7 @@
11349
"zh-cht": "你確定要刪除節點{0}嗎?",
11350
"hu": "Biztos, hogy törölni akarja a {0} node-ot?",
11351
"xloc": [
11339
- "default.handlebars->47->1272"
11352
+ "default.handlebars->47->1276"
11353
]
11354
},
11355
{
@@ -11363,7 +11376,7 @@
11376
"zh-cht": "你確定要卸載所選代理嗎?",
11377
"hu": "Biztos, hogy eltávolítja a kiválasztott Agentet?",
11378
"xloc": [
11366
- "default.handlebars->47->1261"
11379
+ "default.handlebars->47->1265"
11380
]
11381
},
11382
{
@@ -11390,7 +11403,7 @@
11403
"zh-cht": "你確定要卸載所選的{0}代理嗎?",
11404
"hu": "Biztos, hogy eltávolítja a(z) {0} Agentet?",
11405
"xloc": [
11393
- "default.handlebars->47->1260"
11406
+ "default.handlebars->47->1264"
11407
]
11408
},
11409
{
@@ -11417,7 +11430,7 @@
11430
"zh-cht": "你確定要{0}外掛嗎:{1}",
11431
"hu": "Biztosm, hogy {0} szeretné használni a következő beépülő modult: {1}",
11432
"xloc": [
11420
- "default.handlebars->47->3270"
11433
+ "default.handlebars->47->3276"
11434
]
11435
},
11436
{
@@ -11473,7 +11486,7 @@
11486
"hu": "örmény",
11487
"xloc": [
11488
"default-mobile.handlebars->11->124",
11476
- "default.handlebars->47->1747",
11489
+ "default.handlebars->47->1753",
11490
"login2.handlebars->7->21"
11491
]
11492
},
@@ -11665,7 +11678,7 @@
11678
"hu": "asszámi",
11679
"xloc": [
11680
"default-mobile.handlebars->11->125",
11668
- "default.handlebars->47->1748",
11681
+ "default.handlebars->47->1754",
11682
"login2.handlebars->7->22"
11683
]
11684
},
@@ -11773,8 +11786,8 @@
11786
"zh-cht": "Windows 助手 (.exe)",
11787
"hu": "Assistant Windows rendszerhez (.exe)",
11788
"xloc": [
11776
- "default.handlebars->47->627",
11777
- "default.handlebars->47->631"
11789
+ "default.handlebars->47->628",
11790
+ "default.handlebars->47->632"
11791
]
11792
},
11793
{
@@ -11829,7 +11842,7 @@
11842
"hu": "asztúriai",
11843
"xloc": [
11844
"default-mobile.handlebars->11->126",
11832
- "default.handlebars->47->1749",
11845
+ "default.handlebars->47->1755",
11846
"login2.handlebars->7->23"
11847
]
11848
},
@@ -11857,7 +11870,7 @@
11870
"zh-cht": "嘗試激活英特爾(R)AMT ACM模式",
11871
"hu": "Intel(R) AMT ACM üzemmód aktiválásának kísérlete",
11872
"xloc": [
11860
- "default.handlebars->47->2426"
11873
+ "default.handlebars->47->2432"
11874
]
11875
},
11876
{
@@ -11911,9 +11924,9 @@
11924
"default-mobile.handlebars->11->658",
11925
"default-mobile.handlebars->11->662",
11926
"default-mobile.handlebars->11->674",
11914
- "default.handlebars->47->1445",
11927
"default.handlebars->47->1449",
11916
- "default.handlebars->47->1461",
11928
+ "default.handlebars->47->1453",
11929
+ "default.handlebars->47->1465",
11930
"ssh.handlebars->3->21",
11931
"ssh.handlebars->3->22",
11932
"ssh.handlebars->3->5",
@@ -11944,7 +11957,7 @@
11957
"zh-cht": "認證軟體",
11958
"hu": "Hitelesítő alkalmazás beállítva",
11959
"xloc": [
11947
- "default.handlebars->47->2856"
11960
+ "default.handlebars->47->2862"
11961
]
11962
},
11963
{
@@ -11971,9 +11984,9 @@
11984
"zh-cht": "認證設備",
11985
"hu": "Hitelesítési eszköz",
11986
"xloc": [
11974
- "default.handlebars->47->1710",
11975
- "default.handlebars->47->1712",
11976
- "default.handlebars->47->1716"
11987
+ "default.handlebars->47->1716",
11988
+ "default.handlebars->47->1718",
11989
+ "default.handlebars->47->1722"
11990
]
11991
},
11992
{
@@ -12002,8 +12015,8 @@
12015
"xloc": [
12016
"default-mobile.handlebars->11->675",
12017
"default-mobile.handlebars->11->681",
12005
- "default.handlebars->47->1463",
12006
- "default.handlebars->47->1478"
12018
+ "default.handlebars->47->1467",
12019
+ "default.handlebars->47->1482"
12020
]
12021
},
12022
{
@@ -12034,10 +12047,10 @@
12047
"default-mobile.handlebars->11->311",
12048
"default-mobile.handlebars->11->70",
12049
"default-mobile.handlebars->11->73",
12037
- "default.handlebars->47->1706",
12038
- "default.handlebars->47->1708",
12039
- "default.handlebars->47->215",
12040
- "default.handlebars->47->220"
12050
+ "default.handlebars->47->1712",
12051
+ "default.handlebars->47->1714",
12052
+ "default.handlebars->47->216",
12053
+ "default.handlebars->47->221"
12054
]
12055
},
12056
{
@@ -12064,7 +12077,7 @@
12077
"zh-cht": "認證軟體啟動成功。",
12078
"hu": "Hitelesítő alkalmazás aktiválása sikeres.",
12079
"xloc": [
12067
- "default.handlebars->47->216"
12080
+ "default.handlebars->47->217"
12081
]
12082
},
12083
{
@@ -12091,7 +12104,7 @@
12104
"zh-cht": "認證軟體已刪除。",
12105
"hu": "Hitelesítő alkalmazás eltávolítva.",
12106
"xloc": [
12094
- "default.handlebars->47->221"
12107
+ "default.handlebars->47->222"
12108
]
12109
},
12110
{
@@ -12172,8 +12185,8 @@
12185
"zh-cht": "自動刪除",
12186
"hu": "Automatikus eltávolítás",
12187
"xloc": [
12175
- "default.handlebars->47->2062",
12176
- "default.handlebars->47->2566"
12188
+ "default.handlebars->47->2068",
12189
+ "default.handlebars->47->2572"
12190
]
12191
},
12192
{
@@ -12231,7 +12244,7 @@
12244
"zh-cht": "自動下載代理程序核心轉儲文件:“{0}”",
12245
"hu": "Agent core dump fájl automatikus letöltése: \\\"{0}\\\"",
12246
"xloc": [
12234
- "default.handlebars->47->2507"
12247
+ "default.handlebars->47->2513"
12248
]
12249
},
12250
{
@@ -12337,7 +12350,7 @@
12350
"zh-cht": "自動移除非活動設備",
12351
"hu": "Az inaktív eszközök automatikus eltávolítása",
12352
"xloc": [
12340
- "default.handlebars->47->2210"
12353
+ "default.handlebars->47->2216"
12354
]
12355
},
12356
{
@@ -12364,7 +12377,7 @@
12377
"zh-cht": "可用內存",
12378
"hu": "Elérhető memória",
12379
"xloc": [
12367
- "default.handlebars->47->3199"
12380
+ "default.handlebars->47->3205"
12381
]
12382
},
12383
{
@@ -12392,7 +12405,7 @@
12405
"hu": "azerbajdzsáni",
12406
"xloc": [
12407
"default-mobile.handlebars->11->127",
12395
- "default.handlebars->47->1750",
12408
+ "default.handlebars->47->1756",
12409
"login2.handlebars->7->24"
12410
]
12411
},
@@ -12423,9 +12436,9 @@
12436
"default-mobile.handlebars->11->733",
12437
"default-mobile.handlebars->11->737",
12438
"default-mobile.handlebars->11->741",
12426
- "default.handlebars->47->899",
12427
- "default.handlebars->47->903",
12428
- "default.handlebars->47->907"
12439
+ "default.handlebars->47->900",
12440
+ "default.handlebars->47->904",
12441
+ "default.handlebars->47->908"
12442
]
12443
},
12444
{
@@ -12453,7 +12466,7 @@
12466
"hu": "BIOS",
12467
"xloc": [
12468
"default-mobile.handlebars->11->809",
12456
- "default.handlebars->47->1609"
12469
+ "default.handlebars->47->1615"
12470
]
12471
},
12472
{
@@ -12571,7 +12584,7 @@
12584
"hu": "BackSpace",
12585
"xloc": [
12586
"default-mobile.handlebars->11->623",
12574
- "default.handlebars->47->1361"
12587
+ "default.handlebars->47->1365"
12588
]
12589
},
12590
{
@@ -12599,7 +12612,7 @@
12612
"hu": "Háttérben és interaktív módon",
12613
"xloc": [
12614
"agentinvite.handlebars->3->7",
12602
- "default.handlebars->47->584"
12615
+ "default.handlebars->47->585"
12616
]
12617
},
12618
{
@@ -12626,10 +12639,10 @@
12639
"zh-cht": "背景與互動",
12640
"hu": "Háttérben és interaktív módon",
12641
"xloc": [
12629
- "default.handlebars->47->2309",
12630
- "default.handlebars->47->2316",
12631
- "default.handlebars->47->547",
12632
- "default.handlebars->47->568"
12642
+ "default.handlebars->47->2315",
12643
+ "default.handlebars->47->2322",
12644
+ "default.handlebars->47->548",
12645
+ "default.handlebars->47->569"
12646
]
12647
},
12648
{
@@ -12657,11 +12670,11 @@
12670
"hu": "Csak háttérben",
12671
"xloc": [
12672
"agentinvite.handlebars->3->8",
12660
- "default.handlebars->47->2310",
12661
- "default.handlebars->47->2317",
12662
- "default.handlebars->47->548",
12663
- "default.handlebars->47->569",
12664
- "default.handlebars->47->585"
12673
+ "default.handlebars->47->2316",
12674
+ "default.handlebars->47->2323",
12675
+ "default.handlebars->47->549",
12676
+ "default.handlebars->47->570",
12677
+ "default.handlebars->47->586"
12678
]
12679
},
12680
{
@@ -12716,8 +12729,8 @@
12729
"zh-cht": "備用碼",
12730
"hu": "Biztonsági kódok generálva",
12731
"xloc": [
12719
- "default.handlebars->47->2859",
12720
- "default.handlebars->47->3086"
12732
+ "default.handlebars->47->2865",
12733
+ "default.handlebars->47->3092"
12734
]
12735
},
12736
{
@@ -12745,7 +12758,7 @@
12758
"hu": "A biztonsági kódok zároltak",
12759
"xloc": [
12760
"default-mobile.handlebars->11->63",
12748
- "default.handlebars->47->206"
12761
+ "default.handlebars->47->207"
12762
]
12763
},
12764
{
@@ -12772,7 +12785,7 @@
12785
"zh-cht": "備份路徑不能在 meshcentral-data 文件夾中設置,備份設置被忽略。",
12786
"hu": "A biztonsági mentés elérési útja nem állítható be a meshcentral-data mappában. A biztonsági mentés beállításai figyelmen kívül maradtak.",
12787
"xloc": [
12775
- "default.handlebars->47->104"
12788
+ "default.handlebars->47->105"
12789
]
12790
},
12791
{
@@ -12799,7 +12812,7 @@
12812
"zh-cht": "錯誤的簽名",
12813
"hu": "Rossz aláírás",
12814
"xloc": [
12802
- "default.handlebars->47->3181"
12815
+ "default.handlebars->47->3187"
12816
]
12817
},
12818
{
@@ -12826,7 +12839,7 @@
12839
"zh-cht": "錯誤的網絡憑證",
12840
"hu": "Rossz web tanúsítvány",
12841
"xloc": [
12829
- "default.handlebars->47->3180"
12842
+ "default.handlebars->47->3186"
12843
]
12844
},
12845
{
@@ -12854,7 +12867,7 @@
12867
"hu": "baszk",
12868
"xloc": [
12869
"default-mobile.handlebars->11->128",
12857
- "default.handlebars->47->1751",
12870
+ "default.handlebars->47->1757",
12871
"login2.handlebars->7->25"
12872
]
12873
},
@@ -12882,7 +12895,7 @@
12895
"zh-cht": "批處理文件上傳",
12896
"hu": "Kötegelt fájl feltölés",
12897
"xloc": [
12885
- "default.handlebars->47->744"
12898
+ "default.handlebars->47->745"
12899
]
12900
},
12901
{
@@ -12936,7 +12949,7 @@
12949
"zh-cht": "將{0}個文件批量上傳到文件夾{1}",
12950
"hu": "{0} fájl kötegelt feltöltése a(z) {1} mappába",
12951
"xloc": [
12939
- "default.handlebars->47->2506"
12952
+ "default.handlebars->47->2512"
12953
]
12954
},
12955
{
@@ -12964,7 +12977,7 @@
12977
"hu": "fehérorosz",
12978
"xloc": [
12979
"default-mobile.handlebars->11->130",
12967
- "default.handlebars->47->1753",
12980
+ "default.handlebars->47->1759",
12981
"login2.handlebars->7->27"
12982
]
12983
},
@@ -12993,7 +13006,7 @@
13006
"hu": "bengáli",
13007
"xloc": [
13008
"default-mobile.handlebars->11->131",
12996
- "default.handlebars->47->1754",
13009
+ "default.handlebars->47->1760",
13010
"login2.handlebars->7->28"
13011
]
13012
},
@@ -13056,7 +13069,13 @@
13069
"nl": "BitLocker",
13070
"xloc": [
13071
"default-mobile.handlebars->11->756",
13059
- "default.handlebars->47->922"
13072
+ "default.handlebars->47->925"
13073
+ ]
13074
+ },
13075
+ {
13076
+ "en": "BitLocker Information",
13077
+ "xloc": [
13078
+ "default.handlebars->47->1075"
13079
]
13080
},
13081
{
@@ -13084,7 +13103,7 @@
13103
"hu": "Rendszerbetöltő",
13104
"xloc": [
13105
"default-mobile.handlebars->11->769",
13087
- "default.handlebars->47->1559"
13106
+ "default.handlebars->47->1565"
13107
]
13108
},
13109
{
@@ -13112,7 +13131,7 @@
13131
"hu": "bosznia",
13132
"xloc": [
13133
"default-mobile.handlebars->11->132",
13115
- "default.handlebars->47->1755",
13134
+ "default.handlebars->47->1761",
13135
"login2.handlebars->7->29"
13136
]
13137
},
@@ -13141,7 +13160,7 @@
13160
"hu": "breton",
13161
"xloc": [
13162
"default-mobile.handlebars->11->133",
13144
- "default.handlebars->47->1756",
13163
+ "default.handlebars->47->1762",
13164
"login2.handlebars->7->30"
13165
]
13166
},
@@ -13169,7 +13188,7 @@
13188
"zh-cht": "廣播",
13189
"hu": "Broadcast üzenet...",
13190
"xloc": [
13172
- "default.handlebars->47->2754",
13191
+ "default.handlebars->47->2760",
13192
"default.handlebars->container->column_l->p4->3->1->0->3->1"
13193
]
13194
},
@@ -13197,7 +13216,7 @@
13216
"zh-cht": "廣播消息",
13217
"hu": "Broadcast üzenet",
13218
"xloc": [
13200
- "default.handlebars->47->2670"
13219
+ "default.handlebars->47->2676"
13220
]
13221
},
13222
{
@@ -13224,7 +13243,7 @@
13243
"zh-cht": "向所有連接的用戶廣播消息。",
13244
"hu": "Üzenet küldése az összes csatlakoztatott felhasználónak.",
13245
"xloc": [
13227
- "default.handlebars->47->2665"
13246
+ "default.handlebars->47->2671"
13247
]
13248
},
13249
{
@@ -13251,7 +13270,7 @@
13270
"zh-cht": "瀏覽器",
13271
"hu": "Böngésző",
13272
"xloc": [
13254
- "default.handlebars->47->3060"
13273
+ "default.handlebars->47->3066"
13274
]
13275
},
13276
{
@@ -13334,7 +13353,7 @@
13353
"hu": "bolgár",
13354
"xloc": [
13355
"default-mobile.handlebars->11->129",
13337
- "default.handlebars->47->1752",
13356
+ "default.handlebars->47->1758",
13357
"login2.handlebars->7->26"
13358
]
13359
},
@@ -13363,7 +13382,7 @@
13382
"hu": "burmai",
13383
"xloc": [
13384
"default-mobile.handlebars->11->134",
13366
- "default.handlebars->47->1757",
13385
+ "default.handlebars->47->1763",
13386
"login2.handlebars->7->31"
13387
]
13388
},
@@ -13391,7 +13410,7 @@
13410
"zh-cht": "默認情況下,非活動設備將在 1 天后移除。",
13411
"hu": "Alapértelmezés szerint az inaktív eszközök 1 nap után eltávolításra kerülnek.",
13412
"xloc": [
13394
- "default.handlebars->47->2212"
13413
+ "default.handlebars->47->2218"
13414
]
13415
},
13416
{
@@ -13418,7 +13437,7 @@
13437
"zh-cht": "默認情況下,不活動的設備將在 {0} 天后被移除。",
13438
"hu": "Alapértelmezés szerint az inaktív eszközök {0} nap után eltávolításra kerülnek.",
13439
"xloc": [
13421
- "default.handlebars->47->2213"
13440
+ "default.handlebars->47->2219"
13441
]
13442
},
13443
{
@@ -13453,7 +13472,7 @@
13472
"zh-cht": "字節輸入",
13473
"hu": "Fogadott Byte-ok",
13474
"xloc": [
13456
- "default.handlebars->47->3056"
13475
+ "default.handlebars->47->3062"
13476
]
13477
},
13478
{
@@ -13480,7 +13499,7 @@
13499
"zh-cht": "字節輸出",
13500
"hu": "Küldött Byte-ok",
13501
"xloc": [
13483
- "default.handlebars->47->3057"
13502
+ "default.handlebars->47->3063"
13503
]
13504
},
13505
{
@@ -13549,7 +13568,7 @@
13568
"hu": "CCM",
13569
"xloc": [
13570
"default-mobile.handlebars->11->503",
13552
- "default.handlebars->47->875"
13571
+ "default.handlebars->47->876"
13572
]
13573
},
13574
{
@@ -13576,7 +13595,7 @@
13595
"zh-cht": "CCM模式",
13596
"hu": "CCM mode",
13597
"xloc": [
13579
- "default.handlebars->47->2165"
13598
+ "default.handlebars->47->2171"
13599
]
13600
},
13601
{
@@ -13604,9 +13623,9 @@
13623
"hu": "CIRA",
13624
"xloc": [
13625
"default-mobile.handlebars->11->464",
13607
- "default.handlebars->47->3206",
13608
- "default.handlebars->47->402",
13609
- "default.handlebars->47->682"
13626
+ "default.handlebars->47->3212",
13627
+ "default.handlebars->47->403",
13628
+ "default.handlebars->47->683"
13629
]
13630
},
13631
{
@@ -13633,7 +13652,7 @@
13652
"zh-cht": "CIRA伺服器",
13653
"hu": "CIRA Kiszolgáló",
13654
"xloc": [
13636
- "default.handlebars->47->3254"
13655
+ "default.handlebars->47->3260"
13656
]
13657
},
13658
{
@@ -13660,7 +13679,7 @@
13679
"zh-cht": "CIRA伺服器指令",
13680
"hu": "CIRA kiszolgáló parancsok",
13681
"xloc": [
13663
- "default.handlebars->47->3255"
13682
+ "default.handlebars->47->3261"
13683
]
13684
},
13685
{
@@ -13687,7 +13706,7 @@
13706
"zh-cht": "當服務器處於僅 LAN 或僅 WAN 模式時,CIRA 本地 FQDN 將被忽略。",
13707
"hu": "A CIRA helyi FQDN-eket figyelmen kívül hagyja, ha a kiszolgáló csak LAN vagy csak WAN üzemmódban van.",
13708
"xloc": [
13690
- "default.handlebars->47->90"
13709
+ "default.handlebars->47->91"
13710
]
13711
},
13712
{
@@ -13714,7 +13733,7 @@
13733
"zh-cht": "CIRA設置",
13734
"hu": "CIRA beállítás",
13735
"xloc": [
13717
- "default.handlebars->47->2173"
13736
+ "default.handlebars->47->2179"
13737
]
13738
},
13739
{
@@ -13742,8 +13761,8 @@
13761
"hu": "CPU",
13762
"xloc": [
13763
"default-mobile.handlebars->11->815",
13745
- "default.handlebars->47->1615",
13746
- "default.handlebars->47->3230",
13764
+ "default.handlebars->47->1621",
13765
+ "default.handlebars->47->3236",
13766
"default.handlebars->container->column_l->p40->3->1->p40type->5"
13767
]
13768
},
@@ -13771,7 +13790,7 @@
13790
"zh-cht": "CPU負載",
13791
"hu": "CPU terhelés",
13792
"xloc": [
13774
- "default.handlebars->47->3195"
13793
+ "default.handlebars->47->3201"
13794
]
13795
},
13796
{
@@ -13798,7 +13817,7 @@
13817
"zh-cht": "最近15分鐘的CPU負載",
13818
"hu": "CPU terhelés az elmúlt 15 percben",
13819
"xloc": [
13801
- "default.handlebars->47->3198"
13820
+ "default.handlebars->47->3204"
13821
]
13822
},
13823
{
@@ -13825,7 +13844,7 @@
13844
"zh-cht": "最近5分鐘的CPU負載",
13845
"hu": "CPU terhelés az elmúlt 5 percben",
13846
"xloc": [
13828
- "default.handlebars->47->3197"
13847
+ "default.handlebars->47->3203"
13848
]
13849
},
13850
{
@@ -13852,7 +13871,7 @@
13871
"zh-cht": "最近一分鐘的CPU負載",
13872
"hu": "CPU terhelés az utolsó percben",
13873
"xloc": [
13855
- "default.handlebars->47->3196"
13874
+ "default.handlebars->47->3202"
13875
]
13876
},
13877
{
@@ -13879,8 +13898,8 @@
13898
"zh-cht": "CR+LF",
13899
"hu": "CR+LF",
13900
"xloc": [
13882
- "default.handlebars->47->1441",
13883
- "default.handlebars->47->1472",
13901
+ "default.handlebars->47->1445",
13902
+ "default.handlebars->47->1476",
13903
"default.handlebars->container->column_l->p12->termTable->1->1->4->1->1->terminalSettingsButtons",
13904
"sharing.handlebars->11->25",
13905
"sharing.handlebars->11->39",
@@ -13911,7 +13930,7 @@
13930
"zh-cht": "CSV",
13931
"hu": "CSV",
13932
"xloc": [
13914
- "default.handlebars->47->2583"
13933
+ "default.handlebars->47->2589"
13934
]
13935
},
13936
{
@@ -13938,9 +13957,9 @@
13957
"zh-cht": "CSV格式",
13958
"hu": "CSV Formátum",
13959
"xloc": [
13941
- "default.handlebars->47->2587",
13942
- "default.handlebars->47->2657",
13943
- "default.handlebars->47->753"
13960
+ "default.handlebars->47->2593",
13961
+ "default.handlebars->47->2663",
13962
+ "default.handlebars->47->754"
13963
]
13964
},
13965
{
@@ -13991,7 +14010,7 @@
14010
"zh-cht": "呼叫錯誤",
14011
"hu": "Hívás hiba",
14012
"xloc": [
13994
- "default.handlebars->47->3271"
14013
+ "default.handlebars->47->3277"
14014
]
14015
},
14016
{
@@ -14001,8 +14020,8 @@
14020
"nl": "CallMeBot",
14021
"pl": "CallMeBot",
14022
"xloc": [
14004
- "default.handlebars->47->1679",
14005
- "default.handlebars->47->2894"
14023
+ "default.handlebars->47->1685",
14024
+ "default.handlebars->47->2900"
14025
]
14026
},
14027
{
@@ -14029,7 +14048,7 @@
14048
"zh-cht": "不能有超過 4 個 CIRA 本地 FQDN。忽略價值。",
14049
"hu": "Nem lehet több mint 4 CIRA helyi FQDN. Érték figyelmen kívül hagyása.",
14050
"xloc": [
14032
- "default.handlebars->47->91"
14051
+ "default.handlebars->47->92"
14052
]
14053
},
14054
{
@@ -14059,9 +14078,9 @@
14078
"agent-translations.json",
14079
"default-mobile.handlebars->11->320",
14080
"default-mobile.handlebars->dialog->idx_dlgButtonBar",
14062
- "default.handlebars->47->2029",
14063
- "default.handlebars->47->3260",
14064
- "default.handlebars->47->520",
14081
+ "default.handlebars->47->2035",
14082
+ "default.handlebars->47->3266",
14083
+ "default.handlebars->47->521",
14084
"default.handlebars->container->dialog->idx_dlgButtonBar",
14085
"login-mobile.handlebars->dialog->idx_dlgButtonBar",
14086
"login.handlebars->dialog->idx_dlgButtonBar",
@@ -14175,10 +14194,10 @@
14194
"default-mobile.handlebars->11->833",
14195
"default-mobile.handlebars->11->838",
14196
"default-mobile.handlebars->11->840",
14178
- "default.handlebars->47->1627",
14197
"default.handlebars->47->1633",
14180
- "default.handlebars->47->1638",
14181
- "default.handlebars->47->1640"
14198
+ "default.handlebars->47->1639",
14199
+ "default.handlebars->47->1644",
14200
+ "default.handlebars->47->1646"
14201
]
14202
},
14203
{
@@ -14207,8 +14226,8 @@
14226
"xloc": [
14227
"default-mobile.handlebars->11->825",
14228
"default-mobile.handlebars->11->831",
14210
- "default.handlebars->47->1625",
14211
- "default.handlebars->47->1631"
14229
+ "default.handlebars->47->1631",
14230
+ "default.handlebars->47->1637"
14231
]
14232
},
14233
{
@@ -14236,7 +14255,7 @@
14255
"hu": "katalán",
14256
"xloc": [
14257
"default-mobile.handlebars->11->135",
14239
- "default.handlebars->47->1758",
14258
+ "default.handlebars->47->1764",
14259
"login2.handlebars->7->32"
14260
]
14261
},
@@ -14264,7 +14283,7 @@
14283
"zh-cht": "在這裡為中心顯示地圖",
14284
"hu": "Térkép középpont",
14285
"xloc": [
14267
- "default.handlebars->47->828"
14286
+ "default.handlebars->47->829"
14287
]
14288
},
14289
{
@@ -14316,8 +14335,8 @@
14335
"hu": "A tanúsítvány {0} napon belül lejár",
14336
"xloc": [
14337
"default-mobile.handlebars->11->61",
14319
- "default.handlebars->47->113",
14320
- "default.handlebars->47->114"
14338
+ "default.handlebars->47->114",
14339
+ "default.handlebars->47->115"
14340
]
14341
},
14342
{
@@ -14345,7 +14364,7 @@
14364
"hu": "chamorro",
14365
"xloc": [
14366
"default-mobile.handlebars->11->136",
14348
- "default.handlebars->47->1759",
14367
+ "default.handlebars->47->1765",
14368
"login2.handlebars->7->33"
14369
]
14370
},
@@ -14402,7 +14421,7 @@
14421
"zh-cht": "更改{0}的電郵",
14422
"hu": "{0} e-mail-címének módosítása",
14423
"xloc": [
14405
- "default.handlebars->47->2936"
14424
+ "default.handlebars->47->2942"
14425
]
14426
},
14427
{
@@ -14429,9 +14448,9 @@
14448
"zh-cht": "更改群",
14449
"hu": "Csoport módosítása",
14450
"xloc": [
14432
- "default.handlebars->47->1269",
14433
- "default.handlebars->47->1270",
14434
- "default.handlebars->47->991"
14451
+ "default.handlebars->47->1273",
14452
+ "default.handlebars->47->1274",
14453
+ "default.handlebars->47->994"
14454
]
14455
},
14456
{
@@ -14459,8 +14478,8 @@
14478
"hu": "Jelszó módosítása",
14479
"xloc": [
14480
"default-mobile.handlebars->11->328",
14462
- "default.handlebars->47->1975",
14463
- "default.handlebars->47->2880"
14481
+ "default.handlebars->47->1981",
14482
+ "default.handlebars->47->2886"
14483
]
14484
},
14485
{
@@ -14487,7 +14506,7 @@
14506
"zh-cht": "更改{0}的密碼",
14507
"hu": "Jelszó módosítása: {0}",
14508
"xloc": [
14490
- "default.handlebars->47->2945"
14509
+ "default.handlebars->47->2951"
14510
]
14511
},
14512
{
@@ -14514,7 +14533,7 @@
14533
"zh-cht": "更改{0}的真實名稱",
14534
"hu": "{0} felhasználó teljes nevének módosítása",
14535
"xloc": [
14517
- "default.handlebars->47->2931"
14536
+ "default.handlebars->47->2937"
14537
]
14538
},
14539
{
@@ -14675,7 +14694,7 @@
14694
"zh-cht": "更改該用戶的密碼",
14695
"hu": "A felhasználó jelszavának módosítása",
14696
"xloc": [
14678
- "default.handlebars->47->2879"
14697
+ "default.handlebars->47->2885"
14698
]
14699
},
14700
{
@@ -14729,7 +14748,7 @@
14748
"zh-cht": "在此處更改你的帳戶電郵地址。",
14749
"hu": "Itt módosíthatja fiókja e-mail címét.",
14750
"xloc": [
14732
- "default.handlebars->47->1962"
14751
+ "default.handlebars->47->1968"
14752
]
14753
},
14754
{
@@ -14756,7 +14775,7 @@
14775
"zh-cht": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。",
14776
"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.",
14777
"xloc": [
14759
- "default.handlebars->47->1968"
14778
+ "default.handlebars->47->1974"
14779
]
14780
},
14781
{
@@ -14783,7 +14802,7 @@
14802
"zh-cht": "帳戶憑證已更改",
14803
"hu": "A fiók hitelesítő adatai megváltoztak",
14804
"xloc": [
14786
- "default.handlebars->47->2478"
14805
+ "default.handlebars->47->2484"
14806
]
14807
},
14808
{
@@ -14810,7 +14829,7 @@
14829
"zh-cht": "將帳戶顯示名稱更改為 {0}。",
14830
"hu": "A fiók megjelenített neve {0}-re változott.",
14831
"xloc": [
14813
- "default.handlebars->47->2530"
14832
+ "default.handlebars->47->2536"
14833
]
14834
},
14835
{
@@ -14837,8 +14856,8 @@
14856
"zh-cht": "{1}組中的設備{0}已更改:{2}",
14857
"hu": "{0} eszközt a {1} csoportból áthelyezésre került {2} csoportba",
14858
"xloc": [
14840
- "default.handlebars->47->2462",
14841
- "default.handlebars->47->2543"
14859
+ "default.handlebars->47->2468",
14860
+ "default.handlebars->47->2549"
14861
]
14862
},
14863
{
@@ -14865,7 +14884,7 @@
14884
"zh-cht": "語言從{1}更改為{2}",
14885
"hu": "A nyelv megváltozott. régi nyelv: {1}, új nyelv: {2}",
14886
"xloc": [
14868
- "default.handlebars->47->2406"
14887
+ "default.handlebars->47->2412"
14888
]
14889
},
14890
{
@@ -14892,8 +14911,8 @@
14911
"zh-cht": "已更改{0}的用戶設備權限",
14912
"hu": "Módosult a(z) {0} felhasználói eszközjogai",
14913
"xloc": [
14895
- "default.handlebars->47->2464",
14896
- "default.handlebars->47->2485"
14914
+ "default.handlebars->47->2470",
14915
+ "default.handlebars->47->2491"
14916
]
14917
},
14918
{
@@ -14945,7 +14964,7 @@
14964
"hu": "A nyelv megváltoztatásához az oldal frissítése szükséges!",
14965
"xloc": [
14966
"default-mobile.handlebars->11->303",
14948
- "default.handlebars->47->1926"
14967
+ "default.handlebars->47->1932"
14968
]
14969
},
14970
{
@@ -14972,12 +14991,12 @@
14991
"zh-cht": "聊天",
14992
"hu": "Csevegés",
14993
"xloc": [
14975
- "default.handlebars->47->1099",
14976
- "default.handlebars->47->1124",
14977
- "default.handlebars->47->2604",
14978
- "default.handlebars->47->2875",
14979
- "default.handlebars->47->2876",
14980
- "default.handlebars->47->980"
14994
+ "default.handlebars->47->1103",
14995
+ "default.handlebars->47->1128",
14996
+ "default.handlebars->47->2610",
14997
+ "default.handlebars->47->2881",
14998
+ "default.handlebars->47->2882",
14999
+ "default.handlebars->47->983"
15000
]
15001
},
15002
{
@@ -15006,8 +15025,8 @@
15025
"xloc": [
15026
"default-mobile.handlebars->11->915",
15027
"default-mobile.handlebars->11->935",
15009
- "default.handlebars->47->2244",
15010
- "default.handlebars->47->2282"
15028
+ "default.handlebars->47->2250",
15029
+ "default.handlebars->47->2288"
15030
]
15031
},
15032
{
@@ -15035,7 +15054,7 @@
15054
"hu": "Csevegés kezdeményezés, kattintson ide az elfogadáshoz.",
15055
"xloc": [
15056
"default-mobile.handlebars->11->967",
15038
- "default.handlebars->47->3145"
15057
+ "default.handlebars->47->3151"
15058
]
15059
},
15060
{
@@ -15090,7 +15109,7 @@
15109
"hu": "csecsen",
15110
"xloc": [
15111
"default-mobile.handlebars->11->137",
15093
- "default.handlebars->47->1760",
15112
+ "default.handlebars->47->1766",
15113
"login2.handlebars->7->34"
15114
]
15115
},
@@ -15118,7 +15137,7 @@
15137
"zh-cht": "檢查並單擊確定以清除錯誤日誌。",
15138
"hu": "Jelölje be, és kattintson az OK gombra a hibanapló törléséhez.",
15139
"xloc": [
15121
- "default.handlebars->47->200"
15140
+ "default.handlebars->47->201"
15141
]
15142
},
15143
{
@@ -15145,7 +15164,7 @@
15164
"zh-cht": "檢查並單擊確定以開始伺服器自我更新。",
15165
"hu": "Ellenőrizze le és kattintson az OK gombra a kiszolgáló önfrissítésének elindításához.",
15166
"xloc": [
15148
- "default.handlebars->47->195"
15167
+ "default.handlebars->47->196"
15168
]
15169
},
15170
{
@@ -15184,7 +15203,7 @@
15203
"de": "Prüfen Sie Ihre Messenger-App und geben Sie den Verifikationscode ein.",
15204
"es": "Verifica el mensaje en la aplicación e ingresa el código de verificación recibido.",
15205
"xloc": [
15187
- "default.handlebars->47->252"
15206
+ "default.handlebars->47->253"
15207
]
15208
},
15209
{
@@ -15211,7 +15230,7 @@
15230
"zh-cht": "檢查你的電話並輸入驗證碼。",
15231
"hu": "Ellenőrizze telefonját, és írja be az megerősítő kódot.",
15232
"xloc": [
15214
- "default.handlebars->47->249"
15233
+ "default.handlebars->47->250"
15234
]
15235
},
15236
{
@@ -15238,8 +15257,8 @@
15257
"zh-cht": "檢查...",
15258
"hu": "Ellenőrzés...",
15259
"xloc": [
15241
- "default.handlebars->47->1726",
15242
- "default.handlebars->47->3265"
15260
+ "default.handlebars->47->1732",
15261
+ "default.handlebars->47->3271"
15262
]
15263
},
15264
{
@@ -15267,7 +15286,7 @@
15286
"hu": "kínai",
15287
"xloc": [
15288
"default-mobile.handlebars->11->138",
15270
- "default.handlebars->47->1761",
15289
+ "default.handlebars->47->1767",
15290
"login2.handlebars->7->35"
15291
]
15292
},
@@ -15296,7 +15315,7 @@
15315
"hu": "kínai (Hongkong)",
15316
"xloc": [
15317
"default-mobile.handlebars->11->139",
15299
- "default.handlebars->47->1762",
15318
+ "default.handlebars->47->1768",
15319
"login2.handlebars->7->36"
15320
]
15321
},
@@ -15325,7 +15344,7 @@
15344
"hu": "kínai (Kínai Népköztársaság)",
15345
"xloc": [
15346
"default-mobile.handlebars->11->140",
15328
- "default.handlebars->47->1763",
15347
+ "default.handlebars->47->1769",
15348
"login2.handlebars->7->37"
15349
]
15350
},
@@ -15354,7 +15373,7 @@
15373
"hu": "kínai (egyszerűsített)",
15374
"xloc": [
15375
"default-mobile.handlebars->11->300",
15357
- "default.handlebars->47->1923",
15376
+ "default.handlebars->47->1929",
15377
"login2.handlebars->7->197"
15378
]
15379
},
@@ -15383,7 +15402,7 @@
15402
"hu": "kínai (Szingapúr)",
15403
"xloc": [
15404
"default-mobile.handlebars->11->141",
15386
- "default.handlebars->47->1764",
15405
+ "default.handlebars->47->1770",
15406
"login2.handlebars->7->38"
15407
]
15408
},
@@ -15412,7 +15431,7 @@
15431
"hu": "kínai (Tajvan)",
15432
"xloc": [
15433
"default-mobile.handlebars->11->142",
15415
- "default.handlebars->47->1765",
15434
+ "default.handlebars->47->1771",
15435
"login2.handlebars->7->39"
15436
]
15437
},
@@ -15441,7 +15460,7 @@
15460
"hu": "kínai (hagyományos)",
15461
"xloc": [
15462
"default-mobile.handlebars->11->301",
15444
- "default.handlebars->47->1924",
15463
+ "default.handlebars->47->1930",
15464
"login2.handlebars->7->198"
15465
]
15466
},
@@ -15498,7 +15517,7 @@
15517
"hu": "csuvas",
15518
"xloc": [
15519
"default-mobile.handlebars->11->143",
15501
- "default.handlebars->47->1766",
15520
+ "default.handlebars->47->1772",
15521
"login2.handlebars->7->40"
15522
]
15523
},
@@ -15557,11 +15576,11 @@
15576
"default-mobile.handlebars->11->712",
15577
"default-mobile.handlebars->11->80",
15578
"default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->5",
15560
- "default.handlebars->47->1513",
15561
- "default.handlebars->47->1515",
15562
- "default.handlebars->47->1517",
15579
"default.handlebars->47->1519",
15564
- "default.handlebars->47->2400",
15580
+ "default.handlebars->47->1521",
15581
+ "default.handlebars->47->1523",
15582
+ "default.handlebars->47->1525",
15583
+ "default.handlebars->47->2406",
15584
"default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7",
15585
"default.handlebars->container->column_l->p41->3->1",
15586
"messenger.handlebars->xbottom->1->1->0->5",
@@ -15596,7 +15615,7 @@
15615
"hu": "RDP hitelesítő adatok törlése?",
15616
"xloc": [
15617
"default-mobile.handlebars->11->608",
15599
- "default.handlebars->47->1315"
15618
+ "default.handlebars->47->1319"
15619
]
15620
},
15621
{
@@ -15624,7 +15643,7 @@
15643
"hu": "SSH hitelesítő adatok törlése?",
15644
"xloc": [
15645
"default-mobile.handlebars->11->606",
15627
- "default.handlebars->47->1313"
15646
+ "default.handlebars->47->1317"
15647
]
15648
},
15649
{
@@ -15651,7 +15670,7 @@
15670
"zh-cht": "清除保安編碼",
15671
"hu": "Tokenek törlése",
15672
"xloc": [
15654
- "default.handlebars->47->229"
15673
+ "default.handlebars->47->230"
15674
]
15675
},
15676
{
@@ -15678,8 +15697,8 @@
15697
"zh-cht": "清除代理核心",
15698
"hu": "Agent Core törlése",
15699
"xloc": [
15681
- "default.handlebars->47->706",
15682
- "default.handlebars->47->748"
15700
+ "default.handlebars->47->707",
15701
+ "default.handlebars->47->749"
15702
]
15703
},
15704
{
@@ -15706,7 +15725,7 @@
15725
"zh-cht": "清除所選設備上的代理核心?",
15726
"hu": "Agent Core törlése a kijelölt eszköz(ök)ön?",
15727
"xloc": [
15709
- "default.handlebars->47->747"
15728
+ "default.handlebars->47->748"
15729
]
15730
},
15731
{
@@ -15734,7 +15753,7 @@
15753
"hu": "Összes törlése",
15754
"xloc": [
15755
"default-mobile.handlebars->11->950",
15737
- "default.handlebars->47->3128"
15756
+ "default.handlebars->47->3134"
15757
]
15758
},
15759
{
@@ -15762,7 +15781,7 @@
15781
"hu": "Szűrő törlése",
15782
"xloc": [
15783
"default-mobile.handlebars->11->400",
15765
- "default.handlebars->47->358"
15784
+ "default.handlebars->47->359"
15785
]
15786
},
15787
{
@@ -15790,7 +15809,7 @@
15809
"hu": "Core törlése",
15810
"xloc": [
15811
"default-mobile.handlebars->11->855",
15793
- "default.handlebars->47->1656"
15812
+ "default.handlebars->47->1662"
15813
]
15814
},
15815
{
@@ -15817,7 +15836,7 @@
15836
"zh-cht": "從應用程序中清除秘密,然後重試。你只有幾分鐘的時間來輸入正確的代碼。",
15837
"hu": "Törölje ki a titkos kulcsot az alkalmazásból, és próbálja újra. Csak néhány perce van a megfelelő kód megadására.",
15838
"xloc": [
15820
- "default.handlebars->47->219"
15839
+ "default.handlebars->47->220"
15840
]
15841
},
15842
{
@@ -15845,7 +15864,7 @@
15864
"hu": "Törölje ezt az értesítést",
15865
"xloc": [
15866
"default-mobile.handlebars->11->949",
15848
- "default.handlebars->47->3127"
15867
+ "default.handlebars->47->3133"
15868
]
15869
},
15870
{
@@ -15953,8 +15972,8 @@
15972
"zh-cht": "單擊此處編輯裝置群名稱",
15973
"hu": "Kattintson ide az eszközcsoport nevének szerkesztéséhez",
15974
"xloc": [
15956
- "default.handlebars->47->2043",
15957
- "default.handlebars->47->2343"
15975
+ "default.handlebars->47->2049",
15976
+ "default.handlebars->47->2349"
15977
]
15978
},
15979
{
@@ -15981,7 +16000,7 @@
16000
"zh-cht": "單擊此處編輯伺服器端裝置名稱",
16001
"hu": "Kattintson ide a kiszolgáló-oldali eszköznév szerkesztéséhez",
16002
"xloc": [
15984
- "default.handlebars->47->844"
16003
+ "default.handlebars->47->845"
16004
]
16005
},
16006
{
@@ -16008,7 +16027,7 @@
16027
"zh-cht": "單擊此處編輯用戶群名稱",
16028
"hu": "Kattintson ide a felhasználói csoport nevének szerkesztéséhez",
16029
"xloc": [
16011
- "default.handlebars->47->2727"
16030
+ "default.handlebars->47->2733"
16031
]
16032
},
16033
{
@@ -16143,7 +16162,7 @@
16162
"hu": "Kattintson az OK gombra, ha megerősítő e-mailt szeretne küldeni a következő címre:",
16163
"xloc": [
16164
"default-mobile.handlebars->11->313",
16146
- "default.handlebars->47->1959"
16165
+ "default.handlebars->47->1965"
16166
]
16167
},
16168
{
@@ -16250,7 +16269,7 @@
16269
"hu": "Client Control Mode (CCM)",
16270
"xloc": [
16271
"default-mobile.handlebars->11->793",
16253
- "default.handlebars->47->1593"
16272
+ "default.handlebars->47->1599"
16273
]
16274
},
16275
{
@@ -16277,7 +16296,7 @@
16296
"zh-cht": "客戶編號",
16297
"hu": "Client ID",
16298
"xloc": [
16280
- "default.handlebars->47->2022"
16299
+ "default.handlebars->47->2028"
16300
]
16301
},
16302
{
@@ -16304,7 +16323,7 @@
16323
"zh-cht": "客戶端啟動的遠程訪問",
16324
"hu": "Ügyfél által kezdeményezett távoli elérés",
16325
"xloc": [
16307
- "default.handlebars->47->2172"
16326
+ "default.handlebars->47->2178"
16327
]
16328
},
16329
{
@@ -16331,7 +16350,7 @@
16350
"zh-cht": "客戶機密",
16351
"hu": "Client Secret",
16352
"xloc": [
16334
- "default.handlebars->47->2023"
16353
+ "default.handlebars->47->2029"
16354
]
16355
},
16356
{
@@ -16388,11 +16407,11 @@
16407
"xloc": [
16408
"agent-translations.json",
16409
"default-mobile.handlebars->11->78",
16391
- "default.handlebars->47->1425",
16392
- "default.handlebars->47->1489",
16393
- "default.handlebars->47->227",
16394
- "default.handlebars->47->235",
16395
- "default.handlebars->47->3259",
16410
+ "default.handlebars->47->1429",
16411
+ "default.handlebars->47->1495",
16412
+ "default.handlebars->47->228",
16413
+ "default.handlebars->47->236",
16414
+ "default.handlebars->47->3265",
16415
"sharing.handlebars->11->52"
16416
]
16417
},
@@ -16420,7 +16439,7 @@
16439
"zh-cht": "已關閉桌面多路復用會話 \\\"{0}\\\",{1} 秒",
16440
"hu": "Lezárt asztali multiplex munkamenet \\\"{0}\\\", {1} másodperc",
16441
"xloc": [
16423
- "default.handlebars->47->2550"
16442
+ "default.handlebars->47->2556"
16443
]
16444
},
16445
{
@@ -16447,7 +16466,7 @@
16466
"zh-cht": "封閉式桌面多路復用會話,{0}秒",
16467
"hu": "Lezárt asztali multiplex munkamenet, {0} másodperc",
16468
"xloc": [
16450
- "default.handlebars->47->2411"
16469
+ "default.handlebars->47->2417"
16470
]
16471
},
16472
{
@@ -16474,7 +16493,7 @@
16493
"zh-cht": "碼",
16494
"hu": "Code",
16495
"xloc": [
16477
- "default.handlebars->47->318"
16496
+ "default.handlebars->47->319"
16497
]
16498
},
16499
{
@@ -16583,7 +16602,7 @@
16602
"hu": "Parancs",
16603
"xloc": [
16604
"agentinvite.handlebars->3->14",
16586
- "default.handlebars->47->646"
16605
+ "default.handlebars->47->647"
16606
]
16607
},
16608
{
@@ -16610,7 +16629,7 @@
16629
"zh-cht": "命令行",
16630
"hu": "Parancssor",
16631
"xloc": [
16613
- "default.handlebars->47->122"
16632
+ "default.handlebars->47->123"
16633
]
16634
},
16635
{
@@ -16638,9 +16657,9 @@
16657
"hu": "Parancsok",
16658
"xloc": [
16659
"default-mobile.handlebars->11->937",
16641
- "default.handlebars->47->1101",
16642
- "default.handlebars->47->1126",
16643
- "default.handlebars->47->2284"
16660
+ "default.handlebars->47->1105",
16661
+ "default.handlebars->47->1130",
16662
+ "default.handlebars->47->2290"
16663
]
16664
},
16665
{
@@ -16653,7 +16672,7 @@
16672
"hu": "Parancsok fájlból",
16673
"de": "Befehle aus Datei",
16674
"xloc": [
16656
- "default.handlebars->47->773"
16675
+ "default.handlebars->47->774"
16676
]
16677
},
16678
{
@@ -16666,7 +16685,7 @@
16685
"hu": "Parancsok a kiszolgálón lévő fájlból",
16686
"de": "Befehle aus Datei vom Server",
16687
"xloc": [
16669
- "default.handlebars->47->774"
16688
+ "default.handlebars->47->775"
16689
]
16690
},
16691
{
@@ -16679,7 +16698,7 @@
16698
"hu": "Parancsok a szövegdobozból",
16699
"de": "Befehle aus Textfeld",
16700
"xloc": [
16682
- "default.handlebars->47->772"
16701
+ "default.handlebars->47->773"
16702
]
16703
},
16704
{
@@ -16706,8 +16725,8 @@
16725
"zh-cht": "通用裝置群",
16726
"hu": "Eszközcsoport jogosultságok",
16727
"xloc": [
16709
- "default.handlebars->47->2762",
16710
- "default.handlebars->47->2950"
16728
+ "default.handlebars->47->2768",
16729
+ "default.handlebars->47->2956"
16730
]
16731
},
16732
{
@@ -16734,8 +16753,8 @@
16753
"zh-cht": "通用裝置",
16754
"hu": "Eszköz jogosultságok",
16755
"xloc": [
16737
- "default.handlebars->47->2768",
16738
- "default.handlebars->47->2962"
16756
+ "default.handlebars->47->2774",
16757
+ "default.handlebars->47->2968"
16758
]
16759
},
16760
{
@@ -16763,7 +16782,7 @@
16782
"hu": "Fordítás ideje",
16783
"xloc": [
16784
"default-mobile.handlebars->11->765",
16766
- "default.handlebars->47->1555"
16785
+ "default.handlebars->47->1561"
16786
]
16787
},
16788
{
@@ -16814,7 +16833,7 @@
16833
"zh-cht": "壓縮檔案...",
16834
"hu": "Fájlok tömörítése...",
16835
"xloc": [
16817
- "default.handlebars->47->1483",
16836
+ "default.handlebars->47->1487",
16837
"sharing.handlebars->11->47"
16838
]
16839
},
@@ -16851,7 +16870,7 @@
16870
"hu": "Konfigurációs fájl rekordok",
16871
"de": "Aufzeichnungen von Konfigurationsdatei",
16872
"xloc": [
16854
- "default.handlebars->47->3104"
16873
+ "default.handlebars->47->3110"
16874
]
16875
},
16876
{
@@ -16880,14 +16899,14 @@
16899
"xloc": [
16900
"default-mobile.handlebars->11->603",
16901
"default-mobile.handlebars->11->886",
16883
- "default.handlebars->47->1264",
16884
- "default.handlebars->47->1273",
16885
- "default.handlebars->47->2183",
16886
- "default.handlebars->47->2634",
16887
- "default.handlebars->47->2717",
16888
- "default.handlebars->47->2784",
16889
- "default.handlebars->47->2948",
16890
- "default.handlebars->47->717"
16902
+ "default.handlebars->47->1268",
16903
+ "default.handlebars->47->1277",
16904
+ "default.handlebars->47->2189",
16905
+ "default.handlebars->47->2640",
16906
+ "default.handlebars->47->2723",
16907
+ "default.handlebars->47->2790",
16908
+ "default.handlebars->47->2954",
16909
+ "default.handlebars->47->718"
16910
]
16911
},
16912
{
@@ -16939,7 +16958,7 @@
16958
"hu": "Megerősíti 1 bejegyzés másolatát erre a helyre?",
16959
"xloc": [
16960
"default-mobile.handlebars->11->701",
16942
- "default.handlebars->47->1508",
16961
+ "default.handlebars->47->1514",
16962
"sharing.handlebars->11->70"
16963
]
16964
},
@@ -16967,7 +16986,7 @@
16986
"zh-cht": "確認{0}個條目的複製到此位置?",
16987
"hu": "Megerősíti a {0} bejegyzések másolását erre a helyre?",
16988
"xloc": [
16970
- "default.handlebars->47->1507",
16989
+ "default.handlebars->47->1513",
16990
"sharing.handlebars->11->69"
16991
]
16992
},
@@ -17022,7 +17041,7 @@
17041
"zh-cht": "確認刪除所選帳戶?",
17042
"hu": "Megerősíti a kiválasztott fiók(ok) törlését?",
17043
"xloc": [
17025
- "default.handlebars->47->2633"
17044
+ "default.handlebars->47->2639"
17045
]
17046
},
17047
{
@@ -17073,7 +17092,7 @@
17092
"zh-cht": "確認刪除所選用戶群?",
17093
"hu": "Megerősíti a kiválasztott felhasználói csoport(ok) törlését?",
17094
"xloc": [
17076
- "default.handlebars->47->2716"
17095
+ "default.handlebars->47->2722"
17096
]
17097
},
17098
{
@@ -17100,7 +17119,7 @@
17119
"zh-cht": "確認刪除用戶{0}?",
17120
"hu": "Megerősíti a(z) {0} felhasználó törlését?",
17121
"xloc": [
17103
- "default.handlebars->47->2947"
17122
+ "default.handlebars->47->2953"
17123
]
17124
},
17125
{
@@ -17127,7 +17146,7 @@
17146
"zh-cht": "確認刪除用戶“ {0} ”的成員身份?",
17147
"hu": "Megerősíti a \\\"{0}\\\" felhasználó tagságának eltávolítását?",
17148
"xloc": [
17130
- "default.handlebars->47->2787"
17149
+ "default.handlebars->47->2793"
17150
]
17151
},
17152
{
@@ -17154,7 +17173,7 @@
17173
"zh-cht": "確認刪除用戶群“ {0} ”的成員身份?",
17174
"hu": "Megerősíti a \\\"{0}\\\" felhasználói csoport tagság eltávolítását?",
17175
"xloc": [
17157
- "default.handlebars->47->2979"
17176
+ "default.handlebars->47->2985"
17177
]
17178
},
17179
{
@@ -17182,7 +17201,7 @@
17201
"hu": "Megerősíti 1 bejegyzés áthelyezését erre a helyre?",
17202
"xloc": [
17203
"default-mobile.handlebars->11->703",
17185
- "default.handlebars->47->1510",
17204
+ "default.handlebars->47->1516",
17205
"sharing.handlebars->11->72"
17206
]
17207
},
@@ -17210,7 +17229,7 @@
17229
"zh-cht": "確認將{0}個條目移到該位置?",
17230
"hu": "Megerősíti {0} bejegyzés áthelyezését erre a helyre?",
17231
"xloc": [
17213
- "default.handlebars->47->1509",
17232
+ "default.handlebars->47->1515",
17233
"sharing.handlebars->11->71"
17234
]
17235
},
@@ -17265,7 +17284,7 @@
17284
"zh-cht": "確認覆蓋?",
17285
"hu": "Megerősíti a felülírást?",
17286
"xloc": [
17268
- "default.handlebars->47->2392"
17287
+ "default.handlebars->47->2398"
17288
]
17289
},
17290
{
@@ -17292,8 +17311,8 @@
17311
"zh-cht": "確認刪除裝置“ {0} ”的訪問權限?",
17312
"hu": "Megerősíti a \\\"{0}\\\" eszköz hozzáférési jogainak eltávolítását?",
17313
"xloc": [
17295
- "default.handlebars->47->2777",
17296
- "default.handlebars->47->2970"
17314
+ "default.handlebars->47->2783",
17315
+ "default.handlebars->47->2976"
17316
]
17317
},
17318
{
@@ -17320,8 +17339,8 @@
17339
"zh-cht": "確認刪除裝置群“ {0} ”的訪問權限?",
17340
"hu": "Megerősíti a \\\"{0}\\\" eszközcsoport hozzáférési jogainak eltávolítását?",
17341
"xloc": [
17323
- "default.handlebars->47->2779",
17324
- "default.handlebars->47->2983"
17342
+ "default.handlebars->47->2785",
17343
+ "default.handlebars->47->2989"
17344
]
17345
},
17346
{
@@ -17348,7 +17367,7 @@
17367
"zh-cht": "確認刪除用戶“ {0} ”的訪問權限?",
17368
"hu": "Megerősíti a \\\"{0}\\\" felhasználó hozzáférési jogainak eltávolítását?",
17369
"xloc": [
17351
- "default.handlebars->47->2972"
17370
+ "default.handlebars->47->2978"
17371
]
17372
},
17373
{
@@ -17375,7 +17394,7 @@
17394
"zh-cht": "確認刪除用戶群“ {0} ”的訪問權限?",
17395
"hu": "Megerősíti a \\\"{0}\\\" felhasználói csoport hozzáférési jogainak eltávolítását?",
17396
"xloc": [
17378
- "default.handlebars->47->2975"
17397
+ "default.handlebars->47->2981"
17398
]
17399
},
17400
{
@@ -17402,8 +17421,8 @@
17421
"zh-cht": "確認刪除訪問權限?",
17422
"hu": "Megerősíti a hozzáférési jogok eltávolítását?",
17423
"xloc": [
17405
- "default.handlebars->47->2973",
17406
- "default.handlebars->47->2976"
17424
+ "default.handlebars->47->2979",
17425
+ "default.handlebars->47->2982"
17426
]
17427
},
17428
{
@@ -17431,7 +17450,7 @@
17450
"hu": "Megerősíti a hitelesítő alkalmazás, kétlépcsős bejelentkezés eltávolítását?",
17451
"xloc": [
17452
"default-mobile.handlebars->11->312",
17434
- "default.handlebars->47->1709"
17453
+ "default.handlebars->47->1715"
17454
]
17455
},
17456
{
@@ -17482,7 +17501,7 @@
17501
"zh-cht": "確認刪除設備共享“{0}”?",
17502
"hu": "Megerősíti a(z) \\\"{0}\\\" eszközmegosztás eltávolítását?",
17503
"xloc": [
17485
- "default.handlebars->47->2968"
17504
+ "default.handlebars->47->2974"
17505
]
17506
},
17507
{
@@ -17557,7 +17576,7 @@
17576
"zh-cht": "確認移除推送認證設備?",
17577
"hu": "Megerősíti a Push-hitelesítési eszköz eltávolítását?",
17578
"xloc": [
17560
- "default.handlebars->47->1711"
17579
+ "default.handlebars->47->1717"
17580
]
17581
},
17582
{
@@ -17584,7 +17603,7 @@
17603
"zh-cht": "確認刪除用戶“ {0} ”的權限?",
17604
"hu": "Megerősíti a \\\"{0}\\\" felhasználó jogainak eltávolítását?",
17605
"xloc": [
17587
- "default.handlebars->47->2296"
17606
+ "default.handlebars->47->2302"
17607
]
17608
},
17609
{
@@ -17611,7 +17630,7 @@
17630
"zh-cht": "確認刪除用戶群“ {0} ”的權限?",
17631
"hu": "Megerősíti a \\\"{0}\\\" felhasználói csoport jogainak eltávolítását?",
17632
"xloc": [
17614
- "default.handlebars->47->2298"
17633
+ "default.handlebars->47->2304"
17634
]
17635
},
17636
{
@@ -17638,7 +17657,7 @@
17657
"zh-cht": "確認刪除所選設備?",
17658
"hu": "Megerősíti a kiválasztott eszköz eltávolítását?",
17659
"xloc": [
17641
- "default.handlebars->47->711"
17660
+ "default.handlebars->47->712"
17661
]
17662
},
17663
{
@@ -17665,7 +17684,7 @@
17684
"zh-cht": "確認刪除此登錄令牌?",
17685
"hu": "Megerősíti ennek a bejelentkezési tokennek az eltávolítását?",
17686
"xloc": [
17668
- "default.handlebars->47->2015"
17687
+ "default.handlebars->47->2021"
17688
]
17689
},
17690
{
@@ -17743,7 +17762,7 @@
17762
"zh-cht": "確認刪除 {0} 個選定的設備?",
17763
"hu": "Megerősíti {0} kiválasztott eszköz eltávolítását?",
17764
"xloc": [
17746
- "default.handlebars->47->712"
17765
+ "default.handlebars->47->713"
17766
]
17767
},
17768
{
@@ -17771,7 +17790,7 @@
17790
"hu": "Megerősíti {0} / {1} bejegyzés {2} erre a helyre?",
17791
"xloc": [
17792
"default-mobile.handlebars->11->365",
17774
- "default.handlebars->47->2395"
17793
+ "default.handlebars->47->2401"
17794
]
17795
},
17796
{
@@ -17802,8 +17821,8 @@
17821
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
17822
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3",
17823
"default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea1->1->3->connectbutton2span",
17805
- "default.handlebars->47->2081",
17806
- "default.handlebars->47->937",
17824
+ "default.handlebars->47->2087",
17825
+ "default.handlebars->47->940",
17826
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1span",
17827
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2span",
17828
"default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3",
@@ -17840,7 +17859,7 @@
17859
"zh-cht": "全部連接",
17860
"hu": "Összes csatlakoztatása",
17861
"xloc": [
17843
- "default.handlebars->47->459",
17862
+ "default.handlebars->47->460",
17863
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->kvmListToolbar"
17864
]
17865
},
@@ -17892,7 +17911,7 @@
17911
"zh-cht": "連接到伺服器",
17912
"hu": "Csatlakozás a kiszolgálóhoz",
17913
"xloc": [
17895
- "default.handlebars->47->2176"
17914
+ "default.handlebars->47->2182"
17915
]
17916
},
17917
{
@@ -18106,7 +18125,7 @@
18125
"xloc": [
18126
"default-mobile.handlebars->11->4",
18127
"default.handlebars->47->11",
18109
- "default.handlebars->47->419",
18128
+ "default.handlebars->47->420",
18129
"sharing.handlebars->11->4",
18130
"ssh.handlebars->3->4",
18131
"xterm.handlebars->9->4"
@@ -18136,7 +18155,7 @@
18155
"zh-cht": "已連接的Intel® AMT",
18156
"hu": "Csatlakozott Intel® AMT",
18157
"xloc": [
18139
- "default.handlebars->47->3186"
18158
+ "default.handlebars->47->3192"
18159
]
18160
},
18161
{
@@ -18163,7 +18182,7 @@
18182
"zh-cht": "已连接的用户",
18183
"hu": "Csatlakozott felhasználók",
18184
"xloc": [
18166
- "default.handlebars->47->3191"
18185
+ "default.handlebars->47->3197"
18186
]
18187
},
18188
{
@@ -18219,7 +18238,7 @@
18238
"hu": "Csatlakoztatva most",
18239
"xloc": [
18240
"default-mobile.handlebars->11->760",
18222
- "default.handlebars->47->1550"
18241
+ "default.handlebars->47->1556"
18242
]
18243
},
18244
{
@@ -18351,10 +18370,10 @@
18370
"default-mobile.handlebars->11->2",
18371
"default-mobile.handlebars->11->50",
18372
"default-mobile.handlebars->11->719",
18354
- "default.handlebars->47->1533",
18355
- "default.handlebars->47->386",
18356
- "default.handlebars->47->389",
18357
- "default.handlebars->47->462",
18373
+ "default.handlebars->47->1539",
18374
+ "default.handlebars->47->387",
18375
+ "default.handlebars->47->390",
18376
+ "default.handlebars->47->463",
18377
"default.handlebars->47->9",
18378
"sharing.handlebars->11->2",
18379
"sharing.handlebars->11->93",
@@ -18410,7 +18429,7 @@
18429
"zh-cht": "連接數量",
18430
"hu": "Kapcsolatok száma",
18431
"xloc": [
18413
- "default.handlebars->47->3217"
18432
+ "default.handlebars->47->3223"
18433
]
18434
},
18435
{
@@ -18438,8 +18457,8 @@
18457
"hu": "Kapcsolat Hiba",
18458
"xloc": [
18459
"default-mobile.handlebars->11->682",
18441
- "default.handlebars->47->1462",
18442
- "default.handlebars->47->1479",
18460
+ "default.handlebars->47->1466",
18461
+ "default.handlebars->47->1483",
18462
"login2.handlebars->7->232"
18463
]
18464
},
@@ -18467,7 +18486,7 @@
18486
"zh-cht": "連接轉發器",
18487
"hu": "Kapccsolat Relay",
18488
"xloc": [
18470
- "default.handlebars->47->3253"
18489
+ "default.handlebars->47->3259"
18490
]
18491
},
18492
{
@@ -18549,9 +18568,9 @@
18568
"hu": "Kapcsolódás",
18569
"xloc": [
18570
"default-mobile.handlebars->11->525",
18552
- "default.handlebars->47->2350",
18553
- "default.handlebars->47->376",
18554
- "default.handlebars->47->954",
18571
+ "default.handlebars->47->2356",
18572
+ "default.handlebars->47->377",
18573
+ "default.handlebars->47->957",
18574
"default.handlebars->container->column_l->p21->p21main->1->1->meshConnChartDiv->1"
18575
]
18576
},
@@ -18579,7 +18598,7 @@
18598
"zh-cht": "同意",
18599
"hu": "Hozzájárulás",
18600
"xloc": [
18582
- "default.handlebars->47->2565"
18601
+ "default.handlebars->47->2571"
18602
]
18603
},
18604
{
@@ -18607,8 +18626,8 @@
18626
"hu": "Mesh Agent konzol",
18627
"xloc": [
18628
"default-mobile.handlebars->11->565",
18610
- "default.handlebars->47->1094",
18611
- "default.handlebars->47->1119",
18629
+ "default.handlebars->47->1098",
18630
+ "default.handlebars->47->1123",
18631
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevConsole",
18632
"default.handlebars->container->topbar->1->1->ServerSubMenuSpan->ServerSubMenu->1->0->ServerConsole",
18633
"default.handlebars->contextMenu->cxconsole"
@@ -18638,7 +18657,7 @@
18657
"zh-cht": "控制台 -",
18658
"hu": "Konzol -",
18659
"xloc": [
18641
- "default.handlebars->47->845"
18660
+ "default.handlebars->47->846"
18661
]
18662
},
18663
{
@@ -18665,8 +18684,8 @@
18684
"zh-cht": "控制",
18685
"hu": "Felügyelet ",
18686
"xloc": [
18668
- "default.handlebars->47->1093",
18669
- "default.handlebars->47->1118",
18687
+ "default.handlebars->47->1097",
18688
+ "default.handlebars->47->1122",
18689
"messenger.handlebars->remoteImage->3->2"
18690
]
18691
},
@@ -18722,7 +18741,7 @@
18741
"zh-cht": "Cookie編碼器",
18742
"hu": "Cookie kódoló",
18743
"xloc": [
18725
- "default.handlebars->47->3236"
18744
+ "default.handlebars->47->3242"
18745
]
18746
},
18747
{
@@ -18751,7 +18770,7 @@
18770
"xloc": [
18771
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->3",
18772
"default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->3",
18754
- "default.handlebars->47->611",
18773
+ "default.handlebars->47->612",
18774
"default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
18775
"default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
18776
"sharing.handlebars->p13->p13toolbar->fileArea2->3"
@@ -18781,16 +18800,16 @@
18800
"zh-cht": "將MAC地址複製到剪貼板",
18801
"hu": "MAC-cím másolása a vágólapra",
18802
"xloc": [
18784
- "default.handlebars->47->160",
18785
- "default.handlebars->47->168",
18786
- "default.handlebars->47->171"
18803
+ "default.handlebars->47->161",
18804
+ "default.handlebars->47->169",
18805
+ "default.handlebars->47->172"
18806
]
18807
},
18808
{
18809
"en": "Copy Secret to clipboard",
18810
"nl": "Kopieer geheim naar klembord",
18811
"xloc": [
18793
- "default.handlebars->47->213"
18812
+ "default.handlebars->47->214"
18813
]
18814
},
18815
{
@@ -18817,9 +18836,9 @@
18836
"zh-cht": "將 URL 複製到剪貼板",
18837
"hu": "URL másolása a vágólapra",
18838
"xloc": [
18820
- "default.handlebars->47->624",
18821
- "default.handlebars->47->628",
18822
- "default.handlebars->47->632"
18839
+ "default.handlebars->47->625",
18840
+ "default.handlebars->47->629",
18841
+ "default.handlebars->47->633"
18842
]
18843
},
18844
{
@@ -18875,7 +18894,7 @@
18894
"nl": "Kopieer de URL van de Windows ARM 64-bits agent naar het klembord",
18895
"de": "Windows ARM 64bit Agent-URL in die Zwischenablage kopieren",
18896
"xloc": [
18878
- "default.handlebars->47->605"
18897
+ "default.handlebars->47->606"
18898
]
18899
},
18900
{
@@ -18883,7 +18902,7 @@
18902
"nl": "Kopieer de Windows x86 32-bits agent-URL naar het klembord",
18903
"de": "Windows x86 32bit Agent-URL in die Zwischenablage kopieren",
18904
"xloc": [
18886
- "default.handlebars->47->597"
18905
+ "default.handlebars->47->598"
18906
]
18907
},
18908
{
@@ -18891,7 +18910,7 @@
18910
"nl": "Kopieer de Windows x86 64-bits agent-URL naar het klembord",
18911
"de": "Windows x86 64bit Agent-URL in die Zwischenablage kopieren",
18912
"xloc": [
18894
- "default.handlebars->47->601"
18913
+ "default.handlebars->47->602"
18914
]
18915
},
18916
{
@@ -18918,18 +18937,18 @@
18937
"zh-cht": "將地址複製到剪貼板",
18938
"hu": "IP-cím másolása a vágólapra",
18939
"xloc": [
18921
- "default.handlebars->47->149",
18922
- "default.handlebars->47->151",
18923
- "default.handlebars->47->153",
18924
- "default.handlebars->47->162",
18925
- "default.handlebars->47->164",
18926
- "default.handlebars->47->166",
18927
- "default.handlebars->47->174",
18928
- "default.handlebars->47->176",
18929
- "default.handlebars->47->178",
18930
- "default.handlebars->47->180",
18931
- "default.handlebars->47->182",
18932
- "default.handlebars->47->184"
18940
+ "default.handlebars->47->150",
18941
+ "default.handlebars->47->152",
18942
+ "default.handlebars->47->154",
18943
+ "default.handlebars->47->163",
18944
+ "default.handlebars->47->165",
18945
+ "default.handlebars->47->167",
18946
+ "default.handlebars->47->175",
18947
+ "default.handlebars->47->177",
18948
+ "default.handlebars->47->179",
18949
+ "default.handlebars->47->181",
18950
+ "default.handlebars->47->183",
18951
+ "default.handlebars->47->185"
18952
]
18953
},
18954
{
@@ -18958,8 +18977,8 @@
18977
"xloc": [
18978
"agentinvite.handlebars->3->13",
18979
"agentinvite.handlebars->3->15",
18961
- "default.handlebars->47->645",
18962
- "default.handlebars->47->647"
18980
+ "default.handlebars->47->646",
18981
+ "default.handlebars->47->648"
18982
]
18983
},
18984
{
@@ -18986,12 +19005,12 @@
19005
"zh-cht": "複製連結到剪貼板",
19006
"hu": "Hivatkozás másolása a vágólapra.",
19007
"xloc": [
18989
- "default.handlebars->47->2361",
18990
- "default.handlebars->47->2380",
18991
- "default.handlebars->47->310",
18992
- "default.handlebars->47->332",
18993
- "default.handlebars->47->334",
18994
- "default.handlebars->47->571"
19008
+ "default.handlebars->47->2367",
19009
+ "default.handlebars->47->2386",
19010
+ "default.handlebars->47->311",
19011
+ "default.handlebars->47->333",
19012
+ "default.handlebars->47->335",
19013
+ "default.handlebars->47->572"
19014
]
19015
},
19016
{
@@ -19018,7 +19037,7 @@
19037
"zh-cht": "將macOS代理URL複製到剪貼板",
19038
"hu": "macOS Agent URL másolása a vágólapra",
19039
"xloc": [
19021
- "default.handlebars->47->615"
19040
+ "default.handlebars->47->616"
19041
]
19042
},
19043
{
@@ -19045,7 +19064,7 @@
19064
"zh-cht": "將名稱複製到剪貼板",
19065
"hu": "Név másolása vágólapra",
19066
"xloc": [
19048
- "default.handlebars->47->158"
19067
+ "default.handlebars->47->159"
19068
]
19069
},
19070
{
@@ -19074,8 +19093,8 @@
19093
"xloc": [
19094
"agentinvite.handlebars->container->column_l->5->linuxtab",
19095
"agentinvite.handlebars->container->column_l->5->linuxtab",
19077
- "default.handlebars->47->610",
19078
- "default.handlebars->47->641"
19096
+ "default.handlebars->47->611",
19097
+ "default.handlebars->47->642"
19098
]
19099
},
19100
{
@@ -19102,7 +19121,7 @@
19121
"zh-cht": "將有效代碼複製到剪貼板",
19122
"hu": "Érvényes kódok másolása a vágólapra",
19123
"xloc": [
19105
- "default.handlebars->47->230"
19124
+ "default.handlebars->47->231"
19125
]
19126
},
19127
{
@@ -19129,7 +19148,7 @@
19148
"zh-cht": "複製:“{0}”到“{1}”",
19149
"hu": "Másolás: \\\"{0}\\\" ide: \\\"{1}\\\"",
19150
"xloc": [
19132
- "default.handlebars->47->2454"
19151
+ "default.handlebars->47->2460"
19152
]
19153
},
19154
{
@@ -19324,7 +19343,7 @@
19343
"zh-cht": "核心伺服器",
19344
"hu": "Core Server",
19345
"xloc": [
19327
- "default.handlebars->47->3235"
19346
+ "default.handlebars->47->3241"
19347
]
19348
},
19349
{
@@ -19352,7 +19371,7 @@
19371
"hu": "korzikai",
19372
"xloc": [
19373
"default-mobile.handlebars->11->144",
19355
- "default.handlebars->47->1767",
19374
+ "default.handlebars->47->1773",
19375
"login2.handlebars->7->41"
19376
]
19377
},
@@ -19404,7 +19423,7 @@
19423
"zh-cht": "創建帳號",
19424
"hu": "Fiók létrehozása",
19425
"xloc": [
19407
- "default.handlebars->47->2684",
19426
+ "default.handlebars->47->2690",
19427
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->16->1->1",
19428
"login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->16->1->1",
19429
"login2.handlebars->centralTable->1->0->logincell->createpanel->createpanelform->9->1->16->1->1"
@@ -19485,8 +19504,8 @@
19504
"zh-cht": "創建登錄令牌",
19505
"hu": "Bejelentkezési token létrehozása",
19506
"xloc": [
19488
- "default.handlebars->47->1952",
19489
- "default.handlebars->47->335"
19507
+ "default.handlebars->47->1958",
19508
+ "default.handlebars->47->336"
19509
]
19510
},
19511
{
@@ -19513,7 +19532,7 @@
19532
"zh-cht": "創建用戶群",
19533
"hu": "Felhasználó csoport létrehozása",
19534
"xloc": [
19516
- "default.handlebars->47->2724"
19535
+ "default.handlebars->47->2730"
19536
]
19537
},
19538
{
@@ -19540,7 +19559,7 @@
19559
"zh-cht": "創建鏈結以與訪客共享此裝置",
19560
"hu": "Link létrehozása az eszköz vendégekkel való megosztásához",
19561
"xloc": [
19543
- "default.handlebars->47->983"
19562
+ "default.handlebars->47->986"
19563
]
19564
},
19565
{
@@ -19567,7 +19586,7 @@
19586
"zh-cht": "使用以下選項創建一個新的裝置群。",
19587
"hu": "Hozzon létre egy új eszközcsoportot az alábbi lehetőségek segítségével.",
19588
"xloc": [
19570
- "default.handlebars->47->1982"
19589
+ "default.handlebars->47->1988"
19590
]
19591
},
19592
{
@@ -19594,7 +19613,7 @@
19613
"zh-cht": "創建一個新的裝置群。",
19614
"hu": "Hozzon létre egy új eszközcsoportot.",
19615
"xloc": [
19597
- "default.handlebars->47->379"
19616
+ "default.handlebars->47->380"
19617
]
19618
},
19619
{
@@ -19621,7 +19640,7 @@
19640
"zh-cht": "創建一個臨時用戶名和密碼,可用作您帳戶的替代登錄名。這對於允許工具或其他服務訪問您的帳戶很有用。",
19641
"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.",
19642
"xloc": [
19624
- "default.handlebars->47->1932"
19643
+ "default.handlebars->47->1938"
19644
]
19645
},
19646
{
@@ -19648,7 +19667,7 @@
19667
"zh-cht": "創建文件夾(如果不存在)?",
19668
"hu": "Mappa létrehozása, ha nem létezik?",
19669
"xloc": [
19651
- "default.handlebars->47->742"
19670
+ "default.handlebars->47->743"
19671
]
19672
},
19673
{
@@ -19675,7 +19694,7 @@
19694
"zh-cht": "創建文件夾:“{0}”",
19695
"hu": "Mappa létrehozása: \\\"{0}\\\"",
19696
"xloc": [
19678
- "default.handlebars->47->2447"
19697
+ "default.handlebars->47->2453"
19698
]
19699
},
19700
{
@@ -19714,7 +19733,7 @@
19733
"hu": "Hozzon létre egyszerre több Intel® AMT eszközt a következő formátumú JSON-fájl importálásával:",
19734
"de": "Erstellen Sie mehrere Intel® AMT Geräte gleichzeitig durch Import einer JSON Datei mit dem folgenden Format:",
19735
"xloc": [
19717
- "default.handlebars->47->498"
19736
+ "default.handlebars->47->499"
19737
]
19738
},
19739
{
@@ -19741,7 +19760,7 @@
19760
"zh-cht": "通過導入以下格式的JSON檔案一次創建多個帳戶:",
19761
"hu": "Hozzon létre egyszerre több fiókot a következő formátumú JSON fájl importálásával:",
19762
"xloc": [
19744
- "default.handlebars->47->2648"
19763
+ "default.handlebars->47->2654"
19764
]
19765
},
19766
{
@@ -19797,7 +19816,7 @@
19816
"zh-cht": "創建的設備組:{0}",
19817
"hu": "Eszközcsoport létrehozva: {0}",
19818
"xloc": [
19800
- "default.handlebars->47->2458"
19819
+ "default.handlebars->47->2464"
19820
]
19821
},
19822
{
@@ -19824,7 +19843,7 @@
19843
"zh-cht": "創建一個鏈接,該鏈接允許沒有帳戶的訪客在有限的時間內遠程控制此設備。",
19844
"hu": "Létrehoz egy linket, amely lehetővé teszi egy fiók nélküli vendég számára, hogy korlátozott ideig távvezérléssel vezérelje ezt az eszközt.",
19845
"xloc": [
19827
- "default.handlebars->47->1160"
19846
+ "default.handlebars->47->1164"
19847
]
19848
},
19849
{
@@ -19899,7 +19918,7 @@
19918
"zh-cht": "創建",
19919
"hu": "Létrehozás",
19920
"xloc": [
19902
- "default.handlebars->47->2832"
19921
+ "default.handlebars->47->2838"
19922
]
19923
},
19924
{
@@ -19926,7 +19945,7 @@
19945
"zh-cht": "創作時間",
19946
"hu": "Létrehozás ideje",
19947
"xloc": [
19929
- "default.handlebars->47->2061"
19948
+ "default.handlebars->47->2067"
19949
]
19950
},
19951
{
@@ -19982,8 +20001,8 @@
20001
"zh-cht": "創作者",
20002
"hu": "Létrehozó",
20003
"xloc": [
19985
- "default.handlebars->47->2059",
19986
- "default.handlebars->47->2060"
20004
+ "default.handlebars->47->2065",
20005
+ "default.handlebars->47->2066"
20006
]
20007
},
20008
{
@@ -20011,9 +20030,9 @@
20030
"hu": "Hitelesítő adatok",
20031
"xloc": [
20032
"default-mobile.handlebars->11->537",
20014
- "default.handlebars->47->1338",
20015
- "default.handlebars->47->2020",
20016
- "default.handlebars->47->966"
20033
+ "default.handlebars->47->1342",
20034
+ "default.handlebars->47->2026",
20035
+ "default.handlebars->47->969"
20036
]
20037
},
20038
{
@@ -20041,7 +20060,7 @@
20060
"hu": "cree",
20061
"xloc": [
20062
"default-mobile.handlebars->11->145",
20044
- "default.handlebars->47->1768",
20063
+ "default.handlebars->47->1774",
20064
"login2.handlebars->7->42"
20065
]
20066
},
@@ -20070,7 +20089,7 @@
20089
"hu": "horvát",
20090
"xloc": [
20091
"default-mobile.handlebars->11->146",
20073
- "default.handlebars->47->1769",
20092
+ "default.handlebars->47->1775",
20093
"login2.handlebars->7->43"
20094
]
20095
},
@@ -20156,8 +20175,8 @@
20175
"xloc": [
20176
"default-mobile.handlebars->11->643",
20177
"default-mobile.handlebars->11->647",
20159
- "default.handlebars->47->1380",
20178
"default.handlebars->47->1384",
20179
+ "default.handlebars->47->1388",
20180
"default.handlebars->47->62",
20181
"sharing.handlebars->11->24"
20182
]
@@ -20320,7 +20339,7 @@
20339
"zh-cht": "當前版本",
20340
"hu": "Aktuális verzió",
20341
"xloc": [
20323
- "default.handlebars->47->189"
20342
+ "default.handlebars->47->190"
20343
]
20344
},
20345
{
@@ -20348,7 +20367,7 @@
20367
"hu": "A jelenlegi jelszó nem megfelelő.",
20368
"xloc": [
20369
"default-mobile.handlebars->11->977",
20351
- "default.handlebars->47->3155"
20370
+ "default.handlebars->47->3161"
20371
]
20372
},
20373
{
@@ -20462,7 +20481,7 @@
20481
"hu": "cseh",
20482
"xloc": [
20483
"default-mobile.handlebars->11->147",
20465
- "default.handlebars->47->1770",
20484
+ "default.handlebars->47->1776",
20485
"login2.handlebars->7->44"
20486
]
20487
},
@@ -20490,7 +20509,7 @@
20509
"zh-cht": "DNS suffix",
20510
"hu": "DNS utótag",
20511
"xloc": [
20493
- "default.handlebars->47->157"
20512
+ "default.handlebars->47->158"
20513
]
20514
},
20515
{
@@ -20517,7 +20536,7 @@
20536
"zh-cht": "日常的",
20537
"hu": "Napi",
20538
"xloc": [
20520
- "default.handlebars->47->293"
20539
+ "default.handlebars->47->294"
20540
]
20541
},
20542
{
@@ -20545,7 +20564,7 @@
20564
"hu": "dán",
20565
"xloc": [
20566
"default-mobile.handlebars->11->148",
20548
- "default.handlebars->47->1771",
20567
+ "default.handlebars->47->1777",
20568
"login2.handlebars->7->45"
20569
]
20570
},
@@ -20601,7 +20620,7 @@
20620
"zh-cht": "數據通道",
20621
"hu": "DataChannel",
20622
"xloc": [
20604
- "default.handlebars->47->1336",
20623
+ "default.handlebars->47->1340",
20624
"sharing.handlebars->11->11"
20625
]
20626
},
@@ -20614,7 +20633,7 @@
20633
"hu": "Adatbázis rekordok",
20634
"de": "Datenbankaufzeichnungen",
20635
"xloc": [
20617
- "default.handlebars->47->3029"
20636
+ "default.handlebars->47->3035"
20637
]
20638
},
20639
{
@@ -20642,7 +20661,7 @@
20661
"hu": "Dátum és idő",
20662
"xloc": [
20663
"default-mobile.handlebars->11->306",
20645
- "default.handlebars->47->1929"
20664
+ "default.handlebars->47->1935"
20665
]
20666
},
20667
{
@@ -20670,9 +20689,9 @@
20689
"hu": "Nap",
20690
"xloc": [
20691
"default-mobile.handlebars->11->593",
20673
- "default.handlebars->47->1248",
20674
- "default.handlebars->47->3033",
20675
- "default.handlebars->47->3036"
20692
+ "default.handlebars->47->1252",
20693
+ "default.handlebars->47->3039",
20694
+ "default.handlebars->47->3042"
20695
]
20696
},
20697
{
@@ -20699,8 +20718,8 @@
20718
"zh-cht": "停用",
20719
"hu": "Deaktiválás",
20720
"xloc": [
20702
- "default.handlebars->47->2091",
20703
- "default.handlebars->47->2155"
20721
+ "default.handlebars->47->2097",
20722
+ "default.handlebars->47->2161"
20723
]
20724
},
20725
{
@@ -20727,7 +20746,7 @@
20746
"zh-cht": "如果設置停用CCM",
20747
"hu": "CCM kikapcsolása ha be van állítva",
20748
"xloc": [
20730
- "default.handlebars->47->2167"
20749
+ "default.handlebars->47->2173"
20750
]
20751
},
20752
{
@@ -20779,7 +20798,7 @@
20798
"hu": "Mély alvás",
20799
"xloc": [
20800
"default-mobile.handlebars->11->448",
20782
- "default.handlebars->47->658"
20801
+ "default.handlebars->47->659"
20802
]
20803
},
20804
{
@@ -20806,10 +20825,10 @@
20825
"zh-cht": "默認",
20826
"hu": "Alapértelmezett",
20827
"xloc": [
20809
- "default.handlebars->47->2671",
20810
- "default.handlebars->47->2720",
20811
- "default.handlebars->47->2731",
20812
- "default.handlebars->47->2805"
20828
+ "default.handlebars->47->2677",
20829
+ "default.handlebars->47->2726",
20830
+ "default.handlebars->47->2737",
20831
+ "default.handlebars->47->2811"
20832
]
20833
},
20834
{
@@ -20837,7 +20856,7 @@
20856
"hu": "Del",
20857
"xloc": [
20858
"default-mobile.handlebars->11->630",
20840
- "default.handlebars->47->1368"
20859
+ "default.handlebars->47->1372"
20860
]
20861
},
20862
{
@@ -20869,9 +20888,9 @@
20888
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1",
20889
"default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1",
20890
"default-mobile.handlebars->dialog->idx_dlgButtonBar->5",
20872
- "default.handlebars->47->1499",
20873
- "default.handlebars->47->2387",
20874
- "default.handlebars->47->815",
20891
+ "default.handlebars->47->1505",
20892
+ "default.handlebars->47->2393",
20893
+ "default.handlebars->47->816",
20894
"default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
20895
"default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
20896
"default.handlebars->container->dialog->idx_dlgButtonBar->5",
@@ -20909,7 +20928,7 @@
20928
"hu": "Fiók törlése",
20929
"xloc": [
20930
"default-mobile.handlebars->11->322",
20912
- "default.handlebars->47->1967"
20931
+ "default.handlebars->47->1973"
20932
]
20933
},
20934
{
@@ -20936,7 +20955,7 @@
20955
"zh-cht": "刪除帳戶",
20956
"hu": "Fiókok törlése",
20957
"xloc": [
20939
- "default.handlebars->47->2635"
20958
+ "default.handlebars->47->2641"
20959
]
20960
},
20961
{
@@ -20964,7 +20983,7 @@
20983
"hu": "Eszköz törlése",
20984
"xloc": [
20985
"default-mobile.handlebars->11->546",
20967
- "default.handlebars->47->993"
20986
+ "default.handlebars->47->996"
20987
]
20988
},
20989
{
@@ -20991,7 +21010,7 @@
21010
"zh-cht": "刪除設備",
21011
"hu": "Eszközök törlése",
21012
"xloc": [
20994
- "default.handlebars->47->718"
21013
+ "default.handlebars->47->719"
21014
]
21015
},
21016
{
@@ -21020,8 +21039,8 @@
21039
"xloc": [
21040
"default-mobile.handlebars->11->884",
21041
"default-mobile.handlebars->11->887",
21023
- "default.handlebars->47->2143",
21024
- "default.handlebars->47->2184"
21042
+ "default.handlebars->47->2149",
21043
+ "default.handlebars->47->2190"
21044
]
21045
},
21046
{
@@ -21049,7 +21068,7 @@
21068
"hu": "Node törlése",
21069
"xloc": [
21070
"default-mobile.handlebars->11->601",
21052
- "default.handlebars->47->1274"
21071
+ "default.handlebars->47->1278"
21072
]
21073
},
21074
{
@@ -21100,7 +21119,7 @@
21119
"zh-cht": "刪除用戶",
21120
"hu": "Felhasználó törlése",
21121
"xloc": [
21103
- "default.handlebars->47->2878"
21122
+ "default.handlebars->47->2884"
21123
]
21124
},
21125
{
@@ -21127,8 +21146,8 @@
21146
"zh-cht": "刪除用戶群組",
21147
"hu": "Felhasználói csoport törlése",
21148
"xloc": [
21130
- "default.handlebars->47->2773",
21131
- "default.handlebars->47->2785"
21149
+ "default.handlebars->47->2779",
21150
+ "default.handlebars->47->2791"
21151
]
21152
},
21153
{
@@ -21155,7 +21174,7 @@
21174
"zh-cht": "刪除用戶群組",
21175
"hu": "Felhasználói csoportok törlése",
21176
"xloc": [
21158
- "default.handlebars->47->2718"
21177
+ "default.handlebars->47->2724"
21178
]
21179
},
21180
{
@@ -21182,7 +21201,7 @@
21201
"zh-cht": "刪除用戶{0}",
21202
"hu": "Felhasználó törlése: {0}",
21203
"xloc": [
21185
- "default.handlebars->47->2946"
21204
+ "default.handlebars->47->2952"
21205
]
21206
},
21207
{
@@ -21210,7 +21229,7 @@
21229
"hu": "Fiók törlése",
21230
"xloc": [
21231
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountActions->3->9->0",
21213
- "default.handlebars->47->2631",
21232
+ "default.handlebars->47->2637",
21233
"default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7"
21234
]
21235
},
@@ -21238,7 +21257,7 @@
21257
"zh-cht": "刪除裝置",
21258
"hu": "Eszközök törlése",
21259
"xloc": [
21241
- "default.handlebars->47->704"
21260
+ "default.handlebars->47->705"
21261
]
21262
},
21263
{
@@ -21265,7 +21284,7 @@
21284
"zh-cht": "刪除群組",
21285
"hu": "Csoport törlése",
21286
"xloc": [
21268
- "default.handlebars->47->2714"
21287
+ "default.handlebars->47->2720"
21288
]
21289
},
21290
{
@@ -21292,7 +21311,7 @@
21311
"zh-cht": "刪除項目?",
21312
"hu": "Elem törlése?",
21313
"xloc": [
21295
- "default.handlebars->47->816"
21314
+ "default.handlebars->47->817"
21315
]
21316
},
21317
{
@@ -21319,7 +21338,7 @@
21338
"zh-cht": "遞歸刪除:“{0}”,{1}個元素已刪除",
21339
"hu": "Rekurzív törlés: \\\"{0}\\\", {1} eltávolított elem(ek)",
21340
"xloc": [
21322
- "default.handlebars->47->2449"
21341
+ "default.handlebars->47->2455"
21342
]
21343
},
21344
{
@@ -21348,8 +21367,8 @@
21367
"xloc": [
21368
"default-mobile.handlebars->11->362",
21369
"default-mobile.handlebars->11->695",
21351
- "default.handlebars->47->1501",
21352
- "default.handlebars->47->2389",
21370
+ "default.handlebars->47->1507",
21371
+ "default.handlebars->47->2395",
21372
"sharing.handlebars->11->63"
21373
]
21374
},
@@ -21377,7 +21396,7 @@
21396
"zh-cht": "刪除用戶群組{0}?",
21397
"hu": "Törli a(z) {0} felhasználói csoportot?",
21398
"xloc": [
21380
- "default.handlebars->47->2783"
21399
+ "default.handlebars->47->2789"
21400
]
21401
},
21402
{
@@ -21406,8 +21425,8 @@
21425
"xloc": [
21426
"default-mobile.handlebars->11->361",
21427
"default-mobile.handlebars->11->694",
21409
- "default.handlebars->47->1500",
21410
- "default.handlebars->47->2388",
21428
+ "default.handlebars->47->1506",
21429
+ "default.handlebars->47->2394",
21430
"sharing.handlebars->11->62"
21431
]
21432
},
@@ -21462,7 +21481,7 @@
21481
"zh-cht": "刪除:“{0}”",
21482
"hu": "Törlés: \\\"{0}\\\"",
21483
"xloc": [
21465
- "default.handlebars->47->2448"
21484
+ "default.handlebars->47->2454"
21485
]
21486
},
21487
{
@@ -21489,7 +21508,7 @@
21508
"zh-cht": "刪除:“{0}”,已刪除{1}個元素",
21509
"hu": "Törlés: \\\"{0}\\\", {1} elem eltávolítva",
21510
"xloc": [
21492
- "default.handlebars->47->2450"
21511
+ "default.handlebars->47->2456"
21512
]
21513
},
21514
{
@@ -21517,7 +21536,7 @@
21536
"hu": "Elutasítva",
21537
"xloc": [
21538
"default-mobile.handlebars->11->616",
21520
- "default.handlebars->47->1323",
21539
+ "default.handlebars->47->1327",
21540
"sharing.handlebars->11->29",
21541
"sharing.handlebars->11->7"
21542
]
@@ -21531,7 +21550,7 @@
21550
"hu": "Felhasználói bejelentkezés megtagadva: {0}, {1}, {2}",
21551
"de": "Login des Benutzers von {0}, {1}, {2} verweigert",
21552
"xloc": [
21534
- "default.handlebars->47->2558"
21553
+ "default.handlebars->47->2564"
21554
]
21555
},
21556
{
@@ -21685,20 +21704,20 @@
21704
"default-mobile.handlebars->11->773",
21705
"default-mobile.handlebars->11->870",
21706
"default-mobile.handlebars->11->893",
This file is too large to show in full.
views/default.handlebars
+18
-6
@@ -4004,8 +4004,8 @@
4004
x += '<label><input id=d2c3 type=checkbox' + ((deviceViewSettings.devsCols.indexOf('ip') >= 0)?' checked':'') + '>' + "Agent IP address" + '</label><br />';
4005
x += '<label><input id=d2c4 type=checkbox' + ((deviceViewSettings.devsCols.indexOf('conn') >= 0)?' checked':'') + '>' + "Server Connectivity" + '</label><br />';
4006
x += '<label><input id=d2c7 type=checkbox' + ((deviceViewSettings.devsCols.indexOf('lastseen') >= 0)?' checked':'') + '>' + "Last Seen" + '</label><br />';
4007
- x += '<label><input id=d2c15 type=checkbox' + ((deviceViewSettings.devsCols.indexOf('host') >= 0)?' checked':'') + '>' + "Host" + '</label><br />';
4008
- x += '<label><input id=d2c17 type=checkbox' + ((deviceViewSettings.devsCols.indexOf('activated') >= 0)?' checked':'') + '>' + "Active" + '</label><br />';
4007
+ x += '<label><input id=d2c15 type=checkbox' + ((deviceViewSettings.devsCols.indexOf('amthost') >= 0)?' checked':'') + '>' + "Intel® AMT hostname" + '</label><br />';
4008
+ x += '<label><input id=d2c17 type=checkbox' + ((deviceViewSettings.devsCols.indexOf('amtstate') >= 0)?' checked':'') + '>' + "Intel® AMT state" + '</label><br />';
4009
setDialogMode(2, "Device View Columns", 3, onDeviceViewSettingsEx, x);
4010
}
4011
@@ -4024,8 +4024,8 @@
4024
if (Q('d2c11').checked) { cols.push('windowsav'); }
4025
if (Q('d2c12').checked) { cols.push('windowsupdate'); }
4026
if (Q('d2c13').checked) { cols.push('windowsfirewall'); }
4027
- if (Q('d2c15').checked) { cols.push('host'); }
4028
- if (Q('d2c17').checked) { cols.push('activated'); }
4027
+ if (Q('d2c15').checked) { cols.push('amthost'); }
4028
+ if (Q('d2c17').checked) { cols.push('amtstate'); }
4029
deviceViewSettings.devsCols = cols;
4030
putstore('_deviceViewSettings', JSON.stringify(deviceViewSettings));
4031
mainUpdate(4);
@@ -4470,8 +4470,8 @@
4470
if (deviceViewSettings.devsCols.indexOf('user') >= 0) { colums += '<th style=color:gray;width:120px>' + "User"; }
4471
if (deviceViewSettings.devsCols.indexOf('ip') >= 0) { colums += '<th style=color:gray;width:120px>' + "Address"; }
4472
if (deviceViewSettings.devsCols.indexOf('conn') >= 0) { colums += '<th style=color:gray;width:100px>' + "Connectivity"; }
4473
- if (deviceViewSettings.devsCols.indexOf('host') >= 0){ colums += '<th style=color:gray;width:100px>' + "Host"; }
4474
- if (deviceViewSettings.devsCols.indexOf('activated') >= 0){ colums += '<th style=color:gray;width:100px>' + "Activated"; }
4473
+ if (deviceViewSettings.devsCols.indexOf('amthost') >= 0) { colums += '<th style=color:gray;width:100px>' + "AMT Host"; }
4474
+ if (deviceViewSettings.devsCols.indexOf('amtstate') >= 0) { colums += '<th style=color:gray;width:100px>' + "AMT State"; }
4475
if (deviceViewSettings.devsCols.indexOf('lastseen') >= 0) {
4476
colums += '<th style=color:gray;width:120px>' + "Last Seen";
4477
if (requestedLastConnects == false) { requestedLastConnects = true; meshserver.send({ action: 'lastconnects' }); }
@@ -4786,6 +4786,18 @@
4786
if (deviceViewSettings.devsCols.indexOf('conn') >= 0) { r += '<td style=text-align:center>' + states.join(' + '); } // Connectivity
4787
if (deviceViewSettings.devsCols.indexOf('lastseen') >= 0) { r += '<td style=text-align:center;font-size:x-small>'; if (node.conn > 0) { r += "Connected"; } else if (node.lastconnect != null) { r += printDateTime(new Date(node.lastconnect)); } }
4788
4789
+ console.log(node.intelamt);
4790
+ if (deviceViewSettings.devsCols.indexOf('amthost') >= 0) { r += '<td style=text-align:center>' + (((node.intelamt == null) || (node.intelamt.host == null)) ? '' : EscapeHtml(node.intelamt.host)); }
4791
+ if (deviceViewSettings.devsCols.indexOf('amtstate') >= 0) {
4792
+ var amtstate = '';
4793
+ if (node.intelamt) {
4794
+ if (node.intelamt.state == 0) { amtstate = ' <span title="' + "Intel® AMT is not activated" + '">' + "Pre" + '</span>'; }
4795
+ if (node.intelamt.state == 1) { amtstate = ' <span title="' + "Intel® AMT is in activation mode" + '">' + "In" + '</span>'; }
4796
+ if ((node.intelamt.state == 2) && node.intelamt.flags) { if (node.intelamt.flags & 2) { amtstate = ' <span title="' + "Intel® AMT is activated in Client Control Mode" + '">' + "CCM" + '</span>'; } else if (node.intelamt.flags & 4) { amtstate += ' <span title="' + "Intel® AMT is activated in Admin Control Mode" + '">' + "ACM" + '</span>'; } }
4797
+ }
4798
+ r += '<td style=text-align:center>' + amtstate;
4799
+ }
4800
+
4801
div.innerHTML = r;
4802
} else if ((view == 3) || (view == 5)) {
4803
// Draw the device and canvas