From 65d1346e062ae35e114caa54733c3d0bb07a62a1 Mon Sep 17 00:00:00 2001 From: Simon Smith Date: Wed, 3 Apr 2024 09:51:18 +0100 Subject: [PATCH] open files/folders on desktop with files and console with openfile (#5986) Signed-off-by: si458 --- agents/meshcore.js | 72 +- translate/translate.json | 4449 +++++++++++++++++++------------------- views/default.handlebars | 18 + 3 files changed, 2323 insertions(+), 2216 deletions(-) diff --git a/agents/meshcore.js b/agents/meshcore.js index bfbac734..70726ae7 100644 --- a/agents/meshcore.js +++ b/agents/meshcore.js @@ -3308,6 +3308,13 @@ function onTunnelData(data) } break; } + case 'open': { + // Open the local file/folder on the users desktop + if (cmd.path) { + MeshServerLogEx(20, [cmd.path], "Opening: " + cmd.path, cmd); + openFileOnDesktop(cmd.path); + } + } case 'markcoredump': { // If we are asking for the coredump file, set the right path. var coreDumpPath = null; @@ -3768,6 +3775,64 @@ function consoleHttpResponse(response) { response.close = function () { sendConsoleText('httprequest.response.close', this.sessionid); consoleHttpRequest = null; } } +// Open a local file on current user's desktop +function openFileOnDesktop(file) { + var child = null; + try { + switch (process.platform) { + case 'win32': + var uid = require('user-sessions').consoleUid(); + var user = require('user-sessions').getUsername(uid); + var domain = require('user-sessions').getDomain(uid); + var task = { name: 'MeshChatTask', user: user, domain: domain, execPath: (require('fs').statSync(file).isDirectory() ? process.env['windir'] + '\\explorer.exe' : file) }; + if (require('fs').statSync(file).isDirectory()) task.arguments = [file]; + try { + require('win-tasks').addTask(task); + require('win-tasks').getTask({ name: 'MeshChatTask' }).run(); + require('win-tasks').deleteTask('MeshChatTask'); + return (true); + } + catch (ex) { + var taskoptions = { env: { _target: (require('fs').statSync(file).isDirectory() ? process.env['windir'] + '\\explorer.exe' : file), _user: '"' + domain + '\\' + user + '"' }, _args: "" }; + if (require('fs').statSync(file).isDirectory()) taskoptions.env._args = file; + for (var c1e in process.env) { + taskoptions.env[c1e] = process.env[c1e]; + } + var child = require('child_process').execFile(process.env['windir'] + '\\System32\\WindowsPowerShell\\v1.0\\powershell.exe', ['powershell', '-noprofile', '-nologo', '-command', '-'], taskoptions); + child.stderr.on('data', function (c) { }); + child.stdout.on('data', function (c) { }); + child.stdin.write('SCHTASKS /CREATE /F /TN MeshChatTask /SC ONCE /ST 00:00 '); + if (user) { child.stdin.write('/RU $env:_user '); } + child.stdin.write('/TR "$env:_target $env:_args"\r\n'); + child.stdin.write('$ts = New-Object -ComObject Schedule.service\r\n'); + child.stdin.write('$ts.connect()\r\n'); + child.stdin.write('$tsfolder = $ts.getfolder("\\")\r\n'); + child.stdin.write('$task = $tsfolder.GetTask("MeshChatTask")\r\n'); + child.stdin.write('$taskdef = $task.Definition\r\n'); + child.stdin.write('$taskdef.Settings.StopIfGoingOnBatteries = $false\r\n'); + child.stdin.write('$taskdef.Settings.DisallowStartIfOnBatteries = $false\r\n'); + child.stdin.write('$taskdef.Actions.Item(1).Path = $env:_target\r\n'); + child.stdin.write('$taskdef.Actions.Item(1).Arguments = $env:_args\r\n'); + child.stdin.write('$tsfolder.RegisterTaskDefinition($task.Name, $taskdef, 4, $null, $null, $null)\r\n'); + child.stdin.write('SCHTASKS /RUN /TN MeshChatTask\r\n'); + child.stdin.write('SCHTASKS /DELETE /F /TN MeshChatTask\r\nexit\r\n'); + child.waitExit(); + } + break; + case 'linux': + child = require('child_process').execFile('/usr/bin/xdg-open', ['xdg-open', file], { uid: require('user-sessions').consoleUid() }); + break; + case 'darwin': + child = require('child_process').execFile('/usr/bin/open', ['open', file]); + break; + default: + // Unknown platform, ignore this command. + break; + } + } catch (ex) { } + return child; +} + // Open a web browser to a specified URL on current user's desktop function openUserDesktopUrl(url) { if ((url.toLowerCase().startsWith('http://') == false) && (url.toLowerCase().startsWith('https://') == false)) { return null; } @@ -3833,7 +3898,7 @@ function processConsoleCommand(cmd, args, rights, sessionid) { var response = null; switch (cmd) { case 'help': { // Displays available commands - 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'; + 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'; if (require('os').dns != null) { availcommands += ',dnsinfo'; } try { require('linux-dhcp'); availcommands += ',dhcp'; } catch (ex) { } if (process.platform == 'win32') { @@ -4678,6 +4743,11 @@ function processConsoleCommand(cmd, args, rights, sessionid) { else { if (openUserDesktopUrl(args['_'][0]) == null) { response = 'Failed.'; } else { response = 'Success.'; } } break; } + case 'openfile': { + if (args['_'].length != 1) { response = 'Proper usage: openfile (filepath)'; } // Display usage + else { if (openFileOnDesktop(args['_'][0]) == null) { response = 'Failed.'; } else { response = 'Success.'; } } + break; + } case 'users': { if (meshCoreObj.users == null) { response = 'Active users are unknown.'; } else { response = 'Active Users: ' + meshCoreObj.users.join(', ') + '.'; } require('user-sessions').enumerateUsers().then(function (u) { for (var i in u) { sendConsoleText(u[i]); } }); diff --git a/translate/translate.json b/translate/translate.json index dc5736a5..7a857bff 100644 --- a/translate/translate.json +++ b/translate/translate.json @@ -58,8 +58,8 @@ "zh-cht": " + CIRA", "hu": " + CIRA", "xloc": [ - "default.handlebars->47->2159", - "default.handlebars->47->2161" + "default.handlebars->47->2161", + "default.handlebars->47->2163" ] }, { @@ -332,7 +332,7 @@ "zh-cht": " 可以使用密碼提示,但不建議使用。", "hu": "Jelszó tipp használható, de nem ajánlott.", "xloc": [ - "default.handlebars->47->2035" + "default.handlebars->47->2037" ] }, { @@ -359,8 +359,8 @@ "zh-cht": " 用戶需要先登入到該伺服器一次,然後才能將其新增到裝置群。", "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.", "xloc": [ - "default.handlebars->47->2283", - "default.handlebars->47->2863" + "default.handlebars->47->2285", + "default.handlebars->47->2865" ] }, { @@ -938,7 +938,7 @@ "zh-cht": "* 8個字符,1個大寫,1個小寫,1個數字,1個非字母數字。", "hu": "* 8 karakter, 1 nagybetű, 1 kisbetű , 1 szám, 1 speciális karakter.", "xloc": [ - "default.handlebars->47->2243", + "default.handlebars->47->2245", "default.handlebars->47->526" ] }, @@ -1039,15 +1039,15 @@ "zh-cht": ",", "hu": ", ", "xloc": [ - "default-mobile.handlebars->11->781", - "default-mobile.handlebars->11->783", - "default-mobile.handlebars->11->785", - "default-mobile.handlebars->11->971", - "default.handlebars->47->1619", + "default-mobile.handlebars->11->782", + "default-mobile.handlebars->11->784", + "default-mobile.handlebars->11->786", + "default-mobile.handlebars->11->972", "default.handlebars->47->1621", "default.handlebars->47->1623", - "default.handlebars->47->2359", - "default.handlebars->47->2636", + "default.handlebars->47->1625", + "default.handlebars->47->2361", + "default.handlebars->47->2638", "default.handlebars->47->994" ] }, @@ -1208,8 +1208,8 @@ "zh-cht": ",MQTT在線", "hu": ", MQTT online", "xloc": [ - "default-mobile.handlebars->11->874", - "default.handlebars->47->1713" + "default-mobile.handlebars->11->875", + "default.handlebars->47->1715" ] }, { @@ -1237,7 +1237,7 @@ "hu": ", Nincs hozzájárulás", "xloc": [ "default.handlebars->47->1089", - "default.handlebars->47->2201" + "default.handlebars->47->2203" ] }, { @@ -1265,7 +1265,7 @@ "hu": ", Hozzájárulás kérése a kapcsolódáshoz", "xloc": [ "default.handlebars->47->1090", - "default.handlebars->47->2202" + "default.handlebars->47->2204" ] }, { @@ -1320,7 +1320,7 @@ "hu": ", naponta ismétlődően", "xloc": [ "default.handlebars->47->1086", - "default.handlebars->47->2198" + "default.handlebars->47->2200" ] }, { @@ -1348,7 +1348,7 @@ "hu": ", hetente ismétlődően", "xloc": [ "default.handlebars->47->1087", - "default.handlebars->47->2199" + "default.handlebars->47->2201" ] }, { @@ -1426,7 +1426,7 @@ "zh-cht": ", SFTP", "hu": ", SFTP", "xloc": [ - "default-mobile.handlebars->11->679", + "default-mobile.handlebars->11->680", "default.handlebars->47->1503" ] }, @@ -1510,7 +1510,7 @@ "hu": ", Tálca értesítés", "xloc": [ "default.handlebars->47->1091", - "default.handlebars->47->2203" + "default.handlebars->47->2205" ] }, { @@ -1562,7 +1562,7 @@ "hu": ", csak megtekintés", "xloc": [ "default.handlebars->47->1088", - "default.handlebars->47->2200" + "default.handlebars->47->2202" ] }, { @@ -1589,9 +1589,9 @@ "zh-cht": ",WebRTC", "hu": ", WebRTC", "xloc": [ - "default-mobile.handlebars->11->620", - "default-mobile.handlebars->11->657", - "default-mobile.handlebars->11->680", + "default-mobile.handlebars->11->621", + "default-mobile.handlebars->11->658", + "default-mobile.handlebars->11->681", "default.handlebars->47->1381", "default.handlebars->47->1472", "default.handlebars->47->1504", @@ -1921,10 +1921,10 @@ "hu": "...", "xloc": [ "default-mobile.handlebars->11->346", - "default-mobile.handlebars->11->686", + "default-mobile.handlebars->11->687", "default.handlebars->47->1518", - "default.handlebars->47->2425", - "default.handlebars->47->3099", + "default.handlebars->47->2427", + "default.handlebars->47->3101", "sharing.handlebars->11->50" ] }, @@ -2102,7 +2102,7 @@ "zh-cht": "1個活躍時段", "hu": "1 aktív munkamenet", "xloc": [ - "default.handlebars->47->2957" + "default.handlebars->47->2959" ] }, { @@ -2129,9 +2129,9 @@ "zh-cht": "1個位元組", "hu": "1 byte", "xloc": [ - "default-mobile.handlebars->11->1015", + "default-mobile.handlebars->11->1016", "default-mobile.handlebars->11->356", - "default.handlebars->47->2449", + "default.handlebars->47->2451", "download.handlebars->3->1", "download2.handlebars->5->1", "sharing.handlebars->11->96" @@ -2245,7 +2245,7 @@ "zh-cht": "1群", "hu": "1 csoport", "xloc": [ - "default.handlebars->47->2913" + "default.handlebars->47->2915" ] }, { @@ -2302,7 +2302,7 @@ "hu": "1 perc", "xloc": [ "default.handlebars->47->1198", - "default.handlebars->47->2000" + "default.handlebars->47->2002" ] }, { @@ -2385,7 +2385,7 @@ "zh-cht": "有1個用戶沒有顯示,請使用搜尋框搜尋用戶...", "hu": "1 további felhasználó nem jelenik meg, használja a keresőmezőt a felhasználók kereséséhez...", "xloc": [ - "default.handlebars->47->2668" + "default.handlebars->47->2670" ] }, { @@ -2603,7 +2603,7 @@ "default-mobile.handlebars->11->425", "default-mobile.handlebars->11->429", "default-mobile.handlebars->11->433", - "default.handlebars->47->2672", + "default.handlebars->47->2674", "default.handlebars->47->444", "default.handlebars->47->447", "default.handlebars->47->451", @@ -2806,7 +2806,7 @@ "hu": "10 perc", "xloc": [ "default.handlebars->47->1200", - "default.handlebars->47->2002" + "default.handlebars->47->2004" ] }, { @@ -3027,7 +3027,7 @@ "hu": "12 óra", "xloc": [ "default.handlebars->47->1208", - "default.handlebars->47->2010" + "default.handlebars->47->2012" ] }, { @@ -3216,7 +3216,7 @@ "hu": "15 perc", "xloc": [ "default.handlebars->47->1201", - "default.handlebars->47->2003" + "default.handlebars->47->2005" ] }, { @@ -3244,7 +3244,7 @@ "hu": "12 óra", "xloc": [ "default.handlebars->47->1209", - "default.handlebars->47->2011" + "default.handlebars->47->2013" ] }, { @@ -3461,7 +3461,7 @@ "hu": "2 nap", "xloc": [ "default.handlebars->47->1211", - "default.handlebars->47->2013" + "default.handlebars->47->2015" ] }, { @@ -3489,7 +3489,7 @@ "hu": "2 óra", "xloc": [ "default.handlebars->47->1205", - "default.handlebars->47->2007" + "default.handlebars->47->2009" ] }, { @@ -3683,7 +3683,7 @@ "hu": "24 óra", "xloc": [ "default.handlebars->47->1210", - "default.handlebars->47->2012" + "default.handlebars->47->2014" ] }, { @@ -3763,7 +3763,7 @@ "zh-cht": "2FA備份代碼已清除", "hu": "2FA biztonsági kódok törölve", "xloc": [ - "default.handlebars->47->2562" + "default.handlebars->47->2564" ] }, { @@ -3818,7 +3818,7 @@ "zh-cht": "第二個因素", "hu": "2. faktor", "xloc": [ - "default.handlebars->47->3136" + "default.handlebars->47->3138" ] }, { @@ -3845,8 +3845,8 @@ "zh-cht": "啟用第二因素身份驗證", "hu": "2. faktoros hitelesítés engedélyezve", "xloc": [ - "default.handlebars->47->2686", - "default.handlebars->47->2938" + "default.handlebars->47->2688", + "default.handlebars->47->2940" ] }, { @@ -3895,7 +3895,7 @@ "tr": "3", "hu": "3", "xloc": [ - "default-mobile.handlebars->11->713" + "default-mobile.handlebars->11->714" ] }, { @@ -4007,7 +4007,7 @@ "hu": "30 perc", "xloc": [ "default.handlebars->47->1202", - "default.handlebars->47->2004" + "default.handlebars->47->2006" ] }, { @@ -4034,8 +4034,8 @@ "zh-cht": "32 位", "hu": "32-bit", "xloc": [ - "default-mobile.handlebars->11->723", - "default.handlebars->47->1577" + "default-mobile.handlebars->11->724", + "default.handlebars->47->1579" ] }, { @@ -4116,7 +4116,7 @@ "hu": "4 nap", "xloc": [ "default.handlebars->47->1212", - "default.handlebars->47->2014" + "default.handlebars->47->2016" ] }, { @@ -4144,7 +4144,7 @@ "hu": "4 óra", "xloc": [ "default.handlebars->47->1206", - "default.handlebars->47->2008" + "default.handlebars->47->2010" ] }, { @@ -4283,7 +4283,7 @@ "hu": "45 perc", "xloc": [ "default.handlebars->47->1203", - "default.handlebars->47->2005" + "default.handlebars->47->2007" ] }, { @@ -4338,7 +4338,7 @@ "hu": "5 perc", "xloc": [ "default.handlebars->47->1199", - "default.handlebars->47->2001" + "default.handlebars->47->2003" ] }, { @@ -4535,7 +4535,7 @@ "hu": "60 perc", "xloc": [ "default.handlebars->47->1204", - "default.handlebars->47->2006" + "default.handlebars->47->2008" ] }, { @@ -4618,8 +4618,8 @@ "zh-cht": "64 位", "hu": "64-bit", "xloc": [ - "default-mobile.handlebars->11->725", - "default.handlebars->47->1579" + "default-mobile.handlebars->11->726", + "default.handlebars->47->1581" ] }, { @@ -4823,7 +4823,7 @@ "zh-cht": "7天", "hu": "7 nap", "xloc": [ - "default.handlebars->47->2015" + "default.handlebars->47->2017" ] }, { @@ -4908,7 +4908,7 @@ "hu": "8 óra", "xloc": [ "default.handlebars->47->1207", - "default.handlebars->47->2009", + "default.handlebars->47->2011", "default.handlebars->47->554", "default.handlebars->47->568" ] @@ -5218,8 +5218,8 @@ "nl": "DNS Servers", "pl": "Serwery DNS", "xloc": [ - "default-mobile.handlebars->11->784", - "default.handlebars->47->1622" + "default-mobile.handlebars->11->785", + "default.handlebars->47->1624" ] }, { @@ -5369,7 +5369,7 @@ "hu": "ACM", "xloc": [ "default-mobile.handlebars->11->504", - "default.handlebars->47->2179", + "default.handlebars->47->2181", "default.handlebars->47->432", "default.handlebars->47->903" ] @@ -5490,7 +5490,7 @@ "zh-cht": "AMT操作系統", "hu": "AMT-OS", "xloc": [ - "default.handlebars->47->3281" + "default.handlebars->47->3283" ] }, { @@ -5517,7 +5517,7 @@ "zh-cht": "AMT-Redir", "hu": "AMT-Redir", "xloc": [ - "default.handlebars->47->3143" + "default.handlebars->47->3145" ] }, { @@ -5544,7 +5544,7 @@ "zh-cht": "AMT-WSMAN", "hu": "AMT-WSMAN", "xloc": [ - "default.handlebars->47->3142" + "default.handlebars->47->3144" ] }, { @@ -5559,7 +5559,7 @@ "nl": "APK versie van de MeshAgent", "pl": "Wersja APK MeshAgent", "xloc": [ - "default-mobile.handlebars->11->924", + "default-mobile.handlebars->11->925", "default.handlebars->47->636" ] }, @@ -5738,8 +5738,8 @@ "zh-cht": "視聽", "hu": "AV", "xloc": [ - "default-mobile.handlebars->11->730", - "default-mobile.handlebars->11->732", + "default-mobile.handlebars->11->731", + "default-mobile.handlebars->11->733", "default.handlebars->47->922", "default.handlebars->47->924" ] @@ -5768,8 +5768,8 @@ "zh-cht": "拒絕存取", "hu": "Hozzáférés megtagadva", "xloc": [ - "default-mobile.handlebars->11->875", - "default.handlebars->47->1714" + "default-mobile.handlebars->11->876", + "default.handlebars->47->1716" ] }, { @@ -5852,7 +5852,7 @@ "zh-cht": "存取伺服器檔案", "hu": "Hozzáférés a kiszolgálófájlokhoz", "xloc": [ - "default.handlebars->47->2869" + "default.handlebars->47->2871" ] }, { @@ -5969,9 +5969,9 @@ "default-mobile.handlebars->11->471", "default-mobile.handlebars->11->473", "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountSecurity->1->0", - "default.handlebars->47->2044", "default.handlebars->47->2046", - "default.handlebars->47->3335", + "default.handlebars->47->2048", + "default.handlebars->47->3337", "default.handlebars->47->863", "default.handlebars->47->865" ] @@ -6000,8 +6000,8 @@ "zh-cht": "帳號設定", "hu": "Fiókbeállítások", "xloc": [ - "default-mobile.handlebars->11->982", - "default.handlebars->47->3206" + "default-mobile.handlebars->11->983", + "default.handlebars->47->3208" ] }, { @@ -6068,7 +6068,7 @@ "hu": "Fiók megváltozott: LDAP-adatokkal való szinkronizálás.", "es": "La cuenta cambio a ser actualizada con los datos de LDAP.", "xloc": [ - "default.handlebars->47->2623" + "default.handlebars->47->2625" ] }, { @@ -6095,7 +6095,7 @@ "zh-cht": "帳戶已更改:{0}", "hu": "Fiók megváltozott: {0}", "xloc": [ - "default.handlebars->47->2535" + "default.handlebars->47->2537" ] }, { @@ -6122,7 +6122,7 @@ "zh-cht": "創建帳戶,電子郵件為{0}", "hu": "Fiók létrehozva, az e-mail címe {0} ", "xloc": [ - "default.handlebars->47->2534" + "default.handlebars->47->2536" ] }, { @@ -6149,7 +6149,7 @@ "zh-cht": "已創建帳戶,名稱為 {0}。", "hu": "Fiók létrehozva, név: {0}. ", "xloc": [ - "default.handlebars->47->2597" + "default.handlebars->47->2599" ] }, { @@ -6176,7 +6176,7 @@ "zh-cht": "帳戶已創建,用戶名是{0}", "hu": "Fiók létrehozva, felhasználónév {0} ", "xloc": [ - "default.handlebars->47->2533" + "default.handlebars->47->2535" ] }, { @@ -6205,8 +6205,8 @@ "xloc": [ "default-mobile.handlebars->11->66", "default.handlebars->47->210", - "default.handlebars->47->2688", - "default.handlebars->47->2866" + "default.handlebars->47->2690", + "default.handlebars->47->2868" ] }, { @@ -6233,8 +6233,8 @@ "zh-cht": "達到帳戶限制。", "hu": "Elérte a fiókkorlátot.", "xloc": [ - "default-mobile.handlebars->11->994", - "default.handlebars->47->3218", + "default-mobile.handlebars->11->995", + "default.handlebars->47->3220", "login-mobile.handlebars->5->6", "login.handlebars->5->8", "login2.handlebars->7->207" @@ -6293,7 +6293,7 @@ "zh-cht": "帳號登錄", "hu": "Bejelentkezés a fiókba", "xloc": [ - "default.handlebars->47->2470" + "default.handlebars->47->2472" ] }, { @@ -6320,7 +6320,7 @@ "zh-cht": "從 {0}、{1}、{2} 登錄帳戶", "hu": "Bejelentkezés a fiókba innen: {0}, {1}, {2}", "xloc": [ - "default.handlebars->47->2576" + "default.handlebars->47->2578" ] }, { @@ -6332,7 +6332,7 @@ "hu": "Fiók bejelentkezési token rekordok", "es": "Registro de Tokens de inicio de sesion", "xloc": [ - "default.handlebars->47->3185" + "default.handlebars->47->3187" ] }, { @@ -6359,7 +6359,7 @@ "zh-cht": "帳戶登出", "hu": "Fiók kijelentkezés", "xloc": [ - "default.handlebars->47->2471" + "default.handlebars->47->2473" ] }, { @@ -6415,7 +6415,7 @@ "zh-cht": "帳戶密碼已更改:{0}", "hu": "Fiók jelszava megváltozott: {0}", "xloc": [ - "default.handlebars->47->2543" + "default.handlebars->47->2545" ] }, { @@ -6442,7 +6442,7 @@ "zh-cht": "帳戶已刪除", "hu": "Fiók eltávolítva", "xloc": [ - "default.handlebars->47->2532" + "default.handlebars->47->2534" ] }, { @@ -6496,8 +6496,8 @@ "zh-cht": "指令", "hu": "Művelet", "xloc": [ - "default-mobile.handlebars->11->881", - "default.handlebars->47->1720", + "default-mobile.handlebars->11->882", + "default.handlebars->47->1722", "default.handlebars->container->column_l->p42->p42tbl->1->0->8" ] }, @@ -6668,7 +6668,7 @@ "zh-cht": "如果ACM失敗,則激活到CCM", "hu": "Aktiválja a CCM-et, ha az ACM meghiúsul", "xloc": [ - "default.handlebars->47->2234" + "default.handlebars->47->2236" ] }, { @@ -6697,8 +6697,8 @@ "xloc": [ "default-mobile.handlebars->11->499", "default-mobile.handlebars->11->501", - "default-mobile.handlebars->11->791", - "default.handlebars->47->1629", + "default-mobile.handlebars->11->792", + "default.handlebars->47->1631", "default.handlebars->47->896", "default.handlebars->47->898" ] @@ -6755,7 +6755,7 @@ "hu": "Atív eszközmegosztás", "xloc": [ "default.handlebars->47->1071", - "default.handlebars->47->2183" + "default.handlebars->47->2185" ] }, { @@ -6782,7 +6782,7 @@ "zh-cht": "活動登錄令牌", "hu": "Aktív bejelentkezési tokenek", "xloc": [ - "default.handlebars->47->2075" + "default.handlebars->47->2077" ] }, { @@ -6887,7 +6887,7 @@ "zh-cht": "添加", "hu": "Hozzáadás", "xloc": [ - "default-mobile.handlebars->11->649", + "default-mobile.handlebars->11->650", "default.handlebars->47->1414", "default.handlebars->47->1419" ] @@ -6964,7 +6964,7 @@ "zh-cht": "新增代理", "hu": "Agent hozzáadása", "xloc": [ - "default.handlebars->47->2173", + "default.handlebars->47->2175", "default.handlebars->47->485" ] }, @@ -7016,9 +7016,9 @@ "zh-cht": "新增裝置", "hu": "Eszköz hozzáadása", "xloc": [ - "default.handlebars->47->2177", - "default.handlebars->47->2841", - "default.handlebars->47->3035", + "default.handlebars->47->2179", + "default.handlebars->47->2843", + "default.handlebars->47->3037", "default.handlebars->47->489" ] }, @@ -7073,9 +7073,9 @@ "zh-cht": "新增裝置群", "hu": "Eszközcsoport hozzáadása", "xloc": [ - "default.handlebars->47->2320", - "default.handlebars->47->2835", - "default.handlebars->47->3023", + "default.handlebars->47->2322", + "default.handlebars->47->2837", + "default.handlebars->47->3025", "default.handlebars->47->385" ] }, @@ -7103,7 +7103,7 @@ "zh-cht": "新增裝置群權限", "hu": "Eszközcsoport engedélyek hozzáadása", "xloc": [ - "default.handlebars->47->2317" + "default.handlebars->47->2319" ] }, { @@ -7130,8 +7130,8 @@ "zh-cht": "新增裝置權限", "hu": "Eszköz engedélyek hozzáadása", "xloc": [ - "default.handlebars->47->2322", - "default.handlebars->47->2324" + "default.handlebars->47->2324", + "default.handlebars->47->2326" ] }, { @@ -7287,7 +7287,7 @@ "zh-cht": "新增成員身份", "hu": "Hozzáadás Felhasználói Csoporthoz", "xloc": [ - "default.handlebars->47->3055" + "default.handlebars->47->3057" ] }, { @@ -7365,8 +7365,8 @@ "zh-cht": "新增安全密鑰", "hu": "Biztonsági kulcs hozzáadása", "xloc": [ - "default.handlebars->47->1790", - "default.handlebars->47->1791", + "default.handlebars->47->1792", + "default.handlebars->47->1793", "default.handlebars->47->241", "default.handlebars->47->243", "default.handlebars->47->246", @@ -7397,7 +7397,7 @@ "zh-cht": "新增用戶", "hu": "Felhasználó hozzáadása", "xloc": [ - "default-mobile.handlebars->11->906", + "default-mobile.handlebars->11->907", "default.handlebars->47->1063" ] }, @@ -7425,7 +7425,7 @@ "zh-cht": "新增用戶裝置權限", "hu": "Felhasználói eszköz engedélyek hozzáadása", "xloc": [ - "default.handlebars->47->2327" + "default.handlebars->47->2329" ] }, { @@ -7453,9 +7453,9 @@ "hu": "Felhasználói csoport hozzáadása", "xloc": [ "default.handlebars->47->1064", - "default.handlebars->47->2167", - "default.handlebars->47->2319", - "default.handlebars->47->3029" + "default.handlebars->47->2169", + "default.handlebars->47->2321", + "default.handlebars->47->3031" ] }, { @@ -7482,7 +7482,7 @@ "zh-cht": "新增用戶群裝置權限", "hu": "Felhasználói csoport eszköz engedélyek hozzáadása", "xloc": [ - "default.handlebars->47->2329" + "default.handlebars->47->2331" ] }, { @@ -7509,7 +7509,7 @@ "zh-cht": "將用戶新增到裝置群", "hu": "Felhasználó hozzáadása az eszköz csoporthoz", "xloc": [ - "default-mobile.handlebars->11->947" + "default-mobile.handlebars->11->948" ] }, { @@ -7560,8 +7560,8 @@ "zh-cht": "新增用戶", "hu": "Felhasználók hozzáadása", "xloc": [ - "default.handlebars->47->2166", - "default.handlebars->47->2830" + "default.handlebars->47->2168", + "default.handlebars->47->2832" ] }, { @@ -7588,7 +7588,7 @@ "zh-cht": "將用戶新增到裝置群", "hu": "Felhasználók hozzáadása az eszköz csoporthoz", "xloc": [ - "default.handlebars->47->2316" + "default.handlebars->47->2318" ] }, { @@ -7615,7 +7615,7 @@ "zh-cht": "將用戶新增到用戶群", "hu": "Felhasználók hozzáadása az felhasználó csoporthoz", "xloc": [ - "default.handlebars->47->2865" + "default.handlebars->47->2867" ] }, { @@ -7801,7 +7801,7 @@ "zh-cht": "通過安裝Mesh Agent將新電腦新增到該裝置群。", "hu": "Adjon hozzá egy új számítógépet ehhez az eszközcsoporthoz a Mesh Agent telepítésével.", "xloc": [ - "default.handlebars->47->2172", + "default.handlebars->47->2174", "default.handlebars->47->484" ] }, @@ -7829,7 +7829,7 @@ "zh-cht": "添加位於本地網絡上的設備。", "hu": "Helyi hálózaton található eszköz hozzáadása.", "xloc": [ - "default.handlebars->47->2176", + "default.handlebars->47->2178", "default.handlebars->47->488" ] }, @@ -7938,7 +7938,7 @@ "zh-cht": "添加了身份驗證應用程序", "hu": "Hitelesítési alkalmazás hozzáadva", "xloc": [ - "default.handlebars->47->2559" + "default.handlebars->47->2561" ] }, { @@ -7965,7 +7965,7 @@ "zh-cht": "已將設備共享{0}從{1}添加到{2}", "hu": "{0} eszközmegosztás hozzáadva {1} és {2} között", "xloc": [ - "default.handlebars->47->2570" + "default.handlebars->47->2572" ] }, { @@ -7992,7 +7992,7 @@ "zh-cht": "添加了每天重複的設備共享 {0}。", "hu": "Naponta ismétlődő {0} eszközmegosztás hozzáadva.", "xloc": [ - "default.handlebars->47->2607" + "default.handlebars->47->2609" ] }, { @@ -8019,7 +8019,7 @@ "zh-cht": "添加了每週重複的設備共享 {0}。", "hu": "Hetente ismétlődő {0} eszközmegosztás hozzáadva.", "xloc": [ - "default.handlebars->47->2608" + "default.handlebars->47->2610" ] }, { @@ -8046,7 +8046,7 @@ "zh-cht": "添加了無限時間的設備共享 {0}。", "hu": "{0} eszközmegosztás hozzáadva korlátlan ideig.", "xloc": [ - "default.handlebars->47->2600" + "default.handlebars->47->2602" ] }, { @@ -8073,8 +8073,8 @@ "zh-cht": "已將設備{0}添加到設備組{1}", "hu": "A(z) {0} eszköz hozzáadva a(z) {1} eszközcsoporthoz", "xloc": [ - "default.handlebars->47->2526", - "default.handlebars->47->2553" + "default.handlebars->47->2528", + "default.handlebars->47->2555" ] }, { @@ -8101,7 +8101,7 @@ "zh-cht": "添加了登錄令牌", "hu": "Bejelentkezési token hozzáadva", "xloc": [ - "default.handlebars->47->2584" + "default.handlebars->47->2586" ] }, { @@ -8128,7 +8128,7 @@ "zh-cht": "增加推送通知認證設備", "hu": "Push értesítési hitelesítő eszköz hozzáadva", "xloc": [ - "default.handlebars->47->2582" + "default.handlebars->47->2584" ] }, { @@ -8155,7 +8155,7 @@ "zh-cht": "添加了安全密鑰", "hu": "Biztonsági kulcs hozzáadva", "xloc": [ - "default.handlebars->47->2564" + "default.handlebars->47->2566" ] }, { @@ -8182,7 +8182,7 @@ "zh-cht": "已將用戶組{0}添加到設備組{1}", "hu": "{0} felhasználói csoport hozzáadva a(z) {1} eszközcsoporthoz", "xloc": [ - "default.handlebars->47->2537" + "default.handlebars->47->2539" ] }, { @@ -8209,8 +8209,8 @@ "zh-cht": "已將用戶{0}添加到用戶組{1}", "hu": "{0} felhasználó hozzáadva a(z) {1} felhasználói csoporthoz", "xloc": [ - "default.handlebars->47->2540", - "default.handlebars->47->2549" + "default.handlebars->47->2542", + "default.handlebars->47->2551" ] }, { @@ -8291,8 +8291,8 @@ "zh-cht": "管理員控制模式(ACM)", "hu": "Admin Control Mode (ACM)", "xloc": [ - "default-mobile.handlebars->11->793", - "default.handlebars->47->1631" + "default-mobile.handlebars->11->794", + "default.handlebars->47->1633" ] }, { @@ -8319,8 +8319,8 @@ "zh-cht": "管理員憑證", "hu": "Adminisztrátor Hitelesítő adatok", "xloc": [ - "default-mobile.handlebars->11->799", - "default.handlebars->47->1637" + "default-mobile.handlebars->11->800", + "default.handlebars->47->1639" ] }, { @@ -8375,7 +8375,7 @@ "zh-cht": "管理領域", "hu": "Adminisztratív Realms", "xloc": [ - "default.handlebars->47->2917" + "default.handlebars->47->2919" ] }, { @@ -8430,7 +8430,7 @@ "zh-cht": "管理領域", "hu": "Adminisztratív Realms", "xloc": [ - "default.handlebars->47->2762" + "default.handlebars->47->2764" ] }, { @@ -8457,7 +8457,7 @@ "zh-cht": "管理員", "hu": "Adminisztrátor", "xloc": [ - "default.handlebars->47->2680" + "default.handlebars->47->2682" ] }, { @@ -8485,7 +8485,7 @@ "hu": "afrikai", "xloc": [ "default-mobile.handlebars->11->104", - "default.handlebars->47->1793", + "default.handlebars->47->1795", "login2.handlebars->7->1" ] }, @@ -8517,9 +8517,9 @@ "default-mobile.handlebars->11->463", "default-mobile.handlebars->11->520", "default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1", - "default.handlebars->47->2400", - "default.handlebars->47->2413", - "default.handlebars->47->3279", + "default.handlebars->47->2402", + "default.handlebars->47->2415", + "default.handlebars->47->3281", "default.handlebars->47->405", "default.handlebars->47->706", "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1", @@ -8550,8 +8550,8 @@ "zh-cht": "代理+Intel® AMT", "hu": "Agent + Intel® AMT", "xloc": [ - "default.handlebars->47->2402", - "default.handlebars->47->2415" + "default.handlebars->47->2404", + "default.handlebars->47->2417" ] }, { @@ -8606,8 +8606,8 @@ "zh-cht": "代理控制台", "hu": "Agent konzol", "xloc": [ - "default-mobile.handlebars->11->953", - "default.handlebars->47->2337", + "default-mobile.handlebars->11->954", + "default.handlebars->47->2339", "default.handlebars->47->794" ] }, @@ -8635,7 +8635,7 @@ "zh-cht": "代理錯誤計數器", "hu": "Agrnt hiba számlálók", "xloc": [ - "default.handlebars->47->3248" + "default.handlebars->47->3250" ] }, { @@ -8832,7 +8832,7 @@ "hu": "Agent Ön-Megosztás", "xloc": [ "default.handlebars->47->1092", - "default.handlebars->47->2204" + "default.handlebars->47->2206" ] }, { @@ -8859,7 +8859,7 @@ "zh-cht": "代理時段", "hu": "Agent munkamenetek", "xloc": [ - "default.handlebars->47->3264" + "default.handlebars->47->3266" ] }, { @@ -8966,7 +8966,7 @@ "zh-cht": "代理類型", "hu": "Agent típusok", "xloc": [ - "default.handlebars->47->2411", + "default.handlebars->47->2413", "default.handlebars->container->column_l->p21->p21main->1->1->meshOsChartDiv->1" ] }, @@ -9022,7 +9022,7 @@ "zh-cht": "代理關閉了與{0}%代理到服務器壓縮的會話。已發送:{1},已壓縮:{2}", "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}", "xloc": [ - "default.handlebars->47->2523" + "default.handlebars->47->2525" ] }, { @@ -9231,8 +9231,8 @@ "zh-cht": "代理離線", "hu": "Offline Agent", "xloc": [ - "default-mobile.handlebars->11->873", - "default.handlebars->47->1712" + "default-mobile.handlebars->11->874", + "default.handlebars->47->1714" ] }, { @@ -9259,8 +9259,8 @@ "zh-cht": "代理在線", "hu": "Online Agent", "xloc": [ - "default-mobile.handlebars->11->872", - "default.handlebars->47->1711" + "default-mobile.handlebars->11->873", + "default.handlebars->47->1713" ] }, { @@ -9482,8 +9482,8 @@ "zh-cht": "代理", "hu": "Agent-ek", "xloc": [ - "default.handlebars->47->2368", - "default.handlebars->47->3292", + "default.handlebars->47->2370", + "default.handlebars->47->3294", "default.handlebars->47->573" ] }, @@ -9512,7 +9512,7 @@ "hu": "albán", "xloc": [ "default-mobile.handlebars->11->105", - "default.handlebars->47->1794", + "default.handlebars->47->1796", "login2.handlebars->7->2" ] }, @@ -9550,9 +9550,9 @@ "hu": "Összes", "xloc": [ "default-mobile.handlebars->11->355", - "default-mobile.handlebars->11->687", - "default-mobile.handlebars->11->689", - "default.handlebars->47->3112", + "default-mobile.handlebars->11->688", + "default-mobile.handlebars->11->690", + "default.handlebars->47->3114", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar->DevFilterSelect->1" ] }, @@ -9580,7 +9580,7 @@ "zh-cht": "全部可用", "hu": "Összes elérhető", "xloc": [ - "default.handlebars->47->2642" + "default.handlebars->47->2644" ] }, { @@ -9607,7 +9607,7 @@ "zh-cht": "所有可用的代理", "hu": "Az összes rendelkezésre álló Agent", "xloc": [ - "default.handlebars->47->2369", + "default.handlebars->47->2371", "default.handlebars->47->574" ] }, @@ -9662,7 +9662,7 @@ "zh-cht": "所有事件", "hu": "Összes Esemény", "xloc": [ - "default.handlebars->47->2640" + "default.handlebars->47->2642" ] }, { @@ -9753,8 +9753,8 @@ "zh-cht": "允許用戶管理此裝置群和該群中的裝置。", "hu": "Engedélyezi a felhasználók számára az eszközcsoport és a csoportba tartozó eszközök kezelését.", "xloc": [ - "default.handlebars->47->2281", - "default.handlebars->47->2862" + "default.handlebars->47->2283", + "default.handlebars->47->2864" ] }, { @@ -9781,7 +9781,7 @@ "zh-cht": "允許用戶管理此裝置。", "hu": "Engedélyezze a felhasználóknak, hogy kezeljék ezt az eszközt.", "xloc": [ - "default.handlebars->47->2282" + "default.handlebars->47->2284" ] }, { @@ -9887,8 +9887,8 @@ "zh-cht": "Alt", "hu": "Alt", "xloc": [ - "default-mobile.handlebars->11->642", - "default-mobile.handlebars->11->646", + "default-mobile.handlebars->11->643", + "default-mobile.handlebars->11->647", "default.handlebars->47->1407", "default.handlebars->47->1411" ] @@ -10083,9 +10083,9 @@ "zh-cht": "一直通知", "hu": "Minden kapcsolat értesítés", "xloc": [ - "default.handlebars->47->2143", - "default.handlebars->47->2821", - "default.handlebars->47->2926", + "default.handlebars->47->2145", + "default.handlebars->47->2823", + "default.handlebars->47->2928", "default.handlebars->47->958" ] }, @@ -10113,9 +10113,9 @@ "zh-cht": "一直提示", "hu": "Minden kapcsolat engedélykérés", "xloc": [ - "default.handlebars->47->2144", - "default.handlebars->47->2822", - "default.handlebars->47->2927", + "default.handlebars->47->2146", + "default.handlebars->47->2824", + "default.handlebars->47->2929", "default.handlebars->47->959" ] }, @@ -10207,7 +10207,7 @@ "de": "Ein unbekannter Fehler ist aufgetreten.", "es": "Ha ocurrido un error desconcido.", "xloc": [ - "default.handlebars->47->3064" + "default.handlebars->47->3066" ] }, { @@ -10265,7 +10265,7 @@ "zh-cht": "Android APK", "hu": "Android APK", "xloc": [ - "default-mobile.handlebars->11->925", + "default-mobile.handlebars->11->926", "default.handlebars->47->635" ] }, @@ -10347,7 +10347,7 @@ "zh-cht": "安卓安裝", "hu": "Android Telepítés", "xloc": [ - "default-mobile.handlebars->11->927" + "default-mobile.handlebars->11->928" ] }, { @@ -10409,8 +10409,8 @@ "zh-cht": "殺毒軟件未激活", "hu": "A vírusirtó nem aktív", "xloc": [ - "default.handlebars->47->2404", - "default.handlebars->47->2418" + "default.handlebars->47->2406", + "default.handlebars->47->2420" ] }, { @@ -10437,7 +10437,7 @@ "zh-cht": "防毒軟體", "hu": "Antivírus", "xloc": [ - "default-mobile.handlebars->11->755", + "default-mobile.handlebars->11->756", "default.handlebars->47->947" ] }, @@ -10793,7 +10793,7 @@ "hu": "arab (Algéria)", "xloc": [ "default-mobile.handlebars->11->107", - "default.handlebars->47->1796", + "default.handlebars->47->1798", "login2.handlebars->7->4" ] }, @@ -10822,7 +10822,7 @@ "hu": "arab (Bahrein)", "xloc": [ "default-mobile.handlebars->11->108", - "default.handlebars->47->1797", + "default.handlebars->47->1799", "login2.handlebars->7->5" ] }, @@ -10851,7 +10851,7 @@ "hu": "arab (Egyiptom)", "xloc": [ "default-mobile.handlebars->11->109", - "default.handlebars->47->1798", + "default.handlebars->47->1800", "login2.handlebars->7->6" ] }, @@ -10880,7 +10880,7 @@ "hu": "arab (Irak)", "xloc": [ "default-mobile.handlebars->11->110", - "default.handlebars->47->1799", + "default.handlebars->47->1801", "login2.handlebars->7->7" ] }, @@ -10909,7 +10909,7 @@ "hu": "arab (Jordánia)", "xloc": [ "default-mobile.handlebars->11->111", - "default.handlebars->47->1800", + "default.handlebars->47->1802", "login2.handlebars->7->8" ] }, @@ -10938,7 +10938,7 @@ "hu": "arab (Kuvait)", "xloc": [ "default-mobile.handlebars->11->112", - "default.handlebars->47->1801", + "default.handlebars->47->1803", "login2.handlebars->7->9" ] }, @@ -10967,7 +10967,7 @@ "hu": "arab (Libanon)", "xloc": [ "default-mobile.handlebars->11->113", - "default.handlebars->47->1802", + "default.handlebars->47->1804", "login2.handlebars->7->10" ] }, @@ -10996,7 +10996,7 @@ "hu": "arab (Líbia)", "xloc": [ "default-mobile.handlebars->11->114", - "default.handlebars->47->1803", + "default.handlebars->47->1805", "login2.handlebars->7->11" ] }, @@ -11025,7 +11025,7 @@ "hu": "arab (Marokkó)", "xloc": [ "default-mobile.handlebars->11->115", - "default.handlebars->47->1804", + "default.handlebars->47->1806", "login2.handlebars->7->12" ] }, @@ -11054,7 +11054,7 @@ "hu": "arab (Omán)", "xloc": [ "default-mobile.handlebars->11->116", - "default.handlebars->47->1805", + "default.handlebars->47->1807", "login2.handlebars->7->13" ] }, @@ -11083,7 +11083,7 @@ "hu": "arab (Katar)", "xloc": [ "default-mobile.handlebars->11->117", - "default.handlebars->47->1806", + "default.handlebars->47->1808", "login2.handlebars->7->14" ] }, @@ -11112,7 +11112,7 @@ "hu": "arab (Szaúd-Arábia)", "xloc": [ "default-mobile.handlebars->11->118", - "default.handlebars->47->1807", + "default.handlebars->47->1809", "login2.handlebars->7->15" ] }, @@ -11141,7 +11141,7 @@ "hu": "arab", "xloc": [ "default-mobile.handlebars->11->106", - "default.handlebars->47->1795", + "default.handlebars->47->1797", "login2.handlebars->7->3" ] }, @@ -11170,7 +11170,7 @@ "hu": "arab (Szíria)", "xloc": [ "default-mobile.handlebars->11->119", - "default.handlebars->47->1808", + "default.handlebars->47->1810", "login2.handlebars->7->16" ] }, @@ -11199,7 +11199,7 @@ "hu": "arab (Tunézia)", "xloc": [ "default-mobile.handlebars->11->120", - "default.handlebars->47->1809", + "default.handlebars->47->1811", "login2.handlebars->7->17" ] }, @@ -11228,7 +11228,7 @@ "hu": "arab (Egyesült Arab Emírségek)", "xloc": [ "default-mobile.handlebars->11->121", - "default.handlebars->47->1810", + "default.handlebars->47->1812", "login2.handlebars->7->18" ] }, @@ -11257,7 +11257,7 @@ "hu": "arab (Jemen)", "xloc": [ "default-mobile.handlebars->11->122", - "default.handlebars->47->1811", + "default.handlebars->47->1813", "login2.handlebars->7->19" ] }, @@ -11286,7 +11286,7 @@ "hu": "aragóniai", "xloc": [ "default-mobile.handlebars->11->123", - "default.handlebars->47->1812", + "default.handlebars->47->1814", "login2.handlebars->7->20" ] }, @@ -11314,12 +11314,12 @@ "zh-cht": "結構", "hu": "Architektúra", "xloc": [ - "default-mobile.handlebars->11->722", - "default-mobile.handlebars->11->724", - "default-mobile.handlebars->11->726", - "default.handlebars->47->1576", + "default-mobile.handlebars->11->723", + "default-mobile.handlebars->11->725", + "default-mobile.handlebars->11->727", "default.handlebars->47->1578", - "default.handlebars->47->1580" + "default.handlebars->47->1580", + "default.handlebars->47->1582" ] }, { @@ -11373,8 +11373,8 @@ "zh-cht": "你確定要刪除群{0}嗎?刪除裝置群還將刪除該群中有關裝置的所有訊息。", "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.", "xloc": [ - "default-mobile.handlebars->11->913", - "default.handlebars->47->2248" + "default-mobile.handlebars->11->914", + "default.handlebars->47->2250" ] }, { @@ -11404,6 +11404,12 @@ "default.handlebars->47->1299" ] }, + { + "en": "Are you sure you want to open this file/folder on the remote devices desktop ?", + "xloc": [ + "default.handlebars->47->1522" + ] + }, { "bs": "Jeste li sigurni da želite deinstalirati odabranog agenta?", "cs": "Opravdu odinstalovat vybraného agenta?", @@ -11482,7 +11488,7 @@ "zh-cht": "你確定要{0}外掛嗎:{1}", "hu": "Biztosm, hogy {0} szeretné használni a következő beépülő modult: {1}", "xloc": [ - "default.handlebars->47->3344" + "default.handlebars->47->3346" ] }, { @@ -11538,7 +11544,7 @@ "hu": "örmény", "xloc": [ "default-mobile.handlebars->11->124", - "default.handlebars->47->1813", + "default.handlebars->47->1815", "login2.handlebars->7->21" ] }, @@ -11730,7 +11736,7 @@ "hu": "asszámi", "xloc": [ "default-mobile.handlebars->11->125", - "default.handlebars->47->1814", + "default.handlebars->47->1816", "login2.handlebars->7->22" ] }, @@ -11894,7 +11900,7 @@ "hu": "asztúriai", "xloc": [ "default-mobile.handlebars->11->126", - "default.handlebars->47->1815", + "default.handlebars->47->1817", "login2.handlebars->7->23" ] }, @@ -11922,7 +11928,7 @@ "zh-cht": "嘗試激活英特爾(R)AMT ACM模式", "hu": "Intel(R) AMT ACM üzemmód aktiválásának kísérlete", "xloc": [ - "default.handlebars->47->2492" + "default.handlebars->47->2494" ] }, { @@ -11973,9 +11979,9 @@ "zh-cht": "驗證", "hu": "Hitelesítés", "xloc": [ - "default-mobile.handlebars->11->658", - "default-mobile.handlebars->11->662", - "default-mobile.handlebars->11->674", + "default-mobile.handlebars->11->659", + "default-mobile.handlebars->11->663", + "default-mobile.handlebars->11->675", "default.handlebars->47->1473", "default.handlebars->47->1477", "default.handlebars->47->1489", @@ -12009,7 +12015,7 @@ "zh-cht": "認證軟體", "hu": "Hitelesítő alkalmazás beállítva", "xloc": [ - "default.handlebars->47->2930" + "default.handlebars->47->2932" ] }, { @@ -12036,9 +12042,9 @@ "zh-cht": "認證設備", "hu": "Hitelesítési eszköz", "xloc": [ - "default.handlebars->47->1776", "default.handlebars->47->1778", - "default.handlebars->47->1782" + "default.handlebars->47->1780", + "default.handlebars->47->1784" ] }, { @@ -12065,8 +12071,8 @@ "zh-cht": "授權錯誤", "hu": "Hitelesítés Hiba", "xloc": [ - "default-mobile.handlebars->11->675", - "default-mobile.handlebars->11->681", + "default-mobile.handlebars->11->676", + "default-mobile.handlebars->11->682", "default.handlebars->47->1491", "default.handlebars->47->1506" ] @@ -12099,8 +12105,8 @@ "default-mobile.handlebars->11->311", "default-mobile.handlebars->11->70", "default-mobile.handlebars->11->73", - "default.handlebars->47->1772", "default.handlebars->47->1774", + "default.handlebars->47->1776", "default.handlebars->47->216", "default.handlebars->47->221" ] @@ -12237,8 +12243,8 @@ "zh-cht": "自動刪除", "hu": "Automatikus eltávolítás", "xloc": [ - "default.handlebars->47->2128", - "default.handlebars->47->2633" + "default.handlebars->47->2130", + "default.handlebars->47->2635" ] }, { @@ -12296,7 +12302,7 @@ "zh-cht": "自動下載代理程序核心轉儲文件:“{0}”", "hu": "Agent core dump fájl automatikus letöltése: \\\"{0}\\\"", "xloc": [ - "default.handlebars->47->2573" + "default.handlebars->47->2575" ] }, { @@ -12402,7 +12408,7 @@ "zh-cht": "自動移除非活動設備", "hu": "Az inaktív eszközök automatikus eltávolítása", "xloc": [ - "default.handlebars->47->2276" + "default.handlebars->47->2278" ] }, { @@ -12429,7 +12435,7 @@ "zh-cht": "可用內存", "hu": "Elérhető memória", "xloc": [ - "default.handlebars->47->3273" + "default.handlebars->47->3275" ] }, { @@ -12457,7 +12463,7 @@ "hu": "azerbajdzsáni", "xloc": [ "default-mobile.handlebars->11->127", - "default.handlebars->47->1816", + "default.handlebars->47->1818", "login2.handlebars->7->24" ] }, @@ -12485,9 +12491,9 @@ "zh-cht": "壞的", "hu": "Rossz", "xloc": [ - "default-mobile.handlebars->11->733", - "default-mobile.handlebars->11->737", - "default-mobile.handlebars->11->741", + "default-mobile.handlebars->11->734", + "default-mobile.handlebars->11->738", + "default-mobile.handlebars->11->742", "default.handlebars->47->925", "default.handlebars->47->929", "default.handlebars->47->933" @@ -12517,8 +12523,8 @@ "zh-cht": "的BIOS", "hu": "BIOS", "xloc": [ - "default-mobile.handlebars->11->808", - "default.handlebars->47->1646" + "default-mobile.handlebars->11->809", + "default.handlebars->47->1648" ] }, { @@ -12635,7 +12641,7 @@ "zh-cht": "退格", "hu": "BackSpace", "xloc": [ - "default-mobile.handlebars->11->623", + "default-mobile.handlebars->11->624", "default.handlebars->47->1389" ] }, @@ -12691,8 +12697,8 @@ "zh-cht": "背景與互動", "hu": "Háttérben és interaktív módon", "xloc": [ - "default.handlebars->47->2375", - "default.handlebars->47->2382", + "default.handlebars->47->2377", + "default.handlebars->47->2384", "default.handlebars->47->560", "default.handlebars->47->581" ] @@ -12722,8 +12728,8 @@ "hu": "Csak háttérben", "xloc": [ "agentinvite.handlebars->3->9", - "default.handlebars->47->2376", - "default.handlebars->47->2383", + "default.handlebars->47->2378", + "default.handlebars->47->2385", "default.handlebars->47->561", "default.handlebars->47->582", "default.handlebars->47->599" @@ -12781,8 +12787,8 @@ "zh-cht": "備用碼", "hu": "Biztonsági kódok generálva", "xloc": [ - "default.handlebars->47->2933", - "default.handlebars->47->3160" + "default.handlebars->47->2935", + "default.handlebars->47->3162" ] }, { @@ -12864,7 +12870,7 @@ "zh-cht": "錯誤的簽名", "hu": "Rossz aláírás", "xloc": [ - "default.handlebars->47->3255" + "default.handlebars->47->3257" ] }, { @@ -12891,7 +12897,7 @@ "zh-cht": "錯誤的網絡憑證", "hu": "Rossz web tanúsítvány", "xloc": [ - "default.handlebars->47->3254" + "default.handlebars->47->3256" ] }, { @@ -12919,7 +12925,7 @@ "hu": "baszk", "xloc": [ "default-mobile.handlebars->11->128", - "default.handlebars->47->1817", + "default.handlebars->47->1819", "login2.handlebars->7->25" ] }, @@ -13009,7 +13015,7 @@ "zh-cht": "將{0}個文件批量上傳到文件夾{1}", "hu": "{0} fájl kötegelt feltöltése a(z) {1} mappába", "xloc": [ - "default.handlebars->47->2572" + "default.handlebars->47->2574" ] }, { @@ -13037,7 +13043,7 @@ "hu": "fehérorosz", "xloc": [ "default-mobile.handlebars->11->130", - "default.handlebars->47->1819", + "default.handlebars->47->1821", "login2.handlebars->7->27" ] }, @@ -13066,7 +13072,7 @@ "hu": "bengáli", "xloc": [ "default-mobile.handlebars->11->131", - "default.handlebars->47->1820", + "default.handlebars->47->1822", "login2.handlebars->7->28" ] }, @@ -13128,8 +13134,8 @@ "en": "BitLocker", "nl": "BitLocker", "xloc": [ - "default-mobile.handlebars->11->864", - "default.handlebars->47->1702" + "default-mobile.handlebars->11->865", + "default.handlebars->47->1704" ] }, { @@ -13137,8 +13143,8 @@ "nl": "BitLocker informatie", "pl": "Informacje o BitLocker", "xloc": [ - "default-mobile.handlebars->11->871", - "default.handlebars->47->1709" + "default-mobile.handlebars->11->872", + "default.handlebars->47->1711" ] }, { @@ -13165,8 +13171,8 @@ "zh-cht": "引導加載程序", "hu": "Rendszerbetöltő", "xloc": [ - "default-mobile.handlebars->11->768", - "default.handlebars->47->1596" + "default-mobile.handlebars->11->769", + "default.handlebars->47->1598" ] }, { @@ -13194,7 +13200,7 @@ "hu": "bosznia", "xloc": [ "default-mobile.handlebars->11->132", - "default.handlebars->47->1821", + "default.handlebars->47->1823", "login2.handlebars->7->29" ] }, @@ -13223,7 +13229,7 @@ "hu": "breton", "xloc": [ "default-mobile.handlebars->11->133", - "default.handlebars->47->1822", + "default.handlebars->47->1824", "login2.handlebars->7->30" ] }, @@ -13251,7 +13257,7 @@ "zh-cht": "廣播", "hu": "Broadcast üzenet...", "xloc": [ - "default.handlebars->47->2828", + "default.handlebars->47->2830", "default.handlebars->container->column_l->p4->3->1->0->3->1" ] }, @@ -13279,7 +13285,7 @@ "zh-cht": "廣播消息", "hu": "Broadcast üzenet", "xloc": [ - "default.handlebars->47->2744" + "default.handlebars->47->2746" ] }, { @@ -13306,7 +13312,7 @@ "zh-cht": "向所有連接的用戶廣播消息。", "hu": "Üzenet küldése az összes csatlakoztatott felhasználónak.", "xloc": [ - "default.handlebars->47->2739" + "default.handlebars->47->2741" ] }, { @@ -13333,7 +13339,7 @@ "zh-cht": "瀏覽器", "hu": "Böngésző", "xloc": [ - "default.handlebars->47->3134" + "default.handlebars->47->3136" ] }, { @@ -13416,7 +13422,7 @@ "hu": "bolgár", "xloc": [ "default-mobile.handlebars->11->129", - "default.handlebars->47->1818", + "default.handlebars->47->1820", "login2.handlebars->7->26" ] }, @@ -13445,7 +13451,7 @@ "hu": "burmai", "xloc": [ "default-mobile.handlebars->11->134", - "default.handlebars->47->1823", + "default.handlebars->47->1825", "login2.handlebars->7->31" ] }, @@ -13473,7 +13479,7 @@ "zh-cht": "默認情況下,非活動設備將在 1 天后移除。", "hu": "Alapértelmezés szerint az inaktív eszközök 1 nap után eltávolításra kerülnek.", "xloc": [ - "default.handlebars->47->2278" + "default.handlebars->47->2280" ] }, { @@ -13500,7 +13506,7 @@ "zh-cht": "默認情況下,不活動的設備將在 {0} 天后被移除。", "hu": "Alapértelmezés szerint az inaktív eszközök {0} nap után eltávolításra kerülnek.", "xloc": [ - "default.handlebars->47->2279" + "default.handlebars->47->2281" ] }, { @@ -13536,7 +13542,7 @@ "zh-cht": "字節輸入", "hu": "Fogadott Byte-ok", "xloc": [ - "default.handlebars->47->3130" + "default.handlebars->47->3132" ] }, { @@ -13563,7 +13569,7 @@ "zh-cht": "字節輸出", "hu": "Küldött Byte-ok", "xloc": [ - "default.handlebars->47->3131" + "default.handlebars->47->3133" ] }, { @@ -13661,15 +13667,15 @@ "zh-cht": "CCM模式", "hu": "CCM mode", "xloc": [ - "default.handlebars->47->2231" + "default.handlebars->47->2233" ] }, { "en": "CD-ROM", "nl": "CD-ROM", "xloc": [ - "default-mobile.handlebars->11->857", - "default.handlebars->47->1695" + "default-mobile.handlebars->11->858", + "default.handlebars->47->1697" ] }, { @@ -13697,7 +13703,7 @@ "hu": "CIRA", "xloc": [ "default-mobile.handlebars->11->464", - "default.handlebars->47->3280", + "default.handlebars->47->3282", "default.handlebars->47->407", "default.handlebars->47->708" ] @@ -13726,7 +13732,7 @@ "zh-cht": "CIRA伺服器", "hu": "CIRA Kiszolgáló", "xloc": [ - "default.handlebars->47->3328" + "default.handlebars->47->3330" ] }, { @@ -13753,7 +13759,7 @@ "zh-cht": "CIRA伺服器指令", "hu": "CIRA kiszolgáló parancsok", "xloc": [ - "default.handlebars->47->3329" + "default.handlebars->47->3331" ] }, { @@ -13807,7 +13813,7 @@ "zh-cht": "CIRA設置", "hu": "CIRA beállítás", "xloc": [ - "default.handlebars->47->2239" + "default.handlebars->47->2241" ] }, { @@ -13834,10 +13840,10 @@ "zh-cht": "CPU", "hu": "CPU", "xloc": [ - "default-mobile.handlebars->11->814", - "default.handlebars->47->1572", - "default.handlebars->47->1652", - "default.handlebars->47->3304", + "default-mobile.handlebars->11->815", + "default.handlebars->47->1574", + "default.handlebars->47->1654", + "default.handlebars->47->3306", "default.handlebars->container->column_l->p40->3->1->p40type->5" ] }, @@ -13865,7 +13871,7 @@ "zh-cht": "CPU負載", "hu": "CPU terhelés", "xloc": [ - "default.handlebars->47->3269" + "default.handlebars->47->3271" ] }, { @@ -13892,7 +13898,7 @@ "zh-cht": "最近15分鐘的CPU負載", "hu": "CPU terhelés az elmúlt 15 percben", "xloc": [ - "default.handlebars->47->3272" + "default.handlebars->47->3274" ] }, { @@ -13919,7 +13925,7 @@ "zh-cht": "最近5分鐘的CPU負載", "hu": "CPU terhelés az elmúlt 5 percben", "xloc": [ - "default.handlebars->47->3271" + "default.handlebars->47->3273" ] }, { @@ -13946,7 +13952,7 @@ "zh-cht": "最近一分鐘的CPU負載", "hu": "CPU terhelés az utolsó percben", "xloc": [ - "default.handlebars->47->3270" + "default.handlebars->47->3272" ] }, { @@ -14005,7 +14011,7 @@ "zh-cht": "CSV", "hu": "CSV", "xloc": [ - "default.handlebars->47->2650" + "default.handlebars->47->2652" ] }, { @@ -14032,15 +14038,15 @@ "zh-cht": "CSV格式", "hu": "CSV Formátum", "xloc": [ - "default.handlebars->47->2654", - "default.handlebars->47->2731", + "default.handlebars->47->2656", + "default.handlebars->47->2733", "default.handlebars->47->779" ] }, { "en": "CSV file format is as follows:", "xloc": [ - "default.handlebars->47->2717" + "default.handlebars->47->2719" ] }, { @@ -14091,7 +14097,7 @@ "zh-cht": "呼叫錯誤", "hu": "Hívás hiba", "xloc": [ - "default.handlebars->47->3345" + "default.handlebars->47->3347" ] }, { @@ -14102,8 +14108,8 @@ "pl": "CallMeBot", "es": "CallMeBot", "xloc": [ - "default.handlebars->47->1745", - "default.handlebars->47->2968" + "default.handlebars->47->1747", + "default.handlebars->47->2970" ] }, { @@ -14160,8 +14166,8 @@ "agent-translations.json", "default-mobile.handlebars->11->320", "default-mobile.handlebars->dialog->idx_dlgButtonBar", - "default.handlebars->47->2095", - "default.handlebars->47->3334", + "default.handlebars->47->2097", + "default.handlebars->47->3336", "default.handlebars->47->533", "default.handlebars->container->dialog->idx_dlgButtonBar", "login-mobile.handlebars->dialog->idx_dlgButtonBar", @@ -14272,18 +14278,18 @@ "zh-cht": "容量", "hu": "Kapacitás", "xloc": [ - "default-mobile.handlebars->11->832", - "default-mobile.handlebars->11->838", - "default-mobile.handlebars->11->844", - "default-mobile.handlebars->11->849", - "default-mobile.handlebars->11->851", - "default-mobile.handlebars->11->854", - "default.handlebars->47->1670", - "default.handlebars->47->1676", - "default.handlebars->47->1682", - "default.handlebars->47->1687", + "default-mobile.handlebars->11->833", + "default-mobile.handlebars->11->839", + "default-mobile.handlebars->11->845", + "default-mobile.handlebars->11->850", + "default-mobile.handlebars->11->852", + "default-mobile.handlebars->11->855", + "default.handlebars->47->1672", + "default.handlebars->47->1678", + "default.handlebars->47->1684", "default.handlebars->47->1689", - "default.handlebars->47->1692" + "default.handlebars->47->1691", + "default.handlebars->47->1694" ] }, { @@ -14310,20 +14316,20 @@ "zh-cht": "容量/速度", "hu": "Kapacitás / Sebesség", "xloc": [ - "default-mobile.handlebars->11->830", - "default-mobile.handlebars->11->836", - "default-mobile.handlebars->11->842", - "default.handlebars->47->1668", - "default.handlebars->47->1674", - "default.handlebars->47->1680" + "default-mobile.handlebars->11->831", + "default-mobile.handlebars->11->837", + "default-mobile.handlebars->11->843", + "default.handlebars->47->1670", + "default.handlebars->47->1676", + "default.handlebars->47->1682" ] }, { "en": "Capacity Remaining", "nl": "Resterende capaciteit", "xloc": [ - "default-mobile.handlebars->11->855", - "default.handlebars->47->1693" + "default-mobile.handlebars->11->856", + "default.handlebars->47->1695" ] }, { @@ -14351,7 +14357,7 @@ "hu": "katalán", "xloc": [ "default-mobile.handlebars->11->135", - "default.handlebars->47->1824", + "default.handlebars->47->1826", "login2.handlebars->7->32" ] }, @@ -14460,7 +14466,7 @@ "hu": "chamorro", "xloc": [ "default-mobile.handlebars->11->136", - "default.handlebars->47->1825", + "default.handlebars->47->1827", "login2.handlebars->7->33" ] }, @@ -14517,7 +14523,7 @@ "zh-cht": "更改{0}的電郵", "hu": "{0} e-mail-címének módosítása", "xloc": [ - "default.handlebars->47->3010" + "default.handlebars->47->3012" ] }, { @@ -14582,8 +14588,8 @@ "hu": "Jelszó módosítása", "xloc": [ "default-mobile.handlebars->11->328", - "default.handlebars->47->2041", - "default.handlebars->47->2954" + "default.handlebars->47->2043", + "default.handlebars->47->2956" ] }, { @@ -14610,7 +14616,7 @@ "zh-cht": "更改{0}的密碼", "hu": "Jelszó módosítása: {0}", "xloc": [ - "default.handlebars->47->3019" + "default.handlebars->47->3021" ] }, { @@ -14637,7 +14643,7 @@ "zh-cht": "更改{0}的真實名稱", "hu": "{0} felhasználó teljes nevének módosítása", "xloc": [ - "default.handlebars->47->3005" + "default.handlebars->47->3007" ] }, { @@ -14798,7 +14804,7 @@ "zh-cht": "更改該用戶的密碼", "hu": "A felhasználó jelszavának módosítása", "xloc": [ - "default.handlebars->47->2953" + "default.handlebars->47->2955" ] }, { @@ -14852,7 +14858,7 @@ "zh-cht": "在此處更改你的帳戶電郵地址。", "hu": "Itt módosíthatja fiókja e-mail címét.", "xloc": [ - "default.handlebars->47->2028" + "default.handlebars->47->2030" ] }, { @@ -14879,7 +14885,7 @@ "zh-cht": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。", "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.", "xloc": [ - "default.handlebars->47->2034" + "default.handlebars->47->2036" ] }, { @@ -14906,7 +14912,7 @@ "zh-cht": "帳戶憑證已更改", "hu": "A fiók hitelesítő adatai megváltoztak", "xloc": [ - "default.handlebars->47->2544" + "default.handlebars->47->2546" ] }, { @@ -14933,7 +14939,7 @@ "zh-cht": "將帳戶顯示名稱更改為 {0}。", "hu": "A fiók megjelenített neve {0}-re változott.", "xloc": [ - "default.handlebars->47->2596" + "default.handlebars->47->2598" ] }, { @@ -14960,8 +14966,8 @@ "zh-cht": "{1}組中的設備{0}已更改:{2}", "hu": "{0} eszközt a {1} csoportból áthelyezésre került {2} csoportba", "xloc": [ - "default.handlebars->47->2528", - "default.handlebars->47->2609" + "default.handlebars->47->2530", + "default.handlebars->47->2611" ] }, { @@ -14988,7 +14994,7 @@ "zh-cht": "語言從{1}更改為{2}", "hu": "A nyelv megváltozott. régi nyelv: {1}, új nyelv: {2}", "xloc": [ - "default.handlebars->47->2472" + "default.handlebars->47->2474" ] }, { @@ -15015,8 +15021,8 @@ "zh-cht": "已更改{0}的用戶設備權限", "hu": "Módosult a(z) {0} felhasználói eszközjogai", "xloc": [ - "default.handlebars->47->2530", - "default.handlebars->47->2551" + "default.handlebars->47->2532", + "default.handlebars->47->2553" ] }, { @@ -15068,7 +15074,7 @@ "hu": "A nyelv megváltoztatásához az oldal frissítése szükséges!", "xloc": [ "default-mobile.handlebars->11->303", - "default.handlebars->47->1992" + "default.handlebars->47->1994" ] }, { @@ -15098,9 +15104,9 @@ "default.handlebars->47->1005", "default.handlebars->47->1124", "default.handlebars->47->1149", - "default.handlebars->47->2671", - "default.handlebars->47->2949", - "default.handlebars->47->2950" + "default.handlebars->47->2673", + "default.handlebars->47->2951", + "default.handlebars->47->2952" ] }, { @@ -15127,10 +15133,10 @@ "zh-cht": "聊天並通知", "hu": "Csevegés és Értesítés", "xloc": [ - "default-mobile.handlebars->11->943", - "default-mobile.handlebars->11->963", - "default.handlebars->47->2310", - "default.handlebars->47->2348" + "default-mobile.handlebars->11->944", + "default-mobile.handlebars->11->964", + "default.handlebars->47->2312", + "default.handlebars->47->2350" ] }, { @@ -15157,8 +15163,8 @@ "zh-cht": "聊天請求,點擊這裡接受。", "hu": "Csevegés kezdeményezés, kattintson ide az elfogadáshoz.", "xloc": [ - "default-mobile.handlebars->11->995", - "default.handlebars->47->3219" + "default-mobile.handlebars->11->996", + "default.handlebars->47->3221" ] }, { @@ -15213,7 +15219,7 @@ "hu": "csecsen", "xloc": [ "default-mobile.handlebars->11->137", - "default.handlebars->47->1826", + "default.handlebars->47->1828", "login2.handlebars->7->34" ] }, @@ -15361,8 +15367,8 @@ "zh-cht": "檢查...", "hu": "Ellenőrzés...", "xloc": [ - "default.handlebars->47->1792", - "default.handlebars->47->3339" + "default.handlebars->47->1794", + "default.handlebars->47->3341" ] }, { @@ -15390,7 +15396,7 @@ "hu": "kínai", "xloc": [ "default-mobile.handlebars->11->138", - "default.handlebars->47->1827", + "default.handlebars->47->1829", "login2.handlebars->7->35" ] }, @@ -15419,7 +15425,7 @@ "hu": "kínai (Hongkong)", "xloc": [ "default-mobile.handlebars->11->139", - "default.handlebars->47->1828", + "default.handlebars->47->1830", "login2.handlebars->7->36" ] }, @@ -15448,7 +15454,7 @@ "hu": "kínai (Kínai Népköztársaság)", "xloc": [ "default-mobile.handlebars->11->140", - "default.handlebars->47->1829", + "default.handlebars->47->1831", "login2.handlebars->7->37" ] }, @@ -15477,7 +15483,7 @@ "hu": "kínai (egyszerűsített)", "xloc": [ "default-mobile.handlebars->11->300", - "default.handlebars->47->1989", + "default.handlebars->47->1991", "login2.handlebars->7->197" ] }, @@ -15506,7 +15512,7 @@ "hu": "kínai (Szingapúr)", "xloc": [ "default-mobile.handlebars->11->141", - "default.handlebars->47->1830", + "default.handlebars->47->1832", "login2.handlebars->7->38" ] }, @@ -15535,7 +15541,7 @@ "hu": "kínai (Tajvan)", "xloc": [ "default-mobile.handlebars->11->142", - "default.handlebars->47->1831", + "default.handlebars->47->1833", "login2.handlebars->7->39" ] }, @@ -15564,7 +15570,7 @@ "hu": "kínai (hagyományos)", "xloc": [ "default-mobile.handlebars->11->301", - "default.handlebars->47->1990", + "default.handlebars->47->1992", "login2.handlebars->7->198" ] }, @@ -15621,7 +15627,7 @@ "hu": "csuvas", "xloc": [ "default-mobile.handlebars->11->143", - "default.handlebars->47->1832", + "default.handlebars->47->1834", "login2.handlebars->7->40" ] }, @@ -15674,17 +15680,17 @@ "hu": "Törlés", "xloc": [ "default-mobile.handlebars->11->370", - "default-mobile.handlebars->11->706", - "default-mobile.handlebars->11->708", - "default-mobile.handlebars->11->710", - "default-mobile.handlebars->11->712", + "default-mobile.handlebars->11->707", + "default-mobile.handlebars->11->709", + "default-mobile.handlebars->11->711", + "default-mobile.handlebars->11->713", "default-mobile.handlebars->11->80", "default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->5", - "default.handlebars->47->1548", "default.handlebars->47->1550", "default.handlebars->47->1552", "default.handlebars->47->1554", - "default.handlebars->47->2466", + "default.handlebars->47->1556", + "default.handlebars->47->2468", "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7", "default.handlebars->container->column_l->p41->3->1", "messenger.handlebars->xbottom->1->1->0->5", @@ -15718,7 +15724,7 @@ "zh-cht": "清除 RDP 憑據?", "hu": "RDP hitelesítő adatok törlése?", "xloc": [ - "default-mobile.handlebars->11->608", + "default-mobile.handlebars->11->609", "default.handlebars->47->1342" ] }, @@ -15746,7 +15752,7 @@ "zh-cht": "清除 SSH 憑據?", "hu": "SSH hitelesítő adatok törlése?", "xloc": [ - "default-mobile.handlebars->11->606", + "default-mobile.handlebars->11->607", "default.handlebars->47->1340" ] }, @@ -15856,8 +15862,8 @@ "zh-cht": "全部清除", "hu": "Összes törlése", "xloc": [ - "default-mobile.handlebars->11->978", - "default.handlebars->47->3202" + "default-mobile.handlebars->11->979", + "default.handlebars->47->3204" ] }, { @@ -15912,8 +15918,8 @@ "zh-cht": "清除核心", "hu": "Core törlése", "xloc": [ - "default-mobile.handlebars->11->883", - "default.handlebars->47->1722" + "default-mobile.handlebars->11->884", + "default.handlebars->47->1724" ] }, { @@ -15967,8 +15973,8 @@ "zh-cht": "清除此通知", "hu": "Törölje ezt az értesítést", "xloc": [ - "default-mobile.handlebars->11->977", - "default.handlebars->47->3201" + "default-mobile.handlebars->11->978", + "default.handlebars->47->3203" ] }, { @@ -16076,8 +16082,8 @@ "zh-cht": "單擊此處編輯裝置群名稱", "hu": "Kattintson ide az eszközcsoport nevének szerkesztéséhez", "xloc": [ - "default.handlebars->47->2109", - "default.handlebars->47->2409" + "default.handlebars->47->2111", + "default.handlebars->47->2411" ] }, { @@ -16131,7 +16137,7 @@ "zh-cht": "單擊此處編輯用戶群名稱", "hu": "Kattintson ide a felhasználói csoport nevének szerkesztéséhez", "xloc": [ - "default.handlebars->47->2801" + "default.handlebars->47->2803" ] }, { @@ -16266,7 +16272,7 @@ "hu": "Kattintson az OK gombra, ha megerősítő e-mailt szeretne küldeni a következő címre:", "xloc": [ "default-mobile.handlebars->11->313", - "default.handlebars->47->2025" + "default.handlebars->47->2027" ] }, { @@ -16372,8 +16378,8 @@ "zh-cht": "客戶端控制模式(CCM)", "hu": "Client Control Mode (CCM)", "xloc": [ - "default-mobile.handlebars->11->792", - "default.handlebars->47->1630" + "default-mobile.handlebars->11->793", + "default.handlebars->47->1632" ] }, { @@ -16400,7 +16406,7 @@ "zh-cht": "客戶編號", "hu": "Client ID", "xloc": [ - "default.handlebars->47->2088" + "default.handlebars->47->2090" ] }, { @@ -16427,7 +16433,7 @@ "zh-cht": "客戶端啟動的遠程訪問", "hu": "Ügyfél által kezdeményezett távoli elérés", "xloc": [ - "default.handlebars->47->2238" + "default.handlebars->47->2240" ] }, { @@ -16454,7 +16460,7 @@ "zh-cht": "客戶機密", "hu": "Client Secret", "xloc": [ - "default.handlebars->47->2089" + "default.handlebars->47->2091" ] }, { @@ -16512,10 +16518,10 @@ "agent-translations.json", "default-mobile.handlebars->11->78", "default.handlebars->47->1453", - "default.handlebars->47->1523", + "default.handlebars->47->1525", "default.handlebars->47->228", "default.handlebars->47->236", - "default.handlebars->47->3333", + "default.handlebars->47->3335", "sharing.handlebars->11->52" ] }, @@ -16543,7 +16549,7 @@ "zh-cht": "已關閉桌面多路復用會話 \\\"{0}\\\",{1} 秒", "hu": "Lezárt asztali multiplex munkamenet \\\"{0}\\\", {1} másodperc", "xloc": [ - "default.handlebars->47->2616" + "default.handlebars->47->2618" ] }, { @@ -16570,7 +16576,7 @@ "zh-cht": "封閉式桌面多路復用會話,{0}秒", "hu": "Lezárt asztali multiplex munkamenet, {0} másodperc", "xloc": [ - "default.handlebars->47->2477" + "default.handlebars->47->2479" ] }, { @@ -16760,10 +16766,10 @@ "zh-cht": "指令", "hu": "Parancsok", "xloc": [ - "default-mobile.handlebars->11->965", + "default-mobile.handlebars->11->966", "default.handlebars->47->1126", "default.handlebars->47->1151", - "default.handlebars->47->2350" + "default.handlebars->47->2352" ] }, { @@ -16832,8 +16838,8 @@ "zh-cht": "通用裝置群", "hu": "Eszközcsoport jogosultságok", "xloc": [ - "default.handlebars->47->2836", - "default.handlebars->47->3024" + "default.handlebars->47->2838", + "default.handlebars->47->3026" ] }, { @@ -16860,8 +16866,8 @@ "zh-cht": "通用裝置", "hu": "Eszköz jogosultságok", "xloc": [ - "default.handlebars->47->2842", - "default.handlebars->47->3036" + "default.handlebars->47->2844", + "default.handlebars->47->3038" ] }, { @@ -16888,8 +16894,8 @@ "zh-cht": "編譯時間", "hu": "Fordítás ideje", "xloc": [ - "default-mobile.handlebars->11->764", - "default.handlebars->47->1592" + "default-mobile.handlebars->11->765", + "default.handlebars->47->1594" ] }, { @@ -16978,7 +16984,7 @@ "de": "Aufzeichnungen von Konfigurationsdatei", "es": "Registro de archivos de configuracion", "xloc": [ - "default.handlebars->47->3178" + "default.handlebars->47->3180" ] }, { @@ -17005,15 +17011,15 @@ "zh-cht": "確認", "hu": "Megerősít", "xloc": [ - "default-mobile.handlebars->11->603", - "default-mobile.handlebars->11->914", + "default-mobile.handlebars->11->604", + "default-mobile.handlebars->11->915", "default.handlebars->47->1291", "default.handlebars->47->1300", - "default.handlebars->47->2249", - "default.handlebars->47->2701", - "default.handlebars->47->2791", - "default.handlebars->47->2858", - "default.handlebars->47->3022", + "default.handlebars->47->2251", + "default.handlebars->47->2703", + "default.handlebars->47->2793", + "default.handlebars->47->2860", + "default.handlebars->47->3024", "default.handlebars->47->743" ] }, @@ -17065,8 +17071,8 @@ "zh-cht": "確認將1個副本複製到此位置?", "hu": "Megerősíti 1 bejegyzés másolatát erre a helyre?", "xloc": [ - "default-mobile.handlebars->11->701", - "default.handlebars->47->1543", + "default-mobile.handlebars->11->702", + "default.handlebars->47->1545", "sharing.handlebars->11->70" ] }, @@ -17094,7 +17100,7 @@ "zh-cht": "確認{0}個條目的複製到此位置?", "hu": "Megerősíti a {0} bejegyzések másolását erre a helyre?", "xloc": [ - "default.handlebars->47->1542", + "default.handlebars->47->1544", "sharing.handlebars->11->69" ] }, @@ -17122,7 +17128,7 @@ "zh-cht": "確認{0}個條目的副本到此位置?", "hu": "Megerősíti a {0} bejegyzések másolását erre a helyre?", "xloc": [ - "default-mobile.handlebars->11->700" + "default-mobile.handlebars->11->701" ] }, { @@ -17149,7 +17155,7 @@ "zh-cht": "確認刪除所選帳戶?", "hu": "Megerősíti a kiválasztott fiók(ok) törlését?", "xloc": [ - "default.handlebars->47->2700" + "default.handlebars->47->2702" ] }, { @@ -17200,7 +17206,7 @@ "zh-cht": "確認刪除所選用戶群?", "hu": "Megerősíti a kiválasztott felhasználói csoport(ok) törlését?", "xloc": [ - "default.handlebars->47->2790" + "default.handlebars->47->2792" ] }, { @@ -17227,7 +17233,7 @@ "zh-cht": "確認刪除用戶{0}?", "hu": "Megerősíti a(z) {0} felhasználó törlését?", "xloc": [ - "default.handlebars->47->3021" + "default.handlebars->47->3023" ] }, { @@ -17254,7 +17260,7 @@ "zh-cht": "確認刪除用戶“ {0} ”的成員身份?", "hu": "Megerősíti a \\\"{0}\\\" felhasználó tagságának eltávolítását?", "xloc": [ - "default.handlebars->47->2861" + "default.handlebars->47->2863" ] }, { @@ -17281,7 +17287,7 @@ "zh-cht": "確認刪除用戶群“ {0} ”的成員身份?", "hu": "Megerősíti a \\\"{0}\\\" felhasználói csoport tagság eltávolítását?", "xloc": [ - "default.handlebars->47->3053" + "default.handlebars->47->3055" ] }, { @@ -17308,8 +17314,8 @@ "zh-cht": "確認將1個條目移動到此位置?", "hu": "Megerősíti 1 bejegyzés áthelyezését erre a helyre?", "xloc": [ - "default-mobile.handlebars->11->703", - "default.handlebars->47->1545", + "default-mobile.handlebars->11->704", + "default.handlebars->47->1547", "sharing.handlebars->11->72" ] }, @@ -17337,7 +17343,7 @@ "zh-cht": "確認將{0}個條目移到該位置?", "hu": "Megerősíti {0} bejegyzés áthelyezését erre a helyre?", "xloc": [ - "default.handlebars->47->1544", + "default.handlebars->47->1546", "sharing.handlebars->11->71" ] }, @@ -17365,7 +17371,7 @@ "zh-cht": "確認將{0}個條目移到該位置?", "hu": "Megerősíti {0} bejegyzés áthelyezését erre a helyre?", "xloc": [ - "default-mobile.handlebars->11->702" + "default-mobile.handlebars->11->703" ] }, { @@ -17392,7 +17398,7 @@ "zh-cht": "確認覆蓋?", "hu": "Megerősíti a felülírást?", "xloc": [ - "default.handlebars->47->2458" + "default.handlebars->47->2460" ] }, { @@ -17419,8 +17425,8 @@ "zh-cht": "確認刪除裝置“ {0} ”的訪問權限?", "hu": "Megerősíti a \\\"{0}\\\" eszköz hozzáférési jogainak eltávolítását?", "xloc": [ - "default.handlebars->47->2851", - "default.handlebars->47->3044" + "default.handlebars->47->2853", + "default.handlebars->47->3046" ] }, { @@ -17447,8 +17453,8 @@ "zh-cht": "確認刪除裝置群“ {0} ”的訪問權限?", "hu": "Megerősíti a \\\"{0}\\\" eszközcsoport hozzáférési jogainak eltávolítását?", "xloc": [ - "default.handlebars->47->2853", - "default.handlebars->47->3057" + "default.handlebars->47->2855", + "default.handlebars->47->3059" ] }, { @@ -17475,7 +17481,7 @@ "zh-cht": "確認刪除用戶“ {0} ”的訪問權限?", "hu": "Megerősíti a \\\"{0}\\\" felhasználó hozzáférési jogainak eltávolítását?", "xloc": [ - "default.handlebars->47->3046" + "default.handlebars->47->3048" ] }, { @@ -17502,7 +17508,7 @@ "zh-cht": "確認刪除用戶群“ {0} ”的訪問權限?", "hu": "Megerősíti a \\\"{0}\\\" felhasználói csoport hozzáférési jogainak eltávolítását?", "xloc": [ - "default.handlebars->47->3049" + "default.handlebars->47->3051" ] }, { @@ -17529,8 +17535,8 @@ "zh-cht": "確認刪除訪問權限?", "hu": "Megerősíti a hozzáférési jogok eltávolítását?", "xloc": [ - "default.handlebars->47->3047", - "default.handlebars->47->3050" + "default.handlebars->47->3049", + "default.handlebars->47->3052" ] }, { @@ -17558,7 +17564,7 @@ "hu": "Megerősíti a hitelesítő alkalmazás, kétlépcsős bejelentkezés eltávolítását?", "xloc": [ "default-mobile.handlebars->11->312", - "default.handlebars->47->1775" + "default.handlebars->47->1777" ] }, { @@ -17609,7 +17615,7 @@ "zh-cht": "確認刪除設備共享“{0}”?", "hu": "Megerősíti a(z) \\\"{0}\\\" eszközmegosztás eltávolítását?", "xloc": [ - "default.handlebars->47->3042" + "default.handlebars->47->3044" ] }, { @@ -17684,7 +17690,7 @@ "zh-cht": "確認移除推送認證設備?", "hu": "Megerősíti a Push-hitelesítési eszköz eltávolítását?", "xloc": [ - "default.handlebars->47->1777" + "default.handlebars->47->1779" ] }, { @@ -17711,7 +17717,7 @@ "zh-cht": "確認刪除用戶“ {0} ”的權限?", "hu": "Megerősíti a \\\"{0}\\\" felhasználó jogainak eltávolítását?", "xloc": [ - "default.handlebars->47->2362" + "default.handlebars->47->2364" ] }, { @@ -17738,7 +17744,7 @@ "zh-cht": "確認刪除用戶群“ {0} ”的權限?", "hu": "Megerősíti a \\\"{0}\\\" felhasználói csoport jogainak eltávolítását?", "xloc": [ - "default.handlebars->47->2364" + "default.handlebars->47->2366" ] }, { @@ -17792,7 +17798,7 @@ "zh-cht": "確認刪除此登錄令牌?", "hu": "Megerősíti ennek a bejelentkezési tokennek az eltávolítását?", "xloc": [ - "default.handlebars->47->2081" + "default.handlebars->47->2083" ] }, { @@ -17843,7 +17849,7 @@ "zh-cht": "確認刪除用戶{0}?", "hu": "Megerősíti a(z) {0} felhasználó eltávolítását?", "xloc": [ - "default-mobile.handlebars->11->974" + "default-mobile.handlebars->11->975" ] }, { @@ -17898,7 +17904,7 @@ "hu": "Megerősíti {0} / {1} bejegyzés {2} erre a helyre?", "xloc": [ "default-mobile.handlebars->11->365", - "default.handlebars->47->2461" + "default.handlebars->47->2463" ] }, { @@ -17929,7 +17935,7 @@ "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3", "default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea1->1->3->connectbutton2span", - "default.handlebars->47->2147", + "default.handlebars->47->2149", "default.handlebars->47->962", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1span", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2span", @@ -18019,7 +18025,7 @@ "zh-cht": "連接到伺服器", "hu": "Csatlakozás a kiszolgálóhoz", "xloc": [ - "default.handlebars->47->2242" + "default.handlebars->47->2244" ] }, { @@ -18263,7 +18269,7 @@ "zh-cht": "已連接的Intel® AMT", "hu": "Csatlakozott Intel® AMT", "xloc": [ - "default.handlebars->47->3260" + "default.handlebars->47->3262" ] }, { @@ -18290,7 +18296,7 @@ "zh-cht": "已连接的用户", "hu": "Csatlakozott felhasználók", "xloc": [ - "default.handlebars->47->3265" + "default.handlebars->47->3267" ] }, { @@ -18345,8 +18351,8 @@ "zh-cht": "現在已連接", "hu": "Csatlakoztatva most", "xloc": [ - "default-mobile.handlebars->11->759", - "default.handlebars->47->1587" + "default-mobile.handlebars->11->760", + "default.handlebars->47->1589" ] }, { @@ -18477,8 +18483,8 @@ "xloc": [ "default-mobile.handlebars->11->2", "default-mobile.handlebars->11->50", - "default-mobile.handlebars->11->719", - "default.handlebars->47->1568", + "default-mobile.handlebars->11->720", + "default.handlebars->47->1570", "default.handlebars->47->391", "default.handlebars->47->394", "default.handlebars->47->475", @@ -18537,7 +18543,7 @@ "zh-cht": "連接數量", "hu": "Kapcsolatok száma", "xloc": [ - "default.handlebars->47->3291" + "default.handlebars->47->3293" ] }, { @@ -18564,7 +18570,7 @@ "zh-cht": "連接錯誤", "hu": "Kapcsolat Hiba", "xloc": [ - "default-mobile.handlebars->11->682", + "default-mobile.handlebars->11->683", "default.handlebars->47->1490", "default.handlebars->47->1507", "login2.handlebars->7->232" @@ -18594,7 +18600,7 @@ "zh-cht": "連接轉發器", "hu": "Kapccsolat Relay", "xloc": [ - "default.handlebars->47->3327" + "default.handlebars->47->3329" ] }, { @@ -18676,7 +18682,7 @@ "hu": "Kapcsolódás", "xloc": [ "default-mobile.handlebars->11->525", - "default.handlebars->47->2416", + "default.handlebars->47->2418", "default.handlebars->47->379", "default.handlebars->47->979", "default.handlebars->container->column_l->p21->p21main->1->1->meshConnChartDiv->1" @@ -18706,7 +18712,7 @@ "zh-cht": "同意", "hu": "Hozzájárulás", "xloc": [ - "default.handlebars->47->2632" + "default.handlebars->47->2634" ] }, { @@ -18849,7 +18855,7 @@ "zh-cht": "Cookie編碼器", "hu": "Cookie kódoló", "xloc": [ - "default.handlebars->47->3310" + "default.handlebars->47->3312" ] }, { @@ -19123,8 +19129,8 @@ "zh-cht": "複製連結到剪貼板", "hu": "Hivatkozás másolása a vágólapra.", "xloc": [ - "default.handlebars->47->2427", - "default.handlebars->47->2446", + "default.handlebars->47->2429", + "default.handlebars->47->2448", "default.handlebars->47->311", "default.handlebars->47->333", "default.handlebars->47->335", @@ -19267,7 +19273,7 @@ "zh-cht": "複製:“{0}”到“{1}”", "hu": "Másolás: \\\"{0}\\\" ide: \\\"{1}\\\"", "xloc": [ - "default.handlebars->47->2520" + "default.handlebars->47->2522" ] }, { @@ -19462,7 +19468,7 @@ "zh-cht": "核心伺服器", "hu": "Core Server", "xloc": [ - "default.handlebars->47->3309" + "default.handlebars->47->3311" ] }, { @@ -19490,7 +19496,7 @@ "hu": "korzikai", "xloc": [ "default-mobile.handlebars->11->144", - "default.handlebars->47->1833", + "default.handlebars->47->1835", "login2.handlebars->7->41" ] }, @@ -19542,7 +19548,7 @@ "zh-cht": "創建帳號", "hu": "Fiók létrehozása", "xloc": [ - "default.handlebars->47->2758", + "default.handlebars->47->2760", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->16->1->1", "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->16->1->1", "login2.handlebars->centralTable->1->0->logincell->createpanel->createpanelform->9->1->16->1->1" @@ -19623,7 +19629,7 @@ "zh-cht": "創建登錄令牌", "hu": "Bejelentkezési token létrehozása", "xloc": [ - "default.handlebars->47->2018", + "default.handlebars->47->2020", "default.handlebars->47->336" ] }, @@ -19651,7 +19657,7 @@ "zh-cht": "創建用戶群", "hu": "Felhasználó csoport létrehozása", "xloc": [ - "default.handlebars->47->2798" + "default.handlebars->47->2800" ] }, { @@ -19705,7 +19711,7 @@ "zh-cht": "使用以下選項創建一個新的裝置群。", "hu": "Hozzon létre egy új eszközcsoportot az alábbi lehetőségek segítségével.", "xloc": [ - "default.handlebars->47->2048" + "default.handlebars->47->2050" ] }, { @@ -19759,7 +19765,7 @@ "zh-cht": "創建一個臨時用戶名和密碼,可用作您帳戶的替代登錄名。這對於允許工具或其他服務訪問您的帳戶很有用。", "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.", "xloc": [ - "default.handlebars->47->1998" + "default.handlebars->47->2000" ] }, { @@ -19813,7 +19819,7 @@ "zh-cht": "創建文件夾:“{0}”", "hu": "Mappa létrehozása: \\\"{0}\\\"", "xloc": [ - "default.handlebars->47->2513" + "default.handlebars->47->2515" ] }, { @@ -19883,7 +19889,7 @@ { "en": "Create many accounts at once by importing a JSON or CSV file", "xloc": [ - "default.handlebars->47->2715" + "default.handlebars->47->2717" ] }, { @@ -19939,7 +19945,7 @@ "zh-cht": "創建的設備組:{0}", "hu": "Eszközcsoport létrehozva: {0}", "xloc": [ - "default.handlebars->47->2524" + "default.handlebars->47->2526" ] }, { @@ -20041,7 +20047,7 @@ "zh-cht": "創建", "hu": "Létrehozás", "xloc": [ - "default.handlebars->47->2906" + "default.handlebars->47->2908" ] }, { @@ -20068,7 +20074,7 @@ "zh-cht": "創作時間", "hu": "Létrehozás ideje", "xloc": [ - "default.handlebars->47->2127" + "default.handlebars->47->2129" ] }, { @@ -20124,8 +20130,8 @@ "zh-cht": "創作者", "hu": "Létrehozó", "xloc": [ - "default.handlebars->47->2125", - "default.handlebars->47->2126" + "default.handlebars->47->2127", + "default.handlebars->47->2128" ] }, { @@ -20154,7 +20160,7 @@ "xloc": [ "default-mobile.handlebars->11->537", "default.handlebars->47->1366", - "default.handlebars->47->2086", + "default.handlebars->47->2088", "default.handlebars->47->991" ] }, @@ -20183,7 +20189,7 @@ "hu": "cree", "xloc": [ "default-mobile.handlebars->11->145", - "default.handlebars->47->1834", + "default.handlebars->47->1836", "login2.handlebars->7->42" ] }, @@ -20212,7 +20218,7 @@ "hu": "horvát", "xloc": [ "default-mobile.handlebars->11->146", - "default.handlebars->47->1835", + "default.handlebars->47->1837", "login2.handlebars->7->43" ] }, @@ -20296,8 +20302,8 @@ "zh-cht": "Ctrl", "hu": "Ctrl", "xloc": [ - "default-mobile.handlebars->11->643", - "default-mobile.handlebars->11->647", + "default-mobile.handlebars->11->644", + "default-mobile.handlebars->11->648", "default.handlebars->47->1408", "default.handlebars->47->1412", "default.handlebars->47->62", @@ -20328,7 +20334,7 @@ "zh-cht": "Ctrl +", "hu": "Ctrl + ", "xloc": [ - "default-mobile.handlebars->11->678" + "default-mobile.handlebars->11->679" ] }, { @@ -20489,8 +20495,8 @@ "zh-cht": "當前密碼不正確。", "hu": "A jelenlegi jelszó nem megfelelő.", "xloc": [ - "default-mobile.handlebars->11->1005", - "default.handlebars->47->3229" + "default-mobile.handlebars->11->1006", + "default.handlebars->47->3231" ] }, { @@ -20517,7 +20523,7 @@ "zh-cht": "定制", "hu": "Testreszabás", "xloc": [ - "default-mobile.handlebars->11->622" + "default-mobile.handlebars->11->623" ] }, { @@ -20604,7 +20610,7 @@ "hu": "cseh", "xloc": [ "default-mobile.handlebars->11->147", - "default.handlebars->47->1836", + "default.handlebars->47->1838", "login2.handlebars->7->44" ] }, @@ -20687,7 +20693,7 @@ "hu": "dán", "xloc": [ "default-mobile.handlebars->11->148", - "default.handlebars->47->1837", + "default.handlebars->47->1839", "login2.handlebars->7->45" ] }, @@ -20757,7 +20763,7 @@ "de": "Datenbankaufzeichnungen", "es": "Registro de Base de datos", "xloc": [ - "default.handlebars->47->3103" + "default.handlebars->47->3105" ] }, { @@ -20785,7 +20791,7 @@ "hu": "Dátum és idő", "xloc": [ "default-mobile.handlebars->11->306", - "default.handlebars->47->1995" + "default.handlebars->47->1997" ] }, { @@ -20812,10 +20818,10 @@ "zh-cht": "天", "hu": "Nap", "xloc": [ - "default-mobile.handlebars->11->593", + "default-mobile.handlebars->11->594", "default.handlebars->47->1275", - "default.handlebars->47->3107", - "default.handlebars->47->3110" + "default.handlebars->47->3109", + "default.handlebars->47->3112" ] }, { @@ -20842,8 +20848,8 @@ "zh-cht": "停用", "hu": "Deaktiválás", "xloc": [ - "default.handlebars->47->2157", - "default.handlebars->47->2221" + "default.handlebars->47->2159", + "default.handlebars->47->2223" ] }, { @@ -20870,7 +20876,7 @@ "zh-cht": "如果設置停用CCM", "hu": "CCM kikapcsolása ha be van állítva", "xloc": [ - "default.handlebars->47->2233" + "default.handlebars->47->2235" ] }, { @@ -20949,10 +20955,10 @@ "zh-cht": "默認", "hu": "Alapértelmezett", "xloc": [ - "default.handlebars->47->2745", - "default.handlebars->47->2794", - "default.handlebars->47->2805", - "default.handlebars->47->2879" + "default.handlebars->47->2747", + "default.handlebars->47->2796", + "default.handlebars->47->2807", + "default.handlebars->47->2881" ] }, { @@ -20979,7 +20985,7 @@ "zh-cht": "Del", "hu": "Del", "xloc": [ - "default-mobile.handlebars->11->630", + "default-mobile.handlebars->11->631", "default.handlebars->47->1396" ] }, @@ -21008,12 +21014,12 @@ "hu": "Törlés", "xloc": [ "default-mobile.handlebars->11->360", - "default-mobile.handlebars->11->693", + "default-mobile.handlebars->11->694", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1", "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1", "default-mobile.handlebars->dialog->idx_dlgButtonBar->5", - "default.handlebars->47->1533", - "default.handlebars->47->2453", + "default.handlebars->47->1535", + "default.handlebars->47->2455", "default.handlebars->47->841", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", @@ -21052,7 +21058,7 @@ "hu": "Fiók törlése", "xloc": [ "default-mobile.handlebars->11->322", - "default.handlebars->47->2033" + "default.handlebars->47->2035" ] }, { @@ -21079,7 +21085,7 @@ "zh-cht": "刪除帳戶", "hu": "Fiókok törlése", "xloc": [ - "default.handlebars->47->2702" + "default.handlebars->47->2704" ] }, { @@ -21161,10 +21167,10 @@ "zh-cht": "刪除群組", "hu": "Csoport törlése", "xloc": [ - "default-mobile.handlebars->11->912", - "default-mobile.handlebars->11->915", - "default.handlebars->47->2209", - "default.handlebars->47->2250" + "default-mobile.handlebars->11->913", + "default-mobile.handlebars->11->916", + "default.handlebars->47->2211", + "default.handlebars->47->2252" ] }, { @@ -21191,7 +21197,7 @@ "zh-cht": "刪除節點", "hu": "Node törlése", "xloc": [ - "default-mobile.handlebars->11->601", + "default-mobile.handlebars->11->602", "default.handlebars->47->1301" ] }, @@ -21243,7 +21249,7 @@ "zh-cht": "刪除用戶", "hu": "Felhasználó törlése", "xloc": [ - "default.handlebars->47->2952" + "default.handlebars->47->2954" ] }, { @@ -21270,8 +21276,8 @@ "zh-cht": "刪除用戶群組", "hu": "Felhasználói csoport törlése", "xloc": [ - "default.handlebars->47->2847", - "default.handlebars->47->2859" + "default.handlebars->47->2849", + "default.handlebars->47->2861" ] }, { @@ -21298,7 +21304,7 @@ "zh-cht": "刪除用戶群組", "hu": "Felhasználói csoportok törlése", "xloc": [ - "default.handlebars->47->2792" + "default.handlebars->47->2794" ] }, { @@ -21325,7 +21331,7 @@ "zh-cht": "刪除用戶{0}", "hu": "Felhasználó törlése: {0}", "xloc": [ - "default.handlebars->47->3020" + "default.handlebars->47->3022" ] }, { @@ -21353,7 +21359,7 @@ "hu": "Fiók törlése", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountActions->3->9->0", - "default.handlebars->47->2698", + "default.handlebars->47->2700", "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7" ] }, @@ -21408,7 +21414,7 @@ "zh-cht": "刪除群組", "hu": "Csoport törlése", "xloc": [ - "default.handlebars->47->2788" + "default.handlebars->47->2790" ] }, { @@ -21462,7 +21468,7 @@ "zh-cht": "遞歸刪除:“{0}”,{1}個元素已刪除", "hu": "Rekurzív törlés: \\\"{0}\\\", {1} eltávolított elem(ek)", "xloc": [ - "default.handlebars->47->2515" + "default.handlebars->47->2517" ] }, { @@ -21490,9 +21496,9 @@ "hu": "Kijelölt elem törlése?", "xloc": [ "default-mobile.handlebars->11->362", - "default-mobile.handlebars->11->695", - "default.handlebars->47->1535", - "default.handlebars->47->2455", + "default-mobile.handlebars->11->696", + "default.handlebars->47->1537", + "default.handlebars->47->2457", "sharing.handlebars->11->63" ] }, @@ -21520,7 +21526,7 @@ "zh-cht": "刪除用戶群組{0}?", "hu": "Törli a(z) {0} felhasználói csoportot?", "xloc": [ - "default.handlebars->47->2857" + "default.handlebars->47->2859" ] }, { @@ -21548,9 +21554,9 @@ "hu": "A(z) {0} kiválasztott elem törlése?", "xloc": [ "default-mobile.handlebars->11->361", - "default-mobile.handlebars->11->694", - "default.handlebars->47->1534", - "default.handlebars->47->2454", + "default-mobile.handlebars->11->695", + "default.handlebars->47->1536", + "default.handlebars->47->2456", "sharing.handlebars->11->62" ] }, @@ -21578,7 +21584,7 @@ "zh-cht": "刪除{0}?", "hu": "Törli a következőt: {0}?", "xloc": [ - "default-mobile.handlebars->11->602" + "default-mobile.handlebars->11->603" ] }, { @@ -21605,7 +21611,7 @@ "zh-cht": "刪除:“{0}”", "hu": "Törlés: \\\"{0}\\\"", "xloc": [ - "default.handlebars->47->2514" + "default.handlebars->47->2516" ] }, { @@ -21632,7 +21638,7 @@ "zh-cht": "刪除:“{0}”,已刪除{1}個元素", "hu": "Törlés: \\\"{0}\\\", {1} elem eltávolítva", "xloc": [ - "default.handlebars->47->2516" + "default.handlebars->47->2518" ] }, { @@ -21659,7 +21665,7 @@ "zh-cht": "被拒絕", "hu": "Elutasítva", "xloc": [ - "default-mobile.handlebars->11->616", + "default-mobile.handlebars->11->617", "default.handlebars->47->1351", "sharing.handlebars->11->29", "sharing.handlebars->11->7" @@ -21675,7 +21681,7 @@ "de": "Login des Benutzers von {0}, {1}, {2} verweigert", "es": "Se denego el inicio de sesion de {0}, {1}, {2}", "xloc": [ - "default.handlebars->47->2624" + "default.handlebars->47->2626" ] }, { @@ -21825,22 +21831,22 @@ "default-mobile.handlebars->11->339", "default-mobile.handlebars->11->485", "default-mobile.handlebars->11->486", - "default-mobile.handlebars->11->611", - "default-mobile.handlebars->11->772", - "default-mobile.handlebars->11->898", - "default-mobile.handlebars->11->921", + "default-mobile.handlebars->11->612", + "default-mobile.handlebars->11->773", + "default-mobile.handlebars->11->899", + "default-mobile.handlebars->11->922", "default.handlebars->47->1345", "default.handlebars->47->157", - "default.handlebars->47->1600", - "default.handlebars->47->1610", - "default.handlebars->47->2058", - "default.handlebars->47->2118", - "default.handlebars->47->2256", - "default.handlebars->47->2630", - "default.handlebars->47->2797", - "default.handlebars->47->2808", - "default.handlebars->47->2809", - "default.handlebars->47->2855", + "default.handlebars->47->1602", + "default.handlebars->47->1612", + "default.handlebars->47->2060", + "default.handlebars->47->2120", + "default.handlebars->47->2258", + "default.handlebars->47->2632", + "default.handlebars->47->2799", + "default.handlebars->47->2810", + "default.handlebars->47->2811", + "default.handlebars->47->2857", "default.handlebars->47->882", "default.handlebars->47->883", "default.handlebars->container->column_l->p42->p42tbl->1->0->3" @@ -21898,12 +21904,12 @@ "default.handlebars->47->1075", "default.handlebars->47->1188", "default.handlebars->47->1463", - "default.handlebars->47->2187", - "default.handlebars->47->2262", - "default.handlebars->47->3080", - "default.handlebars->47->3140", - "default.handlebars->47->3190", - "default.handlebars->47->3285", + "default.handlebars->47->2189", + "default.handlebars->47->2264", + "default.handlebars->47->3082", + "default.handlebars->47->3142", + "default.handlebars->47->3192", + "default.handlebars->47->3287", "default.handlebars->47->847", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop", "default.handlebars->contextMenu->cxdesktop", @@ -21937,7 +21943,7 @@ "xloc": [ "default.handlebars->47->1079", "default.handlebars->47->1191", - "default.handlebars->47->2191" + "default.handlebars->47->2193" ] }, { @@ -21965,7 +21971,7 @@ "hu": "Asztal + Terminál", "xloc": [ "default.handlebars->47->1076", - "default.handlebars->47->2188" + "default.handlebars->47->2190" ] }, { @@ -21994,7 +22000,7 @@ "xloc": [ "default.handlebars->47->1080", "default.handlebars->47->1193", - "default.handlebars->47->2192" + "default.handlebars->47->2194" ] }, { @@ -22048,7 +22054,7 @@ "zh-cht": "桌面多路復用", "hu": "Asztal Multiplex", "xloc": [ - "default.handlebars->47->3290" + "default.handlebars->47->3292" ] }, { @@ -22075,9 +22081,9 @@ "zh-cht": "桌面通知", "hu": "Asztal kapcsolat értesítés", "xloc": [ - "default.handlebars->47->2138", - "default.handlebars->47->2816", - "default.handlebars->47->2921", + "default.handlebars->47->2140", + "default.handlebars->47->2818", + "default.handlebars->47->2923", "default.handlebars->47->953" ] }, @@ -22105,9 +22111,9 @@ "zh-cht": "桌面提示", "hu": "Asztal kapcsolat engedélykérés", "xloc": [ - "default.handlebars->47->2137", - "default.handlebars->47->2815", - "default.handlebars->47->2920", + "default.handlebars->47->2139", + "default.handlebars->47->2817", + "default.handlebars->47->2922", "default.handlebars->47->952" ] }, @@ -22135,9 +22141,9 @@ "zh-cht": "桌面提示+工具欄", "hu": "Asztal kapcsolat engedélykérés és eszköztár", "xloc": [ - "default.handlebars->47->2135", - "default.handlebars->47->2813", - "default.handlebars->47->2918", + "default.handlebars->47->2137", + "default.handlebars->47->2815", + "default.handlebars->47->2920", "default.handlebars->47->950" ] }, @@ -22165,7 +22171,7 @@ "zh-cht": "桌面會話", "hu": "Asztal munkamenet", "xloc": [ - "default.handlebars->47->3073" + "default.handlebars->47->3075" ] }, { @@ -22272,9 +22278,9 @@ "zh-cht": "桌面工具欄", "hu": "Asztal kapcsolat eszköztár", "xloc": [ - "default.handlebars->47->2136", - "default.handlebars->47->2814", - "default.handlebars->47->2919", + "default.handlebars->47->2138", + "default.handlebars->47->2816", + "default.handlebars->47->2921", "default.handlebars->47->951" ] }, @@ -22302,7 +22308,7 @@ "zh-cht": "僅桌面視圖", "hu": "Asztal csak megtekintés", "xloc": [ - "default.handlebars->47->2894" + "default.handlebars->47->2896" ] }, { @@ -22442,7 +22448,7 @@ "default-mobile.handlebars->11->564", "default.handlebars->47->1129", "default.handlebars->47->1154", - "default.handlebars->47->2353", + "default.handlebars->47->2355", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevInfo", "default.handlebars->contextMenu->cxdetails" ] @@ -22498,14 +22504,14 @@ "zh-cht": "裝置", "hu": "Eszköz", "xloc": [ - "default-mobile.handlebars->11->767", - "default.handlebars->47->1595", - "default.handlebars->47->1781", - "default.handlebars->47->2290", + "default-mobile.handlebars->11->768", + "default.handlebars->47->1597", + "default.handlebars->47->1783", + "default.handlebars->47->2292", "default.handlebars->47->281", - "default.handlebars->47->3039", - "default.handlebars->47->3106", - "default.handlebars->47->3124", + "default.handlebars->47->3041", + "default.handlebars->47->3108", + "default.handlebars->47->3126", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5" ] }, @@ -22643,7 +22649,7 @@ "zh-cht": "設備詳情", "hu": "Eszköz részéletek elérése", "xloc": [ - "default.handlebars->47->2314" + "default.handlebars->47->2316" ] }, { @@ -22698,18 +22704,18 @@ "hu": "Eszköz csoport", "xloc": [ "agent-translations.json", - "default-mobile.handlebars->11->983", - "default.handlebars->47->2285", - "default.handlebars->47->2288", - "default.handlebars->47->2289", - "default.handlebars->47->2647", - "default.handlebars->47->2839", - "default.handlebars->47->2845", - "default.handlebars->47->3027", - "default.handlebars->47->3089", - "default.handlebars->47->3113", - "default.handlebars->47->3127", - "default.handlebars->47->3207" + "default-mobile.handlebars->11->984", + "default.handlebars->47->2287", + "default.handlebars->47->2290", + "default.handlebars->47->2291", + "default.handlebars->47->2649", + "default.handlebars->47->2841", + "default.handlebars->47->2847", + "default.handlebars->47->3029", + "default.handlebars->47->3091", + "default.handlebars->47->3115", + "default.handlebars->47->3129", + "default.handlebars->47->3209" ] }, { @@ -22736,8 +22742,8 @@ "zh-cht": "裝置群用戶", "hu": "Eszköz Csoport Felhasználó", "xloc": [ - "default-mobile.handlebars->11->972", - "default.handlebars->47->2360" + "default-mobile.handlebars->11->973", + "default.handlebars->47->2362" ] }, { @@ -22765,11 +22771,11 @@ "hu": "Eszköz csoportok", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->3", - "default.handlebars->47->2663", - "default.handlebars->47->2782", - "default.handlebars->47->2826", - "default.handlebars->47->2915", - "default.handlebars->47->3263", + "default.handlebars->47->2665", + "default.handlebars->47->2784", + "default.handlebars->47->2828", + "default.handlebars->47->2917", + "default.handlebars->47->3265", "default.handlebars->container->column_l->p2->p2info->9" ] }, @@ -22878,9 +22884,9 @@ "zh-cht": "裝置名稱", "hu": "Eszköz Neve", "xloc": [ - "default-mobile.handlebars->11->609", + "default-mobile.handlebars->11->610", "default.handlebars->47->1343", - "default.handlebars->47->3088", + "default.handlebars->47->3090", "default.handlebars->47->491", "default.handlebars->47->500", "player.handlebars->3->25" @@ -22938,13 +22944,13 @@ "zh-cht": "設備配對鏈接", "hu": "Eszköz párosítás link", "xloc": [ - "default-mobile.handlebars->11->926" + "default-mobile.handlebars->11->927" ] }, { "en": "Device Powered On", "xloc": [ - "default.handlebars->47->2628" + "default.handlebars->47->2630" ] }, { @@ -22971,7 +22977,7 @@ "zh-cht": "設備推送", "hu": "Device Push", "xloc": [ - "default.handlebars->47->2934" + "default.handlebars->47->2936" ] }, { @@ -22984,7 +22990,7 @@ "de": "Aufzeichnungen zu Push-Benachrichtigungen des Geräts", "es": "Registro de Notificaciones Push del dispositivo", "xloc": [ - "default.handlebars->47->3187" + "default.handlebars->47->3189" ] }, { @@ -22997,7 +23003,7 @@ "de": "SMBIOS Geräteaufzeichnungen", "es": "Registro SMBIOS del dispositivo", "xloc": [ - "default.handlebars->47->3186" + "default.handlebars->47->3188" ] }, { @@ -23073,7 +23079,7 @@ "hu": "Eszközmegosztási link", "xloc": [ "default.handlebars->47->1072", - "default.handlebars->47->2184" + "default.handlebars->47->2186" ] }, { @@ -23213,10 +23219,10 @@ "default.handlebars->47->1098", "default.handlebars->47->1102", "default.handlebars->47->1106", - "default.handlebars->47->2021", - "default.handlebars->47->2387", - "default.handlebars->47->2391", - "default.handlebars->47->2395" + "default.handlebars->47->2023", + "default.handlebars->47->2389", + "default.handlebars->47->2393", + "default.handlebars->47->2397" ] }, { @@ -23246,10 +23252,10 @@ "default.handlebars->47->1099", "default.handlebars->47->1103", "default.handlebars->47->1107", - "default.handlebars->47->2022", - "default.handlebars->47->2388", - "default.handlebars->47->2392", - "default.handlebars->47->2396" + "default.handlebars->47->2024", + "default.handlebars->47->2390", + "default.handlebars->47->2394", + "default.handlebars->47->2398" ] }, { @@ -23276,7 +23282,7 @@ "zh-cht": "設備組已創建:{0}", "hu": "Eszközcsoport létrehozva: {0}", "xloc": [ - "default.handlebars->47->2545" + "default.handlebars->47->2547" ] }, { @@ -23303,7 +23309,7 @@ "zh-cht": "設備組已刪除:{0}", "hu": "Eszközcsoport törölve: {0}", "xloc": [ - "default.handlebars->47->2546" + "default.handlebars->47->2548" ] }, { @@ -23330,7 +23336,7 @@ "zh-cht": "設備組成員身份已更改:{0}", "hu": "Eszközcsoport tagság megváltozott: {0}", "xloc": [ - "default.handlebars->47->2547" + "default.handlebars->47->2549" ] }, { @@ -23385,7 +23391,7 @@ "zh-cht": "設備組通知已更改", "hu": "Eszközcsoport értesítés megváltozott", "xloc": [ - "default.handlebars->47->2542" + "default.handlebars->47->2544" ] }, { @@ -23398,7 +23404,7 @@ "de": "Gerätegruppenaufzeichnungen", "es": "Registro de grupo de dispositivos", "xloc": [ - "default.handlebars->47->3172" + "default.handlebars->47->3174" ] }, { @@ -23425,7 +23431,7 @@ "zh-cht": "未刪除的設備組:{0}", "hu": "Eszközcsoport törlés visszavonva: {0}", "xloc": [ - "default.handlebars->47->2525" + "default.handlebars->47->2527" ] }, { @@ -23452,7 +23458,7 @@ "zh-cht": "設備組 {0} 已更改:{1}", "hu": "{0} eszközcsoport :{1} megváltozott", "xloc": [ - "default.handlebars->47->2611" + "default.handlebars->47->2613" ] }, { @@ -23492,7 +23498,7 @@ "de": "Aufzeichnungen zu Geräteinformationen", "es": "Registro de informacion de dispossitivos", "xloc": [ - "default.handlebars->47->3174" + "default.handlebars->47->3176" ] }, { @@ -24058,7 +24064,7 @@ "hu": "Eszköz energiaellátás változás rekordok", "es": "Registro de cambios en origen de poder", "xloc": [ - "default.handlebars->47->3180" + "default.handlebars->47->3182" ] }, { @@ -24071,7 +24077,7 @@ "de": "Geräteaufzeichnungen", "es": "Registro de dispotitivos", "xloc": [ - "default.handlebars->47->3171" + "default.handlebars->47->3173" ] }, { @@ -24098,7 +24104,7 @@ "zh-cht": "設備請求 Intel(R) AMT ACM TLS 激活,FQDN:{0}", "hu": "Eszköz által kért Intel(R) AMT ACM TLS aktiválás, FQDN: {0}", "xloc": [ - "default.handlebars->47->2580" + "default.handlebars->47->2582" ] }, { @@ -24125,7 +24131,7 @@ "zh-cht": "設備請求激活Intel(R)AMT ACM,FQDN:{0}", "hu": "Eszköz által kért Intel(R) AMT ACM aktiválás, FQDN: {0}", "xloc": [ - "default.handlebars->47->2527" + "default.handlebars->47->2529" ] }, { @@ -24138,7 +24144,7 @@ "de": "Aufzeichnungen zu Geräte-Teilen", "es": "Registros de uso compartido de dispositivos", "xloc": [ - "default.handlebars->47->3184" + "default.handlebars->47->3186" ] }, { @@ -24151,7 +24157,7 @@ "de": "Aufzeichnungen zu Geräten, Benutzern und Weiteres", "es": "Dispositivo, usuarios, grupos y otros registros", "xloc": [ - "default.handlebars->47->3188" + "default.handlebars->47->3190" ] }, { @@ -24202,9 +24208,9 @@ "zh-cht": "裝置", "hu": "Eszközök", "xloc": [ - "default.handlebars->47->2207", - "default.handlebars->47->2783", - "default.handlebars->47->2827" + "default.handlebars->47->2209", + "default.handlebars->47->2785", + "default.handlebars->47->2829" ] }, { @@ -24417,7 +24423,7 @@ "zh-cht": "已禁用", "hu": "Tiltva", "xloc": [ - "default-mobile.handlebars->11->752", + "default-mobile.handlebars->11->753", "default.handlebars->47->130", "default.handlebars->47->944" ] @@ -24446,7 +24452,7 @@ "zh-cht": "禁用的電子郵件兩因素身份驗證", "hu": "Kétfaktoros e-mail hitelesítés kikapcsolása", "xloc": [ - "default.handlebars->47->2558" + "default.handlebars->47->2560" ] }, { @@ -24477,7 +24483,7 @@ "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3", "default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea1->1->3->disconnectbutton2span", - "default.handlebars->47->2148", + "default.handlebars->47->2150", "default.handlebars->47->963", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->disconnectbutton1span", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->disconnectbutton2span", @@ -24687,8 +24693,8 @@ "de": "Discord", "es": "Discord", "xloc": [ - "default.handlebars->47->1743", - "default.handlebars->47->2966" + "default.handlebars->47->1745", + "default.handlebars->47->2968" ] }, { @@ -24878,7 +24884,7 @@ "zh-cht": "顯示裝置群名稱", "hu": "Eszközcsoport nevének megjelenítése", "xloc": [ - "default.handlebars->47->2020" + "default.handlebars->47->2022" ] }, { @@ -24932,7 +24938,7 @@ "zh-cht": "顯示公共鏈結", "hu": "Publikus link megjelenítése", "xloc": [ - "default.handlebars->47->2426" + "default.handlebars->47->2428" ] }, { @@ -24967,7 +24973,7 @@ "nl": "Waarschuwingsvenster weergeven, title=\\\"{0}\\\", message=\\\"{1}\\\"", "pl": "Wyświetl okno powiadomienia, tytuł=\\\"{0}\\\", wiadomość=\\\"{1}\\\"", "xloc": [ - "default.handlebars->47->2627" + "default.handlebars->47->2629" ] }, { @@ -24994,7 +25000,7 @@ "zh-cht": "顯示消息框,標題= “{0}”,消息= “{1}”", "hu": "Üzenetdoboz megjelenítése, cím=\\\"{0}\\\", üzenet=\\\"{1}\\\"", "xloc": [ - "default.handlebars->47->2487" + "default.handlebars->47->2489" ] }, { @@ -25021,7 +25027,7 @@ "zh-cht": "顯示吐司消息,標題= “{0}”,消息= “{1}”", "hu": "Alkalmazás üzenet megjelenítése, title=\\\"{0}\\\", message=\\\"{1}\\\"", "xloc": [ - "default.handlebars->47->2495" + "default.handlebars->47->2497" ] }, { @@ -25048,8 +25054,8 @@ "zh-cht": "什麼都不做", "hu": "Ne csináljon semmit", "xloc": [ - "default.handlebars->47->2236", - "default.handlebars->47->2240" + "default.handlebars->47->2238", + "default.handlebars->47->2242" ] }, { @@ -25078,10 +25084,10 @@ "xloc": [ "default.handlebars->47->126", "default.handlebars->47->1369", - "default.handlebars->47->2746", - "default.handlebars->47->2795", - "default.handlebars->47->2804", - "default.handlebars->47->2878", + "default.handlebars->47->2748", + "default.handlebars->47->2797", + "default.handlebars->47->2806", + "default.handlebars->47->2880", "mstsc.handlebars->main->1->3->1->rowdomain->1->0", "mstsc.handlebars->main->1->3->1->rowdomain->3" ] @@ -25134,7 +25140,7 @@ "zh-cht": "請勿更改,如果設置請保留CCM", "hu": "Ne módosítsa, tartsa meg a CCM-et, ha beállítva van", "xloc": [ - "default.handlebars->47->2232" + "default.handlebars->47->2234" ] }, { @@ -25185,7 +25191,7 @@ "zh-cht": "不要連接到伺服器", "hu": "Ne csatlakozzon a kiszolgálóhoz", "xloc": [ - "default.handlebars->47->2241" + "default.handlebars->47->2243" ] }, { @@ -25313,7 +25319,7 @@ "zh-cht": "下", "hu": "Le", "xloc": [ - "default-mobile.handlebars->11->639", + "default-mobile.handlebars->11->640", "default.handlebars->47->1404" ] }, @@ -25427,8 +25433,8 @@ "zh-cht": "下載檔案", "hu": "Fájl letöltése", "xloc": [ - "default-mobile.handlebars->11->714", - "default.handlebars->47->1555", + "default-mobile.handlebars->11->715", + "default.handlebars->47->1557", "sharing.handlebars->11->82" ] }, @@ -25564,7 +25570,7 @@ "zh-cht": "下載報告", "hu": "Jelentés letöltése", "xloc": [ - "default.handlebars->47->2652", + "default.handlebars->47->2654", "default.handlebars->container->column_l->p3->3->1->0->3", "default.handlebars->container->column_l->p60->3->1->0->3->1->p60downloadReportDiv" ] @@ -25674,7 +25680,7 @@ "zh-cht": "下載設備列表", "hu": "Eszközlista letöltése", "xloc": [ - "default.handlebars->47->2205" + "default.handlebars->47->2207" ] }, { @@ -25890,7 +25896,7 @@ "zh-cht": "使用以下一種檔案格式下載事件列表。", "hu": "Töltse le az események listáját az alábbi fájlformátumokban.", "xloc": [ - "default.handlebars->47->2653" + "default.handlebars->47->2655" ] }, { @@ -25917,7 +25923,7 @@ "zh-cht": "使用以下一種檔案格式下載用戶列表。", "hu": "Töltse le a felhasználók listáját az alábbi fájlformátumok valamelyikével.", "xloc": [ - "default.handlebars->47->2730" + "default.handlebars->47->2732" ] }, { @@ -26027,7 +26033,7 @@ "zh-cht": "下載:“{0}”", "hu": "Letöltés: \\\"{0}\\\"", "xloc": [ - "default.handlebars->47->2518" + "default.handlebars->47->2520" ] }, { @@ -26054,7 +26060,7 @@ "zh-cht": "下載:\\\"{0}\\\",大小:{1}", "hu": "Letöltés: \\\"{0}\\\", Méret: {1}", "xloc": [ - "default.handlebars->47->2575" + "default.handlebars->47->2577" ] }, { @@ -26108,7 +26114,7 @@ "zh-cht": "代理重複", "hu": "Duplikált Agent", "xloc": [ - "default.handlebars->47->3259" + "default.handlebars->47->3261" ] }, { @@ -26162,7 +26168,7 @@ "zh-cht": "複製用戶群", "hu": "Felhasználó csoport duplikálása", "xloc": [ - "default.handlebars->47->2799" + "default.handlebars->47->2801" ] }, { @@ -26216,8 +26222,8 @@ "default.handlebars->47->1224", "default.handlebars->47->287", "default.handlebars->47->289", - "default.handlebars->47->3068", - "default.handlebars->47->3094", + "default.handlebars->47->3070", + "default.handlebars->47->3096", "player.handlebars->3->18" ] }, @@ -26270,7 +26276,7 @@ "hu": "holland (Belga)", "xloc": [ "default-mobile.handlebars->11->150", - "default.handlebars->47->1839", + "default.handlebars->47->1841", "login2.handlebars->7->47" ] }, @@ -26299,7 +26305,7 @@ "hu": "holland", "xloc": [ "default-mobile.handlebars->11->149", - "default.handlebars->47->1838", + "default.handlebars->47->1840", "login2.handlebars->7->46" ] }, @@ -26713,9 +26719,9 @@ "zh-cht": "編輯裝置", "hu": "Eszköz szerkesztése", "xloc": [ - "default-mobile.handlebars->11->605", - "default-mobile.handlebars->11->607", - "default-mobile.handlebars->11->614", + "default-mobile.handlebars->11->606", + "default-mobile.handlebars->11->608", + "default-mobile.handlebars->11->615", "default.handlebars->47->1339", "default.handlebars->47->1341", "default.handlebars->47->1348" @@ -26745,17 +26751,17 @@ "zh-cht": "編輯裝置群", "hu": "Eszközcsoport szerkesztés", "xloc": [ - "default-mobile.handlebars->11->916", - "default-mobile.handlebars->11->919", - "default-mobile.handlebars->11->922", - "default-mobile.handlebars->11->929", - "default-mobile.handlebars->11->949", - "default.handlebars->47->2251", - "default.handlebars->47->2254", - "default.handlebars->47->2257", - "default.handlebars->47->2294", - "default.handlebars->47->2321", - "default.handlebars->47->2333" + "default-mobile.handlebars->11->917", + "default-mobile.handlebars->11->920", + "default-mobile.handlebars->11->923", + "default-mobile.handlebars->11->930", + "default-mobile.handlebars->11->950", + "default.handlebars->47->2253", + "default.handlebars->47->2256", + "default.handlebars->47->2259", + "default.handlebars->47->2296", + "default.handlebars->47->2323", + "default.handlebars->47->2335" ] }, { @@ -26782,7 +26788,7 @@ "zh-cht": "編輯裝置群功能", "hu": "Eszköz Csoport funkciók szerkesztése", "xloc": [ - "default.handlebars->47->2280" + "default.handlebars->47->2282" ] }, { @@ -26809,8 +26815,8 @@ "zh-cht": "編輯裝置群權限", "hu": "Eszközcsoport engedélyek szerkesztése", "xloc": [ - "default.handlebars->47->2318", - "default.handlebars->47->2330" + "default.handlebars->47->2320", + "default.handlebars->47->2332" ] }, { @@ -26837,7 +26843,7 @@ "zh-cht": "編輯裝置群用戶同意", "hu": "Eszközcsoport felhasználói hozzájárulások szerkesztése", "xloc": [ - "default.handlebars->47->2258" + "default.handlebars->47->2260" ] }, { @@ -26864,8 +26870,8 @@ "zh-cht": "編輯裝置筆記", "hu": "Eszköz jegyzetek szerkesztése", "xloc": [ - "default-mobile.handlebars->11->941", - "default.handlebars->47->2308" + "default-mobile.handlebars->11->942", + "default.handlebars->47->2310" ] }, { @@ -26892,8 +26898,8 @@ "zh-cht": "編輯裝置權限", "hu": "Eszköz engedélyek szerkesztése", "xloc": [ - "default.handlebars->47->2323", - "default.handlebars->47->2325" + "default.handlebars->47->2325", + "default.handlebars->47->2327" ] }, { @@ -26947,7 +26953,7 @@ "zh-cht": "編輯裝置用戶同意", "hu": "Felhasználói hozzájárulások szerkesztése", "xloc": [ - "default.handlebars->47->2260" + "default.handlebars->47->2262" ] }, { @@ -27004,7 +27010,7 @@ "default-mobile.handlebars->11->507", "default-mobile.handlebars->11->512", "default-mobile.handlebars->11->513", - "default-mobile.handlebars->11->600", + "default-mobile.handlebars->11->601", "default.handlebars->47->1283", "default.handlebars->47->906", "default.handlebars->47->911", @@ -27035,8 +27041,8 @@ "zh-cht": "編輯筆記", "hu": "Jegyzetek szerkesztése", "xloc": [ - "default-mobile.handlebars->11->956", - "default.handlebars->47->2340" + "default-mobile.handlebars->11->957", + "default.handlebars->47->2342" ] }, { @@ -27063,7 +27069,7 @@ "zh-cht": "編輯用戶同意", "hu": "Felhasználói hozzájárulások szerkesztése", "xloc": [ - "default.handlebars->47->2259" + "default.handlebars->47->2261" ] }, { @@ -27090,7 +27096,7 @@ "zh-cht": "編輯用戶裝置群權限", "hu": "Felhasználói eszközcsoport engedélyek szerkesztése", "xloc": [ - "default.handlebars->47->2331" + "default.handlebars->47->2333" ] }, { @@ -27117,7 +27123,7 @@ "zh-cht": "編輯用戶裝置權限", "hu": "Felhasználói eszközengedélyek szerkesztése", "xloc": [ - "default.handlebars->47->2326" + "default.handlebars->47->2328" ] }, { @@ -27144,7 +27150,7 @@ "zh-cht": "編輯用戶特徵", "hu": "Felhasználói funkciók szerkesztése", "xloc": [ - "default.handlebars->47->3003" + "default.handlebars->47->3005" ] }, { @@ -27171,7 +27177,7 @@ "zh-cht": "編輯用戶群", "hu": "Felhasználói csoport szerkesztése", "xloc": [ - "default.handlebars->47->2856" + "default.handlebars->47->2858" ] }, { @@ -27198,7 +27204,7 @@ "zh-cht": "編輯用戶群裝置權限", "hu": "Felhasználói csoport eszköz engedélyeinek szerkesztése", "xloc": [ - "default.handlebars->47->2328" + "default.handlebars->47->2330" ] }, { @@ -27225,7 +27231,7 @@ "zh-cht": "編輯用戶組功能", "hu": "Felhasználói Csoportok funkciók szerkesztése", "xloc": [ - "default.handlebars->47->2849" + "default.handlebars->47->2851" ] }, { @@ -27252,7 +27258,7 @@ "zh-cht": "編輯用戶組用戶同意", "hu": "Felhasználói Csoport felhasználói hozzájárulások szerkesztése", "xloc": [ - "default.handlebars->47->2261" + "default.handlebars->47->2263" ] }, { @@ -27386,12 +27392,12 @@ "hu": "Email", "xloc": [ "default-mobile.handlebars->11->316", - "default.handlebars->47->2748", - "default.handlebars->47->2882", + "default.handlebars->47->2750", "default.handlebars->47->2884", - "default.handlebars->47->2932", - "default.handlebars->47->2945", - "default.handlebars->47->3006", + "default.handlebars->47->2886", + "default.handlebars->47->2934", + "default.handlebars->47->2947", + "default.handlebars->47->3008", "default.handlebars->47->543", "login-mobile.handlebars->5->45", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3", @@ -27415,7 +27421,7 @@ "de": "E-Mail ({0})", "es": "Correo Electronico ({0})", "xloc": [ - "default.handlebars->47->2150", + "default.handlebars->47->2152", "default.handlebars->47->965" ] }, @@ -27444,7 +27450,7 @@ "hu": "E-mail cím módosítása", "xloc": [ "default-mobile.handlebars->11->317", - "default.handlebars->47->2029" + "default.handlebars->47->2031" ] }, { @@ -27472,7 +27478,7 @@ "hu": "E-mail hitelesítés", "xloc": [ "default-mobile.handlebars->11->101", - "default.handlebars->47->1769" + "default.handlebars->47->1771" ] }, { @@ -27587,7 +27593,7 @@ "hu": "Email értesítés", "xloc": [ "default.handlebars->47->1101", - "default.handlebars->47->2390" + "default.handlebars->47->2392" ] }, { @@ -27639,7 +27645,7 @@ "hu": "Email megerősítés", "xloc": [ "default-mobile.handlebars->11->315", - "default.handlebars->47->2027" + "default.handlebars->47->2029" ] }, { @@ -27666,8 +27672,8 @@ "zh-cht": "不允許使用電子郵件域 \\\"{0}\\\"。只允許 ({1})", "hu": "A \\\"{0}\\\" e-mail domain nem engedélyezett. Csak ({1}) engedélyezett", "xloc": [ - "default-mobile.handlebars->11->1014", - "default.handlebars->47->3238" + "default-mobile.handlebars->11->1015", + "default.handlebars->47->3240" ] }, { @@ -27721,7 +27727,7 @@ "zh-cht": "電郵未驗證", "hu": "Az e-mail cím nincs megerősítve.", "xloc": [ - "default.handlebars->47->2683" + "default.handlebars->47->2685" ] }, { @@ -27748,8 +27754,8 @@ "zh-cht": "電子郵件已驗證", "hu": "Az e-mail cím megerősítve.", "xloc": [ - "default.handlebars->47->2684", - "default.handlebars->47->2876" + "default.handlebars->47->2686", + "default.handlebars->47->2878" ] }, { @@ -27776,7 +27782,7 @@ "zh-cht": "電郵已驗證。", "hu": "Az e-mail cím megerősítve.", "xloc": [ - "default.handlebars->47->2754" + "default.handlebars->47->2756" ] }, { @@ -27803,7 +27809,7 @@ "zh-cht": "電郵未驗證", "hu": "Az e-mail cím nincs megerősítve.", "xloc": [ - "default.handlebars->47->2877" + "default.handlebars->47->2879" ] }, { @@ -27854,8 +27860,8 @@ "zh-cht": "電郵已發送。", "hu": "E-mail elküldve.", "xloc": [ - "default-mobile.handlebars->11->998", - "default.handlebars->47->3222", + "default-mobile.handlebars->11->999", + "default.handlebars->47->3224", "login-mobile.handlebars->5->2", "login.handlebars->5->2", "login2.handlebars->7->201" @@ -27938,7 +27944,7 @@ "zh-cht": "已通過電郵驗證,並且需要重置密碼。", "hu": "E-mail megerősített és kötelező jelszó-visszaállítás szükséges.", "xloc": [ - "default.handlebars->47->2755" + "default.handlebars->47->2757" ] }, { @@ -27989,7 +27995,7 @@ "zh-cht": "電子郵件/短信/推送流量", "hu": "E-mail/SMS/Push forgalom", "xloc": [ - "default.handlebars->47->3318" + "default.handlebars->47->3320" ] }, { @@ -28103,7 +28109,7 @@ "zh-cht": "啟用邀請代碼", "hu": "Meghívókódok engedélyezése", "xloc": [ - "default.handlebars->47->2366" + "default.handlebars->47->2368" ] }, { @@ -28158,7 +28164,7 @@ "hu": "Kétfaktoros e-mail hitelesítés engedélyezése.", "xloc": [ "default-mobile.handlebars->11->103", - "default.handlebars->47->1771" + "default.handlebars->47->1773" ] }, { @@ -28212,10 +28218,10 @@ "zh-cht": "已啟用", "hu": "Engedélyezve", "xloc": [ - "default-mobile.handlebars->11->860", + "default-mobile.handlebars->11->861", "default.handlebars->47->129", - "default.handlebars->47->1698", - "default.handlebars->47->3096" + "default.handlebars->47->1700", + "default.handlebars->47->3098" ] }, { @@ -28242,7 +28248,7 @@ "zh-cht": "啟用電子郵件兩因素身份驗證", "hu": "Kétfaktoros e-mail hitelesítés engedélyezve", "xloc": [ - "default.handlebars->47->2557" + "default.handlebars->47->2559" ] }, { @@ -28323,7 +28329,7 @@ "zh-cht": "編碼:RAW", "hu": "Kódolás: RAW", "xloc": [ - "default.handlebars->47->1562" + "default.handlebars->47->1564" ] }, { @@ -28350,15 +28356,15 @@ "zh-cht": "編碼:UTF8", "hu": "Kódolás: UTF8", "xloc": [ - "default.handlebars->47->1563" + "default.handlebars->47->1565" ] }, { "en": "Encryption In Progress", "nl": "Versleuteling wordt uitgevoerd", "xloc": [ - "default-mobile.handlebars->11->862", - "default.handlebars->47->1700" + "default-mobile.handlebars->11->863", + "default.handlebars->47->1702" ] }, { @@ -28385,7 +28391,7 @@ "zh-cht": "結尾", "hu": "Vége", "xloc": [ - "default-mobile.handlebars->11->632", + "default-mobile.handlebars->11->633", "default.handlebars->47->1398" ] }, @@ -28413,7 +28419,7 @@ "zh-cht": "時間結束", "hu": "Befejezés ideje", "xloc": [ - "default.handlebars->47->3093" + "default.handlebars->47->3095" ] }, { @@ -28440,7 +28446,7 @@ "zh-cht": "從{1}到{2},{3}秒結束了桌面會話“{0}”", "hu": "Befejezett asztali munkamenet \\\"{0}\\\", {1} és {2} között, {3} másodperc", "xloc": [ - "default.handlebars->47->2480" + "default.handlebars->47->2482" ] }, { @@ -28467,7 +28473,7 @@ "zh-cht": "從{1}到{2},{3}秒結束了文件管理會話“{0}”", "hu": "Befejezett fájl munkamenet \\\"{0}\\\" az {1}-től {2}-ig, {3} másodperc", "xloc": [ - "default.handlebars->47->2481" + "default.handlebars->47->2483" ] }, { @@ -28494,7 +28500,7 @@ "zh-cht": "已結束本地中繼會話 \\\"{0}\\\",協議 {1} 到 {2},{3} 秒", "hu": "Befejezett helyi relay munkamenet \\\"{0}\\\" protokol {1} és {2} között, {3} másodperc", "xloc": [ - "default.handlebars->47->2590" + "default.handlebars->47->2592" ] }, { @@ -28521,7 +28527,7 @@ "zh-cht": "從 {1} 到 {2} 結束的 Messenger 會話 \\\"{0}\\\",{3} 秒", "hu": "Befejezett üzenetküldő munkamenet \\\"{0}\\\" {1} és {2} között, {3} másodperc", "xloc": [ - "default.handlebars->47->2581" + "default.handlebars->47->2583" ] }, { @@ -28548,7 +28554,7 @@ "zh-cht": "從{1}到{2},{3}秒結束了中繼會話“{0}”", "hu": "Befejezett relay munkamenet \\\"{0}\\\" {1} és {2} között, {3} másodperc", "xloc": [ - "default.handlebars->47->2478" + "default.handlebars->47->2480" ] }, { @@ -28575,7 +28581,7 @@ "zh-cht": "從{1}到{2},{3}秒結束了終端會話“{0}”", "hu": "Befejezett terminál munkamenet \\\"{0}\\\" az {1}-től {2}-ig, {3} másodperc", "xloc": [ - "default.handlebars->47->2479" + "default.handlebars->47->2481" ] }, { @@ -28603,7 +28609,7 @@ "hu": "angol", "xloc": [ "default-mobile.handlebars->11->151", - "default.handlebars->47->1840", + "default.handlebars->47->1842", "login2.handlebars->7->48" ] }, @@ -28632,7 +28638,7 @@ "hu": "angol (Ausztrália)", "xloc": [ "default-mobile.handlebars->11->152", - "default.handlebars->47->1841", + "default.handlebars->47->1843", "login2.handlebars->7->49" ] }, @@ -28661,7 +28667,7 @@ "hu": "angol (Belize)", "xloc": [ "default-mobile.handlebars->11->153", - "default.handlebars->47->1842", + "default.handlebars->47->1844", "login2.handlebars->7->50" ] }, @@ -28690,7 +28696,7 @@ "hu": "angol (Kanada)", "xloc": [ "default-mobile.handlebars->11->154", - "default.handlebars->47->1843", + "default.handlebars->47->1845", "login2.handlebars->7->51" ] }, @@ -28719,7 +28725,7 @@ "hu": "angol (Írország)", "xloc": [ "default-mobile.handlebars->11->155", - "default.handlebars->47->1844", + "default.handlebars->47->1846", "login2.handlebars->7->52" ] }, @@ -28748,7 +28754,7 @@ "hu": "angol (Jamaika)", "xloc": [ "default-mobile.handlebars->11->156", - "default.handlebars->47->1845", + "default.handlebars->47->1847", "login2.handlebars->7->53" ] }, @@ -28777,7 +28783,7 @@ "hu": "angol (Új-Zéland)", "xloc": [ "default-mobile.handlebars->11->157", - "default.handlebars->47->1846", + "default.handlebars->47->1848", "login2.handlebars->7->54" ] }, @@ -28806,7 +28812,7 @@ "hu": "angol (Fülöp-szigetek)", "xloc": [ "default-mobile.handlebars->11->158", - "default.handlebars->47->1847", + "default.handlebars->47->1849", "login2.handlebars->7->55" ] }, @@ -28835,7 +28841,7 @@ "hu": "angol (Dél-Afrika)", "xloc": [ "default-mobile.handlebars->11->159", - "default.handlebars->47->1848", + "default.handlebars->47->1850", "login2.handlebars->7->56" ] }, @@ -28864,7 +28870,7 @@ "hu": "angol (Trinidad és Tobago)", "xloc": [ "default-mobile.handlebars->11->160", - "default.handlebars->47->1849", + "default.handlebars->47->1851", "login2.handlebars->7->57" ] }, @@ -28893,7 +28899,7 @@ "hu": "angol (Egyesült Királyság)", "xloc": [ "default-mobile.handlebars->11->161", - "default.handlebars->47->1850", + "default.handlebars->47->1852", "login2.handlebars->7->58" ] }, @@ -28922,7 +28928,7 @@ "hu": "angol (USA)", "xloc": [ "default-mobile.handlebars->11->162", - "default.handlebars->47->1851", + "default.handlebars->47->1853", "login2.handlebars->7->59" ] }, @@ -28951,7 +28957,7 @@ "hu": "angol (Zimbabwe)", "xloc": [ "default-mobile.handlebars->11->163", - "default.handlebars->47->1852", + "default.handlebars->47->1854", "login2.handlebars->7->60" ] }, @@ -29003,11 +29009,11 @@ "zh-cht": "輸入", "hu": "Enter", "xloc": [ - "default-mobile.handlebars->11->625", + "default-mobile.handlebars->11->626", "default.handlebars->47->1391", - "default.handlebars->47->1526", - "default.handlebars->47->2066", - "default.handlebars->47->2067", + "default.handlebars->47->1528", + "default.handlebars->47->2068", + "default.handlebars->47->2069", "sharing.handlebars->11->55" ] }, @@ -29035,7 +29041,7 @@ "zh-cht": "輸入管理領域名稱的逗號分隔列表。", "hu": "Adja meg az adminisztratív realm nevek vesszővel elválasztott listáját. (Ezek nem domain-ek)", "xloc": [ - "default.handlebars->47->2759" + "default.handlebars->47->2761" ] }, { @@ -29271,7 +29277,7 @@ "zh-cht": "輸入支持SMS的電話號碼。驗證後,該號碼可用於登入驗證和其他通知。", "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.", "xloc": [ - "default.handlebars->47->1735" + "default.handlebars->47->1737" ] }, { @@ -29283,7 +29289,7 @@ "de": "Geben Sie ihren Messengerdienst und Nutzernamen ein. Sobald Sie verifiziert sind, kann dieser Server Ihnen Loginverifikationen und andere Benachrichtigungen senden.", "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.", "xloc": [ - "default.handlebars->47->1741" + "default.handlebars->47->1743" ] }, { @@ -29437,8 +29443,8 @@ "zh-cht": "錯誤,邀請碼 \\\"{0}\\\" 已在使用中。", "hu": "Hiba, a \\\"{0}\\\" meghívókód már használatban van.", "xloc": [ - "default-mobile.handlebars->11->1006", - "default.handlebars->47->3230" + "default-mobile.handlebars->11->1007", + "default.handlebars->47->3232" ] }, { @@ -29465,8 +29471,8 @@ "zh-cht": "錯誤,密碼未更改。", "hu": "Hiba, a jelszó nem módosult.", "xloc": [ - "default-mobile.handlebars->11->1003", - "default.handlebars->47->3227" + "default-mobile.handlebars->11->1004", + "default.handlebars->47->3229" ] }, { @@ -29493,8 +29499,8 @@ "zh-cht": "錯誤,無法更改為常用密碼。", "hu": "Hiba, nem lehet átváltani a gyakran használt jelszóra.", "xloc": [ - "default-mobile.handlebars->11->1002", - "default.handlebars->47->3226" + "default-mobile.handlebars->11->1003", + "default.handlebars->47->3228" ] }, { @@ -29521,8 +29527,8 @@ "zh-cht": "錯誤,無法更改為以前使用的密碼。", "hu": "Hiba, nem lehet átváltani a korábban használt jelszóra.", "xloc": [ - "default-mobile.handlebars->11->1001", - "default.handlebars->47->3225" + "default-mobile.handlebars->11->1002", + "default.handlebars->47->3227" ] }, { @@ -29576,7 +29582,7 @@ "zh-cht": "逃脫", "hu": "Escape", "xloc": [ - "default-mobile.handlebars->11->626", + "default-mobile.handlebars->11->627", "default.handlebars->47->1392" ] }, @@ -29586,7 +29592,7 @@ "pl": "Przestrzeń", "es": "Espace", "xloc": [ - "default-mobile.handlebars->11->633" + "default-mobile.handlebars->11->634" ] }, { @@ -29614,7 +29620,7 @@ "hu": "eszperantó", "xloc": [ "default-mobile.handlebars->11->164", - "default.handlebars->47->1853", + "default.handlebars->47->1855", "login2.handlebars->7->61" ] }, @@ -29667,7 +29673,7 @@ "hu": "észt", "xloc": [ "default-mobile.handlebars->11->165", - "default.handlebars->47->1854", + "default.handlebars->47->1856", "login2.handlebars->7->62" ] }, @@ -29719,7 +29725,7 @@ "zh-cht": "事件詳情", "hu": "Az esemény részletei", "xloc": [ - "default.handlebars->47->1571" + "default.handlebars->47->1573" ] }, { @@ -29746,7 +29752,7 @@ "zh-cht": "事件列表輸出", "hu": "Eseménylista exportálás", "xloc": [ - "default.handlebars->47->2658" + "default.handlebars->47->2660" ] }, { @@ -29759,7 +29765,7 @@ "de": "Eventaufzeichnungen", "es": "Registro de eventos", "xloc": [ - "default.handlebars->47->3181" + "default.handlebars->47->3183" ] }, { @@ -29954,7 +29960,7 @@ "hu": "Lejárati idő", "xloc": [ "default.handlebars->47->1219", - "default.handlebars->47->2017", + "default.handlebars->47->2019", "default.handlebars->47->292" ] }, @@ -30009,7 +30015,7 @@ "zh-cht": "過期{0}", "hu": "Lejárat {0}", "xloc": [ - "default.handlebars->47->2080", + "default.handlebars->47->2082", "sharing.handlebars->11->95" ] }, @@ -30120,7 +30126,7 @@ "zh-cht": "外部", "hu": "Külső", "xloc": [ - "default.handlebars->47->3298" + "default.handlebars->47->3300" ] }, { @@ -30147,7 +30153,7 @@ "zh-cht": "FIDO 密鑰", "hu": "FIDO kulcs", "xloc": [ - "default.handlebars->47->3161" + "default.handlebars->47->3163" ] }, { @@ -30202,7 +30208,7 @@ "hu": "FYRO macedón", "xloc": [ "default-mobile.handlebars->11->215", - "default.handlebars->47->1904", + "default.handlebars->47->1906", "login2.handlebars->7->112" ] }, @@ -30215,8 +30221,8 @@ "de": "Facebook", "es": "Facebook", "xloc": [ - "default.handlebars->47->1755", - "default.handlebars->47->2978" + "default.handlebars->47->1757", + "default.handlebars->47->2980" ] }, { @@ -30244,7 +30250,7 @@ "hu": "feröer-szigeteki", "xloc": [ "default-mobile.handlebars->11->166", - "default.handlebars->47->1855", + "default.handlebars->47->1857", "login2.handlebars->7->63" ] }, @@ -30299,8 +30305,8 @@ "zh-cht": "更改電子郵件地址失敗,另一個帳戶已在使用:{0}。", "hu": "Nem sikerült megváltoztatni az e-mail címet, mert egy másik fiók már használja: {0}.", "xloc": [ - "default-mobile.handlebars->11->997", - "default.handlebars->47->3221" + "default-mobile.handlebars->11->998", + "default.handlebars->47->3223" ] }, { @@ -30380,7 +30386,7 @@ "zh-cht": "本地用戶拒絕後無法啟動遠程桌面", "hu": "A helyi felhasználó elutasítása után nem sikerült elindítani a távoli asztalt", "xloc": [ - "default.handlebars->47->2503" + "default.handlebars->47->2505" ] }, { @@ -30431,7 +30437,7 @@ "zh-cht": "本地用戶拒絕後無法啟動遠程文件", "hu": "A helyi felhasználó elutasítása után nem sikerült elindítani a távoli fájl elérést", "xloc": [ - "default.handlebars->47->2510" + "default.handlebars->47->2512" ] }, { @@ -30482,7 +30488,7 @@ "zh-cht": "無法啟動遠程終端接合{0}({1})", "hu": "Sikertelen távoli terminál munkamenet indítása, {0} ({1})", "xloc": [ - "default-mobile.handlebars->11->617", + "default-mobile.handlebars->11->618", "default.handlebars->47->1352", "sharing.handlebars->11->30", "sharing.handlebars->11->8" @@ -30513,7 +30519,7 @@ "hu": "fárszi (perzsa)", "xloc": [ "default-mobile.handlebars->11->167", - "default.handlebars->47->1856", + "default.handlebars->47->1858", "login2.handlebars->7->64" ] }, @@ -30570,9 +30576,9 @@ "zh-cht": "功能", "hu": "Funkciók", "xloc": [ - "default.handlebars->47->2134", - "default.handlebars->47->2812", - "default.handlebars->47->2903" + "default.handlebars->47->2136", + "default.handlebars->47->2814", + "default.handlebars->47->2905" ] }, { @@ -30600,7 +30606,7 @@ "hu": "fidzsi", "xloc": [ "default-mobile.handlebars->11->168", - "default.handlebars->47->1857", + "default.handlebars->47->1859", "login2.handlebars->7->65" ] }, @@ -30655,9 +30661,9 @@ "zh-cht": "檔案編輯器", "hu": "Fájl szerkesztő", "xloc": [ - "default-mobile.handlebars->11->698", - "default.handlebars->47->1538", - "default.handlebars->47->2459", + "default-mobile.handlebars->11->699", + "default.handlebars->47->1540", + "default.handlebars->47->2461", "default.handlebars->47->839", "sharing.handlebars->11->66" ] @@ -30750,8 +30756,8 @@ "nl": "Bestandssysteem", "pl": "System Plików", "xloc": [ - "default-mobile.handlebars->11->858", - "default.handlebars->47->1696" + "default-mobile.handlebars->11->859", + "default.handlebars->47->1698" ] }, { @@ -30778,7 +30784,7 @@ "zh-cht": "文件傳輸", "hu": "Fálj átvitel", "xloc": [ - "default.handlebars->47->3074" + "default.handlebars->47->3076" ] }, { @@ -30836,12 +30842,12 @@ "default-mobile.handlebars->11->563", "default.handlebars->47->1077", "default.handlebars->47->1190", - "default.handlebars->47->2189", - "default.handlebars->47->2269", - "default.handlebars->47->3081", - "default.handlebars->47->3141", - "default.handlebars->47->3191", - "default.handlebars->47->3286", + "default.handlebars->47->2191", + "default.handlebars->47->2271", + "default.handlebars->47->3083", + "default.handlebars->47->3143", + "default.handlebars->47->3193", + "default.handlebars->47->3288", "default.handlebars->47->457", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles", "default.handlebars->contextMenu->cxfiles", @@ -30899,9 +30905,9 @@ "zh-cht": "檔案通知", "hu": "Fájl kapcsolat értesítés", "xloc": [ - "default.handlebars->47->2142", - "default.handlebars->47->2820", - "default.handlebars->47->2925", + "default.handlebars->47->2144", + "default.handlebars->47->2822", + "default.handlebars->47->2927", "default.handlebars->47->957" ] }, @@ -30929,9 +30935,9 @@ "zh-cht": "檔案提示", "hu": "Fájl kapcsolat engedélykérés", "xloc": [ - "default.handlebars->47->2141", - "default.handlebars->47->2819", - "default.handlebars->47->2924", + "default.handlebars->47->2143", + "default.handlebars->47->2821", + "default.handlebars->47->2926", "default.handlebars->47->956" ] }, @@ -30960,7 +30966,7 @@ "hu": "Szűrő", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p2->xdevicesBar->1", - "default.handlebars->47->1522", + "default.handlebars->47->1524", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->kvmListToolbar", "default.handlebars->container->column_l->p16->3->1->0->5", @@ -31049,7 +31055,7 @@ "zh-cht": "查找文件", "hu": "Fájlok keresése", "xloc": [ - "default.handlebars->47->1525", + "default.handlebars->47->1527", "sharing.handlebars->11->54" ] }, @@ -31077,7 +31083,7 @@ "zh-cht": "已完成錄製會話 \\\"{0}\\\",{1} 秒", "hu": "Felvétel kész, \\\"{0}\\\", {1} másodperc", "xloc": [ - "default.handlebars->47->2615" + "default.handlebars->47->2617" ] }, { @@ -31104,7 +31110,7 @@ "zh-cht": "錄製會話已完成,{0}秒", "hu": "Felvétel kész, {0} másodperc", "xloc": [ - "default.handlebars->47->2476" + "default.handlebars->47->2478" ] }, { @@ -31132,7 +31138,7 @@ "hu": "finn", "xloc": [ "default-mobile.handlebars->11->169", - "default.handlebars->47->1858", + "default.handlebars->47->1860", "login2.handlebars->7->66" ] }, @@ -31160,8 +31166,8 @@ "zh-cht": "防火牆", "hu": "Tűzfal", "xloc": [ - "default-mobile.handlebars->11->738", - "default-mobile.handlebars->11->740", + "default-mobile.handlebars->11->739", + "default-mobile.handlebars->11->741", "default.handlebars->47->930", "default.handlebars->47->932" ] @@ -31190,8 +31196,8 @@ "zh-cht": "防火牆未激活", "hu": "Tűzfal nincs bekapcsolva", "xloc": [ - "default.handlebars->47->2406", - "default.handlebars->47->2420" + "default.handlebars->47->2408", + "default.handlebars->47->2422" ] }, { @@ -31258,7 +31264,7 @@ "zh-cht": "標誌", "hu": "Jelzők", "xloc": [ - "default.handlebars->47->2631" + "default.handlebars->47->2633" ] }, { @@ -31585,8 +31591,8 @@ "zh-cht": "下次登入時強制重置密碼。", "hu": "A következő bejelentkezéskor kötelező a jelszót megváltozgatni.", "xloc": [ - "default.handlebars->47->2753", - "default.handlebars->47->3017" + "default.handlebars->47->2755", + "default.handlebars->47->3019" ] }, { @@ -31613,7 +31619,7 @@ "zh-cht": "強行斷開用戶 {0} 的桌面會話", "hu": "A {0} felhasználó asztali munkamenetének erőszakos megszakítása", "xloc": [ - "default.handlebars->47->2603" + "default.handlebars->47->2605" ] }, { @@ -31640,7 +31646,7 @@ "zh-cht": "強制斷開用戶 {0} 的文件會話", "hu": "A {0} felhasználó fájlmunkamenetének erőszakos szétkapcsolása", "xloc": [ - "default.handlebars->47->2605" + "default.handlebars->47->2607" ] }, { @@ -31667,7 +31673,7 @@ "zh-cht": "強制斷開用戶 {0} 的路由會話", "hu": "A {0} felhasználó átjárómunkamenetének erőszakos szétkapcsolása", "xloc": [ - "default.handlebars->47->2606" + "default.handlebars->47->2608" ] }, { @@ -31694,7 +31700,7 @@ "zh-cht": "強制斷開用戶 {0} 的終端會話", "hu": "A {0} felhasználó terminál munkamenetének erőszakos szétkapcsolása", "xloc": [ - "default.handlebars->47->2604" + "default.handlebars->47->2606" ] }, { @@ -31805,7 +31811,7 @@ "zh-cht": "格式化", "hu": "Format", "xloc": [ - "default.handlebars->47->2649" + "default.handlebars->47->2651" ] }, { @@ -31885,8 +31891,8 @@ "zh-cht": "自由", "hu": "Free", "xloc": [ - "default.handlebars->47->3244", - "default.handlebars->47->3246" + "default.handlebars->47->3246", + "default.handlebars->47->3248" ] }, { @@ -31897,8 +31903,8 @@ "pl": "Darmowa usługa z ntfy.sh", "es": "Servicio gratuito en ntfy.sh", "xloc": [ - "default.handlebars->47->1758", - "default.handlebars->47->2981" + "default.handlebars->47->1760", + "default.handlebars->47->2983" ] }, { @@ -31954,7 +31960,7 @@ "hu": "francia (Belgium)", "xloc": [ "default-mobile.handlebars->11->171", - "default.handlebars->47->1860", + "default.handlebars->47->1862", "login2.handlebars->7->68" ] }, @@ -31983,7 +31989,7 @@ "hu": "francia (Kanada)", "xloc": [ "default-mobile.handlebars->11->172", - "default.handlebars->47->1861", + "default.handlebars->47->1863", "login2.handlebars->7->69" ] }, @@ -32012,7 +32018,7 @@ "hu": "francia (Franciaország)", "xloc": [ "default-mobile.handlebars->11->173", - "default.handlebars->47->1862", + "default.handlebars->47->1864", "login2.handlebars->7->70" ] }, @@ -32041,7 +32047,7 @@ "hu": "francia (Luxembourg)", "xloc": [ "default-mobile.handlebars->11->174", - "default.handlebars->47->1863", + "default.handlebars->47->1865", "login2.handlebars->7->71" ] }, @@ -32070,7 +32076,7 @@ "hu": "francia (Monaco)", "xloc": [ "default-mobile.handlebars->11->175", - "default.handlebars->47->1864", + "default.handlebars->47->1866", "login2.handlebars->7->72" ] }, @@ -32099,7 +32105,7 @@ "hu": "francia", "xloc": [ "default-mobile.handlebars->11->170", - "default.handlebars->47->1859", + "default.handlebars->47->1861", "login2.handlebars->7->67" ] }, @@ -32128,7 +32134,7 @@ "hu": "francia (Svájc)", "xloc": [ "default-mobile.handlebars->11->176", - "default.handlebars->47->1865", + "default.handlebars->47->1867", "login2.handlebars->7->73" ] }, @@ -32157,7 +32163,7 @@ "hu": "fríz", "xloc": [ "default-mobile.handlebars->11->177", - "default.handlebars->47->1866", + "default.handlebars->47->1868", "login2.handlebars->7->74" ] }, @@ -32186,7 +32192,7 @@ "hu": "friuli", "xloc": [ "default-mobile.handlebars->11->178", - "default.handlebars->47->1867", + "default.handlebars->47->1869", "login2.handlebars->7->75" ] }, @@ -32215,12 +32221,12 @@ "hu": "Teljes körű adminisztrátor", "xloc": [ "default-mobile.handlebars->11->343", - "default-mobile.handlebars->11->910", - "default-mobile.handlebars->11->928", - "default-mobile.handlebars->11->948", - "default.handlebars->47->2073", - "default.handlebars->47->2293", - "default.handlebars->47->2765" + "default-mobile.handlebars->11->911", + "default-mobile.handlebars->11->929", + "default-mobile.handlebars->11->949", + "default.handlebars->47->2075", + "default.handlebars->47->2295", + "default.handlebars->47->2767" ] }, { @@ -32247,7 +32253,7 @@ "zh-cht": "完整管理員(保留所有權利)", "hu": "Teljes jogú adminisztrátor (minden jog)", "xloc": [ - "default.handlebars->47->2332" + "default.handlebars->47->2334" ] }, { @@ -32409,7 +32415,7 @@ "zh-cht": "完整管理員", "hu": "Teljes körű adminisztrátor", "xloc": [ - "default.handlebars->47->2870" + "default.handlebars->47->2872" ] }, { @@ -32436,24 +32442,24 @@ "zh-cht": "全自動的", "hu": "Teljesen automatikus", "xloc": [ - "default.handlebars->47->2162", - "default.handlebars->47->2223" + "default.handlebars->47->2164", + "default.handlebars->47->2225" ] }, { "en": "Fully Decrypted", "nl": "Volledig gedecodeerd", "xloc": [ - "default-mobile.handlebars->11->861", - "default.handlebars->47->1699" + "default-mobile.handlebars->11->862", + "default.handlebars->47->1701" ] }, { "en": "Fully Encrypted", "nl": "Volledig gecodeerd", "xloc": [ - "default-mobile.handlebars->11->863", - "default.handlebars->47->1701" + "default-mobile.handlebars->11->864", + "default.handlebars->47->1703" ] }, { @@ -32507,8 +32513,8 @@ "zh-cht": "GPU", "hu": "GPU", "xloc": [ - "default-mobile.handlebars->11->815", - "default.handlebars->47->1653" + "default-mobile.handlebars->11->816", + "default.handlebars->47->1655" ] }, { @@ -32536,7 +32542,7 @@ "hu": "gael (Ír)", "xloc": [ "default-mobile.handlebars->11->180", - "default.handlebars->47->1869", + "default.handlebars->47->1871", "login2.handlebars->7->77" ] }, @@ -32565,7 +32571,7 @@ "hu": "gael (Skót)", "xloc": [ "default-mobile.handlebars->11->179", - "default.handlebars->47->1868", + "default.handlebars->47->1870", "login2.handlebars->7->76" ] }, @@ -32594,7 +32600,7 @@ "hu": "galíciai", "xloc": [ "default-mobile.handlebars->11->181", - "default.handlebars->47->1870", + "default.handlebars->47->1872", "login2.handlebars->7->78" ] }, @@ -32648,8 +32654,8 @@ "zh-cht": "網關:{0}", "hu": "Átjáró: {0}", "xloc": [ - "default-mobile.handlebars->11->779", - "default.handlebars->47->1617" + "default-mobile.handlebars->11->780", + "default.handlebars->47->1619" ] }, { @@ -32790,7 +32796,7 @@ "zh-cht": "生成報告", "hu": "Jelentés készítése", "xloc": [ - "default.handlebars->47->3122" + "default.handlebars->47->3124" ] }, { @@ -32845,7 +32851,7 @@ "hu": "grúz", "xloc": [ "default-mobile.handlebars->11->182", - "default.handlebars->47->1871", + "default.handlebars->47->1873", "login2.handlebars->7->79" ] }, @@ -32874,7 +32880,7 @@ "hu": "német (Ausztria)", "xloc": [ "default-mobile.handlebars->11->184", - "default.handlebars->47->1873", + "default.handlebars->47->1875", "login2.handlebars->7->81" ] }, @@ -32903,7 +32909,7 @@ "hu": "német (Németország)", "xloc": [ "default-mobile.handlebars->11->185", - "default.handlebars->47->1874", + "default.handlebars->47->1876", "login2.handlebars->7->82" ] }, @@ -32932,7 +32938,7 @@ "hu": "német (Liechtenstein)", "xloc": [ "default-mobile.handlebars->11->186", - "default.handlebars->47->1875", + "default.handlebars->47->1877", "login2.handlebars->7->83" ] }, @@ -32961,7 +32967,7 @@ "hu": "német (Luxemburg)", "xloc": [ "default-mobile.handlebars->11->187", - "default.handlebars->47->1876", + "default.handlebars->47->1878", "login2.handlebars->7->84" ] }, @@ -32990,7 +32996,7 @@ "hu": "német", "xloc": [ "default-mobile.handlebars->11->183", - "default.handlebars->47->1872", + "default.handlebars->47->1874", "login2.handlebars->7->80" ] }, @@ -33019,7 +33025,7 @@ "hu": "német (Svájc)", "xloc": [ "default-mobile.handlebars->11->188", - "default.handlebars->47->1877", + "default.handlebars->47->1879", "login2.handlebars->7->85" ] }, @@ -33129,7 +33135,7 @@ "zh-cht": "正在獲取剪貼板內容,{0}個字節", "hu": "A vágólap tartalmának lekérése, {0} bájt", "xloc": [ - "default.handlebars->47->2490" + "default.handlebars->47->2492" ] }, { @@ -33145,7 +33151,7 @@ "nl": "Ga naar map", "pl": "Przejdź do Folderu", "xloc": [ - "default.handlebars->47->1521" + "default.handlebars->47->1523" ] }, { @@ -33288,7 +33294,7 @@ "zh-cht": "好", "hu": "megfelelő", "xloc": [ - "default.handlebars->47->2069" + "default.handlebars->47->2071" ] }, { @@ -33347,8 +33353,8 @@ "zh-cht": "Google雲端硬盤備份", "hu": "Google Drive Biztonsági mentés", "xloc": [ - "default.handlebars->47->2090", - "default.handlebars->47->2093", + "default.handlebars->47->2092", + "default.handlebars->47->2095", "default.handlebars->47->320" ] }, @@ -33376,7 +33382,7 @@ "zh-cht": "Google雲端硬盤控制台", "hu": "Google Drive Consol", "xloc": [ - "default.handlebars->47->2087" + "default.handlebars->47->2089" ] }, { @@ -33430,7 +33436,7 @@ "zh-cht": "Google雲端硬盤備份當前處於活動狀態。", "hu": "A Google Drive biztonsági mentése jelenleg aktív.", "xloc": [ - "default.handlebars->47->2091" + "default.handlebars->47->2093" ] }, { @@ -33482,7 +33488,7 @@ "hu": "görög", "xloc": [ "default-mobile.handlebars->11->189", - "default.handlebars->47->1878", + "default.handlebars->47->1880", "login2.handlebars->7->86" ] }, @@ -33511,7 +33517,7 @@ "hu": "Csoport", "xloc": [ "default-mobile.handlebars->11->478", - "default.handlebars->47->3138", + "default.handlebars->47->3140", "default.handlebars->47->874", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->1" ] @@ -33540,8 +33546,8 @@ "zh-cht": "集體指令", "hu": "Művelet a kijelölteken", "xloc": [ - "default.handlebars->47->2699", - "default.handlebars->47->2789", + "default.handlebars->47->2701", + "default.handlebars->47->2791", "default.handlebars->47->736", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar", "default.handlebars->container->column_l->p4->3->1->0->3->3", @@ -33572,7 +33578,7 @@ "zh-cht": "通過...分群", "hu": "Csoportosítás", "xloc": [ - "default.handlebars->47->2645" + "default.handlebars->47->2647" ] }, { @@ -33600,7 +33606,7 @@ "hu": "Csoport azonosító", "xloc": [ "agent-translations.json", - "default.handlebars->47->2806" + "default.handlebars->47->2808" ] }, { @@ -33627,7 +33633,7 @@ "zh-cht": "群組成員", "hu": "Csoporttagok", "xloc": [ - "default.handlebars->47->2831" + "default.handlebars->47->2833" ] }, { @@ -33667,7 +33673,7 @@ "de": "Gruppentyp", "es": "Tipo de grupo", "xloc": [ - "default.handlebars->47->2807" + "default.handlebars->47->2809" ] }, { @@ -33694,8 +33700,8 @@ "zh-cht": "通過...分群", "hu": "Csoportosítás", "xloc": [ - "default.handlebars->47->3108", - "default.handlebars->47->3111" + "default.handlebars->47->3110", + "default.handlebars->47->3113" ] }, { @@ -33722,7 +33728,7 @@ "zh-cht": "團隊名字", "hu": "Csoport név", "xloc": [ - "default.handlebars->47->2629" + "default.handlebars->47->2631" ] }, { @@ -33749,7 +33755,7 @@ "zh-cht": "用戶{0}的群組權限。", "hu": "Csoportengedélyek a(z) {0} felhasználó számára.", "xloc": [ - "default.handlebars->47->2292" + "default.handlebars->47->2294" ] }, { @@ -33776,7 +33782,7 @@ "zh-cht": "{0}的群組權限。", "hu": "Csoportengedélyek a következőhöz: {0}.", "xloc": [ - "default.handlebars->47->2291" + "default.handlebars->47->2293" ] }, { @@ -33830,7 +33836,7 @@ "zh-cht": "群1,群2,群3", "hu": "Csoport1, Csoport2, Csoport3", "xloc": [ - "default-mobile.handlebars->11->613" + "default-mobile.handlebars->11->614" ] }, { @@ -33884,7 +33890,7 @@ "zh-cht": "來賓", "hu": "Vendég", "xloc": [ - "default.handlebars->47->3128" + "default.handlebars->47->3130" ] }, { @@ -33967,7 +33973,7 @@ "zh-cht": "嘉賓分享", "hu": "Vendégmegosztás", "xloc": [ - "default.handlebars->47->2300" + "default.handlebars->47->2302" ] }, { @@ -33995,7 +34001,7 @@ "hu": "gudzsaráti", "xloc": [ "default-mobile.handlebars->11->190", - "default.handlebars->47->1879", + "default.handlebars->47->1881", "login2.handlebars->7->87" ] }, @@ -34026,7 +34032,7 @@ "default-mobile.handlebars->11->547", "default.handlebars->47->1027", "default.handlebars->47->1194", - "default.handlebars->47->3282", + "default.handlebars->47->3284", "default.handlebars->47->434" ] }, @@ -34105,7 +34111,7 @@ "hu": "HTTP/", "xloc": [ "default.handlebars->47->1081", - "default.handlebars->47->2193" + "default.handlebars->47->2195" ] }, { @@ -34225,7 +34231,7 @@ "hu": "HTTPS/", "xloc": [ "default.handlebars->47->1082", - "default.handlebars->47->2194" + "default.handlebars->47->2196" ] }, { @@ -34308,7 +34314,7 @@ "hu": "haiti-szigeteki", "xloc": [ "default-mobile.handlebars->11->191", - "default.handlebars->47->1880", + "default.handlebars->47->1882", "login2.handlebars->7->88" ] }, @@ -34321,8 +34327,8 @@ "de": "Nutzername", "es": "Usuario", "xloc": [ - "default.handlebars->47->1751", - "default.handlebars->47->2974" + "default.handlebars->47->1753", + "default.handlebars->47->2976" ] }, { @@ -34403,8 +34409,8 @@ "zh-cht": "強行斷開代理", "hu": "Agent kényszerített lecsatlakoztatása", "xloc": [ - "default-mobile.handlebars->11->888", - "default.handlebars->47->1727" + "default-mobile.handlebars->11->889", + "default.handlebars->47->1729" ] }, { @@ -34431,7 +34437,7 @@ "zh-cht": "硬件一次性密碼", "hu": "Hardveres OTP", "xloc": [ - "default.handlebars->47->3163" + "default.handlebars->47->3165" ] }, { @@ -34458,7 +34464,7 @@ "zh-cht": "堆總數", "hu": "Teljes Heap", "xloc": [ - "default.handlebars->47->3300" + "default.handlebars->47->3302" ] }, { @@ -34485,7 +34491,7 @@ "zh-cht": "堆使用", "hu": "Használ Heap", "xloc": [ - "default.handlebars->47->3299" + "default.handlebars->47->3301" ] }, { @@ -34513,7 +34519,7 @@ "hu": "héber", "xloc": [ "default-mobile.handlebars->11->192", - "default.handlebars->47->1881", + "default.handlebars->47->1883", "login2.handlebars->7->89" ] }, @@ -34620,7 +34626,7 @@ "zh-cht": "已請求幫助,用戶:{0},詳細信息:{1}", "hu": "Segítséget kért {0} felhasználó, részletek: {1}", "xloc": [ - "default.handlebars->47->2567" + "default.handlebars->47->2569" ] }, { @@ -34690,8 +34696,8 @@ "xloc": [ "default.handlebars->47->1104", "default.handlebars->47->1108", - "default.handlebars->47->2393", - "default.handlebars->47->2397" + "default.handlebars->47->2395", + "default.handlebars->47->2399" ] }, { @@ -34719,7 +34725,7 @@ "hu": "Segítsen a MeshCentral fordításában", "xloc": [ "default-mobile.handlebars->11->307", - "default.handlebars->47->1996" + "default.handlebars->47->1998" ] }, { @@ -34859,7 +34865,7 @@ "hu": "hindi", "xloc": [ "default-mobile.handlebars->11->193", - "default.handlebars->47->1882", + "default.handlebars->47->1884", "login2.handlebars->7->90" ] }, @@ -34911,8 +34917,8 @@ "zh-cht": "保存1個項目進行複製", "hu": "1 bejegyzés megtartása másoláshoz", "xloc": [ - "default-mobile.handlebars->11->707", - "default.handlebars->47->1549", + "default-mobile.handlebars->11->708", + "default.handlebars->47->1551", "sharing.handlebars->11->76" ] }, @@ -34940,8 +34946,8 @@ "zh-cht": "保存1個項目進行移動", "hu": "1 bejegyzés megtartása áthelyezéshez", "xloc": [ - "default-mobile.handlebars->11->711", - "default.handlebars->47->1553", + "default-mobile.handlebars->11->712", + "default.handlebars->47->1555", "sharing.handlebars->11->80" ] }, @@ -34969,8 +34975,8 @@ "zh-cht": "保留{0}個項目進行複製", "hu": "{0} bejegyzés megtartása másoláshoz", "xloc": [ - "default-mobile.handlebars->11->705", - "default.handlebars->47->1547", + "default-mobile.handlebars->11->706", + "default.handlebars->47->1549", "sharing.handlebars->11->74" ] }, @@ -34998,8 +35004,8 @@ "zh-cht": "保存{0}個項目以進行移動", "hu": "{0} bejegyzés megtartása áthehyezéshez", "xloc": [ - "default-mobile.handlebars->11->709", - "default.handlebars->47->1551", + "default-mobile.handlebars->11->710", + "default.handlebars->47->1553", "sharing.handlebars->11->78" ] }, @@ -35028,7 +35034,7 @@ "hu": "{0} bejegyzés megtartása {1} {2}", "xloc": [ "default-mobile.handlebars->11->367", - "default.handlebars->47->2463" + "default.handlebars->47->2465" ] }, { @@ -35055,7 +35061,7 @@ "zh-cht": "家", "hu": "Home", "xloc": [ - "default-mobile.handlebars->11->631", + "default-mobile.handlebars->11->632", "default.handlebars->47->1397" ] }, @@ -35086,13 +35092,13 @@ "default-mobile.handlebars->11->480", "default-mobile.handlebars->11->481", "default-mobile.handlebars->11->483", - "default-mobile.handlebars->11->610", - "default-mobile.handlebars->11->770", - "default-mobile.handlebars->11->903", + "default-mobile.handlebars->11->611", + "default-mobile.handlebars->11->771", + "default-mobile.handlebars->11->904", "default.handlebars->47->1344", - "default.handlebars->47->1598", - "default.handlebars->47->2062", - "default.handlebars->47->2123", + "default.handlebars->47->1600", + "default.handlebars->47->2064", + "default.handlebars->47->2125", "default.handlebars->47->492", "default.handlebars->47->501", "default.handlebars->47->879" @@ -35122,7 +35128,7 @@ "zh-cht": "主機名同步", "hu": "Gépnév szinkronizálás", "xloc": [ - "default.handlebars->47->2130" + "default.handlebars->47->2132" ] }, { @@ -35158,7 +35164,7 @@ "hu": "magyar", "xloc": [ "default-mobile.handlebars->11->194", - "default.handlebars->47->1883", + "default.handlebars->47->1885", "login2.handlebars->7->91" ] }, @@ -35213,8 +35219,8 @@ "zh-cht": "IP地址", "hu": "IP Cím", "xloc": [ - "default.handlebars->47->3133", - "default.handlebars->47->3169" + "default.handlebars->47->3135", + "default.handlebars->47->3171" ] }, { @@ -35332,7 +35338,7 @@ "de": "Aufzeichnungen zu IP Lokationsinformationen", "es": "Registros de Ubicacion IP", "xloc": [ - "default.handlebars->47->3175" + "default.handlebars->47->3177" ] }, { @@ -35390,7 +35396,7 @@ "zh-cht": "IP-KVM / 電源設備", "hu": "IP-KVM / Power eszköz", "xloc": [ - "default.handlebars->47->2052" + "default.handlebars->47->2054" ] }, { @@ -35417,7 +35423,7 @@ "zh-cht": "IP-KVM / 通過代理中繼的電源設備", "hu": "IP-KVM / Power eszköz Agenten keresztül", "xloc": [ - "default.handlebars->47->2053" + "default.handlebars->47->2055" ] }, { @@ -35444,8 +35450,8 @@ "zh-cht": "IP-KVM 設備", "hu": "IP-KVM eszköz", "xloc": [ - "default-mobile.handlebars->11->895", - "default.handlebars->47->2115" + "default-mobile.handlebars->11->896", + "default.handlebars->47->2117" ] }, { @@ -35472,8 +35478,8 @@ "zh-cht": "通過代理中繼的 IP-KVM 設備", "hu": "IP-KVM eszköz továbbítva ügynökön keresztül", "xloc": [ - "default-mobile.handlebars->11->896", - "default.handlebars->47->2116" + "default-mobile.handlebars->11->897", + "default.handlebars->47->2118" ] }, { @@ -35582,9 +35588,9 @@ "zh-cht": "IP:{0}", "hu": "IP: {0}", "xloc": [ - "default-mobile.handlebars->11->777", - "default.handlebars->47->1608", - "default.handlebars->47->1615" + "default-mobile.handlebars->11->778", + "default.handlebars->47->1610", + "default.handlebars->47->1617" ] }, { @@ -35611,7 +35617,7 @@ "zh-cht": "IP:{0},遮罩:{1},閘道:{2}", "hu": "IP: {0}, Hálózati maszk: {1}, Átjáró: {2}", "xloc": [ - "default.handlebars->47->1606" + "default.handlebars->47->1608" ] }, { @@ -35638,10 +35644,10 @@ "zh-cht": "IPv4層", "hu": "IPv4 réteg", "xloc": [ - "default-mobile.handlebars->11->780", - "default.handlebars->47->1605", + "default-mobile.handlebars->11->781", "default.handlebars->47->1607", - "default.handlebars->47->1618" + "default.handlebars->47->1609", + "default.handlebars->47->1620" ] }, { @@ -35752,8 +35758,8 @@ "zh-cht": "IPv6層", "hu": "IPv6 réteg", "xloc": [ - "default-mobile.handlebars->11->782", - "default.handlebars->47->1620" + "default-mobile.handlebars->11->783", + "default.handlebars->47->1622" ] }, { @@ -35862,7 +35868,7 @@ "hu": "izlandi", "xloc": [ "default-mobile.handlebars->11->195", - "default.handlebars->47->1884", + "default.handlebars->47->1886", "login2.handlebars->7->92" ] }, @@ -35890,7 +35896,7 @@ "zh-cht": "圖符選擇", "hu": "Ikon kiválasztás", "xloc": [ - "default-mobile.handlebars->11->604", + "default-mobile.handlebars->11->605", "default.handlebars->47->1338" ] }, @@ -35918,12 +35924,12 @@ "zh-cht": "識別符", "hu": "Azonosító", "xloc": [ - "default-mobile.handlebars->11->769", - "default-mobile.handlebars->11->813", - "default-mobile.handlebars->11->867", - "default.handlebars->47->1597", - "default.handlebars->47->1651", - "default.handlebars->47->1705" + "default-mobile.handlebars->11->770", + "default-mobile.handlebars->11->814", + "default-mobile.handlebars->11->868", + "default.handlebars->47->1599", + "default.handlebars->47->1653", + "default.handlebars->47->1707" ] }, { @@ -35950,7 +35956,7 @@ "zh-cht": "如果在CCM中,請重新激活英特爾®AMT", "hu": "Ha CCM-ben van, aktiválja újra az Intel® AMT-t.", "xloc": [ - "default.handlebars->47->2237" + "default.handlebars->47->2239" ] }, { @@ -36128,7 +36134,7 @@ "de": "Import", "es": "Importar", "xloc": [ - "default.handlebars->47->2169" + "default.handlebars->47->2171" ] }, { @@ -36168,9 +36174,9 @@ "zh-cht": "導入英特爾® AMT 設備", "hu": "Intel® AMT Eszközök importálása", "xloc": [ - "default.handlebars->47->2211", - "default.handlebars->47->2212", - "default.handlebars->47->2216" + "default.handlebars->47->2213", + "default.handlebars->47->2214", + "default.handlebars->47->2218" ] }, { @@ -36183,7 +36189,7 @@ "de": "Intel® AMT Geräte importieren", "es": "Importar dispositivos Intel® AMT.", "xloc": [ - "default.handlebars->47->2168" + "default.handlebars->47->2170" ] }, { @@ -36210,7 +36216,7 @@ "zh-cht": "以 MeshCommander JSON 格式導入本地英特爾® AMT 設備列表。", "hu": "A helyi Intel® AMT eszközök listájának importálása MeshCommander JSON formátumban.", "xloc": [ - "default.handlebars->47->2210" + "default.handlebars->47->2212" ] }, { @@ -36237,7 +36243,7 @@ "zh-cht": "導入設備列表", "hu": "Eszköz lista importálás", "xloc": [ - "default.handlebars->47->2206" + "default.handlebars->47->2208" ] }, { @@ -36272,7 +36278,7 @@ "zh-cht": "為了使用推送通知身份驗證,必須在您的帳戶中設置具有完全權限的移動設備。", "hu": "A push értesítések hitelesítésének használatához a fiókjában be kell állítani egy mobileszközt, amely teljes jogosultsággal rendelkezik.", "xloc": [ - "default.handlebars->47->1779" + "default.handlebars->47->1781" ] }, { @@ -36299,7 +36305,7 @@ "zh-cht": "停用天數直到移除", "hu": "inaktiv napok száma mielőtt eltávolításra kerül", "xloc": [ - "default.handlebars->47->2277" + "default.handlebars->47->2279" ] }, { @@ -36455,8 +36461,8 @@ "zh-cht": "第二個因素不正確", "hu": "Helytelen 2. faktor", "xloc": [ - "default.handlebars->47->3156", - "default.handlebars->47->3195" + "default.handlebars->47->3158", + "default.handlebars->47->3197" ] }, { @@ -36541,7 +36547,7 @@ "hu": "indonéz", "xloc": [ "default-mobile.handlebars->11->196", - "default.handlebars->47->1885", + "default.handlebars->47->1887", "login2.handlebars->7->93" ] }, @@ -36608,8 +36614,8 @@ "de": "Informationen bei Pushover.net", "es": "Informacion en Pushover.net", "xloc": [ - "default.handlebars->47->1757", - "default.handlebars->47->2980" + "default.handlebars->47->1759", + "default.handlebars->47->2982" ] }, { @@ -36665,7 +36671,7 @@ "zh-cht": "插入", "hu": "Beszúrás", "xloc": [ - "default-mobile.handlebars->11->629", + "default-mobile.handlebars->11->630", "default.handlebars->47->1395" ] }, @@ -36822,7 +36828,7 @@ "zh-cht": "在此設備上安裝", "hu": "Telepítés erre az eszközre", "xloc": [ - "default-mobile.handlebars->11->907" + "default-mobile.handlebars->11->908" ] }, { @@ -36849,7 +36855,7 @@ "zh-cht": "在您的 Android 設備上安裝 MeshCentral Agent。安裝後,單擊配對鏈接將您的設備連接到此服務器。", "hu": "Telepítse a MeshCentral Agent alkalmazást Android-eszközére. A telepítés után kattintson a párosítási linkre, hogy eszközét ehhez a kiszolgálóhoz csatlakoztassa.", "xloc": [ - "default-mobile.handlebars->11->923" + "default-mobile.handlebars->11->924" ] }, { @@ -36925,8 +36931,8 @@ "hu": "Telepítés típusa", "xloc": [ "agentinvite.handlebars->3->7", - "default.handlebars->47->2374", - "default.handlebars->47->2381", + "default.handlebars->47->2376", + "default.handlebars->47->2383", "default.handlebars->47->559", "default.handlebars->47->580", "default.handlebars->47->597", @@ -37003,7 +37009,7 @@ "zh-cht": "英特爾AMT", "hu": "Intel AMT", "xloc": [ - "default.handlebars->47->3296" + "default.handlebars->47->3298" ] }, { @@ -37111,7 +37117,7 @@ "zh-cht": "英特爾 AMT 經理", "hu": "Intel AMT kezelő", "xloc": [ - "default.handlebars->47->3326" + "default.handlebars->47->3328" ] }, { @@ -37197,11 +37203,11 @@ "default-mobile.handlebars->11->515", "default-mobile.handlebars->11->522", "default.handlebars->47->1062", - "default.handlebars->47->2149", - "default.handlebars->47->2163", - "default.handlebars->47->2401", - "default.handlebars->47->2414", - "default.handlebars->47->3325", + "default.handlebars->47->2151", + "default.handlebars->47->2165", + "default.handlebars->47->2403", + "default.handlebars->47->2416", + "default.handlebars->47->3327", "default.handlebars->47->849", "default.handlebars->47->916", "default.handlebars->47->964", @@ -37491,7 +37497,7 @@ "zh-cht": "Intel® AMT政策", "hu": "Intel® AMT Házirend", "xloc": [ - "default.handlebars->47->2224" + "default.handlebars->47->2226" ] }, { @@ -37621,8 +37627,8 @@ "zh-cht": "Intel® AMT重定向", "hu": "Intel® AMT Átirányítás", "xloc": [ - "default.handlebars->47->3076", - "default.handlebars->47->3083", + "default.handlebars->47->3078", + "default.handlebars->47->3085", "player.handlebars->3->30" ] }, @@ -37718,8 +37724,8 @@ "zh-cht": "Intle® AMT WSMAN", "hu": "Intel® AMT WSMAN", "xloc": [ - "default.handlebars->47->3075", - "default.handlebars->47->3082", + "default.handlebars->47->3077", + "default.handlebars->47->3084", "player.handlebars->3->29" ] }, @@ -37801,8 +37807,8 @@ "hu": "Intel® AMT desktop és serial események", "xloc": [ "default.handlebars->47->1100", - "default.handlebars->47->2023", - "default.handlebars->47->2389" + "default.handlebars->47->2025", + "default.handlebars->47->2391" ] }, { @@ -38072,9 +38078,9 @@ "zh-cht": "僅限Intel® AMT,無代理", "hu": "Csak Intel® AMT, agent nélkül", "xloc": [ - "default-mobile.handlebars->11->891", - "default.handlebars->47->2056", - "default.handlebars->47->2111" + "default-mobile.handlebars->11->892", + "default.handlebars->47->2058", + "default.handlebars->47->2113" ] }, { @@ -38186,8 +38192,8 @@ "zh-cht": "Intel ® Active Management Technology(Intel® AMT)", "hu": "Intel® Active Management Technology (Intel® AMT)", "xloc": [ - "default-mobile.handlebars->11->803", - "default.handlebars->47->1641" + "default-mobile.handlebars->11->804", + "default.handlebars->47->1643" ] }, { @@ -38324,8 +38330,8 @@ "zh-cht": "英特爾® 標準可管理性(英特爾® SM)", "hu": "Intel® Standard Manageability (Intel® SM)", "xloc": [ - "default-mobile.handlebars->11->802", - "default.handlebars->47->1640" + "default-mobile.handlebars->11->803", + "default.handlebars->47->1642" ] }, { @@ -38406,7 +38412,7 @@ "zh-cht": "英特爾(r) AMT 政策變更", "hu": "Intel(r) AMT házirend beállítás", "xloc": [ - "default.handlebars->47->2610" + "default.handlebars->47->2612" ] }, { @@ -38668,8 +38674,8 @@ "hu": "Csak internaktív", "xloc": [ "agentinvite.handlebars->3->10", - "default.handlebars->47->2377", - "default.handlebars->47->2384", + "default.handlebars->47->2379", + "default.handlebars->47->2386", "default.handlebars->47->562", "default.handlebars->47->583", "default.handlebars->47->600" @@ -38754,7 +38760,7 @@ "hu": "inuktitut", "xloc": [ "default-mobile.handlebars->11->197", - "default.handlebars->47->1886", + "default.handlebars->47->1888", "login2.handlebars->7->94" ] }, @@ -38789,8 +38795,8 @@ { "en": "Invalid CSV file format.", "xloc": [ - "default.handlebars->47->2721", - "default.handlebars->47->2723" + "default.handlebars->47->2723", + "default.handlebars->47->2725" ] }, { @@ -38845,7 +38851,7 @@ "zh-cht": "無效的裝置群類型", "hu": "Érvénytelen eszközcsoport típus", "xloc": [ - "default.handlebars->47->3258" + "default.handlebars->47->3260" ] }, { @@ -38872,7 +38878,7 @@ "zh-cht": "無效的JSON", "hu": "Érvénytelen JSON", "xloc": [ - "default.handlebars->47->3252" + "default.handlebars->47->3254" ] }, { @@ -38899,9 +38905,9 @@ "zh-cht": "無效的JSON檔案格式。", "hu": "Érvénytelen JSON fájl formátum.", "xloc": [ - "default.handlebars->47->2217", - "default.handlebars->47->2727", + "default.handlebars->47->2219", "default.handlebars->47->2729", + "default.handlebars->47->2731", "default.handlebars->47->516" ] }, @@ -38929,8 +38935,8 @@ "zh-cht": "無效的JSON檔案:{0}。", "hu": "Érvénytelen JSON-fájl: {0}.", "xloc": [ - "default.handlebars->47->2213", - "default.handlebars->47->2725", + "default.handlebars->47->2215", + "default.handlebars->47->2727", "default.handlebars->47->514" ] }, @@ -39066,7 +39072,7 @@ "zh-cht": "無效的PKCS簽名", "hu": "Érvénytelen PKCS aláírás", "xloc": [ - "default.handlebars->47->3250" + "default.handlebars->47->3252" ] }, { @@ -39093,7 +39099,7 @@ "zh-cht": "無效的RSA密碼", "hu": "Érvénytelen RSA aláírás", "xloc": [ - "default.handlebars->47->3251" + "default.handlebars->47->3253" ] }, { @@ -39120,8 +39126,8 @@ "zh-cht": "短信無效", "hu": "Érvénytelen SMS üzenet", "xloc": [ - "default-mobile.handlebars->11->1009", - "default.handlebars->47->3233" + "default-mobile.handlebars->11->1010", + "default.handlebars->47->3235" ] }, { @@ -39204,8 +39210,8 @@ "zh-cht": "無效域", "hu": "Érvénytelen domain", "xloc": [ - "default-mobile.handlebars->11->989", - "default.handlebars->47->3213" + "default-mobile.handlebars->11->990", + "default.handlebars->47->3215" ] }, { @@ -39256,8 +39262,8 @@ "zh-cht": "不合規電郵", "hu": "Érvénytelen email", "xloc": [ - "default-mobile.handlebars->11->988", - "default.handlebars->47->3212" + "default-mobile.handlebars->11->989", + "default.handlebars->47->3214" ] }, { @@ -39368,8 +39374,8 @@ "zh-cht": "無效的登錄嘗試", "hu": "Érvénytelen bejelentkezési kísérlet", "xloc": [ - "default.handlebars->47->3158", - "default.handlebars->47->3197" + "default.handlebars->47->3160", + "default.handlebars->47->3199" ] }, { @@ -39381,7 +39387,7 @@ "de": "Ungültige Nachricht", "es": "Mensaje invalido", "xloc": [ - "default.handlebars->47->3239" + "default.handlebars->47->3241" ] }, { @@ -39417,8 +39423,8 @@ "hu": "Érvénytelen jelszó", "xloc": [ "default-mobile.handlebars->11->87", - "default-mobile.handlebars->11->987", - "default.handlebars->47->3211", + "default-mobile.handlebars->11->988", + "default.handlebars->47->3213", "default.handlebars->47->326" ] }, @@ -39461,8 +39467,8 @@ "zh-cht": "無效的網站權限", "hu": "Érvénytelen webhelyengedélyek", "xloc": [ - "default-mobile.handlebars->11->990", - "default.handlebars->47->3214" + "default-mobile.handlebars->11->991", + "default.handlebars->47->3216" ] }, { @@ -39518,7 +39524,7 @@ "zh-cht": "來自 {0}、{1}、{2} 的用戶登錄嘗試無效", "hu": "Érvénytelen felhasználói bejelentkezési kísérlet innen: {0}, {1}, {2}", "xloc": [ - "default.handlebars->47->2579" + "default.handlebars->47->2581" ] }, { @@ -39545,8 +39551,8 @@ "zh-cht": "無效的用戶名", "hu": "Érvénytelen felhasználónév", "xloc": [ - "default-mobile.handlebars->11->986", - "default.handlebars->47->3210" + "default-mobile.handlebars->11->987", + "default.handlebars->47->3212" ] }, { @@ -39597,7 +39603,7 @@ "zh-cht": "使電郵無效", "hu": "Email érvénytelenítés", "xloc": [ - "default.handlebars->47->2693" + "default.handlebars->47->2695" ] }, { @@ -39702,7 +39708,7 @@ "zh-cht": "任何人都可以使用邀請代碼通過以下公共鏈結將裝置加入該裝置群:", "hu": "A meghívókódokat bárki használhatja, hogy eszközöket csatlakoztasson ehhez az eszközcsoporthoz a következő nyilvános link segítségével:", "xloc": [ - "default.handlebars->47->2379" + "default.handlebars->47->2381" ] }, { @@ -39756,7 +39762,7 @@ "zh-cht": "邀請", "hu": "Meghívó", "xloc": [ - "default.handlebars->47->2175", + "default.handlebars->47->2177", "default.handlebars->47->487", "default.handlebars->47->585" ] @@ -39785,13 +39791,13 @@ "zh-cht": "邀請碼", "hu": "Meghívó kódok", "xloc": [ - "default-mobile.handlebars->11->984", - "default.handlebars->47->2155", - "default.handlebars->47->2367", - "default.handlebars->47->2378", + "default-mobile.handlebars->11->985", + "default.handlebars->47->2157", + "default.handlebars->47->2369", "default.handlebars->47->2380", - "default.handlebars->47->2385", - "default.handlebars->47->3208" + "default.handlebars->47->2382", + "default.handlebars->47->2387", + "default.handlebars->47->3210" ] }, { @@ -39818,7 +39824,7 @@ "zh-cht": "邀請代碼", "hu": "Meghívó kód", "xloc": [ - "default.handlebars->47->2634" + "default.handlebars->47->2636" ] }, { @@ -39872,7 +39878,7 @@ "zh-cht": "邀請某人在該裝置群上安裝mesh agent。", "hu": "Hívjon meg valakit, hogy telepítse a Mesh Agent-et és csatlakozzon ebbe az eszközcsoportra.", "xloc": [ - "default.handlebars->47->2174", + "default.handlebars->47->2176", "default.handlebars->47->486" ] }, @@ -39928,7 +39934,7 @@ "hu": "ír", "xloc": [ "default-mobile.handlebars->11->198", - "default.handlebars->47->1887", + "default.handlebars->47->1889", "login2.handlebars->7->95" ] }, @@ -39956,7 +39962,7 @@ "zh-cht": "是 \\\"{0}\\\" 的中繼。", "hu": "Relay a \\\"{0}\\\"-hez.", "xloc": [ - "default.handlebars->47->2622" + "default.handlebars->47->2624" ] }, { @@ -39964,8 +39970,8 @@ "nl": "IsActivated", "pl": "Aktywny", "xloc": [ - "default-mobile.handlebars->11->820", - "default.handlebars->47->1658" + "default-mobile.handlebars->11->821", + "default.handlebars->47->1660" ] }, { @@ -39973,8 +39979,8 @@ "nl": "IsEnabled", "pl": "Włączony", "xloc": [ - "default-mobile.handlebars->11->823", - "default.handlebars->47->1661" + "default-mobile.handlebars->11->824", + "default.handlebars->47->1663" ] }, { @@ -39982,8 +39988,8 @@ "nl": "IsOwned", "pl": "Jest Własnością", "xloc": [ - "default-mobile.handlebars->11->826", - "default.handlebars->47->1664" + "default-mobile.handlebars->11->827", + "default.handlebars->47->1666" ] }, { @@ -40011,7 +40017,7 @@ "hu": "olasz", "xloc": [ "default-mobile.handlebars->11->199", - "default.handlebars->47->1888", + "default.handlebars->47->1890", "login2.handlebars->7->96" ] }, @@ -40040,7 +40046,7 @@ "hu": "olasz (Svájc)", "xloc": [ "default-mobile.handlebars->11->200", - "default.handlebars->47->1889", + "default.handlebars->47->1891", "login2.handlebars->7->97" ] }, @@ -40092,7 +40098,7 @@ "zh-cht": "JSON", "hu": "JSON", "xloc": [ - "default.handlebars->47->2651" + "default.handlebars->47->2653" ] }, { @@ -40119,15 +40125,15 @@ "zh-cht": "JSON格式", "hu": "JSON Formátum", "xloc": [ - "default.handlebars->47->2656", - "default.handlebars->47->2733", + "default.handlebars->47->2658", + "default.handlebars->47->2735", "default.handlebars->47->781" ] }, { "en": "JSON file format is as follows:", "xloc": [ - "default.handlebars->47->2716" + "default.handlebars->47->2718" ] }, { @@ -40155,7 +40161,7 @@ "hu": "japán", "xloc": [ "default-mobile.handlebars->11->201", - "default.handlebars->47->1890", + "default.handlebars->47->1892", "login2.handlebars->7->98" ] }, @@ -40168,8 +40174,8 @@ "de": "Treten Sie dem Discordserver bei um Benachrichtigungen zu erhalten.", "es": "Unete a este canal de Discord para recibir notificaciones.", "xloc": [ - "default.handlebars->47->1752", - "default.handlebars->47->2975" + "default.handlebars->47->1754", + "default.handlebars->47->2977" ] }, { @@ -40196,7 +40202,7 @@ "zh-cht": "已加入桌面Multiplex會話", "hu": "Csatlakozva multiplex asztali munkamenethez", "xloc": [ - "default.handlebars->47->2473" + "default.handlebars->47->2475" ] }, { @@ -40223,7 +40229,7 @@ "zh-cht": "已加入桌面多路復用會話 \\\"{0}\\\"", "hu": "Csatlakozva multiplex asztali munkamenethez \\\"{0}\\\"", "xloc": [ - "default.handlebars->47->2612" + "default.handlebars->47->2614" ] }, { @@ -40278,7 +40284,7 @@ "hu": "kannada", "xloc": [ "default-mobile.handlebars->11->202", - "default.handlebars->47->1891", + "default.handlebars->47->1893", "login2.handlebars->7->99" ] }, @@ -40307,7 +40313,7 @@ "hu": "kasmíri", "xloc": [ "default-mobile.handlebars->11->203", - "default.handlebars->47->1892", + "default.handlebars->47->1894", "login2.handlebars->7->100" ] }, @@ -40336,7 +40342,7 @@ "hu": "kazah", "xloc": [ "default-mobile.handlebars->11->204", - "default.handlebars->47->1893", + "default.handlebars->47->1895", "login2.handlebars->7->101" ] }, @@ -40364,7 +40370,7 @@ "zh-cht": "保留現有密碼", "hu": "Meglévő jelszó megtartása", "xloc": [ - "default.handlebars->47->2225" + "default.handlebars->47->2227" ] }, { @@ -40418,7 +40424,7 @@ "zh-cht": "密鑰文件", "hu": "Kulcs fájl", "xloc": [ - "default-mobile.handlebars->11->668", + "default-mobile.handlebars->11->669", "default.handlebars->47->1483", "ssh.handlebars->3->15" ] @@ -40447,8 +40453,8 @@ "zh-cht": "鍵名", "hu": "Kulcs neve", "xloc": [ - "default.handlebars->47->1784", - "default.handlebars->47->1787" + "default.handlebars->47->1786", + "default.handlebars->47->1789" ] }, { @@ -40475,7 +40481,7 @@ "zh-cht": "密鑰密碼", "hu": "Kulcs jelszó", "xloc": [ - "default-mobile.handlebars->11->670", + "default-mobile.handlebars->11->671", "default.handlebars->47->1485", "ssh.handlebars->3->17" ] @@ -40504,7 +40510,7 @@ "zh-cht": "密鑰文件必須是 OpenSSH 格式。", "hu": "A kulcsfájlnak OpenSSH formátumúnak kell lennie.", "xloc": [ - "default-mobile.handlebars->11->669", + "default-mobile.handlebars->11->670", "default.handlebars->47->1484", "ssh.handlebars->3->16" ] @@ -40637,7 +40643,7 @@ "hu": "khmer", "xloc": [ "default-mobile.handlebars->11->205", - "default.handlebars->47->1894", + "default.handlebars->47->1896", "login2.handlebars->7->102" ] }, @@ -40665,7 +40671,7 @@ "zh-cht": "殺死進程{0}", "hu": "Folyamat leállítása {0}", "xloc": [ - "default.handlebars->47->2488" + "default.handlebars->47->2490" ] }, { @@ -40701,7 +40707,7 @@ "hu": "kirgiz", "xloc": [ "default-mobile.handlebars->11->206", - "default.handlebars->47->1895", + "default.handlebars->47->1897", "login2.handlebars->7->103" ] }, @@ -40730,7 +40736,7 @@ "hu": "klingon", "xloc": [ "default-mobile.handlebars->11->207", - "default.handlebars->47->1896", + "default.handlebars->47->1898", "login2.handlebars->7->104" ] }, @@ -40758,8 +40764,8 @@ "zh-cht": "已知的", "hu": "Ismert", "xloc": [ - "default-mobile.handlebars->11->801", - "default.handlebars->47->1639" + "default-mobile.handlebars->11->802", + "default.handlebars->47->1641" ] }, { @@ -40787,7 +40793,7 @@ "hu": "koreai", "xloc": [ "default-mobile.handlebars->11->208", - "default.handlebars->47->1897", + "default.handlebars->47->1899", "login2.handlebars->7->105" ] }, @@ -40816,7 +40822,7 @@ "hu": "koreai (Észak-Korea)", "xloc": [ "default-mobile.handlebars->11->209", - "default.handlebars->47->1898", + "default.handlebars->47->1900", "login2.handlebars->7->106" ] }, @@ -40845,7 +40851,7 @@ "hu": "koreai (Dél-Korea)", "xloc": [ "default-mobile.handlebars->11->210", - "default.handlebars->47->1899", + "default.handlebars->47->1901", "login2.handlebars->7->107" ] }, @@ -40904,7 +40910,7 @@ "hu": "Nyelv", "xloc": [ "default-mobile.handlebars->11->305", - "default.handlebars->47->1994" + "default.handlebars->47->1996" ] }, { @@ -41152,7 +41158,7 @@ "zh-cht": "過去30天", "hu": "Elmúlt 30 napon", "xloc": [ - "default.handlebars->47->3116", + "default.handlebars->47->3118", "default.handlebars->container->column_l->p40->3->1->p40time->9" ] }, @@ -41239,7 +41245,7 @@ "zh-cht": "過去 7 天", "hu": "Utolsó 7 nap", "xloc": [ - "default.handlebars->47->3115" + "default.handlebars->47->3117" ] }, { @@ -41293,7 +41299,7 @@ "zh-cht": "最後訪問", "hu": "Utolsó hozzáférés", "xloc": [ - "default.handlebars->47->2664" + "default.handlebars->47->2666" ] }, { @@ -41301,12 +41307,12 @@ "nl": "Tijd van laatste opstart", "pl": "Czas Ostatniego Uruchomienia", "xloc": [ - "default-mobile.handlebars->11->727", "default-mobile.handlebars->11->728", "default-mobile.handlebars->11->729", - "default.handlebars->47->1581", - "default.handlebars->47->1582", - "default.handlebars->47->1583" + "default-mobile.handlebars->11->730", + "default.handlebars->47->1583", + "default.handlebars->47->1584", + "default.handlebars->47->1585" ] }, { @@ -41333,7 +41339,7 @@ "zh-cht": "最後一天", "hu": "Utolsó napon", "xloc": [ - "default.handlebars->47->3114" + "default.handlebars->47->3116" ] }, { @@ -41360,7 +41366,7 @@ "zh-cht": "上次登入", "hu": "Utolsó bejelentkezés", "xloc": [ - "default.handlebars->47->2907" + "default.handlebars->47->2909" ] }, { @@ -41416,7 +41422,7 @@ "zh-cht": "上次訪問:{0}", "hu": "Utolsó hozzáférés: {0}", "xloc": [ - "default.handlebars->47->2674" + "default.handlebars->47->2676" ] }, { @@ -41443,15 +41449,15 @@ "zh-cht": "上次代理地址", "hu": "Utolsó Agent cím", "xloc": [ - "default-mobile.handlebars->11->761", "default-mobile.handlebars->11->762", "default-mobile.handlebars->11->763", + "default-mobile.handlebars->11->764", "default.handlebars->47->149", "default.handlebars->47->151", "default.handlebars->47->153", - "default.handlebars->47->1589", - "default.handlebars->47->1590", - "default.handlebars->47->1591" + "default.handlebars->47->1591", + "default.handlebars->47->1592", + "default.handlebars->47->1593" ] }, { @@ -41478,11 +41484,11 @@ "zh-cht": "上次代理連接", "hu": "Utolsó Agent kapcsolat", "xloc": [ - "default-mobile.handlebars->11->758", - "default-mobile.handlebars->11->760", + "default-mobile.handlebars->11->759", + "default-mobile.handlebars->11->761", "default.handlebars->47->148", - "default.handlebars->47->1586", - "default.handlebars->47->1588" + "default.handlebars->47->1588", + "default.handlebars->47->1590" ] }, { @@ -41509,7 +41515,7 @@ "zh-cht": "上次更改:{0}", "hu": "Utolsó módosítás: {0}", "xloc": [ - "default.handlebars->47->2911" + "default.handlebars->47->2913" ] }, { @@ -41522,7 +41528,7 @@ "de": "Aufzeichnungen über letzte Verbindungszeiten", "es": "Registros de hora de última conexión", "xloc": [ - "default.handlebars->47->3179" + "default.handlebars->47->3181" ] }, { @@ -41603,7 +41609,7 @@ "zh-cht": "上次登入:{0}", "hu": "Utolsó bejelentkezés: {0}", "xloc": [ - "default.handlebars->47->2675" + "default.handlebars->47->2677" ] }, { @@ -41764,7 +41770,7 @@ "hu": "latin", "xloc": [ "default-mobile.handlebars->11->211", - "default.handlebars->47->1900", + "default.handlebars->47->1902", "login2.handlebars->7->108" ] }, @@ -41793,7 +41799,7 @@ "hu": "lett", "xloc": [ "default-mobile.handlebars->11->212", - "default.handlebars->47->1901", + "default.handlebars->47->1903", "login2.handlebars->7->109" ] }, @@ -41953,7 +41959,7 @@ "zh-cht": "如沒有請留空。", "hu": "Ha nincs, hagyja üresen.", "xloc": [ - "default.handlebars->47->2960" + "default.handlebars->47->2962" ] }, { @@ -41980,7 +41986,7 @@ "zh-cht": "左", "hu": "Bal", "xloc": [ - "default-mobile.handlebars->11->636", + "default-mobile.handlebars->11->637", "default.handlebars->47->1401" ] }, @@ -42008,7 +42014,7 @@ "zh-cht": "{0} 秒後離開 Web-RDP 會話 \\\"{1}\\\"。", "hu": "Elhagyta a Web-RDP munkamenetet\\\"{1}\\\" {0} másodperc után.", "xloc": [ - "default.handlebars->47->2594" + "default.handlebars->47->2596" ] }, { @@ -42059,7 +42065,7 @@ "zh-cht": "{0} 秒後離開 Web-SFTP 會話 \\\"{1}\\\"。", "hu": "Elhagyta a Web-SFTP munkamenetet \\\"{1}\\\" {0} másodperc után.", "xloc": [ - "default.handlebars->47->2593" + "default.handlebars->47->2595" ] }, { @@ -42110,7 +42116,7 @@ "zh-cht": "{0} 秒後離開 Web-SSH 會話 \\\"{1}\\\"。", "hu": "Elhagyta a Web-SSH munkamenetet \\\"{1}\\\" {0} másodperc után.", "xloc": [ - "default.handlebars->47->2592" + "default.handlebars->47->2594" ] }, { @@ -42161,7 +42167,7 @@ "zh-cht": "{0} 秒後離開 Web-VNC 會話。", "hu": "Elhagyta a Web-VNC munkamenetet {0} másodperc után.", "xloc": [ - "default.handlebars->47->2595" + "default.handlebars->47->2597" ] }, { @@ -42220,7 +42226,7 @@ "zh-cht": "離開桌面多路復用會話", "hu": "Elhagyta az asztali multiplex munkamenetet.", "xloc": [ - "default.handlebars->47->2474" + "default.handlebars->47->2476" ] }, { @@ -42247,7 +42253,7 @@ "zh-cht": "{1} 秒後離開桌面多路復用會話 \\\"{0}\\\"。", "hu": "Elhagyta a multiplex desktop munkamenetet\\\"{1}\\\" {0} másodperc után.", "xloc": [ - "default.handlebars->47->2613" + "default.handlebars->47->2615" ] }, { @@ -42274,7 +42280,7 @@ "zh-cht": "{0} 秒後離開桌面多路復用會話。", "hu": "Elhagyta az asztali multiplex munkamenetet {0} másodperc után.", "xloc": [ - "default.handlebars->47->2591" + "default.handlebars->47->2593" ] }, { @@ -42301,7 +42307,7 @@ "zh-cht": "長度", "hu": "Hossz", "xloc": [ - "default.handlebars->47->3129" + "default.handlebars->47->3131" ] }, { @@ -42436,10 +42442,10 @@ "zh-cht": "有限輸入", "hu": "Korlátozott bevitel", "xloc": [ - "default-mobile.handlebars->11->961", + "default-mobile.handlebars->11->962", "default.handlebars->47->1115", "default.handlebars->47->1140", - "default.handlebars->47->2346" + "default.handlebars->47->2348" ] }, { @@ -42466,8 +42472,8 @@ "zh-cht": "僅有限輸入", "hu": "Csak korlátozott bevitel", "xloc": [ - "default-mobile.handlebars->11->934", - "default.handlebars->47->2299" + "default-mobile.handlebars->11->935", + "default.handlebars->47->2301" ] }, { @@ -42929,7 +42935,7 @@ "zh-cht": "Linux MeshAgent", "hu": "Linux MeshAgent", "xloc": [ - "default.handlebars->47->2371", + "default.handlebars->47->2373", "default.handlebars->47->576" ] }, @@ -43282,7 +43288,7 @@ "hu": "litván", "xloc": [ "default-mobile.handlebars->11->213", - "default.handlebars->47->1902", + "default.handlebars->47->1904", "login2.handlebars->7->110" ] }, @@ -43340,13 +43346,13 @@ "default-mobile.handlebars->11->310", "default-mobile.handlebars->11->90", "default.handlebars->47->1304", - "default.handlebars->47->1730", - "default.handlebars->47->1773", - "default.handlebars->47->2099", - "default.handlebars->47->2103", - "default.handlebars->47->2106", - "default.handlebars->47->3012", - "default.handlebars->47->3061" + "default.handlebars->47->1732", + "default.handlebars->47->1775", + "default.handlebars->47->2101", + "default.handlebars->47->2105", + "default.handlebars->47->2108", + "default.handlebars->47->3014", + "default.handlebars->47->3063" ] }, { @@ -43478,9 +43484,9 @@ "zh-cht": "本地設備,無代理", "hu": "Helyi eszközök, agent nélkül", "xloc": [ - "default-mobile.handlebars->11->893", - "default.handlebars->47->2050", - "default.handlebars->47->2113" + "default-mobile.handlebars->11->894", + "default.handlebars->47->2052", + "default.handlebars->47->2115" ] }, { @@ -43588,7 +43594,7 @@ "zh-cht": "本地用戶接受的遠程終端請求", "hu": "A helyi felhasználó elfogadta a távoli terminál kérését", "xloc": [ - "default.handlebars->47->2496" + "default.handlebars->47->2498" ] }, { @@ -43615,7 +43621,7 @@ "zh-cht": "本地用戶拒絕了遠程終端請求", "hu": "A helyi felhasználó elutasította a távoli terminál kérését", "xloc": [ - "default.handlebars->47->2497" + "default.handlebars->47->2499" ] }, { @@ -43644,7 +43650,7 @@ "xloc": [ "default-mobile.handlebars->11->308", "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountSecurity->3->5->0", - "default.handlebars->47->1997", + "default.handlebars->47->1999", "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->9" ] }, @@ -43726,7 +43732,7 @@ "zh-cht": "鎖定賬戶", "hu": "Fiók zárolása", "xloc": [ - "default.handlebars->47->2773" + "default.handlebars->47->2775" ] }, { @@ -43753,7 +43759,7 @@ "zh-cht": "鎖定帳戶設置", "hu": "Fiókbeállítások zárolása", "xloc": [ - "default.handlebars->47->2777" + "default.handlebars->47->2779" ] }, { @@ -43807,7 +43813,7 @@ "zh-cht": "鎖定賬戶", "hu": "Fiók zárolása", "xloc": [ - "default.handlebars->47->2696" + "default.handlebars->47->2698" ] }, { @@ -43943,7 +43949,7 @@ "zh-cht": "已鎖定", "hu": "Zárolva", "xloc": [ - "default.handlebars->47->2676" + "default.handlebars->47->2678" ] }, { @@ -43971,9 +43977,9 @@ "hu": "Fiók zárolva", "xloc": [ "default-mobile.handlebars->11->86", - "default.handlebars->47->2867", - "default.handlebars->47->3157", - "default.handlebars->47->3196", + "default.handlebars->47->2869", + "default.handlebars->47->3159", + "default.handlebars->47->3198", "default.handlebars->47->325" ] }, @@ -44001,7 +44007,7 @@ "zh-cht": "將遠程用戶鎖定在桌面之外", "hu": "Távoli felhasználó kizárása az asztalról.", "xloc": [ - "default.handlebars->47->2522" + "default.handlebars->47->2524" ] }, { @@ -44253,7 +44259,7 @@ "zh-cht": "登錄令牌", "hu": "Bejelentkezési token", "xloc": [ - "default.handlebars->47->3168" + "default.handlebars->47->3170" ] }, { @@ -44425,7 +44431,7 @@ "hu": "luxemburgi", "xloc": [ "default-mobile.handlebars->11->214", - "default.handlebars->47->1903", + "default.handlebars->47->1905", "login2.handlebars->7->111" ] }, @@ -44453,12 +44459,12 @@ "zh-cht": "MAC層", "hu": "MAC réteg", "xloc": [ - "default-mobile.handlebars->11->773", - "default-mobile.handlebars->11->775", - "default.handlebars->47->1601", + "default-mobile.handlebars->11->774", + "default-mobile.handlebars->11->776", "default.handlebars->47->1603", - "default.handlebars->47->1611", - "default.handlebars->47->1613" + "default.handlebars->47->1605", + "default.handlebars->47->1613", + "default.handlebars->47->1615" ] }, { @@ -44513,9 +44519,9 @@ "zh-cht": "MAC:{0}", "hu": "MAC: {0}", "xloc": [ - "default-mobile.handlebars->11->776", - "default.handlebars->47->1604", - "default.handlebars->47->1614" + "default-mobile.handlebars->11->777", + "default.handlebars->47->1606", + "default.handlebars->47->1616" ] }, { @@ -44542,9 +44548,9 @@ "zh-cht": "MAC:{0},網關:{1}", "hu": "MAC: {0}, Átjáró: {1}", "xloc": [ - "default-mobile.handlebars->11->774", - "default.handlebars->47->1602", - "default.handlebars->47->1612" + "default-mobile.handlebars->11->775", + "default.handlebars->47->1604", + "default.handlebars->47->1614" ] }, { @@ -44708,11 +44714,11 @@ "xloc": [ "default-mobile.handlebars->11->467", "default-mobile.handlebars->11->524", - "default-mobile.handlebars->11->876", - "default-mobile.handlebars->11->878", + "default-mobile.handlebars->11->877", + "default-mobile.handlebars->11->879", "default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect2", - "default.handlebars->47->1715", "default.handlebars->47->1717", + "default.handlebars->47->1719", "default.handlebars->47->413", "default.handlebars->47->714", "default.handlebars->47->978", @@ -45065,7 +45071,7 @@ "zh-cht": "MacOS MeshAgent", "hu": "MacOS MeshAgent", "xloc": [ - "default.handlebars->47->2372", + "default.handlebars->47->2374", "default.handlebars->47->577" ] }, @@ -45120,7 +45126,7 @@ "zh-cht": "主伺服器訊息", "hu": "Fő Kiszolgáló üzenetek", "xloc": [ - "default.handlebars->47->3312" + "default.handlebars->47->3314" ] }, { @@ -45148,7 +45154,7 @@ "hu": "maláj", "xloc": [ "default-mobile.handlebars->11->216", - "default.handlebars->47->1905", + "default.handlebars->47->1907", "login2.handlebars->7->113" ] }, @@ -45177,7 +45183,7 @@ "hu": "malajálam", "xloc": [ "default-mobile.handlebars->11->217", - "default.handlebars->47->1906", + "default.handlebars->47->1908", "login2.handlebars->7->114" ] }, @@ -45206,7 +45212,7 @@ "hu": "máltai", "xloc": [ "default-mobile.handlebars->11->218", - "default.handlebars->47->1907", + "default.handlebars->47->1909", "login2.handlebars->7->115" ] }, @@ -45235,7 +45241,7 @@ "hu": "A fiókhoz tartozó kép módosítása", "xloc": [ "default-mobile.handlebars->11->91", - "default.handlebars->47->1731" + "default.handlebars->47->1733" ] }, { @@ -45290,10 +45296,10 @@ "zh-cht": "管理裝置群電腦", "hu": "Eszközcsoport számítógépeinek kezelése", "xloc": [ - "default-mobile.handlebars->11->931", - "default-mobile.handlebars->11->951", - "default.handlebars->47->2296", - "default.handlebars->47->2335" + "default-mobile.handlebars->11->932", + "default-mobile.handlebars->11->952", + "default.handlebars->47->2298", + "default.handlebars->47->2337" ] }, { @@ -45320,10 +45326,10 @@ "zh-cht": "管理裝置群用戶", "hu": "Eszközcsoport felhasználók kezelése", "xloc": [ - "default-mobile.handlebars->11->930", - "default-mobile.handlebars->11->950", - "default.handlebars->47->2295", - "default.handlebars->47->2334" + "default-mobile.handlebars->11->931", + "default-mobile.handlebars->11->951", + "default.handlebars->47->2297", + "default.handlebars->47->2336" ] }, { @@ -45377,7 +45383,7 @@ "zh-cht": "管理錄音", "hu": "Felvételek kezelése", "xloc": [ - "default.handlebars->47->2771" + "default.handlebars->47->2773" ] }, { @@ -45431,7 +45437,7 @@ "zh-cht": "管理用戶群", "hu": "Felhaszálói csoportok kezelése", "xloc": [ - "default.handlebars->47->2770" + "default.handlebars->47->2772" ] }, { @@ -45459,7 +45465,7 @@ "hu": "Felhaszálók kezelése", "xloc": [ "default.handlebars->47->1134", - "default.handlebars->47->2769" + "default.handlebars->47->2771" ] }, { @@ -45667,7 +45673,7 @@ "zh-cht": "使用軟體代理進行管理", "hu": "Kezelés szoftver agent segítségével", "xloc": [ - "default.handlebars->47->2055" + "default.handlebars->47->2057" ] }, { @@ -45694,8 +45700,8 @@ "zh-cht": "使用軟體代理進行管理", "hu": "Szoftver agent segítségével kezelt", "xloc": [ - "default-mobile.handlebars->11->892", - "default.handlebars->47->2112" + "default-mobile.handlebars->11->893", + "default.handlebars->47->2114" ] }, { @@ -45722,7 +45728,7 @@ "zh-cht": "經理", "hu": "Menedzser", "xloc": [ - "default.handlebars->47->2681" + "default.handlebars->47->2683" ] }, { @@ -45786,8 +45792,8 @@ "nl": "ManufacturerId", "pl": "ID Producenta", "xloc": [ - "default-mobile.handlebars->11->818", - "default.handlebars->47->1656" + "default-mobile.handlebars->11->819", + "default.handlebars->47->1658" ] }, { @@ -45795,8 +45801,8 @@ "nl": "ManufacturerVersion", "pl": "Wersja Wydania", "xloc": [ - "default-mobile.handlebars->11->819", - "default.handlebars->47->1657" + "default-mobile.handlebars->11->820", + "default.handlebars->47->1659" ] }, { @@ -45824,7 +45830,7 @@ "hu": "maori", "xloc": [ "default-mobile.handlebars->11->219", - "default.handlebars->47->1908", + "default.handlebars->47->1910", "login2.handlebars->7->116" ] }, @@ -45929,7 +45935,7 @@ "hu": "marathi", "xloc": [ "default-mobile.handlebars->11->220", - "default.handlebars->47->1909", + "default.handlebars->47->1911", "login2.handlebars->7->117" ] }, @@ -45956,8 +45962,8 @@ "zh-cht": "掩碼:{0}", "hu": "Hálózati maszk: {0}", "xloc": [ - "default-mobile.handlebars->11->778", - "default.handlebars->47->1616" + "default-mobile.handlebars->11->779", + "default.handlebars->47->1618" ] }, { @@ -45984,7 +45990,7 @@ "zh-cht": "達到連接數量上限", "hu": "Elérte a munkamenetek maximális számát", "xloc": [ - "default.handlebars->47->3256" + "default.handlebars->47->3258" ] }, { @@ -46097,8 +46103,8 @@ "zh-cht": "Megabyte", "hu": "Megabájt", "xloc": [ - "default.handlebars->47->3297", - "default.handlebars->47->3302", + "default.handlebars->47->3299", + "default.handlebars->47->3304", "default.handlebars->container->column_l->p13->p13toolbar->1->4->1->1->p13sizedropdown->7" ] }, @@ -46126,14 +46132,14 @@ "zh-cht": "記憶體", "hu": "Memória", "xloc": [ - "default-mobile.handlebars->11->835", - "default-mobile.handlebars->11->841", - "default-mobile.handlebars->11->847", - "default.handlebars->47->1573", - "default.handlebars->47->1673", - "default.handlebars->47->1679", - "default.handlebars->47->1685", - "default.handlebars->47->3276", + "default-mobile.handlebars->11->836", + "default-mobile.handlebars->11->842", + "default-mobile.handlebars->11->848", + "default.handlebars->47->1575", + "default.handlebars->47->1675", + "default.handlebars->47->1681", + "default.handlebars->47->1687", + "default.handlebars->47->3278", "default.handlebars->container->column_l->p40->3->1->p40type->3" ] }, @@ -46164,10 +46170,10 @@ "agentinvite.handlebars->3->14", "default-mobile.handlebars->11->496", "default-mobile.handlebars->11->551", - "default-mobile.handlebars->11->757", - "default-mobile.handlebars->11->765", - "default.handlebars->47->1585", - "default.handlebars->47->1593", + "default-mobile.handlebars->11->758", + "default-mobile.handlebars->11->766", + "default.handlebars->47->1587", + "default.handlebars->47->1595", "default.handlebars->47->608", "default.handlebars->47->612", "default.handlebars->47->616", @@ -46205,8 +46211,8 @@ "zh-cht": "網格代理控制台", "hu": "Konzol", "xloc": [ - "default-mobile.handlebars->11->938", - "default.handlebars->47->2305" + "default-mobile.handlebars->11->939", + "default.handlebars->47->2307" ] }, { @@ -46394,7 +46400,7 @@ "zh-cht": "MeshAgent流量", "hu": "MeshAgent forgalom", "xloc": [ - "default.handlebars->47->3314" + "default.handlebars->47->3316" ] }, { @@ -46421,7 +46427,7 @@ "zh-cht": "MeshAgent更新", "hu": "MeshAgent frissítés", "xloc": [ - "default.handlebars->47->3315" + "default.handlebars->47->3317" ] }, { @@ -46501,7 +46507,7 @@ "zh-cht": "MeshCentral 助手", "hu": "MeshCentral Assistant", "xloc": [ - "default.handlebars->47->2373", + "default.handlebars->47->2375", "default.handlebars->47->551", "default.handlebars->47->578", "default.handlebars->47->591" @@ -46892,7 +46898,7 @@ "zh-cht": "MeshCentral伺服器同級化", "hu": "MeshCentral Server Peering", "xloc": [ - "default.handlebars->47->3313" + "default.handlebars->47->3315" ] }, { @@ -46948,7 +46954,7 @@ "xloc": [ "default.handlebars->47->195", "default.handlebars->47->197", - "default.handlebars->47->2098" + "default.handlebars->47->2100" ] }, { @@ -47372,8 +47378,8 @@ "xloc": [ "default.handlebars->47->1003", "default.handlebars->47->1285", - "default.handlebars->47->2943", - "default.handlebars->47->3135", + "default.handlebars->47->2945", + "default.handlebars->47->3137", "default.handlebars->47->563" ] }, @@ -47429,7 +47435,7 @@ "zh-cht": "電郵調度器", "hu": "Üzenet Küldő", "xloc": [ - "default.handlebars->47->3311" + "default.handlebars->47->3313" ] }, { @@ -47441,7 +47447,7 @@ "de": "Fehler bei Nachricht", "es": "Mensaje de error", "xloc": [ - "default.handlebars->47->3241" + "default.handlebars->47->3243" ] }, { @@ -47453,7 +47459,7 @@ "de": "Fehler bei Nachricht: {0}", "es": "Mensaje de error: {0}", "xloc": [ - "default.handlebars->47->3242" + "default.handlebars->47->3244" ] }, { @@ -47478,7 +47484,7 @@ "de": "Nachricht erfolgreich gesendet.", "es": "Mensaje enviado con éxito.", "xloc": [ - "default.handlebars->47->3240" + "default.handlebars->47->3242" ] }, { @@ -47544,8 +47550,8 @@ "de": "Benachrichtigung", "es": "Mensajería", "xloc": [ - "default.handlebars->47->2888", - "default.handlebars->47->2936", + "default.handlebars->47->2890", + "default.handlebars->47->2938", "login.handlebars->container->column_l->centralTable->1->0->logincell->resettokenpanel->1->5->1->2->1->3", "login.handlebars->container->column_l->centralTable->1->0->logincell->tokenpanel->1->7->1->4->1->3", "login2.handlebars->centralTable->1->0->logincell->tokenpanel->tokenpanelform->7->1->2farow->1->3" @@ -47560,7 +47566,7 @@ "de": "Benachrichtigung ({0})", "es": "Mensajería ({0})", "xloc": [ - "default.handlebars->47->2151", + "default.handlebars->47->2153", "default.handlebars->47->966" ] }, @@ -47573,11 +47579,11 @@ "es": "Notificaciones de Mensajería", "xloc": [ "default.handlebars->47->1105", - "default.handlebars->47->1740", - "default.handlebars->47->1760", - "default.handlebars->47->2394", + "default.handlebars->47->1742", + "default.handlebars->47->1762", + "default.handlebars->47->2396", "default.handlebars->47->255", - "default.handlebars->47->2983" + "default.handlebars->47->2985" ] }, { @@ -47589,7 +47595,7 @@ "de": "Benachrichtigungsaccount für diesen Benutzer.", "es": "Cuenta de Mensajería para este usuario.", "xloc": [ - "default.handlebars->47->2963" + "default.handlebars->47->2965" ] }, { @@ -47601,7 +47607,7 @@ "de": "Benachrichtigungen aktiviert", "es": "Mensajería habilitada", "xloc": [ - "default.handlebars->47->2889" + "default.handlebars->47->2891" ] }, { @@ -47628,8 +47634,8 @@ "zh-cht": "信使", "hu": "Messenger", "xloc": [ - "default.handlebars->47->3077", - "default.handlebars->47->3144" + "default.handlebars->47->3079", + "default.handlebars->47->3146" ] }, { @@ -47640,7 +47646,7 @@ "pl": "Wiadomości", "es": "Mensajería", "xloc": [ - "default.handlebars->47->3164" + "default.handlebars->47->3166" ] }, { @@ -47810,8 +47816,8 @@ "zh-cht": "移動設備", "hu": "Mobile Eszköz", "xloc": [ - "default-mobile.handlebars->11->771", - "default.handlebars->47->1599" + "default-mobile.handlebars->11->772", + "default.handlebars->47->1601" ] }, { @@ -47846,8 +47852,8 @@ "nl": "Mode", "pl": "Tryb", "xloc": [ - "default-mobile.handlebars->11->807", - "default.handlebars->47->1645" + "default-mobile.handlebars->11->808", + "default.handlebars->47->1647" ] }, { @@ -47874,11 +47880,11 @@ "zh-cht": "模型", "hu": "Model", "xloc": [ - "default-mobile.handlebars->11->766", - "default-mobile.handlebars->11->848", - "default.handlebars->47->1594", - "default.handlebars->47->1686", - "default.handlebars->47->2059" + "default-mobile.handlebars->11->767", + "default-mobile.handlebars->11->849", + "default.handlebars->47->1596", + "default.handlebars->47->1688", + "default.handlebars->47->2061" ] }, { @@ -47933,7 +47939,7 @@ "hu": "moldvai", "xloc": [ "default-mobile.handlebars->11->221", - "default.handlebars->47->1910", + "default.handlebars->47->1912", "login2.handlebars->7->118" ] }, @@ -47985,8 +47991,8 @@ "zh-cht": "母板", "hu": "Alaplap", "xloc": [ - "default-mobile.handlebars->11->816", - "default.handlebars->47->1654" + "default-mobile.handlebars->11->817", + "default.handlebars->47->1656" ] }, { @@ -48067,7 +48073,7 @@ "zh-cht": "移動:“{0}”到“{1}”", "hu": "Áthelyezés: \\\"{0}\\\" ide \\\"{1}\\\"", "xloc": [ - "default.handlebars->47->2521" + "default.handlebars->47->2523" ] }, { @@ -48094,7 +48100,7 @@ "zh-cht": "將設備{0}移動到組{1}", "hu": "{0} eszköz áthelyezve az {1} csoportba", "xloc": [ - "default.handlebars->47->2554" + "default.handlebars->47->2556" ] }, { @@ -48148,8 +48154,8 @@ "zh-cht": "多個問題", "hu": "Többszörös Problémák", "xloc": [ - "default.handlebars->47->2407", - "default.handlebars->47->2421" + "default.handlebars->47->2409", + "default.handlebars->47->2423" ] }, { @@ -48200,7 +48206,7 @@ "zh-cht": "多工器", "hu": "Multiplexor", "xloc": [ - "default.handlebars->47->3095" + "default.handlebars->47->3097" ] }, { @@ -48430,7 +48436,7 @@ "zh-cht": "我的伺服器控制台", "hu": "Kiszolgáló konzol", "xloc": [ - "default.handlebars->47->1710" + "default.handlebars->47->1712" ] }, { @@ -48648,8 +48654,8 @@ "zh-cht": "我的密鍵", "hu": "MyKey", "xloc": [ - "default.handlebars->47->1785", - "default.handlebars->47->1788" + "default.handlebars->47->1787", + "default.handlebars->47->1790" ] }, { @@ -48813,27 +48819,27 @@ "xloc": [ "default-mobile.handlebars->11->335", "default-mobile.handlebars->11->479", - "default-mobile.handlebars->11->720", - "default-mobile.handlebars->11->810", - "default-mobile.handlebars->11->897", - "default-mobile.handlebars->11->920", + "default-mobile.handlebars->11->721", + "default-mobile.handlebars->11->811", + "default-mobile.handlebars->11->898", + "default-mobile.handlebars->11->921", "default.handlebars->47->1417", "default.handlebars->47->1433", "default.handlebars->47->156", - "default.handlebars->47->1574", - "default.handlebars->47->1648", + "default.handlebars->47->1576", + "default.handlebars->47->1650", "default.handlebars->47->170", - "default.handlebars->47->2049", - "default.handlebars->47->2077", - "default.handlebars->47->2082", - "default.handlebars->47->2117", - "default.handlebars->47->2255", - "default.handlebars->47->2662", - "default.handlebars->47->2780", - "default.handlebars->47->2796", - "default.handlebars->47->2803", - "default.handlebars->47->2854", - "default.handlebars->47->2873", + "default.handlebars->47->2051", + "default.handlebars->47->2079", + "default.handlebars->47->2084", + "default.handlebars->47->2119", + "default.handlebars->47->2257", + "default.handlebars->47->2664", + "default.handlebars->47->2782", + "default.handlebars->47->2798", + "default.handlebars->47->2805", + "default.handlebars->47->2856", + "default.handlebars->47->2875", "default.handlebars->47->330", "default.handlebars->47->872", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader->3", @@ -48892,7 +48898,7 @@ "zh-cht": "名稱1,名稱2,名稱3", "hu": "Nev1.Nev2,Nev3", "xloc": [ - "default.handlebars->47->2761" + "default.handlebars->47->2763" ] }, { @@ -48920,7 +48926,7 @@ "hu": "navajo", "xloc": [ "default-mobile.handlebars->11->222", - "default.handlebars->47->1911", + "default.handlebars->47->1913", "login2.handlebars->7->119" ] }, @@ -48949,7 +48955,7 @@ "hu": "ndonga-oshindonga", "xloc": [ "default-mobile.handlebars->11->223", - "default.handlebars->47->1912", + "default.handlebars->47->1914", "login2.handlebars->7->120" ] }, @@ -48978,7 +48984,7 @@ "hu": "nepáli", "xloc": [ "default-mobile.handlebars->11->224", - "default.handlebars->47->1913", + "default.handlebars->47->1915", "login2.handlebars->7->121" ] }, @@ -49043,7 +49049,7 @@ "de": "Aufzeichnungen über Informationen zu Netzwerkschnittstellen", "es": "Registros de información de la interfaz de red.", "xloc": [ - "default.handlebars->47->3177" + "default.handlebars->47->3179" ] }, { @@ -49070,9 +49076,9 @@ "zh-cht": "網路", "hu": "Hálózat", "xloc": [ - "default-mobile.handlebars->11->786", - "default.handlebars->47->1609", - "default.handlebars->47->1624" + "default-mobile.handlebars->11->787", + "default.handlebars->47->1611", + "default.handlebars->47->1626" ] }, { @@ -49100,7 +49106,7 @@ "hu": "Új", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3createMeshLink1->1", - "default.handlebars->47->2076", + "default.handlebars->47->2078", "default.handlebars->container->column_l->p2->p2info->p2createMeshLink1->1" ] }, @@ -49128,7 +49134,7 @@ "zh-cht": "生成新的2FA備份代碼", "hu": "Új 2FA biztonsági kódok generálása", "xloc": [ - "default.handlebars->47->2561" + "default.handlebars->47->2563" ] }, { @@ -49155,8 +49161,8 @@ "zh-cht": "新賬戶", "hu": "Új fiók", "xloc": [ - "default-mobile.handlebars->11->979", - "default.handlebars->47->3203" + "default-mobile.handlebars->11->980", + "default.handlebars->47->3205" ] }, { @@ -49236,8 +49242,8 @@ "xloc": [ "default-mobile.handlebars->11->329", "default.handlebars->47->1295", - "default.handlebars->47->2042", - "default.handlebars->47->2065" + "default.handlebars->47->2044", + "default.handlebars->47->2067" ] }, { @@ -49265,9 +49271,9 @@ "hu": "Új mappa", "xloc": [ "default-mobile.handlebars->11->358", - "default-mobile.handlebars->11->691", - "default.handlebars->47->1531", - "default.handlebars->47->2451", + "default-mobile.handlebars->11->692", + "default.handlebars->47->1533", + "default.handlebars->47->2453", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", "sharing.handlebars->11->59", @@ -49407,8 +49413,8 @@ "zh-cht": "新密碼*", "hu": "Új jelszó*", "xloc": [ - "default.handlebars->47->2229", - "default.handlebars->47->2230" + "default.handlebars->47->2231", + "default.handlebars->47->2232" ] }, { @@ -49437,8 +49443,8 @@ "xloc": [ "default-mobile.handlebars->11->324", "default-mobile.handlebars->11->325", - "default.handlebars->47->2037", - "default.handlebars->47->2038" + "default.handlebars->47->2039", + "default.handlebars->47->2040" ] }, { @@ -49497,12 +49503,12 @@ "en": "No", "nl": "Nee", "xloc": [ - "default-mobile.handlebars->11->822", - "default-mobile.handlebars->11->825", - "default-mobile.handlebars->11->828", - "default.handlebars->47->1660", - "default.handlebars->47->1663", - "default.handlebars->47->1666" + "default-mobile.handlebars->11->823", + "default-mobile.handlebars->11->826", + "default-mobile.handlebars->11->829", + "default.handlebars->47->1662", + "default.handlebars->47->1665", + "default.handlebars->47->1668" ] }, { @@ -49609,7 +49615,7 @@ "zh-cht": "無代理控制台", "hu": "Nincs Agent konzol", "xloc": [ - "default.handlebars->47->2998" + "default.handlebars->47->3000" ] }, { @@ -49643,7 +49649,7 @@ "zh-cht": "沒有控制台", "hu": "Nincs Agent konzol", "xloc": [ - "default.handlebars->47->2897" + "default.handlebars->47->2899" ] }, { @@ -49702,8 +49708,8 @@ "xloc": [ "default.handlebars->47->1116", "default.handlebars->47->1141", - "default.handlebars->47->2342", - "default.handlebars->47->2893" + "default.handlebars->47->2344", + "default.handlebars->47->2895" ] }, { @@ -49730,8 +49736,8 @@ "zh-cht": "不能訪問桌面", "hu": "Nincs Asztal hozzáférés", "xloc": [ - "default.handlebars->47->2301", - "default.handlebars->47->2994" + "default.handlebars->47->2303", + "default.handlebars->47->2996" ] }, { @@ -49782,9 +49788,9 @@ "zh-cht": "找不到事件", "hu": "Nincsenek eseményeket", "xloc": [ - "default.handlebars->47->1570", - "default.handlebars->47->2638", - "default.handlebars->47->3060" + "default.handlebars->47->1572", + "default.handlebars->47->2640", + "default.handlebars->47->3062" ] }, { @@ -49811,9 +49817,9 @@ "zh-cht": "不能存取檔案", "hu": "Nincs Fájl hozzáférés", "xloc": [ - "default-mobile.handlebars->11->936", - "default.handlebars->47->2303", - "default.handlebars->47->2997" + "default-mobile.handlebars->11->937", + "default.handlebars->47->2305", + "default.handlebars->47->2999" ] }, { @@ -49840,11 +49846,11 @@ "zh-cht": "沒有檔案", "hu": "Nincs Fájlelérés", "xloc": [ - "default-mobile.handlebars->11->959", + "default-mobile.handlebars->11->960", "default.handlebars->47->1113", "default.handlebars->47->1138", - "default.handlebars->47->2344", - "default.handlebars->47->2896" + "default.handlebars->47->2346", + "default.handlebars->47->2898" ] }, { @@ -49899,10 +49905,10 @@ "zh-cht": "沒有Intel® AMT", "hu": "Nincs Intel® AMT", "xloc": [ - "default-mobile.handlebars->11->937", - "default-mobile.handlebars->11->960", - "default.handlebars->47->2304", - "default.handlebars->47->2345" + "default-mobile.handlebars->11->938", + "default-mobile.handlebars->11->961", + "default.handlebars->47->2306", + "default.handlebars->47->2347" ] }, { @@ -50034,7 +50040,7 @@ "zh-cht": "沒有成員", "hu": "Nincsenek tagok", "xloc": [ - "default.handlebars->47->2834" + "default.handlebars->47->2836" ] }, { @@ -50061,7 +50067,7 @@ "zh-cht": "沒有新的裝置群", "hu": "Új eszköz csoportok hozzáadásának tiltása", "xloc": [ - "default.handlebars->47->2774" + "default.handlebars->47->2776" ] }, { @@ -50088,7 +50094,7 @@ "zh-cht": "沒有新設備", "hu": "Új eszközök hozzáadásának tiltása", "xloc": [ - "default.handlebars->47->2775" + "default.handlebars->47->2777" ] }, { @@ -50115,8 +50121,8 @@ "zh-cht": "沒有政策", "hu": "Nincs házirend", "xloc": [ - "default.handlebars->47->2156", - "default.handlebars->47->2220" + "default.handlebars->47->2158", + "default.handlebars->47->2222" ] }, { @@ -50166,8 +50172,8 @@ "zh-cht": "沒有遙控器", "hu": "Nincs távoli parancs.", "xloc": [ - "default.handlebars->47->2899", - "default.handlebars->47->3000" + "default.handlebars->47->2901", + "default.handlebars->47->3002" ] }, { @@ -50194,8 +50200,8 @@ "zh-cht": "沒有遙控器", "hu": "Nincs távvezérlés", "xloc": [ - "default.handlebars->47->2892", - "default.handlebars->47->2993" + "default.handlebars->47->2894", + "default.handlebars->47->2995" ] }, { @@ -50222,8 +50228,8 @@ "zh-cht": "無重置/關閉", "hu": "Nincs Újraindítás / Kikapcsolás", "xloc": [ - "default.handlebars->47->2901", - "default.handlebars->47->3002" + "default.handlebars->47->2903", + "default.handlebars->47->3004" ] }, { @@ -50251,12 +50257,12 @@ "hu": "Nincsenek jogok", "xloc": [ "default-mobile.handlebars->11->344", - "default-mobile.handlebars->11->911", - "default-mobile.handlebars->11->967", + "default-mobile.handlebars->11->912", + "default-mobile.handlebars->11->968", "default.handlebars->47->1131", "default.handlebars->47->1156", - "default.handlebars->47->2074", - "default.handlebars->47->2355" + "default.handlebars->47->2076", + "default.handlebars->47->2357" ] }, { @@ -50307,7 +50313,7 @@ "zh-cht": "沒有TLS加密", "hu": "Nincs TLS security", "xloc": [ - "default-mobile.handlebars->11->598", + "default-mobile.handlebars->11->599", "default.handlebars->47->1281", "default.handlebars->47->507" ] @@ -50336,11 +50342,11 @@ "zh-cht": "沒有終端", "hu": "Nincs terminál", "xloc": [ - "default-mobile.handlebars->11->958", + "default-mobile.handlebars->11->959", "default.handlebars->47->1112", "default.handlebars->47->1137", - "default.handlebars->47->2343", - "default.handlebars->47->2895" + "default.handlebars->47->2345", + "default.handlebars->47->2897" ] }, { @@ -50367,9 +50373,9 @@ "zh-cht": "不能訪問終端", "hu": "Nincs Terminál hozzáférés", "xloc": [ - "default-mobile.handlebars->11->935", - "default.handlebars->47->2302", - "default.handlebars->47->2996" + "default-mobile.handlebars->11->936", + "default.handlebars->47->2304", + "default.handlebars->47->2998" ] }, { @@ -50396,7 +50402,7 @@ "zh-cht": "沒有工具(MeshCmd /路由器)", "hu": "MeshCmd/Router tiltása", "xloc": [ - "default.handlebars->47->2776" + "default.handlebars->47->2778" ] }, { @@ -50423,8 +50429,8 @@ "zh-cht": "無卸載", "hu": "Nincs Eltávolítás", "xloc": [ - "default.handlebars->47->2898", - "default.handlebars->47->2999" + "default.handlebars->47->2900", + "default.handlebars->47->3001" ] }, { @@ -50451,8 +50457,8 @@ "zh-cht": "沒有喚醒", "hu": "Nincs Ébresztés", "xloc": [ - "default.handlebars->47->2900", - "default.handlebars->47->3001" + "default.handlebars->47->2902", + "default.handlebars->47->3003" ] }, { @@ -50531,9 +50537,9 @@ "zh-cht": "沒有代理設備通過代理中繼", "hu": "No agent devices relayed thru agent", "xloc": [ - "default-mobile.handlebars->11->894", - "default.handlebars->47->2051", - "default.handlebars->47->2114" + "default-mobile.handlebars->11->895", + "default.handlebars->47->2053", + "default.handlebars->47->2116" ] }, { @@ -50560,8 +50566,8 @@ "zh-cht": "沒有自動更新", "hu": "Nincs automatikus frissítés", "xloc": [ - "default.handlebars->47->2405", - "default.handlebars->47->2419" + "default.handlebars->47->2407", + "default.handlebars->47->2421" ] }, { @@ -50588,8 +50594,8 @@ "zh-cht": "沒有共同的裝置群", "hu": "Nincsenek hozzárendelt eszközcsoportok", "xloc": [ - "default.handlebars->47->2840", - "default.handlebars->47->3028" + "default.handlebars->47->2842", + "default.handlebars->47->3030" ] }, { @@ -50751,8 +50757,8 @@ "zh-cht": "沒有共同的裝置", "hu": "Nincsenek hozzárendelt eszközök", "xloc": [ - "default.handlebars->47->2846", - "default.handlebars->47->3040" + "default.handlebars->47->2848", + "default.handlebars->47->3042" ] }, { @@ -50807,7 +50813,7 @@ "zh-cht": "該裝置群中沒有裝置。", "hu": "Ebben az eszközcsoportban nincsenek eszközök.", "xloc": [ - "default.handlebars->47->2423" + "default.handlebars->47->2425" ] }, { @@ -50945,7 +50951,7 @@ "zh-cht": "找不到群組。", "hu": "Nincsenek csoportok.", "xloc": [ - "default.handlebars->47->2779" + "default.handlebars->47->2781" ] }, { @@ -50972,8 +50978,8 @@ "zh-cht": "沒有此裝置的訊息。", "hu": "Nincs információ erről az eszközről.", "xloc": [ - "default-mobile.handlebars->11->866", - "default.handlebars->47->1704" + "default-mobile.handlebars->11->867", + "default.handlebars->47->1706" ] }, { @@ -51027,7 +51033,7 @@ "zh-cht": "未定義鍵盤快捷鍵", "hu": "Nincsenek billentyű parancsok definiálva", "xloc": [ - "default-mobile.handlebars->11->650", + "default-mobile.handlebars->11->651", "default.handlebars->47->1416" ] }, @@ -51164,7 +51170,7 @@ "zh-cht": "不再是“{0}”的中繼。", "hu": "Már nem relay a \\\"{0}\\\" számára.", "xloc": [ - "default.handlebars->47->2621" + "default.handlebars->47->2623" ] }, { @@ -51245,8 +51251,8 @@ "zh-cht": "沒有此用戶的電話號碼", "hu": "Ennek a felhasználónak nincs telefonszáma", "xloc": [ - "default-mobile.handlebars->11->1010", - "default.handlebars->47->3234" + "default-mobile.handlebars->11->1011", + "default.handlebars->47->3236" ] }, { @@ -51300,7 +51306,7 @@ "zh-cht": "沒有錄音。", "hu": "Nincsenek felvételek.", "xloc": [ - "default.handlebars->47->3065" + "default.handlebars->47->3067" ] }, { @@ -51327,8 +51333,8 @@ "zh-cht": "沒有可用的中繼設備。", "hu": "Nem állnak rendelkezésre relay eszközök.", "xloc": [ - "default-mobile.handlebars->11->917", - "default.handlebars->47->2252" + "default-mobile.handlebars->11->918", + "default.handlebars->47->2254" ] }, { @@ -51379,7 +51385,7 @@ "zh-cht": "沒有伺服器權限", "hu": "Nincsenek kiszolgáló jogosultságok", "xloc": [ - "default.handlebars->47->2868" + "default.handlebars->47->2870" ] }, { @@ -51430,7 +51436,7 @@ "zh-cht": "沒有用戶群成員身份", "hu": "Nincs felhasználói csoport tagság", "xloc": [ - "default.handlebars->47->3034" + "default.handlebars->47->3036" ] }, { @@ -51457,8 +51463,8 @@ "zh-cht": "沒有用戶管理權限", "hu": "Nincs felhasználói kezelői jog", "xloc": [ - "default-mobile.handlebars->11->1008", - "default.handlebars->47->3232" + "default-mobile.handlebars->11->1009", + "default.handlebars->47->3234" ] }, { @@ -51485,7 +51491,7 @@ "zh-cht": "未找到相應的用戶。", "hu": "Nem találhatóak felhasználók.", "xloc": [ - "default.handlebars->47->2670" + "default.handlebars->47->2672" ] }, { @@ -51628,35 +51634,35 @@ "default-mobile.handlebars->11->482", "default-mobile.handlebars->11->484", "default-mobile.handlebars->11->526", - "default-mobile.handlebars->11->640", - "default-mobile.handlebars->11->688", - "default-mobile.handlebars->11->899", + "default-mobile.handlebars->11->641", + "default-mobile.handlebars->11->689", + "default-mobile.handlebars->11->900", "default.handlebars->47->1405", - "default.handlebars->47->2108", - "default.handlebars->47->2119", - "default.handlebars->47->2133", - "default.handlebars->47->2145", - "default.handlebars->47->2152", + "default.handlebars->47->2110", + "default.handlebars->47->2121", + "default.handlebars->47->2135", + "default.handlebars->47->2147", "default.handlebars->47->2154", - "default.handlebars->47->2208", - "default.handlebars->47->2408", - "default.handlebars->47->2433", - "default.handlebars->47->2438", - "default.handlebars->47->2646", + "default.handlebars->47->2156", + "default.handlebars->47->2210", + "default.handlebars->47->2410", + "default.handlebars->47->2435", + "default.handlebars->47->2440", + "default.handlebars->47->2648", "default.handlebars->47->272", - "default.handlebars->47->2800", "default.handlebars->47->2802", - "default.handlebars->47->2811", - "default.handlebars->47->2823", - "default.handlebars->47->2887", - "default.handlebars->47->2890", - "default.handlebars->47->2902", - "default.handlebars->47->2912", - "default.handlebars->47->2916", - "default.handlebars->47->2928", - "default.handlebars->47->2964", + "default.handlebars->47->2804", + "default.handlebars->47->2813", + "default.handlebars->47->2825", + "default.handlebars->47->2889", + "default.handlebars->47->2892", + "default.handlebars->47->2904", + "default.handlebars->47->2914", + "default.handlebars->47->2918", + "default.handlebars->47->2930", + "default.handlebars->47->2966", "default.handlebars->47->300", - "default.handlebars->47->3159", + "default.handlebars->47->3161", "default.handlebars->47->396", "default.handlebars->47->397", "default.handlebars->47->85", @@ -51745,7 +51751,7 @@ "hu": "norvég", "xloc": [ "default-mobile.handlebars->11->225", - "default.handlebars->47->1914", + "default.handlebars->47->1916", "login2.handlebars->7->122" ] }, @@ -51774,7 +51780,7 @@ "hu": "norvég (Bokmal)", "xloc": [ "default-mobile.handlebars->11->226", - "default.handlebars->47->1915", + "default.handlebars->47->1917", "login2.handlebars->7->123" ] }, @@ -51803,7 +51809,7 @@ "hu": "norvég (Nynorsk)", "xloc": [ "default-mobile.handlebars->11->227", - "default.handlebars->47->1916", + "default.handlebars->47->1918", "login2.handlebars->7->124" ] }, @@ -51831,7 +51837,7 @@ "zh-cht": "未激活", "hu": "Nincs aktiválva", "xloc": [ - "default.handlebars->47->1627" + "default.handlebars->47->1629" ] }, { @@ -51859,7 +51865,7 @@ "hu": "Not Activated (In)", "xloc": [ "default-mobile.handlebars->11->498", - "default-mobile.handlebars->11->790", + "default-mobile.handlebars->11->791", "default.handlebars->47->895" ] }, @@ -51888,7 +51894,7 @@ "hu": "Not Activated (Pre)", "xloc": [ "default-mobile.handlebars->11->497", - "default-mobile.handlebars->11->789", + "default-mobile.handlebars->11->790", "default.handlebars->47->894" ] }, @@ -51916,8 +51922,8 @@ "zh-cht": "未連接", "hu": "Nincs csatlakoztatva", "xloc": [ - "default.handlebars->47->2399", - "default.handlebars->47->2412" + "default.handlebars->47->2401", + "default.handlebars->47->2414" ] }, { @@ -51944,8 +51950,8 @@ "zh-cht": "未知", "hu": "Nem ismert", "xloc": [ - "default-mobile.handlebars->11->800", - "default.handlebars->47->1638" + "default-mobile.handlebars->11->801", + "default.handlebars->47->1640" ] }, { @@ -51999,7 +52005,7 @@ "zh-cht": "不在伺服器上", "hu": "Nincs a kiszolgálón", "xloc": [ - "default.handlebars->47->3087" + "default.handlebars->47->3089" ] }, { @@ -52026,8 +52032,8 @@ "zh-cht": "沒有設置", "hu": "Nincs beállítva", "xloc": [ - "default.handlebars->47->2874", - "default.handlebars->47->2875" + "default.handlebars->47->2876", + "default.handlebars->47->2877" ] }, { @@ -52054,7 +52060,7 @@ "zh-cht": "未經審核的", "hu": "Nincs megerősítve", "xloc": [ - "default.handlebars->47->3008" + "default.handlebars->47->3010" ] }, { @@ -52083,12 +52089,12 @@ "xloc": [ "default-mobile.handlebars->11->539", "default-mobile.handlebars->11->590", - "default-mobile.handlebars->11->905", + "default-mobile.handlebars->11->906", "default.handlebars->47->1122", "default.handlebars->47->1147", "default.handlebars->47->1160", - "default.handlebars->47->2164", - "default.handlebars->47->2939", + "default.handlebars->47->2166", + "default.handlebars->47->2941", "default.handlebars->47->997", "default.handlebars->container->column_l->p10->p10info->1->1->0->notesPanel->1->1->1->0" ] @@ -52145,8 +52151,8 @@ "hu": "Értesítési beállítások", "xloc": [ "default.handlebars->47->1109", - "default.handlebars->47->2024", - "default.handlebars->47->2398", + "default.handlebars->47->2026", + "default.handlebars->47->2400", "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->12" ] }, @@ -52222,7 +52228,7 @@ "zh-cht": "通知音效", "hu": "Értesítési hangjelzés", "xloc": [ - "default.handlebars->47->2019" + "default.handlebars->47->2021" ] }, { @@ -52249,7 +52255,7 @@ "zh-cht": "通知", "hu": "Értesítések", "xloc": [ - "default.handlebars->47->2153", + "default.handlebars->47->2155", "default.handlebars->47->968" ] }, @@ -52277,7 +52283,7 @@ "zh-cht": "通知", "hu": "Értesítés küldése", "xloc": [ - "default.handlebars->47->2947", + "default.handlebars->47->2949", "default.handlebars->47->297" ] }, @@ -52332,9 +52338,9 @@ "zh-cht": "通知使用者", "hu": "Felhasználó értesítése", "xloc": [ - "default.handlebars->47->2263", - "default.handlebars->47->2267", - "default.handlebars->47->2270" + "default.handlebars->47->2265", + "default.handlebars->47->2269", + "default.handlebars->47->2272" ] }, { @@ -52361,7 +52367,7 @@ "zh-cht": "通知{0}", "hu": "Értesítés küldése {0}", "xloc": [ - "default.handlebars->47->2712" + "default.handlebars->47->2714" ] }, { @@ -52388,7 +52394,7 @@ "zh-cht": "無效的", "hu": "Null", "xloc": [ - "default.handlebars->47->3305" + "default.handlebars->47->3307" ] }, { @@ -52440,15 +52446,15 @@ "hu": "OK", "xloc": [ "default-mobile.handlebars->11->321", - "default-mobile.handlebars->11->731", - "default-mobile.handlebars->11->735", - "default-mobile.handlebars->11->739", - "default-mobile.handlebars->11->754", + "default-mobile.handlebars->11->732", + "default-mobile.handlebars->11->736", + "default-mobile.handlebars->11->740", + "default-mobile.handlebars->11->755", "default-mobile.handlebars->container->page_content->column_l->p10->p10dialog->5", "default-mobile.handlebars->dialog->idx_dlgButtonBar", - "default.handlebars->47->2096", - "default.handlebars->47->2403", - "default.handlebars->47->2417", + "default.handlebars->47->2098", + "default.handlebars->47->2405", + "default.handlebars->47->2419", "default.handlebars->47->923", "default.handlebars->47->927", "default.handlebars->47->931", @@ -52572,7 +52578,7 @@ "hu": "okcitán", "xloc": [ "default-mobile.handlebars->11->228", - "default.handlebars->47->1917", + "default.handlebars->47->1919", "login2.handlebars->7->125" ] }, @@ -52600,8 +52606,8 @@ "zh-cht": "發生在{0}", "hu": "Történt {0}", "xloc": [ - "default-mobile.handlebars->11->976", - "default.handlebars->47->3200" + "default-mobile.handlebars->11->977", + "default.handlebars->47->3202" ] }, { @@ -52630,8 +52636,8 @@ "xloc": [ "default-mobile.handlebars->11->444", "default-mobile.handlebars->11->452", - "default-mobile.handlebars->11->746", - "default-mobile.handlebars->11->750", + "default-mobile.handlebars->11->747", + "default-mobile.handlebars->11->751", "default.handlebars->47->692", "default.handlebars->47->938", "default.handlebars->47->942" @@ -52688,7 +52694,7 @@ "zh-cht": "離線用戶", "hu": "Offline felhasználók", "xloc": [ - "default.handlebars->47->2667" + "default.handlebars->47->2669" ] }, { @@ -52743,7 +52749,7 @@ "hu": "Jelenlegi jelszó:", "xloc": [ "default-mobile.handlebars->11->323", - "default.handlebars->47->2036" + "default.handlebars->47->2038" ] }, { @@ -52751,8 +52757,8 @@ "nl": "Aan", "pl": "Włącz", "xloc": [ - "default-mobile.handlebars->11->744", - "default-mobile.handlebars->11->748", + "default-mobile.handlebars->11->745", + "default-mobile.handlebars->11->749", "default.handlebars->47->936", "default.handlebars->47->940" ] @@ -52781,7 +52787,7 @@ "zh-cht": "一天", "hu": "Egy Nap", "xloc": [ - "default.handlebars->47->2643" + "default.handlebars->47->2645" ] }, { @@ -52836,7 +52842,7 @@ "zh-cht": "一次性密碼", "hu": "OTP Egyszer használatos jelszó", "xloc": [ - "default.handlebars->47->3166" + "default.handlebars->47->3168" ] }, { @@ -52892,7 +52898,7 @@ "zh-cht": "在線用戶", "hu": "Online felhasználók", "xloc": [ - "default.handlebars->47->2666" + "default.handlebars->47->2668" ] }, { @@ -52919,7 +52925,7 @@ "zh-cht": "僅顯示前 100 個用戶", "hu": "Csak az első 100 felhasználót jelenítse meg", "xloc": [ - "default.handlebars->47->2713" + "default.handlebars->47->2715" ] }, { @@ -52946,9 +52952,9 @@ "zh-cht": "只能編輯小於200k的檔案。", "hu": "Csak 200k-nál kisebb fájlok szerkeszthetők.", "xloc": [ - "default-mobile.handlebars->11->699", - "default.handlebars->47->1539", - "default.handlebars->47->2460", + "default-mobile.handlebars->11->700", + "default.handlebars->47->1541", + "default.handlebars->47->2462", "default.handlebars->47->840", "sharing.handlebars->11->67" ] @@ -52980,6 +52986,12 @@ "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar->19" ] }, + { + "en": "Open", + "xloc": [ + "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3" + ] + }, { "bs": "Otvori datoteku...", "cs": "Otevřít soubor…", @@ -53008,6 +53020,12 @@ "player.handlebars->p11->deskarea0->deskarea1->3" ] }, + { + "en": "Open File/Folder", + "xloc": [ + "default.handlebars->47->1521" + ] + }, { "bs": "Otvorite stranicu na uređaju", "cs": "Otevřít stránku na zařízení", @@ -53032,6 +53050,7 @@ "zh-cht": "在裝置上打開頁面", "hu": "Oldal megnyitása az eszközön", "xloc": [ + "default-mobile.handlebars->11->593", "default.handlebars->47->1161" ] }, @@ -53321,7 +53340,7 @@ "zh-cht": "開場:{0}", "hu": "Nyitás: {0}", "xloc": [ - "default.handlebars->47->2489" + "default.handlebars->47->2491" ] }, { @@ -53348,10 +53367,10 @@ "zh-cht": "操作系統", "hu": "Operációs rendszer ", "xloc": [ - "default-mobile.handlebars->11->756", + "default-mobile.handlebars->11->757", "default.handlebars->47->1322", - "default.handlebars->47->1584", - "default.handlebars->47->3132", + "default.handlebars->47->1586", + "default.handlebars->47->3134", "default.handlebars->47->340", "default.handlebars->47->545", "default.handlebars->47->595", @@ -53384,8 +53403,8 @@ "xloc": [ "default-mobile.handlebars->11->580", "default.handlebars->47->1252", - "default.handlebars->47->2695", - "default.handlebars->47->2787", + "default.handlebars->47->2697", + "default.handlebars->47->2789", "default.handlebars->47->735", "default.handlebars->47->747" ] @@ -53466,7 +53485,7 @@ "hu": " orija", "xloc": [ "default-mobile.handlebars->11->229", - "default.handlebars->47->1918", + "default.handlebars->47->1920", "login2.handlebars->7->126" ] }, @@ -53495,7 +53514,7 @@ "hu": "oromó", "xloc": [ "default-mobile.handlebars->11->230", - "default.handlebars->47->1919", + "default.handlebars->47->1921", "login2.handlebars->7->127" ] }, @@ -53577,7 +53596,7 @@ "zh-cht": "過時的", "hu": "Lejárt", "xloc": [ - "default-mobile.handlebars->11->753", + "default-mobile.handlebars->11->754", "default.handlebars->47->945" ] }, @@ -53810,8 +53829,8 @@ "zh-cht": "推", "hu": "PUSH", "xloc": [ - "default-mobile.handlebars->11->877", - "default.handlebars->47->1716" + "default-mobile.handlebars->11->878", + "default.handlebars->47->1718" ] }, { @@ -53838,7 +53857,7 @@ "zh-cht": "向下翻頁", "hu": "Page Down", "xloc": [ - "default-mobile.handlebars->11->635", + "default-mobile.handlebars->11->636", "default.handlebars->47->1400" ] }, @@ -53866,7 +53885,7 @@ "zh-cht": "向上翻頁", "hu": "Page Up", "xloc": [ - "default-mobile.handlebars->11->634", + "default-mobile.handlebars->11->635", "default.handlebars->47->1399" ] }, @@ -53921,12 +53940,12 @@ "zh-cht": "零件號", "hu": "Cikkszám", "xloc": [ - "default-mobile.handlebars->11->834", - "default-mobile.handlebars->11->840", - "default-mobile.handlebars->11->846", - "default.handlebars->47->1672", - "default.handlebars->47->1678", - "default.handlebars->47->1684" + "default-mobile.handlebars->11->835", + "default-mobile.handlebars->11->841", + "default-mobile.handlebars->11->847", + "default.handlebars->47->1674", + "default.handlebars->47->1680", + "default.handlebars->47->1686" ] }, { @@ -53953,7 +53972,7 @@ "zh-cht": "部分的", "hu": "Egyedi", "xloc": [ - "default.handlebars->47->2682" + "default.handlebars->47->2684" ] }, { @@ -54029,8 +54048,8 @@ "hu": "Részleges jogok", "xloc": [ "default-mobile.handlebars->11->342", - "default-mobile.handlebars->11->909", - "default.handlebars->47->2072" + "default-mobile.handlebars->11->910", + "default.handlebars->47->2074" ] }, { @@ -54057,7 +54076,7 @@ "zh-cht": "部分權限", "hu": "Részleges jogok", "xloc": [ - "default.handlebars->47->2871" + "default.handlebars->47->2873" ] }, { @@ -54111,21 +54130,21 @@ "zh-cht": "密碼", "hu": "Jelszó", "xloc": [ - "default-mobile.handlebars->11->596", - "default-mobile.handlebars->11->666", - "default-mobile.handlebars->11->673", + "default-mobile.handlebars->11->597", + "default-mobile.handlebars->11->667", + "default-mobile.handlebars->11->674", "default.handlebars->47->1279", "default.handlebars->47->1371", "default.handlebars->47->1481", "default.handlebars->47->1488", - "default.handlebars->47->2064", - "default.handlebars->47->2226", - "default.handlebars->47->2749", - "default.handlebars->47->2750", - "default.handlebars->47->2908", + "default.handlebars->47->2066", + "default.handlebars->47->2228", + "default.handlebars->47->2751", + "default.handlebars->47->2752", "default.handlebars->47->2910", - "default.handlebars->47->3013", - "default.handlebars->47->3014", + "default.handlebars->47->2912", + "default.handlebars->47->3015", + "default.handlebars->47->3016", "default.handlebars->47->334", "default.handlebars->47->505", "login2.handlebars->centralTable->1->0->logincell->loginpanel->loginpanelform->loginuserpassdiv->1->1->2->1", @@ -54284,8 +54303,8 @@ "zh-cht": "密碼已更改。", "hu": "A jelszó megváltozott.", "xloc": [ - "default-mobile.handlebars->11->1004", - "default.handlebars->47->3228" + "default-mobile.handlebars->11->1005", + "default.handlebars->47->3230" ] }, { @@ -54340,7 +54359,7 @@ "zh-cht": "密碼提示", "hu": "Jelszó tipp", "xloc": [ - "default.handlebars->47->3015" + "default.handlebars->47->3017" ] }, { @@ -54368,7 +54387,7 @@ "hu": "Jelszó tipp:", "xloc": [ "default-mobile.handlebars->11->326", - "default.handlebars->47->2039" + "default.handlebars->47->2041" ] }, { @@ -54475,8 +54494,8 @@ "account-invite.html->2->5", "default-mobile.handlebars->11->318", "default-mobile.handlebars->11->319", - "default.handlebars->47->2031", - "default.handlebars->47->2032", + "default.handlebars->47->2033", + "default.handlebars->47->2034", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->4->1", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->6->1", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->loginpanel->1->7->1->2->1", @@ -54518,12 +54537,12 @@ "hu": "Beillesztés", "xloc": [ "default-mobile.handlebars->11->366", - "default-mobile.handlebars->11->704", + "default-mobile.handlebars->11->705", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->3", "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->3", "default.handlebars->47->1502", - "default.handlebars->47->1546", - "default.handlebars->47->2462", + "default.handlebars->47->1548", + "default.handlebars->47->2464", "default.handlebars->container->column_l->p12->termTable->1->1->4->1->3", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", @@ -54717,8 +54736,8 @@ "zh-cht": "執行代理指令", "hu": "Agent művelet végrehajtása", "xloc": [ - "default-mobile.handlebars->11->880", - "default.handlebars->47->1719" + "default-mobile.handlebars->11->881", + "default.handlebars->47->1721" ] }, { @@ -54793,7 +54812,7 @@ "zh-cht": "執行英特爾®AMT激活和配置。", "hu": "Végezze el az Intel® AMT aktiválását és konfigurálását.", "xloc": [ - "default.handlebars->47->2170", + "default.handlebars->47->2172", "default.handlebars->47->482" ] }, @@ -55170,7 +55189,7 @@ "zh-cht": "執行電源操作= {0},強制執行= {1}", "hu": "Végrehajtott tápellárás művelet={0}, kényszerített={1}", "xloc": [ - "default.handlebars->47->2494" + "default.handlebars->47->2496" ] }, { @@ -55197,8 +55216,8 @@ "zh-cht": "沒有權限", "hu": "Hozzáférés megtagadva", "xloc": [ - "default-mobile.handlebars->11->985", - "default.handlebars->47->3209" + "default-mobile.handlebars->11->986", + "default.handlebars->47->3211" ] }, { @@ -55225,9 +55244,9 @@ "zh-cht": "權限", "hu": "Jogosultságok", "xloc": [ - "default-mobile.handlebars->11->970", - "default.handlebars->47->2358", - "default.handlebars->47->2665" + "default-mobile.handlebars->11->971", + "default.handlebars->47->2360", + "default.handlebars->47->2667" ] }, { @@ -55255,7 +55274,7 @@ "hu": "perzsa/irán", "xloc": [ "default-mobile.handlebars->11->231", - "default.handlebars->47->1920", + "default.handlebars->47->1922", "login2.handlebars->7->128" ] }, @@ -55340,10 +55359,10 @@ "default-mobile.handlebars->11->100", "default-mobile.handlebars->11->83", "default-mobile.handlebars->11->98", - "default.handlebars->47->1734", - "default.handlebars->47->1737", + "default.handlebars->47->1736", + "default.handlebars->47->1739", "default.handlebars->47->252", - "default.handlebars->47->2962" + "default.handlebars->47->2964" ] }, { @@ -55370,7 +55389,7 @@ "zh-cht": "電話號碼", "hu": "Telefonszám", "xloc": [ - "default.handlebars->47->2886" + "default.handlebars->47->2888" ] }, { @@ -55398,8 +55417,8 @@ "hu": "Telefonszám:", "xloc": [ "default-mobile.handlebars->11->99", - "default.handlebars->47->1736", - "default.handlebars->47->2961" + "default.handlebars->47->1738", + "default.handlebars->47->2963" ] }, { @@ -55614,7 +55633,7 @@ "hu": "Kérjük, várjon néhány percet, amíg megkapja az igazolást.", "xloc": [ "default-mobile.handlebars->11->314", - "default.handlebars->47->2026" + "default.handlebars->47->2028" ] }, { @@ -55642,7 +55661,7 @@ "hu": "Plugin Művelet", "xloc": [ "default.handlebars->47->315", - "default.handlebars->47->3343" + "default.handlebars->47->3345" ] }, { @@ -55835,7 +55854,7 @@ "hu": "Házirend", "xloc": [ "default-mobile.handlebars->11->341", - "default.handlebars->47->2071" + "default.handlebars->47->2073" ] }, { @@ -55863,7 +55882,7 @@ "hu": "lengyel", "xloc": [ "default-mobile.handlebars->11->232", - "default.handlebars->47->1921", + "default.handlebars->47->1923", "login2.handlebars->7->129" ] }, @@ -55953,7 +55972,7 @@ "zh-cht": "端口名稱同步", "hu": "Port Név Szinkronizásás", "xloc": [ - "default.handlebars->47->2129" + "default.handlebars->47->2131" ] }, { @@ -56085,7 +56104,7 @@ "hu": "portugál", "xloc": [ "default-mobile.handlebars->11->233", - "default.handlebars->47->1922", + "default.handlebars->47->1924", "login2.handlebars->7->130" ] }, @@ -56114,7 +56133,7 @@ "hu": "portugál (Brazília)", "xloc": [ "default-mobile.handlebars->11->234", - "default.handlebars->47->1923", + "default.handlebars->47->1925", "login2.handlebars->7->131" ] }, @@ -56227,7 +56246,7 @@ "zh-cht": "電源狀態", "hu": "Energiaellátás állapot", "xloc": [ - "default-mobile.handlebars->11->594" + "default-mobile.handlebars->11->595" ] }, { @@ -56254,7 +56273,7 @@ "zh-cht": "電源狀態", "hu": "Energiaellátás Statisztika", "xloc": [ - "default.handlebars->47->2410", + "default.handlebars->47->2412", "default.handlebars->container->column_l->p21->p21main->1->1->meshPowerChartDiv->1" ] }, @@ -56404,7 +56423,7 @@ "zh-cht": "預激活", "hu": "Pre-activation", "xloc": [ - "default.handlebars->47->1628" + "default.handlebars->47->1630" ] }, { @@ -56461,7 +56480,7 @@ "zh-cht": "存在於伺服器上", "hu": "Kiszolgálón tárolva", "xloc": [ - "default.handlebars->47->3086" + "default.handlebars->47->3088" ] }, { @@ -56601,9 +56620,9 @@ "xloc": [ "default-mobile.handlebars->11->88", "default-mobile.handlebars->11->89", - "default.handlebars->47->1729", - "default.handlebars->47->2956", - "default.handlebars->47->3011", + "default.handlebars->47->1731", + "default.handlebars->47->2958", + "default.handlebars->47->3013", "default.handlebars->47->327" ] }, @@ -56631,7 +56650,7 @@ "zh-cht": "打印屏幕", "hu": "Print Screen", "xloc": [ - "default-mobile.handlebars->11->628", + "default-mobile.handlebars->11->629", "default.handlebars->47->1394" ] }, @@ -56926,7 +56945,7 @@ "zh-cht": "處理控制台命令:“{0}”", "hu": "Konzolparancs feldolgozása: \\\"{0}\\\"", "xloc": [ - "default.handlebars->47->2486" + "default.handlebars->47->2488" ] }, { @@ -57007,9 +57026,9 @@ "zh-cht": "用戶同意提示", "hu": "Felhasználói hozzájárulás kérése", "xloc": [ - "default.handlebars->47->2264", - "default.handlebars->47->2268", - "default.handlebars->47->2271" + "default.handlebars->47->2266", + "default.handlebars->47->2270", + "default.handlebars->47->2273" ] }, { @@ -57036,7 +57055,7 @@ "zh-cht": "協議", "hu": "Protokoll", "xloc": [ - "default.handlebars->47->3084", + "default.handlebars->47->3086", "player.handlebars->3->32" ] }, @@ -57115,8 +57134,8 @@ "zh-cht": "配置狀態", "hu": "Telepítés (Provisioning) Állapot", "xloc": [ - "default-mobile.handlebars->11->794", - "default.handlebars->47->1632" + "default-mobile.handlebars->11->795", + "default.handlebars->47->1634" ] }, { @@ -57168,7 +57187,7 @@ "hu": "Puvlikus link", "xloc": [ "default-mobile.handlebars->11->353", - "default.handlebars->47->2445" + "default.handlebars->47->2447" ] }, { @@ -57220,7 +57239,7 @@ "hu": "pandzsábi", "xloc": [ "default-mobile.handlebars->11->235", - "default.handlebars->47->1924", + "default.handlebars->47->1926", "login2.handlebars->7->132" ] }, @@ -57249,7 +57268,7 @@ "hu": "pandzsábi (India)", "xloc": [ "default-mobile.handlebars->11->236", - "default.handlebars->47->1925", + "default.handlebars->47->1927", "login2.handlebars->7->133" ] }, @@ -57278,7 +57297,7 @@ "hu": "pandzsábi (Pakisztán)", "xloc": [ "default-mobile.handlebars->11->237", - "default.handlebars->47->1926", + "default.handlebars->47->1928", "login2.handlebars->7->134" ] }, @@ -57334,7 +57353,7 @@ "zh-cht": "推送通知", "hu": "Push Értesítés", "xloc": [ - "default.handlebars->47->3165" + "default.handlebars->47->3167" ] }, { @@ -57396,8 +57415,8 @@ "pl": "Pushover", "es": "Pushover", "xloc": [ - "default.handlebars->47->1746", - "default.handlebars->47->2969" + "default.handlebars->47->1748", + "default.handlebars->47->2971" ] }, { @@ -57479,7 +57498,7 @@ "hu": "quechua", "xloc": [ "default-mobile.handlebars->11->238", - "default.handlebars->47->1927", + "default.handlebars->47->1929", "login2.handlebars->7->135" ] }, @@ -57843,7 +57862,7 @@ "zh-cht": "RSS", "hu": "RSS", "xloc": [ - "default.handlebars->47->3301" + "default.handlebars->47->3303" ] }, { @@ -57897,7 +57916,7 @@ "zh-cht": "隨機密碼", "hu": "Véletlenszerű jelszó", "xloc": [ - "default.handlebars->47->2227" + "default.handlebars->47->2229" ] }, { @@ -57924,7 +57943,7 @@ "zh-cht": "隨機密碼。", "hu": "Véletlenszerű jelszó generálása", "xloc": [ - "default.handlebars->47->2751" + "default.handlebars->47->2753" ] }, { @@ -57951,7 +57970,7 @@ "zh-cht": "力登 Dominion KX III", "hu": "Raritan Dominion KX III", "xloc": [ - "default.handlebars->47->2060" + "default.handlebars->47->2062" ] }, { @@ -58056,9 +58075,9 @@ "zh-cht": "真正的名字", "hu": "Teljes Név", "xloc": [ - "default.handlebars->47->2883", "default.handlebars->47->2885", - "default.handlebars->47->3004" + "default.handlebars->47->2887", + "default.handlebars->47->3006" ] }, { @@ -58066,8 +58085,8 @@ "nl": "RealTimeProtection", "pl": "Ochrona W Czasie Rzeczywistym", "xloc": [ - "default-mobile.handlebars->11->743", - "default-mobile.handlebars->11->745", + "default-mobile.handlebars->11->744", + "default-mobile.handlebars->11->746", "default.handlebars->47->935", "default.handlebars->47->937" ] @@ -58096,7 +58115,7 @@ "zh-cht": "境界", "hu": "Realms", "xloc": [ - "default.handlebars->47->2760" + "default.handlebars->47->2762" ] }, { @@ -58123,7 +58142,7 @@ "zh-cht": "收到無效的網絡數據", "hu": "A fogadott hálózati adatok érvénytelenek", "xloc": [ - "default-mobile.handlebars->11->619", + "default-mobile.handlebars->11->620", "default.handlebars->47->1354", "sharing.handlebars->11->10", "sharing.handlebars->11->32" @@ -58153,9 +58172,9 @@ "zh-cht": "記錄會議", "hu": "Munkamenetek rögzítése", "xloc": [ - "default.handlebars->47->2131", - "default.handlebars->47->2810", - "default.handlebars->47->2891" + "default.handlebars->47->2133", + "default.handlebars->47->2812", + "default.handlebars->47->2893" ] }, { @@ -58209,9 +58228,9 @@ "zh-cht": "記錄會議", "hu": "Munkamenetek rögzítése", "xloc": [ - "default.handlebars->47->2272", - "default.handlebars->47->2848", - "default.handlebars->47->2992" + "default.handlebars->47->2274", + "default.handlebars->47->2850", + "default.handlebars->47->2994" ] }, { @@ -58238,7 +58257,7 @@ "zh-cht": "記錄細節", "hu": "Felvétel részletek", "xloc": [ - "default.handlebars->47->3098" + "default.handlebars->47->3100" ] }, { @@ -58273,8 +58292,8 @@ "nl": "Herstelwachtwoord", "pl": "Hasło Odzyskiwania", "xloc": [ - "default-mobile.handlebars->11->869", - "default.handlebars->47->1707" + "default-mobile.handlebars->11->870", + "default.handlebars->47->1709" ] }, { @@ -58408,9 +58427,9 @@ "hu": "Recurzív törlés", "xloc": [ "default-mobile.handlebars->11->359", - "default-mobile.handlebars->11->692", - "default.handlebars->47->1532", - "default.handlebars->47->2452", + "default-mobile.handlebars->11->693", + "default.handlebars->47->1534", + "default.handlebars->47->2454", "sharing.handlebars->11->60" ] }, @@ -58586,8 +58605,8 @@ "default-mobile.handlebars->11->466", "default.handlebars->47->1130", "default.handlebars->47->1155", - "default.handlebars->47->2354", - "default.handlebars->47->3283", + "default.handlebars->47->2356", + "default.handlebars->47->3285", "default.handlebars->47->411", "default.handlebars->47->415", "default.handlebars->47->712" @@ -58617,7 +58636,7 @@ "zh-cht": "中繼數量", "hu": "Relay Szám", "xloc": [ - "default.handlebars->47->3268" + "default.handlebars->47->3270" ] }, { @@ -58644,11 +58663,11 @@ "zh-cht": "繼電器裝置", "hu": "Relay Eszköz", "xloc": [ - "default-mobile.handlebars->11->902", - "default-mobile.handlebars->11->918", - "default.handlebars->47->2057", - "default.handlebars->47->2122", - "default.handlebars->47->2253" + "default-mobile.handlebars->11->903", + "default-mobile.handlebars->11->919", + "default.handlebars->47->2059", + "default.handlebars->47->2124", + "default.handlebars->47->2255" ] }, { @@ -58675,7 +58694,7 @@ "zh-cht": "中繼錯誤", "hu": "Relay Hibák", "xloc": [ - "default.handlebars->47->3261" + "default.handlebars->47->3263" ] }, { @@ -58734,8 +58753,8 @@ "zh-cht": "中繼連接", "hu": "Relay munkamenetek", "xloc": [ - "default.handlebars->47->3267", - "default.handlebars->47->3295" + "default.handlebars->47->3269", + "default.handlebars->47->3297" ] }, { @@ -58762,7 +58781,7 @@ "zh-cht": "繼電器裝置", "hu": "Relay eszköz", "xloc": [ - "default.handlebars->47->2635" + "default.handlebars->47->2637" ] }, { @@ -58840,7 +58859,7 @@ "zh-cht": "記住設備", "hu": "Emlékezzen az eszközre", "xloc": [ - "default.handlebars->47->3167" + "default.handlebars->47->3169" ] }, { @@ -58867,7 +58886,7 @@ "zh-cht": "記住憑據", "hu": "Hitelesítő adatok megjegyzése", "xloc": [ - "default-mobile.handlebars->11->667", + "default-mobile.handlebars->11->668", "default.handlebars->47->1372", "default.handlebars->47->1482", "mstsc.handlebars->main->1->3->1->rowremember->3->0", @@ -58898,7 +58917,7 @@ "zh-cht": "記住密碼", "hu": "Elmékezzej a jelszóra", "xloc": [ - "default-mobile.handlebars->11->672", + "default-mobile.handlebars->11->673", "default.handlebars->47->1487", "ssh.handlebars->3->19" ] @@ -59005,7 +59024,7 @@ "zh-cht": "記住用戶和密鑰", "hu": "Emlékezzen a felhaszálóra és kulcsra", "xloc": [ - "default-mobile.handlebars->11->671", + "default-mobile.handlebars->11->672", "default.handlebars->47->1486", "ssh.handlebars->3->18" ] @@ -59167,8 +59186,8 @@ "zh-cht": "遠程命令", "hu": "Távoli parancsok", "xloc": [ - "default-mobile.handlebars->11->945", - "default.handlebars->47->2312" + "default-mobile.handlebars->11->946", + "default.handlebars->47->2314" ] }, { @@ -59197,11 +59216,11 @@ "xloc": [ "default-mobile.handlebars->11->544", "default-mobile.handlebars->11->545", - "default-mobile.handlebars->11->932", - "default-mobile.handlebars->11->952", + "default-mobile.handlebars->11->933", + "default-mobile.handlebars->11->953", "default.handlebars->47->1013", "default.handlebars->47->1014", - "default.handlebars->47->2336" + "default.handlebars->47->2338" ] }, { @@ -59213,7 +59232,7 @@ "de": "Entfernte Ausführung & Weiterleitung", "es": "Control Remoto y Relay", "xloc": [ - "default.handlebars->47->2297" + "default.handlebars->47->2299" ] }, { @@ -59351,8 +59370,8 @@ "zh-cht": "遠程桌面連接欄已激活/更新", "hu": "Remote Desktop Connection Bar Activated/Updated", "xloc": [ - "default.handlebars->47->2500", - "default.handlebars->47->2506" + "default.handlebars->47->2502", + "default.handlebars->47->2508" ] }, { @@ -59379,7 +59398,7 @@ "zh-cht": "遠程桌面連接欄失敗或不受支持", "hu": "Remote Desktop Connection Bar Failed or Not Supported", "xloc": [ - "default.handlebars->47->2501" + "default.handlebars->47->2503" ] }, { @@ -59406,7 +59425,7 @@ "zh-cht": "遠程桌面連接欄失敗或不受支持", "hu": "Remote Desktop Connection Bar Failed or not Supported", "xloc": [ - "default.handlebars->47->2507" + "default.handlebars->47->2509" ] }, { @@ -59433,9 +59452,9 @@ "zh-cht": "本地用戶強行關閉了遠程桌面連接", "hu": "A távoli asztali kapcsolatot a helyi felhasználó erőszakkal lezárta", "xloc": [ - "default.handlebars->47->2498", - "default.handlebars->47->2502", - "default.handlebars->47->2508" + "default.handlebars->47->2500", + "default.handlebars->47->2504", + "default.handlebars->47->2510" ] }, { @@ -59513,7 +59532,7 @@ "zh-cht": "遠程桌面設置", "hu": "Távoli Asztal beállítások", "xloc": [ - "default-mobile.handlebars->11->621", + "default-mobile.handlebars->11->622", "default.handlebars->47->1384", "default.handlebars->47->477", "sharing.handlebars->11->20" @@ -59769,7 +59788,7 @@ "zh-cht": "遠程網格用戶", "hu": "Távoli Mesh Felhasználó", "xloc": [ - "default-mobile.handlebars->11->973" + "default-mobile.handlebars->11->974" ] }, { @@ -59820,7 +59839,7 @@ "zh-cht": "遠程會話", "hu": "Távoli munkamenetek", "xloc": [ - "default.handlebars->47->3100" + "default.handlebars->47->3102" ] }, { @@ -59973,11 +59992,11 @@ "zh-cht": "僅遠程查看", "hu": "Csak távoli megtekintés", "xloc": [ - "default-mobile.handlebars->11->933", - "default-mobile.handlebars->11->957", - "default.handlebars->47->2298", - "default.handlebars->47->2341", - "default.handlebars->47->2995" + "default-mobile.handlebars->11->934", + "default-mobile.handlebars->11->958", + "default.handlebars->47->2300", + "default.handlebars->47->2343", + "default.handlebars->47->2997" ] }, { @@ -60119,8 +60138,8 @@ "nl": "Verwijderbaar", "pl": "Wyjmowane", "xloc": [ - "default-mobile.handlebars->11->856", - "default.handlebars->47->1694" + "default-mobile.handlebars->11->857", + "default.handlebars->47->1696" ] }, { @@ -60198,7 +60217,7 @@ "zh-cht": "刪除配置", "hu": "Konfiguráció eltávolítása", "xloc": [ - "default.handlebars->47->2092" + "default.handlebars->47->2094" ] }, { @@ -60273,8 +60292,8 @@ "zh-cht": "刪除裝置群權限", "hu": "Eszközcsoport engedélyek eltávolítása", "xloc": [ - "default.handlebars->47->2852", - "default.handlebars->47->3056" + "default.handlebars->47->2854", + "default.handlebars->47->3058" ] }, { @@ -60301,8 +60320,8 @@ "zh-cht": "刪除裝置權限", "hu": "Eszközengedélyek eltávolítása", "xloc": [ - "default.handlebars->47->2850", - "default.handlebars->47->3043" + "default.handlebars->47->2852", + "default.handlebars->47->3045" ] }, { @@ -60329,7 +60348,7 @@ "zh-cht": "刪除設備共享", "hu": "Eszközmegosztás eltávolítása", "xloc": [ - "default.handlebars->47->3041" + "default.handlebars->47->3043" ] }, { @@ -60356,7 +60375,7 @@ "zh-cht": "刪除登錄令牌", "hu": "Bejelentkezési token eltávolítása", "xloc": [ - "default.handlebars->47->2084" + "default.handlebars->47->2086" ] }, { @@ -60415,7 +60434,7 @@ "zh-cht": "刪除用戶群成員身份", "hu": "Felhasználói csoporttagság eltávolítása", "xloc": [ - "default.handlebars->47->3052" + "default.handlebars->47->3054" ] }, { @@ -60442,8 +60461,8 @@ "zh-cht": "刪除用戶群權限", "hu": "Felhasználói csoport engedélyeinek eltávolítása", "xloc": [ - "default.handlebars->47->2363", - "default.handlebars->47->3048" + "default.handlebars->47->2365", + "default.handlebars->47->3050" ] }, { @@ -60470,7 +60489,7 @@ "zh-cht": "刪除用戶成員資格", "hu": "Felhasználói tagság eltávolítása", "xloc": [ - "default.handlebars->47->2860" + "default.handlebars->47->2862" ] }, { @@ -60497,8 +60516,8 @@ "zh-cht": "刪除用戶權限", "hu": "Felhasználói engedélyek eltávolítása", "xloc": [ - "default.handlebars->47->2361", - "default.handlebars->47->3045" + "default.handlebars->47->2363", + "default.handlebars->47->3047" ] }, { @@ -60525,7 +60544,7 @@ "zh-cht": "刪除所有二因子鑑別。", "hu": "Távolítson el minden 2. faktoros hitelesítést.", "xloc": [ - "default.handlebars->47->3018" + "default.handlebars->47->3020" ] }, { @@ -60552,7 +60571,7 @@ "zh-cht": "刪除此用戶標識的所有先前事件。", "hu": "A felhasználó összes korábbi eseményének eltávolítása. ", "xloc": [ - "default.handlebars->47->2752" + "default.handlebars->47->2754" ] }, { @@ -60579,7 +60598,7 @@ "zh-cht": "斷開連接後删除裝置", "hu": "Az eszköz eltávolítása lecsatlakozáskor", "xloc": [ - "default.handlebars->47->2275" + "default.handlebars->47->2277" ] }, { @@ -60607,7 +60626,7 @@ "hu": "Eszközmegosztás eltávolítása", "xloc": [ "default.handlebars->47->1073", - "default.handlebars->47->2185" + "default.handlebars->47->2187" ] }, { @@ -60634,7 +60653,7 @@ "zh-cht": "刪除非活動", "hu": "Inaktívak eltávolítása", "xloc": [ - "default.handlebars->47->2132" + "default.handlebars->47->2134" ] }, { @@ -60661,7 +60680,7 @@ "zh-cht": "刪除登錄令牌", "hu": "Bejelentkezési token eltávolítása", "xloc": [ - "default.handlebars->47->2079" + "default.handlebars->47->2081" ] }, { @@ -60673,7 +60692,7 @@ "de": "Benachrichtigen entfernen", "es": "Remover mensajes", "xloc": [ - "default.handlebars->47->1739" + "default.handlebars->47->1741" ] }, { @@ -60728,7 +60747,7 @@ "hu": "Telefonszám eltávolítása", "xloc": [ "default-mobile.handlebars->11->97", - "default.handlebars->47->1733" + "default.handlebars->47->1735" ] }, { @@ -60809,7 +60828,7 @@ "zh-cht": "刪除此用戶", "hu": "Távolítsa el ezt a felhasználót", "xloc": [ - "default.handlebars->47->2951" + "default.handlebars->47->2953" ] }, { @@ -60836,7 +60855,7 @@ "zh-cht": "刪除用戶群成員身份", "hu": "Felhasználói csoporttagság eltávolítása", "xloc": [ - "default.handlebars->47->3032" + "default.handlebars->47->3034" ] }, { @@ -60863,7 +60882,7 @@ "zh-cht": "刪除此裝置的用戶群權限", "hu": "Felhasználói csoportjogok eltávolítása ehhez az eszközhöz", "xloc": [ - "default.handlebars->47->2844" + "default.handlebars->47->2846" ] }, { @@ -60891,7 +60910,7 @@ "hu": "Felhasználói csoportjogok eltávolítása ehhez az eszközcsoporthoz", "xloc": [ "default.handlebars->47->1066", - "default.handlebars->47->2838" + "default.handlebars->47->2840" ] }, { @@ -60919,10 +60938,10 @@ "hu": "Eszköz vagy eszközcsoport eltávolítása", "xloc": [ "default.handlebars->47->1067", - "default.handlebars->47->2181", - "default.handlebars->47->2832", - "default.handlebars->47->3026", - "default.handlebars->47->3038" + "default.handlebars->47->2183", + "default.handlebars->47->2834", + "default.handlebars->47->3028", + "default.handlebars->47->3040" ] }, { @@ -60973,7 +60992,7 @@ "zh-cht": "刪除了帳戶顯示名稱。", "hu": "Fiók megjelenített neve eltávolítva.", "xloc": [ - "default.handlebars->47->2598" + "default.handlebars->47->2600" ] }, { @@ -61000,7 +61019,7 @@ "zh-cht": "刪除身份驗證應用程序", "hu": "Hitelesítési alkalmazás eltávolítva", "xloc": [ - "default.handlebars->47->2560" + "default.handlebars->47->2562" ] }, { @@ -61027,7 +61046,7 @@ "zh-cht": "刪除的設備共享{0}", "hu": "{0} eszközmegosztás eltávolítva", "xloc": [ - "default.handlebars->47->2571" + "default.handlebars->47->2573" ] }, { @@ -61054,7 +61073,7 @@ "zh-cht": "從設備組{1}中刪除了設備{0}", "hu": "{0} eszköz eltávolítása az {1} eszközcsoportból", "xloc": [ - "default.handlebars->47->2556" + "default.handlebars->47->2558" ] }, { @@ -61081,7 +61100,7 @@ "zh-cht": "刪除了登錄令牌", "hu": "Bejelentkezési token eltávolítva", "xloc": [ - "default.handlebars->47->2585" + "default.handlebars->47->2587" ] }, { @@ -61093,7 +61112,7 @@ "de": "Benachrichtigen für den Benutzer {0} entfernt", "es": "Removio cuenta de mensajes del usuario {0}", "xloc": [ - "default.handlebars->47->2626" + "default.handlebars->47->2628" ] }, { @@ -61120,7 +61139,7 @@ "zh-cht": "已刪除用戶{0}的電話號碼", "hu": "{0} felhasználó telefonszáma eltávolítva", "xloc": [ - "default.handlebars->47->2566" + "default.handlebars->47->2568" ] }, { @@ -61147,7 +61166,7 @@ "zh-cht": "移除推送通知認證設備", "hu": "Push értesítési hitelesítő eszköz eltávolítva", "xloc": [ - "default.handlebars->47->2583" + "default.handlebars->47->2585" ] }, { @@ -61174,7 +61193,7 @@ "zh-cht": "移除安全密鑰", "hu": "Biztonsági kulcs eltávolítva", "xloc": [ - "default.handlebars->47->2563" + "default.handlebars->47->2565" ] }, { @@ -61201,9 +61220,9 @@ "zh-cht": "刪除了{0}的用戶設備權限", "hu": "Felhasználói eszközjogok eltávolítva {0}", "xloc": [ - "default.handlebars->47->2529", - "default.handlebars->47->2550", - "default.handlebars->47->2555" + "default.handlebars->47->2531", + "default.handlebars->47->2552", + "default.handlebars->47->2557" ] }, { @@ -61230,7 +61249,7 @@ "zh-cht": "從設備組{1}中刪除了用戶組{0}", "hu": "{0} felhasználói csoport eltávolítva a(z) {1} eszközcsoportból", "xloc": [ - "default.handlebars->47->2539" + "default.handlebars->47->2541" ] }, { @@ -61257,7 +61276,7 @@ "zh-cht": "已從設備組{1}中刪除用戶{0}", "hu": "{0} felhasználó eltávolítva a(z) {1} eszközcsoportból", "xloc": [ - "default.handlebars->47->2552" + "default.handlebars->47->2554" ] }, { @@ -61284,8 +61303,8 @@ "zh-cht": "從用戶組{1}中刪除了用戶{0}", "hu": "{0} felhasználó eltávolítva a(z) {1} felhasználócsoportból", "xloc": [ - "default.handlebars->47->2531", - "default.handlebars->47->2541" + "default.handlebars->47->2533", + "default.handlebars->47->2543" ] }, { @@ -61313,11 +61332,11 @@ "hu": "Átnevezés", "xloc": [ "default-mobile.handlebars->11->363", - "default-mobile.handlebars->11->696", + "default-mobile.handlebars->11->697", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1", "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1", - "default.handlebars->47->1536", - "default.handlebars->47->2456", + "default.handlebars->47->1538", + "default.handlebars->47->2458", "default.handlebars->47->838", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", @@ -61374,7 +61393,7 @@ "zh-cht": "重命名:“{0}”為“{1}”", "hu": "Átnezezés: \\\"{0}\\\" to \\\"{1}\\\"", "xloc": [ - "default.handlebars->47->2517" + "default.handlebars->47->2519" ] }, { @@ -61401,7 +61420,7 @@ "zh-cht": "報告日", "hu": "Jelentés Nap", "xloc": [ - "default.handlebars->47->2644" + "default.handlebars->47->2646" ] }, { @@ -61428,7 +61447,7 @@ "zh-cht": "報告類型", "hu": "Jelentés típusa", "xloc": [ - "default.handlebars->47->2639" + "default.handlebars->47->2641" ] }, { @@ -61455,7 +61474,7 @@ "zh-cht": "報告未返回任何內容。", "hu": "A jelentés nem tartalmaz bejegyzést.", "xloc": [ - "default.handlebars->47->3137" + "default.handlebars->47->3139" ] }, { @@ -61482,7 +61501,7 @@ "zh-cht": "報告.csv", "hu": "Report.csv", "xloc": [ - "default.handlebars->47->3198" + "default.handlebars->47->3200" ] }, { @@ -61704,7 +61723,7 @@ "zh-cht": "要求:", "hu": "Követelmények: ", "xloc": [ - "default.handlebars->47->2040" + "default.handlebars->47->2042" ] }, { @@ -61732,8 +61751,8 @@ "hu": "Követelmények: {0}.", "xloc": [ "default-mobile.handlebars->11->327", - "default.handlebars->47->2757", - "default.handlebars->47->3016" + "default.handlebars->47->2759", + "default.handlebars->47->3018" ] }, { @@ -61874,8 +61893,8 @@ "zh-cht": "重置/關閉電源", "hu": "Újraindítás / Kikapcsolás", "xloc": [ - "default-mobile.handlebars->11->946", - "default.handlebars->47->2313" + "default-mobile.handlebars->11->947", + "default.handlebars->47->2315" ] }, { @@ -62043,10 +62062,10 @@ "zh-cht": "重置/關閉", "hu": "Újraindítás / Kikapcsolás", "xloc": [ - "default-mobile.handlebars->11->966", + "default-mobile.handlebars->11->967", "default.handlebars->47->1127", "default.handlebars->47->1152", - "default.handlebars->47->2351" + "default.handlebars->47->2353" ] }, { @@ -62109,7 +62128,7 @@ "zh-cht": "還原伺服器", "hu": "Kiszolgáló visszaállítása", "xloc": [ - "default.handlebars->47->2097" + "default.handlebars->47->2099" ] }, { @@ -62163,7 +62182,7 @@ "zh-cht": "使用備份還原伺服器,這將刪除現有伺服器數據。僅當你知道自己在做什麼時才這樣做。", "hu": "Kiszolgáló visszaállítása biztonsági mentésből, ez törli a meglévő kiszolgálói adatokat. Csak akkor tegye ezt, ha tudja, mit csinál!", "xloc": [ - "default.handlebars->47->2094" + "default.handlebars->47->2096" ] }, { @@ -62219,7 +62238,7 @@ "zh-cht": "限制條件", "hu": "Korlátozások", "xloc": [ - "default.handlebars->47->2872" + "default.handlebars->47->2874" ] }, { @@ -62275,7 +62294,7 @@ "hu": "rheto-román", "xloc": [ "default-mobile.handlebars->11->239", - "default.handlebars->47->1928", + "default.handlebars->47->1930", "login2.handlebars->7->136" ] }, @@ -62303,7 +62322,7 @@ "zh-cht": "右", "hu": "Jobb", "xloc": [ - "default-mobile.handlebars->11->638", + "default-mobile.handlebars->11->639", "default.handlebars->47->1403" ] }, @@ -62332,7 +62351,7 @@ "hu": "román", "xloc": [ "default-mobile.handlebars->11->240", - "default.handlebars->47->1929", + "default.handlebars->47->1931", "login2.handlebars->7->137" ] }, @@ -62361,7 +62380,7 @@ "hu": "román (Moldova)", "xloc": [ "default-mobile.handlebars->11->241", - "default.handlebars->47->1930", + "default.handlebars->47->1932", "login2.handlebars->7->138" ] }, @@ -62390,9 +62409,9 @@ "hu": "Root", "xloc": [ "default-mobile.handlebars->11->345", - "default-mobile.handlebars->11->685", + "default-mobile.handlebars->11->686", "default.handlebars->47->1517", - "default.handlebars->47->2424", + "default.handlebars->47->2426", "sharing.handlebars->11->49" ] }, @@ -62885,7 +62904,7 @@ "zh-cht": "運行命令", "hu": "Parancsok futtatása", "xloc": [ - "default.handlebars->47->2493" + "default.handlebars->47->2495" ] }, { @@ -62912,7 +62931,7 @@ "zh-cht": "以用戶身份運行命令", "hu": "Parancsok futtatása felhasználóként", "xloc": [ - "default.handlebars->47->2568" + "default.handlebars->47->2570" ] }, { @@ -62939,7 +62958,7 @@ "zh-cht": "如果可能,以用戶身份運行命令", "hu": "Parancsok futtatása felhasználóként, ha lehetséges", "xloc": [ - "default.handlebars->47->2569" + "default.handlebars->47->2571" ] }, { @@ -62967,7 +62986,7 @@ "hu": "orosz", "xloc": [ "default-mobile.handlebars->11->242", - "default.handlebars->47->1931", + "default.handlebars->47->1933", "login2.handlebars->7->139" ] }, @@ -62996,7 +63015,7 @@ "hu": "orosz (Moldávia)", "xloc": [ "default-mobile.handlebars->11->243", - "default.handlebars->47->1932", + "default.handlebars->47->1934", "login2.handlebars->7->140" ] }, @@ -63155,8 +63174,8 @@ "zh-cht": "短信", "hu": "SMS", "xloc": [ - "default.handlebars->47->2935", - "default.handlebars->47->2941", + "default.handlebars->47->2937", + "default.handlebars->47->2943", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3", "login.handlebars->container->column_l->centralTable->1->0->logincell->resettokenpanel->1->5->1->2->1->3", "login.handlebars->container->column_l->centralTable->1->0->logincell->tokenpanel->1->7->1->4->1->3", @@ -63189,7 +63208,7 @@ "zh-cht": "此用戶的短信功能電話號碼。", "hu": "SMS fogadásra alkalmas telefonszám ehhez a felhasználóhoz.", "xloc": [ - "default.handlebars->47->2959" + "default.handlebars->47->2961" ] }, { @@ -63216,8 +63235,8 @@ "zh-cht": "短信錯誤", "hu": "SMS hiba", "xloc": [ - "default-mobile.handlebars->11->1012", - "default.handlebars->47->3236" + "default-mobile.handlebars->11->1013", + "default.handlebars->47->3238" ] }, { @@ -63244,8 +63263,8 @@ "zh-cht": "短信錯誤:{0}", "hu": "SMS hiba: {0}", "xloc": [ - "default-mobile.handlebars->11->1013", - "default.handlebars->47->3237" + "default-mobile.handlebars->11->1014", + "default.handlebars->47->3239" ] }, { @@ -63299,8 +63318,8 @@ "zh-cht": "短信網關未啟用", "hu": "SMS átjáró nincs engedélyezve", "xloc": [ - "default-mobile.handlebars->11->1007", - "default.handlebars->47->3231" + "default-mobile.handlebars->11->1008", + "default.handlebars->47->3233" ] }, { @@ -63327,7 +63346,7 @@ "zh-cht": "短信", "hu": "SMS üzenet", "xloc": [ - "default.handlebars->47->3162" + "default.handlebars->47->3164" ] }, { @@ -63392,7 +63411,7 @@ "de": "SMS erfolgreich gesendet.", "es": "SMS enviado exitosamente.", "xloc": [ - "default.handlebars->47->3235" + "default.handlebars->47->3237" ] }, { @@ -63419,7 +63438,7 @@ "zh-cht": "短信成功發送。", "hu": "SMS sikeresen elküldve.", "xloc": [ - "default-mobile.handlebars->11->1011" + "default-mobile.handlebars->11->1012" ] }, { @@ -63529,7 +63548,7 @@ "zh-cht": "SSH 連接", "hu": "SSH Kapcsolat", "xloc": [ - "default-mobile.handlebars->11->656", + "default-mobile.handlebars->11->657", "default.handlebars->47->831" ] }, @@ -63557,10 +63576,10 @@ "zh-cht": "SSH 端口 {0}", "hu": "SSH Port {0}", "xloc": [ - "default-mobile.handlebars->11->654", - "default-mobile.handlebars->11->690", + "default-mobile.handlebars->11->655", + "default-mobile.handlebars->11->691", "default.handlebars->47->1468", - "default.handlebars->47->1530" + "default.handlebars->47->1532" ] }, { @@ -63611,7 +63630,7 @@ "zh-cht": "SSH遠程連接端口:", "hu": "SSH távoli kapcsolat portja:", "xloc": [ - "default-mobile.handlebars->11->655", + "default-mobile.handlebars->11->656", "default.handlebars->47->830" ] }, @@ -63890,7 +63909,7 @@ "hu": "sami (Lappföld)", "xloc": [ "default-mobile.handlebars->11->244", - "default.handlebars->47->1933", + "default.handlebars->47->1935", "login2.handlebars->7->141" ] }, @@ -63972,7 +63991,7 @@ "hu": "sango", "xloc": [ "default-mobile.handlebars->11->245", - "default.handlebars->47->1934", + "default.handlebars->47->1936", "login2.handlebars->7->142" ] }, @@ -64001,7 +64020,7 @@ "hu": "szanszkrit", "xloc": [ "default-mobile.handlebars->11->246", - "default.handlebars->47->1935", + "default.handlebars->47->1937", "login2.handlebars->7->143" ] }, @@ -64030,7 +64049,7 @@ "hu": "szardíniai", "xloc": [ "default-mobile.handlebars->11->247", - "default.handlebars->47->1936", + "default.handlebars->47->1938", "login2.handlebars->7->144" ] }, @@ -64329,7 +64348,7 @@ "zh-cht": "屏幕", "hu": "Képernyő", "xloc": [ - "default-mobile.handlebars->11->652" + "default-mobile.handlebars->11->653" ] }, { @@ -64356,7 +64375,7 @@ "zh-cht": "屏幕選擇", "hu": "Képernyő kiválasztása", "xloc": [ - "default-mobile.handlebars->11->653" + "default-mobile.handlebars->11->654" ] }, { @@ -64446,7 +64465,7 @@ "zh-cht": "搜尋", "hu": "Keresés", "xloc": [ - "default.handlebars->47->1524", + "default.handlebars->47->1526", "default.handlebars->47->858", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devMapToolbar", "sharing.handlebars->11->53" @@ -64596,8 +64615,8 @@ "zh-cht": "已使用TLS保安", "hu": "TLS használatával védett", "xloc": [ - "default-mobile.handlebars->11->797", - "default.handlebars->47->1635" + "default-mobile.handlebars->11->798", + "default.handlebars->47->1637" ] }, { @@ -64624,12 +64643,12 @@ "zh-cht": "安全", "hu": "Biztonság", "xloc": [ - "default-mobile.handlebars->11->597", - "default-mobile.handlebars->11->796", + "default-mobile.handlebars->11->598", + "default-mobile.handlebars->11->797", "default.handlebars->47->1280", - "default.handlebars->47->1634", - "default.handlebars->47->2422", - "default.handlebars->47->2937", + "default.handlebars->47->1636", + "default.handlebars->47->2424", + "default.handlebars->47->2939", "default.handlebars->47->506", "default.handlebars->container->column_l->p21->p21main->1->1->meshSecurityChartDiv->1" ] @@ -64673,7 +64692,7 @@ "zh-cht": "安全密鑰", "hu": "Biztonsági kulcs", "xloc": [ - "default.handlebars->47->2931" + "default.handlebars->47->2933" ] }, { @@ -64700,8 +64719,8 @@ "zh-cht": "安全警告", "hu": "Biztonsági figyelmeztetés", "xloc": [ - "default-mobile.handlebars->11->981", - "default.handlebars->47->3205" + "default-mobile.handlebars->11->982", + "default.handlebars->47->3207" ] }, { @@ -64794,11 +64813,11 @@ "zh-cht": "全選", "hu": "Összes kijelölése", "xloc": [ - "default.handlebars->47->1527", "default.handlebars->47->1529", - "default.handlebars->47->2448", - "default.handlebars->47->2691", - "default.handlebars->47->2785", + "default.handlebars->47->1531", + "default.handlebars->47->2450", + "default.handlebars->47->2693", + "default.handlebars->47->2787", "default.handlebars->47->534", "default.handlebars->47->717", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar", @@ -64838,7 +64857,7 @@ "xloc": [ "default.handlebars->47->1221", "default.handlebars->47->1223", - "default.handlebars->47->3120" + "default.handlebars->47->3122" ] }, { @@ -64865,10 +64884,10 @@ "zh-cht": "選擇無", "hu": "Semelyik", "xloc": [ - "default.handlebars->47->1528", - "default.handlebars->47->2447", - "default.handlebars->47->2690", - "default.handlebars->47->2784", + "default.handlebars->47->1530", + "default.handlebars->47->2449", + "default.handlebars->47->2692", + "default.handlebars->47->2786", "default.handlebars->47->716", "default.handlebars->meshContextMenu->cxselectnone", "sharing.handlebars->11->57" @@ -64898,7 +64917,7 @@ "zh-cht": "選擇要註冊推送通知身份驗證的設備。選擇後,設備將提示確認。", "hu": "Válassza ki a push-értesítés hitelesítéséhez regisztrálandó eszközt. A kiválasztás után az eszköz megerősítést kér.", "xloc": [ - "default.handlebars->47->1780" + "default.handlebars->47->1782" ] }, { @@ -65033,8 +65052,8 @@ "zh-cht": "選擇要對所有選定用戶執行的操作。", "hu": "A kiválasztottakon végrehajtandó művelet.", "xloc": [ - "default.handlebars->47->2694", - "default.handlebars->47->2786" + "default.handlebars->47->2696", + "default.handlebars->47->2788" ] }, { @@ -65089,7 +65108,7 @@ "zh-cht": "選擇新密碼", "hu": "Új jelszó választása", "xloc": [ - "default.handlebars->47->2228" + "default.handlebars->47->2230" ] }, { @@ -65144,8 +65163,8 @@ "zh-cht": "僅自我事件", "hu": "Csak saját események", "xloc": [ - "default-mobile.handlebars->11->962", - "default.handlebars->47->2347" + "default-mobile.handlebars->11->963", + "default.handlebars->47->2349" ] }, { @@ -65227,7 +65246,7 @@ "zh-cht": "發電郵", "hu": "Email küldés", "xloc": [ - "default.handlebars->47->2706" + "default.handlebars->47->2708" ] }, { @@ -65294,7 +65313,7 @@ "de": "Nachricht senden", "es": "Enviar Mensaje", "xloc": [ - "default.handlebars->47->2704" + "default.handlebars->47->2706" ] }, { @@ -65321,7 +65340,7 @@ "zh-cht": "發送簡訊", "hu": "SMS küldés", "xloc": [ - "default.handlebars->47->2703" + "default.handlebars->47->2705" ] }, { @@ -65348,7 +65367,7 @@ "zh-cht": "發送短信給該用戶", "hu": "SMS-üzenet küldése ennek a felhasználónak", "xloc": [ - "default.handlebars->47->2942" + "default.handlebars->47->2944" ] }, { @@ -65375,7 +65394,7 @@ "zh-cht": "發送電郵給該用戶", "hu": "E-mail küldése ennek a felhasználónak", "xloc": [ - "default.handlebars->47->2946" + "default.handlebars->47->2948" ] }, { @@ -65387,7 +65406,7 @@ "de": "Eine Nachricht an diesen Benutzer senden", "es": "Enviar mensaje a este usuario", "xloc": [ - "default.handlebars->47->2944" + "default.handlebars->47->2946" ] }, { @@ -65414,7 +65433,7 @@ "zh-cht": "向該群中的所有用戶發送通知。", "hu": "Értesítés küldése a csoport összes felhasználójának.", "xloc": [ - "default.handlebars->47->2829" + "default.handlebars->47->2831" ] }, { @@ -65441,7 +65460,7 @@ "zh-cht": "向該用戶發送文本通知。", "hu": "Értesítő üzenet küldése ennek a felhasználónak.", "xloc": [ - "default.handlebars->47->2707" + "default.handlebars->47->2709" ] }, { @@ -65468,7 +65487,7 @@ "zh-cht": "發送電郵給用戶", "hu": "E-mail küldése a felhasználónak", "xloc": [ - "default.handlebars->47->2685" + "default.handlebars->47->2687" ] }, { @@ -65522,7 +65541,7 @@ "zh-cht": "發送邀請電郵。", "hu": "Küldjön meghívót e-mailben.", "xloc": [ - "default.handlebars->47->2756" + "default.handlebars->47->2758" ] }, { @@ -65700,7 +65719,7 @@ "zh-cht": "發送用戶通知", "hu": "Felhasználói értesítés küldése", "xloc": [ - "default.handlebars->47->2948" + "default.handlebars->47->2950" ] }, { @@ -65810,7 +65829,7 @@ "hu": "szerb", "xloc": [ "default-mobile.handlebars->11->250", - "default.handlebars->47->1939", + "default.handlebars->47->1941", "login2.handlebars->7->147" ] }, @@ -65838,10 +65857,10 @@ "zh-cht": "序列號", "hu": "Sorozatszám", "xloc": [ - "default-mobile.handlebars->11->806", - "default-mobile.handlebars->11->811", - "default.handlebars->47->1644", - "default.handlebars->47->1649" + "default-mobile.handlebars->11->807", + "default-mobile.handlebars->11->812", + "default.handlebars->47->1646", + "default.handlebars->47->1651" ] }, { @@ -65892,7 +65911,7 @@ "zh-cht": "伺服器備份", "hu": "Kiszolgáló biztonsági mentés", "xloc": [ - "default.handlebars->47->2766" + "default.handlebars->47->2768" ] }, { @@ -65919,7 +65938,7 @@ "zh-cht": "伺服器憑證", "hu": "Kiszolgáló Tanusítvány", "xloc": [ - "default.handlebars->47->3316" + "default.handlebars->47->3318" ] }, { @@ -65929,7 +65948,7 @@ "xloc": [ "default.handlebars->47->203", "default.handlebars->47->205", - "default.handlebars->47->2105" + "default.handlebars->47->2107" ] }, { @@ -65983,7 +66002,7 @@ "zh-cht": "伺服器數據庫", "hu": "Kiszolgáló adatbázis", "xloc": [ - "default.handlebars->47->3317" + "default.handlebars->47->3319" ] }, { @@ -65992,7 +66011,7 @@ "pl": "Błędy Serwera", "xloc": [ "default.handlebars->47->198", - "default.handlebars->47->2102" + "default.handlebars->47->2104" ] }, { @@ -66019,13 +66038,13 @@ "zh-cht": "伺服器檔案", "hu": "Kiszolgáló fájlok", "xloc": [ - "default-mobile.handlebars->11->939", - "default-mobile.handlebars->11->954", + "default-mobile.handlebars->11->940", + "default-mobile.handlebars->11->955", "default.handlebars->47->1120", "default.handlebars->47->1145", - "default.handlebars->47->2306", - "default.handlebars->47->2338", - "default.handlebars->47->2763" + "default.handlebars->47->2308", + "default.handlebars->47->2340", + "default.handlebars->47->2765" ] }, { @@ -66079,8 +66098,8 @@ "zh-cht": "服務器限制", "hu": "Kiszolgáló Limit", "xloc": [ - "default-mobile.handlebars->11->980", - "default.handlebars->47->3204" + "default-mobile.handlebars->11->981", + "default.handlebars->47->3206" ] }, { @@ -66134,8 +66153,8 @@ "zh-cht": "伺服器權限", "hu": "Kiszolgálói engedélyek", "xloc": [ - "default.handlebars->47->2677", - "default.handlebars->47->2778" + "default.handlebars->47->2679", + "default.handlebars->47->2780" ] }, { @@ -66162,7 +66181,7 @@ "zh-cht": "伺服器配額", "hu": "Kiszolgálói kvóta", "xloc": [ - "default.handlebars->47->2905" + "default.handlebars->47->2907" ] }, { @@ -66189,7 +66208,7 @@ "zh-cht": "伺服器還原", "hu": "Kiszolgáló visszaállítása", "xloc": [ - "default.handlebars->47->2767" + "default.handlebars->47->2769" ] }, { @@ -66216,7 +66235,7 @@ "zh-cht": "伺服器權限", "hu": "Jogosultságok a kiszolgálón", "xloc": [ - "default.handlebars->47->2904" + "default.handlebars->47->2906" ] }, { @@ -66243,7 +66262,7 @@ "zh-cht": "伺服器狀態", "hu": "Kiszolgáló állapot", "xloc": [ - "default.handlebars->47->3247" + "default.handlebars->47->3249" ] }, { @@ -66297,7 +66316,7 @@ "zh-cht": "伺服器追蹤", "hu": "Kiszolgáló nyomkövetés", "xloc": [ - "default.handlebars->47->3330" + "default.handlebars->47->3332" ] }, { @@ -66324,7 +66343,7 @@ "zh-cht": "服務器跟踪事件", "hu": "Kiszolgáló nyomkövetési esemény", "xloc": [ - "default.handlebars->47->3308" + "default.handlebars->47->3310" ] }, { @@ -66406,7 +66425,7 @@ "zh-cht": "伺服器更新", "hu": "Kiszolgáló frissítések", "xloc": [ - "default.handlebars->47->2768" + "default.handlebars->47->2770" ] }, { @@ -66620,7 +66639,7 @@ "de": "Der Server konnte keine Aufzeichnungen aus der Datenbank laden.", "es": "El servidor no puede obtener las grabaciones de la base de datos.", "xloc": [ - "default.handlebars->47->3063" + "default.handlebars->47->3065" ] }, { @@ -66633,7 +66652,7 @@ "de": "Der Server konnte keine Datei aus dem Aufzeichnungsordner laden.", "es": "El servidor no puede acceder la carpeta de grabaciones.", "xloc": [ - "default.handlebars->47->3062" + "default.handlebars->47->3064" ] }, { @@ -66646,7 +66665,7 @@ "de": "Aufzeichnungen zu Serverstatistiken", "es": "Historial de estadisticas del servidor", "xloc": [ - "default.handlebars->47->3182" + "default.handlebars->47->3184" ] }, { @@ -66726,7 +66745,7 @@ "zh-cht": "ServerStats.csv", "hu": "ServerStats.csv", "xloc": [ - "default.handlebars->47->3307" + "default.handlebars->47->3309" ] }, { @@ -66738,8 +66757,8 @@ "de": "Dienst", "es": "Servicio", "xloc": [ - "default.handlebars->47->1750", - "default.handlebars->47->2973" + "default.handlebars->47->1752", + "default.handlebars->47->2975" ] }, { @@ -66821,8 +66840,8 @@ "zh-cht": "節", "hu": "Munkamenet", "xloc": [ - "default.handlebars->47->3066", - "default.handlebars->47->3125", + "default.handlebars->47->3068", + "default.handlebars->47->3127", "ssh.handlebars->3->24", "ssh.handlebars->3->26" ] @@ -66906,8 +66925,8 @@ "zh-cht": "會話已過期", "hu": "Munkamenet lejárt", "xloc": [ - "default-mobile.handlebars->11->676", - "default-mobile.handlebars->11->683", + "default-mobile.handlebars->11->677", + "default-mobile.handlebars->11->684", "default.handlebars->47->1492", "default.handlebars->47->1508" ] @@ -66993,8 +67012,8 @@ "zh-cht": "會話超時", "hu": "Munkamenet időtúllépés", "xloc": [ - "default-mobile.handlebars->11->677", - "default-mobile.handlebars->11->684", + "default-mobile.handlebars->11->678", + "default-mobile.handlebars->11->685", "default.handlebars->47->1493", "default.handlebars->47->1509" ] @@ -67211,7 +67230,7 @@ "zh-cht": "設置剪貼板內容,{0}個字節", "hu": "A vágólap tartalmának beállítása, {0} bájt", "xloc": [ - "default.handlebars->47->2491" + "default.handlebars->47->2493" ] }, { @@ -67322,7 +67341,7 @@ "hu": "Beállítás", "xloc": [ "agent-translations.json", - "default.handlebars->47->2171", + "default.handlebars->47->2173", "default.handlebars->47->483" ] }, @@ -67398,7 +67417,7 @@ "zh-cht": "將此服務器設置為自動將備份上傳到Google雲端硬盤。首先為您的帳戶創建並輸入Google Drive ClientID和ClientSecret。", "hu": "Állítsa be ezt a szervert úgy, hogy automatikusan feltöltse a biztonsági mentéseket a Google Drive-ra. Kezdje azzal, hogy létrehoz és megad egy Google Drive-ügyfélazonosítót és ClientSecret-et a fiókjához.", "xloc": [ - "default.handlebars->47->2085" + "default.handlebars->47->2087" ] }, { @@ -67597,7 +67616,7 @@ "xloc": [ "default.handlebars->47->1128", "default.handlebars->47->1153", - "default.handlebars->47->2352" + "default.handlebars->47->2354" ] }, { @@ -67707,8 +67726,8 @@ "zh-cht": "Shift", "hu": "Shift", "xloc": [ - "default-mobile.handlebars->11->641", - "default-mobile.handlebars->11->645", + "default-mobile.handlebars->11->642", + "default-mobile.handlebars->11->646", "default.handlebars->47->1406", "default.handlebars->47->1410" ] @@ -68051,8 +68070,8 @@ "zh-cht": "只顯示自己的事件", "hu": "Csak saját események megjelenítése", "xloc": [ - "default-mobile.handlebars->11->942", - "default.handlebars->47->2309" + "default-mobile.handlebars->11->943", + "default.handlebars->47->2311" ] }, { @@ -68103,7 +68122,7 @@ "zh-cht": "顯示流量", "hu": "Forgalom megjelenítése", "xloc": [ - "default.handlebars->47->3121" + "default.handlebars->47->3123" ] }, { @@ -68130,7 +68149,7 @@ "zh-cht": "顯示連接工具欄", "hu": "Kapcsolat eszköztár megjelenítése", "xloc": [ - "default.handlebars->47->2265" + "default.handlebars->47->2267" ] }, { @@ -68265,8 +68284,8 @@ "zh-cht": "顯示1分鐘", "hu": "Megjelenítés 1 percen keresztül", "xloc": [ - "default.handlebars->47->2710", - "default.handlebars->47->2742" + "default.handlebars->47->2712", + "default.handlebars->47->2744" ] }, { @@ -68303,8 +68322,8 @@ "zh-cht": "顯示10秒", "hu": "Megjelenítés 10 percen keresztül", "xloc": [ - "default.handlebars->47->2709", - "default.handlebars->47->2741" + "default.handlebars->47->2711", + "default.handlebars->47->2743" ] }, { @@ -68351,8 +68370,8 @@ "zh-cht": "顯示5分鐘", "hu": "Megjelenítés 5 percen keresztül", "xloc": [ - "default.handlebars->47->2711", - "default.handlebars->47->2743" + "default.handlebars->47->2713", + "default.handlebars->47->2745" ] }, { @@ -68391,8 +68410,8 @@ "xloc": [ "default.handlebars->47->1167", "default.handlebars->47->1181", - "default.handlebars->47->2708", - "default.handlebars->47->2740", + "default.handlebars->47->2710", + "default.handlebars->47->2742", "default.handlebars->47->763" ] }, @@ -68709,8 +68728,8 @@ "de": "Signal", "es": "Signal", "xloc": [ - "default.handlebars->47->1753", - "default.handlebars->47->2976" + "default.handlebars->47->1755", + "default.handlebars->47->2978" ] }, { @@ -68745,8 +68764,8 @@ "zh-cht": "簡單管理員控制模式(ACM)", "hu": "Egyszerű Admin Control Mode (ACM)", "xloc": [ - "default.handlebars->47->2160", - "default.handlebars->47->2218" + "default.handlebars->47->2162", + "default.handlebars->47->2220" ] }, { @@ -68773,8 +68792,8 @@ "zh-cht": "簡單客戶端控制模式(CCM)", "hu": "Simple Client Control Mode (CCM)", "xloc": [ - "default.handlebars->47->2158", - "default.handlebars->47->2222" + "default.handlebars->47->2160", + "default.handlebars->47->2224" ] }, { @@ -68802,7 +68821,7 @@ "hu": "szindhi", "xloc": [ "default-mobile.handlebars->11->248", - "default.handlebars->47->1937", + "default.handlebars->47->1939", "login2.handlebars->7->145" ] }, @@ -68831,7 +68850,7 @@ "hu": "szingaléz", "xloc": [ "default-mobile.handlebars->11->249", - "default.handlebars->47->1938", + "default.handlebars->47->1940", "login2.handlebars->7->146" ] }, @@ -68888,7 +68907,7 @@ "zh-cht": "單點登錄", "hu": "Egyszeri bejelentkezés (SSO)", "xloc": [ - "default.handlebars->47->3170" + "default.handlebars->47->3172" ] }, { @@ -68939,8 +68958,8 @@ "zh-cht": "尺寸", "hu": "Méret", "xloc": [ - "default.handlebars->47->3069", - "default.handlebars->47->3090", + "default.handlebars->47->3071", + "default.handlebars->47->3092", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSize" ] }, @@ -68968,7 +68987,7 @@ "zh-cht": "縮放:100%", "hu": "Méret: 100%", "xloc": [ - "default.handlebars->47->1558", + "default.handlebars->47->1560", "sharing.handlebars->11->85" ] }, @@ -68996,7 +69015,7 @@ "zh-cht": "縮放:125%", "hu": "Méret: 125%", "xloc": [ - "default.handlebars->47->1559", + "default.handlebars->47->1561", "sharing.handlebars->11->86" ] }, @@ -69024,7 +69043,7 @@ "zh-cht": "縮放:150%", "hu": "Méret: 150%", "xloc": [ - "default.handlebars->47->1560", + "default.handlebars->47->1562", "sharing.handlebars->11->87" ] }, @@ -69052,7 +69071,7 @@ "zh-cht": "縮放:200%", "hu": "Méret: 200%", "xloc": [ - "default.handlebars->47->1561", + "default.handlebars->47->1563", "sharing.handlebars->11->88" ] }, @@ -69061,8 +69080,8 @@ "nl": "Slack", "pl": "Slack", "xloc": [ - "default.handlebars->47->1749", - "default.handlebars->47->2972" + "default.handlebars->47->1751", + "default.handlebars->47->2974" ] }, { @@ -69070,8 +69089,8 @@ "nl": "Slack Webhook Setup", "pl": "Instalacja Slack Webhook", "xloc": [ - "default.handlebars->47->1759", - "default.handlebars->47->2982" + "default.handlebars->47->1761", + "default.handlebars->47->2984" ] }, { @@ -69190,7 +69209,7 @@ "hu": "szlovák", "xloc": [ "default-mobile.handlebars->11->251", - "default.handlebars->47->1940", + "default.handlebars->47->1942", "login2.handlebars->7->148" ] }, @@ -69219,7 +69238,7 @@ "hu": "szlovén", "xloc": [ "default-mobile.handlebars->11->252", - "default.handlebars->47->1941", + "default.handlebars->47->1943", "login2.handlebars->7->149" ] }, @@ -69331,8 +69350,8 @@ "zh-cht": "軟斷開代理", "hu": "Agent lecsatlakoztatása", "xloc": [ - "default-mobile.handlebars->11->887", - "default.handlebars->47->1726" + "default-mobile.handlebars->11->888", + "default.handlebars->47->1728" ] }, { @@ -69415,7 +69434,7 @@ "hu": "somani", "xloc": [ "default-mobile.handlebars->11->253", - "default.handlebars->47->1942", + "default.handlebars->47->1944", "login2.handlebars->7->150" ] }, @@ -69444,7 +69463,7 @@ "hu": "szorbiai", "xloc": [ "default-mobile.handlebars->11->254", - "default.handlebars->47->1943", + "default.handlebars->47->1945", "login2.handlebars->7->151" ] }, @@ -69678,7 +69697,7 @@ "pl": "Przestrzeń", "es": "Espacio", "xloc": [ - "default-mobile.handlebars->11->627", + "default-mobile.handlebars->11->628", "default.handlebars->47->1393" ] }, @@ -69707,7 +69726,7 @@ "hu": "spanyol", "xloc": [ "default-mobile.handlebars->11->255", - "default.handlebars->47->1944", + "default.handlebars->47->1946", "login2.handlebars->7->152" ] }, @@ -69736,7 +69755,7 @@ "hu": "spanyol (Argentína)", "xloc": [ "default-mobile.handlebars->11->256", - "default.handlebars->47->1945", + "default.handlebars->47->1947", "login2.handlebars->7->153" ] }, @@ -69765,7 +69784,7 @@ "hu": "spanyol (Bolívia)", "xloc": [ "default-mobile.handlebars->11->257", - "default.handlebars->47->1946", + "default.handlebars->47->1948", "login2.handlebars->7->154" ] }, @@ -69794,7 +69813,7 @@ "hu": "spanyol (Chile)", "xloc": [ "default-mobile.handlebars->11->258", - "default.handlebars->47->1947", + "default.handlebars->47->1949", "login2.handlebars->7->155" ] }, @@ -69823,7 +69842,7 @@ "hu": "spanyol (Kolumbia)", "xloc": [ "default-mobile.handlebars->11->259", - "default.handlebars->47->1948", + "default.handlebars->47->1950", "login2.handlebars->7->156" ] }, @@ -69852,7 +69871,7 @@ "hu": "spanyol (Costa Rica)", "xloc": [ "default-mobile.handlebars->11->260", - "default.handlebars->47->1949", + "default.handlebars->47->1951", "login2.handlebars->7->157" ] }, @@ -69881,7 +69900,7 @@ "hu": "spanyol (Dominikai Köztársaság)", "xloc": [ "default-mobile.handlebars->11->261", - "default.handlebars->47->1950", + "default.handlebars->47->1952", "login2.handlebars->7->158" ] }, @@ -69910,7 +69929,7 @@ "hu": "spanyol (Ecuador)", "xloc": [ "default-mobile.handlebars->11->262", - "default.handlebars->47->1951", + "default.handlebars->47->1953", "login2.handlebars->7->159" ] }, @@ -69939,7 +69958,7 @@ "hu": "spanyol (El Salvador)", "xloc": [ "default-mobile.handlebars->11->263", - "default.handlebars->47->1952", + "default.handlebars->47->1954", "login2.handlebars->7->160" ] }, @@ -69968,7 +69987,7 @@ "hu": "spanyol (Guatemala)", "xloc": [ "default-mobile.handlebars->11->264", - "default.handlebars->47->1953", + "default.handlebars->47->1955", "login2.handlebars->7->161" ] }, @@ -69997,7 +70016,7 @@ "hu": "spanyol (Honduras)", "xloc": [ "default-mobile.handlebars->11->265", - "default.handlebars->47->1954", + "default.handlebars->47->1956", "login2.handlebars->7->162" ] }, @@ -70026,7 +70045,7 @@ "hu": "spanyol (Mexikó)", "xloc": [ "default-mobile.handlebars->11->266", - "default.handlebars->47->1955", + "default.handlebars->47->1957", "login2.handlebars->7->163" ] }, @@ -70055,7 +70074,7 @@ "hu": "spanyol (Nicaragua)", "xloc": [ "default-mobile.handlebars->11->267", - "default.handlebars->47->1956", + "default.handlebars->47->1958", "login2.handlebars->7->164" ] }, @@ -70084,7 +70103,7 @@ "hu": "spanyol (Panama)", "xloc": [ "default-mobile.handlebars->11->268", - "default.handlebars->47->1957", + "default.handlebars->47->1959", "login2.handlebars->7->165" ] }, @@ -70113,7 +70132,7 @@ "hu": "spanyol (Paraguay)", "xloc": [ "default-mobile.handlebars->11->269", - "default.handlebars->47->1958", + "default.handlebars->47->1960", "login2.handlebars->7->166" ] }, @@ -70142,7 +70161,7 @@ "hu": "spanyol (Peru)", "xloc": [ "default-mobile.handlebars->11->270", - "default.handlebars->47->1959", + "default.handlebars->47->1961", "login2.handlebars->7->167" ] }, @@ -70171,7 +70190,7 @@ "hu": "spanyol (Puerto Rico)", "xloc": [ "default-mobile.handlebars->11->271", - "default.handlebars->47->1960", + "default.handlebars->47->1962", "login2.handlebars->7->168" ] }, @@ -70200,7 +70219,7 @@ "hu": "spanyol (Spanyolország)", "xloc": [ "default-mobile.handlebars->11->272", - "default.handlebars->47->1961", + "default.handlebars->47->1963", "login2.handlebars->7->169" ] }, @@ -70229,7 +70248,7 @@ "hu": "spanyol (Uruguay)", "xloc": [ "default-mobile.handlebars->11->273", - "default.handlebars->47->1962", + "default.handlebars->47->1964", "login2.handlebars->7->170" ] }, @@ -70258,7 +70277,7 @@ "hu": "spanyol (Venezuela)", "xloc": [ "default-mobile.handlebars->11->274", - "default.handlebars->47->1963", + "default.handlebars->47->1965", "login2.handlebars->7->171" ] }, @@ -70267,8 +70286,8 @@ "nl": "SpecVersion", "pl": "Wersja", "xloc": [ - "default-mobile.handlebars->11->817", - "default.handlebars->47->1655" + "default-mobile.handlebars->11->818", + "default.handlebars->47->1657" ] }, { @@ -70295,7 +70314,7 @@ "zh-cht": "特殊鍵", "hu": "Speciális billentyűk", "xloc": [ - "default-mobile.handlebars->11->651" + "default-mobile.handlebars->11->652" ] }, { @@ -70432,8 +70451,8 @@ "default.handlebars->47->1377", "default.handlebars->47->286", "default.handlebars->47->291", - "default.handlebars->47->3067", - "default.handlebars->47->3092", + "default.handlebars->47->3069", + "default.handlebars->47->3094", "sharing.handlebars->11->14" ] }, @@ -70523,7 +70542,7 @@ "zh-cht": "已啟動 Web-RDP 會話 \\\"{0}\\\"。", "hu": "Elindítva Web-RDP munkamenet \\\"{0}\\\".", "xloc": [ - "default.handlebars->47->2619" + "default.handlebars->47->2621" ] }, { @@ -70550,7 +70569,7 @@ "zh-cht": "已啟動 Web-SFTP 會話 \\\"{0}\\\"。", "hu": "Elindítva Web-SFTP munkamenet \\\"{0}\\\".", "xloc": [ - "default.handlebars->47->2618" + "default.handlebars->47->2620" ] }, { @@ -70577,7 +70596,7 @@ "zh-cht": "已啟動 Web-SSH 會話 \\\"{0}\\\"。", "hu": "Elindítva Web-SSH munkamenet \\\"{0}\\\".", "xloc": [ - "default.handlebars->47->2617" + "default.handlebars->47->2619" ] }, { @@ -70604,7 +70623,7 @@ "zh-cht": "已啟動 Web-VNC 會話 \\\"{0}\\\"。", "hu": "Elindítva Web-VNC munkamenet \\\"{0}\\\".", "xloc": [ - "default.handlebars->47->2620" + "default.handlebars->47->2622" ] }, { @@ -70631,7 +70650,7 @@ "zh-cht": "啟動桌面多路復用會話", "hu": "Elindított asztali multiplex munkamenet", "xloc": [ - "default.handlebars->47->2475" + "default.handlebars->47->2477" ] }, { @@ -70658,7 +70677,7 @@ "zh-cht": "已啟動桌面多路復用會話 \\\"{0}\\\"", "hu": "Elindított asztali multiplex munkamenet \\\"{0}\\\"", "xloc": [ - "default.handlebars->47->2614" + "default.handlebars->47->2616" ] }, { @@ -70685,7 +70704,7 @@ "zh-cht": "從{1}到{2}開始了桌面會話“{0}”", "hu": "Elindított asztali munkamenet \\\"{0}\\\" {1} és {2} között", "xloc": [ - "default.handlebars->47->2484" + "default.handlebars->47->2486" ] }, { @@ -70712,7 +70731,7 @@ "zh-cht": "從{1}到{2}開始文件管理會話“{0}”", "hu": "Elindított fájl munkamenet \\\"{0}\\\" {1} és {2} között", "xloc": [ - "default.handlebars->47->2485" + "default.handlebars->47->2487" ] }, { @@ -70739,7 +70758,7 @@ "zh-cht": "已啟動本地中繼會話 \\\"{0}\\\",協議 {1} 到 {2}", "hu": "Elindított helyi relay munkamenet \\\"{0}\\\", protocol {1} és {2} között", "xloc": [ - "default.handlebars->47->2589" + "default.handlebars->47->2591" ] }, { @@ -70766,7 +70785,7 @@ "zh-cht": "從{1}到{2}開始中繼會話“{0}”", "hu": "Elindított relay munkamenet \\\"{0}\\\" {1} és {2} között", "xloc": [ - "default.handlebars->47->2482" + "default.handlebars->47->2484" ] }, { @@ -70793,7 +70812,7 @@ "zh-cht": "使用Toast通知啟動遠程桌面", "hu": "Távoli asztal indítása alkalmazásértesítéssel", "xloc": [ - "default.handlebars->47->2504" + "default.handlebars->47->2506" ] }, { @@ -70820,7 +70839,7 @@ "zh-cht": "啟動遠程桌面,而無需通知", "hu": "Távoli asztal indítása értesítés nélkül", "xloc": [ - "default.handlebars->47->2505" + "default.handlebars->47->2507" ] }, { @@ -70847,7 +70866,7 @@ "zh-cht": "啟動帶有Toast通知的遠程文件", "hu": "Távoli fájelérés indítása az alkalmazás értesítésével", "xloc": [ - "default.handlebars->47->2511" + "default.handlebars->47->2513" ] }, { @@ -70874,7 +70893,7 @@ "zh-cht": "已啟動的遠程文件,恕不另行通知", "hu": "Távoli fájelérés indítása az alkalmazás értesítés nélkül", "xloc": [ - "default.handlebars->47->2512" + "default.handlebars->47->2514" ] }, { @@ -70901,7 +70920,7 @@ "zh-cht": "從{1}到{2}開始了終端會話“{0}”", "hu": "Elindítva \\\"{0}\\\" terminál munkamenetet {1}-ről {2}-re", "xloc": [ - "default.handlebars->47->2483" + "default.handlebars->47->2485" ] }, { @@ -70955,7 +70974,7 @@ "zh-cht": "接受本地用戶後啟動遠程桌面", "hu": "Távoli asztal indítása a helyi felhasználó elfogadása után", "xloc": [ - "default.handlebars->47->2499" + "default.handlebars->47->2501" ] }, { @@ -70982,7 +71001,7 @@ "zh-cht": "本地用戶接受後啟動遠程文件", "hu": "Távoli fájl elérés indítása a helyi felhasználó elfogadása után", "xloc": [ - "default.handlebars->47->2509" + "default.handlebars->47->2511" ] }, { @@ -71112,10 +71131,10 @@ "zh-cht": "狀態", "hu": "Státusz", "xloc": [ - "default-mobile.handlebars->11->852", - "default.handlebars->47->1690", - "default.handlebars->47->3007", - "default.handlebars->47->3085", + "default-mobile.handlebars->11->853", + "default.handlebars->47->1692", + "default.handlebars->47->3009", + "default.handlebars->47->3087", "default.handlebars->container->column_l->p42->p42tbl->1->0->7" ] }, @@ -71300,8 +71319,8 @@ "zh-cht": "儲存", "hu": "Háttértár", "xloc": [ - "default-mobile.handlebars->11->853", - "default.handlebars->47->1691" + "default-mobile.handlebars->11->854", + "default.handlebars->47->1693" ] }, { @@ -71309,8 +71328,8 @@ "nl": "Opslagvolumes", "pl": "Woluminy Pamięci", "xloc": [ - "default-mobile.handlebars->11->865", - "default.handlebars->47->1703" + "default-mobile.handlebars->11->866", + "default.handlebars->47->1705" ] }, { @@ -71364,7 +71383,7 @@ "zh-cht": "超出儲存空間", "hu": "Tároló kapacitás limit túllépése", "xloc": [ - "default.handlebars->47->2428" + "default.handlebars->47->2430" ] }, { @@ -71391,7 +71410,7 @@ "zh-cht": "存儲密鑰", "hu": "Tárolt kulcs", "xloc": [ - "default-mobile.handlebars->11->659", + "default-mobile.handlebars->11->660", "default.handlebars->47->1474", "ssh.handlebars->3->6" ] @@ -71420,7 +71439,7 @@ "zh-cht": "強", "hu": "erős jelszó", "xloc": [ - "default.handlebars->47->2068" + "default.handlebars->47->2070" ] }, { @@ -71479,7 +71498,7 @@ "zh-cht": "主題", "hu": "Tárgy", "xloc": [ - "default.handlebars->47->2705" + "default.handlebars->47->2707" ] }, { @@ -71541,8 +71560,8 @@ "zh-cht": "成功登錄", "hu": "Sikeres bejelentkezés", "xloc": [ - "default.handlebars->47->3155", - "default.handlebars->47->3194" + "default.handlebars->47->3157", + "default.handlebars->47->3196" ] }, { @@ -71651,7 +71670,7 @@ "hu": "sutu", "xloc": [ "default-mobile.handlebars->11->275", - "default.handlebars->47->1964", + "default.handlebars->47->1966", "login2.handlebars->7->172" ] }, @@ -71680,7 +71699,7 @@ "hu": "szuahéli", "xloc": [ "default-mobile.handlebars->11->276", - "default.handlebars->47->1965", + "default.handlebars->47->1967", "login2.handlebars->7->173" ] }, @@ -71738,7 +71757,7 @@ "hu": "svéd", "xloc": [ "default-mobile.handlebars->11->277", - "default.handlebars->47->1966", + "default.handlebars->47->1968", "login2.handlebars->7->174" ] }, @@ -71767,7 +71786,7 @@ "hu": "svéd (Finnország)", "xloc": [ "default-mobile.handlebars->11->278", - "default.handlebars->47->1967", + "default.handlebars->47->1969", "login2.handlebars->7->175" ] }, @@ -71796,7 +71815,7 @@ "hu": "svéd (Svédország)", "xloc": [ "default-mobile.handlebars->11->279", - "default.handlebars->47->1968", + "default.handlebars->47->1970", "login2.handlebars->7->176" ] }, @@ -71855,7 +71874,7 @@ "zh-cht": "將英特爾AMT切換到管理員控制模式(ACM)。", "hu": "Állítsa az Intel AMT-t Admin Control Mode (ACM) módba.", "xloc": [ - "default.handlebars->47->2178" + "default.handlebars->47->2180" ] }, { @@ -71937,7 +71956,7 @@ "zh-cht": "將伺服器裝置名稱同步到主機名稱", "hu": "Az eszköz nevének szinkronizálása kiszolgálón a hostnévvel", "xloc": [ - "default.handlebars->47->2274" + "default.handlebars->47->2276" ] }, { @@ -71964,7 +71983,7 @@ "zh-cht": "將服務器設備名稱同步到端口名稱", "hu": "Az eszköz nevének szinkronizálása kiszolgálón a portnévvel", "xloc": [ - "default.handlebars->47->2273" + "default.handlebars->47->2275" ] }, { @@ -72316,8 +72335,8 @@ "zh-cht": "未設置TLS", "hu": "TLS nincs beállítva", "xloc": [ - "default-mobile.handlebars->11->798", - "default.handlebars->47->1636" + "default-mobile.handlebars->11->799", + "default.handlebars->47->1638" ] }, { @@ -72344,7 +72363,7 @@ "zh-cht": "需要TLS加密", "hu": "TLS security szükséges", "xloc": [ - "default-mobile.handlebars->11->599", + "default-mobile.handlebars->11->600", "default.handlebars->47->1282", "default.handlebars->47->508" ] @@ -72353,8 +72372,8 @@ "en": "TPM", "nl": "TPM", "xloc": [ - "default-mobile.handlebars->11->829", - "default.handlebars->47->1667" + "default-mobile.handlebars->11->830", + "default.handlebars->47->1669" ] }, { @@ -72381,7 +72400,7 @@ "zh-cht": "Tab", "hu": "Tab", "xloc": [ - "default-mobile.handlebars->11->624", + "default-mobile.handlebars->11->625", "default-mobile.handlebars->dialog->3->dialog3->deskkeys->3", "default.handlebars->47->1390" ] @@ -72467,7 +72486,7 @@ "xloc": [ "default-mobile.handlebars->11->527", "default-mobile.handlebars->11->528", - "default-mobile.handlebars->11->612", + "default-mobile.handlebars->11->613", "default.handlebars->47->1346", "default.handlebars->47->341", "default.handlebars->47->372", @@ -72529,7 +72548,7 @@ "hu": "tamil", "xloc": [ "default-mobile.handlebars->11->280", - "default.handlebars->47->1969", + "default.handlebars->47->1971", "login2.handlebars->7->177" ] }, @@ -72538,8 +72557,8 @@ "nl": "Pauzeer bescherming", "pl": "OchronaPrzedManipulacją", "xloc": [ - "default-mobile.handlebars->11->747", - "default-mobile.handlebars->11->749", + "default-mobile.handlebars->11->748", + "default-mobile.handlebars->11->750", "default.handlebars->47->939", "default.handlebars->47->941" ] @@ -72569,7 +72588,7 @@ "hu": "tatár", "xloc": [ "default-mobile.handlebars->11->281", - "default.handlebars->47->1970", + "default.handlebars->47->1972", "login2.handlebars->7->178" ] }, @@ -72582,10 +72601,10 @@ "de": "Telegram", "es": "Telegram", "xloc": [ - "default.handlebars->47->1742", - "default.handlebars->47->1756", - "default.handlebars->47->2965", - "default.handlebars->47->2979" + "default.handlebars->47->1744", + "default.handlebars->47->1758", + "default.handlebars->47->2967", + "default.handlebars->47->2981" ] }, { @@ -72613,7 +72632,7 @@ "hu": "teluga", "xloc": [ "default-mobile.handlebars->11->282", - "default.handlebars->47->1971", + "default.handlebars->47->1973", "login2.handlebars->7->179" ] }, @@ -72645,12 +72664,12 @@ "default-mobile.handlebars->11->562", "default.handlebars->47->1074", "default.handlebars->47->1189", - "default.handlebars->47->2186", - "default.handlebars->47->2266", - "default.handlebars->47->3079", - "default.handlebars->47->3139", - "default.handlebars->47->3189", - "default.handlebars->47->3284", + "default.handlebars->47->2188", + "default.handlebars->47->2268", + "default.handlebars->47->3081", + "default.handlebars->47->3141", + "default.handlebars->47->3191", + "default.handlebars->47->3286", "default.handlebars->47->453", "default.handlebars->47->848", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevTerminal", @@ -72684,7 +72703,7 @@ "xloc": [ "default.handlebars->47->1078", "default.handlebars->47->1192", - "default.handlebars->47->2190" + "default.handlebars->47->2192" ] }, { @@ -72738,9 +72757,9 @@ "zh-cht": "終端機通知", "hu": "Terminál kapcsolat értesítés", "xloc": [ - "default.handlebars->47->2140", - "default.handlebars->47->2818", - "default.handlebars->47->2923", + "default.handlebars->47->2142", + "default.handlebars->47->2820", + "default.handlebars->47->2925", "default.handlebars->47->955" ] }, @@ -72768,9 +72787,9 @@ "zh-cht": "終端機提示", "hu": "Terminál kapcsolat engedélykérés", "xloc": [ - "default.handlebars->47->2139", - "default.handlebars->47->2817", - "default.handlebars->47->2922", + "default.handlebars->47->2141", + "default.handlebars->47->2819", + "default.handlebars->47->2924", "default.handlebars->47->954" ] }, @@ -72798,7 +72817,7 @@ "zh-cht": "終端會話", "hu": "Terminál munkamenet", "xloc": [ - "default.handlebars->47->3072" + "default.handlebars->47->3074" ] }, { @@ -72928,7 +72947,7 @@ "de": "Aufzeichnungen zu Textnotizen", "es": "Registro de Notas", "xloc": [ - "default.handlebars->47->3176" + "default.handlebars->47->3178" ] }, { @@ -72956,7 +72975,7 @@ "hu": "thai", "xloc": [ "default-mobile.handlebars->11->283", - "default.handlebars->47->1972", + "default.handlebars->47->1974", "login2.handlebars->7->180" ] }, @@ -73225,8 +73244,8 @@ "zh-cht": "目前沒有任何通知", "hu": "Jelenleg nincsenek értesítések", "xloc": [ - "default-mobile.handlebars->11->975", - "default.handlebars->47->3199" + "default-mobile.handlebars->11->976", + "default.handlebars->47->3201" ] }, { @@ -73253,8 +73272,8 @@ "zh-cht": "自上次登錄以來,此帳戶有 {0} 次登錄嘗試失敗。", "hu": "A legutóbbi bejelentkezés óta {0} sikertelen bejelentkezési kísérlet történt ebbe a fiókba.", "xloc": [ - "default-mobile.handlebars->11->996", - "default.handlebars->47->3220" + "default-mobile.handlebars->11->997", + "default.handlebars->47->3222" ] }, { @@ -73385,7 +73404,7 @@ "hu": "Ez a fiók nem jogosult új eszközcsoport létrehozására.", "xloc": [ "default-mobile.handlebars->11->330", - "default.handlebars->47->2043" + "default.handlebars->47->2045" ] }, { @@ -73412,7 +73431,7 @@ "zh-cht": "此代理具有過時的證書驗證機制,請考慮更新。", "hu": "Ennek az ügynöknek elavult tanúsítvány-érvényesítési mechanizmusa van, fontolja meg a frissítést.", "xloc": [ - "default.handlebars->47->2587" + "default.handlebars->47->2589" ] }, { @@ -73439,7 +73458,7 @@ "zh-cht": "此代理正在使用不安全的隧道,請考慮更新。", "hu": "Ez az Agent nem biztonságos alagutakat használ, fontolja meg a frissítést.", "xloc": [ - "default.handlebars->47->2588" + "default.handlebars->47->2590" ] }, { @@ -73522,10 +73541,10 @@ "zh-cht": "這是一個嘉賓分享會", "hu": "Ez egy vendégmegosztás munkamenet", "xloc": [ - "default.handlebars->47->1569", - "default.handlebars->47->2637", - "default.handlebars->47->3058", - "default.handlebars->47->3059" + "default.handlebars->47->1571", + "default.handlebars->47->2639", + "default.handlebars->47->3060", + "default.handlebars->47->3061" ] }, { @@ -73579,7 +73598,7 @@ "zh-cht": "這是舊代理版本,請考慮更新。", "hu": "Ez egy régi Agent verzió, fontolja meg a frissítését.", "xloc": [ - "default.handlebars->47->2586" + "default.handlebars->47->2588" ] }, { @@ -73630,7 +73649,7 @@ "zh-cht": "這是推薦的策略。英特爾®AMT激活和管理是完全自動化的,服務器將嘗試最大程度地利用硬件管理。", "hu": "Ez az ajánlott házirend. Az Intel® AMT aktiválása és kezelése teljesen automatizált, és a kiszolgáló igyekszik a lehető legjobban kihasználni a hardverkezelést.", "xloc": [ - "default.handlebars->47->2247" + "default.handlebars->47->2249" ] }, { @@ -73685,7 +73704,7 @@ "zh-cht": "此政策不會影響採用ACM模式的Intel® AMT的裝置。", "hu": "Ez a házirend nem érinti az Intel® AMT ACM módban működő eszközöket.", "xloc": [ - "default.handlebars->47->2244" + "default.handlebars->47->2246" ] }, { @@ -73926,7 +73945,7 @@ "hu": "tigre", "xloc": [ "default-mobile.handlebars->11->284", - "default.handlebars->47->1973", + "default.handlebars->47->1975", "login2.handlebars->7->181" ] }, @@ -73956,8 +73975,8 @@ "xloc": [ "default-mobile.handlebars->11->569", "default.handlebars->47->1235", - "default.handlebars->47->3118", - "default.handlebars->47->3123", + "default.handlebars->47->3120", + "default.handlebars->47->3125", "player.handlebars->3->17" ] }, @@ -73986,7 +74005,7 @@ "hu": "Időintervallum", "xloc": [ "default.handlebars->47->1220", - "default.handlebars->47->3119" + "default.handlebars->47->3121" ] }, { @@ -74013,7 +74032,7 @@ "zh-cht": "時間跨度", "hu": "Időtartam", "xloc": [ - "default.handlebars->47->2641" + "default.handlebars->47->2643" ] }, { @@ -74041,7 +74060,7 @@ "hu": "Időintervallum", "xloc": [ "default.handlebars->47->1216", - "default.handlebars->47->3117" + "default.handlebars->47->3119" ] }, { @@ -74068,7 +74087,7 @@ "zh-cht": "超時", "hu": "Időtúllépés", "xloc": [ - "default-mobile.handlebars->11->618", + "default-mobile.handlebars->11->619", "default.handlebars->47->1353", "sharing.handlebars->11->31", "sharing.handlebars->11->9" @@ -74306,7 +74325,7 @@ "zh-cht": "要刪除此帳戶,請在下面的兩個框中鍵入帳戶密碼,然後單擊確定。", "hu": "A fiók törléséhez írja be a fiók jelszavát mindkét mezőbe, majd kattintson az OK gombra.", "xloc": [ - "default.handlebars->47->2030" + "default.handlebars->47->2032" ] }, { @@ -75024,7 +75043,7 @@ "zh-cht": "令牌名稱", "hu": "Token név", "xloc": [ - "default.handlebars->47->2016" + "default.handlebars->47->2018" ] }, { @@ -75138,8 +75157,8 @@ "hu": "Téma", "xloc": [ "default.handlebars->47->1284", - "default.handlebars->47->1765", - "default.handlebars->47->2988" + "default.handlebars->47->1767", + "default.handlebars->47->2990" ] }, { @@ -75405,7 +75424,7 @@ "hu": "tsonga", "xloc": [ "default-mobile.handlebars->11->285", - "default.handlebars->47->1974", + "default.handlebars->47->1976", "login2.handlebars->7->182" ] }, @@ -75434,7 +75453,7 @@ "hu": "tswana", "xloc": [ "default-mobile.handlebars->11->286", - "default.handlebars->47->1975", + "default.handlebars->47->1977", "login2.handlebars->7->183" ] }, @@ -75487,7 +75506,7 @@ "hu": "török", "xloc": [ "default-mobile.handlebars->11->287", - "default.handlebars->47->1976", + "default.handlebars->47->1978", "login2.handlebars->7->184" ] }, @@ -75516,7 +75535,7 @@ "hu": "türkmén", "xloc": [ "default-mobile.handlebars->11->288", - "default.handlebars->47->1977", + "default.handlebars->47->1979", "login2.handlebars->7->185" ] }, @@ -75574,7 +75593,7 @@ "zh-cht": "關掉。", "hu": "Kapcsolja ki.", "xloc": [ - "default.handlebars->47->2602" + "default.handlebars->47->2604" ] }, { @@ -75631,7 +75650,7 @@ "zh-cht": "打開。", "hu": "Kapcsolja be.", "xloc": [ - "default.handlebars->47->2601" + "default.handlebars->47->2603" ] }, { @@ -75710,13 +75729,13 @@ "hu": "Típus", "xloc": [ "default-mobile.handlebars->11->336", - "default-mobile.handlebars->11->900", + "default-mobile.handlebars->11->901", "default.handlebars->47->1197", "default.handlebars->47->1444", - "default.handlebars->47->2054", - "default.handlebars->47->2120", - "default.handlebars->47->2219", - "default.handlebars->47->3104", + "default.handlebars->47->2056", + "default.handlebars->47->2122", + "default.handlebars->47->2221", + "default.handlebars->47->3106", "default.handlebars->47->494", "default.handlebars->container->column_l->p11->deskarea0->deskarea4->5", "sharing.handlebars->p11->deskarea0->deskarea4->3" @@ -75746,7 +75765,7 @@ "zh-cht": "輸入密鑰名稱,選擇OTP框,然後按YubiKey™上的按鈕。", "hu": "Írja be a kulcs nevét, jelölje be az OTP mezőt, és nyomja meg a gombot a YubiKey™-en.", "xloc": [ - "default.handlebars->47->1786" + "default.handlebars->47->1788" ] }, { @@ -75773,7 +75792,7 @@ "zh-cht": "輸入要新增的密鑰的名稱。", "hu": "Írja be a hozzáadni kívánt kulcs nevét.", "xloc": [ - "default.handlebars->47->1783" + "default.handlebars->47->1785" ] }, { @@ -75905,7 +75924,7 @@ "hu": "ukrán", "xloc": [ "default-mobile.handlebars->11->289", - "default.handlebars->47->1978", + "default.handlebars->47->1980", "login2.handlebars->7->186" ] }, @@ -76037,7 +76056,7 @@ "zh-cht": "在驗證電子郵件地址之前,無法訪問此功能。這是密碼恢復所必需的。轉到“我的帳戶”標籤以更改和驗證電子郵件地址。", "hu": "A funkció nem érhető el, amíg az e-mail cím nem kerül megerősítésre. Ez a jelszó helyreállításához szükséges. Menjen a \\\"Fiókom\\\" fülre az e-mail cím módosításához és ellenőrzéséhez", "xloc": [ - "default.handlebars->47->2045", + "default.handlebars->47->2047", "default.handlebars->47->864" ] }, @@ -76065,8 +76084,8 @@ "zh-cht": "在啟用兩因素身份驗證之前,無法訪問此功能。這是額外的安全性所必需的。轉到“我的帳戶”標籤,然後查看“帳戶安全性”部分。", "hu": "Nem lehet hozzáférni ehhez a funkcióhoz, amíg a kétfaktoros hitelesítés nincs engedélyezve. Ez a fokozott biztonság érdekében szükséges. Lépjen a \\\"Fiókom\\\" fülre, és tekintse meg a \\\"Fiókbiztonság\\\" részt.", "xloc": [ - "default.handlebars->47->2047", - "default.handlebars->47->3336", + "default.handlebars->47->2049", + "default.handlebars->47->3338", "default.handlebars->47->866" ] }, @@ -76094,8 +76113,8 @@ "zh-cht": "此模式下無法添加用戶", "hu": "Ebben a módban nem lehet felhasználót hozzáadni", "xloc": [ - "default-mobile.handlebars->11->992", - "default.handlebars->47->3216" + "default-mobile.handlebars->11->993", + "default.handlebars->47->3218" ] }, { @@ -76281,7 +76300,7 @@ "zh-cht": "無法導入任何設備。", "hu": "Egyetlen eszköz sem importálható.", "xloc": [ - "default.handlebars->47->2215" + "default.handlebars->47->2217" ] }, { @@ -76632,10 +76651,10 @@ "hu": "Eltávolítás", "xloc": [ "agent-translations.json", - "default-mobile.handlebars->11->964", + "default-mobile.handlebars->11->965", "default.handlebars->47->1125", "default.handlebars->47->1150", - "default.handlebars->47->2349" + "default.handlebars->47->2351" ] }, { @@ -76662,7 +76681,7 @@ "zh-cht": "卸載代理", "hu": "Agent eltávolítása", "xloc": [ - "default-mobile.handlebars->11->944", + "default-mobile.handlebars->11->945", "default.handlebars->47->1251", "default.handlebars->47->721" ] @@ -76691,7 +76710,7 @@ "zh-cht": "卸載代理/刪除設備", "hu": "Agent eltávolítása / Eszköz törlése", "xloc": [ - "default.handlebars->47->2311" + "default.handlebars->47->2313" ] }, { @@ -76757,35 +76776,35 @@ "default-mobile.handlebars->11->45", "default-mobile.handlebars->11->468", "default-mobile.handlebars->11->6", - "default-mobile.handlebars->11->788", - "default-mobile.handlebars->11->795", - "default-mobile.handlebars->11->859", - "default-mobile.handlebars->11->868", - "default-mobile.handlebars->11->870", - "default-mobile.handlebars->11->901", + "default-mobile.handlebars->11->789", + "default-mobile.handlebars->11->796", + "default-mobile.handlebars->11->860", + "default-mobile.handlebars->11->869", + "default-mobile.handlebars->11->871", + "default-mobile.handlebars->11->902", "default.handlebars->47->13", - "default.handlebars->47->1626", - "default.handlebars->47->1633", - "default.handlebars->47->1697", - "default.handlebars->47->1706", + "default.handlebars->47->1628", + "default.handlebars->47->1635", + "default.handlebars->47->1699", "default.handlebars->47->1708", + "default.handlebars->47->1710", "default.handlebars->47->187", "default.handlebars->47->188", "default.handlebars->47->189", "default.handlebars->47->191", "default.handlebars->47->193", - "default.handlebars->47->2100", - "default.handlebars->47->2101", - "default.handlebars->47->2121", - "default.handlebars->47->3051", - "default.handlebars->47->3071", - "default.handlebars->47->3078", - "default.handlebars->47->3149", - "default.handlebars->47->3150", + "default.handlebars->47->2102", + "default.handlebars->47->2103", + "default.handlebars->47->2123", + "default.handlebars->47->3053", + "default.handlebars->47->3073", + "default.handlebars->47->3080", "default.handlebars->47->3151", "default.handlebars->47->3152", "default.handlebars->47->3153", - "default.handlebars->47->3192", + "default.handlebars->47->3154", + "default.handlebars->47->3155", + "default.handlebars->47->3194", "default.handlebars->47->44", "default.handlebars->47->51", "default.handlebars->47->52", @@ -76816,8 +76835,8 @@ "zh-cht": "未知#{0}", "hu": "Ismeretlen #{0}", "xloc": [ - "default-mobile.handlebars->11->890", - "default.handlebars->47->2110" + "default-mobile.handlebars->11->891", + "default.handlebars->47->2112" ] }, { @@ -76844,7 +76863,7 @@ "zh-cht": "未知動作", "hu": "Ismeretlen Művelet", "xloc": [ - "default.handlebars->47->3253" + "default.handlebars->47->3255" ] }, { @@ -76871,8 +76890,8 @@ "zh-cht": "未知裝置", "hu": "Ismeretlen Eszköz", "xloc": [ - "default.handlebars->47->2843", - "default.handlebars->47->3037" + "default.handlebars->47->2845", + "default.handlebars->47->3039" ] }, { @@ -76899,9 +76918,9 @@ "zh-cht": "未知裝置群", "hu": "Ismeretlen Eszköz Csoport", "xloc": [ - "default.handlebars->47->2837", - "default.handlebars->47->3025", - "default.handlebars->47->3257" + "default.handlebars->47->2839", + "default.handlebars->47->3027", + "default.handlebars->47->3259" ] }, { @@ -76928,7 +76947,7 @@ "zh-cht": "未知群組", "hu": "Ismeretlen Csoport", "xloc": [ - "default.handlebars->47->3249" + "default.handlebars->47->3251" ] }, { @@ -76983,8 +77002,8 @@ "zh-cht": "未知用戶", "hu": "Ismeretlen felhasználó", "xloc": [ - "default.handlebars->47->3154", - "default.handlebars->47->3193" + "default.handlebars->47->3156", + "default.handlebars->47->3195" ] }, { @@ -77011,7 +77030,7 @@ "zh-cht": "未知用戶群", "hu": "Ismeretlen felhasználói csoport", "xloc": [ - "default.handlebars->47->3031" + "default.handlebars->47->3033" ] }, { @@ -77066,7 +77085,7 @@ "zh-cht": "密碼未知", "hu": "Ismeretlen jelszó", "xloc": [ - "default.handlebars->47->2235" + "default.handlebars->47->2237" ] }, { @@ -77094,7 +77113,7 @@ "hu": "Korlátlan", "xloc": [ "default.handlebars->47->1213", - "default.handlebars->47->1999", + "default.handlebars->47->2001", "default.handlebars->47->279", "default.handlebars->47->558", "default.handlebars->47->572" @@ -77124,7 +77143,7 @@ "zh-cht": "解鎖帳戶", "hu": "Zárolt fiók feloldása", "xloc": [ - "default.handlebars->47->2697" + "default.handlebars->47->2699" ] }, { @@ -77219,7 +77238,7 @@ "en": "Unzip To Folder", "nl": "Uitpakken naar map", "xloc": [ - "default.handlebars->47->1540" + "default.handlebars->47->1542" ] }, { @@ -77260,7 +77279,7 @@ "zh-cht": "上", "hu": "Fel", "xloc": [ - "default-mobile.handlebars->11->637", + "default-mobile.handlebars->11->638", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1", "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1", "default.handlebars->47->1402", @@ -77294,7 +77313,7 @@ "zh-cht": "最新", "hu": "Naprakész", "xloc": [ - "default.handlebars->47->3341" + "default.handlebars->47->3343" ] }, { @@ -77322,8 +77341,8 @@ "hu": "Frissítés", "xloc": [ "agent-translations.json", - "default-mobile.handlebars->11->734", - "default-mobile.handlebars->11->736", + "default-mobile.handlebars->11->735", + "default-mobile.handlebars->11->737", "default.handlebars->47->926", "default.handlebars->47->928" ] @@ -77409,14 +77428,14 @@ "hu": "Fájl feltöltése", "xloc": [ "default-mobile.handlebars->11->364", - "default-mobile.handlebars->11->697", - "default-mobile.handlebars->11->715", - "default-mobile.handlebars->11->718", - "default.handlebars->47->1537", - "default.handlebars->47->1564", - "default.handlebars->47->1567", - "default.handlebars->47->2457", - "default.handlebars->47->2467", + "default-mobile.handlebars->11->698", + "default-mobile.handlebars->11->716", + "default-mobile.handlebars->11->719", + "default.handlebars->47->1539", + "default.handlebars->47->1566", + "default.handlebars->47->1569", + "default.handlebars->47->2459", + "default.handlebars->47->2469", "default.handlebars->container->dialog->dialogBody->dialog3->d3localmode->1", "sharing.handlebars->11->65", "sharing.handlebars->11->89", @@ -77447,8 +77466,8 @@ "zh-cht": "上載mesh agent核心", "hu": "Mesh Agent Core feltöltése", "xloc": [ - "default-mobile.handlebars->11->889", - "default.handlebars->47->1728" + "default-mobile.handlebars->11->890", + "default.handlebars->47->1730" ] }, { @@ -77475,8 +77494,8 @@ "zh-cht": "上載核心檔案", "hu": "Core fájl feltöltése", "xloc": [ - "default-mobile.handlebars->11->886", - "default.handlebars->47->1725" + "default-mobile.handlebars->11->887", + "default.handlebars->47->1727" ] }, { @@ -77503,8 +77522,8 @@ "zh-cht": "上載默認伺服器核心", "hu": "Alapértelmezett server core feltöltése", "xloc": [ - "default-mobile.handlebars->11->882", - "default.handlebars->47->1721", + "default-mobile.handlebars->11->883", + "default.handlebars->47->1723", "default.handlebars->47->733", "default.handlebars->47->776" ] @@ -77614,8 +77633,8 @@ "zh-cht": "上傳恢復核心", "hu": "Recovery core feltöltése", "xloc": [ - "default-mobile.handlebars->11->884", - "default.handlebars->47->1723" + "default-mobile.handlebars->11->885", + "default.handlebars->47->1725" ] }, { @@ -77669,8 +77688,8 @@ "zh-cht": "上傳小核心", "hu": "Tiny core feltöltése", "xloc": [ - "default-mobile.handlebars->11->885", - "default.handlebars->47->1724" + "default-mobile.handlebars->11->886", + "default.handlebars->47->1726" ] }, { @@ -77697,9 +77716,9 @@ "zh-cht": "上傳將覆蓋1個檔案。繼續?", "hu": "A feltöltés 1 fájlt ír felül. Folytatja?", "xloc": [ - "default-mobile.handlebars->11->716", - "default.handlebars->47->1565", - "default.handlebars->47->2468", + "default-mobile.handlebars->11->717", + "default.handlebars->47->1567", + "default.handlebars->47->2470", "sharing.handlebars->11->90" ] }, @@ -77727,9 +77746,9 @@ "zh-cht": "上傳將覆蓋{0}個檔案。繼續?", "hu": "A feltöltés {0} fájlt felülír. Folytja?", "xloc": [ - "default-mobile.handlebars->11->717", - "default.handlebars->47->1566", - "default.handlebars->47->2469", + "default-mobile.handlebars->11->718", + "default.handlebars->47->1568", + "default.handlebars->47->2471", "sharing.handlebars->11->91" ] }, @@ -77781,7 +77800,7 @@ "zh-cht": "上傳:“{0}”", "hu": "Feltöltés: \\\"{0}\\\"", "xloc": [ - "default.handlebars->47->2519" + "default.handlebars->47->2521" ] }, { @@ -77808,7 +77827,7 @@ "zh-cht": "上傳:\\\"{0}\\\",大小:{1}", "hu": "Feltöltés: \\\"{0}\\\", Méret: {1}", "xloc": [ - "default.handlebars->47->2574" + "default.handlebars->47->2576" ] }, { @@ -77836,7 +77855,7 @@ "hu": "felső-sorbiai", "xloc": [ "default-mobile.handlebars->11->290", - "default.handlebars->47->1979", + "default.handlebars->47->1981", "login2.handlebars->7->187" ] }, @@ -77865,7 +77884,7 @@ "hu": "urdu", "xloc": [ "default-mobile.handlebars->11->291", - "default.handlebars->47->1980", + "default.handlebars->47->1982", "login2.handlebars->7->188" ] }, @@ -77893,7 +77912,7 @@ "zh-cht": "用法", "hu": "Használat", "xloc": [ - "default.handlebars->47->3303" + "default.handlebars->47->3305" ] }, { @@ -77988,7 +78007,7 @@ "de": "Als Relay benutzen", "es": "Usar como Relay", "xloc": [ - "default.handlebars->47->2315" + "default.handlebars->47->2317" ] }, { @@ -78125,8 +78144,8 @@ "zh-cht": "用過的", "hu": "Használt", "xloc": [ - "default.handlebars->47->3243", - "default.handlebars->47->3245" + "default.handlebars->47->3245", + "default.handlebars->47->3247" ] }, { @@ -78156,14 +78175,14 @@ "default.handlebars->47->1069", "default.handlebars->47->125", "default.handlebars->47->1446", - "default.handlebars->47->2182", - "default.handlebars->47->2648", - "default.handlebars->47->2678", - "default.handlebars->47->2833", - "default.handlebars->47->3097", - "default.handlebars->47->3105", - "default.handlebars->47->3109", - "default.handlebars->47->3126", + "default.handlebars->47->2184", + "default.handlebars->47->2650", + "default.handlebars->47->2680", + "default.handlebars->47->2835", + "default.handlebars->47->3099", + "default.handlebars->47->3107", + "default.handlebars->47->3111", + "default.handlebars->47->3128", "default.handlebars->47->377" ] }, @@ -78191,7 +78210,7 @@ "zh-cht": "用戶+檔案", "hu": "Felhasználó + Fájlok", "xloc": [ - "default.handlebars->47->2679" + "default.handlebars->47->2681" ] }, { @@ -78218,13 +78237,13 @@ "zh-cht": "用戶帳戶導入", "hu": "Felhasználói fiókok importálása", "xloc": [ - "default.handlebars->47->2214", - "default.handlebars->47->2718", + "default.handlebars->47->2216", "default.handlebars->47->2720", "default.handlebars->47->2722", "default.handlebars->47->2724", "default.handlebars->47->2726", - "default.handlebars->47->2728" + "default.handlebars->47->2728", + "default.handlebars->47->2730" ] }, { @@ -78251,7 +78270,7 @@ "zh-cht": "用戶帳戶", "hu": "Felhasználói fiókok", "xloc": [ - "default.handlebars->47->3262" + "default.handlebars->47->3264" ] }, { @@ -78264,7 +78283,7 @@ "de": "Benutzerauthentifizierungs-Log", "es": "Log de autenticacion de usuario", "xloc": [ - "default.handlebars->47->3324" + "default.handlebars->47->3326" ] }, { @@ -78291,9 +78310,9 @@ "zh-cht": "用戶授權", "hu": "Felhasználó és Csoport jogosultságok", "xloc": [ - "default-mobile.handlebars->11->908", + "default-mobile.handlebars->11->909", "default.handlebars->47->1065", - "default.handlebars->47->2180" + "default.handlebars->47->2182" ] }, { @@ -78321,9 +78340,9 @@ "hu": "Felhasználói hozzájárulás", "xloc": [ "default.handlebars->47->1225", - "default.handlebars->47->2146", - "default.handlebars->47->2824", - "default.handlebars->47->2929", + "default.handlebars->47->2148", + "default.handlebars->47->2826", + "default.handlebars->47->2931", "default.handlebars->47->301", "default.handlebars->47->961" ] @@ -78353,11 +78372,11 @@ "hu": "Felhasználó csoport", "xloc": [ "default.handlebars->47->1068", - "default.handlebars->47->2286", - "default.handlebars->47->2287", - "default.handlebars->47->2793", - "default.handlebars->47->3033", - "default.handlebars->47->3054" + "default.handlebars->47->2288", + "default.handlebars->47->2289", + "default.handlebars->47->2795", + "default.handlebars->47->3035", + "default.handlebars->47->3056" ] }, { @@ -78411,7 +78430,7 @@ "zh-cht": "用戶群成員", "hu": "Felhasználói csoport tagságok", "xloc": [ - "default.handlebars->47->3030" + "default.handlebars->47->3032" ] }, { @@ -78438,7 +78457,7 @@ "zh-cht": "用戶識別碼", "hu": "User ID", "xloc": [ - "default-mobile.handlebars->11->969" + "default-mobile.handlebars->11->970" ] }, { @@ -78465,9 +78484,9 @@ "zh-cht": "用戶識別碼", "hu": "Felhasználó azonosító", "xloc": [ - "default.handlebars->47->2357", - "default.handlebars->47->2880", - "default.handlebars->47->2881" + "default.handlebars->47->2359", + "default.handlebars->47->2882", + "default.handlebars->47->2883" ] }, { @@ -78494,8 +78513,8 @@ "zh-cht": "用戶標識符", "hu": "Felhasználó azonosítók", "xloc": [ - "default.handlebars->47->2284", - "default.handlebars->47->2864" + "default.handlebars->47->2286", + "default.handlebars->47->2866" ] }, { @@ -78549,7 +78568,7 @@ "zh-cht": "用戶列表輸出", "hu": "Felhasználó lista exportálása", "xloc": [ - "default.handlebars->47->2735" + "default.handlebars->47->2737" ] }, { @@ -78576,7 +78595,7 @@ "zh-cht": "用戶登錄", "hu": "Felhasználói bejelentkezések", "xloc": [ - "default.handlebars->47->3102" + "default.handlebars->47->3104" ] }, { @@ -78603,8 +78622,8 @@ "zh-cht": "用戶名", "hu": "Felhasználó Név", "xloc": [ - "default-mobile.handlebars->11->968", - "default.handlebars->47->2356" + "default-mobile.handlebars->11->969", + "default.handlebars->47->2358" ] }, { @@ -78735,7 +78754,7 @@ "zh-cht": "用戶節", "hu": "Felhasználó munkamenetek", "xloc": [ - "default.handlebars->47->3294" + "default.handlebars->47->3296" ] }, { @@ -78793,7 +78812,7 @@ "zh-cht": "用戶流量使用", "hu": "Felhasználói forgalom", "xloc": [ - "default.handlebars->47->3101" + "default.handlebars->47->3103" ] }, { @@ -78901,8 +78920,8 @@ "zh-cht": "用戶已存在", "hu": "A felhasználó már létezik", "xloc": [ - "default-mobile.handlebars->11->991", - "default.handlebars->47->3215" + "default-mobile.handlebars->11->992", + "default.handlebars->47->3217" ] }, { @@ -78931,8 +78950,8 @@ "xloc": [ "default-mobile.handlebars->11->302", "default-mobile.handlebars->11->304", - "default.handlebars->47->1991", - "default.handlebars->47->1993" + "default.handlebars->47->1993", + "default.handlebars->47->1995" ] }, { @@ -78959,7 +78978,7 @@ "zh-cht": "用戶組已更改:{0}", "hu": "Fellhasználói csoport módosítva: {0}", "xloc": [ - "default.handlebars->47->2548" + "default.handlebars->47->2550" ] }, { @@ -78986,7 +79005,7 @@ "zh-cht": "已創建用戶組:{0}", "hu": "Fellhasználói csoport létrehozva: {0}", "xloc": [ - "default.handlebars->47->2538" + "default.handlebars->47->2540" ] }, { @@ -79013,7 +79032,7 @@ "zh-cht": "用戶組成員身份已更改:{0}", "hu": "Felhasználói csoport tagsága megváltozott: {0}", "xloc": [ - "default.handlebars->47->2536" + "default.handlebars->47->2538" ] }, { @@ -79026,7 +79045,7 @@ "de": "Benutzergruppen-Log", "es": "Registro de grupos de usuario", "xloc": [ - "default.handlebars->47->3183" + "default.handlebars->47->3185" ] }, { @@ -79070,8 +79089,8 @@ "de": "Nutzerschlüssel", "es": "Clave de usuario", "xloc": [ - "default.handlebars->47->1764", - "default.handlebars->47->2987" + "default.handlebars->47->1766", + "default.handlebars->47->2989" ] }, { @@ -79098,7 +79117,7 @@ "zh-cht": "用戶從 {0}、{1}、{2} 嘗試登錄鎖定帳戶", "hu": "Felhasználó bejelentkezési kísérlet zárolt fiókhoz innen: {0}, {1}, {2}", "xloc": [ - "default.handlebars->47->2578" + "default.handlebars->47->2580" ] }, { @@ -79125,7 +79144,7 @@ "zh-cht": "使用來自 {0}、{1}、{2} 的錯誤第二因素的用戶登錄嘗試", "hu": "Helytelen 2 faktoros felhasználói bejelentkezési kisérlet innen: {0}, {1}, {2}", "xloc": [ - "default.handlebars->47->2577" + "default.handlebars->47->2579" ] }, { @@ -79152,7 +79171,7 @@ "zh-cht": "用戶通知已更改", "hu": "Felhasználói értesítések megváltoztak", "xloc": [ - "default.handlebars->47->2599" + "default.handlebars->47->2601" ] }, { @@ -79165,7 +79184,7 @@ "de": "Benutzeraufzeichnungen", "es": "Registros de Usuario", "xloc": [ - "default.handlebars->47->3173" + "default.handlebars->47->3175" ] }, { @@ -79192,8 +79211,8 @@ "zh-cht": "未找到用戶 {0}。", "hu": "{0} felhasználó nem található.", "xloc": [ - "default-mobile.handlebars->11->999", - "default.handlebars->47->3223" + "default-mobile.handlebars->11->1000", + "default.handlebars->47->3225" ] }, { @@ -79273,19 +79292,19 @@ "zh-cht": "用戶名", "hu": "Felhasználó név", "xloc": [ - "default-mobile.handlebars->11->595", - "default-mobile.handlebars->11->665", - "default-mobile.handlebars->11->904", + "default-mobile.handlebars->11->596", + "default-mobile.handlebars->11->666", + "default-mobile.handlebars->11->905", "default.handlebars->47->1278", "default.handlebars->47->1370", "default.handlebars->47->1480", - "default.handlebars->47->1768", - "default.handlebars->47->2063", - "default.handlebars->47->2078", - "default.handlebars->47->2083", - "default.handlebars->47->2124", - "default.handlebars->47->2747", - "default.handlebars->47->2991", + "default.handlebars->47->1770", + "default.handlebars->47->2065", + "default.handlebars->47->2080", + "default.handlebars->47->2085", + "default.handlebars->47->2126", + "default.handlebars->47->2749", + "default.handlebars->47->2993", "default.handlebars->47->332", "default.handlebars->47->503", "login2.handlebars->centralTable->1->0->logincell->loginpanel->loginpanelform->loginuserpassdiv->1->1->0->1", @@ -79320,8 +79339,8 @@ "zh-cht": "用戶名密碼", "hu": "Felhasználónév és Jelszó", "xloc": [ - "default-mobile.handlebars->11->660", - "default-mobile.handlebars->11->663", + "default-mobile.handlebars->11->661", + "default-mobile.handlebars->11->664", "default.handlebars->47->1475", "default.handlebars->47->1478", "ssh.handlebars->3->10", @@ -79381,8 +79400,8 @@ "zh-cht": "用戶名和密鑰", "hu": "Felhasználó néc és kulcs", "xloc": [ - "default-mobile.handlebars->11->661", - "default-mobile.handlebars->11->664", + "default-mobile.handlebars->11->662", + "default-mobile.handlebars->11->665", "default.handlebars->47->1476", "default.handlebars->47->1479", "ssh.handlebars->3->11", @@ -79430,8 +79449,8 @@ "de": "Benutzername:0000", "es": "Usuario:0000", "xloc": [ - "default.handlebars->47->1761", - "default.handlebars->47->2984" + "default.handlebars->47->1763", + "default.handlebars->47->2986" ] }, { @@ -79458,9 +79477,9 @@ "zh-cht": "用戶", "hu": "Felhasználók", "xloc": [ - "default.handlebars->47->2781", - "default.handlebars->47->2825", - "default.handlebars->47->3293", + "default.handlebars->47->2783", + "default.handlebars->47->2827", + "default.handlebars->47->3295", "default.handlebars->container->topbar->1->1->UsersSubMenuSpan->UsersSubMenu->1->0->UsersGeneral" ] }, @@ -79488,7 +79507,7 @@ "zh-cht": "用戶節", "hu": "Felhasználói munkamenetek", "xloc": [ - "default.handlebars->47->3266" + "default.handlebars->47->3268" ] }, { @@ -79515,7 +79534,7 @@ "zh-cht": "用戶視圖", "hu": "Felhasználók megtekintése", "xloc": [ - "default.handlebars->47->2714" + "default.handlebars->47->2716" ] }, { @@ -79542,8 +79561,8 @@ "zh-cht": "未找到用戶 {0}。", "hu": "{0} felhasználók nem találhatóak.", "xloc": [ - "default-mobile.handlebars->11->1000", - "default.handlebars->47->3224" + "default-mobile.handlebars->11->1001", + "default.handlebars->47->3226" ] }, { @@ -79680,7 +79699,7 @@ "zh-cht": "驗證電郵", "hu": "Email Érvényesít", "xloc": [ - "default.handlebars->47->2692" + "default.handlebars->47->2694" ] }, { @@ -79707,8 +79726,8 @@ "zh-cht": "驗證異常", "hu": "Érvényesítési kivétel", "xloc": [ - "default-mobile.handlebars->11->993", - "default.handlebars->47->3217" + "default-mobile.handlebars->11->994", + "default.handlebars->47->3219" ] }, { @@ -79790,7 +79809,7 @@ "hu": "venda", "xloc": [ "default-mobile.handlebars->11->292", - "default.handlebars->47->1981", + "default.handlebars->47->1983", "login2.handlebars->7->189" ] }, @@ -79818,10 +79837,10 @@ "zh-cht": "供應商", "hu": "Forgalmazó", "xloc": [ - "default-mobile.handlebars->11->804", - "default-mobile.handlebars->11->809", - "default.handlebars->47->1642", - "default.handlebars->47->1647" + "default-mobile.handlebars->11->805", + "default-mobile.handlebars->11->810", + "default.handlebars->47->1644", + "default.handlebars->47->1649" ] }, { @@ -79877,7 +79896,7 @@ "zh-cht": "已驗證", "hu": "Megerősítve", "xloc": [ - "default.handlebars->47->3009" + "default.handlebars->47->3011" ] }, { @@ -79917,7 +79936,7 @@ "de": "Verifizierte Nutzerkennung", "es": "Usuario Verificado", "xloc": [ - "default.handlebars->47->1738" + "default.handlebars->47->1740" ] }, { @@ -79929,7 +79948,7 @@ "de": "Verifizierter Benachrichtigungsaccount", "es": "Cuenta de mensajes Verificada", "xloc": [ - "default.handlebars->47->2689" + "default.handlebars->47->2691" ] }, { @@ -79941,7 +79960,7 @@ "de": "Verifizierter Benachrichtigungsaccount des Benutzers {0}", "es": "Se verifico la cuenta de Mensajes de {0}", "xloc": [ - "default.handlebars->47->2625" + "default.handlebars->47->2627" ] }, { @@ -79969,8 +79988,8 @@ "hu": "Megerősített telefonszám ", "xloc": [ "default-mobile.handlebars->11->96", - "default.handlebars->47->1732", - "default.handlebars->47->2687" + "default.handlebars->47->1734", + "default.handlebars->47->2689" ] }, { @@ -79997,7 +80016,7 @@ "zh-cht": "用戶{0}的已驗證電話號碼", "hu": "Megerősített telefonszám {0} felhasználóhoz", "xloc": [ - "default.handlebars->47->2565" + "default.handlebars->47->2567" ] }, { @@ -80079,14 +80098,14 @@ "zh-cht": "版", "hu": "Verzió", "xloc": [ - "default-mobile.handlebars->11->721", - "default-mobile.handlebars->11->787", - "default-mobile.handlebars->11->805", - "default-mobile.handlebars->11->812", - "default.handlebars->47->1575", - "default.handlebars->47->1625", - "default.handlebars->47->1643", - "default.handlebars->47->1650", + "default-mobile.handlebars->11->722", + "default-mobile.handlebars->11->788", + "default-mobile.handlebars->11->806", + "default-mobile.handlebars->11->813", + "default.handlebars->47->1577", + "default.handlebars->47->1627", + "default.handlebars->47->1645", + "default.handlebars->47->1652", "default.handlebars->container->column_l->p42->p42tbl->1->0->5" ] }, @@ -80114,7 +80133,7 @@ "zh-cht": "版本不兼容,請先升級你的MeshCentral", "hu": "Nem kompatibilis verzió, kérjük, először frissítse a MeshCentral telepítését.", "xloc": [ - "default.handlebars->47->3337" + "default.handlebars->47->3339" ] }, { @@ -80223,7 +80242,7 @@ "hu": "vietnámi", "xloc": [ "default-mobile.handlebars->11->293", - "default.handlebars->47->1982", + "default.handlebars->47->1984", "login2.handlebars->7->190" ] }, @@ -80278,7 +80297,7 @@ "zh-cht": "查看所有事件", "hu": "Minden esemény megtekintése", "xloc": [ - "default.handlebars->47->2772" + "default.handlebars->47->2774" ] }, { @@ -80329,8 +80348,8 @@ "zh-cht": "查看變更日誌", "hu": "Változásnapló megtekintése", "xloc": [ - "default.handlebars->47->3340", - "default.handlebars->47->3342" + "default.handlebars->47->3342", + "default.handlebars->47->3344" ] }, { @@ -80384,7 +80403,7 @@ "zh-cht": "查看有關此裝置群的註釋", "hu": "Az eszközcsoporttal kapcsolatos megjegyzések megtekintése", "xloc": [ - "default.handlebars->47->2165" + "default.handlebars->47->2167" ] }, { @@ -80411,7 +80430,7 @@ "zh-cht": "查看有關此用戶的註釋", "hu": "A felhasználóval kapcsolatos megjegyzések megtekintése", "xloc": [ - "default.handlebars->47->2940" + "default.handlebars->47->2942" ] }, { @@ -80466,7 +80485,7 @@ "zh-cht": "查看此用戶以前的登錄信息", "hu": "A felhasználó korábbi bejelentkezéseinek megtekintése", "xloc": [ - "default.handlebars->47->2955" + "default.handlebars->47->2957" ] }, { @@ -80521,7 +80540,7 @@ "hu": "volapuk", "xloc": [ "default-mobile.handlebars->11->294", - "default.handlebars->47->1983", + "default.handlebars->47->1985", "login2.handlebars->7->191" ] }, @@ -80749,7 +80768,7 @@ "zh-cht": "正在等待用戶授予訪問權限...", "hu": "Várjuk, hogy a felhasználó engedélyezze a hozzáférést...", "xloc": [ - "default-mobile.handlebars->11->615", + "default-mobile.handlebars->11->616", "default.handlebars->47->1350", "sharing.handlebars->11->28", "sharing.handlebars->11->6" @@ -80807,10 +80826,10 @@ "zh-cht": "喚醒裝置", "hu": "Eszközök felébresztése", "xloc": [ - "default-mobile.handlebars->11->940", - "default-mobile.handlebars->11->955", - "default.handlebars->47->2307", - "default.handlebars->47->2339" + "default-mobile.handlebars->11->941", + "default-mobile.handlebars->11->956", + "default.handlebars->47->2309", + "default.handlebars->47->2341" ] }, { @@ -80893,7 +80912,7 @@ "hu": "walloon", "xloc": [ "default-mobile.handlebars->11->295", - "default.handlebars->47->1984", + "default.handlebars->47->1986", "login2.handlebars->7->192" ] }, @@ -80921,7 +80940,7 @@ "zh-cht": "弱", "hu": "gyenge", "xloc": [ - "default.handlebars->47->2070" + "default.handlebars->47->2072" ] }, { @@ -80981,7 +81000,7 @@ "hu": "Weboldal értesítések", "xloc": [ "default.handlebars->47->1097", - "default.handlebars->47->2386" + "default.handlebars->47->2388" ] }, { @@ -81008,7 +81027,7 @@ "zh-cht": "網頁電源開關 7", "hu": "Web Power Switch 7", "xloc": [ - "default.handlebars->47->2061" + "default.handlebars->47->2063" ] }, { @@ -81035,8 +81054,8 @@ "zh-cht": "網絡伺服器", "hu": "WEB Kiszolgáló", "xloc": [ - "default.handlebars->47->3319", - "default.handlebars->47->3320" + "default.handlebars->47->3321", + "default.handlebars->47->3322" ] }, { @@ -81063,7 +81082,7 @@ "zh-cht": "Web 服務器 HTTP 標頭", "hu": "WEB Kiszolgáló HTTP fejlécek", "xloc": [ - "default.handlebars->47->3323" + "default.handlebars->47->3325" ] }, { @@ -81090,7 +81109,7 @@ "zh-cht": "Web伺服器請求", "hu": "WEB kiszolgáló kérések", "xloc": [ - "default.handlebars->47->3321" + "default.handlebars->47->3323" ] }, { @@ -81117,7 +81136,7 @@ "zh-cht": "Web插座中繼", "hu": "Web Socket Relay", "xloc": [ - "default.handlebars->47->3322" + "default.handlebars->47->3324" ] }, { @@ -81145,7 +81164,7 @@ "hu": "Web-RDP", "xloc": [ "default.handlebars->47->1039", - "default.handlebars->47->3145", + "default.handlebars->47->3147", "default.handlebars->contextMenu->cxwebrdp" ] }, @@ -81173,7 +81192,7 @@ "zh-cht": "網絡SFTP", "hu": "Web-SFTP", "xloc": [ - "default.handlebars->47->3147" + "default.handlebars->47->3149" ] }, { @@ -81201,7 +81220,7 @@ "hu": "Web-SSH", "xloc": [ "default.handlebars->47->1041", - "default.handlebars->47->3146", + "default.handlebars->47->3148", "default.handlebars->contextMenu->cxwebssh" ] }, @@ -81230,7 +81249,7 @@ "hu": "Web-VNC", "xloc": [ "default.handlebars->47->1037", - "default.handlebars->47->3148", + "default.handlebars->47->3150", "default.handlebars->contextMenu->cxwebvnc" ] }, @@ -81258,7 +81277,7 @@ "zh-cht": "WebRDP", "hu": "WebRDP", "xloc": [ - "default.handlebars->47->3287" + "default.handlebars->47->3289" ] }, { @@ -81285,7 +81304,7 @@ "zh-cht": "網絡SSH", "hu": "WebSSH", "xloc": [ - "default.handlebars->47->3288" + "default.handlebars->47->3290" ] }, { @@ -81339,7 +81358,7 @@ "zh-cht": "網絡VNC", "hu": "WebVNC", "xloc": [ - "default.handlebars->47->3289" + "default.handlebars->47->3291" ] }, { @@ -81450,7 +81469,7 @@ "hu": "walesi", "xloc": [ "default-mobile.handlebars->11->296", - "default.handlebars->47->1985", + "default.handlebars->47->1987", "login2.handlebars->7->193" ] }, @@ -81463,8 +81482,8 @@ "de": "WhatsApp", "es": "Whatsapp", "xloc": [ - "default.handlebars->47->1754", - "default.handlebars->47->2977" + "default.handlebars->47->1756", + "default.handlebars->47->2979" ] }, { @@ -81491,7 +81510,7 @@ "zh-cht": "啟用後,任何人都可以使用邀請代碼通過以下公共鏈結將裝置加入該裝置群:", "hu": "Ha engedélyezve van, a meghívókódokat bárki használhatja, hogy eszközöket csatlakoztasson ehhez az eszközcsoporthoz a következő nyilvános link segítségével:", "xloc": [ - "default.handlebars->47->2365" + "default.handlebars->47->2367" ] }, { @@ -81519,7 +81538,7 @@ "hu": "Ha engedélyezi, lehetőséget kap, hogy bejelentkezéskor a nagyobb biztonság érdekében 2 faktoros bejelentkezési jelszót kérjen az e-mail fiókjába.", "xloc": [ "default-mobile.handlebars->11->102", - "default.handlebars->47->1770" + "default.handlebars->47->1772" ] }, { @@ -81546,7 +81565,7 @@ "zh-cht": "選擇此策略時,此服務器不管理英特爾®AMT。 仍然可以通過手動激活和配置Intel AMT來使用它。", "hu": "Ha ezt a házirendet választja, az Intel® AMT-t ez a kiszolgáló nem kezeli. Az Intel AMT továbbra is használható manuális aktiválással és konfigurálással.", "xloc": [ - "default.handlebars->47->2245" + "default.handlebars->47->2247" ] }, { @@ -81597,7 +81616,7 @@ "zh-cht": "選擇此策略後,將禁用處於客戶端控制模式(CCM)的所有英特爾®AMT。 其他設備將清除CIRA,並且仍然可以手動進行管理。", "hu": "Ha ezt a házirendet választja, minden Intel® AMT in Client Control Mode (CCM) deaktiválva lesz. Más eszközökön a CIRA törlődik, és továbbra is manuálisan kezelhetők.", "xloc": [ - "default.handlebars->47->2246" + "default.handlebars->47->2248" ] }, { @@ -81624,7 +81643,7 @@ "zh-cht": "下次登入時將更改。", "hu": "A következő bejelentkezéskor módosul.", "xloc": [ - "default.handlebars->47->2909" + "default.handlebars->47->2911" ] }, { @@ -81651,8 +81670,8 @@ "zh-cht": "Win", "hu": "Win", "xloc": [ - "default-mobile.handlebars->11->644", - "default-mobile.handlebars->11->648", + "default-mobile.handlebars->11->645", + "default-mobile.handlebars->11->649", "default-mobile.handlebars->dialog->3->dialog3->deskkeys->5", "default.handlebars->47->1409", "default.handlebars->47->1413", @@ -82367,7 +82386,7 @@ "en": "Windows Defender", "nl": "Windows Defender", "xloc": [ - "default-mobile.handlebars->11->751", + "default-mobile.handlebars->11->752", "default.handlebars->47->943" ] }, @@ -82403,7 +82422,7 @@ "zh-cht": "Windows MeshAgent", "hu": "Windows MeshAgent", "xloc": [ - "default.handlebars->47->2370", + "default.handlebars->47->2372", "default.handlebars->47->575" ] }, @@ -82542,7 +82561,7 @@ "zh-cht": "Windows 安全", "hu": "Windows Biztonság", "xloc": [ - "default-mobile.handlebars->11->742", + "default-mobile.handlebars->11->743", "default.handlebars->47->934" ] }, @@ -82748,7 +82767,7 @@ "zh-cht": "换行:關", "hu": "Sortörés: KI", "xloc": [ - "default.handlebars->47->1557", + "default.handlebars->47->1559", "sharing.handlebars->11->84" ] }, @@ -82776,7 +82795,7 @@ "zh-cht": "换行:開", "hu": "Sortörés: BE", "xloc": [ - "default.handlebars->47->1556", + "default.handlebars->47->1558", "sharing.handlebars->11->83" ] }, @@ -82885,8 +82904,8 @@ "zh-cht": "XMPP", "hu": "XMPP", "xloc": [ - "default.handlebars->47->1744", - "default.handlebars->47->2967" + "default.handlebars->47->1746", + "default.handlebars->47->2969" ] }, { @@ -82941,7 +82960,7 @@ "hu": "xhosa", "xloc": [ "default-mobile.handlebars->11->297", - "default.handlebars->47->1986", + "default.handlebars->47->1988", "login2.handlebars->7->194" ] }, @@ -82949,12 +82968,12 @@ "en": "Yes", "nl": "Ja", "xloc": [ - "default-mobile.handlebars->11->821", - "default-mobile.handlebars->11->824", - "default-mobile.handlebars->11->827", - "default.handlebars->47->1659", - "default.handlebars->47->1662", - "default.handlebars->47->1665" + "default-mobile.handlebars->11->822", + "default-mobile.handlebars->11->825", + "default-mobile.handlebars->11->828", + "default.handlebars->47->1661", + "default.handlebars->47->1664", + "default.handlebars->47->1667" ] }, { @@ -82982,7 +83001,7 @@ "hu": "jiddis", "xloc": [ "default-mobile.handlebars->11->298", - "default.handlebars->47->1987", + "default.handlebars->47->1989", "login2.handlebars->7->195" ] }, @@ -83178,7 +83197,7 @@ "zh-cht": "YubiKey™OTP", "hu": "YubiKey™ OTP", "xloc": [ - "default.handlebars->47->1789" + "default.handlebars->47->1791" ] }, { @@ -83233,7 +83252,7 @@ "zh-cht": "郵編檔案名", "hu": "Zip fájlnév", "xloc": [ - "default.handlebars->47->1541", + "default.handlebars->47->1543", "sharing.handlebars->11->68" ] }, @@ -83328,8 +83347,8 @@ "pl": "Zulip", "es": "Zulip", "xloc": [ - "default.handlebars->47->1748", - "default.handlebars->47->2971" + "default.handlebars->47->1750", + "default.handlebars->47->2973" ] }, { @@ -83357,7 +83376,7 @@ "hu": "zulu", "xloc": [ "default-mobile.handlebars->11->299", - "default.handlebars->47->1988", + "default.handlebars->47->1990", "login2.handlebars->7->196" ] }, @@ -83939,7 +83958,7 @@ "zh-cht": "\\\\'", "hu": "\\\\'", "xloc": [ - "default.handlebars->47->3338" + "default.handlebars->47->3340" ] }, { @@ -84467,7 +84486,7 @@ "zh-cht": "config.json", "hu": "config.json", "xloc": [ - "default.handlebars->47->2107" + "default.handlebars->47->2109" ] }, { @@ -84494,8 +84513,8 @@ "zh-cht": "console.txt", "hu": "console.txt", "xloc": [ - "default-mobile.handlebars->11->879", - "default.handlebars->47->1718" + "default-mobile.handlebars->11->880", + "default.handlebars->47->1720" ] }, { @@ -84523,7 +84542,7 @@ "hu": "másolás", "xloc": [ "default-mobile.handlebars->11->368", - "default.handlebars->47->2464" + "default.handlebars->47->2466" ] }, { @@ -84766,8 +84785,8 @@ "zh-cht": "eventslist.csv", "hu": "eventslist.csv", "xloc": [ - "default.handlebars->47->2655", - "default.handlebars->47->2660" + "default.handlebars->47->2657", + "default.handlebars->47->2662" ] }, { @@ -84794,8 +84813,8 @@ "zh-cht": "eventslist.json", "hu": "eventslist.json", "xloc": [ - "default.handlebars->47->2657", - "default.handlebars->47->2661" + "default.handlebars->47->2659", + "default.handlebars->47->2663" ] }, { @@ -84877,8 +84896,8 @@ "zh-cht": "免費", "hu": "szabad", "xloc": [ - "default.handlebars->47->3274", - "default.handlebars->47->3277" + "default.handlebars->47->3276", + "default.handlebars->47->3279" ] }, { @@ -85091,8 +85110,8 @@ "pl": "https://api.callmebot.com/...", "es": "https://api.callmebot.com/...", "xloc": [ - "default.handlebars->47->1763", - "default.handlebars->47->2986" + "default.handlebars->47->1765", + "default.handlebars->47->2988" ] }, { @@ -85155,8 +85174,8 @@ "en": "https://hooks.slack.com/...", "nl": "https://hooks.slack.com/...", "xloc": [ - "default.handlebars->47->1767", - "default.handlebars->47->2990" + "default.handlebars->47->1769", + "default.handlebars->47->2992" ] }, { @@ -85207,7 +85226,7 @@ "zh-cht": "ID、姓名、電子郵件、創建、lastlogin、組、authfactors、siteadmin、useradmin、鎖定", "hu": "id, name, email, creation, lastlogin, groups, authfactors, siteadmin, useradmin, locked", "xloc": [ - "default.handlebars->47->2736" + "default.handlebars->47->2738" ] }, { @@ -85448,7 +85467,7 @@ "zh-cht": "k max,默認為空白", "hu": " k max, alapértelmezetten üres", "xloc": [ - "default.handlebars->47->2764" + "default.handlebars->47->2766" ] }, { @@ -85828,7 +85847,7 @@ "hu": "mozgat", "xloc": [ "default-mobile.handlebars->11->369", - "default.handlebars->47->2465" + "default.handlebars->47->2467" ] }, { @@ -85911,8 +85930,8 @@ "pl": "ntfy", "es": "ntfy", "xloc": [ - "default.handlebars->47->1747", - "default.handlebars->47->2970" + "default.handlebars->47->1749", + "default.handlebars->47->2972" ] }, { @@ -86180,7 +86199,7 @@ "zh-cht": "servererrors.txt", "hu": "servererrors.txt", "xloc": [ - "default.handlebars->47->2104" + "default.handlebars->47->2106" ] }, { @@ -86207,7 +86226,7 @@ "zh-cht": "servertrace.csv", "hu": "servertrace.csv", "xloc": [ - "default.handlebars->47->3332" + "default.handlebars->47->3334" ] }, { @@ -86326,7 +86345,7 @@ "zh-cht": "time, conn.agent, conn.users, conn.usersessions, conn.relaysession, conn.intelamt, mem.external, mem.heapused, mem.heaptotal, mem.rss", "hu": "time, conn.agent, conn.users, conn.usersessions, conn.relaysession, conn.intelamt, mem.external, mem.heapused, mem.heaptotal, mem.rss", "xloc": [ - "default.handlebars->47->3306" + "default.handlebars->47->3308" ] }, { @@ -86353,7 +86372,7 @@ "zh-cht": "時間,來源,訊息", "hu": "time, source, message", "xloc": [ - "default.handlebars->47->3331" + "default.handlebars->47->3333" ] }, { @@ -86417,8 +86436,8 @@ "zh-cht": "總", "hu": "összesen", "xloc": [ - "default.handlebars->47->3275", - "default.handlebars->47->3278" + "default.handlebars->47->3277", + "default.handlebars->47->3280" ] }, { @@ -86451,7 +86470,7 @@ { "en": "true", "xloc": [ - "default.handlebars->47->2719" + "default.handlebars->47->2721" ] }, { @@ -86562,8 +86581,8 @@ "zh-cht": "userlist.csv", "hu": "userlist.csv", "xloc": [ - "default.handlebars->47->2732", - "default.handlebars->47->2737" + "default.handlebars->47->2734", + "default.handlebars->47->2739" ] }, { @@ -86590,8 +86609,8 @@ "zh-cht": "userlist.json", "hu": "userlist.json", "xloc": [ - "default.handlebars->47->2734", - "default.handlebars->47->2738" + "default.handlebars->47->2736", + "default.handlebars->47->2740" ] }, { @@ -86603,8 +86622,8 @@ "de": "benutzername@beispiel.de", "es": "nombredeusuario@ejemplo.com", "xloc": [ - "default.handlebars->47->1766", - "default.handlebars->47->2989" + "default.handlebars->47->1768", + "default.handlebars->47->2991" ] }, { @@ -86616,8 +86635,8 @@ "de": "benutzername@server.de", "es": "nombredeusuario@servidor.com", "xloc": [ - "default.handlebars->47->1762", - "default.handlebars->47->2985" + "default.handlebars->47->1764", + "default.handlebars->47->2987" ] }, { @@ -86644,7 +86663,7 @@ "zh-cht": "utc,時間,類型,指令,用戶,裝置,消息", "hu": "utc, time, type, action, user, device, message", "xloc": [ - "default.handlebars->47->2659" + "default.handlebars->47->2661" ] }, { @@ -86760,10 +86779,10 @@ "zh-cht": "{0}", "hu": "{0}", "xloc": [ - "default-mobile.handlebars->11->839", - "default-mobile.handlebars->11->845", - "default.handlebars->47->1677", - "default.handlebars->47->1683" + "default-mobile.handlebars->11->840", + "default-mobile.handlebars->11->846", + "default.handlebars->47->1679", + "default.handlebars->47->1685" ] }, { @@ -86913,8 +86932,8 @@ "zh-cht": "{0} Gb", "hu": "{0} Gb", "xloc": [ - "default.handlebars->47->2437", - "default.handlebars->47->2442" + "default.handlebars->47->2439", + "default.handlebars->47->2444" ] }, { @@ -86965,9 +86984,9 @@ "zh-cht": "{0} Kb", "hu": "{0} Kb", "xloc": [ - "default.handlebars->47->2435", - "default.handlebars->47->2440", - "default.handlebars->47->3070" + "default.handlebars->47->2437", + "default.handlebars->47->2442", + "default.handlebars->47->3072" ] }, { @@ -87018,12 +87037,12 @@ "zh-cht": "{0} Mb", "hu": "{0} Mb", "xloc": [ - "default-mobile.handlebars->11->833", - "default-mobile.handlebars->11->850", - "default.handlebars->47->1671", - "default.handlebars->47->1688", - "default.handlebars->47->2436", - "default.handlebars->47->2441" + "default-mobile.handlebars->11->834", + "default-mobile.handlebars->11->851", + "default.handlebars->47->1673", + "default.handlebars->47->1690", + "default.handlebars->47->2438", + "default.handlebars->47->2443" ] }, { @@ -87050,8 +87069,8 @@ "zh-cht": "{0} Mb,{1} Mhz", "hu": "{0} Mb, {1} Mhz", "xloc": [ - "default-mobile.handlebars->11->831", - "default.handlebars->47->1669" + "default-mobile.handlebars->11->832", + "default.handlebars->47->1671" ] }, { @@ -87102,7 +87121,7 @@ "zh-cht": "{0}個活躍節", "hu": "{0} actív munkamenet", "xloc": [ - "default.handlebars->47->2958" + "default.handlebars->47->2960" ] }, { @@ -87129,8 +87148,8 @@ "zh-cht": "{0} b", "hu": "{0} b", "xloc": [ - "default.handlebars->47->2434", - "default.handlebars->47->2439" + "default.handlebars->47->2436", + "default.handlebars->47->2441" ] }, { @@ -87158,8 +87177,8 @@ "hu": "{0} bytes", "xloc": [ "default-mobile.handlebars->11->357", - "default.handlebars->47->2450", - "default.handlebars->47->3091", + "default.handlebars->47->2452", + "default.handlebars->47->3093", "download.handlebars->3->2", "download2.handlebars->5->2", "sharing.handlebars->11->97" @@ -87189,7 +87208,7 @@ "zh-cht": "剩餘{0}個字節", "hu": "{0} byte maradt", "xloc": [ - "default.handlebars->47->2429" + "default.handlebars->47->2431" ] }, { @@ -87295,7 +87314,7 @@ "zh-cht": "剩餘{0} GB", "hu": "{0} gigabyte maradt", "xloc": [ - "default.handlebars->47->2432" + "default.handlebars->47->2434" ] }, { @@ -87322,7 +87341,7 @@ "zh-cht": "{0}個群組", "hu": "{0} csoport", "xloc": [ - "default.handlebars->47->2914" + "default.handlebars->47->2916" ] }, { @@ -87400,7 +87419,7 @@ "zh-cht": "剩餘{0}千字節", "hu": "{0} kilobyte maradt", "xloc": [ - "default.handlebars->47->2430" + "default.handlebars->47->2432" ] }, { @@ -87456,7 +87475,7 @@ "zh-cht": "剩餘{0}兆字節", "hu": "{0} megabyte maradt", "xloc": [ - "default.handlebars->47->2431" + "default.handlebars->47->2433" ] }, { @@ -87588,7 +87607,7 @@ "zh-cht": "{0}未顯示更多用戶,請使用搜索框查找用戶...", "hu": "{0} további felhasználó nem jelenik meg, használja a keresőmezőt a felhasználók kereséséhez...", "xloc": [ - "default.handlebars->47->2669" + "default.handlebars->47->2671" ] }, { @@ -88045,7 +88064,7 @@ "default-mobile.handlebars->11->426", "default-mobile.handlebars->11->430", "default-mobile.handlebars->11->434", - "default.handlebars->47->2673", + "default.handlebars->47->2675", "default.handlebars->47->445", "default.handlebars->47->448", "default.handlebars->47->452", @@ -88318,10 +88337,10 @@ "zh-cht": "{0}, {1}", "hu": "{0}, {1}", "xloc": [ - "default-mobile.handlebars->11->837", - "default-mobile.handlebars->11->843", - "default.handlebars->47->1675", - "default.handlebars->47->1681" + "default-mobile.handlebars->11->838", + "default-mobile.handlebars->11->844", + "default.handlebars->47->1677", + "default.handlebars->47->1683" ] }, { @@ -88349,7 +88368,7 @@ "hu": "{0}, {1} kezdve {2} perc", "xloc": [ "default.handlebars->47->1084", - "default.handlebars->47->2196" + "default.handlebars->47->2198" ] }, { @@ -88377,7 +88396,7 @@ "hu": "{0}, {1} kezdve {2} perc", "xloc": [ "default.handlebars->47->1085", - "default.handlebars->47->2197" + "default.handlebars->47->2199" ] }, { @@ -88405,7 +88424,7 @@ "hu": "{0}, {1} - {2}", "xloc": [ "default.handlebars->47->1083", - "default.handlebars->47->2195" + "default.handlebars->47->2197" ] }, { @@ -88486,7 +88505,7 @@ "zh-cht": "{0}k在1檔案內。最多{1}k", "hu": "{0}k 1 fájlban. {1}k maximum", "xloc": [ - "default.handlebars->47->2444" + "default.handlebars->47->2446" ] }, { @@ -88513,7 +88532,7 @@ "zh-cht": "{1}k在{0}個檔案中。最多{2}k", "hu": "{0}k {1} fájlban. maximum {2}k", "xloc": [ - "default.handlebars->47->2443" + "default.handlebars->47->2445" ] }, { diff --git a/views/default.handlebars b/views/default.handlebars index fa12cc83..f0070a21 100644 --- a/views/default.handlebars +++ b/views/default.handlebars @@ -884,6 +884,7 @@ + @@ -11165,6 +11166,21 @@ p13setActions(); } + function p13openfilefolder() { + setDialogMode(2, "Open File/Folder", 3, p13openfilefolderEx, "Are you sure you want to open this file/folder on the remote devices desktop ?"); + } + function p13openfilefolderEx() { + var openfilefolder = "", checkboxes = document.getElementsByName('fd'); + for (var i = 0; i < checkboxes.length; i++) { + console.log(checkboxes[i]); + if (checkboxes[i].checked) { + openfilefolder = (isWindowsNode(currentNode) ? '' : '/') + p13filetreelocation.join(isWindowsNode(currentNode) ? '\\' : '/') + (isWindowsNode(currentNode) ? '\\' : '/') + p13filetree.dir[checkboxes[i].value].n; + } + } + if (openfilefolder == "") return; + files.sendText({ action: 'open', reqid: 1, path: openfilefolder, dir: (p13getFileSelDirCount() == 1) ? true : false }); + } + function p13gotofolder() { setDialogMode(2, "Go To Folder", 3, p13gotofolderEx, ''); focusTextBox('p13folderinput'); @@ -11261,6 +11277,7 @@ QE('p13PasteButton', false); QE('p13GoToFolderButton', false); QE('p13DownloadButton', false); + QE('p13OpenButton', false); } else { 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) var winAgent = ((currentNode.agent.id > 0) && (currentNode.agent.id < 5)) || (currentNode.agent.id == 14)|| (currentNode.agent.id == 34); @@ -11279,6 +11296,7 @@ QE('p13UnzipButton', advancedFeatures && (cc == 1) && (sfc == 1) && ((p13filetreelocation.length > 0) || (winAgent == false)) && p13getFileSelAllowedExt('.zip')); QE('p13PasteButton', advancedFeatures && ((p13filetreelocation.length > 0) || (winAgent == false)) && ((p13clipboard != null) && (p13clipboard.length > 0))); QE('p13GoToFolderButton', true); + QE('p13OpenButton', (cc == 1)); QE('p13DownloadButton', advancedFeatures && (cc > 0) && (cc == sfc) && ((p13filetreelocation.length > 0) || (winAgent == false))); } var filesState = ((files != null) && (files.state != 0));