cura.po 141 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534
  1. # Cura
  2. # Copyright (C) 2022 UltiMaker.
  3. # This file is distributed under the same license as the Cura package.
  4. # Ultimaker <plugins@ultimaker.com>, 2022.
  5. #
  6. msgid ""
  7. msgstr ""
  8. "Project-Id-Version: Cura 5.1\n"
  9. "Report-Msgid-Bugs-To: \n"
  10. "POT-Creation-Date: 2023-09-20 14:03+0000\n"
  11. "PO-Revision-Date: 2020-03-24 09:36+0100\n"
  12. "Last-Translator: Nagy Attila <vokroot@gmail.com>\n"
  13. "Language-Team: ATI-SZOFT\n"
  14. "Language: hu_HU\n"
  15. "MIME-Version: 1.0\n"
  16. "Content-Type: text/plain; charset=UTF-8\n"
  17. "Content-Transfer-Encoding: 8bit\n"
  18. "Plural-Forms: nplurals=2; plural=(n != 1);\n"
  19. "X-Generator: Poedit 2.2.4\n"
  20. #, python-format
  21. msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm."
  22. msgid "%(width).1f x %(depth).1f x %(height).1f mm"
  23. msgstr "%(width).1f x %(depth).1f x %(height).1f mm"
  24. msgctxt "@action:label"
  25. msgid "%1 & material"
  26. msgstr "%1 & alapanyag"
  27. msgctxt "@action:label"
  28. msgid "%1 out of %2"
  29. msgstr "%1 %2 -ből"
  30. msgctxt "@action:label"
  31. msgid "%1 override"
  32. msgid_plural "%1 overrides"
  33. msgstr[0] "%1 felülírás"
  34. msgstr[1] "%1 felülírás"
  35. msgctxt "@action:label"
  36. msgid "%1, %2 override"
  37. msgid_plural "%1, %2 overrides"
  38. msgstr[0] "%1, %2 felülírás"
  39. msgstr[1] "%1, %2 felülírás"
  40. msgctxt "@label g for grams"
  41. msgid "%1g"
  42. msgstr "%1g"
  43. msgctxt "@label m for meter"
  44. msgid "%1m"
  45. msgstr "%1m"
  46. msgctxt "@action:inmenu menubar:printer"
  47. msgid "&Add Printer..."
  48. msgstr "&Nyomtató hozzáadása..."
  49. msgctxt "@action:inmenu menubar:view"
  50. msgid "&Camera position"
  51. msgstr "&Kamera helyzet"
  52. msgctxt "@action:inmenu menubar:profile"
  53. msgid "&Create profile from current settings/overrides..."
  54. msgstr "Profil &létrehozása a jelenlegi beállításokkal/felülírásokkal..."
  55. msgctxt "@action:inmenu menubar:profile"
  56. msgid "&Discard current changes"
  57. msgstr "&Jelenlegi változtatások eldobása"
  58. msgctxt "@title:menu menubar:toplevel"
  59. msgid "&Edit"
  60. msgstr "S&zerkesztés"
  61. msgctxt "@title:menu menubar:file"
  62. msgid "&Export..."
  63. msgstr ""
  64. msgctxt "@title:menu menubar:toplevel"
  65. msgid "&File"
  66. msgstr "&Fájl"
  67. msgctxt "@action:inmenu menubar:edit"
  68. msgid "&Group Models"
  69. msgstr "&Csoportosítás"
  70. msgctxt "@title:menu menubar:toplevel"
  71. msgid "&Help"
  72. msgstr "&Segítség"
  73. msgctxt "@title:menu"
  74. msgid "&Material"
  75. msgstr "&Alapanyag"
  76. msgctxt "@action:inmenu menubar:edit"
  77. msgid "&Merge Models"
  78. msgstr "&Modellek keverése"
  79. msgctxt "@action:inmenu"
  80. msgid "&Multiply Model..."
  81. msgstr "&Modell többszörözés..."
  82. msgctxt "@action:inmenu menubar:file"
  83. msgid "&New Project..."
  84. msgstr "Új projekt..."
  85. msgctxt "@action:inmenu menubar:file"
  86. msgid "&Open File(s)..."
  87. msgstr "Fájl(ok) megnyitása..."
  88. msgctxt "@title:menu menubar:settings"
  89. msgid "&Printer"
  90. msgstr "&Nyomtató"
  91. msgctxt "@action:inmenu menubar:file"
  92. msgid "&Quit"
  93. msgstr "Kilép"
  94. msgctxt "@action:inmenu menubar:edit"
  95. msgid "&Redo"
  96. msgstr "&Újra"
  97. msgctxt "@title:menu menubar:file"
  98. msgid "&Save Project..."
  99. msgstr ""
  100. msgctxt "@title:menu menubar:toplevel"
  101. msgid "&Settings"
  102. msgstr "&Beállítások"
  103. msgctxt "@action:inmenu menubar:edit"
  104. msgid "&Undo"
  105. msgstr "&Visszavon"
  106. msgctxt "@action:inmenu menubar:profile"
  107. msgid "&Update profile with current settings/overrides"
  108. msgstr "Profil &frissítése a jelenlegi beállításokkal/felülírásokkal"
  109. msgctxt "@title:menu menubar:toplevel"
  110. msgid "&View"
  111. msgstr "&Nézet"
  112. msgctxt "@label"
  113. msgid "*You will need to restart the application for these changes to have effect."
  114. msgstr ""
  115. msgctxt "@text"
  116. msgid ""
  117. "- Add material profiles and plug-ins from the Marketplace\n"
  118. "- Back-up and sync your material profiles and plug-ins\n"
  119. "- Share ideas and get help from 48,000+ users in the UltiMaker community"
  120. msgstr ""
  121. msgctxt "@heading"
  122. msgid "-- incomplete --"
  123. msgstr ""
  124. msgctxt "@action:label"
  125. msgid "1mm Transmittance (%)"
  126. msgstr ""
  127. msgctxt "@info:title"
  128. msgid "3D Model Assistant"
  129. msgstr "3D-s modellsegéd"
  130. msgctxt "@action:inmenu menubar:view"
  131. msgid "3D View"
  132. msgstr "3D nézet"
  133. msgctxt "@info:tooltip"
  134. msgid "3D View"
  135. msgstr ""
  136. msgctxt "@item:inlistbox"
  137. msgid "3MF File"
  138. msgstr "3MF fájl"
  139. msgctxt "name"
  140. msgid "3MF Reader"
  141. msgstr "3MF olvasó"
  142. msgctxt "name"
  143. msgid "3MF Writer"
  144. msgstr "3MF író"
  145. msgctxt "@error:zip"
  146. msgid "3MF Writer plug-in is corrupt."
  147. msgstr ""
  148. msgctxt "@item:inlistbox"
  149. msgid "3MF file"
  150. msgstr "3MF fájl"
  151. msgctxt "@info, %1 is the name of the custom profile"
  152. msgid "<b>%1</b> custom profile is active and you overwrote some settings."
  153. msgstr ""
  154. msgctxt "@info, %1 is the name of the custom profile"
  155. msgid "<b>%1</b> custom profile is overriding some settings."
  156. msgstr ""
  157. msgctxt "@label %i will be replaced with a profile name"
  158. msgid "<b>Only user changed settings will be saved in the custom profile.</b><br/>For materials that support it, the new custom profile will inherit properties from <b>%1</b>."
  159. msgstr ""
  160. #, python-brace-format
  161. msgctxt "@label OpenGL renderer"
  162. msgid "<li>OpenGL Renderer: {renderer}</li>"
  163. msgstr "<li>OpenGL Renderer: {renderer}</li>"
  164. #, python-brace-format
  165. msgctxt "@label OpenGL vendor"
  166. msgid "<li>OpenGL Vendor: {vendor}</li>"
  167. msgstr "<li>OpenGL terjesztő: {vendor}</li>"
  168. #, python-brace-format
  169. msgctxt "@label OpenGL version"
  170. msgid "<li>OpenGL Version: {version}</li>"
  171. msgstr "<li>OpenGL Verzió: {version}</li>"
  172. msgctxt "@label crash message"
  173. msgid ""
  174. "<p><b>A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem</p></b>\n"
  175. " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  176. " "
  177. msgstr ""
  178. "<p><b>Végzetes hiba történt Cura-ban. Kérjük, küld el nekünk az összeomlás jelentését, hogy javítani tudjuk a hibát.</p></b>\n"
  179. " <p>Kérjük használd a \"Jelentés küldés\" gombot a hibajelentés postázásához, így az automatikusan a szerverünkre kerül.</p>\n"
  180. " "
  181. msgctxt "@label crash message"
  182. msgid ""
  183. "<p><b>Oops, UltiMaker Cura has encountered something that doesn't seem right.</p></b>\n"
  184. " <p>We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.</p>\n"
  185. " <p>Backups can be found in the configuration folder.</p>\n"
  186. " <p>Please send us this Crash Report to fix the problem.</p>\n"
  187. " "
  188. msgstr ""
  189. "<p><b>Hoppá, az Ultimaker Cura olyan dolgokkal találkozott, amelyek hibásnak tűnnek.</p></b>\n"
  190. " <p>Az indítás során helyrehozhatatlan hibát tapasztaltunkEzt valószínűleg néhány helytelen konfigurációs fájl okozta. Javasoljuk, hogy biztonsági másolatból állítsa vissza a konfigurációt.</p>\n"
  191. " <p>A biztonsági mentések a konfigurációs mappában találhatók.</p>\n"
  192. " <p>Kérjük, küldje el nekünk ezt a hibajelentést a probléma megoldásához.</p>\n"
  193. " "
  194. #, python-brace-format
  195. msgctxt "@info:status"
  196. msgid ""
  197. "<p>One or more 3D models may not print optimally due to the model size and material configuration:</p>\n"
  198. "<p>{model_names}</p>\n"
  199. "<p>Find out how to ensure the best possible print quality and reliability.</p>\n"
  200. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">View print quality guide</a></p>"
  201. msgstr ""
  202. "<p>Lehetséges, hogy egy vagy több 3D-s modellt nem lehet optimálisan kinyomtatni a modell mérete és az anyagkonfiguráció miatt:</p>\n"
  203. "<p>{model_names}</p>\n"
  204. "<p>Itt Megtudhatja, hogyan lehet a lehető legjobb nyomtatási minőséget és megbízhatóságot biztosítani.</p>\n"
  205. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">View print quality guide</a></p>"
  206. msgctxt "@label"
  207. msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?"
  208. msgstr "USB nyomtatás folyamatban van, a Cura bezárása leállítja ezt a nyomtatást. Biztos vagy ebben?"
  209. msgctxt "info:status"
  210. msgid "A cloud connection is not available for a printer"
  211. msgid_plural "A cloud connection is not available for some printers"
  212. msgstr[0] ""
  213. msgstr[1] ""
  214. msgctxt "@message"
  215. msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed."
  216. msgstr "A nyomtatás még folyamatban van. A Cura nem indíthat új nyomtatást USB-n keresztül, amíg az előző nyomtatás be nem fejeződött."
  217. msgctxt "@item:inlistbox"
  218. msgid "AMF File"
  219. msgstr "AMF fájl"
  220. msgctxt "name"
  221. msgid "AMF Reader"
  222. msgstr "AMF Olvasó"
  223. msgctxt "@label"
  224. msgid "Abort"
  225. msgstr "Megszakít"
  226. msgctxt "@label"
  227. msgid "Abort Print"
  228. msgstr "Nyomtatás megszakítás"
  229. msgctxt "@window:title"
  230. msgid "Abort print"
  231. msgstr "Nyomtatás megszakítás"
  232. msgctxt "@label:status"
  233. msgid "Aborted"
  234. msgstr "Megszakítva"
  235. msgctxt "@label"
  236. msgid "Aborting..."
  237. msgstr "Megszakítás..."
  238. msgctxt "@label:status"
  239. msgid "Aborting..."
  240. msgstr "Megszakítás..."
  241. msgctxt "@title:window The argument is the application name."
  242. msgid "About %1"
  243. msgstr ""
  244. msgctxt "@action:inmenu menubar:help"
  245. msgid "About..."
  246. msgstr "Rólunk..."
  247. msgctxt "@button"
  248. msgid "Accept"
  249. msgstr ""
  250. msgctxt "description"
  251. msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
  252. msgstr "Elfogadja a G-kódot és elküldi őket egy nyomtatóra. A plugin a firmware-t is frissítheti."
  253. msgctxt "@label"
  254. msgid "Account synced"
  255. msgstr ""
  256. msgctxt "@label:status"
  257. msgid "Action required"
  258. msgstr "Beavatkozás szükséges"
  259. msgctxt "@action:button"
  260. msgid "Activate"
  261. msgstr "Aktivál"
  262. msgctxt "@label"
  263. msgid "Active print"
  264. msgstr "Aktív nyomtatás"
  265. msgctxt "@action:button"
  266. msgid "Add"
  267. msgstr "Hozzáad"
  268. msgctxt "@button"
  269. msgid "Add"
  270. msgstr "Hozzáad"
  271. msgctxt "@action:button"
  272. msgid "Add New"
  273. msgstr ""
  274. msgctxt "@title:window"
  275. msgid "Add Printer"
  276. msgstr "Nyomtató hozzáadása"
  277. msgctxt "@button"
  278. msgid "Add UltiMaker printer via Digital Factory"
  279. msgstr ""
  280. msgctxt "@label"
  281. msgid "Add a Cloud printer"
  282. msgstr ""
  283. msgctxt "@label"
  284. msgid "Add a networked printer"
  285. msgstr "Hálózati nyomtató hozzáadása"
  286. msgctxt "@label"
  287. msgid "Add a non-networked printer"
  288. msgstr "Helyi nyomtató hozzáadása"
  289. msgctxt "@action"
  290. msgid "Add a script"
  291. msgstr "Adjon hozzá egy szkriptet"
  292. msgctxt "@option:check"
  293. msgid "Add icon to system tray *"
  294. msgstr ""
  295. msgctxt "@button"
  296. msgid "Add local printer"
  297. msgstr ""
  298. msgctxt "@option:check"
  299. msgid "Add machine prefix to job name"
  300. msgstr "Gépnév előtagként a feladatnévben"
  301. msgctxt "@text"
  302. msgid "Add material settings and plugins from the Marketplace"
  303. msgstr ""
  304. msgctxt "@action:inmenu Marketplace is a brand name of UltiMaker's, so don't translate."
  305. msgid "Add more materials from Marketplace"
  306. msgstr ""
  307. msgctxt "@button"
  308. msgid "Add printer"
  309. msgstr "Nyomtató hozzáadása"
  310. msgctxt "@label"
  311. msgid "Add printer"
  312. msgstr "Nyomtató hozzáadása"
  313. msgctxt "@label"
  314. msgid "Add printer by IP"
  315. msgstr "Nyomtató hozzáadása IP címmel"
  316. msgctxt "@label"
  317. msgid "Add printer by IP address"
  318. msgstr "Nyomtató hozzáadása IP címmel"
  319. msgctxt "@button"
  320. msgid "Add printer manually"
  321. msgstr ""
  322. #, python-brace-format
  323. msgctxt "info:status Filled in with printer name and printer model."
  324. msgid "Adding printer {name} ({model}) from your account"
  325. msgstr ""
  326. msgctxt "@label"
  327. msgid "Address"
  328. msgstr "Cím"
  329. msgctxt "@label"
  330. msgid "Adhesion"
  331. msgstr "Letapadás"
  332. msgctxt "@label"
  333. msgid "Adhesion Information"
  334. msgstr "Tapadási információ"
  335. msgctxt "@label"
  336. msgid "Adjusts the density of infill of the print."
  337. msgstr ""
  338. msgctxt "support_type description"
  339. msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model."
  340. msgstr ""
  341. msgctxt "@label Header for list of settings."
  342. msgid "Affected By"
  343. msgstr "Befolyásolja"
  344. msgctxt "@label Header for list of settings."
  345. msgid "Affects"
  346. msgstr "Befolyásolások"
  347. msgctxt "@button"
  348. msgid "Agree"
  349. msgstr "Elfogadás"
  350. msgctxt "@item:inlistbox"
  351. msgid "All Files (*)"
  352. msgstr "Minden fájl (*)"
  353. #, python-brace-format
  354. msgctxt "@item:inlistbox"
  355. msgid "All Supported Types ({0})"
  356. msgstr "Összes támasz típus ({0})"
  357. msgctxt "@text:window"
  358. msgid "Allow sending anonymous data"
  359. msgstr "Anonim adatok küldésének engedélyezése"
  360. msgctxt "description"
  361. msgid "Allows loading and displaying G-code files."
  362. msgstr "Lehetővé teszi a G-kód fájlok betöltését és megjelenítését."
  363. msgctxt "@option:discardOrKeep"
  364. msgid "Always ask me this"
  365. msgstr "Mindig kérdezz"
  366. msgctxt "@option:openProject"
  367. msgid "Always ask me this"
  368. msgstr "Mindig kérdezz"
  369. msgctxt "@option:discardOrKeep"
  370. msgid "Always discard changed settings"
  371. msgstr "Megváltozott beállítások elvetése"
  372. msgctxt "@option:openProject"
  373. msgid "Always import models"
  374. msgstr "Importálja a modelleket"
  375. msgctxt "@option:openProject"
  376. msgid "Always open as a project"
  377. msgstr "Projektként való megnyitás"
  378. msgctxt "@option:discardOrKeep"
  379. msgid "Always transfer changed settings to new profile"
  380. msgstr "Megváltozott beállítások alkalmazása az új profilba"
  381. msgctxt "@info:tooltip"
  382. msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?"
  383. msgstr "Egy adott modell rendkívül kicsinek tűnhet, ha mértékegysége például méterben van, nem pedig milliméterben. Ezeket a modelleket átméretezzük?"
  384. msgctxt "@label"
  385. msgid "Annealing"
  386. msgstr ""
  387. msgctxt "@label"
  388. msgid "Anonymous"
  389. msgstr "Névtelen"
  390. msgctxt "@label Description for application component"
  391. msgid "Application framework"
  392. msgstr "Alkalmazás keretrendszer"
  393. msgctxt "@label"
  394. msgid "Apply Extruder offsets to GCode"
  395. msgstr ""
  396. msgctxt "@info:title"
  397. msgid "Are you ready for cloud printing?"
  398. msgstr ""
  399. msgctxt "@label %1 is the name of a print job."
  400. msgid "Are you sure you want to abort %1?"
  401. msgstr "Biztosan meg akarod szakítani %1?"
  402. msgctxt "@label"
  403. msgid "Are you sure you want to abort the print?"
  404. msgstr "Biztosan meg akarod szakítani a nyomtatást?"
  405. msgctxt "@label %1 is the name of a print job."
  406. msgid "Are you sure you want to delete %1?"
  407. msgstr "Biztos, hogy törölni szeretnéd %1?"
  408. msgctxt "@dialog:info"
  409. msgid "Are you sure you want to delete this backup? This cannot be undone."
  410. msgstr "Biztosan szeretnéd törölni a biztonsági mentést? Ez nem vonható vissza."
  411. msgctxt "@label %1 is the application name"
  412. msgid "Are you sure you want to exit %1?"
  413. msgstr ""
  414. msgctxt "@label %1 is the name of a print job."
  415. msgid "Are you sure you want to move %1 to the top of the queue?"
  416. msgstr "Biztos, hogy a %1 a nyomtatási sor elejére akarod mozgatni?"
  417. #, python-brace-format
  418. msgctxt "@message {printer_name} is replaced with the name of the printer"
  419. msgid "Are you sure you want to remove {printer_name} temporarily?"
  420. msgstr ""
  421. msgctxt "@info:question"
  422. msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings."
  423. msgstr "Biztos benne, hogy új projektet akar kezdeni? Ez törli az alapsíkot és az összes nem mentett beállítást."
  424. msgctxt "@label (%1 is object name)"
  425. msgid "Are you sure you wish to remove %1? This cannot be undone!"
  426. msgstr "Biztosan el akarod távolítani %1 -et? Ez nem vonható vissza!"
  427. #, python-brace-format
  428. msgctxt "@label {0} is the name of a printer that's about to be deleted."
  429. msgid "Are you sure you wish to remove {0}? This cannot be undone!"
  430. msgstr ""
  431. msgctxt "@action:inmenu menubar:edit"
  432. msgid "Arrange All Models"
  433. msgstr "Minden modell rendezése"
  434. msgctxt "@action:inmenu menubar:edit"
  435. msgid "Arrange All Models in a grid"
  436. msgstr ""
  437. msgctxt "@label:button"
  438. msgid "Ask a question"
  439. msgstr ""
  440. msgctxt "@checkbox:description"
  441. msgid "Auto Backup"
  442. msgstr "Automatikus biztonsági mentés"
  443. msgctxt "@checkbox:description"
  444. msgid "Automatically create a backup each day that Cura is started."
  445. msgstr "Automatikusan létrehoz egy biztonsági mentést minden egyes nap, mikor a Cura indítva van."
  446. msgctxt "@option:check"
  447. msgid "Automatically drop models to the build plate"
  448. msgstr "Modellek automatikus tárgyasztalra illesztése"
  449. msgctxt "@action:button"
  450. msgid "Automatically upgrade Firmware"
  451. msgstr "Automatikus firmware frissítés"
  452. msgctxt "@label"
  453. msgid "Available networked printers"
  454. msgstr "Elérhető hálózati nyomtatók"
  455. msgctxt "@item:inlistbox"
  456. msgid "BMP Image"
  457. msgstr "BMP kép"
  458. msgctxt "@button"
  459. msgid "Back"
  460. msgstr "Vissza"
  461. msgctxt "@button:tooltip"
  462. msgid "Back"
  463. msgstr ""
  464. msgctxt "@info:title"
  465. msgid "Backup"
  466. msgstr "Biztonsági mentés"
  467. msgctxt "@button"
  468. msgid "Backup Now"
  469. msgstr "Biztonsági mentés most"
  470. msgctxt "@action:button"
  471. msgid "Backup and Reset Configuration"
  472. msgstr "Konfiguráció biztonsági mentés és visszaállítás"
  473. msgctxt "description"
  474. msgid "Backup and restore your configuration."
  475. msgstr "Konfiguráció biztonsági másolat készítése és visszaállítása."
  476. msgctxt "@text"
  477. msgid "Backup and sync your material settings and plugins"
  478. msgstr ""
  479. msgctxt "@description"
  480. msgid "Backup and synchronize your Cura settings."
  481. msgstr "A Cura beállítások biztonsági mentése és szinkronizálása."
  482. msgctxt "@info:title"
  483. msgid "Backups"
  484. msgstr "Biztonsági mentések"
  485. msgctxt "@action:label"
  486. msgid "Base (mm)"
  487. msgstr "Alap (mm)"
  488. msgctxt "@action:inmenu menubar:view"
  489. msgid "Bottom View"
  490. msgstr ""
  491. msgctxt "@label"
  492. msgid "Brand"
  493. msgstr "Márka"
  494. msgctxt "@title"
  495. msgid "Build Plate Leveling"
  496. msgstr "Tálca szintezés"
  497. msgctxt "@info:title"
  498. msgid "Build Volume"
  499. msgstr "Építési térfogat"
  500. msgctxt "@label"
  501. msgid "Build plate"
  502. msgstr "Tárgyasztal"
  503. msgctxt "@label"
  504. msgid "Build plate shape"
  505. msgstr "Tárgyasztal alakja"
  506. msgctxt "@label"
  507. msgid "Bundled Materials"
  508. msgstr ""
  509. msgctxt "@label"
  510. msgid "Bundled Plugins"
  511. msgstr ""
  512. msgctxt "@button"
  513. msgid "Buy spool"
  514. msgstr ""
  515. msgctxt "@label Is followed by the name of an author"
  516. msgid "By"
  517. msgstr ""
  518. msgctxt "@label Description for application dependency"
  519. msgid "C/C++ Binding library"
  520. msgstr "C/C++ függőségek könyvtár"
  521. msgctxt "@item:inlistbox"
  522. msgid "COLLADA Digital Asset Exchange"
  523. msgstr "COLLADA digitális eszközcsere"
  524. msgctxt "@info:status"
  525. msgid "Calculated"
  526. msgstr "Számított"
  527. msgctxt "@window:text"
  528. msgid "Camera rendering:"
  529. msgstr ""
  530. msgctxt "@action:inmenu menubar:view"
  531. msgid "Camera view"
  532. msgstr "Kamera nézet"
  533. msgctxt "@info:title"
  534. msgid "Can't Find Location"
  535. msgstr "Nem találok helyet"
  536. msgctxt "@info:title"
  537. msgid "Can't Open Project File"
  538. msgstr ""
  539. msgctxt "@label"
  540. msgid "Can't connect to your UltiMaker printer?"
  541. msgstr ""
  542. #, python-brace-format
  543. msgctxt "@info:status Don't translate the XML tags <filename>!"
  544. msgid "Can't import profile from <filename>{0}</filename> before a printer is added."
  545. msgstr "Nem importálható a profil <filename>{0}</filename> -ból, mielőtt hozzá nem adunk egy nyomtatót."
  546. #, python-brace-format
  547. msgctxt "@info:status"
  548. msgid "Can't open any other file if G-code is loading. Skipped importing {0}"
  549. msgstr "Nem nyitható meg más fájl, ha a G-kód betöltődik. Az importálás kihagyva {0}"
  550. msgctxt "@info:error"
  551. msgid "Can't write to UFP file:"
  552. msgstr ""
  553. msgctxt "@action:button"
  554. msgid "Cancel"
  555. msgstr "Elvet"
  556. msgctxt "@button"
  557. msgid "Cancel"
  558. msgstr "Elvet"
  559. msgctxt "@button Cancel pre-heating"
  560. msgid "Cancel"
  561. msgstr "Elvet"
  562. msgctxt "@option:check"
  563. msgid "Caution message in g-code reader"
  564. msgstr "Figyelmeztető üzenet a g-code olvasóban"
  565. msgctxt "@action:inmenu"
  566. msgid "Ce&nter Model on Platform"
  567. msgstr "&Középső modell a platformon"
  568. msgctxt "@action:inmenu menubar:edit"
  569. msgid "Center Selected"
  570. msgstr ""
  571. msgctxt "@action:button"
  572. msgid "Center camera when item is selected"
  573. msgstr "Kamera középre, mikor az elem ki van választva"
  574. msgctxt "@info:tooltip"
  575. msgid "Change active post-processing scripts."
  576. msgstr ""
  577. msgctxt "@label"
  578. msgid "Change material %1 from %2 to %3."
  579. msgstr "Változtasd meg az %1 anyagot %2 -ről %3 -ra."
  580. msgctxt "@label"
  581. msgid "Change print core %1 from %2 to %3."
  582. msgstr "Cseréld a nyomtató magot %1 -ről %2 -re, %3 -hoz."
  583. msgctxt "@info:title"
  584. msgid "Changes detected from your UltiMaker account"
  585. msgstr ""
  586. msgctxt "@title"
  587. msgid "Changes from your account"
  588. msgstr ""
  589. msgctxt "@label:textbox"
  590. msgid "Check all"
  591. msgstr "Mindent ellenőrizni"
  592. msgctxt "@button"
  593. msgid "Check for account updates"
  594. msgstr ""
  595. msgctxt "@option:check"
  596. msgid "Check for updates on start"
  597. msgstr "Keressen frissítéseket az induláskor"
  598. msgctxt "@label"
  599. msgid "Checking..."
  600. msgstr ""
  601. msgctxt "description"
  602. msgid "Checks for firmware updates."
  603. msgstr "Ellenőrzi a firmware frissítéseket."
  604. msgctxt "description"
  605. msgid "Checks models and print configuration for possible printing issues and give suggestions."
  606. msgstr "Ellenőrzi a modelleket és a nyomtatási konfigurációt a lehetséges nyomtatási problémákra vonatkozóan, és javaslatokat ad."
  607. msgctxt "@label"
  608. msgid ""
  609. "Chooses between the techniques available to generate support. \n"
  610. "\n"
  611. "\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n"
  612. "\n"
  613. "\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible."
  614. msgstr ""
  615. msgctxt "@action:inmenu menubar:edit"
  616. msgid "Clear Build Plate"
  617. msgstr "Tárgyasztal törlése"
  618. msgctxt "@option:check"
  619. msgid "Clear buildplate before loading model into the single instance"
  620. msgstr ""
  621. msgctxt "@text"
  622. msgid "Click the export material archive button."
  623. msgstr ""
  624. msgctxt "@action:button"
  625. msgid "Close"
  626. msgstr "Bezár"
  627. msgctxt "@title:window %1 is the application name"
  628. msgid "Closing %1"
  629. msgstr ""
  630. msgctxt "@action:inmenu"
  631. msgid "Collapse All Categories"
  632. msgstr ""
  633. msgctxt "@label"
  634. msgid "Color"
  635. msgstr "Szín"
  636. msgctxt "@action:label"
  637. msgid "Color Model"
  638. msgstr ""
  639. msgctxt "@label"
  640. msgid "Color scheme"
  641. msgstr "Szín séma"
  642. msgctxt "@info"
  643. msgid "Compare and save."
  644. msgstr ""
  645. msgctxt "@label"
  646. msgid "Compatibility Mode"
  647. msgstr "Kompatibilis mód"
  648. msgctxt "@label Description for application dependency"
  649. msgid "Compatibility between Python 2 and 3"
  650. msgstr ""
  651. msgctxt "@title:label"
  652. msgid "Compatible Printers"
  653. msgstr ""
  654. msgctxt "@label"
  655. msgid "Compatible material diameter"
  656. msgstr "Nyomtatószál átmérő"
  657. msgctxt "@header"
  658. msgid "Compatible printers"
  659. msgstr ""
  660. msgctxt "@header"
  661. msgid "Compatible support materials"
  662. msgstr ""
  663. msgctxt "@header"
  664. msgid "Compatible with Material Station"
  665. msgstr ""
  666. msgctxt "@item:inlistbox"
  667. msgid "Compressed COLLADA Digital Asset Exchange"
  668. msgstr "Tömörített COLLADA digitális eszközcsere"
  669. msgctxt "@item:inlistbox"
  670. msgid "Compressed G-code File"
  671. msgstr "Tömörített G-kód fájl"
  672. msgctxt "name"
  673. msgid "Compressed G-code Reader"
  674. msgstr "Tömörített G-kód olvasó"
  675. msgctxt "name"
  676. msgid "Compressed G-code Writer"
  677. msgstr "Tömörített G-kód író"
  678. msgctxt "@title:window"
  679. msgid "Configuration Changes"
  680. msgstr "Konfiguráció változások"
  681. msgctxt "@error"
  682. msgid "Configuration not supported"
  683. msgstr ""
  684. msgctxt "@header"
  685. msgid "Configurations"
  686. msgstr "Konfigurációk"
  687. msgctxt "@label"
  688. msgid "Configurations"
  689. msgstr "Konfigurációk"
  690. msgctxt "@action:inmenu"
  691. msgid "Configure Cura..."
  692. msgstr "Cura beállítása..."
  693. msgctxt "@info:tooltip"
  694. msgid "Configure Per Model Settings"
  695. msgstr "Modellenkénti beállítások konfigurálása"
  696. msgctxt "@action"
  697. msgid "Configure group"
  698. msgstr "Csoport konfiguráció"
  699. msgctxt "@action:menu"
  700. msgid "Configure setting visibility..."
  701. msgstr "Beállítások láthatóságának beállítása..."
  702. msgctxt "@title:window"
  703. msgid "Confirm Diameter Change"
  704. msgstr "Új átmérő megerősítése"
  705. msgctxt "@title:window"
  706. msgid "Confirm Remove"
  707. msgstr "Eltávolítás megerősítése"
  708. msgctxt "@action:button"
  709. msgid "Connect"
  710. msgstr "Csatlakozás"
  711. msgctxt "@button"
  712. msgid "Connect"
  713. msgstr "Csatlakozás"
  714. msgctxt "@title:window"
  715. msgid "Connect to Networked Printer"
  716. msgstr "Csatlakozás hálózati nyomtatóhoz"
  717. msgctxt "@action"
  718. msgid "Connect via Network"
  719. msgstr "Hálózati csatlakozás"
  720. msgctxt "@info:status"
  721. msgid "Connected over the network"
  722. msgstr "Csatlakozva hálózaton keresztül"
  723. msgctxt "@label"
  724. msgid "Connected printers"
  725. msgstr "Csatlakoztatott nyomtatók"
  726. msgctxt "@info:status"
  727. msgid "Connected via USB"
  728. msgstr "Csatlakozás USB-n"
  729. msgctxt "@info:status"
  730. msgid "Connected via cloud"
  731. msgstr ""
  732. msgctxt "description"
  733. msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library."
  734. msgstr ""
  735. msgctxt "@tooltip:button"
  736. msgid "Consult the UltiMaker Community."
  737. msgstr ""
  738. msgctxt "@title:window"
  739. msgid "Convert Image"
  740. msgstr ""
  741. msgctxt "@label"
  742. msgid "Cooling Fan Number"
  743. msgstr "Hűtőventilátorok száma"
  744. msgctxt "@action:menu"
  745. msgid "Copy all changed values to all extruders"
  746. msgstr "Minden változott érték másolása minden extruderre"
  747. msgctxt "@action:inmenu menubar:edit"
  748. msgid "Copy to clipboard"
  749. msgstr ""
  750. msgctxt "@action:menu"
  751. msgid "Copy value to all extruders"
  752. msgstr "Értékek másolása minden extruderre"
  753. msgctxt "@label"
  754. msgid "Cost per Meter"
  755. msgstr "Költség / méter"
  756. msgctxt "@info"
  757. msgid "Could not access update information."
  758. msgstr "Nem sikerült elérni a frissítési információkat."
  759. msgctxt "@label"
  760. msgid "Could not connect to device."
  761. msgstr "Nem sikerült csatlakozni az eszközhöz."
  762. msgctxt "@info:backup_failed"
  763. msgid "Could not create archive from user data directory: {}"
  764. msgstr "Nem sikerült archívumot létrehozni a felhasználói adatkönyvtárból: {}"
  765. #, python-brace-format
  766. msgctxt "@info:status Don't translate the tag {device}!"
  767. msgid "Could not find a file name when trying to write to {device}."
  768. msgstr "Nem található a fájlnév {device} -on az írási művelethez."
  769. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  770. msgid "Could not import material <filename>%1</filename>: <message>%2</message>"
  771. msgstr "Nem sikerült importálni az alapanyagot <filename>%1</filename>: <message>%2</message>"
  772. msgctxt "@info:error"
  773. msgid "Could not interpret the server's response."
  774. msgstr ""
  775. msgctxt "@info:error"
  776. msgid "Could not reach Marketplace."
  777. msgstr ""
  778. msgctxt "@message"
  779. msgid "Could not read response."
  780. msgstr "Nincs olvasható válasz."
  781. msgctxt "@message:text"
  782. msgid "Could not save material archive to {}:"
  783. msgstr ""
  784. #, python-brace-format
  785. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  786. msgid "Could not save to <filename>{0}</filename>: <message>{1}</message>"
  787. msgstr "Sikertelen mentés <filename>{0}</filename>: <message>{1}</message>"
  788. #, python-brace-format
  789. msgctxt "@info:status"
  790. msgid "Could not save to removable drive {0}: {1}"
  791. msgstr "Sikertelen mentés a {0}: {1} meghajtóra."
  792. msgctxt "@info:text"
  793. msgid "Could not upload the data to the printer."
  794. msgstr "Nem sikerült feltölteni az adatokat a nyomtatóra."
  795. #, python-brace-format
  796. msgctxt "@info:plugin_failed"
  797. msgid ""
  798. "Couldn't start EnginePlugin: {self._plugin_id}\n"
  799. "No permission to execute process."
  800. msgstr ""
  801. #, python-brace-format
  802. msgctxt "@info:plugin_failed"
  803. msgid ""
  804. "Couldn't start EnginePlugin: {self._plugin_id}\n"
  805. "Operating system is blocking it (antivirus?)"
  806. msgstr ""
  807. #, python-brace-format
  808. msgctxt "@info:plugin_failed"
  809. msgid ""
  810. "Couldn't start EnginePlugin: {self._plugin_id}\n"
  811. "Resource is temporarily unavailable"
  812. msgstr ""
  813. msgctxt "@title:window"
  814. msgid "Crash Report"
  815. msgstr "Összeomlás jelentés"
  816. msgctxt "@title:window"
  817. msgid "Create Profile"
  818. msgstr "Profil készítés"
  819. msgctxt "@text"
  820. msgid "Create a free UltiMaker Account"
  821. msgstr ""
  822. msgctxt "@button"
  823. msgid "Create a free UltiMaker account"
  824. msgstr ""
  825. msgctxt "@info:tooltip"
  826. msgid "Create a volume in which supports are not printed."
  827. msgstr "Hozzon létre egy kötetet, amelyben a támaszok nem kerülnek nyomtatásra."
  828. msgctxt "@action:ComboBox Save settings in a new profile"
  829. msgid "Create new"
  830. msgstr ""
  831. msgctxt "@action:button"
  832. msgid "Create new"
  833. msgstr ""
  834. msgctxt "@button"
  835. msgid "Create new"
  836. msgstr "Új létrehozása"
  837. msgctxt "@action:tooltip"
  838. msgid "Create new profile from current settings/overrides"
  839. msgstr ""
  840. msgctxt "@tooltip:button"
  841. msgid "Create print projects in Digital Library."
  842. msgstr ""
  843. msgctxt "description"
  844. msgid "Creates an eraser mesh to block the printing of support in certain places"
  845. msgstr "Törlő hálót hoz létre, hogy bizonyos helyeken blokkolja a támasz nyomtatását"
  846. msgctxt "@info:backup_status"
  847. msgid "Creating your backup..."
  848. msgstr ""
  849. msgctxt "@item:inlistbox"
  850. msgid "Cura 15.04 profiles"
  851. msgstr "Cura 15.04 profil"
  852. msgctxt "@title:window"
  853. msgid "Cura Backups"
  854. msgstr "Cura biztonsági mentések"
  855. msgctxt "name"
  856. msgid "Cura Backups"
  857. msgstr "Cura biztonsági mentések"
  858. msgctxt "@item:inlistbox"
  859. msgid "Cura Profile"
  860. msgstr "Cura Profil"
  861. msgctxt "name"
  862. msgid "Cura Profile Reader"
  863. msgstr "Cura profil olvasó"
  864. msgctxt "name"
  865. msgid "Cura Profile Writer"
  866. msgstr "Cura profil író"
  867. msgctxt "@item:inlistbox"
  868. msgid "Cura Project 3MF file"
  869. msgstr "Cura projekt 3MF fájl"
  870. msgctxt "@backuplist:label"
  871. msgid "Cura Version"
  872. msgstr "Cura verzió"
  873. msgctxt "@title:window"
  874. msgid "Cura can't start"
  875. msgstr "A Cura nem tud elindulni"
  876. #, python-brace-format
  877. msgctxt "@info:status"
  878. msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}."
  879. msgstr "A Cura olyan anyagprofilt észlel, amelyet még nem telepítettek a(z) {0} csoport gazdanyomtatójára."
  880. msgctxt "@info:credit"
  881. msgid ""
  882. "Cura is developed by UltiMaker in cooperation with the community.\n"
  883. "Cura proudly uses the following open source projects:"
  884. msgstr "A Cura-t az UltiMaker B.V fejlesztette ki a közösséggel együttműködésben. A Cura büszkén használja a következő nyílt forráskódú projekteket:"
  885. msgctxt "@label"
  886. msgid "Cura language"
  887. msgstr ""
  888. msgctxt "@label Cura version number"
  889. msgid "Cura version"
  890. msgstr "Cura verzió"
  891. msgctxt "name"
  892. msgid "CuraEngine Backend"
  893. msgstr "CuraEngine motor"
  894. msgctxt "description"
  895. msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps"
  896. msgstr ""
  897. msgctxt "name"
  898. msgid "CuraEngineGradualFlow"
  899. msgstr ""
  900. msgctxt "@label"
  901. msgid "Currency:"
  902. msgstr "Pénznem:"
  903. msgctxt "@title:column"
  904. msgid "Current"
  905. msgstr "Jelenlegi"
  906. msgctxt "@title:column"
  907. msgid "Current changes"
  908. msgstr ""
  909. msgctxt "@header"
  910. msgid "Custom"
  911. msgstr "Egyéni"
  912. msgctxt "@label"
  913. msgid "Custom"
  914. msgstr "Egyedi"
  915. msgctxt "@title:tab"
  916. msgid "Custom"
  917. msgstr "Egyedi"
  918. msgctxt "@label"
  919. msgid "Custom Material"
  920. msgstr "Egyedi anyag"
  921. msgctxt "@label"
  922. msgid "Custom profile"
  923. msgstr "Egyedi profil"
  924. msgctxt "@info"
  925. msgid "Custom profile name:"
  926. msgstr ""
  927. msgctxt "@label"
  928. msgid "Custom profiles"
  929. msgstr "Egyéni profil"
  930. msgctxt "@label:header"
  931. msgid "Custom profiles"
  932. msgstr ""
  933. msgctxt "@action:inmenu menubar:edit"
  934. msgid "Cut"
  935. msgstr ""
  936. msgctxt "@item:inlistbox"
  937. msgid "Cutting mesh"
  938. msgstr ""
  939. msgctxt "@item:inlistbox"
  940. msgid "Darker is higher"
  941. msgstr "A sötétebb a magasabb"
  942. msgctxt "@info:title"
  943. msgid "Data Sent"
  944. msgstr "Adatok elküldve"
  945. msgctxt "@label Description for application dependency"
  946. msgid "Data interchange format"
  947. msgstr "Adat csere formátum"
  948. msgctxt "@button"
  949. msgid "Decline"
  950. msgstr ""
  951. msgctxt "@button"
  952. msgid "Decline and close"
  953. msgstr "Elutasítás és bezárás"
  954. msgctxt "@button"
  955. msgid "Decline and remove from account"
  956. msgstr ""
  957. msgctxt "@info:No intent profile selected"
  958. msgid "Default"
  959. msgstr ""
  960. msgctxt "@label"
  961. msgid "Default"
  962. msgstr ""
  963. msgctxt "@window:text"
  964. msgid "Default behavior for changed setting values when switching to a different profile: "
  965. msgstr "Alapértelmezett viselkedés a megváltozott beállítási értékeknél, ha másik profilra vált: "
  966. msgctxt "@info:tooltip"
  967. msgid "Default behavior when opening a project file"
  968. msgstr "Alapértelmezett viselkedés a projektfájl megnyitásakor"
  969. msgctxt "@window:text"
  970. msgid "Default behavior when opening a project file: "
  971. msgstr "Alapértelmezett viselkedés a projektfájl megnyitásakor: "
  972. msgctxt "@action:button"
  973. msgid "Defaults"
  974. msgstr ""
  975. msgctxt "@label"
  976. msgid "Defines the thickness of your part side walls, roof and floor."
  977. msgstr ""
  978. msgctxt "@label"
  979. msgid "Delete"
  980. msgstr "Törlés"
  981. msgctxt "@dialog:title"
  982. msgid "Delete Backup"
  983. msgstr "Biztonsági mentés törlés"
  984. msgctxt "@action:inmenu"
  985. msgid "Delete Model"
  986. msgstr "Modell törlés"
  987. msgctxt "@action:inmenu menubar:edit"
  988. msgid "Delete Selected"
  989. msgstr ""
  990. msgctxt "@window:title"
  991. msgid "Delete print job"
  992. msgstr "Nyomtatási feladat törlés"
  993. msgctxt "@label"
  994. msgid "Density"
  995. msgstr "Sűrűség"
  996. msgctxt "@label Description for development tool"
  997. msgid "Dependency and package manager"
  998. msgstr ""
  999. msgctxt "@action:label"
  1000. msgid "Depth (mm)"
  1001. msgstr "Mélység (mm)"
  1002. msgctxt "@action:label"
  1003. msgid "Derivative from"
  1004. msgstr "Származék"
  1005. msgctxt "@header"
  1006. msgid "Description"
  1007. msgstr ""
  1008. msgctxt "@label"
  1009. msgid "Description"
  1010. msgstr "Leírás"
  1011. msgctxt "@action:button"
  1012. msgid "Details"
  1013. msgstr "Részletek"
  1014. msgctxt "@label"
  1015. msgid "Diameter"
  1016. msgstr "Átmérő"
  1017. msgctxt "@button"
  1018. msgid "Disable"
  1019. msgstr ""
  1020. msgctxt "@action:inmenu"
  1021. msgid "Disable Extruder"
  1022. msgstr "Extruder letiltása"
  1023. msgctxt "@option:discardOrKeep"
  1024. msgid "Discard and never ask again"
  1025. msgstr "Eldobás és ne kérdezze újra"
  1026. msgctxt "@action:button"
  1027. msgid "Discard changes"
  1028. msgstr ""
  1029. msgctxt "@action:button"
  1030. msgid "Discard current changes"
  1031. msgstr "A jelenlegi változások elvetése"
  1032. msgctxt "@title:window"
  1033. msgid "Discard or Keep changes"
  1034. msgstr "Változtatások megtartása vagy eldobása"
  1035. msgctxt "@button"
  1036. msgid "Dismiss"
  1037. msgstr ""
  1038. msgctxt "@label"
  1039. msgid "Display Name"
  1040. msgstr "Megjelenítendő név"
  1041. msgctxt "@option:check"
  1042. msgid "Display model errors"
  1043. msgstr ""
  1044. msgctxt "@option:check"
  1045. msgid "Display overhang"
  1046. msgstr "Túlnyúlás kijelzése"
  1047. msgctxt "@info:option_text"
  1048. msgid "Do not show this message again"
  1049. msgstr ""
  1050. msgctxt "@info:generic"
  1051. msgid "Do you want to sync material and software packages with your account?"
  1052. msgstr ""
  1053. msgctxt "@action:label"
  1054. msgid "Don't show project summary on save again"
  1055. msgstr "Ne mutassa újra a projekt összegzését mentés közben"
  1056. msgctxt "@action:menu"
  1057. msgid "Don't show this setting"
  1058. msgstr "Ne jelenítsd meg ezt a beállítást"
  1059. msgctxt "@label"
  1060. msgid "Don't support overlaps"
  1061. msgstr ""
  1062. msgctxt "@button"
  1063. msgid "Done"
  1064. msgstr ""
  1065. msgctxt "@button"
  1066. msgid "Downgrade"
  1067. msgstr ""
  1068. msgctxt "@button"
  1069. msgid "Downgrading..."
  1070. msgstr ""
  1071. msgctxt "@label"
  1072. msgid "Draft"
  1073. msgstr ""
  1074. msgctxt "@action:button"
  1075. msgid "Duplicate"
  1076. msgstr "Másolat"
  1077. msgctxt "@title:window"
  1078. msgid "Duplicate Profile"
  1079. msgstr "Profil másolása"
  1080. msgctxt "@backup_limit_info"
  1081. msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones."
  1082. msgstr "Az előnézeti szakaszban a látható biztonsági mentések száma 5 lehet.Ha szeretné látni a régebbieket, távolítson el egyet a láthatóak közül."
  1083. msgctxt "@title:menu menubar:toplevel"
  1084. msgid "E&xtensions"
  1085. msgstr "K&iterjesztések"
  1086. msgctxt "@action:button"
  1087. msgid "Edit"
  1088. msgstr "Szerkeszt"
  1089. msgctxt "@action:button"
  1090. msgid "Eject"
  1091. msgstr "Leválaszt"
  1092. #, python-brace-format
  1093. msgctxt "@action"
  1094. msgid "Eject removable device {0}"
  1095. msgstr "{0} meghajtó leválasztása"
  1096. #, python-brace-format
  1097. msgctxt "@info:status"
  1098. msgid "Ejected {0}. You can now safely remove the drive."
  1099. msgstr "{0} leválasztva. Eltávolíthatod az adathordozót."
  1100. msgctxt "@label"
  1101. msgid "Empty"
  1102. msgstr "Üres"
  1103. msgctxt "@button"
  1104. msgid "Enable"
  1105. msgstr ""
  1106. msgctxt "@action:inmenu"
  1107. msgid "Enable Extruder"
  1108. msgstr "Extruder engedélyezése"
  1109. msgctxt "@label"
  1110. msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards. Disabling it results in a skirt around object by default."
  1111. msgstr ""
  1112. msgctxt "@label"
  1113. msgid "Enabled"
  1114. msgstr "Bekapcsolt"
  1115. msgctxt "description"
  1116. msgid "Enables ability to generate printable geometry from 2D image files."
  1117. msgstr "Lehetővé teszi a nyomtatható geometria létrehozását 2D-képfájlokból."
  1118. msgctxt "@title:label"
  1119. msgid "End G-code"
  1120. msgstr "G-kód zárás"
  1121. msgctxt "@label"
  1122. msgid "End-to-end solution for fused filament 3D printing."
  1123. msgstr "Teljes körű megoldás az olvadószálas 3D-s nyomtatáshoz."
  1124. msgctxt "@info:title"
  1125. msgid "EnginePlugin"
  1126. msgstr ""
  1127. msgctxt "@label"
  1128. msgid "Engineering"
  1129. msgstr ""
  1130. msgctxt "@option:check"
  1131. msgid "Ensure models are kept apart"
  1132. msgstr "A modellek egymástól való távtartásának biztosítása"
  1133. msgctxt "@label"
  1134. msgid "Enter the IP address of your printer on the network."
  1135. msgstr "Írd be a nyomtató hálózati IP címét."
  1136. msgctxt "@text"
  1137. msgid "Enter your printer's IP address."
  1138. msgstr ""
  1139. msgctxt "@info:title"
  1140. msgid "Error"
  1141. msgstr "Hiba"
  1142. msgctxt "@title:groupbox"
  1143. msgid "Error traceback"
  1144. msgstr "Hibakövetés"
  1145. msgctxt "@label"
  1146. msgid "Estimated time left"
  1147. msgstr "Becsült hátralévő idő"
  1148. msgctxt "@action:inmenu"
  1149. msgid "Exit Full Screen"
  1150. msgstr "Kilépés a teljes képernyőn"
  1151. msgctxt "@label"
  1152. msgid "Experimental"
  1153. msgstr "Tapasztalati"
  1154. msgctxt "@action:button"
  1155. msgid "Export"
  1156. msgstr "Export"
  1157. msgctxt "@title:window"
  1158. msgid "Export All Materials"
  1159. msgstr ""
  1160. msgctxt "@title:window"
  1161. msgid "Export Material"
  1162. msgstr "Alapanyag export"
  1163. msgctxt "@title:window"
  1164. msgid "Export Profile"
  1165. msgstr "Profil exportálás"
  1166. msgctxt "@action:inmenu menubar:file"
  1167. msgid "Export Selection..."
  1168. msgstr "Kiválasztás exportálása..."
  1169. msgctxt "@button"
  1170. msgid "Export material archive"
  1171. msgstr ""
  1172. msgctxt "@info:title"
  1173. msgid "Export succeeded"
  1174. msgstr "Sikeres export"
  1175. #, python-brace-format
  1176. msgctxt "@info:status Don't translate the XML tag <filename>!"
  1177. msgid "Exported profile to <filename>{0}</filename>"
  1178. msgstr "Profil exportálva ide: <filename>{0}</filename>"
  1179. msgctxt "@tooltip:button"
  1180. msgid "Extend UltiMaker Cura with plugins and material profiles."
  1181. msgstr ""
  1182. msgctxt "description"
  1183. msgid "Extension that allows for user created scripts for post processing"
  1184. msgstr "Bővítmény, amely lehetővé teszi a felhasználó által létrehozott szkriptek utófeldolgozást"
  1185. msgctxt "@label"
  1186. msgid "Extruder"
  1187. msgstr "Extruder"
  1188. msgctxt "@action:label"
  1189. msgid "Extruder %1"
  1190. msgstr "Extruder %1"
  1191. msgctxt "@title:label"
  1192. msgid "Extruder End G-code"
  1193. msgstr "Extruder G-kód zárás"
  1194. msgctxt "@title:label"
  1195. msgid "Extruder Start G-code"
  1196. msgstr "Extruder G-kód kezdés"
  1197. msgctxt "@info:title"
  1198. msgid "Extruder(s) Disabled"
  1199. msgstr "Extruder(ek) kikapcsolva"
  1200. msgctxt "@label:status"
  1201. msgid "Failed"
  1202. msgstr ""
  1203. msgctxt "@text:error"
  1204. msgid "Failed to connect to Digital Factory to sync materials with some of the printers."
  1205. msgstr ""
  1206. msgctxt "@text:error"
  1207. msgid "Failed to connect to Digital Factory."
  1208. msgstr ""
  1209. msgctxt "@text:error"
  1210. msgid "Failed to create archive of materials to sync with printers."
  1211. msgstr ""
  1212. #, python-brace-format
  1213. msgctxt "@info:status"
  1214. msgid "Failed to eject {0}. Another program may be using the drive."
  1215. msgstr "{0} leválasztása sikertelen. A meghajtó használatban van."
  1216. msgctxt "@info:status Don't translate the XML tags <filename> and <message>!"
  1217. msgid "Failed to export material to <filename>%1</filename>: <message>%2</message>"
  1218. msgstr "Sikertelen alapanyag export <filename>%1</filename>: <message>%2</message>"
  1219. #, python-brace-format
  1220. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  1221. msgid "Failed to export profile to <filename>{0}</filename>: <message>{1}</message>"
  1222. msgstr "A profil exportálása nem sikerült <filename>{0}</filename>: <message>{1}</message>"
  1223. #, python-brace-format
  1224. msgctxt "@info:status Don't translate the XML tag <filename>!"
  1225. msgid "Failed to export profile to <filename>{0}</filename>: Writer plugin reported failure."
  1226. msgstr "A profil exportálása nem sikerült <filename>{0}</filename>:Az író beépülő modul hibát jelez."
  1227. #, python-brace-format
  1228. msgctxt "@info:status Don't translate the XML tag <filename>!"
  1229. msgid "Failed to import profile from <filename>{0}</filename>:"
  1230. msgstr "Nem importálható a profil <filename>{0}</filename>:"
  1231. #, python-brace-format
  1232. msgctxt "@info:status Don't translate the XML tags <filename>!"
  1233. msgid "Failed to import profile from <filename>{0}</filename>:"
  1234. msgstr "A profil importálása nem sikerült <filename>{0}</filename>:"
  1235. #, python-brace-format
  1236. msgctxt "@info:status Don't translate the XML tags <filename>!"
  1237. msgid "Failed to import profile from <filename>{0}</filename>: {1}"
  1238. msgstr "Sikertelen profil importálás <filename>{0}</filename>: {1} -ból"
  1239. msgctxt "@button"
  1240. msgid "Failed to load packages:"
  1241. msgstr ""
  1242. msgctxt "@text:error"
  1243. msgid "Failed to load the archive of materials to sync it with printers."
  1244. msgstr ""
  1245. msgctxt "@message:title"
  1246. msgid "Failed to save material archive"
  1247. msgstr ""
  1248. msgctxt "@label:category menu label"
  1249. msgid "Favorites"
  1250. msgstr "Kedvencek"
  1251. msgctxt "@label"
  1252. msgid "Filament Cost"
  1253. msgstr "Nyomtatószál költség"
  1254. msgctxt "@label"
  1255. msgid "Filament length"
  1256. msgstr "Nyomtatószál hossz"
  1257. msgctxt "@label"
  1258. msgid "Filament weight"
  1259. msgstr "Nyomtatószál súly"
  1260. msgctxt "@title:window"
  1261. msgid "File Already Exists"
  1262. msgstr "A fájl már létezik"
  1263. msgctxt "@info:title"
  1264. msgid "File Saved"
  1265. msgstr "Fájl Mentve"
  1266. #, python-brace-format
  1267. msgctxt "@info:status"
  1268. msgid "File {0} does not contain any valid profile."
  1269. msgstr "A {0} fájl nem tartalmaz érvényes profilt."
  1270. msgctxt "@label:textbox"
  1271. msgid "Filter..."
  1272. msgstr "Szűrés..."
  1273. msgctxt "@info:title"
  1274. msgid "Finding Location"
  1275. msgstr "Hely keresés"
  1276. msgctxt "@info:status"
  1277. msgid "Finding new location for objects"
  1278. msgstr "Új hely keresése az objektumokhoz"
  1279. msgctxt "@action:button"
  1280. msgid "Finish"
  1281. msgstr ""
  1282. msgctxt "@label:status"
  1283. msgid "Finished"
  1284. msgstr "Befejezve"
  1285. msgctxt "@label:status"
  1286. msgid "Finishes %1 at %2"
  1287. msgstr "Befejezve %1 a %2 -ből"
  1288. msgctxt "@title:window"
  1289. msgid "Firmware Update"
  1290. msgstr "Firmware frissítés"
  1291. msgctxt "name"
  1292. msgid "Firmware Update Checker"
  1293. msgstr "Frimrware frissítés ellenőrző"
  1294. msgctxt "name"
  1295. msgid "Firmware Updater"
  1296. msgstr "Firmware frissítő"
  1297. msgctxt "@label"
  1298. msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware."
  1299. msgstr "A firmware feltöltés nem lehetséges, mert ugyan a nyomtató kapcsolódik, de az nem támogatja a firmware frissítést."
  1300. msgctxt "@label"
  1301. msgid "Firmware can not be updated because there is no connection with the printer."
  1302. msgstr "A firmware feltöltés nem lehetséges, mert nincs a nyomtatóval kapcsolat."
  1303. msgctxt "@label"
  1304. msgid "Firmware is the piece of software running directly on your 3D printer. This firmware controls the step motors, regulates the temperature and ultimately makes your printer work."
  1305. msgstr "A firmware egy szoftver, ami közvetlenül a nyomtatón fut. Ez vezérli a léptető motorokat, szabályozza a hőmérsékleteket, és az egész nyomtató működését."
  1306. msgctxt "@label"
  1307. msgid "Firmware update completed."
  1308. msgstr "Firmware frissítés kész."
  1309. msgctxt "@label"
  1310. msgid "Firmware update failed due to an communication error."
  1311. msgstr "A firmware frissítés meghiúsult kommunikációs hiba miatt."
  1312. msgctxt "@label"
  1313. msgid "Firmware update failed due to an input/output error."
  1314. msgstr "A firmware frissítés meghiúsult input/output hiba miatt."
  1315. msgctxt "@label"
  1316. msgid "Firmware update failed due to an unknown error."
  1317. msgstr "A firmware frissítés meghiúsult ismeretlen hiba miatt."
  1318. msgctxt "@label"
  1319. msgid "Firmware update failed due to missing firmware."
  1320. msgstr "A firmware frissítés meghiúsult, mert nem található a firmware."
  1321. msgctxt "@label"
  1322. msgid "Firmware version"
  1323. msgstr "Frimware verzió"
  1324. msgctxt "@label"
  1325. msgid "First available"
  1326. msgstr "Az első elérhető"
  1327. msgctxt "@label:listbox"
  1328. msgid "Flow"
  1329. msgstr ""
  1330. msgctxt "@text In the UI this is followed by a list of steps the user needs to take."
  1331. msgid "Follow the following steps to load the new material profiles to your printer."
  1332. msgstr ""
  1333. msgctxt "@info"
  1334. msgid "Follow the procedure to add a new printer"
  1335. msgstr ""
  1336. msgctxt "@text"
  1337. msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers."
  1338. msgstr ""
  1339. msgctxt "@label"
  1340. msgid "Font"
  1341. msgstr "Betűtípus"
  1342. msgctxt "@label"
  1343. msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle."
  1344. msgstr "Minden helyzetben helyezzen be egy darab papírt (A4) a fúvóka alá, és állítsa be a fej magasságát.A nyomtató tálca magassága akkor megfelelő, ha a papírt kissé megfogja a fúvóka vége."
  1345. msgctxt "@info:tooltip"
  1346. msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly."
  1347. msgstr ""
  1348. msgctxt "@info:tooltip"
  1349. msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model."
  1350. msgstr "A litofánok esetében a sötét képpontoknak a vastagabb helyek felelnek meg.Ez azért van így, mert minél vastagabb a hely, annál kevesebb fényt enged át.A magassági térképeknél a világosabb képpontok magasabb szintnek felelnek meg, tehát a generált 3D modellnél ezeket figyelembe kell venni.Ez azt is jelenti, hogy általában a generált modell a tényleges kép negatívja kell, hogy legyen."
  1351. msgctxt "@option:check"
  1352. msgid "Force layer view compatibility mode (restart required)"
  1353. msgstr "A rétegnézet kompatibilis módjának kényszerítése (újraindítás szükséges)"
  1354. msgctxt "@action:inmenu menubar:view"
  1355. msgid "Front View"
  1356. msgstr "Előlnézet"
  1357. msgctxt "@info:tooltip"
  1358. msgid "Front View"
  1359. msgstr ""
  1360. msgctxt "@item:inlistbox"
  1361. msgid "G File"
  1362. msgstr "G fájl"
  1363. msgctxt "@info:title"
  1364. msgid "G-code Details"
  1365. msgstr "G-kód részletek"
  1366. msgctxt "@item:inlistbox"
  1367. msgid "G-code File"
  1368. msgstr "G-code Fájl"
  1369. msgctxt "name"
  1370. msgid "G-code Profile Reader"
  1371. msgstr "G-kód profil olvasó"
  1372. msgctxt "name"
  1373. msgid "G-code Reader"
  1374. msgstr "G-kód olvasó"
  1375. msgctxt "name"
  1376. msgid "G-code Writer"
  1377. msgstr "G-kódot író"
  1378. msgctxt "@label"
  1379. msgid "G-code flavor"
  1380. msgstr "G-kód illesztés"
  1381. msgctxt "@label Description for application component"
  1382. msgid "G-code generator"
  1383. msgstr "G-kód generátor"
  1384. msgctxt "@error:not supported"
  1385. msgid "GCodeGzWriter does not support text mode."
  1386. msgstr "A GCodeGzWriter nem támogatja a nem szöveges módot."
  1387. msgctxt "@error:not supported"
  1388. msgid "GCodeWriter does not support non-text mode."
  1389. msgstr "A GCodeWriter nem támogatja a szöveges nélüli módot."
  1390. msgctxt "@item:inlistbox"
  1391. msgid "GIF Image"
  1392. msgstr "GIF kép"
  1393. msgctxt "@label Description for application dependency"
  1394. msgid "GUI framework"
  1395. msgstr "GUI keretrendszer"
  1396. msgctxt "@label Description for application dependency"
  1397. msgid "GUI framework bindings"
  1398. msgstr "GUI keretrendszer függőségek"
  1399. msgctxt "@label"
  1400. msgid "Gantry Height"
  1401. msgstr "Szán magasság"
  1402. msgctxt "@title:tab"
  1403. msgid "General"
  1404. msgstr "Általános"
  1405. msgctxt "@label"
  1406. msgid "Generate structures to support parts of the model which have overhangs. Without these structures, these parts would collapse during printing."
  1407. msgstr "A támasz létrehozása segíti a modell kinyúló részeinek hibátlan nyomatását. Támasz nélkül, ezek a részek összeomlanak, és nem lehetséges a hibátlan nyomtatás."
  1408. msgctxt "@label Description for development tool"
  1409. msgid "Generating Windows installers"
  1410. msgstr ""
  1411. msgctxt "@label:category menu label"
  1412. msgid "Generic"
  1413. msgstr "Generikus"
  1414. msgctxt "@option:check"
  1415. msgid "Get notifications for plugin updates"
  1416. msgstr ""
  1417. msgctxt "@action"
  1418. msgid "Get started"
  1419. msgstr "Kezdjük el"
  1420. msgctxt "@title:tab"
  1421. msgid "Global Settings"
  1422. msgstr "Általános beállítások"
  1423. msgctxt "@label Description for application component"
  1424. msgid "Graphical user interface"
  1425. msgstr "Grafikai felhasználói interfész"
  1426. msgctxt "@label"
  1427. msgid "Grid Placement"
  1428. msgstr ""
  1429. #, python-brace-format
  1430. msgctxt "@label"
  1431. msgid "Group #{group_nr}"
  1432. msgstr "Csoport #{group_nr}"
  1433. msgctxt "@tooltip of pre-heat"
  1434. msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print."
  1435. msgstr "A fűthető tálcát, a nyomtatás előtt előre felmelegíti. Ez alatt az idő alatt tudod folytatni a nyomtatás beállítását, esetleg a szeletelést, s mire ezekkel a műveletekkel elkészülsz, a nyomtató már készen fog állni a nyomtatásra.Így nem kell majd várnod a gép felmelegedésére."
  1436. msgctxt "@tooltip of pre-heat"
  1437. msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print."
  1438. msgstr "A nyomtatófejet a nyomtatás előtt előre felmelegíti. Ez alatt az idő alatt tudod folytatni a nyomtatás beállítását, esetleg a szeletelést, s mire ezekkel a műveletekkel elkészülsz, a nyomtató már készen fog állni a nyomtatásra.Így nem kell majd várnod a gép felmelegedésére."
  1439. msgctxt "@label"
  1440. msgid "Heated Build Plate (official kit or self-built)"
  1441. msgstr "Fűthető tárgyasztal (eredeti vagy utólag épített)"
  1442. msgctxt "@label"
  1443. msgid "Heated bed"
  1444. msgstr "Fűtött asztal"
  1445. msgctxt "@label"
  1446. msgid "Heated build volume"
  1447. msgstr "Fűtött nyomtatási tér"
  1448. msgctxt "@action:label"
  1449. msgid "Height (mm)"
  1450. msgstr "Magasság (mm)"
  1451. msgctxt "@label"
  1452. msgid "Helpers"
  1453. msgstr "Segítők"
  1454. msgctxt "@label"
  1455. msgid "Hide all connected printers"
  1456. msgstr ""
  1457. msgctxt "@action:menu"
  1458. msgid "Hide this setting"
  1459. msgstr "Beállítás elrejtése"
  1460. msgctxt "@info:tooltip"
  1461. msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry."
  1462. msgstr ""
  1463. msgctxt "@info:tooltip"
  1464. msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly."
  1465. msgstr "Jelölje meg pirossal azokat a területeket, amiket szükséges alátámasztani.Ha ezeket a részeket nem támasztjuk alá, a nyomtatás nem lesz hibátlan."
  1466. msgctxt "@button"
  1467. msgid "How to load new material profiles to my printer"
  1468. msgstr ""
  1469. msgctxt "@action:button"
  1470. msgid "How to update"
  1471. msgstr "Hogyan frissíts"
  1472. msgctxt "@text:window"
  1473. msgid "I don't want to send anonymous data"
  1474. msgstr "Nem szeretnék részt venni az adatgyűjtésben"
  1475. msgctxt "@label:status"
  1476. msgid "Idle"
  1477. msgstr "Készenlét"
  1478. msgctxt "@label"
  1479. msgid "If you are trying to add a new UltiMaker printer to Cura"
  1480. msgstr ""
  1481. msgctxt "@label"
  1482. msgid "If your printer is not listed, read the <a href='%1'>network printing troubleshooting guide</a>"
  1483. msgstr "Ha a nyomtatód nincs a listában, olvasd el a <a href='%1'>hálózati nyomtatás hibaelhárítási útmutatót</a>"
  1484. msgctxt "name"
  1485. msgid "Image Reader"
  1486. msgstr "Kép olvasó"
  1487. msgctxt "@action:button"
  1488. msgid "Import"
  1489. msgstr "Import"
  1490. msgctxt "@title:window"
  1491. msgid "Import Material"
  1492. msgstr "Alapanyag importálás"
  1493. msgctxt "@title:window"
  1494. msgid "Import Profile"
  1495. msgstr "Profil importálás"
  1496. msgctxt "@action:button"
  1497. msgid "Import all as models"
  1498. msgstr "Importáljunk mindent modellekként"
  1499. msgctxt "@action:button"
  1500. msgid "Import models"
  1501. msgstr "Modellek importálása"
  1502. msgctxt "@label:MonitorStatus"
  1503. msgid "In maintenance. Please check the printer"
  1504. msgstr "Karbantartás alatt. Ellenőrizze a nyomtatót"
  1505. msgctxt "@info"
  1506. msgid "In order to monitor your print from Cura, please connect the printer."
  1507. msgstr ""
  1508. msgctxt "@label"
  1509. msgid "In order to start using Cura you will need to configure a printer."
  1510. msgstr ""
  1511. msgctxt "@button"
  1512. msgid "In order to use the package you will need to restart Cura"
  1513. msgstr ""
  1514. msgctxt "@label"
  1515. msgid "Infill"
  1516. msgstr "Kitöltés"
  1517. msgctxt "@tooltip"
  1518. msgid "Infill"
  1519. msgstr "Kitöltés"
  1520. msgctxt "infill_sparse_density description"
  1521. msgid "Infill Density"
  1522. msgstr ""
  1523. msgctxt "@action:label"
  1524. msgid "Infill Pattern"
  1525. msgstr ""
  1526. msgctxt "@item:inlistbox"
  1527. msgid "Infill mesh only"
  1528. msgstr ""
  1529. msgctxt "@label"
  1530. msgid "Infill overlapping with this model is modified."
  1531. msgstr ""
  1532. msgctxt "@info:title"
  1533. msgid "Information"
  1534. msgstr "Információ"
  1535. msgctxt "@title"
  1536. msgid "Information"
  1537. msgstr "Információ"
  1538. msgctxt "@info:progress"
  1539. msgid "Initializing Active Machine..."
  1540. msgstr ""
  1541. msgctxt "@info:progress"
  1542. msgid "Initializing build volume..."
  1543. msgstr ""
  1544. msgctxt "@info:progress"
  1545. msgid "Initializing engine..."
  1546. msgstr ""
  1547. msgctxt "@info:progress"
  1548. msgid "Initializing machine manager..."
  1549. msgstr ""
  1550. msgctxt "@label"
  1551. msgid "Inner Wall"
  1552. msgstr "Belső fal"
  1553. msgctxt "@tooltip"
  1554. msgid "Inner Walls"
  1555. msgstr "Belső falak"
  1556. msgctxt "@text"
  1557. msgid "Insert the USB stick into your printer and launch the procedure to load new material profiles."
  1558. msgstr ""
  1559. msgctxt "@button"
  1560. msgid "Install"
  1561. msgstr ""
  1562. msgctxt "@header"
  1563. msgid "Install Materials"
  1564. msgstr ""
  1565. msgctxt "@window:title"
  1566. msgid "Install Package"
  1567. msgstr "Csomag telepítése"
  1568. msgctxt "@action:button"
  1569. msgid "Install Packages"
  1570. msgstr ""
  1571. msgctxt "@header"
  1572. msgid "Install Packages"
  1573. msgstr ""
  1574. msgctxt "@header"
  1575. msgid "Install Plugins"
  1576. msgstr ""
  1577. msgctxt "@action:button"
  1578. msgid "Install missing packages"
  1579. msgstr ""
  1580. msgctxt "@title"
  1581. msgid "Install missing packages"
  1582. msgstr ""
  1583. msgctxt "@label"
  1584. msgid "Install missing packages from project file."
  1585. msgstr ""
  1586. msgctxt "@button"
  1587. msgid "Install pending updates"
  1588. msgstr ""
  1589. msgctxt "@label"
  1590. msgid "Installed Materials"
  1591. msgstr ""
  1592. msgctxt "@label"
  1593. msgid "Installed Plugins"
  1594. msgstr ""
  1595. msgctxt "@button"
  1596. msgid "Installing..."
  1597. msgstr ""
  1598. msgctxt "@action:label"
  1599. msgid "Intent"
  1600. msgstr ""
  1601. msgctxt "@label"
  1602. msgid "Interface"
  1603. msgstr "Interfész"
  1604. msgctxt "@label Description for application component"
  1605. msgid "Interprocess communication library"
  1606. msgstr "Folyamatközi kommunikációs könyvtár"
  1607. msgctxt "@title:window"
  1608. msgid "Invalid IP address"
  1609. msgstr "Hibás IP cím"
  1610. msgctxt "@info:status"
  1611. msgid "Invalid file URL:"
  1612. msgstr "Érvénytelen fájl URL:"
  1613. msgctxt "@action:button"
  1614. msgid "Invert the direction of camera zoom."
  1615. msgstr "Fordítsa meg a kamera zoom irányát."
  1616. msgctxt "@label"
  1617. msgid "Is printed as support."
  1618. msgstr ""
  1619. msgctxt "@text"
  1620. msgid "It seems like you don't have any compatible printers connected to Digital Factory. Make sure your printer is connected and it's running the latest firmware."
  1621. msgstr ""
  1622. msgctxt "@item:inlistbox"
  1623. msgid "JPEG Image"
  1624. msgstr "JPEG kép"
  1625. msgctxt "@item:inlistbox"
  1626. msgid "JPG Image"
  1627. msgstr "JPG kép"
  1628. msgctxt "@label Description for application dependency"
  1629. msgid "JSON parser"
  1630. msgstr ""
  1631. msgctxt "@label"
  1632. msgid "Job Name"
  1633. msgstr "Feladat név"
  1634. msgctxt "@label"
  1635. msgid "Jog Distance"
  1636. msgstr "Léptetőgomb távolság"
  1637. msgctxt "@label"
  1638. msgid "Jog Position"
  1639. msgstr "Léptetőgomb pozíció"
  1640. msgctxt "@option:discardOrKeep"
  1641. msgid "Keep and never ask again"
  1642. msgstr "Megtartás és ne kérdezze újra"
  1643. msgctxt "@action:button"
  1644. msgid "Keep changes"
  1645. msgstr ""
  1646. msgctxt "@action:button"
  1647. msgid "Keep printer configurations"
  1648. msgstr ""
  1649. msgctxt "@action:menu"
  1650. msgid "Keep this setting visible"
  1651. msgstr "Beállítás látható marad"
  1652. msgctxt "@label The argument is a timestamp"
  1653. msgid "Last update: %1"
  1654. msgstr ""
  1655. msgctxt "@label:listbox"
  1656. msgid "Layer Thickness"
  1657. msgstr ""
  1658. msgctxt "@item:inlistbox"
  1659. msgid "Layer view"
  1660. msgstr "Réteg nézet"
  1661. msgctxt "@button:label"
  1662. msgid "Learn More"
  1663. msgstr ""
  1664. msgctxt "@button"
  1665. msgid "Learn how to connect your printer to Digital Factory"
  1666. msgstr ""
  1667. msgctxt "@tooltip:button"
  1668. msgid "Learn how to get started with UltiMaker Cura."
  1669. msgstr ""
  1670. msgctxt "@action"
  1671. msgid "Learn more"
  1672. msgstr ""
  1673. msgctxt "@action:button"
  1674. msgid "Learn more"
  1675. msgstr ""
  1676. msgctxt "@button"
  1677. msgid "Learn more"
  1678. msgstr ""
  1679. msgctxt "@button:label"
  1680. msgid "Learn more"
  1681. msgstr ""
  1682. msgctxt "@action:button"
  1683. msgid "Learn more about Cura print profiles"
  1684. msgstr ""
  1685. msgctxt "@button"
  1686. msgid "Learn more about adding printers to Cura"
  1687. msgstr ""
  1688. msgctxt "@label"
  1689. msgid "Learn more about project packages."
  1690. msgstr ""
  1691. msgctxt "@action:inmenu menubar:view"
  1692. msgid "Left Side View"
  1693. msgstr "Bal oldalnézet"
  1694. msgctxt "@info:tooltip"
  1695. msgid "Left View"
  1696. msgstr ""
  1697. msgctxt "name"
  1698. msgid "Legacy Cura Profile Reader"
  1699. msgstr "Örökölt Cura profil olvasó"
  1700. msgctxt "@tooltip:button"
  1701. msgid "Let developers know that something is going wrong."
  1702. msgstr ""
  1703. msgctxt "@action"
  1704. msgid "Level build plate"
  1705. msgstr "Tárgyasztal szint"
  1706. msgctxt "@item:inlistbox"
  1707. msgid "Lighter is higher"
  1708. msgstr "A világosabb a magasabb"
  1709. msgctxt "@label:listbox"
  1710. msgid "Line Type"
  1711. msgstr "Vonal típus"
  1712. msgctxt "@label:listbox"
  1713. msgid "Line Width"
  1714. msgstr ""
  1715. msgctxt "@item:inlistbox"
  1716. msgid "Linear"
  1717. msgstr ""
  1718. msgctxt "@label Description for development tool"
  1719. msgid "Linux cross-distribution application deployment"
  1720. msgstr "Linux kereszt-disztribúciós alkalmazás telepítése"
  1721. msgctxt "@label"
  1722. msgid "Load %3 as material %1 (This cannot be overridden)."
  1723. msgstr "Töltsd be %3 -at %1 anyagként. (Ez nem felülbírálható)."
  1724. msgctxt "@button"
  1725. msgid "Load more"
  1726. msgstr ""
  1727. msgctxt "@button"
  1728. msgid "Loading"
  1729. msgstr ""
  1730. msgctxt "@action:warning"
  1731. msgid "Loading a project will clear all models on the build plate."
  1732. msgstr "A projekt betöltésekor minden modell törlődik a tárgyasztalról."
  1733. msgctxt "@label"
  1734. msgid "Loading available configurations from the printer..."
  1735. msgstr "Az elérhető konfigurációk betöltése a nyomtatóról..."
  1736. msgctxt "@info:progress"
  1737. msgid "Loading interface..."
  1738. msgstr "Interfészek betöltése..."
  1739. msgctxt "@info:progress"
  1740. msgid "Loading machines..."
  1741. msgstr "Gépek betöltése ..."
  1742. msgctxt "@label:status"
  1743. msgid "Loading..."
  1744. msgstr "Betöltés..."
  1745. msgctxt "@title"
  1746. msgid "Loading..."
  1747. msgstr ""
  1748. msgctxt "@label:category menu label"
  1749. msgid "Local printers"
  1750. msgstr "Helyi nyomtatók"
  1751. msgctxt "@info:title"
  1752. msgid "Log-in failed"
  1753. msgstr ""
  1754. msgctxt "@info:title"
  1755. msgid "Login failed"
  1756. msgstr "Sikertelen bejelentkezés"
  1757. msgctxt "@title:groupbox"
  1758. msgid "Logs"
  1759. msgstr "Naplók"
  1760. msgctxt "description"
  1761. msgid "Logs certain events so that they can be used by the crash reporter"
  1762. msgstr ""
  1763. msgctxt "@label:MonitorStatus"
  1764. msgid "Lost connection with the printer"
  1765. msgstr "Elveszett a kapcsolat a nyomtatóval"
  1766. msgctxt "@action"
  1767. msgid "Machine Settings"
  1768. msgstr "Gép beállítások"
  1769. msgctxt "name"
  1770. msgid "Machine Settings Action"
  1771. msgstr ""
  1772. msgctxt "@backuplist:label"
  1773. msgid "Machines"
  1774. msgstr "Gépek"
  1775. msgctxt "@text"
  1776. msgid "Make sure all your printers are turned ON and connected to Digital Factory."
  1777. msgstr ""
  1778. msgctxt "@info:generic"
  1779. msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate."
  1780. msgstr "Győződj meg róla, hogy a G-kód igazodik a nyomtatódhoz és beállításaihoz, mielőtt elküldöd a fájlt. A G-kód ábrázolása nem biztos, hogy pontos."
  1781. msgctxt "@action:inmenu"
  1782. msgid "Manage Materials..."
  1783. msgstr "Anyagok kezelése..."
  1784. msgctxt "@action:inmenu menubar:printer"
  1785. msgid "Manage Pr&inters..."
  1786. msgstr "Nyomtatók kezelése..."
  1787. msgctxt "@action:inmenu menubar:profile"
  1788. msgid "Manage Profiles..."
  1789. msgstr "Profilok kezelése..."
  1790. msgctxt "@action:inmenu"
  1791. msgid "Manage Setting Visibility..."
  1792. msgstr "Beállítások láthatóságának kezelése..."
  1793. msgctxt "@item:inmenu"
  1794. msgid "Manage backups"
  1795. msgstr "Bitonsági mentések kezelése"
  1796. msgctxt "@label link to connect manager"
  1797. msgid "Manage in browser"
  1798. msgstr "Kezelés a böngészőben"
  1799. msgctxt "@header"
  1800. msgid "Manage packages"
  1801. msgstr ""
  1802. msgctxt "@info:tooltip"
  1803. msgid "Manage packages"
  1804. msgstr ""
  1805. msgctxt "@action"
  1806. msgid "Manage print jobs"
  1807. msgstr ""
  1808. msgctxt "@label link to Connect and Cloud interfaces"
  1809. msgid "Manage printer"
  1810. msgstr "Nyomtató kezelés"
  1811. msgctxt "@button"
  1812. msgid "Manage printers"
  1813. msgstr "Nyomtatók kezelése"
  1814. msgctxt "@text"
  1815. msgid "Manage your UltiMaker Cura plugins and material profiles here. Make sure to keep your plugins up to date and backup your setup regularly."
  1816. msgstr ""
  1817. msgctxt "description"
  1818. msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website."
  1819. msgstr ""
  1820. msgctxt "description"
  1821. msgid "Manages network connections to UltiMaker networked printers."
  1822. msgstr "Kezeli a hálózati csatlakozásokat az UltiMaker hálózati nyomtatókhoz."
  1823. msgctxt "@label"
  1824. msgid "Manufacturer"
  1825. msgstr ""
  1826. msgctxt "@action:button"
  1827. msgid "Marketplace"
  1828. msgstr "Piactér"
  1829. msgctxt "@label"
  1830. msgid "Marketplace"
  1831. msgstr "Piactér"
  1832. msgctxt "name"
  1833. msgid "Marketplace"
  1834. msgstr ""
  1835. msgctxt "@action:label"
  1836. msgid "Material"
  1837. msgstr "Alapanyag"
  1838. msgctxt "@label"
  1839. msgid "Material"
  1840. msgstr "Alapanyag"
  1841. msgctxt "@label:category menu label"
  1842. msgid "Material"
  1843. msgstr "Alapanyag"
  1844. msgctxt "@label:listbox"
  1845. msgid "Material Color"
  1846. msgstr "Alapanyag szín"
  1847. msgctxt "name"
  1848. msgid "Material Profiles"
  1849. msgstr "Alapanyag profilok"
  1850. msgctxt "@label"
  1851. msgid "Material Type"
  1852. msgstr "Alapanyag típus"
  1853. msgctxt "@title"
  1854. msgid "Material color picker"
  1855. msgstr ""
  1856. msgctxt "@label"
  1857. msgid "Material estimation"
  1858. msgstr "Anyag becslés"
  1859. msgctxt "@title:header"
  1860. msgid "Material profiles successfully synced with the following printers:"
  1861. msgstr ""
  1862. msgctxt "@action:label"
  1863. msgid "Material settings"
  1864. msgstr "Alapanyag beállítások"
  1865. msgctxt "@backuplist:label"
  1866. msgid "Materials"
  1867. msgstr "Alapanyagok"
  1868. msgctxt "@button"
  1869. msgid "Materials"
  1870. msgstr ""
  1871. msgctxt "@title:tab"
  1872. msgid "Materials"
  1873. msgstr "Alapanyagok"
  1874. msgctxt "@label"
  1875. msgid "Materials compatible with active printer:"
  1876. msgstr ""
  1877. msgctxt "@label"
  1878. msgid "Mesh Type"
  1879. msgstr "Háló típus"
  1880. msgctxt "@action:label"
  1881. msgid "Mode"
  1882. msgstr "Mód"
  1883. msgctxt "name"
  1884. msgid "Model Checker"
  1885. msgstr "Modell-ellenőrző"
  1886. msgctxt "@info:title"
  1887. msgid "Model Errors"
  1888. msgstr ""
  1889. msgctxt "@item:inmenu"
  1890. msgid "Modify G-Code"
  1891. msgstr "G-kód módosítás"
  1892. msgctxt "@label"
  1893. msgid "Modify settings for overlaps"
  1894. msgstr ""
  1895. msgctxt "@item:inmenu"
  1896. msgid "Monitor"
  1897. msgstr ""
  1898. msgctxt "name"
  1899. msgid "Monitor Stage"
  1900. msgstr "Monitor nézet"
  1901. msgctxt "@action:button"
  1902. msgid "Monitor print"
  1903. msgstr ""
  1904. msgctxt "@tooltip:button"
  1905. msgid "Monitor print jobs and reprint from your print history."
  1906. msgstr ""
  1907. msgctxt "@tooltip:button"
  1908. msgid "Monitor printers in Ultimaker Digital Factory."
  1909. msgstr ""
  1910. msgctxt "@info"
  1911. msgid "Monitor your printers from everywhere using Ultimaker Digital Factory"
  1912. msgstr ""
  1913. msgctxt "@title:window"
  1914. msgid "More information on anonymous data collection"
  1915. msgstr "További információ a névtelen adatgyűjtésről"
  1916. msgctxt "@window:title"
  1917. msgid "Move print job to top"
  1918. msgstr "Tedd a nyomtatási sor elejére"
  1919. msgctxt "@action:button"
  1920. msgid "Move to Next Position"
  1921. msgstr "Mozgás a következő pozícióba"
  1922. msgctxt "@label"
  1923. msgid "Move to top"
  1924. msgstr "Lépj a tetjére"
  1925. msgctxt "@info:tooltip"
  1926. msgid "Moves the camera so the model is in the center of the view when a model is selected"
  1927. msgstr "A kamerát úgy mozgatja, hogy a modell kiválasztásakor, az a nézet középpontjában legyen"
  1928. msgctxt "@action:inmenu menubar:edit"
  1929. msgid "Multiply Selected"
  1930. msgstr ""
  1931. msgctxt "@title:window"
  1932. msgid "Multiply Selected Model"
  1933. msgid_plural "Multiply Selected Models"
  1934. msgstr[0] "Kiválasztott modell sokszorozása"
  1935. msgstr[1] "Kiválasztott modellek sokszorozása"
  1936. msgctxt "@info"
  1937. msgid "Multiply selected item and place them in a grid of build plate."
  1938. msgstr ""
  1939. msgctxt "@info:status"
  1940. msgid "Multiplying and placing objects"
  1941. msgstr "Tárgyak többszörözése és elhelyezése"
  1942. msgctxt "@title"
  1943. msgid "My Backups"
  1944. msgstr "Biztonsági mentéseim"
  1945. msgctxt "@label:button"
  1946. msgid "My printers"
  1947. msgstr ""
  1948. msgctxt "@action:label"
  1949. msgid "Name"
  1950. msgstr "Név"
  1951. msgctxt "@label:category menu label"
  1952. msgid "Network enabled printers"
  1953. msgstr "Hálózati nyomtatók"
  1954. msgctxt "@info:title"
  1955. msgid "Network error"
  1956. msgstr "Hálózati hiba"
  1957. #, python-format
  1958. msgctxt "@info:title The %s gets replaced with the printer name."
  1959. msgid "New %s stable firmware available"
  1960. msgstr ""
  1961. msgctxt "@textfield:placeholder"
  1962. msgid "New Custom Profile"
  1963. msgstr ""
  1964. msgctxt "@label"
  1965. msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely."
  1966. msgstr ""
  1967. #, python-brace-format
  1968. msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  1969. msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}."
  1970. msgstr ""
  1971. msgctxt "@action:button"
  1972. msgid "New materials installed"
  1973. msgstr ""
  1974. msgctxt "info:status"
  1975. msgid "New printer detected from your Ultimaker account"
  1976. msgid_plural "New printers detected from your Ultimaker account"
  1977. msgstr[0] ""
  1978. msgstr[1] ""
  1979. msgctxt "@title:window"
  1980. msgid "New project"
  1981. msgstr "Új projekt"
  1982. msgctxt "@action:button"
  1983. msgid "Next"
  1984. msgstr "Következő"
  1985. msgctxt "@button"
  1986. msgid "Next"
  1987. msgstr "Következő"
  1988. msgctxt "@info:title"
  1989. msgid "Nightly build"
  1990. msgstr ""
  1991. msgctxt "@info"
  1992. msgid "No"
  1993. msgstr ""
  1994. msgctxt "@info"
  1995. msgid "No compatibility information"
  1996. msgstr ""
  1997. msgctxt "@description"
  1998. msgid "No compatible printers, that are currently online, were found."
  1999. msgstr ""
  2000. msgctxt "@label"
  2001. msgid "No cost estimation available"
  2002. msgstr "Nincs költségbecslés"
  2003. #, python-brace-format
  2004. msgctxt "@info:status Don't translate the XML tags <filename>!"
  2005. msgid "No custom profile to import in file <filename>{0}</filename>"
  2006. msgstr "Nincs egyéni profil a <filename>{0}</filename> fájlban, amelyet importálni lehetne"
  2007. msgctxt "@label"
  2008. msgid "No items to select from"
  2009. msgstr ""
  2010. msgctxt "@info:title"
  2011. msgid "No layers to show"
  2012. msgstr ""
  2013. msgctxt "@message"
  2014. msgid "No more results to load"
  2015. msgstr ""
  2016. msgctxt "@error:zip"
  2017. msgid "No permission to write the workspace here."
  2018. msgstr ""
  2019. msgctxt "@title:header"
  2020. msgid "No printers found"
  2021. msgstr ""
  2022. msgctxt "@label"
  2023. msgid "No printers found in your account?"
  2024. msgstr ""
  2025. msgctxt "@message:text %1 is the name the printer uses for 'nozzle'."
  2026. msgid "No profiles are available for the selected material/%1 configuration. Please change your configuration."
  2027. msgstr ""
  2028. msgctxt "@message"
  2029. msgid "No results found with current filter"
  2030. msgstr ""
  2031. msgctxt "@label"
  2032. msgid "No time estimation available"
  2033. msgstr "Nincs időbecslés"
  2034. msgctxt "@button"
  2035. msgid "Non UltiMaker printer"
  2036. msgstr ""
  2037. msgctxt "@info No materials"
  2038. msgid "None"
  2039. msgstr ""
  2040. msgctxt "@label"
  2041. msgid "Normal model"
  2042. msgstr "Normál mód"
  2043. msgctxt "@info:title"
  2044. msgid "Not a group host"
  2045. msgstr "Nem csoport"
  2046. msgctxt "@label:MonitorStatus"
  2047. msgid "Not connected to a printer"
  2048. msgstr "Nincs nyomtatóhoz csatlakoztatva"
  2049. msgctxt "@action:label"
  2050. msgid "Not in profile"
  2051. msgstr "Nincs a profilban"
  2052. msgctxt "@menuitem"
  2053. msgid "Not overridden"
  2054. msgstr "Nincs felülírva"
  2055. msgctxt "@info:not supported profile"
  2056. msgid "Not supported"
  2057. msgstr "Nem támogatott"
  2058. msgctxt "@label"
  2059. msgid "Not yet initialized"
  2060. msgstr ""
  2061. msgctxt "@info:status"
  2062. msgid "Nothing is shown because you need to slice first."
  2063. msgstr ""
  2064. msgctxt "@label"
  2065. msgid "Nozzle"
  2066. msgstr "Fúvóka"
  2067. msgctxt "@title:label"
  2068. msgid "Nozzle Settings"
  2069. msgstr "Fűvóka beállítások"
  2070. msgctxt "@label"
  2071. msgid "Nozzle offset X"
  2072. msgstr "Fúvóka X eltolás"
  2073. msgctxt "@label"
  2074. msgid "Nozzle offset Y"
  2075. msgstr "Fúvóka Y eltolás"
  2076. msgctxt "@label"
  2077. msgid "Nozzle size"
  2078. msgstr "Fúvóka méret"
  2079. msgctxt "@label"
  2080. msgid "Number of Copies"
  2081. msgstr "Másolatok száma"
  2082. msgctxt "@label"
  2083. msgid "Number of Extruders"
  2084. msgstr "Extruderek száma"
  2085. msgctxt "@action:button"
  2086. msgid "OK"
  2087. msgstr "OK"
  2088. msgctxt "@label"
  2089. msgid "OS language"
  2090. msgstr ""
  2091. msgctxt "@label"
  2092. msgid "Object list"
  2093. msgstr "Objektum lista"
  2094. msgctxt "@label:Should be short"
  2095. msgid "Off"
  2096. msgstr "Ki"
  2097. msgctxt "@label:Should be short"
  2098. msgid "On"
  2099. msgstr "Be"
  2100. msgctxt "@label"
  2101. msgid "Only Show Top Layers"
  2102. msgstr "Csak a felső rétegek megjelenítése"
  2103. #, python-brace-format
  2104. msgctxt "@info:status"
  2105. msgid "Only one G-code file can be loaded at a time. Skipped importing {0}"
  2106. msgstr "Egyszerre csak egy G-kód fájlt lehet betölteni. Az importálás kihagyva {0}"
  2107. msgctxt "@action:button"
  2108. msgid "Open"
  2109. msgstr "Megnyitás"
  2110. msgctxt "@title:menu menubar:file"
  2111. msgid "Open &Recent"
  2112. msgstr "Legutóbbi fájlok"
  2113. msgctxt "@item:inlistbox 'Open' is part of the name of this file format."
  2114. msgid "Open Compressed Triangle Mesh"
  2115. msgstr ""
  2116. msgctxt "@title:window"
  2117. msgid "Open File(s)"
  2118. msgstr "Fájl(ok) megnyitása"
  2119. msgctxt "@title:menu menubar:file"
  2120. msgid "Open File(s)..."
  2121. msgstr ""
  2122. msgctxt "@title:window"
  2123. msgid "Open Project"
  2124. msgstr "Projekt megnyitása"
  2125. msgctxt "@info:title"
  2126. msgid "Open Project File"
  2127. msgstr "Projekt fájl megnyitása"
  2128. msgctxt "@action:label"
  2129. msgid "Open With"
  2130. msgstr ""
  2131. msgctxt "@action:button"
  2132. msgid "Open as project"
  2133. msgstr "Megnyitás projektként"
  2134. msgctxt "@title:window"
  2135. msgid "Open file(s)"
  2136. msgstr "Fájl(ok) megnyitása"
  2137. msgctxt "@action:button"
  2138. msgid "Open project anyway"
  2139. msgstr ""
  2140. msgctxt "@title:window"
  2141. msgid "Open project file"
  2142. msgstr "Projekt fájl megnyitása"
  2143. msgctxt "@label OpenGL version"
  2144. msgid "OpenGL"
  2145. msgstr "OpenGL"
  2146. msgctxt "@label"
  2147. msgid "Opening and saving files"
  2148. msgstr "Fájlok megnyitása és mentése"
  2149. msgctxt "@header"
  2150. msgid "Optimized for Air Manager"
  2151. msgstr ""
  2152. msgctxt "@label"
  2153. msgid "Origin at center"
  2154. msgstr "Origó középen"
  2155. msgid "Orthographic"
  2156. msgstr "Merőleges"
  2157. msgctxt "@action:inmenu menubar:view"
  2158. msgid "Orthographic"
  2159. msgstr "Merőleges"
  2160. msgctxt "@tooltip"
  2161. msgid "Other"
  2162. msgstr "Egyéb"
  2163. msgctxt "@label"
  2164. msgid "Other models overlapping with this model are modified."
  2165. msgstr ""
  2166. msgctxt "@label"
  2167. msgid "Other printers"
  2168. msgstr ""
  2169. msgctxt "@tooltip"
  2170. msgid "Outer Wall"
  2171. msgstr "Külső fal"
  2172. msgctxt "@label"
  2173. msgid "Overlaps with this model are not supported."
  2174. msgstr ""
  2175. msgctxt "@action:button"
  2176. msgid "Override"
  2177. msgstr "Felülírás"
  2178. msgctxt "@label"
  2179. msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print."
  2180. msgstr "A felülbírálás a megadott beállításokat fogja használni a meglévő nyomtató konfigurációval, azonban ez eredménytelen nyomtatáshoz vezethet."
  2181. msgctxt "@label %1 is the number of settings it overrides."
  2182. msgid "Overrides %1 setting."
  2183. msgid_plural "Overrides %1 settings."
  2184. msgstr[0] ""
  2185. msgstr[1] ""
  2186. msgctxt "@title:menu menubar:toplevel"
  2187. msgid "P&references"
  2188. msgstr "P&referenciák"
  2189. msgctxt "@item:inlistbox"
  2190. msgid "PNG Image"
  2191. msgstr "PNG kép"
  2192. msgctxt "@header"
  2193. msgid "Package details"
  2194. msgstr ""
  2195. msgctxt "@label Description for development tool"
  2196. msgid "Packaging Python-applications"
  2197. msgstr ""
  2198. msgctxt "@info:status"
  2199. msgid "Parsing G-code"
  2200. msgstr "G-kód elemzés"
  2201. msgctxt "@action:inmenu menubar:edit"
  2202. msgid "Paste from clipboard"
  2203. msgstr ""
  2204. msgctxt "@label"
  2205. msgid "Pause"
  2206. msgstr "Várakozás"
  2207. msgctxt "@label:MonitorStatus"
  2208. msgid "Paused"
  2209. msgstr "Felfüggsztve"
  2210. msgctxt "@label:status"
  2211. msgid "Paused"
  2212. msgstr "Várakozás"
  2213. msgctxt "@label"
  2214. msgid "Pausing..."
  2215. msgstr "Várakozás..."
  2216. msgctxt "@label:status"
  2217. msgid "Pausing..."
  2218. msgstr "Várakozás..."
  2219. msgctxt "@label"
  2220. msgid "Per Model Settings"
  2221. msgstr "Modellenkénti beállítások"
  2222. msgctxt "name"
  2223. msgid "Per Model Settings Tool"
  2224. msgstr "Modellenkénti beállítás-eszköz"
  2225. msgid "Perspective"
  2226. msgstr "Perspetívikus"
  2227. msgctxt "@action:inmenu menubar:view"
  2228. msgid "Perspective"
  2229. msgstr "Perspektívikus"
  2230. msgctxt "@action:label"
  2231. msgid "Placement"
  2232. msgstr ""
  2233. msgctxt "@info:title"
  2234. msgid "Placing Object"
  2235. msgstr "Tárgy elhelyezése"
  2236. msgctxt "@info:title"
  2237. msgid "Placing Objects"
  2238. msgstr "Tárgyak elhelyezése"
  2239. msgctxt "@label Type of platform"
  2240. msgid "Platform"
  2241. msgstr "Felület"
  2242. msgctxt "@info"
  2243. msgid "Please connect your printer to the network."
  2244. msgstr "Csatlakoztasd a nyomtatót a hálózathoz."
  2245. msgctxt "@text"
  2246. msgid "Please enter a valid IP address."
  2247. msgstr "Kérlek adj meg egy érvényes IP címet."
  2248. msgctxt "@message"
  2249. msgid "Please give the required permissions when authorizing this application."
  2250. msgstr "Kérjük, adja meg a szükséges jogosultságokat az alkalmazás engedélyezéséhez."
  2251. msgctxt "@info"
  2252. msgid ""
  2253. "Please make sure your printer has a connection:\n"
  2254. "- Check if the printer is turned on.\n"
  2255. "- Check if the printer is connected to the network.\n"
  2256. "- Check if you are signed in to discover cloud-connected printers."
  2257. msgstr ""
  2258. "Győződj meg, hogy a nyomtató csatlakozása rendben van:\n"
  2259. "- Ellenőrizd, hogy a nyomtató be van-e kapcsolva.\n"
  2260. "- Ellenőrizd, hogy a nyomtató csatlakozik a hálózathoz\n"
  2261. "- Ellenőrizd, hogy fel vagy-e jelentkezve a felhőbe."
  2262. msgctxt "@text"
  2263. msgid "Please name your printer"
  2264. msgstr ""
  2265. msgctxt "@warning:status"
  2266. msgid "Please prepare G-code before exporting."
  2267. msgstr "Készítse elő a G-kódot az exportálás előtt."
  2268. msgctxt "@info"
  2269. msgid "Please provide a name for this profile."
  2270. msgstr "Adjon nevet ehhez a profilhoz."
  2271. msgctxt "@info"
  2272. msgid "Please provide a new name."
  2273. msgstr ""
  2274. msgctxt "@text"
  2275. msgid "Please read and agree with the plugin licence."
  2276. msgstr ""
  2277. msgctxt "@label:MonitorStatus"
  2278. msgid "Please remove the print"
  2279. msgstr "Távolítsa el a tárgyat"
  2280. msgctxt "@info:status"
  2281. msgid ""
  2282. "Please review settings and check if your models:\n"
  2283. "- Fit within the build volume\n"
  2284. "- Are assigned to an enabled extruder\n"
  2285. "- Are not all set as modifier meshes"
  2286. msgstr ""
  2287. msgctxt "@label"
  2288. msgid "Please select any upgrades made to this UltiMaker Original"
  2289. msgstr "Kérjük, válassza ki az UltiMaker Original eredeti frissítéseit"
  2290. msgctxt "@description"
  2291. msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise"
  2292. msgstr ""
  2293. msgctxt "@action:button"
  2294. msgid "Please sync the material profiles with your printers before starting to print."
  2295. msgstr ""
  2296. msgctxt "@info"
  2297. msgid "Please update your printer's firmware to manage the queue remotely."
  2298. msgstr "A távoli nyomtatásisor kezeléshez kérjük frissítse a firmware-t."
  2299. msgctxt "@info:status"
  2300. msgid "Please wait until the current job has been sent."
  2301. msgstr "Várja meg, amíg az aktuális feladat elküldésre kerül."
  2302. msgctxt "@title:window"
  2303. msgid "Plugin License Agreement"
  2304. msgstr "Kiegészítő licencszerződés"
  2305. msgctxt "@button"
  2306. msgid "Plugin license agreement"
  2307. msgstr ""
  2308. msgctxt "@backuplist:label"
  2309. msgid "Plugins"
  2310. msgstr "Beépülők"
  2311. msgctxt "@button"
  2312. msgid "Plugins"
  2313. msgstr ""
  2314. msgctxt "@label Description for application dependency"
  2315. msgid "Polygon clipping library"
  2316. msgstr "Poligon daraboló könyvtár"
  2317. msgctxt "@label Description for application component"
  2318. msgid "Polygon packing library, developed by Prusa Research"
  2319. msgstr ""
  2320. msgctxt "@item:inmenu"
  2321. msgid "Post Processing"
  2322. msgstr "Utólagos műveletek"
  2323. msgctxt "name"
  2324. msgid "Post Processing"
  2325. msgstr "Utólagos feldolgozás"
  2326. msgctxt "@title:window"
  2327. msgid "Post Processing Plugin"
  2328. msgstr "Utó művelet beépülő"
  2329. msgctxt "@label"
  2330. msgid "Post Processing Scripts"
  2331. msgstr "Utó művelet szkript"
  2332. msgctxt "@button"
  2333. msgid "Pre-heat"
  2334. msgstr "Előfűtés"
  2335. msgctxt "@item:inmenu"
  2336. msgid "Prepare"
  2337. msgstr "Előkészítés"
  2338. msgctxt "name"
  2339. msgid "Prepare Stage"
  2340. msgstr "Előkészítés nézet"
  2341. msgctxt "@label:MonitorStatus"
  2342. msgid "Preparing..."
  2343. msgstr "Előkészítés..."
  2344. msgctxt "@label:status"
  2345. msgid "Preparing..."
  2346. msgstr "Előkészítés..."
  2347. msgctxt "@label"
  2348. msgid "Preset printers"
  2349. msgstr "Előre beállított nyomtatók"
  2350. msgctxt "@button"
  2351. msgid "Preview"
  2352. msgstr "Előnézet"
  2353. msgctxt "@item:inmenu"
  2354. msgid "Preview"
  2355. msgstr "Előnézet"
  2356. msgctxt "name"
  2357. msgid "Preview Stage"
  2358. msgstr "Előnézet"
  2359. msgctxt "@tooltip"
  2360. msgid "Prime Tower"
  2361. msgstr "Elsődleges torony"
  2362. msgctxt "@action:button"
  2363. msgid "Print"
  2364. msgstr "Nyomtatás"
  2365. msgctxt "@label"
  2366. msgid "Print Selected Model With:"
  2367. msgid_plural "Print Selected Models With:"
  2368. msgstr[0] "Kiválasztott modell nyomtatása:"
  2369. msgstr[1] "Kiválasztott modellek nyomtatása:"
  2370. msgctxt "@label %1 is filled in with the name of an extruder"
  2371. msgid "Print Selected Model with %1"
  2372. msgid_plural "Print Selected Models with %1"
  2373. msgstr[0] "Kiválasztott modell nyomtatása %1"
  2374. msgstr[1] "Kiválasztott modellek nyomtatása %1"
  2375. msgctxt "@label"
  2376. msgid "Print as support"
  2377. msgstr "Támaszként nyomtassa"
  2378. msgctxt "@info:title"
  2379. msgid "Print error"
  2380. msgstr "Nyomtatási hiba"
  2381. msgctxt "@message"
  2382. msgid "Print in Progress"
  2383. msgstr "Nyomtatás folyamatban"
  2384. msgctxt "@info:status"
  2385. msgid "Print job queue is full. The printer can't accept a new job."
  2386. msgstr ""
  2387. msgctxt "@info:status"
  2388. msgid "Print job was successfully sent to the printer."
  2389. msgstr "A nyomtatási feladat sikeresen elküldésre került a nyomtatóra."
  2390. msgctxt "@label"
  2391. msgid "Print jobs"
  2392. msgstr "Nyomtatások"
  2393. msgctxt "@label:button"
  2394. msgid "Print jobs"
  2395. msgstr ""
  2396. msgctxt "@action:button Preceded by 'Ready to'."
  2397. msgid "Print over network"
  2398. msgstr "Hálózati nyomtatás"
  2399. msgctxt "@properties:tooltip"
  2400. msgid "Print over network"
  2401. msgstr "Hálózati nyomtatás"
  2402. msgctxt "@title:window"
  2403. msgid "Print over network"
  2404. msgstr "Nyomtatás hálózaton"
  2405. msgctxt "@label"
  2406. msgid "Print settings"
  2407. msgstr "Nyomtatási beállítások"
  2408. msgctxt "@label shown when we load a Gcode file"
  2409. msgid "Print setup disabled. G-code file can not be modified."
  2410. msgstr "A nyomtatás beállítása letiltva. A G-kód fájl nem módosítható."
  2411. msgctxt "@action:button Preceded by 'Ready to'."
  2412. msgid "Print via USB"
  2413. msgstr "Nyomtatás USB-ről"
  2414. msgctxt "@info:tooltip"
  2415. msgid "Print via USB"
  2416. msgstr "Nyomtatás USB-ről"
  2417. msgctxt "@action:button"
  2418. msgid "Print via cloud"
  2419. msgstr ""
  2420. msgctxt "@properties:tooltip"
  2421. msgid "Print via cloud"
  2422. msgstr ""
  2423. msgctxt "@action:label"
  2424. msgid "Print with"
  2425. msgstr ""
  2426. msgctxt "@title:tab"
  2427. msgid "Printer"
  2428. msgstr "Nyomtató"
  2429. msgctxt "@title:window"
  2430. msgid "Printer Address"
  2431. msgstr "Nyomtató cím"
  2432. msgctxt "@action:label"
  2433. msgid "Printer Group"
  2434. msgstr "Nyomtató csoport"
  2435. msgctxt "@title:label"
  2436. msgid "Printer Settings"
  2437. msgstr "Nyomtató beállítás"
  2438. msgctxt "@label"
  2439. msgid "Printer control"
  2440. msgstr "Nyomtató vezérlés"
  2441. msgctxt "@label:MonitorStatus"
  2442. msgid "Printer does not accept commands"
  2443. msgstr "A nyomtató nem fogadja a parancsokat"
  2444. msgctxt "@label"
  2445. msgid "Printer name"
  2446. msgstr "Nyomtató név"
  2447. msgctxt "@label"
  2448. msgid "Printer selection"
  2449. msgstr "Nyomtató kiválasztás"
  2450. msgctxt "@action:label"
  2451. msgid "Printer settings"
  2452. msgstr "Nyomtató beállítások"
  2453. msgctxt "@info:tooltip"
  2454. msgid "Printer settings will be updated to match the settings saved with the project."
  2455. msgstr ""
  2456. msgctxt "@title:tab"
  2457. msgid "Printers"
  2458. msgstr "Nyomtatók"
  2459. msgctxt "info:status"
  2460. msgid "Printers added from Digital Factory:"
  2461. msgstr ""
  2462. msgctxt "@text Asking the user whether printers are missing in a list."
  2463. msgid "Printers missing?"
  2464. msgstr ""
  2465. msgctxt "@title:label"
  2466. msgid "Printhead Settings"
  2467. msgstr "Nyomtatófej beállítások"
  2468. msgctxt "@label:status"
  2469. msgid "Printing"
  2470. msgstr ""
  2471. msgctxt "@label"
  2472. msgid "Printing Time"
  2473. msgstr "Nyomtatási idő"
  2474. msgctxt "@label:MonitorStatus"
  2475. msgid "Printing..."
  2476. msgstr "Nyomtatás..."
  2477. msgctxt "@label"
  2478. msgid "Privacy"
  2479. msgstr "Magán"
  2480. msgctxt "@button"
  2481. msgid "Processing"
  2482. msgstr "Feldolgozás"
  2483. msgctxt "@info:status"
  2484. msgid "Processing Layers"
  2485. msgstr "Réteg feldolgozás"
  2486. msgctxt "@label"
  2487. msgid "Profile"
  2488. msgstr "Profil"
  2489. msgctxt "@title:column"
  2490. msgid "Profile"
  2491. msgstr "Profil"
  2492. msgctxt "@label"
  2493. msgid "Profile author"
  2494. msgstr ""
  2495. msgctxt "@info:status"
  2496. msgid "Profile is missing a quality type."
  2497. msgstr "Hiányzik a profil minőségi típusa."
  2498. msgctxt "@action:label"
  2499. msgid "Profile settings"
  2500. msgstr "Profil beállítások"
  2501. msgctxt "@title:column"
  2502. msgid "Profile settings"
  2503. msgstr "Profil beállítások"
  2504. #, python-brace-format
  2505. msgctxt "@info:status"
  2506. msgid "Profile {0} has an unknown file type or is corrupted."
  2507. msgstr "A(z) {0} profil ismeretlen fájltípusú vagy sérült."
  2508. msgctxt "@backuplist:label"
  2509. msgid "Profiles"
  2510. msgstr "Profilok"
  2511. msgctxt "@label"
  2512. msgid "Profiles"
  2513. msgstr "Profilok"
  2514. msgctxt "@title:tab"
  2515. msgid "Profiles"
  2516. msgstr "Profilok"
  2517. msgctxt "@label"
  2518. msgid "Profiles compatible with active printer:"
  2519. msgstr ""
  2520. msgctxt "@label Description for application dependency"
  2521. msgid "Programming language"
  2522. msgstr "Programozási nyelv"
  2523. #, python-brace-format
  2524. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  2525. msgid "Project file <filename>{0}</filename> contains an unknown machine type <message>{1}</message>. Cannot import the machine. Models will be imported instead."
  2526. msgstr "A projekt fájl <filename>{0}</filename> egy ismeretlen <message>{1}</message> géptípust tartalmaz.Gépet nem lehet importálni. Importálj helyette modelleket."
  2527. #, python-brace-format
  2528. msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
  2529. msgid "Project file <filename>{0}</filename> is corrupt: <message>{1}</message>."
  2530. msgstr ""
  2531. #, python-brace-format
  2532. msgctxt "@info:error Don't translate the XML tag <filename>!"
  2533. msgid "Project file <filename>{0}</filename> is made using profiles that are unknown to this version of UltiMaker Cura."
  2534. msgstr ""
  2535. #, python-brace-format
  2536. msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
  2537. msgid "Project file <filename>{0}</filename> is suddenly inaccessible: <message>{1}</message>."
  2538. msgstr ""
  2539. msgctxt "@label"
  2540. msgid "Properties"
  2541. msgstr "Tulajdonságok"
  2542. msgctxt "description"
  2543. msgid "Provides a machine actions for updating firmware."
  2544. msgstr "Gépi funkciókat biztosít a firmware frissítéséhez."
  2545. msgctxt "description"
  2546. msgid "Provides a monitor stage in Cura."
  2547. msgstr "Monitor nézetet biztosít a Cura -ban."
  2548. msgctxt "description"
  2549. msgid "Provides a normal solid mesh view."
  2550. msgstr "Felületi háló nézetet biztosít."
  2551. msgctxt "description"
  2552. msgid "Provides a prepare stage in Cura."
  2553. msgstr "Biztosítja az előkészítés nézetet a Cura-ban."
  2554. msgctxt "description"
  2555. msgid "Provides a preview stage in Cura."
  2556. msgstr "Előnézet biztosítása a Cura -ban."
  2557. msgctxt "description"
  2558. msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)."
  2559. msgstr "A géoi beállítások megváltoztatásának lehetőségét biztosítja.(például a építési méret, fúvóka méret, stb.)"
  2560. msgctxt "description"
  2561. msgid "Provides capabilities to read and write XML-based material profiles."
  2562. msgstr "Lehetővé teszi az XML-alapú anyagprofilok olvasását és írását."
  2563. msgctxt "description"
  2564. msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)."
  2565. msgstr "Gépi funkciók biztosítása az UltiMaker nyomtatók számára.(pl.: ágyszintezés varázsló, frissítések kiválasztása.)"
  2566. msgctxt "description"
  2567. msgid "Provides removable drive hotplugging and writing support."
  2568. msgstr "Támogatás a cserélhető meghajtók üzem közbeni cseréjét és írását."
  2569. msgctxt "description"
  2570. msgid "Provides support for exporting Cura profiles."
  2571. msgstr "Támogatást nyújt a Cura profilok exportálásához."
  2572. msgctxt "description"
  2573. msgid "Provides support for importing Cura profiles."
  2574. msgstr "Támogatást nyújt a Cura profilok importálásához."
  2575. msgctxt "description"
  2576. msgid "Provides support for importing profiles from g-code files."
  2577. msgstr "Támogatást nyújt a profilok g-kód fájlokból történő importálásához."
  2578. msgctxt "description"
  2579. msgid "Provides support for importing profiles from legacy Cura versions."
  2580. msgstr "Támogatást nyújt a profilok importálásához a régi Cura verziókból."
  2581. msgctxt "description"
  2582. msgid "Provides support for reading 3MF files."
  2583. msgstr "Támogatást nyújt a 3MF fájlok olvasásához."
  2584. msgctxt "description"
  2585. msgid "Provides support for reading AMF files."
  2586. msgstr "Támogatást nyújt az AMF fájlok olvasásához."
  2587. msgctxt "description"
  2588. msgid "Provides support for reading Ultimaker Format Packages."
  2589. msgstr ""
  2590. msgctxt "description"
  2591. msgid "Provides support for reading X3D files."
  2592. msgstr "Támogatást nyújt az X3D fájlok olvasásához."
  2593. msgctxt "description"
  2594. msgid "Provides support for reading model files."
  2595. msgstr "Támogatást nyújt a modellfájlok olvasásához."
  2596. msgctxt "description"
  2597. msgid "Provides support for writing 3MF files."
  2598. msgstr "Támogatást nyújt a 3MF fájlok írásához."
  2599. msgctxt "description"
  2600. msgid "Provides support for writing Ultimaker Format Packages."
  2601. msgstr ""
  2602. msgctxt "description"
  2603. msgid "Provides the Per Model Settings."
  2604. msgstr "Biztosítja a modellenkénti beállításokat."
  2605. msgctxt "description"
  2606. msgid "Provides the X-Ray view."
  2607. msgstr "Röntgen nézetet biztosít."
  2608. msgctxt "description"
  2609. msgid "Provides the link to the CuraEngine slicing backend."
  2610. msgstr "Biztosítja a kapcsolatot a CuraEngine szeletelő motorhoz."
  2611. msgctxt "description"
  2612. msgid "Provides the preview of sliced layerdata."
  2613. msgstr ""
  2614. msgctxt "@label"
  2615. msgid "PyQt version"
  2616. msgstr "PyQt verzió"
  2617. msgctxt "@Label Description for application dependency"
  2618. msgid "Python Error tracking library"
  2619. msgstr ""
  2620. msgctxt "@label Description for application dependency"
  2621. msgid "Python bindings for Clipper"
  2622. msgstr ""
  2623. msgctxt "@label Description for application component"
  2624. msgid "Python bindings for libnest2d"
  2625. msgstr ""
  2626. msgctxt "@label"
  2627. msgid "Qt version"
  2628. msgstr "Qt verzió"
  2629. #, python-brace-format
  2630. msgctxt "@info:status"
  2631. msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'."
  2632. msgstr ""
  2633. msgctxt "@info:title"
  2634. msgid "Queue Full"
  2635. msgstr ""
  2636. msgctxt "@label"
  2637. msgid "Queued"
  2638. msgstr "Nyomtatási Sor"
  2639. msgctxt "@info:button, %1 is the application name"
  2640. msgid "Quit %1"
  2641. msgstr ""
  2642. msgctxt "description"
  2643. msgid "Reads g-code from a compressed archive."
  2644. msgstr "Olvassa be a g-kódot egy tömörített archívumból."
  2645. msgctxt "@button"
  2646. msgid "Recommended"
  2647. msgstr "Ajánlott"
  2648. msgctxt "@title:tab"
  2649. msgid "Recommended"
  2650. msgstr "Ajánlott"
  2651. msgctxt "@label"
  2652. msgid "Recommended print settings"
  2653. msgstr ""
  2654. msgctxt "@info %1 is the name of a profile"
  2655. msgid "Recommended settings (for <b>%1</b>) were altered."
  2656. msgstr ""
  2657. msgctxt "@action:button"
  2658. msgid "Refresh"
  2659. msgstr "Frissít"
  2660. msgctxt "@button"
  2661. msgid "Refresh"
  2662. msgstr ""
  2663. msgctxt "@label"
  2664. msgid "Refresh"
  2665. msgstr "Frissítés"
  2666. msgctxt "@button"
  2667. msgid "Refresh List"
  2668. msgstr ""
  2669. msgctxt "@button"
  2670. msgid "Refreshing..."
  2671. msgstr ""
  2672. msgctxt "@label"
  2673. msgid "Release Notes"
  2674. msgstr ""
  2675. msgctxt "@action:inmenu menubar:file"
  2676. msgid "Reload All Models"
  2677. msgstr "Mindent újratölt"
  2678. msgctxt "@text:window"
  2679. msgid "Remember my choice"
  2680. msgstr "Emlékezzen a választásra"
  2681. msgctxt "@item:intext"
  2682. msgid "Removable Drive"
  2683. msgstr "Cserélhető meghajtó"
  2684. msgctxt "name"
  2685. msgid "Removable Drive Output Device Plugin"
  2686. msgstr "Cserélhető meghajtók kimeneti beépülője"
  2687. msgctxt "@action:button"
  2688. msgid "Remove"
  2689. msgstr "Eltávolít"
  2690. msgctxt "@action:button"
  2691. msgid "Remove printers"
  2692. msgstr ""
  2693. msgctxt "@title:window"
  2694. msgid "Remove printers?"
  2695. msgstr ""
  2696. msgctxt "@action:button"
  2697. msgid "Rename"
  2698. msgstr "Átnevezés"
  2699. msgctxt "@title:window"
  2700. msgid "Rename"
  2701. msgstr ""
  2702. msgctxt "@title:window"
  2703. msgid "Rename Profile"
  2704. msgstr "Profil átnevezés"
  2705. msgctxt "@action:inmenu menubar:help"
  2706. msgid "Report a &Bug"
  2707. msgstr "Hibajelentés"
  2708. msgctxt "@label:button"
  2709. msgid "Report a bug"
  2710. msgstr ""
  2711. msgctxt "@message:button"
  2712. msgid "Report a bug"
  2713. msgstr ""
  2714. msgctxt "@message:description"
  2715. msgid "Report a bug on UltiMaker Cura's issue tracker."
  2716. msgstr ""
  2717. msgctxt "@label:status"
  2718. msgid "Requires configuration changes"
  2719. msgstr "A konfiguráció változtatásokat igényel"
  2720. msgctxt "@action:inmenu menubar:edit"
  2721. msgid "Reset All Model Positions"
  2722. msgstr "Minden modellpozíció visszaállítása"
  2723. msgctxt "@action:inmenu menubar:edit"
  2724. msgid "Reset All Model Transformations"
  2725. msgstr "Minden modelltranszformáció visszaállítása"
  2726. msgctxt "@info"
  2727. msgid "Reset to defaults."
  2728. msgstr ""
  2729. msgctxt "@label"
  2730. msgid "Resolution"
  2731. msgstr ""
  2732. msgctxt "@button"
  2733. msgid "Restore"
  2734. msgstr "Visszaállítás"
  2735. msgctxt "@dialog:title"
  2736. msgid "Restore Backup"
  2737. msgstr "Helyreállítás biztonsági mentésből"
  2738. msgctxt "@option:check"
  2739. msgid "Restore window position on start"
  2740. msgstr ""
  2741. msgctxt "@label"
  2742. msgid "Resume"
  2743. msgstr "Folytat"
  2744. msgctxt "@label"
  2745. msgid "Resuming..."
  2746. msgstr "Folytatás..."
  2747. msgctxt "@label:status"
  2748. msgid "Resuming..."
  2749. msgstr "Folytatás..."
  2750. msgctxt "@tooltip"
  2751. msgid "Retractions"
  2752. msgstr "Visszahúzás"
  2753. msgctxt "@button"
  2754. msgid "Retry?"
  2755. msgstr ""
  2756. msgctxt "@action:inmenu menubar:view"
  2757. msgid "Right Side View"
  2758. msgstr "Jobb oldalnézet"
  2759. msgctxt "@info:tooltip"
  2760. msgid "Right View"
  2761. msgstr ""
  2762. msgctxt "@label Description for application dependency"
  2763. msgid "Root Certificates for validating SSL trustworthiness"
  2764. msgstr ""
  2765. msgctxt "@info:title"
  2766. msgid "Safely Remove Hardware"
  2767. msgstr "Hardver biztonságos eltávolítása"
  2768. msgctxt "@button"
  2769. msgid "Safety datasheet"
  2770. msgstr ""
  2771. msgctxt "@action:button"
  2772. msgid "Save"
  2773. msgstr "Mentés"
  2774. msgctxt "@option"
  2775. msgid "Save Cura project"
  2776. msgstr ""
  2777. msgctxt "@option"
  2778. msgid "Save Cura project and print file"
  2779. msgstr ""
  2780. msgctxt "@title:window"
  2781. msgid "Save Custom Profile"
  2782. msgstr ""
  2783. msgctxt "@title:window"
  2784. msgid "Save Project"
  2785. msgstr "Projekt mentése"
  2786. msgctxt "@title:menu menubar:file"
  2787. msgid "Save Project..."
  2788. msgstr ""
  2789. msgctxt "@action:button"
  2790. msgid "Save as new custom profile"
  2791. msgstr ""
  2792. msgctxt "@action:button"
  2793. msgid "Save changes"
  2794. msgstr ""
  2795. msgctxt "@button"
  2796. msgid "Save new profile"
  2797. msgstr ""
  2798. msgctxt "@text"
  2799. msgid "Save the .umm file on a USB stick."
  2800. msgstr ""
  2801. msgctxt "@action:button Preceded by 'Ready to'."
  2802. msgid "Save to Removable Drive"
  2803. msgstr "Mentés külső meghajtóra"
  2804. #, python-brace-format
  2805. msgctxt "@item:inlistbox"
  2806. msgid "Save to Removable Drive {0}"
  2807. msgstr "Mentés külső meghajtóra {0}"
  2808. #, python-brace-format
  2809. msgctxt "@info:status"
  2810. msgid "Saved to Removable Drive {0} as {1}"
  2811. msgstr "Mentve a {0} meghajtóra, mint {1}"
  2812. msgctxt "@info:title"
  2813. msgid "Saving"
  2814. msgstr "Mentés"
  2815. #, python-brace-format
  2816. msgctxt "@info:progress Don't translate the XML tags <filename>!"
  2817. msgid "Saving to Removable Drive <filename>{0}</filename>"
  2818. msgstr "Mentés külső meghajóra <filename>{0}</filename>"
  2819. msgctxt "@option:check"
  2820. msgid "Scale extremely small models"
  2821. msgstr "Extrém kicsi modellek átméretezése"
  2822. msgctxt "@option:check"
  2823. msgid "Scale large models"
  2824. msgstr "Nagy modellek átméretezése"
  2825. msgctxt "@placeholder"
  2826. msgid "Search"
  2827. msgstr ""
  2828. msgctxt "@info"
  2829. msgid "Search in the browser"
  2830. msgstr ""
  2831. msgctxt "@label:textbox"
  2832. msgid "Search settings"
  2833. msgstr ""
  2834. msgctxt "@action:inmenu menubar:edit"
  2835. msgid "Select All Models"
  2836. msgstr "Mindent kijelöl"
  2837. msgctxt "@title:window"
  2838. msgid "Select Printer"
  2839. msgstr ""
  2840. msgctxt "@title:window"
  2841. msgid "Select Settings to Customize for this model"
  2842. msgstr "A modellek egyéni beállításainak kiválasztása"
  2843. msgctxt "@text"
  2844. msgid "Select and install material profiles optimised for your UltiMaker 3D printers."
  2845. msgstr ""
  2846. msgctxt "@label"
  2847. msgid "Select configuration"
  2848. msgstr "Konfiguráció kiválasztása"
  2849. msgctxt "@title:window"
  2850. msgid "Select custom firmware"
  2851. msgstr "Egyedi firmware kiválasztása"
  2852. msgctxt "@option:check"
  2853. msgid "Select models when loaded"
  2854. msgstr "Modell kiválasztása betöltés után"
  2855. msgctxt "@action:button"
  2856. msgid "Select settings"
  2857. msgstr "Beállítások kiválasztása"
  2858. msgctxt "@action"
  2859. msgid "Select upgrades"
  2860. msgstr "Válassz frissítést"
  2861. msgctxt "@label"
  2862. msgid "Select your printer from the list below:"
  2863. msgstr "Válaszd ki a nyomtatódat az alábbi listából:"
  2864. msgctxt "@option:check"
  2865. msgid "Send (anonymous) print information"
  2866. msgstr "Név nélküli információ küldés"
  2867. msgctxt "@label"
  2868. msgid "Send G-code"
  2869. msgstr "G-kód küldés"
  2870. msgctxt "@tooltip of G-code command input"
  2871. msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command."
  2872. msgstr "Küldjön egy egyéni G-kód parancsot a csatlakoztatott nyomtatóra. A parancs elküldéséhez nyomja meg az 'enter' gombot."
  2873. msgctxt "@action:button"
  2874. msgid "Send crash report to UltiMaker"
  2875. msgstr "Hibajelentés küldése az UltiMaker -nek"
  2876. msgctxt "@action:button"
  2877. msgid "Send report"
  2878. msgstr "Jelentés küldés"
  2879. msgctxt "@info:status"
  2880. msgid "Sending Print Job"
  2881. msgstr "Nyomtatási feladat küldése"
  2882. msgctxt "@info:title"
  2883. msgid "Sending materials to printer"
  2884. msgstr "Anyagok küldése a nyomtatóra"
  2885. msgctxt "name"
  2886. msgid "Sentry Logger"
  2887. msgstr ""
  2888. msgctxt "@label Description for application dependency"
  2889. msgid "Serial communication library"
  2890. msgstr "Soros kommunikációs könyvtár"
  2891. msgctxt "@action:inmenu"
  2892. msgid "Set as Active Extruder"
  2893. msgstr "Beállítva aktív extruderként"
  2894. msgctxt "@title:column"
  2895. msgid "Setting"
  2896. msgstr "Beállítás"
  2897. msgctxt "@title:tab"
  2898. msgid "Setting Visibility"
  2899. msgstr "Láthatóság beállítása"
  2900. msgctxt "@info:progress"
  2901. msgid "Setting up preferences..."
  2902. msgstr ""
  2903. msgctxt "@info:progress"
  2904. msgid "Setting up scene..."
  2905. msgstr "Felület beállítása..."
  2906. msgctxt "@action:label"
  2907. msgid "Setting visibility"
  2908. msgstr "Beállítások láthatósága"
  2909. msgctxt "@label"
  2910. msgid "Settings"
  2911. msgstr "Beállítások"
  2912. msgctxt "@title:tab"
  2913. msgid "Settings"
  2914. msgstr "Beállítások"
  2915. msgctxt "@info:message Followed by a list of settings."
  2916. msgid "Settings have been changed to match the current availability of extruders:"
  2917. msgstr "A beállításokat megváltoztattuk, hogy azok megfeleljenek az jelenleg elérhető extrudereknek:"
  2918. msgctxt "@info:title"
  2919. msgid "Settings updated"
  2920. msgstr "Beállítások frissítve"
  2921. msgctxt "@text"
  2922. msgid "Share ideas and get help from 48,000+ users in the UltiMaker Community"
  2923. msgstr ""
  2924. msgctxt "@label"
  2925. msgid "Shell"
  2926. msgstr "Héj"
  2927. msgctxt "@action:label"
  2928. msgid "Shell Thickness"
  2929. msgstr ""
  2930. msgctxt "@info:tooltip"
  2931. msgid "Should Cura check for updates when the program is started?"
  2932. msgstr "A Cura-nak ellenőriznie kell-e a frissítéseket a program indításakor?"
  2933. msgctxt "@info:tooltip"
  2934. msgid "Should Cura open at the location it was closed?"
  2935. msgstr ""
  2936. msgctxt "@info:tooltip"
  2937. msgid "Should a prefix based on the printer name be added to the print job name automatically?"
  2938. msgstr "A nyomtató nevét, mint előtagot, hozzáadjuk a nyomtatási feladat nevéhez?"
  2939. msgctxt "@info:tooltip"
  2940. msgid "Should a summary be shown when saving a project file?"
  2941. msgstr "Mutassuk az összegzést a projekt mentésekor?"
  2942. msgctxt "@info:tooltip"
  2943. msgid "Should an automatic check for new plugins be done every time Cura is started? It is highly recommended that you do not disable this!"
  2944. msgstr ""
  2945. msgctxt "@info:tooltip"
  2946. msgid "Should anonymous data about your print be sent to UltiMaker? Note, no models, IP addresses or other personally identifiable information is sent or stored."
  2947. msgstr "Elküldjük a nyomtatott adatokat név nélkül az UltiMaker-nek?Semmilyen személyes infromáció, IP cím vagy azonosító nem kerül elküldésre."
  2948. msgctxt "@info:tooltip"
  2949. msgid "Should layer be forced into compatibility mode?"
  2950. msgstr "Kényszerítsük a réteget kompatibilitási módba ?"
  2951. msgctxt "@info:tooltip"
  2952. msgid "Should models be scaled to the build volume if they are too large?"
  2953. msgstr "A modelleket átméretezzük a maximális építési méretre, ha azok túl nagyok?"
  2954. msgctxt "@info:tooltip"
  2955. msgid "Should models be selected after they are loaded?"
  2956. msgstr "Betöltés után a modellek legyenek kiválasztva?"
  2957. msgctxt "@info:tooltip"
  2958. msgid "Should models on the platform be moved down to touch the build plate?"
  2959. msgstr "A modelleket mozgatni kell lefelé, hogy érintsék a tárgyasztalt?"
  2960. msgctxt "@info:tooltip"
  2961. msgid "Should models on the platform be moved so that they no longer intersect?"
  2962. msgstr "Az alapsíkon lévő modelleket elmozgassuk úgy, hogy ne keresztezzék egymást?"
  2963. msgctxt "@info:tooltip"
  2964. msgid "Should opening files from the desktop or external applications open in the same instance of Cura?"
  2965. msgstr ""
  2966. msgctxt "@info:tooltip"
  2967. msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?"
  2968. msgstr ""
  2969. msgctxt "@info:tooltip"
  2970. msgid "Should the default zoom behavior of cura be inverted?"
  2971. msgstr "Megfordítsuk-e az alapértelmezett Zoom viselkedését?"
  2972. msgctxt "@info:tooltip"
  2973. msgid "Should zooming move in the direction of the mouse?"
  2974. msgstr "A nagyítás az egér mozgatásának irányában mozogjon?"
  2975. msgctxt "@label"
  2976. msgid "Show 5 Detailed Layers On Top"
  2977. msgstr "Mutasson 5 felső réteget részletesen"
  2978. msgctxt "@action:inmenu menubar:help"
  2979. msgid "Show Configuration Folder"
  2980. msgstr "Konfigurációs mappa megjelenítése"
  2981. msgctxt "@button"
  2982. msgid "Show Custom"
  2983. msgstr ""
  2984. msgctxt "@action:inmenu menubar:help"
  2985. msgid "Show Online &Documentation"
  2986. msgstr "Online &Dokumentumok megjelenítése"
  2987. msgctxt "@action:inmenu"
  2988. msgid "Show Online Troubleshooting"
  2989. msgstr ""
  2990. msgctxt "@label:checkbox"
  2991. msgid "Show all"
  2992. msgstr "Mindent mutat"
  2993. msgctxt "@label"
  2994. msgid "Show all connected printers"
  2995. msgstr ""
  2996. msgctxt "@info:tooltip"
  2997. msgid "Show an icon and notifications in the system notification area."
  2998. msgstr ""
  2999. msgctxt "@info:tooltip"
  3000. msgid "Show caution message in g-code reader."
  3001. msgstr "Figyelmeztető üzenet megjelenítése g-kód olvasóban."
  3002. msgctxt "@action:button"
  3003. msgid "Show configuration folder"
  3004. msgstr "Konfigurációs mappa megnyitása"
  3005. msgctxt "@action:button"
  3006. msgid "Show detailed crash report"
  3007. msgstr "Hibajelentés részletei"
  3008. msgctxt "@option:check"
  3009. msgid "Show summary dialog when saving project"
  3010. msgstr "Összegzés megjelenítése projekt mentésekor"
  3011. msgctxt "@tooltip:button"
  3012. msgid "Show your support for Cura with a donation."
  3013. msgstr ""
  3014. msgctxt "@button"
  3015. msgid "Sign Out"
  3016. msgstr ""
  3017. msgctxt "@action:button"
  3018. msgid "Sign in"
  3019. msgstr "Bejelentkezés"
  3020. msgctxt "@button"
  3021. msgid "Sign in"
  3022. msgstr "Bejelentkezés"
  3023. msgctxt "@title:header"
  3024. msgid "Sign in"
  3025. msgstr ""
  3026. msgctxt "@info"
  3027. msgid "Sign in into UltiMaker Digital Factory"
  3028. msgstr ""
  3029. msgctxt "@button"
  3030. msgid "Sign in to Digital Factory"
  3031. msgstr ""
  3032. msgctxt "@label"
  3033. msgid "Sign in to the UltiMaker platform"
  3034. msgstr ""
  3035. msgctxt "name"
  3036. msgid "Simulation View"
  3037. msgstr "Szimulációs nézet"
  3038. msgctxt "@tooltip"
  3039. msgid "Skin"
  3040. msgstr "Héj"
  3041. msgctxt "@action:button"
  3042. msgid "Skip"
  3043. msgstr ""
  3044. msgctxt "@button"
  3045. msgid "Skip"
  3046. msgstr ""
  3047. msgctxt "@tooltip"
  3048. msgid "Skirt"
  3049. msgstr "Szoknya"
  3050. msgctxt "@button"
  3051. msgid "Slice"
  3052. msgstr "Szeletelés"
  3053. msgctxt "@option:check"
  3054. msgid "Slice automatically"
  3055. msgstr "Automatikus szeletelés"
  3056. msgctxt "@info:tooltip"
  3057. msgid "Slice automatically when changing settings."
  3058. msgstr "Automatikus újraszeletelés, ha a beállítások megváltoznak."
  3059. msgctxt "name"
  3060. msgid "Slice info"
  3061. msgstr "Szeletelési infó"
  3062. msgctxt "@message:title"
  3063. msgid "Slicing failed"
  3064. msgstr ""
  3065. msgctxt "@message"
  3066. msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker."
  3067. msgstr ""
  3068. msgctxt "@label:PrintjobStatus"
  3069. msgid "Slicing..."
  3070. msgstr "Szeletelés..."
  3071. msgctxt "@action:label"
  3072. msgid "Smoothing"
  3073. msgstr "Simítás"
  3074. msgctxt "name"
  3075. msgid "Solid View"
  3076. msgstr "Felület nézet"
  3077. msgctxt "@item:inmenu"
  3078. msgid "Solid view"
  3079. msgstr "Felület nézet"
  3080. msgctxt "@label"
  3081. msgid ""
  3082. "Some hidden settings use values different from their normal calculated value.\n"
  3083. "\n"
  3084. "Click to make these settings visible."
  3085. msgstr ""
  3086. "Egyes beállítások eltérő értéken vannak a normál, kalkulált értékektől.\n"
  3087. "\n"
  3088. "Kattints, hogy ezek a beállítások láthatók legyenek."
  3089. msgctxt "@info:status"
  3090. msgid "Some of the packages used in the project file are currently not installed in Cura, this might produce undesirable print results. We highly recommend installing the all required packages from the Marketplace."
  3091. msgstr ""
  3092. msgctxt "@info:title"
  3093. msgid "Some required packages are not installed"
  3094. msgstr ""
  3095. msgctxt "@info %1 is the name of a profile"
  3096. msgid "Some setting-values defined in <b>%1</b> were overridden."
  3097. msgstr ""
  3098. msgctxt "@tooltip"
  3099. msgid ""
  3100. "Some setting/override values are different from the values stored in the profile.\n"
  3101. "\n"
  3102. "Click to open the profile manager."
  3103. msgstr ""
  3104. "Néhány beállított vagy felülbírált érték eltérő, a profilban tárolt értéktől. \n"
  3105. "\n"
  3106. "Kattints, hogy megnyisd a profil menedzsert."
  3107. msgctxt "@action:label"
  3108. msgid "Some settings from current profile were overwritten."
  3109. msgstr ""
  3110. msgctxt "@message"
  3111. msgid "Something unexpected happened when trying to log in, please try again."
  3112. msgstr "Valami váratlan esemény történt a bejelentkezéskor, próbálkozzon újra."
  3113. msgctxt "@title:header"
  3114. msgid "Something went wrong when sending the materials to the printers."
  3115. msgstr ""
  3116. msgctxt "@label"
  3117. msgid "Something went wrong..."
  3118. msgstr ""
  3119. msgctxt "@label:listbox"
  3120. msgid "Speed"
  3121. msgstr ""
  3122. msgctxt "@action:inmenu"
  3123. msgid "Sponsor Cura"
  3124. msgstr ""
  3125. msgctxt "@label:button"
  3126. msgid "Sponsor Cura"
  3127. msgstr ""
  3128. msgctxt "@option:radio"
  3129. msgid "Stable and Beta releases"
  3130. msgstr ""
  3131. msgctxt "@option:radio"
  3132. msgid "Stable releases only"
  3133. msgstr ""
  3134. msgctxt "@item:inlistbox"
  3135. msgid "Stanford Triangle Format"
  3136. msgstr "Stanford háromszög formátum"
  3137. msgctxt "@button"
  3138. msgid "Start"
  3139. msgstr ""
  3140. msgctxt "@action:button"
  3141. msgid "Start Build Plate Leveling"
  3142. msgstr "Tálca szintezés indítása"
  3143. msgctxt "@title:label"
  3144. msgid "Start G-code"
  3145. msgstr "G-kód kezdés"
  3146. msgctxt "@label"
  3147. msgid "Start the slicing process"
  3148. msgstr "Szeletelés indítása"
  3149. msgctxt "@label"
  3150. msgid "Starts"
  3151. msgstr ""
  3152. msgctxt "@text"
  3153. msgid "Streamline your workflow and customize your UltiMaker Cura experience with plugins contributed by our amazing community of users."
  3154. msgstr ""
  3155. msgctxt "@label"
  3156. msgid "Strength"
  3157. msgstr ""
  3158. msgctxt "description"
  3159. msgid "Submits anonymous slice info. Can be disabled through preferences."
  3160. msgstr "Névtelen szelet-információt nyújt be. A beállítások révén letiltható."
  3161. msgctxt "@info:status Don't translate the XML tag <filename>!"
  3162. msgid "Successfully exported material to <filename>%1</filename>"
  3163. msgstr "Sikeres alapanyag export <filename>%1</filename> -ba"
  3164. msgctxt "@info:status Don't translate the XML tag <filename>!"
  3165. msgid "Successfully imported material <filename>%1</filename>"
  3166. msgstr "Sikeres alapanyag import <filename>%1</filename>"
  3167. #, python-brace-format
  3168. msgctxt "@info:status"
  3169. msgid "Successfully imported profile {0}."
  3170. msgstr ""
  3171. msgctxt "@action:title"
  3172. msgid "Summary - Cura Project"
  3173. msgstr "Összegzés - Cura Project"
  3174. msgctxt "@label"
  3175. msgid "Support"
  3176. msgstr "Támasz"
  3177. msgctxt "@tooltip"
  3178. msgid "Support"
  3179. msgstr "Támasz"
  3180. msgctxt "@label"
  3181. msgid "Support Blocker"
  3182. msgstr "Támasz blokkoló"
  3183. msgctxt "name"
  3184. msgid "Support Eraser"
  3185. msgstr "Támasz törlő"
  3186. msgctxt "@tooltip"
  3187. msgid "Support Infill"
  3188. msgstr "Támasz kitöltés"
  3189. msgctxt "@tooltip"
  3190. msgid "Support Interface"
  3191. msgstr "Támasz interface"
  3192. msgctxt "@action:label"
  3193. msgid "Support Type"
  3194. msgstr ""
  3195. msgctxt "@label Description for application dependency"
  3196. msgid "Support library for faster math"
  3197. msgstr "Támogató könyvtár a gyorsabb matematikához"
  3198. msgctxt "@label Description for application component"
  3199. msgid "Support library for file metadata and streaming"
  3200. msgstr "Támogató könyvtár a fájl metaadatokhoz és továbbításához"
  3201. msgctxt "@label Description for application component"
  3202. msgid "Support library for handling 3MF files"
  3203. msgstr "Támogató könyvtár a 3MF fájlok kezeléséhez"
  3204. msgctxt "@label Description for application dependency"
  3205. msgid "Support library for handling STL files"
  3206. msgstr "Támogató könyvtár az STL fájlok kezeléséhez"
  3207. msgctxt "@label Description for application dependency"
  3208. msgid "Support library for handling triangular meshes"
  3209. msgstr "Támogató könyvtár a háromszög hálók kezeléséhez"
  3210. msgctxt "@label Description for application dependency"
  3211. msgid "Support library for scientific computing"
  3212. msgstr "Támogató könyvtár a tudományos számítások számára"
  3213. msgctxt "@label Description for application dependency"
  3214. msgid "Support library for system keyring access"
  3215. msgstr ""
  3216. msgctxt "@action:button"
  3217. msgid "Sync"
  3218. msgstr ""
  3219. msgctxt "@button"
  3220. msgid "Sync"
  3221. msgstr ""
  3222. msgctxt "@title:header"
  3223. msgid "Sync material profiles via USB"
  3224. msgstr ""
  3225. msgctxt "@action:button"
  3226. msgid "Sync materials"
  3227. msgstr ""
  3228. msgctxt "@button"
  3229. msgid "Sync materials with USB"
  3230. msgstr ""
  3231. msgctxt "@title:header"
  3232. msgid "Sync materials with printers"
  3233. msgstr ""
  3234. msgctxt "@title:window"
  3235. msgid "Sync materials with printers"
  3236. msgstr ""
  3237. msgctxt "@action:button"
  3238. msgid "Sync with Printers"
  3239. msgstr ""
  3240. msgctxt "@button"
  3241. msgid "Syncing"
  3242. msgstr ""
  3243. msgctxt "@info:generic"
  3244. msgid "Syncing..."
  3245. msgstr ""
  3246. msgctxt "@title:groupbox"
  3247. msgid "System information"
  3248. msgstr "Rendszer információ"
  3249. msgctxt "@button"
  3250. msgid "Technical datasheet"
  3251. msgstr ""
  3252. msgctxt "@info:tooltip"
  3253. msgid "The amount of smoothing to apply to the image."
  3254. msgstr "A kép simításának mértéke."
  3255. msgctxt "@text"
  3256. msgid "The annealing profile requires post-processing in an oven after the print is finished. This profile retains the dimensional accuracy of the printed part after annealing and improves strength, stiffness, and thermal resistance."
  3257. msgstr ""
  3258. msgctxt "@label"
  3259. msgid "The assigned printer, %1, requires the following configuration change:"
  3260. msgid_plural "The assigned printer, %1, requires the following configuration changes:"
  3261. msgstr[0] "A hozzárendelt nyomtatóhoz, %1, a következő konfigurációs változtatás szükséges:"
  3262. msgstr[1] "A hozzárendelt nyomtatóhoz, %1, a következő konfigurációs változtatások szükségesek:"
  3263. msgctxt "@error:file_size"
  3264. msgid "The backup exceeds the maximum file size."
  3265. msgstr ""
  3266. msgctxt "@info:tooltip"
  3267. msgid "The base height from the build plate in millimeters."
  3268. msgstr "Az alap magassága a tárgyasztaltól mm -ben."
  3269. msgctxt "@info:status"
  3270. msgid "The build volume height has been reduced due to the value of the \"Print Sequence\" setting to prevent the gantry from colliding with printed models."
  3271. msgstr "Az nyomtatási szint csökken a \"Nyomtatási sorrend\" beállítása miatt, ez megakadályozza, hogy a mechanika beleütközzön a nyomtatott tárgyba."
  3272. msgctxt "@status"
  3273. msgid "The cloud connection is currently unavailable. Please check your internet connection."
  3274. msgstr ""
  3275. msgctxt "@status"
  3276. msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer."
  3277. msgstr ""
  3278. msgctxt "@status"
  3279. msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet."
  3280. msgstr ""
  3281. msgctxt "@tooltip"
  3282. msgid "The colour of the material in this extruder."
  3283. msgstr "Az alapanyag színe ennél az extrudernél."
  3284. msgctxt "@tooltip"
  3285. msgid "The configuration of this extruder is not allowed, and prohibits slicing."
  3286. msgstr ""
  3287. msgctxt "@label"
  3288. msgid "The configurations are not available because the printer is disconnected."
  3289. msgstr "A konfiguráció nem elérhető, mert nincs kapcsolat a a nyomtatóval."
  3290. msgctxt "@tooltip"
  3291. msgid "The current temperature of the heated bed."
  3292. msgstr "A fűthető ágy aktuális hőmérséklete."
  3293. msgctxt "@tooltip"
  3294. msgid "The current temperature of this hotend."
  3295. msgstr "Ennek a fejnek a jelenlegi hőmérséklete."
  3296. msgctxt "@info:tooltip"
  3297. msgid "The depth in millimeters on the build plate"
  3298. msgstr "A mélység mm-ben a tárgyasztalon"
  3299. msgctxt "@text"
  3300. msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction."
  3301. msgstr ""
  3302. msgctxt "@text"
  3303. msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances."
  3304. msgstr ""
  3305. msgctxt "@label"
  3306. msgid "The extruder train to use for printing the support. This is used in multi-extrusion."
  3307. msgstr ""
  3308. #, python-brace-format
  3309. msgctxt "@label Don't translate the XML tag <filename>!"
  3310. msgid "The file <filename>{0}</filename> already exists. Are you sure you want to overwrite it?"
  3311. msgstr "A <filename>{0}</filename> fájl már létezik. Biztosan szeretnéd, hogy felülírjuk?"
  3312. msgctxt "@label"
  3313. msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements."
  3314. msgstr "A firmware a nyomtató része, így a használatba vételkor már a gépen található.Azonban készülnek belőle újabb verziók, amik esetleges hibákat szüntetnek meg, illetve egyéb új funkciókat biztosíthatnak."
  3315. msgctxt "@info:backup_failed"
  3316. msgid "The following error occurred while trying to restore a Cura backup:"
  3317. msgstr ""
  3318. msgctxt "@label"
  3319. msgid "The following packages can not be installed because of an incompatible Cura version:"
  3320. msgstr ""
  3321. msgctxt "@label"
  3322. msgid "The following packages will be added:"
  3323. msgstr ""
  3324. msgctxt "@label"
  3325. msgid "The following printers in your account have been added in Cura:"
  3326. msgstr ""
  3327. msgctxt "@title:header"
  3328. msgid "The following printers will receive the new material profiles:"
  3329. msgstr ""
  3330. msgctxt "@info:tooltip"
  3331. msgid "The following script is active:"
  3332. msgid_plural "The following scripts are active:"
  3333. msgstr[0] ""
  3334. msgstr[1] ""
  3335. msgctxt "@label"
  3336. msgid "The following settings define the strength of your part."
  3337. msgstr ""
  3338. msgctxt "@info:status"
  3339. msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura."
  3340. msgstr ""
  3341. msgctxt "@tooltip"
  3342. msgid "The material in this extruder."
  3343. msgstr "Az alapanyag ebben az extruderben."
  3344. msgctxt "@label:label Ultimaker Marketplace is a brand name, don't translate"
  3345. msgid "The material package associated with the Cura project could not be found on the Ultimaker Marketplace. Use the partial material profile definition stored in the Cura project file at your own risk."
  3346. msgstr ""
  3347. msgctxt "@info:tooltip"
  3348. msgid "The maximum distance of each pixel from \"Base.\""
  3349. msgstr "Az egyes pixelek legnagyobb távolsága \"Base.\""
  3350. msgctxt "@label (%1 is a number)"
  3351. msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?"
  3352. msgstr "Az új nyomtatószál átmérő %1 mm -re lett beállítva. Ez nem kompatibilis a jelenlegi extruderrel. Biztos, hogy így folytatod?"
  3353. msgctxt "@tooltip"
  3354. msgid "The nozzle inserted in this extruder."
  3355. msgstr "A fúvóka be van építve az extruderbe."
  3356. msgctxt "@label"
  3357. msgid ""
  3358. "The pattern of the infill material of the print:\n"
  3359. "\n"
  3360. "For quick prints of non functional model choose line, zig zag or lightning infill.\n"
  3361. "\n"
  3362. "For functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n"
  3363. "\n"
  3364. "For functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid."
  3365. msgstr ""
  3366. msgctxt "@info:tooltip"
  3367. msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image."
  3368. msgstr ""
  3369. msgctxt "@label:label Ultimaker Marketplace is a brand name, don't translate"
  3370. msgid "The plugin associated with the Cura project could not be found on the Ultimaker Marketplace. As the plugin may be required to slice the project it might not be possible to correctly slice the file."
  3371. msgstr ""
  3372. msgctxt "@info:title"
  3373. msgid "The print job was successfully submitted"
  3374. msgstr ""
  3375. msgctxt "@label"
  3376. msgid "The printer %1 is assigned, but the job contains an unknown material configuration."
  3377. msgstr "A %1 nyomtató hozzá van rendelve a feladathoz, azonban az ismeretlen anyagot tartalmaz."
  3378. msgctxt "@label"
  3379. msgid "The printer at this address has not responded yet."
  3380. msgstr "Az ezen a címen található nyomtató még nem válaszolt."
  3381. msgctxt "@label"
  3382. msgid "The printer at this address has not yet responded."
  3383. msgstr "A címen található nyomtató még nem válaszolt."
  3384. msgctxt "@info:status"
  3385. msgid "The printer is not connected."
  3386. msgstr "A nyomtató nincs csatlakoztatva."
  3387. msgctxt "@label"
  3388. msgid "The printer(s) below cannot be connected because they are part of a group"
  3389. msgstr "Az alábbi nyomtató (k) nem csatlakoztathatók, mert egy csoporthoz tartoznak"
  3390. msgctxt "@message"
  3391. msgid "The provided state is not correct."
  3392. msgstr ""
  3393. msgctxt "@text:window"
  3394. msgid "The release notes could not be opened."
  3395. msgstr ""
  3396. msgctxt "@text:error"
  3397. msgid "The response from Digital Factory appears to be corrupted."
  3398. msgstr ""
  3399. msgctxt "@text:error"
  3400. msgid "The response from Digital Factory is missing important information."
  3401. msgstr ""
  3402. msgctxt "@tooltip"
  3403. msgid "The target temperature of the heated bed. The bed will heat up or cool down towards this temperature. If this is 0, the bed heating is turned off."
  3404. msgstr "A fűthető ágy beállítható célhőmérséklete. Ha beállítjuk ezt az értéket a tálca elkezd erre a hőmérsékletre melegedni, vagy éppen lehűlni. Ha az érték 0 a tálcafűtés kikapcsol."
  3405. msgctxt "@tooltip"
  3406. msgid "The target temperature of the hotend. The hotend will heat up or cool down towards this temperature. If this is 0, the hotend heating is turned off."
  3407. msgstr "A nyomtatófej célhőmérséklete. A fűtőblokk hőmérséklete a beállított értékre fog melegedni, vagy éppen hűlni. Ha ez az érték 0, akkor a fejfűtés ki fog kapcsolni."
  3408. msgctxt "@tooltip of temperature input"
  3409. msgid "The temperature to pre-heat the bed to."
  3410. msgstr "A tálca előmelegítési hőmérséklete."
  3411. msgctxt "@tooltip of temperature input"
  3412. msgid "The temperature to pre-heat the hotend to."
  3413. msgstr "A nyomtatófej előmelegítési hőmérséklete."
  3414. msgctxt "@text"
  3415. msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality."
  3416. msgstr ""
  3417. msgctxt "@info:tooltip"
  3418. msgid "The width in millimeters on the build plate"
  3419. msgstr ""
  3420. msgctxt "@label: Please keep the asterix, it's to indicate that a restart is needed."
  3421. msgid "Theme*:"
  3422. msgstr ""
  3423. msgctxt "@info:status"
  3424. msgid "There are no file formats available to write with!"
  3425. msgstr "Nincsenek elérhető fájlformátumok az íráshoz!"
  3426. msgctxt "@label"
  3427. msgid "There are no print jobs in the queue. Slice and send a job to add one."
  3428. msgstr "Nincs a sorban nyomtatási feladat. Szeletelj és adj hozzá egy feladatot."
  3429. msgctxt "@tooltip"
  3430. msgid "There are no profiles matching the configuration of this extruder."
  3431. msgstr ""
  3432. msgctxt "@info:status"
  3433. msgid "There is no active printer yet."
  3434. msgstr ""
  3435. msgctxt "@label"
  3436. msgid "There is no printer found over your network."
  3437. msgstr "A hálózaton nem található nyomtató."
  3438. msgctxt "@error"
  3439. msgid "There is no workspace yet to write. Please add a printer first."
  3440. msgstr ""
  3441. msgctxt "@info:backup_status"
  3442. msgid "There was an error trying to restore your backup."
  3443. msgstr "Hiba történt a biztonsági másolat visszaállításakor."
  3444. msgctxt "@info:backup_status"
  3445. msgid "There was an error while creating your backup."
  3446. msgstr ""
  3447. msgctxt "@info:backup_status"
  3448. msgid "There was an error while uploading your backup."
  3449. msgstr "Hiba történt a biztonsági mentés feltöltése közben."
  3450. msgctxt "@label"
  3451. msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile."
  3452. msgstr "Ez a konfiguráció nem érhető el, mert a(z) %1 nem azonosítható. Kérjük, látogasson el a %2 webhelyre a megfelelő anyagprofil letöltéséhez."
  3453. msgctxt "@text:window"
  3454. msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?"
  3455. msgstr "Ez egy Cura projekt fájl. Szeretné projektként megnyitni, vagy importálni a modelleket?"
  3456. msgctxt "@label"
  3457. msgid "This material is linked to %1 and shares some of its properties."
  3458. msgstr "Ez az anyag kapcsolódik% 1 -hez és osztja néhány tulajdonságát."
  3459. msgctxt "@label"
  3460. msgid "This package will be installed after restarting."
  3461. msgstr "Ez a csomag újraindítás után fog települni."
  3462. msgctxt "@label"
  3463. msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group."
  3464. msgstr "Ezt a nyomtatót nem lehet hozzáadni, mert ismeretlen a nyomtató vagy nem egy csoport tagja."
  3465. msgctxt "info:status"
  3466. msgid "This printer is not linked to the Digital Factory:"
  3467. msgid_plural "These printers are not linked to the Digital Factory:"
  3468. msgstr[0] ""
  3469. msgstr[1] ""
  3470. msgctxt "@status"
  3471. msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection."
  3472. msgstr ""
  3473. msgctxt "@label"
  3474. msgid "This printer is not set up to host a group of printers."
  3475. msgstr "Ez a nyomtató nem úgy van beállítva, hogy nyomtatócsoportot üzemeltessen."
  3476. msgctxt "@label"
  3477. msgid "This printer is the host for a group of %1 printers."
  3478. msgstr "Ez a nyomtató gazdagépe a %1 nyomtatócsoportnak."
  3479. #, python-brace-format
  3480. msgctxt "@info:status Don't translate the XML tags <filename>!"
  3481. msgid "This profile <filename>{0}</filename> contains incorrect data, could not import it."
  3482. msgstr "Ez a <filename>{0}</filename> profil helytelen adatokat tartamaz, ezért nem importálható."
  3483. msgctxt "@action:label"
  3484. msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below."
  3485. msgstr "Ez a profil a nyomtató által megadott alapértelmezéseket használja, tehát az alábbi listában nincs egyetlen beállítás módosítás sem."
  3486. msgctxt "@label"
  3487. msgid "This project contains materials or plugins that are currently not installed in Cura.<br/>Install the missing packages and reopen the project."
  3488. msgstr ""
  3489. msgctxt "@label"
  3490. msgid ""
  3491. "This setting has a value that is different from the profile.\n"
  3492. "\n"
  3493. "Click to restore the value of the profile."
  3494. msgstr ""
  3495. "Ennek a beállításnak az értéke eltér a profilban megadottól.\n"
  3496. "\n"
  3497. "Kattintson a profil értékének visszaállításához."
  3498. msgctxt "@item:tooltip"
  3499. msgid "This setting has been hidden by the active machine and will not be visible."
  3500. msgstr ""
  3501. msgctxt "@item:tooltip %1 is list of setting names"
  3502. msgid "This setting has been hidden by the value of %1. Change the value of that setting to make this setting visible."
  3503. msgid_plural "This setting has been hidden by the values of %1. Change the values of those settings to make this setting visible."
  3504. msgstr[0] ""
  3505. msgstr[1] ""
  3506. msgctxt "@label"
  3507. msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders."
  3508. msgstr "Ezt a beállítást megoszta az összes extruder között. Az itt megváltoztatott értékek az összes extrudernél meg fognak változni."
  3509. msgctxt "@label"
  3510. msgid ""
  3511. "This setting is normally calculated, but it currently has an absolute value set.\n"
  3512. "\n"
  3513. "Click to restore the calculated value."
  3514. msgstr ""
  3515. "Ez az érték általában kalulálva van, de jelenleg abszolút értékre van beállítva \n"
  3516. "\n"
  3517. "Kattintson, hogy visszaállítsuk a kalkulált értéket."
  3518. msgctxt "@label"
  3519. msgid "This setting is not used because all the settings that it influences are overridden."
  3520. msgstr "Ezt a beállítást nem használjuk, mert minden ezen beállítással befolyásolt egyéb beállítás értéke felül van bírálva."
  3521. msgctxt "@label"
  3522. msgid "This setting is resolved from conflicting extruder-specific values:"
  3523. msgstr ""
  3524. msgctxt "@info:warning"
  3525. msgid "This version is not intended for production use. If you encounter any issues, please report them on our GitHub page, mentioning the full version {self.getVersion()}"
  3526. msgstr ""
  3527. msgctxt "@label"
  3528. msgid "Time estimation"
  3529. msgstr "Időbecslés"
  3530. msgctxt "@message"
  3531. msgid "Timeout when authenticating with the account server."
  3532. msgstr ""
  3533. msgctxt "@text"
  3534. msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura."
  3535. msgstr ""
  3536. #, python-brace-format
  3537. msgctxt "info:status"
  3538. msgid "To establish a connection, please visit the {website_link}"
  3539. msgstr ""
  3540. msgctxt "@label"
  3541. msgid "To make sure your prints will come out great, you can now adjust your buildplate. When you click 'Move to Next Position' the nozzle will move to the different positions that can be adjusted."
  3542. msgstr "Azért, hogy nyomtattandó testek megfelelően letapadjanak, lehetőség van beállítani a nyomtatótálcát. Ha rákattint a 'Mozgás a következő pozícióba' gombra, a fej átmozgatható a különböző beállítási helyzetekbe."
  3543. msgctxt "@label"
  3544. msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer."
  3545. msgstr "Ha hálózaton keresztül szeretnél közvetlenül nyomtatni, akkor győződj meg arról, hogy a nyomtató csatlakozik vezetékes, vagy vezeték nélküli hálózathoz. Ha nincs elérhető hálózat, akkor közvetlenül USB kapcsolaton keresztül is tudsz nyomtatni."
  3546. #, python-brace-format
  3547. msgctxt "@message {printer_name} is replaced with the name of the printer"
  3548. msgid "To remove {printer_name} permanently, visit {digital_factory_link}"
  3549. msgstr ""
  3550. msgctxt "@action:inmenu"
  3551. msgid "Toggle Full Screen"
  3552. msgstr "Teljes képernyőre váltás"
  3553. msgctxt "@label"
  3554. msgid "Top / Bottom"
  3555. msgstr "Felső / Alsó"
  3556. msgctxt "@action:inmenu menubar:view"
  3557. msgid "Top View"
  3558. msgstr "Felülnézet"
  3559. msgctxt "@info:tooltip"
  3560. msgid "Top View"
  3561. msgstr ""
  3562. msgctxt "@label"
  3563. msgid "Total print time"
  3564. msgstr "Teljes nyomtatási idő"
  3565. msgctxt "@action:tooltip"
  3566. msgid "Track the print in Ultimaker Digital Factory"
  3567. msgstr ""
  3568. msgctxt "@item:inlistbox"
  3569. msgid "Translucency"
  3570. msgstr ""
  3571. msgctxt "@tooltip"
  3572. msgid "Travel"
  3573. msgstr "Átmozgás"
  3574. msgctxt "@label"
  3575. msgid "Travels"
  3576. msgstr "Átmozgás"
  3577. msgctxt "@info:backup_failed"
  3578. msgid "Tried to restore a Cura backup that is higher than the current version."
  3579. msgstr "Egy olyan Cura biztonsági mentést próbált visszaállítani, amelyiknek a verziója magasabb a jelenlegitől."
  3580. msgctxt "@info:backup_failed"
  3581. msgid "Tried to restore a Cura backup without having proper data or meta data."
  3582. msgstr "Megpróbált visszaállítani egy Cura biztonsági másolatot anélkül, hogy megfelelő adatok vagy meta adatok lennének."
  3583. msgctxt "name"
  3584. msgid "Trimesh Reader"
  3585. msgstr "Trimesh olvasó"
  3586. msgctxt "@button"
  3587. msgid "Troubleshooting"
  3588. msgstr ""
  3589. msgctxt "@label"
  3590. msgid "Troubleshooting"
  3591. msgstr "Hibaelhárítás"
  3592. msgctxt "@button"
  3593. msgid "Try again"
  3594. msgstr ""
  3595. msgctxt "@action:label"
  3596. msgid "Type"
  3597. msgstr "Típus"
  3598. msgctxt "@label"
  3599. msgid "Type"
  3600. msgstr "Típus"
  3601. msgctxt "name"
  3602. msgid "UFP Reader"
  3603. msgstr "UFP Olvasó"
  3604. msgctxt "name"
  3605. msgid "UFP Writer"
  3606. msgstr "UFP Író"
  3607. msgctxt "@item:inmenu"
  3608. msgid "USB printing"
  3609. msgstr "USB nyomtatás"
  3610. msgctxt "name"
  3611. msgid "USB printing"
  3612. msgstr "USB nyomtatás"
  3613. msgctxt "@button"
  3614. msgid "UltiMaker Account"
  3615. msgstr ""
  3616. msgctxt "@info"
  3617. msgid "UltiMaker Certified Material"
  3618. msgstr ""
  3619. msgctxt "@text:window"
  3620. msgid "UltiMaker Cura collects anonymous data in order to improve the print quality and user experience. Below is an example of all the data that is shared:"
  3621. msgstr "Az UltiMaker Cura névtelen adatokat gyűjt a nyomtatási minőség és a felhasználói élmény javítása érdekében. Az alábbiakban található egy példa az összes megosztott adatra:"
  3622. msgctxt "@item:inlistbox"
  3623. msgid "UltiMaker Format Package"
  3624. msgstr "UltiMaker formátumcsomag"
  3625. msgctxt "name"
  3626. msgid "UltiMaker Network Connection"
  3627. msgstr "UltiMaker hálózati kapcsolat"
  3628. msgctxt "@info"
  3629. msgid "UltiMaker Verified Package"
  3630. msgstr ""
  3631. msgctxt "@info"
  3632. msgid "UltiMaker Verified Plug-in"
  3633. msgstr ""
  3634. msgctxt "name"
  3635. msgid "UltiMaker machine actions"
  3636. msgstr ""
  3637. msgctxt "@button"
  3638. msgid "UltiMaker printer"
  3639. msgstr ""
  3640. msgctxt "@label:button"
  3641. msgid "UltiMaker support"
  3642. msgstr ""
  3643. msgctxt "info:name"
  3644. msgid "Ultimaker Digital Factory"
  3645. msgstr ""
  3646. msgctxt "name"
  3647. msgid "Ultimaker Digital Library"
  3648. msgstr ""
  3649. msgctxt "@info:status"
  3650. msgid "Unable to add the profile."
  3651. msgstr ""
  3652. msgctxt "@info:status"
  3653. msgid "Unable to find a location within the build volume for all objects"
  3654. msgstr "Nincs elég hely az összes objektum építési térfogatához"
  3655. #, python-brace-format
  3656. msgctxt "@info:plugin_failed"
  3657. msgid "Unable to find local EnginePlugin server executable for: {self._plugin_id}"
  3658. msgstr ""
  3659. #, python-brace-format
  3660. msgctxt "@info:plugin_failed"
  3661. msgid ""
  3662. "Unable to kill running EnginePlugin: {self._plugin_id}\n"
  3663. "Access is denied."
  3664. msgstr ""
  3665. msgctxt "@info"
  3666. msgid "Unable to reach the UltiMaker account server."
  3667. msgstr "Az UltiMaker fiókkiszolgáló elérhetetlen."
  3668. msgctxt "@text"
  3669. msgid "Unable to read example data file."
  3670. msgstr ""
  3671. msgctxt "@info:title"
  3672. msgid "Unable to slice"
  3673. msgstr "Nem lehet szeletelni"
  3674. msgctxt "@label:PrintjobStatus"
  3675. msgid "Unable to slice"
  3676. msgstr "Nem szeletelhető"
  3677. msgctxt "@info:status"
  3678. msgid "Unable to slice because the prime tower or prime position(s) are invalid."
  3679. msgstr "Nem lehet szeletelni, mert az elsődleges torony, vagy az elsődleges pozíció érvénytelen."
  3680. #, python-format
  3681. msgctxt "@info:status"
  3682. msgid "Unable to slice because there are objects associated with disabled Extruder %s."
  3683. msgstr "Nem lehet szeletelni, mert vannak olyan objektumok, amelyek a letiltott Extruderhez vannak társítva.%s."
  3684. #, python-brace-format
  3685. msgctxt "@info:status"
  3686. msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}"
  3687. msgstr "Nem lehet szeletelni pár modell beállítás miatt. A következő beállításokokoznak hibát egy vagy több modellnél: {error_labels}"
  3688. msgctxt "@info:status"
  3689. msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration."
  3690. msgstr "Nem lehet szeletelni a jelenlegi alapanyaggal, mert nem kompatibilis a kiválasztott nyomtatóval, vagy a beállításaival."
  3691. #, python-brace-format
  3692. msgctxt "@info:status"
  3693. msgid "Unable to slice with the current settings. The following settings have errors: {0}"
  3694. msgstr "Nem lehet szeletelni ezekkel a beállításokkal. Ezek a beállítások okoznak hibát: {0}"
  3695. msgctxt "@info"
  3696. msgid "Unable to start a new sign in process. Check if another sign in attempt is still active."
  3697. msgstr ""
  3698. msgctxt "@label:status"
  3699. msgid "Unavailable"
  3700. msgstr "Elérhetetlen"
  3701. msgctxt "@label"
  3702. msgid "Unavailable printer"
  3703. msgstr "Elérhetetlen nyomtató"
  3704. msgctxt "@action:inmenu menubar:edit"
  3705. msgid "Ungroup Models"
  3706. msgstr "Csoport bontása"
  3707. msgctxt "@button"
  3708. msgid "Uninstall"
  3709. msgstr ""
  3710. msgctxt "@title:column Unit of measurement"
  3711. msgid "Unit"
  3712. msgstr ""
  3713. msgctxt "@label Description for development tool"
  3714. msgid "Universal build system configuration"
  3715. msgstr ""
  3716. msgctxt "@label"
  3717. msgid "Unknown"
  3718. msgstr "Ismeretlen"
  3719. msgctxt "@label unknown version of Cura"
  3720. msgid "Unknown"
  3721. msgstr "Ismeretlen"
  3722. msgctxt "@label:property"
  3723. msgid "Unknown Author"
  3724. msgstr ""
  3725. msgctxt "@label:property"
  3726. msgid "Unknown Package"
  3727. msgstr ""
  3728. #, python-brace-format
  3729. msgctxt "@error:send"
  3730. msgid "Unknown error code when uploading print job: {0}"
  3731. msgstr ""
  3732. msgctxt "@text"
  3733. msgid "Unknown error."
  3734. msgstr ""
  3735. msgctxt "@label"
  3736. msgid "Unlink Material"
  3737. msgstr "Alapanyag leválasztása"
  3738. msgctxt "@label:status"
  3739. msgid "Unreachable"
  3740. msgstr "Elérhetetlen"
  3741. msgctxt "@label"
  3742. msgid "Untitled"
  3743. msgstr "Felirat nélküli"
  3744. msgctxt "@text Print job name"
  3745. msgid "Untitled"
  3746. msgstr "Névtelen"
  3747. msgctxt "@button"
  3748. msgid "Update"
  3749. msgstr ""
  3750. msgctxt "@action"
  3751. msgid "Update Firmware"
  3752. msgstr "Firmware frissítés"
  3753. msgctxt "@title"
  3754. msgid "Update Firmware"
  3755. msgstr "Firmware frissítés"
  3756. msgctxt "@action:ComboBox Update/override existing profile"
  3757. msgid "Update existing"
  3758. msgstr ""
  3759. msgctxt "@action:tooltip"
  3760. msgid "Update profile with current settings/overrides"
  3761. msgstr ""
  3762. msgctxt "@action:button"
  3763. msgid "Update profile."
  3764. msgstr ""
  3765. msgctxt "@info:title"
  3766. msgid "Update your printer"
  3767. msgstr "Frissítse a nyomtatót"
  3768. msgctxt "@label"
  3769. msgid "Updates"
  3770. msgstr ""
  3771. msgctxt "@label"
  3772. msgid "Updating firmware."
  3773. msgstr "A firmware frissítése."
  3774. msgctxt "@button"
  3775. msgid "Updating..."
  3776. msgstr ""
  3777. msgctxt "description"
  3778. msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
  3779. msgstr "A konfigurációk frissítése Cura 2.1-ről Cura 2.2-re."
  3780. msgctxt "description"
  3781. msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
  3782. msgstr "A konfigurációk frissítése Cura 2.2-ről Cura 2.4-re."
  3783. msgctxt "description"
  3784. msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
  3785. msgstr "Frissíti a konfigurációt Cura 2.5-ről Cura 2.6-ra."
  3786. msgctxt "description"
  3787. msgid "Upgrades configurations from Cura 2.6 to Cura 2.7."
  3788. msgstr "A konfigurációk frissítése Cura 2.6-ról Cura 2.7-re."
  3789. msgctxt "description"
  3790. msgid "Upgrades configurations from Cura 2.7 to Cura 3.0."
  3791. msgstr "A konfigurációk frissítése Cura 2.7-ről Cura 3.0-ra."
  3792. msgctxt "description"
  3793. msgid "Upgrades configurations from Cura 3.0 to Cura 3.1."
  3794. msgstr "A konfigurációk frissítése Cura 3.0-ról Cura 3.1-re."
  3795. msgctxt "description"
  3796. msgid "Upgrades configurations from Cura 3.2 to Cura 3.3."
  3797. msgstr "A konfigurációk frissítése Cura 3.2-ről Cura 3.3-ra."
  3798. msgctxt "description"
  3799. msgid "Upgrades configurations from Cura 3.3 to Cura 3.4."
  3800. msgstr "A konfigurációk frissítése Cura 3.3-ról Cura 3.4-re."
  3801. msgctxt "description"
  3802. msgid "Upgrades configurations from Cura 3.4 to Cura 3.5."
  3803. msgstr "A konfigurációt Cura 3.4-ről Cura 3.5-re frissíti."
  3804. msgctxt "description"
  3805. msgid "Upgrades configurations from Cura 3.5 to Cura 4.0."
  3806. msgstr "A konfigurációk frissítése Cura 3.5-ről Cura 4.0-ra."
  3807. msgctxt "description"
  3808. msgid "Upgrades configurations from Cura 4.0 to Cura 4.1."
  3809. msgstr "A konfigurációt Cura 4.0-ról Cura 4.1-re frissíti."
  3810. msgctxt "description"
  3811. msgid "Upgrades configurations from Cura 4.1 to Cura 4.2."
  3812. msgstr "A konfigurációk frissítése Cura 4.1-ről Cura 4.2-re."
  3813. msgctxt "description"
  3814. msgid "Upgrades configurations from Cura 4.11 to Cura 4.12."
  3815. msgstr "A konfigurációk frissítése Cura 4.11-ről Cura 4.12-re."
  3816. msgctxt "description"
  3817. msgid "Upgrades configurations from Cura 4.13 to Cura 5.0."
  3818. msgstr "A konfigurációk frissítése Cura 4.13-ről Cura 5.0-ra."
  3819. msgctxt "description"
  3820. msgid "Upgrades configurations from Cura 4.2 to Cura 4.3."
  3821. msgstr "A konfigurációk frissítése Cura 4.2-ről Cura 4.3-ra."
  3822. msgctxt "description"
  3823. msgid "Upgrades configurations from Cura 4.3 to Cura 4.4."
  3824. msgstr "A konfigurációk frissítése Cura 4.3-ról Cura 4.4-re."
  3825. msgctxt "description"
  3826. msgid "Upgrades configurations from Cura 4.4 to Cura 4.5."
  3827. msgstr "A konfigurációk frissítése Cura 4.4-ről Cura 4.5-re."
  3828. msgctxt "description"
  3829. msgid "Upgrades configurations from Cura 4.5 to Cura 4.6."
  3830. msgstr "A konfigurációk frissítése Cura 4.5-ről Cura 4.6-ra."
  3831. msgctxt "description"
  3832. msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2."
  3833. msgstr "A konfigurációk frissítése Cura 4.6.0-ról Cura 4.6.2-re."
  3834. msgctxt "description"
  3835. msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7."
  3836. msgstr "A konfigurációk frissítése Cura 4.6.2-ről Cura 4.7-re."
  3837. msgctxt "description"
  3838. msgid "Upgrades configurations from Cura 4.7 to Cura 4.8."
  3839. msgstr "A konfigurációk frissítése Cura 4.7-ről Cura 4.8-ra."
  3840. msgctxt "description"
  3841. msgid "Upgrades configurations from Cura 4.8 to Cura 4.9."
  3842. msgstr "A konfigurációk frissítése Cura 4.8-ról Cura 4.9-re."
  3843. msgctxt "description"
  3844. msgid "Upgrades configurations from Cura 4.9 to Cura 4.10."
  3845. msgstr "A konfigurációk frissítése Cura 4.9-ről Cura 4.10-re."
  3846. msgctxt "description"
  3847. msgid "Upgrades configurations from Cura 5.2 to Cura 5.3."
  3848. msgstr "A konfigurációk frissítése Cura 5.2-ről Cura 5.3-ra."
  3849. msgctxt "description"
  3850. msgid "Upgrades configurations from Cura 5.3 to Cura 5.4."
  3851. msgstr ""
  3852. msgctxt "description"
  3853. msgid "Upgrades configurations from Cura 5.4 to Cura 5.5."
  3854. msgstr ""
  3855. msgctxt "@action:button"
  3856. msgid "Upload custom Firmware"
  3857. msgstr "Egyedi firmware feltöltése"
  3858. msgctxt "@info:status"
  3859. msgid "Uploading print job to printer."
  3860. msgstr "A nyomtatási feladat feltöltése a nyomtatóra."
  3861. msgctxt "@info:backup_status"
  3862. msgid "Uploading your backup..."
  3863. msgstr "A biztonsági mentés feltöltése ..."
  3864. msgctxt "@option:check"
  3865. msgid "Use a single instance of Cura"
  3866. msgstr ""
  3867. msgctxt "@label"
  3868. msgid "Use glue for better adhesion with this material combination."
  3869. msgstr "Használj ragasztót a jobb tapadás érdekében, ennél az alapanyag kombinációnál."
  3870. msgctxt "@label"
  3871. msgid "User Agreement"
  3872. msgstr "Felhasználói Szerződés"
  3873. msgctxt "@label Description for application dependency"
  3874. msgid "Utility functions, including an image loader"
  3875. msgstr ""
  3876. msgctxt "@label Description for application dependency"
  3877. msgid "Utility library, including Voronoi generation"
  3878. msgstr ""
  3879. msgctxt "name"
  3880. msgid "Version Upgrade 2.1 to 2.2"
  3881. msgstr "A 2.1-es verzió frissítése 2.2-re"
  3882. msgctxt "name"
  3883. msgid "Version Upgrade 2.2 to 2.4"
  3884. msgstr "A 2.2-es verzió frissítése 2.4-ig"
  3885. msgctxt "name"
  3886. msgid "Version Upgrade 2.5 to 2.6"
  3887. msgstr "A 2.5-es verzió frissítése 2.6-ra"
  3888. msgctxt "name"
  3889. msgid "Version Upgrade 2.6 to 2.7"
  3890. msgstr "A 2.6-os verzió frissítése 2.7-re"
  3891. msgctxt "name"
  3892. msgid "Version Upgrade 2.7 to 3.0"
  3893. msgstr "A 2.7-es verzió frissítése 3.0-ra"
  3894. msgctxt "name"
  3895. msgid "Version Upgrade 3.0 to 3.1"
  3896. msgstr "A 3.0-s verzió frissítése 3.1-re"
  3897. msgctxt "name"
  3898. msgid "Version Upgrade 3.2 to 3.3"
  3899. msgstr "A 3.2-es verzió frissítése 3.3-ra"
  3900. msgctxt "name"
  3901. msgid "Version Upgrade 3.3 to 3.4"
  3902. msgstr "A 3.3-as verzió frissítése 3.4-re"
  3903. msgctxt "name"
  3904. msgid "Version Upgrade 3.4 to 3.5"
  3905. msgstr "A 3.4-es verzió frissítése 3.5-re"
  3906. msgctxt "name"
  3907. msgid "Version Upgrade 3.5 to 4.0"
  3908. msgstr "A 3.5-es verzió frissítése 4.0-ra"
  3909. msgctxt "name"
  3910. msgid "Version Upgrade 4.0 to 4.1"
  3911. msgstr "A 4.0-s verzió frissítése 4.1-re"
  3912. msgctxt "name"
  3913. msgid "Version Upgrade 4.1 to 4.2"
  3914. msgstr "A 4.1-es verzió frissítése 4.2-re"
  3915. msgctxt "name"
  3916. msgid "Version Upgrade 4.11 to 4.12"
  3917. msgstr "A 4.11-es verzió frissítése 4.12-re"
  3918. msgctxt "name"
  3919. msgid "Version Upgrade 4.13 to 5.0"
  3920. msgstr "A 4.13-as verzió frissítése 5.0-re"
  3921. msgctxt "name"
  3922. msgid "Version Upgrade 4.2 to 4.3"
  3923. msgstr "A 4.2-es verzió frissítése 4.3-ra"
  3924. msgctxt "name"
  3925. msgid "Version Upgrade 4.3 to 4.4"
  3926. msgstr "A 4.3-as verzió frissítése 4.4-re"
  3927. msgctxt "name"
  3928. msgid "Version Upgrade 4.4 to 4.5"
  3929. msgstr "A 4.4-es verzió frissítése 4.5-re"
  3930. msgctxt "name"
  3931. msgid "Version Upgrade 4.5 to 4.6"
  3932. msgstr "A 4.5-ös verzió frissítése 4.6-ra"
  3933. msgctxt "name"
  3934. msgid "Version Upgrade 4.6.0 to 4.6.2"
  3935. msgstr "A 4.6.0-os verzió frissítése 4.6.2-re"
  3936. msgctxt "name"
  3937. msgid "Version Upgrade 4.6.2 to 4.7"
  3938. msgstr "A 4.6.2-es verzió frissítése 4.7-re"
  3939. msgctxt "name"
  3940. msgid "Version Upgrade 4.7 to 4.8"
  3941. msgstr "A 4.7-es verzió frissítése 4.8-ra"
  3942. msgctxt "name"
  3943. msgid "Version Upgrade 4.8 to 4.9"
  3944. msgstr "A 4.8-es verzió frissítése 4.9-ra"
  3945. msgctxt "name"
  3946. msgid "Version Upgrade 4.9 to 4.10"
  3947. msgstr "A 4.9-es verzió frissítése 4.10-ra"
  3948. msgctxt "name"
  3949. msgid "Version Upgrade 5.2 to 5.3"
  3950. msgstr "A 5.2-es verzió frissítése 5.3-ra"
  3951. msgctxt "name"
  3952. msgid "Version Upgrade 5.3 to 5.4"
  3953. msgstr ""
  3954. msgctxt "name"
  3955. msgid "Version Upgrade 5.4 to 5.5"
  3956. msgstr ""
  3957. msgctxt "@button"
  3958. msgid "View printers in Digital Factory"
  3959. msgstr ""
  3960. msgctxt "@label"
  3961. msgid "View type"
  3962. msgstr "Nézet típus"
  3963. msgctxt "@label link to technical assistance"
  3964. msgid "View user manuals online"
  3965. msgstr "Nézd meg az online felhasználói kézikönyvet"
  3966. msgctxt "@label"
  3967. msgid "Viewport behavior"
  3968. msgstr "A nézetablak viselkedése"
  3969. msgctxt "@action:inmenu"
  3970. msgid "Visible Settings"
  3971. msgstr "Láthatósági beállítások"
  3972. msgctxt "@button"
  3973. msgid "Visit plug-in website"
  3974. msgstr ""
  3975. msgctxt "@tooltip:button"
  3976. msgid "Visit the UltiMaker website."
  3977. msgstr ""
  3978. msgctxt "@label"
  3979. msgid "Visual"
  3980. msgstr ""
  3981. msgctxt "@label"
  3982. msgid "Waiting for"
  3983. msgstr "Várakozom"
  3984. msgctxt "@label"
  3985. msgid "Waiting for Cloud response"
  3986. msgstr ""
  3987. msgctxt "@button"
  3988. msgid "Waiting for new printers"
  3989. msgstr ""
  3990. msgctxt "@button"
  3991. msgid "Want more?"
  3992. msgstr "Többet szeretnél?"
  3993. msgctxt "@info:title"
  3994. msgid "Warning"
  3995. msgstr "Figyelem"
  3996. #, python-brace-format
  3997. msgctxt "@info:status"
  3998. msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type."
  3999. msgstr ""
  4000. msgctxt "@text:window"
  4001. msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one."
  4002. msgstr "A kiválasztott fájlok között több G-kód fájl is található.Egyszerre csak egy G-kód fájlt nyithat meg, ezért csak egy ilyen fájlt válasszon ki."
  4003. msgctxt "@text:window"
  4004. msgid "We have found one or more project file(s) within the files you have selected. You can open only one project file at a time. We suggest to only import models from those files. Would you like to proceed?"
  4005. msgstr "Egy vagy több projekt fájlt találtunk a kiválasztott fájlokban.Egyszerre csak egy projekt fájlt nyithat meg. Javasoljuk, hogy csak a modelleket importálja ezekből a fájlokból. Szeretné folytatni?"
  4006. msgctxt "@info"
  4007. msgid "Webcam feeds for cloud printers cannot be viewed from UltiMaker Cura. Click \"Manage printer\" to visit Ultimaker Digital Factory and view this webcam."
  4008. msgstr ""
  4009. msgctxt "@button"
  4010. msgid "Website"
  4011. msgstr ""
  4012. msgctxt "@label"
  4013. msgid "What printer would you like to setup?"
  4014. msgstr ""
  4015. msgctxt "@info:tooltip"
  4016. msgid "What type of camera rendering should be used?"
  4017. msgstr "Milyen fípusú fényképezőgépet használunk?"
  4018. msgctxt "@action:inmenu menubar:help"
  4019. msgid "What's New"
  4020. msgstr "Újdonságok"
  4021. msgctxt "@label"
  4022. msgid "What's New"
  4023. msgstr ""
  4024. msgctxt "@title:window"
  4025. msgid "What's New"
  4026. msgstr "Újdonságok"
  4027. msgctxt "@info:tooltip"
  4028. msgid "When checking for updates, check for both stable and for beta releases."
  4029. msgstr ""
  4030. msgctxt "@info:tooltip"
  4031. msgid "When checking for updates, only check for stable releases."
  4032. msgstr ""
  4033. msgctxt "@info:tooltip"
  4034. msgid "When you have made changes to a profile and switched to a different one, a dialog will be shown asking whether you want to keep your modifications or not, or you can choose a default behaviour and never show that dialog again."
  4035. msgstr "Ha módosított egy profilt, és váltott egy másikra, akkor megjelenik egy párbeszédpanel, amelyben megkérdezi, hogy meg kívánja-e tartani a módosításokat, vagy nem. Vagy választhat egy alapértelmezett viselkedést, és soha többé nem jeleníti meg ezt a párbeszédablakot."
  4036. msgctxt "@button"
  4037. msgid "Why do I need to sync material profiles?"
  4038. msgstr ""
  4039. msgctxt "@action:label"
  4040. msgid "Width (mm)"
  4041. msgstr "Szélesség (mm)"
  4042. msgctxt "description"
  4043. msgid "Writes g-code to a compressed archive."
  4044. msgstr "G-kódot ír egy tömörített archívumba."
  4045. msgctxt "description"
  4046. msgid "Writes g-code to a file."
  4047. msgstr "G-kódot ír fájlba."
  4048. msgctxt "@label"
  4049. msgid "X (Width)"
  4050. msgstr "X (Szélesség)"
  4051. msgctxt "@label"
  4052. msgid "X max"
  4053. msgstr "X max"
  4054. msgctxt "@label"
  4055. msgid "X min"
  4056. msgstr "X min"
  4057. msgctxt "name"
  4058. msgid "X-Ray View"
  4059. msgstr "Röntgen nézet"
  4060. msgctxt "@item:inlistbox"
  4061. msgid "X-Ray view"
  4062. msgstr "Röntgen nézet"
  4063. msgctxt "@label"
  4064. msgid "X/Y"
  4065. msgstr "X/Y"
  4066. msgctxt "@item:inlistbox"
  4067. msgid "X3D File"
  4068. msgstr "X3D Fájl"
  4069. msgctxt "name"
  4070. msgid "X3D Reader"
  4071. msgstr "X3D Olvasó"
  4072. msgctxt "@label"
  4073. msgid "Y (Depth)"
  4074. msgstr "Y (Mélység)"
  4075. msgctxt "@label"
  4076. msgid "Y max"
  4077. msgstr "Y max"
  4078. msgctxt "@label"
  4079. msgid "Y min"
  4080. msgstr "Y min"
  4081. msgctxt "@info"
  4082. msgid "Yes"
  4083. msgstr ""
  4084. msgctxt "@label"
  4085. msgid ""
  4086. "You are about to remove all printers from Cura. This action cannot be undone.\n"
  4087. "Are you sure you want to continue?"
  4088. msgstr ""
  4089. #, python-brace-format
  4090. msgctxt "@label"
  4091. msgid ""
  4092. "You are about to remove {0} printer from Cura. This action cannot be undone.\n"
  4093. "Are you sure you want to continue?"
  4094. msgid_plural ""
  4095. "You are about to remove {0} printers from Cura. This action cannot be undone.\n"
  4096. "Are you sure you want to continue?"
  4097. msgstr[0] ""
  4098. msgstr[1] ""
  4099. msgctxt "@info:status"
  4100. msgid "You are attempting to connect to a printer that is not running UltiMaker Connect. Please update the printer to the latest firmware."
  4101. msgstr "Olyan nyomtatóval próbál csatlakozni, amelyen nem fut az UltiMaker Connect. Kérjük, frissítse a nyomtatón a firmware-t."
  4102. #, python-brace-format
  4103. msgctxt "@info:status"
  4104. msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host."
  4105. msgstr "Megpróbált csatlakozni a (z) {0} -hez, de a gép nem része a csoportnak.Látogasson el a weboldalra, és konfigurálhatja azt csoporttagnak."
  4106. msgctxt "@empty_state"
  4107. msgid "You don't have any backups currently. Use the 'Backup Now' button to create one."
  4108. msgstr "Nincs egyetlen biztonsági mentésed sem. Használd a 'Biztonsági mentés' gombot, hogy létrehozz egyet."
  4109. msgctxt "@text:window, %1 is a profile name"
  4110. msgid "You have customized some profile settings. Would you like to Keep these changed settings after switching profiles? Alternatively, you can discard the changes to load the defaults from '%1'."
  4111. msgstr ""
  4112. msgctxt "@label"
  4113. msgid "You need to accept the license to install the package"
  4114. msgstr ""
  4115. msgctxt "@info:generic"
  4116. msgid "You need to quit and restart {} before changes have effect."
  4117. msgstr ""
  4118. msgctxt "@dialog:info"
  4119. msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?"
  4120. msgstr "A biztonsági mentés helyreállítás előtt a Cura -t újra kell indítani.Bezárjuk most a Cura-t?"
  4121. msgctxt "@info:status"
  4122. msgid "You will receive a confirmation via email when the print job is approved"
  4123. msgstr ""
  4124. msgctxt "@info:backup_status"
  4125. msgid "Your backup has finished uploading."
  4126. msgstr "A biztonsági mentés feltöltése befejeződött."
  4127. msgctxt "@action:label"
  4128. msgid "Your current settings match the selected profile."
  4129. msgstr "Az Ön aktuális beállításai megegyeznek a kiválasztott profillal."
  4130. msgctxt "@info"
  4131. msgid "Your new printer will automatically appear in Cura"
  4132. msgstr ""
  4133. #, python-brace-format
  4134. msgctxt "@info:status"
  4135. msgid ""
  4136. "Your printer <b>{printer_name}</b> could be connected via cloud.\n"
  4137. " Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory"
  4138. msgstr ""
  4139. msgctxt "@label"
  4140. msgid "Z"
  4141. msgstr "Z"
  4142. msgctxt "@label"
  4143. msgid "Z (Height)"
  4144. msgstr "Z (Magasság)"
  4145. msgctxt "@label Description for application dependency"
  4146. msgid "ZeroConf discovery library"
  4147. msgstr "ZeroConf felderítő könyvtár"
  4148. msgctxt "@action:button"
  4149. msgid "Zoom toward mouse direction"
  4150. msgstr "Nagyítás az egér mozgás irányában"
  4151. msgctxt "@info:tooltip"
  4152. msgid "Zooming towards the mouse is not supported in the orthographic perspective."
  4153. msgstr "Az egér felé történő nagyítás ortográfiai szempontból nem támogatott."
  4154. msgctxt "@text Placeholder for the username if it has been deleted"
  4155. msgid "deleted user"
  4156. msgstr ""
  4157. msgctxt "@item:inlistbox"
  4158. msgid "glTF Binary"
  4159. msgstr "glTF Bináris"
  4160. msgctxt "@item:inlistbox"
  4161. msgid "glTF Embedded JSON"
  4162. msgstr "glTF beágyazott JSON"
  4163. msgctxt "@label"
  4164. msgid "max"
  4165. msgstr "max"
  4166. msgctxt "@label"
  4167. msgid "min"
  4168. msgstr "min"
  4169. msgctxt "@label"
  4170. msgid "mm"
  4171. msgstr "mm"
  4172. msgctxt "@info:status"
  4173. msgid "today"
  4174. msgstr "ma"
  4175. msgctxt "@info:status"
  4176. msgid "tomorrow"
  4177. msgstr "holnap"
  4178. msgctxt "@label"
  4179. msgid "version: %1"
  4180. msgstr "verzió: %1"
  4181. #, python-brace-format
  4182. msgctxt "@message {printer_name} is replaced with the name of the printer"
  4183. msgid "{printer_name} will be removed until the next account sync."
  4184. msgstr ""
  4185. msgctxt "@info:generic"
  4186. msgid "{} plugins failed to download"
  4187. msgstr ""
  4188. #~ msgctxt "@action:inmenu menubar:edit"
  4189. #~ msgid "Arrange Selection"
  4190. #~ msgstr "Kijelöltek rendezése"
  4191. #~ msgctxt "@label"
  4192. #~ msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards."
  4193. #~ msgstr "Engedélyezze a peremet, vagy az aláúsztatást. Ez létre fog hozni a test szélén illetve az alján egy olyan részt, ami segíti a letapadást, viszont nyomtatás után ezek könnyen eltávolíthatóak a testről."
  4194. #~ msgctxt "@error:zip"
  4195. #~ msgid "Error writing 3mf file."
  4196. #~ msgstr "Hiba a 3mf fájl írásakor."
  4197. #~ msgctxt "@info:title"
  4198. #~ msgid "Simulation View"
  4199. #~ msgstr "Szimuláció nézet"