fdmprinter.def.json.po 265 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739
  1. # Cura JSON setting files
  2. # Copyright (C) 2022 Ultimaker B.V.
  3. # This file is distributed under the same license as the Cura package.
  4. #
  5. msgid ""
  6. msgstr ""
  7. "Project-Id-Version: Cura 5.1\n"
  8. "Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
  9. "POT-Creation-Date: 2024-03-12 15:10+0000\n"
  10. "PO-Revision-Date: 2019-11-15 15:34+0100\n"
  11. "Last-Translator: Mariusz Matłosz <matliks@gmail.com>\n"
  12. "Language-Team: Mariusz Matłosz <matliks@gmail.com>, reprapy.pl\n"
  13. "Language: pl_PL\n"
  14. "MIME-Version: 1.0\n"
  15. "Content-Type: text/plain; charset=UTF-8\n"
  16. "Content-Transfer-Encoding: 8bit\n"
  17. "X-Generator: Poedit 2.2.4\n"
  18. msgctxt "prime_tower_mode description"
  19. msgid "<html>How to generate the prime tower:<ul><li><b>Normal:</b> create a bucket in which secondary materials are primed</li><li><b>Interleaved:</b> create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other</li></ul></html>"
  20. msgstr ""
  21. msgctxt "brim_inside_margin description"
  22. msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models."
  23. msgstr ""
  24. msgctxt "ironing_inset description"
  25. msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print."
  26. msgstr "Odległość utrzymywana od krawędzi modelu. Prasowanie do końca krawędzi siatki może powodować zadarte krawędzie na wydruku."
  27. msgctxt "material_no_load_move_factor description"
  28. msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch."
  29. msgstr ""
  30. msgctxt "roofing_angles description"
  31. msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)."
  32. msgstr "Lista całkowitych kierunków linii używana kiedy skóra górnej powierzchni używa wzoru linii lub zygzaka. Elementy z listy są używane po kolei na każdej warstwie, a kiedy lista się skończy, zaczyna się od nowa. Elementy listy są oddzielone przecinkami, a cała lista zawarta jest w nawiasach kwadratowych. Domyślnie lista jest pusta co oznacza używanie tradycyjnych, domyślnych kątów (45 i 135 stopni)."
  33. msgctxt "skin_angles description"
  34. msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)."
  35. msgstr "Lista całkowitych kierunków linii używana kiedy górne/dolne warstwy używają wzoru linii i zygzaka. Elementy z listy są używane kolejno w miarę postępu warstw, a kiedy kończy się lista, zaczyna się od początku. Elementy listy są oddzielone przecinkami, a cała lista znajduje się w nawiasach kwadratowych. Domyślnie lista jest pusta, co oznacza tradycyjne, domyślne kąty (45 i 135 stopni)."
  36. msgctxt "support_infill_angles description"
  37. msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees."
  38. msgstr "Lista kierunków linii całkowitych do użycia. Elementy z listy są używane sekwencyjnie w miarę postępu warstw, a po osiągnięciu końca listy zaczyna się od początku. Elementy listy są oddzielone przecinkami, a cała lista jest zawarta w nawiasach kwadratowych. Domyślnie lista jest pusta, co oznacza użycie domyślnego kąta 0 stopni."
  39. msgctxt "support_bottom_angles description"
  40. msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)."
  41. msgstr "Lista kierunków linii całkowitych do użycia. Elementy z listy są używane sekwencyjnie w miarę postępu warstw, a po osiągnięciu końca listy zaczyna się od początku od nowa. Elementy listy są oddzielone przecinkami, a cała lista jest zawarta w nawiasach kwadratowych. Domyślnie lista jest pusta, co oznacza użycie domyślnych kątów (na przemian między 45 a 135 stopni, jeśli interfejsy są dość grube lub 90 stopni)."
  42. msgctxt "support_interface_angles description"
  43. msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)."
  44. msgstr "Lista kierunków linii całkowitych do użycia. Elementy z listy są używane sekwencyjnie w miarę postępu warstw, a po osiągnięciu końca listy zaczyna się od początku. Elementy listy są oddzielone przecinkami, a cała lista jest zawarta w nawiasach kwadratowych. Domyślnie lista jest pusta, co oznacza użycie domyślnych kątów (na przemian między 45 a 135 stopni, jeśli interfejsy są dość grube lub 90 stopni)."
  45. msgctxt "support_roof_angles description"
  46. msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)."
  47. msgstr "Lista kierunków linii całkowitych do użycia. Elementy z listy są używane sekwencyjnie w miarę postępu warstw, a po osiągnięciu końca listy zaczyna się od początku od nowa. Elementy listy są oddzielone przecinkami, a cała lista jest zawarta w nawiasach kwadratowych. Domyślnie lista jest pusta, co oznacza użycie domyślnych kątów (na przemian między 45 a 135 stopni, jeśli interfejsy są dość grube lub 90 stopni)."
  48. msgctxt "infill_angles description"
  49. msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)."
  50. msgstr "Lista całkowitych kierunków linii do użycia. Elementy z listy są używane kolejno w miarę postępu warstw, a kiedy kończy się lista, zaczyna się od początku. Elementy listy są oddzielone przecinkami, a cała lista znajduje się w nawiasach kwadratowych. Domyślnie lista jest pusta, co oznacza tradycyjne domyślne kąty (45 i 135 stopni dla linii i wzorów zygzakowych i 45 stopni dla wszystkich pozostałych wzorów)."
  51. msgctxt "nozzle_disallowed_areas description"
  52. msgid "A list of polygons with areas the nozzle is not allowed to enter."
  53. msgstr "Lista obszarów, w które dysze nie mogą wjeżdżać."
  54. msgctxt "machine_disallowed_areas description"
  55. msgid "A list of polygons with areas the print head is not allowed to enter."
  56. msgstr "Lista obszarów, we których głowica nie może się poruszać."
  57. msgctxt "support_tree_branch_reach_limit description"
  58. msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) "
  59. msgstr ""
  60. msgctxt "extruder_prime_pos_abs label"
  61. msgid "Absolute Extruder Prime Position"
  62. msgstr "Bezwzgl. Końcowa Pozycja Ekstrudera"
  63. msgctxt "adaptive_layer_height_variation label"
  64. msgid "Adaptive Layers Maximum Variation"
  65. msgstr "Maks. zmiana zmiennych warstw"
  66. msgctxt "adaptive_layer_height_threshold label"
  67. msgid "Adaptive Layers Topography Size"
  68. msgstr "Rozmiar topografii warstw adaptacyjnych"
  69. msgctxt "adaptive_layer_height_variation_step label"
  70. msgid "Adaptive Layers Variation Step Size"
  71. msgstr "Krok zmian zmiennych warstw"
  72. msgctxt "adaptive_layer_height_enabled description"
  73. msgid "Adaptive layers computes the layer heights depending on the shape of the model."
  74. msgstr "Zmienne warstwy obliczają wysokości warstw w zależności od kształtu modelu."
  75. msgctxt "infill_wall_line_count description"
  76. msgid ""
  77. "Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\n"
  78. "This feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right."
  79. msgstr ""
  80. "Dodaje ścianki naokoło wypełnienia. Takie ścianki mogą spowodować, że linie górnej/dolnej powłoki będą zwisać mniej, co pozwoli na zastosowanie mniejszej ilości górnych/dolnych warstw przy zachowaniu takiej samej jakości kosztem dodatkowego materiału.\n"
  81. "Ta funkcja może być używana razem z funkcją \"Połącz Wieloboki Wypełnienia\", aby połączyć całe wypełnienie w pojedynczą ścieżkę, co przy poprawnej konfiguracji wyelinimuje potrzebę wykonywania ruchów jałowych lub retrakcji."
  82. msgctxt "platform_adhesion description"
  83. msgid "Adhesion"
  84. msgstr "Przyczepność"
  85. msgctxt "material_adhesion_tendency label"
  86. msgid "Adhesion Tendency"
  87. msgstr "Tendencja Przyczepności"
  88. msgctxt "skin_overlap description"
  89. msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall."
  90. msgstr "Dostosuj zachodzenie pomiędzy ścianami, a (punktami końcowymi) linią obrysu, jako procent szerokości linii obrysu i najbardziej wewnętrznej ściany. Niewielkie zachodzenie na siebie pozwala ścianom połączyć się mocno z obrysem. Zauważ, że przy równej szerokości obrysu i szerokości ściany, każdy procent powyżej 50% może spowodować przekroczenie ściany przez obrys, ponieważ pozycja dyszy ekstrudera obrysu może sięgać poza środek ściany."
  91. msgctxt "skin_overlap_mm description"
  92. msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall."
  93. msgstr "Dostosuj zachodzenie pomiędzy ścianami, a (punktami końcowymi) linią obrysu. Niewielkie zachodzenie na siebie pozwala ścianom połączyć się mocno z obrysem. Zauważ, że przy równej szerokości obrysu i szerokości ściany, każdy procent powyżej 50% może spowodować przekroczenie ściany przez obrys, ponieważ pozycja dyszy ekstrudera obrysu może sięgać poza środek ściany."
  94. msgctxt "infill_sparse_density description"
  95. msgid "Adjusts the density of infill of the print."
  96. msgstr "Dostosowuje gęstość wypełnienia wydruku."
  97. msgctxt "support_interface_density description"
  98. msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  99. msgstr "Dostosowuje gęstość dachów i podłoży podpory. Wyższa wartość powoduje lepsze zwisy, ale podpory są trudniejsze do usunięcia."
  100. msgctxt "support_tree_top_rate description"
  101. msgid "Adjusts the density of the support structure used to generate the tips of the branches. A higher value results in better overhangs, but the supports are harder to remove. Use Support Roof for very high values or ensure support density is similarly high at the top."
  102. msgstr ""
  103. msgctxt "support_infill_rate description"
  104. msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  105. msgstr "Reguluje gęstość struktury podpory. Wyższa wartość powoduje lepsze zwisy, ale podpory są trudniejsze do usunięcia."
  106. msgctxt "material_diameter description"
  107. msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament."
  108. msgstr "Dostosowuje średnicę stosowanego filamentu. Dopasuj tę wartość do średnicy stosowanego filamentu."
  109. msgctxt "support_type description"
  110. 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."
  111. msgstr "Reguluje rozmieszczenie podpór. Umiejscowienie można dostosować tak, aby dotykały tylko stołu roboczego lub były generowane wszędzie. Po ustawieniu na wszędzie struktury wydruku będą również drukowane na modelu."
  112. msgctxt "prime_tower_wipe_enabled description"
  113. msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower."
  114. msgstr "Po wydrukowaniu podstawowej wieży jedną dyszą, wytrzyj wytłoczony materiał z drugiej dyszy o wieżę czyszczącą."
  115. msgctxt "retraction_hop_after_extruder_switch description"
  116. msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print."
  117. msgstr "Po przełączeniu maszyny z jednego ekstrudera na drugi, stół jest opuszczany, aby utworzyć luz pomiędzy dyszą a drukiem. Zapobiega to pozostawianiu wypływającego materiału na powierzchni wydruku."
  118. msgctxt "retraction_combing option all"
  119. msgid "All"
  120. msgstr "Wszędzie"
  121. msgctxt "print_sequence option all_at_once"
  122. msgid "All at Once"
  123. msgstr "Wszystko na raz"
  124. msgctxt "resolution description"
  125. msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)"
  126. msgstr "Wszystkie ustawienia, które wpływają na rozdzielczość druku. Ustawienia te mają ogromny wpływ na jakość (i czas druku)"
  127. msgctxt "user_defined_print_order_enabled description"
  128. msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first."
  129. msgstr ""
  130. msgctxt "alternate_extra_perimeter label"
  131. msgid "Alternate Extra Wall"
  132. msgstr "Zastosuj Dodatkową Ścianę"
  133. msgctxt "alternate_carve_order label"
  134. msgid "Alternate Mesh Removal"
  135. msgstr "Zastosuj Usuwanie Siatki"
  136. msgctxt "material_alternate_walls label"
  137. msgid "Alternate Wall Directions"
  138. msgstr ""
  139. msgctxt "material_alternate_walls description"
  140. msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing."
  141. msgstr ""
  142. msgctxt "machine_buildplate_type option aluminum"
  143. msgid "Aluminum"
  144. msgstr "Aluminium"
  145. msgctxt "machine_always_write_active_tool label"
  146. msgid "Always Write Active Tool"
  147. msgstr ""
  148. msgctxt "travel_retract_before_outer_wall description"
  149. msgid "Always retract when moving to start an outer wall."
  150. msgstr "Zawsze cofaj podczas przemieszczania się do początku zewnętrznej ściany."
  151. msgctxt "xy_offset description"
  152. msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes."
  153. msgstr "Wartość przesunięcia zastosowana do wszystkich wielokątów na każdej warstwie. Dodatnie wartości mogą kompensować zbyt duże otwory; wartości ujemne mogą kompensować zbyt małe otwory."
  154. msgctxt "xy_offset_layer_0 description"
  155. msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"."
  156. msgstr "Wartość przesunięcia dodawana do wszystkich powierzchni na pierwszej warstwie. Ujemna wartość może skompensować rozlewanie się pierwszej warstwy znane jako \"stopa słonia\"."
  157. msgctxt "support_offset description"
  158. msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support."
  159. msgstr "Wartość nakładania się stosowana do wszystkich podpór na każdej warstwie. Dodatnie wartości mogą wygładzić podpory co w rezultacie daje silne podpory."
  160. msgctxt "support_bottom_offset description"
  161. msgid "Amount of offset applied to the floors of the support."
  162. msgstr "Wartość przesunięcia zastosowana do obszaru podłoża podpór."
  163. msgctxt "support_roof_offset description"
  164. msgid "Amount of offset applied to the roofs of the support."
  165. msgstr "Wartość przesunięcia zastosowana do obszaru dachu podpór."
  166. msgctxt "support_interface_offset description"
  167. msgid "Amount of offset applied to the support interface polygons."
  168. msgstr "Wartość przesunięcia zastosowana do obszaru interfejsu podpór."
  169. msgctxt "wipe_retraction_amount description"
  170. msgid "Amount to retract the filament so it does not ooze during the wipe sequence."
  171. msgstr "Ilość filamentu do retrakcji, aby nie wyciekał podczas czyszczenia."
  172. msgctxt "sub_div_rad_add description"
  173. msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model."
  174. msgstr "Dodatek do promienia od środka każdej kostki, aby sprawdzić granicę modelu i podjąć decyzję, czy taka kostka powinna być podzielona. Większe wartości prowadzą do grubszej powłoki małych kostek w pobliżu granicy modelu."
  175. msgctxt "anti_overhang_mesh label"
  176. msgid "Anti Overhang Mesh"
  177. msgstr "Siatka Anty-zwisowa"
  178. msgctxt "material_anti_ooze_retracted_position label"
  179. msgid "Anti-ooze Retracted Position"
  180. msgstr "Odległość retrakcji anty-wyciekom"
  181. msgctxt "material_anti_ooze_retraction_speed label"
  182. msgid "Anti-ooze Retraction Speed"
  183. msgstr "Szybkość retrakcji anty-wyciekom"
  184. msgctxt "machine_use_extruder_offset_to_offset_coords description"
  185. msgid "Apply the extruder offset to the coordinate system. Affects all extruders."
  186. msgstr ""
  187. msgctxt "interlocking_enable description"
  188. msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials."
  189. msgstr ""
  190. msgctxt "travel_avoid_other_parts label"
  191. msgid "Avoid Printed Parts When Traveling"
  192. msgstr "Unikaj Wydruk. Części Podczas Ruchu Jałowego"
  193. msgctxt "travel_avoid_supports label"
  194. msgid "Avoid Supports When Traveling"
  195. msgstr "Unikaj Podpór Podczas Ruchu Jałowego"
  196. msgctxt "z_seam_position option back"
  197. msgid "Back"
  198. msgstr "Tył"
  199. msgctxt "z_seam_position option backleft"
  200. msgid "Back Left"
  201. msgstr "Lewy tył"
  202. msgctxt "z_seam_position option backright"
  203. msgid "Back Right"
  204. msgstr "Prawy tył"
  205. msgctxt "machine_gcode_flavor option BFB"
  206. msgid "Bits from Bytes"
  207. msgstr "Bits from Bytes"
  208. msgctxt "magic_mesh_surface_mode option both"
  209. msgid "Both"
  210. msgstr "Oba"
  211. msgctxt "support_interface_priority option nothing"
  212. msgid "Both overlap"
  213. msgstr ""
  214. msgctxt "bottom_layers label"
  215. msgid "Bottom Layers"
  216. msgstr "Dolne Warstwy"
  217. msgctxt "top_bottom_pattern_0 label"
  218. msgid "Bottom Pattern Initial Layer"
  219. msgstr "Wzór Dolnej Początkowej Warstwy"
  220. msgctxt "bottom_skin_expand_distance label"
  221. msgid "Bottom Skin Expand Distance"
  222. msgstr "Odległość Rozsz. Dolnej Skóry"
  223. msgctxt "bottom_skin_preshrink label"
  224. msgid "Bottom Skin Removal Width"
  225. msgstr "Szer. Usuwania Dolnej Skóry"
  226. msgctxt "bottom_thickness label"
  227. msgid "Bottom Thickness"
  228. msgstr "Grubość Dołu"
  229. msgctxt "support_tree_top_rate label"
  230. msgid "Branch Density"
  231. msgstr ""
  232. msgctxt "support_tree_branch_diameter label"
  233. msgid "Branch Diameter"
  234. msgstr ""
  235. msgctxt "support_tree_branch_diameter_angle label"
  236. msgid "Branch Diameter Angle"
  237. msgstr ""
  238. msgctxt "material_break_preparation_retracted_position label"
  239. msgid "Break Preparation Retracted Position"
  240. msgstr "Odległość pęknięcia przy retrakcji"
  241. msgctxt "material_break_preparation_speed label"
  242. msgid "Break Preparation Retraction Speed"
  243. msgstr "Szybkość pękania przy retrakcji"
  244. msgctxt "material_break_preparation_temperature label"
  245. msgid "Break Preparation Temperature"
  246. msgstr ""
  247. msgctxt "material_break_retracted_position label"
  248. msgid "Break Retracted Position"
  249. msgstr "Odległość łamania retrakcji"
  250. msgctxt "material_break_speed label"
  251. msgid "Break Retraction Speed"
  252. msgstr "Szybkość łamania retrakcji"
  253. msgctxt "material_break_temperature label"
  254. msgid "Break Temperature"
  255. msgstr "Temperatura pękania"
  256. msgctxt "support_skip_some_zags label"
  257. msgid "Break Up Support In Chunks"
  258. msgstr "Podziel Podpory na Kawałki"
  259. msgctxt "bridge_fan_speed label"
  260. msgid "Bridge Fan Speed"
  261. msgstr "Prędk. Wentylatora - Mosty"
  262. msgctxt "bridge_enable_more_layers label"
  263. msgid "Bridge Has Multiple Layers"
  264. msgstr "Most Ma Wiele Warstw"
  265. msgctxt "bridge_skin_density_2 label"
  266. msgid "Bridge Second Skin Density"
  267. msgstr "Gęstość Drugiej Skóry Mostu"
  268. msgctxt "bridge_fan_speed_2 label"
  269. msgid "Bridge Second Skin Fan Speed"
  270. msgstr "Prędk. Wentylatora - Druga Skóra Mostu"
  271. msgctxt "bridge_skin_material_flow_2 label"
  272. msgid "Bridge Second Skin Flow"
  273. msgstr "Przepływ Drugiej Skóry Mostu"
  274. msgctxt "bridge_skin_speed_2 label"
  275. msgid "Bridge Second Skin Speed"
  276. msgstr "Prędk. Drugiej Skóry Mostu"
  277. msgctxt "bridge_skin_density label"
  278. msgid "Bridge Skin Density"
  279. msgstr "Gęstość Skóry Mostu"
  280. msgctxt "bridge_skin_material_flow label"
  281. msgid "Bridge Skin Flow"
  282. msgstr "Przepływ Skóry Mostu"
  283. msgctxt "bridge_skin_speed label"
  284. msgid "Bridge Skin Speed"
  285. msgstr "Prędk. Skóry Mostu"
  286. msgctxt "bridge_skin_support_threshold label"
  287. msgid "Bridge Skin Support Threshold"
  288. msgstr "Próg Podpory Skóry Mostu"
  289. msgctxt "bridge_sparse_infill_max_density label"
  290. msgid "Bridge Sparse Infill Max Density"
  291. msgstr ""
  292. msgctxt "bridge_skin_density_3 label"
  293. msgid "Bridge Third Skin Density"
  294. msgstr "Gęstość Trzeciej Skóry Mostu"
  295. msgctxt "bridge_fan_speed_3 label"
  296. msgid "Bridge Third Skin Fan Speed"
  297. msgstr "Prędk. Wentylatora - Trzecia Skóra Mostu"
  298. msgctxt "bridge_skin_material_flow_3 label"
  299. msgid "Bridge Third Skin Flow"
  300. msgstr "Przepływ Trzeciej Skóry Mostu"
  301. msgctxt "bridge_skin_speed_3 label"
  302. msgid "Bridge Third Skin Speed"
  303. msgstr "Prędkość Trzeciej Skóry Mostu"
  304. msgctxt "bridge_wall_coast label"
  305. msgid "Bridge Wall Coasting"
  306. msgstr "Rozbieg Ściany Mostu"
  307. msgctxt "bridge_wall_material_flow label"
  308. msgid "Bridge Wall Flow"
  309. msgstr "Przepływ Mostów"
  310. msgctxt "bridge_wall_speed label"
  311. msgid "Bridge Wall Speed"
  312. msgstr "Prędkość Ścian Mostu"
  313. msgctxt "adhesion_type option brim"
  314. msgid "Brim"
  315. msgstr "Obrys"
  316. msgctxt "brim_inside_margin label"
  317. msgid "Brim Avoid Margin"
  318. msgstr ""
  319. msgctxt "brim_gap label"
  320. msgid "Brim Distance"
  321. msgstr ""
  322. msgctxt "brim_line_count label"
  323. msgid "Brim Line Count"
  324. msgstr "Liczba Linii Obrysu"
  325. msgctxt "brim_location label"
  326. msgid "Brim Location"
  327. msgstr ""
  328. msgctxt "brim_replaces_support label"
  329. msgid "Brim Replaces Support"
  330. msgstr "Podpory Zastąp Obrysem"
  331. msgctxt "brim_width label"
  332. msgid "Brim Width"
  333. msgstr "Szerokość Obrysu"
  334. msgctxt "platform_adhesion label"
  335. msgid "Build Plate Adhesion"
  336. msgstr "Popraw Przycz. Stołu"
  337. msgctxt "adhesion_extruder_nr label"
  338. msgid "Build Plate Adhesion Extruder"
  339. msgstr "Ekstruder Adhezji Pola Roboczego"
  340. msgctxt "adhesion_type label"
  341. msgid "Build Plate Adhesion Type"
  342. msgstr "Typ Zwiększenia Przyczepności"
  343. msgctxt "machine_buildplate_type label"
  344. msgid "Build Plate Material"
  345. msgstr "Materiał Platformy Roboczej"
  346. msgctxt "machine_shape label"
  347. msgid "Build Plate Shape"
  348. msgstr "Kształt Stołu"
  349. msgctxt "material_bed_temperature label"
  350. msgid "Build Plate Temperature"
  351. msgstr "Temperatura Stołu"
  352. msgctxt "material_bed_temperature_layer_0 label"
  353. msgid "Build Plate Temperature Initial Layer"
  354. msgstr "Temp. Stołu na Pierw. Warstwie"
  355. msgctxt "build_volume_temperature label"
  356. msgid "Build Volume Temperature"
  357. msgstr "Temperatura obszaru roboczego"
  358. msgctxt "bv_temp_anomaly_limit label"
  359. msgid "Build Volume temperature Limit"
  360. msgstr ""
  361. msgctxt "bv_temp_warn_limit label"
  362. msgid "Build Volume temperature Warning"
  363. msgstr ""
  364. msgctxt "prime_tower_brim_enable description"
  365. msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height."
  366. msgstr ""
  367. msgctxt "center_object label"
  368. msgid "Center Object"
  369. msgstr "Wyśrodkuj obiekt"
  370. msgctxt "conical_overhang_enabled description"
  371. msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical."
  372. msgstr "Zmienia geometrię modelu tak, aby wymagał minimalnego podparcia. Strome zwisy staną się mniej strome. Zwisające obszary zostaną opuszczone by być bardziej pionowymi."
  373. msgctxt "support_structure description"
  374. msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"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."
  375. msgstr ""
  376. msgctxt "coasting_speed label"
  377. msgid "Coasting Speed"
  378. msgstr "Prędkość Wypływania"
  379. msgctxt "coasting_volume label"
  380. msgid "Coasting Volume"
  381. msgstr "Objętość Wypływania"
  382. msgctxt "coasting_enable description"
  383. msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing."
  384. msgstr "Wypływanie zastępuje ostatnią część ścieżki ekstruzji, ścieżką ruchu jałowego. Wyciekający materiał jest używany do wydrukowania ostatniego fragmentu ekstruzji, aby zmniejszyć nitkowanie."
  385. msgctxt "retraction_combing label"
  386. msgid "Combing Mode"
  387. msgstr "Tryb Kombinowania"
  388. msgctxt "retraction_combing description"
  389. msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill."
  390. msgstr "Combing utrzymuje dyszę w obszarach wydruku podczas poruszania. Powoduje to nieco dłuższe ruchy, ale zmniejsza potrzebę retrakcji. Jeśli Combing jest wyłączone, następuje retrakcja, a dysza przesuwa się w linii prostej do następnego punktu. Możliwe jest wyłączenie opcji górnych / dolnych obszarach obrysu lub utrzymanie dyszy w obrębie wypełnienia."
  391. msgctxt "command_line_settings label"
  392. msgid "Command Line Settings"
  393. msgstr "Ustawienia Wiersza Polecenia"
  394. msgctxt "infill_pattern option concentric"
  395. msgid "Concentric"
  396. msgstr "Koncentryczny"
  397. msgctxt "ironing_pattern option concentric"
  398. msgid "Concentric"
  399. msgstr "Koncentryczny"
  400. msgctxt "roofing_pattern option concentric"
  401. msgid "Concentric"
  402. msgstr "Koncentryczny"
  403. msgctxt "support_bottom_pattern option concentric"
  404. msgid "Concentric"
  405. msgstr "Koncentryczny"
  406. msgctxt "support_interface_pattern option concentric"
  407. msgid "Concentric"
  408. msgstr "Koncentryczny"
  409. msgctxt "support_pattern option concentric"
  410. msgid "Concentric"
  411. msgstr "Koncentryczny"
  412. msgctxt "support_roof_pattern option concentric"
  413. msgid "Concentric"
  414. msgstr "Koncentryczny"
  415. msgctxt "top_bottom_pattern option concentric"
  416. msgid "Concentric"
  417. msgstr "Koncentryczny"
  418. msgctxt "top_bottom_pattern_0 option concentric"
  419. msgid "Concentric"
  420. msgstr "Koncentryczny"
  421. msgctxt "support_conical_angle label"
  422. msgid "Conical Support Angle"
  423. msgstr "Kąt Podpory Stożkowej"
  424. msgctxt "support_conical_min_width label"
  425. msgid "Conical Support Minimum Width"
  426. msgstr "Min. Szerokość Podpory Stożkowej"
  427. msgctxt "zig_zaggify_infill label"
  428. msgid "Connect Infill Lines"
  429. msgstr "Połącz Linie Wypełnienia"
  430. msgctxt "connect_infill_polygons label"
  431. msgid "Connect Infill Polygons"
  432. msgstr "Połącz Wieloboki Wypełnienia"
  433. msgctxt "zig_zaggify_support label"
  434. msgid "Connect Support Lines"
  435. msgstr "Łącz Linie Podpory"
  436. msgctxt "support_connect_zigzags label"
  437. msgid "Connect Support ZigZags"
  438. msgstr "Połącz Zygzaki Podpory"
  439. msgctxt "connect_skin_polygons label"
  440. msgid "Connect Top/Bottom Polygons"
  441. msgstr "Połącz Górne/Dolne Wieloboki"
  442. msgctxt "connect_infill_polygons description"
  443. msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time."
  444. msgstr "Łączy ścieżki wypełnienia, gdy są one prowadzone obok siebie. Dla wzorów wypełnienia zawierających kilka zamkniętych wieloboków, załączenie tego ustawienia znacznie skróci czas ruchów jałowych."
  445. msgctxt "support_connect_zigzags description"
  446. msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure."
  447. msgstr "Połącz Zygzaki. To zwiększa wytrzymałość zygzakowatej podpory."
  448. msgctxt "zig_zaggify_support description"
  449. msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material."
  450. msgstr "Łącz końce linii podpory razem. Włączenie tej opcji może tworzyć bardziej sztywne podpory i redukować podekstruzje, ale będzie to wymagało więcej materiału."
  451. msgctxt "zig_zaggify_infill description"
  452. msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used."
  453. msgstr "Łączy końce gdzie wzór wypełnienia spotyka się z wewn. ścianą używając linii, która podąża za kształtem wewn. ściany. Włączenie tego ustawienia może spowodować lepszą przyczepność wypełnienia do ścian i zredukować efekty wypełnienia w jakości powierzchni. Wyłączenie tego ustawienia redukuje ilość potrzebnego materiału."
  454. msgctxt "connect_skin_polygons description"
  455. msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality."
  456. msgstr "Połącz górne/dolne ścieżki, które przebiegają koło siebie. Włączenie tej opcji powoduje ograniczenie czasu ruchów jałowych dla wzorca koncentrycznego, ale ze względu na możliwość pojawienia się połączeń w połowie ścieżki wypełnienia, opcja ta może obniżyć jakość górnego wykończenia."
  457. msgctxt "z_seam_corner description"
  458. msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate."
  459. msgstr "Kontroluj, czy narożniki obrysu wpływają na położenie szwu. Brak oznacza, że rogi nie mają wpływu na tę pozycję. Ukryj szew zwiększa prawdopodobieństwo pojawienia się szwu w wewnętrznym rogu. Ujawnij szew zwiększa prawdopodobieństwo pojawienia się szwu w narożniku zewnętrznym. Ukryj lub odsłoń szew zwiększa prawdopodobieństwo, że szew pojawi się w rogu wewnętrznym lub zewnętrznym. Inteligentne ukrywanie odsłania zarówno narożniki wewnętrzne, jak i zewnętrzne, ale w miarę potrzeby wybiera wewnętrzne narożniki."
  460. msgctxt "infill_multiplier description"
  461. msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage."
  462. msgstr "Zmienia pojedynczą linię wypełnienia na zadaną ilość linii. Dodatkowe linie wypełnienia nie będą nad sobą przechodzić, ale będą się unikać. Sprawi to, że wypełnienie będzie sztywniejsze, ale czas druku oraz zużycie materiału zwiększą się."
  463. msgctxt "machine_nozzle_cool_down_speed label"
  464. msgid "Cool Down Speed"
  465. msgstr "Prędkość chłodzenia"
  466. msgctxt "cooling description"
  467. msgid "Cooling"
  468. msgstr "Chłodzenie"
  469. msgctxt "cooling label"
  470. msgid "Cooling"
  471. msgstr "Chłodzenie"
  472. msgctxt "infill_pattern option cross"
  473. msgid "Cross"
  474. msgstr "Krzyż"
  475. msgctxt "support_pattern option cross"
  476. msgid "Cross"
  477. msgstr "Krzyż"
  478. msgctxt "infill_pattern option cross_3d"
  479. msgid "Cross 3D"
  480. msgstr "Krzyż 3D"
  481. msgctxt "cross_infill_pocket_size label"
  482. msgid "Cross 3D Pocket Size"
  483. msgstr "Rozmiar Kieszeni Krzyża 3D"
  484. msgctxt "cross_support_density_image label"
  485. msgid "Cross Fill Density Image for Support"
  486. msgstr "Gęstości Wypełnienia Krzyżowego Podstaw Według Obrazu"
  487. msgctxt "cross_infill_density_image label"
  488. msgid "Cross Infill Density Image"
  489. msgstr "Gęstośc Wypełnienia Krzyżowego Według Obrazu"
  490. msgctxt "material_crystallinity label"
  491. msgid "Crystalline Material"
  492. msgstr "Materiał krystaliczny"
  493. msgctxt "infill_pattern option cubic"
  494. msgid "Cubic"
  495. msgstr "Sześcienny"
  496. msgctxt "infill_pattern option cubicsubdiv"
  497. msgid "Cubic Subdivision"
  498. msgstr "Podział sześcienny"
  499. msgctxt "sub_div_rad_add label"
  500. msgid "Cubic Subdivision Shell"
  501. msgstr "Sześcienny Podział Powłoki"
  502. msgctxt "cutting_mesh label"
  503. msgid "Cutting Mesh"
  504. msgstr "Cięcie Siatki"
  505. msgctxt "material_flow_temp_graph description"
  506. msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)."
  507. msgstr "Dane łączące przepływ materiału (w mm3 na sekundę) z temperaturą (stopnie Celsjusza)."
  508. msgctxt "machine_acceleration label"
  509. msgid "Default Acceleration"
  510. msgstr "Domyślne Przyspieszenie"
  511. msgctxt "default_material_bed_temperature label"
  512. msgid "Default Build Plate Temperature"
  513. msgstr "Domyślna Temp. Platformy Roboczej"
  514. msgctxt "machine_max_jerk_e label"
  515. msgid "Default Filament Jerk"
  516. msgstr "Domyślny Zryw Filamentu"
  517. msgctxt "default_material_print_temperature label"
  518. msgid "Default Printing Temperature"
  519. msgstr "Domyślna Temperatura Druku"
  520. msgctxt "machine_max_jerk_xy label"
  521. msgid "Default X-Y Jerk"
  522. msgstr "Domyślny Zryw X-Y"
  523. msgctxt "machine_max_jerk_z label"
  524. msgid "Default Z Jerk"
  525. msgstr "Domyślny Zryw Z"
  526. msgctxt "machine_max_jerk_xy description"
  527. msgid "Default jerk for movement in the horizontal plane."
  528. msgstr "Domyślny zryw dla ruchu w płaszczyźnie poziomej."
  529. msgctxt "machine_max_jerk_z description"
  530. msgid "Default jerk for the motor of the Z-direction."
  531. msgstr "Domyślny zryw do silnika osi Z."
  532. msgctxt "machine_max_jerk_e description"
  533. msgid "Default jerk for the motor of the filament."
  534. msgstr "Domyślny zryw dla silnika filamentu."
  535. msgctxt "bridge_settings_enabled description"
  536. msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed."
  537. msgstr "Wykryj mosty i modyfikuj prędkość drukowania, przepływ i ustawienia wentylatora podczas drukowania mostó."
  538. msgctxt "inset_direction description"
  539. msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last."
  540. msgstr ""
  541. msgctxt "infill_mesh_order description"
  542. msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes."
  543. msgstr ""
  544. msgctxt "lightning_infill_support_angle description"
  545. msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer."
  546. msgstr ""
  547. msgctxt "lightning_infill_overhang_angle description"
  548. msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness."
  549. msgstr ""
  550. msgctxt "material_diameter label"
  551. msgid "Diameter"
  552. msgstr "Średnica"
  553. msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label"
  554. msgid "Diameter Increase To Model"
  555. msgstr ""
  556. msgctxt "support_tree_bp_diameter description"
  557. msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion."
  558. msgstr ""
  559. msgctxt "adhesion_type description"
  560. msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model."
  561. msgstr "Różne opcje, które pomagają na przyczepność do stołu. Obrys dodaje jednowarstwową płaską powierzchnię wokół podstawy modelu, aby zapobiec wypaczeniu. Tratwa dodaje grubą siatkę z dachem poniżej modelu. Obwódka to linia nadrukowana wokół modelu, ale nie połączona z modelem."
  562. msgctxt "machine_disallowed_areas label"
  563. msgid "Disallowed Areas"
  564. msgstr "Niedozwolone obszary"
  565. msgctxt "infill_line_distance description"
  566. msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width."
  567. msgstr "Odległość między drukowanymi liniami wypełnienia. To ustawienie jest obliczane za pomocą gęstości wypełnienia i szerokość linii wypełnienia."
  568. msgctxt "support_initial_layer_line_distance description"
  569. msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density."
  570. msgstr "Odległość między drukowanymi liniami struktury podpory w początkowej warstwie. To ustawienie jest obliczane na podstawie gęstości podpory."
  571. msgctxt "support_bottom_line_distance description"
  572. msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately."
  573. msgstr "Odległość między drukowanymi liniami podłoża podpory. To ustawienie jest obliczane za pomocą Gęstość Podłoża Podpory, ale można je wyregulować oddzielnie."
  574. msgctxt "support_roof_line_distance description"
  575. msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately."
  576. msgstr "Odległość pomiędzy drukowanymi liniami dachu podpory. Ta opcja jest obliczona na podstawie Gęstości Podpory, ale może być także ustawiona oddzielnie."
  577. msgctxt "support_line_distance description"
  578. msgid "Distance between the printed support structure lines. This setting is calculated by the support density."
  579. msgstr "Odległość między drukowanymi liniami struktury podpory. To ustawienie jest obliczane przez gęstość podpory."
  580. msgctxt "support_bottom_distance description"
  581. msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height."
  582. msgstr ""
  583. msgctxt "support_top_distance description"
  584. msgid "Distance from the top of the support to the print."
  585. msgstr "Odległość od wierzchołka podpory do wydruku."
  586. msgctxt "support_z_distance description"
  587. msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers."
  588. msgstr ""
  589. msgctxt "infill_wipe_dist description"
  590. msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line."
  591. msgstr "Odległość ruchu jałowego pomiędzy każdą linią wypełnienia, aby lepiej przymocować linię wypełnienia do ścian. Ta opcja jest podobna do nakładania się wypełnienia, ale bez ekstruzji i tylko na jednym końcu linii wypełnienia."
  592. msgctxt "wall_0_wipe_dist description"
  593. msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better."
  594. msgstr "Długość ruchu jałowego umieszczonego po wydrukowaniu zewnętrznej ściany, aby lepiej ukryć szew Z."
  595. msgctxt "draft_shield_dist description"
  596. msgid "Distance of the draft shield from the print, in the X/Y directions."
  597. msgstr "Odległość osłony przeciwwiatrowej od druku, we współrzędnych X/Y."
  598. msgctxt "ooze_shield_dist description"
  599. msgid "Distance of the ooze shield from the print, in the X/Y directions."
  600. msgstr "Odległość od osłony wycierającej do wydruku, w kierunkach X/Y."
  601. msgctxt "support_xy_distance_overhang description"
  602. msgid "Distance of the support structure from the overhang in the X/Y directions."
  603. msgstr ""
  604. msgctxt "support_xy_distance description"
  605. msgid "Distance of the support structure from the print in the X/Y directions."
  606. msgstr "Odległość podpory od wydruku w kierunkach X/Y."
  607. msgctxt "meshfix_fluid_motion_shift_distance description"
  608. msgid "Distance points are shifted to smooth the path"
  609. msgstr ""
  610. msgctxt "meshfix_fluid_motion_small_distance description"
  611. msgid "Distance points are shifted to smooth the path"
  612. msgstr ""
  613. msgctxt "min_infill_area description"
  614. msgid "Don't generate areas of infill smaller than this (use skin instead)."
  615. msgstr "Nie generuj obszarów wypełnienia mniejszych niż to (zamiast tego używaj skóry)."
  616. msgctxt "draft_shield_height label"
  617. msgid "Draft Shield Height"
  618. msgstr "Wysokość Osłony"
  619. msgctxt "draft_shield_height_limitation label"
  620. msgid "Draft Shield Limitation"
  621. msgstr "Ograniczenie Osłony"
  622. msgctxt "draft_shield_dist label"
  623. msgid "Draft Shield X/Y Distance"
  624. msgstr "Odległość Osłony w X/Y"
  625. msgctxt "support_mesh_drop_down label"
  626. msgid "Drop Down Support Mesh"
  627. msgstr "Upuść Siatkę Podpory"
  628. msgctxt "dual label"
  629. msgid "Dual Extrusion"
  630. msgstr "Podwójna ekstruzja"
  631. msgctxt "machine_shape option elliptic"
  632. msgid "Elliptic"
  633. msgstr "Eliptyczny"
  634. msgctxt "acceleration_enabled label"
  635. msgid "Enable Acceleration Control"
  636. msgstr "Włącz Sterowanie Przyspieszeniem"
  637. msgctxt "bridge_settings_enabled label"
  638. msgid "Enable Bridge Settings"
  639. msgstr "Włącz Ustawienia Mostów"
  640. msgctxt "coasting_enable label"
  641. msgid "Enable Coasting"
  642. msgstr "Włącz Wypływanie"
  643. msgctxt "support_conical_enabled label"
  644. msgid "Enable Conical Support"
  645. msgstr "Włącz Podpory Stożkowe"
  646. msgctxt "draft_shield_enabled label"
  647. msgid "Enable Draft Shield"
  648. msgstr "Włącz Osłonę Przeciwwiatrową"
  649. msgctxt "meshfix_fluid_motion_enabled label"
  650. msgid "Enable Fluid Motion"
  651. msgstr ""
  652. msgctxt "ironing_enabled label"
  653. msgid "Enable Ironing"
  654. msgstr "Włącz Prasowanie"
  655. msgctxt "jerk_enabled label"
  656. msgid "Enable Jerk Control"
  657. msgstr "Włącz Kontrole Zrywu"
  658. msgctxt "machine_nozzle_temp_enabled label"
  659. msgid "Enable Nozzle Temperature Control"
  660. msgstr "Włącz Kontrolę Temp. Dyszy"
  661. msgctxt "ooze_shield_enabled label"
  662. msgid "Enable Ooze Shield"
  663. msgstr "Włącz Osłonę Wycierającą"
  664. msgctxt "prime_blob_enable label"
  665. msgid "Enable Prime Blob"
  666. msgstr "Włącz Czyszczenie \"Blob”ów"
  667. msgctxt "prime_tower_enable label"
  668. msgid "Enable Prime Tower"
  669. msgstr "Włącz Wieżę Czyszczącą"
  670. msgctxt "cool_fan_enabled label"
  671. msgid "Enable Print Cooling"
  672. msgstr "Włącz Chłodzenie Wydruku"
  673. msgctxt "ppr_enable label"
  674. msgid "Enable Print Process Reporting"
  675. msgstr ""
  676. msgctxt "retraction_enable label"
  677. msgid "Enable Retraction"
  678. msgstr "Włącz Retrakcję"
  679. msgctxt "support_brim_enable label"
  680. msgid "Enable Support Brim"
  681. msgstr "Włącz Obrys Podpór"
  682. msgctxt "support_bottom_enable label"
  683. msgid "Enable Support Floor"
  684. msgstr "Włącz Podłoże Podpory"
  685. msgctxt "support_interface_enable label"
  686. msgid "Enable Support Interface"
  687. msgstr "Włącz Połączenie Podpory"
  688. msgctxt "support_roof_enable label"
  689. msgid "Enable Support Roof"
  690. msgstr "Włącz Dach Podpory"
  691. msgctxt "acceleration_travel_enabled label"
  692. msgid "Enable Travel Acceleration"
  693. msgstr ""
  694. msgctxt "jerk_travel_enabled label"
  695. msgid "Enable Travel Jerk"
  696. msgstr ""
  697. msgctxt "ooze_shield_enabled description"
  698. msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle."
  699. msgstr "Włączyć zewnętrzną osłonę. Powstanie powłoka wokół modelu, która będzie czyściła drugą dyszę, jeśli jest na tej samej wysokości, co pierwsza dysza."
  700. msgctxt "ppr_enable description"
  701. msgid "Enable print process reporting for setting threshold values for possible fault detection."
  702. msgstr ""
  703. msgctxt "small_skin_on_surface description"
  704. msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern."
  705. msgstr ""
  706. msgctxt "jerk_enabled description"
  707. msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality."
  708. msgstr "Umożliwia dostosowanie zwrywu głowicy w przypadku zmiany prędkości w osi X lub Y. Zwiększenie zrywu może skrócić czas drukowania kosztem jakości druku."
  709. msgctxt "acceleration_enabled description"
  710. msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality."
  711. msgstr "Umożliwia regulację przyspieszenia głowicy drukującej. Wzrost przyspieszeń może skrócić czas drukowania kosztem jakości druku."
  712. msgctxt "cool_fan_enabled description"
  713. msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs."
  714. msgstr "Włącza wentylatory chłodzące wydruk. Wentylatory poprawiają jakość wydruku na warstwach o krótkim czasie druku warstwy i mostów/zwisów."
  715. msgctxt "machine_end_gcode label"
  716. msgid "End G-code"
  717. msgstr "Końcowy G-code"
  718. msgctxt "material_end_of_filament_purge_length label"
  719. msgid "End of Filament Purge Length"
  720. msgstr ""
  721. msgctxt "material_end_of_filament_purge_speed label"
  722. msgid "End of Filament Purge Speed"
  723. msgstr ""
  724. msgctxt "brim_replaces_support description"
  725. msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions."
  726. msgstr "Wymuś drukowanie obrysu wokół modelu, nawet jeśli powierzchnia byłaby zajęta przez podpory. Zastępuje obszary podpór przez obrys. Dotyczy pierwszej warstwy."
  727. msgctxt "brim_location option everywhere"
  728. msgid "Everywhere"
  729. msgstr ""
  730. msgctxt "support_type option everywhere"
  731. msgid "Everywhere"
  732. msgstr "Wszędzie"
  733. msgctxt "slicing_tolerance option exclusive"
  734. msgid "Exclusive"
  735. msgstr "Wyłącznie"
  736. msgctxt "experimental label"
  737. msgid "Experimental"
  738. msgstr "Eksperymentalne"
  739. msgctxt "z_seam_corner option z_seam_corner_outer"
  740. msgid "Expose Seam"
  741. msgstr "Pokaż Szew"
  742. msgctxt "meshfix_extensive_stitching label"
  743. msgid "Extensive Stitching"
  744. msgstr "Poszerzające Zszywanie"
  745. msgctxt "meshfix_extensive_stitching description"
  746. msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time."
  747. msgstr "Szerokie szwy próbują zszywać otwarte otwory w siatce przez zamknięcie otworów stykającymi się wielokątami. Ta opcja może znacznie wydłużyć czas przetwarzania."
  748. msgctxt "infill_wall_line_count label"
  749. msgid "Extra Infill Wall Count"
  750. msgstr "Ilość Dodatkowych Ścianek Wypełnienia"
  751. msgctxt "skin_outline_count label"
  752. msgid "Extra Skin Wall Count"
  753. msgstr "Liczba Dod. Ścian na Skórze"
  754. msgctxt "switch_extruder_extra_prime_amount description"
  755. msgid "Extra material to prime after nozzle switching."
  756. msgstr "Ilość dodatkowego materiału do podania po zmianie dyszy."
  757. msgctxt "extruder_prime_pos_x label"
  758. msgid "Extruder Prime X Position"
  759. msgstr "Pozycja X Czyszczenia Dyszy"
  760. msgctxt "extruder_prime_pos_y label"
  761. msgid "Extruder Prime Y Position"
  762. msgstr "Pozycja Y Czyszczenia Dyszy"
  763. msgctxt "extruder_prime_pos_z label"
  764. msgid "Extruder Prime Z Position"
  765. msgstr "Pozycja Z Czyszczenia Dyszy"
  766. msgctxt "machine_extruders_share_heater label"
  767. msgid "Extruders Share Heater"
  768. msgstr ""
  769. msgctxt "machine_extruders_share_nozzle label"
  770. msgid "Extruders Share Nozzle"
  771. msgstr ""
  772. msgctxt "material_extrusion_cool_down_speed label"
  773. msgid "Extrusion Cool Down Speed Modifier"
  774. msgstr "Współczynnik chłodz. podczas Ekstruzji"
  775. msgctxt "speed_equalize_flow_width_factor description"
  776. msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines."
  777. msgstr ""
  778. msgctxt "cool_fan_speed label"
  779. msgid "Fan Speed"
  780. msgstr "Prędkość Wentylatora"
  781. msgctxt "support_fan_enable label"
  782. msgid "Fan Speed Override"
  783. msgstr "Nadpisanie Prędkości Wentylatora"
  784. msgctxt "small_feature_max_length description"
  785. msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed."
  786. msgstr "Kontury obiektów, które są krótsze niż podana długość, zostaną wydrukowane przy użyciu funkcji małej prędkości."
  787. msgctxt "experimental description"
  788. msgid "Features that haven't completely been fleshed out yet."
  789. msgstr ""
  790. msgctxt "machine_feeder_wheel_diameter label"
  791. msgid "Feeder Wheel Diameter"
  792. msgstr "Średnica Koła Podajnika"
  793. msgctxt "material_final_print_temperature label"
  794. msgid "Final Printing Temperature"
  795. msgstr "Końcowa Temp. Druku"
  796. msgctxt "machine_firmware_retract label"
  797. msgid "Firmware Retraction"
  798. msgstr "Retrakcja Programowa"
  799. msgctxt "support_extruder_nr_layer_0 label"
  800. msgid "First Layer Support Extruder"
  801. msgstr "Ekstruder Pierwszej Warstwy Podpory"
  802. msgctxt "material_flow label"
  803. msgid "Flow"
  804. msgstr "Przepływ"
  805. msgctxt "speed_equalize_flow_width_factor label"
  806. msgid "Flow Equalization Ratio"
  807. msgstr ""
  808. msgctxt "flow_anomaly_limit label"
  809. msgid "Flow Limit"
  810. msgstr ""
  811. msgctxt "flow_rate_extrusion_offset_factor label"
  812. msgid "Flow Rate Compensation Factor"
  813. msgstr "Współczynnik kompensacji przepływu"
  814. msgctxt "flow_rate_max_extrusion_offset label"
  815. msgid "Flow Rate Compensation Max Extrusion Offset"
  816. msgstr "Maksymalna kompensowania przepływu"
  817. msgctxt "material_flow_temp_graph label"
  818. msgid "Flow Temperature Graph"
  819. msgstr "Wykres Temp. Przepływu"
  820. msgctxt "flow_warn_limit label"
  821. msgid "Flow Warning"
  822. msgstr ""
  823. msgctxt "material_flow_layer_0 description"
  824. msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value."
  825. msgstr "Kompensacja przepływu dla pierwszej warstwy: ilość materiału ekstrudowanego na pierwszej warstwie jest mnożona przez tę wartość."
  826. msgctxt "skin_material_flow_layer_0 description"
  827. msgid "Flow compensation on bottom lines of the first layer"
  828. msgstr ""
  829. msgctxt "infill_material_flow description"
  830. msgid "Flow compensation on infill lines."
  831. msgstr "Ustawienie przepływu wypełnienia."
  832. msgctxt "support_interface_material_flow description"
  833. msgid "Flow compensation on lines of support roof or floor."
  834. msgstr "Ustawienie przepływu podłoża podpór."
  835. msgctxt "roofing_material_flow description"
  836. msgid "Flow compensation on lines of the areas at the top of the print."
  837. msgstr "Ustawienie przepływu na ostatniej warstwie górnej."
  838. msgctxt "prime_tower_flow description"
  839. msgid "Flow compensation on prime tower lines."
  840. msgstr "Przepływ linii wieży podporowej."
  841. msgctxt "skirt_brim_material_flow description"
  842. msgid "Flow compensation on skirt or brim lines."
  843. msgstr "Ustawienie przepływu warstwy adhezyjnej."
  844. msgctxt "support_bottom_material_flow description"
  845. msgid "Flow compensation on support floor lines."
  846. msgstr "Ustawienie przepływu pierwszej warstwy podpór."
  847. msgctxt "support_roof_material_flow description"
  848. msgid "Flow compensation on support roof lines."
  849. msgstr "Ustawienie przepływu podłoża ostatniej warstwy podpór."
  850. msgctxt "support_material_flow description"
  851. msgid "Flow compensation on support structure lines."
  852. msgstr "Ustawienie przepływu podpór."
  853. msgctxt "wall_0_material_flow_layer_0 description"
  854. msgid "Flow compensation on the outermost wall line of the first layer."
  855. msgstr ""
  856. msgctxt "wall_0_material_flow description"
  857. msgid "Flow compensation on the outermost wall line."
  858. msgstr "Ustawienie przepływu na liniach ścianek zewnętrznych."
  859. msgctxt "wall_0_material_flow_roofing description"
  860. msgid "Flow compensation on the top surface outermost wall line."
  861. msgstr "Kompensacja przepływu na najbardziej zewnętrznej linii górnej powierzchni."
  862. msgctxt "wall_x_material_flow_roofing description"
  863. msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one."
  864. msgstr "Kompensacja przepływu na liniach ściany na powierzchni górnej dla wszystkich linii ściany, z wyjątkiem najbardziej zewnętrznej."
  865. msgctxt "skin_material_flow description"
  866. msgid "Flow compensation on top/bottom lines."
  867. msgstr "Ustawienie przepływu na warstwie górnej i dolnej."
  868. msgctxt "wall_x_material_flow_layer_0 description"
  869. msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer"
  870. msgstr ""
  871. msgctxt "wall_x_material_flow description"
  872. msgid "Flow compensation on wall lines for all wall lines except the outermost one."
  873. msgstr "Ustawienie przepływu na liniach ścianek wewnętrznych."
  874. msgctxt "wall_material_flow description"
  875. msgid "Flow compensation on wall lines."
  876. msgstr "Ustawienie przepływu na liniach ścianek."
  877. msgctxt "material_flow description"
  878. msgid "Flow compensation: the amount of material extruded is multiplied by this value."
  879. msgstr "Kompensacja przepływu: ilość ekstrudowanego materiału jest mnożona przez tę wartość."
  880. msgctxt "meshfix_fluid_motion_angle label"
  881. msgid "Fluid Motion Angle"
  882. msgstr ""
  883. msgctxt "meshfix_fluid_motion_shift_distance label"
  884. msgid "Fluid Motion Shift Distance"
  885. msgstr ""
  886. msgctxt "meshfix_fluid_motion_small_distance label"
  887. msgid "Fluid Motion Small Distance"
  888. msgstr ""
  889. msgctxt "material_flush_purge_length label"
  890. msgid "Flush Purge Length"
  891. msgstr ""
  892. msgctxt "material_flush_purge_speed label"
  893. msgid "Flush Purge Speed"
  894. msgstr ""
  895. msgctxt "min_wall_line_width description"
  896. msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width."
  897. msgstr ""
  898. msgctxt "z_seam_position option front"
  899. msgid "Front"
  900. msgstr "Przód"
  901. msgctxt "z_seam_position option frontleft"
  902. msgid "Front Left"
  903. msgstr "Lewy przód"
  904. msgctxt "z_seam_position option frontright"
  905. msgid "Front Right"
  906. msgstr "Prawy przód"
  907. msgctxt "draft_shield_height_limitation option full"
  908. msgid "Full"
  909. msgstr "Pełna"
  910. msgctxt "magic_fuzzy_skin_enabled label"
  911. msgid "Fuzzy Skin"
  912. msgstr "Nierówna Skóra"
  913. msgctxt "magic_fuzzy_skin_point_density label"
  914. msgid "Fuzzy Skin Density"
  915. msgstr "Gęstość Nierównej Skóry"
  916. msgctxt "magic_fuzzy_skin_outside_only label"
  917. msgid "Fuzzy Skin Outside Only"
  918. msgstr ""
  919. msgctxt "magic_fuzzy_skin_point_dist label"
  920. msgid "Fuzzy Skin Point Distance"
  921. msgstr "Odległ. między Punkt. Nierównej Skóry"
  922. msgctxt "magic_fuzzy_skin_thickness label"
  923. msgid "Fuzzy Skin Thickness"
  924. msgstr "Grubości Nierównej Skóry"
  925. msgctxt "machine_gcode_flavor label"
  926. msgid "G-code Flavor"
  927. msgstr "Smak G-code"
  928. msgctxt "machine_end_gcode description"
  929. msgid ""
  930. "G-code commands to be executed at the very end - separated by \n"
  931. "."
  932. msgstr ""
  933. "Polecenia G-code, które są wykonywane na samym końcu - oddzielone za pomocą \n"
  934. "."
  935. msgctxt "machine_start_gcode description"
  936. msgid ""
  937. "G-code commands to be executed at the very start - separated by \n"
  938. "."
  939. msgstr ""
  940. "Polecenia G-code, które są wykonywane na samym początku - oddzielone za pomocą \n"
  941. "."
  942. msgctxt "material_guid description"
  943. msgid "GUID of the material. This is set automatically."
  944. msgstr ""
  945. msgctxt "gantry_height label"
  946. msgid "Gantry Height"
  947. msgstr "Wysokość wózka"
  948. msgctxt "interlocking_enable label"
  949. msgid "Generate Interlocking Structure"
  950. msgstr ""
  951. msgctxt "support_enable label"
  952. msgid "Generate Support"
  953. msgstr "Generuj Podpory"
  954. msgctxt "support_brim_enable description"
  955. msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate."
  956. msgstr "Generuj obrys w obszarach wypełnienia podpory pierwszej warstwy. Obrys jest drukowany pod podporą, a nie wokół. Włączenie tej opcji zwiększa przyczepność podpór do stołu."
  957. msgctxt "support_interface_enable description"
  958. msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model."
  959. msgstr "Generuje szczelne połączenie pomiędzy modelem a podporą. Tworzy to skórę na górnej części podpory, na której model jest drukowany i na spodzie, gdzie podpora spoczywa na modelu."
  960. msgctxt "support_bottom_enable description"
  961. msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support."
  962. msgstr "Generuj gęstą warstwę materiału pomiędzy spodem podpory a modelem. Tworzy to skórę pomiędzy modelem a podporą."
  963. msgctxt "support_roof_enable description"
  964. msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support."
  965. msgstr "Wytwórz gęstą płytę materiału pomiędzy wierzchołkiem podpory a modelem. Powoduje to powstanie skóry między modelem a podporą."
  966. msgctxt "support_enable description"
  967. msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing."
  968. msgstr "Generuj struktury wspierające części modelu, które zwisają. Bez tych struktur takie części mogłyby spaść podczas drukowania."
  969. msgctxt "machine_buildplate_type option glass"
  970. msgid "Glass"
  971. msgstr "Szkło"
  972. msgctxt "ironing_enabled description"
  973. msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material."
  974. msgstr "Ponowne przejście po górnej powierzchni, tym razem wytłaczając bardzo mało materiału. Ma to na celu lepsze stopienie tworzywa na wierzchu, tworząc gładsze wykończenie. Ciśnienie w dyszy jest utrzymywane na wysokim poziomie, aby szczeliny na powierzchni były wypełnione materiałem."
  975. msgctxt "gradual_infill_step_height label"
  976. msgid "Gradual Infill Step Height"
  977. msgstr "Wysokość Kroku Stopniowego Wypełnienia"
  978. msgctxt "gradual_infill_steps label"
  979. msgid "Gradual Infill Steps"
  980. msgstr "Stopniowe Kroki Wypełnienia"
  981. msgctxt "gradual_support_infill_step_height label"
  982. msgid "Gradual Support Infill Step Height"
  983. msgstr "Wys. Stopnia Stopniowego Wypełn. Podpory"
  984. msgctxt "gradual_support_infill_steps label"
  985. msgid "Gradual Support Infill Steps"
  986. msgstr "Stopnie Stopniowego Wypełn. Podpór"
  987. msgctxt "cool_min_temperature description"
  988. msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time."
  989. msgstr ""
  990. msgctxt "infill_pattern option grid"
  991. msgid "Grid"
  992. msgstr "Kratka"
  993. msgctxt "support_bottom_pattern option grid"
  994. msgid "Grid"
  995. msgstr "Kratka"
  996. msgctxt "support_interface_pattern option grid"
  997. msgid "Grid"
  998. msgstr "Kratka"
  999. msgctxt "support_pattern option grid"
  1000. msgid "Grid"
  1001. msgstr "Kratka"
  1002. msgctxt "support_roof_pattern option grid"
  1003. msgid "Grid"
  1004. msgstr "Kratka"
  1005. msgctxt "machine_gcode_flavor option Griffin"
  1006. msgid "Griffin"
  1007. msgstr "Griffin"
  1008. msgctxt "group_outer_walls label"
  1009. msgid "Group Outer Walls"
  1010. msgstr "Grupuj ściany zewnętrzne"
  1011. msgctxt "infill_pattern option gyroid"
  1012. msgid "Gyroid"
  1013. msgstr "Gyroid"
  1014. msgctxt "support_pattern option gyroid"
  1015. msgid "Gyroid"
  1016. msgstr "Gyroid"
  1017. msgctxt "machine_heated_build_volume label"
  1018. msgid "Has Build Volume Temperature Stabilization"
  1019. msgstr "Posiada komorę stabilizacji temperatury"
  1020. msgctxt "machine_heated_bed label"
  1021. msgid "Has Heated Build Plate"
  1022. msgstr "Posiada Podgrzewany Stół"
  1023. msgctxt "machine_nozzle_heat_up_speed label"
  1024. msgid "Heat Up Speed"
  1025. msgstr "Prędkość nagrzewania"
  1026. msgctxt "machine_heat_zone_length label"
  1027. msgid "Heat Zone Length"
  1028. msgstr "Długość strefy cieplnej"
  1029. msgctxt "draft_shield_height description"
  1030. msgid "Height limitation of the draft shield. Above this height no draft shield will be printed."
  1031. msgstr "Ograniczenie wysokości osłony przeciwwiatrowej. Powyżej tej wysokości nie będzie drukowana żadna osłona."
  1032. msgctxt "z_seam_corner option z_seam_corner_inner"
  1033. msgid "Hide Seam"
  1034. msgstr "Ukryj Szew"
  1035. msgctxt "z_seam_corner option z_seam_corner_any"
  1036. msgid "Hide or Expose Seam"
  1037. msgstr "Ukryj lub Pokaż Szew"
  1038. msgctxt "hole_xy_offset label"
  1039. msgid "Hole Horizontal Expansion"
  1040. msgstr ""
  1041. msgctxt "hole_xy_offset_max_diameter label"
  1042. msgid "Hole Horizontal Expansion Max Diameter"
  1043. msgstr ""
  1044. msgctxt "small_hole_max_size description"
  1045. msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
  1046. msgstr "Otwory i kontury części o średnicy mniejszej niż podana zostaną wydrukowane przy małej szybkości operacji."
  1047. msgctxt "xy_offset label"
  1048. msgid "Horizontal Expansion"
  1049. msgstr "Poziome Poszerzenie"
  1050. msgctxt "material_shrinkage_percentage_xy label"
  1051. msgid "Horizontal Scaling Factor Shrinkage Compensation"
  1052. msgstr ""
  1053. msgctxt "material_break_preparation_retracted_position description"
  1054. msgid "How far the filament can be stretched before it breaks, while heated."
  1055. msgstr "Jak bardzo filament może być rozciągnięty, zanim pęknie, podczas ogrzewania."
  1056. msgctxt "material_anti_ooze_retracted_position description"
  1057. msgid "How far the material needs to be retracted before it stops oozing."
  1058. msgstr "Jak daleko materiał musi zostać wycofany, aby przestał wyciekać."
  1059. msgctxt "flow_rate_extrusion_offset_factor description"
  1060. msgid "How far to move the filament in order to compensate for changes in flow rate, as a percentage of how far the filament would move in one second of extrusion."
  1061. msgstr "Jak bardzo przesunąć filament, aby skompensować zmiany wielkości przepływu, jako procent odległości, o jaką filament poruszyłby się w ciągu jednej sekundy wytłaczania."
  1062. msgctxt "material_break_retracted_position description"
  1063. msgid "How far to retract the filament in order to break it cleanly."
  1064. msgstr "Jak daleko wycofać filament, aby go złamać na czysto."
  1065. msgctxt "material_break_preparation_speed description"
  1066. msgid "How fast the filament needs to be retracted just before breaking it off in a retraction."
  1067. msgstr "Jak szybko filament musi zostać wycofany, aby pękł podczas cofania."
  1068. msgctxt "material_anti_ooze_retraction_speed description"
  1069. msgid "How fast the material needs to be retracted during a filament switch to prevent oozing."
  1070. msgstr "Jak szybko materiał musi zostać wycofany podczas zmiany filamentu, aby przestał wyciekać."
  1071. msgctxt "material_end_of_filament_purge_speed description"
  1072. msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material."
  1073. msgstr ""
  1074. msgctxt "material_flush_purge_speed description"
  1075. msgid "How fast to prime the material after switching to a different material."
  1076. msgstr ""
  1077. msgctxt "material_maximum_park_duration description"
  1078. msgid "How long the material can be kept out of dry storage safely."
  1079. msgstr ""
  1080. msgctxt "machine_steps_per_mm_x description"
  1081. msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction."
  1082. msgstr "Ile kroków silnika krokowego będzie skutkowało ruchem o 1mm w osi X."
  1083. msgctxt "machine_steps_per_mm_y description"
  1084. msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction."
  1085. msgstr "Ile kroków silnika krokowego będzie skutkowało ruchem o 1mm w osi Y."
  1086. msgctxt "machine_steps_per_mm_z description"
  1087. msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction."
  1088. msgstr "Ile kroków silnika krokowego będzie skutkowało ruchem o 1mm w osi Z."
  1089. msgctxt "machine_steps_per_mm_e description"
  1090. msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference."
  1091. msgstr ""
  1092. msgctxt "material_end_of_filament_purge_length description"
  1093. msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material."
  1094. msgstr ""
  1095. msgctxt "material_flush_purge_length description"
  1096. msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material."
  1097. msgstr ""
  1098. msgctxt "machine_extruders_shared_nozzle_initial_retraction description"
  1099. msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts."
  1100. msgstr ""
  1101. msgctxt "support_interface_priority description"
  1102. msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof."
  1103. msgstr ""
  1104. msgctxt "support_tree_min_height_to_model description"
  1105. msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof."
  1106. msgstr ""
  1107. msgctxt "bridge_skin_support_threshold description"
  1108. msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings."
  1109. msgstr "Jeśli obszar skóry jest podpierany w mniejszym procencie jego powierzchni, drukuj to według ustawień mostu. W przeciwnym wypadku użyj normalnych ustawień skóry."
  1110. msgctxt "meshfix_fluid_motion_angle description"
  1111. msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed."
  1112. msgstr ""
  1113. msgctxt "bridge_enable_more_layers description"
  1114. msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings."
  1115. msgstr "Jeśli włączone, druga i trzecia warstwa ponad powietrzem są drukowane używając następujących ustawień. W przeciwnym wypadku te warstwy są drukowane z normalnymi ustawieniami."
  1116. msgctxt "wall_transition_filter_distance description"
  1117. msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance."
  1118. msgstr ""
  1119. msgctxt "raft_base_margin description"
  1120. msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print."
  1121. msgstr ""
  1122. msgctxt "raft_margin description"
  1123. msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print."
  1124. msgstr "Jeśli tratwa jest włączona, jest to dodatkowy obszar tratwy wokół modelu, który ma również tratwę. Zwiększenie marginesu wzmocni tratwę przy wykorzystaniu z większej ilości materiału i pozostawi mniej miejsca na wydruk."
  1125. msgctxt "raft_interface_margin description"
  1126. msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print."
  1127. msgstr ""
  1128. msgctxt "raft_surface_margin description"
  1129. msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print."
  1130. msgstr ""
  1131. msgctxt "meshfix_union_all description"
  1132. msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear."
  1133. msgstr "Zignoruj geometrię wewnętrzną wynikającą z nakładania się brył w siatce i wydrukuj ją jako jedną. Może to spowodować zniknięcie niezamierzonych wewnętrznych ubytków."
  1134. msgctxt "material_bed_temp_prepend label"
  1135. msgid "Include Build Plate Temperature"
  1136. msgstr "Załącz Temperaturę Stołu"
  1137. msgctxt "material_print_temp_prepend label"
  1138. msgid "Include Material Temperatures"
  1139. msgstr "Załącz Temperaturę Materiału"
  1140. msgctxt "slicing_tolerance option inclusive"
  1141. msgid "Inclusive"
  1142. msgstr "Włącznie"
  1143. msgctxt "infill description"
  1144. msgid "Infill"
  1145. msgstr "Wypełnienie"
  1146. msgctxt "infill label"
  1147. msgid "Infill"
  1148. msgstr "Wypełnienie"
  1149. msgctxt "acceleration_infill label"
  1150. msgid "Infill Acceleration"
  1151. msgstr "Przyspieszenie Wypełnienia"
  1152. msgctxt "infill_before_walls label"
  1153. msgid "Infill Before Walls"
  1154. msgstr "Wypełn. przed Ścianami"
  1155. msgctxt "infill_sparse_density label"
  1156. msgid "Infill Density"
  1157. msgstr "Gęstość Wypełnnienia"
  1158. msgctxt "infill_extruder_nr label"
  1159. msgid "Infill Extruder"
  1160. msgstr "Ekstruder Wypełnienia"
  1161. msgctxt "infill_material_flow label"
  1162. msgid "Infill Flow"
  1163. msgstr "Przepływ wypełnienia"
  1164. msgctxt "jerk_infill label"
  1165. msgid "Infill Jerk"
  1166. msgstr "Zryw Wypełnienie"
  1167. msgctxt "infill_sparse_thickness label"
  1168. msgid "Infill Layer Thickness"
  1169. msgstr "Grubość Warstwy Wypełnienia"
  1170. msgctxt "infill_angles label"
  1171. msgid "Infill Line Directions"
  1172. msgstr "Kierunek Linii Wypełnienia"
  1173. msgctxt "infill_line_distance label"
  1174. msgid "Infill Line Distance"
  1175. msgstr "Odstęp Linii Wypełnienia"
  1176. msgctxt "infill_multiplier label"
  1177. msgid "Infill Line Multiplier"
  1178. msgstr "Mnożnik Linii Wypełnienia"
  1179. msgctxt "infill_line_width label"
  1180. msgid "Infill Line Width"
  1181. msgstr "Szerokość Linii Wypełnienia"
  1182. msgctxt "infill_mesh label"
  1183. msgid "Infill Mesh"
  1184. msgstr "Siatka Wypełnienia"
  1185. msgctxt "infill_support_angle label"
  1186. msgid "Infill Overhang Angle"
  1187. msgstr "Kąt Zwisu dla Wypełnienia"
  1188. msgctxt "infill_overlap_mm label"
  1189. msgid "Infill Overlap"
  1190. msgstr "Zachodzenie Wypełnienia"
  1191. msgctxt "infill_overlap label"
  1192. msgid "Infill Overlap Percentage"
  1193. msgstr "Procent Zachodzenia Wypełnienia"
  1194. msgctxt "infill_pattern label"
  1195. msgid "Infill Pattern"
  1196. msgstr "Wzorzec Wypełnienia"
  1197. msgctxt "speed_infill label"
  1198. msgid "Infill Speed"
  1199. msgstr "Prędkość Wypełnienia"
  1200. msgctxt "infill_support_enabled label"
  1201. msgid "Infill Support"
  1202. msgstr "Wypełnienie Podporowe"
  1203. msgctxt "infill_enable_travel_optimization label"
  1204. msgid "Infill Travel Optimization"
  1205. msgstr "Optymalizacja Ruchów Jałowych Wypełnienia"
  1206. msgctxt "infill_wipe_dist label"
  1207. msgid "Infill Wipe Distance"
  1208. msgstr "Długość Czyszczenia Wypełnienia"
  1209. msgctxt "infill_offset_x label"
  1210. msgid "Infill X Offset"
  1211. msgstr "Przesunięcie Wypełn. w Osi X"
  1212. msgctxt "infill_offset_y label"
  1213. msgid "Infill Y Offset"
  1214. msgstr "Przesunięcie Wypełn. w Osi Y"
  1215. msgctxt "initial_bottom_layers label"
  1216. msgid "Initial Bottom Layers"
  1217. msgstr "Początkowej warstwy dolne"
  1218. msgctxt "cool_fan_speed_0 label"
  1219. msgid "Initial Fan Speed"
  1220. msgstr "Początkowa Prędk. Wentylatora"
  1221. msgctxt "acceleration_layer_0 label"
  1222. msgid "Initial Layer Acceleration"
  1223. msgstr "Pierwsza warstwa przyspieszenie"
  1224. msgctxt "skin_material_flow_layer_0 label"
  1225. msgid "Initial Layer Bottom Flow"
  1226. msgstr ""
  1227. msgctxt "support_tree_bp_diameter label"
  1228. msgid "Initial Layer Diameter"
  1229. msgstr ""
  1230. msgctxt "material_flow_layer_0 label"
  1231. msgid "Initial Layer Flow"
  1232. msgstr "Przepływ Pierwszej Warstwy"
  1233. msgctxt "layer_height_0 label"
  1234. msgid "Initial Layer Height"
  1235. msgstr "Wys. Początkowej Warstwy"
  1236. msgctxt "xy_offset_layer_0 label"
  1237. msgid "Initial Layer Horizontal Expansion"
  1238. msgstr "Poziome Poszerzenie Początk. Warstwy"
  1239. msgctxt "wall_x_material_flow_layer_0 label"
  1240. msgid "Initial Layer Inner Wall Flow"
  1241. msgstr ""
  1242. msgctxt "jerk_layer_0 label"
  1243. msgid "Initial Layer Jerk"
  1244. msgstr "Zryw Pierwsz. Warstwa"
  1245. msgctxt "initial_layer_line_width_factor label"
  1246. msgid "Initial Layer Line Width"
  1247. msgstr "Szerokość Linii Początk. Warstwy"
  1248. msgctxt "wall_0_material_flow_layer_0 label"
  1249. msgid "Initial Layer Outer Wall Flow"
  1250. msgstr ""
  1251. msgctxt "acceleration_print_layer_0 label"
  1252. msgid "Initial Layer Print Acceleration"
  1253. msgstr "Przysp. Druku 1. Warstwy"
  1254. msgctxt "jerk_print_layer_0 label"
  1255. msgid "Initial Layer Print Jerk"
  1256. msgstr "Zryw Początk. Warstwy"
  1257. msgctxt "speed_print_layer_0 label"
  1258. msgid "Initial Layer Print Speed"
  1259. msgstr "Prędk. Druku Początk. Warstwy"
  1260. msgctxt "speed_layer_0 label"
  1261. msgid "Initial Layer Speed"
  1262. msgstr "Prędk. Początk. Warstwy"
  1263. msgctxt "support_initial_layer_line_distance label"
  1264. msgid "Initial Layer Support Line Distance"
  1265. msgstr "Odstęp Między Liniami Podpory w Pocz. Warstwie"
  1266. msgctxt "acceleration_travel_layer_0 label"
  1267. msgid "Initial Layer Travel Acceleration"
  1268. msgstr "Przyspieszenie Ruchu Jał. 1. Warstwa"
  1269. msgctxt "jerk_travel_layer_0 label"
  1270. msgid "Initial Layer Travel Jerk"
  1271. msgstr "Zryw Początk. Wartswa"
  1272. msgctxt "speed_travel_layer_0 label"
  1273. msgid "Initial Layer Travel Speed"
  1274. msgstr "Prędk. Ruchów Jał. na 1. Warstwie"
  1275. msgctxt "layer_0_z_overlap label"
  1276. msgid "Initial Layer Z Overlap"
  1277. msgstr "Pokryw. się Pierwsz. Warstwy w Z"
  1278. msgctxt "material_initial_print_temperature label"
  1279. msgid "Initial Printing Temperature"
  1280. msgstr "Początkowa Temp. Druku"
  1281. msgctxt "acceleration_wall_x label"
  1282. msgid "Inner Wall Acceleration"
  1283. msgstr "Przyspieszenie Ściany Wew"
  1284. msgctxt "wall_x_extruder_nr label"
  1285. msgid "Inner Wall Extruder"
  1286. msgstr "Ekstruder Wew. Linii"
  1287. msgctxt "jerk_wall_x label"
  1288. msgid "Inner Wall Jerk"
  1289. msgstr "Zryw Wew. Ścian"
  1290. msgctxt "speed_wall_x label"
  1291. msgid "Inner Wall Speed"
  1292. msgstr "Prędkość Wew. Ściany"
  1293. msgctxt "wall_x_material_flow label"
  1294. msgid "Inner Wall(s) Flow"
  1295. msgstr "Przepływu ścianek wewnętrznych"
  1296. msgctxt "wall_line_width_x label"
  1297. msgid "Inner Wall(s) Line Width"
  1298. msgstr "Szerokość Linii Ścian(y) Wewnętnych"
  1299. msgctxt "wall_0_inset description"
  1300. msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model."
  1301. msgstr "Wkład nałożony na ścieżkę zewnętrznej ściany. Jeśli zewnętrzna ścianka jest mniejsza niż dysza i jest drukowana po wewnętrznych ściankach, użyj tego przesunięcia, aby uzyskać otwór w dyszy, żeby nakładała się z wewnętrzną ścianą zamiast być na zewnątrz modelu."
  1302. msgctxt "brim_location option inside"
  1303. msgid "Inside Only"
  1304. msgstr ""
  1305. msgctxt "inset_direction option inside_out"
  1306. msgid "Inside To Outside"
  1307. msgstr ""
  1308. msgctxt "support_interface_priority option interface_lines_overwrite_support_area"
  1309. msgid "Interface lines preferred"
  1310. msgstr ""
  1311. msgctxt "support_interface_priority option interface_area_overwrite_support_area"
  1312. msgid "Interface preferred"
  1313. msgstr ""
  1314. msgctxt "prime_tower_mode option interleaved"
  1315. msgid "Interleaved"
  1316. msgstr ""
  1317. msgctxt "interlocking_beam_layer_count label"
  1318. msgid "Interlocking Beam Layer Count"
  1319. msgstr ""
  1320. msgctxt "interlocking_beam_width label"
  1321. msgid "Interlocking Beam Width"
  1322. msgstr ""
  1323. msgctxt "interlocking_boundary_avoidance label"
  1324. msgid "Interlocking Boundary Avoidance"
  1325. msgstr ""
  1326. msgctxt "interlocking_depth label"
  1327. msgid "Interlocking Depth"
  1328. msgstr ""
  1329. msgctxt "interlocking_orientation label"
  1330. msgid "Interlocking Structure Orientation"
  1331. msgstr ""
  1332. msgctxt "ironing_only_highest_layer label"
  1333. msgid "Iron Only Highest Layer"
  1334. msgstr "Prasuj Tylko Najwyższą Warstwę"
  1335. msgctxt "acceleration_ironing label"
  1336. msgid "Ironing Acceleration"
  1337. msgstr "Przyspieszenie Prasowania"
  1338. msgctxt "ironing_flow label"
  1339. msgid "Ironing Flow"
  1340. msgstr "Przepływ Prasowania"
  1341. msgctxt "ironing_inset label"
  1342. msgid "Ironing Inset"
  1343. msgstr "Margines Prasowania"
  1344. msgctxt "jerk_ironing label"
  1345. msgid "Ironing Jerk"
  1346. msgstr "Zryw Prasowania"
  1347. msgctxt "ironing_line_spacing label"
  1348. msgid "Ironing Line Spacing"
  1349. msgstr "Przerwy Linii Prasowania"
  1350. msgctxt "ironing_pattern label"
  1351. msgid "Ironing Pattern"
  1352. msgstr "Wzór Prasowania"
  1353. msgctxt "speed_ironing label"
  1354. msgid "Ironing Speed"
  1355. msgstr "Prędkość Prasowania"
  1356. msgctxt "machine_center_is_zero label"
  1357. msgid "Is Center Origin"
  1358. msgstr "Środek to Początek"
  1359. msgctxt "material_is_support_material label"
  1360. msgid "Is support material"
  1361. msgstr ""
  1362. msgctxt "material_crystallinity description"
  1363. msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?"
  1364. msgstr "Czy ten rodzaj materiału odłamuje się łatwo po podgrzaniu (krystaliczny), czy też jest to tworzywo, które wytwarza długie splecione łańcuchy polimerowe (niekrystaliczne)?"
  1365. msgctxt "material_is_support_material description"
  1366. msgid "Is this material typically used as a support material during printing."
  1367. msgstr ""
  1368. msgctxt "magic_fuzzy_skin_outside_only description"
  1369. msgid "Jitter only the parts' outlines and not the parts' holes."
  1370. msgstr ""
  1371. msgctxt "meshfix_keep_open_polygons label"
  1372. msgid "Keep Disconnected Faces"
  1373. msgstr "Zachowaj Rozłączone Powierzchnie"
  1374. msgctxt "layer_height label"
  1375. msgid "Layer Height"
  1376. msgstr "Wysokość Warstwy"
  1377. msgctxt "layer_start_x label"
  1378. msgid "Layer Start X"
  1379. msgstr "Początek Warstwy X"
  1380. msgctxt "layer_start_y label"
  1381. msgid "Layer Start Y"
  1382. msgstr "Początek Warstwy Y"
  1383. msgctxt "raft_base_thickness description"
  1384. msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate."
  1385. msgstr "Grubość podstawowej warstwy tratwy. Powinna to być gruba warstwa, która mocno przykleja się do stołu drukarki."
  1386. msgctxt "raft_interface_thickness description"
  1387. msgid "Layer thickness of the middle raft layer."
  1388. msgstr "Grubość środkowej warstwy tratwy."
  1389. msgctxt "raft_surface_thickness description"
  1390. msgid "Layer thickness of the top raft layers."
  1391. msgstr "Grubość warstwy górnych warstw tratwy."
  1392. msgctxt "support_skip_zag_per_mm description"
  1393. msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away."
  1394. msgstr "Pomiń połączenie pomiędzy liniami podpory co N milimetrów, aby struktura podpory była łatwiejsza do odłamania."
  1395. msgctxt "z_seam_position option left"
  1396. msgid "Left"
  1397. msgstr "Lewa"
  1398. msgctxt "cool_lift_head label"
  1399. msgid "Lift Head"
  1400. msgstr "Unieś Głowicę"
  1401. msgctxt "infill_pattern option lightning"
  1402. msgid "Lightning"
  1403. msgstr ""
  1404. msgctxt "lightning_infill_overhang_angle label"
  1405. msgid "Lightning Infill Overhang Angle"
  1406. msgstr ""
  1407. msgctxt "lightning_infill_prune_angle label"
  1408. msgid "Lightning Infill Prune Angle"
  1409. msgstr ""
  1410. msgctxt "lightning_infill_straightening_angle label"
  1411. msgid "Lightning Infill Straightening Angle"
  1412. msgstr ""
  1413. msgctxt "lightning_infill_support_angle label"
  1414. msgid "Lightning Infill Support Angle"
  1415. msgstr ""
  1416. msgctxt "support_tree_limit_branch_reach label"
  1417. msgid "Limit Branch Reach"
  1418. msgstr ""
  1419. msgctxt "support_tree_limit_branch_reach description"
  1420. msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)"
  1421. msgstr ""
  1422. msgctxt "bv_temp_warn_limit description"
  1423. msgid "Limit on Build Volume Temperature warning for detection."
  1424. msgstr ""
  1425. msgctxt "bv_temp_anomaly_limit description"
  1426. msgid "Limit on Build Volume temperature Anomaly for detection."
  1427. msgstr ""
  1428. msgctxt "print_temp_anomaly_limit description"
  1429. msgid "Limit on Print Temperature anomaly for detection."
  1430. msgstr ""
  1431. msgctxt "print_temp_warn_limit description"
  1432. msgid "Limit on Print temperature warning for detection."
  1433. msgstr ""
  1434. msgctxt "flow_anomaly_limit description"
  1435. msgid "Limit on flow anomaly for detection."
  1436. msgstr ""
  1437. msgctxt "flow_warn_limit description"
  1438. msgid "Limit on the flow warning for detection."
  1439. msgstr ""
  1440. msgctxt "cutting_mesh description"
  1441. msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder."
  1442. msgstr "Potnij siatkę na części. Możesz to zrobić, aby stworzyć określone miejsca w jednej siatce, które będą drukowane z innymi ustawieniami, a nawet innym ekstruderem."
  1443. msgctxt "draft_shield_height_limitation option limited"
  1444. msgid "Limited"
  1445. msgstr "Ograniczona"
  1446. msgctxt "line_width label"
  1447. msgid "Line Width"
  1448. msgstr "Szerokość Linii"
  1449. msgctxt "infill_pattern option lines"
  1450. msgid "Lines"
  1451. msgstr "Linie"
  1452. msgctxt "roofing_pattern option lines"
  1453. msgid "Lines"
  1454. msgstr "Linie"
  1455. msgctxt "support_bottom_pattern option lines"
  1456. msgid "Lines"
  1457. msgstr "Linie"
  1458. msgctxt "support_interface_pattern option lines"
  1459. msgid "Lines"
  1460. msgstr "Linie"
  1461. msgctxt "support_pattern option lines"
  1462. msgid "Lines"
  1463. msgstr "Linie"
  1464. msgctxt "support_roof_pattern option lines"
  1465. msgid "Lines"
  1466. msgstr "Linie"
  1467. msgctxt "top_bottom_pattern option lines"
  1468. msgid "Lines"
  1469. msgstr "Linie"
  1470. msgctxt "top_bottom_pattern_0 option lines"
  1471. msgid "Lines"
  1472. msgstr "Linie"
  1473. msgctxt "machine_gcode_flavor option MACH3"
  1474. msgid "Mach3"
  1475. msgstr "Mach3"
  1476. msgctxt "machine_settings label"
  1477. msgid "Machine"
  1478. msgstr "Drukarka"
  1479. msgctxt "machine_depth label"
  1480. msgid "Machine Depth"
  1481. msgstr "Głębokość Maszyny"
  1482. msgctxt "machine_head_with_fans_polygon label"
  1483. msgid "Machine Head & Fan Polygon"
  1484. msgstr "Obszar głowicy i wentylatora drukarki"
  1485. msgctxt "machine_height label"
  1486. msgid "Machine Height"
  1487. msgstr "Wysokość Maszyny"
  1488. msgctxt "machine_name label"
  1489. msgid "Machine Type"
  1490. msgstr "Typ drukarki"
  1491. msgctxt "machine_width label"
  1492. msgid "Machine Width"
  1493. msgstr "Szerokość Maszyny"
  1494. msgctxt "machine_settings description"
  1495. msgid "Machine specific settings"
  1496. msgstr "Specyficzne ustawienia drukarki"
  1497. msgctxt "conical_overhang_enabled label"
  1498. msgid "Make Overhang Printable"
  1499. msgstr "Drukowalne Zwisy"
  1500. msgctxt "multiple_mesh_overlap description"
  1501. msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better."
  1502. msgstr "Spowoduj, że siatki, które się dotykają będą na siebie trochę nachodzić. To sprawia, że lepiej się łączą."
  1503. msgctxt "support_conical_enabled description"
  1504. msgid "Make support areas smaller at the bottom than at the overhang."
  1505. msgstr "Zmniejsz obszary podparcia na podłożu pod zwisem."
  1506. msgctxt "support_mesh_drop_down description"
  1507. msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh."
  1508. msgstr "Twórz podpory wszędzie pod siatką podpory, tak aby nie było zwisu w siatce podpory."
  1509. msgctxt "extruder_prime_pos_abs description"
  1510. msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head."
  1511. msgstr "Zmień pozycję końcową ekstrudera na bezwzględną, zamiast względem ostatniej pozycji głowicy."
  1512. msgctxt "layer_0_z_overlap description"
  1513. msgid ""
  1514. "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\n"
  1515. "It may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior"
  1516. msgstr ""
  1517. msgctxt "meshfix description"
  1518. msgid "Make the meshes more suited for 3D printing."
  1519. msgstr ""
  1520. msgctxt "machine_gcode_flavor option Makerbot"
  1521. msgid "Makerbot"
  1522. msgstr "Makerbot"
  1523. msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)"
  1524. msgid "Marlin"
  1525. msgstr "Marlin"
  1526. msgctxt "machine_gcode_flavor option RepRap (Volumetric)"
  1527. msgid "Marlin (Volumetric)"
  1528. msgstr "Marlin (Objętościowy)"
  1529. msgctxt "material description"
  1530. msgid "Material"
  1531. msgstr "Materiał"
  1532. msgctxt "material label"
  1533. msgid "Material"
  1534. msgstr "Materiał"
  1535. msgctxt "material_brand label"
  1536. msgid "Material Brand"
  1537. msgstr ""
  1538. msgctxt "material_guid label"
  1539. msgid "Material GUID"
  1540. msgstr "GUID Materiału"
  1541. msgctxt "material_type label"
  1542. msgid "Material Type"
  1543. msgstr ""
  1544. msgctxt "max_extrusion_before_wipe label"
  1545. msgid "Material Volume Between Wipes"
  1546. msgstr "Objętość materiału między czyszczeniem"
  1547. msgctxt "retraction_combing_max_distance label"
  1548. msgid "Max Comb Distance With No Retract"
  1549. msgstr "Max. Dystans Kombinowania Bez Retrakcji"
  1550. msgctxt "machine_max_acceleration_x label"
  1551. msgid "Maximum Acceleration X"
  1552. msgstr "Maksymalne Przyspieszenie X"
  1553. msgctxt "machine_max_acceleration_y label"
  1554. msgid "Maximum Acceleration Y"
  1555. msgstr "Maksymalne Przyspieszenie Y"
  1556. msgctxt "machine_max_acceleration_z label"
  1557. msgid "Maximum Acceleration Z"
  1558. msgstr "Maksymalnie Przyspieszenie Z"
  1559. msgctxt "support_tree_angle label"
  1560. msgid "Maximum Branch Angle"
  1561. msgstr ""
  1562. msgctxt "meshfix_maximum_deviation label"
  1563. msgid "Maximum Deviation"
  1564. msgstr "Maksymalne odchylenie"
  1565. msgctxt "meshfix_maximum_extrusion_area_deviation label"
  1566. msgid "Maximum Extrusion Area Deviation"
  1567. msgstr ""
  1568. msgctxt "cool_fan_speed_max label"
  1569. msgid "Maximum Fan Speed"
  1570. msgstr "Maksymalna Pręd. Wentylatora"
  1571. msgctxt "machine_max_acceleration_e label"
  1572. msgid "Maximum Filament Acceleration"
  1573. msgstr "Maksymalna Przysp. Filamentu"
  1574. msgctxt "conical_overhang_angle label"
  1575. msgid "Maximum Model Angle"
  1576. msgstr "Maksymalny Kąt Modelu"
  1577. msgctxt "conical_overhang_hole_size label"
  1578. msgid "Maximum Overhang Hole Area"
  1579. msgstr ""
  1580. msgctxt "material_maximum_park_duration label"
  1581. msgid "Maximum Park Duration"
  1582. msgstr ""
  1583. msgctxt "meshfix_maximum_resolution label"
  1584. msgid "Maximum Resolution"
  1585. msgstr "Maksymalna Rozdzielczość"
  1586. msgctxt "retraction_count_max label"
  1587. msgid "Maximum Retraction Count"
  1588. msgstr "Maksymalna Liczba Retrakcji"
  1589. msgctxt "max_skin_angle_for_expansion label"
  1590. msgid "Maximum Skin Angle for Expansion"
  1591. msgstr "Maks. Kąt Rozciągania Ścian"
  1592. msgctxt "machine_max_feedrate_e label"
  1593. msgid "Maximum Speed E"
  1594. msgstr ""
  1595. msgctxt "machine_max_feedrate_x label"
  1596. msgid "Maximum Speed X"
  1597. msgstr "Maksymalna Prędkość X"
  1598. msgctxt "machine_max_feedrate_y label"
  1599. msgid "Maximum Speed Y"
  1600. msgstr "Maksymalna Prędkość Y"
  1601. msgctxt "machine_max_feedrate_z label"
  1602. msgid "Maximum Speed Z"
  1603. msgstr "Maksymalna Prędkość Z"
  1604. msgctxt "support_tower_maximum_supported_diameter label"
  1605. msgid "Maximum Tower-Supported Diameter"
  1606. msgstr "Maksymalna średnica obsługiwana przez wieżę podporową"
  1607. msgctxt "meshfix_maximum_travel_resolution label"
  1608. msgid "Maximum Travel Resolution"
  1609. msgstr "Maksymalna Rozdzielczość Ruchów Jałowych"
  1610. msgctxt "machine_max_acceleration_x description"
  1611. msgid "Maximum acceleration for the motor of the X-direction"
  1612. msgstr "Maksymalne przyspieszenie dla silnika osi X"
  1613. msgctxt "machine_max_acceleration_y description"
  1614. msgid "Maximum acceleration for the motor of the Y-direction."
  1615. msgstr "Maksymalne przyspieszenie dla silnika osi Y."
  1616. msgctxt "machine_max_acceleration_z description"
  1617. msgid "Maximum acceleration for the motor of the Z-direction."
  1618. msgstr "Maksymalne przyspieszenie dla silnika osi Z."
  1619. msgctxt "machine_max_acceleration_e description"
  1620. msgid "Maximum acceleration for the motor of the filament."
  1621. msgstr "Maksymalne przyspieszenie dla silnika filamentu."
  1622. msgctxt "bridge_sparse_infill_max_density description"
  1623. msgid "Maximum density of infill considered to be sparse. Skin over sparse infill is considered to be unsupported and so may be treated as a bridge skin."
  1624. msgstr ""
  1625. msgctxt "support_tower_maximum_supported_diameter description"
  1626. msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower."
  1627. msgstr "Maksymalna średnica w kierunkach X/Y obszaru, który ma być podtrzymywana przez specjalistyczną wieżę podporową."
  1628. msgctxt "max_extrusion_before_wipe description"
  1629. msgid "Maximum material that can be extruded before another nozzle wipe is initiated. If this value is less than the volume of material required in a layer, the setting has no effect in this layer, i.e. it is limited to one wipe per layer."
  1630. msgstr ""
  1631. msgctxt "multiple_mesh_overlap label"
  1632. msgid "Merged Meshes Overlap"
  1633. msgstr "Połączone Siatki Pokrywają się"
  1634. msgctxt "meshfix label"
  1635. msgid "Mesh Fixes"
  1636. msgstr "Poprawki Siatki"
  1637. msgctxt "mesh_position_x label"
  1638. msgid "Mesh Position X"
  1639. msgstr "Pozycja Siatki w X"
  1640. msgctxt "mesh_position_y label"
  1641. msgid "Mesh Position Y"
  1642. msgstr "Pozycja Siatki w Y"
  1643. msgctxt "mesh_position_z label"
  1644. msgid "Mesh Position Z"
  1645. msgstr "Pozycja Siatki w Z"
  1646. msgctxt "infill_mesh_order label"
  1647. msgid "Mesh Processing Rank"
  1648. msgstr ""
  1649. msgctxt "mesh_rotation_matrix label"
  1650. msgid "Mesh Rotation Matrix"
  1651. msgstr "Forma Obrotu Siatki"
  1652. msgctxt "slicing_tolerance option middle"
  1653. msgid "Middle"
  1654. msgstr "Środek"
  1655. msgctxt "mold_width label"
  1656. msgid "Minimal Mold Width"
  1657. msgstr "Min. Szerokość Formy"
  1658. msgctxt "machine_min_cool_heat_time_window label"
  1659. msgid "Minimal Time Standby Temperature"
  1660. msgstr "Minimalny Czas Temp. Czuwania"
  1661. msgctxt "bridge_wall_min_length label"
  1662. msgid "Minimum Bridge Wall Length"
  1663. msgstr "Min. Długość Mostu"
  1664. msgctxt "min_even_wall_line_width label"
  1665. msgid "Minimum Even Wall Line Width"
  1666. msgstr ""
  1667. msgctxt "retraction_extrusion_window label"
  1668. msgid "Minimum Extrusion Distance Window"
  1669. msgstr "Okno Min. Dług. Ekstruzji"
  1670. msgctxt "min_feature_size label"
  1671. msgid "Minimum Feature Size"
  1672. msgstr ""
  1673. msgctxt "machine_minimum_feedrate label"
  1674. msgid "Minimum Feedrate"
  1675. msgstr "Minimalna Prędk. Posuwu"
  1676. msgctxt "support_tree_min_height_to_model label"
  1677. msgid "Minimum Height To Model"
  1678. msgstr ""
  1679. msgctxt "min_infill_area label"
  1680. msgid "Minimum Infill Area"
  1681. msgstr "Min. Obszar Wypełnienia"
  1682. msgctxt "cool_min_layer_time label"
  1683. msgid "Minimum Layer Time"
  1684. msgstr "Minimalny Czas Warstwy"
  1685. msgctxt "min_odd_wall_line_width label"
  1686. msgid "Minimum Odd Wall Line Width"
  1687. msgstr ""
  1688. msgctxt "minimum_polygon_circumference label"
  1689. msgid "Minimum Polygon Circumference"
  1690. msgstr "Minimalny Obwód Wieloboku"
  1691. msgctxt "min_skin_width_for_expansion label"
  1692. msgid "Minimum Skin Width for Expansion"
  1693. msgstr "Min. Szerok. Skóry do Poszerzenia"
  1694. msgctxt "cool_min_speed label"
  1695. msgid "Minimum Speed"
  1696. msgstr "Minimalna Prędkość"
  1697. msgctxt "minimum_support_area label"
  1698. msgid "Minimum Support Area"
  1699. msgstr "Minimalna Powierzchnia Podpór"
  1700. msgctxt "minimum_bottom_area label"
  1701. msgid "Minimum Support Floor Area"
  1702. msgstr "Minimalna Powierzchnia Podłoża Podpór"
  1703. msgctxt "minimum_interface_area label"
  1704. msgid "Minimum Support Interface Area"
  1705. msgstr "Minimalna Powierzchnia Interfejsu Podpór"
  1706. msgctxt "minimum_roof_area label"
  1707. msgid "Minimum Support Roof Area"
  1708. msgstr "Minimalna Powierzchnia Dachu Podpór"
  1709. msgctxt "support_xy_distance_overhang label"
  1710. msgid "Minimum Support X/Y Distance"
  1711. msgstr "Min. Odległość X/Y Podpory"
  1712. msgctxt "min_bead_width label"
  1713. msgid "Minimum Thin Wall Line Width"
  1714. msgstr ""
  1715. msgctxt "coasting_min_volume label"
  1716. msgid "Minimum Volume Before Coasting"
  1717. msgstr "Minimalna Objętość Przed Wypływaniem"
  1718. msgctxt "min_wall_line_width label"
  1719. msgid "Minimum Wall Line Width"
  1720. msgstr ""
  1721. msgctxt "minimum_interface_area description"
  1722. msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support."
  1723. msgstr "Minimalny rozmiar obszaru dla wielokątów interfejsu podpór. Wielokąty, których powierzchnia jest mniejsza niż ta wartość, zostaną wydrukowane jako normalne podpory."
  1724. msgctxt "minimum_support_area description"
  1725. msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated."
  1726. msgstr "Minimalny rozmiar powierzchni dla podpór. Obszary, które mają mniejszą powierzchnię od tej wartości, nie będą generowane."
  1727. msgctxt "minimum_bottom_area description"
  1728. msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will be printed as normal support."
  1729. msgstr "Minimalny rozmiar obszaru dla podłoża podpór. Obszary, które mają powierzchnię mniejszą od tej wartości, zostaną wydrukowane jako normalne podpory."
  1730. msgctxt "minimum_roof_area description"
  1731. msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will be printed as normal support."
  1732. msgstr "Minimalny rozmiar obszaru dla dachu podpór. Obszary, które mają powierzchnię mniejszą od tej wartości, zostaną wydrukowane jako normalne podpory."
  1733. msgctxt "min_feature_size description"
  1734. msgid "Minimum thickness of thin features. Model features that are thinner than this value will not be printed, while features thicker than the Minimum Feature Size will be widened to the Minimum Wall Line Width."
  1735. msgstr ""
  1736. msgctxt "support_conical_min_width description"
  1737. msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures."
  1738. msgstr "Minimalna szerokość, do której można zmniejszyć bazę podpory stożkowej. Małe szerokości mogą prowadzić do niestabilnych struktur nośnych."
  1739. msgctxt "mold_enabled label"
  1740. msgid "Mold"
  1741. msgstr "Forma"
  1742. msgctxt "mold_angle label"
  1743. msgid "Mold Angle"
  1744. msgstr "Kąt Formy"
  1745. msgctxt "mold_roof_height label"
  1746. msgid "Mold Roof Height"
  1747. msgstr "Wysokość Dachu Formy"
  1748. msgctxt "ironing_monotonic label"
  1749. msgid "Monotonic Ironing Order"
  1750. msgstr ""
  1751. msgctxt "raft_surface_monotonic label"
  1752. msgid "Monotonic Raft Top Surface Order"
  1753. msgstr ""
  1754. msgctxt "roofing_monotonic label"
  1755. msgid "Monotonic Top Surface Order"
  1756. msgstr ""
  1757. msgctxt "skin_monotonic label"
  1758. msgid "Monotonic Top/Bottom Order"
  1759. msgstr ""
  1760. msgctxt "skirt_line_count description"
  1761. msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt."
  1762. msgstr "Liczne linie pomagają w lepszym wytłaczaniu małych modeli. Ustawienie na 0 spowoduje wyłączenie obwódki."
  1763. msgctxt "initial_layer_line_width_factor description"
  1764. msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion."
  1765. msgstr "Mnożnik szerokości linii na pierwszej warstwie. Zwiększenie może polepszyć przyczepność do stołu."
  1766. msgctxt "material_no_load_move_factor label"
  1767. msgid "No Load Move Factor"
  1768. msgstr ""
  1769. msgctxt "skin_no_small_gaps_heuristic label"
  1770. msgid "No Skin in Z Gaps"
  1771. msgstr "Brak wypełnienia w lukach osi Z"
  1772. msgctxt "blackmagic description"
  1773. msgid "Non-traditional ways to print your models."
  1774. msgstr ""
  1775. msgctxt "adhesion_type option none"
  1776. msgid "None"
  1777. msgstr "Brak"
  1778. msgctxt "z_seam_corner option z_seam_corner_none"
  1779. msgid "None"
  1780. msgstr "Brak"
  1781. msgctxt "magic_mesh_surface_mode option normal"
  1782. msgid "Normal"
  1783. msgstr "Normalny"
  1784. msgctxt "prime_tower_mode option normal"
  1785. msgid "Normal"
  1786. msgstr ""
  1787. msgctxt "support_structure option normal"
  1788. msgid "Normal"
  1789. msgstr ""
  1790. msgctxt "meshfix_keep_open_polygons description"
  1791. msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code."
  1792. msgstr "Zwykle Cura próbuje zszywać małe dziury w siatce i usunąć części warstwy z dużymi otworami. Włączenie tej opcji powoduje zostawienie tych części, których nie da się zszyć. Ta opcja powinna być używana jako ostatnia deska ratunku, gdy wszystko inne nie dostarczy właściwego G-code."
  1793. msgctxt "retraction_combing option noskin"
  1794. msgid "Not in Skin"
  1795. msgstr "Nie w Powłoce"
  1796. msgctxt "retraction_combing option no_outer_surfaces"
  1797. msgid "Not on Outer Surface"
  1798. msgstr ""
  1799. msgctxt "machine_nozzle_expansion_angle label"
  1800. msgid "Nozzle Angle"
  1801. msgstr "Kąt dyszy"
  1802. msgctxt "machine_nozzle_size label"
  1803. msgid "Nozzle Diameter"
  1804. msgstr "Średnica dyszy"
  1805. msgctxt "nozzle_disallowed_areas label"
  1806. msgid "Nozzle Disallowed Areas"
  1807. msgstr "Niedozwolone Obszary Dyszy"
  1808. msgctxt "machine_nozzle_id label"
  1809. msgid "Nozzle ID"
  1810. msgstr "ID Dyszy"
  1811. msgctxt "machine_nozzle_head_distance label"
  1812. msgid "Nozzle Length"
  1813. msgstr "Długość dyszy"
  1814. msgctxt "switch_extruder_extra_prime_amount label"
  1815. msgid "Nozzle Switch Extra Prime Amount"
  1816. msgstr "Dodatkowa ekstruzja po zmianie dyszy"
  1817. msgctxt "switch_extruder_prime_speed label"
  1818. msgid "Nozzle Switch Prime Speed"
  1819. msgstr "Prędk. Czyszcz. przy Zmianie Dyszy"
  1820. msgctxt "switch_extruder_retraction_speed label"
  1821. msgid "Nozzle Switch Retract Speed"
  1822. msgstr "Prędk. Cofania przy Zmianie Dyszy"
  1823. msgctxt "switch_extruder_retraction_amount label"
  1824. msgid "Nozzle Switch Retraction Distance"
  1825. msgstr "Długość Retrakcji przy Zmianie Dyszy"
  1826. msgctxt "switch_extruder_retraction_speeds label"
  1827. msgid "Nozzle Switch Retraction Speed"
  1828. msgstr "Prędk. Retrakcji przy Zmianie Dyszy"
  1829. msgctxt "machine_extruder_count label"
  1830. msgid "Number of Extruders"
  1831. msgstr "Liczba Ekstruderów"
  1832. msgctxt "extruders_enabled_count label"
  1833. msgid "Number of Extruders That Are Enabled"
  1834. msgstr "Liczba Ekstruderów, które są dostępne"
  1835. msgctxt "speed_slowdown_layers label"
  1836. msgid "Number of Slower Layers"
  1837. msgstr "Ilość Wolnych Warstw"
  1838. msgctxt "extruders_enabled_count description"
  1839. msgid "Number of extruder trains that are enabled; automatically set in software"
  1840. msgstr "Liczba zespołów ekstruderów, które są dostępne; automatycznie ustawiane w oprogramowaniu"
  1841. msgctxt "machine_extruder_count description"
  1842. msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle."
  1843. msgstr "Liczba zespołów esktruderów. Zespół ekstrudera to kombinacja podajnika, rurki Bowden i dyszy."
  1844. msgctxt "wipe_repeat_count description"
  1845. msgid "Number of times to move the nozzle across the brush."
  1846. msgstr "Ilość powtórzeń przesunięcia dyszy po szczotce."
  1847. msgctxt "gradual_infill_steps description"
  1848. msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density."
  1849. msgstr "Liczba redukcji wypełnienia o połowę podczas drukowania poniżej górnych powierzchni. Obszary, które są bliżej górnej powierzchni, mają większą gęstość, aż do Gęstości Wypełnienia."
  1850. msgctxt "gradual_support_infill_steps description"
  1851. msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density."
  1852. msgstr "Ilość zmniejszeń gęstości wypełnienia podpory o połowę podczas przesuwania się dalej pod górnymi powierzchniami. Obszary, które są bliżej górnych powierzchni mają większą gęstość, aż do Gęstości Wypełn. Podpory."
  1853. msgctxt "infill_pattern option tetrahedral"
  1854. msgid "Octet"
  1855. msgstr "Czworościan"
  1856. msgctxt "retraction_combing option off"
  1857. msgid "Off"
  1858. msgstr "Wyłącz"
  1859. msgctxt "mesh_position_x description"
  1860. msgid "Offset applied to the object in the x direction."
  1861. msgstr "Przesunięcie zastosowane dla obiektu w kierunku X."
  1862. msgctxt "mesh_position_y description"
  1863. msgid "Offset applied to the object in the y direction."
  1864. msgstr "Przesunięcie zastosowane dla obiektu w kierunku Y."
  1865. msgctxt "mesh_position_z description"
  1866. msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'."
  1867. msgstr "Przesunięcie zastosowane dla obiektu w kierunku Z. Za pomocą tego możesz sprecyzować co nazywamy 'Zatopieniem Obiektu."
  1868. msgctxt "machine_use_extruder_offset_to_offset_coords label"
  1869. msgid "Offset with Extruder"
  1870. msgstr "Przesunięcie ekstrudera"
  1871. msgctxt "support_tree_rest_preference option buildplate"
  1872. msgid "On buildplate when possible"
  1873. msgstr ""
  1874. msgctxt "support_tree_rest_preference option graceful"
  1875. msgid "On model if required"
  1876. msgstr ""
  1877. msgctxt "print_sequence option one_at_a_time"
  1878. msgid "One at a Time"
  1879. msgstr "Jeden na raz"
  1880. msgctxt "retraction_hop_only_when_collides description"
  1881. msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling."
  1882. msgstr "Wykonuj Skok Z tylko podczas ruchu nad wydrukowanymi częściami, które nie mogą być ominięte za pomocą Omijaj Częścipodczas Ruchu Jałowego."
  1883. msgctxt "ironing_only_highest_layer description"
  1884. msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish."
  1885. msgstr "Przeprowadzaj prasowanie tylko na najwyższej warstwie siatki. Oszczędza to czas jeżeli niższe warstwy nie muszą mieć gładkie wykończenia powierzchni."
  1886. msgctxt "ooze_shield_angle label"
  1887. msgid "Ooze Shield Angle"
  1888. msgstr "Kąt Osłony Wycierającej"
  1889. msgctxt "ooze_shield_dist label"
  1890. msgid "Ooze Shield Distance"
  1891. msgstr "Odległ. Osłony Wycierającej"
  1892. msgctxt "support_tree_branch_reach_limit label"
  1893. msgid "Optimal Branch Range"
  1894. msgstr ""
  1895. msgctxt "optimize_wall_printing_order label"
  1896. msgid "Optimize Wall Printing Order"
  1897. msgstr "Optymalizuj Kolejność Drukowania Ścian"
  1898. msgctxt "optimize_wall_printing_order description"
  1899. msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type."
  1900. msgstr "Optymalizuje kolejność, w jakiej będą drukowane ścianki w celu zredukowania ilości retrakcji oraz dystansu ruchów jałowych. Większość części skorzysta na załączeniu tej funkcji, jednak w niektórych przypadkach czas druku może się wydłużyć, proszę więc o porównanie oszacowanego czasu z funkcją załączoną oraz wyłączoną. Pierwsza warstwa nie zostanie zoptymalizowana, jeżeli jako poprawa przyczepności stołu zostanie wybrany obrys."
  1901. msgctxt "machine_nozzle_tip_outer_diameter label"
  1902. msgid "Outer Nozzle Diameter"
  1903. msgstr "Zew. średnica dyszy"
  1904. msgctxt "acceleration_wall_0 label"
  1905. msgid "Outer Wall Acceleration"
  1906. msgstr "Przyspieszenie Ściany Zew"
  1907. msgctxt "wall_0_extruder_nr label"
  1908. msgid "Outer Wall Extruder"
  1909. msgstr "Esktruder Zew. Ściany"
  1910. msgctxt "wall_0_material_flow label"
  1911. msgid "Outer Wall Flow"
  1912. msgstr "Przepływu ścianek zewnętrznych"
  1913. msgctxt "wall_0_inset label"
  1914. msgid "Outer Wall Inset"
  1915. msgstr "Wkład Zew. Ściany"
  1916. msgctxt "jerk_wall_0 label"
  1917. msgid "Outer Wall Jerk"
  1918. msgstr "Zryw Zew. Ścian"
  1919. msgctxt "wall_line_width_0 label"
  1920. msgid "Outer Wall Line Width"
  1921. msgstr "Szerokość Linii Ścian(y) Zewnętrznych"
  1922. msgctxt "speed_wall_0 label"
  1923. msgid "Outer Wall Speed"
  1924. msgstr "Prędkość Zew. Ściany"
  1925. msgctxt "wall_0_wipe_dist label"
  1926. msgid "Outer Wall Wipe Distance"
  1927. msgstr "Długość Czyszczenia Zew. Ściana"
  1928. msgctxt "group_outer_walls description"
  1929. msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped."
  1930. msgstr "Zewnętrzne ściany różnych wysp w tej samej warstwie są drukowane sekwencyjnie. Gdy jest włączone, ilość zmian przepływu jest ograniczona, ponieważ ściany są drukowane po jednym rodzaju na raz. Gdy jest wyłączone, liczba podróży między wyspami jest zmniejszana, ponieważ ściany na tych samych wyspach są grupowane."
  1931. msgctxt "brim_location option outside"
  1932. msgid "Outside Only"
  1933. msgstr ""
  1934. msgctxt "inset_direction option outside_in"
  1935. msgid "Outside To Inside"
  1936. msgstr ""
  1937. msgctxt "wall_overhang_angle label"
  1938. msgid "Overhanging Wall Angle"
  1939. msgstr "Kąt Nawisającej Ścianki"
  1940. msgctxt "wall_overhang_speed_factor label"
  1941. msgid "Overhanging Wall Speed"
  1942. msgstr "Prędkość Ścianki Nawisającej"
  1943. msgctxt "wall_overhang_speed_factor description"
  1944. msgid "Overhanging walls will be printed at this percentage of their normal print speed."
  1945. msgstr "Nawisające ścianki będą drukowane z taką procentową wartością względem normalnej prędkości druku."
  1946. msgctxt "wipe_pause description"
  1947. msgid "Pause after the unretract."
  1948. msgstr "Wstrzymaj czyszczenie, jeśli brak retrakcji."
  1949. msgctxt "bridge_fan_speed description"
  1950. msgid "Percentage fan speed to use when printing bridge walls and skin."
  1951. msgstr "Procent prędkości wentylatora używany podczas drukowania ścian i skóry mostów."
  1952. msgctxt "bridge_fan_speed_2 description"
  1953. msgid "Percentage fan speed to use when printing the second bridge skin layer."
  1954. msgstr "Procent prędkości wentylatora używany podczas drukowania drugiej warstwy skóry most."
  1955. msgctxt "support_supported_skin_fan_speed description"
  1956. msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove."
  1957. msgstr "Procentowa prędkść wentylatora, która zostanie użyta podczas drukowania obszarów powłoki leżących bezpośrednio nad podstawami. Użycie wysokiej prędkości może ułatwić usuwanie podpór."
  1958. msgctxt "bridge_fan_speed_3 description"
  1959. msgid "Percentage fan speed to use when printing the third bridge skin layer."
  1960. msgstr "Procent prędkości wentylatora używany podczas drukowania trzeciej warstwy skóry most."
  1961. msgctxt "minimum_polygon_circumference description"
  1962. msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details."
  1963. msgstr "Wieloboki w pociętych warstwach mające obwód mniejszy, niż podany, będą odfiltrowane. Mniejsze wartości dają wyższą rozdzielczość siatki kosztem czasu cięcia. Funkcja ta jest przeznaczona głównie dla drukarek wysokiej rozdzielczości SLA oraz bardzo małych modeli z dużą ilością detali."
  1964. msgctxt "support_tree_angle_slow label"
  1965. msgid "Preferred Branch Angle"
  1966. msgstr ""
  1967. msgctxt "wall_transition_filter_deviation description"
  1968. msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems."
  1969. msgstr ""
  1970. msgctxt "acceleration_prime_tower label"
  1971. msgid "Prime Tower Acceleration"
  1972. msgstr "Przyspieszenie Wieży Czyszczącej"
  1973. msgctxt "prime_tower_brim_enable label"
  1974. msgid "Prime Tower Base"
  1975. msgstr ""
  1976. msgctxt "prime_tower_base_height label"
  1977. msgid "Prime Tower Base Height"
  1978. msgstr ""
  1979. msgctxt "prime_tower_base_size label"
  1980. msgid "Prime Tower Base Size"
  1981. msgstr ""
  1982. msgctxt "prime_tower_base_curve_magnitude label"
  1983. msgid "Prime Tower Base Slope"
  1984. msgstr ""
  1985. msgctxt "prime_tower_flow label"
  1986. msgid "Prime Tower Flow"
  1987. msgstr "Przepływ Wieży Czyszczącej"
  1988. msgctxt "jerk_prime_tower label"
  1989. msgid "Prime Tower Jerk"
  1990. msgstr "Zryw Wieży Czyszczącej"
  1991. msgctxt "prime_tower_line_width label"
  1992. msgid "Prime Tower Line Width"
  1993. msgstr "Szerokość Linii Wieży Czyszczczenia"
  1994. msgctxt "prime_tower_max_bridging_distance label"
  1995. msgid "Prime Tower Maximum Bridging Distance"
  1996. msgstr ""
  1997. msgctxt "prime_tower_min_volume label"
  1998. msgid "Prime Tower Minimum Volume"
  1999. msgstr "Min. Objętość Wieży Czyszczącej"
  2000. msgctxt "prime_tower_raft_base_line_spacing label"
  2001. msgid "Prime Tower Raft Line Spacing"
  2002. msgstr ""
  2003. msgctxt "prime_tower_size label"
  2004. msgid "Prime Tower Size"
  2005. msgstr "Rozmiar Wieży Czyszczącej"
  2006. msgctxt "speed_prime_tower label"
  2007. msgid "Prime Tower Speed"
  2008. msgstr "Prędkość Wieży Czyszczenia"
  2009. msgctxt "prime_tower_mode label"
  2010. msgid "Prime Tower Type"
  2011. msgstr ""
  2012. msgctxt "prime_tower_position_x label"
  2013. msgid "Prime Tower X Position"
  2014. msgstr "Pozycja Wieży Czyszcz. X"
  2015. msgctxt "prime_tower_position_y label"
  2016. msgid "Prime Tower Y Position"
  2017. msgstr "Pozycja Wieży Czyszcz. Y"
  2018. msgctxt "acceleration_print label"
  2019. msgid "Print Acceleration"
  2020. msgstr "Przyspieszenie Druku"
  2021. msgctxt "jerk_print label"
  2022. msgid "Print Jerk"
  2023. msgstr "Zryw Druku"
  2024. msgctxt "ppr label"
  2025. msgid "Print Process Reporting"
  2026. msgstr ""
  2027. msgctxt "print_sequence label"
  2028. msgid "Print Sequence"
  2029. msgstr "Sekwencja Wydruku"
  2030. msgctxt "speed_print label"
  2031. msgid "Print Speed"
  2032. msgstr "Prędkość Druku"
  2033. msgctxt "fill_outline_gaps label"
  2034. msgid "Print Thin Walls"
  2035. msgstr "Drukuj Cienkie Linie"
  2036. msgctxt "brim_location description"
  2037. msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion."
  2038. msgstr ""
  2039. msgctxt "prime_tower_enable description"
  2040. msgid "Print a tower next to the print which serves to prime the material after each nozzle switch."
  2041. msgstr "Wydrukuj wieżę obok wydruku, która służy do zmiany materiału po każdym przełączeniu dyszy."
  2042. msgctxt "infill_support_enabled description"
  2043. msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength."
  2044. msgstr "Drukuj wypełnienie tylko w miejscach, w których górna część modelu powinna być podparta strukturą wewnętrzną. Załączenie tej funkcji skutkuje redukcją czasu druku, ale prowadzi do niejednolitej wytrzymałości obiektu."
  2045. msgctxt "ironing_monotonic description"
  2046. msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
  2047. msgstr ""
  2048. msgctxt "mold_enabled description"
  2049. msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate."
  2050. msgstr "Wydrukuj modele jako formę, którą można wyrzucić w celu uzyskania odlewu, który przypomina modele na płycie."
  2051. msgctxt "fill_outline_gaps description"
  2052. msgid "Print pieces of the model which are horizontally thinner than the nozzle size."
  2053. msgstr "Drukuj części modelu, które są poziomo cieńsze niż rozmiar dyszy."
  2054. msgctxt "raft_surface_monotonic description"
  2055. msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface."
  2056. msgstr ""
  2057. msgctxt "bridge_skin_speed_2 description"
  2058. msgid "Print speed to use when printing the second bridge skin layer."
  2059. msgstr "Prędkość używana podczas drukowania drugiej warstwy skóry mostu."
  2060. msgctxt "bridge_skin_speed_3 description"
  2061. msgid "Print speed to use when printing the third bridge skin layer."
  2062. msgstr "Prędkość używana podczas drukowania trzeciej warstwy skóry mostu."
  2063. msgctxt "print_temp_anomaly_limit label"
  2064. msgid "Print temperature Limit"
  2065. msgstr ""
  2066. msgctxt "print_temp_warn_limit label"
  2067. msgid "Print temperature Warning"
  2068. msgstr ""
  2069. msgctxt "infill_before_walls description"
  2070. msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface."
  2071. msgstr "Wydrukuj wypełnienie przed wydrukowaniem ścian. Drukowanie ścian jako pierwsze może prowadzić do bardziej dokładnych ścian, ale pogorszy zwisy. Drukowanie wypełnienia najpierw prowadzi do mocniejszych ścian, ale wzór wypełnienia może czasem być widoczny przez powierzchnię."
  2072. msgctxt "roofing_monotonic description"
  2073. msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
  2074. msgstr ""
  2075. msgctxt "skin_monotonic description"
  2076. msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
  2077. msgstr ""
  2078. msgctxt "material_print_temperature label"
  2079. msgid "Printing Temperature"
  2080. msgstr "Temperatura Druku"
  2081. msgctxt "material_print_temperature_layer_0 label"
  2082. msgid "Printing Temperature Initial Layer"
  2083. msgstr "Temp. Druku Początk. Warstwy"
  2084. msgctxt "skirt_height description"
  2085. msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt."
  2086. msgstr ""
  2087. msgctxt "alternate_extra_perimeter description"
  2088. msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
  2089. msgstr "Drukuje dodatkową ścianę na każdej warstwie. W ten sposób wypełnienie jest tworzone pomiędzy tymi dod. ścianami, co skutkuje mocniejszymi wydrukami."
  2090. msgctxt "resolution label"
  2091. msgid "Quality"
  2092. msgstr "Jakość"
  2093. msgctxt "infill_pattern option quarter_cubic"
  2094. msgid "Quarter Cubic"
  2095. msgstr "Ćwierć Sześcienny"
  2096. msgctxt "adhesion_type option raft"
  2097. msgid "Raft"
  2098. msgstr "Tratwa"
  2099. msgctxt "raft_airgap label"
  2100. msgid "Raft Air Gap"
  2101. msgstr "Przerwa Tratwy"
  2102. msgctxt "raft_base_margin label"
  2103. msgid "Raft Base Extra Margin"
  2104. msgstr ""
  2105. msgctxt "raft_base_extruder_nr label"
  2106. msgid "Raft Base Extruder"
  2107. msgstr ""
  2108. msgctxt "raft_base_fan_speed label"
  2109. msgid "Raft Base Fan Speed"
  2110. msgstr "Prędk. Went. Podst. Tratwy"
  2111. msgctxt "raft_base_line_spacing label"
  2112. msgid "Raft Base Line Spacing"
  2113. msgstr "Rozstaw Linii Podstawy Tratwy"
  2114. msgctxt "raft_base_line_width label"
  2115. msgid "Raft Base Line Width"
  2116. msgstr "Szerokość Linii Podst. Tratwy"
  2117. msgctxt "raft_base_acceleration label"
  2118. msgid "Raft Base Print Acceleration"
  2119. msgstr "Przysp. Podst. Warstwy Tratwy"
  2120. msgctxt "raft_base_jerk label"
  2121. msgid "Raft Base Print Jerk"
  2122. msgstr "Zryw Podst. Tratwy"
  2123. msgctxt "raft_base_speed label"
  2124. msgid "Raft Base Print Speed"
  2125. msgstr "Prędk. Druku Podst. Tratwy"
  2126. msgctxt "raft_base_smoothing label"
  2127. msgid "Raft Base Smoothing"
  2128. msgstr ""
  2129. msgctxt "raft_base_thickness label"
  2130. msgid "Raft Base Thickness"
  2131. msgstr "Grubość Podstawy Tratwy"
  2132. msgctxt "raft_base_wall_count label"
  2133. msgid "Raft Base Wall Count"
  2134. msgstr ""
  2135. msgctxt "raft_margin label"
  2136. msgid "Raft Extra Margin"
  2137. msgstr "Dod. Margines Tratwy"
  2138. msgctxt "raft_fan_speed label"
  2139. msgid "Raft Fan Speed"
  2140. msgstr "Prędk. Went. Tratwa"
  2141. msgctxt "raft_interface_margin label"
  2142. msgid "Raft Middle Extra Margin"
  2143. msgstr ""
  2144. msgctxt "raft_interface_extruder_nr label"
  2145. msgid "Raft Middle Extruder"
  2146. msgstr ""
  2147. msgctxt "raft_interface_fan_speed label"
  2148. msgid "Raft Middle Fan Speed"
  2149. msgstr "Prędk. Went. Środek Tratwy"
  2150. msgctxt "raft_interface_layers label"
  2151. msgid "Raft Middle Layers"
  2152. msgstr ""
  2153. msgctxt "raft_interface_line_width label"
  2154. msgid "Raft Middle Line Width"
  2155. msgstr "Szerokość Linii Środka Tratwy"
  2156. msgctxt "raft_interface_acceleration label"
  2157. msgid "Raft Middle Print Acceleration"
  2158. msgstr "Przysp. Druku Środka Tratwy"
  2159. msgctxt "raft_interface_jerk label"
  2160. msgid "Raft Middle Print Jerk"
  2161. msgstr "Zryw Środek Tratwy"
  2162. msgctxt "raft_interface_speed label"
  2163. msgid "Raft Middle Print Speed"
  2164. msgstr "Prędk. Druku Środka Tratwy"
  2165. msgctxt "raft_interface_smoothing label"
  2166. msgid "Raft Middle Smoothing"
  2167. msgstr ""
  2168. msgctxt "raft_interface_line_spacing label"
  2169. msgid "Raft Middle Spacing"
  2170. msgstr "Przerwy Środka Tratwy"
  2171. msgctxt "raft_interface_thickness label"
  2172. msgid "Raft Middle Thickness"
  2173. msgstr "Grubość Środka Tratwy"
  2174. msgctxt "raft_interface_wall_count label"
  2175. msgid "Raft Middle Wall Count"
  2176. msgstr ""
  2177. msgctxt "raft_acceleration label"
  2178. msgid "Raft Print Acceleration"
  2179. msgstr "Przysp. Druku Tratwy"
  2180. msgctxt "raft_jerk label"
  2181. msgid "Raft Print Jerk"
  2182. msgstr "Zryw Tratwy"
  2183. msgctxt "raft_speed label"
  2184. msgid "Raft Print Speed"
  2185. msgstr "Prędk. Druku Tratwy"
  2186. msgctxt "raft_smoothing label"
  2187. msgid "Raft Smoothing"
  2188. msgstr "Wygładzanie Tratwy"
  2189. msgctxt "raft_surface_margin label"
  2190. msgid "Raft Top Extra Margin"
  2191. msgstr ""
  2192. msgctxt "raft_surface_extruder_nr label"
  2193. msgid "Raft Top Extruder"
  2194. msgstr ""
  2195. msgctxt "raft_surface_fan_speed label"
  2196. msgid "Raft Top Fan Speed"
  2197. msgstr "Prędk. Went. Góra Tratwy"
  2198. msgctxt "raft_surface_thickness label"
  2199. msgid "Raft Top Layer Thickness"
  2200. msgstr "Grubość Warstwy Góra Tratwy"
  2201. msgctxt "raft_surface_layers label"
  2202. msgid "Raft Top Layers"
  2203. msgstr "Górne Warstwy Tartwy"
  2204. msgctxt "raft_surface_line_width label"
  2205. msgid "Raft Top Line Width"
  2206. msgstr "Szerokość Linii Góra Tratwy"
  2207. msgctxt "raft_surface_acceleration label"
  2208. msgid "Raft Top Print Acceleration"
  2209. msgstr "Przysp. Druku Góry Tratwy"
  2210. msgctxt "raft_surface_jerk label"
  2211. msgid "Raft Top Print Jerk"
  2212. msgstr "Zryw Góry Tratwy"
  2213. msgctxt "raft_surface_speed label"
  2214. msgid "Raft Top Print Speed"
  2215. msgstr "Prędk. Druku Góry Tratwy"
  2216. msgctxt "raft_surface_smoothing label"
  2217. msgid "Raft Top Smoothing"
  2218. msgstr ""
  2219. msgctxt "raft_surface_line_spacing label"
  2220. msgid "Raft Top Spacing"
  2221. msgstr "Przerwy Góra Tratwy"
  2222. msgctxt "raft_surface_wall_count label"
  2223. msgid "Raft Top Wall Count"
  2224. msgstr ""
  2225. msgctxt "raft_wall_count label"
  2226. msgid "Raft Wall Count"
  2227. msgstr ""
  2228. msgctxt "z_seam_type option random"
  2229. msgid "Random"
  2230. msgstr "Losowe"
  2231. msgctxt "infill_randomize_start_location label"
  2232. msgid "Randomize Infill Start"
  2233. msgstr "Losowy punkt startu wypełnienia"
  2234. msgctxt "infill_randomize_start_location description"
  2235. msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move."
  2236. msgstr "Losuje, która linia wypełnienia jest drukowana jako pierwsza. Dzięki temu nie ma zjawiska, kiedy jeden segment jest mocniejszy. Kosztem jest dodatkowy ruchu jałowy."
  2237. msgctxt "magic_fuzzy_skin_enabled description"
  2238. msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look."
  2239. msgstr "Losowe drgania podczas drukowania zewnętrznej ściany, dzięki czemu powierzchnia ma szorstki i rozmyty wygląd."
  2240. msgctxt "machine_shape option rectangular"
  2241. msgid "Rectangular"
  2242. msgstr "Prostokątny"
  2243. msgctxt "cool_fan_speed_min label"
  2244. msgid "Regular Fan Speed"
  2245. msgstr "Normalna Pręd. Wentylatora"
  2246. msgctxt "cool_fan_full_at_height label"
  2247. msgid "Regular Fan Speed at Height"
  2248. msgstr "Regularna Pręd. Went. na Wysokości"
  2249. msgctxt "cool_fan_full_layer label"
  2250. msgid "Regular Fan Speed at Layer"
  2251. msgstr "Regularna Pręd. Went. na Wartswie"
  2252. msgctxt "cool_min_layer_time_fan_speed_max label"
  2253. msgid "Regular/Maximum Fan Speed Threshold"
  2254. msgstr "Regularny/Maks. Próg Pręd. Wentylatora"
  2255. msgctxt "relative_extrusion label"
  2256. msgid "Relative Extrusion"
  2257. msgstr "Ekstruzja Względna"
  2258. msgctxt "meshfix_union_all_remove_holes label"
  2259. msgid "Remove All Holes"
  2260. msgstr "Usuń Wszystkie Otwory"
  2261. msgctxt "remove_empty_first_layers label"
  2262. msgid "Remove Empty First Layers"
  2263. msgstr "Usuń Pustą Pierwsz. Warstwę"
  2264. msgctxt "carve_multiple_volumes label"
  2265. msgid "Remove Mesh Intersection"
  2266. msgstr "Usuń Przecięcia Siatki"
  2267. msgctxt "raft_base_remove_inside_corners label"
  2268. msgid "Remove Raft Base Inside Corners"
  2269. msgstr ""
  2270. msgctxt "raft_remove_inside_corners label"
  2271. msgid "Remove Raft Inside Corners"
  2272. msgstr ""
  2273. msgctxt "raft_interface_remove_inside_corners label"
  2274. msgid "Remove Raft Middle Inside Corners"
  2275. msgstr ""
  2276. msgctxt "raft_surface_remove_inside_corners label"
  2277. msgid "Remove Raft Top Inside Corners"
  2278. msgstr ""
  2279. msgctxt "carve_multiple_volumes description"
  2280. msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other."
  2281. msgstr "Usuń obszary gdzie kilka siatek nakłada się na siebie. Może zostać użyte, jeżeli dwa obiekty do druku 2 materiałami nachodzą na siebie."
  2282. msgctxt "remove_empty_first_layers description"
  2283. msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle."
  2284. msgstr "Usuń puste warstwy poniżej pierwszej drukowanej warstwy jeżeli takie występują. Wyłączenie tego ustawienia może powodować puste pierwsze warstwy jeżeli Tolerancja Cięcia jest ustawiona na Włącznie lub Środek."
  2285. msgctxt "raft_base_remove_inside_corners description"
  2286. msgid "Remove inside corners from the raft base, causing the raft to become convex."
  2287. msgstr ""
  2288. msgctxt "raft_interface_remove_inside_corners description"
  2289. msgid "Remove inside corners from the raft middle part, causing the raft to become convex."
  2290. msgstr ""
  2291. msgctxt "raft_surface_remove_inside_corners description"
  2292. msgid "Remove inside corners from the raft top part, causing the raft to become convex."
  2293. msgstr ""
  2294. msgctxt "raft_remove_inside_corners description"
  2295. msgid "Remove inside corners from the raft, causing the raft to become convex."
  2296. msgstr ""
  2297. msgctxt "meshfix_union_all_remove_holes description"
  2298. msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below."
  2299. msgstr "Usuń otwory w każdej warstwie i zachowuj tylko zewnętrzny kształt. Zignoruje to niewidoczną wewnętrzną geometrię. Ignoruje jednak otwory warstw, które można zobaczyć z góry lub do dołu."
  2300. msgctxt "machine_gcode_flavor option RepRap (RepRap)"
  2301. msgid "RepRap"
  2302. msgstr "RepRap"
  2303. msgctxt "machine_gcode_flavor option Repetier"
  2304. msgid "Repetier"
  2305. msgstr "Repetier"
  2306. msgctxt "skin_outline_count description"
  2307. msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material."
  2308. msgstr "Zastępuje najbardziej zewnętrzną część wzoru górnego/dolnego za pomocą kilku koncentrycznych linii. Korzystanie z jednej lub dwóch linii poprawia dachy, które zaczynają się na wypełnieniu."
  2309. msgctxt "ppr description"
  2310. msgid "Reporting events that go out of set thresholds"
  2311. msgstr ""
  2312. msgctxt "support_tree_rest_preference label"
  2313. msgid "Rest Preference"
  2314. msgstr ""
  2315. msgctxt "travel_retract_before_outer_wall label"
  2316. msgid "Retract Before Outer Wall"
  2317. msgstr "Cofnij Przed Zew. Ścianą"
  2318. msgctxt "retract_at_layer_change label"
  2319. msgid "Retract at Layer Change"
  2320. msgstr "Retrakcja podczas Zmiany Warstwy"
  2321. msgctxt "retraction_enable description"
  2322. msgid "Retract the filament when the nozzle is moving over a non-printed area."
  2323. msgstr ""
  2324. msgctxt "wipe_retraction_enable description"
  2325. msgid "Retract the filament when the nozzle is moving over a non-printed area."
  2326. msgstr "Cofnij filament, gdy dysza porusza się nad obszarem, w którym nie ma drukować."
  2327. msgctxt "retract_at_layer_change description"
  2328. msgid "Retract the filament when the nozzle is moving to the next layer."
  2329. msgstr "Cofnij filament, gdy dysza przesuwa się do następnej warstwy."
  2330. msgctxt "retraction_amount label"
  2331. msgid "Retraction Distance"
  2332. msgstr "Długość Retrakcji"
  2333. msgctxt "retraction_extra_prime_amount label"
  2334. msgid "Retraction Extra Prime Amount"
  2335. msgstr "Dod. Czyszcz. Wart. Retrakcji"
  2336. msgctxt "retraction_min_travel label"
  2337. msgid "Retraction Minimum Travel"
  2338. msgstr "Minimalny Przejazd dla Retrakcji"
  2339. msgctxt "retraction_prime_speed label"
  2340. msgid "Retraction Prime Speed"
  2341. msgstr "Prędk. Dopełn. Retrakcji"
  2342. msgctxt "retraction_retract_speed label"
  2343. msgid "Retraction Retract Speed"
  2344. msgstr "Prędk. Wycofania Retrakcji"
  2345. msgctxt "retraction_speed label"
  2346. msgid "Retraction Speed"
  2347. msgstr "Prędkość Retrakcji"
  2348. msgctxt "z_seam_position option right"
  2349. msgid "Right"
  2350. msgstr "Prawa"
  2351. msgctxt "machine_scale_fan_speed_zero_to_one label"
  2352. msgid "Scale Fan Speed To 0-1"
  2353. msgstr ""
  2354. msgctxt "machine_scale_fan_speed_zero_to_one description"
  2355. msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256."
  2356. msgstr ""
  2357. msgctxt "material_shrinkage_percentage label"
  2358. msgid "Scaling Factor Shrinkage Compensation"
  2359. msgstr ""
  2360. msgctxt "support_meshes_present label"
  2361. msgid "Scene Has Support Meshes"
  2362. msgstr ""
  2363. msgctxt "z_seam_corner label"
  2364. msgid "Seam Corner Preference"
  2365. msgstr "Wybór Rogu Szwu"
  2366. msgctxt "user_defined_print_order_enabled label"
  2367. msgid "Set Print Sequence Manually"
  2368. msgstr "Ręczne ustawienie kolejności drukowania"
  2369. msgctxt "draft_shield_height_limitation description"
  2370. msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height."
  2371. msgstr "Ustaw wysokość osłony przeciwwiatrowej. Wybierz czy drukować osłonę do pełnej wysokości modelu czy do określonej wysokości."
  2372. msgctxt "dual description"
  2373. msgid "Settings used for printing with multiple extruders."
  2374. msgstr "Ustawienia używane do drukowania wieloma głowicami."
  2375. msgctxt "command_line_settings description"
  2376. msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend."
  2377. msgstr "Ustawienia, które są używane tylko wtedy, gdy CuraEngine nie jest wywoływana przez frontend Cura."
  2378. msgctxt "machine_extruders_shared_nozzle_initial_retraction label"
  2379. msgid "Shared Nozzle Initial Retraction"
  2380. msgstr ""
  2381. msgctxt "z_seam_type option sharpest_corner"
  2382. msgid "Sharpest Corner"
  2383. msgstr "Najostrzejszy róg"
  2384. msgctxt "shell description"
  2385. msgid "Shell"
  2386. msgstr "Powłoka"
  2387. msgctxt "z_seam_type option shortest"
  2388. msgid "Shortest"
  2389. msgstr "Najkrótsze"
  2390. msgctxt "machine_show_variants label"
  2391. msgid "Show Machine Variants"
  2392. msgstr "Pokaż Warianty Maszyny"
  2393. msgctxt "skin_edge_support_layers label"
  2394. msgid "Skin Edge Support Layers"
  2395. msgstr ""
  2396. msgctxt "skin_edge_support_thickness label"
  2397. msgid "Skin Edge Support Thickness"
  2398. msgstr ""
  2399. msgctxt "expand_skins_expand_distance label"
  2400. msgid "Skin Expand Distance"
  2401. msgstr "Odległość Rozsz. Skóry"
  2402. msgctxt "skin_overlap_mm label"
  2403. msgid "Skin Overlap"
  2404. msgstr "Nakładanie się Skóry"
  2405. msgctxt "skin_overlap label"
  2406. msgid "Skin Overlap Percentage"
  2407. msgstr "Procent Nakładania się Skóry"
  2408. msgctxt "skin_preshrink label"
  2409. msgid "Skin Removal Width"
  2410. msgstr "Szerokość Usuwania Skóry"
  2411. msgctxt "min_skin_width_for_expansion description"
  2412. msgid "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical."
  2413. msgstr "Obszary skóry, które są węższe niż to, nie zostaną poszerzone. W ten sposób unikamy rozszerzania wąskich skór, które są tworzone, kiedy powierzchnia jest blisko pionowi."
  2414. msgctxt "support_zag_skip_count description"
  2415. msgid "Skip one in every N connection lines to make the support structure easier to break away."
  2416. msgstr "Pomijaj jedną z każdych N linii, aby struktura podpory była łatwiejsza do odłamania."
  2417. msgctxt "support_skip_some_zags description"
  2418. msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern."
  2419. msgstr "Pomijaj niektóre połączenia linii podpory, aby struktura podpory była łatwiejsza do odłamania. To ustawienie dotyczy wypełn. podpory Zygzak."
  2420. msgctxt "adhesion_type option skirt"
  2421. msgid "Skirt"
  2422. msgstr "Obwódka"
  2423. msgctxt "skirt_gap label"
  2424. msgid "Skirt Distance"
  2425. msgstr "Odległ. Obwódki"
  2426. msgctxt "skirt_height label"
  2427. msgid "Skirt Height"
  2428. msgstr ""
  2429. msgctxt "skirt_line_count label"
  2430. msgid "Skirt Line Count"
  2431. msgstr "Liczba Linii Obwódki"
  2432. msgctxt "acceleration_skirt_brim label"
  2433. msgid "Skirt/Brim Acceleration"
  2434. msgstr "Przyspieszenie Obwódki/Obrysu"
  2435. msgctxt "skirt_brim_extruder_nr label"
  2436. msgid "Skirt/Brim Extruder"
  2437. msgstr ""
  2438. msgctxt "skirt_brim_material_flow label"
  2439. msgid "Skirt/Brim Flow"
  2440. msgstr "Przepływ warstwy adhezyjnej"
  2441. msgctxt "jerk_skirt_brim label"
  2442. msgid "Skirt/Brim Jerk"
  2443. msgstr "Zryw Obwódki/Obrysu"
  2444. msgctxt "skirt_brim_line_width label"
  2445. msgid "Skirt/Brim Line Width"
  2446. msgstr "Szer. Linii Obwódki/Obrysu"
  2447. msgctxt "skirt_brim_minimal_length label"
  2448. msgid "Skirt/Brim Minimum Length"
  2449. msgstr "Min. Dł. Obwódki/Obrysu"
  2450. msgctxt "skirt_brim_speed label"
  2451. msgid "Skirt/Brim Speed"
  2452. msgstr "Prędkość Obwódka/Obrys"
  2453. msgctxt "slicing_tolerance label"
  2454. msgid "Slicing Tolerance"
  2455. msgstr "Tolerancja Cięcia"
  2456. msgctxt "small_feature_speed_factor_0 label"
  2457. msgid "Small Feature Initial Layer Speed"
  2458. msgstr "Prędkość początkowej warstwy małych obiektów"
  2459. msgctxt "small_feature_max_length label"
  2460. msgid "Small Feature Max Length"
  2461. msgstr "Maksymalna długość małych elementów"
  2462. msgctxt "small_feature_speed_factor label"
  2463. msgid "Small Feature Speed"
  2464. msgstr "Prędkość małych elementów"
  2465. msgctxt "small_hole_max_size label"
  2466. msgid "Small Hole Max Size"
  2467. msgstr "Maksymalny rozmiar małych otworów"
  2468. msgctxt "cool_min_temperature label"
  2469. msgid "Small Layer Printing Temperature"
  2470. msgstr "Końcowa Temp. Druku"
  2471. msgctxt "small_skin_on_surface label"
  2472. msgid "Small Top/Bottom On Surface"
  2473. msgstr ""
  2474. msgctxt "small_skin_width label"
  2475. msgid "Small Top/Bottom Width"
  2476. msgstr ""
  2477. msgctxt "small_feature_speed_factor_0 description"
  2478. msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
  2479. msgstr "Pierwsza warstwa małych obiektów zostanie wydrukowana z zadanym procentem ich normalnej prędkości drukowania. Wolniejsze drukowanie może poprawić przyczepność i dokładność."
  2480. msgctxt "small_feature_speed_factor description"
  2481. msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
  2482. msgstr "Małe obiekty zostaną wydrukowane z zadanym procentem ich normalnej prędkości drukowania. Wolniejsze drukowanie może poprawić przyczepność i dokładność."
  2483. msgctxt "small_skin_width description"
  2484. msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')."
  2485. msgstr ""
  2486. msgctxt "brim_smart_ordering label"
  2487. msgid "Smart Brim"
  2488. msgstr ""
  2489. msgctxt "z_seam_corner option z_seam_corner_weighted"
  2490. msgid "Smart Hiding"
  2491. msgstr "Inteligentne ukrywanie"
  2492. msgctxt "smooth_spiralized_contours label"
  2493. msgid "Smooth Spiralized Contours"
  2494. msgstr "Wygładź Spiralne Kontury"
  2495. msgctxt "smooth_spiralized_contours description"
  2496. msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details."
  2497. msgstr "Wygładź spiralne kontury, aby zmniejszyć widoczność szwu Z (szew Z powinien być ledwo widoczny na wydruku, ale nadal będzie widoczny w widoku warstwy). Pamiętaj, że wygładzanie będzie powodować rozmycie drobnych szczegółów powierzchni."
  2498. msgctxt "retraction_extra_prime_amount description"
  2499. msgid "Some material can ooze away during a travel move, which can be compensated for here."
  2500. msgstr "Trochę materiału może wypływać podczas ruchu jałowego co może zostać skompensowane tutaj."
  2501. msgctxt "wipe_retraction_extra_prime_amount description"
  2502. msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here."
  2503. msgstr "Niektóre materiały mogą wyciekać podczas ruchów czyszczenia, można to tutaj skompensować."
  2504. msgctxt "blackmagic label"
  2505. msgid "Special Modes"
  2506. msgstr "Specjalne Tryby"
  2507. msgctxt "speed description"
  2508. msgid "Speed"
  2509. msgstr "Prędkość"
  2510. msgctxt "speed label"
  2511. msgid "Speed"
  2512. msgstr "Prędkość"
  2513. msgctxt "wipe_hop_speed description"
  2514. msgid "Speed to move the z-axis during the hop."
  2515. msgstr "Szybkość przesuwania osi Z podczas skoku."
  2516. msgctxt "magic_spiralize label"
  2517. msgid "Spiralize Outer Contour"
  2518. msgstr "Spiralizuj Zew. Kontur"
  2519. msgctxt "magic_spiralize description"
  2520. msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part."
  2521. msgstr "Spirala wygładzająca ruch w Z na zewnętrznej krawędzi. Powoduje to stały wzrost Z w całym druku. Ta funkcja zamienia pełny model w pojedynczo ścienny wydruk z pełnym dnem. Ta funkcja powinna być włączona tylko wtedy, gdy każda warstwa zawiera tylko jedną część."
  2522. msgctxt "material_standby_temperature label"
  2523. msgid "Standby Temperature"
  2524. msgstr "Temperatura Czuwania"
  2525. msgctxt "machine_start_gcode label"
  2526. msgid "Start G-code"
  2527. msgstr "Początkowy G-code"
  2528. msgctxt "z_seam_type description"
  2529. msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker."
  2530. msgstr "Punkt początkowy każdej ścieżki w warstwie. Kiedy ścieżki w kolejnych warstwach zaczynają się w tym samym punkcie, na wydruku może pojawić się pionowy szew. Wyrównywanie ich w pobliżu określonej przez użytkownika lokalizacji powoduje, że szew jest najprostszy do usunięcia. Po umieszczeniu losowo niedokładności na początku ścieżki będzie mniej zauważalny. Podczas najkrótszej ścieżki wydruk będzie szybszy."
  2531. msgctxt "machine_steps_per_mm_e label"
  2532. msgid "Steps per Millimeter (E)"
  2533. msgstr "Kroki na milimetr (E)"
  2534. msgctxt "machine_steps_per_mm_x label"
  2535. msgid "Steps per Millimeter (X)"
  2536. msgstr "Kroki na milimetr (X)"
  2537. msgctxt "machine_steps_per_mm_y label"
  2538. msgid "Steps per Millimeter (Y)"
  2539. msgstr "Kroki na milimetr (Y)"
  2540. msgctxt "machine_steps_per_mm_z label"
  2541. msgid "Steps per Millimeter (Z)"
  2542. msgstr "Kroki na milimetr (Z)"
  2543. msgctxt "support description"
  2544. msgid "Support"
  2545. msgstr "Podpory"
  2546. msgctxt "support label"
  2547. msgid "Support"
  2548. msgstr "Podpory"
  2549. msgctxt "acceleration_support label"
  2550. msgid "Support Acceleration"
  2551. msgstr "Przyspieszenie Podpór"
  2552. msgctxt "support_bottom_distance label"
  2553. msgid "Support Bottom Distance"
  2554. msgstr "Odległ. na Dole Podpory"
  2555. msgctxt "support_bottom_wall_count label"
  2556. msgid "Support Bottom Wall Line Count"
  2557. msgstr "Ilość Ścianek Podpory"
  2558. msgctxt "support_brim_line_count label"
  2559. msgid "Support Brim Line Count"
  2560. msgstr "Ilość Linii Obrysu Podpór"
  2561. msgctxt "support_brim_width label"
  2562. msgid "Support Brim Width"
  2563. msgstr "Szerokość Obrysu Podpór"
  2564. msgctxt "support_zag_skip_count label"
  2565. msgid "Support Chunk Line Count"
  2566. msgstr "Liczba Linii Kawałka Podpory"
  2567. msgctxt "support_skip_zag_per_mm label"
  2568. msgid "Support Chunk Size"
  2569. msgstr "Wielkość Kawałka Podpory"
  2570. msgctxt "support_infill_rate label"
  2571. msgid "Support Density"
  2572. msgstr "Gęstość Podpory"
  2573. msgctxt "support_xy_overrides_z label"
  2574. msgid "Support Distance Priority"
  2575. msgstr "Priorytet Odległości Podpory"
  2576. msgctxt "support_extruder_nr label"
  2577. msgid "Support Extruder"
  2578. msgstr "Ekstruder Podpory"
  2579. msgctxt "acceleration_support_bottom label"
  2580. msgid "Support Floor Acceleration"
  2581. msgstr "Przyspieszenie Podłoża Podpory"
  2582. msgctxt "support_bottom_density label"
  2583. msgid "Support Floor Density"
  2584. msgstr "Gęstość Podłoża Podpory"
  2585. msgctxt "support_bottom_extruder_nr label"
  2586. msgid "Support Floor Extruder"
  2587. msgstr "Ekstruder Podłoża Podpory"
  2588. msgctxt "support_bottom_material_flow label"
  2589. msgid "Support Floor Flow"
  2590. msgstr "Przepływ podstawy podpór"
  2591. msgctxt "support_bottom_offset label"
  2592. msgid "Support Floor Horizontal Expansion"
  2593. msgstr "Rozrost Poziomy Podłoża Podpór"
  2594. msgctxt "jerk_support_bottom label"
  2595. msgid "Support Floor Jerk"
  2596. msgstr "Zryw Podł. Podpór"
  2597. msgctxt "support_bottom_angles label"
  2598. msgid "Support Floor Line Directions"
  2599. msgstr "Kierunek linii podstawy podpór"
  2600. msgctxt "support_bottom_line_distance label"
  2601. msgid "Support Floor Line Distance"
  2602. msgstr "Odstęp między Liniami Podłoża Podpory"
  2603. msgctxt "support_bottom_line_width label"
  2604. msgid "Support Floor Line Width"
  2605. msgstr "Szerokość Linii Podłoża Podpory"
  2606. msgctxt "support_bottom_pattern label"
  2607. msgid "Support Floor Pattern"
  2608. msgstr "Wzór Podłoża Podpory"
  2609. msgctxt "speed_support_bottom label"
  2610. msgid "Support Floor Speed"
  2611. msgstr "Prędk. Podstawy Podpory"
  2612. msgctxt "support_bottom_height label"
  2613. msgid "Support Floor Thickness"
  2614. msgstr "Grubość Podłoża Podpory"
  2615. msgctxt "support_material_flow label"
  2616. msgid "Support Flow"
  2617. msgstr "Przepływ podpór"
  2618. msgctxt "support_offset label"
  2619. msgid "Support Horizontal Expansion"
  2620. msgstr "Poszerzenie Podpór Poziome"
  2621. msgctxt "acceleration_support_infill label"
  2622. msgid "Support Infill Acceleration"
  2623. msgstr "Przyspieszenie Wypełnienia Podpory"
  2624. msgctxt "support_infill_extruder_nr label"
  2625. msgid "Support Infill Extruder"
  2626. msgstr "Ekstruder Wypełnienia Podpory"
  2627. msgctxt "jerk_support_infill label"
  2628. msgid "Support Infill Jerk"
  2629. msgstr "Zryw Wypełnienia Podpory"
  2630. msgctxt "support_infill_sparse_thickness label"
  2631. msgid "Support Infill Layer Thickness"
  2632. msgstr "Wys. Warstwy Wypełn. Podpory"
  2633. msgctxt "support_infill_angles label"
  2634. msgid "Support Infill Line Directions"
  2635. msgstr "Kierunek Linii Wypełnienia Podpory"
  2636. msgctxt "speed_support_infill label"
  2637. msgid "Support Infill Speed"
  2638. msgstr "Prędkość Wypełn. Podpór"
  2639. msgctxt "acceleration_support_interface label"
  2640. msgid "Support Interface Acceleration"
  2641. msgstr "Przyspieszenie Pow. Styku Podpory"
  2642. msgctxt "support_interface_density label"
  2643. msgid "Support Interface Density"
  2644. msgstr "Gęstość Połączenia Podpory"
  2645. msgctxt "support_interface_extruder_nr label"
  2646. msgid "Support Interface Extruder"
  2647. msgstr "Ekstruder Połączenia Podpory"
  2648. msgctxt "support_interface_material_flow label"
  2649. msgid "Support Interface Flow"
  2650. msgstr "Przepływ podłoża podpór"
  2651. msgctxt "support_interface_offset label"
  2652. msgid "Support Interface Horizontal Expansion"
  2653. msgstr "Rozrost Poziomy Interfejsu Podpór"
  2654. msgctxt "jerk_support_interface label"
  2655. msgid "Support Interface Jerk"
  2656. msgstr "Zryw Połączenia Podpory"
  2657. msgctxt "support_interface_angles label"
  2658. msgid "Support Interface Line Directions"
  2659. msgstr "Kierunek linii podłoża podpór"
  2660. msgctxt "support_interface_line_width label"
  2661. msgid "Support Interface Line Width"
  2662. msgstr "Szerokość Linii Połączenia Podpory"
  2663. msgctxt "support_interface_pattern label"
  2664. msgid "Support Interface Pattern"
  2665. msgstr "Wzór Połączenia Podpory"
  2666. msgctxt "support_interface_priority label"
  2667. msgid "Support Interface Priority"
  2668. msgstr ""
  2669. msgctxt "speed_support_interface label"
  2670. msgid "Support Interface Speed"
  2671. msgstr "Prędk. Połączenia Podpór"
  2672. msgctxt "support_interface_height label"
  2673. msgid "Support Interface Thickness"
  2674. msgstr "Grubość Połączenia Podpory"
  2675. msgctxt "support_interface_wall_count label"
  2676. msgid "Support Interface Wall Line Count"
  2677. msgstr "Ilość Ścianek Podpory"
  2678. msgctxt "jerk_support label"
  2679. msgid "Support Jerk"
  2680. msgstr "Zryw Podpory"
  2681. msgctxt "support_join_distance label"
  2682. msgid "Support Join Distance"
  2683. msgstr "Odległość Łączenia Podpór"
  2684. msgctxt "support_line_distance label"
  2685. msgid "Support Line Distance"
  2686. msgstr "Odstępy między Liniami Podpory"
  2687. msgctxt "support_line_width label"
  2688. msgid "Support Line Width"
  2689. msgstr "Szerokość Linii Podpory"
  2690. msgctxt "support_mesh label"
  2691. msgid "Support Mesh"
  2692. msgstr "Siatka Podpory"
  2693. msgctxt "support_angle label"
  2694. msgid "Support Overhang Angle"
  2695. msgstr "Kąt Zwisu dla Podpory"
  2696. msgctxt "support_pattern label"
  2697. msgid "Support Pattern"
  2698. msgstr "Wzór Podpory"
  2699. msgctxt "support_type label"
  2700. msgid "Support Placement"
  2701. msgstr "Rozmieszczenie Podpór"
  2702. msgctxt "acceleration_support_roof label"
  2703. msgid "Support Roof Acceleration"
  2704. msgstr "Przyspieszenie Dachu Podpory"
  2705. msgctxt "support_roof_density label"
  2706. msgid "Support Roof Density"
  2707. msgstr "Gęstość Dachu Podpory"
  2708. msgctxt "support_roof_extruder_nr label"
  2709. msgid "Support Roof Extruder"
  2710. msgstr "Ekstruder Dachu Podpory"
  2711. msgctxt "support_roof_material_flow label"
  2712. msgid "Support Roof Flow"
  2713. msgstr "Przepływ dachów podpór"
  2714. msgctxt "support_roof_offset label"
  2715. msgid "Support Roof Horizontal Expansion"
  2716. msgstr "Rozrost Poziomy Dachu Podpór"
  2717. msgctxt "jerk_support_roof label"
  2718. msgid "Support Roof Jerk"
  2719. msgstr "Zryw Dachu Podpory"
  2720. msgctxt "support_roof_angles label"
  2721. msgid "Support Roof Line Directions"
  2722. msgstr "Kierunek linii dachu podpór"
  2723. msgctxt "support_roof_line_distance label"
  2724. msgid "Support Roof Line Distance"
  2725. msgstr "Odległość Linii Dachu Podpory"
  2726. msgctxt "support_roof_line_width label"
  2727. msgid "Support Roof Line Width"
  2728. msgstr "Szerokość Linii Dachu Podpory"
  2729. msgctxt "support_roof_pattern label"
  2730. msgid "Support Roof Pattern"
  2731. msgstr "Wzór Dachu Podpory"
  2732. msgctxt "speed_support_roof label"
  2733. msgid "Support Roof Speed"
  2734. msgstr "Prędkość Dachu Podpory"
  2735. msgctxt "support_roof_height label"
  2736. msgid "Support Roof Thickness"
  2737. msgstr "Grubość Dachu Podpory"
  2738. msgctxt "support_roof_wall_count label"
  2739. msgid "Support Roof Wall Line Count"
  2740. msgstr "Ilość Ścianek Podpory"
  2741. msgctxt "speed_support label"
  2742. msgid "Support Speed"
  2743. msgstr "Prędkość Podpór"
  2744. msgctxt "support_bottom_stair_step_height label"
  2745. msgid "Support Stair Step Height"
  2746. msgstr "Wysokość Stopnia Podpory"
  2747. msgctxt "support_bottom_stair_step_width label"
  2748. msgid "Support Stair Step Maximum Width"
  2749. msgstr "Maks. Szerokość Stopnia Podpory"
  2750. msgctxt "support_bottom_stair_step_min_slope label"
  2751. msgid "Support Stair Step Minimum Slope Angle"
  2752. msgstr ""
  2753. msgctxt "support_structure label"
  2754. msgid "Support Structure"
  2755. msgstr ""
  2756. msgctxt "support_top_distance label"
  2757. msgid "Support Top Distance"
  2758. msgstr "Odległość od Góry Podpory"
  2759. msgctxt "support_wall_count label"
  2760. msgid "Support Wall Line Count"
  2761. msgstr "Ilość Ścianek Podpory"
  2762. msgctxt "support_xy_distance label"
  2763. msgid "Support X/Y Distance"
  2764. msgstr "Odległość X/Y Podpory"
  2765. msgctxt "support_z_distance label"
  2766. msgid "Support Z Distance"
  2767. msgstr "Odległość Podpory Z"
  2768. msgctxt "support_interface_priority option support_lines_overwrite_interface_area"
  2769. msgid "Support lines preferred"
  2770. msgstr ""
  2771. msgctxt "support_interface_priority option support_area_overwrite_interface_area"
  2772. msgid "Support preferred"
  2773. msgstr ""
  2774. msgctxt "support_supported_skin_fan_speed label"
  2775. msgid "Supported Skin Fan Speed"
  2776. msgstr "Prędkość Wentylatora Podpartej Powłoki"
  2777. msgctxt "magic_mesh_surface_mode option surface"
  2778. msgid "Surface"
  2779. msgstr "Powierzchnia"
  2780. msgctxt "material_surface_energy label"
  2781. msgid "Surface Energy"
  2782. msgstr "Energia Powierzchni"
  2783. msgctxt "magic_mesh_surface_mode label"
  2784. msgid "Surface Mode"
  2785. msgstr "Tryb Powierzchni"
  2786. msgctxt "material_adhesion_tendency description"
  2787. msgid "Surface adhesion tendency."
  2788. msgstr "Tendencja przyczepności powierzchni."
  2789. msgctxt "material_surface_energy description"
  2790. msgid "Surface energy."
  2791. msgstr "Energia powierzchni."
  2792. msgctxt "brim_smart_ordering description"
  2793. msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal."
  2794. msgstr ""
  2795. msgctxt "alternate_carve_order description"
  2796. msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes."
  2797. msgstr "Przełącz się, to której przecinającej się siatki będą należały z każdą warstwą, tak że nakładające się siatki przeplatają się. Wyłączenie tej opcji spowoduje, że jedna siatka uzyska całą objętość podczas nakładania się, kiedy jest usunięta z pozostałych siatek."
  2798. msgctxt "adaptive_layer_height_threshold description"
  2799. msgid "Target horizontal distance between two adjacent layers. Reducing this setting causes thinner layers to be used to bring the edges of the layers closer together."
  2800. msgstr "Docelowa odległość pozioma między dwiema sąsiadującymi warstwami. Zmniejszenie tego ustawienia powoduje użycie cieńszych warstw w celu przybliżenia krawędzi warstw."
  2801. msgctxt "layer_start_x description"
  2802. msgid "The X coordinate of the position near where to find the part to start printing each layer."
  2803. msgstr "Współrzędna X pozycji blisko miejsca gdzie ma rozpoczynać się drukowanie każdej warstwy."
  2804. msgctxt "z_seam_x description"
  2805. msgid "The X coordinate of the position near where to start printing each part in a layer."
  2806. msgstr "Współrzędna X położenia, w pobliżu miejsca rozpoczęcia drukowania każdej warstwy."
  2807. msgctxt "extruder_prime_pos_x description"
  2808. msgid "The X coordinate of the position where the nozzle primes at the start of printing."
  2809. msgstr "Współrzędna X, w której dysza jest czyszczona na początku wydruku."
  2810. msgctxt "layer_start_y description"
  2811. msgid "The Y coordinate of the position near where to find the part to start printing each layer."
  2812. msgstr "Współrzędna Y pozycji blisko miejsca gdzie ma rozpoczynać się drukowanie każdej warstwy."
  2813. msgctxt "z_seam_y description"
  2814. msgid "The Y coordinate of the position near where to start printing each part in a layer."
  2815. msgstr "Współrzędna Y położenia, w pobliżu miejsca rozpoczęcia drukowania każdej warstwy."
  2816. msgctxt "extruder_prime_pos_y description"
  2817. msgid "The Y coordinate of the position where the nozzle primes at the start of printing."
  2818. msgstr "Współrzędna Y, w której dysza jest czyszczona na początku wydruku."
  2819. msgctxt "extruder_prime_pos_z description"
  2820. msgid "The Z coordinate of the position where the nozzle primes at the start of printing."
  2821. msgstr "Współrzędna Z, w której dysza jest czyszczona na początku wydruku."
  2822. msgctxt "acceleration_print_layer_0 description"
  2823. msgid "The acceleration during the printing of the initial layer."
  2824. msgstr "Przyspieszenie podczas drukowania pierwszej warstwy."
  2825. msgctxt "acceleration_layer_0 description"
  2826. msgid "The acceleration for the initial layer."
  2827. msgstr "Przyspieszenie dla początkowej warstwy."
  2828. msgctxt "acceleration_travel_layer_0 description"
  2829. msgid "The acceleration for travel moves in the initial layer."
  2830. msgstr "Przyspieszenie ruchów jałowych na pierwszej warstwie."
  2831. msgctxt "jerk_travel_layer_0 description"
  2832. msgid "The acceleration for travel moves in the initial layer."
  2833. msgstr "Przyspieszenie dla ruchów jałowych na początkowej warstwie."
  2834. msgctxt "acceleration_wall_x description"
  2835. msgid "The acceleration with which all inner walls are printed."
  2836. msgstr "Przyspieszenie, z jakim drukowane są ściany wewn."
  2837. msgctxt "acceleration_infill description"
  2838. msgid "The acceleration with which infill is printed."
  2839. msgstr "Przyspieszenie, z którym drukowane jest wypełnienie."
  2840. msgctxt "acceleration_ironing description"
  2841. msgid "The acceleration with which ironing is performed."
  2842. msgstr "Przyspieszenie, z jakim przeprowadzane jest prasowanie."
  2843. msgctxt "acceleration_print description"
  2844. msgid "The acceleration with which printing happens."
  2845. msgstr "Przyspieszenie, z jakim odbywa się drukowanie."
  2846. msgctxt "raft_base_acceleration description"
  2847. msgid "The acceleration with which the base raft layer is printed."
  2848. msgstr "Przyspieszenie, z jakim drukowana jest podstawowa warstwa tratwy."
  2849. msgctxt "acceleration_support_bottom description"
  2850. msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model."
  2851. msgstr "Przyspieszenie, z jakim są drukowane podłoża podpór. Drukowanie przy niższym przyspieszeniu może poprawić adhezję podpory na modelu."
  2852. msgctxt "acceleration_support_infill description"
  2853. msgid "The acceleration with which the infill of support is printed."
  2854. msgstr "Przyspieszenie, z których drukowane jest wypełnienie podpory."
  2855. msgctxt "raft_interface_acceleration description"
  2856. msgid "The acceleration with which the middle raft layer is printed."
  2857. msgstr "Przyspieszenie, z jakim drukowana jest środkowa warstwa tratwy."
  2858. msgctxt "acceleration_wall_0 description"
  2859. msgid "The acceleration with which the outermost walls are printed."
  2860. msgstr "Przyspieszenia, z jakim drukowane są ściany zewn."
  2861. msgctxt "acceleration_prime_tower description"
  2862. msgid "The acceleration with which the prime tower is printed."
  2863. msgstr "Przyspieszenie, z którym drukowana jest wieża czyszcząca."
  2864. msgctxt "raft_acceleration description"
  2865. msgid "The acceleration with which the raft is printed."
  2866. msgstr "Przyspieszenie, z jakim tratwa jest drukowana."
  2867. msgctxt "acceleration_support_interface description"
  2868. msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality."
  2869. msgstr "Przyspieszenie, z jakim drukowane są dachy i podłoża podpory. Drukowanie przy niższym przyspieszeniu może poprawić jakość zwisu."
  2870. msgctxt "acceleration_support_roof description"
  2871. msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality."
  2872. msgstr "Przyspieszenie, z jakim drukowane są dachy podpór. Drukowanie przy niższym przyspieszeniu może poprawić jakość zwisu."
  2873. msgctxt "acceleration_skirt_brim description"
  2874. msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration."
  2875. msgstr "Przyspieszenie z jakim drukowane są obwódka i obrys. Normalnie są one drukowane z przyspieszeniem pierwszej warstwy, ale czasami będziesz chciał wydrukować obwódkę i obrys z innym przyspieszeniem."
  2876. msgctxt "acceleration_support description"
  2877. msgid "The acceleration with which the support structure is printed."
  2878. msgstr "Przyspieszenie, z którym drukowane są podpory."
  2879. msgctxt "raft_surface_acceleration description"
  2880. msgid "The acceleration with which the top raft layers are printed."
  2881. msgstr "Przyspieszenie, z jakim drukowane są górne warstwy tratwy."
  2882. msgctxt "acceleration_wall_x_roofing description"
  2883. msgid "The acceleration with which the top surface inner walls are printed."
  2884. msgstr "Przyspieszenie, z jakim są drukowane wewnętrzne ścianki górnej powierzchni."
  2885. msgctxt "acceleration_wall_0_roofing description"
  2886. msgid "The acceleration with which the top surface outermost walls are printed."
  2887. msgstr "Przyspieszenie, z jakim są drukowane najbardziej zewnętrzne ściany górnej powierzchni."
  2888. msgctxt "acceleration_wall description"
  2889. msgid "The acceleration with which the walls are printed."
  2890. msgstr "Przyspieszenie, z jakim drukowane są ściany."
  2891. msgctxt "acceleration_roofing description"
  2892. msgid "The acceleration with which top surface skin layers are printed."
  2893. msgstr "Przyspieszenie, z jakim drukowane są warstwy górnej powierzchni skóry."
  2894. msgctxt "acceleration_topbottom description"
  2895. msgid "The acceleration with which top/bottom layers are printed."
  2896. msgstr "Przyspieszenie, z jakim drukowane są górne/dolne warstwy."
  2897. msgctxt "acceleration_travel description"
  2898. msgid "The acceleration with which travel moves are made."
  2899. msgstr "Przyspieszenie, z jakim wykonywane są ruchy jałowe."
  2900. msgctxt "ironing_flow description"
  2901. msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface."
  2902. msgstr "Ilość materiału, w odniesieniu do normalnej linii skóry, do ekstrudowania podczas prasowania. Pozostawianie dyszy napełnionej pomaga w wypełnianiu nierówności górnej powierzchni, ale zbyt duża ilość materiału może powodować nadekstruzję po stronie powierzchni."
  2903. msgctxt "infill_overlap description"
  2904. msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill."
  2905. msgstr "Ilość nałożenia pomiędzy wypełnieniem i ścianami w procentach szerokości linii wypełnienia. Delikatne nałożenie pozwala na lepsze połączenie ścian z wypełnieniem."
  2906. msgctxt "infill_overlap_mm description"
  2907. msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill."
  2908. msgstr "Ilość nałożenia pomiędzy wypełnieniem a ścianami. Nieznaczne nałożenie pozwala ściśle łączyć się z wypełnieniem."
  2909. msgctxt "switch_extruder_retraction_amount description"
  2910. msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone."
  2911. msgstr "Wielkość retrakcji przy przełączaniu ekstruderów. Ustaw na 0, aby wyłączyć retrakcję. Powinno być ustawione tak samo jak długość strefy grzania."
  2912. msgctxt "machine_nozzle_expansion_angle description"
  2913. msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle."
  2914. msgstr "Kąt pomiędzy poziomą powierzchnią a częścią stożkową bezpośrednio ponad dyszą."
  2915. msgctxt "support_tower_roof_angle description"
  2916. msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs."
  2917. msgstr "Kąt dachu wieży. Wyższa wartość powoduje punktowy dach wieży, a niższa wartość powoduje płaskie dachy wieży."
  2918. msgctxt "mold_angle description"
  2919. msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model."
  2920. msgstr "Kąt zwisania ścian zewnętrznych utworzonych dla formy. 0 ° spowoduje, że powłoka zewnętrzna formy będzie pionowa, a 90 ° sprawi, że na zewnątrz modelu podąży za konturem modelu."
  2921. msgctxt "support_tree_branch_diameter_angle description"
  2922. msgid "The angle of the branches' diameter as they gradually become thicker towards the bottom. An angle of 0 will cause the branches to have uniform thickness over their length. A bit of an angle can increase stability of the tree support."
  2923. msgstr "Kąt średnicy gałęzi, które stają się grubsze bliżej podłoża. Kąt 0 spowoduje równą grubość na całej długości gałęzi. Delikatny kąt może spowodować lepszą stabilność podpór."
  2924. msgctxt "support_conical_angle description"
  2925. msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top."
  2926. msgstr "Kąt nachylenia podpory stożkowej. Przy 0 stopniach jest pionowa a przy 90 stopniach jest pozioma. Mniejsze kąty sprawiają, że podparcie jest bardziej wytrzymałe, ale składa się z większej ilości materiału. Kąty ujemne powodują, że podstawa wspornika jest szersza niż góra."
  2927. msgctxt "magic_fuzzy_skin_point_density description"
  2928. msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution."
  2929. msgstr "Średnia gęstość punktów wprowadzonych na każdy wielokąt na warstwie. Zauważ, że oryginalne punkty wielokąta są odrzucane, a więc niska gęstość powoduje zmniejszenie rozdzielczości."
  2930. msgctxt "magic_fuzzy_skin_point_dist description"
  2931. msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness."
  2932. msgstr "Średnia odległość między losowymi punktami wprowadzonymi w każdym segmencie linii. Zwróć uwagę, że oryginalne punkty wielokąta są odrzucane, a zatem duża gładkość powoduje zmniejszenie rozdzielczości. Wartość ta musi być większa niż połowa Grubości Nierównej Skóry."
  2933. msgctxt "material_brand description"
  2934. msgid "The brand of material used."
  2935. msgstr ""
  2936. msgctxt "machine_acceleration description"
  2937. msgid "The default acceleration of print head movement."
  2938. msgstr "Domyślną przyspieszenie ruchu głowicy."
  2939. msgctxt "default_material_print_temperature description"
  2940. msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value"
  2941. msgstr "Domyślna temperatura używana do drukowania. Powinno to być \"podstawowa\" temperatura materiału. Wszystkie inne temperatury powinny wykorzystywać przesunięcie względem tej wartości"
  2942. msgctxt "default_material_bed_temperature description"
  2943. msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value"
  2944. msgstr "Domyślna temperatura używana dla podgrzewanej platformy roboczej. To powinna być \"bazowa\" temperatura platformy roboczej. Wszystkie inne temperatury drukowania powinny używać przesunięcia względem tej wartości"
  2945. msgctxt "bridge_skin_density description"
  2946. msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  2947. msgstr "Gęstość warstwy skóry mostu. Wartości mniejsze od 100 będą zwiększać przerwy pomiędzy liniami skóry."
  2948. msgctxt "support_bottom_density description"
  2949. msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model."
  2950. msgstr "Gęstość podłoża podpory. Wyższa wartość powoduje lepszą adhezję podpory na górze modelu."
  2951. msgctxt "support_roof_density description"
  2952. msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  2953. msgstr "Gęstość dachów podpór. Wyższa wartość powoduje lepsze zwisy, ale podpory są trudniejsze do usunięcia."
  2954. msgctxt "bridge_skin_density_2 description"
  2955. msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  2956. msgstr "Gęstość drugiej warstwy skóry mostu. Wartości mniejsze od 100 będą zwiększać przerwy pomiędzy liniami skóry."
  2957. msgctxt "bridge_skin_density_3 description"
  2958. msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  2959. msgstr "Gęstość trzeciej warstwy skóry mostu. Wartości mniejsze od 100 będą zwiększać przerwy pomiędzy liniami skóry."
  2960. msgctxt "machine_depth description"
  2961. msgid "The depth (Y-direction) of the printable area."
  2962. msgstr "Głębokość (w kierunku Y) obszaru drukowania."
  2963. msgctxt "support_tower_diameter description"
  2964. msgid "The diameter of a special tower."
  2965. msgstr "Średnica wieży specjalnej."
  2966. msgctxt "support_tree_branch_diameter description"
  2967. msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this."
  2968. msgstr "Średnica najcieńszej gałęzi drzewiastej podpory. Grubsze gałęzie są bardziej sztywne. Gałęzie bliżej podłoża będą grubsze od tego."
  2969. msgctxt "support_tree_tip_diameter description"
  2970. msgid "The diameter of the top of the tip of the branches of tree support."
  2971. msgstr ""
  2972. msgctxt "machine_feeder_wheel_diameter description"
  2973. msgid "The diameter of the wheel that drives the material in the feeder."
  2974. msgstr "Średnica koła, które przesuwa materiał w podajniku."
  2975. msgctxt "support_tree_max_diameter description"
  2976. msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate."
  2977. msgstr ""
  2978. msgctxt "adaptive_layer_height_variation_step description"
  2979. msgid "The difference in height of the next layer height compared to the previous one."
  2980. msgstr "Różnica w wysokości pomiędzy następną wysokością warstwy i poprzednią."
  2981. msgctxt "ironing_line_spacing description"
  2982. msgid "The distance between the lines of ironing."
  2983. msgstr "Odległość pomiędzy liniami prasowania."
  2984. msgctxt "travel_avoid_distance description"
  2985. msgid "The distance between the nozzle and already printed parts when avoiding during travel moves."
  2986. msgstr "Odległość między dyszą a już wydrukowanym elementem, gdy są one omijane podczas ruchu jałowego."
  2987. msgctxt "raft_base_line_spacing description"
  2988. msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate."
  2989. msgstr "Odległość pomiędzy linami tratwy na podstawowej warstwie tratwy. Szerokie odstępy ułatwiają usuwanie tratwy ze stołu."
  2990. msgctxt "raft_interface_line_spacing description"
  2991. msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers."
  2992. msgstr "Odległość między liniami na środkowej warstwie tratwy. Odległość środkowa powinna być dość szeroka, a jednocześnie wystarczająco gęsta, aby podtrzymywać górne warstwy tratwy."
  2993. msgctxt "raft_surface_line_spacing description"
  2994. msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid."
  2995. msgstr "Odległość między liniami na górnej warstwie tratwy. Rozstaw powinien być równy szerokości linii, tak że powierzchnia jest pełna."
  2996. msgctxt "prime_tower_raft_base_line_spacing description"
  2997. msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate."
  2998. msgstr ""
  2999. msgctxt "interlocking_depth description"
  3000. msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion."
  3001. msgstr ""
  3002. msgctxt "brim_width description"
  3003. msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area."
  3004. msgstr "Odległość od modelu do najbardziej wysuniętej na zewnątrz linii obrysu. Większy obrys zwiększa adhezję do stołu, ale również zmniejsza efektywny obszar wydruku."
  3005. msgctxt "interlocking_boundary_avoidance description"
  3006. msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells."
  3007. msgstr "Odległość od końcówki dyszy, gdzie parkować głowicę gdy nie jest używana."
  3008. msgctxt "machine_heat_zone_length description"
  3009. msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament."
  3010. msgstr "Odległość od końcówki dyszy, z której ciepło dyszy przenoszone jest do filamentu."
  3011. msgctxt "bottom_skin_expand_distance description"
  3012. msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used."
  3013. msgstr "Odległość na jaką dolne skóry są rozszerzane w kierunku wypełnienia. Wyższe wartości powodują lepsze łączenie się skóry i wypełnienia i powodują, że ściany sąsiednich warstw lepiej łączą się ze skórą. Niższe wartości oszczędzają materiał."
  3014. msgctxt "expand_skins_expand_distance description"
  3015. msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used."
  3016. msgstr "Odległość na jaką skóry są rozszerzane w kierunku wypełnienia. Wyższe wartości powodują lepsze łączenie się skóry i wypełnienia i powodują, że ściany sąsiednich warstw lepiej łączą się ze skórą. Niższe wartości oszczędzają materiał."
  3017. msgctxt "top_skin_expand_distance description"
  3018. msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used."
  3019. msgstr "Odległość na jaką górne skóry są rozszerzane w kierunku wypełnienia. Wyższe wartości powodują lepsze łączenie się skóry i wypełnienia i powodują, że ściany sąsiednich warstw lepiej łączą się ze skórą. Niższe wartości oszczędzają materiał."
  3020. msgctxt "wipe_move_distance description"
  3021. msgid "The distance to move the head back and forth across the brush."
  3022. msgstr "Odległość, którą głowica musi pokonać w tę i z powrotem po szczotce."
  3023. msgctxt "lightning_infill_prune_angle description"
  3024. msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines."
  3025. msgstr ""
  3026. msgctxt "material_extrusion_cool_down_speed description"
  3027. msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding."
  3028. msgstr "Dodatkowa szybkość, w wyniku której dysze chłodzą się podczas ekstruzji. Ta sama wartość jest używana do oznaczania szybkości utraty ciepła podczas nagrzewania w czasie ekstruzji."
  3029. msgctxt "support_extruder_nr_layer_0 description"
  3030. msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion."
  3031. msgstr "Ekstruder wykorzystywany do drukowania pierwszej warstwy wypełnienia podpory. Używane do multi-ekstruzji."
  3032. msgctxt "raft_base_extruder_nr description"
  3033. msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion."
  3034. msgstr ""
  3035. msgctxt "support_bottom_extruder_nr description"
  3036. msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion."
  3037. msgstr "Ekstruder używany do druku podłoża podpory. Służy do multi-ekstruzji."
  3038. msgctxt "support_infill_extruder_nr description"
  3039. msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion."
  3040. msgstr "Ekstruder wykorzystywany do drukowania wypełnienia podpory. Używane do multi-ekstruzji."
  3041. msgctxt "raft_interface_extruder_nr description"
  3042. msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion."
  3043. msgstr ""
  3044. msgctxt "support_interface_extruder_nr description"
  3045. msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion."
  3046. msgstr "Ekstruder wykorzystywany do drukowania dachów i podłoży podpory. Używane do multi-ekstruzji."
  3047. msgctxt "support_roof_extruder_nr description"
  3048. msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion."
  3049. msgstr "Ekstruder wykorzystywany do drukowania dachów podpory. Używany do multi-ekstruzji."
  3050. msgctxt "skirt_brim_extruder_nr description"
  3051. msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion."
  3052. msgstr ""
  3053. msgctxt "adhesion_extruder_nr description"
  3054. msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion."
  3055. msgstr "Ekstruder używany do drukowania obwódki/obrysu/tratwy. Używane przy multi-ekstruzji."
  3056. msgctxt "support_extruder_nr description"
  3057. msgid "The extruder train to use for printing the support. This is used in multi-extrusion."
  3058. msgstr "Ekstruder używany do drukowania podpory. Używane do multi-ekstruzji."
  3059. msgctxt "raft_surface_extruder_nr description"
  3060. msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion."
  3061. msgstr ""
  3062. msgctxt "infill_extruder_nr description"
  3063. msgid "The extruder train used for printing infill. This is used in multi-extrusion."
  3064. msgstr "Ekstruder używany do drukowania wypełnienia. Używane w multi-ekstruzji."
  3065. msgctxt "wall_x_extruder_nr description"
  3066. msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion."
  3067. msgstr "Ekstruder używany do drukowania wenw. ściany. Używane w multi-ekstruzji."
  3068. msgctxt "wall_0_extruder_nr description"
  3069. msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion."
  3070. msgstr "Esktruder używany do drukowania zewn. ściany. Używane w multi-ekstruzji."
  3071. msgctxt "top_bottom_extruder_nr description"
  3072. msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion."
  3073. msgstr "Ekstruder używany do drukowania górnej i dolnej skóry. Używane w multi-ekstruzji."
  3074. msgctxt "roofing_extruder_nr description"
  3075. msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion."
  3076. msgstr "Esktruder używany do drukowania górnej skóry. Używane w multi-ekstruzji."
  3077. msgctxt "wall_extruder_nr description"
  3078. msgid "The extruder train used for printing the walls. This is used in multi-extrusion."
  3079. msgstr "Ekstruder używany do drukowania ścian. Używane w multi-esktruzji."
  3080. msgctxt "raft_base_fan_speed description"
  3081. msgid "The fan speed for the base raft layer."
  3082. msgstr "Prędkość wentylatora dla podstawowej warstwy tratwy."
  3083. msgctxt "raft_interface_fan_speed description"
  3084. msgid "The fan speed for the middle raft layer."
  3085. msgstr "Prędkość wentylatora dla środkowej warstwy tratwy."
  3086. msgctxt "raft_fan_speed description"
  3087. msgid "The fan speed for the raft."
  3088. msgstr "Prędkość wentylatora dla tratwy."
  3089. msgctxt "raft_surface_fan_speed description"
  3090. msgid "The fan speed for the top raft layers."
  3091. msgstr "Prędkość wentylatora dla górnych warstw tratwy."
  3092. msgctxt "cross_infill_density_image description"
  3093. msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print."
  3094. msgstr "Lokalizacja pliku obrazu, którego jasność będzie determinowała minimalną gęstość wypełnienia wydruku w danym punkcie."
  3095. msgctxt "cross_support_density_image description"
  3096. msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support."
  3097. msgstr "Lokalizacja pliku obrazu, którego jasność będzie determinowała minimalną gęstość wypełnienia podstawy w danym punkcie."
  3098. msgctxt "speed_slowdown_layers description"
  3099. msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers."
  3100. msgstr "Pierwsze warstwy są drukowane wolniej niż w pozostałej części modelu, więc lepiej przylegają do stołu i zwiększa się prawdopodobieństwo sukcesu. Prędkość wzrasta stopniowo w czasie druku tych warstw."
  3101. msgctxt "raft_airgap description"
  3102. msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft."
  3103. msgstr "Przerwa pomiędzy ostatnią warstwą tratwy a pierwszą warstwą modelu. Tylko ta pierwsza warstwa jest podnoszona o tę wartość w celu zmniejszenia wiązania pomiędzy warstwą tratwy a modelem. Ułatwia to odrywanie tratwy."
  3104. msgctxt "machine_height description"
  3105. msgid "The height (Z-direction) of the printable area."
  3106. msgstr "Wysokość (w kierunku Z) obszaru drukowania."
  3107. msgctxt "mold_roof_height description"
  3108. msgid "The height above horizontal parts in your model which to print mold."
  3109. msgstr "Wysokość nad poziomymi częściami w modelu, które będą drukowanie jako formy."
  3110. msgctxt "cool_fan_full_at_height description"
  3111. msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed."
  3112. msgstr "Wysokość na jakiej wentylatory będą obracać się z regularną prędkością. Na niższych warstwach prędkość wentylatorów będzie stopniowo zwiększać się z Początk. Pręd. Wentylatora do Regularnej Pręd. Wentylatora."
  3113. msgctxt "gantry_height description"
  3114. msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)."
  3115. msgstr "Różnica wysokości między wierzchołkiem dyszy a suwnicą (gantry) (osie X i Y)."
  3116. msgctxt "machine_nozzle_head_distance description"
  3117. msgid "The height difference between the tip of the nozzle and the lowest part of the print head."
  3118. msgstr "Różnica w wysokości pomiędzy końcówką dyszy a najniższą częścą głowicy drukującej."
  3119. msgctxt "retraction_hop_after_extruder_switch_height description"
  3120. msgid "The height difference when performing a Z Hop after extruder switch."
  3121. msgstr "Różnica wysokości podczas wykonywania skoku Z po zmianie ekstrudera."
  3122. msgctxt "retraction_hop description"
  3123. msgid "The height difference when performing a Z Hop."
  3124. msgstr "Różnica w wysokości podczas przeprowadzania Skoku Z."
  3125. msgctxt "wipe_hop_amount description"
  3126. msgid "The height difference when performing a Z Hop."
  3127. msgstr "Różnica w wysokości podczas przeprowadzania Skoku Z."
  3128. msgctxt "layer_height description"
  3129. msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution."
  3130. msgstr "Grubość każdej warstwy w mm. Wyższe wartości powodują szybszy wydruk w niskiej rozdzielczości, niższe wartości powodują wolniejszy wydruk w wyższej rozdzielczości."
  3131. msgctxt "gradual_infill_step_height description"
  3132. msgid "The height of infill of a given density before switching to half the density."
  3133. msgstr "Wysokość wypełnienia o danej gęstości przed przejściem na połowę gęstości."
  3134. msgctxt "gradual_support_infill_step_height description"
  3135. msgid "The height of support infill of a given density before switching to half the density."
  3136. msgstr "Wysokość wypełnienia podpory o danej gęstości przed przełączeniem na połowę gęstości."
  3137. msgctxt "interlocking_beam_layer_count description"
  3138. msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects."
  3139. msgstr ""
  3140. msgctxt "interlocking_orientation description"
  3141. msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects."
  3142. msgstr ""
  3143. msgctxt "layer_height_0 description"
  3144. msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier."
  3145. msgstr "Wysokość początkowej warstwy w mm. Grubsza początkowa warstwa powoduje lepszą przyczepność do stołu."
  3146. msgctxt "prime_tower_base_height description"
  3147. msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base."
  3148. msgstr ""
  3149. msgctxt "support_bottom_stair_step_height description"
  3150. msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour."
  3151. msgstr "Wysokość stopni w schodkowym dole podpory spoczywającej na modelu. Niska wartość utrudnia usunięcie podpory, ale zbyt duża wartość może prowadzić do niestabilnej podpory. Ustaw na zero, aby wyłączyć zachowanie schodkowe."
  3152. msgctxt "brim_gap description"
  3153. msgid "The horizontal distance between the first brim line and the outline of the first layer of the print. A small gap can make the brim easier to remove while still providing the thermal benefits."
  3154. msgstr ""
  3155. msgctxt "skirt_gap description"
  3156. msgid ""
  3157. "The horizontal distance between the skirt and the first layer of the print.\n"
  3158. "This is the minimum distance. Multiple skirt lines will extend outwards from this distance."
  3159. msgstr ""
  3160. "Pozioma odległość między obwódką a pierwszą warstwą nadruku.\n"
  3161. "Jest to o minimalnej odległości. Z tej odległości linie będą nakładane w kierunku zewnętrznym."
  3162. msgctxt "lightning_infill_straightening_angle description"
  3163. msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line."
  3164. msgstr ""
  3165. msgctxt "infill_offset_x description"
  3166. msgid "The infill pattern is moved this distance along the X axis."
  3167. msgstr "Wzór wypełnienia jest przesunięty o tę odległość wzdłuż osi X."
  3168. msgctxt "infill_offset_y description"
  3169. msgid "The infill pattern is moved this distance along the Y axis."
  3170. msgstr "Wzór wypełnienia jest przesunięty o tę odległość wzdłuż osi Y."
  3171. msgctxt "machine_nozzle_size description"
  3172. msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size."
  3173. msgstr "Wewnętrzna średnica dyszy. Użyj tego ustawienia, jeśli używasz dyszę o niestandardowym rozmiarze."
  3174. msgctxt "raft_base_jerk description"
  3175. msgid "The jerk with which the base raft layer is printed."
  3176. msgstr "Zryw, z którym drukowana jest podstawowa warstwa tratwy."
  3177. msgctxt "raft_interface_jerk description"
  3178. msgid "The jerk with which the middle raft layer is printed."
  3179. msgstr "Zryw, z którym drukowany jest środek tratwy."
  3180. msgctxt "raft_jerk description"
  3181. msgid "The jerk with which the raft is printed."
  3182. msgstr "Zryw, z jakim drukowana jest tratwa."
  3183. msgctxt "raft_surface_jerk description"
  3184. msgid "The jerk with which the top raft layers are printed."
  3185. msgstr "Zryw, z jakim drukowane są górne warstwy tratwy."
  3186. msgctxt "bottom_skin_preshrink description"
  3187. msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model."
  3188. msgstr "Największa szerokość dolnych pow. skóry, które mają zostać usunięte. Każda pow. skóry mniejsza niż ta wartość zniknie. Może to pomóc w ograniczeniu ilości czasu i materiału zużywanego na drukowanie dolnych skór na pochyłych powierzchniach modelu."
  3189. msgctxt "skin_preshrink description"
  3190. msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model."
  3191. msgstr "Największa szerokość pow. skóry, które mają zostać usunięte. Każda pow. skóry mniejsza niż ta wartość zniknie. Może to pomóc w ograniczeniu ilości czasu i materiału zużywanego na drukowanie górnych/dolnych skór na pochyłych powierzchniach modelu."
  3192. msgctxt "top_skin_preshrink description"
  3193. msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model."
  3194. msgstr "Największa szerokość górnej pow. skóry, które mają zostać usunięte. Każda pow. skóry mniejsza niż ta wartość zniknie. Może to pomóc w ograniczeniu ilości czasu i materiału zużywanego na drukowanie górnych skór na pochyłych powierzchniach modelu."
  3195. msgctxt "cool_fan_full_layer description"
  3196. msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number."
  3197. msgstr "Warstwa, na której wentylatory obracają się z normalną prędkością. Jeśli ustawiona jest Regularna Pręd. Went. na Wysokości, wartość ta jest obliczana i zaokrąglana do liczby całkowitej."
  3198. msgctxt "cool_min_layer_time_fan_speed_max description"
  3199. msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed."
  3200. msgstr "Czas warstwy, który ustala próg pomiędzy regularną prędkością wentylatora a maksymalną prędkością wentylatora. Warstwy, które są drukowane wolniej niż ten czas, używają regularnej prędkości wentylatora. W przypadku szybszych warstw prędkość wentylatora stopniowo wzrasta w kierunku maksymalnej prędkości wentylatora."
  3201. msgctxt "retraction_amount description"
  3202. msgid "The length of material retracted during a retraction move."
  3203. msgstr "Długość materiału wycofanego podczas retrakcji."
  3204. msgctxt "prime_tower_base_curve_magnitude description"
  3205. msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker."
  3206. msgstr ""
  3207. msgctxt "machine_buildplate_type description"
  3208. msgid "The material of the build plate installed on the printer."
  3209. msgstr "Materiał platformy roboczej zainstalowanej w drukarce."
  3210. msgctxt "adaptive_layer_height_variation description"
  3211. msgid "The maximum allowed height different from the base layer height."
  3212. msgstr "Maksymalna dozwolona różnica wysokości względem bazowej wysokości warstwy."
  3213. msgctxt "ooze_shield_angle description"
  3214. msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material."
  3215. msgstr "Maksymalny kąt, jaki będzie mieć część w tarczy wycierającej. Przy 0 stopniach jest pionowa i 90 stopni jest pozioma. Mniejszy kąt prowadzi do mniej nieudanych osłon, ale używa więcej materiału."
  3216. msgctxt "conical_overhang_angle description"
  3217. msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way."
  3218. msgstr "Maksymalny kąt zwisów po którym będą one drukowalne. Przy wartości 0 ° wszystkie zwisy są zastępowane przez fragment modelu połączony ze stołem, a 90 ° w żaden sposób nie zmienia modelu."
  3219. msgctxt "support_tree_angle description"
  3220. msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach."
  3221. msgstr ""
  3222. msgctxt "conical_overhang_hole_size description"
  3223. msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base."
  3224. msgstr ""
  3225. msgctxt "meshfix_maximum_deviation description"
  3226. msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true."
  3227. msgstr "Maksymalne odchylenie dozwolone przy zmniejszaniu rozdzielczości dla ustawienia maksymalnej rozdzielczości. Jeśli to zwiększysz, wydruk będzie mniej dokładny, ale g-code będzie mniejszy. Maksymalne odchylenie jest limitem dla maksymalnej rozdzielczości, więc wystąpi konflikt, maksymalne odchylenie zawsze będzie używane."
  3228. msgctxt "support_join_distance description"
  3229. msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one."
  3230. msgstr "Maksymalna odległość między konstrukcjami wspornymi w kierunkach X/Y. Kiedy oddzielne struktury są bliżej siebie niż ta wartość, struktury łączą się w jedną."
  3231. msgctxt "flow_rate_max_extrusion_offset description"
  3232. msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate."
  3233. msgstr "Maksymalna odległość w mm do przesuwania filamentu w celu kompensacji zmian wielkości przepływu."
  3234. msgctxt "meshfix_maximum_extrusion_area_deviation description"
  3235. msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller."
  3236. msgstr ""
  3237. msgctxt "jerk_print_layer_0 description"
  3238. msgid "The maximum instantaneous velocity change during the printing of the initial layer."
  3239. msgstr "Maksymalna zmiana prędkości chwilowej podczas drukowania pierwszej warstwy."
  3240. msgctxt "jerk_print description"
  3241. msgid "The maximum instantaneous velocity change of the print head."
  3242. msgstr "Maksymalna zmiana prędkości chwilowej głowicy drukującej."
  3243. msgctxt "jerk_ironing description"
  3244. msgid "The maximum instantaneous velocity change while performing ironing."
  3245. msgstr "Maksymalna nagła zmiana prędkości podczas przeprowadzania prasowania."
  3246. msgctxt "jerk_wall_x description"
  3247. msgid "The maximum instantaneous velocity change with which all inner walls are printed."
  3248. msgstr "Maksymalna zmiana prędkości chwilowej z jaką drukowane są wewnętrzne ściany."
  3249. msgctxt "jerk_infill description"
  3250. msgid "The maximum instantaneous velocity change with which infill is printed."
  3251. msgstr "Maksymalna zmiana prędkości chwilowej, z którą jest drukowane wypełnienie."
  3252. msgctxt "jerk_support_bottom description"
  3253. msgid "The maximum instantaneous velocity change with which the floors of support are printed."
  3254. msgstr "Maksymalna zmiana prędkości chwilowej z jaką drukowane są podłoża podpór."
  3255. msgctxt "jerk_support_infill description"
  3256. msgid "The maximum instantaneous velocity change with which the infill of support is printed."
  3257. msgstr "Maksymalna zmiana prędkości chwilowej z jaką drukowane jest wypełnienie podpory."
  3258. msgctxt "jerk_wall_0 description"
  3259. msgid "The maximum instantaneous velocity change with which the outermost walls are printed."
  3260. msgstr "Maksymalna zmiana prędkości chwilowej z jaką drukowane są zewnętrzne ściany."
  3261. msgctxt "jerk_prime_tower description"
  3262. msgid "The maximum instantaneous velocity change with which the prime tower is printed."
  3263. msgstr "Maksymalna zmiana chwilowej prędkości z jaką drukowana jest wieża czyszcząca."
  3264. msgctxt "jerk_support_interface description"
  3265. msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed."
  3266. msgstr "Maksymalna zmiana prędkości chwilowej z jaką drukowane są podłoża i dachy podpory."
  3267. msgctxt "jerk_support_roof description"
  3268. msgid "The maximum instantaneous velocity change with which the roofs of support are printed."
  3269. msgstr "Maksymalna zmiana prędkości chwilowej z jaką drukowane są dachy podpory."
  3270. msgctxt "jerk_skirt_brim description"
  3271. msgid "The maximum instantaneous velocity change with which the skirt and brim are printed."
  3272. msgstr "Maksymalna zmiana prędkości chwilowej z jaką drukowane są obwódka i obrys."
  3273. msgctxt "jerk_support description"
  3274. msgid "The maximum instantaneous velocity change with which the support structure is printed."
  3275. msgstr "Maksymalna zmiana prędkości chwilowej z jaką drukowane są podpory."
  3276. msgctxt "jerk_wall_x_roofing description"
  3277. msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed."
  3278. msgstr "Maksymalna chwilowa zmiana prędkości, z jaką drukowane są najbardziej zewnętrzne ściany górnej powierzchni."
  3279. msgctxt "jerk_wall_0_roofing description"
  3280. msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed."
  3281. msgstr "Maksymalna chwilowa zmiana prędkości, z jaką drukowane są wewnętrzne ściany górnej powierzchni."
  3282. msgctxt "jerk_wall description"
  3283. msgid "The maximum instantaneous velocity change with which the walls are printed."
  3284. msgstr "Maksymalna zmiana prędkości chwilowej z jaką drukowane są ściany."
  3285. msgctxt "jerk_roofing description"
  3286. msgid "The maximum instantaneous velocity change with which top surface skin layers are printed."
  3287. msgstr "Maksymalna nagła zmiana prędkości, z jaką drukowane są warstwy górnej powierzchni skóry."
  3288. msgctxt "jerk_topbottom description"
  3289. msgid "The maximum instantaneous velocity change with which top/bottom layers are printed."
  3290. msgstr "Maksymalna zmiana prędkości chwilowej z jaką drukowane są górne/dolne warstwy."
  3291. msgctxt "jerk_travel description"
  3292. msgid "The maximum instantaneous velocity change with which travel moves are made."
  3293. msgstr "Maksymalna zmiana prędkości chwilowej z jaką wykonywane są ruchy jałowe."
  3294. msgctxt "prime_tower_max_bridging_distance description"
  3295. msgid "The maximum length of the branches which may be printed over the air."
  3296. msgstr ""
  3297. msgctxt "machine_max_feedrate_x description"
  3298. msgid "The maximum speed for the motor of the X-direction."
  3299. msgstr "Maksymalna prędkość silnika osi X."
  3300. msgctxt "machine_max_feedrate_y description"
  3301. msgid "The maximum speed for the motor of the Y-direction."
  3302. msgstr "Maksymalna prędkość silnika osi Y."
  3303. msgctxt "machine_max_feedrate_z description"
  3304. msgid "The maximum speed for the motor of the Z-direction."
  3305. msgstr "Maksymalna prędkość silnika osi Z."
  3306. msgctxt "machine_max_feedrate_e description"
  3307. msgid "The maximum speed of the filament."
  3308. msgstr "Maksymalna prędkość filamentu."
  3309. msgctxt "support_bottom_stair_step_width description"
  3310. msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures."
  3311. msgstr "Maksymalna szerokość stopni dołu schodkowego podpory opartej na modelu. Niska wartość sprawia, że podpora jest trudniejsza do usunięcia, ale zbyt wysokie wartości mogą prowadzić do niestabilnych podpór."
  3312. msgctxt "mold_width description"
  3313. msgid "The minimal distance between the outside of the mold and the outside of the model."
  3314. msgstr ""
  3315. msgctxt "machine_minimum_feedrate description"
  3316. msgid "The minimal movement speed of the print head."
  3317. msgstr "Minimalna prędkość ruchu głowicy drukującej."
  3318. msgctxt "material_initial_print_temperature description"
  3319. msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start."
  3320. msgstr "Minimalna temperatura podczas podgrzewania do temperatury drukowania, przy której można rozpocząć drukowanie."
  3321. msgctxt "machine_min_cool_heat_time_window description"
  3322. msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature."
  3323. msgstr "Minimalny czas, w jakim ekstruder musi być nieużywany, aby schłodzić dyszę. Dopiero, gdy ekstruder nie jest używany dłużej niż przez ten czas, będzie można schłodzić dyszę do temp. czuwania."
  3324. msgctxt "infill_support_angle description"
  3325. msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill."
  3326. msgstr "Minimalny kąt zwisu wewnętrznego, dla którego zostanie dodane wypełnienie. Przy wartości 0° obiekty zostaną wypełnione całkowicie, natomiast przy 90° wypełnienie nie zostanie wygenerowane."
  3327. msgctxt "support_angle description"
  3328. msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support."
  3329. msgstr "Minimalny kąt zwisu, dla którego dodaje się podporę. Przy wartości 0 ° wszystkie zwisy są podparte, 90 ° nie zapewnia żadnego podparcia."
  3330. msgctxt "retraction_min_travel description"
  3331. msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area."
  3332. msgstr "Minimalna odległość ruchu jałowego potrzebna do wykonania retrkacji. Pomaga to uzyskać mniej retrakcji w małym obszarze."
  3333. msgctxt "skirt_brim_minimal_length description"
  3334. msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored."
  3335. msgstr "Minimalna długość obwódki lub obrysu. Jeśli ta długość nie zostanie osiągnięta przez całą linie obwódki lub obrysu, należy dodać więcej linii, aż do osiągnięcia minimalnej długości. Uwaga: Jeśli liczba linii jest ustawiona na 0, to opcja jest ignorowana."
  3336. msgctxt "min_odd_wall_line_width description"
  3337. msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width."
  3338. msgstr ""
  3339. msgctxt "min_even_wall_line_width description"
  3340. msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width."
  3341. msgstr ""
  3342. msgctxt "cool_min_speed description"
  3343. msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality."
  3344. msgstr "Minimalna szybkość drukowania, pomimo spowolnienia z powodu minimalnego czasu warstwy. Gdy drukarka spowolnia zbyt dużo, ciśnienie w dyszy jest zbyt niskie co pogarsza jakość wydruków."
  3345. msgctxt "meshfix_maximum_resolution description"
  3346. msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway."
  3347. msgstr "Minimalny rozmiar linii segmentu po pocięciu. Jeżeli to zwiększysz, siatka będzie miała mniejszą rozdzielczość. Może to spowodować przyspieszenie prędkości przetwarzania g-code i przyspieszenie prędkości cięcia poprzez usunięcie detali siatki, których tak czy tak nie można przetworzyć."
  3348. msgctxt "meshfix_maximum_travel_resolution description"
  3349. msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate."
  3350. msgstr "Minimalny rozmiar segmentu linii ruchu jałowego po pocięciu. Jeżeli ta wartość zostanie zwiększona, ruch jałowy będzie miał mniej gładkie zakręty. Może to spowodować przyspieszenie prędkości przetwarzania g-code, ale unikanie modelu może być mniej dokładne."
  3351. msgctxt "support_bottom_stair_step_min_slope description"
  3352. msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model."
  3353. msgstr ""
  3354. msgctxt "cool_min_layer_time description"
  3355. msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated."
  3356. msgstr "Minimalny czas spędzony na warstwie. Zmusza to drukarkę do spowolnienia, aby spędzić przynajmniej ten czas na jednej warstwie. Pozwala to na właściwe schłodzenie materiału przed wydrukowaniem następnej warstwy. Warstwy mogą nadal trwać krócej niż minimalny czas warstwy, jeśli Unieś Głowicę jest wyłączone, a jeśli Minimalna Prędkość zostanie w jakiś sposób zmieniona."
  3357. msgctxt "prime_tower_min_volume description"
  3358. msgid "The minimum volume for each layer of the prime tower in order to purge enough material."
  3359. msgstr "Minimalna objętość każdej warstwy wieży czyszczącej w celu oczyszczenia wystarczającej ilości materiału."
  3360. msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description"
  3361. msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model"
  3362. msgstr ""
  3363. msgctxt "machine_name description"
  3364. msgid "The name of your 3D printer model."
  3365. msgstr "Nazwa modelu twojej drukarki."
  3366. msgctxt "machine_nozzle_id description"
  3367. msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"."
  3368. msgstr "ID dyszy dla wózka ekstrudera np. \"AA 0.4\" i \"BB 0.8\"."
  3369. msgctxt "travel_avoid_other_parts description"
  3370. msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled."
  3371. msgstr "Dysza unika już wydrukowanych części podczas ruchu jałowego. Ta opcja jest dostępna tylko w przypadku włączonego trybu kombinowania."
  3372. msgctxt "travel_avoid_supports description"
  3373. msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled."
  3374. msgstr "Dysza będzie omijała już wydrukowane podpory podczas ruchu jałowego. Ta opcja jest dostępna jedynie, gdy kombinowanie jest włączone."
  3375. msgctxt "bottom_layers description"
  3376. msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number."
  3377. msgstr "Liczba dolnych warstw. Przy obliczaniu grubości dołu ta wartość jest zaokrąglana do liczby całkowitej."
  3378. msgctxt "raft_base_wall_count description"
  3379. msgid "The number of contours to print around the linear pattern in the base layer of the raft."
  3380. msgstr ""
  3381. msgctxt "raft_interface_wall_count description"
  3382. msgid "The number of contours to print around the linear pattern in the middle layers of the raft."
  3383. msgstr ""
  3384. msgctxt "raft_surface_wall_count description"
  3385. msgid "The number of contours to print around the linear pattern in the top layers of the raft."
  3386. msgstr ""
  3387. msgctxt "raft_wall_count description"
  3388. msgid "The number of contours to print around the linear pattern of the raft."
  3389. msgstr ""
  3390. msgctxt "skin_edge_support_layers description"
  3391. msgid "The number of infill layers that supports skin edges."
  3392. msgstr ""
  3393. msgctxt "initial_bottom_layers description"
  3394. msgid "The number of initial bottom layers, from the build-plate upwards. When calculated by the bottom thickness, this value is rounded to a whole number."
  3395. msgstr "Liczba początkowych dolnych warstw, od stołu w górę. Obliczona na podstawie grubości spodu, wartość ta jest zaokrąglana do liczby całkowitej."
  3396. msgctxt "raft_interface_layers description"
  3397. msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft."
  3398. msgstr ""
  3399. msgctxt "brim_line_count description"
  3400. msgid "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area."
  3401. msgstr "Liczba linii używana dla obrysu. Więcej linii obrysu poprawia przyczepność do stołu, ale zmniejsza rzeczywiste pole wydruku."
  3402. msgctxt "support_brim_line_count description"
  3403. msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material."
  3404. msgstr "Liczba linii używanych do obrysu podpór. Większa ilość linii obrysu to większa przyczepność do stołu, kosztem zużytego materiału."
  3405. msgctxt "raft_surface_layers description"
  3406. msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1."
  3407. msgstr "Liczba górnych warstw na górze drugiej warstwy tratwy. Są to w pełni wypełnione warstwy, na których siedzi model. 2 warstwy tworzą gładszą górną powierzchnię niż 1."
  3408. msgctxt "top_layers description"
  3409. msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number."
  3410. msgstr "Liczba górnych warstw. Przy obliczaniu górnej grubości wartość ta jest zaokrąglana do liczby całkowitej."
  3411. msgctxt "roofing_layer_count description"
  3412. msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces."
  3413. msgstr "Liczba warstw górnej skóry. Zazwyczaj tylko jedna górna warstwa poprawia jakość górnych powierzchni."
  3414. msgctxt "support_wall_count description"
  3415. msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used."
  3416. msgstr "Liczba ścianek otaczających wypełnienie podpory. Dodanie ścianki może sprawić, że podpory będą drukowane solidniej i będą mogły lepiej podpierać nawisy, ale wydłuży to czas druku i zwiększy ilość użytego materiału."
  3417. msgctxt "support_bottom_wall_count description"
  3418. msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used."
  3419. msgstr "Liczba ścianek otaczających wypełnienie podpory. Dodanie ścianki może sprawić, że podpory będą drukowane solidniej i będą mogły lepiej podpierać nawisy, ale wydłuży to czas druku i zwiększy ilość użytego materiału."
  3420. msgctxt "support_roof_wall_count description"
  3421. msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used."
  3422. msgstr "Liczba ścianek otaczających wypełnienie podpory. Dodanie ścianki może sprawić, że podpory będą drukowane solidniej i będą mogły lepiej podpierać nawisy, ale wydłuży to czas druku i zwiększy ilość użytego materiału."
  3423. msgctxt "support_interface_wall_count description"
  3424. msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used."
  3425. msgstr "Liczba ścianek otaczających wypełnienie podpory. Dodanie ścianki może sprawić, że podpory będą drukowane solidniej i będą mogły lepiej podpierać nawisy, ale wydłuży to czas druku i zwiększy ilość użytego materiału."
  3426. msgctxt "wall_distribution_count description"
  3427. msgid "The number of walls, counted from the center, over which the variation needs to be spread. Lower values mean that the outer walls don't change in width."
  3428. msgstr ""
  3429. msgctxt "wall_line_count description"
  3430. msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number."
  3431. msgstr "Liczba ścian. Przy obliczaniu za pomocą grubości ściany, ta wartość jest zaokrąglana do liczby całkowitej."
  3432. msgctxt "machine_nozzle_tip_outer_diameter description"
  3433. msgid "The outer diameter of the tip of the nozzle."
  3434. msgstr "Zewnętrzna średnica końcówki dyszy."
  3435. msgctxt "infill_pattern description"
  3436. msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object."
  3437. msgstr ""
  3438. msgctxt "support_pattern description"
  3439. msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support."
  3440. msgstr "Wzór struktury podpory wydruku. Różne opcje zapewniają trwałe lub łatwe do usunięcia podpory."
  3441. msgctxt "roofing_pattern description"
  3442. msgid "The pattern of the top most layers."
  3443. msgstr "Wzór najwyższych warstw."
  3444. msgctxt "top_bottom_pattern description"
  3445. msgid "The pattern of the top/bottom layers."
  3446. msgstr "Wzór górnej/dolnej warstwy."
  3447. msgctxt "top_bottom_pattern_0 description"
  3448. msgid "The pattern on the bottom of the print on the first layer."
  3449. msgstr "Wzór na pierwszej warstwie na dole wydruku."
  3450. msgctxt "ironing_pattern description"
  3451. msgid "The pattern to use for ironing top surfaces."
  3452. msgstr "Wzór używany dla górnych powierzchni prasowania."
  3453. msgctxt "support_bottom_pattern description"
  3454. msgid "The pattern with which the floors of the support are printed."
  3455. msgstr "Wzór, według którego drukowane są podłoża podpory."
  3456. msgctxt "support_interface_pattern description"
  3457. msgid "The pattern with which the interface of the support with the model is printed."
  3458. msgstr "Wzór, z jakim drukowane jest połączenie podpory z modelem."
  3459. msgctxt "support_roof_pattern description"
  3460. msgid "The pattern with which the roofs of the support are printed."
  3461. msgstr "Wzór, z jakim drukowane są dachy podpory."
  3462. msgctxt "z_seam_position description"
  3463. msgid "The position near where to start printing each part in a layer."
  3464. msgstr "Najbliższa pozycja startu druku każdej warstwy."
  3465. msgctxt "support_tree_angle_slow description"
  3466. msgid "The preferred angle of the branches, when they do not have to avoid the model. Use a lower angle to make them more vertical and more stable. Use a higher angle for branches to merge faster."
  3467. msgstr ""
  3468. msgctxt "support_tree_rest_preference description"
  3469. msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model."
  3470. msgstr ""
  3471. msgctxt "jerk_layer_0 description"
  3472. msgid "The print maximum instantaneous velocity change for the initial layer."
  3473. msgstr "Maksymalna zmiana chwilowej prędkości dla pierwszej warstwy."
  3474. msgctxt "machine_shape description"
  3475. msgid "The shape of the build plate without taking unprintable areas into account."
  3476. msgstr "Kształt stołu bez uwzględniania obszarów niedrukowalnych."
  3477. msgctxt "machine_head_with_fans_polygon description"
  3478. msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates."
  3479. msgstr ""
  3480. msgctxt "cross_infill_pocket_size description"
  3481. msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself."
  3482. msgstr "Rozmiar kieszeni na czterostronnych skrzyżowaniach we wzorze krzyż 3D na wysokościach gdzie wzór tego siebie samego."
  3483. msgctxt "coasting_min_volume description"
  3484. msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume."
  3485. msgstr "Najmniejsza objętość jaką powinna mieć ścieżka ekstruzji przed pozwoleniem na Wypływanie. Dla mniejszych ścieżek ekstruzji pojawia się mniejsze ciśnienie we wbudowanej rurce bowden dzięki czemu ilość wypływającego materiału jest skalowana liniowo. Ta wartość powinna zawsze być większa niż Objętość Wypływania."
  3486. msgctxt "machine_nozzle_cool_down_speed description"
  3487. msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature."
  3488. msgstr "Szybkość (° C/s.), z którą dysza chłodzi się - średnia z normlanej temperatury druku i temperatury czuwania."
  3489. msgctxt "machine_nozzle_heat_up_speed description"
  3490. msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature."
  3491. msgstr "Szybkość (° C/s.), z którą dysza ogrzewa się - średnia z normlanej temperatury druku i temperatury czuwania."
  3492. msgctxt "speed_wall_x description"
  3493. msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed."
  3494. msgstr "Szybkość, z jaką drukowane są ściany wewnętrzne. Drukowanie wewnętrznej ściany szybciej niż zewn. pozwoli skrócić czas druku. Zaleca się, aby ustawić to pomiędzy prędkością zewn. ściany, a prędkością wypełnienia."
  3495. msgctxt "bridge_skin_speed description"
  3496. msgid "The speed at which bridge skin regions are printed."
  3497. msgstr "Prędkość z jaką drukowane są obszary skóry mostu."
  3498. msgctxt "speed_infill description"
  3499. msgid "The speed at which infill is printed."
  3500. msgstr "Prędkość, z jaką drukowane jest wypełnienie."
  3501. msgctxt "speed_print description"
  3502. msgid "The speed at which printing happens."
  3503. msgstr "Prędkość druku."
  3504. msgctxt "raft_base_speed description"
  3505. msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high."
  3506. msgstr "Prędkość, z jaką drukowana jest podstawowa warstwa tratwy. Powinna być drukowana dość wolno, ponieważ objętość materiału wydobywającego się z dyszy jest dość duża."
  3507. msgctxt "bridge_wall_speed description"
  3508. msgid "The speed at which the bridge walls are printed."
  3509. msgstr "Prędkość z jaką są drukowane ściany mostu."
  3510. msgctxt "cool_fan_speed_0 description"
  3511. msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height."
  3512. msgstr "Prędkość, z jaką wentylatory obracają się na początku druku. W kolejnych warstwach prędkość wentylatora stopniowo wzrasta do warstwy odpowiadającej Regularnej Pręd. Went. na Wysokości."
  3513. msgctxt "cool_fan_speed_min description"
  3514. msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed."
  3515. msgstr "Prędkość obrotowa wentylatorów przed osiągnięciem progu. Kiedy warstwa drukowana jest szybciej niż próg, prędkość wentylatora stopniowo przybliża się do maksymalnej prędkości wentylatora."
  3516. msgctxt "cool_fan_speed_max description"
  3517. msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit."
  3518. msgstr "Prędkość, z jaką obracają się wentylatory w minimalnym czasie warstwy. Prędkość wentylatora stopniowo wzrasta między regularną prędkością wentylatora a maksymalną prędkością wentylatora, kiedy próg zostanie przekroczony."
  3519. msgctxt "retraction_prime_speed description"
  3520. msgid "The speed at which the filament is primed during a retraction move."
  3521. msgstr "Prędkość, z jaką retrakcja jest dopełniana."
  3522. msgctxt "wipe_retraction_prime_speed description"
  3523. msgid "The speed at which the filament is primed during a wipe retraction move."
  3524. msgstr "Prędkość, z jaką jest wykonywana dodatkowa retrakcja podczas ruchu czyszczenia przy retrakcji."
  3525. msgctxt "switch_extruder_prime_speed description"
  3526. msgid "The speed at which the filament is pushed back after a nozzle switch retraction."
  3527. msgstr "Prędkość, z jaką filament jest cofany podczas retrakcji po zmianie dyszy."
  3528. msgctxt "retraction_speed description"
  3529. msgid "The speed at which the filament is retracted and primed during a retraction move."
  3530. msgstr "Prędkość, z jaką jest wykonywana i dopełniana retrakcja."
  3531. msgctxt "wipe_retraction_speed description"
  3532. msgid "The speed at which the filament is retracted and primed during a wipe retraction move."
  3533. msgstr "Prędkość, z jaką jest wykonywana i dopełniana retrakcja podczas ruchu czyszczenia przy retrakcji."
  3534. msgctxt "switch_extruder_retraction_speed description"
  3535. msgid "The speed at which the filament is retracted during a nozzle switch retract."
  3536. msgstr "Prędkość, z jaką filament jest wycofywany podczas retrakcji przy zmianie dyszy."
  3537. msgctxt "retraction_retract_speed description"
  3538. msgid "The speed at which the filament is retracted during a retraction move."
  3539. msgstr "Prędkość, z jaką wykonywana jest retrakcja."
  3540. msgctxt "wipe_retraction_retract_speed description"
  3541. msgid "The speed at which the filament is retracted during a wipe retraction move."
  3542. msgstr "Prędkość, z jaką jest wykonywana retrakcja podczas ruchu czyszczenia przy retrakcji."
  3543. msgctxt "switch_extruder_retraction_speeds description"
  3544. msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding."
  3545. msgstr "Prędkość, z jaką filament jest wycofywany. Wyższa szybkość retrakcji działa lepiej, ale bardzo duża szybkość retrakcji może prowadzić do złych efektów."
  3546. msgctxt "speed_support_bottom description"
  3547. msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model."
  3548. msgstr "Prędkość, z jaką drukowane jest podłoże podpory. Drukowanie z niższą prędkością może poprawić przyczepność podpory na modelu."
  3549. msgctxt "speed_support_infill description"
  3550. msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability."
  3551. msgstr "Prędkość, z jaką drukowane jest wypełnienie podstawy. Drukowanie wypełnień przy niższych prędkościach poprawia stabilność."
  3552. msgctxt "raft_interface_speed description"
  3553. msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high."
  3554. msgstr "Prędkość, z jaką drukowana jest środkowa warstwa tratwy. Powinno być drukowane dość wolno, ponieważ objętość materiału wydobywającego się z dyszy jest dość duża."
  3555. msgctxt "speed_wall_0 description"
  3556. msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way."
  3557. msgstr "Szybkość, z jaką drukowane są ściany zewnętrzne. Drukując zewnętrzną ściankę z niższą prędkością, osiągana jest lepsza jakość skóry. Jednakże, posiadanie dużej różnicy pomiędzy prędkością zewnętrznej ściany, a wewnętrznej może skutkować negatywnie."
  3558. msgctxt "speed_prime_tower description"
  3559. msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal."
  3560. msgstr "Prędkość, z jaką drukowana jest wieża czyszcząca. Drukowanie wieży czyszczącej wolniej może sprawić, że będzie ona bardziej stabilna, gdy adhezja między różnymi filamentami jest nieoptymalna."
  3561. msgctxt "cool_fan_speed description"
  3562. msgid "The speed at which the print cooling fans spin."
  3563. msgstr "Prędkość z jaką mają obracać się wentylatory."
  3564. msgctxt "raft_speed description"
  3565. msgid "The speed at which the raft is printed."
  3566. msgstr "Prędkość, z jaką drukowana jest tratwa."
  3567. msgctxt "speed_support_interface description"
  3568. msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality."
  3569. msgstr "Szybkość, z jaką drukowane są dachy i podłoża podpór. Drukując z mniejszą prędkością, można poprawić jakość nawisów."
  3570. msgctxt "speed_support_roof description"
  3571. msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality."
  3572. msgstr "Prędkość, z jaką drukowane są dachy podpory. Drukowanie przy niższych prędkościach może poprawić jakość nawisów."
  3573. msgctxt "skirt_brim_speed description"
  3574. msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed."
  3575. msgstr "Prędkość, z jaką jest drukowana obwódka i obrys. Zwykle jest to wykonywane przy szybkości początkowej warstwy, ale czasami możesz chcieć drukować obwódkę lub obrys z inną prędkością."
  3576. msgctxt "speed_support description"
  3577. msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing."
  3578. msgstr "Szybkość, z jaką drukowane są podpory. Drukując podpory przy wyższych prędkościach, całkowity czas drukowania może być znacznie zmniejszony. Jakość powierzchni podpory nie ma znaczenia, ponieważ jest ona usuwana po wydrukowaniu."
  3579. msgctxt "raft_surface_speed description"
  3580. msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines."
  3581. msgstr "Prędkość, w jaką są drukowane górne warstwy tratwy. Powinny być drukowane nieco wolniej, dzięki czemu dysza może powoli wypolerować sąsiednie linie powierzchni."
  3582. msgctxt "speed_wall_x_roofing description"
  3583. msgid "The speed at which the top surface inner walls are printed."
  3584. msgstr "Prędkość drukowania wewnętrznych ścian górnej powierzchni."
  3585. msgctxt "speed_wall_0_roofing description"
  3586. msgid "The speed at which the top surface outermost wall is printed."
  3587. msgstr "Prędkość drukowania najbardziej zewnętrznych ścian górnej powierzchni."
  3588. msgctxt "speed_z_hop description"
  3589. msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move."
  3590. msgstr "Szybkość, z jaką wykonuje się pionowy ruch skoku Z. Jest to zwykle mniej niż prędkość drukowania, ponieważ trudniej się porusza stołem drukarki."
  3591. msgctxt "speed_wall description"
  3592. msgid "The speed at which the walls are printed."
  3593. msgstr "Prędkość drukowania ścian."
  3594. msgctxt "speed_ironing description"
  3595. msgid "The speed at which to pass over the top surface."
  3596. msgstr "Prędkość, z jaką drukarka przejeżdża nad górnymi powierzchniami."
  3597. msgctxt "material_break_speed description"
  3598. msgid "The speed at which to retract the filament in order to break it cleanly."
  3599. msgstr "Jak szybko wycofać filament, aby go złamać na czysto."
  3600. msgctxt "speed_roofing description"
  3601. msgid "The speed at which top surface skin layers are printed."
  3602. msgstr "Prędkość, z jaką drukowane są warstwy górnej powierzchni skóry."
  3603. msgctxt "speed_topbottom description"
  3604. msgid "The speed at which top/bottom layers are printed."
  3605. msgstr "Szybkość, z jaką drukowane są górne/dolne warstwy."
  3606. msgctxt "speed_travel description"
  3607. msgid "The speed at which travel moves are made."
  3608. msgstr "Prędkość, z jaką wykonywane są ruchy jałowe."
  3609. msgctxt "coasting_speed description"
  3610. msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops."
  3611. msgstr "Prędkość poruszania się podczas Wypływania, w stosunku do prędkości ścieżki ekstruzji. Zaleca się wartość nieco poniżej 100%, ponieważ podczas Wypływania ciśnienie w rurce bowden spada."
  3612. msgctxt "speed_layer_0 description"
  3613. msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft."
  3614. msgstr ""
  3615. msgctxt "speed_print_layer_0 description"
  3616. msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate."
  3617. msgstr "Szybkość drukowania dla pierwszej warstwy. Niższa wartość jest zalecane w celu poprawy przyczepności do stołu."
  3618. msgctxt "speed_travel_layer_0 description"
  3619. msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed."
  3620. msgstr "Prędkość ruchów jałowych na pierwszej warstwie. Zaleca się niższą wartość, aby zapobiec ściągnięciu wcześniej wydrukowanych części ze stołu. Wartość tego ustawienia może być automatycznie obliczana na podstawie stosunku Prędkości Ruchów Jałowych i Prędkości Druku."
  3621. msgctxt "material_break_temperature description"
  3622. msgid "The temperature at which the filament is broken for a clean break."
  3623. msgstr "Temperatura, w której filament można złamać na czysto."
  3624. msgctxt "build_volume_temperature description"
  3625. msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted."
  3626. msgstr "Temperatura otoczenia druku. Jeśli ustawione jest 0, temperatura komory nie będzie ustawiana."
  3627. msgctxt "material_standby_temperature description"
  3628. msgid "The temperature of the nozzle when another nozzle is currently used for printing."
  3629. msgstr "Temperatura dyszy, gdy inne dysze są obecnie używane do drukowania."
  3630. msgctxt "material_final_print_temperature description"
  3631. msgid "The temperature to which to already start cooling down just before the end of printing."
  3632. msgstr "Temperatura, od której zaczyna się chłodzenie tuż przed końcem drukowania."
  3633. msgctxt "material_print_temperature_layer_0 description"
  3634. msgid "The temperature used for printing the first layer."
  3635. msgstr ""
  3636. msgctxt "material_print_temperature description"
  3637. msgid "The temperature used for printing."
  3638. msgstr "Temperatura stosowana do drukowania."
  3639. msgctxt "material_bed_temperature_layer_0 description"
  3640. msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer."
  3641. msgstr ""
  3642. msgctxt "material_bed_temperature description"
  3643. msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated."
  3644. msgstr ""
  3645. msgctxt "material_break_preparation_temperature description"
  3646. msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature."
  3647. msgstr ""
  3648. msgctxt "bottom_thickness description"
  3649. msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers."
  3650. msgstr "Grubość dolnych warstw w wydruku. Ta wartość podzielona przez wysokość warstwy definiuje liczbę warstw dolnych."
  3651. msgctxt "skin_edge_support_thickness description"
  3652. msgid "The thickness of the extra infill that supports skin edges."
  3653. msgstr ""
  3654. msgctxt "support_interface_height description"
  3655. msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top."
  3656. msgstr "Grubość połączenia podpory, gdzie styka się ona z modelem na górze i na dole."
  3657. msgctxt "support_bottom_height description"
  3658. msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests."
  3659. msgstr "Grubość podłoża podpory. Steruje liczbę zwartych warstw, które są drukowane na modelu, na którym spoczywa podpora."
  3660. msgctxt "support_roof_height description"
  3661. msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests."
  3662. msgstr "Grubość dachu podpory. Steruje ilością gęstych warstw na górnej części podpory, na której osiada model."
  3663. msgctxt "top_thickness description"
  3664. msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers."
  3665. msgstr "Grubość górnych warstw na wydruku. Ta wartość podzielona przez wysokość warstwy definiuje liczbę warstw górnych."
  3666. msgctxt "top_bottom_thickness description"
  3667. msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers."
  3668. msgstr "Grubość górnej/dolnej warstwy wydruku. Ta wartość podzielona przez wysokość warstwy definiuje liczbę warstw górnych/dolnych."
  3669. msgctxt "wall_thickness description"
  3670. msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls."
  3671. msgstr "Grubość ścian w kierunku poziomym. Ta wartość podzielona przez szerokość linii ściany, określa liczbę ścian."
  3672. msgctxt "infill_sparse_thickness description"
  3673. msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded."
  3674. msgstr "Grubość na warstwe materiału wypełniającego. Ta wartość powinna zawsze być wielokrotnością wysokości warstwy i być zaokrąglana."
  3675. msgctxt "support_infill_sparse_thickness description"
  3676. msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded."
  3677. msgstr "Wysokość warstwy materiału wypełniającego podpory. Ta wartość jest zawsze wielokrotnością wysokości warstwy i jest zaokrąglana."
  3678. msgctxt "machine_gcode_flavor description"
  3679. msgid "The type of g-code to be generated."
  3680. msgstr "Typ g-code, który ma być generowany."
  3681. msgctxt "material_type description"
  3682. msgid "The type of material used."
  3683. msgstr ""
  3684. msgctxt "coasting_volume description"
  3685. msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed."
  3686. msgstr "Objętość materiału wyciekającego jest inna. Wartość ta powinna być zasadniczo zbliżona do średnicy dyszy do sześcianu."
  3687. msgctxt "machine_width description"
  3688. msgid "The width (X-direction) of the printable area."
  3689. msgstr "Szerokość (w kierunku X) obszaru roboczego."
  3690. msgctxt "support_brim_width description"
  3691. msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material."
  3692. msgstr "Szerokość obrysu, który ma być wydrukowany pod podporami. Szerszy obrys to większa przyczepność do stołu, kosztem zużytego materiału."
  3693. msgctxt "interlocking_beam_width description"
  3694. msgid "The width of the interlocking structure beams."
  3695. msgstr "Szerokość wieży czyszczącej."
  3696. msgctxt "prime_tower_base_size description"
  3697. msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area."
  3698. msgstr ""
  3699. msgctxt "prime_tower_size description"
  3700. msgid "The width of the prime tower."
  3701. msgstr "Szerokość wieży czyszczącej."
  3702. msgctxt "magic_fuzzy_skin_thickness description"
  3703. msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered."
  3704. msgstr "Szerokość, w której będą wykonywane drgania. Zaleca się zachować ją poniżej zewnętrznej szerokości ścianki, ponieważ wewnętrzne ściany nie ulegają zmianie."
  3705. msgctxt "retraction_extrusion_window description"
  3706. msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited."
  3707. msgstr "Okno, w którym wymuszona jest maksymalna liczba retrakcji. Wartość ta powinna być w przybliżeniu taka sama jak odległość retrakcji, dzięki czemu skuteczna liczba retrakcji używająca tej samej cząstki materiału jest limitowana."
  3708. msgctxt "prime_tower_position_x description"
  3709. msgid "The x coordinate of the position of the prime tower."
  3710. msgstr "Współrzędna X położenia wieży czyszczącej."
  3711. msgctxt "prime_tower_position_y description"
  3712. msgid "The y coordinate of the position of the prime tower."
  3713. msgstr "Współrzędna Y położenia wieży czyszczącej."
  3714. msgctxt "support_meshes_present description"
  3715. msgid "There are support meshes present in the scene. This setting is controlled by Cura."
  3716. msgstr ""
  3717. msgctxt "bridge_wall_coast description"
  3718. msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge."
  3719. msgstr "Określa odległość, na jakiej ekstruder powinien wykonać rozbieg natychmiast przed rozpoczęciem ściany mostu. Rozbieg przed rozpoczęciem mostu może zredukować ciśnienie w dyszy i może stworzyć bardziej płaski most."
  3720. msgctxt "raft_base_smoothing description"
  3721. msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle."
  3722. msgstr ""
  3723. msgctxt "raft_interface_smoothing description"
  3724. msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle."
  3725. msgstr ""
  3726. msgctxt "raft_smoothing description"
  3727. msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle."
  3728. msgstr "To ustawienie kontroluje jak bardzo wewn. narożniki w zewn. krawędzi tratwy mają być zaokrąglone. Wew. narożniki są zaokrąglane do półokręgów o promieniu równym wartości podanej tutaj. To ustawienie usuwa także otwory w zewn. krawędzi tratwy, które są mniejsze niż taki okrąg."
  3729. msgctxt "raft_surface_smoothing description"
  3730. msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle."
  3731. msgstr ""
  3732. msgctxt "retraction_count_max description"
  3733. msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues."
  3734. msgstr "To ustawienie ogranicza liczbę retrakcji występujących w oknie minimalnej długości ekstruzji. Dalsze retrakcje w tym oknie zostaną zignorowane. Pozwala to uniknąć wielokrotnych retrakcji na tym samym odcinku filamentu, ponieważ może to spłaszczyć filament i spowodować problemy z wyciskaniem filamentu."
  3735. msgctxt "draft_shield_enabled description"
  3736. msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily."
  3737. msgstr "Powoduje to powstanie osłony wokół modelu, która wyłapuje (gorące) powietrze i osłania przed ruchami powietrza. Szczególnie przydatna w przypadku materiałów, które łatwo się rozwarstwiają."
  3738. msgctxt "support_tree_tip_diameter label"
  3739. msgid "Tip Diameter"
  3740. msgstr ""
  3741. msgctxt "material_shrinkage_percentage_xy description"
  3742. msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)."
  3743. msgstr ""
  3744. msgctxt "material_shrinkage_percentage_z description"
  3745. msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)."
  3746. msgstr ""
  3747. msgctxt "material_shrinkage_percentage description"
  3748. msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor."
  3749. msgstr ""
  3750. msgctxt "top_layers label"
  3751. msgid "Top Layers"
  3752. msgstr "Górne warstwy"
  3753. msgctxt "top_skin_expand_distance label"
  3754. msgid "Top Skin Expand Distance"
  3755. msgstr "Odległość Rozsz. Górnej Skóry"
  3756. msgctxt "top_skin_preshrink label"
  3757. msgid "Top Skin Removal Width"
  3758. msgstr "Szer. Usuwania Górnej Skóry"
  3759. msgctxt "acceleration_wall_x_roofing label"
  3760. msgid "Top Surface Inner Wall Acceleration"
  3761. msgstr "Przyspieszenie wewnętrznej powierzchni górnej ściany"
  3762. msgctxt "jerk_wall_x_roofing label"
  3763. msgid "Top Surface Inner Wall Jerk"
  3764. msgstr "Szarpnięcie na najbardziej zewnętrznych ścianach górnej powierzchni"
  3765. msgctxt "speed_wall_x_roofing label"
  3766. msgid "Top Surface Inner Wall Speed"
  3767. msgstr "Prędkość wewnętrznej powierzchni górnej ściany"
  3768. msgctxt "wall_x_material_flow_roofing label"
  3769. msgid "Top Surface Inner Wall(s) Flow"
  3770. msgstr "Przepływ wewnętrznej ściany(ach) górnej powierzchni"
  3771. msgctxt "acceleration_wall_0_roofing label"
  3772. msgid "Top Surface Outer Wall Acceleration"
  3773. msgstr "Przyspieszenie zewnętrznej powierzchni górnej ściany"
  3774. msgctxt "wall_0_material_flow_roofing label"
  3775. msgid "Top Surface Outer Wall Flow"
  3776. msgstr "Przepływ na najbardziej zewnętrznej linii górnej powierzchni"
  3777. msgctxt "jerk_wall_0_roofing label"
  3778. msgid "Top Surface Outer Wall Jerk"
  3779. msgstr "Szarpnięcie na wewnętrznych ścianach górnej powierzchni"
  3780. msgctxt "speed_wall_0_roofing label"
  3781. msgid "Top Surface Outer Wall Speed"
  3782. msgstr "Prędkość najbardziej zewnętrznych ścian górnej powierzchni"
  3783. msgctxt "acceleration_roofing label"
  3784. msgid "Top Surface Skin Acceleration"
  3785. msgstr "Przysp. Górnej Pow. Skóry"
  3786. msgctxt "roofing_extruder_nr label"
  3787. msgid "Top Surface Skin Extruder"
  3788. msgstr "Ekstruder Górnej Pow. Skóry"
  3789. msgctxt "roofing_material_flow label"
  3790. msgid "Top Surface Skin Flow"
  3791. msgstr "Przepływ ostatniej warstwy górnej"
  3792. msgctxt "jerk_roofing label"
  3793. msgid "Top Surface Skin Jerk"
  3794. msgstr "Zryw Górnej Pow. Skóry"
  3795. msgctxt "roofing_layer_count label"
  3796. msgid "Top Surface Skin Layers"
  3797. msgstr "Warstwy Górnej Pow. Skóry"
  3798. msgctxt "roofing_angles label"
  3799. msgid "Top Surface Skin Line Directions"
  3800. msgstr "Kierunki Linii Górnej Pow. Skóry"
  3801. msgctxt "roofing_line_width label"
  3802. msgid "Top Surface Skin Line Width"
  3803. msgstr "Szerokość Linii Powierzchni Skóry"
  3804. msgctxt "roofing_pattern label"
  3805. msgid "Top Surface Skin Pattern"
  3806. msgstr "Wzór Górnej Pow. Skóry"
  3807. msgctxt "speed_roofing label"
  3808. msgid "Top Surface Skin Speed"
  3809. msgstr "Prędk. Górnej Pow. Skóry"
  3810. msgctxt "top_thickness label"
  3811. msgid "Top Thickness"
  3812. msgstr "Grubość Góra"
  3813. msgctxt "max_skin_angle_for_expansion description"
  3814. msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded."
  3815. msgstr ""
  3816. msgctxt "top_bottom description"
  3817. msgid "Top/Bottom"
  3818. msgstr ""
  3819. msgctxt "top_bottom label"
  3820. msgid "Top/Bottom"
  3821. msgstr ""
  3822. msgctxt "acceleration_topbottom label"
  3823. msgid "Top/Bottom Acceleration"
  3824. msgstr "Przysp. Górnych/Dolnych Warstw"
  3825. msgctxt "top_bottom_extruder_nr label"
  3826. msgid "Top/Bottom Extruder"
  3827. msgstr "Ekstruder Góra/Dół"
  3828. msgctxt "skin_material_flow label"
  3829. msgid "Top/Bottom Flow"
  3830. msgstr "Przepływ warstwy górnej i dolnej"
  3831. msgctxt "jerk_topbottom label"
  3832. msgid "Top/Bottom Jerk"
  3833. msgstr "Zryw Góra/Dół"
  3834. msgctxt "skin_angles label"
  3835. msgid "Top/Bottom Line Directions"
  3836. msgstr "Kierunki Linii Góra/Dół"
  3837. msgctxt "skin_line_width label"
  3838. msgid "Top/Bottom Line Width"
  3839. msgstr "Szerokość Górnej/Dolnej Linii"
  3840. msgctxt "top_bottom_pattern label"
  3841. msgid "Top/Bottom Pattern"
  3842. msgstr "Wzór Góra/Dół"
  3843. msgctxt "speed_topbottom label"
  3844. msgid "Top/Bottom Speed"
  3845. msgstr "Prędkość Góra/Dół"
  3846. msgctxt "top_bottom_thickness label"
  3847. msgid "Top/Bottom Thickness"
  3848. msgstr "Grubość Góra/Dół"
  3849. msgctxt "support_type option buildplate"
  3850. msgid "Touching Buildplate"
  3851. msgstr "Dotykające Stołu"
  3852. msgctxt "support_tower_diameter label"
  3853. msgid "Tower Diameter"
  3854. msgstr "Średnica Wieży"
  3855. msgctxt "support_tower_roof_angle label"
  3856. msgid "Tower Roof Angle"
  3857. msgstr "Kąt Dachu Wieży"
  3858. msgctxt "mesh_rotation_matrix description"
  3859. msgid "Transformation matrix to be applied to the model when loading it from file."
  3860. msgstr "Forma przesunięcia, która ma być zastosowana do modelu podczas ładowania z pliku."
  3861. msgctxt "travel label"
  3862. msgid "Travel"
  3863. msgstr "Ruch Jałowy"
  3864. msgctxt "acceleration_travel label"
  3865. msgid "Travel Acceleration"
  3866. msgstr "Przyspieszenie Ruchów Jałowych"
  3867. msgctxt "travel_avoid_distance label"
  3868. msgid "Travel Avoid Distance"
  3869. msgstr "Odległość Omijania Ruchu Jałowego"
  3870. msgctxt "jerk_travel label"
  3871. msgid "Travel Jerk"
  3872. msgstr "Zryw Ruch Jałowy"
  3873. msgctxt "speed_travel label"
  3874. msgid "Travel Speed"
  3875. msgstr "Prędkość Ruchów Jałowych"
  3876. msgctxt "magic_mesh_surface_mode description"
  3877. msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces."
  3878. msgstr "Traktuj model tylko jako powierzchnię, bryłę lub bryłę z luźnymi powierzchniami. Zwykły tryb drukowania drukuje tylko zamknięte bryły. \"Powierzchnia\" drukuje pojedynczą ścianę śledząc powierzchnię siatki bez wypełnienia i bez górnej/dolnej skóry. \"Oba\" drukuje zamknięte bryły takie jak zwykłe i wszelkie pozostałe wielokąty jako powierzchnie."
  3879. msgctxt "support_structure option tree"
  3880. msgid "Tree"
  3881. msgstr ""
  3882. msgctxt "infill_pattern option trihexagon"
  3883. msgid "Tri-Hexagon"
  3884. msgstr "Tri-Sześciokąt"
  3885. msgctxt "infill_pattern option triangles"
  3886. msgid "Triangles"
  3887. msgstr "Trójkąty"
  3888. msgctxt "support_bottom_pattern option triangles"
  3889. msgid "Triangles"
  3890. msgstr "Trójkąty"
  3891. msgctxt "support_interface_pattern option triangles"
  3892. msgid "Triangles"
  3893. msgstr "Trójkąty"
  3894. msgctxt "support_pattern option triangles"
  3895. msgid "Triangles"
  3896. msgstr "Trójkąty"
  3897. msgctxt "support_roof_pattern option triangles"
  3898. msgid "Triangles"
  3899. msgstr "Trójkąty"
  3900. msgctxt "support_tree_max_diameter label"
  3901. msgid "Trunk Diameter"
  3902. msgstr ""
  3903. msgctxt "machine_gcode_flavor option UltiGCode"
  3904. msgid "Ultimaker 2"
  3905. msgstr "Ultimaker 2"
  3906. msgctxt "meshfix_union_all label"
  3907. msgid "Union Overlapping Volumes"
  3908. msgstr "Nakładanie się Związanych Brył"
  3909. msgctxt "bridge_wall_min_length description"
  3910. msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings."
  3911. msgstr "Niepodparte ściany krótsze niż to będą drukowane z normalnymi ustawieniami ściany. Dłuższe niepodparte ściany będą drukowane z ustawieniami mostów."
  3912. msgctxt "adaptive_layer_height_enabled label"
  3913. msgid "Use Adaptive Layers"
  3914. msgstr "Użyj zmiennych warstw"
  3915. msgctxt "support_use_towers label"
  3916. msgid "Use Towers"
  3917. msgstr "Używaj Wież"
  3918. msgctxt "acceleration_travel_enabled description"
  3919. msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination."
  3920. msgstr ""
  3921. msgctxt "jerk_travel_enabled description"
  3922. msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination."
  3923. msgstr ""
  3924. msgctxt "relative_extrusion description"
  3925. msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output."
  3926. msgstr "Używaj ekstruzji względnej zamiast ekstruzji bezwzględnej. Używanie względnych kroków E umożliwia łatwiejszy post-processing g-code'u. Jednakże nie jest to wspierane przez wszystkie drukarki i może to powodować delikatne wahania w ilości podawanego materiału w porównaniu z bezwzględnymi krokami E. Niezależnie od tego ustawienia, tryb ekstruzji będzie zawsze ustawiony na bezwględny zanim skrypt g-code będzie na wyjściu."
  3927. msgctxt "support_use_towers description"
  3928. msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof."
  3929. msgstr "Użyj specjalnych wież do wspierania malutkich nawisów. Te wieże mają średnicę większą niż wspierany obszar. W pobliżu nawisu, średnica wież zmniejsza się tworząc dach."
  3930. msgctxt "infill_mesh description"
  3931. msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh."
  3932. msgstr "Użyj tej siatki, aby zmodyfikować wypełnienie innych siatek, z którymi się pokrywa. Zastępuje obszary wypełnienia innych siatek obszarami dla tej siatki. Proponuje się wydrukować tylko jedną ścianę bez górnej/dolnej powłoki dla tej siatki."
  3933. msgctxt "support_mesh description"
  3934. msgid "Use this mesh to specify support areas. This can be used to generate support structure."
  3935. msgstr "Użyj tej siatki, aby określić obszary wsparcia. Można to wykorzystać do generowania struktury podpory."
  3936. msgctxt "anti_overhang_mesh description"
  3937. msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure."
  3938. msgstr "Użyj tej siatki, aby sprecyzować gdzie żadna z części modelu nie powinna być wykrywana jako zwis. Ta opcja może być używana do usuwania niepotrzebnych podpór."
  3939. msgctxt "z_seam_type option back"
  3940. msgid "User Specified"
  3941. msgstr "Określone przez Użytkownika"
  3942. msgctxt "material_shrinkage_percentage_z label"
  3943. msgid "Vertical Scaling Factor Shrinkage Compensation"
  3944. msgstr ""
  3945. msgctxt "slicing_tolerance description"
  3946. msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface."
  3947. msgstr ""
  3948. msgctxt "material_bed_temp_wait label"
  3949. msgid "Wait for Build Plate Heatup"
  3950. msgstr "Czekaj na Podgrzanie Stołu"
  3951. msgctxt "material_print_temp_wait label"
  3952. msgid "Wait for Nozzle Heatup"
  3953. msgstr "Czekaj na Podgrzanie Dyszy"
  3954. msgctxt "acceleration_wall label"
  3955. msgid "Wall Acceleration"
  3956. msgstr "Przyspieszenie Ścian"
  3957. msgctxt "wall_distribution_count label"
  3958. msgid "Wall Distribution Count"
  3959. msgstr ""
  3960. msgctxt "wall_extruder_nr label"
  3961. msgid "Wall Extruder"
  3962. msgstr "Ekstruder Ściany"
  3963. msgctxt "wall_material_flow label"
  3964. msgid "Wall Flow"
  3965. msgstr "Przepływ ścianek"
  3966. msgctxt "jerk_wall label"
  3967. msgid "Wall Jerk"
  3968. msgstr "Zryw Ściany"
  3969. msgctxt "wall_line_count label"
  3970. msgid "Wall Line Count"
  3971. msgstr "Ilość Ścian"
  3972. msgctxt "wall_line_width label"
  3973. msgid "Wall Line Width"
  3974. msgstr "Szerokość Linii Ściany"
  3975. msgctxt "inset_direction label"
  3976. msgid "Wall Ordering"
  3977. msgstr ""
  3978. msgctxt "speed_wall label"
  3979. msgid "Wall Speed"
  3980. msgstr "Prędkość Ścian"
  3981. msgctxt "wall_thickness label"
  3982. msgid "Wall Thickness"
  3983. msgstr "Grubość Ściany"
  3984. msgctxt "wall_transition_length label"
  3985. msgid "Wall Transition Length"
  3986. msgstr ""
  3987. msgctxt "wall_transition_filter_distance label"
  3988. msgid "Wall Transitioning Filter Distance"
  3989. msgstr ""
  3990. msgctxt "wall_transition_filter_deviation label"
  3991. msgid "Wall Transitioning Filter Margin"
  3992. msgstr ""
  3993. msgctxt "wall_transition_angle label"
  3994. msgid "Wall Transitioning Threshold Angle"
  3995. msgstr ""
  3996. msgctxt "shell label"
  3997. msgid "Walls"
  3998. msgstr ""
  3999. msgctxt "wall_overhang_angle description"
  4000. msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either."
  4001. msgstr "Ściany, które wystają więcej niż zadany kont, zostaną wydrukowane przy użyciu ustawień wystających ścian. Gdy wartość wynosi 90, żadne ściany nie będą traktowane jako wystające. Zwis, który jest obsługiwany przez podpory, nie będzie również traktowany jako zwis."
  4002. msgctxt "meshfix_fluid_motion_enabled description"
  4003. msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions."
  4004. msgstr ""
  4005. msgctxt "infill_enable_travel_optimization description"
  4006. msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased."
  4007. msgstr "Kiedy włączone, kolejność drukowania linii wypełnienia jest optymalizowana tak, aby zredukować odległości ruchów jałowych. Osiągnięta redukcja czasu ruchów jałowych zależy od ciętego modelu, wzory wypełnienia, gęstości itd. Zauważ, że dla niektórych modeli, które mają małe obszary wypełnienia, czas ciecia modelu może się bardzo wydłużyć."
  4008. msgctxt "support_fan_enable description"
  4009. msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support."
  4010. msgstr "Gdy włączone, prędkość wentylatora chłodzącego wydruk jest zmieniana dla obszarów leżących bezpośrednio ponad podporami."
  4011. msgctxt "z_seam_relative description"
  4012. msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate."
  4013. msgstr "Kiedy włączone, współrzędne szwu są względne do każdego środka części. Kiedy wyłączone, współrzędne opisują bezwzględną pozycję na stole."
  4014. msgctxt "retraction_combing_max_distance description"
  4015. msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
  4016. msgstr ""
  4017. msgctxt "hole_xy_offset_max_diameter description"
  4018. msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded."
  4019. msgstr ""
  4020. msgctxt "hole_xy_offset description"
  4021. msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter."
  4022. msgstr ""
  4023. msgctxt "bridge_skin_material_flow description"
  4024. msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
  4025. msgstr "Kiedy drukowane są obszary skóry mostu, ilość ekstrudowanego materiału jest mnożona przez tę wartość."
  4026. msgctxt "bridge_wall_material_flow description"
  4027. msgid "When printing bridge walls, the amount of material extruded is multiplied by this value."
  4028. msgstr "Kiedy drukowane są ściany mostu, ilość ekstrudowanego materiału jest mnożona prze tę wartość."
  4029. msgctxt "bridge_skin_material_flow_2 description"
  4030. msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value."
  4031. msgstr "Kiedy drukowana jest druga warstwa skóry mostu, ilość ekstrudowanego materiału jest mnożona przez tę wartość."
  4032. msgctxt "bridge_skin_material_flow_3 description"
  4033. msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value."
  4034. msgstr "Kiedy drukowana jest trzecia warstwa skóry mostu, ilość ekstrudowanego materiału jest mnożona przez tę wartość."
  4035. msgctxt "cool_lift_head description"
  4036. msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached."
  4037. msgstr "Jeśli zostanie osiągnięta minimalna prędkość ze względu na minimalny czas warstwy, podnieś głowicę poza wydruk i poczekaj aż zostanie osiągnięty minimalny czas warstwy."
  4038. msgctxt "skin_no_small_gaps_heuristic description"
  4039. msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air."
  4040. msgstr "Gdy model ma małe pionowe szczeliny składające się z kilku warstw, powinna pojawić się powierzchnia zewnętrzna wokół tych warstw w wąskiej przestrzeni. Włącz, aby nie generować powierzchni zewnętrznej, jeśli odstęp pionowy jest bardzo mały. Poprawia to czas drukowania i czas cięcia, ale technicznie pozostawia wypełnienie bez wykończenia."
  4041. msgctxt "wall_transition_angle description"
  4042. msgid "When to create transitions between even and odd numbers of walls. A wedge shape with an angle greater than this setting will not have transitions and no walls will be printed in the center to fill the remaining space. Reducing this setting reduces the number and length of these center walls, but may leave gaps or overextrude."
  4043. msgstr ""
  4044. msgctxt "wall_transition_length description"
  4045. msgid "When transitioning between different numbers of walls as the part becomes thinner, a certain amount of space is allotted to split or join the wall lines."
  4046. msgstr ""
  4047. msgctxt "wipe_hop_enable description"
  4048. msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate."
  4049. msgstr ""
  4050. msgctxt "retraction_hop_enabled description"
  4051. msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate."
  4052. msgstr "Zawsze, gdy następuje retrakcja, stół roboczy jest opuszczany w celu utworzenia luzu między dyszą a drukiem. Zapobiega to uderzeniu dyszy podczas ruchu jałowego, co zmniejsza szanse uderzenia wydruku na stole."
  4053. msgctxt "support_xy_overrides_z description"
  4054. msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs."
  4055. msgstr "Czy Odległość Podpory X/Y nadpisuje Odległość Podpory Z i vice versa. Kiedy X/Y nadpisuje Z, odległość X/Y może odepchnąć podporę od modelu, wpływając na rzeczywistą odległość Z do zwisu. Możemy to wyłączyć, nie stosując odległości X/Y wokół zwisów."
  4056. msgctxt "machine_center_is_zero description"
  4057. msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area."
  4058. msgstr "Określa, czy współrzędne zero X/Y znajdują się na środku pola wydruku."
  4059. msgctxt "machine_endstop_positive_direction_x description"
  4060. msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)."
  4061. msgstr "Czy krańcówka osi X jest w pozycji dodatniej (wysokie współrzędne X) czy w ujemnej (niskie współrzędne X)."
  4062. msgctxt "machine_endstop_positive_direction_y description"
  4063. msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)."
  4064. msgstr "Czy krańcówka osi Y jest w pozycji dodatniej (wysokie współrzędne Y) czy w ujemnej (niskie współrzędne Y)."
  4065. msgctxt "machine_endstop_positive_direction_z description"
  4066. msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)."
  4067. msgstr "Czy krańcówka osi Z jest w pozycji dodatniej (wysokie współrzędne Z) czy w ujemnej (niskie współrzędne Z)."
  4068. msgctxt "machine_extruders_share_heater description"
  4069. msgid "Whether the extruders share a single heater rather than each extruder having its own heater."
  4070. msgstr ""
  4071. msgctxt "machine_extruders_share_nozzle description"
  4072. msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter."
  4073. msgstr ""
  4074. msgctxt "machine_heated_bed description"
  4075. msgid "Whether the machine has a heated build plate present."
  4076. msgstr "Określa czy maszyna posiada podgrzewany stół."
  4077. msgctxt "machine_heated_build_volume description"
  4078. msgid "Whether the machine is able to stabilize the build volume temperature."
  4079. msgstr "Określa czy drukarka posiada zamkniętą komorę stabilizującą temperaturę."
  4080. msgctxt "center_object description"
  4081. msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved."
  4082. msgstr "Czy wyśrodkować obiekt na środku stołu (0,0), zamiast używać układu współrzędnych, w którym został zapisany obiekt."
  4083. msgctxt "machine_nozzle_temp_enabled description"
  4084. msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura."
  4085. msgstr "Czy kontrolować temperaturę przez Cura? Wyłącz tę funkcję, aby kontrolować temperaturę dyszy poza Cura."
  4086. msgctxt "material_bed_temp_prepend description"
  4087. msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting."
  4088. msgstr "Możliwość wstawienia poleceń temperatury stołu na początku G-code. Jeśli start_gcode zawiera już polecenia dla temperatury stołu, program Cura wyłącza to ustawienie automatycznie."
  4089. msgctxt "material_print_temp_prepend description"
  4090. msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting."
  4091. msgstr "Możliwość wstawienia polecenia temperatury dyszy na początku G-code. Jeżeli start_gcode już zawiera polecenia temperatury dyszy, program Cura wyłączy tego ustawienie automatycznie."
  4092. msgctxt "clean_between_layers description"
  4093. msgid "Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working."
  4094. msgstr ""
  4095. msgctxt "material_bed_temp_wait description"
  4096. msgid "Whether to insert a command to wait until the build plate temperature is reached at the start."
  4097. msgstr "Czy wstawić na początku komendę, czekającą aż temperatura stołu zostanie osiągnięta."
  4098. msgctxt "prime_blob_enable description"
  4099. msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time."
  4100. msgstr "Czy wyczyścić filament z \"blobem\" przed drukowaniem? Włączenie tej opcji powoduje, że upewni się czy w materiał jest gotowy w ekstruderze przed drukowaniem. Drukowanie Obrysu lub Obwódki może działać także jako czyszczenie, w takim przypadku wyłączenie tej opcji oszczędzi trochę czasu."
  4101. msgctxt "print_sequence description"
  4102. msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes."
  4103. msgstr ""
  4104. msgctxt "machine_show_variants description"
  4105. msgid "Whether to show the different variants of this machine, which are described in separate json files."
  4106. msgstr "Określa czy wyświetlać różne warianty drukarki, które są opisane w oddzielnych plikach JSON."
  4107. msgctxt "machine_firmware_retract description"
  4108. msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material."
  4109. msgstr "Używaj komend retrakcji (G10/G11) zamiast używać współrzędną E w komendzie G1, aby wycofać materiał."
  4110. msgctxt "material_print_temp_wait description"
  4111. msgid "Whether to wait until the nozzle temperature is reached at the start."
  4112. msgstr "Poczekaj, aż temperatura dyszy zostanie osiągnięta na początku."
  4113. msgctxt "infill_line_width description"
  4114. msgid "Width of a single infill line."
  4115. msgstr "Szerokość pojedynczej linii wypełniania."
  4116. msgctxt "support_interface_line_width description"
  4117. msgid "Width of a single line of support roof or floor."
  4118. msgstr "Szerokość pojedynczej linii dachu lub podłogi podpory."
  4119. msgctxt "roofing_line_width description"
  4120. msgid "Width of a single line of the areas at the top of the print."
  4121. msgstr "Szerokość pojedynczej linii na obszarach na górze wydruku."
  4122. msgctxt "line_width description"
  4123. msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints."
  4124. msgstr "Szerokość jednej linii. Ogólnie, szerokość powinna być taka sama jak średnica dyszy. Jednak nieznaczne zmniejszenie tej wartości może prowadzić do lepszych wydruków."
  4125. msgctxt "prime_tower_line_width description"
  4126. msgid "Width of a single prime tower line."
  4127. msgstr "Szerokość pojedynczej linii wieży."
  4128. msgctxt "skirt_brim_line_width description"
  4129. msgid "Width of a single skirt or brim line."
  4130. msgstr "Szerokość pojedynczej linii Obwódki i Obrysu."
  4131. msgctxt "support_bottom_line_width description"
  4132. msgid "Width of a single support floor line."
  4133. msgstr "Szerokość pojedynczej linii podłoża podpory."
  4134. msgctxt "support_roof_line_width description"
  4135. msgid "Width of a single support roof line."
  4136. msgstr "Szerokość pojedynczej linii dachu podpory."
  4137. msgctxt "support_line_width description"
  4138. msgid "Width of a single support structure line."
  4139. msgstr "Szerokość jednej linii podpory."
  4140. msgctxt "skin_line_width description"
  4141. msgid "Width of a single top/bottom line."
  4142. msgstr "Szerokość pojedynczej górnej/dolnej linii."
  4143. msgctxt "wall_line_width_x description"
  4144. msgid "Width of a single wall line for all wall lines except the outermost one."
  4145. msgstr "Szerokość jednej linii dla wszystkich linii ściany z wyjątkiem jednej najbardziej zewnętrznej."
  4146. msgctxt "wall_line_width description"
  4147. msgid "Width of a single wall line."
  4148. msgstr "Szerokość jednej linii ściany."
  4149. msgctxt "raft_base_line_width description"
  4150. msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion."
  4151. msgstr "Szerokość linii na podstawowej warstwie tratwy. Powinny być to grube linie, które pomogą w przyczepności do stołu."
  4152. msgctxt "raft_interface_line_width description"
  4153. msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate."
  4154. msgstr "Szerokość linii na środkowej warstwie tratwy. Wytłaczanie drugiej warstwy powoduje, że linie przyklejają się do stołu."
  4155. msgctxt "raft_surface_line_width description"
  4156. msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth."
  4157. msgstr "Szerokość linii na górnej powierzchni tratwy. Mogą to być cienkie linie tak, aby góra tratwy była gładka."
  4158. msgctxt "wall_line_width_0 description"
  4159. msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed."
  4160. msgstr "Szerokość zewnętrznej linii ściany. Przez obniżenie tej wartości wyższe poziomy szczegółów mogą być drukowane."
  4161. msgctxt "min_bead_width description"
  4162. msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself."
  4163. msgstr ""
  4164. msgctxt "wipe_brush_pos_x label"
  4165. msgid "Wipe Brush X Position"
  4166. msgstr "X pozycji czyszczenia"
  4167. msgctxt "wipe_hop_speed label"
  4168. msgid "Wipe Hop Speed"
  4169. msgstr "Prędkość czyszczącego skoku Z"
  4170. msgctxt "prime_tower_wipe_enabled label"
  4171. msgid "Wipe Inactive Nozzle on Prime Tower"
  4172. msgstr "Wytrzyj Nieużywaną Dyszę o Wieżę Czyszczącą"
  4173. msgctxt "wipe_move_distance label"
  4174. msgid "Wipe Move Distance"
  4175. msgstr "Odległość ruchu czyszczenia"
  4176. msgctxt "clean_between_layers label"
  4177. msgid "Wipe Nozzle Between Layers"
  4178. msgstr "Wytrzyj dyszę pomiędzy warstwami"
  4179. msgctxt "wipe_pause label"
  4180. msgid "Wipe Pause"
  4181. msgstr "Wstrzymaj czyszczenie"
  4182. msgctxt "wipe_repeat_count label"
  4183. msgid "Wipe Repeat Count"
  4184. msgstr "Ilość powtórzeń czyszczenia"
  4185. msgctxt "wipe_retraction_amount label"
  4186. msgid "Wipe Retraction Distance"
  4187. msgstr "Długość czyszczenia przy retrakcji"
  4188. msgctxt "wipe_retraction_enable label"
  4189. msgid "Wipe Retraction Enable"
  4190. msgstr "Włącz Czyszczenie przy retrakcji"
  4191. msgctxt "wipe_retraction_extra_prime_amount label"
  4192. msgid "Wipe Retraction Extra Prime Amount"
  4193. msgstr "Dodatkowa wartość czyszczenia dla Czyszczenia przy retrakcji"
  4194. msgctxt "wipe_retraction_prime_speed label"
  4195. msgid "Wipe Retraction Prime Speed"
  4196. msgstr ""
  4197. msgctxt "wipe_retraction_retract_speed label"
  4198. msgid "Wipe Retraction Retract Speed"
  4199. msgstr "Prędkość retrakcji Czyszczenia przy retrakcji"
  4200. msgctxt "wipe_retraction_speed label"
  4201. msgid "Wipe Retraction Speed"
  4202. msgstr "Prędkość Czyszczenia przy retrakcji"
  4203. msgctxt "wipe_hop_enable label"
  4204. msgid "Wipe Z Hop"
  4205. msgstr ""
  4206. msgctxt "wipe_hop_amount label"
  4207. msgid "Wipe Z Hop Height"
  4208. msgstr "Wysokość skoku Z przy czyszczeniu"
  4209. msgctxt "retraction_combing option infill"
  4210. msgid "Within Infill"
  4211. msgstr "Wewnątrz Wypełnienia"
  4212. msgctxt "machine_always_write_active_tool description"
  4213. msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands."
  4214. msgstr ""
  4215. msgctxt "machine_endstop_positive_direction_x label"
  4216. msgid "X Endstop in Positive Direction"
  4217. msgstr "Krańcówka X w Pozycji Dodatniej"
  4218. msgctxt "wipe_brush_pos_x description"
  4219. msgid "X location where wipe script will start."
  4220. msgstr "Pozycja X, w której skrypt zaczyna."
  4221. msgctxt "support_xy_overrides_z option xy_overrides_z"
  4222. msgid "X/Y overrides Z"
  4223. msgstr "X/Y nadpisuje Z"
  4224. msgctxt "machine_endstop_positive_direction_y label"
  4225. msgid "Y Endstop in Positive Direction"
  4226. msgstr "Krańcówka Y w Pozycji Dodatniej"
  4227. msgctxt "machine_endstop_positive_direction_z label"
  4228. msgid "Z Endstop in Positive Direction"
  4229. msgstr "Krańcówka Z w Pozycji Dodatniej"
  4230. msgctxt "retraction_hop_after_extruder_switch label"
  4231. msgid "Z Hop After Extruder Switch"
  4232. msgstr "Skok Z po Zmianie Ekstrudera"
  4233. msgctxt "retraction_hop_after_extruder_switch_height label"
  4234. msgid "Z Hop After Extruder Switch Height"
  4235. msgstr "Skok Z po zmianie wysokości ekstrudera"
  4236. msgctxt "retraction_hop label"
  4237. msgid "Z Hop Height"
  4238. msgstr "Wysokość Skoku Z"
  4239. msgctxt "retraction_hop_only_when_collides label"
  4240. msgid "Z Hop Only Over Printed Parts"
  4241. msgstr "Skok Z Tylko nad Druk. Częściami"
  4242. msgctxt "speed_z_hop label"
  4243. msgid "Z Hop Speed"
  4244. msgstr "Prędkość skoku Z"
  4245. msgctxt "retraction_hop_enabled label"
  4246. msgid "Z Hop When Retracted"
  4247. msgstr "Skok Z Podczas Retrakcji"
  4248. msgctxt "z_seam_type label"
  4249. msgid "Z Seam Alignment"
  4250. msgstr "Wyrównanie Szwu Z"
  4251. msgctxt "z_seam_position label"
  4252. msgid "Z Seam Position"
  4253. msgstr "Pozycja szwu osi Z"
  4254. msgctxt "z_seam_relative label"
  4255. msgid "Z Seam Relative"
  4256. msgstr "Względny Szew Z"
  4257. msgctxt "z_seam_x label"
  4258. msgid "Z Seam X"
  4259. msgstr "Szew X"
  4260. msgctxt "z_seam_y label"
  4261. msgid "Z Seam Y"
  4262. msgstr "Szew Y"
  4263. msgctxt "support_xy_overrides_z option z_overrides_xy"
  4264. msgid "Z overrides X/Y"
  4265. msgstr "Z nadpisuje X/Y"
  4266. msgctxt "infill_pattern option zigzag"
  4267. msgid "Zig Zag"
  4268. msgstr "Zygzak"
  4269. msgctxt "ironing_pattern option zigzag"
  4270. msgid "Zig Zag"
  4271. msgstr "Zygzak"
  4272. msgctxt "roofing_pattern option zigzag"
  4273. msgid "Zig Zag"
  4274. msgstr "Zygzak"
  4275. msgctxt "support_bottom_pattern option zigzag"
  4276. msgid "Zig Zag"
  4277. msgstr "Zygzak"
  4278. msgctxt "support_interface_pattern option zigzag"
  4279. msgid "Zig Zag"
  4280. msgstr "Zygzak"
  4281. msgctxt "support_pattern option zigzag"
  4282. msgid "Zig Zag"
  4283. msgstr "Zygzak"
  4284. msgctxt "support_roof_pattern option zigzag"
  4285. msgid "Zig Zag"
  4286. msgstr "Zygzak"
  4287. msgctxt "top_bottom_pattern option zigzag"
  4288. msgid "Zig Zag"
  4289. msgstr "Zygzak"
  4290. msgctxt "top_bottom_pattern_0 option zigzag"
  4291. msgid "Zig Zag"
  4292. msgstr "Zygzak"
  4293. msgctxt "travel description"
  4294. msgid "travel"
  4295. msgstr "ruch jałowy"
  4296. #~ msgctxt "user_defined_print_order_enabled description"
  4297. #~ msgid "Allows to order the object list to set the print sequence manually. First object from the list will be printed first."
  4298. #~ msgstr "Umożliwia ręczne ustawienie kolejności drukowania na liście obiektów. Pierwszy obiekt z listy zostanie wydrukowany jako pierwszy."
  4299. #~ msgctxt "brim_outside_only label"
  4300. #~ msgid "Brim Only on Outside"
  4301. #~ msgstr "Obrys Tylko na Zew"
  4302. #~ msgctxt "layer_0_z_overlap description"
  4303. #~ msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount."
  4304. #~ msgstr "Niech pierwsza i druga warstwa nachodzą na siebie w osi Z, aby skompensować stratę filamentu w szczelinie powietrznej. Wszystkie modele powyżej pierwszej warstwy modelu będą obniżone o tą wartość."
  4305. #~ msgctxt "brim_outside_only description"
  4306. #~ msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much."
  4307. #~ msgstr "Drukuj obrys tylko na zewnątrz modelu. Zmniejsza to liczbę obrysu, który trzeba usunąć po wydruku, podczas gdy nie zmniejsza znacząco przyczepności do stołu."
  4308. #~ msgctxt "support_interface_skip_height label"
  4309. #~ msgid "Support Interface Resolution"
  4310. #~ msgstr "Rozdzielczość Połączenia Podpory"
  4311. #~ msgctxt "support_interface_skip_height description"
  4312. #~ msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface."
  4313. #~ msgstr "Sprawdzając, czy model znajduje się powyżej czy poniżej podpory, wykonaj stopnie o danej wysokości. Niższe wartości będą cięte wolniej, podczas gdy wyższe wartości mogą powodować drukowanie zwykłej podpory w niektórych miejscach, w których powinno istnieć połączenie."