open files/folders on desktop with files and console with openfile (#5986)
Signed-off-by: si458 <simonsmith5521@gmail.com>
Simon Smith committed
Apr 3, 2024 at 09:51 UTC
65d1346e062ae35e114caa54733c3d0bb07a62a1
3 files changed
+2323
-2216
agents/meshcore.js
+71
-1
@@ -3308,6 +3308,13 @@ function onTunnelData(data)
3308
}
3309
break;
3310
}
3311
+ case 'open': {
3312
+ // Open the local file/folder on the users desktop
3313
+ if (cmd.path) {
3314
+ MeshServerLogEx(20, [cmd.path], "Opening: " + cmd.path, cmd);
3315
+ openFileOnDesktop(cmd.path);
3316
+ }
3317
+ }
3318
case 'markcoredump': {
3319
// If we are asking for the coredump file, set the right path.
3320
var coreDumpPath = null;
@@ -3768,6 +3775,64 @@ function consoleHttpResponse(response) {
3775
response.close = function () { sendConsoleText('httprequest.response.close', this.sessionid); consoleHttpRequest = null; }
3776
}
3777
3778
+// Open a local file on current user's desktop
3779
+function openFileOnDesktop(file) {
3780
+ var child = null;
3781
+ try {
3782
+ switch (process.platform) {
3783
+ case 'win32':
3784
+ var uid = require('user-sessions').consoleUid();
3785
+ var user = require('user-sessions').getUsername(uid);
3786
+ var domain = require('user-sessions').getDomain(uid);
3787
+ var task = { name: 'MeshChatTask', user: user, domain: domain, execPath: (require('fs').statSync(file).isDirectory() ? process.env['windir'] + '\\explorer.exe' : file) };
3788
+ if (require('fs').statSync(file).isDirectory()) task.arguments = [file];
3789
+ try {
3790
+ require('win-tasks').addTask(task);
3791
+ require('win-tasks').getTask({ name: 'MeshChatTask' }).run();
3792
+ require('win-tasks').deleteTask('MeshChatTask');
3793
+ return (true);
3794
+ }
3795
+ catch (ex) {
3796
+ var taskoptions = { env: { _target: (require('fs').statSync(file).isDirectory() ? process.env['windir'] + '\\explorer.exe' : file), _user: '"' + domain + '\\' + user + '"' }, _args: "" };
3797
+ if (require('fs').statSync(file).isDirectory()) taskoptions.env._args = file;
3798
+ for (var c1e in process.env) {
3799
+ taskoptions.env[c1e] = process.env[c1e];
3800
+ }
3801
+ var child = require('child_process').execFile(process.env['windir'] + '\\System32\\WindowsPowerShell\\v1.0\\powershell.exe', ['powershell', '-noprofile', '-nologo', '-command', '-'], taskoptions);
3802
+ child.stderr.on('data', function (c) { });
3803
+ child.stdout.on('data', function (c) { });
3804
+ child.stdin.write('SCHTASKS /CREATE /F /TN MeshChatTask /SC ONCE /ST 00:00 ');
3805
+ if (user) { child.stdin.write('/RU $env:_user '); }
3806
+ child.stdin.write('/TR "$env:_target $env:_args"\r\n');
3807
+ child.stdin.write('$ts = New-Object -ComObject Schedule.service\r\n');
3808
+ child.stdin.write('$ts.connect()\r\n');
3809
+ child.stdin.write('$tsfolder = $ts.getfolder("\\")\r\n');
3810
+ child.stdin.write('$task = $tsfolder.GetTask("MeshChatTask")\r\n');
3811
+ child.stdin.write('$taskdef = $task.Definition\r\n');
3812
+ child.stdin.write('$taskdef.Settings.StopIfGoingOnBatteries = $false\r\n');
3813
+ child.stdin.write('$taskdef.Settings.DisallowStartIfOnBatteries = $false\r\n');
3814
+ child.stdin.write('$taskdef.Actions.Item(1).Path = $env:_target\r\n');
3815
+ child.stdin.write('$taskdef.Actions.Item(1).Arguments = $env:_args\r\n');
3816
+ child.stdin.write('$tsfolder.RegisterTaskDefinition($task.Name, $taskdef, 4, $null, $null, $null)\r\n');
3817
+ child.stdin.write('SCHTASKS /RUN /TN MeshChatTask\r\n');
3818
+ child.stdin.write('SCHTASKS /DELETE /F /TN MeshChatTask\r\nexit\r\n');
3819
+ child.waitExit();
3820
+ }
3821
+ break;
3822
+ case 'linux':
3823
+ child = require('child_process').execFile('/usr/bin/xdg-open', ['xdg-open', file], { uid: require('user-sessions').consoleUid() });
3824
+ break;
3825
+ case 'darwin':
3826
+ child = require('child_process').execFile('/usr/bin/open', ['open', file]);
3827
+ break;
3828
+ default:
3829
+ // Unknown platform, ignore this command.
3830
+ break;
3831
+ }
3832
+ } catch (ex) { }
3833
+ return child;
3834
+}
3835
+
3836
// Open a web browser to a specified URL on current user's desktop
3837
function openUserDesktopUrl(url) {
3838
if ((url.toLowerCase().startsWith('http://') == false) && (url.toLowerCase().startsWith('https://') == false)) { return null; }
@@ -3833,7 +3898,7 @@ function processConsoleCommand(cmd, args, rights, sessionid) {
3898
var response = null;
3899
switch (cmd) {
3900
case 'help': { // Displays available commands
3836
- var fin = '', f = '', availcommands = 'domain,translations,agentupdate,errorlog,msh,timerinfo,coreinfo,coreinfoupdate,coredump,service,fdsnapshot,fdcount,startupoptions,alert,agentsize,versions,help,info,osinfo,args,print,type,dbkeys,dbget,dbset,dbcompact,eval,parseuri,httpget,wslist,plugin,wsconnect,wssend,wsclose,notify,ls,ps,kill,netinfo,location,power,wakeonlan,setdebug,smbios,rawsmbios,toast,lock,users,openurl,getscript,getclip,setclip,log,av,cpuinfo,sysinfo,apf,scanwifi,wallpaper,agentmsg,task,uninstallagent,display';
3901
+ var fin = '', f = '', availcommands = 'domain,translations,agentupdate,errorlog,msh,timerinfo,coreinfo,coreinfoupdate,coredump,service,fdsnapshot,fdcount,startupoptions,alert,agentsize,versions,help,info,osinfo,args,print,type,dbkeys,dbget,dbset,dbcompact,eval,parseuri,httpget,wslist,plugin,wsconnect,wssend,wsclose,notify,ls,ps,kill,netinfo,location,power,wakeonlan,setdebug,smbios,rawsmbios,toast,lock,users,openurl,getscript,getclip,setclip,log,av,cpuinfo,sysinfo,apf,scanwifi,wallpaper,agentmsg,task,uninstallagent,display,openfile';
3902
if (require('os').dns != null) { availcommands += ',dnsinfo'; }
3903
try { require('linux-dhcp'); availcommands += ',dhcp'; } catch (ex) { }
3904
if (process.platform == 'win32') {
@@ -4678,6 +4743,11 @@ function processConsoleCommand(cmd, args, rights, sessionid) {
4743
else { if (openUserDesktopUrl(args['_'][0]) == null) { response = 'Failed.'; } else { response = 'Success.'; } }
4744
break;
4745
}
4746
+ case 'openfile': {
4747
+ if (args['_'].length != 1) { response = 'Proper usage: openfile (filepath)'; } // Display usage
4748
+ else { if (openFileOnDesktop(args['_'][0]) == null) { response = 'Failed.'; } else { response = 'Success.'; } }
4749
+ break;
4750
+ }
4751
case 'users': {
4752
if (meshCoreObj.users == null) { response = 'Active users are unknown.'; } else { response = 'Active Users: ' + meshCoreObj.users.join(', ') + '.'; }
4753
require('user-sessions').enumerateUsers().then(function (u) { for (var i in u) { sendConsoleText(u[i]); } });
translate/translate.json
+2234
-2215
@@ -58,8 +58,8 @@
58
"zh-cht": " + CIRA",
59
"hu": " + CIRA",
60
"xloc": [
61
- "default.handlebars->47->2159",
62
- "default.handlebars->47->2161"
61
+ "default.handlebars->47->2161",
62
+ "default.handlebars->47->2163"
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->2035"
335
+ "default.handlebars->47->2037"
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->2283",
363
- "default.handlebars->47->2863"
362
+ "default.handlebars->47->2285",
363
+ "default.handlebars->47->2865"
364
]
365
},
366
{
@@ -938,7 +938,7 @@
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->2243",
941
+ "default.handlebars->47->2245",
942
"default.handlebars->47->526"
943
]
944
},
@@ -1039,15 +1039,15 @@
1039
"zh-cht": ",",
1040
"hu": ", ",
1041
"xloc": [
1042
- "default-mobile.handlebars->11->781",
1043
- "default-mobile.handlebars->11->783",
1044
- "default-mobile.handlebars->11->785",
1045
- "default-mobile.handlebars->11->971",
1046
- "default.handlebars->47->1619",
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->1621",
1047
"default.handlebars->47->1623",
1049
- "default.handlebars->47->2359",
1050
- "default.handlebars->47->2636",
1048
+ "default.handlebars->47->1625",
1049
+ "default.handlebars->47->2361",
1050
+ "default.handlebars->47->2638",
1051
"default.handlebars->47->994"
1052
]
1053
},
@@ -1208,8 +1208,8 @@
1208
"zh-cht": ",MQTT在線",
1209
"hu": ", MQTT online",
1210
"xloc": [
1211
- "default-mobile.handlebars->11->874",
1212
- "default.handlebars->47->1713"
1211
+ "default-mobile.handlebars->11->875",
1212
+ "default.handlebars->47->1715"
1213
]
1214
},
1215
{
@@ -1237,7 +1237,7 @@
1237
"hu": ", Nincs hozzájárulás",
1238
"xloc": [
1239
"default.handlebars->47->1089",
1240
- "default.handlebars->47->2201"
1240
+ "default.handlebars->47->2203"
1241
]
1242
},
1243
{
@@ -1265,7 +1265,7 @@
1265
"hu": ", Hozzájárulás kérése a kapcsolódáshoz",
1266
"xloc": [
1267
"default.handlebars->47->1090",
1268
- "default.handlebars->47->2202"
1268
+ "default.handlebars->47->2204"
1269
]
1270
},
1271
{
@@ -1320,7 +1320,7 @@
1320
"hu": ", naponta ismétlődően",
1321
"xloc": [
1322
"default.handlebars->47->1086",
1323
- "default.handlebars->47->2198"
1323
+ "default.handlebars->47->2200"
1324
]
1325
},
1326
{
@@ -1348,7 +1348,7 @@
1348
"hu": ", hetente ismétlődően",
1349
"xloc": [
1350
"default.handlebars->47->1087",
1351
- "default.handlebars->47->2199"
1351
+ "default.handlebars->47->2201"
1352
]
1353
},
1354
{
@@ -1426,7 +1426,7 @@
1426
"zh-cht": ", SFTP",
1427
"hu": ", SFTP",
1428
"xloc": [
1429
- "default-mobile.handlebars->11->679",
1429
+ "default-mobile.handlebars->11->680",
1430
"default.handlebars->47->1503"
1431
]
1432
},
@@ -1510,7 +1510,7 @@
1510
"hu": ", Tálca értesítés",
1511
"xloc": [
1512
"default.handlebars->47->1091",
1513
- "default.handlebars->47->2203"
1513
+ "default.handlebars->47->2205"
1514
]
1515
},
1516
{
@@ -1562,7 +1562,7 @@
1562
"hu": ", csak megtekintés",
1563
"xloc": [
1564
"default.handlebars->47->1088",
1565
- "default.handlebars->47->2200"
1565
+ "default.handlebars->47->2202"
1566
]
1567
},
1568
{
@@ -1589,9 +1589,9 @@
1589
"zh-cht": ",WebRTC",
1590
"hu": ", WebRTC",
1591
"xloc": [
1592
- "default-mobile.handlebars->11->620",
1593
- "default-mobile.handlebars->11->657",
1594
- "default-mobile.handlebars->11->680",
1592
+ "default-mobile.handlebars->11->621",
1593
+ "default-mobile.handlebars->11->658",
1594
+ "default-mobile.handlebars->11->681",
1595
"default.handlebars->47->1381",
1596
"default.handlebars->47->1472",
1597
"default.handlebars->47->1504",
@@ -1921,10 +1921,10 @@
1921
"hu": "...",
1922
"xloc": [
1923
"default-mobile.handlebars->11->346",
1924
- "default-mobile.handlebars->11->686",
1924
+ "default-mobile.handlebars->11->687",
1925
"default.handlebars->47->1518",
1926
- "default.handlebars->47->2425",
1927
- "default.handlebars->47->3099",
1926
+ "default.handlebars->47->2427",
1927
+ "default.handlebars->47->3101",
1928
"sharing.handlebars->11->50"
1929
]
1930
},
@@ -2102,7 +2102,7 @@
2102
"zh-cht": "1個活躍時段",
2103
"hu": "1 aktív munkamenet",
2104
"xloc": [
2105
- "default.handlebars->47->2957"
2105
+ "default.handlebars->47->2959"
2106
]
2107
},
2108
{
@@ -2129,9 +2129,9 @@
2129
"zh-cht": "1個位元組",
2130
"hu": "1 byte",
2131
"xloc": [
2132
- "default-mobile.handlebars->11->1015",
2132
+ "default-mobile.handlebars->11->1016",
2133
"default-mobile.handlebars->11->356",
2134
- "default.handlebars->47->2449",
2134
+ "default.handlebars->47->2451",
2135
"download.handlebars->3->1",
2136
"download2.handlebars->5->1",
2137
"sharing.handlebars->11->96"
@@ -2245,7 +2245,7 @@
2245
"zh-cht": "1群",
2246
"hu": "1 csoport",
2247
"xloc": [
2248
- "default.handlebars->47->2913"
2248
+ "default.handlebars->47->2915"
2249
]
2250
},
2251
{
@@ -2302,7 +2302,7 @@
2302
"hu": "1 perc",
2303
"xloc": [
2304
"default.handlebars->47->1198",
2305
- "default.handlebars->47->2000"
2305
+ "default.handlebars->47->2002"
2306
]
2307
},
2308
{
@@ -2385,7 +2385,7 @@
2385
"zh-cht": "有1個用戶沒有顯示,請使用搜尋框搜尋用戶...",
2386
"hu": "1 további felhasználó nem jelenik meg, használja a keresőmezőt a felhasználók kereséséhez...",
2387
"xloc": [
2388
- "default.handlebars->47->2668"
2388
+ "default.handlebars->47->2670"
2389
]
2390
},
2391
{
@@ -2603,7 +2603,7 @@
2603
"default-mobile.handlebars->11->425",
2604
"default-mobile.handlebars->11->429",
2605
"default-mobile.handlebars->11->433",
2606
- "default.handlebars->47->2672",
2606
+ "default.handlebars->47->2674",
2607
"default.handlebars->47->444",
2608
"default.handlebars->47->447",
2609
"default.handlebars->47->451",
@@ -2806,7 +2806,7 @@
2806
"hu": "10 perc",
2807
"xloc": [
2808
"default.handlebars->47->1200",
2809
- "default.handlebars->47->2002"
2809
+ "default.handlebars->47->2004"
2810
]
2811
},
2812
{
@@ -3027,7 +3027,7 @@
3027
"hu": "12 óra",
3028
"xloc": [
3029
"default.handlebars->47->1208",
3030
- "default.handlebars->47->2010"
3030
+ "default.handlebars->47->2012"
3031
]
3032
},
3033
{
@@ -3216,7 +3216,7 @@
3216
"hu": "15 perc",
3217
"xloc": [
3218
"default.handlebars->47->1201",
3219
- "default.handlebars->47->2003"
3219
+ "default.handlebars->47->2005"
3220
]
3221
},
3222
{
@@ -3244,7 +3244,7 @@
3244
"hu": "12 óra",
3245
"xloc": [
3246
"default.handlebars->47->1209",
3247
- "default.handlebars->47->2011"
3247
+ "default.handlebars->47->2013"
3248
]
3249
},
3250
{
@@ -3461,7 +3461,7 @@
3461
"hu": "2 nap",
3462
"xloc": [
3463
"default.handlebars->47->1211",
3464
- "default.handlebars->47->2013"
3464
+ "default.handlebars->47->2015"
3465
]
3466
},
3467
{
@@ -3489,7 +3489,7 @@
3489
"hu": "2 óra",
3490
"xloc": [
3491
"default.handlebars->47->1205",
3492
- "default.handlebars->47->2007"
3492
+ "default.handlebars->47->2009"
3493
]
3494
},
3495
{
@@ -3683,7 +3683,7 @@
3683
"hu": "24 óra",
3684
"xloc": [
3685
"default.handlebars->47->1210",
3686
- "default.handlebars->47->2012"
3686
+ "default.handlebars->47->2014"
3687
]
3688
},
3689
{
@@ -3763,7 +3763,7 @@
3763
"zh-cht": "2FA備份代碼已清除",
3764
"hu": "2FA biztonsági kódok törölve",
3765
"xloc": [
3766
- "default.handlebars->47->2562"
3766
+ "default.handlebars->47->2564"
3767
]
3768
},
3769
{
@@ -3818,7 +3818,7 @@
3818
"zh-cht": "第二個因素",
3819
"hu": "2. faktor",
3820
"xloc": [
3821
- "default.handlebars->47->3136"
3821
+ "default.handlebars->47->3138"
3822
]
3823
},
3824
{
@@ -3845,8 +3845,8 @@
3845
"zh-cht": "啟用第二因素身份驗證",
3846
"hu": "2. faktoros hitelesítés engedélyezve",
3847
"xloc": [
3848
- "default.handlebars->47->2686",
3849
- "default.handlebars->47->2938"
3848
+ "default.handlebars->47->2688",
3849
+ "default.handlebars->47->2940"
3850
]
3851
},
3852
{
@@ -3895,7 +3895,7 @@
3895
"tr": "3",
3896
"hu": "3",
3897
"xloc": [
3898
- "default-mobile.handlebars->11->713"
3898
+ "default-mobile.handlebars->11->714"
3899
]
3900
},
3901
{
@@ -4007,7 +4007,7 @@
4007
"hu": "30 perc",
4008
"xloc": [
4009
"default.handlebars->47->1202",
4010
- "default.handlebars->47->2004"
4010
+ "default.handlebars->47->2006"
4011
]
4012
},
4013
{
@@ -4034,8 +4034,8 @@
4034
"zh-cht": "32 位",
4035
"hu": "32-bit",
4036
"xloc": [
4037
- "default-mobile.handlebars->11->723",
4038
- "default.handlebars->47->1577"
4037
+ "default-mobile.handlebars->11->724",
4038
+ "default.handlebars->47->1579"
4039
]
4040
},
4041
{
@@ -4116,7 +4116,7 @@
4116
"hu": "4 nap",
4117
"xloc": [
4118
"default.handlebars->47->1212",
4119
- "default.handlebars->47->2014"
4119
+ "default.handlebars->47->2016"
4120
]
4121
},
4122
{
@@ -4144,7 +4144,7 @@
4144
"hu": "4 óra",
4145
"xloc": [
4146
"default.handlebars->47->1206",
4147
- "default.handlebars->47->2008"
4147
+ "default.handlebars->47->2010"
4148
]
4149
},
4150
{
@@ -4283,7 +4283,7 @@
4283
"hu": "45 perc",
4284
"xloc": [
4285
"default.handlebars->47->1203",
4286
- "default.handlebars->47->2005"
4286
+ "default.handlebars->47->2007"
4287
]
4288
},
4289
{
@@ -4338,7 +4338,7 @@
4338
"hu": "5 perc",
4339
"xloc": [
4340
"default.handlebars->47->1199",
4341
- "default.handlebars->47->2001"
4341
+ "default.handlebars->47->2003"
4342
]
4343
},
4344
{
@@ -4535,7 +4535,7 @@
4535
"hu": "60 perc",
4536
"xloc": [
4537
"default.handlebars->47->1204",
4538
- "default.handlebars->47->2006"
4538
+ "default.handlebars->47->2008"
4539
]
4540
},
4541
{
@@ -4618,8 +4618,8 @@
4618
"zh-cht": "64 位",
4619
"hu": "64-bit",
4620
"xloc": [
4621
- "default-mobile.handlebars->11->725",
4622
- "default.handlebars->47->1579"
4621
+ "default-mobile.handlebars->11->726",
4622
+ "default.handlebars->47->1581"
4623
]
4624
},
4625
{
@@ -4823,7 +4823,7 @@
4823
"zh-cht": "7天",
4824
"hu": "7 nap",
4825
"xloc": [
4826
- "default.handlebars->47->2015"
4826
+ "default.handlebars->47->2017"
4827
]
4828
},
4829
{
@@ -4908,7 +4908,7 @@
4908
"hu": "8 óra",
4909
"xloc": [
4910
"default.handlebars->47->1207",
4911
- "default.handlebars->47->2009",
4911
+ "default.handlebars->47->2011",
4912
"default.handlebars->47->554",
4913
"default.handlebars->47->568"
4914
]
@@ -5218,8 +5218,8 @@
5218
"nl": "<b>DNS Servers</b>",
5219
"pl": "<b>Serwery DNS</b>",
5220
"xloc": [
5221
- "default-mobile.handlebars->11->784",
5222
- "default.handlebars->47->1622"
5221
+ "default-mobile.handlebars->11->785",
5222
+ "default.handlebars->47->1624"
5223
]
5224
},
5225
{
@@ -5369,7 +5369,7 @@
5369
"hu": "ACM",
5370
"xloc": [
5371
"default-mobile.handlebars->11->504",
5372
- "default.handlebars->47->2179",
5372
+ "default.handlebars->47->2181",
5373
"default.handlebars->47->432",
5374
"default.handlebars->47->903"
5375
]
@@ -5490,7 +5490,7 @@
5490
"zh-cht": "AMT操作系統",
5491
"hu": "AMT-OS",
5492
"xloc": [
5493
- "default.handlebars->47->3281"
5493
+ "default.handlebars->47->3283"
5494
]
5495
},
5496
{
@@ -5517,7 +5517,7 @@
5517
"zh-cht": "AMT-Redir",
5518
"hu": "AMT-Redir",
5519
"xloc": [
5520
- "default.handlebars->47->3143"
5520
+ "default.handlebars->47->3145"
5521
]
5522
},
5523
{
@@ -5544,7 +5544,7 @@
5544
"zh-cht": "AMT-WSMAN",
5545
"hu": "AMT-WSMAN",
5546
"xloc": [
5547
- "default.handlebars->47->3142"
5547
+ "default.handlebars->47->3144"
5548
]
5549
},
5550
{
@@ -5559,7 +5559,7 @@
5559
"nl": "APK versie van de MeshAgent",
5560
"pl": "Wersja APK MeshAgent",
5561
"xloc": [
5562
- "default-mobile.handlebars->11->924",
5562
+ "default-mobile.handlebars->11->925",
5563
"default.handlebars->47->636"
5564
]
5565
},
@@ -5738,8 +5738,8 @@
5738
"zh-cht": "視聽",
5739
"hu": "AV",
5740
"xloc": [
5741
- "default-mobile.handlebars->11->730",
5742
- "default-mobile.handlebars->11->732",
5741
+ "default-mobile.handlebars->11->731",
5742
+ "default-mobile.handlebars->11->733",
5743
"default.handlebars->47->922",
5744
"default.handlebars->47->924"
5745
]
@@ -5768,8 +5768,8 @@
5768
"zh-cht": "拒絕存取",
5769
"hu": "Hozzáférés megtagadva",
5770
"xloc": [
5771
- "default-mobile.handlebars->11->875",
5772
- "default.handlebars->47->1714"
5771
+ "default-mobile.handlebars->11->876",
5772
+ "default.handlebars->47->1716"
5773
]
5774
},
5775
{
@@ -5852,7 +5852,7 @@
5852
"zh-cht": "存取伺服器檔案",
5853
"hu": "Hozzáférés a kiszolgálófájlokhoz",
5854
"xloc": [
5855
- "default.handlebars->47->2869"
5855
+ "default.handlebars->47->2871"
5856
]
5857
},
5858
{
@@ -5969,9 +5969,9 @@
5969
"default-mobile.handlebars->11->471",
5970
"default-mobile.handlebars->11->473",
5971
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountSecurity->1->0",
5972
- "default.handlebars->47->2044",
5972
"default.handlebars->47->2046",
5974
- "default.handlebars->47->3335",
5973
+ "default.handlebars->47->2048",
5974
+ "default.handlebars->47->3337",
5975
"default.handlebars->47->863",
5976
"default.handlebars->47->865"
5977
]
@@ -6000,8 +6000,8 @@
6000
"zh-cht": "帳號設定",
6001
"hu": "Fiókbeállítások",
6002
"xloc": [
6003
- "default-mobile.handlebars->11->982",
6004
- "default.handlebars->47->3206"
6003
+ "default-mobile.handlebars->11->983",
6004
+ "default.handlebars->47->3208"
6005
]
6006
},
6007
{
@@ -6068,7 +6068,7 @@
6068
"hu": "Fiók megváltozott: LDAP-adatokkal való szinkronizálás.",
6069
"es": "La cuenta cambio a ser actualizada con los datos de LDAP.",
6070
"xloc": [
6071
- "default.handlebars->47->2623"
6071
+ "default.handlebars->47->2625"
6072
]
6073
},
6074
{
@@ -6095,7 +6095,7 @@
6095
"zh-cht": "帳戶已更改:{0}",
6096
"hu": "Fiók megváltozott: {0}",
6097
"xloc": [
6098
- "default.handlebars->47->2535"
6098
+ "default.handlebars->47->2537"
6099
]
6100
},
6101
{
@@ -6122,7 +6122,7 @@
6122
"zh-cht": "創建帳戶,電子郵件為{0}",
6123
"hu": "Fiók létrehozva, az e-mail címe {0} ",
6124
"xloc": [
6125
- "default.handlebars->47->2534"
6125
+ "default.handlebars->47->2536"
6126
]
6127
},
6128
{
@@ -6149,7 +6149,7 @@
6149
"zh-cht": "已創建帳戶,名稱為 {0}。",
6150
"hu": "Fiók létrehozva, név: {0}. ",
6151
"xloc": [
6152
- "default.handlebars->47->2597"
6152
+ "default.handlebars->47->2599"
6153
]
6154
},
6155
{
@@ -6176,7 +6176,7 @@
6176
"zh-cht": "帳戶已創建,用戶名是{0}",
6177
"hu": "Fiók létrehozva, felhasználónév {0} ",
6178
"xloc": [
6179
- "default.handlebars->47->2533"
6179
+ "default.handlebars->47->2535"
6180
]
6181
},
6182
{
@@ -6205,8 +6205,8 @@
6205
"xloc": [
6206
"default-mobile.handlebars->11->66",
6207
"default.handlebars->47->210",
6208
- "default.handlebars->47->2688",
6209
- "default.handlebars->47->2866"
6208
+ "default.handlebars->47->2690",
6209
+ "default.handlebars->47->2868"
6210
]
6211
},
6212
{
@@ -6233,8 +6233,8 @@
6233
"zh-cht": "達到帳戶限制。",
6234
"hu": "Elérte a fiókkorlátot.",
6235
"xloc": [
6236
- "default-mobile.handlebars->11->994",
6237
- "default.handlebars->47->3218",
6236
+ "default-mobile.handlebars->11->995",
6237
+ "default.handlebars->47->3220",
6238
"login-mobile.handlebars->5->6",
6239
"login.handlebars->5->8",
6240
"login2.handlebars->7->207"
@@ -6293,7 +6293,7 @@
6293
"zh-cht": "帳號登錄",
6294
"hu": "Bejelentkezés a fiókba",
6295
"xloc": [
6296
- "default.handlebars->47->2470"
6296
+ "default.handlebars->47->2472"
6297
]
6298
},
6299
{
@@ -6320,7 +6320,7 @@
6320
"zh-cht": "從 {0}、{1}、{2} 登錄帳戶",
6321
"hu": "Bejelentkezés a fiókba innen: {0}, {1}, {2}",
6322
"xloc": [
6323
- "default.handlebars->47->2576"
6323
+ "default.handlebars->47->2578"
6324
]
6325
},
6326
{
@@ -6332,7 +6332,7 @@
6332
"hu": "Fiók bejelentkezési token rekordok",
6333
"es": "Registro de Tokens de inicio de sesion",
6334
"xloc": [
6335
- "default.handlebars->47->3185"
6335
+ "default.handlebars->47->3187"
6336
]
6337
},
6338
{
@@ -6359,7 +6359,7 @@
6359
"zh-cht": "帳戶登出",
6360
"hu": "Fiók kijelentkezés",
6361
"xloc": [
6362
- "default.handlebars->47->2471"
6362
+ "default.handlebars->47->2473"
6363
]
6364
},
6365
{
@@ -6415,7 +6415,7 @@
6415
"zh-cht": "帳戶密碼已更改:{0}",
6416
"hu": "Fiók jelszava megváltozott: {0}",
6417
"xloc": [
6418
- "default.handlebars->47->2543"
6418
+ "default.handlebars->47->2545"
6419
]
6420
},
6421
{
@@ -6442,7 +6442,7 @@
6442
"zh-cht": "帳戶已刪除",
6443
"hu": "Fiók eltávolítva",
6444
"xloc": [
6445
- "default.handlebars->47->2532"
6445
+ "default.handlebars->47->2534"
6446
]
6447
},
6448
{
@@ -6496,8 +6496,8 @@
6496
"zh-cht": "指令",
6497
"hu": "Művelet",
6498
"xloc": [
6499
- "default-mobile.handlebars->11->881",
6500
- "default.handlebars->47->1720",
6499
+ "default-mobile.handlebars->11->882",
6500
+ "default.handlebars->47->1722",
6501
"default.handlebars->container->column_l->p42->p42tbl->1->0->8"
6502
]
6503
},
@@ -6668,7 +6668,7 @@
6668
"zh-cht": "如果ACM失敗,則激活到CCM",
6669
"hu": "Aktiválja a CCM-et, ha az ACM meghiúsul",
6670
"xloc": [
6671
- "default.handlebars->47->2234"
6671
+ "default.handlebars->47->2236"
6672
]
6673
},
6674
{
@@ -6697,8 +6697,8 @@
6697
"xloc": [
6698
"default-mobile.handlebars->11->499",
6699
"default-mobile.handlebars->11->501",
6700
- "default-mobile.handlebars->11->791",
6701
- "default.handlebars->47->1629",
6700
+ "default-mobile.handlebars->11->792",
6701
+ "default.handlebars->47->1631",
6702
"default.handlebars->47->896",
6703
"default.handlebars->47->898"
6704
]
@@ -6755,7 +6755,7 @@
6755
"hu": "Atív eszközmegosztás",
6756
"xloc": [
6757
"default.handlebars->47->1071",
6758
- "default.handlebars->47->2183"
6758
+ "default.handlebars->47->2185"
6759
]
6760
},
6761
{
@@ -6782,7 +6782,7 @@
6782
"zh-cht": "活動登錄令牌",
6783
"hu": "Aktív bejelentkezési tokenek",
6784
"xloc": [
6785
- "default.handlebars->47->2075"
6785
+ "default.handlebars->47->2077"
6786
]
6787
},
6788
{
@@ -6887,7 +6887,7 @@
6887
"zh-cht": "添加",
6888
"hu": "Hozzáadás",
6889
"xloc": [
6890
- "default-mobile.handlebars->11->649",
6890
+ "default-mobile.handlebars->11->650",
6891
"default.handlebars->47->1414",
6892
"default.handlebars->47->1419"
6893
]
@@ -6964,7 +6964,7 @@
6964
"zh-cht": "新增代理",
6965
"hu": "Agent hozzáadása",
6966
"xloc": [
6967
- "default.handlebars->47->2173",
6967
+ "default.handlebars->47->2175",
6968
"default.handlebars->47->485"
6969
]
6970
},
@@ -7016,9 +7016,9 @@
7016
"zh-cht": "新增裝置",
7017
"hu": "Eszköz hozzáadása",
7018
"xloc": [
7019
- "default.handlebars->47->2177",
7020
- "default.handlebars->47->2841",
7021
- "default.handlebars->47->3035",
7019
+ "default.handlebars->47->2179",
7020
+ "default.handlebars->47->2843",
7021
+ "default.handlebars->47->3037",
7022
"default.handlebars->47->489"
7023
]
7024
},
@@ -7073,9 +7073,9 @@
7073
"zh-cht": "新增裝置群",
7074
"hu": "Eszközcsoport hozzáadása",
7075
"xloc": [
7076
- "default.handlebars->47->2320",
7077
- "default.handlebars->47->2835",
7078
- "default.handlebars->47->3023",
7076
+ "default.handlebars->47->2322",
7077
+ "default.handlebars->47->2837",
7078
+ "default.handlebars->47->3025",
7079
"default.handlebars->47->385"
7080
]
7081
},
@@ -7103,7 +7103,7 @@
7103
"zh-cht": "新增裝置群權限",
7104
"hu": "Eszközcsoport engedélyek hozzáadása",
7105
"xloc": [
7106
- "default.handlebars->47->2317"
7106
+ "default.handlebars->47->2319"
7107
]
7108
},
7109
{
@@ -7130,8 +7130,8 @@
7130
"zh-cht": "新增裝置權限",
7131
"hu": "Eszköz engedélyek hozzáadása",
7132
"xloc": [
7133
- "default.handlebars->47->2322",
7134
- "default.handlebars->47->2324"
7133
+ "default.handlebars->47->2324",
7134
+ "default.handlebars->47->2326"
7135
]
7136
},
7137
{
@@ -7287,7 +7287,7 @@
7287
"zh-cht": "新增成員身份",
7288
"hu": "Hozzáadás Felhasználói Csoporthoz",
7289
"xloc": [
7290
- "default.handlebars->47->3055"
7290
+ "default.handlebars->47->3057"
7291
]
7292
},
7293
{
@@ -7365,8 +7365,8 @@
7365
"zh-cht": "新增安全密鑰",
7366
"hu": "Biztonsági kulcs hozzáadása",
7367
"xloc": [
7368
- "default.handlebars->47->1790",
7369
- "default.handlebars->47->1791",
7368
+ "default.handlebars->47->1792",
7369
+ "default.handlebars->47->1793",
7370
"default.handlebars->47->241",
7371
"default.handlebars->47->243",
7372
"default.handlebars->47->246",
@@ -7397,7 +7397,7 @@
7397
"zh-cht": "新增用戶",
7398
"hu": "Felhasználó hozzáadása",
7399
"xloc": [
7400
- "default-mobile.handlebars->11->906",
7400
+ "default-mobile.handlebars->11->907",
7401
"default.handlebars->47->1063"
7402
]
7403
},
@@ -7425,7 +7425,7 @@
7425
"zh-cht": "新增用戶裝置權限",
7426
"hu": "Felhasználói eszköz engedélyek hozzáadása",
7427
"xloc": [
7428
- "default.handlebars->47->2327"
7428
+ "default.handlebars->47->2329"
7429
]
7430
},
7431
{
@@ -7453,9 +7453,9 @@
7453
"hu": "Felhasználói csoport hozzáadása",
7454
"xloc": [
7455
"default.handlebars->47->1064",
7456
- "default.handlebars->47->2167",
7457
- "default.handlebars->47->2319",
7458
- "default.handlebars->47->3029"
7456
+ "default.handlebars->47->2169",
7457
+ "default.handlebars->47->2321",
7458
+ "default.handlebars->47->3031"
7459
]
7460
},
7461
{
@@ -7482,7 +7482,7 @@
7482
"zh-cht": "新增用戶群裝置權限",
7483
"hu": "Felhasználói csoport eszköz engedélyek hozzáadása",
7484
"xloc": [
7485
- "default.handlebars->47->2329"
7485
+ "default.handlebars->47->2331"
7486
]
7487
},
7488
{
@@ -7509,7 +7509,7 @@
7509
"zh-cht": "將用戶新增到裝置群",
7510
"hu": "Felhasználó hozzáadása az eszköz csoporthoz",
7511
"xloc": [
7512
- "default-mobile.handlebars->11->947"
7512
+ "default-mobile.handlebars->11->948"
7513
]
7514
},
7515
{
@@ -7560,8 +7560,8 @@
7560
"zh-cht": "新增用戶",
7561
"hu": "Felhasználók hozzáadása",
7562
"xloc": [
7563
- "default.handlebars->47->2166",
7564
- "default.handlebars->47->2830"
7563
+ "default.handlebars->47->2168",
7564
+ "default.handlebars->47->2832"
7565
]
7566
},
7567
{
@@ -7588,7 +7588,7 @@
7588
"zh-cht": "將用戶新增到裝置群",
7589
"hu": "Felhasználók hozzáadása az eszköz csoporthoz",
7590
"xloc": [
7591
- "default.handlebars->47->2316"
7591
+ "default.handlebars->47->2318"
7592
]
7593
},
7594
{
@@ -7615,7 +7615,7 @@
7615
"zh-cht": "將用戶新增到用戶群",
7616
"hu": "Felhasználók hozzáadása az felhasználó csoporthoz",
7617
"xloc": [
7618
- "default.handlebars->47->2865"
7618
+ "default.handlebars->47->2867"
7619
]
7620
},
7621
{
@@ -7801,7 +7801,7 @@
7801
"zh-cht": "通過安裝Mesh Agent將新電腦新增到該裝置群。",
7802
"hu": "Adjon hozzá egy új számítógépet ehhez az eszközcsoporthoz a Mesh Agent telepítésével.",
7803
"xloc": [
7804
- "default.handlebars->47->2172",
7804
+ "default.handlebars->47->2174",
7805
"default.handlebars->47->484"
7806
]
7807
},
@@ -7829,7 +7829,7 @@
7829
"zh-cht": "添加位於本地網絡上的設備。",
7830
"hu": "Helyi hálózaton található eszköz hozzáadása.",
7831
"xloc": [
7832
- "default.handlebars->47->2176",
7832
+ "default.handlebars->47->2178",
7833
"default.handlebars->47->488"
7834
]
7835
},
@@ -7938,7 +7938,7 @@
7938
"zh-cht": "添加了身份驗證應用程序",
7939
"hu": "Hitelesítési alkalmazás hozzáadva",
7940
"xloc": [
7941
- "default.handlebars->47->2559"
7941
+ "default.handlebars->47->2561"
7942
]
7943
},
7944
{
@@ -7965,7 +7965,7 @@
7965
"zh-cht": "已將設備共享{0}從{1}添加到{2}",
7966
"hu": "{0} eszközmegosztás hozzáadva {1} és {2} között",
7967
"xloc": [
7968
- "default.handlebars->47->2570"
7968
+ "default.handlebars->47->2572"
7969
]
7970
},
7971
{
@@ -7992,7 +7992,7 @@
7992
"zh-cht": "添加了每天重複的設備共享 {0}。",
7993
"hu": "Naponta ismétlődő {0} eszközmegosztás hozzáadva.",
7994
"xloc": [
7995
- "default.handlebars->47->2607"
7995
+ "default.handlebars->47->2609"
7996
]
7997
},
7998
{
@@ -8019,7 +8019,7 @@
8019
"zh-cht": "添加了每週重複的設備共享 {0}。",
8020
"hu": "Hetente ismétlődő {0} eszközmegosztás hozzáadva.",
8021
"xloc": [
8022
- "default.handlebars->47->2608"
8022
+ "default.handlebars->47->2610"
8023
]
8024
},
8025
{
@@ -8046,7 +8046,7 @@
8046
"zh-cht": "添加了無限時間的設備共享 {0}。",
8047
"hu": "{0} eszközmegosztás hozzáadva korlátlan ideig.",
8048
"xloc": [
8049
- "default.handlebars->47->2600"
8049
+ "default.handlebars->47->2602"
8050
]
8051
},
8052
{
@@ -8073,8 +8073,8 @@
8073
"zh-cht": "已將設備{0}添加到設備組{1}",
8074
"hu": "A(z) {0} eszköz hozzáadva a(z) {1} eszközcsoporthoz",
8075
"xloc": [
8076
- "default.handlebars->47->2526",
8077
- "default.handlebars->47->2553"
8076
+ "default.handlebars->47->2528",
8077
+ "default.handlebars->47->2555"
8078
]
8079
},
8080
{
@@ -8101,7 +8101,7 @@
8101
"zh-cht": "添加了登錄令牌",
8102
"hu": "Bejelentkezési token hozzáadva",
8103
"xloc": [
8104
- "default.handlebars->47->2584"
8104
+ "default.handlebars->47->2586"
8105
]
8106
},
8107
{
@@ -8128,7 +8128,7 @@
8128
"zh-cht": "增加推送通知認證設備",
8129
"hu": "Push értesítési hitelesítő eszköz hozzáadva",
8130
"xloc": [
8131
- "default.handlebars->47->2582"
8131
+ "default.handlebars->47->2584"
8132
]
8133
},
8134
{
@@ -8155,7 +8155,7 @@
8155
"zh-cht": "添加了安全密鑰",
8156
"hu": "Biztonsági kulcs hozzáadva",
8157
"xloc": [
8158
- "default.handlebars->47->2564"
8158
+ "default.handlebars->47->2566"
8159
]
8160
},
8161
{
@@ -8182,7 +8182,7 @@
8182
"zh-cht": "已將用戶組{0}添加到設備組{1}",
8183
"hu": "{0} felhasználói csoport hozzáadva a(z) {1} eszközcsoporthoz",
8184
"xloc": [
8185
- "default.handlebars->47->2537"
8185
+ "default.handlebars->47->2539"
8186
]
8187
},
8188
{
@@ -8209,8 +8209,8 @@
8209
"zh-cht": "已將用戶{0}添加到用戶組{1}",
8210
"hu": "{0} felhasználó hozzáadva a(z) {1} felhasználói csoporthoz",
8211
"xloc": [
8212
- "default.handlebars->47->2540",
8213
- "default.handlebars->47->2549"
8212
+ "default.handlebars->47->2542",
8213
+ "default.handlebars->47->2551"
8214
]
8215
},
8216
{
@@ -8291,8 +8291,8 @@
8291
"zh-cht": "管理員控制模式(ACM)",
8292
"hu": "Admin Control Mode (ACM)",
8293
"xloc": [
8294
- "default-mobile.handlebars->11->793",
8295
- "default.handlebars->47->1631"
8294
+ "default-mobile.handlebars->11->794",
8295
+ "default.handlebars->47->1633"
8296
]
8297
},
8298
{
@@ -8319,8 +8319,8 @@
8319
"zh-cht": "管理員憑證",
8320
"hu": "Adminisztrátor Hitelesítő adatok",
8321
"xloc": [
8322
- "default-mobile.handlebars->11->799",
8323
- "default.handlebars->47->1637"
8322
+ "default-mobile.handlebars->11->800",
8323
+ "default.handlebars->47->1639"
8324
]
8325
},
8326
{
@@ -8375,7 +8375,7 @@
8375
"zh-cht": "管理領域",
8376
"hu": "Adminisztratív Realms",
8377
"xloc": [
8378
- "default.handlebars->47->2917"
8378
+ "default.handlebars->47->2919"
8379
]
8380
},
8381
{
@@ -8430,7 +8430,7 @@
8430
"zh-cht": "管理領域",
8431
"hu": "Adminisztratív Realms",
8432
"xloc": [
8433
- "default.handlebars->47->2762"
8433
+ "default.handlebars->47->2764"
8434
]
8435
},
8436
{
@@ -8457,7 +8457,7 @@
8457
"zh-cht": "管理員",
8458
"hu": "Adminisztrátor",
8459
"xloc": [
8460
- "default.handlebars->47->2680"
8460
+ "default.handlebars->47->2682"
8461
]
8462
},
8463
{
@@ -8485,7 +8485,7 @@
8485
"hu": "afrikai",
8486
"xloc": [
8487
"default-mobile.handlebars->11->104",
8488
- "default.handlebars->47->1793",
8488
+ "default.handlebars->47->1795",
8489
"login2.handlebars->7->1"
8490
]
8491
},
@@ -8517,9 +8517,9 @@
8517
"default-mobile.handlebars->11->463",
8518
"default-mobile.handlebars->11->520",
8519
"default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1",
8520
- "default.handlebars->47->2400",
8521
- "default.handlebars->47->2413",
8522
- "default.handlebars->47->3279",
8520
+ "default.handlebars->47->2402",
8521
+ "default.handlebars->47->2415",
8522
+ "default.handlebars->47->3281",
8523
"default.handlebars->47->405",
8524
"default.handlebars->47->706",
8525
"default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1",
@@ -8550,8 +8550,8 @@
8550
"zh-cht": "代理+Intel® AMT",
8551
"hu": "Agent + Intel® AMT",
8552
"xloc": [
8553
- "default.handlebars->47->2402",
8554
- "default.handlebars->47->2415"
8553
+ "default.handlebars->47->2404",
8554
+ "default.handlebars->47->2417"
8555
]
8556
},
8557
{
@@ -8606,8 +8606,8 @@
8606
"zh-cht": "代理控制台",
8607
"hu": "Agent konzol",
8608
"xloc": [
8609
- "default-mobile.handlebars->11->953",
8610
- "default.handlebars->47->2337",
8609
+ "default-mobile.handlebars->11->954",
8610
+ "default.handlebars->47->2339",
8611
"default.handlebars->47->794"
8612
]
8613
},
@@ -8635,7 +8635,7 @@
8635
"zh-cht": "代理錯誤計數器",
8636
"hu": "Agrnt hiba számlálók",
8637
"xloc": [
8638
- "default.handlebars->47->3248"
8638
+ "default.handlebars->47->3250"
8639
]
8640
},
8641
{
@@ -8832,7 +8832,7 @@
8832
"hu": "Agent Ön-Megosztás",
8833
"xloc": [
8834
"default.handlebars->47->1092",
8835
- "default.handlebars->47->2204"
8835
+ "default.handlebars->47->2206"
8836
]
8837
},
8838
{
@@ -8859,7 +8859,7 @@
8859
"zh-cht": "代理時段",
8860
"hu": "Agent munkamenetek",
8861
"xloc": [
8862
- "default.handlebars->47->3264"
8862
+ "default.handlebars->47->3266"
8863
]
8864
},
8865
{
@@ -8966,7 +8966,7 @@
8966
"zh-cht": "代理類型",
8967
"hu": "Agent típusok",
8968
"xloc": [
8969
- "default.handlebars->47->2411",
8969
+ "default.handlebars->47->2413",
8970
"default.handlebars->container->column_l->p21->p21main->1->1->meshOsChartDiv->1"
8971
]
8972
},
@@ -9022,7 +9022,7 @@
9022
"zh-cht": "代理關閉了與{0}%代理到服務器壓縮的會話。已發送:{1},已壓縮:{2}",
9023
"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}",
9024
"xloc": [
9025
- "default.handlebars->47->2523"
9025
+ "default.handlebars->47->2525"
9026
]
9027
},
9028
{
@@ -9231,8 +9231,8 @@
9231
"zh-cht": "代理離線",
9232
"hu": "Offline Agent",
9233
"xloc": [
9234
- "default-mobile.handlebars->11->873",
9235
- "default.handlebars->47->1712"
9234
+ "default-mobile.handlebars->11->874",
9235
+ "default.handlebars->47->1714"
9236
]
9237
},
9238
{
@@ -9259,8 +9259,8 @@
9259
"zh-cht": "代理在線",
9260
"hu": "Online Agent",
9261
"xloc": [
9262
- "default-mobile.handlebars->11->872",
9263
- "default.handlebars->47->1711"
9262
+ "default-mobile.handlebars->11->873",
9263
+ "default.handlebars->47->1713"
9264
]
9265
},
9266
{
@@ -9482,8 +9482,8 @@
9482
"zh-cht": "代理",
9483
"hu": "Agent-ek",
9484
"xloc": [
9485
- "default.handlebars->47->2368",
9486
- "default.handlebars->47->3292",
9485
+ "default.handlebars->47->2370",
9486
+ "default.handlebars->47->3294",
9487
"default.handlebars->47->573"
9488
]
9489
},
@@ -9512,7 +9512,7 @@
9512
"hu": "albán",
9513
"xloc": [
9514
"default-mobile.handlebars->11->105",
9515
- "default.handlebars->47->1794",
9515
+ "default.handlebars->47->1796",
9516
"login2.handlebars->7->2"
9517
]
9518
},
@@ -9550,9 +9550,9 @@
9550
"hu": "Összes",
9551
"xloc": [
9552
"default-mobile.handlebars->11->355",
9553
- "default-mobile.handlebars->11->687",
9554
- "default-mobile.handlebars->11->689",
9555
- "default.handlebars->47->3112",
9553
+ "default-mobile.handlebars->11->688",
9554
+ "default-mobile.handlebars->11->690",
9555
+ "default.handlebars->47->3114",
9556
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar->DevFilterSelect->1"
9557
]
9558
},
@@ -9580,7 +9580,7 @@
9580
"zh-cht": "全部可用",
9581
"hu": "Összes elérhető",
9582
"xloc": [
9583
- "default.handlebars->47->2642"
9583
+ "default.handlebars->47->2644"
9584
]
9585
},
9586
{
@@ -9607,7 +9607,7 @@
9607
"zh-cht": "所有可用的代理",
9608
"hu": "Az összes rendelkezésre álló Agent",
9609
"xloc": [
9610
- "default.handlebars->47->2369",
9610
+ "default.handlebars->47->2371",
9611
"default.handlebars->47->574"
9612
]
9613
},
@@ -9662,7 +9662,7 @@
9662
"zh-cht": "所有事件",
9663
"hu": "Összes Esemény",
9664
"xloc": [
9665
- "default.handlebars->47->2640"
9665
+ "default.handlebars->47->2642"
9666
]
9667
},
9668
{
@@ -9753,8 +9753,8 @@
9753
"zh-cht": "允許用戶管理此裝置群和該群中的裝置。",
9754
"hu": "Engedélyezi a felhasználók számára az eszközcsoport és a csoportba tartozó eszközök kezelését.",
9755
"xloc": [
9756
- "default.handlebars->47->2281",
9757
- "default.handlebars->47->2862"
9756
+ "default.handlebars->47->2283",
9757
+ "default.handlebars->47->2864"
9758
]
9759
},
9760
{
@@ -9781,7 +9781,7 @@
9781
"zh-cht": "允許用戶管理此裝置。",
9782
"hu": "Engedélyezze a felhasználóknak, hogy kezeljék ezt az eszközt.",
9783
"xloc": [
9784
- "default.handlebars->47->2282"
9784
+ "default.handlebars->47->2284"
9785
]
9786
},
9787
{
@@ -9887,8 +9887,8 @@
9887
"zh-cht": "Alt",
9888
"hu": "Alt",
9889
"xloc": [
9890
- "default-mobile.handlebars->11->642",
9891
- "default-mobile.handlebars->11->646",
9890
+ "default-mobile.handlebars->11->643",
9891
+ "default-mobile.handlebars->11->647",
9892
"default.handlebars->47->1407",
9893
"default.handlebars->47->1411"
9894
]
@@ -10083,9 +10083,9 @@
10083
"zh-cht": "一直通知",
10084
"hu": "Minden kapcsolat értesítés",
10085
"xloc": [
10086
- "default.handlebars->47->2143",
10087
- "default.handlebars->47->2821",
10088
- "default.handlebars->47->2926",
10086
+ "default.handlebars->47->2145",
10087
+ "default.handlebars->47->2823",
10088
+ "default.handlebars->47->2928",
10089
"default.handlebars->47->958"
10090
]
10091
},
@@ -10113,9 +10113,9 @@
10113
"zh-cht": "一直提示",
10114
"hu": "Minden kapcsolat engedélykérés",
10115
"xloc": [
10116
- "default.handlebars->47->2144",
10117
- "default.handlebars->47->2822",
10118
- "default.handlebars->47->2927",
10116
+ "default.handlebars->47->2146",
10117
+ "default.handlebars->47->2824",
10118
+ "default.handlebars->47->2929",
10119
"default.handlebars->47->959"
10120
]
10121
},
@@ -10207,7 +10207,7 @@
10207
"de": "Ein unbekannter Fehler ist aufgetreten.",
10208
"es": "Ha ocurrido un error desconcido.",
10209
"xloc": [
10210
- "default.handlebars->47->3064"
10210
+ "default.handlebars->47->3066"
10211
]
10212
},
10213
{
@@ -10265,7 +10265,7 @@
10265
"zh-cht": "Android APK",
10266
"hu": "Android APK",
10267
"xloc": [
10268
- "default-mobile.handlebars->11->925",
10268
+ "default-mobile.handlebars->11->926",
10269
"default.handlebars->47->635"
10270
]
10271
},
@@ -10347,7 +10347,7 @@
10347
"zh-cht": "安卓安裝",
10348
"hu": "Android Telepítés",
10349
"xloc": [
10350
- "default-mobile.handlebars->11->927"
10350
+ "default-mobile.handlebars->11->928"
10351
]
10352
},
10353
{
@@ -10409,8 +10409,8 @@
10409
"zh-cht": "殺毒軟件未激活",
10410
"hu": "A vírusirtó nem aktív",
10411
"xloc": [
10412
- "default.handlebars->47->2404",
10413
- "default.handlebars->47->2418"
10412
+ "default.handlebars->47->2406",
10413
+ "default.handlebars->47->2420"
10414
]
10415
},
10416
{
@@ -10437,7 +10437,7 @@
10437
"zh-cht": "防毒軟體",
10438
"hu": "Antivírus",
10439
"xloc": [
10440
- "default-mobile.handlebars->11->755",
10440
+ "default-mobile.handlebars->11->756",
10441
"default.handlebars->47->947"
10442
]
10443
},
@@ -10793,7 +10793,7 @@
10793
"hu": "arab (Algéria)",
10794
"xloc": [
10795
"default-mobile.handlebars->11->107",
10796
- "default.handlebars->47->1796",
10796
+ "default.handlebars->47->1798",
10797
"login2.handlebars->7->4"
10798
]
10799
},
@@ -10822,7 +10822,7 @@
10822
"hu": "arab (Bahrein)",
10823
"xloc": [
10824
"default-mobile.handlebars->11->108",
10825
- "default.handlebars->47->1797",
10825
+ "default.handlebars->47->1799",
10826
"login2.handlebars->7->5"
10827
]
10828
},
@@ -10851,7 +10851,7 @@
10851
"hu": "arab (Egyiptom)",
10852
"xloc": [
10853
"default-mobile.handlebars->11->109",
10854
- "default.handlebars->47->1798",
10854
+ "default.handlebars->47->1800",
10855
"login2.handlebars->7->6"
10856
]
10857
},
@@ -10880,7 +10880,7 @@
10880
"hu": "arab (Irak)",
10881
"xloc": [
10882
"default-mobile.handlebars->11->110",
10883
- "default.handlebars->47->1799",
10883
+ "default.handlebars->47->1801",
10884
"login2.handlebars->7->7"
10885
]
10886
},
@@ -10909,7 +10909,7 @@
10909
"hu": "arab (Jordánia)",
10910
"xloc": [
10911
"default-mobile.handlebars->11->111",
10912
- "default.handlebars->47->1800",
10912
+ "default.handlebars->47->1802",
10913
"login2.handlebars->7->8"
10914
]
10915
},
@@ -10938,7 +10938,7 @@
10938
"hu": "arab (Kuvait)",
10939
"xloc": [
10940
"default-mobile.handlebars->11->112",
10941
- "default.handlebars->47->1801",
10941
+ "default.handlebars->47->1803",
10942
"login2.handlebars->7->9"
10943
]
10944
},
@@ -10967,7 +10967,7 @@
10967
"hu": "arab (Libanon)",
10968
"xloc": [
10969
"default-mobile.handlebars->11->113",
10970
- "default.handlebars->47->1802",
10970
+ "default.handlebars->47->1804",
10971
"login2.handlebars->7->10"
10972
]
10973
},
@@ -10996,7 +10996,7 @@
10996
"hu": "arab (Líbia)",
10997
"xloc": [
10998
"default-mobile.handlebars->11->114",
10999
- "default.handlebars->47->1803",
10999
+ "default.handlebars->47->1805",
11000
"login2.handlebars->7->11"
11001
]
11002
},
@@ -11025,7 +11025,7 @@
11025
"hu": "arab (Marokkó)",
11026
"xloc": [
11027
"default-mobile.handlebars->11->115",
11028
- "default.handlebars->47->1804",
11028
+ "default.handlebars->47->1806",
11029
"login2.handlebars->7->12"
11030
]
11031
},
@@ -11054,7 +11054,7 @@
11054
"hu": "arab (Omán)",
11055
"xloc": [
11056
"default-mobile.handlebars->11->116",
11057
- "default.handlebars->47->1805",
11057
+ "default.handlebars->47->1807",
11058
"login2.handlebars->7->13"
11059
]
11060
},
@@ -11083,7 +11083,7 @@
11083
"hu": "arab (Katar)",
11084
"xloc": [
11085
"default-mobile.handlebars->11->117",
11086
- "default.handlebars->47->1806",
11086
+ "default.handlebars->47->1808",
11087
"login2.handlebars->7->14"
11088
]
11089
},
@@ -11112,7 +11112,7 @@
11112
"hu": "arab (Szaúd-Arábia)",
11113
"xloc": [
11114
"default-mobile.handlebars->11->118",
11115
- "default.handlebars->47->1807",
11115
+ "default.handlebars->47->1809",
11116
"login2.handlebars->7->15"
11117
]
11118
},
@@ -11141,7 +11141,7 @@
11141
"hu": "arab",
11142
"xloc": [
11143
"default-mobile.handlebars->11->106",
11144
- "default.handlebars->47->1795",
11144
+ "default.handlebars->47->1797",
11145
"login2.handlebars->7->3"
11146
]
11147
},
@@ -11170,7 +11170,7 @@
11170
"hu": "arab (Szíria)",
11171
"xloc": [
11172
"default-mobile.handlebars->11->119",
11173
- "default.handlebars->47->1808",
11173
+ "default.handlebars->47->1810",
11174
"login2.handlebars->7->16"
11175
]
11176
},
@@ -11199,7 +11199,7 @@
11199
"hu": "arab (Tunézia)",
11200
"xloc": [
11201
"default-mobile.handlebars->11->120",
11202
- "default.handlebars->47->1809",
11202
+ "default.handlebars->47->1811",
11203
"login2.handlebars->7->17"
11204
]
11205
},
@@ -11228,7 +11228,7 @@
11228
"hu": "arab (Egyesült Arab Emírségek)",
11229
"xloc": [
11230
"default-mobile.handlebars->11->121",
11231
- "default.handlebars->47->1810",
11231
+ "default.handlebars->47->1812",
11232
"login2.handlebars->7->18"
11233
]
11234
},
@@ -11257,7 +11257,7 @@
11257
"hu": "arab (Jemen)",
11258
"xloc": [
11259
"default-mobile.handlebars->11->122",
11260
- "default.handlebars->47->1811",
11260
+ "default.handlebars->47->1813",
11261
"login2.handlebars->7->19"
11262
]
11263
},
@@ -11286,7 +11286,7 @@
11286
"hu": "aragóniai",
11287
"xloc": [
11288
"default-mobile.handlebars->11->123",
11289
- "default.handlebars->47->1812",
11289
+ "default.handlebars->47->1814",
11290
"login2.handlebars->7->20"
11291
]
11292
},
@@ -11314,12 +11314,12 @@
11314
"zh-cht": "結構",
11315
"hu": "Architektúra",
11316
"xloc": [
11317
- "default-mobile.handlebars->11->722",
11318
- "default-mobile.handlebars->11->724",
11319
- "default-mobile.handlebars->11->726",
11320
- "default.handlebars->47->1576",
11317
+ "default-mobile.handlebars->11->723",
11318
+ "default-mobile.handlebars->11->725",
11319
+ "default-mobile.handlebars->11->727",
11320
"default.handlebars->47->1578",
11322
- "default.handlebars->47->1580"
11321
+ "default.handlebars->47->1580",
11322
+ "default.handlebars->47->1582"
11323
]
11324
},
11325
{
@@ -11373,8 +11373,8 @@
11373
"zh-cht": "你確定要刪除群{0}嗎?刪除裝置群還將刪除該群中有關裝置的所有訊息。",
11374
"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.",
11375
"xloc": [
11376
- "default-mobile.handlebars->11->913",
11377
- "default.handlebars->47->2248"
11376
+ "default-mobile.handlebars->11->914",
11377
+ "default.handlebars->47->2250"
11378
]
11379
},
11380
{
@@ -11404,6 +11404,12 @@
11404
"default.handlebars->47->1299"
11405
]
11406
},
11407
+ {
11408
+ "en": "Are you sure you want to open this file/folder on the remote devices desktop ?",
11409
+ "xloc": [
11410
+ "default.handlebars->47->1522"
11411
+ ]
11412
+ },
11413
{
11414
"bs": "Jeste li sigurni da želite deinstalirati odabranog agenta?",
11415
"cs": "Opravdu odinstalovat vybraného agenta?",
@@ -11482,7 +11488,7 @@
11488
"zh-cht": "你確定要{0}外掛嗎:{1}",
11489
"hu": "Biztosm, hogy {0} szeretné használni a következő beépülő modult: {1}",
11490
"xloc": [
11485
- "default.handlebars->47->3344"
11491
+ "default.handlebars->47->3346"
11492
]
11493
},
11494
{
@@ -11538,7 +11544,7 @@
11544
"hu": "örmény",
11545
"xloc": [
11546
"default-mobile.handlebars->11->124",
11541
- "default.handlebars->47->1813",
11547
+ "default.handlebars->47->1815",
11548
"login2.handlebars->7->21"
11549
]
11550
},
@@ -11730,7 +11736,7 @@
11736
"hu": "asszámi",
11737
"xloc": [
11738
"default-mobile.handlebars->11->125",
11733
- "default.handlebars->47->1814",
11739
+ "default.handlebars->47->1816",
11740
"login2.handlebars->7->22"
11741
]
11742
},
@@ -11894,7 +11900,7 @@
11900
"hu": "asztúriai",
11901
"xloc": [
11902
"default-mobile.handlebars->11->126",
11897
- "default.handlebars->47->1815",
11903
+ "default.handlebars->47->1817",
11904
"login2.handlebars->7->23"
11905
]
11906
},
@@ -11922,7 +11928,7 @@
11928
"zh-cht": "嘗試激活英特爾(R)AMT ACM模式",
11929
"hu": "Intel(R) AMT ACM üzemmód aktiválásának kísérlete",
11930
"xloc": [
11925
- "default.handlebars->47->2492"
11931
+ "default.handlebars->47->2494"
11932
]
11933
},
11934
{
@@ -11973,9 +11979,9 @@
11979
"zh-cht": "驗證",
11980
"hu": "Hitelesítés",
11981
"xloc": [
11976
- "default-mobile.handlebars->11->658",
11977
- "default-mobile.handlebars->11->662",
11978
- "default-mobile.handlebars->11->674",
11982
+ "default-mobile.handlebars->11->659",
11983
+ "default-mobile.handlebars->11->663",
11984
+ "default-mobile.handlebars->11->675",
11985
"default.handlebars->47->1473",
11986
"default.handlebars->47->1477",
11987
"default.handlebars->47->1489",
@@ -12009,7 +12015,7 @@
12015
"zh-cht": "認證軟體",
12016
"hu": "Hitelesítő alkalmazás beállítva",
12017
"xloc": [
12012
- "default.handlebars->47->2930"
12018
+ "default.handlebars->47->2932"
12019
]
12020
},
12021
{
@@ -12036,9 +12042,9 @@
12042
"zh-cht": "認證設備",
12043
"hu": "Hitelesítési eszköz",
12044
"xloc": [
12039
- "default.handlebars->47->1776",
12045
"default.handlebars->47->1778",
12041
- "default.handlebars->47->1782"
12046
+ "default.handlebars->47->1780",
12047
+ "default.handlebars->47->1784"
12048
]
12049
},
12050
{
@@ -12065,8 +12071,8 @@
12071
"zh-cht": "授權錯誤",
12072
"hu": "Hitelesítés Hiba",
12073
"xloc": [
12068
- "default-mobile.handlebars->11->675",
12069
- "default-mobile.handlebars->11->681",
12074
+ "default-mobile.handlebars->11->676",
12075
+ "default-mobile.handlebars->11->682",
12076
"default.handlebars->47->1491",
12077
"default.handlebars->47->1506"
12078
]
@@ -12099,8 +12105,8 @@
12105
"default-mobile.handlebars->11->311",
12106
"default-mobile.handlebars->11->70",
12107
"default-mobile.handlebars->11->73",
12102
- "default.handlebars->47->1772",
12108
"default.handlebars->47->1774",
12109
+ "default.handlebars->47->1776",
12110
"default.handlebars->47->216",
12111
"default.handlebars->47->221"
12112
]
@@ -12237,8 +12243,8 @@
12243
"zh-cht": "自動刪除",
12244
"hu": "Automatikus eltávolítás",
12245
"xloc": [
12240
- "default.handlebars->47->2128",
12241
- "default.handlebars->47->2633"
12246
+ "default.handlebars->47->2130",
12247
+ "default.handlebars->47->2635"
12248
]
12249
},
12250
{
@@ -12296,7 +12302,7 @@
12302
"zh-cht": "自動下載代理程序核心轉儲文件:“{0}”",
12303
"hu": "Agent core dump fájl automatikus letöltése: \\\"{0}\\\"",
12304
"xloc": [
12299
- "default.handlebars->47->2573"
12305
+ "default.handlebars->47->2575"
12306
]
12307
},
12308
{
@@ -12402,7 +12408,7 @@
12408
"zh-cht": "自動移除非活動設備",
12409
"hu": "Az inaktív eszközök automatikus eltávolítása",
12410
"xloc": [
12405
- "default.handlebars->47->2276"
12411
+ "default.handlebars->47->2278"
12412
]
12413
},
12414
{
@@ -12429,7 +12435,7 @@
12435
"zh-cht": "可用內存",
12436
"hu": "Elérhető memória",
12437
"xloc": [
12432
- "default.handlebars->47->3273"
12438
+ "default.handlebars->47->3275"
12439
]
12440
},
12441
{
@@ -12457,7 +12463,7 @@
12463
"hu": "azerbajdzsáni",
12464
"xloc": [
12465
"default-mobile.handlebars->11->127",
12460
- "default.handlebars->47->1816",
12466
+ "default.handlebars->47->1818",
12467
"login2.handlebars->7->24"
12468
]
12469
},
@@ -12485,9 +12491,9 @@
12491
"zh-cht": "壞的",
12492
"hu": "Rossz",
12493
"xloc": [
12488
- "default-mobile.handlebars->11->733",
12489
- "default-mobile.handlebars->11->737",
12490
- "default-mobile.handlebars->11->741",
12494
+ "default-mobile.handlebars->11->734",
12495
+ "default-mobile.handlebars->11->738",
12496
+ "default-mobile.handlebars->11->742",
12497
"default.handlebars->47->925",
12498
"default.handlebars->47->929",
12499
"default.handlebars->47->933"
@@ -12517,8 +12523,8 @@
12523
"zh-cht": "的BIOS",
12524
"hu": "BIOS",
12525
"xloc": [
12520
- "default-mobile.handlebars->11->808",
12521
- "default.handlebars->47->1646"
12526
+ "default-mobile.handlebars->11->809",
12527
+ "default.handlebars->47->1648"
12528
]
12529
},
12530
{
@@ -12635,7 +12641,7 @@
12641
"zh-cht": "退格",
12642
"hu": "BackSpace",
12643
"xloc": [
12638
- "default-mobile.handlebars->11->623",
12644
+ "default-mobile.handlebars->11->624",
12645
"default.handlebars->47->1389"
12646
]
12647
},
@@ -12691,8 +12697,8 @@
12697
"zh-cht": "背景與互動",
12698
"hu": "Háttérben és interaktív módon",
12699
"xloc": [
12694
- "default.handlebars->47->2375",
12695
- "default.handlebars->47->2382",
12700
+ "default.handlebars->47->2377",
12701
+ "default.handlebars->47->2384",
12702
"default.handlebars->47->560",
12703
"default.handlebars->47->581"
12704
]
@@ -12722,8 +12728,8 @@
12728
"hu": "Csak háttérben",
12729
"xloc": [
12730
"agentinvite.handlebars->3->9",
12725
- "default.handlebars->47->2376",
12726
- "default.handlebars->47->2383",
12731
+ "default.handlebars->47->2378",
12732
+ "default.handlebars->47->2385",
12733
"default.handlebars->47->561",
12734
"default.handlebars->47->582",
12735
"default.handlebars->47->599"
@@ -12781,8 +12787,8 @@
12787
"zh-cht": "備用碼",
12788
"hu": "Biztonsági kódok generálva",
12789
"xloc": [
12784
- "default.handlebars->47->2933",
12785
- "default.handlebars->47->3160"
12790
+ "default.handlebars->47->2935",
12791
+ "default.handlebars->47->3162"
12792
]
12793
},
12794
{
@@ -12864,7 +12870,7 @@
12870
"zh-cht": "錯誤的簽名",
12871
"hu": "Rossz aláírás",
12872
"xloc": [
12867
- "default.handlebars->47->3255"
12873
+ "default.handlebars->47->3257"
12874
]
12875
},
12876
{
@@ -12891,7 +12897,7 @@
12897
"zh-cht": "錯誤的網絡憑證",
12898
"hu": "Rossz web tanúsítvány",
12899
"xloc": [
12894
- "default.handlebars->47->3254"
12900
+ "default.handlebars->47->3256"
12901
]
12902
},
12903
{
@@ -12919,7 +12925,7 @@
12925
"hu": "baszk",
12926
"xloc": [
12927
"default-mobile.handlebars->11->128",
12922
- "default.handlebars->47->1817",
12928
+ "default.handlebars->47->1819",
12929
"login2.handlebars->7->25"
12930
]
12931
},
@@ -13009,7 +13015,7 @@
13015
"zh-cht": "將{0}個文件批量上傳到文件夾{1}",
13016
"hu": "{0} fájl kötegelt feltöltése a(z) {1} mappába",
13017
"xloc": [
13012
- "default.handlebars->47->2572"
13018
+ "default.handlebars->47->2574"
13019
]
13020
},
13021
{
@@ -13037,7 +13043,7 @@
13043
"hu": "fehérorosz",
13044
"xloc": [
13045
"default-mobile.handlebars->11->130",
13040
- "default.handlebars->47->1819",
13046
+ "default.handlebars->47->1821",
13047
"login2.handlebars->7->27"
13048
]
13049
},
@@ -13066,7 +13072,7 @@
13072
"hu": "bengáli",
13073
"xloc": [
13074
"default-mobile.handlebars->11->131",
13069
- "default.handlebars->47->1820",
13075
+ "default.handlebars->47->1822",
13076
"login2.handlebars->7->28"
13077
]
13078
},
@@ -13128,8 +13134,8 @@
13134
"en": "BitLocker",
13135
"nl": "BitLocker",
13136
"xloc": [
13131
- "default-mobile.handlebars->11->864",
13132
- "default.handlebars->47->1702"
13137
+ "default-mobile.handlebars->11->865",
13138
+ "default.handlebars->47->1704"
13139
]
13140
},
13141
{
@@ -13137,8 +13143,8 @@
13143
"nl": "BitLocker informatie",
13144
"pl": "Informacje o BitLocker",
13145
"xloc": [
13140
- "default-mobile.handlebars->11->871",
13141
- "default.handlebars->47->1709"
13146
+ "default-mobile.handlebars->11->872",
13147
+ "default.handlebars->47->1711"
13148
]
13149
},
13150
{
@@ -13165,8 +13171,8 @@
13171
"zh-cht": "引導加載程序",
13172
"hu": "Rendszerbetöltő",
13173
"xloc": [
13168
- "default-mobile.handlebars->11->768",
13169
- "default.handlebars->47->1596"
13174
+ "default-mobile.handlebars->11->769",
13175
+ "default.handlebars->47->1598"
13176
]
13177
},
13178
{
@@ -13194,7 +13200,7 @@
13200
"hu": "bosznia",
13201
"xloc": [
13202
"default-mobile.handlebars->11->132",
13197
- "default.handlebars->47->1821",
13203
+ "default.handlebars->47->1823",
13204
"login2.handlebars->7->29"
13205
]
13206
},
@@ -13223,7 +13229,7 @@
13229
"hu": "breton",
13230
"xloc": [
13231
"default-mobile.handlebars->11->133",
13226
- "default.handlebars->47->1822",
13232
+ "default.handlebars->47->1824",
13233
"login2.handlebars->7->30"
13234
]
13235
},
@@ -13251,7 +13257,7 @@
13257
"zh-cht": "廣播",
13258
"hu": "Broadcast üzenet...",
13259
"xloc": [
13254
- "default.handlebars->47->2828",
13260
+ "default.handlebars->47->2830",
13261
"default.handlebars->container->column_l->p4->3->1->0->3->1"
13262
]
13263
},
@@ -13279,7 +13285,7 @@
13285
"zh-cht": "廣播消息",
13286
"hu": "Broadcast üzenet",
13287
"xloc": [
13282
- "default.handlebars->47->2744"
13288
+ "default.handlebars->47->2746"
13289
]
13290
},
13291
{
@@ -13306,7 +13312,7 @@
13312
"zh-cht": "向所有連接的用戶廣播消息。",
13313
"hu": "Üzenet küldése az összes csatlakoztatott felhasználónak.",
13314
"xloc": [
13309
- "default.handlebars->47->2739"
13315
+ "default.handlebars->47->2741"
13316
]
13317
},
13318
{
@@ -13333,7 +13339,7 @@
13339
"zh-cht": "瀏覽器",
13340
"hu": "Böngésző",
13341
"xloc": [
13336
- "default.handlebars->47->3134"
13342
+ "default.handlebars->47->3136"
13343
]
13344
},
13345
{
@@ -13416,7 +13422,7 @@
13422
"hu": "bolgár",
13423
"xloc": [
13424
"default-mobile.handlebars->11->129",
13419
- "default.handlebars->47->1818",
13425
+ "default.handlebars->47->1820",
13426
"login2.handlebars->7->26"
13427
]
13428
},
@@ -13445,7 +13451,7 @@
13451
"hu": "burmai",
13452
"xloc": [
13453
"default-mobile.handlebars->11->134",
13448
- "default.handlebars->47->1823",
13454
+ "default.handlebars->47->1825",
13455
"login2.handlebars->7->31"
13456
]
13457
},
@@ -13473,7 +13479,7 @@
13479
"zh-cht": "默認情況下,非活動設備將在 1 天后移除。",
13480
"hu": "Alapértelmezés szerint az inaktív eszközök 1 nap után eltávolításra kerülnek.",
13481
"xloc": [
13476
- "default.handlebars->47->2278"
13482
+ "default.handlebars->47->2280"
13483
]
13484
},
13485
{
@@ -13500,7 +13506,7 @@
13506
"zh-cht": "默認情況下,不活動的設備將在 {0} 天后被移除。",
13507
"hu": "Alapértelmezés szerint az inaktív eszközök {0} nap után eltávolításra kerülnek.",
13508
"xloc": [
13503
- "default.handlebars->47->2279"
13509
+ "default.handlebars->47->2281"
13510
]
13511
},
13512
{
@@ -13536,7 +13542,7 @@
13542
"zh-cht": "字節輸入",
13543
"hu": "Fogadott Byte-ok",
13544
"xloc": [
13539
- "default.handlebars->47->3130"
13545
+ "default.handlebars->47->3132"
13546
]
13547
},
13548
{
@@ -13563,7 +13569,7 @@
13569
"zh-cht": "字節輸出",
13570
"hu": "Küldött Byte-ok",
13571
"xloc": [
13566
- "default.handlebars->47->3131"
13572
+ "default.handlebars->47->3133"
13573
]
13574
},
13575
{
@@ -13661,15 +13667,15 @@
13667
"zh-cht": "CCM模式",
13668
"hu": "CCM mode",
13669
"xloc": [
13664
- "default.handlebars->47->2231"
13670
+ "default.handlebars->47->2233"
13671
]
13672
},
13673
{
13674
"en": "CD-ROM",
13675
"nl": "CD-ROM",
13676
"xloc": [
13671
- "default-mobile.handlebars->11->857",
13672
- "default.handlebars->47->1695"
13677
+ "default-mobile.handlebars->11->858",
13678
+ "default.handlebars->47->1697"
13679
]
13680
},
13681
{
@@ -13697,7 +13703,7 @@
13703
"hu": "CIRA",
13704
"xloc": [
13705
"default-mobile.handlebars->11->464",
13700
- "default.handlebars->47->3280",
13706
+ "default.handlebars->47->3282",
13707
"default.handlebars->47->407",
13708
"default.handlebars->47->708"
13709
]
@@ -13726,7 +13732,7 @@
13732
"zh-cht": "CIRA伺服器",
13733
"hu": "CIRA Kiszolgáló",
13734
"xloc": [
13729
- "default.handlebars->47->3328"
13735
+ "default.handlebars->47->3330"
13736
]
13737
},
13738
{
@@ -13753,7 +13759,7 @@
13759
"zh-cht": "CIRA伺服器指令",
13760
"hu": "CIRA kiszolgáló parancsok",
13761
"xloc": [
13756
- "default.handlebars->47->3329"
13762
+ "default.handlebars->47->3331"
13763
]
13764
},
13765
{
@@ -13807,7 +13813,7 @@
13813
"zh-cht": "CIRA設置",
13814
"hu": "CIRA beállítás",
13815
"xloc": [
13810
- "default.handlebars->47->2239"
13816
+ "default.handlebars->47->2241"
13817
]
13818
},
13819
{
@@ -13834,10 +13840,10 @@
13840
"zh-cht": "CPU",
13841
"hu": "CPU",
13842
"xloc": [
13837
- "default-mobile.handlebars->11->814",
13838
- "default.handlebars->47->1572",
13839
- "default.handlebars->47->1652",
13840
- "default.handlebars->47->3304",
13843
+ "default-mobile.handlebars->11->815",
13844
+ "default.handlebars->47->1574",
13845
+ "default.handlebars->47->1654",
13846
+ "default.handlebars->47->3306",
13847
"default.handlebars->container->column_l->p40->3->1->p40type->5"
13848
]
13849
},
@@ -13865,7 +13871,7 @@
13871
"zh-cht": "CPU負載",
13872
"hu": "CPU terhelés",
13873
"xloc": [
13868
- "default.handlebars->47->3269"
13874
+ "default.handlebars->47->3271"
13875
]
13876
},
13877
{
@@ -13892,7 +13898,7 @@
13898
"zh-cht": "最近15分鐘的CPU負載",
13899
"hu": "CPU terhelés az elmúlt 15 percben",
13900
"xloc": [
13895
- "default.handlebars->47->3272"
13901
+ "default.handlebars->47->3274"
13902
]
13903
},
13904
{
@@ -13919,7 +13925,7 @@
13925
"zh-cht": "最近5分鐘的CPU負載",
13926
"hu": "CPU terhelés az elmúlt 5 percben",
13927
"xloc": [
13922
- "default.handlebars->47->3271"
13928
+ "default.handlebars->47->3273"
13929
]
13930
},
13931
{
@@ -13946,7 +13952,7 @@
13952
"zh-cht": "最近一分鐘的CPU負載",
13953
"hu": "CPU terhelés az utolsó percben",
13954
"xloc": [
13949
- "default.handlebars->47->3270"
13955
+ "default.handlebars->47->3272"
13956
]
13957
},
13958
{
@@ -14005,7 +14011,7 @@
14011
"zh-cht": "CSV",
14012
"hu": "CSV",
14013
"xloc": [
14008
- "default.handlebars->47->2650"
14014
+ "default.handlebars->47->2652"
14015
]
14016
},
14017
{
@@ -14032,15 +14038,15 @@
14038
"zh-cht": "CSV格式",
14039
"hu": "CSV Formátum",
14040
"xloc": [
14035
- "default.handlebars->47->2654",
14036
- "default.handlebars->47->2731",
14041
+ "default.handlebars->47->2656",
14042
+ "default.handlebars->47->2733",
14043
"default.handlebars->47->779"
14044
]
14045
},
14046
{
14047
"en": "CSV file format is as follows:",
14048
"xloc": [
14043
- "default.handlebars->47->2717"
14049
+ "default.handlebars->47->2719"
14050
]
14051
},
14052
{
@@ -14091,7 +14097,7 @@
14097
"zh-cht": "呼叫錯誤",
14098
"hu": "Hívás hiba",
14099
"xloc": [
14094
- "default.handlebars->47->3345"
14100
+ "default.handlebars->47->3347"
14101
]
14102
},
14103
{
@@ -14102,8 +14108,8 @@
14108
"pl": "CallMeBot",
14109
"es": "CallMeBot",
14110
"xloc": [
14105
- "default.handlebars->47->1745",
14106
- "default.handlebars->47->2968"
14111
+ "default.handlebars->47->1747",
14112
+ "default.handlebars->47->2970"
14113
]
14114
},
14115
{
@@ -14160,8 +14166,8 @@
14166
"agent-translations.json",
14167
"default-mobile.handlebars->11->320",
14168
"default-mobile.handlebars->dialog->idx_dlgButtonBar",
14163
- "default.handlebars->47->2095",
14164
- "default.handlebars->47->3334",
14169
+ "default.handlebars->47->2097",
14170
+ "default.handlebars->47->3336",
14171
"default.handlebars->47->533",
14172
"default.handlebars->container->dialog->idx_dlgButtonBar",
14173
"login-mobile.handlebars->dialog->idx_dlgButtonBar",
@@ -14272,18 +14278,18 @@
14278
"zh-cht": "容量",
14279
"hu": "Kapacitás",
14280
"xloc": [
14275
- "default-mobile.handlebars->11->832",
14276
- "default-mobile.handlebars->11->838",
14277
- "default-mobile.handlebars->11->844",
14278
- "default-mobile.handlebars->11->849",
14279
- "default-mobile.handlebars->11->851",
14280
- "default-mobile.handlebars->11->854",
14281
- "default.handlebars->47->1670",
14282
- "default.handlebars->47->1676",
14283
- "default.handlebars->47->1682",
14284
- "default.handlebars->47->1687",
14281
+ "default-mobile.handlebars->11->833",
14282
+ "default-mobile.handlebars->11->839",
14283
+ "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->1672",
14288
+ "default.handlebars->47->1678",
14289
+ "default.handlebars->47->1684",
14290
"default.handlebars->47->1689",
14286
- "default.handlebars->47->1692"
14291
+ "default.handlebars->47->1691",
14292
+ "default.handlebars->47->1694"
14293
]
14294
},
14295
{
@@ -14310,20 +14316,20 @@
14316
"zh-cht": "容量/速度",
14317
"hu": "Kapacitás / Sebesség",
14318
"xloc": [
14313
- "default-mobile.handlebars->11->830",
14314
- "default-mobile.handlebars->11->836",
14315
- "default-mobile.handlebars->11->842",
14316
- "default.handlebars->47->1668",
14317
- "default.handlebars->47->1674",
14318
- "default.handlebars->47->1680"
14319
+ "default-mobile.handlebars->11->831",
14320
+ "default-mobile.handlebars->11->837",
14321
+ "default-mobile.handlebars->11->843",
14322
+ "default.handlebars->47->1670",
14323
+ "default.handlebars->47->1676",
14324
+ "default.handlebars->47->1682"
14325
]
14326
},
14327
{
14328
"en": "Capacity Remaining",
14329
"nl": "Resterende capaciteit",
14330
"xloc": [
14325
- "default-mobile.handlebars->11->855",
14326
- "default.handlebars->47->1693"
14331
+ "default-mobile.handlebars->11->856",
14332
+ "default.handlebars->47->1695"
14333
]
14334
},
14335
{
@@ -14351,7 +14357,7 @@
14357
"hu": "katalán",
14358
"xloc": [
14359
"default-mobile.handlebars->11->135",
14354
- "default.handlebars->47->1824",
14360
+ "default.handlebars->47->1826",
14361
"login2.handlebars->7->32"
14362
]
14363
},
@@ -14460,7 +14466,7 @@
14466
"hu": "chamorro",
14467
"xloc": [
14468
"default-mobile.handlebars->11->136",
14463
- "default.handlebars->47->1825",
14469
+ "default.handlebars->47->1827",
14470
"login2.handlebars->7->33"
14471
]
14472
},
@@ -14517,7 +14523,7 @@
14523
"zh-cht": "更改{0}的電郵",
14524
"hu": "{0} e-mail-címének módosítása",
14525
"xloc": [
14520
- "default.handlebars->47->3010"
14526
+ "default.handlebars->47->3012"
14527
]
14528
},
14529
{
@@ -14582,8 +14588,8 @@
14588
"hu": "Jelszó módosítása",
14589
"xloc": [
14590
"default-mobile.handlebars->11->328",
14585
- "default.handlebars->47->2041",
14586
- "default.handlebars->47->2954"
14591
+ "default.handlebars->47->2043",
14592
+ "default.handlebars->47->2956"
14593
]
14594
},
14595
{
@@ -14610,7 +14616,7 @@
14616
"zh-cht": "更改{0}的密碼",
14617
"hu": "Jelszó módosítása: {0}",
14618
"xloc": [
14613
- "default.handlebars->47->3019"
14619
+ "default.handlebars->47->3021"
14620
]
14621
},
14622
{
@@ -14637,7 +14643,7 @@
14643
"zh-cht": "更改{0}的真實名稱",
14644
"hu": "{0} felhasználó teljes nevének módosítása",
14645
"xloc": [
14640
- "default.handlebars->47->3005"
14646
+ "default.handlebars->47->3007"
14647
]
14648
},
14649
{
@@ -14798,7 +14804,7 @@
14804
"zh-cht": "更改該用戶的密碼",
14805
"hu": "A felhasználó jelszavának módosítása",
14806
"xloc": [
14801
- "default.handlebars->47->2953"
14807
+ "default.handlebars->47->2955"
14808
]
14809
},
14810
{
@@ -14852,7 +14858,7 @@
14858
"zh-cht": "在此處更改你的帳戶電郵地址。",
14859
"hu": "Itt módosíthatja fiókja e-mail címét.",
14860
"xloc": [
14855
- "default.handlebars->47->2028"
14861
+ "default.handlebars->47->2030"
14862
]
14863
},
14864
{
@@ -14879,7 +14885,7 @@
14885
"zh-cht": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。",
14886
"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.",
14887
"xloc": [
14882
- "default.handlebars->47->2034"
14888
+ "default.handlebars->47->2036"
14889
]
14890
},
14891
{
@@ -14906,7 +14912,7 @@
14912
"zh-cht": "帳戶憑證已更改",
14913
"hu": "A fiók hitelesítő adatai megváltoztak",
14914
"xloc": [
14909
- "default.handlebars->47->2544"
14915
+ "default.handlebars->47->2546"
14916
]
14917
},
14918
{
@@ -14933,7 +14939,7 @@
14939
"zh-cht": "將帳戶顯示名稱更改為 {0}。",
14940
"hu": "A fiók megjelenített neve {0}-re változott.",
14941
"xloc": [
14936
- "default.handlebars->47->2596"
14942
+ "default.handlebars->47->2598"
14943
]
14944
},
14945
{
@@ -14960,8 +14966,8 @@
14966
"zh-cht": "{1}組中的設備{0}已更改:{2}",
14967
"hu": "{0} eszközt a {1} csoportból áthelyezésre került {2} csoportba",
14968
"xloc": [
14963
- "default.handlebars->47->2528",
14964
- "default.handlebars->47->2609"
14969
+ "default.handlebars->47->2530",
14970
+ "default.handlebars->47->2611"
14971
]
14972
},
14973
{
@@ -14988,7 +14994,7 @@
14994
"zh-cht": "語言從{1}更改為{2}",
14995
"hu": "A nyelv megváltozott. régi nyelv: {1}, új nyelv: {2}",
14996
"xloc": [
14991
- "default.handlebars->47->2472"
14997
+ "default.handlebars->47->2474"
14998
]
14999
},
15000
{
@@ -15015,8 +15021,8 @@
15021
"zh-cht": "已更改{0}的用戶設備權限",
15022
"hu": "Módosult a(z) {0} felhasználói eszközjogai",
15023
"xloc": [
15018
- "default.handlebars->47->2530",
15019
- "default.handlebars->47->2551"
15024
+ "default.handlebars->47->2532",
15025
+ "default.handlebars->47->2553"
15026
]
15027
},
15028
{
@@ -15068,7 +15074,7 @@
15074
"hu": "A nyelv megváltoztatásához az oldal frissítése szükséges!",
15075
"xloc": [
15076
"default-mobile.handlebars->11->303",
15071
- "default.handlebars->47->1992"
15077
+ "default.handlebars->47->1994"
15078
]
15079
},
15080
{
@@ -15098,9 +15104,9 @@
15104
"default.handlebars->47->1005",
15105
"default.handlebars->47->1124",
15106
"default.handlebars->47->1149",
15101
- "default.handlebars->47->2671",
15102
- "default.handlebars->47->2949",
15103
- "default.handlebars->47->2950"
15107
+ "default.handlebars->47->2673",
15108
+ "default.handlebars->47->2951",
15109
+ "default.handlebars->47->2952"
15110
]
15111
},
15112
{
@@ -15127,10 +15133,10 @@
15133
"zh-cht": "聊天並通知",
15134
"hu": "Csevegés és Értesítés",
15135
"xloc": [
15130
- "default-mobile.handlebars->11->943",
15131
- "default-mobile.handlebars->11->963",
15132
- "default.handlebars->47->2310",
15133
- "default.handlebars->47->2348"
15136
+ "default-mobile.handlebars->11->944",
15137
+ "default-mobile.handlebars->11->964",
15138
+ "default.handlebars->47->2312",
15139
+ "default.handlebars->47->2350"
15140
]
15141
},
15142
{
@@ -15157,8 +15163,8 @@
15163
"zh-cht": "聊天請求,點擊這裡接受。",
15164
"hu": "Csevegés kezdeményezés, kattintson ide az elfogadáshoz.",
15165
"xloc": [
15160
- "default-mobile.handlebars->11->995",
15161
- "default.handlebars->47->3219"
15166
+ "default-mobile.handlebars->11->996",
15167
+ "default.handlebars->47->3221"
15168
]
15169
},
15170
{
@@ -15213,7 +15219,7 @@
15219
"hu": "csecsen",
15220
"xloc": [
15221
"default-mobile.handlebars->11->137",
15216
- "default.handlebars->47->1826",
15222
+ "default.handlebars->47->1828",
15223
"login2.handlebars->7->34"
15224
]
15225
},
@@ -15361,8 +15367,8 @@
15367
"zh-cht": "檢查...",
15368
"hu": "Ellenőrzés...",
15369
"xloc": [
15364
- "default.handlebars->47->1792",
15365
- "default.handlebars->47->3339"
15370
+ "default.handlebars->47->1794",
15371
+ "default.handlebars->47->3341"
15372
]
15373
},
15374
{
@@ -15390,7 +15396,7 @@
15396
"hu": "kínai",
15397
"xloc": [
15398
"default-mobile.handlebars->11->138",
15393
- "default.handlebars->47->1827",
15399
+ "default.handlebars->47->1829",
15400
"login2.handlebars->7->35"
15401
]
15402
},
@@ -15419,7 +15425,7 @@
15425
"hu": "kínai (Hongkong)",
15426
"xloc": [
15427
"default-mobile.handlebars->11->139",
15422
- "default.handlebars->47->1828",
15428
+ "default.handlebars->47->1830",
15429
"login2.handlebars->7->36"
15430
]
15431
},
@@ -15448,7 +15454,7 @@
15454
"hu": "kínai (Kínai Népköztársaság)",
15455
"xloc": [
15456
"default-mobile.handlebars->11->140",
15451
- "default.handlebars->47->1829",
15457
+ "default.handlebars->47->1831",
15458
"login2.handlebars->7->37"
15459
]
15460
},
@@ -15477,7 +15483,7 @@
15483
"hu": "kínai (egyszerűsített)",
15484
"xloc": [
15485
"default-mobile.handlebars->11->300",
15480
- "default.handlebars->47->1989",
15486
+ "default.handlebars->47->1991",
15487
"login2.handlebars->7->197"
15488
]
15489
},
@@ -15506,7 +15512,7 @@
15512
"hu": "kínai (Szingapúr)",
15513
"xloc": [
15514
"default-mobile.handlebars->11->141",
15509
- "default.handlebars->47->1830",
15515
+ "default.handlebars->47->1832",
15516
"login2.handlebars->7->38"
15517
]
15518
},
@@ -15535,7 +15541,7 @@
15541
"hu": "kínai (Tajvan)",
15542
"xloc": [
15543
"default-mobile.handlebars->11->142",
15538
- "default.handlebars->47->1831",
15544
+ "default.handlebars->47->1833",
15545
"login2.handlebars->7->39"
15546
]
15547
},
@@ -15564,7 +15570,7 @@
15570
"hu": "kínai (hagyományos)",
15571
"xloc": [
15572
"default-mobile.handlebars->11->301",
15567
- "default.handlebars->47->1990",
15573
+ "default.handlebars->47->1992",
15574
"login2.handlebars->7->198"
15575
]
15576
},
@@ -15621,7 +15627,7 @@
15627
"hu": "csuvas",
15628
"xloc": [
15629
"default-mobile.handlebars->11->143",
15624
- "default.handlebars->47->1832",
15630
+ "default.handlebars->47->1834",
15631
"login2.handlebars->7->40"
15632
]
15633
},
@@ -15674,17 +15680,17 @@
15680
"hu": "Törlés",
15681
"xloc": [
15682
"default-mobile.handlebars->11->370",
15677
- "default-mobile.handlebars->11->706",
15678
- "default-mobile.handlebars->11->708",
15679
- "default-mobile.handlebars->11->710",
15680
- "default-mobile.handlebars->11->712",
15683
+ "default-mobile.handlebars->11->707",
15684
+ "default-mobile.handlebars->11->709",
15685
+ "default-mobile.handlebars->11->711",
15686
+ "default-mobile.handlebars->11->713",
15687
"default-mobile.handlebars->11->80",
15688
"default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->5",
15683
- "default.handlebars->47->1548",
15689
"default.handlebars->47->1550",
15690
"default.handlebars->47->1552",
15691
"default.handlebars->47->1554",
15687
- "default.handlebars->47->2466",
15692
+ "default.handlebars->47->1556",
15693
+ "default.handlebars->47->2468",
15694
"default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7",
15695
"default.handlebars->container->column_l->p41->3->1",
15696
"messenger.handlebars->xbottom->1->1->0->5",
@@ -15718,7 +15724,7 @@
15724
"zh-cht": "清除 RDP 憑據?",
15725
"hu": "RDP hitelesítő adatok törlése?",
15726
"xloc": [
15721
- "default-mobile.handlebars->11->608",
15727
+ "default-mobile.handlebars->11->609",
15728
"default.handlebars->47->1342"
15729
]
15730
},
@@ -15746,7 +15752,7 @@
15752
"zh-cht": "清除 SSH 憑據?",
15753
"hu": "SSH hitelesítő adatok törlése?",
15754
"xloc": [
15749
- "default-mobile.handlebars->11->606",
15755
+ "default-mobile.handlebars->11->607",
15756
"default.handlebars->47->1340"
15757
]
15758
},
@@ -15856,8 +15862,8 @@
15862
"zh-cht": "全部清除",
15863
"hu": "Összes törlése",
15864
"xloc": [
15859
- "default-mobile.handlebars->11->978",
15860
- "default.handlebars->47->3202"
15865
+ "default-mobile.handlebars->11->979",
15866
+ "default.handlebars->47->3204"
15867
]
15868
},
15869
{
@@ -15912,8 +15918,8 @@
15918
"zh-cht": "清除核心",
15919
"hu": "Core törlése",
15920
"xloc": [
15915
- "default-mobile.handlebars->11->883",
15916
- "default.handlebars->47->1722"
15921
+ "default-mobile.handlebars->11->884",
15922
+ "default.handlebars->47->1724"
15923
]
15924
},
15925
{
@@ -15967,8 +15973,8 @@
15973
"zh-cht": "清除此通知",
15974
"hu": "Törölje ezt az értesítést",
15975
"xloc": [
15970
- "default-mobile.handlebars->11->977",
15971
- "default.handlebars->47->3201"
15976
+ "default-mobile.handlebars->11->978",
15977
+ "default.handlebars->47->3203"
15978
]
15979
},
15980
{
@@ -16076,8 +16082,8 @@
16082
"zh-cht": "單擊此處編輯裝置群名稱",
16083
"hu": "Kattintson ide az eszközcsoport nevének szerkesztéséhez",
16084
"xloc": [
16079
- "default.handlebars->47->2109",
16080
- "default.handlebars->47->2409"
16085
+ "default.handlebars->47->2111",
16086
+ "default.handlebars->47->2411"
16087
]
16088
},
16089
{
@@ -16131,7 +16137,7 @@
16137
"zh-cht": "單擊此處編輯用戶群名稱",
16138
"hu": "Kattintson ide a felhasználói csoport nevének szerkesztéséhez",
16139
"xloc": [
16134
- "default.handlebars->47->2801"
16140
+ "default.handlebars->47->2803"
16141
]
16142
},
16143
{
@@ -16266,7 +16272,7 @@
16272
"hu": "Kattintson az OK gombra, ha megerősítő e-mailt szeretne küldeni a következő címre:",
16273
"xloc": [
16274
"default-mobile.handlebars->11->313",
16269
- "default.handlebars->47->2025"
16275
+ "default.handlebars->47->2027"
16276
]
16277
},
16278
{
@@ -16372,8 +16378,8 @@
16378
"zh-cht": "客戶端控制模式(CCM)",
16379
"hu": "Client Control Mode (CCM)",
16380
"xloc": [
16375
- "default-mobile.handlebars->11->792",
16376
- "default.handlebars->47->1630"
16381
+ "default-mobile.handlebars->11->793",
16382
+ "default.handlebars->47->1632"
16383
]
16384
},
16385
{
@@ -16400,7 +16406,7 @@
16406
"zh-cht": "客戶編號",
16407
"hu": "Client ID",
16408
"xloc": [
16403
- "default.handlebars->47->2088"
16409
+ "default.handlebars->47->2090"
16410
]
16411
},
16412
{
@@ -16427,7 +16433,7 @@
16433
"zh-cht": "客戶端啟動的遠程訪問",
16434
"hu": "Ügyfél által kezdeményezett távoli elérés",
16435
"xloc": [
16430
- "default.handlebars->47->2238"
16436
+ "default.handlebars->47->2240"
16437
]
16438
},
16439
{
@@ -16454,7 +16460,7 @@
16460
"zh-cht": "客戶機密",
16461
"hu": "Client Secret",
16462
"xloc": [
16457
- "default.handlebars->47->2089"
16463
+ "default.handlebars->47->2091"
16464
]
16465
},
16466
{
@@ -16512,10 +16518,10 @@
16518
"agent-translations.json",
16519
"default-mobile.handlebars->11->78",
16520
"default.handlebars->47->1453",
16515
- "default.handlebars->47->1523",
16521
+ "default.handlebars->47->1525",
16522
"default.handlebars->47->228",
16523
"default.handlebars->47->236",
16518
- "default.handlebars->47->3333",
16524
+ "default.handlebars->47->3335",
16525
"sharing.handlebars->11->52"
16526
]
16527
},
@@ -16543,7 +16549,7 @@
16549
"zh-cht": "已關閉桌面多路復用會話 \\\"{0}\\\",{1} 秒",
16550
"hu": "Lezárt asztali multiplex munkamenet \\\"{0}\\\", {1} másodperc",
16551
"xloc": [
16546
- "default.handlebars->47->2616"
16552
+ "default.handlebars->47->2618"
16553
]
16554
},
16555
{
@@ -16570,7 +16576,7 @@
16576
"zh-cht": "封閉式桌面多路復用會話,{0}秒",
16577
"hu": "Lezárt asztali multiplex munkamenet, {0} másodperc",
16578
"xloc": [
16573
- "default.handlebars->47->2477"
16579
+ "default.handlebars->47->2479"
16580
]
16581
},
16582
{
@@ -16760,10 +16766,10 @@
16766
"zh-cht": "指令",
16767
"hu": "Parancsok",
16768
"xloc": [
16763
- "default-mobile.handlebars->11->965",
16769
+ "default-mobile.handlebars->11->966",
16770
"default.handlebars->47->1126",
16771
"default.handlebars->47->1151",
16766
- "default.handlebars->47->2350"
16772
+ "default.handlebars->47->2352"
16773
]
16774
},
16775
{
@@ -16832,8 +16838,8 @@
16838
"zh-cht": "通用裝置群",
16839
"hu": "Eszközcsoport jogosultságok",
16840
"xloc": [
16835
- "default.handlebars->47->2836",
16836
- "default.handlebars->47->3024"
16841
+ "default.handlebars->47->2838",
16842
+ "default.handlebars->47->3026"
16843
]
16844
},
16845
{
@@ -16860,8 +16866,8 @@
16866
"zh-cht": "通用裝置",
16867
"hu": "Eszköz jogosultságok",
16868
"xloc": [
16863
- "default.handlebars->47->2842",
16864
- "default.handlebars->47->3036"
16869
+ "default.handlebars->47->2844",
16870
+ "default.handlebars->47->3038"
16871
]
16872
},
16873
{
@@ -16888,8 +16894,8 @@
16894
"zh-cht": "編譯時間",
16895
"hu": "Fordítás ideje",
16896
"xloc": [
16891
- "default-mobile.handlebars->11->764",
16892
- "default.handlebars->47->1592"
16897
+ "default-mobile.handlebars->11->765",
16898
+ "default.handlebars->47->1594"
16899
]
16900
},
16901
{
@@ -16978,7 +16984,7 @@
16984
"de": "Aufzeichnungen von Konfigurationsdatei",
16985
"es": "Registro de archivos de configuracion",
16986
"xloc": [
16981
- "default.handlebars->47->3178"
16987
+ "default.handlebars->47->3180"
16988
]
16989
},
16990
{
@@ -17005,15 +17011,15 @@
17011
"zh-cht": "確認",
17012
"hu": "Megerősít",
17013
"xloc": [
17008
- "default-mobile.handlebars->11->603",
17009
- "default-mobile.handlebars->11->914",
17014
+ "default-mobile.handlebars->11->604",
17015
+ "default-mobile.handlebars->11->915",
17016
"default.handlebars->47->1291",
17017
"default.handlebars->47->1300",
17012
- "default.handlebars->47->2249",
17013
- "default.handlebars->47->2701",
17014
- "default.handlebars->47->2791",
17015
- "default.handlebars->47->2858",
17016
- "default.handlebars->47->3022",
17018
+ "default.handlebars->47->2251",
17019
+ "default.handlebars->47->2703",
17020
+ "default.handlebars->47->2793",
17021
+ "default.handlebars->47->2860",
17022
+ "default.handlebars->47->3024",
17023
"default.handlebars->47->743"
17024
]
17025
},
@@ -17065,8 +17071,8 @@
17071
"zh-cht": "確認將1個副本複製到此位置?",
17072
"hu": "Megerősíti 1 bejegyzés másolatát erre a helyre?",
17073
"xloc": [
17068
- "default-mobile.handlebars->11->701",
17069
- "default.handlebars->47->1543",
17074
+ "default-mobile.handlebars->11->702",
17075
+ "default.handlebars->47->1545",
17076
"sharing.handlebars->11->70"
17077
]
17078
},
@@ -17094,7 +17100,7 @@
17100
"zh-cht": "確認{0}個條目的複製到此位置?",
17101
"hu": "Megerősíti a {0} bejegyzések másolását erre a helyre?",
17102
"xloc": [
17097
- "default.handlebars->47->1542",
17103
+ "default.handlebars->47->1544",
17104
"sharing.handlebars->11->69"
17105
]
17106
},
@@ -17122,7 +17128,7 @@
17128
"zh-cht": "確認{0}個條目的副本到此位置?",
17129
"hu": "Megerősíti a {0} bejegyzések másolását erre a helyre?",
17130
"xloc": [
17125
- "default-mobile.handlebars->11->700"
17131
+ "default-mobile.handlebars->11->701"
17132
]
17133
},
17134
{
@@ -17149,7 +17155,7 @@
17155
"zh-cht": "確認刪除所選帳戶?",
17156
"hu": "Megerősíti a kiválasztott fiók(ok) törlését?",
17157
"xloc": [
17152
- "default.handlebars->47->2700"
17158
+ "default.handlebars->47->2702"
17159
]
17160
},
17161
{
@@ -17200,7 +17206,7 @@
17206
"zh-cht": "確認刪除所選用戶群?",
17207
"hu": "Megerősíti a kiválasztott felhasználói csoport(ok) törlését?",
17208
"xloc": [
17203
- "default.handlebars->47->2790"
17209
+ "default.handlebars->47->2792"
17210
]
17211
},
17212
{
@@ -17227,7 +17233,7 @@
17233
"zh-cht": "確認刪除用戶{0}?",
17234
"hu": "Megerősíti a(z) {0} felhasználó törlését?",
17235
"xloc": [
17230
- "default.handlebars->47->3021"
17236
+ "default.handlebars->47->3023"
17237
]
17238
},
17239
{
@@ -17254,7 +17260,7 @@
17260
"zh-cht": "確認刪除用戶“ {0} ”的成員身份?",
17261
"hu": "Megerősíti a \\\"{0}\\\" felhasználó tagságának eltávolítását?",
17262
"xloc": [
17257
- "default.handlebars->47->2861"
17263
+ "default.handlebars->47->2863"
17264
]
17265
},
17266
{
@@ -17281,7 +17287,7 @@
17287
"zh-cht": "確認刪除用戶群“ {0} ”的成員身份?",
17288
"hu": "Megerősíti a \\\"{0}\\\" felhasználói csoport tagság eltávolítását?",
17289
"xloc": [
17284
- "default.handlebars->47->3053"
17290
+ "default.handlebars->47->3055"
17291
]
17292
},
17293
{
@@ -17308,8 +17314,8 @@
17314
"zh-cht": "確認將1個條目移動到此位置?",
17315
"hu": "Megerősíti 1 bejegyzés áthelyezését erre a helyre?",
17316
"xloc": [
17311
- "default-mobile.handlebars->11->703",
17312
- "default.handlebars->47->1545",
17317
+ "default-mobile.handlebars->11->704",
17318
+ "default.handlebars->47->1547",
17319
"sharing.handlebars->11->72"
17320
]
17321
},
@@ -17337,7 +17343,7 @@
17343
"zh-cht": "確認將{0}個條目移到該位置?",
17344
"hu": "Megerősíti {0} bejegyzés áthelyezését erre a helyre?",
17345
"xloc": [
17340
- "default.handlebars->47->1544",
17346
+ "default.handlebars->47->1546",
17347
"sharing.handlebars->11->71"
17348
]
17349
},
@@ -17365,7 +17371,7 @@
17371
"zh-cht": "確認將{0}個條目移到該位置?",
17372
"hu": "Megerősíti {0} bejegyzés áthelyezését erre a helyre?",
17373
"xloc": [
17368
- "default-mobile.handlebars->11->702"
17374
+ "default-mobile.handlebars->11->703"
17375
]
17376
},
17377
{
@@ -17392,7 +17398,7 @@
17398
"zh-cht": "確認覆蓋?",
17399
"hu": "Megerősíti a felülírást?",
17400
"xloc": [
17395
- "default.handlebars->47->2458"
17401
+ "default.handlebars->47->2460"
17402
]
17403
},
17404
{
@@ -17419,8 +17425,8 @@
17425
"zh-cht": "確認刪除裝置“ {0} ”的訪問權限?",
17426
"hu": "Megerősíti a \\\"{0}\\\" eszköz hozzáférési jogainak eltávolítását?",
17427
"xloc": [
17422
- "default.handlebars->47->2851",
17423
- "default.handlebars->47->3044"
17428
+ "default.handlebars->47->2853",
17429
+ "default.handlebars->47->3046"
17430
]
17431
},
17432
{
@@ -17447,8 +17453,8 @@
17453
"zh-cht": "確認刪除裝置群“ {0} ”的訪問權限?",
17454
"hu": "Megerősíti a \\\"{0}\\\" eszközcsoport hozzáférési jogainak eltávolítását?",
17455
"xloc": [
17450
- "default.handlebars->47->2853",
17451
- "default.handlebars->47->3057"
17456
+ "default.handlebars->47->2855",
17457
+ "default.handlebars->47->3059"
17458
]
17459
},
17460
{
@@ -17475,7 +17481,7 @@
17481
"zh-cht": "確認刪除用戶“ {0} ”的訪問權限?",
17482
"hu": "Megerősíti a \\\"{0}\\\" felhasználó hozzáférési jogainak eltávolítását?",
17483
"xloc": [
17478
- "default.handlebars->47->3046"
17484
+ "default.handlebars->47->3048"
17485
]
17486
},
17487
{
@@ -17502,7 +17508,7 @@
17508
"zh-cht": "確認刪除用戶群“ {0} ”的訪問權限?",
17509
"hu": "Megerősíti a \\\"{0}\\\" felhasználói csoport hozzáférési jogainak eltávolítását?",
17510
"xloc": [
17505
- "default.handlebars->47->3049"
17511
+ "default.handlebars->47->3051"
17512
]
17513
},
17514
{
@@ -17529,8 +17535,8 @@
17535
"zh-cht": "確認刪除訪問權限?",
17536
"hu": "Megerősíti a hozzáférési jogok eltávolítását?",
17537
"xloc": [
17532
- "default.handlebars->47->3047",
17533
- "default.handlebars->47->3050"
17538
+ "default.handlebars->47->3049",
17539
+ "default.handlebars->47->3052"
17540
]
17541
},
17542
{
@@ -17558,7 +17564,7 @@
17564
"hu": "Megerősíti a hitelesítő alkalmazás, kétlépcsős bejelentkezés eltávolítását?",
17565
"xloc": [
17566
"default-mobile.handlebars->11->312",
17561
- "default.handlebars->47->1775"
17567
+ "default.handlebars->47->1777"
17568
]
17569
},
17570
{
@@ -17609,7 +17615,7 @@
17615
"zh-cht": "確認刪除設備共享“{0}”?",
17616
"hu": "Megerősíti a(z) \\\"{0}\\\" eszközmegosztás eltávolítását?",
17617
"xloc": [
17612
- "default.handlebars->47->3042"
17618
+ "default.handlebars->47->3044"
17619
]
17620
},
17621
{
@@ -17684,7 +17690,7 @@
17690
"zh-cht": "確認移除推送認證設備?",
17691
"hu": "Megerősíti a Push-hitelesítési eszköz eltávolítását?",
17692
"xloc": [
17687
- "default.handlebars->47->1777"
17693
+ "default.handlebars->47->1779"
17694
]
17695
},
17696
{
@@ -17711,7 +17717,7 @@
17717
"zh-cht": "確認刪除用戶“ {0} ”的權限?",
17718
"hu": "Megerősíti a \\\"{0}\\\" felhasználó jogainak eltávolítását?",
17719
"xloc": [
17714
- "default.handlebars->47->2362"
17720
+ "default.handlebars->47->2364"
17721
]
17722
},
17723
{
@@ -17738,7 +17744,7 @@
17744
"zh-cht": "確認刪除用戶群“ {0} ”的權限?",
17745
"hu": "Megerősíti a \\\"{0}\\\" felhasználói csoport jogainak eltávolítását?",
17746
"xloc": [
17741
- "default.handlebars->47->2364"
17747
+ "default.handlebars->47->2366"
17748
]
17749
},
17750
{
@@ -17792,7 +17798,7 @@
17798
"zh-cht": "確認刪除此登錄令牌?",
17799
"hu": "Megerősíti ennek a bejelentkezési tokennek az eltávolítását?",
17800
"xloc": [
17795
- "default.handlebars->47->2081"
17801
+ "default.handlebars->47->2083"
17802
]
17803
},
17804
{
@@ -17843,7 +17849,7 @@
17849
"zh-cht": "確認刪除用戶{0}?",
17850
"hu": "Megerősíti a(z) {0} felhasználó eltávolítását?",
17851
"xloc": [
17846
- "default-mobile.handlebars->11->974"
17852
+ "default-mobile.handlebars->11->975"
17853
]
17854
},
17855
{
@@ -17898,7 +17904,7 @@
17904
"hu": "Megerősíti {0} / {1} bejegyzés {2} erre a helyre?",
17905
"xloc": [
17906
"default-mobile.handlebars->11->365",
17901
- "default.handlebars->47->2461"
17907
+ "default.handlebars->47->2463"
17908
]
17909
},
17910
{
@@ -17929,7 +17935,7 @@
17935
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
17936
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3",
17937
"default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea1->1->3->connectbutton2span",
17932
- "default.handlebars->47->2147",
17938
+ "default.handlebars->47->2149",
17939
"default.handlebars->47->962",
17940
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1span",
17941
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2span",
@@ -18019,7 +18025,7 @@
18025
"zh-cht": "連接到伺服器",
18026
"hu": "Csatlakozás a kiszolgálóhoz",
18027
"xloc": [
18022
- "default.handlebars->47->2242"
18028
+ "default.handlebars->47->2244"
18029
]
18030
},
18031
{
@@ -18263,7 +18269,7 @@
18269
"zh-cht": "已連接的Intel® AMT",
18270
"hu": "Csatlakozott Intel® AMT",
18271
"xloc": [
18266
- "default.handlebars->47->3260"
18272
+ "default.handlebars->47->3262"
18273
]
18274
},
18275
{
@@ -18290,7 +18296,7 @@
18296
"zh-cht": "已连接的用户",
18297
"hu": "Csatlakozott felhasználók",
18298
"xloc": [
18293
- "default.handlebars->47->3265"
18299
+ "default.handlebars->47->3267"
18300
]
18301
},
18302
{
@@ -18345,8 +18351,8 @@
18351
"zh-cht": "現在已連接",
18352
"hu": "Csatlakoztatva most",
18353
"xloc": [
18348
- "default-mobile.handlebars->11->759",
18349
- "default.handlebars->47->1587"
18354
+ "default-mobile.handlebars->11->760",
18355
+ "default.handlebars->47->1589"
18356
]
18357
},
18358
{
@@ -18477,8 +18483,8 @@
18483
"xloc": [
18484
"default-mobile.handlebars->11->2",
18485
"default-mobile.handlebars->11->50",
18480
- "default-mobile.handlebars->11->719",
18481
- "default.handlebars->47->1568",
18486
+ "default-mobile.handlebars->11->720",
18487
+ "default.handlebars->47->1570",
18488
"default.handlebars->47->391",
18489
"default.handlebars->47->394",
18490
"default.handlebars->47->475",
@@ -18537,7 +18543,7 @@
18543
"zh-cht": "連接數量",
18544
"hu": "Kapcsolatok száma",
18545
"xloc": [
18540
- "default.handlebars->47->3291"
18546
+ "default.handlebars->47->3293"
18547
]
18548
},
18549
{
@@ -18564,7 +18570,7 @@
18570
"zh-cht": "連接錯誤",
18571
"hu": "Kapcsolat Hiba",
18572
"xloc": [
18567
- "default-mobile.handlebars->11->682",
18573
+ "default-mobile.handlebars->11->683",
18574
"default.handlebars->47->1490",
18575
"default.handlebars->47->1507",
18576
"login2.handlebars->7->232"
@@ -18594,7 +18600,7 @@
18600
"zh-cht": "連接轉發器",
18601
"hu": "Kapccsolat Relay",
18602
"xloc": [
18597
- "default.handlebars->47->3327"
18603
+ "default.handlebars->47->3329"
18604
]
18605
},
18606
{
@@ -18676,7 +18682,7 @@
18682
"hu": "Kapcsolódás",
18683
"xloc": [
18684
"default-mobile.handlebars->11->525",
18679
- "default.handlebars->47->2416",
18685
+ "default.handlebars->47->2418",
18686
"default.handlebars->47->379",
18687
"default.handlebars->47->979",
18688
"default.handlebars->container->column_l->p21->p21main->1->1->meshConnChartDiv->1"
@@ -18706,7 +18712,7 @@
18712
"zh-cht": "同意",
18713
"hu": "Hozzájárulás",
18714
"xloc": [
18709
- "default.handlebars->47->2632"
18715
+ "default.handlebars->47->2634"
18716
]
18717
},
18718
{
@@ -18849,7 +18855,7 @@
18855
"zh-cht": "Cookie編碼器",
18856
"hu": "Cookie kódoló",
18857
"xloc": [
18852
- "default.handlebars->47->3310"
18858
+ "default.handlebars->47->3312"
18859
]
18860
},
18861
{
@@ -19123,8 +19129,8 @@
19129
"zh-cht": "複製連結到剪貼板",
19130
"hu": "Hivatkozás másolása a vágólapra.",
19131
"xloc": [
19126
- "default.handlebars->47->2427",
19127
- "default.handlebars->47->2446",
19132
+ "default.handlebars->47->2429",
19133
+ "default.handlebars->47->2448",
19134
"default.handlebars->47->311",
19135
"default.handlebars->47->333",
19136
"default.handlebars->47->335",
@@ -19267,7 +19273,7 @@
19273
"zh-cht": "複製:“{0}”到“{1}”",
19274
"hu": "Másolás: \\\"{0}\\\" ide: \\\"{1}\\\"",
19275
"xloc": [
19270
- "default.handlebars->47->2520"
19276
+ "default.handlebars->47->2522"
19277
]
19278
},
19279
{
@@ -19462,7 +19468,7 @@
19468
"zh-cht": "核心伺服器",
19469
"hu": "Core Server",
19470
"xloc": [
19465
- "default.handlebars->47->3309"
19471
+ "default.handlebars->47->3311"
19472
]
19473
},
19474
{
@@ -19490,7 +19496,7 @@
19496
"hu": "korzikai",
19497
"xloc": [
19498
"default-mobile.handlebars->11->144",
19493
- "default.handlebars->47->1833",
19499
+ "default.handlebars->47->1835",
19500
"login2.handlebars->7->41"
19501
]
19502
},
@@ -19542,7 +19548,7 @@
19548
"zh-cht": "創建帳號",
19549
"hu": "Fiók létrehozása",
19550
"xloc": [
19545
- "default.handlebars->47->2758",
19551
+ "default.handlebars->47->2760",
19552
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->16->1->1",
19553
"login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->16->1->1",
19554
"login2.handlebars->centralTable->1->0->logincell->createpanel->createpanelform->9->1->16->1->1"
@@ -19623,7 +19629,7 @@
19629
"zh-cht": "創建登錄令牌",
19630
"hu": "Bejelentkezési token létrehozása",
19631
"xloc": [
19626
- "default.handlebars->47->2018",
19632
+ "default.handlebars->47->2020",
19633
"default.handlebars->47->336"
19634
]
19635
},
@@ -19651,7 +19657,7 @@
19657
"zh-cht": "創建用戶群",
19658
"hu": "Felhasználó csoport létrehozása",
19659
"xloc": [
19654
- "default.handlebars->47->2798"
19660
+ "default.handlebars->47->2800"
19661
]
19662
},
19663
{
@@ -19705,7 +19711,7 @@
19711
"zh-cht": "使用以下選項創建一個新的裝置群。",
19712
"hu": "Hozzon létre egy új eszközcsoportot az alábbi lehetőségek segítségével.",
19713
"xloc": [
19708
- "default.handlebars->47->2048"
19714
+ "default.handlebars->47->2050"
19715
]
19716
},
19717
{
@@ -19759,7 +19765,7 @@
19765
"zh-cht": "創建一個臨時用戶名和密碼,可用作您帳戶的替代登錄名。這對於允許工具或其他服務訪問您的帳戶很有用。",
19766
"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.",
19767
"xloc": [
19762
- "default.handlebars->47->1998"
19768
+ "default.handlebars->47->2000"
19769
]
19770
},
19771
{
@@ -19813,7 +19819,7 @@
19819
"zh-cht": "創建文件夾:“{0}”",
19820
"hu": "Mappa létrehozása: \\\"{0}\\\"",
19821
"xloc": [
19816
- "default.handlebars->47->2513"
19822
+ "default.handlebars->47->2515"
19823
]
19824
},
19825
{
@@ -19883,7 +19889,7 @@
19889
{
19890
"en": "Create many accounts at once by importing a JSON or CSV file",
19891
"xloc": [
19886
- "default.handlebars->47->2715"
19892
+ "default.handlebars->47->2717"
19893
]
19894
},
19895
{
@@ -19939,7 +19945,7 @@
19945
"zh-cht": "創建的設備組:{0}",
19946
"hu": "Eszközcsoport létrehozva: {0}",
19947
"xloc": [
19942
- "default.handlebars->47->2524"
19948
+ "default.handlebars->47->2526"
19949
]
19950
},
19951
{
@@ -20041,7 +20047,7 @@
20047
"zh-cht": "創建",
20048
"hu": "Létrehozás",
20049
"xloc": [
20044
- "default.handlebars->47->2906"
20050
+ "default.handlebars->47->2908"
20051
]
20052
},
20053
{
@@ -20068,7 +20074,7 @@
20074
"zh-cht": "創作時間",
20075
"hu": "Létrehozás ideje",
20076
"xloc": [
20071
- "default.handlebars->47->2127"
20077
+ "default.handlebars->47->2129"
20078
]
20079
},
20080
{
@@ -20124,8 +20130,8 @@
20130
"zh-cht": "創作者",
20131
"hu": "Létrehozó",
20132
"xloc": [
20127
- "default.handlebars->47->2125",
20128
- "default.handlebars->47->2126"
20133
+ "default.handlebars->47->2127",
20134
+ "default.handlebars->47->2128"
20135
]
20136
},
20137
{
@@ -20154,7 +20160,7 @@
20160
"xloc": [
20161
"default-mobile.handlebars->11->537",
20162
"default.handlebars->47->1366",
20157
- "default.handlebars->47->2086",
20163
+ "default.handlebars->47->2088",
20164
"default.handlebars->47->991"
20165
]
20166
},
@@ -20183,7 +20189,7 @@
20189
"hu": "cree",
20190
"xloc": [
20191
"default-mobile.handlebars->11->145",
20186
- "default.handlebars->47->1834",
20192
+ "default.handlebars->47->1836",
20193
"login2.handlebars->7->42"
20194
]
20195
},
@@ -20212,7 +20218,7 @@
20218
"hu": "horvát",
20219
"xloc": [
20220
"default-mobile.handlebars->11->146",
20215
- "default.handlebars->47->1835",
20221
+ "default.handlebars->47->1837",
20222
"login2.handlebars->7->43"
20223
]
20224
},
@@ -20296,8 +20302,8 @@
20302
"zh-cht": "Ctrl",
20303
"hu": "Ctrl",
20304
"xloc": [
20299
- "default-mobile.handlebars->11->643",
20300
- "default-mobile.handlebars->11->647",
20305
+ "default-mobile.handlebars->11->644",
20306
+ "default-mobile.handlebars->11->648",
20307
"default.handlebars->47->1408",
20308
"default.handlebars->47->1412",
20309
"default.handlebars->47->62",
@@ -20328,7 +20334,7 @@
20334
"zh-cht": "Ctrl +",
20335
"hu": "Ctrl + ",
20336
"xloc": [
20331
- "default-mobile.handlebars->11->678"
20337
+ "default-mobile.handlebars->11->679"
20338
]
20339
},
20340
{
@@ -20489,8 +20495,8 @@
20495
"zh-cht": "當前密碼不正確。",
20496
"hu": "A jelenlegi jelszó nem megfelelő.",
20497
"xloc": [
20492
- "default-mobile.handlebars->11->1005",
20493
- "default.handlebars->47->3229"
20498
+ "default-mobile.handlebars->11->1006",
20499
+ "default.handlebars->47->3231"
20500
]
20501
},
20502
{
@@ -20517,7 +20523,7 @@
20523
"zh-cht": "定制",
20524
"hu": "Testreszabás",
20525
"xloc": [
20520
- "default-mobile.handlebars->11->622"
20526
+ "default-mobile.handlebars->11->623"
20527
]
20528
},
20529
{
@@ -20604,7 +20610,7 @@
20610
"hu": "cseh",
20611
"xloc": [
20612
"default-mobile.handlebars->11->147",
20607
- "default.handlebars->47->1836",
20613
+ "default.handlebars->47->1838",
20614
"login2.handlebars->7->44"
20615
]
20616
},
@@ -20687,7 +20693,7 @@
20693
"hu": "dán",
20694
"xloc": [
20695
"default-mobile.handlebars->11->148",
20690
- "default.handlebars->47->1837",
20696
+ "default.handlebars->47->1839",
20697
"login2.handlebars->7->45"
20698
]
20699
},
@@ -20757,7 +20763,7 @@
20763
"de": "Datenbankaufzeichnungen",
20764
"es": "Registro de Base de datos",
20765
"xloc": [
20760
- "default.handlebars->47->3103"
20766
+ "default.handlebars->47->3105"
20767
]
20768
},
20769
{
@@ -20785,7 +20791,7 @@
20791
"hu": "Dátum és idő",
20792
"xloc": [
20793
"default-mobile.handlebars->11->306",
20788
- "default.handlebars->47->1995"
20794
+ "default.handlebars->47->1997"
20795
]
20796
},
20797
{
@@ -20812,10 +20818,10 @@
20818
"zh-cht": "天",
20819
"hu": "Nap",
20820
"xloc": [
20815
- "default-mobile.handlebars->11->593",
20821
+ "default-mobile.handlebars->11->594",
20822
"default.handlebars->47->1275",
20817
- "default.handlebars->47->3107",
20818
- "default.handlebars->47->3110"
20823
+ "default.handlebars->47->3109",
20824
+ "default.handlebars->47->3112"
20825
]
20826
},
20827
{
@@ -20842,8 +20848,8 @@
20848
"zh-cht": "停用",
20849
"hu": "Deaktiválás",
20850
"xloc": [
20845
- "default.handlebars->47->2157",
20846
- "default.handlebars->47->2221"
20851
+ "default.handlebars->47->2159",
20852
+ "default.handlebars->47->2223"
20853
]
20854
},
20855
{
@@ -20870,7 +20876,7 @@
20876
"zh-cht": "如果設置停用CCM",
20877
"hu": "CCM kikapcsolása ha be van állítva",
20878
"xloc": [
20873
- "default.handlebars->47->2233"
20879
+ "default.handlebars->47->2235"
20880
]
20881
},
20882
{
@@ -20949,10 +20955,10 @@
20955
"zh-cht": "默認",
20956
"hu": "Alapértelmezett",
20957
"xloc": [
20952
- "default.handlebars->47->2745",
20953
- "default.handlebars->47->2794",
20954
- "default.handlebars->47->2805",
20955
- "default.handlebars->47->2879"
20958
+ "default.handlebars->47->2747",
20959
+ "default.handlebars->47->2796",
20960
+ "default.handlebars->47->2807",
20961
+ "default.handlebars->47->2881"
20962
]
20963
},
20964
{
@@ -20979,7 +20985,7 @@
20985
"zh-cht": "Del",
20986
"hu": "Del",
20987
"xloc": [
20982
- "default-mobile.handlebars->11->630",
20988
+ "default-mobile.handlebars->11->631",
20989
"default.handlebars->47->1396"
20990
]
20991
},
@@ -21008,12 +21014,12 @@
21014
"hu": "Törlés",
21015
"xloc": [
21016
"default-mobile.handlebars->11->360",
21011
- "default-mobile.handlebars->11->693",
21017
+ "default-mobile.handlebars->11->694",
21018
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1",
21019
"default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1",
21020
"default-mobile.handlebars->dialog->idx_dlgButtonBar->5",
21015
- "default.handlebars->47->1533",
21016
- "default.handlebars->47->2453",
21021
+ "default.handlebars->47->1535",
21022
+ "default.handlebars->47->2455",
21023
"default.handlebars->47->841",
21024
"default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
21025
"default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
@@ -21052,7 +21058,7 @@
21058
"hu": "Fiók törlése",
21059
"xloc": [
21060
"default-mobile.handlebars->11->322",
21055
- "default.handlebars->47->2033"
21061
+ "default.handlebars->47->2035"
21062
]
21063
},
21064
{
@@ -21079,7 +21085,7 @@
21085
"zh-cht": "刪除帳戶",
21086
"hu": "Fiókok törlése",
21087
"xloc": [
21082
- "default.handlebars->47->2702"
21088
+ "default.handlebars->47->2704"
21089
]
21090
},
21091
{
@@ -21161,10 +21167,10 @@
21167
"zh-cht": "刪除群組",
21168
"hu": "Csoport törlése",
21169
"xloc": [
21164
- "default-mobile.handlebars->11->912",
21165
- "default-mobile.handlebars->11->915",
21166
- "default.handlebars->47->2209",
21167
- "default.handlebars->47->2250"
21170
+ "default-mobile.handlebars->11->913",
21171
+ "default-mobile.handlebars->11->916",
21172
+ "default.handlebars->47->2211",
21173
+ "default.handlebars->47->2252"
21174
]
21175
},
21176
{
@@ -21191,7 +21197,7 @@
21197
"zh-cht": "刪除節點",
21198
"hu": "Node törlése",
21199
"xloc": [
21194
- "default-mobile.handlebars->11->601",
21200
+ "default-mobile.handlebars->11->602",
21201
"default.handlebars->47->1301"
21202
]
21203
},
@@ -21243,7 +21249,7 @@
21249
"zh-cht": "刪除用戶",
21250
"hu": "Felhasználó törlése",
21251
"xloc": [
21246
- "default.handlebars->47->2952"
21252
+ "default.handlebars->47->2954"
21253
]
21254
},
21255
{
@@ -21270,8 +21276,8 @@
21276
"zh-cht": "刪除用戶群組",
21277
"hu": "Felhasználói csoport törlése",
21278
"xloc": [
21273
- "default.handlebars->47->2847",
21274
- "default.handlebars->47->2859"
21279
+ "default.handlebars->47->2849",
21280
+ "default.handlebars->47->2861"
21281
]
21282
},
21283
{
@@ -21298,7 +21304,7 @@
21304
"zh-cht": "刪除用戶群組",
21305
"hu": "Felhasználói csoportok törlése",
21306
"xloc": [
21301
- "default.handlebars->47->2792"
21307
+ "default.handlebars->47->2794"
21308
]
21309
},
21310
{
@@ -21325,7 +21331,7 @@
21331
"zh-cht": "刪除用戶{0}",
21332
"hu": "Felhasználó törlése: {0}",
21333
"xloc": [
21328
- "default.handlebars->47->3020"
21334
+ "default.handlebars->47->3022"
21335
]
21336
},
21337
{
@@ -21353,7 +21359,7 @@
21359
"hu": "Fiók törlése",
21360
"xloc": [
21361
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountActions->3->9->0",
21356
- "default.handlebars->47->2698",
21362
+ "default.handlebars->47->2700",
21363
"default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7"
21364
]
21365
},
@@ -21408,7 +21414,7 @@
21414
"zh-cht": "刪除群組",
21415
"hu": "Csoport törlése",
21416
"xloc": [
21411
- "default.handlebars->47->2788"
21417
+ "default.handlebars->47->2790"
21418
]
21419
},
21420
{
@@ -21462,7 +21468,7 @@
21468
"zh-cht": "遞歸刪除:“{0}”,{1}個元素已刪除",
21469
"hu": "Rekurzív törlés: \\\"{0}\\\", {1} eltávolított elem(ek)",
21470
"xloc": [
21465
- "default.handlebars->47->2515"
21471
+ "default.handlebars->47->2517"
21472
]
21473
},
21474
{
@@ -21490,9 +21496,9 @@
21496
"hu": "Kijelölt elem törlése?",
21497
"xloc": [
21498
"default-mobile.handlebars->11->362",
21493
- "default-mobile.handlebars->11->695",
21494
- "default.handlebars->47->1535",
21495
- "default.handlebars->47->2455",
21499
+ "default-mobile.handlebars->11->696",
21500
+ "default.handlebars->47->1537",
21501
+ "default.handlebars->47->2457",
21502
"sharing.handlebars->11->63"
21503
]
21504
},
@@ -21520,7 +21526,7 @@
21526
"zh-cht": "刪除用戶群組{0}?",
21527
"hu": "Törli a(z) {0} felhasználói csoportot?",
21528
"xloc": [
21523
- "default.handlebars->47->2857"
21529
+ "default.handlebars->47->2859"
21530
]
21531
},
21532
{
@@ -21548,9 +21554,9 @@
21554
"hu": "A(z) {0} kiválasztott elem törlése?",
21555
"xloc": [
21556
"default-mobile.handlebars->11->361",
21551
- "default-mobile.handlebars->11->694",
21552
- "default.handlebars->47->1534",
21553
- "default.handlebars->47->2454",
21557
+ "default-mobile.handlebars->11->695",
21558
+ "default.handlebars->47->1536",
21559
+ "default.handlebars->47->2456",
21560
"sharing.handlebars->11->62"
21561
]
21562
},
@@ -21578,7 +21584,7 @@
21584
"zh-cht": "刪除{0}?",
21585
"hu": "Törli a következőt: {0}?",
21586
"xloc": [
21581
- "default-mobile.handlebars->11->602"
21587
+ "default-mobile.handlebars->11->603"
21588
]
21589
},
21590
{
@@ -21605,7 +21611,7 @@
21611
"zh-cht": "刪除:“{0}”",
21612
"hu": "Törlés: \\\"{0}\\\"",
21613
"xloc": [
21608
- "default.handlebars->47->2514"
21614
+ "default.handlebars->47->2516"
21615
]
21616
},
21617
{
@@ -21632,7 +21638,7 @@
21638
"zh-cht": "刪除:“{0}”,已刪除{1}個元素",
21639
"hu": "Törlés: \\\"{0}\\\", {1} elem eltávolítva",
21640
"xloc": [
21635
- "default.handlebars->47->2516"
21641
+ "default.handlebars->47->2518"
21642
]
21643
},
21644
{
@@ -21659,7 +21665,7 @@
21665
"zh-cht": "被拒絕",
21666
"hu": "Elutasítva",
21667
"xloc": [
21662
- "default-mobile.handlebars->11->616",
21668
+ "default-mobile.handlebars->11->617",
21669
"default.handlebars->47->1351",
21670
"sharing.handlebars->11->29",
21671
"sharing.handlebars->11->7"
@@ -21675,7 +21681,7 @@
21681
"de": "Login des Benutzers von {0}, {1}, {2} verweigert",
21682
"es": "Se denego el inicio de sesion de {0}, {1}, {2}",
21683
"xloc": [
21678
- "default.handlebars->47->2624"
21684
+ "default.handlebars->47->2626"
21685
]
21686
},
21687
{
@@ -21825,22 +21831,22 @@
21831
"default-mobile.handlebars->11->339",
21832
"default-mobile.handlebars->11->485",
21833
"default-mobile.handlebars->11->486",
21828
- "default-mobile.handlebars->11->611",
21829
- "default-mobile.handlebars->11->772",
21830
- "default-mobile.handlebars->11->898",
21831
- "default-mobile.handlebars->11->921",
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->1345",
21839
"default.handlebars->47->157",
21834
- "default.handlebars->47->1600",
21835
- "default.handlebars->47->1610",
21836
- "default.handlebars->47->2058",
21837
- "default.handlebars->47->2118",
21838
- "default.handlebars->47->2256",
21839
- "default.handlebars->47->2630",
21840
- "default.handlebars->47->2797",
21841
- "default.handlebars->47->2808",
21842
- "default.handlebars->47->2809",
21843
- "default.handlebars->47->2855",
21840
+ "default.handlebars->47->1602",
21841
+ "default.handlebars->47->1612",
21842
+ "default.handlebars->47->2060",
21843
+ "default.handlebars->47->2120",
21844
+ "default.handlebars->47->2258",
21845
+ "default.handlebars->47->2632",
21846
+ "default.handlebars->47->2799",
21847
+ "default.handlebars->47->2810",
21848
+ "default.handlebars->47->2811",
21849
+ "default.handlebars->47->2857",
21850
"default.handlebars->47->882",
21851
"default.handlebars->47->883",
21852
"default.handlebars->container->column_l->p42->p42tbl->1->0->3"
@@ -21898,12 +21904,12 @@
21904
"default.handlebars->47->1075",
21905
"default.handlebars->47->1188",
21906
"default.handlebars->47->1463",
21901
- "default.handlebars->47->2187",
21902
- "default.handlebars->47->2262",
21903
- "default.handlebars->47->3080",
21904
- "default.handlebars->47->3140",
21905
- "default.handlebars->47->3190",
21906
- "default.handlebars->47->3285",
21907
+ "default.handlebars->47->2189",
21908
+ "default.handlebars->47->2264",
21909
+ "default.handlebars->47->3082",
21910
+ "default.handlebars->47->3142",
21911
+ "default.handlebars->47->3192",
21912
+ "default.handlebars->47->3287",
21913
"default.handlebars->47->847",
21914
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop",
21915
"default.handlebars->contextMenu->cxdesktop",
@@ -21937,7 +21943,7 @@
21943
"xloc": [
21944
"default.handlebars->47->1079",
21945
"default.handlebars->47->1191",
21940
- "default.handlebars->47->2191"
21946
+ "default.handlebars->47->2193"
21947
]
21948
},
21949
{
@@ -21965,7 +21971,7 @@
21971
"hu": "Asztal + Terminál",
21972
"xloc": [
21973
"default.handlebars->47->1076",
21968
- "default.handlebars->47->2188"
21974
+ "default.handlebars->47->2190"
21975
]
21976
},
21977
{
@@ -21994,7 +22000,7 @@
22000
"xloc": [
22001
"default.handlebars->47->1080",
22002
"default.handlebars->47->1193",
21997
- "default.handlebars->47->2192"
22003
+ "default.handlebars->47->2194"
22004
]
22005
},
22006
{
@@ -22048,7 +22054,7 @@
22054
"zh-cht": "桌面多路復用",
22055
"hu": "Asztal Multiplex",
22056
"xloc": [
22051
- "default.handlebars->47->3290"
22057
+ "default.handlebars->47->3292"
22058
]
22059
},
22060
{
@@ -22075,9 +22081,9 @@
22081
"zh-cht": "桌面通知",
22082
"hu": "Asztal kapcsolat értesítés",
22083
"xloc": [
22078
- "default.handlebars->47->2138",
22079
- "default.handlebars->47->2816",
22080
- "default.handlebars->47->2921",
22084
+ "default.handlebars->47->2140",
22085
+ "default.handlebars->47->2818",
22086
+ "default.handlebars->47->2923",
22087
"default.handlebars->47->953"
22088
]
22089
},
@@ -22105,9 +22111,9 @@
22111
"zh-cht": "桌面提示",
22112
"hu": "Asztal kapcsolat engedélykérés",
22113
"xloc": [
22108
- "default.handlebars->47->2137",
22109
- "default.handlebars->47->2815",
22110
- "default.handlebars->47->2920",
22114
+ "default.handlebars->47->2139",
22115
+ "default.handlebars->47->2817",
22116
+ "default.handlebars->47->2922",
22117
"default.handlebars->47->952"
22118
]
22119
},
@@ -22135,9 +22141,9 @@
22141
"zh-cht": "桌面提示+工具欄",
22142
"hu": "Asztal kapcsolat engedélykérés és eszköztár",
22143
"xloc": [
22138
- "default.handlebars->47->2135",
22139
- "default.handlebars->47->2813",
22140
- "default.handlebars->47->2918",
22144
+ "default.handlebars->47->2137",
22145
+ "default.handlebars->47->2815",
22146
+ "default.handlebars->47->2920",
22147
"default.handlebars->47->950"
22148
]
22149
},
@@ -22165,7 +22171,7 @@
22171
"zh-cht": "桌面會話",
22172
"hu": "Asztal munkamenet",
22173
"xloc": [
22168
- "default.handlebars->47->3073"
22174
+ "default.handlebars->47->3075"
22175
]
22176
},
22177
{
@@ -22272,9 +22278,9 @@
22278
"zh-cht": "桌面工具欄",
22279
"hu": "Asztal kapcsolat eszköztár",
22280
"xloc": [
22275
- "default.handlebars->47->2136",
22276
- "default.handlebars->47->2814",
22277
- "default.handlebars->47->2919",
22281
+ "default.handlebars->47->2138",
22282
+ "default.handlebars->47->2816",
22283
+ "default.handlebars->47->2921",
22284
"default.handlebars->47->951"
22285
]
22286
},
@@ -22302,7 +22308,7 @@
22308
"zh-cht": "僅桌面視圖",
22309
"hu": "Asztal csak megtekintés",
22310
"xloc": [
22305
- "default.handlebars->47->2894"
22311
+ "default.handlebars->47->2896"
22312
]
22313
},
22314
{
@@ -22442,7 +22448,7 @@
22448
"default-mobile.handlebars->11->564",
22449
"default.handlebars->47->1129",
22450
"default.handlebars->47->1154",
22445
- "default.handlebars->47->2353",
22451
+ "default.handlebars->47->2355",
22452
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevInfo",
22453
"default.handlebars->contextMenu->cxdetails"
22454
]
@@ -22498,14 +22504,14 @@
22504
"zh-cht": "裝置",
22505
"hu": "Eszköz",
22506
"xloc": [
22501
- "default-mobile.handlebars->11->767",
22502
- "default.handlebars->47->1595",
22503
- "default.handlebars->47->1781",
22504
- "default.handlebars->47->2290",
22507
+ "default-mobile.handlebars->11->768",
22508
+ "default.handlebars->47->1597",
22509
+ "default.handlebars->47->1783",
22510
+ "default.handlebars->47->2292",
22511
"default.handlebars->47->281",
22506
- "default.handlebars->47->3039",
22507
- "default.handlebars->47->3106",
22508
- "default.handlebars->47->3124",
22512
+ "default.handlebars->47->3041",
22513
+ "default.handlebars->47->3108",
22514
+ "default.handlebars->47->3126",
22515
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5"
22516
]
22517
},
@@ -22643,7 +22649,7 @@
22649
"zh-cht": "設備詳情",
22650
"hu": "Eszköz részéletek elérése",
22651
"xloc": [
22646
- "default.handlebars->47->2314"
22652
+ "default.handlebars->47->2316"
22653
]
22654
},
22655
{
@@ -22698,18 +22704,18 @@
22704
"hu": "Eszköz csoport",
22705
"xloc": [
22706
"agent-translations.json",
22701
- "default-mobile.handlebars->11->983",
22702
- "default.handlebars->47->2285",
22703
- "default.handlebars->47->2288",
22704
- "default.handlebars->47->2289",
22705
- "default.handlebars->47->2647",
22706
- "default.handlebars->47->2839",
22707
- "default.handlebars->47->2845",
22708
- "default.handlebars->47->3027",
22709
- "default.handlebars->47->3089",
22710
- "default.handlebars->47->3113",
22711
- "default.handlebars->47->3127",
22712
- "default.handlebars->47->3207"
22707
+ "default-mobile.handlebars->11->984",
22708
+ "default.handlebars->47->2287",
22709
+ "default.handlebars->47->2290",
22710
+ "default.handlebars->47->2291",
22711
+ "default.handlebars->47->2649",
22712
+ "default.handlebars->47->2841",
22713
+ "default.handlebars->47->2847",
22714
+ "default.handlebars->47->3029",
22715
+ "default.handlebars->47->3091",
22716
+ "default.handlebars->47->3115",
22717
+ "default.handlebars->47->3129",
22718
+ "default.handlebars->47->3209"
22719
]
22720
},
22721
{
@@ -22736,8 +22742,8 @@
22742
"zh-cht": "裝置群用戶",
22743
"hu": "Eszköz Csoport Felhasználó",
22744
"xloc": [
22739
- "default-mobile.handlebars->11->972",
22740
- "default.handlebars->47->2360"
22745
+ "default-mobile.handlebars->11->973",
22746
+ "default.handlebars->47->2362"
22747
]
22748
},
22749
{
@@ -22765,11 +22771,11 @@
22771
"hu": "Eszköz csoportok",
22772
"xloc": [
22773
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->3",
22768
- "default.handlebars->47->2663",
22769
- "default.handlebars->47->2782",
22770
- "default.handlebars->47->2826",
22771
- "default.handlebars->47->2915",
22772
- "default.handlebars->47->3263",
22774
+ "default.handlebars->47->2665",
22775
+ "default.handlebars->47->2784",
22776
+ "default.handlebars->47->2828",
22777
+ "default.handlebars->47->2917",
22778
+ "default.handlebars->47->3265",
22779
"default.handlebars->container->column_l->p2->p2info->9"
22780
]
22781
},
@@ -22878,9 +22884,9 @@
22884
"zh-cht": "裝置名稱",
22885
"hu": "Eszköz Neve",
22886
"xloc": [
22881
- "default-mobile.handlebars->11->609",
22887
+ "default-mobile.handlebars->11->610",
22888
"default.handlebars->47->1343",
22883
- "default.handlebars->47->3088",
22889
+ "default.handlebars->47->3090",
22890
"default.handlebars->47->491",
22891
"default.handlebars->47->500",
22892
"player.handlebars->3->25"
@@ -22938,13 +22944,13 @@
22944
"zh-cht": "設備配對鏈接",
22945
"hu": "Eszköz párosítás link",
22946
"xloc": [
22941
- "default-mobile.handlebars->11->926"
22947
+ "default-mobile.handlebars->11->927"
22948
]
22949
},
22950
{
22951
"en": "Device Powered On",
22952
"xloc": [
22947
- "default.handlebars->47->2628"
22953
+ "default.handlebars->47->2630"
22954
]
22955
},
22956
{
@@ -22971,7 +22977,7 @@
22977
"zh-cht": "設備推送",
22978
"hu": "Device Push",
22979
"xloc": [
22974
- "default.handlebars->47->2934"
22980
+ "default.handlebars->47->2936"
22981
]
22982
},
22983
{
@@ -22984,7 +22990,7 @@
22990
"de": "Aufzeichnungen zu Push-Benachrichtigungen des Geräts",
22991
"es": "Registro de Notificaciones Push del dispositivo",
22992
"xloc": [
22987
- "default.handlebars->47->3187"
22993
+ "default.handlebars->47->3189"
22994
]
22995
},
22996
{
@@ -22997,7 +23003,7 @@
23003
"de": "SMBIOS Geräteaufzeichnungen",
23004
"es": "Registro SMBIOS del dispositivo",
23005
"xloc": [
23000
- "default.handlebars->47->3186"
23006
+ "default.handlebars->47->3188"
23007
]
23008
},
23009
{
@@ -23073,7 +23079,7 @@
23079
"hu": "Eszközmegosztási link",
23080
"xloc": [
23081
"default.handlebars->47->1072",
23076
- "default.handlebars->47->2184"
23082
+ "default.handlebars->47->2186"
23083
]
23084
},
23085
{
@@ -23213,10 +23219,10 @@
23219
"default.handlebars->47->1098",
23220
"default.handlebars->47->1102",
23221
"default.handlebars->47->1106",
23216
- "default.handlebars->47->2021",
23217
- "default.handlebars->47->2387",
23218
- "default.handlebars->47->2391",
23219
- "default.handlebars->47->2395"
23222
+ "default.handlebars->47->2023",
23223
+ "default.handlebars->47->2389",
23224
+ "default.handlebars->47->2393",
23225
+ "default.handlebars->47->2397"
23226
]
23227
},
23228
{
@@ -23246,10 +23252,10 @@
23252
"default.handlebars->47->1099",
23253
"default.handlebars->47->1103",
23254
"default.handlebars->47->1107",
23249
- "default.handlebars->47->2022",
23250
- "default.handlebars->47->2388",
23251
- "default.handlebars->47->2392",
23252
- "default.handlebars->47->2396"
23255
+ "default.handlebars->47->2024",
23256
+ "default.handlebars->47->2390",
23257
+ "default.handlebars->47->2394",
23258
+ "default.handlebars->47->2398"
23259
]
23260
},
23261
{
@@ -23276,7 +23282,7 @@
23282
"zh-cht": "設備組已創建:{0}",
23283
"hu": "Eszközcsoport létrehozva: {0}",
23284
"xloc": [
23279
- "default.handlebars->47->2545"
23285
+ "default.handlebars->47->2547"
23286
]
23287
},
23288
{
@@ -23303,7 +23309,7 @@
23309
"zh-cht": "設備組已刪除:{0}",
23310
"hu": "Eszközcsoport törölve: {0}",
23311
"xloc": [
23306
- "default.handlebars->47->2546"
23312
+ "default.handlebars->47->2548"
23313
]
23314
},
23315
{
@@ -23330,7 +23336,7 @@
23336
"zh-cht": "設備組成員身份已更改:{0}",
23337
"hu": "Eszközcsoport tagság megváltozott: {0}",
23338
"xloc": [
23333
- "default.handlebars->47->2547"
23339
+ "default.handlebars->47->2549"
23340
]
23341
},
23342
{
@@ -23385,7 +23391,7 @@
23391
"zh-cht": "設備組通知已更改",
23392
"hu": "Eszközcsoport értesítés megváltozott",
23393
"xloc": [
23388
- "default.handlebars->47->2542"
23394
+ "default.handlebars->47->2544"
23395
]
23396
},
23397
{
@@ -23398,7 +23404,7 @@
23404
"de": "Gerätegruppenaufzeichnungen",
23405
"es": "Registro de grupo de dispositivos",
23406
"xloc": [
23401
- "default.handlebars->47->3172"
23407
+ "default.handlebars->47->3174"
23408
]
23409
},
23410
{
@@ -23425,7 +23431,7 @@
23431
"zh-cht": "未刪除的設備組:{0}",
23432
"hu": "Eszközcsoport törlés visszavonva: {0}",
23433
"xloc": [
23428
- "default.handlebars->47->2525"
23434
+ "default.handlebars->47->2527"
23435
]
23436
},
23437
{
@@ -23452,7 +23458,7 @@
23458
"zh-cht": "設備組 {0} 已更改:{1}",
23459
"hu": "{0} eszközcsoport :{1} megváltozott",
23460
"xloc": [
23455
- "default.handlebars->47->2611"
23461
+ "default.handlebars->47->2613"
23462
]
23463
},
23464
{
@@ -23492,7 +23498,7 @@
23498
"de": "Aufzeichnungen zu Geräteinformationen",
23499
"es": "Registro de informacion de dispossitivos",
23500
"xloc": [
23495
- "default.handlebars->47->3174"
23501
+ "default.handlebars->47->3176"
23502
]
23503
},
23504
{
@@ -24058,7 +24064,7 @@
24064
"hu": "Eszköz energiaellátás változás rekordok",
24065
"es": "Registro de cambios en origen de poder",
24066
"xloc": [
24061
- "default.handlebars->47->3180"
24067
+ "default.handlebars->47->3182"
24068
]
24069
},
24070
{
@@ -24071,7 +24077,7 @@
24077
"de": "Geräteaufzeichnungen",
24078
"es": "Registro de dispotitivos",
24079
"xloc": [
24074
- "default.handlebars->47->3171"
24080
+ "default.handlebars->47->3173"
24081
]
24082
},
24083
{
@@ -24098,7 +24104,7 @@
24104
"zh-cht": "設備請求 Intel(R) AMT ACM TLS 激活,FQDN:{0}",
24105
"hu": "Eszköz által kért Intel(R) AMT ACM TLS aktiválás, FQDN: {0}",
24106
"xloc": [
24101
- "default.handlebars->47->2580"
24107
+ "default.handlebars->47->2582"
24108
]
24109
},
24110
{
@@ -24125,7 +24131,7 @@
24131
"zh-cht": "設備請求激活Intel(R)AMT ACM,FQDN:{0}",
24132
"hu": "Eszköz által kért Intel(R) AMT ACM aktiválás, FQDN: {0}",
24133
"xloc": [
24128
- "default.handlebars->47->2527"
24134
+ "default.handlebars->47->2529"
24135
]
24136
},
24137
{
@@ -24138,7 +24144,7 @@
24144
"de": "Aufzeichnungen zu Geräte-Teilen",
24145
"es": "Registros de uso compartido de dispositivos",
24146
"xloc": [
24141
- "default.handlebars->47->3184"
24147
+ "default.handlebars->47->3186"
24148
]
24149
},
24150
{
@@ -24151,7 +24157,7 @@
24157
"de": "Aufzeichnungen zu Geräten, Benutzern und Weiteres",
24158
"es": "Dispositivo, usuarios, grupos y otros registros",
24159
"xloc": [
24154
- "default.handlebars->47->3188"
24160
+ "default.handlebars->47->3190"
24161
]
24162
},
24163
{
@@ -24202,9 +24208,9 @@
24208
"zh-cht": "裝置",
24209
"hu": "Eszközök",
24210
"xloc": [
24205
- "default.handlebars->47->2207",
24206
- "default.handlebars->47->2783",
24207
- "default.handlebars->47->2827"
24211
+ "default.handlebars->47->2209",
24212
+ "default.handlebars->47->2785",
24213
+ "default.handlebars->47->2829"
24214
]
24215
},
24216
{
@@ -24417,7 +24423,7 @@
24423
"zh-cht": "已禁用",
24424
"hu": "Tiltva",
24425
"xloc": [
24420
- "default-mobile.handlebars->11->752",
24426
+ "default-mobile.handlebars->11->753",
24427
"default.handlebars->47->130",
24428
"default.handlebars->47->944"
24429
]
@@ -24446,7 +24452,7 @@
24452
"zh-cht": "禁用的電子郵件兩因素身份驗證",
24453
"hu": "Kétfaktoros e-mail hitelesítés kikapcsolása",
24454
"xloc": [
24449
- "default.handlebars->47->2558"
24455
+ "default.handlebars->47->2560"
24456
]
24457
},
24458
{
@@ -24477,7 +24483,7 @@
24483
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
24484
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3",
24485
"default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea1->1->3->disconnectbutton2span",
24480
- "default.handlebars->47->2148",
24486
+ "default.handlebars->47->2150",
24487
"default.handlebars->47->963",
24488
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->disconnectbutton1span",
24489
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->disconnectbutton2span",
@@ -24687,8 +24693,8 @@
24693
"de": "Discord",
24694
"es": "Discord",
24695
"xloc": [
24690
- "default.handlebars->47->1743",
24691
- "default.handlebars->47->2966"
24696
+ "default.handlebars->47->1745",
24697
+ "default.handlebars->47->2968"
24698
]
24699
},
24700
{
@@ -24878,7 +24884,7 @@
24884
"zh-cht": "顯示裝置群名稱",
24885
"hu": "Eszközcsoport nevének megjelenítése",
24886
"xloc": [
24881
- "default.handlebars->47->2020"
24887
+ "default.handlebars->47->2022"
24888
]
24889
},
24890
{
@@ -24932,7 +24938,7 @@
24938
"zh-cht": "顯示公共鏈結",
24939
"hu": "Publikus link megjelenítése",
24940
"xloc": [
24935
- "default.handlebars->47->2426"
24941
+ "default.handlebars->47->2428"
24942
]
24943
},
24944
{
@@ -24967,7 +24973,7 @@
24973
"nl": "Waarschuwingsvenster weergeven, title=\\\"{0}\\\", message=\\\"{1}\\\"",
24974
"pl": "Wyświetl okno powiadomienia, tytuł=\\\"{0}\\\", wiadomość=\\\"{1}\\\"",
24975
"xloc": [
24970
- "default.handlebars->47->2627"
24976
+ "default.handlebars->47->2629"
24977
]
24978
},
24979
{
@@ -24994,7 +25000,7 @@
25000
"zh-cht": "顯示消息框,標題= “{0}”,消息= “{1}”",
25001
"hu": "Üzenetdoboz megjelenítése, cím=\\\"{0}\\\", üzenet=\\\"{1}\\\"",
25002
"xloc": [
24997
- "default.handlebars->47->2487"
25003
+ "default.handlebars->47->2489"
25004
]
25005
},
25006
{
@@ -25021,7 +25027,7 @@
25027
"zh-cht": "顯示吐司消息,標題= “{0}”,消息= “{1}”",
25028
"hu": "Alkalmazás üzenet megjelenítése, title=\\\"{0}\\\", message=\\\"{1}\\\"",
25029
"xloc": [
25024
- "default.handlebars->47->2495"
25030
+ "default.handlebars->47->2497"
25031
]
25032
},
25033
{
@@ -25048,8 +25054,8 @@
25054
"zh-cht": "什麼都不做",
25055
"hu": "Ne csináljon semmit",
25056
"xloc": [
25051
- "default.handlebars->47->2236",
25052
- "default.handlebars->47->2240"
25057
+ "default.handlebars->47->2238",
25058
+ "default.handlebars->47->2242"
25059
]
25060
},
25061
{
@@ -25078,10 +25084,10 @@
25084
"xloc": [
25085
"default.handlebars->47->126",
25086
"default.handlebars->47->1369",
25081
- "default.handlebars->47->2746",
25082
- "default.handlebars->47->2795",
25083
- "default.handlebars->47->2804",
25084
- "default.handlebars->47->2878",
25087
+ "default.handlebars->47->2748",
25088
+ "default.handlebars->47->2797",
25089
+ "default.handlebars->47->2806",
25090
+ "default.handlebars->47->2880",
25091
"mstsc.handlebars->main->1->3->1->rowdomain->1->0",
25092
"mstsc.handlebars->main->1->3->1->rowdomain->3"
25093
]
@@ -25134,7 +25140,7 @@
25140
"zh-cht": "請勿更改,如果設置請保留CCM",
25141
"hu": "Ne módosítsa, tartsa meg a CCM-et, ha beállítva van",
25142
"xloc": [
25137
- "default.handlebars->47->2232"
25143
+ "default.handlebars->47->2234"
25144
]
25145
},
25146
{
@@ -25185,7 +25191,7 @@
25191
"zh-cht": "不要連接到伺服器",
25192
"hu": "Ne csatlakozzon a kiszolgálóhoz",
25193
"xloc": [
25188
- "default.handlebars->47->2241"
25194
+ "default.handlebars->47->2243"
25195
]
25196
},
25197
{
@@ -25313,7 +25319,7 @@
25319
"zh-cht": "下",
25320
"hu": "Le",
25321
"xloc": [
25316
- "default-mobile.handlebars->11->639",
25322
+ "default-mobile.handlebars->11->640",
25323
"default.handlebars->47->1404"
25324
]
25325
},
@@ -25427,8 +25433,8 @@
25433
"zh-cht": "下載檔案",
25434
"hu": "Fájl letöltése",
25435
"xloc": [
25430
- "default-mobile.handlebars->11->714",
25431
- "default.handlebars->47->1555",
25436
+ "default-mobile.handlebars->11->715",
25437
+ "default.handlebars->47->1557",
25438
"sharing.handlebars->11->82"
25439
]
25440
},
@@ -25564,7 +25570,7 @@
25570
"zh-cht": "下載報告",
25571
"hu": "Jelentés letöltése",
25572
"xloc": [
25567
- "default.handlebars->47->2652",
25573
+ "default.handlebars->47->2654",
25574
"default.handlebars->container->column_l->p3->3->1->0->3",
25575
"default.handlebars->container->column_l->p60->3->1->0->3->1->p60downloadReportDiv"
25576
]
@@ -25674,7 +25680,7 @@
25680
"zh-cht": "下載設備列表",
25681
"hu": "Eszközlista letöltése",
25682
"xloc": [
25677
- "default.handlebars->47->2205"
25683
+ "default.handlebars->47->2207"
25684
]
25685
},
25686
{
@@ -25890,7 +25896,7 @@
25896
"zh-cht": "使用以下一種檔案格式下載事件列表。",
25897
"hu": "Töltse le az események listáját az alábbi fájlformátumokban.",
25898
"xloc": [
25893
- "default.handlebars->47->2653"
25899
+ "default.handlebars->47->2655"
25900
]
25901
},
25902
{
@@ -25917,7 +25923,7 @@
25923
"zh-cht": "使用以下一種檔案格式下載用戶列表。",
25924
"hu": "Töltse le a felhasználók listáját az alábbi fájlformátumok valamelyikével.",
25925
"xloc": [
25920
- "default.handlebars->47->2730"
25926
+ "default.handlebars->47->2732"
25927
]
25928
},
25929
{
@@ -26027,7 +26033,7 @@
26033
"zh-cht": "下載:“{0}”",
26034
"hu": "Letöltés: \\\"{0}\\\"",
26035
"xloc": [
26030
- "default.handlebars->47->2518"
26036
+ "default.handlebars->47->2520"
26037
]
26038
},
26039
{
@@ -26054,7 +26060,7 @@
26060
"zh-cht": "下載:\\\"{0}\\\",大小:{1}",
26061
"hu": "Letöltés: \\\"{0}\\\", Méret: {1}",
26062
"xloc": [
26057
- "default.handlebars->47->2575"
26063
+ "default.handlebars->47->2577"
26064
]
26065
},
26066
{
@@ -26108,7 +26114,7 @@
26114
"zh-cht": "代理重複",
26115
"hu": "Duplikált Agent",
26116
"xloc": [
26111
- "default.handlebars->47->3259"
26117
+ "default.handlebars->47->3261"
26118
]
26119
},
26120
{
@@ -26162,7 +26168,7 @@
26168
"zh-cht": "複製用戶群",
26169
"hu": "Felhasználó csoport duplikálása",
26170
"xloc": [
26165
- "default.handlebars->47->2799"
26171
+ "default.handlebars->47->2801"
26172
]
26173
},
26174
{
@@ -26216,8 +26222,8 @@
26222
"default.handlebars->47->1224",
26223
"default.handlebars->47->287",
26224
"default.handlebars->47->289",
26219
- "default.handlebars->47->3068",
26220
- "default.handlebars->47->3094",
26225
+ "default.handlebars->47->3070",
26226
+ "default.handlebars->47->3096",
26227
"player.handlebars->3->18"
26228
]
26229
},
@@ -26270,7 +26276,7 @@
26276
"hu": "holland (Belga)",
26277
"xloc": [
26278
"default-mobile.handlebars->11->150",
26273
- "default.handlebars->47->1839",
26279
+ "default.handlebars->47->1841",
26280
"login2.handlebars->7->47"
26281
]
26282
},
@@ -26299,7 +26305,7 @@
26305
"hu": "holland",
26306
"xloc": [
26307
"default-mobile.handlebars->11->149",
26302
- "default.handlebars->47->1838",
26308
+ "default.handlebars->47->1840",
26309
"login2.handlebars->7->46"
26310
]
26311
},
@@ -26713,9 +26719,9 @@
26719
"zh-cht": "編輯裝置",
26720
"hu": "Eszköz szerkesztése",
26721
"xloc": [
26716
- "default-mobile.handlebars->11->605",
26717
- "default-mobile.handlebars->11->607",
26718
- "default-mobile.handlebars->11->614",
26722
+ "default-mobile.handlebars->11->606",
26723
+ "default-mobile.handlebars->11->608",
26724
+ "default-mobile.handlebars->11->615",
26725
"default.handlebars->47->1339",
26726
"default.handlebars->47->1341",
26727
"default.handlebars->47->1348"
@@ -26745,17 +26751,17 @@
26751
"zh-cht": "編輯裝置群",
26752
"hu": "Eszközcsoport szerkesztés",
26753
"xloc": [
26748
- "default-mobile.handlebars->11->916",
26749
- "default-mobile.handlebars->11->919",
26750
- "default-mobile.handlebars->11->922",
26751
- "default-mobile.handlebars->11->929",
26752
- "default-mobile.handlebars->11->949",
26753
- "default.handlebars->47->2251",
26754
- "default.handlebars->47->2254",
26755
- "default.handlebars->47->2257",
26756
- "default.handlebars->47->2294",
26757
- "default.handlebars->47->2321",
26758
- "default.handlebars->47->2333"
26754
+ "default-mobile.handlebars->11->917",
26755
+ "default-mobile.handlebars->11->920",
26756
+ "default-mobile.handlebars->11->923",
26757
+ "default-mobile.handlebars->11->930",
26758
+ "default-mobile.handlebars->11->950",
26759
+ "default.handlebars->47->2253",
26760
+ "default.handlebars->47->2256",
26761
+ "default.handlebars->47->2259",
26762
+ "default.handlebars->47->2296",
26763
+ "default.handlebars->47->2323",
26764
+ "default.handlebars->47->2335"
26765
]
26766
},
26767
{
@@ -26782,7 +26788,7 @@
26788
"zh-cht": "編輯裝置群功能",
26789
"hu": "Eszköz Csoport funkciók szerkesztése",
26790
"xloc": [
26785
- "default.handlebars->47->2280"
26791
+ "default.handlebars->47->2282"
26792
]
26793
},
26794
{
@@ -26809,8 +26815,8 @@
26815
"zh-cht": "編輯裝置群權限",
26816
"hu": "Eszközcsoport engedélyek szerkesztése",
26817
"xloc": [
26812
- "default.handlebars->47->2318",
26813
- "default.handlebars->47->2330"
26818
+ "default.handlebars->47->2320",
26819
+ "default.handlebars->47->2332"
26820
]
26821
},
26822
{
@@ -26837,7 +26843,7 @@
26843
"zh-cht": "編輯裝置群用戶同意",
26844
"hu": "Eszközcsoport felhasználói hozzájárulások szerkesztése",
26845
"xloc": [
26840
- "default.handlebars->47->2258"
26846
+ "default.handlebars->47->2260"
26847
]
26848
},
26849
{
@@ -26864,8 +26870,8 @@
26870
"zh-cht": "編輯裝置筆記",
26871
"hu": "Eszköz jegyzetek szerkesztése",
26872
"xloc": [
26867
- "default-mobile.handlebars->11->941",
26868
- "default.handlebars->47->2308"
26873
+ "default-mobile.handlebars->11->942",
26874
+ "default.handlebars->47->2310"
26875
]
26876
},
26877
{
@@ -26892,8 +26898,8 @@
26898
"zh-cht": "編輯裝置權限",
26899
"hu": "Eszköz engedélyek szerkesztése",
26900
"xloc": [
26895
- "default.handlebars->47->2323",
26896
- "default.handlebars->47->2325"
26901
+ "default.handlebars->47->2325",
26902
+ "default.handlebars->47->2327"
26903
]
26904
},
26905
{
@@ -26947,7 +26953,7 @@
26953
"zh-cht": "編輯裝置用戶同意",
26954
"hu": "Felhasználói hozzájárulások szerkesztése",
26955
"xloc": [
26950
- "default.handlebars->47->2260"
26956
+ "default.handlebars->47->2262"
26957
]
26958
},
26959
{
@@ -27004,7 +27010,7 @@
27010
"default-mobile.handlebars->11->507",
27011
"default-mobile.handlebars->11->512",
27012
"default-mobile.handlebars->11->513",
27007
- "default-mobile.handlebars->11->600",
27013
+ "default-mobile.handlebars->11->601",
27014
"default.handlebars->47->1283",
27015
"default.handlebars->47->906",
27016
"default.handlebars->47->911",
@@ -27035,8 +27041,8 @@
27041
"zh-cht": "編輯筆記",
27042
"hu": "Jegyzetek szerkesztése",
27043
"xloc": [
27038
- "default-mobile.handlebars->11->956",
27039
- "default.handlebars->47->2340"
27044
+ "default-mobile.handlebars->11->957",
27045
+ "default.handlebars->47->2342"
27046
]
27047
},
27048
{
@@ -27063,7 +27069,7 @@
27069
"zh-cht": "編輯用戶同意",
27070
"hu": "Felhasználói hozzájárulások szerkesztése",
27071
"xloc": [
27066
- "default.handlebars->47->2259"
27072
+ "default.handlebars->47->2261"
27073
]
27074
},
27075
{
@@ -27090,7 +27096,7 @@
27096
"zh-cht": "編輯用戶裝置群權限",
27097
"hu": "Felhasználói eszközcsoport engedélyek szerkesztése",
27098
"xloc": [
27093
- "default.handlebars->47->2331"
27099
+ "default.handlebars->47->2333"
27100
]
27101
},
27102
{
@@ -27117,7 +27123,7 @@
27123
"zh-cht": "編輯用戶裝置權限",
27124
"hu": "Felhasználói eszközengedélyek szerkesztése",
27125
"xloc": [
27120
- "default.handlebars->47->2326"
27126
+ "default.handlebars->47->2328"
27127
]
27128
},
27129
{
@@ -27144,7 +27150,7 @@
27150
"zh-cht": "編輯用戶特徵",
27151
"hu": "Felhasználói funkciók szerkesztése",
27152
"xloc": [
27147
- "default.handlebars->47->3003"
27153
+ "default.handlebars->47->3005"
27154
]
27155
},
27156
{
@@ -27171,7 +27177,7 @@
27177
"zh-cht": "編輯用戶群",
27178
"hu": "Felhasználói csoport szerkesztése",
27179
"xloc": [
27174
- "default.handlebars->47->2856"
27180
+ "default.handlebars->47->2858"
27181
]
27182
},
27183
{
@@ -27198,7 +27204,7 @@
27204
"zh-cht": "編輯用戶群裝置權限",
27205
"hu": "Felhasználói csoport eszköz engedélyeinek szerkesztése",
27206
"xloc": [
27201
- "default.handlebars->47->2328"
27207
+ "default.handlebars->47->2330"
27208
]
27209
},
27210
{
@@ -27225,7 +27231,7 @@
27231
"zh-cht": "編輯用戶組功能",
27232
"hu": "Felhasználói Csoportok funkciók szerkesztése",
27233
"xloc": [
27228
- "default.handlebars->47->2849"
27234
+ "default.handlebars->47->2851"
27235
]
27236
},
27237
{
@@ -27252,7 +27258,7 @@
27258
"zh-cht": "編輯用戶組用戶同意",
27259
"hu": "Felhasználói Csoport felhasználói hozzájárulások szerkesztése",
27260
"xloc": [
27255
- "default.handlebars->47->2261"
27261
+ "default.handlebars->47->2263"
27262
]
27263
},
27264
{
@@ -27386,12 +27392,12 @@
27392
"hu": "Email",
27393
"xloc": [
27394
"default-mobile.handlebars->11->316",
27389
- "default.handlebars->47->2748",
27390
- "default.handlebars->47->2882",
27395
+ "default.handlebars->47->2750",
27396
"default.handlebars->47->2884",
27392
- "default.handlebars->47->2932",
27393
- "default.handlebars->47->2945",
27394
- "default.handlebars->47->3006",
27397
+ "default.handlebars->47->2886",
27398
+ "default.handlebars->47->2934",
27399
+ "default.handlebars->47->2947",
27400
+ "default.handlebars->47->3008",
27401
"default.handlebars->47->543",
27402
"login-mobile.handlebars->5->45",
27403
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3",
@@ -27415,7 +27421,7 @@
27421
"de": "E-Mail ({0})",
27422
"es": "Correo Electronico ({0})",
27423
"xloc": [
27418
- "default.handlebars->47->2150",
27424
+ "default.handlebars->47->2152",
27425
"default.handlebars->47->965"
27426
]
27427
},
@@ -27444,7 +27450,7 @@
27450
"hu": "E-mail cím módosítása",
27451
"xloc": [
27452
"default-mobile.handlebars->11->317",
27447
- "default.handlebars->47->2029"
27453
+ "default.handlebars->47->2031"
27454
]
27455
},
27456
{
@@ -27472,7 +27478,7 @@
27478
"hu": "E-mail hitelesítés",
27479
"xloc": [
27480
"default-mobile.handlebars->11->101",
27475
- "default.handlebars->47->1769"
27481
+ "default.handlebars->47->1771"
27482
]
27483
},
27484
{
@@ -27587,7 +27593,7 @@
27593
"hu": "Email értesítés",
27594
"xloc": [
27595
"default.handlebars->47->1101",
27590
- "default.handlebars->47->2390"
27596
+ "default.handlebars->47->2392"
27597
]
27598
},
27599
{
@@ -27639,7 +27645,7 @@
27645
"hu": "Email megerősítés",
27646
"xloc": [
27647
"default-mobile.handlebars->11->315",
27642
- "default.handlebars->47->2027"
27648
+ "default.handlebars->47->2029"
27649
]
27650
},
27651
{
@@ -27666,8 +27672,8 @@
27672
"zh-cht": "不允許使用電子郵件域 \\\"{0}\\\"。只允許 ({1})",
27673
"hu": "A \\\"{0}\\\" e-mail domain nem engedélyezett. Csak ({1}) engedélyezett",
27674
"xloc": [
27669
- "default-mobile.handlebars->11->1014",
27670
- "default.handlebars->47->3238"
27675
+ "default-mobile.handlebars->11->1015",
27676
+ "default.handlebars->47->3240"
27677
]
27678
},
27679
{
@@ -27721,7 +27727,7 @@
27727
"zh-cht": "電郵未驗證",
27728
"hu": "Az e-mail cím nincs megerősítve.",
27729
"xloc": [
27724
- "default.handlebars->47->2683"
27730
+ "default.handlebars->47->2685"
27731
]
27732
},
27733
{
@@ -27748,8 +27754,8 @@
27754
"zh-cht": "電子郵件已驗證",
27755
"hu": "Az e-mail cím megerősítve.",
27756
"xloc": [
27751
- "default.handlebars->47->2684",
27752
- "default.handlebars->47->2876"
27757
+ "default.handlebars->47->2686",
27758
+ "default.handlebars->47->2878"
27759
]
27760
},
27761
{
@@ -27776,7 +27782,7 @@
27782
"zh-cht": "電郵已驗證。",
27783
"hu": "Az e-mail cím megerősítve.",
27784
"xloc": [
27779
- "default.handlebars->47->2754"
27785
+ "default.handlebars->47->2756"
27786
]
27787
},
27788
{
@@ -27803,7 +27809,7 @@
27809
"zh-cht": "電郵未驗證",
27810
"hu": "Az e-mail cím nincs megerősítve.",
27811
"xloc": [
27806
- "default.handlebars->47->2877"
27812
+ "default.handlebars->47->2879"
27813
]
27814
},
27815
{
@@ -27854,8 +27860,8 @@
27860
"zh-cht": "電郵已發送。",
27861
"hu": "E-mail elküldve.",
27862
"xloc": [
27857
- "default-mobile.handlebars->11->998",
27858
- "default.handlebars->47->3222",
27863
+ "default-mobile.handlebars->11->999",
27864
+ "default.handlebars->47->3224",
27865
"login-mobile.handlebars->5->2",
27866
"login.handlebars->5->2",
27867
"login2.handlebars->7->201"
@@ -27938,7 +27944,7 @@
27944
"zh-cht": "已通過電郵驗證,並且需要重置密碼。",
27945
"hu": "E-mail megerősített és kötelező jelszó-visszaállítás szükséges.",
27946
"xloc": [
27941
- "default.handlebars->47->2755"
27947
+ "default.handlebars->47->2757"
27948
]
27949
},
27950
{
@@ -27989,7 +27995,7 @@
27995
"zh-cht": "電子郵件/短信/推送流量",
27996
"hu": "E-mail/SMS/Push forgalom",
27997
"xloc": [
27992
- "default.handlebars->47->3318"
27998
+ "default.handlebars->47->3320"
27999
]
28000
},
28001
{
@@ -28103,7 +28109,7 @@
28109
"zh-cht": "啟用邀請代碼",
28110
"hu": "Meghívókódok engedélyezése",
28111
"xloc": [
28106
- "default.handlebars->47->2366"
28112
+ "default.handlebars->47->2368"
28113
]
28114
},
28115
{
@@ -28158,7 +28164,7 @@
28164
"hu": "Kétfaktoros e-mail hitelesítés engedélyezése.",
28165
"xloc": [
28166
"default-mobile.handlebars->11->103",
28161
- "default.handlebars->47->1771"
28167
+ "default.handlebars->47->1773"
28168
]
28169
},
28170
{
@@ -28212,10 +28218,10 @@
28218
"zh-cht": "已啟用",
28219
"hu": "Engedélyezve",
28220
"xloc": [
28215
- "default-mobile.handlebars->11->860",
28221
+ "default-mobile.handlebars->11->861",
28222
"default.handlebars->47->129",
28217
- "default.handlebars->47->1698",
28218
- "default.handlebars->47->3096"
28223
+ "default.handlebars->47->1700",
28224
+ "default.handlebars->47->3098"
28225
]
28226
},
28227
{
@@ -28242,7 +28248,7 @@
28248
"zh-cht": "啟用電子郵件兩因素身份驗證",
28249
"hu": "Kétfaktoros e-mail hitelesítés engedélyezve",
28250
"xloc": [
28245
- "default.handlebars->47->2557"
28251
+ "default.handlebars->47->2559"
28252
]
28253
},
28254
{
@@ -28323,7 +28329,7 @@
28329
"zh-cht": "編碼:RAW",
28330
"hu": "Kódolás: RAW",
28331
"xloc": [
28326
- "default.handlebars->47->1562"
28332
+ "default.handlebars->47->1564"
28333
]
28334
},
28335
{
@@ -28350,15 +28356,15 @@
28356
"zh-cht": "編碼:UTF8",
28357
"hu": "Kódolás: UTF8",
28358
"xloc": [
28353
- "default.handlebars->47->1563"
28359
+ "default.handlebars->47->1565"
28360
]
28361
},
28362
{
28363
"en": "Encryption In Progress",
28364
"nl": "Versleuteling wordt uitgevoerd",
28365
"xloc": [
28360
- "default-mobile.handlebars->11->862",
28361
- "default.handlebars->47->1700"
28366
+ "default-mobile.handlebars->11->863",
28367
+ "default.handlebars->47->1702"
28368
]
28369
},
28370
{
@@ -28385,7 +28391,7 @@
28391
"zh-cht": "結尾",
28392
"hu": "Vége",
28393
"xloc": [
28388
- "default-mobile.handlebars->11->632",
28394
+ "default-mobile.handlebars->11->633",
28395
"default.handlebars->47->1398"
28396
]
28397
},
@@ -28413,7 +28419,7 @@
28419
"zh-cht": "時間結束",
28420
"hu": "Befejezés ideje",
28421
"xloc": [
28416
- "default.handlebars->47->3093"
28422
+ "default.handlebars->47->3095"
28423
]
28424
},
28425
{
@@ -28440,7 +28446,7 @@
28446
"zh-cht": "從{1}到{2},{3}秒結束了桌面會話“{0}”",
28447
"hu": "Befejezett asztali munkamenet \\\"{0}\\\", {1} és {2} között, {3} másodperc",
28448
"xloc": [
28443
- "default.handlebars->47->2480"
28449
+ "default.handlebars->47->2482"
28450
]
28451
},
28452
{
@@ -28467,7 +28473,7 @@
28473
"zh-cht": "從{1}到{2},{3}秒結束了文件管理會話“{0}”",
28474
"hu": "Befejezett fájl munkamenet \\\"{0}\\\" az {1}-től {2}-ig, {3} másodperc",
28475
"xloc": [
28470
- "default.handlebars->47->2481"
28476
+ "default.handlebars->47->2483"
28477
]
28478
},
28479
{
@@ -28494,7 +28500,7 @@
28500
"zh-cht": "已結束本地中繼會話 \\\"{0}\\\",協議 {1} 到 {2},{3} 秒",
28501
"hu": "Befejezett helyi relay munkamenet \\\"{0}\\\" protokol {1} és {2} között, {3} másodperc",
28502
"xloc": [
28497
- "default.handlebars->47->2590"
28503
+ "default.handlebars->47->2592"
28504
]
28505
},
28506
{
@@ -28521,7 +28527,7 @@
28527
"zh-cht": "從 {1} 到 {2} 結束的 Messenger 會話 \\\"{0}\\\",{3} 秒",
28528
"hu": "Befejezett üzenetküldő munkamenet \\\"{0}\\\" {1} és {2} között, {3} másodperc",
28529
"xloc": [
28524
- "default.handlebars->47->2581"
28530
+ "default.handlebars->47->2583"
28531
]
28532
},
28533
{
@@ -28548,7 +28554,7 @@
28554
"zh-cht": "從{1}到{2},{3}秒結束了中繼會話“{0}”",
28555
"hu": "Befejezett relay munkamenet \\\"{0}\\\" {1} és {2} között, {3} másodperc",
28556
"xloc": [
28551
- "default.handlebars->47->2478"
28557
+ "default.handlebars->47->2480"
28558
]
28559
},
28560
{
@@ -28575,7 +28581,7 @@
28581
"zh-cht": "從{1}到{2},{3}秒結束了終端會話“{0}”",
28582
"hu": "Befejezett terminál munkamenet \\\"{0}\\\" az {1}-től {2}-ig, {3} másodperc",
28583
"xloc": [
28578
- "default.handlebars->47->2479"
28584
+ "default.handlebars->47->2481"
28585
]
28586
},
28587
{
@@ -28603,7 +28609,7 @@
28609
"hu": "angol",
28610
"xloc": [
28611
"default-mobile.handlebars->11->151",
28606
- "default.handlebars->47->1840",
28612
+ "default.handlebars->47->1842",
28613
"login2.handlebars->7->48"
28614
]
28615
},
@@ -28632,7 +28638,7 @@
28638
"hu": "angol (Ausztrália)",
28639
"xloc": [
28640
"default-mobile.handlebars->11->152",
28635
- "default.handlebars->47->1841",
28641
+ "default.handlebars->47->1843",
28642
"login2.handlebars->7->49"
28643
]
28644
},
@@ -28661,7 +28667,7 @@
28667
"hu": "angol (Belize)",
28668
"xloc": [
28669
"default-mobile.handlebars->11->153",
28664
- "default.handlebars->47->1842",
28670
+ "default.handlebars->47->1844",
28671
"login2.handlebars->7->50"
28672
]
28673
},
@@ -28690,7 +28696,7 @@
28696
"hu": "angol (Kanada)",
28697
"xloc": [
28698
"default-mobile.handlebars->11->154",
28693
- "default.handlebars->47->1843",
28699
+ "default.handlebars->47->1845",
28700
"login2.handlebars->7->51"
28701
]
28702
},
@@ -28719,7 +28725,7 @@
28725
"hu": "angol (Írország)",
28726
"xloc": [
28727
"default-mobile.handlebars->11->155",
28722
- "default.handlebars->47->1844",
28728
+ "default.handlebars->47->1846",
28729
"login2.handlebars->7->52"
28730
]
28731
},
@@ -28748,7 +28754,7 @@
28754
"hu": "angol (Jamaika)",
28755
"xloc": [
28756
"default-mobile.handlebars->11->156",
28751
- "default.handlebars->47->1845",
28757
+ "default.handlebars->47->1847",
28758
"login2.handlebars->7->53"
28759
]
28760
},
@@ -28777,7 +28783,7 @@
28783
"hu": "angol (Új-Zéland)",
28784
"xloc": [
28785
"default-mobile.handlebars->11->157",
28780
- "default.handlebars->47->1846",
28786
+ "default.handlebars->47->1848",
28787
"login2.handlebars->7->54"
28788
]
28789
},
@@ -28806,7 +28812,7 @@
28812
"hu": "angol (Fülöp-szigetek)",
28813
"xloc": [
28814
"default-mobile.handlebars->11->158",
28809
- "default.handlebars->47->1847",
28815
+ "default.handlebars->47->1849",
28816
"login2.handlebars->7->55"
28817
]
28818
},
@@ -28835,7 +28841,7 @@
28841
"hu": "angol (Dél-Afrika)",
28842
"xloc": [
28843
"default-mobile.handlebars->11->159",
28838
- "default.handlebars->47->1848",
28844
+ "default.handlebars->47->1850",
28845
"login2.handlebars->7->56"
28846
]
28847
},
@@ -28864,7 +28870,7 @@
28870
"hu": "angol (Trinidad és Tobago)",
28871
"xloc": [
28872
"default-mobile.handlebars->11->160",
28867
- "default.handlebars->47->1849",
28873
+ "default.handlebars->47->1851",
28874
"login2.handlebars->7->57"
28875
]
28876
},
@@ -28893,7 +28899,7 @@
28899
"hu": "angol (Egyesült Királyság)",
28900
"xloc": [
28901
"default-mobile.handlebars->11->161",
28896
- "default.handlebars->47->1850",
28902
+ "default.handlebars->47->1852",
28903
"login2.handlebars->7->58"
28904
]
28905
},
@@ -28922,7 +28928,7 @@
28928
"hu": "angol (USA)",
28929
"xloc": [
28930
"default-mobile.handlebars->11->162",
28925
- "default.handlebars->47->1851",
28931
+ "default.handlebars->47->1853",
28932
"login2.handlebars->7->59"
28933
]
28934
},
@@ -28951,7 +28957,7 @@
28957
"hu": "angol (Zimbabwe)",
28958
"xloc": [
28959
"default-mobile.handlebars->11->163",
28954
- "default.handlebars->47->1852",
28960
+ "default.handlebars->47->1854",
28961
"login2.handlebars->7->60"
28962
]
28963
},
@@ -29003,11 +29009,11 @@
29009
"zh-cht": "輸入",
29010
"hu": "Enter",
29011
"xloc": [
29006
- "default-mobile.handlebars->11->625",
29012
+ "default-mobile.handlebars->11->626",
29013
"default.handlebars->47->1391",
29008
- "default.handlebars->47->1526",
29009
- "default.handlebars->47->2066",
29010
- "default.handlebars->47->2067",
29014
+ "default.handlebars->47->1528",
29015
+ "default.handlebars->47->2068",
29016
+ "default.handlebars->47->2069",
29017
"sharing.handlebars->11->55"
29018
]
29019
},
@@ -29035,7 +29041,7 @@
29041
"zh-cht": "輸入管理領域名稱的逗號分隔列表。",
29042
"hu": "Adja meg az adminisztratív realm nevek vesszővel elválasztott listáját. (Ezek nem domain-ek)",
29043
"xloc": [
29038
- "default.handlebars->47->2759"
29044
+ "default.handlebars->47->2761"
29045
]
29046
},
29047
{
@@ -29271,7 +29277,7 @@
29277
"zh-cht": "輸入支持SMS的電話號碼。驗證後,該號碼可用於登入驗證和其他通知。",
29278
"hu": "Írja be az SMS fogadásra alkalmas telefonszámát. Az ellenőrzést követően a szám felhasználható bejelentkezés ellenőrzésére és egyéb értesítésekre.",
29279
"xloc": [
29274
- "default.handlebars->47->1735"
29280
+ "default.handlebars->47->1737"
29281
]
29282
},
29283
{
@@ -29283,7 +29289,7 @@
29289
"de": "Geben Sie ihren Messengerdienst und Nutzernamen ein. Sobald Sie verifiziert sind, kann dieser Server Ihnen Loginverifikationen und andere Benachrichtigungen senden.",
29290
"es": "Ingresa a tu servicio de mensajería y Usuario. Una vez verificado, este servidor puede enviarle verificación de inicio de sesión y otras notificaciones.",
29291
"xloc": [
29286
- "default.handlebars->47->1741"
29292
+ "default.handlebars->47->1743"
29293
]
29294
},
29295
{
@@ -29437,8 +29443,8 @@
29443
"zh-cht": "錯誤,邀請碼 \\\"{0}\\\" 已在使用中。",
29444
"hu": "Hiba, a \\\"{0}\\\" meghívókód már használatban van.",
29445
"xloc": [
29440
- "default-mobile.handlebars->11->1006",
29441
- "default.handlebars->47->3230"
29446
+ "default-mobile.handlebars->11->1007",
29447
+ "default.handlebars->47->3232"
29448
]
29449
},
29450
{
@@ -29465,8 +29471,8 @@
29471
"zh-cht": "錯誤,密碼未更改。",
29472
"hu": "Hiba, a jelszó nem módosult.",
29473
"xloc": [
29468
- "default-mobile.handlebars->11->1003",
29469
- "default.handlebars->47->3227"
29474
+ "default-mobile.handlebars->11->1004",
29475
+ "default.handlebars->47->3229"
29476
]
29477
},
29478
{
@@ -29493,8 +29499,8 @@
29499
"zh-cht": "錯誤,無法更改為常用密碼。",
29500
"hu": "Hiba, nem lehet átváltani a gyakran használt jelszóra.",
29501
"xloc": [
29496
- "default-mobile.handlebars->11->1002",
29497
- "default.handlebars->47->3226"
29502
+ "default-mobile.handlebars->11->1003",
29503
+ "default.handlebars->47->3228"
29504
]
29505
},
29506
{
@@ -29521,8 +29527,8 @@
29527
"zh-cht": "錯誤,無法更改為以前使用的密碼。",
29528
"hu": "Hiba, nem lehet átváltani a korábban használt jelszóra.",
29529
"xloc": [
29524
- "default-mobile.handlebars->11->1001",
29525
- "default.handlebars->47->3225"
29530
+ "default-mobile.handlebars->11->1002",
29531
+ "default.handlebars->47->3227"
29532
]
29533
},
29534
{
@@ -29576,7 +29582,7 @@
29582
"zh-cht": "逃脫",
29583
"hu": "Escape",
29584
"xloc": [
29579
- "default-mobile.handlebars->11->626",
29585
+ "default-mobile.handlebars->11->627",
29586
"default.handlebars->47->1392"
29587
]
29588
},
@@ -29586,7 +29592,7 @@
29592
"pl": "Przestrzeń",
29593
"es": "Espace",
29594
"xloc": [
29589
- "default-mobile.handlebars->11->633"
29595
+ "default-mobile.handlebars->11->634"
29596
]
29597
},
29598
{
@@ -29614,7 +29620,7 @@
29620
"hu": "eszperantó",
29621
"xloc": [
29622
"default-mobile.handlebars->11->164",
29617
- "default.handlebars->47->1853",
29623
+ "default.handlebars->47->1855",
29624
"login2.handlebars->7->61"
29625
]
29626
},
@@ -29667,7 +29673,7 @@
29673
"hu": "észt",
29674
"xloc": [
29675
"default-mobile.handlebars->11->165",
29670
- "default.handlebars->47->1854",
29676
+ "default.handlebars->47->1856",
29677
"login2.handlebars->7->62"
29678
]
29679
},
@@ -29719,7 +29725,7 @@
29725
"zh-cht": "事件詳情",
29726
"hu": "Az esemény részletei",
29727
"xloc": [
29722
- "default.handlebars->47->1571"
29728
+ "default.handlebars->47->1573"
29729
]
29730
},
29731
{
@@ -29746,7 +29752,7 @@
29752
"zh-cht": "事件列表輸出",
29753
"hu": "Eseménylista exportálás",
29754
"xloc": [
29749
- "default.handlebars->47->2658"
29755
+ "default.handlebars->47->2660"
29756
]
29757
},
29758
{
@@ -29759,7 +29765,7 @@
29765
"de": "Eventaufzeichnungen",
29766
"es": "Registro de eventos",
29767
"xloc": [
29762
- "default.handlebars->47->3181"
29768
+ "default.handlebars->47->3183"
29769
]
29770
},
29771
{
@@ -29954,7 +29960,7 @@
29960
"hu": "Lejárati idő",
29961
"xloc": [
This file is too large to show in full.
views/default.handlebars
+18
@@ -884,6 +884,7 @@
884
<input type=button style="margin-right:2px" disabled="disabled" id=p13RefreshButton value="Refresh" onclick="p13folderup(9999)" />
885
<input type=button style="margin-right:2px" disabled="disabled" id=p13FindButton value="Find" onclick="p13findfile()" />
886
<input type=button style="margin-right:2px" disabled="disabled" id=p13GoToFolderButton value="GoTo" onclick="p13gotofolder()" />
887
+ <input type=button style="margin-right:2px" disabled="disabled" id=p13OpenButton value="Open" onclick="p13openfilefolder()" />
888
</div>
889
</td>
890
</tr>
@@ -11165,6 +11166,21 @@
11166
p13setActions();
11167
}
11168
11169
+ function p13openfilefolder() {
11170
+ setDialogMode(2, "Open File/Folder", 3, p13openfilefolderEx, "Are you sure you want to open this file/folder on the remote devices desktop ?");
11171
+ }
11172
+ function p13openfilefolderEx() {
11173
+ var openfilefolder = "", checkboxes = document.getElementsByName('fd');
11174
+ for (var i = 0; i < checkboxes.length; i++) {
11175
+ console.log(checkboxes[i]);
11176
+ if (checkboxes[i].checked) {
11177
+ openfilefolder = (isWindowsNode(currentNode) ? '' : '/') + p13filetreelocation.join(isWindowsNode(currentNode) ? '\\' : '/') + (isWindowsNode(currentNode) ? '\\' : '/') + p13filetree.dir[checkboxes[i].value].n;
11178
+ }
11179
+ }
11180
+ if (openfilefolder == "") return;
11181
+ files.sendText({ action: 'open', reqid: 1, path: openfilefolder, dir: (p13getFileSelDirCount() == 1) ? true : false });
11182
+ }
11183
+
11184
function p13gotofolder() {
11185
setDialogMode(2, "Go To Folder", 3, p13gotofolderEx, '<input type=text id=p13folderinput style=width:100% placeholder="'+(isWindowsNode(currentNode) ? 'C:\\' : '/var/www')+'" />');
11186
focusTextBox('p13folderinput');
@@ -11261,6 +11277,7 @@
11277
QE('p13PasteButton', false);
11278
QE('p13GoToFolderButton', false);
11279
QE('p13DownloadButton', false);
11280
+ QE('p13OpenButton', false);
11281
} else {
11282
var cc = p13getFileSelCount(), tc = p13getFileCount(), sfc = p13getFileSelCount(false); // In order: number of entires selected, number of total entries, number of selected entires that are files (not folders)
11283
var winAgent = ((currentNode.agent.id > 0) && (currentNode.agent.id < 5)) || (currentNode.agent.id == 14)|| (currentNode.agent.id == 34);
@@ -11279,6 +11296,7 @@
11296
QE('p13UnzipButton', advancedFeatures && (cc == 1) && (sfc == 1) && ((p13filetreelocation.length > 0) || (winAgent == false)) && p13getFileSelAllowedExt('.zip'));
11297
QE('p13PasteButton', advancedFeatures && ((p13filetreelocation.length > 0) || (winAgent == false)) && ((p13clipboard != null) && (p13clipboard.length > 0)));
11298
QE('p13GoToFolderButton', true);
11299
+ QE('p13OpenButton', (cc == 1));
11300
QE('p13DownloadButton', advancedFeatures && (cc > 0) && (cc == sfc) && ((p13filetreelocation.length > 0) || (winAgent == false)));
11301
}
11302
var filesState = ((files != null) && (files.state != 0));