add linux storage volumes using df
Signed-off-by: si458 <simonsmith5521@gmail.com>
si458 committed
May 13, 2024 at 23:44 UTC
e3f68226d24c093bfd9e66a5972838cd488d12bb
4 files changed
+3566
-3472
agents/modules_meshcore/computer-identifiers.js
+9
-1
@@ -138,11 +138,19 @@ function linux_identifiers()
138
child.stdin.write("lshw -class disk | tr '\\n' '`' | awk '" + '{ len=split($0,lines,"*"); printf "["; for(i=2;i<=len;++i) { model=""; caption=""; size=""; clen=split(lines[i],item,"`"); for(j=2;j<clen;++j) { split(item[j],tokens,":"); split(tokens[1],key," "); if(key[1]=="description") { caption=substr(tokens[2],2); } if(key[1]=="product") { model=substr(tokens[2],2); } if(key[1]=="size") { size=substr(tokens[2],2); } } if(model=="") { model=caption; } if(caption!="" || model!="") { printf "%s{\\"Caption\\":\\"%s\\",\\"Model\\":\\"%s\\",\\"Size\\":\\"%s\\"}",(i==2?"":","),caption,model,size; } } printf "]"; }\'\nexit\n');
139
child.waitExit();
140
try { identifiers['storage_devices'] = JSON.parse(child.stdout.str.trim()); } catch (xx) { }
141
+ child = null;
142
+
143
+ // Fetch storage volumes using df
144
+ child = require('child_process').execFile('/bin/sh', ['sh']);
145
+ child.stdout.str = ''; child.stdout.on('data', dataHandler);
146
+ child.stdin.write('df --output=size,used,avail,target,fstype | awk \'NR>1 {printf "{\\"size\\":\\"%s\\",\\"used\\":\\"%s\\",\\"available\\":\\"%s\\",\\"mount_point\\":\\"%s\\",\\"type\\":\\"%s\\"},", $1, $2, $3, $4, $5}\' | sed \'$ s/,$//\' | awk \'BEGIN {printf "["} {printf "%s", $0} END {printf "]"}\'\nexit\n');
147
+ child.waitExit();
148
+ try { ret.volumes = JSON.parse(child.stdout.str.trim()); } catch (xx) { }
149
+ child = null;
150
151
values.identifiers = identifiers;
152
values.linux = ret;
153
trimIdentifiers(values.identifiers);
145
- child = null;
154
155
var dmidecode = require('lib-finder').findBinary('dmidecode');
156
if (dmidecode != null)
translate/translate.json
+3498
-3470
@@ -31,7 +31,7 @@
31
"en": " (",
32
"nl": " (",
33
"xloc": [
34
- "default.handlebars->47->1521"
34
+ "default.handlebars->47->1520"
35
]
36
},
37
{
@@ -58,8 +58,8 @@
58
"zh-cht": " + CIRA",
59
"hu": " + CIRA",
60
"xloc": [
61
- "default.handlebars->47->2163",
62
- "default.handlebars->47->2165"
61
+ "default.handlebars->47->2169",
62
+ "default.handlebars->47->2171"
63
]
64
},
65
{
@@ -332,7 +332,7 @@
332
"zh-cht": " 可以使用密碼提示,但不建議使用。",
333
"hu": "Jelszó tipp használható, de nem ajánlott.",
334
"xloc": [
335
- "default.handlebars->47->2039"
335
+ "default.handlebars->47->2045"
336
]
337
},
338
{
@@ -359,8 +359,8 @@
359
"zh-cht": " 用戶需要先登入到該伺服器一次,然後才能將其新增到裝置群。",
360
"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.",
361
"xloc": [
362
- "default.handlebars->47->2287",
363
- "default.handlebars->47->2867"
362
+ "default.handlebars->47->2293",
363
+ "default.handlebars->47->2873"
364
]
365
},
366
{
@@ -435,7 +435,7 @@
435
"zh-cht": " 節點",
436
"hu": " node",
437
"xloc": [
438
- "default-mobile.handlebars->11->469"
438
+ "default-mobile.handlebars->11->470"
439
]
440
},
441
{
@@ -462,7 +462,7 @@
462
"zh-cht": " 節點",
463
"hu": "node-ok",
464
"xloc": [
465
- "default-mobile.handlebars->11->470"
465
+ "default-mobile.handlebars->11->471"
466
]
467
},
468
{
@@ -889,7 +889,7 @@
889
"zh-cht": "(可選的)",
890
"hu": "(opcionális)",
891
"xloc": [
892
- "default.handlebars->47->566"
892
+ "default.handlebars->47->565"
893
]
894
},
895
{
@@ -911,7 +911,7 @@
911
"hu": ")",
912
"xloc": [
913
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3createMeshLink1",
914
- "default.handlebars->47->1522"
914
+ "default.handlebars->47->1521"
915
]
916
},
917
{
@@ -938,8 +938,8 @@
938
"zh-cht": "* 8個字符,1個大寫,1個小寫,1個數字,1個非字母數字。",
939
"hu": "* 8 karakter, 1 nagybetű, 1 kisbetű , 1 szám, 1 speciális karakter.",
940
"xloc": [
941
- "default.handlebars->47->2247",
942
- "default.handlebars->47->528"
941
+ "default.handlebars->47->2253",
942
+ "default.handlebars->47->527"
943
]
944
},
945
{
@@ -966,7 +966,7 @@
966
"zh-cht": "*對於BSD,首先運行“ pkg install wget sudo bash ”。",
967
"hu": "* BSD esetén először futtassa a \\\"pkg install wget sudo bash\\\" parancsot.",
968
"xloc": [
969
- "default.handlebars->47->625"
969
+ "default.handlebars->47->624"
970
]
971
},
972
{
@@ -1039,16 +1039,16 @@
1039
"zh-cht": ",",
1040
"hu": ", ",
1041
"xloc": [
1042
- "default-mobile.handlebars->11->782",
1043
- "default-mobile.handlebars->11->784",
1044
- "default-mobile.handlebars->11->786",
1045
- "default-mobile.handlebars->11->972",
1046
- "default.handlebars->47->1623",
1047
- "default.handlebars->47->1625",
1048
- "default.handlebars->47->1627",
1049
- "default.handlebars->47->2363",
1050
- "default.handlebars->47->2640",
1051
- "default.handlebars->47->996"
1042
+ "default-mobile.handlebars->11->794",
1043
+ "default-mobile.handlebars->11->796",
1044
+ "default-mobile.handlebars->11->798",
1045
+ "default-mobile.handlebars->11->991",
1046
+ "default.handlebars->47->1622",
1047
+ "default.handlebars->47->1624",
1048
+ "default.handlebars->47->1626",
1049
+ "default.handlebars->47->2369",
1050
+ "default.handlebars->47->2646",
1051
+ "default.handlebars->47->995"
1052
]
1053
},
1054
{
@@ -1153,7 +1153,7 @@
1153
"zh-cht": ",只適用於Intel®AMT",
1154
"hu": ", csak Intel® AMT",
1155
"xloc": [
1156
- "default-mobile.handlebars->11->393",
1156
+ "default-mobile.handlebars->11->394",
1157
"default.handlebars->47->354"
1158
]
1159
},
@@ -1208,8 +1208,8 @@
1208
"zh-cht": ",MQTT在線",
1209
"hu": ", MQTT online",
1210
"xloc": [
1211
- "default-mobile.handlebars->11->875",
1212
- "default.handlebars->47->1717"
1211
+ "default-mobile.handlebars->11->894",
1212
+ "default.handlebars->47->1723"
1213
]
1214
},
1215
{
@@ -1236,8 +1236,8 @@
1236
"zh-cht": ", 不同意",
1237
"hu": ", Nincs hozzájárulás",
1238
"xloc": [
1239
- "default.handlebars->47->1091",
1240
- "default.handlebars->47->2205"
1239
+ "default.handlebars->47->1090",
1240
+ "default.handlebars->47->2211"
1241
]
1242
},
1243
{
@@ -1264,8 +1264,8 @@
1264
"zh-cht": ",提示同意",
1265
"hu": ", Hozzájárulás kérése a kapcsolódáshoz",
1266
"xloc": [
1267
- "default.handlebars->47->1092",
1268
- "default.handlebars->47->2206"
1267
+ "default.handlebars->47->1091",
1268
+ "default.handlebars->47->2212"
1269
]
1270
},
1271
{
@@ -1292,7 +1292,7 @@
1292
"zh-cht": ", RDP",
1293
"hu": ", RDP",
1294
"xloc": [
1295
- "default.handlebars->47->1384"
1295
+ "default.handlebars->47->1383"
1296
]
1297
},
1298
{
@@ -1319,8 +1319,8 @@
1319
"zh-cht": ", 每天重複",
1320
"hu": ", naponta ismétlődően",
1321
"xloc": [
1322
- "default.handlebars->47->1088",
1323
- "default.handlebars->47->2202"
1322
+ "default.handlebars->47->1087",
1323
+ "default.handlebars->47->2208"
1324
]
1325
},
1326
{
@@ -1347,8 +1347,8 @@
1347
"zh-cht": ", 每週重複一次",
1348
"hu": ", hetente ismétlődően",
1349
"xloc": [
1350
- "default.handlebars->47->1089",
1351
- "default.handlebars->47->2203"
1350
+ "default.handlebars->47->1088",
1351
+ "default.handlebars->47->2209"
1352
]
1353
},
1354
{
@@ -1426,8 +1426,8 @@
1426
"zh-cht": ", SFTP",
1427
"hu": ", SFTP",
1428
"xloc": [
1429
- "default-mobile.handlebars->11->680",
1430
- "default.handlebars->47->1505"
1429
+ "default-mobile.handlebars->11->692",
1430
+ "default.handlebars->47->1504"
1431
]
1432
},
1433
{
@@ -1454,7 +1454,7 @@
1454
"zh-cht": ", SSH",
1455
"hu": ", SSH",
1456
"xloc": [
1457
- "default.handlebars->47->1473"
1457
+ "default.handlebars->47->1472"
1458
]
1459
},
1460
{
@@ -1481,7 +1481,7 @@
1481
"zh-cht": ",軟體KVM",
1482
"hu": ", Soft-KVM",
1483
"xloc": [
1484
- "default.handlebars->47->1367",
1484
+ "default.handlebars->47->1366",
1485
"sharing.handlebars->11->12"
1486
]
1487
},
@@ -1509,8 +1509,8 @@
1509
"zh-cht": ", 工具欄",
1510
"hu": ", Tálca értesítés",
1511
"xloc": [
1512
- "default.handlebars->47->1093",
1513
- "default.handlebars->47->2207"
1512
+ "default.handlebars->47->1092",
1513
+ "default.handlebars->47->2213"
1514
]
1515
},
1516
{
@@ -1561,8 +1561,8 @@
1561
"zh-cht": ", 僅查看桌面",
1562
"hu": ", csak megtekintés",
1563
"xloc": [
1564
- "default.handlebars->47->1090",
1565
- "default.handlebars->47->2204"
1564
+ "default.handlebars->47->1089",
1565
+ "default.handlebars->47->2210"
1566
]
1567
},
1568
{
@@ -1589,12 +1589,12 @@
1589
"zh-cht": ",WebRTC",
1590
"hu": ", WebRTC",
1591
"xloc": [
1592
- "default-mobile.handlebars->11->621",
1593
- "default-mobile.handlebars->11->658",
1594
- "default-mobile.handlebars->11->681",
1595
- "default.handlebars->47->1383",
1596
- "default.handlebars->47->1474",
1597
- "default.handlebars->47->1506",
1592
+ "default-mobile.handlebars->11->633",
1593
+ "default-mobile.handlebars->11->670",
1594
+ "default-mobile.handlebars->11->693",
1595
+ "default.handlebars->47->1382",
1596
+ "default.handlebars->47->1473",
1597
+ "default.handlebars->47->1505",
1598
"sharing.handlebars->11->19",
1599
"sharing.handlebars->11->27",
1600
"sharing.handlebars->11->44",
@@ -1809,7 +1809,7 @@
1809
"zh-cht": ",{0}觀看",
1810
"hu": ", {0} nézi",
1811
"xloc": [
1812
- "default.handlebars->47->1378",
1812
+ "default.handlebars->47->1377",
1813
"sharing.handlebars->11->13"
1814
]
1815
},
@@ -1920,11 +1920,12 @@
1920
"zh-cht": "...",
1921
"hu": "...",
1922
"xloc": [
1923
- "default-mobile.handlebars->11->346",
1924
- "default-mobile.handlebars->11->687",
1925
- "default.handlebars->47->1520",
1926
- "default.handlebars->47->2429",
1927
- "default.handlebars->47->3103",
1923
+ "default-mobile.handlebars->11->345",
1924
+ "default-mobile.handlebars->11->347",
1925
+ "default-mobile.handlebars->11->699",
1926
+ "default.handlebars->47->1519",
1927
+ "default.handlebars->47->2435",
1928
+ "default.handlebars->47->3109",
1929
"sharing.handlebars->11->50"
1930
]
1931
},
@@ -2102,7 +2103,7 @@
2103
"zh-cht": "1個活躍時段",
2104
"hu": "1 aktív munkamenet",
2105
"xloc": [
2105
- "default.handlebars->47->2961"
2106
+ "default.handlebars->47->2967"
2107
]
2108
},
2109
{
@@ -2129,9 +2130,9 @@
2130
"zh-cht": "1個位元組",
2131
"hu": "1 byte",
2132
"xloc": [
2132
- "default-mobile.handlebars->11->1016",
2133
- "default-mobile.handlebars->11->356",
2134
- "default.handlebars->47->2453",
2133
+ "default-mobile.handlebars->11->1035",
2134
+ "default-mobile.handlebars->11->357",
2135
+ "default.handlebars->47->2459",
2136
"download.handlebars->3->1",
2137
"download2.handlebars->5->1",
2138
"sharing.handlebars->11->96"
@@ -2188,7 +2189,7 @@
2189
"zh-cht": "1位聯絡文",
2190
"hu": "1 csatlakozás",
2191
"xloc": [
2191
- "default.handlebars->47->1380",
2192
+ "default.handlebars->47->1379",
2193
"sharing.handlebars->11->15"
2194
]
2195
},
@@ -2217,8 +2218,8 @@
2218
"hu": "1 nap",
2219
"xloc": [
2220
"default.handlebars->47->276",
2220
- "default.handlebars->47->557",
2221
- "default.handlebars->47->571"
2221
+ "default.handlebars->47->556",
2222
+ "default.handlebars->47->570"
2223
]
2224
},
2225
{
@@ -2245,7 +2246,7 @@
2246
"zh-cht": "1群",
2247
"hu": "1 csoport",
2248
"xloc": [
2248
- "default.handlebars->47->2917"
2249
+ "default.handlebars->47->2923"
2250
]
2251
},
2252
{
@@ -2273,8 +2274,8 @@
2274
"hu": "1 óra",
2275
"xloc": [
2276
"default.handlebars->47->274",
2276
- "default.handlebars->47->555",
2277
- "default.handlebars->47->569"
2277
+ "default.handlebars->47->554",
2278
+ "default.handlebars->47->568"
2279
]
2280
},
2281
{
@@ -2301,8 +2302,8 @@
2302
"zh-cht": "1分鐘",
2303
"hu": "1 perc",
2304
"xloc": [
2304
- "default.handlebars->47->1200",
2305
- "default.handlebars->47->2004"
2305
+ "default.handlebars->47->1199",
2306
+ "default.handlebars->47->2010"
2307
]
2308
},
2309
{
@@ -2357,8 +2358,8 @@
2358
"hu": "1 hónap",
2359
"xloc": [
2360
"default.handlebars->47->278",
2360
- "default.handlebars->47->559",
2361
- "default.handlebars->47->573"
2361
+ "default.handlebars->47->558",
2362
+ "default.handlebars->47->572"
2363
]
2364
},
2365
{
@@ -2385,7 +2386,7 @@
2386
"zh-cht": "有1個用戶沒有顯示,請使用搜尋框搜尋用戶...",
2387
"hu": "1 további felhasználó nem jelenik meg, használja a keresőmezőt a felhasználók kereséséhez...",
2388
"xloc": [
2388
- "default.handlebars->47->2672"
2389
+ "default.handlebars->47->2678"
2390
]
2391
},
2392
{
@@ -2412,7 +2413,7 @@
2413
"zh-cht": "1個節點",
2414
"hu": "1 node",
2415
"xloc": [
2415
- "default.handlebars->47->677"
2416
+ "default.handlebars->47->676"
2417
]
2418
},
2419
{
@@ -2487,8 +2488,8 @@
2488
"zh-cht": "1秒",
2489
"hu": "1 másodperc",
2490
"xloc": [
2490
- "default-mobile.handlebars->11->570",
2491
- "default.handlebars->47->1238"
2491
+ "default-mobile.handlebars->11->571",
2492
+ "default.handlebars->47->1237"
2493
]
2494
},
2495
{
@@ -2542,7 +2543,7 @@
2543
"zh-cht": "1 個選定的設備處於離線狀態。",
2544
"hu": "1 kiválasztott eszköz offline.",
2545
"xloc": [
2545
- "default.handlebars->47->743"
2546
+ "default.handlebars->47->742"
2547
]
2548
},
2549
{
@@ -2569,7 +2570,7 @@
2570
"zh-cht": "1 個選定的設備在線。",
2571
"hu": "1 kiválasztott eszköz online.",
2572
"xloc": [
2572
- "default.handlebars->47->741"
2573
+ "default.handlebars->47->740"
2574
]
2575
},
2576
{
@@ -2596,14 +2597,14 @@
2597
"zh-cht": "1節",
2598
"hu": "1 munkamenet",
2599
"xloc": [
2599
- "default-mobile.handlebars->11->410",
2600
- "default-mobile.handlebars->11->413",
2601
- "default-mobile.handlebars->11->417",
2602
- "default-mobile.handlebars->11->421",
2603
- "default-mobile.handlebars->11->425",
2604
- "default-mobile.handlebars->11->429",
2605
- "default-mobile.handlebars->11->433",
2606
- "default.handlebars->47->2676",
2600
+ "default-mobile.handlebars->11->411",
2601
+ "default-mobile.handlebars->11->414",
2602
+ "default-mobile.handlebars->11->418",
2603
+ "default-mobile.handlebars->11->422",
2604
+ "default-mobile.handlebars->11->426",
2605
+ "default-mobile.handlebars->11->430",
2606
+ "default-mobile.handlebars->11->434",
2607
+ "default.handlebars->47->2682",
2608
"default.handlebars->47->446",
2609
"default.handlebars->47->449",
2610
"default.handlebars->47->453",
@@ -2638,8 +2639,8 @@
2639
"hu": "1 hét",
2640
"xloc": [
2641
"default.handlebars->47->277",
2641
- "default.handlebars->47->558",
2642
- "default.handlebars->47->572"
2642
+ "default.handlebars->47->557",
2643
+ "default.handlebars->47->571"
2644
]
2645
},
2646
{
@@ -2805,8 +2806,8 @@
2806
"zh-cht": "10分鐘",
2807
"hu": "10 perc",
2808
"xloc": [
2808
- "default.handlebars->47->1202",
2809
- "default.handlebars->47->2006"
2809
+ "default.handlebars->47->1201",
2810
+ "default.handlebars->47->2012"
2811
]
2812
},
2813
{
@@ -2833,8 +2834,8 @@
2834
"zh-cht": "10 秒",
2835
"hu": "10 másodperc",
2836
"xloc": [
2836
- "default-mobile.handlebars->11->572",
2837
- "default.handlebars->47->1240"
2837
+ "default-mobile.handlebars->11->573",
2838
+ "default.handlebars->47->1239"
2839
]
2840
},
2841
{
@@ -3026,8 +3027,8 @@
3027
"zh-cht": "12小時",
3028
"hu": "12 óra",
3029
"xloc": [
3029
- "default.handlebars->47->1210",
3030
- "default.handlebars->47->2014"
3030
+ "default.handlebars->47->1209",
3031
+ "default.handlebars->47->2020"
3032
]
3033
},
3034
{
@@ -3215,8 +3216,8 @@
3216
"zh-cht": "15分鐘",
3217
"hu": "15 perc",
3218
"xloc": [
3218
- "default.handlebars->47->1203",
3219
- "default.handlebars->47->2007"
3219
+ "default.handlebars->47->1202",
3220
+ "default.handlebars->47->2013"
3221
]
3222
},
3223
{
@@ -3243,8 +3244,8 @@
3244
"zh-cht": "16小時",
3245
"hu": "12 óra",
3246
"xloc": [
3246
- "default.handlebars->47->1211",
3247
- "default.handlebars->47->2015"
3247
+ "default.handlebars->47->1210",
3248
+ "default.handlebars->47->2021"
3249
]
3250
},
3251
{
@@ -3460,8 +3461,8 @@
3461
"zh-cht": "2天",
3462
"hu": "2 nap",
3463
"xloc": [
3463
- "default.handlebars->47->1213",
3464
- "default.handlebars->47->2017"
3464
+ "default.handlebars->47->1212",
3465
+ "default.handlebars->47->2023"
3466
]
3467
},
3468
{
@@ -3488,8 +3489,8 @@
3489
"zh-cht": "2小時",
3490
"hu": "2 óra",
3491
"xloc": [
3491
- "default.handlebars->47->1207",
3492
- "default.handlebars->47->2011"
3492
+ "default.handlebars->47->1206",
3493
+ "default.handlebars->47->2017"
3494
]
3495
},
3496
{
@@ -3682,8 +3683,8 @@
3683
"zh-cht": "24小時",
3684
"hu": "24 óra",
3685
"xloc": [
3685
- "default.handlebars->47->1212",
3686
- "default.handlebars->47->2016"
3686
+ "default.handlebars->47->1211",
3687
+ "default.handlebars->47->2022"
3688
]
3689
},
3690
{
@@ -3763,7 +3764,7 @@
3764
"zh-cht": "2FA備份代碼已清除",
3765
"hu": "2FA biztonsági kódok törölve",
3766
"xloc": [
3766
- "default.handlebars->47->2566"
3767
+ "default.handlebars->47->2572"
3768
]
3769
},
3770
{
@@ -3818,7 +3819,7 @@
3819
"zh-cht": "第二個因素",
3820
"hu": "2. faktor",
3821
"xloc": [
3821
- "default.handlebars->47->3140"
3822
+ "default.handlebars->47->3146"
3823
]
3824
},
3825
{
@@ -3845,8 +3846,8 @@
3846
"zh-cht": "啟用第二因素身份驗證",
3847
"hu": "2. faktoros hitelesítés engedélyezve",
3848
"xloc": [
3848
- "default.handlebars->47->2690",
3849
- "default.handlebars->47->2942"
3849
+ "default.handlebars->47->2696",
3850
+ "default.handlebars->47->2948"
3851
]
3852
},
3853
{
@@ -3895,7 +3896,7 @@
3896
"tr": "3",
3897
"hu": "3",
3898
"xloc": [
3898
- "default-mobile.handlebars->11->714"
3899
+ "default-mobile.handlebars->11->726"
3900
]
3901
},
3902
{
@@ -4006,8 +4007,8 @@
4007
"zh-cht": "30分鐘",
4008
"hu": "30 perc",
4009
"xloc": [
4009
- "default.handlebars->47->1204",
4010
- "default.handlebars->47->2008"
4010
+ "default.handlebars->47->1203",
4011
+ "default.handlebars->47->2014"
4012
]
4013
},
4014
{
@@ -4034,8 +4035,8 @@
4035
"zh-cht": "32 位",
4036
"hu": "32-bit",
4037
"xloc": [
4037
- "default-mobile.handlebars->11->724",
4038
- "default.handlebars->47->1581"
4038
+ "default-mobile.handlebars->11->736",
4039
+ "default.handlebars->47->1580"
4040
]
4041
},
4042
{
@@ -4115,8 +4116,8 @@
4116
"zh-cht": "4天",
4117
"hu": "4 nap",
4118
"xloc": [
4118
- "default.handlebars->47->1214",
4119
- "default.handlebars->47->2018"
4119
+ "default.handlebars->47->1213",
4120
+ "default.handlebars->47->2024"
4121
]
4122
},
4123
{
@@ -4143,8 +4144,8 @@
4144
"zh-cht": "4個小時",
4145
"hu": "4 óra",
4146
"xloc": [
4146
- "default.handlebars->47->1208",
4147
- "default.handlebars->47->2012"
4147
+ "default.handlebars->47->1207",
4148
+ "default.handlebars->47->2018"
4149
]
4150
},
4151
{
@@ -4282,8 +4283,8 @@
4283
"zh-cht": "45分鐘",
4284
"hu": "45 perc",
4285
"xloc": [
4285
- "default.handlebars->47->1205",
4286
- "default.handlebars->47->2009"
4286
+ "default.handlebars->47->1204",
4287
+ "default.handlebars->47->2015"
4288
]
4289
},
4290
{
@@ -4337,8 +4338,8 @@
4338
"zh-cht": "5分鐘",
4339
"hu": "5 perc",
4340
"xloc": [
4340
- "default.handlebars->47->1201",
4341
- "default.handlebars->47->2005"
4341
+ "default.handlebars->47->1200",
4342
+ "default.handlebars->47->2011"
4343
]
4344
},
4345
{
@@ -4365,8 +4366,8 @@
4366
"zh-cht": "5秒",
4367
"hu": "5 másodperc",
4368
"xloc": [
4368
- "default-mobile.handlebars->11->571",
4369
- "default.handlebars->47->1239"
4369
+ "default-mobile.handlebars->11->572",
4370
+ "default.handlebars->47->1238"
4371
]
4372
},
4373
{
@@ -4534,8 +4535,8 @@
4535
"zh-cht": "60分鐘",
4536
"hu": "60 perc",
4537
"xloc": [
4537
- "default.handlebars->47->1206",
4538
- "default.handlebars->47->2010"
4538
+ "default.handlebars->47->1205",
4539
+ "default.handlebars->47->2016"
4540
]
4541
},
4542
{
@@ -4618,8 +4619,8 @@
4619
"zh-cht": "64 位",
4620
"hu": "64-bit",
4621
"xloc": [
4621
- "default-mobile.handlebars->11->726",
4622
- "default.handlebars->47->1583"
4622
+ "default-mobile.handlebars->11->738",
4623
+ "default.handlebars->47->1582"
4624
]
4625
},
4626
{
@@ -4796,7 +4797,7 @@
4797
"zh-cht": "7天電源狀態",
4798
"hu": "7 napos energiaellátás állapota",
4799
"xloc": [
4799
- "default.handlebars->47->1279"
4800
+ "default.handlebars->47->1278"
4801
]
4802
},
4803
{
@@ -4823,7 +4824,7 @@
4824
"zh-cht": "7天",
4825
"hu": "7 nap",
4826
"xloc": [
4826
- "default.handlebars->47->2019"
4827
+ "default.handlebars->47->2025"
4828
]
4829
},
4830
{
@@ -4907,10 +4908,10 @@
4908
"zh-cht": "8小時",
4909
"hu": "8 óra",
4910
"xloc": [
4910
- "default.handlebars->47->1209",
4911
- "default.handlebars->47->2013",
4912
- "default.handlebars->47->556",
4913
- "default.handlebars->47->570"
4911
+ "default.handlebars->47->1208",
4912
+ "default.handlebars->47->2019",
4913
+ "default.handlebars->47->555",
4914
+ "default.handlebars->47->569"
4915
]
4916
},
4917
{
@@ -5048,7 +5049,7 @@
5049
"zh-cht": "</table>",
5050
"hu": "<<",
5051
"xloc": [
5051
- "default.handlebars->47->636"
5052
+ "default.handlebars->47->635"
5053
]
5054
},
5055
{
@@ -5218,8 +5219,8 @@
5219
"nl": "<b>DNS Servers</b>",
5220
"pl": "<b>Serwery DNS</b>",
5221
"xloc": [
5221
- "default-mobile.handlebars->11->785",
5222
- "default.handlebars->47->1626"
5222
+ "default-mobile.handlebars->11->797",
5223
+ "default.handlebars->47->1625"
5224
]
5225
},
5226
{
@@ -5227,7 +5228,7 @@
5228
"nl": "<div style=margin-bottom:4px>Perform batch device notification</div>",
5229
"pl": "<div style=margin-bottom:4px>Wykonaj wsadowo powiadomienie na maszynach</div>",
5230
"xloc": [
5230
- "default.handlebars->47->756"
5231
+ "default.handlebars->47->755"
5232
]
5233
},
5234
{
@@ -5274,7 +5275,7 @@
5275
"zh-cht": "<table style=width:180px>",
5276
"hu": "<table style=width:180px>",
5277
"xloc": [
5277
- "default.handlebars->47->633"
5278
+ "default.handlebars->47->632"
5279
]
5280
},
5281
{
@@ -5282,7 +5283,7 @@
5283
"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>",
5284
"pl": "<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>",
5285
"xloc": [
5285
- "default.handlebars->47->634"
5286
+ "default.handlebars->47->633"
5287
]
5288
},
5289
{
@@ -5290,7 +5291,7 @@
5291
"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>",
5292
"pl": "<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>",
5293
"xloc": [
5293
- "default.handlebars->47->635"
5294
+ "default.handlebars->47->634"
5295
]
5296
},
5297
{
@@ -5368,10 +5369,10 @@
5369
"zh-cht": "ACM",
5370
"hu": "ACM",
5371
"xloc": [
5371
- "default-mobile.handlebars->11->504",
5372
- "default.handlebars->47->2183",
5372
+ "default-mobile.handlebars->11->505",
5373
+ "default.handlebars->47->2189",
5374
"default.handlebars->47->434",
5374
- "default.handlebars->47->905"
5375
+ "default.handlebars->47->904"
5376
]
5377
},
5378
{
@@ -5447,7 +5448,7 @@
5448
"hu": "AMT",
5449
"xloc": [
5450
"default.handlebars->47->411",
5450
- "default.handlebars->47->712"
5451
+ "default.handlebars->47->711"
5452
]
5453
},
5454
{
@@ -5490,7 +5491,7 @@
5491
"zh-cht": "AMT操作系統",
5492
"hu": "AMT-OS",
5493
"xloc": [
5493
- "default.handlebars->47->3285"
5494
+ "default.handlebars->47->3291"
5495
]
5496
},
5497
{
@@ -5517,7 +5518,7 @@
5518
"zh-cht": "AMT-Redir",
5519
"hu": "AMT-Redir",
5520
"xloc": [
5520
- "default.handlebars->47->3147"
5521
+ "default.handlebars->47->3153"
5522
]
5523
},
5524
{
@@ -5544,14 +5545,14 @@
5545
"zh-cht": "AMT-WSMAN",
5546
"hu": "AMT-WSMAN",
5547
"xloc": [
5547
- "default.handlebars->47->3146"
5548
+ "default.handlebars->47->3152"
5549
]
5550
},
5551
{
5552
"en": "APK",
5553
"nl": "APK",
5554
"xloc": [
5554
- "default.handlebars->47->639"
5555
+ "default.handlebars->47->638"
5556
]
5557
},
5558
{
@@ -5559,8 +5560,8 @@
5560
"nl": "APK versie van de MeshAgent",
5561
"pl": "Wersja APK MeshAgent",
5562
"xloc": [
5562
- "default-mobile.handlebars->11->925",
5563
- "default.handlebars->47->638"
5563
+ "default-mobile.handlebars->11->944",
5564
+ "default.handlebars->47->637"
5565
]
5566
},
5567
{
@@ -5570,8 +5571,8 @@
5571
"de": "ARM 64bit Version des MeshAgents",
5572
"es": "Version ARM 64bit de el MeshAgent",
5573
"xloc": [
5573
- "default.handlebars->47->619",
5574
- "default.handlebars->47->659"
5574
+ "default.handlebars->47->618",
5575
+ "default.handlebars->47->658"
5576
]
5577
},
5578
{
@@ -5738,10 +5739,10 @@
5739
"zh-cht": "視聽",
5740
"hu": "AV",
5741
"xloc": [
5741
- "default-mobile.handlebars->11->731",
5742
- "default-mobile.handlebars->11->733",
5743
- "default.handlebars->47->924",
5744
- "default.handlebars->47->926"
5742
+ "default-mobile.handlebars->11->743",
5743
+ "default-mobile.handlebars->11->745",
5744
+ "default.handlebars->47->923",
5745
+ "default.handlebars->47->925"
5746
]
5747
},
5748
{
@@ -5768,8 +5769,8 @@
5769
"zh-cht": "拒絕存取",
5770
"hu": "Hozzáférés megtagadva",
5771
"xloc": [
5771
- "default-mobile.handlebars->11->876",
5772
- "default.handlebars->47->1718"
5772
+ "default-mobile.handlebars->11->895",
5773
+ "default.handlebars->47->1724"
5774
]
5775
},
5776
{
@@ -5852,7 +5853,7 @@
5853
"zh-cht": "存取伺服器檔案",
5854
"hu": "Hozzáférés a kiszolgálófájlokhoz",
5855
"xloc": [
5855
- "default.handlebars->47->2873"
5856
+ "default.handlebars->47->2879"
5857
]
5858
},
5859
{
@@ -5966,14 +5967,14 @@
5967
"xloc": [
5968
"default-mobile.handlebars->11->331",
5969
"default-mobile.handlebars->11->333",
5969
- "default-mobile.handlebars->11->471",
5970
- "default-mobile.handlebars->11->473",
5970
+ "default-mobile.handlebars->11->472",
5971
+ "default-mobile.handlebars->11->474",
5972
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountSecurity->1->0",
5972
- "default.handlebars->47->2048",
5973
- "default.handlebars->47->2050",
5974
- "default.handlebars->47->3339",
5975
- "default.handlebars->47->865",
5976
- "default.handlebars->47->867"
5973
+ "default.handlebars->47->2054",
5974
+ "default.handlebars->47->2056",
5975
+ "default.handlebars->47->3345",
5976
+ "default.handlebars->47->864",
5977
+ "default.handlebars->47->866"
5978
]
5979
},
5980
{
@@ -6000,8 +6001,8 @@
6001
"zh-cht": "帳號設定",
6002
"hu": "Fiókbeállítások",
6003
"xloc": [
6003
- "default-mobile.handlebars->11->983",
6004
- "default.handlebars->47->3210"
6004
+ "default-mobile.handlebars->11->1002",
6005
+ "default.handlebars->47->3216"
6006
]
6007
},
6008
{
@@ -6068,7 +6069,7 @@
6069
"hu": "Fiók megváltozott: LDAP-adatokkal való szinkronizálás.",
6070
"es": "La cuenta cambio a ser actualizada con los datos de LDAP.",
6071
"xloc": [
6071
- "default.handlebars->47->2627"
6072
+ "default.handlebars->47->2633"
6073
]
6074
},
6075
{
@@ -6095,7 +6096,7 @@
6096
"zh-cht": "帳戶已更改:{0}",
6097
"hu": "Fiók megváltozott: {0}",
6098
"xloc": [
6098
- "default.handlebars->47->2539"
6099
+ "default.handlebars->47->2545"
6100
]
6101
},
6102
{
@@ -6122,7 +6123,7 @@
6123
"zh-cht": "創建帳戶,電子郵件為{0}",
6124
"hu": "Fiók létrehozva, az e-mail címe {0} ",
6125
"xloc": [
6125
- "default.handlebars->47->2538"
6126
+ "default.handlebars->47->2544"
6127
]
6128
},
6129
{
@@ -6149,7 +6150,7 @@
6150
"zh-cht": "已創建帳戶,名稱為 {0}。",
6151
"hu": "Fiók létrehozva, név: {0}. ",
6152
"xloc": [
6152
- "default.handlebars->47->2601"
6153
+ "default.handlebars->47->2607"
6154
]
6155
},
6156
{
@@ -6176,7 +6177,7 @@
6177
"zh-cht": "帳戶已創建,用戶名是{0}",
6178
"hu": "Fiók létrehozva, felhasználónév {0} ",
6179
"xloc": [
6179
- "default.handlebars->47->2537"
6180
+ "default.handlebars->47->2543"
6181
]
6182
},
6183
{
@@ -6205,8 +6206,8 @@
6206
"xloc": [
6207
"default-mobile.handlebars->11->66",
6208
"default.handlebars->47->210",
6208
- "default.handlebars->47->2692",
6209
- "default.handlebars->47->2870"
6209
+ "default.handlebars->47->2698",
6210
+ "default.handlebars->47->2876"
6211
]
6212
},
6213
{
@@ -6233,8 +6234,8 @@
6234
"zh-cht": "達到帳戶限制。",
6235
"hu": "Elérte a fiókkorlátot.",
6236
"xloc": [
6236
- "default-mobile.handlebars->11->995",
6237
- "default.handlebars->47->3222",
6237
+ "default-mobile.handlebars->11->1014",
6238
+ "default.handlebars->47->3228",
6239
"login-mobile.handlebars->5->6",
6240
"login.handlebars->5->8",
6241
"login2.handlebars->7->207"
@@ -6293,7 +6294,7 @@
6294
"zh-cht": "帳號登錄",
6295
"hu": "Bejelentkezés a fiókba",
6296
"xloc": [
6296
- "default.handlebars->47->2474"
6297
+ "default.handlebars->47->2480"
6298
]
6299
},
6300
{
@@ -6320,7 +6321,7 @@
6321
"zh-cht": "從 {0}、{1}、{2} 登錄帳戶",
6322
"hu": "Bejelentkezés a fiókba innen: {0}, {1}, {2}",
6323
"xloc": [
6323
- "default.handlebars->47->2580"
6324
+ "default.handlebars->47->2586"
6325
]
6326
},
6327
{
@@ -6332,7 +6333,7 @@
6333
"hu": "Fiók bejelentkezési token rekordok",
6334
"es": "Registro de Tokens de inicio de sesion",
6335
"xloc": [
6335
- "default.handlebars->47->3189"
6336
+ "default.handlebars->47->3195"
6337
]
6338
},
6339
{
@@ -6359,7 +6360,7 @@
6360
"zh-cht": "帳戶登出",
6361
"hu": "Fiók kijelentkezés",
6362
"xloc": [
6362
- "default.handlebars->47->2475"
6363
+ "default.handlebars->47->2481"
6364
]
6365
},
6366
{
@@ -6415,7 +6416,7 @@
6416
"zh-cht": "帳戶密碼已更改:{0}",
6417
"hu": "Fiók jelszava megváltozott: {0}",
6418
"xloc": [
6418
- "default.handlebars->47->2547"
6419
+ "default.handlebars->47->2553"
6420
]
6421
},
6422
{
@@ -6442,7 +6443,7 @@
6443
"zh-cht": "帳戶已刪除",
6444
"hu": "Fiók eltávolítva",
6445
"xloc": [
6445
- "default.handlebars->47->2536"
6446
+ "default.handlebars->47->2542"
6447
]
6448
},
6449
{
@@ -6496,8 +6497,8 @@
6497
"zh-cht": "指令",
6498
"hu": "Művelet",
6499
"xloc": [
6499
- "default-mobile.handlebars->11->882",
6500
- "default.handlebars->47->1724",
6500
+ "default-mobile.handlebars->11->901",
6501
+ "default.handlebars->47->1730",
6502
"default.handlebars->container->column_l->p42->p42tbl->1->0->8"
6503
]
6504
},
@@ -6525,8 +6526,8 @@
6526
"zh-cht": "動作檔案",
6527
"hu": "Művelet fájl",
6528
"xloc": [
6528
- "default.handlebars->47->1326",
6529
- "default.handlebars->47->1328"
6529
+ "default.handlebars->47->1325",
6530
+ "default.handlebars->47->1327"
6531
]
6532
},
6533
{
@@ -6553,11 +6554,11 @@
6554
"zh-cht": "動作",
6555
"hu": "Tevékenységek",
6556
"xloc": [
6556
- "default-mobile.handlebars->11->538",
6557
+ "default-mobile.handlebars->11->539",
6558
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea4->1->3",
6559
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->1",
6560
"default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea4->1->3",
6560
- "default.handlebars->47->997",
6561
+ "default.handlebars->47->996",
6562
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->1",
6563
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->1",
6564
"default.handlebars->container->column_l->p13->p13toolbar->1->0->1->1"
@@ -6587,7 +6588,7 @@
6588
"zh-cht": "使用FAT格式的USB密鑰在管理控制模式(ACM)中激活英特爾®AMT。將setup.bin放在其上,然後使用此鍵引導一台或多台計算機。",
6589
"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.",
6590
"xloc": [
6590
- "default.handlebars->47->522"
6591
+ "default.handlebars->47->521"
6592
]
6593
},
6594
{
@@ -6668,7 +6669,7 @@
6669
"zh-cht": "如果ACM失敗,則激活到CCM",
6670
"hu": "Aktiválja a CCM-et, ha az ACM meghiúsul",
6671
"xloc": [
6671
- "default.handlebars->47->2238"
6672
+ "default.handlebars->47->2244"
6673
]
6674
},
6675
{
@@ -6695,12 +6696,12 @@
6696
"zh-cht": "已啟動",
6697
"hu": "Aktiválva",
6698
"xloc": [
6698
- "default-mobile.handlebars->11->499",
6699
- "default-mobile.handlebars->11->501",
6700
- "default-mobile.handlebars->11->792",
6701
- "default.handlebars->47->1633",
6702
- "default.handlebars->47->898",
6703
- "default.handlebars->47->900"
6699
+ "default-mobile.handlebars->11->500",
6700
+ "default-mobile.handlebars->11->502",
6701
+ "default-mobile.handlebars->11->804",
6702
+ "default.handlebars->47->1632",
6703
+ "default.handlebars->47->897",
6704
+ "default.handlebars->47->899"
6705
]
6706
},
6707
{
@@ -6754,8 +6755,8 @@
6755
"zh-cht": "主動設備共享",
6756
"hu": "Atív eszközmegosztás",
6757
"xloc": [
6757
- "default.handlebars->47->1073",
6758
- "default.handlebars->47->2187"
6758
+ "default.handlebars->47->1072",
6759
+ "default.handlebars->47->2193"
6760
]
6761
},
6762
{
@@ -6782,7 +6783,7 @@
6783
"zh-cht": "活動登錄令牌",
6784
"hu": "Aktív bejelentkezési tokenek",
6785
"xloc": [
6785
- "default.handlebars->47->2079"
6786
+ "default.handlebars->47->2085"
6787
]
6788
},
6789
{
@@ -6809,7 +6810,7 @@
6810
"zh-cht": "活躍用戶",
6811
"hu": "Aktív felhasználó",
6812
"xloc": [
6812
- "default.handlebars->47->951"
6813
+ "default.handlebars->47->950"
6814
]
6815
},
6816
{
@@ -6836,7 +6837,7 @@
6837
"zh-cht": "活躍用戶",
6838
"hu": "Aktív felhasználók",
6839
"xloc": [
6839
- "default.handlebars->47->950"
6840
+ "default.handlebars->47->949"
6841
]
6842
},
6843
{
@@ -6887,9 +6888,9 @@
6888
"zh-cht": "添加",
6889
"hu": "Hozzáadás",
6890
"xloc": [
6890
- "default-mobile.handlebars->11->650",
6891
- "default.handlebars->47->1416",
6892
- "default.handlebars->47->1421"
6891
+ "default-mobile.handlebars->11->662",
6892
+ "default.handlebars->47->1415",
6893
+ "default.handlebars->47->1420"
6894
]
6895
},
6896
{
@@ -6964,7 +6965,7 @@
6965
"zh-cht": "新增代理",
6966
"hu": "Agent hozzáadása",
6967
"xloc": [
6967
- "default.handlebars->47->2177",
6968
+ "default.handlebars->47->2183",
6969
"default.handlebars->47->487"
6970
]
6971
},
@@ -7016,9 +7017,9 @@
7017
"zh-cht": "新增裝置",
7018
"hu": "Eszköz hozzáadása",
7019
"xloc": [
7019
- "default.handlebars->47->2181",
7020
- "default.handlebars->47->2845",
7021
- "default.handlebars->47->3039",
7020
+ "default.handlebars->47->2187",
7021
+ "default.handlebars->47->2851",
7022
+ "default.handlebars->47->3045",
7023
"default.handlebars->47->491"
7024
]
7025
},
@@ -7046,7 +7047,7 @@
7047
"zh-cht": "新增裝置日誌",
7048
"hu": "Eszköz esemény hozzáadása",
7049
"xloc": [
7049
- "default.handlebars->47->1159"
7050
+ "default.handlebars->47->1158"
7051
]
7052
},
7053
{
@@ -7073,9 +7074,9 @@
7074
"zh-cht": "新增裝置群",
7075
"hu": "Eszközcsoport hozzáadása",
7076
"xloc": [
7076
- "default.handlebars->47->2324",
7077
- "default.handlebars->47->2839",
7078
- "default.handlebars->47->3027",
7077
+ "default.handlebars->47->2330",
7078
+ "default.handlebars->47->2845",
7079
+ "default.handlebars->47->3033",
7080
"default.handlebars->47->387"
7081
]
7082
},
@@ -7103,7 +7104,7 @@
7104
"zh-cht": "新增裝置群權限",
7105
"hu": "Eszközcsoport engedélyek hozzáadása",
7106
"xloc": [
7106
- "default.handlebars->47->2321"
7107
+ "default.handlebars->47->2327"
7108
]
7109
},
7110
{
@@ -7130,8 +7131,8 @@
7131
"zh-cht": "新增裝置權限",
7132
"hu": "Eszköz engedélyek hozzáadása",
7133
"xloc": [
7133
- "default.handlebars->47->2326",
7134
- "default.handlebars->47->2328"
7134
+ "default.handlebars->47->2332",
7135
+ "default.handlebars->47->2334"
7136
]
7137
},
7138
{
@@ -7287,7 +7288,7 @@
7288
"zh-cht": "新增成員身份",
7289
"hu": "Hozzáadás Felhasználói Csoporthoz",
7290
"xloc": [
7290
- "default.handlebars->47->3059"
7291
+ "default.handlebars->47->3065"
7292
]
7293
},
7294
{
@@ -7314,7 +7315,7 @@
7315
"zh-cht": "新增 Mesh Agent",
7316
"hu": "Mesh Agent hozzáadása",
7317
"xloc": [
7317
- "default.handlebars->47->676"
7318
+ "default.handlebars->47->675"
7319
]
7320
},
7321
{
@@ -7365,8 +7366,8 @@
7366
"zh-cht": "新增安全密鑰",
7367
"hu": "Biztonsági kulcs hozzáadása",
7368
"xloc": [
7368
- "default.handlebars->47->1794",
7369
- "default.handlebars->47->1795",
7369
+ "default.handlebars->47->1800",
7370
+ "default.handlebars->47->1801",
7371
"default.handlebars->47->241",
7372
"default.handlebars->47->243",
7373
"default.handlebars->47->246",
@@ -7397,8 +7398,8 @@
7398
"zh-cht": "新增用戶",
7399
"hu": "Felhasználó hozzáadása",
7400
"xloc": [
7400
- "default-mobile.handlebars->11->907",
7401
- "default.handlebars->47->1065"
7401
+ "default-mobile.handlebars->11->926",
7402
+ "default.handlebars->47->1064"
7403
]
7404
},
7405
{
@@ -7425,7 +7426,7 @@
7426
"zh-cht": "新增用戶裝置權限",
7427
"hu": "Felhasználói eszköz engedélyek hozzáadása",
7428
"xloc": [
7428
- "default.handlebars->47->2331"
7429
+ "default.handlebars->47->2337"
7430
]
7431
},
7432
{
@@ -7452,10 +7453,10 @@
7453
"zh-cht": "新增用戶群",
7454
"hu": "Felhasználói csoport hozzáadása",
7455
"xloc": [
7455
- "default.handlebars->47->1066",
7456
- "default.handlebars->47->2171",
7457
- "default.handlebars->47->2323",
7458
- "default.handlebars->47->3033"
7456
+ "default.handlebars->47->1065",
7457
+ "default.handlebars->47->2177",
7458
+ "default.handlebars->47->2329",
7459
+ "default.handlebars->47->3039"
7460
]
7461
},
7462
{
@@ -7482,7 +7483,7 @@
7483
"zh-cht": "新增用戶群裝置權限",
7484
"hu": "Felhasználói csoport eszköz engedélyek hozzáadása",
7485
"xloc": [
7485
- "default.handlebars->47->2333"
7486
+ "default.handlebars->47->2339"
7487
]
7488
},
7489
{
@@ -7509,7 +7510,7 @@
7510
"zh-cht": "將用戶新增到裝置群",
7511
"hu": "Felhasználó hozzáadása az eszköz csoporthoz",
7512
"xloc": [
7512
- "default-mobile.handlebars->11->948"
7513
+ "default-mobile.handlebars->11->967"
7514
]
7515
},
7516
{
@@ -7560,8 +7561,8 @@
7561
"zh-cht": "新增用戶",
7562
"hu": "Felhasználók hozzáadása",
7563
"xloc": [
7563
- "default.handlebars->47->2170",
7564
- "default.handlebars->47->2834"
7564
+ "default.handlebars->47->2176",
7565
+ "default.handlebars->47->2840"
7566
]
7567
},
7568
{
@@ -7588,7 +7589,7 @@
7589
"zh-cht": "將用戶新增到裝置群",
7590
"hu": "Felhasználók hozzáadása az eszköz csoporthoz",
7591
"xloc": [
7591
- "default.handlebars->47->2320"
7592
+ "default.handlebars->47->2326"
7593
]
7594
},
7595
{
@@ -7615,7 +7616,7 @@
7616
"zh-cht": "將用戶新增到用戶群",
7617
"hu": "Felhasználók hozzáadása az felhasználó csoporthoz",
7618
"xloc": [
7618
- "default.handlebars->47->2869"
7619
+ "default.handlebars->47->2875"
7620
]
7621
},
7622
{
@@ -7801,7 +7802,7 @@
7802
"zh-cht": "通過安裝Mesh Agent將新電腦新增到該裝置群。",
7803
"hu": "Adjon hozzá egy új számítógépet ehhez az eszközcsoporthoz a Mesh Agent telepítésével.",
7804
"xloc": [
7804
- "default.handlebars->47->2176",
7805
+ "default.handlebars->47->2182",
7806
"default.handlebars->47->486"
7807
]
7808
},
@@ -7829,7 +7830,7 @@
7830
"zh-cht": "添加位於本地網絡上的設備。",
7831
"hu": "Helyi hálózaton található eszköz hozzáadása.",
7832
"xloc": [
7832
- "default.handlebars->47->2180",
7833
+ "default.handlebars->47->2186",
7834
"default.handlebars->47->490"
7835
]
7836
},
@@ -7884,7 +7885,7 @@
7885
"zh-cht": "新增標籤",
7886
"hu": "Cimkék hozzáadása",
7887
"xloc": [
7887
- "default.handlebars->47->750"
7888
+ "default.handlebars->47->749"
7889
]
7890
},
7891
{
@@ -7911,7 +7912,7 @@
7912
"zh-cht": "通過定期在遠程設備上以管理員身份運行MeshCmd,添加,激活和配置Intel®AMT以將“{0}”分組。",
7913
"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.",
7914
"xloc": [
7914
- "default.handlebars->47->519"
7915
+ "default.handlebars->47->518"
7916
]
7917
},
7918
{
@@ -7938,7 +7939,7 @@
7939
"zh-cht": "添加了身份驗證應用程序",
7940
"hu": "Hitelesítési alkalmazás hozzáadva",
7941
"xloc": [
7941
- "default.handlebars->47->2563"
7942
+ "default.handlebars->47->2569"
7943
]
7944
},
7945
{
@@ -7965,7 +7966,7 @@
7966
"zh-cht": "已將設備共享{0}從{1}添加到{2}",
7967
"hu": "{0} eszközmegosztás hozzáadva {1} és {2} között",
7968
"xloc": [
7968
- "default.handlebars->47->2574"
7969
+ "default.handlebars->47->2580"
7970
]
7971
},
7972
{
@@ -7992,7 +7993,7 @@
7993
"zh-cht": "添加了每天重複的設備共享 {0}。",
7994
"hu": "Naponta ismétlődő {0} eszközmegosztás hozzáadva.",
7995
"xloc": [
7995
- "default.handlebars->47->2611"
7996
+ "default.handlebars->47->2617"
7997
]
7998
},
7999
{
@@ -8019,7 +8020,7 @@
8020
"zh-cht": "添加了每週重複的設備共享 {0}。",
8021
"hu": "Hetente ismétlődő {0} eszközmegosztás hozzáadva.",
8022
"xloc": [
8022
- "default.handlebars->47->2612"
8023
+ "default.handlebars->47->2618"
8024
]
8025
},
8026
{
@@ -8046,7 +8047,7 @@
8047
"zh-cht": "添加了無限時間的設備共享 {0}。",
8048
"hu": "{0} eszközmegosztás hozzáadva korlátlan ideig.",
8049
"xloc": [
8049
- "default.handlebars->47->2604"
8050
+ "default.handlebars->47->2610"
8051
]
8052
},
8053
{
@@ -8073,8 +8074,8 @@
8074
"zh-cht": "已將設備{0}添加到設備組{1}",
8075
"hu": "A(z) {0} eszköz hozzáadva a(z) {1} eszközcsoporthoz",
8076
"xloc": [
8076
- "default.handlebars->47->2530",
8077
- "default.handlebars->47->2557"
8077
+ "default.handlebars->47->2536",
8078
+ "default.handlebars->47->2563"
8079
]
8080
},
8081
{
@@ -8101,7 +8102,7 @@
8102
"zh-cht": "添加了登錄令牌",
8103
"hu": "Bejelentkezési token hozzáadva",
8104
"xloc": [
8104
- "default.handlebars->47->2588"
8105
+ "default.handlebars->47->2594"
8106
]
8107
},
8108
{
@@ -8128,7 +8129,7 @@
8129
"zh-cht": "增加推送通知認證設備",
8130
"hu": "Push értesítési hitelesítő eszköz hozzáadva",
8131
"xloc": [
8131
- "default.handlebars->47->2586"
8132
+ "default.handlebars->47->2592"
8133
]
8134
},
8135
{
@@ -8155,7 +8156,7 @@
8156
"zh-cht": "添加了安全密鑰",
8157
"hu": "Biztonsági kulcs hozzáadva",
8158
"xloc": [
8158
- "default.handlebars->47->2568"
8159
+ "default.handlebars->47->2574"
8160
]
8161
},
8162
{
@@ -8182,7 +8183,7 @@
8183
"zh-cht": "已將用戶組{0}添加到設備組{1}",
8184
"hu": "{0} felhasználói csoport hozzáadva a(z) {1} eszközcsoporthoz",
8185
"xloc": [
8185
- "default.handlebars->47->2541"
8186
+ "default.handlebars->47->2547"
8187
]
8188
},
8189
{
@@ -8209,8 +8210,8 @@
8210
"zh-cht": "已將用戶{0}添加到用戶組{1}",
8211
"hu": "{0} felhasználó hozzáadva a(z) {1} felhasználói csoporthoz",
8212
"xloc": [
8212
- "default.handlebars->47->2544",
8213
- "default.handlebars->47->2553"
8213
+ "default.handlebars->47->2550",
8214
+ "default.handlebars->47->2559"
8215
]
8216
},
8217
{
@@ -8291,8 +8292,8 @@
8292
"zh-cht": "管理員控制模式(ACM)",
8293
"hu": "Admin Control Mode (ACM)",
8294
"xloc": [
8294
- "default-mobile.handlebars->11->794",
8295
- "default.handlebars->47->1635"
8295
+ "default-mobile.handlebars->11->806",
8296
+ "default.handlebars->47->1634"
8297
]
8298
},
8299
{
@@ -8319,8 +8320,8 @@
8320
"zh-cht": "管理員憑證",
8321
"hu": "Adminisztrátor Hitelesítő adatok",
8322
"xloc": [
8322
- "default-mobile.handlebars->11->800",
8323
- "default.handlebars->47->1641"
8323
+ "default-mobile.handlebars->11->812",
8324
+ "default.handlebars->47->1640"
8325
]
8326
},
8327
{
@@ -8375,7 +8376,7 @@
8376
"zh-cht": "管理領域",
8377
"hu": "Adminisztratív Realms",
8378
"xloc": [
8378
- "default.handlebars->47->2921"
8379
+ "default.handlebars->47->2927"
8380
]
8381
},
8382
{
@@ -8430,7 +8431,7 @@
8431
"zh-cht": "管理領域",
8432
"hu": "Adminisztratív Realms",
8433
"xloc": [
8433
- "default.handlebars->47->2766"
8434
+ "default.handlebars->47->2772"
8435
]
8436
},
8437
{
@@ -8457,7 +8458,7 @@
8458
"zh-cht": "管理員",
8459
"hu": "Adminisztrátor",
8460
"xloc": [
8460
- "default.handlebars->47->2684"
8461
+ "default.handlebars->47->2690"
8462
]
8463
},
8464
{
@@ -8485,7 +8486,7 @@
8486
"hu": "afrikai",
8487
"xloc": [
8488
"default-mobile.handlebars->11->104",
8488
- "default.handlebars->47->1797",
8489
+ "default.handlebars->47->1803",
8490
"login2.handlebars->7->1"
8491
]
8492
},
@@ -8514,14 +8515,14 @@
8515
"hu": "Agent",
8516
"xloc": [
8517
"agent-translations.json",
8517
- "default-mobile.handlebars->11->463",
8518
- "default-mobile.handlebars->11->520",
8518
+ "default-mobile.handlebars->11->464",
8519
+ "default-mobile.handlebars->11->521",
8520
"default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1",
8520
- "default.handlebars->47->2404",
8521
- "default.handlebars->47->2417",
8522
- "default.handlebars->47->3283",
8521
+ "default.handlebars->47->2410",
8522
+ "default.handlebars->47->2423",
8523
+ "default.handlebars->47->3289",
8524
"default.handlebars->47->407",
8524
- "default.handlebars->47->708",
8525
+ "default.handlebars->47->707",
8526
"default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1",
8527
"default.handlebars->container->dialog->dialogBody->dialog7->1->td7meshkvm"
8528
]
@@ -8550,8 +8551,8 @@
8551
"zh-cht": "代理+Intel® AMT",
8552
"hu": "Agent + Intel® AMT",
8553
"xloc": [
8553
- "default.handlebars->47->2406",
8554
- "default.handlebars->47->2419"
8554
+ "default.handlebars->47->2412",
8555
+ "default.handlebars->47->2425"
8556
]
8557
},
8558
{
@@ -8606,9 +8607,10 @@
8607
"zh-cht": "代理控制台",
8608
"hu": "Agent konzol",
8609
"xloc": [
8609
- "default-mobile.handlebars->11->954",
8610
- "default.handlebars->47->2341",
8611
- "default.handlebars->47->796"
8610
+ "default-mobile.handlebars->11->598",
8611
+ "default-mobile.handlebars->11->973",
8612
+ "default.handlebars->47->2347",
8613
+ "default.handlebars->47->795"
8614
]
8615
},
8616
{
@@ -8635,7 +8637,7 @@
8637
"zh-cht": "代理錯誤計數器",
8638
"hu": "Agrnt hiba számlálók",
8639
"xloc": [
8638
- "default.handlebars->47->3252"
8640
+ "default.handlebars->47->3258"
8641
]
8642
},
8643
{
@@ -8724,7 +8726,7 @@
8726
"zh-cht": "代理訊息",
8727
"hu": "Agent üzenetek",
8728
"xloc": [
8727
- "default-mobile.handlebars->11->436",
8729
+ "default-mobile.handlebars->11->437",
8730
"default.handlebars->47->472"
8731
]
8732
},
@@ -8752,7 +8754,7 @@
8754
"zh-cht": "代理中繼",
8755
"hu": "Agent Relay",
8756
"xloc": [
8755
- "default-mobile.handlebars->11->523"
8757
+ "default-mobile.handlebars->11->524"
8758
]
8759
},
8760
{
@@ -8831,8 +8833,8 @@
8833
"zh-cht": "代理自行共享",
8834
"hu": "Agent Ön-Megosztás",
8835
"xloc": [
8834
- "default.handlebars->47->1094",
8835
- "default.handlebars->47->2208"
8836
+ "default.handlebars->47->1093",
8837
+ "default.handlebars->47->2214"
8838
]
8839
},
8840
{
@@ -8859,7 +8861,7 @@
8861
"zh-cht": "代理時段",
8862
"hu": "Agent munkamenetek",
8863
"xloc": [
8862
- "default.handlebars->47->3268"
8864
+ "default.handlebars->47->3274"
8865
]
8866
},
8867
{
@@ -8910,8 +8912,8 @@
8912
"zh-cht": "代理標籤",
8913
"hu": "Agent Cimke",
8914
"xloc": [
8913
- "default-mobile.handlebars->11->517",
8914
- "default.handlebars->47->921"
8915
+ "default-mobile.handlebars->11->518",
8916
+ "default.handlebars->47->920"
8917
]
8918
},
8919
{
@@ -8966,7 +8968,7 @@
8968
"zh-cht": "代理類型",
8969
"hu": "Agent típusok",
8970
"xloc": [
8969
- "default.handlebars->47->2415",
8971
+ "default.handlebars->47->2421",
8972
"default.handlebars->container->column_l->p21->p21main->1->1->meshOsChartDiv->1"
8973
]
8974
},
@@ -9022,7 +9024,7 @@
9024
"zh-cht": "代理關閉了與{0}%代理到服務器壓縮的會話。已發送:{1},已壓縮:{2}",
9025
"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}",
9026
"xloc": [
9025
- "default.handlebars->47->2527"
9027
+ "default.handlebars->47->2533"
9028
]
9029
},
9030
{
@@ -9049,8 +9051,8 @@
9051
"zh-cht": "代理已連接",
9052
"hu": "Agent csatlakozott",
9053
"xloc": [
9054
+ "default.handlebars->47->1051",
9055
"default.handlebars->47->1052",
9053
- "default.handlebars->47->1053",
9056
"default.handlebars->47->257"
9057
]
9058
},
@@ -9231,8 +9233,8 @@
9233
"zh-cht": "代理離線",
9234
"hu": "Offline Agent",
9235
"xloc": [
9234
- "default-mobile.handlebars->11->874",
9235
- "default.handlebars->47->1716"
9236
+ "default-mobile.handlebars->11->893",
9237
+ "default.handlebars->47->1722"
9238
]
9239
},
9240
{
@@ -9259,8 +9261,8 @@
9261
"zh-cht": "代理在線",
9262
"hu": "Online Agent",
9263
"xloc": [
9262
- "default-mobile.handlebars->11->873",
9263
- "default.handlebars->47->1715"
9264
+ "default-mobile.handlebars->11->892",
9265
+ "default.handlebars->47->1721"
9266
]
9267
},
9268
{
@@ -9359,7 +9361,7 @@
9361
"zh-cht": "代理在特權降低的遠程設備上運行。",
9362
"hu": "Az Agent csökkentett jogosultságokkal fut a távoli eszközön.",
9363
"xloc": [
9362
- "default.handlebars->47->1046"
9364
+ "default.handlebars->47->1045"
9365
]
9366
},
9367
{
@@ -9482,9 +9484,9 @@
9484
"zh-cht": "代理",
9485
"hu": "Agent-ek",
9486
"xloc": [
9485
- "default.handlebars->47->2372",
9486
- "default.handlebars->47->3296",
9487
- "default.handlebars->47->575"
9487
+ "default.handlebars->47->2378",
9488
+ "default.handlebars->47->3302",
9489
+ "default.handlebars->47->574"
9490
]
9491
},
9492
{
@@ -9512,7 +9514,7 @@
9514
"hu": "albán",
9515
"xloc": [
9516
"default-mobile.handlebars->11->105",
9515
- "default.handlebars->47->1798",
9517
+ "default.handlebars->47->1804",
9518
"login2.handlebars->7->2"
9519
]
9520
},
@@ -9521,8 +9523,8 @@
9523
"nl": "Alert Box",
9524
"pl": "Okno Powiadomienia",
9525
"xloc": [
9524
- "default.handlebars->47->1177",
9525
- "default.handlebars->47->759"
9526
+ "default.handlebars->47->1176",
9527
+ "default.handlebars->47->758"
9528
]
9529
},
9530
{
@@ -9549,10 +9551,10 @@
9551
"zh-cht": "所有",
9552
"hu": "Összes",
9553
"xloc": [
9552
- "default-mobile.handlebars->11->355",
9553
- "default-mobile.handlebars->11->688",
9554
- "default-mobile.handlebars->11->690",
9555
- "default.handlebars->47->3116",
9554
+ "default-mobile.handlebars->11->356",
9555
+ "default-mobile.handlebars->11->700",
9556
+ "default-mobile.handlebars->11->702",
9557
+ "default.handlebars->47->3122",
9558
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar->DevFilterSelect->1"
9559
]
9560
},
@@ -9580,7 +9582,7 @@
9582
"zh-cht": "全部可用",
9583
"hu": "Összes elérhető",
9584
"xloc": [
9583
- "default.handlebars->47->2646"
9585
+ "default.handlebars->47->2652"
9586
]
9587
},
9588
{
@@ -9607,8 +9609,8 @@
9609
"zh-cht": "所有可用的代理",
9610
"hu": "Az összes rendelkezésre álló Agent",
9611
"xloc": [
9610
- "default.handlebars->47->2373",
9611
- "default.handlebars->47->576"
9612
+ "default.handlebars->47->2379",
9613
+ "default.handlebars->47->575"
9614
]
9615
},
9616
{
@@ -9635,7 +9637,7 @@
9637
"zh-cht": "所有顯示",
9638
"hu": "Összes Kijelző",
9639
"xloc": [
9638
- "default.handlebars->47->1466"
9640
+ "default.handlebars->47->1465"
9641
]
9642
},
9643
{
@@ -9662,7 +9664,7 @@
9664
"zh-cht": "所有事件",
9665
"hu": "Összes Esemény",
9666
"xloc": [
9665
- "default.handlebars->47->2644"
9667
+ "default.handlebars->47->2650"
9668
]
9669
},
9670
{
@@ -9689,9 +9691,9 @@
9691
"zh-cht": "全部聚焦",
9692
"hu": "Teljes Focus mode",
9693
"xloc": [
9692
- "default.handlebars->47->1385",
9693
- "default.handlebars->47->1387",
9694
- "default.handlebars->47->1388"
9694
+ "default.handlebars->47->1384",
9695
+ "default.handlebars->47->1386",
9696
+ "default.handlebars->47->1387"
9697
]
9698
},
9699
{
@@ -9753,8 +9755,8 @@
9755
"zh-cht": "允許用戶管理此裝置群和該群中的裝置。",
9756
"hu": "Engedélyezi a felhasználók számára az eszközcsoport és a csoportba tartozó eszközök kezelését.",
9757
"xloc": [
9756
- "default.handlebars->47->2285",
9757
- "default.handlebars->47->2866"
9758
+ "default.handlebars->47->2291",
9759
+ "default.handlebars->47->2872"
9760
]
9761
},
9762
{
@@ -9781,7 +9783,7 @@
9783
"zh-cht": "允許用戶管理此裝置。",
9784
"hu": "Engedélyezze a felhasználóknak, hogy kezeljék ezt az eszközt.",
9785
"xloc": [
9784
- "default.handlebars->47->2286"
9786
+ "default.handlebars->47->2292"
9787
]
9788
},
9789
{
@@ -9887,10 +9889,10 @@
9889
"zh-cht": "Alt",
9890
"hu": "Alt",
9891
"xloc": [
9890
- "default-mobile.handlebars->11->643",
9891
- "default-mobile.handlebars->11->647",
9892
- "default.handlebars->47->1409",
9893
- "default.handlebars->47->1413"
9892
+ "default-mobile.handlebars->11->655",
9893
+ "default-mobile.handlebars->11->659",
9894
+ "default.handlebars->47->1408",
9895
+ "default.handlebars->47->1412"
9896
]
9897
},
9898
{
@@ -9917,7 +9919,7 @@
9919
"zh-cht": "替代Shell",
9920
"hu": "Alternatív Shell",
9921
"xloc": [
9920
- "default.handlebars->47->1375"
9922
+ "default.handlebars->47->1374"
9923
]
9924
},
9925
{
@@ -10000,7 +10002,7 @@
10002
"zh-cht": "備用(F10 = ESC + 0)",
10003
"hu": "Alternatív (F10 = ESC+0)",
10004
"xloc": [
10003
- "default.handlebars->47->1500",
10005
+ "default.handlebars->47->1499",
10006
"sharing.handlebars->11->37"
10007
]
10008
},
@@ -10083,10 +10085,10 @@
10085
"zh-cht": "一直通知",
10086
"hu": "Minden kapcsolat értesítés",
10087
"xloc": [
10086
- "default.handlebars->47->2147",
10087
- "default.handlebars->47->2825",
10088
- "default.handlebars->47->2930",
10089
- "default.handlebars->47->960"
10088
+ "default.handlebars->47->2153",
10089
+ "default.handlebars->47->2831",
10090
+ "default.handlebars->47->2936",
10091
+ "default.handlebars->47->959"
10092
]
10093
},
10094
{
@@ -10113,10 +10115,10 @@
10115
"zh-cht": "一直提示",
10116
"hu": "Minden kapcsolat engedélykérés",
10117
"xloc": [
10116
- "default.handlebars->47->2148",
10117
- "default.handlebars->47->2826",
10118
- "default.handlebars->47->2931",
10119
- "default.handlebars->47->961"
10118
+ "default.handlebars->47->2154",
10119
+ "default.handlebars->47->2832",
10120
+ "default.handlebars->47->2937",
10121
+ "default.handlebars->47->960"
10122
]
10123
},
10124
{
@@ -10207,7 +10209,7 @@
10209
"de": "Ein unbekannter Fehler ist aufgetreten.",
10210
"es": "Ha ocurrido un error desconcido.",
10211
"xloc": [
10210
- "default.handlebars->47->3068"
10212
+ "default.handlebars->47->3074"
10213
]
10214
},
10215
{
@@ -10265,8 +10267,8 @@
10267
"zh-cht": "Android APK",
10268
"hu": "Android APK",
10269
"xloc": [
10268
- "default-mobile.handlebars->11->926",
10269
- "default.handlebars->47->637"
10270
+ "default-mobile.handlebars->11->945",
10271
+ "default.handlebars->47->636"
10272
]
10273
},
10274
{
@@ -10347,14 +10349,14 @@
10349
"zh-cht": "安卓安裝",
10350
"hu": "Android Telepítés",
10351
"xloc": [
10350
- "default-mobile.handlebars->11->928"
10352
+ "default-mobile.handlebars->11->947"
10353
]
10354
},
10355
{
10356
"en": "Android MeshAgent",
10357
"nl": "Android MeshAgent",
10358
"xloc": [
10357
- "default.handlebars->47->581"
10359
+ "default.handlebars->47->580"
10360
]
10361
},
10362
{
@@ -10409,8 +10411,8 @@
10411
"zh-cht": "殺毒軟件未激活",
10412
"hu": "A vírusirtó nem aktív",
10413
"xloc": [
10412
- "default.handlebars->47->2408",
10413
- "default.handlebars->47->2422"
10414
+ "default.handlebars->47->2414",
10415
+ "default.handlebars->47->2428"
10416
]
10417
},
10418
{
@@ -10437,8 +10439,8 @@
10439
"zh-cht": "防毒軟體",
10440
"hu": "Antivírus",
10441
"xloc": [
10440
- "default-mobile.handlebars->11->756",
10441
- "default.handlebars->47->949"
10442
+ "default-mobile.handlebars->11->768",
10443
+ "default.handlebars->47->948"
10444
]
10445
},
10446
{
@@ -10465,7 +10467,7 @@
10467
"zh-cht": "任何可支持的",
10468
"hu": "Bármilyen támogatott",
10469
"xloc": [
10468
- "default.handlebars->47->549"
10470
+ "default.handlebars->47->548"
10471
]
10472
},
10473
{
@@ -10547,13 +10549,13 @@
10549
"zh-cht": "蘋果macOS",
10550
"hu": "Apple macOS",
10551
"xloc": [
10550
- "default.handlebars->47->591"
10552
+ "default.handlebars->47->590"
10553
]
10554
},
10555
{
10556
"en": "Apple macOS (UnInstall)",
10557
"xloc": [
10556
- "default.handlebars->47->596"
10558
+ "default.handlebars->47->595"
10559
]
10560
},
10561
{
@@ -10561,7 +10563,7 @@
10563
"nl": "Apple macOS uitvoerbare bestanden moeten uit quarantaine worden verwijderd om 'xattr -r -d com.apple.quarantine meshagent' te kunnen starten",
10564
"xloc": [
10565
"agentinvite.handlebars->3->12",
10564
- "default.handlebars->47->669"
10566
+ "default.handlebars->47->668"
10567
]
10568
},
10569
{
@@ -10588,7 +10590,7 @@
10590
"zh-cht": "僅限Apple macOS",
10591
"hu": "csak Apple macOS",
10592
"xloc": [
10591
- "default.handlebars->47->551"
10593
+ "default.handlebars->47->550"
10594
]
10595
},
10596
{
@@ -10738,7 +10740,7 @@
10740
"zh-cht": "應用程序,始終連接",
10741
"hu": "Alkalmazás, állandó csatlakozás",
10742
"xloc": [
10741
- "default.handlebars->47->605"
10743
+ "default.handlebars->47->604"
10744
]
10745
},
10746
{
@@ -10765,7 +10767,7 @@
10767
"zh-cht": "應用程序,根據用戶請求連接",
10768
"hu": "Alkalmazás, csatlakozás a felhasználó kérésére",
10769
"xloc": [
10768
- "default.handlebars->47->604"
10770
+ "default.handlebars->47->603"
10771
]
10772
},
10773
{
@@ -10793,7 +10795,7 @@
10795
"hu": "arab (Algéria)",
10796
"xloc": [
10797
"default-mobile.handlebars->11->107",
10796
- "default.handlebars->47->1800",
10798
+ "default.handlebars->47->1806",
10799
"login2.handlebars->7->4"
10800
]
10801
},
@@ -10822,7 +10824,7 @@
10824
"hu": "arab (Bahrein)",
10825
"xloc": [
10826
"default-mobile.handlebars->11->108",
10825
- "default.handlebars->47->1801",
10827
+ "default.handlebars->47->1807",
10828
"login2.handlebars->7->5"
10829
]
10830
},
@@ -10851,7 +10853,7 @@
10853
"hu": "arab (Egyiptom)",
10854
"xloc": [
10855
"default-mobile.handlebars->11->109",
10854
- "default.handlebars->47->1802",
10856
+ "default.handlebars->47->1808",
10857
"login2.handlebars->7->6"
10858
]
10859
},
@@ -10880,7 +10882,7 @@
10882
"hu": "arab (Irak)",
10883
"xloc": [
10884
"default-mobile.handlebars->11->110",
10883
- "default.handlebars->47->1803",
10885
+ "default.handlebars->47->1809",
10886
"login2.handlebars->7->7"
10887
]
10888
},
@@ -10909,7 +10911,7 @@
10911
"hu": "arab (Jordánia)",
10912
"xloc": [
10913
"default-mobile.handlebars->11->111",
10912
- "default.handlebars->47->1804",
10914
+ "default.handlebars->47->1810",
10915
"login2.handlebars->7->8"
10916
]
10917
},
@@ -10938,7 +10940,7 @@
10940
"hu": "arab (Kuvait)",
10941
"xloc": [
10942
"default-mobile.handlebars->11->112",
10941
- "default.handlebars->47->1805",
10943
+ "default.handlebars->47->1811",
10944
"login2.handlebars->7->9"
10945
]
10946
},
@@ -10967,7 +10969,7 @@
10969
"hu": "arab (Libanon)",
10970
"xloc": [
10971
"default-mobile.handlebars->11->113",
10970
- "default.handlebars->47->1806",
10972
+ "default.handlebars->47->1812",
10973
"login2.handlebars->7->10"
10974
]
10975
},
@@ -10996,7 +10998,7 @@
10998
"hu": "arab (Líbia)",
10999
"xloc": [
11000
"default-mobile.handlebars->11->114",
10999
- "default.handlebars->47->1807",
11001
+ "default.handlebars->47->1813",
11002
"login2.handlebars->7->11"
11003
]
11004
},
@@ -11025,7 +11027,7 @@
11027
"hu": "arab (Marokkó)",
11028
"xloc": [
11029
"default-mobile.handlebars->11->115",
11028
- "default.handlebars->47->1808",
11030
+ "default.handlebars->47->1814",
11031
"login2.handlebars->7->12"
11032
]
11033
},
@@ -11054,7 +11056,7 @@
11056
"hu": "arab (Omán)",
11057
"xloc": [
11058
"default-mobile.handlebars->11->116",
11057
- "default.handlebars->47->1809",
11059
+ "default.handlebars->47->1815",
11060
"login2.handlebars->7->13"
11061
]
11062
},
@@ -11083,7 +11085,7 @@
11085
"hu": "arab (Katar)",
11086
"xloc": [
11087
"default-mobile.handlebars->11->117",
11086
- "default.handlebars->47->1810",
11088
+ "default.handlebars->47->1816",
11089
"login2.handlebars->7->14"
11090
]
11091
},
@@ -11112,7 +11114,7 @@
11114
"hu": "arab (Szaúd-Arábia)",
11115
"xloc": [
11116
"default-mobile.handlebars->11->118",
11115
- "default.handlebars->47->1811",
11117
+ "default.handlebars->47->1817",
11118
"login2.handlebars->7->15"
11119
]
11120
},
@@ -11141,7 +11143,7 @@
11143
"hu": "arab",
11144
"xloc": [
11145
"default-mobile.handlebars->11->106",
11144
- "default.handlebars->47->1799",
11146
+ "default.handlebars->47->1805",
11147
"login2.handlebars->7->3"
11148
]
11149
},
@@ -11170,7 +11172,7 @@
11172
"hu": "arab (Szíria)",
11173
"xloc": [
11174
"default-mobile.handlebars->11->119",
11173
- "default.handlebars->47->1812",
11175
+ "default.handlebars->47->1818",
11176
"login2.handlebars->7->16"
11177
]
11178
},
@@ -11199,7 +11201,7 @@
11201
"hu": "arab (Tunézia)",
11202
"xloc": [
11203
"default-mobile.handlebars->11->120",
11202
- "default.handlebars->47->1813",
11204
+ "default.handlebars->47->1819",
11205
"login2.handlebars->7->17"
11206
]
11207
},
@@ -11228,7 +11230,7 @@
11230
"hu": "arab (Egyesült Arab Emírségek)",
11231
"xloc": [
11232
"default-mobile.handlebars->11->121",
11231
- "default.handlebars->47->1814",
11233
+ "default.handlebars->47->1820",
11234
"login2.handlebars->7->18"
11235
]
11236
},
@@ -11257,7 +11259,7 @@
11259
"hu": "arab (Jemen)",
11260
"xloc": [
11261
"default-mobile.handlebars->11->122",
11260
- "default.handlebars->47->1815",
11262
+ "default.handlebars->47->1821",
11263
"login2.handlebars->7->19"
11264
]
11265
},
@@ -11286,7 +11288,7 @@
11288
"hu": "aragóniai",
11289
"xloc": [
11290
"default-mobile.handlebars->11->123",
11289
- "default.handlebars->47->1816",
11291
+ "default.handlebars->47->1822",
11292
"login2.handlebars->7->20"
11293
]
11294
},
@@ -11314,12 +11316,12 @@
11316
"zh-cht": "結構",
11317
"hu": "Architektúra",
11318
"xloc": [
11317
- "default-mobile.handlebars->11->723",
11318
- "default-mobile.handlebars->11->725",
11319
- "default-mobile.handlebars->11->727",
11320
- "default.handlebars->47->1580",
11321
- "default.handlebars->47->1582",
11322
- "default.handlebars->47->1584"
11319
+ "default-mobile.handlebars->11->735",
11320
+ "default-mobile.handlebars->11->737",
11321
+ "default-mobile.handlebars->11->739",
11322
+ "default.handlebars->47->1579",
11323
+ "default.handlebars->47->1581",
11324
+ "default.handlebars->47->1583"
11325
]
11326
},
11327
{
@@ -11373,8 +11375,8 @@
11375
"zh-cht": "你確定要刪除群{0}嗎?刪除裝置群還將刪除該群中有關裝置的所有訊息。",
11376
"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.",
11377
"xloc": [
11376
- "default-mobile.handlebars->11->914",
11377
- "default.handlebars->47->2252"
11378
+ "default-mobile.handlebars->11->933",
11379
+ "default.handlebars->47->2258"
11380
]
11381
},
11382
{
@@ -11401,13 +11403,13 @@
11403
"zh-cht": "你確定要刪除節點{0}嗎?",
11404
"hu": "Biztos, hogy törölni akarja a {0} node-ot?",
11405
"xloc": [
11404
- "default.handlebars->47->1301"
11406
+ "default.handlebars->47->1300"
11407
]
11408
},
11409
{
11410
"en": "Are you sure you want to open this file/folder on the remote devices desktop ?",
11411
"xloc": [
11410
- "default.handlebars->47->1524"
11412
+ "default.handlebars->47->1523"
11413
]
11414
},
11415
{
@@ -11434,7 +11436,7 @@
11436
"zh-cht": "你確定要卸載所選代理嗎?",
11437
"hu": "Biztos, hogy eltávolítja a kiválasztott Agentet?",
11438
"xloc": [
11437
- "default.handlebars->47->1290"
11439
+ "default.handlebars->47->1289"
11440
]
11441
},
11442
{
@@ -11461,7 +11463,7 @@
11463
"zh-cht": "你確定要卸載所選的{0}代理嗎?",
11464
"hu": "Biztos, hogy eltávolítja a(z) {0} Agentet?",
11465
"xloc": [
11464
- "default.handlebars->47->1289"
11466
+ "default.handlebars->47->1288"
11467
]
11468
},
11469
{
@@ -11488,7 +11490,7 @@
11490
"zh-cht": "你確定要{0}外掛嗎:{1}",
11491
"hu": "Biztosm, hogy {0} szeretné használni a következő beépülő modult: {1}",
11492
"xloc": [
11491
- "default.handlebars->47->3348"
11493
+ "default.handlebars->47->3354"
11494
]
11495
},
11496
{
@@ -11544,7 +11546,7 @@
11546
"hu": "örmény",
11547
"xloc": [
11548
"default-mobile.handlebars->11->124",
11547
- "default.handlebars->47->1817",
11549
+ "default.handlebars->47->1823",
11550
"login2.handlebars->7->21"
11551
]
11552
},
@@ -11736,7 +11738,7 @@
11738
"hu": "asszámi",
11739
"xloc": [
11740
"default-mobile.handlebars->11->125",
11739
- "default.handlebars->47->1818",
11741
+ "default.handlebars->47->1824",
11742
"login2.handlebars->7->22"
11743
]
11744
},
@@ -11844,8 +11846,8 @@
11846
"zh-cht": "Windows 助手 (.exe)",
11847
"hu": "Assistant Windows rendszerhez (.exe)",
11848
"xloc": [
11847
- "default.handlebars->47->643",
11848
- "default.handlebars->47->647"
11849
+ "default.handlebars->47->642",
11850
+ "default.handlebars->47->646"
11851
]
11852
},
11853
{
@@ -11900,7 +11902,7 @@
11902
"hu": "asztúriai",
11903
"xloc": [
11904
"default-mobile.handlebars->11->126",
11903
- "default.handlebars->47->1819",
11905
+ "default.handlebars->47->1825",
11906
"login2.handlebars->7->23"
11907
]
11908
},
@@ -11928,7 +11930,7 @@
11930
"zh-cht": "嘗試激活英特爾(R)AMT ACM模式",
11931
"hu": "Intel(R) AMT ACM üzemmód aktiválásának kísérlete",
11932
"xloc": [
11931
- "default.handlebars->47->2496"
11933
+ "default.handlebars->47->2502"
11934
]
11935
},
11936
{
@@ -11979,12 +11981,12 @@
11981
"zh-cht": "驗證",
11982
"hu": "Hitelesítés",
11983
"xloc": [
11982
- "default-mobile.handlebars->11->659",
11983
- "default-mobile.handlebars->11->663",
11984
+ "default-mobile.handlebars->11->671",
11985
"default-mobile.handlebars->11->675",
11985
- "default.handlebars->47->1475",
11986
- "default.handlebars->47->1479",
11987
- "default.handlebars->47->1491",
11986
+ "default-mobile.handlebars->11->687",
11987
+ "default.handlebars->47->1474",
11988
+ "default.handlebars->47->1478",
11989
+ "default.handlebars->47->1490",
11990
"ssh.handlebars->3->21",
11991
"ssh.handlebars->3->22",
11992
"ssh.handlebars->3->5",
@@ -12015,7 +12017,7 @@
12017
"zh-cht": "認證軟體",
12018
"hu": "Hitelesítő alkalmazás beállítva",
12019
"xloc": [
12018
- "default.handlebars->47->2934"
12020
+ "default.handlebars->47->2940"
12021
]
12022
},
12023
{
@@ -12042,9 +12044,9 @@
12044
"zh-cht": "認證設備",
12045
"hu": "Hitelesítési eszköz",
12046
"xloc": [
12045
- "default.handlebars->47->1780",
12046
- "default.handlebars->47->1782",
12047
- "default.handlebars->47->1786"
12047
+ "default.handlebars->47->1786",
12048
+ "default.handlebars->47->1788",
12049
+ "default.handlebars->47->1792"
12050
]
12051
},
12052
{
@@ -12071,10 +12073,10 @@
12073
"zh-cht": "授權錯誤",
12074
"hu": "Hitelesítés Hiba",
12075
"xloc": [
12074
- "default-mobile.handlebars->11->676",
12075
- "default-mobile.handlebars->11->682",
12076
- "default.handlebars->47->1493",
12077
- "default.handlebars->47->1508"
12076
+ "default-mobile.handlebars->11->688",
12077
+ "default-mobile.handlebars->11->694",
12078
+ "default.handlebars->47->1492",
12079
+ "default.handlebars->47->1507"
12080
]
12081
},
12082
{
@@ -12105,8 +12107,8 @@
12107
"default-mobile.handlebars->11->311",
12108
"default-mobile.handlebars->11->70",
12109
"default-mobile.handlebars->11->73",
12108
- "default.handlebars->47->1776",
12109
- "default.handlebars->47->1778",
12110
+ "default.handlebars->47->1782",
12111
+ "default.handlebars->47->1784",
12112
"default.handlebars->47->216",
12113
"default.handlebars->47->221"
12114
]
@@ -12243,8 +12245,8 @@
12245
"zh-cht": "自動刪除",
12246
"hu": "Automatikus eltávolítás",
12247
"xloc": [
12246
- "default.handlebars->47->2132",
12247
- "default.handlebars->47->2637"
12248
+ "default.handlebars->47->2138",
12249
+ "default.handlebars->47->2643"
12250
]
12251
},
12252
{
@@ -12302,7 +12304,7 @@
12304
"zh-cht": "自動下載代理程序核心轉儲文件:“{0}”",
12305
"hu": "Agent core dump fájl automatikus letöltése: \\\"{0}\\\"",
12306
"xloc": [
12305
- "default.handlebars->47->2577"
12307
+ "default.handlebars->47->2583"
12308
]
12309
},
12310
{
@@ -12408,7 +12410,7 @@
12410
"zh-cht": "自動移除非活動設備",
12411
"hu": "Az inaktív eszközök automatikus eltávolítása",
12412
"xloc": [
12411
- "default.handlebars->47->2280"
12413
+ "default.handlebars->47->2286"
12414
]
12415
},
12416
{
@@ -12435,7 +12437,7 @@
12437
"zh-cht": "可用內存",
12438
"hu": "Elérhető memória",
12439
"xloc": [
12438
- "default.handlebars->47->3277"
12440
+ "default.handlebars->47->3283"
12441
]
12442
},
12443
{
@@ -12463,7 +12465,7 @@
12465
"hu": "azerbajdzsáni",
12466
"xloc": [
12467
"default-mobile.handlebars->11->127",
12466
- "default.handlebars->47->1820",
12468
+ "default.handlebars->47->1826",
12469
"login2.handlebars->7->24"
12470
]
12471
},
@@ -12491,12 +12493,12 @@
12493
"zh-cht": "壞的",
12494
"hu": "Rossz",
12495
"xloc": [
12494
- "default-mobile.handlebars->11->734",
12495
- "default-mobile.handlebars->11->738",
12496
- "default-mobile.handlebars->11->742",
12497
- "default.handlebars->47->927",
12498
- "default.handlebars->47->931",
12499
- "default.handlebars->47->935"
12496
+ "default-mobile.handlebars->11->746",
12497
+ "default-mobile.handlebars->11->750",
12498
+ "default-mobile.handlebars->11->754",
12499
+ "default.handlebars->47->926",
12500
+ "default.handlebars->47->930",
12501
+ "default.handlebars->47->934"
12502
]
12503
},
12504
{
@@ -12523,8 +12525,8 @@
12525
"zh-cht": "的BIOS",
12526
"hu": "BIOS",
12527
"xloc": [
12526
- "default-mobile.handlebars->11->809",
12527
- "default.handlebars->47->1650"
12528
+ "default-mobile.handlebars->11->821",
12529
+ "default.handlebars->47->1649"
12530
]
12531
},
12532
{
@@ -12641,8 +12643,8 @@
12643
"zh-cht": "退格",
12644
"hu": "BackSpace",
12645
"xloc": [
12644
- "default-mobile.handlebars->11->624",
12645
- "default.handlebars->47->1391"
12646
+ "default-mobile.handlebars->11->636",
12647
+ "default.handlebars->47->1390"
12648
]
12649
},
12650
{
@@ -12670,7 +12672,7 @@
12672
"hu": "Háttérben és interaktív módon",
12673
"xloc": [
12674
"agentinvite.handlebars->3->8",
12673
- "default.handlebars->47->600"
12675
+ "default.handlebars->47->599"
12676
]
12677
},
12678
{
@@ -12697,10 +12699,10 @@
12699
"zh-cht": "背景與互動",
12700
"hu": "Háttérben és interaktív módon",
12701
"xloc": [
12700
- "default.handlebars->47->2379",
12701
- "default.handlebars->47->2386",
12702
- "default.handlebars->47->562",
12703
- "default.handlebars->47->583"
12702
+ "default.handlebars->47->2385",
12703
+ "default.handlebars->47->2392",
12704
+ "default.handlebars->47->561",
12705
+ "default.handlebars->47->582"
12706
]
12707
},
12708
{
@@ -12728,11 +12730,11 @@
12730
"hu": "Csak háttérben",
12731
"xloc": [
12732
"agentinvite.handlebars->3->9",
12731
- "default.handlebars->47->2380",
12732
- "default.handlebars->47->2387",
12733
- "default.handlebars->47->563",
12734
- "default.handlebars->47->584",
12735
- "default.handlebars->47->601"
12733
+ "default.handlebars->47->2386",
12734
+ "default.handlebars->47->2393",
12735
+ "default.handlebars->47->562",
12736
+ "default.handlebars->47->583",
12737
+ "default.handlebars->47->600"
12738
]
12739
},
12740
{
@@ -12787,8 +12789,8 @@
12789
"zh-cht": "備用碼",
12790
"hu": "Biztonsági kódok generálva",
12791
"xloc": [
12790
- "default.handlebars->47->2937",
12791
- "default.handlebars->47->3164"
12792
+ "default.handlebars->47->2943",
12793
+ "default.handlebars->47->3170"
12794
]
12795
},
12796
{
@@ -12870,7 +12872,7 @@
12872
"zh-cht": "錯誤的簽名",
12873
"hu": "Rossz aláírás",
12874
"xloc": [
12873
- "default.handlebars->47->3259"
12875
+ "default.handlebars->47->3265"
12876
]
12877
},
12878
{
@@ -12897,7 +12899,7 @@
12899
"zh-cht": "錯誤的網絡憑證",
12900
"hu": "Rossz web tanúsítvány",
12901
"xloc": [
12900
- "default.handlebars->47->3258"
12902
+ "default.handlebars->47->3264"
12903
]
12904
},
12905
{
@@ -12925,7 +12927,7 @@
12927
"hu": "baszk",
12928
"xloc": [
12929
"default-mobile.handlebars->11->128",
12928
- "default.handlebars->47->1821",
12930
+ "default.handlebars->47->1827",
12931
"login2.handlebars->7->25"
12932
]
12933
},
@@ -12953,7 +12955,7 @@
12955
"zh-cht": "批處理文件上傳",
12956
"hu": "Kötegelt fájl feltölés",
12957
"xloc": [
12956
- "default.handlebars->47->772"
12958
+ "default.handlebars->47->771"
12959
]
12960
},
12961
{
@@ -13015,7 +13017,7 @@
13017
"zh-cht": "將{0}個文件批量上傳到文件夾{1}",
13018
"hu": "{0} fájl kötegelt feltöltése a(z) {1} mappába",
13019
"xloc": [
13018
- "default.handlebars->47->2576"
13020
+ "default.handlebars->47->2582"
13021
]
13022
},
13023
{
@@ -13043,7 +13045,7 @@
13045
"hu": "fehérorosz",
13046
"xloc": [
13047
"default-mobile.handlebars->11->130",
13046
- "default.handlebars->47->1823",
13048
+ "default.handlebars->47->1829",
13049
"login2.handlebars->7->27"
13050
]
13051
},
@@ -13072,7 +13074,7 @@
13074
"hu": "bengáli",
13075
"xloc": [
13076
"default-mobile.handlebars->11->131",
13075
- "default.handlebars->47->1824",
13077
+ "default.handlebars->47->1830",
13078
"login2.handlebars->7->28"
13079
]
13080
},
@@ -13134,8 +13136,8 @@
13136
"en": "BitLocker",
13137
"nl": "BitLocker",
13138
"xloc": [
13137
- "default-mobile.handlebars->11->865",
13138
- "default.handlebars->47->1706"
13139
+ "default-mobile.handlebars->11->877",
13140
+ "default.handlebars->47->1705"
13141
]
13142
},
13143
{
@@ -13143,8 +13145,8 @@
13145
"nl": "BitLocker informatie",
13146
"pl": "Informacje o BitLocker",
13147
"xloc": [
13146
- "default-mobile.handlebars->11->872",
13147
- "default.handlebars->47->1713"
13148
+ "default-mobile.handlebars->11->891",
13149
+ "default.handlebars->47->1719"
13150
]
13151
},
13152
{
@@ -13171,8 +13173,8 @@
13173
"zh-cht": "引導加載程序",
13174
"hu": "Rendszerbetöltő",
13175
"xloc": [
13174
- "default-mobile.handlebars->11->769",
13175
- "default.handlebars->47->1600"
13176
+ "default-mobile.handlebars->11->781",
13177
+ "default.handlebars->47->1599"
13178
]
13179
},
13180
{
@@ -13200,7 +13202,7 @@
13202
"hu": "bosznia",
13203
"xloc": [
13204
"default-mobile.handlebars->11->132",
13203
- "default.handlebars->47->1825",
13205
+ "default.handlebars->47->1831",
13206
"login2.handlebars->7->29"
13207
]
13208
},
@@ -13229,7 +13231,7 @@
13231
"hu": "breton",
13232
"xloc": [
13233
"default-mobile.handlebars->11->133",
13232
- "default.handlebars->47->1826",
13234
+ "default.handlebars->47->1832",
13235
"login2.handlebars->7->30"
13236
]
13237
},
@@ -13257,7 +13259,7 @@
13259
"zh-cht": "廣播",
13260
"hu": "Broadcast üzenet...",
13261
"xloc": [
13260
- "default.handlebars->47->2832",
13262
+ "default.handlebars->47->2838",
13263
"default.handlebars->container->column_l->p4->3->1->0->3->1"
13264
]
13265
},
@@ -13285,7 +13287,7 @@
13287
"zh-cht": "廣播消息",
13288
"hu": "Broadcast üzenet",
13289
"xloc": [
13288
- "default.handlebars->47->2748"
13290
+ "default.handlebars->47->2754"
13291
]
13292
},
13293
{
@@ -13312,7 +13314,7 @@
13314
"zh-cht": "向所有連接的用戶廣播消息。",
13315
"hu": "Üzenet küldése az összes csatlakoztatott felhasználónak.",
13316
"xloc": [
13315
- "default.handlebars->47->2743"
13317
+ "default.handlebars->47->2749"
13318
]
13319
},
13320
{
@@ -13339,7 +13341,7 @@
13341
"zh-cht": "瀏覽器",
13342
"hu": "Böngésző",
13343
"xloc": [
13342
- "default.handlebars->47->3138"
13344
+ "default.handlebars->47->3144"
13345
]
13346
},
13347
{
@@ -13422,7 +13424,7 @@
13424
"hu": "bolgár",
13425
"xloc": [
13426
"default-mobile.handlebars->11->129",
13425
- "default.handlebars->47->1822",
13427
+ "default.handlebars->47->1828",
13428
"login2.handlebars->7->26"
13429
]
13430
},
@@ -13451,7 +13453,7 @@
13453
"hu": "burmai",
13454
"xloc": [
13455
"default-mobile.handlebars->11->134",
13454
- "default.handlebars->47->1827",
13456
+ "default.handlebars->47->1833",
13457
"login2.handlebars->7->31"
13458
]
13459
},
@@ -13479,7 +13481,7 @@
13481
"zh-cht": "默認情況下,非活動設備將在 1 天后移除。",
13482
"hu": "Alapértelmezés szerint az inaktív eszközök 1 nap után eltávolításra kerülnek.",
13483
"xloc": [
13482
- "default.handlebars->47->2282"
13484
+ "default.handlebars->47->2288"
13485
]
13486
},
13487
{
@@ -13506,7 +13508,7 @@
13508
"zh-cht": "默認情況下,不活動的設備將在 {0} 天后被移除。",
13509
"hu": "Alapértelmezés szerint az inaktív eszközök {0} nap után eltávolításra kerülnek.",
13510
"xloc": [
13509
- "default.handlebars->47->2283"
13511
+ "default.handlebars->47->2289"
13512
]
13513
},
13514
{
@@ -13542,7 +13544,7 @@
13544
"zh-cht": "字節輸入",
13545
"hu": "Fogadott Byte-ok",
13546
"xloc": [
13545
- "default.handlebars->47->3134"
13547
+ "default.handlebars->47->3140"
13548
]
13549
},
13550
{
@@ -13569,7 +13571,7 @@
13571
"zh-cht": "字節輸出",
13572
"hu": "Küldött Byte-ok",
13573
"xloc": [
13572
- "default.handlebars->47->3135"
13574
+ "default.handlebars->47->3141"
13575
]
13576
},
13577
{
@@ -13638,9 +13640,9 @@
13640
"zh-cht": "CCM",
13641
"hu": "CCM",
13642
"xloc": [
13641
- "default-mobile.handlebars->11->503",
13643
+ "default-mobile.handlebars->11->504",
13644
"default.handlebars->47->432",
13643
- "default.handlebars->47->903"
13645
+ "default.handlebars->47->902"
13646
]
13647
},
13648
{
@@ -13667,15 +13669,17 @@
13669
"zh-cht": "CCM模式",
13670
"hu": "CCM mode",
13671
"xloc": [
13670
- "default.handlebars->47->2235"
13672
+ "default.handlebars->47->2241"
13673
]
13674
},
13675
{
13676
"en": "CD-ROM",
13677
"nl": "CD-ROM",
13678
"xloc": [
13677
- "default-mobile.handlebars->11->858",
13678
- "default.handlebars->47->1699"
13679
+ "default-mobile.handlebars->11->870",
13680
+ "default-mobile.handlebars->11->882",
13681
+ "default.handlebars->47->1698",
13682
+ "default.handlebars->47->1710"
13683
]
13684
},
13685
{
@@ -13702,10 +13706,10 @@
13706
"zh-cht": "CIRA",
13707
"hu": "CIRA",
13708
"xloc": [
13705
- "default-mobile.handlebars->11->464",
13706
- "default.handlebars->47->3284",
13709
+ "default-mobile.handlebars->11->465",
13710
+ "default.handlebars->47->3290",
13711
"default.handlebars->47->409",
13708
- "default.handlebars->47->710"
13712
+ "default.handlebars->47->709"
13713
]
13714
},
13715
{
@@ -13732,7 +13736,7 @@
13736
"zh-cht": "CIRA伺服器",
13737
"hu": "CIRA Kiszolgáló",
13738
"xloc": [
13735
- "default.handlebars->47->3332"
13739
+ "default.handlebars->47->3338"
13740
]
13741
},
13742
{
@@ -13759,7 +13763,7 @@
13763
"zh-cht": "CIRA伺服器指令",
13764
"hu": "CIRA kiszolgáló parancsok",
13765
"xloc": [
13762
- "default.handlebars->47->3333"
13766
+ "default.handlebars->47->3339"
13767
]
13768
},
13769
{
@@ -13813,7 +13817,7 @@
13817
"zh-cht": "CIRA設置",
13818
"hu": "CIRA beállítás",
13819
"xloc": [
13816
- "default.handlebars->47->2243"
13820
+ "default.handlebars->47->2249"
13821
]
13822
},
13823
{
@@ -13840,10 +13844,10 @@
13844
"zh-cht": "CPU",
13845
"hu": "CPU",
13846
"xloc": [
13843
- "default-mobile.handlebars->11->815",
13844
- "default.handlebars->47->1576",
13845
- "default.handlebars->47->1656",
13846
- "default.handlebars->47->3308",
13847
+ "default-mobile.handlebars->11->827",
13848
+ "default.handlebars->47->1575",
13849
+ "default.handlebars->47->1655",
13850
+ "default.handlebars->47->3314",
13851
"default.handlebars->container->column_l->p40->3->1->p40type->5"
13852
]
13853
},
@@ -13871,7 +13875,7 @@
13875
"zh-cht": "CPU負載",
13876
"hu": "CPU terhelés",
13877
"xloc": [
13874
- "default.handlebars->47->3273"
13878
+ "default.handlebars->47->3279"
13879
]
13880
},
13881
{
@@ -13898,7 +13902,7 @@
13902
"zh-cht": "最近15分鐘的CPU負載",
13903
"hu": "CPU terhelés az elmúlt 15 percben",
13904
"xloc": [
13901
- "default.handlebars->47->3276"
13905
+ "default.handlebars->47->3282"
13906
]
13907
},
13908
{
@@ -13925,7 +13929,7 @@
13929
"zh-cht": "最近5分鐘的CPU負載",
13930
"hu": "CPU terhelés az elmúlt 5 percben",
13931
"xloc": [
13928
- "default.handlebars->47->3275"
13932
+ "default.handlebars->47->3281"
13933
]
13934
},
13935
{
@@ -13952,7 +13956,7 @@
13956
"zh-cht": "最近一分鐘的CPU負載",
13957
"hu": "CPU terhelés az utolsó percben",
13958
"xloc": [
13955
- "default.handlebars->47->3274"
13959
+ "default.handlebars->47->3280"
13960
]
13961
},
13962
{
@@ -13979,8 +13983,8 @@
13983
"zh-cht": "CR+LF",
13984
"hu": "CR+LF",
13985
"xloc": [
13982
- "default.handlebars->47->1471",
13983
- "default.handlebars->47->1502",
13986
+ "default.handlebars->47->1470",
13987
+ "default.handlebars->47->1501",
13988
"default.handlebars->container->column_l->p12->termTable->1->1->4->1->1->terminalSettingsButtons",
13989
"sharing.handlebars->11->25",
13990
"sharing.handlebars->11->39",
@@ -14011,7 +14015,7 @@
14015
"zh-cht": "CSV",
14016
"hu": "CSV",
14017
"xloc": [
14014
- "default.handlebars->47->2654"
14018
+ "default.handlebars->47->2660"
14019
]
14020
},
14021
{
@@ -14038,15 +14042,15 @@
14042
"zh-cht": "CSV格式",
14043
"hu": "CSV Formátum",
14044
"xloc": [
14041
- "default.handlebars->47->2658",
14042
- "default.handlebars->47->2735",
14043
- "default.handlebars->47->781"
14045
+ "default.handlebars->47->2664",
14046
+ "default.handlebars->47->2741",
14047
+ "default.handlebars->47->780"
14048
]
14049
},
14050
{
14051
"en": "CSV file format is as follows:",
14052
"xloc": [
14049
- "default.handlebars->47->2721"
14053
+ "default.handlebars->47->2727"
14054
]
14055
},
14056
{
@@ -14097,7 +14101,7 @@
14101
"zh-cht": "呼叫錯誤",
14102
"hu": "Hívás hiba",
14103
"xloc": [
14100
- "default.handlebars->47->3349"
14104
+ "default.handlebars->47->3355"
14105
]
14106
},
14107
{
@@ -14108,8 +14112,8 @@
14112
"pl": "CallMeBot",
14113
"es": "CallMeBot",
14114
"xloc": [
14111
- "default.handlebars->47->1749",
14112
- "default.handlebars->47->2972"
14115
+ "default.handlebars->47->1755",
14116
+ "default.handlebars->47->2978"
14117
]
14118
},
14119
{
@@ -14166,9 +14170,9 @@
14170
"agent-translations.json",
14171
"default-mobile.handlebars->11->320",
14172
"default-mobile.handlebars->dialog->idx_dlgButtonBar",
14169
- "default.handlebars->47->2099",
14170
- "default.handlebars->47->3338",
14171
- "default.handlebars->47->535",
14173
+ "default.handlebars->47->2105",
14174
+ "default.handlebars->47->3344",
14175
+ "default.handlebars->47->534",
14176
"default.handlebars->container->dialog->idx_dlgButtonBar",
14177
"login-mobile.handlebars->dialog->idx_dlgButtonBar",
14178
"login.handlebars->dialog->idx_dlgButtonBar",
@@ -14278,18 +14282,20 @@
14282
"zh-cht": "容量",
14283
"hu": "Kapacitás",
14284
"xloc": [
14281
- "default-mobile.handlebars->11->833",
14282
- "default-mobile.handlebars->11->839",
14285
"default-mobile.handlebars->11->845",
14284
- "default-mobile.handlebars->11->850",
14285
- "default-mobile.handlebars->11->852",
14286
- "default-mobile.handlebars->11->855",
14287
- "default.handlebars->47->1674",
14288
- "default.handlebars->47->1680",
14289
- "default.handlebars->47->1686",
14290
- "default.handlebars->47->1691",
14291
- "default.handlebars->47->1693",
14292
- "default.handlebars->47->1696"
14286
+ "default-mobile.handlebars->11->851",
14287
+ "default-mobile.handlebars->11->857",
14288
+ "default-mobile.handlebars->11->862",
14289
+ "default-mobile.handlebars->11->864",
14290
+ "default-mobile.handlebars->11->867",
14291
+ "default-mobile.handlebars->11->879",
14292
+ "default.handlebars->47->1673",
14293
+ "default.handlebars->47->1679",
14294
+ "default.handlebars->47->1685",
14295
+ "default.handlebars->47->1690",
14296
+ "default.handlebars->47->1692",
14297
+ "default.handlebars->47->1695",
14298
+ "default.handlebars->47->1707"
14299
]
14300
},
14301
{
@@ -14316,20 +14322,22 @@
14322
"zh-cht": "容量/速度",
14323
"hu": "Kapacitás / Sebesség",
14324
"xloc": [
14319
- "default-mobile.handlebars->11->831",
14320
- "default-mobile.handlebars->11->837",
14325
"default-mobile.handlebars->11->843",
14322
- "default.handlebars->47->1672",
14323
- "default.handlebars->47->1678",
14324
- "default.handlebars->47->1684"
14326
+ "default-mobile.handlebars->11->849",
14327
+ "default-mobile.handlebars->11->855",
14328
+ "default.handlebars->47->1671",
14329
+ "default.handlebars->47->1677",
14330
+ "default.handlebars->47->1683"
14331
]
14332
},
14333
{
14334
"en": "Capacity Remaining",
14335
"nl": "Resterende capaciteit",
14336
"xloc": [
14331
- "default-mobile.handlebars->11->856",
14332
- "default.handlebars->47->1697"
14337
+ "default-mobile.handlebars->11->868",
14338
+ "default-mobile.handlebars->11->880",
14339
+ "default.handlebars->47->1696",
14340
+ "default.handlebars->47->1708"
14341
]
14342
},
14343
{
@@ -14357,7 +14365,7 @@
14365
"hu": "katalán",
14366
"xloc": [
14367
"default-mobile.handlebars->11->135",
14360
- "default.handlebars->47->1828",
14368
+ "default.handlebars->47->1834",
14369
"login2.handlebars->7->32"
14370
]
14371
},
@@ -14385,7 +14393,7 @@
14393
"zh-cht": "在這裡為中心顯示地圖",
14394
"hu": "Térkép középpont",
14395
"xloc": [
14388
- "default.handlebars->47->856"
14396
+ "default.handlebars->47->855"
14397
]
14398
},
14399
{
@@ -14466,7 +14474,7 @@
14474
"hu": "chamorro",
14475
"xloc": [
14476
"default-mobile.handlebars->11->136",
14469
- "default.handlebars->47->1829",
14477
+ "default.handlebars->47->1835",
14478
"login2.handlebars->7->33"
14479
]
14480
},
@@ -14523,7 +14531,7 @@
14531
"zh-cht": "更改{0}的電郵",
14532
"hu": "{0} e-mail-címének módosítása",
14533
"xloc": [
14526
- "default.handlebars->47->3014"
14534
+ "default.handlebars->47->3020"
14535
]
14536
},
14537
{
@@ -14550,9 +14558,9 @@
14558
"zh-cht": "更改群",
14559
"hu": "Csoport módosítása",
14560
"xloc": [
14553
- "default.handlebars->47->1018",
14554
- "default.handlebars->47->1298",
14555
- "default.handlebars->47->1299"
14561
+ "default.handlebars->47->1017",
14562
+ "default.handlebars->47->1297",
14563
+ "default.handlebars->47->1298"
14564
]
14565
},
14566
{
@@ -14588,8 +14596,8 @@
14596
"hu": "Jelszó módosítása",
14597
"xloc": [
14598
"default-mobile.handlebars->11->328",
14591
- "default.handlebars->47->2045",
14592
- "default.handlebars->47->2958"
14599
+ "default.handlebars->47->2051",
14600
+ "default.handlebars->47->2964"
14601
]
14602
},
14603
{
@@ -14616,7 +14624,7 @@
14624
"zh-cht": "更改{0}的密碼",
14625
"hu": "Jelszó módosítása: {0}",
14626
"xloc": [
14619
- "default.handlebars->47->3023"
14627
+ "default.handlebars->47->3029"
14628
]
14629
},
14630
{
@@ -14643,7 +14651,7 @@
14651
"zh-cht": "更改{0}的真實名稱",
14652
"hu": "{0} felhasználó teljes nevének módosítása",
14653
"xloc": [
14646
- "default.handlebars->47->3009"
14654
+ "default.handlebars->47->3015"
14655
]
14656
},
14657
{
@@ -14804,7 +14812,7 @@
14812
"zh-cht": "更改該用戶的密碼",
14813
"hu": "A felhasználó jelszavának módosítása",
14814
"xloc": [
14807
- "default.handlebars->47->2957"
14815
+ "default.handlebars->47->2963"
14816
]
14817
},
14818
{
@@ -14858,7 +14866,7 @@
14866
"zh-cht": "在此處更改你的帳戶電郵地址。",
14867
"hu": "Itt módosíthatja fiókja e-mail címét.",
14868
"xloc": [
14861
- "default.handlebars->47->2032"
14869
+ "default.handlebars->47->2038"
14870
]
14871
},
14872
{
@@ -14885,7 +14893,7 @@
14893
"zh-cht": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。",
14894
"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.",
14895
"xloc": [
14888
- "default.handlebars->47->2038"
14896
+ "default.handlebars->47->2044"
14897
]
14898
},
14899
{
@@ -14912,7 +14920,7 @@
14920
"zh-cht": "帳戶憑證已更改",
14921
"hu": "A fiók hitelesítő adatai megváltoztak",
14922
"xloc": [
14915
- "default.handlebars->47->2548"
14923
+ "default.handlebars->47->2554"
14924
]
14925
},
14926
{
@@ -14939,7 +14947,7 @@
14947
"zh-cht": "將帳戶顯示名稱更改為 {0}。",
14948
"hu": "A fiók megjelenített neve {0}-re változott.",
14949
"xloc": [
14942
- "default.handlebars->47->2600"
14950
+ "default.handlebars->47->2606"
14951
]
14952
},
14953
{
@@ -14966,8 +14974,8 @@
14974
"zh-cht": "{1}組中的設備{0}已更改:{2}",
14975
"hu": "{0} eszközt a {1} csoportból áthelyezésre került {2} csoportba",
14976
"xloc": [
14969
- "default.handlebars->47->2532",
14970
- "default.handlebars->47->2613"
14977
+ "default.handlebars->47->2538",
14978
+ "default.handlebars->47->2619"
14979
]
14980
},
14981
{
@@ -14994,7 +15002,7 @@
15002
"zh-cht": "語言從{1}更改為{2}",
15003
"hu": "A nyelv megváltozott. régi nyelv: {1}, új nyelv: {2}",
15004
"xloc": [
14997
- "default.handlebars->47->2476"
15005
+ "default.handlebars->47->2482"
15006
]
15007
},
15008
{
@@ -15021,8 +15029,8 @@
15029
"zh-cht": "已更改{0}的用戶設備權限",
15030
"hu": "Módosult a(z) {0} felhasználói eszközjogai",
15031
"xloc": [
15024
- "default.handlebars->47->2534",
15025
- "default.handlebars->47->2555"
15032
+ "default.handlebars->47->2540",
15033
+ "default.handlebars->47->2561"
15034
]
15035
},
15036
{
@@ -15074,7 +15082,7 @@
15082
"hu": "A nyelv megváltoztatásához az oldal frissítése szükséges!",
15083
"xloc": [
15084
"default-mobile.handlebars->11->303",
15077
- "default.handlebars->47->1996"
15085
+ "default.handlebars->47->2002"
15086
]
15087
},
15088
{
@@ -15101,12 +15109,12 @@
15109
"zh-cht": "聊天",
15110
"hu": "Csevegés",
15111
"xloc": [
15104
- "default.handlebars->47->1007",
15105
- "default.handlebars->47->1126",
15106
- "default.handlebars->47->1151",
15107
- "default.handlebars->47->2675",
15108
- "default.handlebars->47->2953",
15109
- "default.handlebars->47->2954"
15112
+ "default.handlebars->47->1006",
15113
+ "default.handlebars->47->1125",
15114
+ "default.handlebars->47->1150",
15115
+ "default.handlebars->47->2681",
15116
+ "default.handlebars->47->2959",
15117
+ "default.handlebars->47->2960"
15118
]
15119
},
15120
{
@@ -15133,10 +15141,10 @@
15141
"zh-cht": "聊天並通知",
15142
"hu": "Csevegés és Értesítés",
15143
"xloc": [
15136
- "default-mobile.handlebars->11->944",
15137
- "default-mobile.handlebars->11->964",
15138
- "default.handlebars->47->2314",
15139
- "default.handlebars->47->2352"
15144
+ "default-mobile.handlebars->11->963",
15145
+ "default-mobile.handlebars->11->983",
15146
+ "default.handlebars->47->2320",
15147
+ "default.handlebars->47->2358"
15148
]
15149
},
15150
{
@@ -15163,8 +15171,8 @@
15171
"zh-cht": "聊天請求,點擊這裡接受。",
15172
"hu": "Csevegés kezdeményezés, kattintson ide az elfogadáshoz.",
15173
"xloc": [
15166
- "default-mobile.handlebars->11->996",
15167
- "default.handlebars->47->3223"
15174
+ "default-mobile.handlebars->11->1015",
15175
+ "default.handlebars->47->3229"
15176
]
15177
},
15178
{
@@ -15219,7 +15227,7 @@
15227
"hu": "csecsen",
15228
"xloc": [
15229
"default-mobile.handlebars->11->137",
15222
- "default.handlebars->47->1830",
15230
+ "default.handlebars->47->1836",
15231
"login2.handlebars->7->34"
15232
]
15233
},
@@ -15367,8 +15375,8 @@
15375
"zh-cht": "檢查...",
15376
"hu": "Ellenőrzés...",
15377
"xloc": [
15370
- "default.handlebars->47->1796",
15371
- "default.handlebars->47->3343"
15378
+ "default.handlebars->47->1802",
15379
+ "default.handlebars->47->3349"
15380
]
15381
},
15382
{
@@ -15396,7 +15404,7 @@
15404
"hu": "kínai",
15405
"xloc": [
15406
"default-mobile.handlebars->11->138",
15399
- "default.handlebars->47->1831",
15407
+ "default.handlebars->47->1837",
15408
"login2.handlebars->7->35"
15409
]
15410
},
@@ -15425,7 +15433,7 @@
15433
"hu": "kínai (Hongkong)",
15434
"xloc": [
15435
"default-mobile.handlebars->11->139",
15428
- "default.handlebars->47->1832",
15436
+ "default.handlebars->47->1838",
15437
"login2.handlebars->7->36"
15438
]
15439
},
@@ -15454,7 +15462,7 @@
15462
"hu": "kínai (Kínai Népköztársaság)",
15463
"xloc": [
15464
"default-mobile.handlebars->11->140",
15457
- "default.handlebars->47->1833",
15465
+ "default.handlebars->47->1839",
15466
"login2.handlebars->7->37"
15467
]
15468
},
@@ -15483,7 +15491,7 @@
15491
"hu": "kínai (egyszerűsített)",
15492
"xloc": [
15493
"default-mobile.handlebars->11->300",
15486
- "default.handlebars->47->1993",
15494
+ "default.handlebars->47->1999",
15495
"login2.handlebars->7->197"
15496
]
15497
},
@@ -15512,7 +15520,7 @@
15520
"hu": "kínai (Szingapúr)",
15521
"xloc": [
15522
"default-mobile.handlebars->11->141",
15515
- "default.handlebars->47->1834",
15523
+ "default.handlebars->47->1840",
15524
"login2.handlebars->7->38"
15525
]
15526
},
@@ -15541,7 +15549,7 @@
15549
"hu": "kínai (Tajvan)",
15550
"xloc": [
15551
"default-mobile.handlebars->11->142",
15544
- "default.handlebars->47->1835",
15552
+ "default.handlebars->47->1841",
15553
"login2.handlebars->7->39"
15554
]
15555
},
@@ -15570,7 +15578,7 @@
15578
"hu": "kínai (hagyományos)",
15579
"xloc": [
15580
"default-mobile.handlebars->11->301",
15573
- "default.handlebars->47->1994",
15581
+ "default.handlebars->47->2000",
15582
"login2.handlebars->7->198"
15583
]
15584
},
@@ -15627,7 +15635,7 @@
15635
"hu": "csuvas",
15636
"xloc": [
15637
"default-mobile.handlebars->11->143",
15630
- "default.handlebars->47->1836",
15638
+ "default.handlebars->47->1842",
15639
"login2.handlebars->7->40"
15640
]
15641
},
@@ -15679,18 +15687,18 @@
15687
"zh-cht": "清除",
15688
"hu": "Törlés",
15689
"xloc": [
15682
- "default-mobile.handlebars->11->370",
15683
- "default-mobile.handlebars->11->707",
15684
- "default-mobile.handlebars->11->709",
15685
- "default-mobile.handlebars->11->711",
15686
- "default-mobile.handlebars->11->713",
15690
+ "default-mobile.handlebars->11->371",
15691
+ "default-mobile.handlebars->11->719",
15692
+ "default-mobile.handlebars->11->721",
15693
+ "default-mobile.handlebars->11->723",
15694
+ "default-mobile.handlebars->11->725",
15695
"default-mobile.handlebars->11->80",
15696
"default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->5",
15689
- "default.handlebars->47->1552",
15690
- "default.handlebars->47->1554",
15691
- "default.handlebars->47->1556",
15692
- "default.handlebars->47->1558",
15693
- "default.handlebars->47->2470",
15697
+ "default.handlebars->47->1551",
15698
+ "default.handlebars->47->1553",
15699
+ "default.handlebars->47->1555",
15700
+ "default.handlebars->47->1557",
15701
+ "default.handlebars->47->2476",
15702
"default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7",
15703
"default.handlebars->container->column_l->p41->3->1",
15704
"messenger.handlebars->xbottom->1->1->0->5",
@@ -15724,8 +15732,8 @@
15732
"zh-cht": "清除 RDP 憑據?",
15733
"hu": "RDP hitelesítő adatok törlése?",
15734
"xloc": [
15727
- "default-mobile.handlebars->11->609",
15728
- "default.handlebars->47->1344"
15735
+ "default-mobile.handlebars->11->621",
15736
+ "default.handlebars->47->1343"
15737
]
15738
},
15739
{
@@ -15752,8 +15760,8 @@
15760
"zh-cht": "清除 SSH 憑據?",
15761
"hu": "SSH hitelesítő adatok törlése?",
15762
"xloc": [
15755
- "default-mobile.handlebars->11->607",
15756
- "default.handlebars->47->1342"
15763
+ "default-mobile.handlebars->11->619",
15764
+ "default.handlebars->47->1341"
15765
]
15766
},
15767
{
@@ -15807,8 +15815,8 @@
15815
"zh-cht": "清除代理核心",
15816
"hu": "Agent Core törlése",
15817
"xloc": [
15810
- "default.handlebars->47->734",
15811
- "default.handlebars->47->776"
15818
+ "default.handlebars->47->733",
15819
+ "default.handlebars->47->775"
15820
]
15821
},
15822
{
@@ -15835,7 +15843,7 @@
15843
"zh-cht": "清除所選設備上的代理核心?",
15844
"hu": "Agent Core törlése a kijelölt eszköz(ök)ön?",
15845
"xloc": [
15838
- "default.handlebars->47->775"
15846
+ "default.handlebars->47->774"
15847
]
15848
},
15849
{
@@ -15862,8 +15870,8 @@
15870
"zh-cht": "全部清除",
15871
"hu": "Összes törlése",
15872
"xloc": [
15865
- "default-mobile.handlebars->11->979",
15866
- "default.handlebars->47->3206"
15873
+ "default-mobile.handlebars->11->998",
15874
+ "default.handlebars->47->3212"
15875
]
15876
},
15877
{
@@ -15890,7 +15898,7 @@
15898
"zh-cht": "清除搜索過濾器",
15899
"hu": "Szűrő törlése",
15900
"xloc": [
15893
- "default-mobile.handlebars->11->400",
15901
+ "default-mobile.handlebars->11->401",
15902
"default.handlebars->47->362"
15903
]
15904
},
@@ -15918,8 +15926,8 @@
15926
"zh-cht": "清除核心",
15927
"hu": "Core törlése",
15928
"xloc": [
15921
- "default-mobile.handlebars->11->884",
15922
- "default.handlebars->47->1726"
15929
+ "default-mobile.handlebars->11->903",
15930
+ "default.handlebars->47->1732"
15931
]
15932
},
15933
{
@@ -15973,8 +15981,8 @@
15981
"zh-cht": "清除此通知",
15982
"hu": "Törölje ezt az értesítést",
15983
"xloc": [
15976
- "default-mobile.handlebars->11->978",
15977
- "default.handlebars->47->3205"
15984
+ "default-mobile.handlebars->11->997",
15985
+ "default.handlebars->47->3211"
15986
]
15987
},
15988
{
@@ -16082,8 +16090,8 @@
16090
"zh-cht": "單擊此處編輯裝置群名稱",
16091
"hu": "Kattintson ide az eszközcsoport nevének szerkesztéséhez",
16092
"xloc": [
16085
- "default.handlebars->47->2113",
16086
- "default.handlebars->47->2413"
16093
+ "default.handlebars->47->2119",
16094
+ "default.handlebars->47->2419"
16095
]
16096
},
16097
{
@@ -16110,7 +16118,7 @@
16118
"zh-cht": "單擊此處編輯伺服器端裝置名稱",
16119
"hu": "Kattintson ide a kiszolgáló-oldali eszköznév szerkesztéséhez",
16120
"xloc": [
16113
- "default.handlebars->47->872"
16121
+ "default.handlebars->47->871"
16122
]
16123
},
16124
{
@@ -16137,7 +16145,7 @@
16145
"zh-cht": "單擊此處編輯用戶群名稱",
16146
"hu": "Kattintson ide a felhasználói csoport nevének szerkesztéséhez",
16147
"xloc": [
16140
- "default.handlebars->47->2805"
16148
+ "default.handlebars->47->2811"
16149
]
16150
},
16151
{
@@ -16272,7 +16280,7 @@
16280
"hu": "Kattintson az OK gombra, ha megerősítő e-mailt szeretne küldeni a következő címre:",
16281
"xloc": [
16282
"default-mobile.handlebars->11->313",
16275
- "default.handlebars->47->2029"
16283
+ "default.handlebars->47->2035"
16284
]
16285
},
16286
{
@@ -16378,8 +16386,8 @@
16386
"zh-cht": "客戶端控制模式(CCM)",
16387
"hu": "Client Control Mode (CCM)",
16388
"xloc": [
16381
- "default-mobile.handlebars->11->793",
16382
- "default.handlebars->47->1634"
16389
+ "default-mobile.handlebars->11->805",
16390
+ "default.handlebars->47->1633"
16391
]
16392
},
16393
{
@@ -16406,7 +16414,7 @@
16414
"zh-cht": "客戶編號",
16415
"hu": "Client ID",
16416
"xloc": [
16409
- "default.handlebars->47->2092"
16417
+ "default.handlebars->47->2098"
16418
]
16419
},
16420
{
@@ -16433,7 +16441,7 @@
16441
"zh-cht": "客戶端啟動的遠程訪問",
16442
"hu": "Ügyfél által kezdeményezett távoli elérés",
16443
"xloc": [
16436
- "default.handlebars->47->2242"
16444
+ "default.handlebars->47->2248"
16445
]
16446
},
16447
{
@@ -16460,7 +16468,7 @@
16468
"zh-cht": "客戶機密",
16469
"hu": "Client Secret",
16470
"xloc": [
16463
- "default.handlebars->47->2093"
16471
+ "default.handlebars->47->2099"
16472
]
16473
},
16474
{
@@ -16517,11 +16525,11 @@
16525
"xloc": [
16526
"agent-translations.json",
16527
"default-mobile.handlebars->11->78",
16520
- "default.handlebars->47->1455",
16521
- "default.handlebars->47->1527",
16528
+ "default.handlebars->47->1454",
16529
+ "default.handlebars->47->1526",
16530
"default.handlebars->47->228",
16531
"default.handlebars->47->236",
16524
- "default.handlebars->47->3337",
16532
+ "default.handlebars->47->3343",
16533
"sharing.handlebars->11->52"
16534
]
16535
},
@@ -16549,7 +16557,7 @@
16557
"zh-cht": "已關閉桌面多路復用會話 \\\"{0}\\\",{1} 秒",
16558
"hu": "Lezárt asztali multiplex munkamenet \\\"{0}\\\", {1} másodperc",
16559
"xloc": [
16552
- "default.handlebars->47->2620"
16560
+ "default.handlebars->47->2626"
16561
]
16562
},
16563
{
@@ -16576,7 +16584,7 @@
16584
"zh-cht": "封閉式桌面多路復用會話,{0}秒",
16585
"hu": "Lezárt asztali multiplex munkamenet, {0} másodperc",
16586
"xloc": [
16579
- "default.handlebars->47->2481"
16587
+ "default.handlebars->47->2487"
16588
]
16589
},
16590
{
@@ -16712,7 +16720,7 @@
16720
"hu": "Parancs",
16721
"xloc": [
16722
"agentinvite.handlebars->3->17",
16715
- "default.handlebars->47->674"
16723
+ "default.handlebars->47->673"
16724
]
16725
},
16726
{
@@ -16766,10 +16774,10 @@
16774
"zh-cht": "指令",
16775
"hu": "Parancsok",
16776
"xloc": [
16769
- "default-mobile.handlebars->11->966",
16770
- "default.handlebars->47->1128",
16771
- "default.handlebars->47->1153",
16772
- "default.handlebars->47->2354"
16777
+ "default-mobile.handlebars->11->985",
16778
+ "default.handlebars->47->1127",
16779
+ "default.handlebars->47->1152",
16780
+ "default.handlebars->47->2360"
16781
]
16782
},
16783
{
@@ -16783,7 +16791,8 @@
16791
"de": "Befehle aus Datei",
16792
"es": "Comandos desde un archivo",
16793
"xloc": [
16786
- "default.handlebars->47->801"
16794
+ "default-mobile.handlebars->11->603",
16795
+ "default.handlebars->47->800"
16796
]
16797
},
16798
{
@@ -16797,7 +16806,8 @@
16806
"de": "Befehle aus Datei vom Server",
16807
"es": "Comandos desde un archivo en el servidor",
16808
"xloc": [
16800
- "default.handlebars->47->802"
16809
+ "default-mobile.handlebars->11->604",
16810
+ "default.handlebars->47->801"
16811
]
16812
},
16813
{
@@ -16811,7 +16821,8 @@
16821
"de": "Befehle aus Textfeld",
16822
"es": "Comandos desde caja de texto",
16823
"xloc": [
16814
- "default.handlebars->47->800"
16824
+ "default-mobile.handlebars->11->602",
16825
+ "default.handlebars->47->799"
16826
]
16827
},
16828
{
@@ -16838,8 +16849,8 @@
16849
"zh-cht": "通用裝置群",
16850
"hu": "Eszközcsoport jogosultságok",
16851
"xloc": [
16841
- "default.handlebars->47->2840",
16842
- "default.handlebars->47->3028"
16852
+ "default.handlebars->47->2846",
16853
+ "default.handlebars->47->3034"
16854
]
16855
},
16856
{
@@ -16866,8 +16877,8 @@
16877
"zh-cht": "通用裝置",
16878
"hu": "Eszköz jogosultságok",
16879
"xloc": [
16869
- "default.handlebars->47->2846",
16870
- "default.handlebars->47->3040"
16880
+ "default.handlebars->47->2852",
16881
+ "default.handlebars->47->3046"
16882
]
16883
},
16884
{
@@ -16894,8 +16905,8 @@
16905
"zh-cht": "編譯時間",
16906
"hu": "Fordítás ideje",
16907
"xloc": [
16897
- "default-mobile.handlebars->11->765",
16898
- "default.handlebars->47->1596"
16908
+ "default-mobile.handlebars->11->777",
16909
+ "default.handlebars->47->1595"
16910
]
16911
},
16912
{
@@ -16946,7 +16957,7 @@
16957
"zh-cht": "壓縮檔案...",
16958
"hu": "Fájlok tömörítése...",
16959
"xloc": [
16949
- "default.handlebars->47->1513",
16960
+ "default.handlebars->47->1512",
16961
"sharing.handlebars->11->47"
16962
]
16963
},
@@ -16984,7 +16995,7 @@
16995
"de": "Aufzeichnungen von Konfigurationsdatei",
16996
"es": "Registro de archivos de configuracion",
16997
"xloc": [
16987
- "default.handlebars->47->3182"
16998
+ "default.handlebars->47->3188"
16999
]
17000
},
17001
{
@@ -17011,16 +17022,16 @@
17022
"zh-cht": "確認",
17023
"hu": "Megerősít",
17024
"xloc": [
17014
- "default-mobile.handlebars->11->604",
17015
- "default-mobile.handlebars->11->915",
17016
- "default.handlebars->47->1293",
17017
- "default.handlebars->47->1302",
17018
- "default.handlebars->47->2253",
17019
- "default.handlebars->47->2705",
17020
- "default.handlebars->47->2795",
17021
- "default.handlebars->47->2862",
17022
- "default.handlebars->47->3026",
17023
- "default.handlebars->47->745"
17025
+ "default-mobile.handlebars->11->616",
17026
+ "default-mobile.handlebars->11->934",
17027
+ "default.handlebars->47->1292",
17028
+ "default.handlebars->47->1301",
17029
+ "default.handlebars->47->2259",
17030
+ "default.handlebars->47->2711",
17031
+ "default.handlebars->47->2801",
17032
+ "default.handlebars->47->2868",
17033
+ "default.handlebars->47->3032",
17034
+ "default.handlebars->47->744"
17035
]
17036
},
17037
{
@@ -17071,8 +17082,8 @@
17082
"zh-cht": "確認將1個副本複製到此位置?",
17083
"hu": "Megerősíti 1 bejegyzés másolatát erre a helyre?",
17084
"xloc": [
17074
- "default-mobile.handlebars->11->702",
17075
- "default.handlebars->47->1547",
17085
+ "default-mobile.handlebars->11->714",
17086
+ "default.handlebars->47->1546",
17087
"sharing.handlebars->11->70"
17088
]
17089
},
@@ -17100,7 +17111,7 @@
17111
"zh-cht": "確認{0}個條目的複製到此位置?",
17112
"hu": "Megerősíti a {0} bejegyzések másolását erre a helyre?",
17113
"xloc": [
17103
- "default.handlebars->47->1546",
17114
+ "default.handlebars->47->1545",
17115
"sharing.handlebars->11->69"
17116
]
17117
},
@@ -17128,7 +17139,7 @@
17139
"zh-cht": "確認{0}個條目的副本到此位置?",
17140
"hu": "Megerősíti a {0} bejegyzések másolását erre a helyre?",
17141
"xloc": [
17131
- "default-mobile.handlebars->11->701"
17142
+ "default-mobile.handlebars->11->713"
17143
]
17144
},
17145
{
@@ -17155,7 +17166,7 @@
17166
"zh-cht": "確認刪除所選帳戶?",
17167
"hu": "Megerősíti a kiválasztott fiók(ok) törlését?",
17168
"xloc": [
17158
- "default.handlebars->47->2704"
17169
+ "default.handlebars->47->2710"
17170
]
17171
},
17172
{
@@ -17206,7 +17217,7 @@
17217
"zh-cht": "確認刪除所選用戶群?",
17218
"hu": "Megerősíti a kiválasztott felhasználói csoport(ok) törlését?",
17219
"xloc": [
17209
- "default.handlebars->47->2794"
17220
+ "default.handlebars->47->2800"
17221
]
17222
},
17223
{
@@ -17233,7 +17244,7 @@
17244
"zh-cht": "確認刪除用戶{0}?",
17245
"hu": "Megerősíti a(z) {0} felhasználó törlését?",
17246
"xloc": [
17236
- "default.handlebars->47->3025"
17247
+ "default.handlebars->47->3031"
17248
]
17249
},
17250
{
@@ -17260,7 +17271,7 @@
17271
"zh-cht": "確認刪除用戶“ {0} ”的成員身份?",
17272
"hu": "Megerősíti a \\\"{0}\\\" felhasználó tagságának eltávolítását?",
17273
"xloc": [
17263
- "default.handlebars->47->2865"
17274
+ "default.handlebars->47->2871"
17275
]
17276
},
17277
{
@@ -17287,7 +17298,7 @@
17298
"zh-cht": "確認刪除用戶群“ {0} ”的成員身份?",
17299
"hu": "Megerősíti a \\\"{0}\\\" felhasználói csoport tagság eltávolítását?",
17300
"xloc": [
17290
- "default.handlebars->47->3057"
17301
+ "default.handlebars->47->3063"
17302
]
17303
},
17304
{
@@ -17314,8 +17325,8 @@
17325
"zh-cht": "確認將1個條目移動到此位置?",
17326
"hu": "Megerősíti 1 bejegyzés áthelyezését erre a helyre?",
17327
"xloc": [
17317
- "default-mobile.handlebars->11->704",
17318
- "default.handlebars->47->1549",
17328
+ "default-mobile.handlebars->11->716",
17329
+ "default.handlebars->47->1548",
17330
"sharing.handlebars->11->72"
17331
]
17332
},
@@ -17343,7 +17354,7 @@
17354
"zh-cht": "確認將{0}個條目移到該位置?",
17355
"hu": "Megerősíti {0} bejegyzés áthelyezését erre a helyre?",
17356
"xloc": [
17346
- "default.handlebars->47->1548",
17357
+ "default.handlebars->47->1547",
17358
"sharing.handlebars->11->71"
17359
]
17360
},
@@ -17371,7 +17382,7 @@
17382
"zh-cht": "確認將{0}個條目移到該位置?",
17383
"hu": "Megerősíti {0} bejegyzés áthelyezését erre a helyre?",
17384
"xloc": [
17374
- "default-mobile.handlebars->11->703"
17385
+ "default-mobile.handlebars->11->715"
17386
]
17387
},
17388
{
@@ -17398,7 +17409,7 @@
17409
"zh-cht": "確認覆蓋?",
17410
"hu": "Megerősíti a felülírást?",
17411
"xloc": [
17401
- "default.handlebars->47->2462"
17412
+ "default.handlebars->47->2468"
17413
]
17414
},
17415
{
@@ -17425,8 +17436,8 @@
17436
"zh-cht": "確認刪除裝置“ {0} ”的訪問權限?",
17437
"hu": "Megerősíti a \\\"{0}\\\" eszköz hozzáférési jogainak eltávolítását?",
17438
"xloc": [
17428
- "default.handlebars->47->2855",
17429
- "default.handlebars->47->3048"
17439
+ "default.handlebars->47->2861",
17440
+ "default.handlebars->47->3054"
17441
]
17442
},
17443
{
@@ -17453,8 +17464,8 @@
17464
"zh-cht": "確認刪除裝置群“ {0} ”的訪問權限?",
17465
"hu": "Megerősíti a \\\"{0}\\\" eszközcsoport hozzáférési jogainak eltávolítását?",
17466
"xloc": [
17456
- "default.handlebars->47->2857",
17457
- "default.handlebars->47->3061"
17467
+ "default.handlebars->47->2863",
17468
+ "default.handlebars->47->3067"
17469
]
17470
},
17471
{
@@ -17481,7 +17492,7 @@
17492
"zh-cht": "確認刪除用戶“ {0} ”的訪問權限?",
17493
"hu": "Megerősíti a \\\"{0}\\\" felhasználó hozzáférési jogainak eltávolítását?",
17494
"xloc": [
17484
- "default.handlebars->47->3050"
17495
+ "default.handlebars->47->3056"
17496
]
17497
},
17498
{
@@ -17508,7 +17519,7 @@
17519
"zh-cht": "確認刪除用戶群“ {0} ”的訪問權限?",
17520
"hu": "Megerősíti a \\\"{0}\\\" felhasználói csoport hozzáférési jogainak eltávolítását?",
17521
"xloc": [
17511
- "default.handlebars->47->3053"
17522
+ "default.handlebars->47->3059"
17523
]
17524
},
17525
{
@@ -17535,8 +17546,8 @@
17546
"zh-cht": "確認刪除訪問權限?",
17547
"hu": "Megerősíti a hozzáférési jogok eltávolítását?",
17548
"xloc": [
17538
- "default.handlebars->47->3051",
17539
- "default.handlebars->47->3054"
17549
+ "default.handlebars->47->3057",
17550
+ "default.handlebars->47->3060"
17551
]
17552
},
17553
{
@@ -17564,7 +17575,7 @@
17575
"hu": "Megerősíti a hitelesítő alkalmazás, kétlépcsős bejelentkezés eltávolítását?",
17576
"xloc": [
17577
"default-mobile.handlebars->11->312",
17567
- "default.handlebars->47->1779"
17578
+ "default.handlebars->47->1785"
17579
]
17580
},
17581
{
@@ -17615,7 +17626,7 @@
17626
"zh-cht": "確認刪除設備共享“{0}”?",
17627
"hu": "Megerősíti a(z) \\\"{0}\\\" eszközmegosztás eltávolítását?",
17628
"xloc": [
17618
- "default.handlebars->47->3046"
17629
+ "default.handlebars->47->3052"
17630
]
17631
},
17632
{
@@ -17690,7 +17701,7 @@
17701
"zh-cht": "確認移除推送認證設備?",
17702
"hu": "Megerősíti a Push-hitelesítési eszköz eltávolítását?",
17703
"xloc": [
17693
- "default.handlebars->47->1781"
17704
+ "default.handlebars->47->1787"
17705
]
17706
},
17707
{
@@ -17717,7 +17728,7 @@
17728
"zh-cht": "確認刪除用戶“ {0} ”的權限?",
17729
"hu": "Megerősíti a \\\"{0}\\\" felhasználó jogainak eltávolítását?",
17730
"xloc": [
17720
- "default.handlebars->47->2366"
17731
+ "default.handlebars->47->2372"
17732
]
17733
},
17734
{
@@ -17744,7 +17755,7 @@
17755
"zh-cht": "確認刪除用戶群“ {0} ”的權限?",
17756
"hu": "Megerősíti a \\\"{0}\\\" felhasználói csoport jogainak eltávolítását?",
17757
"xloc": [
17747
- "default.handlebars->47->2368"
17758
+ "default.handlebars->47->2374"
17759
]
17760
},
17761
{
@@ -17771,7 +17782,7 @@
17782
"zh-cht": "確認刪除所選設備?",
17783
"hu": "Megerősíti a kiválasztott eszköz eltávolítását?",
17784
"xloc": [
17774
- "default.handlebars->47->739"
17785
+ "default.handlebars->47->738"
17786
]
17787
},
17788
{
@@ -17798,7 +17809,7 @@
17809
"zh-cht": "確認刪除此登錄令牌?",
17810
"hu": "Megerősíti ennek a bejelentkezési tokennek az eltávolítását?",
17811
"xloc": [
17801
- "default.handlebars->47->2085"
17812
+ "default.handlebars->47->2091"
17813
]
17814
},
17815
{
@@ -17849,7 +17860,7 @@
17860
"zh-cht": "確認刪除用戶{0}?",
17861
"hu": "Megerősíti a(z) {0} felhasználó eltávolítását?",
17862
"xloc": [
17852
- "default-mobile.handlebars->11->975"
17863
+ "default-mobile.handlebars->11->994"
17864
]
17865
},
17866
{
@@ -17876,7 +17887,7 @@
17887
"zh-cht": "確認刪除 {0} 個選定的設備?",
17888
"hu": "Megerősíti {0} kiválasztott eszköz eltávolítását?",
17889
"xloc": [
17879
- "default.handlebars->47->740"
17890
+ "default.handlebars->47->739"
17891
]
17892
},
17893
{
@@ -17903,8 +17914,8 @@
17914
"zh-cht": "將{1}入口{2}中的{0}限製到此位置?",
17915
"hu": "Megerősíti {0} / {1} bejegyzés {2} erre a helyre?",
17916
"xloc": [
17906
- "default-mobile.handlebars->11->365",
17907
- "default.handlebars->47->2465"
17917
+ "default-mobile.handlebars->11->366",
17918
+ "default.handlebars->47->2471"
17919
]
17920
},
17921
{
@@ -17935,8 +17946,8 @@
17946
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
17947
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3",
17948
"default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea1->1->3->connectbutton2span",
17938
- "default.handlebars->47->2151",
17939
- "default.handlebars->47->964",
17949
+ "default.handlebars->47->2157",
17950
+ "default.handlebars->47->963",
17951
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1span",
17952
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2span",
17953
"default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3",
@@ -18025,7 +18036,7 @@
18036
"zh-cht": "連接到伺服器",
18037
"hu": "Csatlakozás a kiszolgálóhoz",
18038
"xloc": [
18028
- "default.handlebars->47->2246"
18039
+ "default.handlebars->47->2252"
18040
]
18041
},
18042
{
@@ -18269,7 +18280,7 @@
18280
"zh-cht": "已連接的Intel® AMT",
18281
"hu": "Csatlakozott Intel® AMT",
18282
"xloc": [
18272
- "default.handlebars->47->3264"
18283
+ "default.handlebars->47->3270"
18284
]
18285
},
18286
{
@@ -18296,7 +18307,7 @@
18307
"zh-cht": "已连接的用户",
18308
"hu": "Csatlakozott felhasználók",
18309
"xloc": [
18299
- "default.handlebars->47->3269"
18310
+ "default.handlebars->47->3275"
18311
]
18312
},
18313
{
@@ -18351,8 +18362,8 @@
18362
"zh-cht": "現在已連接",
18363
"hu": "Csatlakoztatva most",
18364
"xloc": [
18354
- "default-mobile.handlebars->11->760",
18355
- "default.handlebars->47->1591"
18365
+ "default-mobile.handlebars->11->772",
18366
+ "default.handlebars->47->1590"
18367
]
18368
},
18369
{
@@ -18483,8 +18494,8 @@
18494
"xloc": [
18495
"default-mobile.handlebars->11->2",
18496
"default-mobile.handlebars->11->50",
18486
- "default-mobile.handlebars->11->720",
18487
- "default.handlebars->47->1572",
18497
+ "default-mobile.handlebars->11->732",
18498
+ "default.handlebars->47->1571",
18499
"default.handlebars->47->393",
18500
"default.handlebars->47->396",
18501
"default.handlebars->47->477",
@@ -18543,7 +18554,7 @@
18554
"zh-cht": "連接數量",
18555
"hu": "Kapcsolatok száma",
18556
"xloc": [
18546
- "default.handlebars->47->3295"
18557
+ "default.handlebars->47->3301"
18558
]
18559
},
18560
{
@@ -18570,9 +18581,9 @@
18581
"zh-cht": "連接錯誤",
18582
"hu": "Kapcsolat Hiba",
18583
"xloc": [
18573
- "default-mobile.handlebars->11->683",
18574
- "default.handlebars->47->1492",
18575
- "default.handlebars->47->1509",
18584
+ "default-mobile.handlebars->11->695",
18585
+ "default.handlebars->47->1491",
18586
+ "default.handlebars->47->1508",
18587
"login2.handlebars->7->232"
18588
]
18589
},
@@ -18600,7 +18611,7 @@
18611
"zh-cht": "連接轉發器",
18612
"hu": "Kapccsolat Relay",
18613
"xloc": [
18603
- "default.handlebars->47->3331"
18614
+ "default.handlebars->47->3337"
18615
]
18616
},
18617
{
@@ -18681,10 +18692,10 @@
18692
"zh-cht": "連接性",
18693
"hu": "Kapcsolódás",
18694
"xloc": [
18684
- "default-mobile.handlebars->11->525",
18685
- "default.handlebars->47->2420",
18695
+ "default-mobile.handlebars->11->526",
18696
+ "default.handlebars->47->2426",
18697
"default.handlebars->47->381",
18687
- "default.handlebars->47->981",
18698
+ "default.handlebars->47->980",
18699
"default.handlebars->container->column_l->p21->p21main->1->1->meshConnChartDiv->1"
18700
]
18701
},
@@ -18712,7 +18723,7 @@
18723
"zh-cht": "同意",
18724
"hu": "Hozzájárulás",
18725
"xloc": [
18715
- "default.handlebars->47->2636"
18726
+ "default.handlebars->47->2642"
18727
]
18728
},
18729
{
@@ -18739,9 +18750,9 @@
18750
"zh-cht": "控制台",
18751
"hu": "Mesh Agent konzol",
18752
"xloc": [
18742
- "default-mobile.handlebars->11->565",
18743
- "default.handlebars->47->1121",
18744
- "default.handlebars->47->1146",
18753
+ "default-mobile.handlebars->11->566",
18754
+ "default.handlebars->47->1120",
18755
+ "default.handlebars->47->1145",
18756
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevConsole",
18757
"default.handlebars->container->topbar->1->1->ServerSubMenuSpan->ServerSubMenu->1->0->ServerConsole",
18758
"default.handlebars->contextMenu->cxconsole"
@@ -18771,7 +18782,7 @@
18782
"zh-cht": "控制台 -",
18783
"hu": "Konzol -",
18784
"xloc": [
18774
- "default.handlebars->47->873"
18785
+ "default.handlebars->47->872"
18786
]
18787
},
18788
{
@@ -18798,8 +18809,8 @@
18809
"zh-cht": "控制",
18810
"hu": "Felügyelet ",
18811
"xloc": [
18801
- "default.handlebars->47->1120",
18802
- "default.handlebars->47->1145",
18812
+ "default.handlebars->47->1119",
18813
+ "default.handlebars->47->1144",
18814
"messenger.handlebars->remoteImage->3->2"
18815
]
18816
},
@@ -18855,7 +18866,7 @@
18866
"zh-cht": "Cookie編碼器",
18867
"hu": "Cookie kódoló",
18868
"xloc": [
18858
- "default.handlebars->47->3314"
18869
+ "default.handlebars->47->3320"
18870
]
18871
},
18872
{
@@ -18884,7 +18895,7 @@
18895
"xloc": [
18896
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->3",
18897
"default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->3",
18887
- "default.handlebars->47->627",
18898
+ "default.handlebars->47->626",
18899
"default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
18900
"default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
18901
"sharing.handlebars->p13->p13toolbar->fileArea2->3"
@@ -18951,9 +18962,9 @@
18962
"zh-cht": "將 URL 複製到剪貼板",
18963
"hu": "URL másolása a vágólapra",
18964
"xloc": [
18954
- "default.handlebars->47->640",
18955
- "default.handlebars->47->644",
18956
- "default.handlebars->47->648"
18965
+ "default.handlebars->47->639",
18966
+ "default.handlebars->47->643",
18967
+ "default.handlebars->47->647"
18968
]
18969
},
18970
{
@@ -19011,8 +19022,8 @@
19022
"de": "Windows ARM 64bit Agent-URL in die Zwischenablage kopieren",
19023
"es": "Copiar el URL del agente Windows ARM 64bit a la papelera",
19024
"xloc": [
19014
- "default.handlebars->47->621",
19015
- "default.handlebars->47->661"
19025
+ "default.handlebars->47->620",
19026
+ "default.handlebars->47->660"
19027
]
19028
},
19029
{
@@ -19022,8 +19033,8 @@
19033
"de": "Windows x86 32bit Agent-URL in die Zwischenablage kopieren",
19034
"es": "Copiar el URL del agente x86 32bit a la papelera",
19035
"xloc": [
19025
- "default.handlebars->47->613",
19026
- "default.handlebars->47->653"
19036
+ "default.handlebars->47->612",
19037
+ "default.handlebars->47->652"
19038
]
19039
},
19040
{
@@ -19033,8 +19044,8 @@
19044
"de": "Windows x86 64bit Agent-URL in die Zwischenablage kopieren",
19045
"es": "Copiar el URL del agente Windows x86 64bit a la papelera",
19046
"xloc": [
19036
- "default.handlebars->47->617",
19037
- "default.handlebars->47->657"
19047
+ "default.handlebars->47->616",
19048
+ "default.handlebars->47->656"
19049
]
19050
},
19051
{
@@ -19101,8 +19112,8 @@
19112
"xloc": [
19113
"agentinvite.handlebars->3->16",
19114
"agentinvite.handlebars->3->18",
19104
- "default.handlebars->47->673",
19105
- "default.handlebars->47->675"
19115
+ "default.handlebars->47->672",
19116
+ "default.handlebars->47->674"
19117
]
19118
},
19119
{
@@ -19129,12 +19140,12 @@
19140
"zh-cht": "複製連結到剪貼板",
19141
"hu": "Hivatkozás másolása a vágólapra.",
19142
"xloc": [
19132
- "default.handlebars->47->2431",
19133
- "default.handlebars->47->2450",
19143
+ "default.handlebars->47->2437",
19144
+ "default.handlebars->47->2456",
19145
"default.handlebars->47->311",
19146
"default.handlebars->47->333",
19147
"default.handlebars->47->335",
19137
- "default.handlebars->47->586"
19148
+ "default.handlebars->47->585"
19149
]
19150
},
19151
{
@@ -19161,8 +19172,8 @@
19172
"zh-cht": "將macOS代理URL複製到剪貼板",
19173
"hu": "macOS Agent URL másolása a vágólapra",
19174
"xloc": [
19164
- "default.handlebars->47->631",
19165
- "default.handlebars->47->667"
19175
+ "default.handlebars->47->630",
19176
+ "default.handlebars->47->666"
19177
]
19178
},
19179
{
@@ -19218,8 +19229,8 @@
19229
"xloc": [
19230
"agentinvite.handlebars->container->column_l->5->linuxtab",
19231
"agentinvite.handlebars->container->column_l->5->linuxtab",
19221
- "default.handlebars->47->626",
19222
- "default.handlebars->47->663"
19232
+ "default.handlebars->47->625",
19233
+ "default.handlebars->47->662"
19234
]
19235
},
19236
{
@@ -19273,7 +19284,7 @@
19284
"zh-cht": "複製:“{0}”到“{1}”",
19285
"hu": "Másolás: \\\"{0}\\\" ide: \\\"{1}\\\"",
19286
"xloc": [
19276
- "default.handlebars->47->2524"
19287
+ "default.handlebars->47->2530"
19288
]
19289
},
19290
{
@@ -19468,7 +19479,7 @@
19479
"zh-cht": "核心伺服器",
19480
"hu": "Core Server",
19481
"xloc": [
19471
- "default.handlebars->47->3313"
19482
+ "default.handlebars->47->3319"
19483
]
19484
},
19485
{
@@ -19496,7 +19507,7 @@
19507
"hu": "korzikai",
19508
"xloc": [
19509
"default-mobile.handlebars->11->144",
19499
- "default.handlebars->47->1837",
19510
+ "default.handlebars->47->1843",
19511
"login2.handlebars->7->41"
19512
]
19513
},
@@ -19548,7 +19559,7 @@
19559
"zh-cht": "創建帳號",
19560
"hu": "Fiók létrehozása",
19561
"xloc": [
19551
- "default.handlebars->47->2762",
19562
+ "default.handlebars->47->2768",
19563
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->16->1->1",
19564
"login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->16->1->1",
19565
"login2.handlebars->centralTable->1->0->logincell->createpanel->createpanelform->9->1->16->1->1"
@@ -19629,7 +19640,7 @@
19640
"zh-cht": "創建登錄令牌",
19641
"hu": "Bejelentkezési token létrehozása",
19642
"xloc": [
19632
- "default.handlebars->47->2022",
19643
+ "default.handlebars->47->2028",
19644
"default.handlebars->47->336"
19645
]
19646
},
@@ -19657,7 +19668,7 @@
19668
"zh-cht": "創建用戶群",
19669
"hu": "Felhasználó csoport létrehozása",
19670
"xloc": [
19660
- "default.handlebars->47->2802"
19671
+ "default.handlebars->47->2808"
19672
]
19673
},
19674
{
@@ -19684,7 +19695,7 @@
19695
"zh-cht": "創建鏈結以與訪客共享此裝置",
19696
"hu": "Link létrehozása az eszköz vendégekkel való megosztásához",
19697
"xloc": [
19687
- "default.handlebars->47->1010"
19698
+ "default.handlebars->47->1009"
19699
]
19700
},
19701
{
@@ -19711,7 +19722,7 @@
19722
"zh-cht": "使用以下選項創建一個新的裝置群。",
19723
"hu": "Hozzon létre egy új eszközcsoportot az alábbi lehetőségek segítségével.",
19724
"xloc": [
19714
- "default.handlebars->47->2052"
19725
+ "default.handlebars->47->2058"
19726
]
19727
},
19728
{
@@ -19765,7 +19776,7 @@
19776
"zh-cht": "創建一個臨時用戶名和密碼,可用作您帳戶的替代登錄名。這對於允許工具或其他服務訪問您的帳戶很有用。",
19777
"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.",
19778
"xloc": [
19768
- "default.handlebars->47->2002"
19779
+ "default.handlebars->47->2008"
19780
]
19781
},
19782
{
@@ -19792,7 +19803,7 @@
19803
"zh-cht": "創建文件夾(如果不存在)?",
19804
"hu": "Mappa létrehozása, ha nem létezik?",
19805
"xloc": [
19795
- "default.handlebars->47->770"
19806
+ "default.handlebars->47->769"
19807
]
19808
},
19809
{
@@ -19819,7 +19830,7 @@
19830
"zh-cht": "創建文件夾:“{0}”",
19831
"hu": "Mappa létrehozása: \\\"{0}\\\"",
19832
"xloc": [
19822
- "default.handlebars->47->2517"
19833
+ "default.handlebars->47->2523"
19834
]
19835
},
19836
{
@@ -19859,7 +19870,7 @@
19870
"de": "Erstellen Sie mehrere Intel® AMT Geräte gleichzeitig durch Import einer JSON Datei mit dem folgenden Format:",
19871
"es": "Crea muchos dispositivos Intel® AMT al mismo tiempo importando un archivo JSON con el siguiente formato:",
19872
"xloc": [
19862
- "default.handlebars->47->513"
19873
+ "default.handlebars->47->512"
19874
]
19875
},
19876
{
@@ -19889,7 +19900,7 @@
19900
{
19901
"en": "Create many accounts at once by importing a JSON or CSV file",
19902
"xloc": [
19892
- "default.handlebars->47->2719"
19903
+ "default.handlebars->47->2725"
19904
]
19905
},
19906
{
@@ -19945,7 +19956,7 @@
19956
"zh-cht": "創建的設備組:{0}",
19957
"hu": "Eszközcsoport létrehozva: {0}",
19958
"xloc": [
19948
- "default.handlebars->47->2528"
19959
+ "default.handlebars->47->2534"
19960
]
19961
},
19962
{
@@ -19972,7 +19983,7 @@
19983
"zh-cht": "創建一個鏈接,該鏈接允許沒有帳戶的訪客在有限的時間內遠程控制此設備。",
19984
"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.",
19985
"xloc": [
19975
- "default.handlebars->47->1188"
19986
+ "default.handlebars->47->1187"
19987
]
19988
},
19989
{
@@ -20047,7 +20058,7 @@
20058
"zh-cht": "創建",
20059
"hu": "Létrehozás",
20060
"xloc": [
20050
- "default.handlebars->47->2910"
20061
+ "default.handlebars->47->2916"
20062
]
20063
},
20064
{
@@ -20074,7 +20085,7 @@
20085
"zh-cht": "創作時間",
20086
"hu": "Létrehozás ideje",
20087
"xloc": [
20077
- "default.handlebars->47->2131"
20088
+ "default.handlebars->47->2137"
20089
]
20090
},
20091
{
@@ -20130,8 +20141,8 @@
20141
"zh-cht": "創作者",
20142
"hu": "Létrehozó",
20143
"xloc": [
20133
- "default.handlebars->47->2129",
20134
- "default.handlebars->47->2130"
20144
+ "default.handlebars->47->2135",
20145
+ "default.handlebars->47->2136"
20146
]
20147
},
20148
{
@@ -20158,10 +20169,10 @@
20169
"zh-cht": "證書",
20170
"hu": "Hitelesítő adatok",
20171
"xloc": [
20161
- "default-mobile.handlebars->11->537",
20162
- "default.handlebars->47->1368",
20163
- "default.handlebars->47->2090",
20164
- "default.handlebars->47->993"
20172
+ "default-mobile.handlebars->11->538",
20173
+ "default.handlebars->47->1367",
20174
+ "default.handlebars->47->2096",
20175
+ "default.handlebars->47->992"
20176
]
20177
},
20178
{
@@ -20189,7 +20200,7 @@
20200
"hu": "cree",
20201
"xloc": [
20202
"default-mobile.handlebars->11->145",
20192
- "default.handlebars->47->1838",
20203
+ "default.handlebars->47->1844",
20204
"login2.handlebars->7->42"
20205
]
20206
},
@@ -20218,7 +20229,7 @@
20229
"hu": "horvát",
20230
"xloc": [
20231
"default-mobile.handlebars->11->146",
20221
- "default.handlebars->47->1839",
20232
+ "default.handlebars->47->1845",
20233
"login2.handlebars->7->43"
20234
]
20235
},
@@ -20302,10 +20313,10 @@
20313
"zh-cht": "Ctrl",
20314
"hu": "Ctrl",
20315
"xloc": [
20305
- "default-mobile.handlebars->11->644",
20306
- "default-mobile.handlebars->11->648",
20307
- "default.handlebars->47->1410",
20308
- "default.handlebars->47->1414",
20316
+ "default-mobile.handlebars->11->656",
20317
+ "default-mobile.handlebars->11->660",
20318
+ "default.handlebars->47->1409",
20319
+ "default.handlebars->47->1413",
20320
"default.handlebars->47->62",
20321
"sharing.handlebars->11->24"
20322
]
@@ -20334,7 +20345,7 @@
20345
"zh-cht": "Ctrl +",
20346
"hu": "Ctrl + ",
20347
"xloc": [
20337
- "default-mobile.handlebars->11->679"
20348
+ "default-mobile.handlebars->11->691"
20349
]
20350
},
20351
{
@@ -20495,8 +20506,8 @@
20506
"zh-cht": "當前密碼不正確。",
20507
"hu": "A jelenlegi jelszó nem megfelelő.",
20508
"xloc": [
20498
- "default-mobile.handlebars->11->1006",
20499
- "default.handlebars->47->3233"
20509
+ "default-mobile.handlebars->11->1025",
20510
+ "default.handlebars->47->3239"
20511
]
20512
},
20513
{
@@ -20523,7 +20534,7 @@
20534
"zh-cht": "定制",
20535
"hu": "Testreszabás",
20536
"xloc": [
20526
- "default-mobile.handlebars->11->623"
20537
+ "default-mobile.handlebars->11->635"
20538
]
20539
},
20540
{
@@ -20610,7 +20621,7 @@
20621
"hu": "cseh",
20622
"xloc": [
20623
"default-mobile.handlebars->11->147",
20613
- "default.handlebars->47->1840",
20624
+ "default.handlebars->47->1846",
20625
"login2.handlebars->7->44"
20626
]
20627
},
@@ -20693,7 +20704,7 @@
20704
"hu": "dán",
20705
"xloc": [
20706
"default-mobile.handlebars->11->148",
20696
- "default.handlebars->47->1841",
20707
+ "default.handlebars->47->1847",
20708
"login2.handlebars->7->45"
20709
]
20710
},
@@ -20749,7 +20760,7 @@
20760
"zh-cht": "數據通道",
20761
"hu": "DataChannel",
20762
"xloc": [
20752
- "default.handlebars->47->1366",
20763
+ "default.handlebars->47->1365",
20764
"sharing.handlebars->11->11"
20765
]
20766
},
@@ -20763,7 +20774,7 @@
20774
"de": "Datenbankaufzeichnungen",
20775
"es": "Registro de Base de datos",
20776
"xloc": [
20766
- "default.handlebars->47->3107"
20777
+ "default.handlebars->47->3113"
20778
]
20779
},
20780
{
@@ -20791,7 +20802,7 @@
20802
"hu": "Dátum és idő",
20803
"xloc": [
20804
"default-mobile.handlebars->11->306",
20794
- "default.handlebars->47->1999"
20805
+ "default.handlebars->47->2005"
20806
]
20807
},
20808
{
@@ -20818,10 +20829,10 @@
20829
"zh-cht": "天",
20830
"hu": "Nap",
20831
"xloc": [
20821
- "default-mobile.handlebars->11->594",
20822
- "default.handlebars->47->1277",
20823
- "default.handlebars->47->3111",
20824
- "default.handlebars->47->3114"
20832
+ "default-mobile.handlebars->11->606",
20833
+ "default.handlebars->47->1276",
20834
+ "default.handlebars->47->3117",
20835
+ "default.handlebars->47->3120"
20836
]
20837
},
20838
{
@@ -20848,8 +20859,8 @@
20859
"zh-cht": "停用",
20860
"hu": "Deaktiválás",
20861
"xloc": [
20851
- "default.handlebars->47->2161",
20852
- "default.handlebars->47->2225"
20862
+ "default.handlebars->47->2167",
20863
+ "default.handlebars->47->2231"
20864
]
20865
},
20866
{
@@ -20876,7 +20887,7 @@
20887
"zh-cht": "如果設置停用CCM",
20888
"hu": "CCM kikapcsolása ha be van állítva",
20889
"xloc": [
20879
- "default.handlebars->47->2237"
20890
+ "default.handlebars->47->2243"
20891
]
20892
},
20893
{
@@ -20927,8 +20938,8 @@
20938
"zh-cht": "沉睡",
20939
"hu": "Mély alvás",
20940
"xloc": [
20930
- "default-mobile.handlebars->11->448",
20931
- "default.handlebars->47->686"
20941
+ "default-mobile.handlebars->11->449",
20942
+ "default.handlebars->47->685"
20943
]
20944
},
20945
{
@@ -20955,10 +20966,10 @@
20966
"zh-cht": "默認",
20967
"hu": "Alapértelmezett",
20968
"xloc": [
20958
- "default.handlebars->47->2749",
20959
- "default.handlebars->47->2798",
20960
- "default.handlebars->47->2809",
20961
- "default.handlebars->47->2883"
20969
+ "default.handlebars->47->2755",
20970
+ "default.handlebars->47->2804",
20971
+ "default.handlebars->47->2815",
20972
+ "default.handlebars->47->2889"
20973
]
20974
},
20975
{
@@ -20985,8 +20996,8 @@
20996
"zh-cht": "Del",
20997
"hu": "Del",
20998
"xloc": [
20988
- "default-mobile.handlebars->11->631",
20989
- "default.handlebars->47->1398"
20999
+ "default-mobile.handlebars->11->643",
21000
+ "default.handlebars->47->1397"
21001
]
21002
},
21003
{
@@ -21013,14 +21024,14 @@
21024
"zh-cht": "刪除",
21025
"hu": "Törlés",
21026
"xloc": [
21016
- "default-mobile.handlebars->11->360",
21017
- "default-mobile.handlebars->11->694",
21027
+ "default-mobile.handlebars->11->361",
21028
+ "default-mobile.handlebars->11->706",
21029
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1",
21030
"default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1",
21031
"default-mobile.handlebars->dialog->idx_dlgButtonBar->5",
21021
- "default.handlebars->47->1537",
21022
- "default.handlebars->47->2457",
21023
- "default.handlebars->47->843",
21032
+ "default.handlebars->47->1536",
21033
+ "default.handlebars->47->2463",
21034
+ "default.handlebars->47->842",
21035
"default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
21036
"default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
21037
"default.handlebars->container->dialog->idx_dlgButtonBar->5",
@@ -21058,7 +21069,7 @@
21069
"hu": "Fiók törlése",
21070
"xloc": [
21071
"default-mobile.handlebars->11->322",
21061
- "default.handlebars->47->2037"
21072
+ "default.handlebars->47->2043"
21073
]
21074
},
21075
{
@@ -21085,7 +21096,7 @@
21096
"zh-cht": "刪除帳戶",
21097
"hu": "Fiókok törlése",
21098
"xloc": [
21088
- "default.handlebars->47->2706"
21099
+ "default.handlebars->47->2712"
21100
]
21101
},
21102
{
@@ -21112,8 +21123,8 @@
21123
"zh-cht": "刪除裝置",
21124
"hu": "Eszköz törlése",
21125
"xloc": [
21115
- "default-mobile.handlebars->11->546",
21116
- "default.handlebars->47->1020"
21126
+ "default-mobile.handlebars->11->547",
21127
+ "default.handlebars->47->1019"
21128
]
21129
},
21130
{
@@ -21140,7 +21151,7 @@
21151
"zh-cht": "刪除設備",
21152
"hu": "Eszközök törlése",
21153
"xloc": [
21143
- "default.handlebars->47->746"
21154
+ "default.handlebars->47->745"
21155
]
21156
},
21157
{
@@ -21167,10 +21178,10 @@
21178
"zh-cht": "刪除群組",
21179
"hu": "Csoport törlése",
21180
"xloc": [
21170
- "default-mobile.handlebars->11->913",
21171
- "default-mobile.handlebars->11->916",
21172
- "default.handlebars->47->2213",
21173
- "default.handlebars->47->2254"
21181
+ "default-mobile.handlebars->11->932",
21182
+ "default-mobile.handlebars->11->935",
21183
+ "default.handlebars->47->2219",
21184
+ "default.handlebars->47->2260"
21185
]
21186
},
21187
{
@@ -21197,8 +21208,8 @@
21208
"zh-cht": "刪除節點",
21209
"hu": "Node törlése",
21210
"xloc": [
21200
- "default-mobile.handlebars->11->602",
21201
- "default.handlebars->47->1303"
21211
+ "default-mobile.handlebars->11->614",
21212
+ "default.handlebars->47->1302"
21213
]
21214
},
21215
{
@@ -21249,7 +21260,7 @@
21260
"zh-cht": "刪除用戶",
21261
"hu": "Felhasználó törlése",
21262
"xloc": [
21252
- "default.handlebars->47->2956"
21263
+ "default.handlebars->47->2962"
21264
]
21265
},
21266
{
@@ -21276,8 +21287,8 @@
21287
"zh-cht": "刪除用戶群組",
21288
"hu": "Felhasználói csoport törlése",
21289
"xloc": [
21279
- "default.handlebars->47->2851",
21280
- "default.handlebars->47->2863"
21290
+ "default.handlebars->47->2857",
21291
+ "default.handlebars->47->2869"
21292
]
21293
},
21294
{
@@ -21304,7 +21315,7 @@
21315
"zh-cht": "刪除用戶群組",
21316
"hu": "Felhasználói csoportok törlése",
21317
"xloc": [
21307
- "default.handlebars->47->2796"
21318
+ "default.handlebars->47->2802"
21319
]
21320
},
21321
{
@@ -21331,7 +21342,7 @@
21342
"zh-cht": "刪除用戶{0}",
21343
"hu": "Felhasználó törlése: {0}",
21344
"xloc": [
21334
- "default.handlebars->47->3024"
21345
+ "default.handlebars->47->3030"
21346
]
21347
},
21348
{
@@ -21359,7 +21370,7 @@
21370
"hu": "Fiók törlése",
21371
"xloc": [
21372
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountActions->3->9->0",
21362
- "default.handlebars->47->2702",
21373
+ "default.handlebars->47->2708",
21374
"default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7"
21375
]
21376
},
@@ -21387,7 +21398,7 @@
21398
"zh-cht": "刪除裝置",
21399
"hu": "Eszközök törlése",
21400
"xloc": [
21390
- "default.handlebars->47->732"
21401
+ "default.handlebars->47->731"
21402
]
21403
},
21404
{
@@ -21414,7 +21425,7 @@
21425
"zh-cht": "刪除群組",
21426
"hu": "Csoport törlése",
21427
"xloc": [
21417
- "default.handlebars->47->2792"
21428
+ "default.handlebars->47->2798"
21429
]
21430
},
21431
{
@@ -21441,7 +21452,7 @@
21452
"zh-cht": "刪除項目?",
21453
"hu": "Elem törlése?",
21454
"xloc": [
21444
- "default.handlebars->47->844"
21455
+ "default.handlebars->47->843"
21456
]
21457
},
21458
{
@@ -21468,7 +21479,7 @@
21479
"zh-cht": "遞歸刪除:“{0}”,{1}個元素已刪除",
21480
"hu": "Rekurzív törlés: \\\"{0}\\\", {1} eltávolított elem(ek)",
21481
"xloc": [
21471
- "default.handlebars->47->2519"
21482
+ "default.handlebars->47->2525"
21483
]
21484
},
21485
{
@@ -21495,10 +21506,10 @@
21506
"zh-cht": "刪除所選項目?",
21507
"hu": "Kijelölt elem törlése?",
21508
"xloc": [
21498
- "default-mobile.handlebars->11->362",
21499
- "default-mobile.handlebars->11->696",
21500
- "default.handlebars->47->1539",
21501
- "default.handlebars->47->2459",
21509
+ "default-mobile.handlebars->11->363",
21510
+ "default-mobile.handlebars->11->708",
21511
+ "default.handlebars->47->1538",
21512
+ "default.handlebars->47->2465",
21513
"sharing.handlebars->11->63"
21514
]
21515
},
@@ -21526,7 +21537,7 @@
21537
"zh-cht": "刪除用戶群組{0}?",
21538
"hu": "Törli a(z) {0} felhasználói csoportot?",
21539
"xloc": [
21529
- "default.handlebars->47->2861"
21540
+ "default.handlebars->47->2867"
21541
]
21542
},
21543
{
@@ -21553,10 +21564,10 @@
21564
"zh-cht": "刪除{0}個所選項目?",
21565
"hu": "A(z) {0} kiválasztott elem törlése?",
21566
"xloc": [
21556
- "default-mobile.handlebars->11->361",
21557
- "default-mobile.handlebars->11->695",
21558
- "default.handlebars->47->1538",
21559
- "default.handlebars->47->2458",
21567
+ "default-mobile.handlebars->11->362",
21568
+ "default-mobile.handlebars->11->707",
21569
+ "default.handlebars->47->1537",
21570
+ "default.handlebars->47->2464",
21571
"sharing.handlebars->11->62"
21572
]
21573
},
@@ -21584,7 +21595,7 @@
21595
"zh-cht": "刪除{0}?",
21596
"hu": "Törli a következőt: {0}?",
21597
"xloc": [
21587
- "default-mobile.handlebars->11->603"
21598
+ "default-mobile.handlebars->11->615"
21599
]
21600
},
21601
{
@@ -21611,7 +21622,7 @@
21622
"zh-cht": "刪除:“{0}”",
21623
"hu": "Törlés: \\\"{0}\\\"",
21624
"xloc": [
21614
- "default.handlebars->47->2518"
21625
+ "default.handlebars->47->2524"
21626
]
21627
},
21628
{
@@ -21638,7 +21649,7 @@
21649
"zh-cht": "刪除:“{0}”,已刪除{1}個元素",
21650
"hu": "Törlés: \\\"{0}\\\", {1} elem eltávolítva",
21651
"xloc": [
21641
- "default.handlebars->47->2520"
21652
+ "default.handlebars->47->2526"
21653
]
21654
},
21655
{
@@ -21665,8 +21676,8 @@
21676
"zh-cht": "被拒絕",
21677
"hu": "Elutasítva",
21678
"xloc": [
21668
- "default-mobile.handlebars->11->617",
21669
- "default.handlebars->47->1353",
21679
+ "default-mobile.handlebars->11->629",
21680
+ "default.handlebars->47->1352",
21681
"sharing.handlebars->11->29",
21682
"sharing.handlebars->11->7"
21683
]
@@ -21681,7 +21692,7 @@
21692
"de": "Login des Benutzers von {0}, {1}, {2} verweigert",
21693
"es": "Se denego el inicio de sesion de {0}, {1}, {2}",
21694
"xloc": [
21684
- "default.handlebars->47->2628"
21695
+ "default.handlebars->47->2634"
21696
]
21697
},
21698
{
@@ -21829,26 +21840,26 @@
21840
"hu": "Leírás",
21841
"xloc": [
21842
"default-mobile.handlebars->11->339",
21832
- "default-mobile.handlebars->11->485",
21843
"default-mobile.handlebars->11->486",
21834
- "default-mobile.handlebars->11->612",
21835
- "default-mobile.handlebars->11->773",
21836
- "default-mobile.handlebars->11->899",
21837
- "default-mobile.handlebars->11->922",
21838
- "default.handlebars->47->1347",
21844
+ "default-mobile.handlebars->11->487",
21845
+ "default-mobile.handlebars->11->624",
21846
+ "default-mobile.handlebars->11->785",
21847
+ "default-mobile.handlebars->11->918",
21848
+ "default-mobile.handlebars->11->941",
21849
+ "default.handlebars->47->1346",
21850
"default.handlebars->47->157",
21840
- "default.handlebars->47->1604",
21841
- "default.handlebars->47->1614",
21842
- "default.handlebars->47->2062",
21843
- "default.handlebars->47->2122",
21844
- "default.handlebars->47->2260",
21845
- "default.handlebars->47->2634",
21846
- "default.handlebars->47->2801",
21847
- "default.handlebars->47->2812",
21848
- "default.handlebars->47->2813",
21849
- "default.handlebars->47->2859",
21851
+ "default.handlebars->47->1603",
21852
+ "default.handlebars->47->1613",
21853
+ "default.handlebars->47->2068",
21854
+ "default.handlebars->47->2128",
21855
+ "default.handlebars->47->2266",
21856
+ "default.handlebars->47->2640",
21857
+ "default.handlebars->47->2807",
21858
+ "default.handlebars->47->2818",
21859
+ "default.handlebars->47->2819",
21860
+ "default.handlebars->47->2865",
21861
+ "default.handlebars->47->883",
21862
"default.handlebars->47->884",
21851
- "default.handlebars->47->885",
21863
"default.handlebars->container->column_l->p42->p42tbl->1->0->3"
21864
]
21865
},
@@ -21900,17 +21911,17 @@
21911
"zh-cht": "桌面",
21912
"hu": "Asztal",
21913
"xloc": [
21903
- "default-mobile.handlebars->11->561",
21904
- "default.handlebars->47->1077",
21905
- "default.handlebars->47->1190",
21906
- "default.handlebars->47->1465",
21907
- "default.handlebars->47->2191",
21908
- "default.handlebars->47->2266",
21909
- "default.handlebars->47->3084",
21910
- "default.handlebars->47->3144",
21911
- "default.handlebars->47->3194",
21912
- "default.handlebars->47->3289",
21913
- "default.handlebars->47->849",
21914
+ "default-mobile.handlebars->11->562",
21915
+ "default.handlebars->47->1076",
21916
+ "default.handlebars->47->1189",
21917
+ "default.handlebars->47->1464",
21918
+ "default.handlebars->47->2197",
21919
+ "default.handlebars->47->2272",
21920
+ "default.handlebars->47->3090",
21921
+ "default.handlebars->47->3150",
21922
+ "default.handlebars->47->3200",
21923
+ "default.handlebars->47->3295",
21924
+ "default.handlebars->47->848",
21925
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop",
21926
"default.handlebars->contextMenu->cxdesktop",
21927
"sharing.handlebars->11->23",
@@ -21941,9 +21952,9 @@
21952
"zh-cht": "桌面 + 文件",
21953
"hu": "Asztal + Fájlok",
21954
"xloc": [
21944
- "default.handlebars->47->1081",
21945
- "default.handlebars->47->1193",
21946
- "default.handlebars->47->2195"
21955
+ "default.handlebars->47->1080",
21956
+ "default.handlebars->47->1192",
21957
+ "default.handlebars->47->2201"
21958
]
21959
},
21960
{
@@ -21970,8 +21981,8 @@
21981
"zh-cht": "桌面+終端",
21982
"hu": "Asztal + Terminál",
21983
"xloc": [
21973
- "default.handlebars->47->1078",
21974
- "default.handlebars->47->2192"
21984
+ "default.handlebars->47->1077",
21985
+ "default.handlebars->47->2198"
21986
]
21987
},
21988
{
@@ -21998,9 +22009,9 @@
22009
"zh-cht": "桌面+終端+文件",
22010
"hu": "Asztal + Terminál + Fájlok",
22011
"xloc": [
22001
- "default.handlebars->47->1082",
22002
- "default.handlebars->47->1195",
22003
- "default.handlebars->47->2196"
22012
+ "default.handlebars->47->1081",
22013
+ "default.handlebars->47->1194",
22014
+ "default.handlebars->47->2202"
22015
]
22016
},
22017
{
@@ -22054,7 +22065,7 @@
22065
"zh-cht": "桌面多路復用",
22066
"hu": "Asztal Multiplex",
22067
"xloc": [
22057
- "default.handlebars->47->3294"
22068
+ "default.handlebars->47->3300"
22069
]
22070
},
22071
{
@@ -22081,10 +22092,10 @@
22092
"zh-cht": "桌面通知",
22093
"hu": "Asztal kapcsolat értesítés",
22094
"xloc": [
22084
- "default.handlebars->47->2142",
22085
- "default.handlebars->47->2820",
22086
- "default.handlebars->47->2925",
22087
- "default.handlebars->47->955"
22095
+ "default.handlebars->47->2148",
22096
+ "default.handlebars->47->2826",
22097
+ "default.handlebars->47->2931",
22098
+ "default.handlebars->47->954"
22099
]
22100
},
22101
{
@@ -22111,10 +22122,10 @@
22122
"zh-cht": "桌面提示",
22123
"hu": "Asztal kapcsolat engedélykérés",
22124
"xloc": [
22114
- "default.handlebars->47->2141",
22115
- "default.handlebars->47->2819",
22116
- "default.handlebars->47->2924",
22117
- "default.handlebars->47->954"
22125
+ "default.handlebars->47->2147",
22126
+ "default.handlebars->47->2825",
22127
+ "default.handlebars->47->2930",
22128
+ "default.handlebars->47->953"
22129
]
22130
},
22131
{
@@ -22141,10 +22152,10 @@
22152
"zh-cht": "桌面提示+工具欄",
22153
"hu": "Asztal kapcsolat engedélykérés és eszköztár",
22154
"xloc": [
22144
- "default.handlebars->47->2139",
22145
- "default.handlebars->47->2817",
22146
- "default.handlebars->47->2922",
22147
- "default.handlebars->47->952"
22155
+ "default.handlebars->47->2145",
22156
+ "default.handlebars->47->2823",
22157
+ "default.handlebars->47->2928",
22158
+ "default.handlebars->47->951"
22159
]
22160
},
22161
{
@@ -22171,7 +22182,7 @@
22182
"zh-cht": "桌面會話",
22183
"hu": "Asztal munkamenet",
22184
"xloc": [
22174
- "default.handlebars->47->3077"
22185
+ "default.handlebars->47->3083"
22186
]
22187
},
22188
{
@@ -22278,10 +22289,10 @@
22289
"zh-cht": "桌面工具欄",
22290
"hu": "Asztal kapcsolat eszköztár",
22291
"xloc": [
22281
- "default.handlebars->47->2140",
22282
- "default.handlebars->47->2818",
22283
- "default.handlebars->47->2923",
22284
- "default.handlebars->47->953"
22292
+ "default.handlebars->47->2146",
22293
+ "default.handlebars->47->2824",
22294
+ "default.handlebars->47->2929",
22295
+ "default.handlebars->47->952"
22296
]
22297
},
22298
{
@@ -22308,7 +22319,7 @@
22319
"zh-cht": "僅桌面視圖",
22320
"hu": "Asztal csak megtekintés",
22321
"xloc": [
22311
- "default.handlebars->47->2898"
22322
+ "default.handlebars->47->2904"
22323
]
22324
},
22325
{
@@ -22335,7 +22346,7 @@
22346
"zh-cht": "桌面,僅查看",
22347
"hu": "Asztal, csak megtekintés",
22348
"xloc": [
22338
- "default.handlebars->47->1198"
22349
+ "default.handlebars->47->1197"
22350
]
22351
},
22352
{
@@ -22362,7 +22373,7 @@
22373
"zh-cht": "桌面時段",
22374
"hu": "DesktopSession",
22375
"xloc": [
22365
- "default.handlebars->47->1464"
22376
+ "default.handlebars->47->1463"
22377
]
22378
},
22379
{
@@ -22445,10 +22456,10 @@
22456
"zh-cht": "細節",
22457
"hu": "Eszköz részletek",
22458
"xloc": [
22448
- "default-mobile.handlebars->11->564",
22449
- "default.handlebars->47->1131",
22450
- "default.handlebars->47->1156",
22451
- "default.handlebars->47->2357",
22459
+ "default-mobile.handlebars->11->565",
22460
+ "default.handlebars->47->1130",
22461
+ "default.handlebars->47->1155",
22462
+ "default.handlebars->47->2363",
22463
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevInfo",
22464
"default.handlebars->contextMenu->cxdetails"
22465
]
@@ -22504,14 +22515,14 @@
22515
"zh-cht": "裝置",
22516
"hu": "Eszköz",
22517
"xloc": [
22507
- "default-mobile.handlebars->11->768",
22508
- "default.handlebars->47->1599",
22509
- "default.handlebars->47->1785",
22510
- "default.handlebars->47->2294",
22518
+ "default-mobile.handlebars->11->780",
22519
+ "default.handlebars->47->1598",
22520
+ "default.handlebars->47->1791",
22521
+ "default.handlebars->47->2300",
22522
"default.handlebars->47->281",
22512
- "default.handlebars->47->3043",
22513
- "default.handlebars->47->3110",
22514
- "default.handlebars->47->3128",
22523
+ "default.handlebars->47->3049",
22524
+ "default.handlebars->47->3116",
22525
+ "default.handlebars->47->3134",
22526
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5"
22527
]
22528
},
@@ -22565,9 +22576,9 @@
22576
"zh-cht": "裝置指令",
22577
"hu": "Eszköz műveletek",
22578
"xloc": [
22568
- "default-mobile.handlebars->11->582",
22569
- "default-mobile.handlebars->11->591",
22570
- "default.handlebars->47->1256"
22579
+ "default-mobile.handlebars->11->583",
22580
+ "default-mobile.handlebars->11->592",
22581
+ "default.handlebars->47->1255"
22582
]
22583
},
22584
{
@@ -22649,7 +22660,7 @@
This file is too large to show in full.
views/default-mobile.handlebars
+29
@@ -6456,6 +6456,35 @@
6456
if (x != '') { sections.push({ name: "Storage Volumes", html: '<table style=width:100%>' + x + '</table>', img: 'storage'}); }
6457
}
6458
6459
+ // Linux Volumes
6460
+ if (hardware.linux && hardware.linux.volumes) {
6461
+ var x = '';
6462
+ for (var i in hardware.linux.volumes) {
6463
+ var m = hardware.linux.volumes[i];
6464
+ if(m.mount_point.startsWith('/var/lib/docker/overlay2')) continue;
6465
+ x += '<tr><td><div class=style10 style=border-radius:5px;padding:8px>';
6466
+ x += '<div style=margin-bottom:3px><b>' + m.mount_point + '</b></div>';
6467
+ if (m.size) {
6468
+ var sizes = ['KB', 'MB', 'GB', 'TB'];
6469
+ var j = parseInt(Math.floor(Math.log(Math.abs(m.size)) / Math.log(1024)), 10);
6470
+ var fsize = (j === 0 ? `${m.size} ${sizes[j]}` : `${(m.size / (1024 ** j)).toFixed(2)} ${sizes[j]}`);
6471
+ x += addDetailItem("Capacity", EscapeHtml(fsize), s);
6472
+ }
6473
+ if (m.available) {
6474
+ var sizes = ['KB', 'MB', 'GB', 'TB'];
6475
+ var j = parseInt(Math.floor(Math.log(Math.abs(m.available)) / Math.log(1024)), 10);
6476
+ var fsize = (j === 0 ? `${m.available} ${sizes[j]}` : `${(m.available / (1024 ** j)).toFixed(2)} ${sizes[j]}`);
6477
+ x += addDetailItem("Capacity Remaining", EscapeHtml(fsize), s);
6478
+ }
6479
+ if (m.type) {
6480
+ var type = (m.removable == true ? "Removable" : (m.cdrom == true ? "CD-ROM" : ''));
6481
+ x += addDetailItem("File System", (type != '' ? (type + ' / ') : '') + (m.type == 'Unknown' ? "Unknown" : EscapeHtml(m.type)), s);
6482
+ }
6483
+ x += '</div>';
6484
+ }
6485
+ if (x != '') { sections.push({ name: "Storage Volumes", html: '<table style=width:100%>' + x + '</table>', img: 'storage'}); }
6486
+ }
6487
+
6488
// Render the sections
6489
var x = '';
6490
for (var i in sections) {
views/default.handlebars
+30
-1
@@ -1,4 +1,4 @@
1
-<!DOCTYPE html>
1
+<!DOCTYPE html>
2
<html lang="en" dir="ltr" xmlns="http://www.w3.org/1999/xhtml">
3
<head>
4
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
@@ -12268,6 +12268,35 @@
12268
if (x != '') { sections.push({ name: "Storage Volumes", html: '<table style=width:100%>' + x + '</table>', img: 'storage64.png'}); }
12269
}
12270
12271
+ // Linux Volumes
12272
+ if (hardware.linux && hardware.linux.volumes) {
12273
+ var x = '';
12274
+ for (var i in hardware.linux.volumes) {
12275
+ var m = hardware.linux.volumes[i];
12276
+ if(m.mount_point.startsWith('/var/lib/docker/overlay2')) continue;
12277
+ x += '<tr><td><div class=style10 style=border-radius:5px;padding:8px>';
12278
+ x += '<div style=margin-bottom:3px><b>' + m.mount_point + '</b></div>';
12279
+ if (m.size) {
12280
+ var sizes = ['KB', 'MB', 'GB', 'TB'];
12281
+ var j = parseInt(Math.floor(Math.log(Math.abs(m.size)) / Math.log(1024)), 10);
12282
+ var fsize = (j === 0 ? `${m.size} ${sizes[j]}` : `${(m.size / (1024 ** j)).toFixed(2)} ${sizes[j]}`);
12283
+ x += addDetailItem("Capacity", EscapeHtml(fsize), s);
12284
+ }
12285
+ if (m.available) {
12286
+ var sizes = ['KB', 'MB', 'GB', 'TB'];
12287
+ var j = parseInt(Math.floor(Math.log(Math.abs(m.available)) / Math.log(1024)), 10);
12288
+ var fsize = (j === 0 ? `${m.available} ${sizes[j]}` : `${(m.available / (1024 ** j)).toFixed(2)} ${sizes[j]}`);
12289
+ x += addDetailItem("Capacity Remaining", EscapeHtml(fsize), s);
12290
+ }
12291
+ if (m.type) {
12292
+ var type = (m.removable == true ? "Removable" : (m.cdrom == true ? "CD-ROM" : ''));
12293
+ x += addDetailItem("File System", (type != '' ? (type + ' / ') : '') + (m.type == 'Unknown' ? "Unknown" : EscapeHtml(m.type)), s);
12294
+ }
12295
+ x += '</div>';
12296
+ }
12297
+ if (x != '') { sections.push({ name: "Storage Volumes", html: '<table style=width:100%>' + x + '</table>', img: 'storage64.png'}); }
12298
+ }
12299
+
12300
// Render the sections
12301
var x = '';
12302
for (var i in sections) {