fdmprinter.def.json.po 342 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534
  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: 2022-09-27 14:50+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. #: /fdmprinter.def.json
  19. msgctxt "ironing_inset description"
  20. 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."
  21. msgstr "Odległość utrzymywana od krawędzi modelu. Prasowanie do końca krawędzi siatki może powodować zadarte krawędzie na wydruku."
  22. #: /fdmprinter.def.json
  23. msgctxt "material_no_load_move_factor description"
  24. 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."
  25. msgstr ""
  26. #: /fdmprinter.def.json
  27. msgctxt "roofing_angles description"
  28. 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)."
  29. 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)."
  30. #: /fdmprinter.def.json
  31. msgctxt "skin_angles description"
  32. 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)."
  33. 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)."
  34. #: /fdmprinter.def.json
  35. msgctxt "support_infill_angles description"
  36. 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."
  37. 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."
  38. #: /fdmprinter.def.json
  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. #: /fdmprinter.def.json
  43. msgctxt "support_interface_angles description"
  44. 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)."
  45. 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)."
  46. #: /fdmprinter.def.json
  47. msgctxt "support_roof_angles description"
  48. 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)."
  49. 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)."
  50. #: /fdmprinter.def.json
  51. msgctxt "infill_angles description"
  52. 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)."
  53. 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)."
  54. #: /fdmprinter.def.json
  55. msgctxt "nozzle_disallowed_areas description"
  56. msgid "A list of polygons with areas the nozzle is not allowed to enter."
  57. msgstr "Lista obszarów, w które dysze nie mogą wjeżdżać."
  58. #: /fdmprinter.def.json
  59. msgctxt "machine_disallowed_areas description"
  60. msgid "A list of polygons with areas the print head is not allowed to enter."
  61. msgstr "Lista obszarów, we których głowica nie może się poruszać."
  62. #: /fdmprinter.def.json
  63. msgctxt "extruder_prime_pos_abs label"
  64. msgid "Absolute Extruder Prime Position"
  65. msgstr "Bezwzgl. Końcowa Pozycja Ekstrudera"
  66. #: /fdmprinter.def.json
  67. msgctxt "adaptive_layer_height_variation label"
  68. msgid "Adaptive Layers Maximum Variation"
  69. msgstr "Maks. zmiana zmiennych warstw"
  70. #: /fdmprinter.def.json
  71. msgctxt "adaptive_layer_height_threshold label"
  72. msgid "Adaptive Layers Topography Size"
  73. msgstr "Rozmiar topografii warstw adaptacyjnych"
  74. #: /fdmprinter.def.json
  75. msgctxt "adaptive_layer_height_variation_step label"
  76. msgid "Adaptive Layers Variation Step Size"
  77. msgstr "Krok zmian zmiennych warstw"
  78. #: /fdmprinter.def.json
  79. msgctxt "adaptive_layer_height_enabled description"
  80. msgid "Adaptive layers computes the layer heights depending on the shape of the model."
  81. msgstr "Zmienne warstwy obliczają wysokości warstw w zależności od kształtu modelu."
  82. #: /fdmprinter.def.json
  83. msgctxt "infill_wall_line_count description"
  84. msgid ""
  85. "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"
  86. "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."
  87. msgstr ""
  88. "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"
  89. "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."
  90. #: /fdmprinter.def.json
  91. msgctxt "platform_adhesion description"
  92. msgid "Adhesion"
  93. msgstr "Przyczepność"
  94. #: /fdmprinter.def.json
  95. msgctxt "material_adhesion_tendency label"
  96. msgid "Adhesion Tendency"
  97. msgstr "Tendencja Przyczepności"
  98. #: /fdmprinter.def.json
  99. msgctxt "skin_overlap description"
  100. 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."
  101. 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."
  102. #: /fdmprinter.def.json
  103. msgctxt "skin_overlap_mm description"
  104. 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."
  105. 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."
  106. #: /fdmprinter.def.json
  107. msgctxt "infill_sparse_density description"
  108. msgid "Adjusts the density of infill of the print."
  109. msgstr "Dostosowuje gęstość wypełnienia wydruku."
  110. #: /fdmprinter.def.json
  111. msgctxt "support_interface_density description"
  112. 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."
  113. msgstr "Dostosowuje gęstość dachów i podłoży podpory. Wyższa wartość powoduje lepsze zwisy, ale podpory są trudniejsze do usunięcia."
  114. #: /fdmprinter.def.json
  115. msgctxt "support_infill_rate description"
  116. msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  117. msgstr "Reguluje gęstość struktury podpory. Wyższa wartość powoduje lepsze zwisy, ale podpory są trudniejsze do usunięcia."
  118. #: /fdmprinter.def.json
  119. msgctxt "material_diameter description"
  120. msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament."
  121. msgstr "Dostosowuje średnicę stosowanego filamentu. Dopasuj tę wartość do średnicy stosowanego filamentu."
  122. #: /fdmprinter.def.json
  123. msgctxt "support_type description"
  124. 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."
  125. 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."
  126. #: /fdmprinter.def.json
  127. msgctxt "prime_tower_wipe_enabled description"
  128. msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower."
  129. msgstr "Po wydrukowaniu podstawowej wieży jedną dyszą, wytrzyj wytłoczony materiał z drugiej dyszy o wieżę czyszczącą."
  130. #: /fdmprinter.def.json
  131. msgctxt "retraction_hop_after_extruder_switch description"
  132. 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."
  133. 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."
  134. #: /fdmprinter.def.json
  135. msgctxt "retraction_combing option all"
  136. msgid "All"
  137. msgstr "Wszędzie"
  138. #: /fdmprinter.def.json
  139. msgctxt "print_sequence option all_at_once"
  140. msgid "All at Once"
  141. msgstr "Wszystko na raz"
  142. #: /fdmprinter.def.json
  143. msgctxt "resolution description"
  144. msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)"
  145. msgstr "Wszystkie ustawienia, które wpływają na rozdzielczość druku. Ustawienia te mają ogromny wpływ na jakość (i czas druku)"
  146. #: /fdmprinter.def.json
  147. msgctxt "alternate_extra_perimeter label"
  148. msgid "Alternate Extra Wall"
  149. msgstr "Zastosuj Dodatkową Ścianę"
  150. #: /fdmprinter.def.json
  151. msgctxt "alternate_carve_order label"
  152. msgid "Alternate Mesh Removal"
  153. msgstr "Zastosuj Usuwanie Siatki"
  154. #: /fdmprinter.def.json
  155. msgctxt "material_alternate_walls label"
  156. msgid "Alternate Wall Directions"
  157. msgstr ""
  158. #: /fdmprinter.def.json
  159. msgctxt "material_alternate_walls description"
  160. msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing."
  161. msgstr ""
  162. #: /fdmprinter.def.json
  163. msgctxt "machine_buildplate_type option aluminum"
  164. msgid "Aluminum"
  165. msgstr "Aluminium"
  166. #: /fdmprinter.def.json
  167. msgctxt "machine_always_write_active_tool label"
  168. msgid "Always Write Active Tool"
  169. msgstr ""
  170. #: /fdmprinter.def.json
  171. msgctxt "travel_retract_before_outer_wall description"
  172. msgid "Always retract when moving to start an outer wall."
  173. msgstr "Zawsze cofaj podczas przemieszczania się do początku zewnętrznej ściany."
  174. #: /fdmprinter.def.json
  175. msgctxt "hole_xy_offset description"
  176. msgid "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."
  177. msgstr ""
  178. #: /fdmprinter.def.json
  179. msgctxt "xy_offset description"
  180. 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."
  181. 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."
  182. #: /fdmprinter.def.json
  183. msgctxt "xy_offset_layer_0 description"
  184. 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\"."
  185. 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\"."
  186. #: /fdmprinter.def.json
  187. msgctxt "support_offset description"
  188. 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."
  189. 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."
  190. #: /fdmprinter.def.json
  191. msgctxt "support_bottom_offset description"
  192. msgid "Amount of offset applied to the floors of the support."
  193. msgstr "Wartość przesunięcia zastosowana do obszaru podłoża podpór."
  194. #: /fdmprinter.def.json
  195. msgctxt "support_roof_offset description"
  196. msgid "Amount of offset applied to the roofs of the support."
  197. msgstr "Wartość przesunięcia zastosowana do obszaru dachu podpór."
  198. #: /fdmprinter.def.json
  199. msgctxt "support_interface_offset description"
  200. msgid "Amount of offset applied to the support interface polygons."
  201. msgstr "Wartość przesunięcia zastosowana do obszaru interfejsu podpór."
  202. #: /fdmprinter.def.json
  203. msgctxt "wipe_retraction_amount description"
  204. msgid "Amount to retract the filament so it does not ooze during the wipe sequence."
  205. msgstr "Ilość filamentu do retrakcji, aby nie wyciekał podczas czyszczenia."
  206. #: /fdmprinter.def.json
  207. msgctxt "sub_div_rad_add description"
  208. 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."
  209. 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."
  210. #: /fdmprinter.def.json
  211. msgctxt "anti_overhang_mesh label"
  212. msgid "Anti Overhang Mesh"
  213. msgstr "Siatka Anty-zwisowa"
  214. #: /fdmprinter.def.json
  215. msgctxt "material_anti_ooze_retracted_position label"
  216. msgid "Anti-ooze Retracted Position"
  217. msgstr "Odległość retrakcji anty-wyciekom"
  218. #: /fdmprinter.def.json
  219. msgctxt "material_anti_ooze_retraction_speed label"
  220. msgid "Anti-ooze Retraction Speed"
  221. msgstr "Szybkość retrakcji anty-wyciekom"
  222. #: /fdmprinter.def.json
  223. msgctxt "machine_use_extruder_offset_to_offset_coords description"
  224. msgid "Apply the extruder offset to the coordinate system. Affects all extruders."
  225. msgstr ""
  226. #: /fdmprinter.def.json
  227. msgctxt "material_flow_dependent_temperature label"
  228. msgid "Auto Temperature"
  229. msgstr "Auto Temperatura"
  230. #: /fdmprinter.def.json
  231. msgctxt "travel_avoid_other_parts label"
  232. msgid "Avoid Printed Parts When Traveling"
  233. msgstr "Unikaj Wydruk. Części Podczas Ruchu Jałowego"
  234. #: /fdmprinter.def.json
  235. msgctxt "travel_avoid_supports label"
  236. msgid "Avoid Supports When Traveling"
  237. msgstr "Unikaj Podpór Podczas Ruchu Jałowego"
  238. #: /fdmprinter.def.json
  239. msgctxt "z_seam_position option back"
  240. msgid "Back"
  241. msgstr "Tył"
  242. #: /fdmprinter.def.json
  243. msgctxt "z_seam_position option backleft"
  244. msgid "Back Left"
  245. msgstr "Lewy tył"
  246. #: /fdmprinter.def.json
  247. msgctxt "z_seam_position option backright"
  248. msgid "Back Right"
  249. msgstr "Prawy tył"
  250. #: /fdmprinter.def.json
  251. msgctxt "machine_gcode_flavor option BFB"
  252. msgid "Bits from Bytes"
  253. msgstr "Bits from Bytes"
  254. #: /fdmprinter.def.json
  255. msgctxt "magic_mesh_surface_mode option both"
  256. msgid "Both"
  257. msgstr "Oba"
  258. #: /fdmprinter.def.json
  259. msgctxt "bottom_layers label"
  260. msgid "Bottom Layers"
  261. msgstr "Dolne Warstwy"
  262. #: /fdmprinter.def.json
  263. msgctxt "top_bottom_pattern_0 label"
  264. msgid "Bottom Pattern Initial Layer"
  265. msgstr "Wzór Dolnej Początkowej Warstwy"
  266. #: /fdmprinter.def.json
  267. msgctxt "bottom_skin_expand_distance label"
  268. msgid "Bottom Skin Expand Distance"
  269. msgstr "Odległość Rozsz. Dolnej Skóry"
  270. #: /fdmprinter.def.json
  271. msgctxt "bottom_skin_preshrink label"
  272. msgid "Bottom Skin Removal Width"
  273. msgstr "Szer. Usuwania Dolnej Skóry"
  274. #: /fdmprinter.def.json
  275. msgctxt "bottom_thickness label"
  276. msgid "Bottom Thickness"
  277. msgstr "Grubość Dołu"
  278. #: /fdmprinter.def.json
  279. msgctxt "material_break_preparation_retracted_position label"
  280. msgid "Break Preparation Retracted Position"
  281. msgstr "Odległość pęknięcia przy retrakcji"
  282. #: /fdmprinter.def.json
  283. msgctxt "material_break_preparation_speed label"
  284. msgid "Break Preparation Retraction Speed"
  285. msgstr "Szybkość pękania przy retrakcji"
  286. #: /fdmprinter.def.json
  287. msgctxt "material_break_preparation_temperature label"
  288. msgid "Break Preparation Temperature"
  289. msgstr ""
  290. #: /fdmprinter.def.json
  291. msgctxt "material_break_retracted_position label"
  292. msgid "Break Retracted Position"
  293. msgstr "Odległość łamania retrakcji"
  294. #: /fdmprinter.def.json
  295. msgctxt "material_break_speed label"
  296. msgid "Break Retraction Speed"
  297. msgstr "Szybkość łamania retrakcji"
  298. #: /fdmprinter.def.json
  299. msgctxt "material_break_temperature label"
  300. msgid "Break Temperature"
  301. msgstr "Temperatura pękania"
  302. #: /fdmprinter.def.json
  303. msgctxt "support_skip_some_zags label"
  304. msgid "Break Up Support In Chunks"
  305. msgstr "Podziel Podpory na Kawałki"
  306. #: /fdmprinter.def.json
  307. msgctxt "bridge_fan_speed label"
  308. msgid "Bridge Fan Speed"
  309. msgstr "Prędk. Wentylatora - Mosty"
  310. #: /fdmprinter.def.json
  311. msgctxt "bridge_enable_more_layers label"
  312. msgid "Bridge Has Multiple Layers"
  313. msgstr "Most Ma Wiele Warstw"
  314. #: /fdmprinter.def.json
  315. msgctxt "bridge_skin_density_2 label"
  316. msgid "Bridge Second Skin Density"
  317. msgstr "Gęstość Drugiej Skóry Mostu"
  318. #: /fdmprinter.def.json
  319. msgctxt "bridge_fan_speed_2 label"
  320. msgid "Bridge Second Skin Fan Speed"
  321. msgstr "Prędk. Wentylatora - Druga Skóra Mostu"
  322. #: /fdmprinter.def.json
  323. msgctxt "bridge_skin_material_flow_2 label"
  324. msgid "Bridge Second Skin Flow"
  325. msgstr "Przepływ Drugiej Skóry Mostu"
  326. #: /fdmprinter.def.json
  327. msgctxt "bridge_skin_speed_2 label"
  328. msgid "Bridge Second Skin Speed"
  329. msgstr "Prędk. Drugiej Skóry Mostu"
  330. #: /fdmprinter.def.json
  331. msgctxt "bridge_skin_density label"
  332. msgid "Bridge Skin Density"
  333. msgstr "Gęstość Skóry Mostu"
  334. #: /fdmprinter.def.json
  335. msgctxt "bridge_skin_material_flow label"
  336. msgid "Bridge Skin Flow"
  337. msgstr "Przepływ Skóry Mostu"
  338. #: /fdmprinter.def.json
  339. msgctxt "bridge_skin_speed label"
  340. msgid "Bridge Skin Speed"
  341. msgstr "Prędk. Skóry Mostu"
  342. #: /fdmprinter.def.json
  343. msgctxt "bridge_skin_support_threshold label"
  344. msgid "Bridge Skin Support Threshold"
  345. msgstr "Próg Podpory Skóry Mostu"
  346. #: /fdmprinter.def.json
  347. msgctxt "bridge_sparse_infill_max_density label"
  348. msgid "Bridge Sparse Infill Max Density"
  349. msgstr ""
  350. #: /fdmprinter.def.json
  351. msgctxt "bridge_skin_density_3 label"
  352. msgid "Bridge Third Skin Density"
  353. msgstr "Gęstość Trzeciej Skóry Mostu"
  354. #: /fdmprinter.def.json
  355. msgctxt "bridge_fan_speed_3 label"
  356. msgid "Bridge Third Skin Fan Speed"
  357. msgstr "Prędk. Wentylatora - Trzecia Skóra Mostu"
  358. #: /fdmprinter.def.json
  359. msgctxt "bridge_skin_material_flow_3 label"
  360. msgid "Bridge Third Skin Flow"
  361. msgstr "Przepływ Trzeciej Skóry Mostu"
  362. #: /fdmprinter.def.json
  363. msgctxt "bridge_skin_speed_3 label"
  364. msgid "Bridge Third Skin Speed"
  365. msgstr "Prędkość Trzeciej Skóry Mostu"
  366. #: /fdmprinter.def.json
  367. msgctxt "bridge_wall_coast label"
  368. msgid "Bridge Wall Coasting"
  369. msgstr "Rozbieg Ściany Mostu"
  370. #: /fdmprinter.def.json
  371. msgctxt "bridge_wall_material_flow label"
  372. msgid "Bridge Wall Flow"
  373. msgstr "Przepływ Mostów"
  374. #: /fdmprinter.def.json
  375. msgctxt "bridge_wall_speed label"
  376. msgid "Bridge Wall Speed"
  377. msgstr "Prędkość Ścian Mostu"
  378. #: /fdmprinter.def.json
  379. msgctxt "adhesion_type option brim"
  380. msgid "Brim"
  381. msgstr "Obrys"
  382. #: /fdmprinter.def.json
  383. msgctxt "brim_gap label"
  384. msgid "Brim Distance"
  385. msgstr ""
  386. #: /fdmprinter.def.json
  387. msgctxt "brim_line_count label"
  388. msgid "Brim Line Count"
  389. msgstr "Liczba Linii Obrysu"
  390. #: /fdmprinter.def.json
  391. msgctxt "brim_outside_only label"
  392. msgid "Brim Only on Outside"
  393. msgstr "Obrys Tylko na Zew"
  394. #: /fdmprinter.def.json
  395. msgctxt "brim_replaces_support label"
  396. msgid "Brim Replaces Support"
  397. msgstr "Podpory Zastąp Obrysem"
  398. #: /fdmprinter.def.json
  399. msgctxt "brim_width label"
  400. msgid "Brim Width"
  401. msgstr "Szerokość Obrysu"
  402. #: /fdmprinter.def.json
  403. msgctxt "platform_adhesion label"
  404. msgid "Build Plate Adhesion"
  405. msgstr "Popraw Przycz. Stołu"
  406. #: /fdmprinter.def.json
  407. msgctxt "adhesion_extruder_nr label"
  408. msgid "Build Plate Adhesion Extruder"
  409. msgstr "Ekstruder Adhezji Pola Roboczego"
  410. #: /fdmprinter.def.json
  411. msgctxt "adhesion_type label"
  412. msgid "Build Plate Adhesion Type"
  413. msgstr "Typ Zwiększenia Przyczepności"
  414. #: /fdmprinter.def.json
  415. msgctxt "machine_buildplate_type label"
  416. msgid "Build Plate Material"
  417. msgstr "Materiał Platformy Roboczej"
  418. #: /fdmprinter.def.json
  419. msgctxt "machine_shape label"
  420. msgid "Build Plate Shape"
  421. msgstr "Kształt Stołu"
  422. #: /fdmprinter.def.json
  423. msgctxt "material_bed_temperature label"
  424. msgid "Build Plate Temperature"
  425. msgstr "Temperatura Stołu"
  426. #: /fdmprinter.def.json
  427. msgctxt "material_bed_temperature_layer_0 label"
  428. msgid "Build Plate Temperature Initial Layer"
  429. msgstr "Temp. Stołu na Pierw. Warstwie"
  430. #: /fdmprinter.def.json
  431. msgctxt "build_volume_temperature label"
  432. msgid "Build Volume Temperature"
  433. msgstr "Temperatura obszaru roboczego"
  434. #: /fdmprinter.def.json
  435. msgctxt "center_object label"
  436. msgid "Center Object"
  437. msgstr "Wyśrodkuj obiekt"
  438. #: /fdmprinter.def.json
  439. msgctxt "conical_overhang_enabled description"
  440. 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."
  441. msgstr "Zmienia geometrię modelu tak, aby wymagał minimalnego podparcia. Strome zwisy staną się mniej strome. Zwisające obszary zostaną opuszczone by być bardziej pionowymi."
  442. #: /fdmprinter.def.json
  443. msgctxt "material_flow_dependent_temperature description"
  444. msgid "Change the temperature for each layer automatically with the average flow speed of that layer."
  445. msgstr "Zmień temperaturę każdej warstwy automatycznie przy średniej prędkości przepływu tej warstwy."
  446. #: /fdmprinter.def.json
  447. msgctxt "support_structure description"
  448. 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."
  449. msgstr ""
  450. #: /fdmprinter.def.json
  451. msgctxt "coasting_speed label"
  452. msgid "Coasting Speed"
  453. msgstr "Prędkość Wypływania"
  454. #: /fdmprinter.def.json
  455. msgctxt "coasting_volume label"
  456. msgid "Coasting Volume"
  457. msgstr "Objętość Wypływania"
  458. #: /fdmprinter.def.json
  459. msgctxt "coasting_enable description"
  460. 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."
  461. 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."
  462. #: /fdmprinter.def.json
  463. msgctxt "retraction_combing label"
  464. msgid "Combing Mode"
  465. msgstr "Tryb Kombinowania"
  466. #: /fdmprinter.def.json
  467. msgctxt "retraction_combing description"
  468. 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."
  469. 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."
  470. #: /fdmprinter.def.json
  471. msgctxt "command_line_settings label"
  472. msgid "Command Line Settings"
  473. msgstr "Ustawienia Wiersza Polecenia"
  474. #: /fdmprinter.def.json
  475. msgctxt "wireframe_strategy option compensate"
  476. msgid "Compensate"
  477. msgstr "Kompensuj"
  478. #: /fdmprinter.def.json
  479. msgctxt "infill_pattern option concentric"
  480. msgid "Concentric"
  481. msgstr "Koncentryczny"
  482. #: /fdmprinter.def.json
  483. msgctxt "ironing_pattern option concentric"
  484. msgid "Concentric"
  485. msgstr "Koncentryczny"
  486. #: /fdmprinter.def.json
  487. msgctxt "roofing_pattern option concentric"
  488. msgid "Concentric"
  489. msgstr "Koncentryczny"
  490. #: /fdmprinter.def.json
  491. msgctxt "support_bottom_pattern option concentric"
  492. msgid "Concentric"
  493. msgstr "Koncentryczny"
  494. #: /fdmprinter.def.json
  495. msgctxt "support_interface_pattern option concentric"
  496. msgid "Concentric"
  497. msgstr "Koncentryczny"
  498. #: /fdmprinter.def.json
  499. msgctxt "support_pattern option concentric"
  500. msgid "Concentric"
  501. msgstr "Koncentryczny"
  502. #: /fdmprinter.def.json
  503. msgctxt "support_roof_pattern option concentric"
  504. msgid "Concentric"
  505. msgstr "Koncentryczny"
  506. #: /fdmprinter.def.json
  507. msgctxt "top_bottom_pattern option concentric"
  508. msgid "Concentric"
  509. msgstr "Koncentryczny"
  510. #: /fdmprinter.def.json
  511. msgctxt "top_bottom_pattern_0 option concentric"
  512. msgid "Concentric"
  513. msgstr "Koncentryczny"
  514. #: /fdmprinter.def.json
  515. msgctxt "support_conical_angle label"
  516. msgid "Conical Support Angle"
  517. msgstr "Kąt Podpory Stożkowej"
  518. #: /fdmprinter.def.json
  519. msgctxt "support_conical_min_width label"
  520. msgid "Conical Support Minimum Width"
  521. msgstr "Min. Szerokość Podpory Stożkowej"
  522. #: /fdmprinter.def.json
  523. msgctxt "zig_zaggify_infill label"
  524. msgid "Connect Infill Lines"
  525. msgstr "Połącz Linie Wypełnienia"
  526. #: /fdmprinter.def.json
  527. msgctxt "connect_infill_polygons label"
  528. msgid "Connect Infill Polygons"
  529. msgstr "Połącz Wieloboki Wypełnienia"
  530. #: /fdmprinter.def.json
  531. msgctxt "zig_zaggify_support label"
  532. msgid "Connect Support Lines"
  533. msgstr "Łącz Linie Podpory"
  534. #: /fdmprinter.def.json
  535. msgctxt "support_connect_zigzags label"
  536. msgid "Connect Support ZigZags"
  537. msgstr "Połącz Zygzaki Podpory"
  538. #: /fdmprinter.def.json
  539. msgctxt "connect_skin_polygons label"
  540. msgid "Connect Top/Bottom Polygons"
  541. msgstr "Połącz Górne/Dolne Wieloboki"
  542. #: /fdmprinter.def.json
  543. msgctxt "connect_infill_polygons description"
  544. 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."
  545. 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."
  546. #: /fdmprinter.def.json
  547. msgctxt "support_connect_zigzags description"
  548. msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure."
  549. msgstr "Połącz Zygzaki. To zwiększa wytrzymałość zygzakowatej podpory."
  550. #: /fdmprinter.def.json
  551. msgctxt "zig_zaggify_support description"
  552. 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."
  553. 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."
  554. #: /fdmprinter.def.json
  555. msgctxt "zig_zaggify_infill description"
  556. 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."
  557. 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."
  558. #: /fdmprinter.def.json
  559. msgctxt "connect_skin_polygons description"
  560. 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."
  561. 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."
  562. #: /fdmprinter.def.json
  563. msgctxt "z_seam_corner description"
  564. 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."
  565. 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."
  566. #: /fdmprinter.def.json
  567. msgctxt "infill_multiplier description"
  568. 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."
  569. 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ę."
  570. #: /fdmprinter.def.json
  571. msgctxt "machine_nozzle_cool_down_speed label"
  572. msgid "Cool Down Speed"
  573. msgstr "Prędkość chłodzenia"
  574. #: /fdmprinter.def.json
  575. msgctxt "cooling description"
  576. msgid "Cooling"
  577. msgstr "Chłodzenie"
  578. #: /fdmprinter.def.json
  579. msgctxt "cooling label"
  580. msgid "Cooling"
  581. msgstr "Chłodzenie"
  582. #: /fdmprinter.def.json
  583. msgctxt "wireframe_top_jump description"
  584. msgid "Creates a small knot at the top of an upward line, so that the consecutive horizontal layer has a better chance to connect to it. Only applies to Wire Printing."
  585. msgstr "Tworzy mały węzeł u góry linii w górę, dzięki czemu kolejna pozioma warstwa ma większą szansę połączenia się z nią. Dotyczy tylko Drukowania Drutu."
  586. #: /fdmprinter.def.json
  587. msgctxt "infill_pattern option cross"
  588. msgid "Cross"
  589. msgstr "Krzyż"
  590. #: /fdmprinter.def.json
  591. msgctxt "support_pattern option cross"
  592. msgid "Cross"
  593. msgstr "Krzyż"
  594. #: /fdmprinter.def.json
  595. msgctxt "infill_pattern option cross_3d"
  596. msgid "Cross 3D"
  597. msgstr "Krzyż 3D"
  598. #: /fdmprinter.def.json
  599. msgctxt "cross_infill_pocket_size label"
  600. msgid "Cross 3D Pocket Size"
  601. msgstr "Rozmiar Kieszeni Krzyża 3D"
  602. #: /fdmprinter.def.json
  603. msgctxt "cross_support_density_image label"
  604. msgid "Cross Fill Density Image for Support"
  605. msgstr "Gęstości Wypełnienia Krzyżowego Podstaw Według Obrazu"
  606. #: /fdmprinter.def.json
  607. msgctxt "cross_infill_density_image label"
  608. msgid "Cross Infill Density Image"
  609. msgstr "Gęstośc Wypełnienia Krzyżowego Według Obrazu"
  610. #: /fdmprinter.def.json
  611. msgctxt "material_crystallinity label"
  612. msgid "Crystalline Material"
  613. msgstr "Materiał krystaliczny"
  614. #: /fdmprinter.def.json
  615. msgctxt "infill_pattern option cubic"
  616. msgid "Cubic"
  617. msgstr "Sześcienny"
  618. #: /fdmprinter.def.json
  619. msgctxt "infill_pattern option cubicsubdiv"
  620. msgid "Cubic Subdivision"
  621. msgstr "Podział sześcienny"
  622. #: /fdmprinter.def.json
  623. msgctxt "sub_div_rad_add label"
  624. msgid "Cubic Subdivision Shell"
  625. msgstr "Sześcienny Podział Powłoki"
  626. #: /fdmprinter.def.json
  627. msgctxt "cutting_mesh label"
  628. msgid "Cutting Mesh"
  629. msgstr "Cięcie Siatki"
  630. #: /fdmprinter.def.json
  631. msgctxt "material_flow_temp_graph description"
  632. msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)."
  633. msgstr "Dane łączące przepływ materiału (w mm3 na sekundę) z temperaturą (stopnie Celsjusza)."
  634. #: /fdmprinter.def.json
  635. msgctxt "machine_acceleration label"
  636. msgid "Default Acceleration"
  637. msgstr "Domyślne Przyspieszenie"
  638. #: /fdmprinter.def.json
  639. msgctxt "default_material_bed_temperature label"
  640. msgid "Default Build Plate Temperature"
  641. msgstr "Domyślna Temp. Platformy Roboczej"
  642. #: /fdmprinter.def.json
  643. msgctxt "machine_max_jerk_e label"
  644. msgid "Default Filament Jerk"
  645. msgstr "Domyślny Zryw Filamentu"
  646. #: /fdmprinter.def.json
  647. msgctxt "default_material_print_temperature label"
  648. msgid "Default Printing Temperature"
  649. msgstr "Domyślna Temperatura Druku"
  650. #: /fdmprinter.def.json
  651. msgctxt "machine_max_jerk_xy label"
  652. msgid "Default X-Y Jerk"
  653. msgstr "Domyślny Zryw X-Y"
  654. #: /fdmprinter.def.json
  655. msgctxt "machine_max_jerk_z label"
  656. msgid "Default Z Jerk"
  657. msgstr "Domyślny Zryw Z"
  658. #: /fdmprinter.def.json
  659. msgctxt "machine_max_jerk_xy description"
  660. msgid "Default jerk for movement in the horizontal plane."
  661. msgstr "Domyślny zryw dla ruchu w płaszczyźnie poziomej."
  662. #: /fdmprinter.def.json
  663. msgctxt "machine_max_jerk_z description"
  664. msgid "Default jerk for the motor of the Z-direction."
  665. msgstr "Domyślny zryw do silnika osi Z."
  666. #: /fdmprinter.def.json
  667. msgctxt "machine_max_jerk_e description"
  668. msgid "Default jerk for the motor of the filament."
  669. msgstr "Domyślny zryw dla silnika filamentu."
  670. #: /fdmprinter.def.json
  671. msgctxt "wireframe_bottom_delay description"
  672. msgid "Delay time after a downward move. Only applies to Wire Printing."
  673. msgstr "Opóźnienie po pochyłym ruchu. Dotyczy tylko Drukowania Drutu."
  674. #: /fdmprinter.def.json
  675. msgctxt "wireframe_top_delay description"
  676. msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing."
  677. msgstr "Opóźnienie czasu po wzniesieniu w górę, tak aby linia idąca w górę mogła zesztywniać. Dotyczy tylko Drukowania Drutu."
  678. #: /fdmprinter.def.json
  679. msgctxt "wireframe_flat_delay description"
  680. msgid "Delay time between two horizontal segments. Introducing such a delay can cause better adhesion to previous layers at the connection points, while too long delays cause sagging. Only applies to Wire Printing."
  681. msgstr "Czas opóźnienia pomiędzy dwoma poziomymi segmentami. Dzięki takiemu opóźnieniu może powstać lepsza przyczepność do poprzedniej warstwy, przy zbyt dużym opóźnieniu może jednak prowadzić do opadania. Odnosi się tylko do Drukowania Drutu."
  682. #: /fdmprinter.def.json
  683. msgctxt "bridge_settings_enabled description"
  684. msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed."
  685. msgstr "Wykryj mosty i modyfikuj prędkość drukowania, przepływ i ustawienia wentylatora podczas drukowania mostó."
  686. #: /fdmprinter.def.json
  687. msgctxt "inset_direction description"
  688. 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."
  689. msgstr ""
  690. #: /fdmprinter.def.json
  691. msgctxt "infill_mesh_order description"
  692. 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."
  693. msgstr ""
  694. #: /fdmprinter.def.json
  695. msgctxt "lightning_infill_support_angle description"
  696. msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer."
  697. msgstr ""
  698. #: /fdmprinter.def.json
  699. msgctxt "lightning_infill_overhang_angle description"
  700. msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness."
  701. msgstr ""
  702. #: /fdmprinter.def.json
  703. msgctxt "material_diameter label"
  704. msgid "Diameter"
  705. msgstr "Średnica"
  706. #: /fdmprinter.def.json
  707. msgctxt "adhesion_type description"
  708. 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."
  709. 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."
  710. #: /fdmprinter.def.json
  711. msgctxt "machine_disallowed_areas label"
  712. msgid "Disallowed Areas"
  713. msgstr "Niedozwolone obszary"
  714. #: /fdmprinter.def.json
  715. msgctxt "wireframe_nozzle_clearance description"
  716. msgid "Distance between the nozzle and horizontally downward lines. Larger clearance results in diagonally downward lines with a less steep angle, which in turn results in less upward connections with the next layer. Only applies to Wire Printing."
  717. msgstr "Odległość między dyszą a liniami skierowanymi w dół. Większe prześwity powodują ukośne linie skierowanie w dół o mniej stromym kącie, co z kolei skutkuje mniejszymi połączeniami z następną warstwą. Dotyczy tylko Drukowania Drutu."
  718. #: /fdmprinter.def.json
  719. msgctxt "infill_line_distance description"
  720. msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width."
  721. 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."
  722. #: /fdmprinter.def.json
  723. msgctxt "support_initial_layer_line_distance description"
  724. msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density."
  725. msgstr "Odległość między drukowanymi liniami struktury podpory w początkowej warstwie. To ustawienie jest obliczane na podstawie gęstości podpory."
  726. #: /fdmprinter.def.json
  727. msgctxt "support_bottom_line_distance description"
  728. msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately."
  729. 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."
  730. #: /fdmprinter.def.json
  731. msgctxt "support_roof_line_distance description"
  732. msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately."
  733. 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."
  734. #: /fdmprinter.def.json
  735. msgctxt "support_line_distance description"
  736. msgid "Distance between the printed support structure lines. This setting is calculated by the support density."
  737. msgstr "Odległość między drukowanymi liniami struktury podpory. To ustawienie jest obliczane przez gęstość podpory."
  738. #: /fdmprinter.def.json
  739. msgctxt "support_bottom_distance description"
  740. msgid "Distance from the print to the bottom of the support."
  741. msgstr "Odległość od wydruku do dolnej części podpory."
  742. #: /fdmprinter.def.json
  743. msgctxt "support_top_distance description"
  744. msgid "Distance from the top of the support to the print."
  745. msgstr "Odległość od wierzchołka podpory do wydruku."
  746. #: /fdmprinter.def.json
  747. msgctxt "support_z_distance description"
  748. 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. This value is rounded up to a multiple of the layer height."
  749. msgstr "Odległość od góry/dołu podpory do wydruku. Ta luka zapewnia luz, aby usunąć wsporniki po wydrukowaniu modelu. Ta wartość jest zaokrąglana do wielokrotności wysokości warstwy."
  750. #: /fdmprinter.def.json
  751. msgctxt "infill_wipe_dist description"
  752. 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."
  753. 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."
  754. #: /fdmprinter.def.json
  755. msgctxt "wall_0_wipe_dist description"
  756. msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better."
  757. msgstr "Długość ruchu jałowego umieszczonego po wydrukowaniu zewnętrznej ściany, aby lepiej ukryć szew Z."
  758. #: /fdmprinter.def.json
  759. msgctxt "wireframe_up_half_speed description"
  760. msgid ""
  761. "Distance of an upward move which is extruded with half speed.\n"
  762. "This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing."
  763. msgstr ""
  764. "Dystans przemieszczania się ku górze, który jest wytłaczany z połową szybkości.\n"
  765. "Może to prowadzić do lepszej przyczepności do wcześniejszych warstw, bez zbytniego podgrzewania materiału na tych warstwach. Odnosi się tylko do Drukowania Drutu."
  766. #: /fdmprinter.def.json
  767. msgctxt "draft_shield_dist description"
  768. msgid "Distance of the draft shield from the print, in the X/Y directions."
  769. msgstr "Odległość osłony przeciwwiatrowej od druku, we współrzędnych X/Y."
  770. #: /fdmprinter.def.json
  771. msgctxt "ooze_shield_dist description"
  772. msgid "Distance of the ooze shield from the print, in the X/Y directions."
  773. msgstr "Odległość od osłony wycierającej do wydruku, w kierunkach X/Y."
  774. #: /fdmprinter.def.json
  775. msgctxt "support_xy_distance_overhang description"
  776. msgid "Distance of the support structure from the overhang in the X/Y directions."
  777. msgstr ""
  778. #: /fdmprinter.def.json
  779. msgctxt "support_xy_distance description"
  780. msgid "Distance of the support structure from the print in the X/Y directions."
  781. msgstr "Odległość podpory od wydruku w kierunkach X/Y."
  782. #: /fdmprinter.def.json
  783. msgctxt "wireframe_fall_down description"
  784. msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing."
  785. msgstr "Odległość o jaką spada materiału przez wytłaczanie w górę. Długość ta jest kompensowana. Odnosi się tylko do Drukowania Drutu."
  786. #: /fdmprinter.def.json
  787. msgctxt "wireframe_drag_along description"
  788. msgid "Distance with which the material of an upward extrusion is dragged along with the diagonally downward extrusion. This distance is compensated for. Only applies to Wire Printing."
  789. msgstr "Odległość, z jaką materiał wytłoczony z góry jest przeciągany równolegle do dolnej ekstruzji. Ta odległość jest kompensowana. Dotyczy tylko Drukowania Drutu."
  790. #: /fdmprinter.def.json
  791. msgctxt "min_infill_area description"
  792. msgid "Don't generate areas of infill smaller than this (use skin instead)."
  793. msgstr "Nie generuj obszarów wypełnienia mniejszych niż to (zamiast tego używaj skóry)."
  794. #: /fdmprinter.def.json
  795. msgctxt "draft_shield_height label"
  796. msgid "Draft Shield Height"
  797. msgstr "Wysokość Osłony"
  798. #: /fdmprinter.def.json
  799. msgctxt "draft_shield_height_limitation label"
  800. msgid "Draft Shield Limitation"
  801. msgstr "Ograniczenie Osłony"
  802. #: /fdmprinter.def.json
  803. msgctxt "draft_shield_dist label"
  804. msgid "Draft Shield X/Y Distance"
  805. msgstr "Odległość Osłony w X/Y"
  806. #: /fdmprinter.def.json
  807. msgctxt "support_mesh_drop_down label"
  808. msgid "Drop Down Support Mesh"
  809. msgstr "Upuść Siatkę Podpory"
  810. #: /fdmprinter.def.json
  811. msgctxt "dual label"
  812. msgid "Dual Extrusion"
  813. msgstr "Podwójna ekstruzja"
  814. #: /fdmprinter.def.json
  815. msgctxt "machine_shape option elliptic"
  816. msgid "Elliptic"
  817. msgstr "Eliptyczny"
  818. #: /fdmprinter.def.json
  819. msgctxt "acceleration_enabled label"
  820. msgid "Enable Acceleration Control"
  821. msgstr "Włącz Sterowanie Przyspieszeniem"
  822. #: /fdmprinter.def.json
  823. msgctxt "bridge_settings_enabled label"
  824. msgid "Enable Bridge Settings"
  825. msgstr "Włącz Ustawienia Mostów"
  826. #: /fdmprinter.def.json
  827. msgctxt "coasting_enable label"
  828. msgid "Enable Coasting"
  829. msgstr "Włącz Wypływanie"
  830. #: /fdmprinter.def.json
  831. msgctxt "support_conical_enabled label"
  832. msgid "Enable Conical Support"
  833. msgstr "Włącz Podpory Stożkowe"
  834. #: /fdmprinter.def.json
  835. msgctxt "draft_shield_enabled label"
  836. msgid "Enable Draft Shield"
  837. msgstr "Włącz Osłonę Przeciwwiatrową"
  838. #: /fdmprinter.def.json
  839. msgctxt "ironing_enabled label"
  840. msgid "Enable Ironing"
  841. msgstr "Włącz Prasowanie"
  842. #: /fdmprinter.def.json
  843. msgctxt "jerk_enabled label"
  844. msgid "Enable Jerk Control"
  845. msgstr "Włącz Kontrole Zrywu"
  846. #: /fdmprinter.def.json
  847. msgctxt "machine_nozzle_temp_enabled label"
  848. msgid "Enable Nozzle Temperature Control"
  849. msgstr "Włącz Kontrolę Temp. Dyszy"
  850. #: /fdmprinter.def.json
  851. msgctxt "ooze_shield_enabled label"
  852. msgid "Enable Ooze Shield"
  853. msgstr "Włącz Osłonę Wycierającą"
  854. #: /fdmprinter.def.json
  855. msgctxt "prime_blob_enable label"
  856. msgid "Enable Prime Blob"
  857. msgstr "Włącz Czyszczenie \"Blob”ów"
  858. #: /fdmprinter.def.json
  859. msgctxt "prime_tower_enable label"
  860. msgid "Enable Prime Tower"
  861. msgstr "Włącz Wieżę Czyszczącą"
  862. #: /fdmprinter.def.json
  863. msgctxt "cool_fan_enabled label"
  864. msgid "Enable Print Cooling"
  865. msgstr "Włącz Chłodzenie Wydruku"
  866. #: /fdmprinter.def.json
  867. msgctxt "retraction_enable label"
  868. msgid "Enable Retraction"
  869. msgstr "Włącz Retrakcję"
  870. #: /fdmprinter.def.json
  871. msgctxt "support_brim_enable label"
  872. msgid "Enable Support Brim"
  873. msgstr "Włącz Obrys Podpór"
  874. #: /fdmprinter.def.json
  875. msgctxt "support_bottom_enable label"
  876. msgid "Enable Support Floor"
  877. msgstr "Włącz Podłoże Podpory"
  878. #: /fdmprinter.def.json
  879. msgctxt "support_interface_enable label"
  880. msgid "Enable Support Interface"
  881. msgstr "Włącz Połączenie Podpory"
  882. #: /fdmprinter.def.json
  883. msgctxt "support_roof_enable label"
  884. msgid "Enable Support Roof"
  885. msgstr "Włącz Dach Podpory"
  886. #: /fdmprinter.def.json
  887. msgctxt "acceleration_travel_enabled label"
  888. msgid "Enable Travel Acceleration"
  889. msgstr ""
  890. #: /fdmprinter.def.json
  891. msgctxt "jerk_travel_enabled label"
  892. msgid "Enable Travel Jerk"
  893. msgstr ""
  894. #: /fdmprinter.def.json
  895. msgctxt "ooze_shield_enabled description"
  896. 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."
  897. 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."
  898. #: /fdmprinter.def.json
  899. msgctxt "jerk_enabled description"
  900. 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."
  901. 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."
  902. #: /fdmprinter.def.json
  903. msgctxt "acceleration_enabled description"
  904. msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality."
  905. msgstr "Umożliwia regulację przyspieszenia głowicy drukującej. Wzrost przyspieszeń może skrócić czas drukowania kosztem jakości druku."
  906. #: /fdmprinter.def.json
  907. msgctxt "cool_fan_enabled description"
  908. msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs."
  909. 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."
  910. #: /fdmprinter.def.json
  911. msgctxt "machine_end_gcode label"
  912. msgid "End G-code"
  913. msgstr "Końcowy G-code"
  914. #: /fdmprinter.def.json
  915. msgctxt "material_end_of_filament_purge_length label"
  916. msgid "End of Filament Purge Length"
  917. msgstr ""
  918. #: /fdmprinter.def.json
  919. msgctxt "material_end_of_filament_purge_speed label"
  920. msgid "End of Filament Purge Speed"
  921. msgstr ""
  922. #: /fdmprinter.def.json
  923. msgctxt "brim_replaces_support description"
  924. 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."
  925. 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."
  926. #: /fdmprinter.def.json
  927. msgctxt "support_type option everywhere"
  928. msgid "Everywhere"
  929. msgstr "Wszędzie"
  930. #: /fdmprinter.def.json
  931. msgctxt "slicing_tolerance option exclusive"
  932. msgid "Exclusive"
  933. msgstr "Wyłącznie"
  934. #: /fdmprinter.def.json
  935. msgctxt "experimental label"
  936. msgid "Experimental"
  937. msgstr "Eksperymentalne"
  938. #: /fdmprinter.def.json
  939. msgctxt "z_seam_corner option z_seam_corner_outer"
  940. msgid "Expose Seam"
  941. msgstr "Pokaż Szew"
  942. #: /fdmprinter.def.json
  943. msgctxt "meshfix_extensive_stitching label"
  944. msgid "Extensive Stitching"
  945. msgstr "Poszerzające Zszywanie"
  946. #: /fdmprinter.def.json
  947. msgctxt "meshfix_extensive_stitching description"
  948. 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."
  949. 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."
  950. #: /fdmprinter.def.json
  951. msgctxt "infill_wall_line_count label"
  952. msgid "Extra Infill Wall Count"
  953. msgstr "Ilość Dodatkowych Ścianek Wypełnienia"
  954. #: /fdmprinter.def.json
  955. msgctxt "skin_outline_count label"
  956. msgid "Extra Skin Wall Count"
  957. msgstr "Liczba Dod. Ścian na Skórze"
  958. #: /fdmprinter.def.json
  959. msgctxt "switch_extruder_extra_prime_amount description"
  960. msgid "Extra material to prime after nozzle switching."
  961. msgstr "Ilość dodatkowego materiału do podania po zmianie dyszy."
  962. #: /fdmprinter.def.json
  963. msgctxt "extruder_prime_pos_x label"
  964. msgid "Extruder Prime X Position"
  965. msgstr "Pozycja X Czyszczenia Dyszy"
  966. #: /fdmprinter.def.json
  967. msgctxt "extruder_prime_pos_y label"
  968. msgid "Extruder Prime Y Position"
  969. msgstr "Pozycja Y Czyszczenia Dyszy"
  970. #: /fdmprinter.def.json
  971. msgctxt "extruder_prime_pos_z label"
  972. msgid "Extruder Prime Z Position"
  973. msgstr "Pozycja Z Czyszczenia Dyszy"
  974. #: /fdmprinter.def.json
  975. msgctxt "machine_extruders_share_heater label"
  976. msgid "Extruders Share Heater"
  977. msgstr ""
  978. #: /fdmprinter.def.json
  979. msgctxt "machine_extruders_share_nozzle label"
  980. msgid "Extruders Share Nozzle"
  981. msgstr ""
  982. #: /fdmprinter.def.json
  983. msgctxt "material_extrusion_cool_down_speed label"
  984. msgid "Extrusion Cool Down Speed Modifier"
  985. msgstr "Współczynnik chłodz. podczas Ekstruzji"
  986. #: /fdmprinter.def.json
  987. msgctxt "speed_equalize_flow_width_factor description"
  988. 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."
  989. msgstr ""
  990. #: /fdmprinter.def.json
  991. msgctxt "cool_fan_speed label"
  992. msgid "Fan Speed"
  993. msgstr "Prędkość Wentylatora"
  994. #: /fdmprinter.def.json
  995. msgctxt "support_fan_enable label"
  996. msgid "Fan Speed Override"
  997. msgstr "Nadpisanie Prędkości Wentylatora"
  998. #: /fdmprinter.def.json
  999. msgctxt "small_feature_max_length description"
  1000. msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed."
  1001. msgstr "Kontury obiektów, które są krótsze niż podana długość, zostaną wydrukowane przy użyciu funkcji małej prędkości."
  1002. #: /fdmprinter.def.json
  1003. msgctxt "experimental description"
  1004. msgid "Features that haven't completely been fleshed out yet."
  1005. msgstr ""
  1006. #: /fdmprinter.def.json
  1007. msgctxt "machine_feeder_wheel_diameter label"
  1008. msgid "Feeder Wheel Diameter"
  1009. msgstr "Średnica Koła Podajnika"
  1010. #: /fdmprinter.def.json
  1011. msgctxt "material_final_print_temperature label"
  1012. msgid "Final Printing Temperature"
  1013. msgstr "Końcowa Temp. Druku"
  1014. #: /fdmprinter.def.json
  1015. msgctxt "machine_firmware_retract label"
  1016. msgid "Firmware Retraction"
  1017. msgstr "Retrakcja Programowa"
  1018. #: /fdmprinter.def.json
  1019. msgctxt "support_extruder_nr_layer_0 label"
  1020. msgid "First Layer Support Extruder"
  1021. msgstr "Ekstruder Pierwszej Warstwy Podpory"
  1022. #: /fdmprinter.def.json
  1023. msgctxt "material_flow label"
  1024. msgid "Flow"
  1025. msgstr "Przepływ"
  1026. #: /fdmprinter.def.json
  1027. msgctxt "speed_equalize_flow_width_factor label"
  1028. msgid "Flow Equalization Ratio"
  1029. msgstr ""
  1030. #: /fdmprinter.def.json
  1031. msgctxt "flow_rate_extrusion_offset_factor label"
  1032. msgid "Flow Rate Compensation Factor"
  1033. msgstr "Współczynnik kompensacji przepływu"
  1034. #: /fdmprinter.def.json
  1035. msgctxt "flow_rate_max_extrusion_offset label"
  1036. msgid "Flow Rate Compensation Max Extrusion Offset"
  1037. msgstr "Maksymalna kompensowania przepływu"
  1038. #: /fdmprinter.def.json
  1039. msgctxt "material_flow_temp_graph label"
  1040. msgid "Flow Temperature Graph"
  1041. msgstr "Wykres Temp. Przepływu"
  1042. #: /fdmprinter.def.json
  1043. msgctxt "material_flow_layer_0 description"
  1044. msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value."
  1045. msgstr "Kompensacja przepływu dla pierwszej warstwy: ilość materiału ekstrudowanego na pierwszej warstwie jest mnożona przez tę wartość."
  1046. #: /fdmprinter.def.json
  1047. msgctxt "skin_material_flow_layer_0 description"
  1048. msgid "Flow compensation on bottom lines of the first layer"
  1049. msgstr ""
  1050. #: /fdmprinter.def.json
  1051. msgctxt "infill_material_flow description"
  1052. msgid "Flow compensation on infill lines."
  1053. msgstr "Ustawienie przepływu wypełnienia."
  1054. #: /fdmprinter.def.json
  1055. msgctxt "support_interface_material_flow description"
  1056. msgid "Flow compensation on lines of support roof or floor."
  1057. msgstr "Ustawienie przepływu podłoża podpór."
  1058. #: /fdmprinter.def.json
  1059. msgctxt "roofing_material_flow description"
  1060. msgid "Flow compensation on lines of the areas at the top of the print."
  1061. msgstr "Ustawienie przepływu na ostatniej warstwie górnej."
  1062. #: /fdmprinter.def.json
  1063. msgctxt "prime_tower_flow description"
  1064. msgid "Flow compensation on prime tower lines."
  1065. msgstr "Przepływ linii wieży podporowej."
  1066. #: /fdmprinter.def.json
  1067. msgctxt "skirt_brim_material_flow description"
  1068. msgid "Flow compensation on skirt or brim lines."
  1069. msgstr "Ustawienie przepływu warstwy adhezyjnej."
  1070. #: /fdmprinter.def.json
  1071. msgctxt "support_bottom_material_flow description"
  1072. msgid "Flow compensation on support floor lines."
  1073. msgstr "Ustawienie przepływu pierwszej warstwy podpór."
  1074. #: /fdmprinter.def.json
  1075. msgctxt "support_roof_material_flow description"
  1076. msgid "Flow compensation on support roof lines."
  1077. msgstr "Ustawienie przepływu podłoża ostatniej warstwy podpór."
  1078. #: /fdmprinter.def.json
  1079. msgctxt "support_material_flow description"
  1080. msgid "Flow compensation on support structure lines."
  1081. msgstr "Ustawienie przepływu podpór."
  1082. #: /fdmprinter.def.json
  1083. msgctxt "wall_0_material_flow_layer_0 description"
  1084. msgid "Flow compensation on the outermost wall line of the first layer."
  1085. msgstr ""
  1086. #: /fdmprinter.def.json
  1087. msgctxt "wall_0_material_flow description"
  1088. msgid "Flow compensation on the outermost wall line."
  1089. msgstr "Ustawienie przepływu na liniach ścianek zewnętrznych."
  1090. #: /fdmprinter.def.json
  1091. msgctxt "skin_material_flow description"
  1092. msgid "Flow compensation on top/bottom lines."
  1093. msgstr "Ustawienie przepływu na warstwie górnej i dolnej."
  1094. #: /fdmprinter.def.json
  1095. msgctxt "wall_x_material_flow_layer_0 description"
  1096. msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer"
  1097. msgstr ""
  1098. #: /fdmprinter.def.json
  1099. msgctxt "wall_x_material_flow description"
  1100. msgid "Flow compensation on wall lines for all wall lines except the outermost one."
  1101. msgstr "Ustawienie przepływu na liniach ścianek wewnętrznych."
  1102. #: /fdmprinter.def.json
  1103. msgctxt "wall_material_flow description"
  1104. msgid "Flow compensation on wall lines."
  1105. msgstr "Ustawienie przepływu na liniach ścianek."
  1106. #: /fdmprinter.def.json
  1107. msgctxt "wireframe_flow_connection description"
  1108. msgid "Flow compensation when going up or down. Only applies to Wire Printing."
  1109. msgstr "Kompensacja przepływu w górę i w dół. Odnosi się tylko do Drukowania Drutu."
  1110. #: /fdmprinter.def.json
  1111. msgctxt "wireframe_flow_flat description"
  1112. msgid "Flow compensation when printing flat lines. Only applies to Wire Printing."
  1113. msgstr "Kompensacja przepływu podczas drukowania płaskich linii. Dotyczy tylko Drukowania Drutu."
  1114. #: /fdmprinter.def.json
  1115. msgctxt "material_flow description"
  1116. msgid "Flow compensation: the amount of material extruded is multiplied by this value."
  1117. msgstr "Kompensacja przepływu: ilość ekstrudowanego materiału jest mnożona przez tę wartość."
  1118. #: /fdmprinter.def.json
  1119. msgctxt "wireframe_flow description"
  1120. msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing."
  1121. msgstr "Kompensacja przepływu: ilość wytłaczanego materiału jest mnożona przez tę wartość. Odnosi się tylko do Drukowania Drutu."
  1122. #: /fdmprinter.def.json
  1123. msgctxt "material_flush_purge_length label"
  1124. msgid "Flush Purge Length"
  1125. msgstr ""
  1126. #: /fdmprinter.def.json
  1127. msgctxt "material_flush_purge_speed label"
  1128. msgid "Flush Purge Speed"
  1129. msgstr ""
  1130. #: /fdmprinter.def.json
  1131. msgctxt "min_wall_line_width description"
  1132. 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."
  1133. msgstr ""
  1134. #: /fdmprinter.def.json
  1135. msgctxt "z_seam_position option front"
  1136. msgid "Front"
  1137. msgstr "Przód"
  1138. #: /fdmprinter.def.json
  1139. msgctxt "z_seam_position option frontleft"
  1140. msgid "Front Left"
  1141. msgstr "Lewy przód"
  1142. #: /fdmprinter.def.json
  1143. msgctxt "z_seam_position option frontright"
  1144. msgid "Front Right"
  1145. msgstr "Prawy przód"
  1146. #: /fdmprinter.def.json
  1147. msgctxt "draft_shield_height_limitation option full"
  1148. msgid "Full"
  1149. msgstr "Pełna"
  1150. #: /fdmprinter.def.json
  1151. msgctxt "magic_fuzzy_skin_enabled label"
  1152. msgid "Fuzzy Skin"
  1153. msgstr "Nierówna Skóra"
  1154. #: /fdmprinter.def.json
  1155. msgctxt "magic_fuzzy_skin_point_density label"
  1156. msgid "Fuzzy Skin Density"
  1157. msgstr "Gęstość Nierównej Skóry"
  1158. #: /fdmprinter.def.json
  1159. msgctxt "magic_fuzzy_skin_outside_only label"
  1160. msgid "Fuzzy Skin Outside Only"
  1161. msgstr ""
  1162. #: /fdmprinter.def.json
  1163. msgctxt "magic_fuzzy_skin_point_dist label"
  1164. msgid "Fuzzy Skin Point Distance"
  1165. msgstr "Odległ. między Punkt. Nierównej Skóry"
  1166. #: /fdmprinter.def.json
  1167. msgctxt "magic_fuzzy_skin_thickness label"
  1168. msgid "Fuzzy Skin Thickness"
  1169. msgstr "Grubości Nierównej Skóry"
  1170. #: /fdmprinter.def.json
  1171. msgctxt "machine_gcode_flavor label"
  1172. msgid "G-code Flavor"
  1173. msgstr "Smak G-code"
  1174. #: /fdmprinter.def.json
  1175. msgctxt "machine_end_gcode description"
  1176. msgid ""
  1177. "G-code commands to be executed at the very end - separated by \n"
  1178. "."
  1179. msgstr ""
  1180. "Polecenia G-code, które są wykonywane na samym końcu - oddzielone za pomocą \n"
  1181. "."
  1182. #: /fdmprinter.def.json
  1183. msgctxt "machine_start_gcode description"
  1184. msgid ""
  1185. "G-code commands to be executed at the very start - separated by \n"
  1186. "."
  1187. msgstr ""
  1188. "Polecenia G-code, które są wykonywane na samym początku - oddzielone za pomocą \n"
  1189. "."
  1190. #: /fdmprinter.def.json
  1191. msgctxt "material_guid description"
  1192. msgid "GUID of the material. This is set automatically."
  1193. msgstr ""
  1194. #: /fdmprinter.def.json
  1195. msgctxt "gantry_height label"
  1196. msgid "Gantry Height"
  1197. msgstr "Wysokość wózka"
  1198. #: /fdmprinter.def.json
  1199. msgctxt "support_enable label"
  1200. msgid "Generate Support"
  1201. msgstr "Generuj Podpory"
  1202. #: /fdmprinter.def.json
  1203. msgctxt "support_brim_enable description"
  1204. 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."
  1205. 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."
  1206. #: /fdmprinter.def.json
  1207. msgctxt "support_interface_enable description"
  1208. 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."
  1209. 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."
  1210. #: /fdmprinter.def.json
  1211. msgctxt "support_bottom_enable description"
  1212. 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."
  1213. msgstr "Generuj gęstą warstwę materiału pomiędzy spodem podpory a modelem. Tworzy to skórę pomiędzy modelem a podporą."
  1214. #: /fdmprinter.def.json
  1215. msgctxt "support_roof_enable description"
  1216. 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."
  1217. 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ą."
  1218. #: /fdmprinter.def.json
  1219. msgctxt "support_enable description"
  1220. msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing."
  1221. msgstr "Generuj struktury wspierające części modelu, które zwisają. Bez tych struktur takie części mogłyby spaść podczas drukowania."
  1222. #: /fdmprinter.def.json
  1223. msgctxt "machine_buildplate_type option glass"
  1224. msgid "Glass"
  1225. msgstr "Szkło"
  1226. #: /fdmprinter.def.json
  1227. msgctxt "ironing_enabled description"
  1228. 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."
  1229. 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."
  1230. #: /fdmprinter.def.json
  1231. msgctxt "gradual_infill_step_height label"
  1232. msgid "Gradual Infill Step Height"
  1233. msgstr "Wysokość Kroku Stopniowego Wypełnienia"
  1234. #: /fdmprinter.def.json
  1235. msgctxt "gradual_infill_steps label"
  1236. msgid "Gradual Infill Steps"
  1237. msgstr "Stopniowe Kroki Wypełnienia"
  1238. #: /fdmprinter.def.json
  1239. msgctxt "gradual_support_infill_step_height label"
  1240. msgid "Gradual Support Infill Step Height"
  1241. msgstr "Wys. Stopnia Stopniowego Wypełn. Podpory"
  1242. #: /fdmprinter.def.json
  1243. msgctxt "gradual_support_infill_steps label"
  1244. msgid "Gradual Support Infill Steps"
  1245. msgstr "Stopnie Stopniowego Wypełn. Podpór"
  1246. #: /fdmprinter.def.json
  1247. msgctxt "infill_pattern option grid"
  1248. msgid "Grid"
  1249. msgstr "Kratka"
  1250. #: /fdmprinter.def.json
  1251. msgctxt "support_bottom_pattern option grid"
  1252. msgid "Grid"
  1253. msgstr "Kratka"
  1254. #: /fdmprinter.def.json
  1255. msgctxt "support_interface_pattern option grid"
  1256. msgid "Grid"
  1257. msgstr "Kratka"
  1258. #: /fdmprinter.def.json
  1259. msgctxt "support_pattern option grid"
  1260. msgid "Grid"
  1261. msgstr "Kratka"
  1262. #: /fdmprinter.def.json
  1263. msgctxt "support_roof_pattern option grid"
  1264. msgid "Grid"
  1265. msgstr "Kratka"
  1266. #: /fdmprinter.def.json
  1267. msgctxt "machine_gcode_flavor option Griffin"
  1268. msgid "Griffin"
  1269. msgstr "Griffin"
  1270. #: /fdmprinter.def.json
  1271. msgctxt "infill_pattern option gyroid"
  1272. msgid "Gyroid"
  1273. msgstr "Gyroid"
  1274. #: /fdmprinter.def.json
  1275. msgctxt "support_pattern option gyroid"
  1276. msgid "Gyroid"
  1277. msgstr "Gyroid"
  1278. #: /fdmprinter.def.json
  1279. msgctxt "machine_heated_build_volume label"
  1280. msgid "Has Build Volume Temperature Stabilization"
  1281. msgstr "Posiada komorę stabilizacji temperatury"
  1282. #: /fdmprinter.def.json
  1283. msgctxt "machine_heated_bed label"
  1284. msgid "Has Heated Build Plate"
  1285. msgstr "Posiada Podgrzewany Stół"
  1286. #: /fdmprinter.def.json
  1287. msgctxt "machine_nozzle_heat_up_speed label"
  1288. msgid "Heat Up Speed"
  1289. msgstr "Prędkość nagrzewania"
  1290. #: /fdmprinter.def.json
  1291. msgctxt "machine_heat_zone_length label"
  1292. msgid "Heat Zone Length"
  1293. msgstr "Długość strefy cieplnej"
  1294. #: /fdmprinter.def.json
  1295. msgctxt "draft_shield_height description"
  1296. msgid "Height limitation of the draft shield. Above this height no draft shield will be printed."
  1297. msgstr "Ograniczenie wysokości osłony przeciwwiatrowej. Powyżej tej wysokości nie będzie drukowana żadna osłona."
  1298. #: /fdmprinter.def.json
  1299. msgctxt "z_seam_corner option z_seam_corner_inner"
  1300. msgid "Hide Seam"
  1301. msgstr "Ukryj Szew"
  1302. #: /fdmprinter.def.json
  1303. msgctxt "z_seam_corner option z_seam_corner_any"
  1304. msgid "Hide or Expose Seam"
  1305. msgstr "Ukryj lub Pokaż Szew"
  1306. #: /fdmprinter.def.json
  1307. msgctxt "hole_xy_offset label"
  1308. msgid "Hole Horizontal Expansion"
  1309. msgstr ""
  1310. #: /fdmprinter.def.json
  1311. msgctxt "small_hole_max_size description"
  1312. msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
  1313. msgstr "Otwory i kontury części o średnicy mniejszej niż podana zostaną wydrukowane przy małej szybkości operacji."
  1314. #: /fdmprinter.def.json
  1315. msgctxt "xy_offset label"
  1316. msgid "Horizontal Expansion"
  1317. msgstr "Poziome Poszerzenie"
  1318. #: /fdmprinter.def.json
  1319. msgctxt "material_shrinkage_percentage_xy label"
  1320. msgid "Horizontal Scaling Factor Shrinkage Compensation"
  1321. msgstr ""
  1322. #: /fdmprinter.def.json
  1323. msgctxt "support_tree_branch_distance description"
  1324. msgid "How far apart the branches need to be when they touch the model. Making this distance small will cause the tree support to touch the model at more points, causing better overhang but making support harder to remove."
  1325. msgstr "W jakich odległościach powinny znajdować się gałęzie kiedy dotykają modelu. Mały dystans spowoduje więcej punktów podparcia, co da lepsze nawisy, ale utrudni usuwanie podpór."
  1326. #: /fdmprinter.def.json
  1327. msgctxt "material_break_preparation_retracted_position description"
  1328. msgid "How far the filament can be stretched before it breaks, while heated."
  1329. msgstr "Jak bardzo filament może być rozciągnięty, zanim pęknie, podczas ogrzewania."
  1330. #: /fdmprinter.def.json
  1331. msgctxt "material_anti_ooze_retracted_position description"
  1332. msgid "How far the material needs to be retracted before it stops oozing."
  1333. msgstr "Jak daleko materiał musi zostać wycofany, aby przestał wyciekać."
  1334. #: /fdmprinter.def.json
  1335. msgctxt "flow_rate_extrusion_offset_factor description"
  1336. 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."
  1337. 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."
  1338. #: /fdmprinter.def.json
  1339. msgctxt "material_break_retracted_position description"
  1340. msgid "How far to retract the filament in order to break it cleanly."
  1341. msgstr "Jak daleko wycofać filament, aby go złamać na czysto."
  1342. #: /fdmprinter.def.json
  1343. msgctxt "material_break_preparation_speed description"
  1344. msgid "How fast the filament needs to be retracted just before breaking it off in a retraction."
  1345. msgstr "Jak szybko filament musi zostać wycofany, aby pękł podczas cofania."
  1346. #: /fdmprinter.def.json
  1347. msgctxt "material_anti_ooze_retraction_speed description"
  1348. msgid "How fast the material needs to be retracted during a filament switch to prevent oozing."
  1349. msgstr "Jak szybko materiał musi zostać wycofany podczas zmiany filamentu, aby przestał wyciekać."
  1350. #: /fdmprinter.def.json
  1351. msgctxt "material_end_of_filament_purge_speed description"
  1352. msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material."
  1353. msgstr ""
  1354. #: /fdmprinter.def.json
  1355. msgctxt "material_flush_purge_speed description"
  1356. msgid "How fast to prime the material after switching to a different material."
  1357. msgstr ""
  1358. #: /fdmprinter.def.json
  1359. msgctxt "material_maximum_park_duration description"
  1360. msgid "How long the material can be kept out of dry storage safely."
  1361. msgstr ""
  1362. #: /fdmprinter.def.json
  1363. msgctxt "machine_steps_per_mm_x description"
  1364. msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction."
  1365. msgstr "Ile kroków silnika krokowego będzie skutkowało ruchem o 1mm w osi X."
  1366. #: /fdmprinter.def.json
  1367. msgctxt "machine_steps_per_mm_y description"
  1368. msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction."
  1369. msgstr "Ile kroków silnika krokowego będzie skutkowało ruchem o 1mm w osi Y."
  1370. #: /fdmprinter.def.json
  1371. msgctxt "machine_steps_per_mm_z description"
  1372. msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction."
  1373. msgstr "Ile kroków silnika krokowego będzie skutkowało ruchem o 1mm w osi Z."
  1374. #: /fdmprinter.def.json
  1375. msgctxt "machine_steps_per_mm_e description"
  1376. msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference."
  1377. msgstr ""
  1378. #: /fdmprinter.def.json
  1379. msgctxt "material_end_of_filament_purge_length description"
  1380. 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."
  1381. msgstr ""
  1382. #: /fdmprinter.def.json
  1383. msgctxt "material_flush_purge_length description"
  1384. 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."
  1385. msgstr ""
  1386. #: /fdmprinter.def.json
  1387. msgctxt "machine_extruders_shared_nozzle_initial_retraction description"
  1388. 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."
  1389. msgstr ""
  1390. #: /fdmprinter.def.json
  1391. msgctxt "bridge_skin_support_threshold description"
  1392. 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."
  1393. 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."
  1394. #: /fdmprinter.def.json
  1395. msgctxt "bridge_enable_more_layers description"
  1396. 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."
  1397. 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."
  1398. #: /fdmprinter.def.json
  1399. msgctxt "wall_transition_filter_distance description"
  1400. 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."
  1401. msgstr ""
  1402. #: /fdmprinter.def.json
  1403. msgctxt "raft_margin description"
  1404. 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."
  1405. 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."
  1406. #: /fdmprinter.def.json
  1407. msgctxt "meshfix_union_all description"
  1408. 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."
  1409. 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."
  1410. #: /fdmprinter.def.json
  1411. msgctxt "material_bed_temp_prepend label"
  1412. msgid "Include Build Plate Temperature"
  1413. msgstr "Załącz Temperaturę Stołu"
  1414. #: /fdmprinter.def.json
  1415. msgctxt "material_print_temp_prepend label"
  1416. msgid "Include Material Temperatures"
  1417. msgstr "Załącz Temperaturę Materiału"
  1418. #: /fdmprinter.def.json
  1419. msgctxt "slicing_tolerance option inclusive"
  1420. msgid "Inclusive"
  1421. msgstr "Włącznie"
  1422. #: /fdmprinter.def.json
  1423. msgctxt "infill description"
  1424. msgid "Infill"
  1425. msgstr "Wypełnienie"
  1426. #: /fdmprinter.def.json
  1427. msgctxt "infill label"
  1428. msgid "Infill"
  1429. msgstr "Wypełnienie"
  1430. #: /fdmprinter.def.json
  1431. msgctxt "acceleration_infill label"
  1432. msgid "Infill Acceleration"
  1433. msgstr "Przyspieszenie Wypełnienia"
  1434. #: /fdmprinter.def.json
  1435. msgctxt "infill_before_walls label"
  1436. msgid "Infill Before Walls"
  1437. msgstr "Wypełn. przed Ścianami"
  1438. #: /fdmprinter.def.json
  1439. msgctxt "infill_sparse_density label"
  1440. msgid "Infill Density"
  1441. msgstr "Gęstość Wypełnnienia"
  1442. #: /fdmprinter.def.json
  1443. msgctxt "infill_extruder_nr label"
  1444. msgid "Infill Extruder"
  1445. msgstr "Ekstruder Wypełnienia"
  1446. #: /fdmprinter.def.json
  1447. msgctxt "infill_material_flow label"
  1448. msgid "Infill Flow"
  1449. msgstr "Przepływ wypełnienia"
  1450. #: /fdmprinter.def.json
  1451. msgctxt "jerk_infill label"
  1452. msgid "Infill Jerk"
  1453. msgstr "Zryw Wypełnienie"
  1454. #: /fdmprinter.def.json
  1455. msgctxt "infill_sparse_thickness label"
  1456. msgid "Infill Layer Thickness"
  1457. msgstr "Grubość Warstwy Wypełnienia"
  1458. #: /fdmprinter.def.json
  1459. msgctxt "infill_angles label"
  1460. msgid "Infill Line Directions"
  1461. msgstr "Kierunek Linii Wypełnienia"
  1462. #: /fdmprinter.def.json
  1463. msgctxt "infill_line_distance label"
  1464. msgid "Infill Line Distance"
  1465. msgstr "Odstęp Linii Wypełnienia"
  1466. #: /fdmprinter.def.json
  1467. msgctxt "infill_multiplier label"
  1468. msgid "Infill Line Multiplier"
  1469. msgstr "Mnożnik Linii Wypełnienia"
  1470. #: /fdmprinter.def.json
  1471. msgctxt "infill_line_width label"
  1472. msgid "Infill Line Width"
  1473. msgstr "Szerokość Linii Wypełnienia"
  1474. #: /fdmprinter.def.json
  1475. msgctxt "infill_mesh label"
  1476. msgid "Infill Mesh"
  1477. msgstr "Siatka Wypełnienia"
  1478. #: /fdmprinter.def.json
  1479. msgctxt "infill_support_angle label"
  1480. msgid "Infill Overhang Angle"
  1481. msgstr "Kąt Zwisu dla Wypełnienia"
  1482. #: /fdmprinter.def.json
  1483. msgctxt "infill_overlap_mm label"
  1484. msgid "Infill Overlap"
  1485. msgstr "Zachodzenie Wypełnienia"
  1486. #: /fdmprinter.def.json
  1487. msgctxt "infill_overlap label"
  1488. msgid "Infill Overlap Percentage"
  1489. msgstr "Procent Zachodzenia Wypełnienia"
  1490. #: /fdmprinter.def.json
  1491. msgctxt "infill_pattern label"
  1492. msgid "Infill Pattern"
  1493. msgstr "Wzorzec Wypełnienia"
  1494. #: /fdmprinter.def.json
  1495. msgctxt "speed_infill label"
  1496. msgid "Infill Speed"
  1497. msgstr "Prędkość Wypełnienia"
  1498. #: /fdmprinter.def.json
  1499. msgctxt "infill_support_enabled label"
  1500. msgid "Infill Support"
  1501. msgstr "Wypełnienie Podporowe"
  1502. #: /fdmprinter.def.json
  1503. msgctxt "infill_enable_travel_optimization label"
  1504. msgid "Infill Travel Optimization"
  1505. msgstr "Optymalizacja Ruchów Jałowych Wypełnienia"
  1506. #: /fdmprinter.def.json
  1507. msgctxt "infill_wipe_dist label"
  1508. msgid "Infill Wipe Distance"
  1509. msgstr "Długość Czyszczenia Wypełnienia"
  1510. #: /fdmprinter.def.json
  1511. msgctxt "infill_offset_x label"
  1512. msgid "Infill X Offset"
  1513. msgstr "Przesunięcie Wypełn. w Osi X"
  1514. #: /fdmprinter.def.json
  1515. msgctxt "infill_offset_y label"
  1516. msgid "Infill Y Offset"
  1517. msgstr "Przesunięcie Wypełn. w Osi Y"
  1518. #: /fdmprinter.def.json
  1519. msgctxt "initial_bottom_layers label"
  1520. msgid "Initial Bottom Layers"
  1521. msgstr "Początkowej warstwy dolne"
  1522. #: /fdmprinter.def.json
  1523. msgctxt "cool_fan_speed_0 label"
  1524. msgid "Initial Fan Speed"
  1525. msgstr "Początkowa Prędk. Wentylatora"
  1526. #: /fdmprinter.def.json
  1527. msgctxt "acceleration_layer_0 label"
  1528. msgid "Initial Layer Acceleration"
  1529. msgstr "Pierwsza warstwa przyspieszenie"
  1530. #: /fdmprinter.def.json
  1531. msgctxt "skin_material_flow_layer_0 label"
  1532. msgid "Initial Layer Bottom Flow"
  1533. msgstr ""
  1534. #: /fdmprinter.def.json
  1535. msgctxt "material_flow_layer_0 label"
  1536. msgid "Initial Layer Flow"
  1537. msgstr "Przepływ Pierwszej Warstwy"
  1538. #: /fdmprinter.def.json
  1539. msgctxt "layer_height_0 label"
  1540. msgid "Initial Layer Height"
  1541. msgstr "Wys. Początkowej Warstwy"
  1542. #: /fdmprinter.def.json
  1543. msgctxt "xy_offset_layer_0 label"
  1544. msgid "Initial Layer Horizontal Expansion"
  1545. msgstr "Poziome Poszerzenie Początk. Warstwy"
  1546. #: /fdmprinter.def.json
  1547. msgctxt "wall_x_material_flow_layer_0 label"
  1548. msgid "Initial Layer Inner Wall Flow"
  1549. msgstr ""
  1550. #: /fdmprinter.def.json
  1551. msgctxt "jerk_layer_0 label"
  1552. msgid "Initial Layer Jerk"
  1553. msgstr "Zryw Pierwsz. Warstwa"
  1554. #: /fdmprinter.def.json
  1555. msgctxt "initial_layer_line_width_factor label"
  1556. msgid "Initial Layer Line Width"
  1557. msgstr "Szerokość Linii Początk. Warstwy"
  1558. #: /fdmprinter.def.json
  1559. msgctxt "wall_0_material_flow_layer_0 label"
  1560. msgid "Initial Layer Outer Wall Flow"
  1561. msgstr ""
  1562. #: /fdmprinter.def.json
  1563. msgctxt "acceleration_print_layer_0 label"
  1564. msgid "Initial Layer Print Acceleration"
  1565. msgstr "Przysp. Druku 1. Warstwy"
  1566. #: /fdmprinter.def.json
  1567. msgctxt "jerk_print_layer_0 label"
  1568. msgid "Initial Layer Print Jerk"
  1569. msgstr "Zryw Początk. Warstwy"
  1570. #: /fdmprinter.def.json
  1571. msgctxt "speed_print_layer_0 label"
  1572. msgid "Initial Layer Print Speed"
  1573. msgstr "Prędk. Druku Początk. Warstwy"
  1574. #: /fdmprinter.def.json
  1575. msgctxt "speed_layer_0 label"
  1576. msgid "Initial Layer Speed"
  1577. msgstr "Prędk. Początk. Warstwy"
  1578. #: /fdmprinter.def.json
  1579. msgctxt "support_initial_layer_line_distance label"
  1580. msgid "Initial Layer Support Line Distance"
  1581. msgstr "Odstęp Między Liniami Podpory w Pocz. Warstwie"
  1582. #: /fdmprinter.def.json
  1583. msgctxt "acceleration_travel_layer_0 label"
  1584. msgid "Initial Layer Travel Acceleration"
  1585. msgstr "Przyspieszenie Ruchu Jał. 1. Warstwa"
  1586. #: /fdmprinter.def.json
  1587. msgctxt "jerk_travel_layer_0 label"
  1588. msgid "Initial Layer Travel Jerk"
  1589. msgstr "Zryw Początk. Wartswa"
  1590. #: /fdmprinter.def.json
  1591. msgctxt "speed_travel_layer_0 label"
  1592. msgid "Initial Layer Travel Speed"
  1593. msgstr "Prędk. Ruchów Jał. na 1. Warstwie"
  1594. #: /fdmprinter.def.json
  1595. msgctxt "layer_0_z_overlap label"
  1596. msgid "Initial Layer Z Overlap"
  1597. msgstr "Pokryw. się Pierwsz. Warstwy w Z"
  1598. #: /fdmprinter.def.json
  1599. msgctxt "material_initial_print_temperature label"
  1600. msgid "Initial Printing Temperature"
  1601. msgstr "Początkowa Temp. Druku"
  1602. #: /fdmprinter.def.json
  1603. msgctxt "acceleration_wall_x label"
  1604. msgid "Inner Wall Acceleration"
  1605. msgstr "Przyspieszenie Ściany Wew"
  1606. #: /fdmprinter.def.json
  1607. msgctxt "wall_x_extruder_nr label"
  1608. msgid "Inner Wall Extruder"
  1609. msgstr "Ekstruder Wew. Linii"
  1610. #: /fdmprinter.def.json
  1611. msgctxt "jerk_wall_x label"
  1612. msgid "Inner Wall Jerk"
  1613. msgstr "Zryw Wew. Ścian"
  1614. #: /fdmprinter.def.json
  1615. msgctxt "speed_wall_x label"
  1616. msgid "Inner Wall Speed"
  1617. msgstr "Prędkość Wew. Ściany"
  1618. #: /fdmprinter.def.json
  1619. msgctxt "wall_x_material_flow label"
  1620. msgid "Inner Wall(s) Flow"
  1621. msgstr "Przepływu ścianek wewnętrznych"
  1622. #: /fdmprinter.def.json
  1623. msgctxt "wall_line_width_x label"
  1624. msgid "Inner Wall(s) Line Width"
  1625. msgstr "Szerokość Linii Ścian(y) Wewnętnych"
  1626. #: /fdmprinter.def.json
  1627. msgctxt "wall_0_inset description"
  1628. 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."
  1629. 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."
  1630. #: /fdmprinter.def.json
  1631. msgctxt "inset_direction option inside_out"
  1632. msgid "Inside To Outside"
  1633. msgstr ""
  1634. #: /fdmprinter.def.json
  1635. msgctxt "ironing_only_highest_layer label"
  1636. msgid "Iron Only Highest Layer"
  1637. msgstr "Prasuj Tylko Najwyższą Warstwę"
  1638. #: /fdmprinter.def.json
  1639. msgctxt "acceleration_ironing label"
  1640. msgid "Ironing Acceleration"
  1641. msgstr "Przyspieszenie Prasowania"
  1642. #: /fdmprinter.def.json
  1643. msgctxt "ironing_flow label"
  1644. msgid "Ironing Flow"
  1645. msgstr "Przepływ Prasowania"
  1646. #: /fdmprinter.def.json
  1647. msgctxt "ironing_inset label"
  1648. msgid "Ironing Inset"
  1649. msgstr "Margines Prasowania"
  1650. #: /fdmprinter.def.json
  1651. msgctxt "jerk_ironing label"
  1652. msgid "Ironing Jerk"
  1653. msgstr "Zryw Prasowania"
  1654. #: /fdmprinter.def.json
  1655. msgctxt "ironing_line_spacing label"
  1656. msgid "Ironing Line Spacing"
  1657. msgstr "Przerwy Linii Prasowania"
  1658. #: /fdmprinter.def.json
  1659. msgctxt "ironing_pattern label"
  1660. msgid "Ironing Pattern"
  1661. msgstr "Wzór Prasowania"
  1662. #: /fdmprinter.def.json
  1663. msgctxt "speed_ironing label"
  1664. msgid "Ironing Speed"
  1665. msgstr "Prędkość Prasowania"
  1666. #: /fdmprinter.def.json
  1667. msgctxt "machine_center_is_zero label"
  1668. msgid "Is Center Origin"
  1669. msgstr "Środek to Początek"
  1670. #: /fdmprinter.def.json
  1671. msgctxt "material_crystallinity description"
  1672. 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)?"
  1673. 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)?"
  1674. #: /fdmprinter.def.json
  1675. msgctxt "magic_fuzzy_skin_outside_only description"
  1676. msgid "Jitter only the parts' outlines and not the parts' holes."
  1677. msgstr ""
  1678. #: /fdmprinter.def.json
  1679. msgctxt "meshfix_keep_open_polygons label"
  1680. msgid "Keep Disconnected Faces"
  1681. msgstr "Zachowaj Rozłączone Powierzchnie"
  1682. #: /fdmprinter.def.json
  1683. msgctxt "wireframe_strategy option knot"
  1684. msgid "Knot"
  1685. msgstr "Węzeł"
  1686. #: /fdmprinter.def.json
  1687. msgctxt "layer_height label"
  1688. msgid "Layer Height"
  1689. msgstr "Wysokość Warstwy"
  1690. #: /fdmprinter.def.json
  1691. msgctxt "layer_start_x label"
  1692. msgid "Layer Start X"
  1693. msgstr "Początek Warstwy X"
  1694. #: /fdmprinter.def.json
  1695. msgctxt "layer_start_y label"
  1696. msgid "Layer Start Y"
  1697. msgstr "Początek Warstwy Y"
  1698. #: /fdmprinter.def.json
  1699. msgctxt "raft_base_thickness description"
  1700. msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate."
  1701. msgstr "Grubość podstawowej warstwy tratwy. Powinna to być gruba warstwa, która mocno przykleja się do stołu drukarki."
  1702. #: /fdmprinter.def.json
  1703. msgctxt "raft_interface_thickness description"
  1704. msgid "Layer thickness of the middle raft layer."
  1705. msgstr "Grubość środkowej warstwy tratwy."
  1706. #: /fdmprinter.def.json
  1707. msgctxt "raft_surface_thickness description"
  1708. msgid "Layer thickness of the top raft layers."
  1709. msgstr "Grubość warstwy górnych warstw tratwy."
  1710. #: /fdmprinter.def.json
  1711. msgctxt "support_skip_zag_per_mm description"
  1712. msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away."
  1713. msgstr "Pomiń połączenie pomiędzy liniami podpory co N milimetrów, aby struktura podpory była łatwiejsza do odłamania."
  1714. #: /fdmprinter.def.json
  1715. msgctxt "z_seam_position option left"
  1716. msgid "Left"
  1717. msgstr "Lewa"
  1718. #: /fdmprinter.def.json
  1719. msgctxt "cool_lift_head label"
  1720. msgid "Lift Head"
  1721. msgstr "Unieś Głowicę"
  1722. #: /fdmprinter.def.json
  1723. msgctxt "infill_pattern option lightning"
  1724. msgid "Lightning"
  1725. msgstr ""
  1726. #: /fdmprinter.def.json
  1727. msgctxt "lightning_infill_overhang_angle label"
  1728. msgid "Lightning Infill Overhang Angle"
  1729. msgstr ""
  1730. #: /fdmprinter.def.json
  1731. msgctxt "lightning_infill_prune_angle label"
  1732. msgid "Lightning Infill Prune Angle"
  1733. msgstr ""
  1734. #: /fdmprinter.def.json
  1735. msgctxt "lightning_infill_straightening_angle label"
  1736. msgid "Lightning Infill Straightening Angle"
  1737. msgstr ""
  1738. #: /fdmprinter.def.json
  1739. msgctxt "lightning_infill_support_angle label"
  1740. msgid "Lightning Infill Support Angle"
  1741. msgstr ""
  1742. #: /fdmprinter.def.json
  1743. msgctxt "limit_support_retractions label"
  1744. msgid "Limit Support Retractions"
  1745. msgstr "Ogranicz Retrakcje Pomiędzy Podporami"
  1746. #: /fdmprinter.def.json
  1747. msgctxt "cutting_mesh description"
  1748. 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."
  1749. 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."
  1750. #: /fdmprinter.def.json
  1751. msgctxt "draft_shield_height_limitation option limited"
  1752. msgid "Limited"
  1753. msgstr "Ograniczona"
  1754. #: /fdmprinter.def.json
  1755. msgctxt "line_width label"
  1756. msgid "Line Width"
  1757. msgstr "Szerokość Linii"
  1758. #: /fdmprinter.def.json
  1759. msgctxt "infill_pattern option lines"
  1760. msgid "Lines"
  1761. msgstr "Linie"
  1762. #: /fdmprinter.def.json
  1763. msgctxt "roofing_pattern option lines"
  1764. msgid "Lines"
  1765. msgstr "Linie"
  1766. #: /fdmprinter.def.json
  1767. msgctxt "support_bottom_pattern option lines"
  1768. msgid "Lines"
  1769. msgstr "Linie"
  1770. #: /fdmprinter.def.json
  1771. msgctxt "support_interface_pattern option lines"
  1772. msgid "Lines"
  1773. msgstr "Linie"
  1774. #: /fdmprinter.def.json
  1775. msgctxt "support_pattern option lines"
  1776. msgid "Lines"
  1777. msgstr "Linie"
  1778. #: /fdmprinter.def.json
  1779. msgctxt "support_roof_pattern option lines"
  1780. msgid "Lines"
  1781. msgstr "Linie"
  1782. #: /fdmprinter.def.json
  1783. msgctxt "top_bottom_pattern option lines"
  1784. msgid "Lines"
  1785. msgstr "Linie"
  1786. #: /fdmprinter.def.json
  1787. msgctxt "top_bottom_pattern_0 option lines"
  1788. msgid "Lines"
  1789. msgstr "Linie"
  1790. #: /fdmprinter.def.json
  1791. msgctxt "machine_gcode_flavor option MACH3"
  1792. msgid "Mach3"
  1793. msgstr "Mach3"
  1794. #: /fdmprinter.def.json
  1795. msgctxt "machine_settings label"
  1796. msgid "Machine"
  1797. msgstr "Drukarka"
  1798. #: /fdmprinter.def.json
  1799. msgctxt "machine_depth label"
  1800. msgid "Machine Depth"
  1801. msgstr "Głębokość Maszyny"
  1802. #: /fdmprinter.def.json
  1803. msgctxt "machine_head_with_fans_polygon label"
  1804. msgid "Machine Head & Fan Polygon"
  1805. msgstr "Obszar głowicy i wentylatora drukarki"
  1806. #: /fdmprinter.def.json
  1807. msgctxt "machine_height label"
  1808. msgid "Machine Height"
  1809. msgstr "Wysokość Maszyny"
  1810. #: /fdmprinter.def.json
  1811. msgctxt "machine_name label"
  1812. msgid "Machine Type"
  1813. msgstr "Typ drukarki"
  1814. #: /fdmprinter.def.json
  1815. msgctxt "machine_width label"
  1816. msgid "Machine Width"
  1817. msgstr "Szerokość Maszyny"
  1818. #: /fdmprinter.def.json
  1819. msgctxt "machine_settings description"
  1820. msgid "Machine specific settings"
  1821. msgstr "Specyficzne ustawienia drukarki"
  1822. #: /fdmprinter.def.json
  1823. msgctxt "conical_overhang_enabled label"
  1824. msgid "Make Overhang Printable"
  1825. msgstr "Drukowalne Zwisy"
  1826. #: /fdmprinter.def.json
  1827. msgctxt "multiple_mesh_overlap description"
  1828. msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better."
  1829. msgstr "Spowoduj, że siatki, które się dotykają będą na siebie trochę nachodzić. To sprawia, że lepiej się łączą."
  1830. #: /fdmprinter.def.json
  1831. msgctxt "support_conical_enabled description"
  1832. msgid "Make support areas smaller at the bottom than at the overhang."
  1833. msgstr "Zmniejsz obszary podparcia na podłożu pod zwisem."
  1834. #: /fdmprinter.def.json
  1835. msgctxt "support_mesh_drop_down description"
  1836. msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh."
  1837. msgstr "Twórz podpory wszędzie pod siatką podpory, tak aby nie było zwisu w siatce podpory."
  1838. #: /fdmprinter.def.json
  1839. msgctxt "extruder_prime_pos_abs description"
  1840. msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head."
  1841. msgstr "Zmień pozycję końcową ekstrudera na bezwzględną, zamiast względem ostatniej pozycji głowicy."
  1842. #: /fdmprinter.def.json
  1843. msgctxt "layer_0_z_overlap description"
  1844. 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."
  1845. 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ść."
  1846. #: /fdmprinter.def.json
  1847. msgctxt "meshfix description"
  1848. msgid "Make the meshes more suited for 3D printing."
  1849. msgstr ""
  1850. #: /fdmprinter.def.json
  1851. msgctxt "machine_gcode_flavor option Makerbot"
  1852. msgid "Makerbot"
  1853. msgstr "Makerbot"
  1854. #: /fdmprinter.def.json
  1855. msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)"
  1856. msgid "Marlin"
  1857. msgstr "Marlin"
  1858. #: /fdmprinter.def.json
  1859. msgctxt "machine_gcode_flavor option RepRap (Volumetric)"
  1860. msgid "Marlin (Volumetric)"
  1861. msgstr "Marlin (Objętościowy)"
  1862. #: /fdmprinter.def.json
  1863. msgctxt "material description"
  1864. msgid "Material"
  1865. msgstr "Materiał"
  1866. #: /fdmprinter.def.json
  1867. msgctxt "material label"
  1868. msgid "Material"
  1869. msgstr "Materiał"
  1870. #: /fdmprinter.def.json
  1871. msgctxt "material_guid label"
  1872. msgid "Material GUID"
  1873. msgstr "GUID Materiału"
  1874. #: /fdmprinter.def.json
  1875. msgctxt "max_extrusion_before_wipe label"
  1876. msgid "Material Volume Between Wipes"
  1877. msgstr "Objętość materiału między czyszczeniem"
  1878. #: /fdmprinter.def.json
  1879. msgctxt "retraction_combing_max_distance label"
  1880. msgid "Max Comb Distance With No Retract"
  1881. msgstr "Max. Dystans Kombinowania Bez Retrakcji"
  1882. #: /fdmprinter.def.json
  1883. msgctxt "machine_max_acceleration_x label"
  1884. msgid "Maximum Acceleration X"
  1885. msgstr "Maksymalne Przyspieszenie X"
  1886. #: /fdmprinter.def.json
  1887. msgctxt "machine_max_acceleration_y label"
  1888. msgid "Maximum Acceleration Y"
  1889. msgstr "Maksymalne Przyspieszenie Y"
  1890. #: /fdmprinter.def.json
  1891. msgctxt "machine_max_acceleration_z label"
  1892. msgid "Maximum Acceleration Z"
  1893. msgstr "Maksymalnie Przyspieszenie Z"
  1894. #: /fdmprinter.def.json
  1895. msgctxt "meshfix_maximum_deviation label"
  1896. msgid "Maximum Deviation"
  1897. msgstr "Maksymalne odchylenie"
  1898. #: /fdmprinter.def.json
  1899. msgctxt "meshfix_maximum_extrusion_area_deviation label"
  1900. msgid "Maximum Extrusion Area Deviation"
  1901. msgstr ""
  1902. #: /fdmprinter.def.json
  1903. msgctxt "cool_fan_speed_max label"
  1904. msgid "Maximum Fan Speed"
  1905. msgstr "Maksymalna Pręd. Wentylatora"
  1906. #: /fdmprinter.def.json
  1907. msgctxt "machine_max_acceleration_e label"
  1908. msgid "Maximum Filament Acceleration"
  1909. msgstr "Maksymalna Przysp. Filamentu"
  1910. #: /fdmprinter.def.json
  1911. msgctxt "conical_overhang_angle label"
  1912. msgid "Maximum Model Angle"
  1913. msgstr "Maksymalny Kąt Modelu"
  1914. #: /fdmprinter.def.json
  1915. msgctxt "conical_overhang_hole_size label"
  1916. msgid "Maximum Overhang Hole Area"
  1917. msgstr ""
  1918. #: /fdmprinter.def.json
  1919. msgctxt "material_maximum_park_duration label"
  1920. msgid "Maximum Park Duration"
  1921. msgstr ""
  1922. #: /fdmprinter.def.json
  1923. msgctxt "meshfix_maximum_resolution label"
  1924. msgid "Maximum Resolution"
  1925. msgstr "Maksymalna Rozdzielczość"
  1926. #: /fdmprinter.def.json
  1927. msgctxt "retraction_count_max label"
  1928. msgid "Maximum Retraction Count"
  1929. msgstr "Maksymalna Liczba Retrakcji"
  1930. #: /fdmprinter.def.json
  1931. msgctxt "max_skin_angle_for_expansion label"
  1932. msgid "Maximum Skin Angle for Expansion"
  1933. msgstr "Maks. Kąt Rozciągania Ścian"
  1934. #: /fdmprinter.def.json
  1935. msgctxt "machine_max_feedrate_e label"
  1936. msgid "Maximum Speed E"
  1937. msgstr ""
  1938. #: /fdmprinter.def.json
  1939. msgctxt "machine_max_feedrate_x label"
  1940. msgid "Maximum Speed X"
  1941. msgstr "Maksymalna Prędkość X"
  1942. #: /fdmprinter.def.json
  1943. msgctxt "machine_max_feedrate_y label"
  1944. msgid "Maximum Speed Y"
  1945. msgstr "Maksymalna Prędkość Y"
  1946. #: /fdmprinter.def.json
  1947. msgctxt "machine_max_feedrate_z label"
  1948. msgid "Maximum Speed Z"
  1949. msgstr "Maksymalna Prędkość Z"
  1950. #: /fdmprinter.def.json
  1951. msgctxt "support_tower_maximum_supported_diameter label"
  1952. msgid "Maximum Tower-Supported Diameter"
  1953. msgstr "Maksymalna średnica obsługiwana przez wieżę podporową"
  1954. #: /fdmprinter.def.json
  1955. msgctxt "meshfix_maximum_travel_resolution label"
  1956. msgid "Maximum Travel Resolution"
  1957. msgstr "Maksymalna Rozdzielczość Ruchów Jałowych"
  1958. #: /fdmprinter.def.json
  1959. msgctxt "machine_max_acceleration_x description"
  1960. msgid "Maximum acceleration for the motor of the X-direction"
  1961. msgstr "Maksymalne przyspieszenie dla silnika osi X"
  1962. #: /fdmprinter.def.json
  1963. msgctxt "machine_max_acceleration_y description"
  1964. msgid "Maximum acceleration for the motor of the Y-direction."
  1965. msgstr "Maksymalne przyspieszenie dla silnika osi Y."
  1966. #: /fdmprinter.def.json
  1967. msgctxt "machine_max_acceleration_z description"
  1968. msgid "Maximum acceleration for the motor of the Z-direction."
  1969. msgstr "Maksymalne przyspieszenie dla silnika osi Z."
  1970. #: /fdmprinter.def.json
  1971. msgctxt "machine_max_acceleration_e description"
  1972. msgid "Maximum acceleration for the motor of the filament."
  1973. msgstr "Maksymalne przyspieszenie dla silnika filamentu."
  1974. #: /fdmprinter.def.json
  1975. msgctxt "bridge_sparse_infill_max_density description"
  1976. 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."
  1977. msgstr ""
  1978. #: /fdmprinter.def.json
  1979. msgctxt "support_tower_maximum_supported_diameter description"
  1980. msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower."
  1981. msgstr "Maksymalna średnica w kierunkach X/Y obszaru, który ma być podtrzymywana przez specjalistyczną wieżę podporową."
  1982. #: /fdmprinter.def.json
  1983. msgctxt "max_extrusion_before_wipe description"
  1984. 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."
  1985. msgstr ""
  1986. #: /fdmprinter.def.json
  1987. msgctxt "multiple_mesh_overlap label"
  1988. msgid "Merged Meshes Overlap"
  1989. msgstr "Połączone Siatki Pokrywają się"
  1990. #: /fdmprinter.def.json
  1991. msgctxt "meshfix label"
  1992. msgid "Mesh Fixes"
  1993. msgstr "Poprawki Siatki"
  1994. #: /fdmprinter.def.json
  1995. msgctxt "mesh_position_x label"
  1996. msgid "Mesh Position X"
  1997. msgstr "Pozycja Siatki w X"
  1998. #: /fdmprinter.def.json
  1999. msgctxt "mesh_position_y label"
  2000. msgid "Mesh Position Y"
  2001. msgstr "Pozycja Siatki w Y"
  2002. #: /fdmprinter.def.json
  2003. msgctxt "mesh_position_z label"
  2004. msgid "Mesh Position Z"
  2005. msgstr "Pozycja Siatki w Z"
  2006. #: /fdmprinter.def.json
  2007. msgctxt "infill_mesh_order label"
  2008. msgid "Mesh Processing Rank"
  2009. msgstr ""
  2010. #: /fdmprinter.def.json
  2011. msgctxt "mesh_rotation_matrix label"
  2012. msgid "Mesh Rotation Matrix"
  2013. msgstr "Forma Obrotu Siatki"
  2014. #: /fdmprinter.def.json
  2015. msgctxt "slicing_tolerance option middle"
  2016. msgid "Middle"
  2017. msgstr "Środek"
  2018. #: /fdmprinter.def.json
  2019. msgctxt "mold_width label"
  2020. msgid "Minimal Mold Width"
  2021. msgstr "Min. Szerokość Formy"
  2022. #: /fdmprinter.def.json
  2023. msgctxt "machine_min_cool_heat_time_window label"
  2024. msgid "Minimal Time Standby Temperature"
  2025. msgstr "Minimalny Czas Temp. Czuwania"
  2026. #: /fdmprinter.def.json
  2027. msgctxt "bridge_wall_min_length label"
  2028. msgid "Minimum Bridge Wall Length"
  2029. msgstr "Min. Długość Mostu"
  2030. #: /fdmprinter.def.json
  2031. msgctxt "min_even_wall_line_width label"
  2032. msgid "Minimum Even Wall Line Width"
  2033. msgstr ""
  2034. #: /fdmprinter.def.json
  2035. msgctxt "retraction_extrusion_window label"
  2036. msgid "Minimum Extrusion Distance Window"
  2037. msgstr "Okno Min. Dług. Ekstruzji"
  2038. #: /fdmprinter.def.json
  2039. msgctxt "min_feature_size label"
  2040. msgid "Minimum Feature Size"
  2041. msgstr ""
  2042. #: /fdmprinter.def.json
  2043. msgctxt "machine_minimum_feedrate label"
  2044. msgid "Minimum Feedrate"
  2045. msgstr "Minimalna Prędk. Posuwu"
  2046. #: /fdmprinter.def.json
  2047. msgctxt "min_infill_area label"
  2048. msgid "Minimum Infill Area"
  2049. msgstr "Min. Obszar Wypełnienia"
  2050. #: /fdmprinter.def.json
  2051. msgctxt "cool_min_layer_time label"
  2052. msgid "Minimum Layer Time"
  2053. msgstr "Minimalny Czas Warstwy"
  2054. #: /fdmprinter.def.json
  2055. msgctxt "min_odd_wall_line_width label"
  2056. msgid "Minimum Odd Wall Line Width"
  2057. msgstr ""
  2058. #: /fdmprinter.def.json
  2059. msgctxt "minimum_polygon_circumference label"
  2060. msgid "Minimum Polygon Circumference"
  2061. msgstr "Minimalny Obwód Wieloboku"
  2062. #: /fdmprinter.def.json
  2063. msgctxt "min_skin_width_for_expansion label"
  2064. msgid "Minimum Skin Width for Expansion"
  2065. msgstr "Min. Szerok. Skóry do Poszerzenia"
  2066. #: /fdmprinter.def.json
  2067. msgctxt "cool_min_speed label"
  2068. msgid "Minimum Speed"
  2069. msgstr "Minimalna Prędkość"
  2070. #: /fdmprinter.def.json
  2071. msgctxt "minimum_support_area label"
  2072. msgid "Minimum Support Area"
  2073. msgstr "Minimalna Powierzchnia Podpór"
  2074. #: /fdmprinter.def.json
  2075. msgctxt "minimum_bottom_area label"
  2076. msgid "Minimum Support Floor Area"
  2077. msgstr "Minimalna Powierzchnia Podłoża Podpór"
  2078. #: /fdmprinter.def.json
  2079. msgctxt "minimum_interface_area label"
  2080. msgid "Minimum Support Interface Area"
  2081. msgstr "Minimalna Powierzchnia Interfejsu Podpór"
  2082. #: /fdmprinter.def.json
  2083. msgctxt "minimum_roof_area label"
  2084. msgid "Minimum Support Roof Area"
  2085. msgstr "Minimalna Powierzchnia Dachu Podpór"
  2086. #: /fdmprinter.def.json
  2087. msgctxt "support_xy_distance_overhang label"
  2088. msgid "Minimum Support X/Y Distance"
  2089. msgstr "Min. Odległość X/Y Podpory"
  2090. #: /fdmprinter.def.json
  2091. msgctxt "min_bead_width label"
  2092. msgid "Minimum Thin Wall Line Width"
  2093. msgstr ""
  2094. #: /fdmprinter.def.json
  2095. msgctxt "coasting_min_volume label"
  2096. msgid "Minimum Volume Before Coasting"
  2097. msgstr "Minimalna Objętość Przed Wypływaniem"
  2098. #: /fdmprinter.def.json
  2099. msgctxt "min_wall_line_width label"
  2100. msgid "Minimum Wall Line Width"
  2101. msgstr ""
  2102. #: /fdmprinter.def.json
  2103. msgctxt "minimum_interface_area description"
  2104. msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support."
  2105. 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."
  2106. #: /fdmprinter.def.json
  2107. msgctxt "minimum_support_area description"
  2108. msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated."
  2109. msgstr "Minimalny rozmiar powierzchni dla podpór. Obszary, które mają mniejszą powierzchnię od tej wartości, nie będą generowane."
  2110. #: /fdmprinter.def.json
  2111. msgctxt "minimum_bottom_area description"
  2112. 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."
  2113. 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."
  2114. #: /fdmprinter.def.json
  2115. msgctxt "minimum_roof_area description"
  2116. 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."
  2117. msgstr "Minimalny rozmiar obszaru dla dachu podpór. Obszary, które mają powierzchnię mniejszą od tej wartości, zostaną wydrukowane jako normalne podpory."
  2118. #: /fdmprinter.def.json
  2119. msgctxt "min_feature_size description"
  2120. 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."
  2121. msgstr ""
  2122. #: /fdmprinter.def.json
  2123. msgctxt "support_conical_min_width description"
  2124. msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures."
  2125. msgstr "Minimalna szerokość, do której można zmniejszyć bazę podpory stożkowej. Małe szerokości mogą prowadzić do niestabilnych struktur nośnych."
  2126. #: /fdmprinter.def.json
  2127. msgctxt "mold_enabled label"
  2128. msgid "Mold"
  2129. msgstr "Forma"
  2130. #: /fdmprinter.def.json
  2131. msgctxt "mold_angle label"
  2132. msgid "Mold Angle"
  2133. msgstr "Kąt Formy"
  2134. #: /fdmprinter.def.json
  2135. msgctxt "mold_roof_height label"
  2136. msgid "Mold Roof Height"
  2137. msgstr "Wysokość Dachu Formy"
  2138. #: /fdmprinter.def.json
  2139. msgctxt "ironing_monotonic label"
  2140. msgid "Monotonic Ironing Order"
  2141. msgstr ""
  2142. #: /fdmprinter.def.json
  2143. msgctxt "roofing_monotonic label"
  2144. msgid "Monotonic Top Surface Order"
  2145. msgstr ""
  2146. #: /fdmprinter.def.json
  2147. msgctxt "skin_monotonic label"
  2148. msgid "Monotonic Top/Bottom Order"
  2149. msgstr ""
  2150. #: /fdmprinter.def.json
  2151. msgctxt "skirt_line_count description"
  2152. msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt."
  2153. msgstr "Liczne linie pomagają w lepszym wytłaczaniu małych modeli. Ustawienie na 0 spowoduje wyłączenie obwódki."
  2154. #: /fdmprinter.def.json
  2155. msgctxt "initial_layer_line_width_factor description"
  2156. msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion."
  2157. msgstr "Mnożnik szerokości linii na pierwszej warstwie. Zwiększenie może polepszyć przyczepność do stołu."
  2158. #: /fdmprinter.def.json
  2159. msgctxt "material_no_load_move_factor label"
  2160. msgid "No Load Move Factor"
  2161. msgstr ""
  2162. #: /fdmprinter.def.json
  2163. msgctxt "skin_no_small_gaps_heuristic label"
  2164. msgid "No Skin in Z Gaps"
  2165. msgstr "Brak wypełnienia w lukach osi Z"
  2166. #: /fdmprinter.def.json
  2167. msgctxt "blackmagic description"
  2168. msgid "Non-traditional ways to print your models."
  2169. msgstr ""
  2170. #: /fdmprinter.def.json
  2171. msgctxt "adhesion_type option none"
  2172. msgid "None"
  2173. msgstr "Brak"
  2174. #: /fdmprinter.def.json
  2175. msgctxt "z_seam_corner option z_seam_corner_none"
  2176. msgid "None"
  2177. msgstr "Brak"
  2178. #: /fdmprinter.def.json
  2179. msgctxt "magic_mesh_surface_mode option normal"
  2180. msgid "Normal"
  2181. msgstr "Normalny"
  2182. #: /fdmprinter.def.json
  2183. msgctxt "support_structure option normal"
  2184. msgid "Normal"
  2185. msgstr ""
  2186. #: /fdmprinter.def.json
  2187. msgctxt "meshfix_keep_open_polygons description"
  2188. 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."
  2189. 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."
  2190. #: /fdmprinter.def.json
  2191. msgctxt "retraction_combing option noskin"
  2192. msgid "Not in Skin"
  2193. msgstr "Nie w Powłoce"
  2194. #: /fdmprinter.def.json
  2195. msgctxt "retraction_combing option no_outer_surfaces"
  2196. msgid "Not on Outer Surface"
  2197. msgstr ""
  2198. #: /fdmprinter.def.json
  2199. msgctxt "machine_nozzle_expansion_angle label"
  2200. msgid "Nozzle Angle"
  2201. msgstr "Kąt dyszy"
  2202. #: /fdmprinter.def.json
  2203. msgctxt "machine_nozzle_size label"
  2204. msgid "Nozzle Diameter"
  2205. msgstr "Średnica dyszy"
  2206. #: /fdmprinter.def.json
  2207. msgctxt "nozzle_disallowed_areas label"
  2208. msgid "Nozzle Disallowed Areas"
  2209. msgstr "Niedozwolone Obszary Dyszy"
  2210. #: /fdmprinter.def.json
  2211. msgctxt "machine_nozzle_id label"
  2212. msgid "Nozzle ID"
  2213. msgstr "ID Dyszy"
  2214. #: /fdmprinter.def.json
  2215. msgctxt "machine_nozzle_head_distance label"
  2216. msgid "Nozzle Length"
  2217. msgstr "Długość dyszy"
  2218. #: /fdmprinter.def.json
  2219. msgctxt "switch_extruder_extra_prime_amount label"
  2220. msgid "Nozzle Switch Extra Prime Amount"
  2221. msgstr "Dodatkowa ekstruzja po zmianie dyszy"
  2222. #: /fdmprinter.def.json
  2223. msgctxt "switch_extruder_prime_speed label"
  2224. msgid "Nozzle Switch Prime Speed"
  2225. msgstr "Prędk. Czyszcz. przy Zmianie Dyszy"
  2226. #: /fdmprinter.def.json
  2227. msgctxt "switch_extruder_retraction_speed label"
  2228. msgid "Nozzle Switch Retract Speed"
  2229. msgstr "Prędk. Cofania przy Zmianie Dyszy"
  2230. #: /fdmprinter.def.json
  2231. msgctxt "switch_extruder_retraction_amount label"
  2232. msgid "Nozzle Switch Retraction Distance"
  2233. msgstr "Długość Retrakcji przy Zmianie Dyszy"
  2234. #: /fdmprinter.def.json
  2235. msgctxt "switch_extruder_retraction_speeds label"
  2236. msgid "Nozzle Switch Retraction Speed"
  2237. msgstr "Prędk. Retrakcji przy Zmianie Dyszy"
  2238. #: /fdmprinter.def.json
  2239. msgctxt "machine_extruder_count label"
  2240. msgid "Number of Extruders"
  2241. msgstr "Liczba Ekstruderów"
  2242. #: /fdmprinter.def.json
  2243. msgctxt "extruders_enabled_count label"
  2244. msgid "Number of Extruders That Are Enabled"
  2245. msgstr "Liczba Ekstruderów, które są dostępne"
  2246. #: /fdmprinter.def.json
  2247. msgctxt "speed_slowdown_layers label"
  2248. msgid "Number of Slower Layers"
  2249. msgstr "Ilość Wolnych Warstw"
  2250. #: /fdmprinter.def.json
  2251. msgctxt "extruders_enabled_count description"
  2252. msgid "Number of extruder trains that are enabled; automatically set in software"
  2253. msgstr "Liczba zespołów ekstruderów, które są dostępne; automatycznie ustawiane w oprogramowaniu"
  2254. #: /fdmprinter.def.json
  2255. msgctxt "machine_extruder_count description"
  2256. msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle."
  2257. msgstr "Liczba zespołów esktruderów. Zespół ekstrudera to kombinacja podajnika, rurki Bowden i dyszy."
  2258. #: /fdmprinter.def.json
  2259. msgctxt "wipe_repeat_count description"
  2260. msgid "Number of times to move the nozzle across the brush."
  2261. msgstr "Ilość powtórzeń przesunięcia dyszy po szczotce."
  2262. #: /fdmprinter.def.json
  2263. msgctxt "gradual_infill_steps description"
  2264. 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."
  2265. 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."
  2266. #: /fdmprinter.def.json
  2267. msgctxt "gradual_support_infill_steps description"
  2268. 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."
  2269. 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."
  2270. #: /fdmprinter.def.json
  2271. msgctxt "infill_pattern option tetrahedral"
  2272. msgid "Octet"
  2273. msgstr "Czworościan"
  2274. #: /fdmprinter.def.json
  2275. msgctxt "retraction_combing option off"
  2276. msgid "Off"
  2277. msgstr "Wyłącz"
  2278. #: /fdmprinter.def.json
  2279. msgctxt "mesh_position_x description"
  2280. msgid "Offset applied to the object in the x direction."
  2281. msgstr "Przesunięcie zastosowane dla obiektu w kierunku X."
  2282. #: /fdmprinter.def.json
  2283. msgctxt "mesh_position_y description"
  2284. msgid "Offset applied to the object in the y direction."
  2285. msgstr "Przesunięcie zastosowane dla obiektu w kierunku Y."
  2286. #: /fdmprinter.def.json
  2287. msgctxt "mesh_position_z description"
  2288. msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'."
  2289. msgstr "Przesunięcie zastosowane dla obiektu w kierunku Z. Za pomocą tego możesz sprecyzować co nazywamy 'Zatopieniem Obiektu."
  2290. #: /fdmprinter.def.json
  2291. msgctxt "machine_use_extruder_offset_to_offset_coords label"
  2292. msgid "Offset with Extruder"
  2293. msgstr "Przesunięcie ekstrudera"
  2294. #: /fdmprinter.def.json
  2295. msgctxt "limit_support_retractions description"
  2296. msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure."
  2297. msgstr "Pomiń retrakcję, przechodząc od podpory do podpory w linii prostej. Włączenie tego ustawienia oszczędza czas drukowania, ale może prowadzić do nadmiernego ciągnięcia filamentu w strukturze nośnej."
  2298. #: /fdmprinter.def.json
  2299. msgctxt "print_sequence option one_at_a_time"
  2300. msgid "One at a Time"
  2301. msgstr "Jeden na raz"
  2302. #: /fdmprinter.def.json
  2303. msgctxt "retraction_hop_only_when_collides description"
  2304. msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling."
  2305. 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."
  2306. #: /fdmprinter.def.json
  2307. msgctxt "ironing_only_highest_layer description"
  2308. 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."
  2309. 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."
  2310. #: /fdmprinter.def.json
  2311. msgctxt "brim_outside_only description"
  2312. 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."
  2313. 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."
  2314. #: /fdmprinter.def.json
  2315. msgctxt "ooze_shield_angle label"
  2316. msgid "Ooze Shield Angle"
  2317. msgstr "Kąt Osłony Wycierającej"
  2318. #: /fdmprinter.def.json
  2319. msgctxt "ooze_shield_dist label"
  2320. msgid "Ooze Shield Distance"
  2321. msgstr "Odległ. Osłony Wycierającej"
  2322. #: /fdmprinter.def.json
  2323. msgctxt "optimize_wall_printing_order label"
  2324. msgid "Optimize Wall Printing Order"
  2325. msgstr "Optymalizuj Kolejność Drukowania Ścian"
  2326. #: /fdmprinter.def.json
  2327. msgctxt "optimize_wall_printing_order description"
  2328. 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."
  2329. 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."
  2330. #: /fdmprinter.def.json
  2331. msgctxt "machine_nozzle_tip_outer_diameter label"
  2332. msgid "Outer Nozzle Diameter"
  2333. msgstr "Zew. średnica dyszy"
  2334. #: /fdmprinter.def.json
  2335. msgctxt "acceleration_wall_0 label"
  2336. msgid "Outer Wall Acceleration"
  2337. msgstr "Przyspieszenie Ściany Zew"
  2338. #: /fdmprinter.def.json
  2339. msgctxt "wall_0_extruder_nr label"
  2340. msgid "Outer Wall Extruder"
  2341. msgstr "Esktruder Zew. Ściany"
  2342. #: /fdmprinter.def.json
  2343. msgctxt "wall_0_material_flow label"
  2344. msgid "Outer Wall Flow"
  2345. msgstr "Przepływu ścianek zewnętrznych"
  2346. #: /fdmprinter.def.json
  2347. msgctxt "wall_0_inset label"
  2348. msgid "Outer Wall Inset"
  2349. msgstr "Wkład Zew. Ściany"
  2350. #: /fdmprinter.def.json
  2351. msgctxt "jerk_wall_0 label"
  2352. msgid "Outer Wall Jerk"
  2353. msgstr "Zryw Zew. Ścian"
  2354. #: /fdmprinter.def.json
  2355. msgctxt "wall_line_width_0 label"
  2356. msgid "Outer Wall Line Width"
  2357. msgstr "Szerokość Linii Ścian(y) Zewnętrznych"
  2358. #: /fdmprinter.def.json
  2359. msgctxt "speed_wall_0 label"
  2360. msgid "Outer Wall Speed"
  2361. msgstr "Prędkość Zew. Ściany"
  2362. #: /fdmprinter.def.json
  2363. msgctxt "wall_0_wipe_dist label"
  2364. msgid "Outer Wall Wipe Distance"
  2365. msgstr "Długość Czyszczenia Zew. Ściana"
  2366. #: /fdmprinter.def.json
  2367. msgctxt "inset_direction option outside_in"
  2368. msgid "Outside To Inside"
  2369. msgstr ""
  2370. #: /fdmprinter.def.json
  2371. msgctxt "wall_overhang_angle label"
  2372. msgid "Overhanging Wall Angle"
  2373. msgstr "Kąt Nawisającej Ścianki"
  2374. #: /fdmprinter.def.json
  2375. msgctxt "wall_overhang_speed_factor label"
  2376. msgid "Overhanging Wall Speed"
  2377. msgstr "Prędkość Ścianki Nawisającej"
  2378. #: /fdmprinter.def.json
  2379. msgctxt "wall_overhang_speed_factor description"
  2380. msgid "Overhanging walls will be printed at this percentage of their normal print speed."
  2381. msgstr "Nawisające ścianki będą drukowane z taką procentową wartością względem normalnej prędkości druku."
  2382. #: /fdmprinter.def.json
  2383. msgctxt "wipe_pause description"
  2384. msgid "Pause after the unretract."
  2385. msgstr "Wstrzymaj czyszczenie, jeśli brak retrakcji."
  2386. #: /fdmprinter.def.json
  2387. msgctxt "bridge_fan_speed description"
  2388. msgid "Percentage fan speed to use when printing bridge walls and skin."
  2389. msgstr "Procent prędkości wentylatora używany podczas drukowania ścian i skóry mostów."
  2390. #: /fdmprinter.def.json
  2391. msgctxt "bridge_fan_speed_2 description"
  2392. msgid "Percentage fan speed to use when printing the second bridge skin layer."
  2393. msgstr "Procent prędkości wentylatora używany podczas drukowania drugiej warstwy skóry most."
  2394. #: /fdmprinter.def.json
  2395. msgctxt "support_supported_skin_fan_speed description"
  2396. 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."
  2397. 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."
  2398. #: /fdmprinter.def.json
  2399. msgctxt "bridge_fan_speed_3 description"
  2400. msgid "Percentage fan speed to use when printing the third bridge skin layer."
  2401. msgstr "Procent prędkości wentylatora używany podczas drukowania trzeciej warstwy skóry most."
  2402. #: /fdmprinter.def.json
  2403. msgctxt "wireframe_straight_before_down description"
  2404. msgid "Percentage of a diagonally downward line which is covered by a horizontal line piece. This can prevent sagging of the top most point of upward lines. Only applies to Wire Printing."
  2405. msgstr "Odsetek ukośnych linii ułożonych w dół, który jest przykryty poziomą linią. Może to uniemożliwić zwisanie górnej krawędzi linii ułożonejw górę. Dotyczy tylko Drukowania Drutu."
  2406. #: /fdmprinter.def.json
  2407. msgctxt "minimum_polygon_circumference description"
  2408. 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."
  2409. 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."
  2410. #: /fdmprinter.def.json
  2411. msgctxt "wall_transition_filter_deviation description"
  2412. 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."
  2413. msgstr ""
  2414. #: /fdmprinter.def.json
  2415. msgctxt "acceleration_prime_tower label"
  2416. msgid "Prime Tower Acceleration"
  2417. msgstr "Przyspieszenie Wieży Czyszczącej"
  2418. #: /fdmprinter.def.json
  2419. msgctxt "prime_tower_brim_enable label"
  2420. msgid "Prime Tower Brim"
  2421. msgstr "Obrys wieży czyszczącej"
  2422. #: /fdmprinter.def.json
  2423. msgctxt "prime_tower_flow label"
  2424. msgid "Prime Tower Flow"
  2425. msgstr "Przepływ Wieży Czyszczącej"
  2426. #: /fdmprinter.def.json
  2427. msgctxt "jerk_prime_tower label"
  2428. msgid "Prime Tower Jerk"
  2429. msgstr "Zryw Wieży Czyszczącej"
  2430. #: /fdmprinter.def.json
  2431. msgctxt "prime_tower_line_width label"
  2432. msgid "Prime Tower Line Width"
  2433. msgstr "Szerokość Linii Wieży Czyszczczenia"
  2434. #: /fdmprinter.def.json
  2435. msgctxt "prime_tower_min_volume label"
  2436. msgid "Prime Tower Minimum Volume"
  2437. msgstr "Min. Objętość Wieży Czyszczącej"
  2438. #: /fdmprinter.def.json
  2439. msgctxt "prime_tower_size label"
  2440. msgid "Prime Tower Size"
  2441. msgstr "Rozmiar Wieży Czyszczącej"
  2442. #: /fdmprinter.def.json
  2443. msgctxt "speed_prime_tower label"
  2444. msgid "Prime Tower Speed"
  2445. msgstr "Prędkość Wieży Czyszczenia"
  2446. #: /fdmprinter.def.json
  2447. msgctxt "prime_tower_position_x label"
  2448. msgid "Prime Tower X Position"
  2449. msgstr "Pozycja Wieży Czyszcz. X"
  2450. #: /fdmprinter.def.json
  2451. msgctxt "prime_tower_position_y label"
  2452. msgid "Prime Tower Y Position"
  2453. msgstr "Pozycja Wieży Czyszcz. Y"
  2454. #: /fdmprinter.def.json
  2455. msgctxt "prime_tower_brim_enable description"
  2456. msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type."
  2457. msgstr "Wieże czyszczące mogą potrzebować dodatkowej adhezji zapewnionej przez obrys, nawet jeśli model nie potrzebuje. Nie można używać z typem przyczepności „tratwa”."
  2458. #: /fdmprinter.def.json
  2459. msgctxt "acceleration_print label"
  2460. msgid "Print Acceleration"
  2461. msgstr "Przyspieszenie Druku"
  2462. #: /fdmprinter.def.json
  2463. msgctxt "jerk_print label"
  2464. msgid "Print Jerk"
  2465. msgstr "Zryw Druku"
  2466. #: /fdmprinter.def.json
  2467. msgctxt "print_sequence label"
  2468. msgid "Print Sequence"
  2469. msgstr "Sekwencja Wydruku"
  2470. #: /fdmprinter.def.json
  2471. msgctxt "speed_print label"
  2472. msgid "Print Speed"
  2473. msgstr "Prędkość Druku"
  2474. #: /fdmprinter.def.json
  2475. msgctxt "fill_outline_gaps label"
  2476. msgid "Print Thin Walls"
  2477. msgstr "Drukuj Cienkie Linie"
  2478. #: /fdmprinter.def.json
  2479. msgctxt "prime_tower_enable description"
  2480. msgid "Print a tower next to the print which serves to prime the material after each nozzle switch."
  2481. msgstr "Wydrukuj wieżę obok wydruku, która służy do zmiany materiału po każdym przełączeniu dyszy."
  2482. #: /fdmprinter.def.json
  2483. msgctxt "infill_support_enabled description"
  2484. 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."
  2485. 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."
  2486. #: /fdmprinter.def.json
  2487. msgctxt "ironing_monotonic description"
  2488. 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."
  2489. msgstr ""
  2490. #: /fdmprinter.def.json
  2491. msgctxt "mold_enabled description"
  2492. msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate."
  2493. msgstr "Wydrukuj modele jako formę, którą można wyrzucić w celu uzyskania odlewu, który przypomina modele na płycie."
  2494. #: /fdmprinter.def.json
  2495. msgctxt "wireframe_enabled description"
  2496. msgid "Print only the outside surface with a sparse webbed structure, printing 'in thin air'. This is realized by horizontally printing the contours of the model at given Z intervals which are connected via upward and diagonally downward lines."
  2497. msgstr "Wydrukuj tylko zewnętrzną powierzchnię o słabej strukturze tkaniny, drukując \"w cienkim powietrzu\". Jest to realizowane poprzez poziomy wydruk konturów modelu w określonych przedziałach Z, które są połączone przez linie skierowane w górę i w dół po porzekątnej."
  2498. #: /fdmprinter.def.json
  2499. msgctxt "fill_outline_gaps description"
  2500. msgid "Print pieces of the model which are horizontally thinner than the nozzle size."
  2501. msgstr "Drukuj części modelu, które są poziomo cieńsze niż rozmiar dyszy."
  2502. #: /fdmprinter.def.json
  2503. msgctxt "bridge_skin_speed_2 description"
  2504. msgid "Print speed to use when printing the second bridge skin layer."
  2505. msgstr "Prędkość używana podczas drukowania drugiej warstwy skóry mostu."
  2506. #: /fdmprinter.def.json
  2507. msgctxt "bridge_skin_speed_3 description"
  2508. msgid "Print speed to use when printing the third bridge skin layer."
  2509. msgstr "Prędkość używana podczas drukowania trzeciej warstwy skóry mostu."
  2510. #: /fdmprinter.def.json
  2511. msgctxt "infill_before_walls description"
  2512. 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."
  2513. 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ę."
  2514. #: /fdmprinter.def.json
  2515. msgctxt "roofing_monotonic description"
  2516. 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."
  2517. msgstr ""
  2518. #: /fdmprinter.def.json
  2519. msgctxt "skin_monotonic description"
  2520. 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."
  2521. msgstr ""
  2522. #: /fdmprinter.def.json
  2523. msgctxt "material_print_temperature label"
  2524. msgid "Printing Temperature"
  2525. msgstr "Temperatura Druku"
  2526. #: /fdmprinter.def.json
  2527. msgctxt "material_print_temperature_layer_0 label"
  2528. msgid "Printing Temperature Initial Layer"
  2529. msgstr "Temp. Druku Początk. Warstwy"
  2530. #: /fdmprinter.def.json
  2531. msgctxt "alternate_extra_perimeter description"
  2532. msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
  2533. 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."
  2534. #: /fdmprinter.def.json
  2535. msgctxt "resolution label"
  2536. msgid "Quality"
  2537. msgstr "Jakość"
  2538. #: /fdmprinter.def.json
  2539. msgctxt "infill_pattern option quarter_cubic"
  2540. msgid "Quarter Cubic"
  2541. msgstr "Ćwierć Sześcienny"
  2542. #: /fdmprinter.def.json
  2543. msgctxt "adhesion_type option raft"
  2544. msgid "Raft"
  2545. msgstr "Tratwa"
  2546. #: /fdmprinter.def.json
  2547. msgctxt "raft_airgap label"
  2548. msgid "Raft Air Gap"
  2549. msgstr "Przerwa Tratwy"
  2550. #: /fdmprinter.def.json
  2551. msgctxt "raft_base_extruder_nr label"
  2552. msgid "Raft Base Extruder"
  2553. msgstr ""
  2554. #: /fdmprinter.def.json
  2555. msgctxt "raft_base_fan_speed label"
  2556. msgid "Raft Base Fan Speed"
  2557. msgstr "Prędk. Went. Podst. Tratwy"
  2558. #: /fdmprinter.def.json
  2559. msgctxt "raft_base_line_spacing label"
  2560. msgid "Raft Base Line Spacing"
  2561. msgstr "Rozstaw Linii Podstawy Tratwy"
  2562. #: /fdmprinter.def.json
  2563. msgctxt "raft_base_line_width label"
  2564. msgid "Raft Base Line Width"
  2565. msgstr "Szerokość Linii Podst. Tratwy"
  2566. #: /fdmprinter.def.json
  2567. msgctxt "raft_base_acceleration label"
  2568. msgid "Raft Base Print Acceleration"
  2569. msgstr "Przysp. Podst. Warstwy Tratwy"
  2570. #: /fdmprinter.def.json
  2571. msgctxt "raft_base_jerk label"
  2572. msgid "Raft Base Print Jerk"
  2573. msgstr "Zryw Podst. Tratwy"
  2574. #: /fdmprinter.def.json
  2575. msgctxt "raft_base_speed label"
  2576. msgid "Raft Base Print Speed"
  2577. msgstr "Prędk. Druku Podst. Tratwy"
  2578. #: /fdmprinter.def.json
  2579. msgctxt "raft_base_thickness label"
  2580. msgid "Raft Base Thickness"
  2581. msgstr "Grubość Podstawy Tratwy"
  2582. #: /fdmprinter.def.json
  2583. msgctxt "raft_base_wall_count label"
  2584. msgid "Raft Base Wall Count"
  2585. msgstr ""
  2586. #: /fdmprinter.def.json
  2587. msgctxt "raft_margin label"
  2588. msgid "Raft Extra Margin"
  2589. msgstr "Dod. Margines Tratwy"
  2590. #: /fdmprinter.def.json
  2591. msgctxt "raft_fan_speed label"
  2592. msgid "Raft Fan Speed"
  2593. msgstr "Prędk. Went. Tratwa"
  2594. #: /fdmprinter.def.json
  2595. msgctxt "raft_interface_extruder_nr label"
  2596. msgid "Raft Middle Extruder"
  2597. msgstr ""
  2598. #: /fdmprinter.def.json
  2599. msgctxt "raft_interface_fan_speed label"
  2600. msgid "Raft Middle Fan Speed"
  2601. msgstr "Prędk. Went. Środek Tratwy"
  2602. #: /fdmprinter.def.json
  2603. msgctxt "raft_interface_layers label"
  2604. msgid "Raft Middle Layers"
  2605. msgstr ""
  2606. #: /fdmprinter.def.json
  2607. msgctxt "raft_interface_line_width label"
  2608. msgid "Raft Middle Line Width"
  2609. msgstr "Szerokość Linii Środka Tratwy"
  2610. #: /fdmprinter.def.json
  2611. msgctxt "raft_interface_acceleration label"
  2612. msgid "Raft Middle Print Acceleration"
  2613. msgstr "Przysp. Druku Środka Tratwy"
  2614. #: /fdmprinter.def.json
  2615. msgctxt "raft_interface_jerk label"
  2616. msgid "Raft Middle Print Jerk"
  2617. msgstr "Zryw Środek Tratwy"
  2618. #: /fdmprinter.def.json
  2619. msgctxt "raft_interface_speed label"
  2620. msgid "Raft Middle Print Speed"
  2621. msgstr "Prędk. Druku Środka Tratwy"
  2622. #: /fdmprinter.def.json
  2623. msgctxt "raft_interface_line_spacing label"
  2624. msgid "Raft Middle Spacing"
  2625. msgstr "Przerwy Środka Tratwy"
  2626. #: /fdmprinter.def.json
  2627. msgctxt "raft_interface_thickness label"
  2628. msgid "Raft Middle Thickness"
  2629. msgstr "Grubość Środka Tratwy"
  2630. #: /fdmprinter.def.json
  2631. msgctxt "raft_acceleration label"
  2632. msgid "Raft Print Acceleration"
  2633. msgstr "Przysp. Druku Tratwy"
  2634. #: /fdmprinter.def.json
  2635. msgctxt "raft_jerk label"
  2636. msgid "Raft Print Jerk"
  2637. msgstr "Zryw Tratwy"
  2638. #: /fdmprinter.def.json
  2639. msgctxt "raft_speed label"
  2640. msgid "Raft Print Speed"
  2641. msgstr "Prędk. Druku Tratwy"
  2642. #: /fdmprinter.def.json
  2643. msgctxt "raft_smoothing label"
  2644. msgid "Raft Smoothing"
  2645. msgstr "Wygładzanie Tratwy"
  2646. #: /fdmprinter.def.json
  2647. msgctxt "raft_surface_extruder_nr label"
  2648. msgid "Raft Top Extruder"
  2649. msgstr ""
  2650. #: /fdmprinter.def.json
  2651. msgctxt "raft_surface_fan_speed label"
  2652. msgid "Raft Top Fan Speed"
  2653. msgstr "Prędk. Went. Góra Tratwy"
  2654. #: /fdmprinter.def.json
  2655. msgctxt "raft_surface_thickness label"
  2656. msgid "Raft Top Layer Thickness"
  2657. msgstr "Grubość Warstwy Góra Tratwy"
  2658. #: /fdmprinter.def.json
  2659. msgctxt "raft_surface_layers label"
  2660. msgid "Raft Top Layers"
  2661. msgstr "Górne Warstwy Tartwy"
  2662. #: /fdmprinter.def.json
  2663. msgctxt "raft_surface_line_width label"
  2664. msgid "Raft Top Line Width"
  2665. msgstr "Szerokość Linii Góra Tratwy"
  2666. #: /fdmprinter.def.json
  2667. msgctxt "raft_surface_acceleration label"
  2668. msgid "Raft Top Print Acceleration"
  2669. msgstr "Przysp. Druku Góry Tratwy"
  2670. #: /fdmprinter.def.json
  2671. msgctxt "raft_surface_jerk label"
  2672. msgid "Raft Top Print Jerk"
  2673. msgstr "Zryw Góry Tratwy"
  2674. #: /fdmprinter.def.json
  2675. msgctxt "raft_surface_speed label"
  2676. msgid "Raft Top Print Speed"
  2677. msgstr "Prędk. Druku Góry Tratwy"
  2678. #: /fdmprinter.def.json
  2679. msgctxt "raft_surface_line_spacing label"
  2680. msgid "Raft Top Spacing"
  2681. msgstr "Przerwy Góra Tratwy"
  2682. #: /fdmprinter.def.json
  2683. msgctxt "z_seam_type option random"
  2684. msgid "Random"
  2685. msgstr "Losowe"
  2686. #: /fdmprinter.def.json
  2687. msgctxt "infill_randomize_start_location label"
  2688. msgid "Randomize Infill Start"
  2689. msgstr "Losowy punkt startu wypełnienia"
  2690. #: /fdmprinter.def.json
  2691. msgctxt "infill_randomize_start_location description"
  2692. 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."
  2693. 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."
  2694. #: /fdmprinter.def.json
  2695. msgctxt "magic_fuzzy_skin_enabled description"
  2696. msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look."
  2697. msgstr "Losowe drgania podczas drukowania zewnętrznej ściany, dzięki czemu powierzchnia ma szorstki i rozmyty wygląd."
  2698. #: /fdmprinter.def.json
  2699. msgctxt "machine_shape option rectangular"
  2700. msgid "Rectangular"
  2701. msgstr "Prostokątny"
  2702. #: /fdmprinter.def.json
  2703. msgctxt "cool_fan_speed_min label"
  2704. msgid "Regular Fan Speed"
  2705. msgstr "Normalna Pręd. Wentylatora"
  2706. #: /fdmprinter.def.json
  2707. msgctxt "cool_fan_full_at_height label"
  2708. msgid "Regular Fan Speed at Height"
  2709. msgstr "Regularna Pręd. Went. na Wysokości"
  2710. #: /fdmprinter.def.json
  2711. msgctxt "cool_fan_full_layer label"
  2712. msgid "Regular Fan Speed at Layer"
  2713. msgstr "Regularna Pręd. Went. na Wartswie"
  2714. #: /fdmprinter.def.json
  2715. msgctxt "cool_min_layer_time_fan_speed_max label"
  2716. msgid "Regular/Maximum Fan Speed Threshold"
  2717. msgstr "Regularny/Maks. Próg Pręd. Wentylatora"
  2718. #: /fdmprinter.def.json
  2719. msgctxt "relative_extrusion label"
  2720. msgid "Relative Extrusion"
  2721. msgstr "Ekstruzja Względna"
  2722. #: /fdmprinter.def.json
  2723. msgctxt "meshfix_union_all_remove_holes label"
  2724. msgid "Remove All Holes"
  2725. msgstr "Usuń Wszystkie Otwory"
  2726. #: /fdmprinter.def.json
  2727. msgctxt "remove_empty_first_layers label"
  2728. msgid "Remove Empty First Layers"
  2729. msgstr "Usuń Pustą Pierwsz. Warstwę"
  2730. #: /fdmprinter.def.json
  2731. msgctxt "carve_multiple_volumes label"
  2732. msgid "Remove Mesh Intersection"
  2733. msgstr "Usuń Przecięcia Siatki"
  2734. #: /fdmprinter.def.json
  2735. msgctxt "raft_remove_inside_corners label"
  2736. msgid "Remove Raft Inside Corners"
  2737. msgstr ""
  2738. #: /fdmprinter.def.json
  2739. msgctxt "carve_multiple_volumes description"
  2740. msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other."
  2741. 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."
  2742. #: /fdmprinter.def.json
  2743. msgctxt "remove_empty_first_layers description"
  2744. 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."
  2745. 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."
  2746. #: /fdmprinter.def.json
  2747. msgctxt "raft_remove_inside_corners description"
  2748. msgid "Remove inside corners from the raft, causing the raft to become convex."
  2749. msgstr ""
  2750. #: /fdmprinter.def.json
  2751. msgctxt "meshfix_union_all_remove_holes description"
  2752. 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."
  2753. 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."
  2754. #: /fdmprinter.def.json
  2755. msgctxt "machine_gcode_flavor option RepRap (RepRap)"
  2756. msgid "RepRap"
  2757. msgstr "RepRap"
  2758. #: /fdmprinter.def.json
  2759. msgctxt "machine_gcode_flavor option Repetier"
  2760. msgid "Repetier"
  2761. msgstr "Repetier"
  2762. #: /fdmprinter.def.json
  2763. msgctxt "skin_outline_count description"
  2764. 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."
  2765. 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."
  2766. #: /fdmprinter.def.json
  2767. msgctxt "support_tree_collision_resolution description"
  2768. msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically."
  2769. msgstr "Rozdzielczość przeliczania kolizji, aby unikać zderzeń z modelem. Ustawienie niższej wartości spowoduje bardziej dokładne drzewa, które rzadziej zawodzą, ale zwiększa to drastycznie czas cięcia."
  2770. #: /fdmprinter.def.json
  2771. msgctxt "wireframe_strategy option retract"
  2772. msgid "Retract"
  2773. msgstr "Wycofanie"
  2774. #: /fdmprinter.def.json
  2775. msgctxt "travel_retract_before_outer_wall label"
  2776. msgid "Retract Before Outer Wall"
  2777. msgstr "Cofnij Przed Zew. Ścianą"
  2778. #: /fdmprinter.def.json
  2779. msgctxt "retract_at_layer_change label"
  2780. msgid "Retract at Layer Change"
  2781. msgstr "Retrakcja podczas Zmiany Warstwy"
  2782. #: /fdmprinter.def.json
  2783. msgctxt "retraction_enable description"
  2784. msgid "Retract the filament when the nozzle is moving over a non-printed area."
  2785. msgstr ""
  2786. #: /fdmprinter.def.json
  2787. msgctxt "wipe_retraction_enable description"
  2788. msgid "Retract the filament when the nozzle is moving over a non-printed area."
  2789. msgstr "Cofnij filament, gdy dysza porusza się nad obszarem, w którym nie ma drukować."
  2790. #: /fdmprinter.def.json
  2791. msgctxt "retract_at_layer_change description"
  2792. msgid "Retract the filament when the nozzle is moving to the next layer."
  2793. msgstr "Cofnij filament, gdy dysza przesuwa się do następnej warstwy."
  2794. #: /fdmprinter.def.json
  2795. msgctxt "retraction_amount label"
  2796. msgid "Retraction Distance"
  2797. msgstr "Długość Retrakcji"
  2798. #: /fdmprinter.def.json
  2799. msgctxt "retraction_extra_prime_amount label"
  2800. msgid "Retraction Extra Prime Amount"
  2801. msgstr "Dod. Czyszcz. Wart. Retrakcji"
  2802. #: /fdmprinter.def.json
  2803. msgctxt "retraction_min_travel label"
  2804. msgid "Retraction Minimum Travel"
  2805. msgstr "Minimalny Przejazd dla Retrakcji"
  2806. #: /fdmprinter.def.json
  2807. msgctxt "retraction_prime_speed label"
  2808. msgid "Retraction Prime Speed"
  2809. msgstr "Prędk. Dopełn. Retrakcji"
  2810. #: /fdmprinter.def.json
  2811. msgctxt "retraction_retract_speed label"
  2812. msgid "Retraction Retract Speed"
  2813. msgstr "Prędk. Wycofania Retrakcji"
  2814. #: /fdmprinter.def.json
  2815. msgctxt "retraction_speed label"
  2816. msgid "Retraction Speed"
  2817. msgstr "Prędkość Retrakcji"
  2818. #: /fdmprinter.def.json
  2819. msgctxt "z_seam_position option right"
  2820. msgid "Right"
  2821. msgstr "Prawa"
  2822. #: /fdmprinter.def.json
  2823. msgctxt "machine_scale_fan_speed_zero_to_one label"
  2824. msgid "Scale Fan Speed To 0-1"
  2825. msgstr ""
  2826. #: /fdmprinter.def.json
  2827. msgctxt "machine_scale_fan_speed_zero_to_one description"
  2828. msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256."
  2829. msgstr ""
  2830. #: /fdmprinter.def.json
  2831. msgctxt "material_shrinkage_percentage label"
  2832. msgid "Scaling Factor Shrinkage Compensation"
  2833. msgstr ""
  2834. #: /fdmprinter.def.json
  2835. msgctxt "support_meshes_present label"
  2836. msgid "Scene Has Support Meshes"
  2837. msgstr ""
  2838. #: /fdmprinter.def.json
  2839. msgctxt "z_seam_corner label"
  2840. msgid "Seam Corner Preference"
  2841. msgstr "Wybór Rogu Szwu"
  2842. #: /fdmprinter.def.json
  2843. msgctxt "draft_shield_height_limitation description"
  2844. 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."
  2845. msgstr "Ustaw wysokość osłony przeciwwiatrowej. Wybierz czy drukować osłonę do pełnej wysokości modelu czy do określonej wysokości."
  2846. #: /fdmprinter.def.json
  2847. msgctxt "dual description"
  2848. msgid "Settings used for printing with multiple extruders."
  2849. msgstr "Ustawienia używane do drukowania wieloma głowicami."
  2850. #: /fdmprinter.def.json
  2851. msgctxt "command_line_settings description"
  2852. msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend."
  2853. msgstr "Ustawienia, które są używane tylko wtedy, gdy CuraEngine nie jest wywoływana przez frontend Cura."
  2854. #: /fdmprinter.def.json
  2855. msgctxt "machine_extruders_shared_nozzle_initial_retraction label"
  2856. msgid "Shared Nozzle Initial Retraction"
  2857. msgstr ""
  2858. #: /fdmprinter.def.json
  2859. msgctxt "z_seam_type option sharpest_corner"
  2860. msgid "Sharpest Corner"
  2861. msgstr "Najostrzejszy róg"
  2862. #: /fdmprinter.def.json
  2863. msgctxt "shell description"
  2864. msgid "Shell"
  2865. msgstr "Powłoka"
  2866. #: /fdmprinter.def.json
  2867. msgctxt "z_seam_type option shortest"
  2868. msgid "Shortest"
  2869. msgstr "Najkrótsze"
  2870. #: /fdmprinter.def.json
  2871. msgctxt "machine_show_variants label"
  2872. msgid "Show Machine Variants"
  2873. msgstr "Pokaż Warianty Maszyny"
  2874. #: /fdmprinter.def.json
  2875. msgctxt "skin_edge_support_layers label"
  2876. msgid "Skin Edge Support Layers"
  2877. msgstr ""
  2878. #: /fdmprinter.def.json
  2879. msgctxt "skin_edge_support_thickness label"
  2880. msgid "Skin Edge Support Thickness"
  2881. msgstr ""
  2882. #: /fdmprinter.def.json
  2883. msgctxt "expand_skins_expand_distance label"
  2884. msgid "Skin Expand Distance"
  2885. msgstr "Odległość Rozsz. Skóry"
  2886. #: /fdmprinter.def.json
  2887. msgctxt "skin_overlap_mm label"
  2888. msgid "Skin Overlap"
  2889. msgstr "Nakładanie się Skóry"
  2890. #: /fdmprinter.def.json
  2891. msgctxt "skin_overlap label"
  2892. msgid "Skin Overlap Percentage"
  2893. msgstr "Procent Nakładania się Skóry"
  2894. #: /fdmprinter.def.json
  2895. msgctxt "skin_preshrink label"
  2896. msgid "Skin Removal Width"
  2897. msgstr "Szerokość Usuwania Skóry"
  2898. #: /fdmprinter.def.json
  2899. msgctxt "min_skin_width_for_expansion description"
  2900. 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."
  2901. 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."
  2902. #: /fdmprinter.def.json
  2903. msgctxt "support_zag_skip_count description"
  2904. msgid "Skip one in every N connection lines to make the support structure easier to break away."
  2905. msgstr "Pomijaj jedną z każdych N linii, aby struktura podpory była łatwiejsza do odłamania."
  2906. #: /fdmprinter.def.json
  2907. msgctxt "support_skip_some_zags description"
  2908. 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."
  2909. msgstr "Pomijaj niektóre połączenia linii podpory, aby struktura podpory była łatwiejsza do odłamania. To ustawienie dotyczy wypełn. podpory Zygzak."
  2910. #: /fdmprinter.def.json
  2911. msgctxt "adhesion_type option skirt"
  2912. msgid "Skirt"
  2913. msgstr "Obwódka"
  2914. #: /fdmprinter.def.json
  2915. msgctxt "skirt_gap label"
  2916. msgid "Skirt Distance"
  2917. msgstr "Odległ. Obwódki"
  2918. #: /fdmprinter.def.json
  2919. msgctxt "skirt_line_count label"
  2920. msgid "Skirt Line Count"
  2921. msgstr "Liczba Linii Obwódki"
  2922. #: /fdmprinter.def.json
  2923. msgctxt "acceleration_skirt_brim label"
  2924. msgid "Skirt/Brim Acceleration"
  2925. msgstr "Przyspieszenie Obwódki/Obrysu"
  2926. #: /fdmprinter.def.json
  2927. msgctxt "skirt_brim_extruder_nr label"
  2928. msgid "Skirt/Brim Extruder"
  2929. msgstr ""
  2930. #: /fdmprinter.def.json
  2931. msgctxt "skirt_brim_material_flow label"
  2932. msgid "Skirt/Brim Flow"
  2933. msgstr "Przepływ warstwy adhezyjnej"
  2934. #: /fdmprinter.def.json
  2935. msgctxt "jerk_skirt_brim label"
  2936. msgid "Skirt/Brim Jerk"
  2937. msgstr "Zryw Obwódki/Obrysu"
  2938. #: /fdmprinter.def.json
  2939. msgctxt "skirt_brim_line_width label"
  2940. msgid "Skirt/Brim Line Width"
  2941. msgstr "Szer. Linii Obwódki/Obrysu"
  2942. #: /fdmprinter.def.json
  2943. msgctxt "skirt_brim_minimal_length label"
  2944. msgid "Skirt/Brim Minimum Length"
  2945. msgstr "Min. Dł. Obwódki/Obrysu"
  2946. #: /fdmprinter.def.json
  2947. msgctxt "skirt_brim_speed label"
  2948. msgid "Skirt/Brim Speed"
  2949. msgstr "Prędkość Obwódka/Obrys"
  2950. #: /fdmprinter.def.json
  2951. msgctxt "slicing_tolerance label"
  2952. msgid "Slicing Tolerance"
  2953. msgstr "Tolerancja Cięcia"
  2954. #: /fdmprinter.def.json
  2955. msgctxt "small_feature_speed_factor_0 label"
  2956. msgid "Small Feature Initial Layer Speed"
  2957. msgstr "Prędkość początkowej warstwy małych obiektów"
  2958. #: /fdmprinter.def.json
  2959. msgctxt "small_feature_max_length label"
  2960. msgid "Small Feature Max Length"
  2961. msgstr "Maksymalna długość małych elementów"
  2962. #: /fdmprinter.def.json
  2963. msgctxt "small_feature_speed_factor label"
  2964. msgid "Small Feature Speed"
  2965. msgstr "Prędkość małych elementów"
  2966. #: /fdmprinter.def.json
  2967. msgctxt "small_hole_max_size label"
  2968. msgid "Small Hole Max Size"
  2969. msgstr "Maksymalny rozmiar małych otworów"
  2970. #: /fdmprinter.def.json
  2971. msgctxt "small_feature_speed_factor_0 description"
  2972. 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."
  2973. 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ść."
  2974. #: /fdmprinter.def.json
  2975. msgctxt "small_feature_speed_factor description"
  2976. msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
  2977. msgstr "Małe obiekty zostaną wydrukowane z zadanym procentem ich normalnej prędkości drukowania. Wolniejsze drukowanie może poprawić przyczepność i dokładność."
  2978. #: /fdmprinter.def.json
  2979. msgctxt "z_seam_corner option z_seam_corner_weighted"
  2980. msgid "Smart Hiding"
  2981. msgstr "Inteligentne ukrywanie"
  2982. #: /fdmprinter.def.json
  2983. msgctxt "smooth_spiralized_contours label"
  2984. msgid "Smooth Spiralized Contours"
  2985. msgstr "Wygładź Spiralne Kontury"
  2986. #: /fdmprinter.def.json
  2987. msgctxt "smooth_spiralized_contours description"
  2988. 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."
  2989. 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."
  2990. #: /fdmprinter.def.json
  2991. msgctxt "retraction_extra_prime_amount description"
  2992. msgid "Some material can ooze away during a travel move, which can be compensated for here."
  2993. msgstr "Trochę materiału może wypływać podczas ruchu jałowego co może zostać skompensowane tutaj."
  2994. #: /fdmprinter.def.json
  2995. msgctxt "wipe_retraction_extra_prime_amount description"
  2996. msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here."
  2997. msgstr "Niektóre materiały mogą wyciekać podczas ruchów czyszczenia, można to tutaj skompensować."
  2998. #: /fdmprinter.def.json
  2999. msgctxt "blackmagic label"
  3000. msgid "Special Modes"
  3001. msgstr "Specjalne Tryby"
  3002. #: /fdmprinter.def.json
  3003. msgctxt "speed description"
  3004. msgid "Speed"
  3005. msgstr "Prędkość"
  3006. #: /fdmprinter.def.json
  3007. msgctxt "speed label"
  3008. msgid "Speed"
  3009. msgstr "Prędkość"
  3010. #: /fdmprinter.def.json
  3011. msgctxt "wireframe_printspeed description"
  3012. msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing."
  3013. msgstr "Prędkość, z jaką porusza się dysza podczas wytłaczania materiału. Dotyczy tylko Drukowania Drutu."
  3014. #: /fdmprinter.def.json
  3015. msgctxt "wireframe_printspeed_down description"
  3016. msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing."
  3017. msgstr "Prędkość drukowania ukośnej linii w dół. Odnosi się tylko do Drukowania Drutu."
  3018. #: /fdmprinter.def.json
  3019. msgctxt "wireframe_printspeed_up description"
  3020. msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing."
  3021. msgstr "Szybkość drukowania linii do góry „w powietrzu”. Odnosi się tylko do Drukowania Drutu."
  3022. #: /fdmprinter.def.json
  3023. msgctxt "wireframe_printspeed_bottom description"
  3024. msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing."
  3025. msgstr "Prędkość drukowania pierwszej warstwy, która jest jedyną warstwą dotykającą stołu. Dotyczy tylko Drukowania Drutu."
  3026. #: /fdmprinter.def.json
  3027. msgctxt "wireframe_printspeed_flat description"
  3028. msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing."
  3029. msgstr "Prędkość drukowania poziomych konturów modelu. Odnosi się tylko do Drukowania Drutu."
  3030. #: /fdmprinter.def.json
  3031. msgctxt "wipe_hop_speed description"
  3032. msgid "Speed to move the z-axis during the hop."
  3033. msgstr "Szybkość przesuwania osi Z podczas skoku."
  3034. #: /fdmprinter.def.json
  3035. msgctxt "magic_spiralize label"
  3036. msgid "Spiralize Outer Contour"
  3037. msgstr "Spiralizuj Zew. Kontur"
  3038. #: /fdmprinter.def.json
  3039. msgctxt "magic_spiralize description"
  3040. 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."
  3041. 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ęść."
  3042. #: /fdmprinter.def.json
  3043. msgctxt "material_standby_temperature label"
  3044. msgid "Standby Temperature"
  3045. msgstr "Temperatura Czuwania"
  3046. #: /fdmprinter.def.json
  3047. msgctxt "machine_start_gcode label"
  3048. msgid "Start G-code"
  3049. msgstr "Początkowy G-code"
  3050. #: /fdmprinter.def.json
  3051. msgctxt "z_seam_type description"
  3052. 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."
  3053. 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."
  3054. #: /fdmprinter.def.json
  3055. msgctxt "machine_steps_per_mm_e label"
  3056. msgid "Steps per Millimeter (E)"
  3057. msgstr "Kroki na milimetr (E)"
  3058. #: /fdmprinter.def.json
  3059. msgctxt "machine_steps_per_mm_x label"
  3060. msgid "Steps per Millimeter (X)"
  3061. msgstr "Kroki na milimetr (X)"
  3062. #: /fdmprinter.def.json
  3063. msgctxt "machine_steps_per_mm_y label"
  3064. msgid "Steps per Millimeter (Y)"
  3065. msgstr "Kroki na milimetr (Y)"
  3066. #: /fdmprinter.def.json
  3067. msgctxt "machine_steps_per_mm_z label"
  3068. msgid "Steps per Millimeter (Z)"
  3069. msgstr "Kroki na milimetr (Z)"
  3070. #: /fdmprinter.def.json
  3071. msgctxt "wireframe_strategy description"
  3072. msgid "Strategy for making sure two consecutive layers connect at each connection point. Retraction lets the upward lines harden in the right position, but may cause filament grinding. A knot can be made at the end of an upward line to heighten the chance of connecting to it and to let the line cool; however, it may require slow printing speeds. Another strategy is to compensate for the sagging of the top of an upward line; however, the lines won't always fall down as predicted."
  3073. msgstr "Strategia zapewniająca podłączenie dwóch kolejnych warstw w każdym punkcie połączenia. Wycofanie pozwala na utwardzenie linii idących w górę we właściwej pozycji, ale może powodować \"mielenie\" filamentu. Węzeł może być wykonany na końcu linii do góry, aby zwiększyć szanse na połączenie z nią i pozostawić dobrą linię; może to jednak wymagać wolnych prędkości druku. Inną strategią jest wyrównanie opadania górnej krawędzi. Jednak linie nie zawsze spadają zgodnie z przewidywaniami."
  3074. #: /fdmprinter.def.json
  3075. msgctxt "support description"
  3076. msgid "Support"
  3077. msgstr "Podpory"
  3078. #: /fdmprinter.def.json
  3079. msgctxt "support label"
  3080. msgid "Support"
  3081. msgstr "Podpory"
  3082. #: /fdmprinter.def.json
  3083. msgctxt "acceleration_support label"
  3084. msgid "Support Acceleration"
  3085. msgstr "Przyspieszenie Podpór"
  3086. #: /fdmprinter.def.json
  3087. msgctxt "support_bottom_distance label"
  3088. msgid "Support Bottom Distance"
  3089. msgstr "Odległ. na Dole Podpory"
  3090. #: /fdmprinter.def.json
  3091. msgctxt "support_brim_line_count label"
  3092. msgid "Support Brim Line Count"
  3093. msgstr "Ilość Linii Obrysu Podpór"
  3094. #: /fdmprinter.def.json
  3095. msgctxt "support_brim_width label"
  3096. msgid "Support Brim Width"
  3097. msgstr "Szerokość Obrysu Podpór"
  3098. #: /fdmprinter.def.json
  3099. msgctxt "support_zag_skip_count label"
  3100. msgid "Support Chunk Line Count"
  3101. msgstr "Liczba Linii Kawałka Podpory"
  3102. #: /fdmprinter.def.json
  3103. msgctxt "support_skip_zag_per_mm label"
  3104. msgid "Support Chunk Size"
  3105. msgstr "Wielkość Kawałka Podpory"
  3106. #: /fdmprinter.def.json
  3107. msgctxt "support_infill_rate label"
  3108. msgid "Support Density"
  3109. msgstr "Gęstość Podpory"
  3110. #: /fdmprinter.def.json
  3111. msgctxt "support_xy_overrides_z label"
  3112. msgid "Support Distance Priority"
  3113. msgstr "Priorytet Odległości Podpory"
  3114. #: /fdmprinter.def.json
  3115. msgctxt "support_extruder_nr label"
  3116. msgid "Support Extruder"
  3117. msgstr "Ekstruder Podpory"
  3118. #: /fdmprinter.def.json
  3119. msgctxt "acceleration_support_bottom label"
  3120. msgid "Support Floor Acceleration"
  3121. msgstr "Przyspieszenie Podłoża Podpory"
  3122. #: /fdmprinter.def.json
  3123. msgctxt "support_bottom_density label"
  3124. msgid "Support Floor Density"
  3125. msgstr "Gęstość Podłoża Podpory"
  3126. #: /fdmprinter.def.json
  3127. msgctxt "support_bottom_extruder_nr label"
  3128. msgid "Support Floor Extruder"
  3129. msgstr "Ekstruder Podłoża Podpory"
  3130. #: /fdmprinter.def.json
  3131. msgctxt "support_bottom_material_flow label"
  3132. msgid "Support Floor Flow"
  3133. msgstr "Przepływ podstawy podpór"
  3134. #: /fdmprinter.def.json
  3135. msgctxt "support_bottom_offset label"
  3136. msgid "Support Floor Horizontal Expansion"
  3137. msgstr "Rozrost Poziomy Podłoża Podpór"
  3138. #: /fdmprinter.def.json
  3139. msgctxt "jerk_support_bottom label"
  3140. msgid "Support Floor Jerk"
  3141. msgstr "Zryw Podł. Podpór"
  3142. #: /fdmprinter.def.json
  3143. msgctxt "support_bottom_angles label"
  3144. msgid "Support Floor Line Directions"
  3145. msgstr "Kierunek linii podstawy podpór"
  3146. #: /fdmprinter.def.json
  3147. msgctxt "support_bottom_line_distance label"
  3148. msgid "Support Floor Line Distance"
  3149. msgstr "Odstęp między Liniami Podłoża Podpory"
  3150. #: /fdmprinter.def.json
  3151. msgctxt "support_bottom_line_width label"
  3152. msgid "Support Floor Line Width"
  3153. msgstr "Szerokość Linii Podłoża Podpory"
  3154. #: /fdmprinter.def.json
  3155. msgctxt "support_bottom_pattern label"
  3156. msgid "Support Floor Pattern"
  3157. msgstr "Wzór Podłoża Podpory"
  3158. #: /fdmprinter.def.json
  3159. msgctxt "speed_support_bottom label"
  3160. msgid "Support Floor Speed"
  3161. msgstr "Prędk. Podstawy Podpory"
  3162. #: /fdmprinter.def.json
  3163. msgctxt "support_bottom_height label"
  3164. msgid "Support Floor Thickness"
  3165. msgstr "Grubość Podłoża Podpory"
  3166. #: /fdmprinter.def.json
  3167. msgctxt "support_material_flow label"
  3168. msgid "Support Flow"
  3169. msgstr "Przepływ podpór"
  3170. #: /fdmprinter.def.json
  3171. msgctxt "support_offset label"
  3172. msgid "Support Horizontal Expansion"
  3173. msgstr "Poszerzenie Podpór Poziome"
  3174. #: /fdmprinter.def.json
  3175. msgctxt "acceleration_support_infill label"
  3176. msgid "Support Infill Acceleration"
  3177. msgstr "Przyspieszenie Wypełnienia Podpory"
  3178. #: /fdmprinter.def.json
  3179. msgctxt "support_infill_extruder_nr label"
  3180. msgid "Support Infill Extruder"
  3181. msgstr "Ekstruder Wypełnienia Podpory"
  3182. #: /fdmprinter.def.json
  3183. msgctxt "jerk_support_infill label"
  3184. msgid "Support Infill Jerk"
  3185. msgstr "Zryw Wypełnienia Podpory"
  3186. #: /fdmprinter.def.json
  3187. msgctxt "support_infill_sparse_thickness label"
  3188. msgid "Support Infill Layer Thickness"
  3189. msgstr "Wys. Warstwy Wypełn. Podpory"
  3190. #: /fdmprinter.def.json
  3191. msgctxt "support_infill_angles label"
  3192. msgid "Support Infill Line Directions"
  3193. msgstr "Kierunek Linii Wypełnienia Podpory"
  3194. #: /fdmprinter.def.json
  3195. msgctxt "speed_support_infill label"
  3196. msgid "Support Infill Speed"
  3197. msgstr "Prędkość Wypełn. Podpór"
  3198. #: /fdmprinter.def.json
  3199. msgctxt "acceleration_support_interface label"
  3200. msgid "Support Interface Acceleration"
  3201. msgstr "Przyspieszenie Pow. Styku Podpory"
  3202. #: /fdmprinter.def.json
  3203. msgctxt "support_interface_density label"
  3204. msgid "Support Interface Density"
  3205. msgstr "Gęstość Połączenia Podpory"
  3206. #: /fdmprinter.def.json
  3207. msgctxt "support_interface_extruder_nr label"
  3208. msgid "Support Interface Extruder"
  3209. msgstr "Ekstruder Połączenia Podpory"
  3210. #: /fdmprinter.def.json
  3211. msgctxt "support_interface_material_flow label"
  3212. msgid "Support Interface Flow"
  3213. msgstr "Przepływ podłoża podpór"
  3214. #: /fdmprinter.def.json
  3215. msgctxt "support_interface_offset label"
  3216. msgid "Support Interface Horizontal Expansion"
  3217. msgstr "Rozrost Poziomy Interfejsu Podpór"
  3218. #: /fdmprinter.def.json
  3219. msgctxt "jerk_support_interface label"
  3220. msgid "Support Interface Jerk"
  3221. msgstr "Zryw Połączenia Podpory"
  3222. #: /fdmprinter.def.json
  3223. msgctxt "support_interface_angles label"
  3224. msgid "Support Interface Line Directions"
  3225. msgstr "Kierunek linii podłoża podpór"
  3226. #: /fdmprinter.def.json
  3227. msgctxt "support_interface_line_width label"
  3228. msgid "Support Interface Line Width"
  3229. msgstr "Szerokość Linii Połączenia Podpory"
  3230. #: /fdmprinter.def.json
  3231. msgctxt "support_interface_pattern label"
  3232. msgid "Support Interface Pattern"
  3233. msgstr "Wzór Połączenia Podpory"
  3234. #: /fdmprinter.def.json
  3235. msgctxt "support_interface_skip_height label"
  3236. msgid "Support Interface Resolution"
  3237. msgstr "Rozdzielczość Połączenia Podpory"
  3238. #: /fdmprinter.def.json
  3239. msgctxt "speed_support_interface label"
  3240. msgid "Support Interface Speed"
  3241. msgstr "Prędk. Połączenia Podpór"
  3242. #: /fdmprinter.def.json
  3243. msgctxt "support_interface_height label"
  3244. msgid "Support Interface Thickness"
  3245. msgstr "Grubość Połączenia Podpory"
  3246. #: /fdmprinter.def.json
  3247. msgctxt "jerk_support label"
  3248. msgid "Support Jerk"
  3249. msgstr "Zryw Podpory"
  3250. #: /fdmprinter.def.json
  3251. msgctxt "support_join_distance label"
  3252. msgid "Support Join Distance"
  3253. msgstr "Odległość Łączenia Podpór"
  3254. #: /fdmprinter.def.json
  3255. msgctxt "support_line_distance label"
  3256. msgid "Support Line Distance"
  3257. msgstr "Odstępy między Liniami Podpory"
  3258. #: /fdmprinter.def.json
  3259. msgctxt "support_line_width label"
  3260. msgid "Support Line Width"
  3261. msgstr "Szerokość Linii Podpory"
  3262. #: /fdmprinter.def.json
  3263. msgctxt "support_mesh label"
  3264. msgid "Support Mesh"
  3265. msgstr "Siatka Podpory"
  3266. #: /fdmprinter.def.json
  3267. msgctxt "support_angle label"
  3268. msgid "Support Overhang Angle"
  3269. msgstr "Kąt Zwisu dla Podpory"
  3270. #: /fdmprinter.def.json
  3271. msgctxt "support_pattern label"
  3272. msgid "Support Pattern"
  3273. msgstr "Wzór Podpory"
  3274. #: /fdmprinter.def.json
  3275. msgctxt "support_type label"
  3276. msgid "Support Placement"
  3277. msgstr "Rozmieszczenie Podpór"
  3278. #: /fdmprinter.def.json
  3279. msgctxt "acceleration_support_roof label"
  3280. msgid "Support Roof Acceleration"
  3281. msgstr "Przyspieszenie Dachu Podpory"
  3282. #: /fdmprinter.def.json
  3283. msgctxt "support_roof_density label"
  3284. msgid "Support Roof Density"
  3285. msgstr "Gęstość Dachu Podpory"
  3286. #: /fdmprinter.def.json
  3287. msgctxt "support_roof_extruder_nr label"
  3288. msgid "Support Roof Extruder"
  3289. msgstr "Ekstruder Dachu Podpory"
  3290. #: /fdmprinter.def.json
  3291. msgctxt "support_roof_material_flow label"
  3292. msgid "Support Roof Flow"
  3293. msgstr "Przepływ dachów podpór"
  3294. #: /fdmprinter.def.json
  3295. msgctxt "support_roof_offset label"
  3296. msgid "Support Roof Horizontal Expansion"
  3297. msgstr "Rozrost Poziomy Dachu Podpór"
  3298. #: /fdmprinter.def.json
  3299. msgctxt "jerk_support_roof label"
  3300. msgid "Support Roof Jerk"
  3301. msgstr "Zryw Dachu Podpory"
  3302. #: /fdmprinter.def.json
  3303. msgctxt "support_roof_angles label"
  3304. msgid "Support Roof Line Directions"
  3305. msgstr "Kierunek linii dachu podpór"
  3306. #: /fdmprinter.def.json
  3307. msgctxt "support_roof_line_distance label"
  3308. msgid "Support Roof Line Distance"
  3309. msgstr "Odległość Linii Dachu Podpory"
  3310. #: /fdmprinter.def.json
  3311. msgctxt "support_roof_line_width label"
  3312. msgid "Support Roof Line Width"
  3313. msgstr "Szerokość Linii Dachu Podpory"
  3314. #: /fdmprinter.def.json
  3315. msgctxt "support_roof_pattern label"
  3316. msgid "Support Roof Pattern"
  3317. msgstr "Wzór Dachu Podpory"
  3318. #: /fdmprinter.def.json
  3319. msgctxt "speed_support_roof label"
  3320. msgid "Support Roof Speed"
  3321. msgstr "Prędkość Dachu Podpory"
  3322. #: /fdmprinter.def.json
  3323. msgctxt "support_roof_height label"
  3324. msgid "Support Roof Thickness"
  3325. msgstr "Grubość Dachu Podpory"
  3326. #: /fdmprinter.def.json
  3327. msgctxt "speed_support label"
  3328. msgid "Support Speed"
  3329. msgstr "Prędkość Podpór"
  3330. #: /fdmprinter.def.json
  3331. msgctxt "support_bottom_stair_step_height label"
  3332. msgid "Support Stair Step Height"
  3333. msgstr "Wysokość Stopnia Podpory"
  3334. #: /fdmprinter.def.json
  3335. msgctxt "support_bottom_stair_step_width label"
  3336. msgid "Support Stair Step Maximum Width"
  3337. msgstr "Maks. Szerokość Stopnia Podpory"
  3338. #: /fdmprinter.def.json
  3339. msgctxt "support_bottom_stair_step_min_slope label"
  3340. msgid "Support Stair Step Minimum Slope Angle"
  3341. msgstr ""
  3342. #: /fdmprinter.def.json
  3343. msgctxt "support_structure label"
  3344. msgid "Support Structure"
  3345. msgstr ""
  3346. #: /fdmprinter.def.json
  3347. msgctxt "support_top_distance label"
  3348. msgid "Support Top Distance"
  3349. msgstr "Odległość od Góry Podpory"
  3350. #: /fdmprinter.def.json
  3351. msgctxt "support_wall_count label"
  3352. msgid "Support Wall Line Count"
  3353. msgstr "Ilość Ścianek Podpory"
  3354. #: /fdmprinter.def.json
  3355. msgctxt "support_xy_distance label"
  3356. msgid "Support X/Y Distance"
  3357. msgstr "Odległość X/Y Podpory"
  3358. #: /fdmprinter.def.json
  3359. msgctxt "support_z_distance label"
  3360. msgid "Support Z Distance"
  3361. msgstr "Odległość Podpory Z"
  3362. #: /fdmprinter.def.json
  3363. msgctxt "support_supported_skin_fan_speed label"
  3364. msgid "Supported Skin Fan Speed"
  3365. msgstr "Prędkość Wentylatora Podpartej Powłoki"
  3366. #: /fdmprinter.def.json
  3367. msgctxt "magic_mesh_surface_mode option surface"
  3368. msgid "Surface"
  3369. msgstr "Powierzchnia"
  3370. #: /fdmprinter.def.json
  3371. msgctxt "material_surface_energy label"
  3372. msgid "Surface Energy"
  3373. msgstr "Energia Powierzchni"
  3374. #: /fdmprinter.def.json
  3375. msgctxt "magic_mesh_surface_mode label"
  3376. msgid "Surface Mode"
  3377. msgstr "Tryb Powierzchni"
  3378. #: /fdmprinter.def.json
  3379. msgctxt "material_adhesion_tendency description"
  3380. msgid "Surface adhesion tendency."
  3381. msgstr "Tendencja przyczepności powierzchni."
  3382. #: /fdmprinter.def.json
  3383. msgctxt "material_surface_energy description"
  3384. msgid "Surface energy."
  3385. msgstr "Energia powierzchni."
  3386. #: /fdmprinter.def.json
  3387. msgctxt "alternate_carve_order description"
  3388. 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."
  3389. 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."
  3390. #: /fdmprinter.def.json
  3391. msgctxt "adaptive_layer_height_threshold description"
  3392. 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."
  3393. 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."
  3394. #: /fdmprinter.def.json
  3395. msgctxt "layer_start_x description"
  3396. msgid "The X coordinate of the position near where to find the part to start printing each layer."
  3397. msgstr "Współrzędna X pozycji blisko miejsca gdzie ma rozpoczynać się drukowanie każdej warstwy."
  3398. #: /fdmprinter.def.json
  3399. msgctxt "z_seam_x description"
  3400. msgid "The X coordinate of the position near where to start printing each part in a layer."
  3401. msgstr "Współrzędna X położenia, w pobliżu miejsca rozpoczęcia drukowania każdej warstwy."
  3402. #: /fdmprinter.def.json
  3403. msgctxt "extruder_prime_pos_x description"
  3404. msgid "The X coordinate of the position where the nozzle primes at the start of printing."
  3405. msgstr "Współrzędna X, w której dysza jest czyszczona na początku wydruku."
  3406. #: /fdmprinter.def.json
  3407. msgctxt "layer_start_y description"
  3408. msgid "The Y coordinate of the position near where to find the part to start printing each layer."
  3409. msgstr "Współrzędna Y pozycji blisko miejsca gdzie ma rozpoczynać się drukowanie każdej warstwy."
  3410. #: /fdmprinter.def.json
  3411. msgctxt "z_seam_y description"
  3412. msgid "The Y coordinate of the position near where to start printing each part in a layer."
  3413. msgstr "Współrzędna Y położenia, w pobliżu miejsca rozpoczęcia drukowania każdej warstwy."
  3414. #: /fdmprinter.def.json
  3415. msgctxt "extruder_prime_pos_y description"
  3416. msgid "The Y coordinate of the position where the nozzle primes at the start of printing."
  3417. msgstr "Współrzędna Y, w której dysza jest czyszczona na początku wydruku."
  3418. #: /fdmprinter.def.json
  3419. msgctxt "extruder_prime_pos_z description"
  3420. msgid "The Z coordinate of the position where the nozzle primes at the start of printing."
  3421. msgstr "Współrzędna Z, w której dysza jest czyszczona na początku wydruku."
  3422. #: /fdmprinter.def.json
  3423. msgctxt "acceleration_print_layer_0 description"
  3424. msgid "The acceleration during the printing of the initial layer."
  3425. msgstr "Przyspieszenie podczas drukowania pierwszej warstwy."
  3426. #: /fdmprinter.def.json
  3427. msgctxt "acceleration_layer_0 description"
  3428. msgid "The acceleration for the initial layer."
  3429. msgstr "Przyspieszenie dla początkowej warstwy."
  3430. #: /fdmprinter.def.json
  3431. msgctxt "acceleration_travel_layer_0 description"
  3432. msgid "The acceleration for travel moves in the initial layer."
  3433. msgstr "Przyspieszenie ruchów jałowych na pierwszej warstwie."
  3434. #: /fdmprinter.def.json
  3435. msgctxt "jerk_travel_layer_0 description"
  3436. msgid "The acceleration for travel moves in the initial layer."
  3437. msgstr "Przyspieszenie dla ruchów jałowych na początkowej warstwie."
  3438. #: /fdmprinter.def.json
  3439. msgctxt "acceleration_wall_x description"
  3440. msgid "The acceleration with which all inner walls are printed."
  3441. msgstr "Przyspieszenie, z jakim drukowane są ściany wewn."
  3442. #: /fdmprinter.def.json
  3443. msgctxt "acceleration_infill description"
  3444. msgid "The acceleration with which infill is printed."
  3445. msgstr "Przyspieszenie, z którym drukowane jest wypełnienie."
  3446. #: /fdmprinter.def.json
  3447. msgctxt "acceleration_ironing description"
  3448. msgid "The acceleration with which ironing is performed."
  3449. msgstr "Przyspieszenie, z jakim przeprowadzane jest prasowanie."
  3450. #: /fdmprinter.def.json
  3451. msgctxt "acceleration_print description"
  3452. msgid "The acceleration with which printing happens."
  3453. msgstr "Przyspieszenie, z jakim odbywa się drukowanie."
  3454. #: /fdmprinter.def.json
  3455. msgctxt "raft_base_acceleration description"
  3456. msgid "The acceleration with which the base raft layer is printed."
  3457. msgstr "Przyspieszenie, z jakim drukowana jest podstawowa warstwa tratwy."
  3458. #: /fdmprinter.def.json
  3459. msgctxt "acceleration_support_bottom description"
  3460. 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."
  3461. msgstr "Przyspieszenie, z jakim są drukowane podłoża podpór. Drukowanie przy niższym przyspieszeniu może poprawić adhezję podpory na modelu."
  3462. #: /fdmprinter.def.json
  3463. msgctxt "acceleration_support_infill description"
  3464. msgid "The acceleration with which the infill of support is printed."
  3465. msgstr "Przyspieszenie, z których drukowane jest wypełnienie podpory."
  3466. #: /fdmprinter.def.json
  3467. msgctxt "raft_interface_acceleration description"
  3468. msgid "The acceleration with which the middle raft layer is printed."
  3469. msgstr "Przyspieszenie, z jakim drukowana jest środkowa warstwa tratwy."
  3470. #: /fdmprinter.def.json
  3471. msgctxt "acceleration_wall_0 description"
  3472. msgid "The acceleration with which the outermost walls are printed."
  3473. msgstr "Przyspieszenia, z jakim drukowane są ściany zewn."
  3474. #: /fdmprinter.def.json
  3475. msgctxt "acceleration_prime_tower description"
  3476. msgid "The acceleration with which the prime tower is printed."
  3477. msgstr "Przyspieszenie, z którym drukowana jest wieża czyszcząca."
  3478. #: /fdmprinter.def.json
  3479. msgctxt "raft_acceleration description"
  3480. msgid "The acceleration with which the raft is printed."
  3481. msgstr "Przyspieszenie, z jakim tratwa jest drukowana."
  3482. #: /fdmprinter.def.json
  3483. msgctxt "acceleration_support_interface description"
  3484. msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality."
  3485. msgstr "Przyspieszenie, z jakim drukowane są dachy i podłoża podpory. Drukowanie przy niższym przyspieszeniu może poprawić jakość zwisu."
  3486. #: /fdmprinter.def.json
  3487. msgctxt "acceleration_support_roof description"
  3488. msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality."
  3489. msgstr "Przyspieszenie, z jakim drukowane są dachy podpór. Drukowanie przy niższym przyspieszeniu może poprawić jakość zwisu."
  3490. #: /fdmprinter.def.json
  3491. msgctxt "acceleration_skirt_brim description"
  3492. 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."
  3493. 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."
  3494. #: /fdmprinter.def.json
  3495. msgctxt "acceleration_support description"
  3496. msgid "The acceleration with which the support structure is printed."
  3497. msgstr "Przyspieszenie, z którym drukowane są podpory."
  3498. #: /fdmprinter.def.json
  3499. msgctxt "raft_surface_acceleration description"
  3500. msgid "The acceleration with which the top raft layers are printed."
  3501. msgstr "Przyspieszenie, z jakim drukowane są górne warstwy tratwy."
  3502. #: /fdmprinter.def.json
  3503. msgctxt "acceleration_wall description"
  3504. msgid "The acceleration with which the walls are printed."
  3505. msgstr "Przyspieszenie, z jakim drukowane są ściany."
  3506. #: /fdmprinter.def.json
  3507. msgctxt "acceleration_roofing description"
  3508. msgid "The acceleration with which top surface skin layers are printed."
  3509. msgstr "Przyspieszenie, z jakim drukowane są warstwy górnej powierzchni skóry."
  3510. #: /fdmprinter.def.json
  3511. msgctxt "acceleration_topbottom description"
  3512. msgid "The acceleration with which top/bottom layers are printed."
  3513. msgstr "Przyspieszenie, z jakim drukowane są górne/dolne warstwy."
  3514. #: /fdmprinter.def.json
  3515. msgctxt "acceleration_travel description"
  3516. msgid "The acceleration with which travel moves are made."
  3517. msgstr "Przyspieszenie, z jakim wykonywane są ruchy jałowe."
  3518. #: /fdmprinter.def.json
  3519. msgctxt "ironing_flow description"
  3520. 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."
  3521. 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."
  3522. #: /fdmprinter.def.json
  3523. msgctxt "infill_overlap description"
  3524. 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."
  3525. 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."
  3526. #: /fdmprinter.def.json
  3527. msgctxt "infill_overlap_mm description"
  3528. msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill."
  3529. msgstr "Ilość nałożenia pomiędzy wypełnieniem a ścianami. Nieznaczne nałożenie pozwala ściśle łączyć się z wypełnieniem."
  3530. #: /fdmprinter.def.json
  3531. msgctxt "switch_extruder_retraction_amount description"
  3532. 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."
  3533. 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."
  3534. #: /fdmprinter.def.json
  3535. msgctxt "machine_nozzle_expansion_angle description"
  3536. msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle."
  3537. msgstr "Kąt pomiędzy poziomą powierzchnią a częścią stożkową bezpośrednio ponad dyszą."
  3538. #: /fdmprinter.def.json
  3539. msgctxt "support_tower_roof_angle description"
  3540. 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."
  3541. msgstr "Kąt dachu wieży. Wyższa wartość powoduje punktowy dach wieży, a niższa wartość powoduje płaskie dachy wieży."
  3542. #: /fdmprinter.def.json
  3543. msgctxt "mold_angle description"
  3544. 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."
  3545. 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."
  3546. #: /fdmprinter.def.json
  3547. msgctxt "support_tree_branch_diameter_angle description"
  3548. 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."
  3549. 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."
  3550. #: /fdmprinter.def.json
  3551. msgctxt "support_tree_angle description"
  3552. msgid "The angle of the branches. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach."
  3553. msgstr "Kąt gałęzi. Użyj mniejszego kąta, aby były bardziej pionowe i stabilne. Użyj większego kąta, aby mieć większy zasięg."
  3554. #: /fdmprinter.def.json
  3555. msgctxt "support_conical_angle description"
  3556. 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."
  3557. 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."
  3558. #: /fdmprinter.def.json
  3559. msgctxt "magic_fuzzy_skin_point_density description"
  3560. 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."
  3561. 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."
  3562. #: /fdmprinter.def.json
  3563. msgctxt "magic_fuzzy_skin_point_dist description"
  3564. 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."
  3565. 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."
  3566. #: /fdmprinter.def.json
  3567. msgctxt "machine_acceleration description"
  3568. msgid "The default acceleration of print head movement."
  3569. msgstr "Domyślną przyspieszenie ruchu głowicy."
  3570. #: /fdmprinter.def.json
  3571. msgctxt "default_material_print_temperature description"
  3572. 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"
  3573. 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"
  3574. #: /fdmprinter.def.json
  3575. msgctxt "default_material_bed_temperature description"
  3576. 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"
  3577. 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"
  3578. #: /fdmprinter.def.json
  3579. msgctxt "bridge_skin_density description"
  3580. msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  3581. msgstr "Gęstość warstwy skóry mostu. Wartości mniejsze od 100 będą zwiększać przerwy pomiędzy liniami skóry."
  3582. #: /fdmprinter.def.json
  3583. msgctxt "support_bottom_density description"
  3584. 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."
  3585. msgstr "Gęstość podłoża podpory. Wyższa wartość powoduje lepszą adhezję podpory na górze modelu."
  3586. #: /fdmprinter.def.json
  3587. msgctxt "support_roof_density description"
  3588. msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  3589. msgstr "Gęstość dachów podpór. Wyższa wartość powoduje lepsze zwisy, ale podpory są trudniejsze do usunięcia."
  3590. #: /fdmprinter.def.json
  3591. msgctxt "bridge_skin_density_2 description"
  3592. msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  3593. msgstr "Gęstość drugiej warstwy skóry mostu. Wartości mniejsze od 100 będą zwiększać przerwy pomiędzy liniami skóry."
  3594. #: /fdmprinter.def.json
  3595. msgctxt "bridge_skin_density_3 description"
  3596. msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  3597. msgstr "Gęstość trzeciej warstwy skóry mostu. Wartości mniejsze od 100 będą zwiększać przerwy pomiędzy liniami skóry."
  3598. #: /fdmprinter.def.json
  3599. msgctxt "machine_depth description"
  3600. msgid "The depth (Y-direction) of the printable area."
  3601. msgstr "Głębokość (w kierunku Y) obszaru drukowania."
  3602. #: /fdmprinter.def.json
  3603. msgctxt "support_tower_diameter description"
  3604. msgid "The diameter of a special tower."
  3605. msgstr "Średnica wieży specjalnej."
  3606. #: /fdmprinter.def.json
  3607. msgctxt "support_tree_branch_diameter description"
  3608. msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this."
  3609. 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."
  3610. #: /fdmprinter.def.json
  3611. msgctxt "machine_feeder_wheel_diameter description"
  3612. msgid "The diameter of the wheel that drives the material in the feeder."
  3613. msgstr "Średnica koła, które przesuwa materiał w podajniku."
  3614. #: /fdmprinter.def.json
  3615. msgctxt "support_tree_max_diameter description"
  3616. 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."
  3617. msgstr ""
  3618. #: /fdmprinter.def.json
  3619. msgctxt "adaptive_layer_height_variation_step description"
  3620. msgid "The difference in height of the next layer height compared to the previous one."
  3621. msgstr "Różnica w wysokości pomiędzy następną wysokością warstwy i poprzednią."
  3622. #: /fdmprinter.def.json
  3623. msgctxt "ironing_line_spacing description"
  3624. msgid "The distance between the lines of ironing."
  3625. msgstr "Odległość pomiędzy liniami prasowania."
  3626. #: /fdmprinter.def.json
  3627. msgctxt "travel_avoid_distance description"
  3628. msgid "The distance between the nozzle and already printed parts when avoiding during travel moves."
  3629. msgstr "Odległość między dyszą a już wydrukowanym elementem, gdy są one omijane podczas ruchu jałowego."
  3630. #: /fdmprinter.def.json
  3631. msgctxt "raft_base_line_spacing description"
  3632. 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."
  3633. msgstr "Odległość pomiędzy linami tratwy na podstawowej warstwie tratwy. Szerokie odstępy ułatwiają usuwanie tratwy ze stołu."
  3634. #: /fdmprinter.def.json
  3635. msgctxt "raft_interface_line_spacing description"
  3636. 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."
  3637. 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."
  3638. #: /fdmprinter.def.json
  3639. msgctxt "raft_surface_line_spacing description"
  3640. 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."
  3641. 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."
  3642. #: /fdmprinter.def.json
  3643. msgctxt "wireframe_roof_inset description"
  3644. msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing."
  3645. msgstr "Odległość jaka zostaje pokryta podczas tworzenia połączenia z wewnętrznego konturu dachu. Odnosi się tylko do Drukowania Drutu."
  3646. #: /fdmprinter.def.json
  3647. msgctxt "brim_width description"
  3648. 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."
  3649. 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."
  3650. #: /fdmprinter.def.json
  3651. msgctxt "machine_heat_zone_length description"
  3652. msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament."
  3653. msgstr "Odległość od końcówki dyszy, z której ciepło dyszy przenoszone jest do filamentu."
  3654. #: /fdmprinter.def.json
  3655. msgctxt "wireframe_roof_drag_along description"
  3656. msgid "The distance of the end piece of an inward line which gets dragged along when going back to the outer outline of the roof. This distance is compensated for. Only applies to Wire Printing."
  3657. msgstr "Długość końcówki wewnętrznej linii, która jest rozciągana podczas powrotu do zewnętrznej linii dachu. Trasa ta jest kompensowana. Odnosi się tylko do Drukowania Drutu."
  3658. #: /fdmprinter.def.json
  3659. msgctxt "bottom_skin_expand_distance description"
  3660. 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."
  3661. 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ł."
  3662. #: /fdmprinter.def.json
  3663. msgctxt "expand_skins_expand_distance description"
  3664. 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."
  3665. 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ł."
  3666. #: /fdmprinter.def.json
  3667. msgctxt "top_skin_expand_distance description"
  3668. 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."
  3669. 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ł."
  3670. #: /fdmprinter.def.json
  3671. msgctxt "wipe_move_distance description"
  3672. msgid "The distance to move the head back and forth across the brush."
  3673. msgstr "Odległość, którą głowica musi pokonać w tę i z powrotem po szczotce."
  3674. #: /fdmprinter.def.json
  3675. msgctxt "wireframe_roof_fall_down description"
  3676. msgid "The distance which horizontal roof lines printed 'in thin air' fall down when being printed. This distance is compensated for. Only applies to Wire Printing."
  3677. msgstr "Odległość, na jaką opadają linie dachu wydrukowane \"w powietrzu\" podczas druku. Ta odległość jest kompensowana. Dotyczy tylko Drukowania Drutu."
  3678. #: /fdmprinter.def.json
  3679. msgctxt "lightning_infill_prune_angle description"
  3680. 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."
  3681. msgstr ""
  3682. #: /fdmprinter.def.json
  3683. msgctxt "material_extrusion_cool_down_speed description"
  3684. 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."
  3685. 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."
  3686. #: /fdmprinter.def.json
  3687. msgctxt "support_extruder_nr_layer_0 description"
  3688. msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion."
  3689. msgstr "Ekstruder wykorzystywany do drukowania pierwszej warstwy wypełnienia podpory. Używane do multi-ekstruzji."
  3690. #: /fdmprinter.def.json
  3691. msgctxt "raft_base_extruder_nr description"
  3692. msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion."
  3693. msgstr ""
  3694. #: /fdmprinter.def.json
  3695. msgctxt "support_bottom_extruder_nr description"
  3696. msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion."
  3697. msgstr "Ekstruder używany do druku podłoża podpory. Służy do multi-ekstruzji."
  3698. #: /fdmprinter.def.json
  3699. msgctxt "support_infill_extruder_nr description"
  3700. msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion."
  3701. msgstr "Ekstruder wykorzystywany do drukowania wypełnienia podpory. Używane do multi-ekstruzji."
  3702. #: /fdmprinter.def.json
  3703. msgctxt "raft_interface_extruder_nr description"
  3704. msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion."
  3705. msgstr ""
  3706. #: /fdmprinter.def.json
  3707. msgctxt "support_interface_extruder_nr description"
  3708. msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion."
  3709. msgstr "Ekstruder wykorzystywany do drukowania dachów i podłoży podpory. Używane do multi-ekstruzji."
  3710. #: /fdmprinter.def.json
  3711. msgctxt "support_roof_extruder_nr description"
  3712. msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion."
  3713. msgstr "Ekstruder wykorzystywany do drukowania dachów podpory. Używany do multi-ekstruzji."
  3714. #: /fdmprinter.def.json
  3715. msgctxt "skirt_brim_extruder_nr description"
  3716. msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion."
  3717. msgstr ""
  3718. #: /fdmprinter.def.json
  3719. msgctxt "adhesion_extruder_nr description"
  3720. msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion."
  3721. msgstr "Ekstruder używany do drukowania obwódki/obrysu/tratwy. Używane przy multi-ekstruzji."
  3722. #: /fdmprinter.def.json
  3723. msgctxt "support_extruder_nr description"
  3724. msgid "The extruder train to use for printing the support. This is used in multi-extrusion."
  3725. msgstr "Ekstruder używany do drukowania podpory. Używane do multi-ekstruzji."
  3726. #: /fdmprinter.def.json
  3727. msgctxt "raft_surface_extruder_nr description"
  3728. msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion."
  3729. msgstr ""
  3730. #: /fdmprinter.def.json
  3731. msgctxt "infill_extruder_nr description"
  3732. msgid "The extruder train used for printing infill. This is used in multi-extrusion."
  3733. msgstr "Ekstruder używany do drukowania wypełnienia. Używane w multi-ekstruzji."
  3734. #: /fdmprinter.def.json
  3735. msgctxt "wall_x_extruder_nr description"
  3736. msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion."
  3737. msgstr "Ekstruder używany do drukowania wenw. ściany. Używane w multi-ekstruzji."
  3738. #: /fdmprinter.def.json
  3739. msgctxt "wall_0_extruder_nr description"
  3740. msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion."
  3741. msgstr "Esktruder używany do drukowania zewn. ściany. Używane w multi-ekstruzji."
  3742. #: /fdmprinter.def.json
  3743. msgctxt "top_bottom_extruder_nr description"
  3744. msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion."
  3745. msgstr "Ekstruder używany do drukowania górnej i dolnej skóry. Używane w multi-ekstruzji."
  3746. #: /fdmprinter.def.json
  3747. msgctxt "roofing_extruder_nr description"
  3748. msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion."
  3749. msgstr "Esktruder używany do drukowania górnej skóry. Używane w multi-ekstruzji."
  3750. #: /fdmprinter.def.json
  3751. msgctxt "wall_extruder_nr description"
  3752. msgid "The extruder train used for printing the walls. This is used in multi-extrusion."
  3753. msgstr "Ekstruder używany do drukowania ścian. Używane w multi-esktruzji."
  3754. #: /fdmprinter.def.json
  3755. msgctxt "raft_base_fan_speed description"
  3756. msgid "The fan speed for the base raft layer."
  3757. msgstr "Prędkość wentylatora dla podstawowej warstwy tratwy."
  3758. #: /fdmprinter.def.json
  3759. msgctxt "raft_interface_fan_speed description"
  3760. msgid "The fan speed for the middle raft layer."
  3761. msgstr "Prędkość wentylatora dla środkowej warstwy tratwy."
  3762. #: /fdmprinter.def.json
  3763. msgctxt "raft_fan_speed description"
  3764. msgid "The fan speed for the raft."
  3765. msgstr "Prędkość wentylatora dla tratwy."
  3766. #: /fdmprinter.def.json
  3767. msgctxt "raft_surface_fan_speed description"
  3768. msgid "The fan speed for the top raft layers."
  3769. msgstr "Prędkość wentylatora dla górnych warstw tratwy."
  3770. #: /fdmprinter.def.json
  3771. msgctxt "cross_infill_density_image description"
  3772. 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."
  3773. msgstr "Lokalizacja pliku obrazu, którego jasność będzie determinowała minimalną gęstość wypełnienia wydruku w danym punkcie."
  3774. #: /fdmprinter.def.json
  3775. msgctxt "cross_support_density_image description"
  3776. msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support."
  3777. msgstr "Lokalizacja pliku obrazu, którego jasność będzie determinowała minimalną gęstość wypełnienia podstawy w danym punkcie."
  3778. #: /fdmprinter.def.json
  3779. msgctxt "speed_slowdown_layers description"
  3780. 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."
  3781. 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."
  3782. #: /fdmprinter.def.json
  3783. msgctxt "raft_airgap description"
  3784. 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."
  3785. 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."
  3786. #: /fdmprinter.def.json
  3787. msgctxt "machine_height description"
  3788. msgid "The height (Z-direction) of the printable area."
  3789. msgstr "Wysokość (w kierunku Z) obszaru drukowania."
  3790. #: /fdmprinter.def.json
  3791. msgctxt "mold_roof_height description"
  3792. msgid "The height above horizontal parts in your model which to print mold."
  3793. msgstr "Wysokość nad poziomymi częściami w modelu, które będą drukowanie jako formy."
  3794. #: /fdmprinter.def.json
  3795. msgctxt "cool_fan_full_at_height description"
  3796. 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."
  3797. 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."
  3798. #: /fdmprinter.def.json
  3799. msgctxt "gantry_height description"
  3800. msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)."
  3801. msgstr "Różnica wysokości między wierzchołkiem dyszy a suwnicą (gantry) (osie X i Y)."
  3802. #: /fdmprinter.def.json
  3803. msgctxt "machine_nozzle_head_distance description"
  3804. msgid "The height difference between the tip of the nozzle and the lowest part of the print head."
  3805. msgstr "Różnica w wysokości pomiędzy końcówką dyszy a najniższą częścą głowicy drukującej."
  3806. #: /fdmprinter.def.json
  3807. msgctxt "retraction_hop_after_extruder_switch_height description"
  3808. msgid "The height difference when performing a Z Hop after extruder switch."
  3809. msgstr "Różnica wysokości podczas wykonywania skoku Z po zmianie ekstrudera."
  3810. #: /fdmprinter.def.json
  3811. msgctxt "retraction_hop description"
  3812. msgid "The height difference when performing a Z Hop."
  3813. msgstr "Różnica w wysokości podczas przeprowadzania Skoku Z."
  3814. #: /fdmprinter.def.json
  3815. msgctxt "wipe_hop_amount description"
  3816. msgid "The height difference when performing a Z Hop."
  3817. msgstr "Różnica w wysokości podczas przeprowadzania Skoku Z."
  3818. #: /fdmprinter.def.json
  3819. msgctxt "layer_height description"
  3820. msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution."
  3821. 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."
  3822. #: /fdmprinter.def.json
  3823. msgctxt "gradual_infill_step_height description"
  3824. msgid "The height of infill of a given density before switching to half the density."
  3825. msgstr "Wysokość wypełnienia o danej gęstości przed przejściem na połowę gęstości."
  3826. #: /fdmprinter.def.json
  3827. msgctxt "gradual_support_infill_step_height description"
  3828. msgid "The height of support infill of a given density before switching to half the density."
  3829. msgstr "Wysokość wypełnienia podpory o danej gęstości przed przełączeniem na połowę gęstości."
  3830. #: /fdmprinter.def.json
  3831. msgctxt "layer_height_0 description"
  3832. msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier."
  3833. msgstr "Wysokość początkowej warstwy w mm. Grubsza początkowa warstwa powoduje lepszą przyczepność do stołu."
  3834. #: /fdmprinter.def.json
  3835. msgctxt "support_bottom_stair_step_height description"
  3836. 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."
  3837. 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."
  3838. #: /fdmprinter.def.json
  3839. msgctxt "wireframe_height description"
  3840. msgid "The height of the upward and diagonally downward lines between two horizontal parts. This determines the overall density of the net structure. Only applies to Wire Printing."
  3841. msgstr "Wysokość linii w górę i po przekątnej w dół między dwiema częściami poziomymi. Określa ona całkowitą gęstość struktury siatki. Dotyczy tylko Drukowania Drutu."
  3842. #: /fdmprinter.def.json
  3843. msgctxt "brim_gap description"
  3844. 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."
  3845. msgstr ""
  3846. #: /fdmprinter.def.json
  3847. msgctxt "skirt_gap description"
  3848. msgid ""
  3849. "The horizontal distance between the skirt and the first layer of the print.\n"
  3850. "This is the minimum distance. Multiple skirt lines will extend outwards from this distance."
  3851. msgstr ""
  3852. "Pozioma odległość między obwódką a pierwszą warstwą nadruku.\n"
  3853. "Jest to o minimalnej odległości. Z tej odległości linie będą nakładane w kierunku zewnętrznym."
  3854. #: /fdmprinter.def.json
  3855. msgctxt "lightning_infill_straightening_angle description"
  3856. 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."
  3857. msgstr ""
  3858. #: /fdmprinter.def.json
  3859. msgctxt "infill_offset_x description"
  3860. msgid "The infill pattern is moved this distance along the X axis."
  3861. msgstr "Wzór wypełnienia jest przesunięty o tę odległość wzdłuż osi X."
  3862. #: /fdmprinter.def.json
  3863. msgctxt "infill_offset_y description"
  3864. msgid "The infill pattern is moved this distance along the Y axis."
  3865. msgstr "Wzór wypełnienia jest przesunięty o tę odległość wzdłuż osi Y."
  3866. #: /fdmprinter.def.json
  3867. msgctxt "machine_nozzle_size description"
  3868. msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size."
  3869. msgstr "Wewnętrzna średnica dyszy. Użyj tego ustawienia, jeśli używasz dyszę o niestandardowym rozmiarze."
  3870. #: /fdmprinter.def.json
  3871. msgctxt "raft_base_jerk description"
  3872. msgid "The jerk with which the base raft layer is printed."
  3873. msgstr "Zryw, z którym drukowana jest podstawowa warstwa tratwy."
  3874. #: /fdmprinter.def.json
  3875. msgctxt "raft_interface_jerk description"
  3876. msgid "The jerk with which the middle raft layer is printed."
  3877. msgstr "Zryw, z którym drukowany jest środek tratwy."
  3878. #: /fdmprinter.def.json
  3879. msgctxt "raft_jerk description"
  3880. msgid "The jerk with which the raft is printed."
  3881. msgstr "Zryw, z jakim drukowana jest tratwa."
  3882. #: /fdmprinter.def.json
  3883. msgctxt "raft_surface_jerk description"
  3884. msgid "The jerk with which the top raft layers are printed."
  3885. msgstr "Zryw, z jakim drukowane są górne warstwy tratwy."
  3886. #: /fdmprinter.def.json
  3887. msgctxt "bottom_skin_preshrink description"
  3888. 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."
  3889. 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."
  3890. #: /fdmprinter.def.json
  3891. msgctxt "skin_preshrink description"
  3892. 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."
  3893. 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."
  3894. #: /fdmprinter.def.json
  3895. msgctxt "top_skin_preshrink description"
  3896. 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."
  3897. 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."
  3898. #: /fdmprinter.def.json
  3899. msgctxt "cool_fan_full_layer description"
  3900. 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."
  3901. 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."
  3902. #: /fdmprinter.def.json
  3903. msgctxt "cool_min_layer_time_fan_speed_max description"
  3904. 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."
  3905. 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."
  3906. #: /fdmprinter.def.json
  3907. msgctxt "retraction_amount description"
  3908. msgid "The length of material retracted during a retraction move."
  3909. msgstr "Długość materiału wycofanego podczas retrakcji."
  3910. #: /fdmprinter.def.json
  3911. msgctxt "machine_buildplate_type description"
  3912. msgid "The material of the build plate installed on the printer."
  3913. msgstr "Materiał platformy roboczej zainstalowanej w drukarce."
  3914. #: /fdmprinter.def.json
  3915. msgctxt "adaptive_layer_height_variation description"
  3916. msgid "The maximum allowed height different from the base layer height."
  3917. msgstr "Maksymalna dozwolona różnica wysokości względem bazowej wysokości warstwy."
  3918. #: /fdmprinter.def.json
  3919. msgctxt "ooze_shield_angle description"
  3920. 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."
  3921. 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."
  3922. #: /fdmprinter.def.json
  3923. msgctxt "conical_overhang_angle description"
  3924. 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."
  3925. 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."
  3926. #: /fdmprinter.def.json
  3927. msgctxt "conical_overhang_hole_size description"
  3928. 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."
  3929. msgstr ""
  3930. #: /fdmprinter.def.json
  3931. msgctxt "meshfix_maximum_deviation description"
  3932. 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."
  3933. 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."
  3934. #: /fdmprinter.def.json
  3935. msgctxt "support_join_distance description"
  3936. 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."
  3937. 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ą."
  3938. #: /fdmprinter.def.json
  3939. msgctxt "flow_rate_max_extrusion_offset description"
  3940. msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate."
  3941. msgstr "Maksymalna odległość w mm do przesuwania filamentu w celu kompensacji zmian wielkości przepływu."
  3942. #: /fdmprinter.def.json
  3943. msgctxt "meshfix_maximum_extrusion_area_deviation description"
  3944. 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."
  3945. msgstr ""
  3946. #: /fdmprinter.def.json
  3947. msgctxt "jerk_print_layer_0 description"
  3948. msgid "The maximum instantaneous velocity change during the printing of the initial layer."
  3949. msgstr "Maksymalna zmiana prędkości chwilowej podczas drukowania pierwszej warstwy."
  3950. #: /fdmprinter.def.json
  3951. msgctxt "jerk_print description"
  3952. msgid "The maximum instantaneous velocity change of the print head."
  3953. msgstr "Maksymalna zmiana prędkości chwilowej głowicy drukującej."
  3954. #: /fdmprinter.def.json
  3955. msgctxt "jerk_ironing description"
  3956. msgid "The maximum instantaneous velocity change while performing ironing."
  3957. msgstr "Maksymalna nagła zmiana prędkości podczas przeprowadzania prasowania."
  3958. #: /fdmprinter.def.json
  3959. msgctxt "jerk_wall_x description"
  3960. msgid "The maximum instantaneous velocity change with which all inner walls are printed."
  3961. msgstr "Maksymalna zmiana prędkości chwilowej z jaką drukowane są wewnętrzne ściany."
  3962. #: /fdmprinter.def.json
  3963. msgctxt "jerk_infill description"
  3964. msgid "The maximum instantaneous velocity change with which infill is printed."
  3965. msgstr "Maksymalna zmiana prędkości chwilowej, z którą jest drukowane wypełnienie."
  3966. #: /fdmprinter.def.json
  3967. msgctxt "jerk_support_bottom description"
  3968. msgid "The maximum instantaneous velocity change with which the floors of support are printed."
  3969. msgstr "Maksymalna zmiana prędkości chwilowej z jaką drukowane są podłoża podpór."
  3970. #: /fdmprinter.def.json
  3971. msgctxt "jerk_support_infill description"
  3972. msgid "The maximum instantaneous velocity change with which the infill of support is printed."
  3973. msgstr "Maksymalna zmiana prędkości chwilowej z jaką drukowane jest wypełnienie podpory."
  3974. #: /fdmprinter.def.json
  3975. msgctxt "jerk_wall_0 description"
  3976. msgid "The maximum instantaneous velocity change with which the outermost walls are printed."
  3977. msgstr "Maksymalna zmiana prędkości chwilowej z jaką drukowane są zewnętrzne ściany."
  3978. #: /fdmprinter.def.json
  3979. msgctxt "jerk_prime_tower description"
  3980. msgid "The maximum instantaneous velocity change with which the prime tower is printed."
  3981. msgstr "Maksymalna zmiana chwilowej prędkości z jaką drukowana jest wieża czyszcząca."
  3982. #: /fdmprinter.def.json
  3983. msgctxt "jerk_support_interface description"
  3984. msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed."
  3985. msgstr "Maksymalna zmiana prędkości chwilowej z jaką drukowane są podłoża i dachy podpory."
  3986. #: /fdmprinter.def.json
  3987. msgctxt "jerk_support_roof description"
  3988. msgid "The maximum instantaneous velocity change with which the roofs of support are printed."
  3989. msgstr "Maksymalna zmiana prędkości chwilowej z jaką drukowane są dachy podpory."
  3990. #: /fdmprinter.def.json
  3991. msgctxt "jerk_skirt_brim description"
  3992. msgid "The maximum instantaneous velocity change with which the skirt and brim are printed."
  3993. msgstr "Maksymalna zmiana prędkości chwilowej z jaką drukowane są obwódka i obrys."
  3994. #: /fdmprinter.def.json
  3995. msgctxt "jerk_support description"
  3996. msgid "The maximum instantaneous velocity change with which the support structure is printed."
  3997. msgstr "Maksymalna zmiana prędkości chwilowej z jaką drukowane są podpory."
  3998. #: /fdmprinter.def.json
  3999. msgctxt "jerk_wall description"
  4000. msgid "The maximum instantaneous velocity change with which the walls are printed."
  4001. msgstr "Maksymalna zmiana prędkości chwilowej z jaką drukowane są ściany."
  4002. #: /fdmprinter.def.json
  4003. msgctxt "jerk_roofing description"
  4004. msgid "The maximum instantaneous velocity change with which top surface skin layers are printed."
  4005. msgstr "Maksymalna nagła zmiana prędkości, z jaką drukowane są warstwy górnej powierzchni skóry."
  4006. #: /fdmprinter.def.json
  4007. msgctxt "jerk_topbottom description"
  4008. msgid "The maximum instantaneous velocity change with which top/bottom layers are printed."
  4009. msgstr "Maksymalna zmiana prędkości chwilowej z jaką drukowane są górne/dolne warstwy."
  4010. #: /fdmprinter.def.json
  4011. msgctxt "jerk_travel description"
  4012. msgid "The maximum instantaneous velocity change with which travel moves are made."
  4013. msgstr "Maksymalna zmiana prędkości chwilowej z jaką wykonywane są ruchy jałowe."
  4014. #: /fdmprinter.def.json
  4015. msgctxt "machine_max_feedrate_x description"
  4016. msgid "The maximum speed for the motor of the X-direction."
  4017. msgstr "Maksymalna prędkość silnika osi X."
  4018. #: /fdmprinter.def.json
  4019. msgctxt "machine_max_feedrate_y description"
  4020. msgid "The maximum speed for the motor of the Y-direction."
  4021. msgstr "Maksymalna prędkość silnika osi Y."
  4022. #: /fdmprinter.def.json
  4023. msgctxt "machine_max_feedrate_z description"
  4024. msgid "The maximum speed for the motor of the Z-direction."
  4025. msgstr "Maksymalna prędkość silnika osi Z."
  4026. #: /fdmprinter.def.json
  4027. msgctxt "machine_max_feedrate_e description"
  4028. msgid "The maximum speed of the filament."
  4029. msgstr "Maksymalna prędkość filamentu."
  4030. #: /fdmprinter.def.json
  4031. msgctxt "support_bottom_stair_step_width description"
  4032. 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."
  4033. 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."
  4034. #: /fdmprinter.def.json
  4035. msgctxt "mold_width description"
  4036. msgid "The minimal distance between the outside of the mold and the outside of the model."
  4037. msgstr ""
  4038. #: /fdmprinter.def.json
  4039. msgctxt "machine_minimum_feedrate description"
  4040. msgid "The minimal movement speed of the print head."
  4041. msgstr "Minimalna prędkość ruchu głowicy drukującej."
  4042. #: /fdmprinter.def.json
  4043. msgctxt "material_initial_print_temperature description"
  4044. msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start."
  4045. msgstr "Minimalna temperatura podczas podgrzewania do temperatury drukowania, przy której można rozpocząć drukowanie."
  4046. #: /fdmprinter.def.json
  4047. msgctxt "machine_min_cool_heat_time_window description"
  4048. 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."
  4049. 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."
  4050. #: /fdmprinter.def.json
  4051. msgctxt "infill_support_angle description"
  4052. 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."
  4053. 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."
  4054. #: /fdmprinter.def.json
  4055. msgctxt "support_angle description"
  4056. 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."
  4057. msgstr "Minimalny kąt zwisu, dla którego dodaje się podporę. Przy wartości 0 ° wszystkie zwisy są podparte, 90 ° nie zapewnia żadnego podparcia."
  4058. #: /fdmprinter.def.json
  4059. msgctxt "retraction_min_travel description"
  4060. msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area."
  4061. msgstr "Minimalna odległość ruchu jałowego potrzebna do wykonania retrkacji. Pomaga to uzyskać mniej retrakcji w małym obszarze."
  4062. #: /fdmprinter.def.json
  4063. msgctxt "skirt_brim_minimal_length description"
  4064. 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."
  4065. 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."
  4066. #: /fdmprinter.def.json
  4067. msgctxt "min_odd_wall_line_width description"
  4068. 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."
  4069. msgstr ""
  4070. #: /fdmprinter.def.json
  4071. msgctxt "min_even_wall_line_width description"
  4072. 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."
  4073. msgstr ""
  4074. #: /fdmprinter.def.json
  4075. msgctxt "cool_min_speed description"
  4076. 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."
  4077. 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."
  4078. #: /fdmprinter.def.json
  4079. msgctxt "meshfix_maximum_resolution description"
  4080. 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."
  4081. 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ć."
  4082. #: /fdmprinter.def.json
  4083. msgctxt "meshfix_maximum_travel_resolution description"
  4084. 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."
  4085. 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."
  4086. #: /fdmprinter.def.json
  4087. msgctxt "support_bottom_stair_step_min_slope description"
  4088. 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."
  4089. msgstr ""
  4090. #: /fdmprinter.def.json
  4091. msgctxt "cool_min_layer_time description"
  4092. 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."
  4093. 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."
  4094. #: /fdmprinter.def.json
  4095. msgctxt "prime_tower_min_volume description"
  4096. msgid "The minimum volume for each layer of the prime tower in order to purge enough material."
  4097. msgstr "Minimalna objętość każdej warstwy wieży czyszczącej w celu oczyszczenia wystarczającej ilości materiału."
  4098. #: /fdmprinter.def.json
  4099. msgctxt "machine_name description"
  4100. msgid "The name of your 3D printer model."
  4101. msgstr "Nazwa modelu twojej drukarki."
  4102. #: /fdmprinter.def.json
  4103. msgctxt "machine_nozzle_id description"
  4104. msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"."
  4105. msgstr "ID dyszy dla wózka ekstrudera np. \"AA 0.4\" i \"BB 0.8\"."
  4106. #: /fdmprinter.def.json
  4107. msgctxt "travel_avoid_other_parts description"
  4108. msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled."
  4109. msgstr "Dysza unika już wydrukowanych części podczas ruchu jałowego. Ta opcja jest dostępna tylko w przypadku włączonego trybu kombinowania."
  4110. #: /fdmprinter.def.json
  4111. msgctxt "travel_avoid_supports description"
  4112. msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled."
  4113. msgstr "Dysza będzie omijała już wydrukowane podpory podczas ruchu jałowego. Ta opcja jest dostępna jedynie, gdy kombinowanie jest włączone."
  4114. #: /fdmprinter.def.json
  4115. msgctxt "bottom_layers description"
  4116. msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number."
  4117. msgstr "Liczba dolnych warstw. Przy obliczaniu grubości dołu ta wartość jest zaokrąglana do liczby całkowitej."
  4118. #: /fdmprinter.def.json
  4119. msgctxt "raft_base_wall_count description"
  4120. msgid "The number of contours to print around the linear pattern in the base layer of the raft."
  4121. msgstr ""
  4122. #: /fdmprinter.def.json
  4123. msgctxt "skin_edge_support_layers description"
  4124. msgid "The number of infill layers that supports skin edges."
  4125. msgstr ""
  4126. #: /fdmprinter.def.json
  4127. msgctxt "initial_bottom_layers description"
  4128. 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."
  4129. 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."
  4130. #: /fdmprinter.def.json
  4131. msgctxt "raft_interface_layers description"
  4132. 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."
  4133. msgstr ""
  4134. #: /fdmprinter.def.json
  4135. msgctxt "brim_line_count description"
  4136. 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."
  4137. msgstr "Liczba linii używana dla obrysu. Więcej linii obrysu poprawia przyczepność do stołu, ale zmniejsza rzeczywiste pole wydruku."
  4138. #: /fdmprinter.def.json
  4139. msgctxt "support_brim_line_count description"
  4140. 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."
  4141. 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."
  4142. #: /fdmprinter.def.json
  4143. msgctxt "raft_surface_layers description"
  4144. 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."
  4145. 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."
  4146. #: /fdmprinter.def.json
  4147. msgctxt "top_layers description"
  4148. msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number."
  4149. msgstr "Liczba górnych warstw. Przy obliczaniu górnej grubości wartość ta jest zaokrąglana do liczby całkowitej."
  4150. #: /fdmprinter.def.json
  4151. msgctxt "roofing_layer_count description"
  4152. msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces."
  4153. msgstr "Liczba warstw górnej skóry. Zazwyczaj tylko jedna górna warstwa poprawia jakość górnych powierzchni."
  4154. #: /fdmprinter.def.json
  4155. msgctxt "support_wall_count description"
  4156. 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."
  4157. 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."
  4158. #: /fdmprinter.def.json
  4159. msgctxt "wall_distribution_count description"
  4160. 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."
  4161. msgstr ""
  4162. #: /fdmprinter.def.json
  4163. msgctxt "wall_line_count description"
  4164. msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number."
  4165. msgstr "Liczba ścian. Przy obliczaniu za pomocą grubości ściany, ta wartość jest zaokrąglana do liczby całkowitej."
  4166. #: /fdmprinter.def.json
  4167. msgctxt "machine_nozzle_tip_outer_diameter description"
  4168. msgid "The outer diameter of the tip of the nozzle."
  4169. msgstr "Zewnętrzna średnica końcówki dyszy."
  4170. #: /fdmprinter.def.json
  4171. msgctxt "infill_pattern description"
  4172. 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."
  4173. msgstr ""
  4174. #: /fdmprinter.def.json
  4175. msgctxt "support_pattern description"
  4176. msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support."
  4177. msgstr "Wzór struktury podpory wydruku. Różne opcje zapewniają trwałe lub łatwe do usunięcia podpory."
  4178. #: /fdmprinter.def.json
  4179. msgctxt "roofing_pattern description"
  4180. msgid "The pattern of the top most layers."
  4181. msgstr "Wzór najwyższych warstw."
  4182. #: /fdmprinter.def.json
  4183. msgctxt "top_bottom_pattern description"
  4184. msgid "The pattern of the top/bottom layers."
  4185. msgstr "Wzór górnej/dolnej warstwy."
  4186. #: /fdmprinter.def.json
  4187. msgctxt "top_bottom_pattern_0 description"
  4188. msgid "The pattern on the bottom of the print on the first layer."
  4189. msgstr "Wzór na pierwszej warstwie na dole wydruku."
  4190. #: /fdmprinter.def.json
  4191. msgctxt "ironing_pattern description"
  4192. msgid "The pattern to use for ironing top surfaces."
  4193. msgstr "Wzór używany dla górnych powierzchni prasowania."
  4194. #: /fdmprinter.def.json
  4195. msgctxt "support_bottom_pattern description"
  4196. msgid "The pattern with which the floors of the support are printed."
  4197. msgstr "Wzór, według którego drukowane są podłoża podpory."
  4198. #: /fdmprinter.def.json
  4199. msgctxt "support_interface_pattern description"
  4200. msgid "The pattern with which the interface of the support with the model is printed."
  4201. msgstr "Wzór, z jakim drukowane jest połączenie podpory z modelem."
  4202. #: /fdmprinter.def.json
  4203. msgctxt "support_roof_pattern description"
  4204. msgid "The pattern with which the roofs of the support are printed."
  4205. msgstr "Wzór, z jakim drukowane są dachy podpory."
  4206. #: /fdmprinter.def.json
  4207. msgctxt "z_seam_position description"
  4208. msgid "The position near where to start printing each part in a layer."
  4209. msgstr "Najbliższa pozycja startu druku każdej warstwy."
  4210. #: /fdmprinter.def.json
  4211. msgctxt "jerk_layer_0 description"
  4212. msgid "The print maximum instantaneous velocity change for the initial layer."
  4213. msgstr "Maksymalna zmiana chwilowej prędkości dla pierwszej warstwy."
  4214. #: /fdmprinter.def.json
  4215. msgctxt "machine_shape description"
  4216. msgid "The shape of the build plate without taking unprintable areas into account."
  4217. msgstr "Kształt stołu bez uwzględniania obszarów niedrukowalnych."
  4218. #: /fdmprinter.def.json
  4219. msgctxt "machine_head_with_fans_polygon description"
  4220. 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."
  4221. msgstr ""
  4222. #: /fdmprinter.def.json
  4223. msgctxt "cross_infill_pocket_size description"
  4224. msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself."
  4225. msgstr "Rozmiar kieszeni na czterostronnych skrzyżowaniach we wzorze krzyż 3D na wysokościach gdzie wzór tego siebie samego."
  4226. #: /fdmprinter.def.json
  4227. msgctxt "coasting_min_volume description"
  4228. 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."
  4229. 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."
  4230. #: /fdmprinter.def.json
  4231. msgctxt "machine_nozzle_cool_down_speed description"
  4232. msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature."
  4233. msgstr "Szybkość (° C/s.), z którą dysza chłodzi się - średnia z normlanej temperatury druku i temperatury czuwania."
  4234. #: /fdmprinter.def.json
  4235. msgctxt "machine_nozzle_heat_up_speed description"
  4236. msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature."
  4237. msgstr "Szybkość (° C/s.), z którą dysza ogrzewa się - średnia z normlanej temperatury druku i temperatury czuwania."
  4238. #: /fdmprinter.def.json
  4239. msgctxt "speed_wall_x description"
  4240. 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."
  4241. 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."
  4242. #: /fdmprinter.def.json
  4243. msgctxt "bridge_skin_speed description"
  4244. msgid "The speed at which bridge skin regions are printed."
  4245. msgstr "Prędkość z jaką drukowane są obszary skóry mostu."
  4246. #: /fdmprinter.def.json
  4247. msgctxt "speed_infill description"
  4248. msgid "The speed at which infill is printed."
  4249. msgstr "Prędkość, z jaką drukowane jest wypełnienie."
  4250. #: /fdmprinter.def.json
  4251. msgctxt "speed_print description"
  4252. msgid "The speed at which printing happens."
  4253. msgstr "Prędkość druku."
  4254. #: /fdmprinter.def.json
  4255. msgctxt "raft_base_speed description"
  4256. 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."
  4257. 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."
  4258. #: /fdmprinter.def.json
  4259. msgctxt "bridge_wall_speed description"
  4260. msgid "The speed at which the bridge walls are printed."
  4261. msgstr "Prędkość z jaką są drukowane ściany mostu."
  4262. #: /fdmprinter.def.json
  4263. msgctxt "cool_fan_speed_0 description"
  4264. 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."
  4265. 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."
  4266. #: /fdmprinter.def.json
  4267. msgctxt "cool_fan_speed_min description"
  4268. 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."
  4269. 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."
  4270. #: /fdmprinter.def.json
  4271. msgctxt "cool_fan_speed_max description"
  4272. 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."
  4273. 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."
  4274. #: /fdmprinter.def.json
  4275. msgctxt "retraction_prime_speed description"
  4276. msgid "The speed at which the filament is primed during a retraction move."
  4277. msgstr "Prędkość, z jaką retrakcja jest dopełniana."
  4278. #: /fdmprinter.def.json
  4279. msgctxt "wipe_retraction_prime_speed description"
  4280. msgid "The speed at which the filament is primed during a wipe retraction move."
  4281. msgstr "Prędkość, z jaką jest wykonywana dodatkowa retrakcja podczas ruchu czyszczenia przy retrakcji."
  4282. #: /fdmprinter.def.json
  4283. msgctxt "switch_extruder_prime_speed description"
  4284. msgid "The speed at which the filament is pushed back after a nozzle switch retraction."
  4285. msgstr "Prędkość, z jaką filament jest cofany podczas retrakcji po zmianie dyszy."
  4286. #: /fdmprinter.def.json
  4287. msgctxt "retraction_speed description"
  4288. msgid "The speed at which the filament is retracted and primed during a retraction move."
  4289. msgstr "Prędkość, z jaką jest wykonywana i dopełniana retrakcja."
  4290. #: /fdmprinter.def.json
  4291. msgctxt "wipe_retraction_speed description"
  4292. msgid "The speed at which the filament is retracted and primed during a wipe retraction move."
  4293. msgstr "Prędkość, z jaką jest wykonywana i dopełniana retrakcja podczas ruchu czyszczenia przy retrakcji."
  4294. #: /fdmprinter.def.json
  4295. msgctxt "switch_extruder_retraction_speed description"
  4296. msgid "The speed at which the filament is retracted during a nozzle switch retract."
  4297. msgstr "Prędkość, z jaką filament jest wycofywany podczas retrakcji przy zmianie dyszy."
  4298. #: /fdmprinter.def.json
  4299. msgctxt "retraction_retract_speed description"
  4300. msgid "The speed at which the filament is retracted during a retraction move."
  4301. msgstr "Prędkość, z jaką wykonywana jest retrakcja."
  4302. #: /fdmprinter.def.json
  4303. msgctxt "wipe_retraction_retract_speed description"
  4304. msgid "The speed at which the filament is retracted during a wipe retraction move."
  4305. msgstr "Prędkość, z jaką jest wykonywana retrakcja podczas ruchu czyszczenia przy retrakcji."
  4306. #: /fdmprinter.def.json
  4307. msgctxt "switch_extruder_retraction_speeds description"
  4308. 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."
  4309. 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."
  4310. #: /fdmprinter.def.json
  4311. msgctxt "speed_support_bottom description"
  4312. 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."
  4313. 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."
  4314. #: /fdmprinter.def.json
  4315. msgctxt "speed_support_infill description"
  4316. msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability."
  4317. msgstr "Prędkość, z jaką drukowane jest wypełnienie podstawy. Drukowanie wypełnień przy niższych prędkościach poprawia stabilność."
  4318. #: /fdmprinter.def.json
  4319. msgctxt "raft_interface_speed description"
  4320. 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."
  4321. 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."
  4322. #: /fdmprinter.def.json
  4323. msgctxt "speed_wall_0 description"
  4324. 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."
  4325. 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."
  4326. #: /fdmprinter.def.json
  4327. msgctxt "speed_prime_tower description"
  4328. 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."
  4329. 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."
  4330. #: /fdmprinter.def.json
  4331. msgctxt "cool_fan_speed description"
  4332. msgid "The speed at which the print cooling fans spin."
  4333. msgstr "Prędkość z jaką mają obracać się wentylatory."
  4334. #: /fdmprinter.def.json
  4335. msgctxt "raft_speed description"
  4336. msgid "The speed at which the raft is printed."
  4337. msgstr "Prędkość, z jaką drukowana jest tratwa."
  4338. #: /fdmprinter.def.json
  4339. msgctxt "speed_support_interface description"
  4340. msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality."
  4341. 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."
  4342. #: /fdmprinter.def.json
  4343. msgctxt "speed_support_roof description"
  4344. msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality."
  4345. msgstr "Prędkość, z jaką drukowane są dachy podpory. Drukowanie przy niższych prędkościach może poprawić jakość nawisów."
  4346. #: /fdmprinter.def.json
  4347. msgctxt "skirt_brim_speed description"
  4348. 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."
  4349. 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ą."
  4350. #: /fdmprinter.def.json
  4351. msgctxt "speed_support description"
  4352. 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."
  4353. 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."
  4354. #: /fdmprinter.def.json
  4355. msgctxt "raft_surface_speed description"
  4356. 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."
  4357. 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."
  4358. #: /fdmprinter.def.json
  4359. msgctxt "speed_z_hop description"
  4360. 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."
  4361. 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."
  4362. #: /fdmprinter.def.json
  4363. msgctxt "speed_wall description"
  4364. msgid "The speed at which the walls are printed."
  4365. msgstr "Prędkość drukowania ścian."
  4366. #: /fdmprinter.def.json
  4367. msgctxt "speed_ironing description"
  4368. msgid "The speed at which to pass over the top surface."
  4369. msgstr "Prędkość, z jaką drukarka przejeżdża nad górnymi powierzchniami."
  4370. #: /fdmprinter.def.json
  4371. msgctxt "material_break_speed description"
  4372. msgid "The speed at which to retract the filament in order to break it cleanly."
  4373. msgstr "Jak szybko wycofać filament, aby go złamać na czysto."
  4374. #: /fdmprinter.def.json
  4375. msgctxt "speed_roofing description"
  4376. msgid "The speed at which top surface skin layers are printed."
  4377. msgstr "Prędkość, z jaką drukowane są warstwy górnej powierzchni skóry."
  4378. #: /fdmprinter.def.json
  4379. msgctxt "speed_topbottom description"
  4380. msgid "The speed at which top/bottom layers are printed."
  4381. msgstr "Szybkość, z jaką drukowane są górne/dolne warstwy."
  4382. #: /fdmprinter.def.json
  4383. msgctxt "speed_travel description"
  4384. msgid "The speed at which travel moves are made."
  4385. msgstr "Prędkość, z jaką wykonywane są ruchy jałowe."
  4386. #: /fdmprinter.def.json
  4387. msgctxt "coasting_speed description"
  4388. 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."
  4389. 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."
  4390. #: /fdmprinter.def.json
  4391. msgctxt "speed_layer_0 description"
  4392. 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."
  4393. msgstr ""
  4394. #: /fdmprinter.def.json
  4395. msgctxt "speed_print_layer_0 description"
  4396. msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate."
  4397. msgstr "Szybkość drukowania dla pierwszej warstwy. Niższa wartość jest zalecane w celu poprawy przyczepności do stołu."
  4398. #: /fdmprinter.def.json
  4399. msgctxt "speed_travel_layer_0 description"
  4400. 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."
  4401. 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."
  4402. #: /fdmprinter.def.json
  4403. msgctxt "material_break_temperature description"
  4404. msgid "The temperature at which the filament is broken for a clean break."
  4405. msgstr "Temperatura, w której filament można złamać na czysto."
  4406. #: /fdmprinter.def.json
  4407. msgctxt "build_volume_temperature description"
  4408. msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted."
  4409. msgstr "Temperatura otoczenia druku. Jeśli ustawione jest 0, temperatura komory nie będzie ustawiana."
  4410. #: /fdmprinter.def.json
  4411. msgctxt "material_standby_temperature description"
  4412. msgid "The temperature of the nozzle when another nozzle is currently used for printing."
  4413. msgstr "Temperatura dyszy, gdy inne dysze są obecnie używane do drukowania."
  4414. #: /fdmprinter.def.json
  4415. msgctxt "material_final_print_temperature description"
  4416. msgid "The temperature to which to already start cooling down just before the end of printing."
  4417. msgstr "Temperatura, od której zaczyna się chłodzenie tuż przed końcem drukowania."
  4418. #: /fdmprinter.def.json
  4419. msgctxt "material_print_temperature_layer_0 description"
  4420. msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer."
  4421. msgstr "Temperatura stosowana do drukowania pierwszej warstwy. Ustaw wartość 0, aby wyłączyć szczególną obsługę początkowej warstwy."
  4422. #: /fdmprinter.def.json
  4423. msgctxt "material_print_temperature description"
  4424. msgid "The temperature used for printing."
  4425. msgstr "Temperatura stosowana do drukowania."
  4426. #: /fdmprinter.def.json
  4427. msgctxt "material_bed_temperature_layer_0 description"
  4428. 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."
  4429. msgstr ""
  4430. #: /fdmprinter.def.json
  4431. msgctxt "material_bed_temperature description"
  4432. msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated."
  4433. msgstr ""
  4434. #: /fdmprinter.def.json
  4435. msgctxt "material_break_preparation_temperature description"
  4436. msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature."
  4437. msgstr ""
  4438. #: /fdmprinter.def.json
  4439. msgctxt "bottom_thickness description"
  4440. msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers."
  4441. msgstr "Grubość dolnych warstw w wydruku. Ta wartość podzielona przez wysokość warstwy definiuje liczbę warstw dolnych."
  4442. #: /fdmprinter.def.json
  4443. msgctxt "skin_edge_support_thickness description"
  4444. msgid "The thickness of the extra infill that supports skin edges."
  4445. msgstr ""
  4446. #: /fdmprinter.def.json
  4447. msgctxt "support_interface_height description"
  4448. msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top."
  4449. msgstr "Grubość połączenia podpory, gdzie styka się ona z modelem na górze i na dole."
  4450. #: /fdmprinter.def.json
  4451. msgctxt "support_bottom_height description"
  4452. 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."
  4453. msgstr "Grubość podłoża podpory. Steruje liczbę zwartych warstw, które są drukowane na modelu, na którym spoczywa podpora."
  4454. #: /fdmprinter.def.json
  4455. msgctxt "support_roof_height description"
  4456. 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."
  4457. msgstr "Grubość dachu podpory. Steruje ilością gęstych warstw na górnej części podpory, na której osiada model."
  4458. #: /fdmprinter.def.json
  4459. msgctxt "top_thickness description"
  4460. msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers."
  4461. msgstr "Grubość górnych warstw na wydruku. Ta wartość podzielona przez wysokość warstwy definiuje liczbę warstw górnych."
  4462. #: /fdmprinter.def.json
  4463. msgctxt "top_bottom_thickness description"
  4464. 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."
  4465. msgstr "Grubość górnej/dolnej warstwy wydruku. Ta wartość podzielona przez wysokość warstwy definiuje liczbę warstw górnych/dolnych."
  4466. #: /fdmprinter.def.json
  4467. msgctxt "wall_thickness description"
  4468. msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls."
  4469. msgstr "Grubość ścian w kierunku poziomym. Ta wartość podzielona przez szerokość linii ściany, określa liczbę ścian."
  4470. #: /fdmprinter.def.json
  4471. msgctxt "infill_sparse_thickness description"
  4472. msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded."
  4473. msgstr "Grubość na warstwe materiału wypełniającego. Ta wartość powinna zawsze być wielokrotnością wysokości warstwy i być zaokrąglana."
  4474. #: /fdmprinter.def.json
  4475. msgctxt "support_infill_sparse_thickness description"
  4476. msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded."
  4477. msgstr "Wysokość warstwy materiału wypełniającego podpory. Ta wartość jest zawsze wielokrotnością wysokości warstwy i jest zaokrąglana."
  4478. #: /fdmprinter.def.json
  4479. msgctxt "machine_gcode_flavor description"
  4480. msgid "The type of g-code to be generated."
  4481. msgstr "Typ g-code, który ma być generowany."
  4482. #: /fdmprinter.def.json
  4483. msgctxt "coasting_volume description"
  4484. msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed."
  4485. msgstr "Objętość materiału wyciekającego jest inna. Wartość ta powinna być zasadniczo zbliżona do średnicy dyszy do sześcianu."
  4486. #: /fdmprinter.def.json
  4487. msgctxt "machine_width description"
  4488. msgid "The width (X-direction) of the printable area."
  4489. msgstr "Szerokość (w kierunku X) obszaru roboczego."
  4490. #: /fdmprinter.def.json
  4491. msgctxt "support_brim_width description"
  4492. 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."
  4493. msgstr "Szerokość obrysu, który ma być wydrukowany pod podporami. Szerszy obrys to większa przyczepność do stołu, kosztem zużytego materiału."
  4494. #: /fdmprinter.def.json
  4495. msgctxt "prime_tower_size description"
  4496. msgid "The width of the prime tower."
  4497. msgstr "Szerokość wieży czyszczącej."
  4498. #: /fdmprinter.def.json
  4499. msgctxt "magic_fuzzy_skin_thickness description"
  4500. msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered."
  4501. 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."
  4502. #: /fdmprinter.def.json
  4503. msgctxt "retraction_extrusion_window description"
  4504. 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."
  4505. 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."
  4506. #: /fdmprinter.def.json
  4507. msgctxt "prime_tower_position_x description"
  4508. msgid "The x coordinate of the position of the prime tower."
  4509. msgstr "Współrzędna X położenia wieży czyszczącej."
  4510. #: /fdmprinter.def.json
  4511. msgctxt "prime_tower_position_y description"
  4512. msgid "The y coordinate of the position of the prime tower."
  4513. msgstr "Współrzędna Y położenia wieży czyszczącej."
  4514. #: /fdmprinter.def.json
  4515. msgctxt "support_meshes_present description"
  4516. msgid "There are support meshes present in the scene. This setting is controlled by Cura."
  4517. msgstr ""
  4518. #: /fdmprinter.def.json
  4519. msgctxt "bridge_wall_coast description"
  4520. 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."
  4521. 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."
  4522. #: /fdmprinter.def.json
  4523. msgctxt "raft_smoothing description"
  4524. 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."
  4525. 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."
  4526. #: /fdmprinter.def.json
  4527. msgctxt "retraction_count_max description"
  4528. 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."
  4529. 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."
  4530. #: /fdmprinter.def.json
  4531. msgctxt "draft_shield_enabled description"
  4532. 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."
  4533. 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ą."
  4534. #: /fdmprinter.def.json
  4535. msgctxt "wireframe_roof_outer_delay description"
  4536. msgid "Time spent at the outer perimeters of hole which is to become a roof. Longer times can ensure a better connection. Only applies to Wire Printing."
  4537. msgstr "Czas, który poświęca się na zewnętrznych obrzeżach otworu, który ma stać się dachem. Dłuższy czas może spowodować lepsze połączenie. Odnosi się tylko do Drukowania Drutu."
  4538. #: /fdmprinter.def.json
  4539. msgctxt "material_shrinkage_percentage_xy description"
  4540. 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)."
  4541. msgstr ""
  4542. #: /fdmprinter.def.json
  4543. msgctxt "material_shrinkage_percentage_z description"
  4544. 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)."
  4545. msgstr ""
  4546. #: /fdmprinter.def.json
  4547. msgctxt "material_shrinkage_percentage description"
  4548. msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor."
  4549. msgstr ""
  4550. #: /fdmprinter.def.json
  4551. msgctxt "top_layers label"
  4552. msgid "Top Layers"
  4553. msgstr "Górne warstwy"
  4554. #: /fdmprinter.def.json
  4555. msgctxt "top_skin_expand_distance label"
  4556. msgid "Top Skin Expand Distance"
  4557. msgstr "Odległość Rozsz. Górnej Skóry"
  4558. #: /fdmprinter.def.json
  4559. msgctxt "top_skin_preshrink label"
  4560. msgid "Top Skin Removal Width"
  4561. msgstr "Szer. Usuwania Górnej Skóry"
  4562. #: /fdmprinter.def.json
  4563. msgctxt "acceleration_roofing label"
  4564. msgid "Top Surface Skin Acceleration"
  4565. msgstr "Przysp. Górnej Pow. Skóry"
  4566. #: /fdmprinter.def.json
  4567. msgctxt "roofing_extruder_nr label"
  4568. msgid "Top Surface Skin Extruder"
  4569. msgstr "Ekstruder Górnej Pow. Skóry"
  4570. #: /fdmprinter.def.json
  4571. msgctxt "roofing_material_flow label"
  4572. msgid "Top Surface Skin Flow"
  4573. msgstr "Przepływ ostatniej warstwy górnej"
  4574. #: /fdmprinter.def.json
  4575. msgctxt "jerk_roofing label"
  4576. msgid "Top Surface Skin Jerk"
  4577. msgstr "Zryw Górnej Pow. Skóry"
  4578. #: /fdmprinter.def.json
  4579. msgctxt "roofing_layer_count label"
  4580. msgid "Top Surface Skin Layers"
  4581. msgstr "Warstwy Górnej Pow. Skóry"
  4582. #: /fdmprinter.def.json
  4583. msgctxt "roofing_angles label"
  4584. msgid "Top Surface Skin Line Directions"
  4585. msgstr "Kierunki Linii Górnej Pow. Skóry"
  4586. #: /fdmprinter.def.json
  4587. msgctxt "roofing_line_width label"
  4588. msgid "Top Surface Skin Line Width"
  4589. msgstr "Szerokość Linii Powierzchni Skóry"
  4590. #: /fdmprinter.def.json
  4591. msgctxt "roofing_pattern label"
  4592. msgid "Top Surface Skin Pattern"
  4593. msgstr "Wzór Górnej Pow. Skóry"
  4594. #: /fdmprinter.def.json
  4595. msgctxt "speed_roofing label"
  4596. msgid "Top Surface Skin Speed"
  4597. msgstr "Prędk. Górnej Pow. Skóry"
  4598. #: /fdmprinter.def.json
  4599. msgctxt "top_thickness label"
  4600. msgid "Top Thickness"
  4601. msgstr "Grubość Góra"
  4602. #: /fdmprinter.def.json
  4603. msgctxt "max_skin_angle_for_expansion description"
  4604. 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."
  4605. msgstr ""
  4606. #: /fdmprinter.def.json
  4607. msgctxt "top_bottom description"
  4608. msgid "Top/Bottom"
  4609. msgstr ""
  4610. #: /fdmprinter.def.json
  4611. msgctxt "top_bottom label"
  4612. msgid "Top/Bottom"
  4613. msgstr ""
  4614. #: /fdmprinter.def.json
  4615. msgctxt "acceleration_topbottom label"
  4616. msgid "Top/Bottom Acceleration"
  4617. msgstr "Przysp. Górnych/Dolnych Warstw"
  4618. #: /fdmprinter.def.json
  4619. msgctxt "top_bottom_extruder_nr label"
  4620. msgid "Top/Bottom Extruder"
  4621. msgstr "Ekstruder Góra/Dół"
  4622. #: /fdmprinter.def.json
  4623. msgctxt "skin_material_flow label"
  4624. msgid "Top/Bottom Flow"
  4625. msgstr "Przepływ warstwy górnej i dolnej"
  4626. #: /fdmprinter.def.json
  4627. msgctxt "jerk_topbottom label"
  4628. msgid "Top/Bottom Jerk"
  4629. msgstr "Zryw Góra/Dół"
  4630. #: /fdmprinter.def.json
  4631. msgctxt "skin_angles label"
  4632. msgid "Top/Bottom Line Directions"
  4633. msgstr "Kierunki Linii Góra/Dół"
  4634. #: /fdmprinter.def.json
  4635. msgctxt "skin_line_width label"
  4636. msgid "Top/Bottom Line Width"
  4637. msgstr "Szerokość Górnej/Dolnej Linii"
  4638. #: /fdmprinter.def.json
  4639. msgctxt "top_bottom_pattern label"
  4640. msgid "Top/Bottom Pattern"
  4641. msgstr "Wzór Góra/Dół"
  4642. #: /fdmprinter.def.json
  4643. msgctxt "speed_topbottom label"
  4644. msgid "Top/Bottom Speed"
  4645. msgstr "Prędkość Góra/Dół"
  4646. #: /fdmprinter.def.json
  4647. msgctxt "top_bottom_thickness label"
  4648. msgid "Top/Bottom Thickness"
  4649. msgstr "Grubość Góra/Dół"
  4650. #: /fdmprinter.def.json
  4651. msgctxt "support_type option buildplate"
  4652. msgid "Touching Buildplate"
  4653. msgstr "Dotykające Stołu"
  4654. #: /fdmprinter.def.json
  4655. msgctxt "support_tower_diameter label"
  4656. msgid "Tower Diameter"
  4657. msgstr "Średnica Wieży"
  4658. #: /fdmprinter.def.json
  4659. msgctxt "support_tower_roof_angle label"
  4660. msgid "Tower Roof Angle"
  4661. msgstr "Kąt Dachu Wieży"
  4662. #: /fdmprinter.def.json
  4663. msgctxt "mesh_rotation_matrix description"
  4664. msgid "Transformation matrix to be applied to the model when loading it from file."
  4665. msgstr "Forma przesunięcia, która ma być zastosowana do modelu podczas ładowania z pliku."
  4666. #: /fdmprinter.def.json
  4667. msgctxt "travel label"
  4668. msgid "Travel"
  4669. msgstr "Ruch Jałowy"
  4670. #: /fdmprinter.def.json
  4671. msgctxt "acceleration_travel label"
  4672. msgid "Travel Acceleration"
  4673. msgstr "Przyspieszenie Ruchów Jałowych"
  4674. #: /fdmprinter.def.json
  4675. msgctxt "travel_avoid_distance label"
  4676. msgid "Travel Avoid Distance"
  4677. msgstr "Odległość Omijania Ruchu Jałowego"
  4678. #: /fdmprinter.def.json
  4679. msgctxt "jerk_travel label"
  4680. msgid "Travel Jerk"
  4681. msgstr "Zryw Ruch Jałowy"
  4682. #: /fdmprinter.def.json
  4683. msgctxt "speed_travel label"
  4684. msgid "Travel Speed"
  4685. msgstr "Prędkość Ruchów Jałowych"
  4686. #: /fdmprinter.def.json
  4687. msgctxt "magic_mesh_surface_mode description"
  4688. 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."
  4689. 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."
  4690. #: /fdmprinter.def.json
  4691. msgctxt "support_structure option tree"
  4692. msgid "Tree"
  4693. msgstr ""
  4694. #: /fdmprinter.def.json
  4695. msgctxt "support_tree_angle label"
  4696. msgid "Tree Support Branch Angle"
  4697. msgstr "Kąt Gałęzi Drzewnej Podpory"
  4698. #: /fdmprinter.def.json
  4699. msgctxt "support_tree_branch_diameter label"
  4700. msgid "Tree Support Branch Diameter"
  4701. msgstr "Średnica Gałęzi Drzewiastej Podpory"
  4702. #: /fdmprinter.def.json
  4703. msgctxt "support_tree_branch_diameter_angle label"
  4704. msgid "Tree Support Branch Diameter Angle"
  4705. msgstr "Kąt Średnicy Gałęzi Drzewiastej Podpory"
  4706. #: /fdmprinter.def.json
  4707. msgctxt "support_tree_branch_distance label"
  4708. msgid "Tree Support Branch Distance"
  4709. msgstr "Odległość Gałęzi Drzewiastej Podpory"
  4710. #: /fdmprinter.def.json
  4711. msgctxt "support_tree_collision_resolution label"
  4712. msgid "Tree Support Collision Resolution"
  4713. msgstr "Rozdzielczość Kolizji Drzewiastej Podpory"
  4714. #: /fdmprinter.def.json
  4715. msgctxt "support_tree_max_diameter label"
  4716. msgid "Tree Support Trunk Diameter"
  4717. msgstr ""
  4718. #: /fdmprinter.def.json
  4719. msgctxt "infill_pattern option trihexagon"
  4720. msgid "Tri-Hexagon"
  4721. msgstr "Tri-Sześciokąt"
  4722. #: /fdmprinter.def.json
  4723. msgctxt "infill_pattern option triangles"
  4724. msgid "Triangles"
  4725. msgstr "Trójkąty"
  4726. #: /fdmprinter.def.json
  4727. msgctxt "support_bottom_pattern option triangles"
  4728. msgid "Triangles"
  4729. msgstr "Trójkąty"
  4730. #: /fdmprinter.def.json
  4731. msgctxt "support_interface_pattern option triangles"
  4732. msgid "Triangles"
  4733. msgstr "Trójkąty"
  4734. #: /fdmprinter.def.json
  4735. msgctxt "support_pattern option triangles"
  4736. msgid "Triangles"
  4737. msgstr "Trójkąty"
  4738. #: /fdmprinter.def.json
  4739. msgctxt "support_roof_pattern option triangles"
  4740. msgid "Triangles"
  4741. msgstr "Trójkąty"
  4742. #: /fdmprinter.def.json
  4743. msgctxt "machine_gcode_flavor option UltiGCode"
  4744. msgid "Ultimaker 2"
  4745. msgstr "Ultimaker 2"
  4746. #: /fdmprinter.def.json
  4747. msgctxt "meshfix_union_all label"
  4748. msgid "Union Overlapping Volumes"
  4749. msgstr "Nakładanie się Związanych Brył"
  4750. #: /fdmprinter.def.json
  4751. msgctxt "bridge_wall_min_length description"
  4752. 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."
  4753. 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."
  4754. #: /fdmprinter.def.json
  4755. msgctxt "adaptive_layer_height_enabled label"
  4756. msgid "Use Adaptive Layers"
  4757. msgstr "Użyj zmiennych warstw"
  4758. #: /fdmprinter.def.json
  4759. msgctxt "support_use_towers label"
  4760. msgid "Use Towers"
  4761. msgstr "Używaj Wież"
  4762. #: /fdmprinter.def.json
  4763. msgctxt "acceleration_travel_enabled description"
  4764. 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."
  4765. msgstr ""
  4766. #: /fdmprinter.def.json
  4767. msgctxt "jerk_travel_enabled description"
  4768. 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."
  4769. msgstr ""
  4770. #: /fdmprinter.def.json
  4771. msgctxt "relative_extrusion description"
  4772. 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."
  4773. 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."
  4774. #: /fdmprinter.def.json
  4775. msgctxt "support_use_towers description"
  4776. 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."
  4777. 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."
  4778. #: /fdmprinter.def.json
  4779. msgctxt "infill_mesh description"
  4780. 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."
  4781. 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."
  4782. #: /fdmprinter.def.json
  4783. msgctxt "support_mesh description"
  4784. msgid "Use this mesh to specify support areas. This can be used to generate support structure."
  4785. msgstr "Użyj tej siatki, aby określić obszary wsparcia. Można to wykorzystać do generowania struktury podpory."
  4786. #: /fdmprinter.def.json
  4787. msgctxt "anti_overhang_mesh description"
  4788. 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."
  4789. 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."
  4790. #: /fdmprinter.def.json
  4791. msgctxt "z_seam_type option back"
  4792. msgid "User Specified"
  4793. msgstr "Określone przez Użytkownika"
  4794. #: /fdmprinter.def.json
  4795. msgctxt "material_shrinkage_percentage_z label"
  4796. msgid "Vertical Scaling Factor Shrinkage Compensation"
  4797. msgstr ""
  4798. #: /fdmprinter.def.json
  4799. msgctxt "slicing_tolerance description"
  4800. 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."
  4801. msgstr ""
  4802. #: /fdmprinter.def.json
  4803. msgctxt "wireframe_bottom_delay label"
  4804. msgid "WP Bottom Delay"
  4805. msgstr "DD Dolne Opóźnienie"
  4806. #: /fdmprinter.def.json
  4807. msgctxt "wireframe_printspeed_bottom label"
  4808. msgid "WP Bottom Printing Speed"
  4809. msgstr "DD Prędk. Drukowania Dołu"
  4810. #: /fdmprinter.def.json
  4811. msgctxt "wireframe_flow_connection label"
  4812. msgid "WP Connection Flow"
  4813. msgstr "DD Przepływ Połączenia"
  4814. #: /fdmprinter.def.json
  4815. msgctxt "wireframe_height label"
  4816. msgid "WP Connection Height"
  4817. msgstr "DD Wysokość Połączenia"
  4818. #: /fdmprinter.def.json
  4819. msgctxt "wireframe_printspeed_down label"
  4820. msgid "WP Downward Printing Speed"
  4821. msgstr "DD Prędkość Drukowania w Dół"
  4822. #: /fdmprinter.def.json
  4823. msgctxt "wireframe_drag_along label"
  4824. msgid "WP Drag Along"
  4825. msgstr "DD Przeciągnij Wzdłuż"
  4826. #: /fdmprinter.def.json
  4827. msgctxt "wireframe_up_half_speed label"
  4828. msgid "WP Ease Upward"
  4829. msgstr "DD Łatwe Wzniesienie"
  4830. #: /fdmprinter.def.json
  4831. msgctxt "wireframe_fall_down label"
  4832. msgid "WP Fall Down"
  4833. msgstr "DD Spadek"
  4834. #: /fdmprinter.def.json
  4835. msgctxt "wireframe_flat_delay label"
  4836. msgid "WP Flat Delay"
  4837. msgstr "DD Płaskie Opóźnienie"
  4838. #: /fdmprinter.def.json
  4839. msgctxt "wireframe_flow_flat label"
  4840. msgid "WP Flat Flow"
  4841. msgstr "DD Płaskie Przepływ"
  4842. #: /fdmprinter.def.json
  4843. msgctxt "wireframe_flow label"
  4844. msgid "WP Flow"
  4845. msgstr "DD Przepływ"
  4846. #: /fdmprinter.def.json
  4847. msgctxt "wireframe_printspeed_flat label"
  4848. msgid "WP Horizontal Printing Speed"
  4849. msgstr "DD Prędkość Drukowania Poziomo"
  4850. #: /fdmprinter.def.json
  4851. msgctxt "wireframe_top_jump label"
  4852. msgid "WP Knot Size"
  4853. msgstr "DD Rozmiar Węzła"
  4854. #: /fdmprinter.def.json
  4855. msgctxt "wireframe_nozzle_clearance label"
  4856. msgid "WP Nozzle Clearance"
  4857. msgstr "DD Prześwit Dyszy"
  4858. #: /fdmprinter.def.json
  4859. msgctxt "wireframe_roof_drag_along label"
  4860. msgid "WP Roof Drag Along"
  4861. msgstr "DD Rozciągaj Dach"
  4862. #: /fdmprinter.def.json
  4863. msgctxt "wireframe_roof_fall_down label"
  4864. msgid "WP Roof Fall Down"
  4865. msgstr "DD Spadek Dachu"
  4866. #: /fdmprinter.def.json
  4867. msgctxt "wireframe_roof_inset label"
  4868. msgid "WP Roof Inset Distance"
  4869. msgstr "DD Długość Wkładu Dachu"
  4870. #: /fdmprinter.def.json
  4871. msgctxt "wireframe_roof_outer_delay label"
  4872. msgid "WP Roof Outer Delay"
  4873. msgstr "DD Opóźnienie Zew. Dachu"
  4874. #: /fdmprinter.def.json
  4875. msgctxt "wireframe_printspeed label"
  4876. msgid "WP Speed"
  4877. msgstr "DD Prędkość"
  4878. #: /fdmprinter.def.json
  4879. msgctxt "wireframe_straight_before_down label"
  4880. msgid "WP Straighten Downward Lines"
  4881. msgstr "DD Prostuj Linie w Dół"
  4882. #: /fdmprinter.def.json
  4883. msgctxt "wireframe_strategy label"
  4884. msgid "WP Strategy"
  4885. msgstr "DD Strategia"
  4886. #: /fdmprinter.def.json
  4887. msgctxt "wireframe_top_delay label"
  4888. msgid "WP Top Delay"
  4889. msgstr "DD Opóźnienie Góry"
  4890. #: /fdmprinter.def.json
  4891. msgctxt "wireframe_printspeed_up label"
  4892. msgid "WP Upward Printing Speed"
  4893. msgstr "DD Prędkość Drukowania do Góry"
  4894. #: /fdmprinter.def.json
  4895. msgctxt "material_bed_temp_wait label"
  4896. msgid "Wait for Build Plate Heatup"
  4897. msgstr "Czekaj na Podgrzanie Stołu"
  4898. #: /fdmprinter.def.json
  4899. msgctxt "material_print_temp_wait label"
  4900. msgid "Wait for Nozzle Heatup"
  4901. msgstr "Czekaj na Podgrzanie Dyszy"
  4902. #: /fdmprinter.def.json
  4903. msgctxt "acceleration_wall label"
  4904. msgid "Wall Acceleration"
  4905. msgstr "Przyspieszenie Ścian"
  4906. #: /fdmprinter.def.json
  4907. msgctxt "wall_distribution_count label"
  4908. msgid "Wall Distribution Count"
  4909. msgstr ""
  4910. #: /fdmprinter.def.json
  4911. msgctxt "wall_extruder_nr label"
  4912. msgid "Wall Extruder"
  4913. msgstr "Ekstruder Ściany"
  4914. #: /fdmprinter.def.json
  4915. msgctxt "wall_material_flow label"
  4916. msgid "Wall Flow"
  4917. msgstr "Przepływ ścianek"
  4918. #: /fdmprinter.def.json
  4919. msgctxt "jerk_wall label"
  4920. msgid "Wall Jerk"
  4921. msgstr "Zryw Ściany"
  4922. #: /fdmprinter.def.json
  4923. msgctxt "wall_line_count label"
  4924. msgid "Wall Line Count"
  4925. msgstr "Ilość Ścian"
  4926. #: /fdmprinter.def.json
  4927. msgctxt "wall_line_width label"
  4928. msgid "Wall Line Width"
  4929. msgstr "Szerokość Linii Ściany"
  4930. #: /fdmprinter.def.json
  4931. msgctxt "inset_direction label"
  4932. msgid "Wall Ordering"
  4933. msgstr ""
  4934. #: /fdmprinter.def.json
  4935. msgctxt "speed_wall label"
  4936. msgid "Wall Speed"
  4937. msgstr "Prędkość Ścian"
  4938. #: /fdmprinter.def.json
  4939. msgctxt "wall_thickness label"
  4940. msgid "Wall Thickness"
  4941. msgstr "Grubość Ściany"
  4942. #: /fdmprinter.def.json
  4943. msgctxt "wall_transition_length label"
  4944. msgid "Wall Transition Length"
  4945. msgstr ""
  4946. #: /fdmprinter.def.json
  4947. msgctxt "wall_transition_filter_distance label"
  4948. msgid "Wall Transitioning Filter Distance"
  4949. msgstr ""
  4950. #: /fdmprinter.def.json
  4951. msgctxt "wall_transition_filter_deviation label"
  4952. msgid "Wall Transitioning Filter Margin"
  4953. msgstr ""
  4954. #: /fdmprinter.def.json
  4955. msgctxt "wall_transition_angle label"
  4956. msgid "Wall Transitioning Threshold Angle"
  4957. msgstr ""
  4958. #: /fdmprinter.def.json
  4959. msgctxt "shell label"
  4960. msgid "Walls"
  4961. msgstr ""
  4962. #: /fdmprinter.def.json
  4963. msgctxt "wall_overhang_angle description"
  4964. 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."
  4965. 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."
  4966. #: /fdmprinter.def.json
  4967. msgctxt "support_interface_skip_height description"
  4968. 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."
  4969. 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."
  4970. #: /fdmprinter.def.json
  4971. msgctxt "infill_enable_travel_optimization description"
  4972. 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."
  4973. 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ć."
  4974. #: /fdmprinter.def.json
  4975. msgctxt "support_fan_enable description"
  4976. msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support."
  4977. msgstr "Gdy włączone, prędkość wentylatora chłodzącego wydruk jest zmieniana dla obszarów leżących bezpośrednio ponad podporami."
  4978. #: /fdmprinter.def.json
  4979. msgctxt "z_seam_relative description"
  4980. 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."
  4981. 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."
  4982. #: /fdmprinter.def.json
  4983. msgctxt "retraction_combing_max_distance description"
  4984. 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."
  4985. msgstr ""
  4986. #: /fdmprinter.def.json
  4987. msgctxt "bridge_skin_material_flow description"
  4988. msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
  4989. msgstr "Kiedy drukowane są obszary skóry mostu, ilość ekstrudowanego materiału jest mnożona przez tę wartość."
  4990. #: /fdmprinter.def.json
  4991. msgctxt "bridge_wall_material_flow description"
  4992. msgid "When printing bridge walls, the amount of material extruded is multiplied by this value."
  4993. msgstr "Kiedy drukowane są ściany mostu, ilość ekstrudowanego materiału jest mnożona prze tę wartość."
  4994. #: /fdmprinter.def.json
  4995. msgctxt "bridge_skin_material_flow_2 description"
  4996. msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value."
  4997. msgstr "Kiedy drukowana jest druga warstwa skóry mostu, ilość ekstrudowanego materiału jest mnożona przez tę wartość."
  4998. #: /fdmprinter.def.json
  4999. msgctxt "bridge_skin_material_flow_3 description"
  5000. msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value."
  5001. msgstr "Kiedy drukowana jest trzecia warstwa skóry mostu, ilość ekstrudowanego materiału jest mnożona przez tę wartość."
  5002. #: /fdmprinter.def.json
  5003. msgctxt "cool_lift_head description"
  5004. 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."
  5005. 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."
  5006. #: /fdmprinter.def.json
  5007. msgctxt "skin_no_small_gaps_heuristic description"
  5008. 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."
  5009. 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."
  5010. #: /fdmprinter.def.json
  5011. msgctxt "wall_transition_angle description"
  5012. 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."
  5013. msgstr ""
  5014. #: /fdmprinter.def.json
  5015. msgctxt "wall_transition_length description"
  5016. 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."
  5017. msgstr ""
  5018. #: /fdmprinter.def.json
  5019. msgctxt "wipe_hop_enable description"
  5020. 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."
  5021. msgstr ""
  5022. #: /fdmprinter.def.json
  5023. msgctxt "retraction_hop_enabled description"
  5024. 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."
  5025. 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."
  5026. #: /fdmprinter.def.json
  5027. msgctxt "support_xy_overrides_z description"
  5028. 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."
  5029. 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."
  5030. #: /fdmprinter.def.json
  5031. msgctxt "machine_center_is_zero description"
  5032. msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area."
  5033. msgstr "Określa, czy współrzędne zero X/Y znajdują się na środku pola wydruku."
  5034. #: /fdmprinter.def.json
  5035. msgctxt "machine_endstop_positive_direction_x description"
  5036. msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)."
  5037. msgstr "Czy krańcówka osi X jest w pozycji dodatniej (wysokie współrzędne X) czy w ujemnej (niskie współrzędne X)."
  5038. #: /fdmprinter.def.json
  5039. msgctxt "machine_endstop_positive_direction_y description"
  5040. msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)."
  5041. msgstr "Czy krańcówka osi Y jest w pozycji dodatniej (wysokie współrzędne Y) czy w ujemnej (niskie współrzędne Y)."
  5042. #: /fdmprinter.def.json
  5043. msgctxt "machine_endstop_positive_direction_z description"
  5044. msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)."
  5045. msgstr "Czy krańcówka osi Z jest w pozycji dodatniej (wysokie współrzędne Z) czy w ujemnej (niskie współrzędne Z)."
  5046. #: /fdmprinter.def.json
  5047. msgctxt "machine_extruders_share_heater description"
  5048. msgid "Whether the extruders share a single heater rather than each extruder having its own heater."
  5049. msgstr ""
  5050. #: /fdmprinter.def.json
  5051. msgctxt "machine_extruders_share_nozzle description"
  5052. 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."
  5053. msgstr ""
  5054. #: /fdmprinter.def.json
  5055. msgctxt "machine_heated_bed description"
  5056. msgid "Whether the machine has a heated build plate present."
  5057. msgstr "Określa czy maszyna posiada podgrzewany stół."
  5058. #: /fdmprinter.def.json
  5059. msgctxt "machine_heated_build_volume description"
  5060. msgid "Whether the machine is able to stabilize the build volume temperature."
  5061. msgstr "Określa czy drukarka posiada zamkniętą komorę stabilizującą temperaturę."
  5062. #: /fdmprinter.def.json
  5063. msgctxt "center_object description"
  5064. 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."
  5065. 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."
  5066. #: /fdmprinter.def.json
  5067. msgctxt "machine_nozzle_temp_enabled description"
  5068. msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura."
  5069. msgstr "Czy kontrolować temperaturę przez Cura? Wyłącz tę funkcję, aby kontrolować temperaturę dyszy poza Cura."
  5070. #: /fdmprinter.def.json
  5071. msgctxt "material_bed_temp_prepend description"
  5072. 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."
  5073. 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."
  5074. #: /fdmprinter.def.json
  5075. msgctxt "material_print_temp_prepend description"
  5076. 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."
  5077. 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."
  5078. #: /fdmprinter.def.json
  5079. msgctxt "clean_between_layers description"
  5080. 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."
  5081. msgstr ""
  5082. #: /fdmprinter.def.json
  5083. msgctxt "material_bed_temp_wait description"
  5084. msgid "Whether to insert a command to wait until the build plate temperature is reached at the start."
  5085. msgstr "Czy wstawić na początku komendę, czekającą aż temperatura stołu zostanie osiągnięta."
  5086. #: /fdmprinter.def.json
  5087. msgctxt "prime_blob_enable description"
  5088. 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."
  5089. 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."
  5090. #: /fdmprinter.def.json
  5091. msgctxt "print_sequence description"
  5092. 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."
  5093. msgstr ""
  5094. #: /fdmprinter.def.json
  5095. msgctxt "machine_show_variants description"
  5096. msgid "Whether to show the different variants of this machine, which are described in separate json files."
  5097. msgstr "Określa czy wyświetlać różne warianty drukarki, które są opisane w oddzielnych plikach JSON."
  5098. #: /fdmprinter.def.json
  5099. msgctxt "machine_firmware_retract description"
  5100. msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material."
  5101. msgstr "Używaj komend retrakcji (G10/G11) zamiast używać współrzędną E w komendzie G1, aby wycofać materiał."
  5102. #: /fdmprinter.def.json
  5103. msgctxt "material_print_temp_wait description"
  5104. msgid "Whether to wait until the nozzle temperature is reached at the start."
  5105. msgstr "Poczekaj, aż temperatura dyszy zostanie osiągnięta na początku."
  5106. #: /fdmprinter.def.json
  5107. msgctxt "infill_line_width description"
  5108. msgid "Width of a single infill line."
  5109. msgstr "Szerokość pojedynczej linii wypełniania."
  5110. #: /fdmprinter.def.json
  5111. msgctxt "support_interface_line_width description"
  5112. msgid "Width of a single line of support roof or floor."
  5113. msgstr "Szerokość pojedynczej linii dachu lub podłogi podpory."
  5114. #: /fdmprinter.def.json
  5115. msgctxt "roofing_line_width description"
  5116. msgid "Width of a single line of the areas at the top of the print."
  5117. msgstr "Szerokość pojedynczej linii na obszarach na górze wydruku."
  5118. #: /fdmprinter.def.json
  5119. msgctxt "line_width description"
  5120. 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."
  5121. 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."
  5122. #: /fdmprinter.def.json
  5123. msgctxt "prime_tower_line_width description"
  5124. msgid "Width of a single prime tower line."
  5125. msgstr "Szerokość pojedynczej linii wieży."
  5126. #: /fdmprinter.def.json
  5127. msgctxt "skirt_brim_line_width description"
  5128. msgid "Width of a single skirt or brim line."
  5129. msgstr "Szerokość pojedynczej linii Obwódki i Obrysu."
  5130. #: /fdmprinter.def.json
  5131. msgctxt "support_bottom_line_width description"
  5132. msgid "Width of a single support floor line."
  5133. msgstr "Szerokość pojedynczej linii podłoża podpory."
  5134. #: /fdmprinter.def.json
  5135. msgctxt "support_roof_line_width description"
  5136. msgid "Width of a single support roof line."
  5137. msgstr "Szerokość pojedynczej linii dachu podpory."
  5138. #: /fdmprinter.def.json
  5139. msgctxt "support_line_width description"
  5140. msgid "Width of a single support structure line."
  5141. msgstr "Szerokość jednej linii podpory."
  5142. #: /fdmprinter.def.json
  5143. msgctxt "skin_line_width description"
  5144. msgid "Width of a single top/bottom line."
  5145. msgstr "Szerokość pojedynczej górnej/dolnej linii."
  5146. #: /fdmprinter.def.json
  5147. msgctxt "wall_line_width_x description"
  5148. msgid "Width of a single wall line for all wall lines except the outermost one."
  5149. msgstr "Szerokość jednej linii dla wszystkich linii ściany z wyjątkiem jednej najbardziej zewnętrznej."
  5150. #: /fdmprinter.def.json
  5151. msgctxt "wall_line_width description"
  5152. msgid "Width of a single wall line."
  5153. msgstr "Szerokość jednej linii ściany."
  5154. #: /fdmprinter.def.json
  5155. msgctxt "raft_base_line_width description"
  5156. msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion."
  5157. msgstr "Szerokość linii na podstawowej warstwie tratwy. Powinny być to grube linie, które pomogą w przyczepności do stołu."
  5158. #: /fdmprinter.def.json
  5159. msgctxt "raft_interface_line_width description"
  5160. 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."
  5161. msgstr "Szerokość linii na środkowej warstwie tratwy. Wytłaczanie drugiej warstwy powoduje, że linie przyklejają się do stołu."
  5162. #: /fdmprinter.def.json
  5163. msgctxt "raft_surface_line_width description"
  5164. 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."
  5165. msgstr "Szerokość linii na górnej powierzchni tratwy. Mogą to być cienkie linie tak, aby góra tratwy była gładka."
  5166. #: /fdmprinter.def.json
  5167. msgctxt "wall_line_width_0 description"
  5168. msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed."
  5169. msgstr "Szerokość zewnętrznej linii ściany. Przez obniżenie tej wartości wyższe poziomy szczegółów mogą być drukowane."
  5170. #: /fdmprinter.def.json
  5171. msgctxt "min_bead_width description"
  5172. 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."
  5173. msgstr ""
  5174. #: /fdmprinter.def.json
  5175. msgctxt "wipe_brush_pos_x label"
  5176. msgid "Wipe Brush X Position"
  5177. msgstr "X pozycji czyszczenia"
  5178. #: /fdmprinter.def.json
  5179. msgctxt "wipe_hop_speed label"
  5180. msgid "Wipe Hop Speed"
  5181. msgstr "Prędkość czyszczącego skoku Z"
  5182. #: /fdmprinter.def.json
  5183. msgctxt "prime_tower_wipe_enabled label"
  5184. msgid "Wipe Inactive Nozzle on Prime Tower"
  5185. msgstr "Wytrzyj Nieużywaną Dyszę o Wieżę Czyszczącą"
  5186. #: /fdmprinter.def.json
  5187. msgctxt "wipe_move_distance label"
  5188. msgid "Wipe Move Distance"
  5189. msgstr "Odległość ruchu czyszczenia"
  5190. #: /fdmprinter.def.json
  5191. msgctxt "clean_between_layers label"
  5192. msgid "Wipe Nozzle Between Layers"
  5193. msgstr "Wytrzyj dyszę pomiędzy warstwami"
  5194. #: /fdmprinter.def.json
  5195. msgctxt "wipe_pause label"
  5196. msgid "Wipe Pause"
  5197. msgstr "Wstrzymaj czyszczenie"
  5198. #: /fdmprinter.def.json
  5199. msgctxt "wipe_repeat_count label"
  5200. msgid "Wipe Repeat Count"
  5201. msgstr "Ilość powtórzeń czyszczenia"
  5202. #: /fdmprinter.def.json
  5203. msgctxt "wipe_retraction_amount label"
  5204. msgid "Wipe Retraction Distance"
  5205. msgstr "Długość czyszczenia przy retrakcji"
  5206. #: /fdmprinter.def.json
  5207. msgctxt "wipe_retraction_enable label"
  5208. msgid "Wipe Retraction Enable"
  5209. msgstr "Włącz Czyszczenie przy retrakcji"
  5210. #: /fdmprinter.def.json
  5211. msgctxt "wipe_retraction_extra_prime_amount label"
  5212. msgid "Wipe Retraction Extra Prime Amount"
  5213. msgstr "Dodatkowa wartość czyszczenia dla Czyszczenia przy retrakcji"
  5214. #: /fdmprinter.def.json
  5215. msgctxt "wipe_retraction_prime_speed label"
  5216. msgid "Wipe Retraction Prime Speed"
  5217. msgstr ""
  5218. #: /fdmprinter.def.json
  5219. msgctxt "wipe_retraction_retract_speed label"
  5220. msgid "Wipe Retraction Retract Speed"
  5221. msgstr "Prędkość retrakcji Czyszczenia przy retrakcji"
  5222. #: /fdmprinter.def.json
  5223. msgctxt "wipe_retraction_speed label"
  5224. msgid "Wipe Retraction Speed"
  5225. msgstr "Prędkość Czyszczenia przy retrakcji"
  5226. #: /fdmprinter.def.json
  5227. msgctxt "wipe_hop_enable label"
  5228. msgid "Wipe Z Hop"
  5229. msgstr ""
  5230. #: /fdmprinter.def.json
  5231. msgctxt "wipe_hop_amount label"
  5232. msgid "Wipe Z Hop Height"
  5233. msgstr "Wysokość skoku Z przy czyszczeniu"
  5234. #: /fdmprinter.def.json
  5235. msgctxt "wireframe_enabled label"
  5236. msgid "Wire Printing"
  5237. msgstr "Drukowanie Drutu"
  5238. #: /fdmprinter.def.json
  5239. msgctxt "retraction_combing option infill"
  5240. msgid "Within Infill"
  5241. msgstr "Wewnątrz Wypełnienia"
  5242. #: /fdmprinter.def.json
  5243. msgctxt "machine_always_write_active_tool description"
  5244. 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."
  5245. msgstr ""
  5246. #: /fdmprinter.def.json
  5247. msgctxt "machine_endstop_positive_direction_x label"
  5248. msgid "X Endstop in Positive Direction"
  5249. msgstr "Krańcówka X w Pozycji Dodatniej"
  5250. #: /fdmprinter.def.json
  5251. msgctxt "wipe_brush_pos_x description"
  5252. msgid "X location where wipe script will start."
  5253. msgstr "Pozycja X, w której skrypt zaczyna."
  5254. #: /fdmprinter.def.json
  5255. msgctxt "support_xy_overrides_z option xy_overrides_z"
  5256. msgid "X/Y overrides Z"
  5257. msgstr "X/Y nadpisuje Z"
  5258. #: /fdmprinter.def.json
  5259. msgctxt "machine_endstop_positive_direction_y label"
  5260. msgid "Y Endstop in Positive Direction"
  5261. msgstr "Krańcówka Y w Pozycji Dodatniej"
  5262. #: /fdmprinter.def.json
  5263. msgctxt "machine_endstop_positive_direction_z label"
  5264. msgid "Z Endstop in Positive Direction"
  5265. msgstr "Krańcówka Z w Pozycji Dodatniej"
  5266. #: /fdmprinter.def.json
  5267. msgctxt "retraction_hop_after_extruder_switch label"
  5268. msgid "Z Hop After Extruder Switch"
  5269. msgstr "Skok Z po Zmianie Ekstrudera"
  5270. #: /fdmprinter.def.json
  5271. msgctxt "retraction_hop_after_extruder_switch_height label"
  5272. msgid "Z Hop After Extruder Switch Height"
  5273. msgstr "Skok Z po zmianie wysokości ekstrudera"
  5274. #: /fdmprinter.def.json
  5275. msgctxt "retraction_hop label"
  5276. msgid "Z Hop Height"
  5277. msgstr "Wysokość Skoku Z"
  5278. #: /fdmprinter.def.json
  5279. msgctxt "retraction_hop_only_when_collides label"
  5280. msgid "Z Hop Only Over Printed Parts"
  5281. msgstr "Skok Z Tylko nad Druk. Częściami"
  5282. #: /fdmprinter.def.json
  5283. msgctxt "speed_z_hop label"
  5284. msgid "Z Hop Speed"
  5285. msgstr "Prędkość skoku Z"
  5286. #: /fdmprinter.def.json
  5287. msgctxt "retraction_hop_enabled label"
  5288. msgid "Z Hop When Retracted"
  5289. msgstr "Skok Z Podczas Retrakcji"
  5290. #: /fdmprinter.def.json
  5291. msgctxt "z_seam_type label"
  5292. msgid "Z Seam Alignment"
  5293. msgstr "Wyrównanie Szwu Z"
  5294. #: /fdmprinter.def.json
  5295. msgctxt "z_seam_position label"
  5296. msgid "Z Seam Position"
  5297. msgstr "Pozycja szwu osi Z"
  5298. #: /fdmprinter.def.json
  5299. msgctxt "z_seam_relative label"
  5300. msgid "Z Seam Relative"
  5301. msgstr "Względny Szew Z"
  5302. #: /fdmprinter.def.json
  5303. msgctxt "z_seam_x label"
  5304. msgid "Z Seam X"
  5305. msgstr "Szew X"
  5306. #: /fdmprinter.def.json
  5307. msgctxt "z_seam_y label"
  5308. msgid "Z Seam Y"
  5309. msgstr "Szew Y"
  5310. #: /fdmprinter.def.json
  5311. msgctxt "support_xy_overrides_z option z_overrides_xy"
  5312. msgid "Z overrides X/Y"
  5313. msgstr "Z nadpisuje X/Y"
  5314. #: /fdmprinter.def.json
  5315. msgctxt "infill_pattern option zigzag"
  5316. msgid "Zig Zag"
  5317. msgstr "Zygzak"
  5318. #: /fdmprinter.def.json
  5319. msgctxt "ironing_pattern option zigzag"
  5320. msgid "Zig Zag"
  5321. msgstr "Zygzak"
  5322. #: /fdmprinter.def.json
  5323. msgctxt "roofing_pattern option zigzag"
  5324. msgid "Zig Zag"
  5325. msgstr "Zygzak"
  5326. #: /fdmprinter.def.json
  5327. msgctxt "support_bottom_pattern option zigzag"
  5328. msgid "Zig Zag"
  5329. msgstr "Zygzak"
  5330. #: /fdmprinter.def.json
  5331. msgctxt "support_interface_pattern option zigzag"
  5332. msgid "Zig Zag"
  5333. msgstr "Zygzak"
  5334. #: /fdmprinter.def.json
  5335. msgctxt "support_pattern option zigzag"
  5336. msgid "Zig Zag"
  5337. msgstr "Zygzak"
  5338. #: /fdmprinter.def.json
  5339. msgctxt "support_roof_pattern option zigzag"
  5340. msgid "Zig Zag"
  5341. msgstr "Zygzak"
  5342. #: /fdmprinter.def.json
  5343. msgctxt "top_bottom_pattern option zigzag"
  5344. msgid "Zig Zag"
  5345. msgstr "Zygzak"
  5346. #: /fdmprinter.def.json
  5347. msgctxt "top_bottom_pattern_0 option zigzag"
  5348. msgid "Zig Zag"
  5349. msgstr "Zygzak"
  5350. #: /fdmprinter.def.json
  5351. msgctxt "travel description"
  5352. msgid "travel"
  5353. msgstr "ruch jałowy"
  5354. #~ msgctxt "machine_head_polygon description"
  5355. #~ msgid "A 2D silhouette of the print head (fan caps excluded)."
  5356. #~ msgstr "Sylwetka 2D głowicy drukującej (bez nasadki wentylatora)."
  5357. #~ msgctxt "machine_head_with_fans_polygon description"
  5358. #~ msgid "A 2D silhouette of the print head (fan caps included)."
  5359. #~ msgstr "Sylwetka 2D głowicy drukującej (z nasadką wentylatora)."
  5360. #~ msgctxt "spaghetti_infill_extra_volume description"
  5361. #~ msgid "A correction term to adjust the total volume being extruded each time when filling spaghetti."
  5362. #~ msgstr "Korekcja objętości materiału ekstrudowanego za każdym razem, kiedy drukowane jest wypełn. spaghetti."
  5363. #~ msgctxt "adaptive_layer_height_threshold label"
  5364. #~ msgid "Adaptive Layers Threshold"
  5365. #~ msgstr "Próg zmiany warstw"
  5366. #~ msgctxt "adaptive_layer_height_variation label"
  5367. #~ msgid "Adaptive layers maximum variation"
  5368. #~ msgstr "Maks. zmiana zmiennych warstw"
  5369. #~ msgctxt "adaptive_layer_height_threshold label"
  5370. #~ msgid "Adaptive layers threshold"
  5371. #~ msgstr "Opóźnienie zmiennych warstw"
  5372. #~ msgctxt "adaptive_layer_height_variation_step label"
  5373. #~ msgid "Adaptive layers variation step size"
  5374. #~ msgstr "Krok zmian zmiennych warstw"
  5375. #~ msgctxt "spaghetti_flow description"
  5376. #~ msgid "Adjusts the density of the spaghetti infill. Note that the Infill Density only controls the line spacing of the filling pattern, not the amount of extrusion for spaghetti infill."
  5377. #~ msgstr "Dostosowuje gęstość wypełnienia spaghetti. Należy zauważyć, że Gęstość Wypełnienia kontroluje tylko rozstaw linii wzoru napełniania, a nie ilość wytłaczania wypełnienia spaghetti."
  5378. #~ msgctxt "dual_pre_wipe description"
  5379. #~ msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print."
  5380. #~ msgstr "Po przełączeniu ekstrudera, wytrzyj materiał wyciekający z dyszy na pierwszą drukowaną część. powoduje to bezpieczny, powolny ruch wycierania w miejscu gdzie wyciekający materiał nie spowoduje dużej szkody dla powierzchni modelu."
  5381. #~ msgctxt "cross_infill_apply_pockets_alternatingly label"
  5382. #~ msgid "Alternate Cross 3D Pockets"
  5383. #~ msgstr "Zamieniaj Kieszenie Krzyża 3D"
  5384. #~ msgctxt "skin_alternate_rotation label"
  5385. #~ msgid "Alternate Skin Rotation"
  5386. #~ msgstr "Zmień Kierunek Skóry"
  5387. #~ msgctxt "skin_alternate_rotation description"
  5388. #~ msgid "Alternate the direction in which the top/bottom layers are printed. Normally they are printed diagonally only. This setting adds the X-only and Y-only directions."
  5389. #~ msgstr "Zmień kierunek, w jakim drukowane są górne/dolne warstwy. Zazwyczaj są one drukowane na ukos. Ustawienie to dodaje kierunek \"tylko X\" i \"tylko Y\"."
  5390. #~ msgctxt "prime_tower_purge_volume description"
  5391. #~ msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle."
  5392. #~ msgstr "Ilość filamentu, która jest czyszczona podczas wycierania na wieży czyszczącej. Czyszczenie jest użyteczne do kompensowania utraty filamentu przez wypływanie z nieużywanej dyszy."
  5393. #~ msgctxt "machine_use_extruder_offset_to_offset_coords description"
  5394. #~ msgid "Apply the extruder offset to the coordinate system."
  5395. #~ msgstr "Zastosuj przesunięcie głowicy względem."
  5396. #~ msgctxt "bridge_wall_max_overhang label"
  5397. #~ msgid "Bridge Wall Max Overhang"
  5398. #~ msgstr "Maks. Nachylenie Ściany Mostu"
  5399. #~ msgctxt "machine_shape label"
  5400. #~ msgid "Build plate shape"
  5401. #~ msgstr "Kształt stołu"
  5402. #~ msgctxt "center_object label"
  5403. #~ msgid "Center object"
  5404. #~ msgstr "Wyśrodkuj Obiekt"
  5405. #~ msgctxt "prime_tower_circular label"
  5406. #~ msgid "Circular Prime Tower"
  5407. #~ msgstr "Okrągła Wieża Czyszcząca"
  5408. #~ msgctxt "retraction_combing description"
  5409. #~ 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 and also to only comb within the infill. Note that the 'Within Infill' option behaves exactly like the 'Not in Skin' option in earlier Cura releases."
  5410. #~ msgstr "Kombinowanie utrzymuje dyszę w już zadrukowanych obszarach podczas ruchu jałowego. Powoduje to nieco dłuższe ruchy jałowe, ale zmniejsza potrzebę retrakcji. Jeśli kombinowanie jest wyłączone, materiał się cofa, a dysza przemieszcza się w linii prostej do następnego punktu. Można też unikać kombinowania na górnych/dolnych obszarach powłoki, a także kombinować tylko wewnątrz wypełnienia. Opcja \"Wewnątrz Wypełnienia\" wymusza takie samo zachowanie, jak opcja \"Nie w Powłoce\" we wcześniejszych wydaniach Cura."
  5411. #~ msgctxt "retraction_combing description"
  5412. #~ 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 by combing within the infill only."
  5413. #~ msgstr "Kombinowanie utrzymuje dyszę w już zadrukowanych obszarach podczas ruchu jałowego. Powoduje to nieco dłuższe ruchy jałowe, ale zmniejsza potrzebę retrakcji Jeśli kombinowanie jest wyłączone, materiał się cofa, a dysza przemieszcza się w linii prostej do następnego punktu. Można też unikać kombinowania na górnych/dolnych obszarach skóry przez kombinowanie tylko wewnątrz wypełnienia."
  5414. #~ msgctxt "travel_compensate_overlapping_walls_x_enabled label"
  5415. #~ msgid "Compensate Inner Wall Overlaps"
  5416. #~ msgstr "Komp. Wew. Nakład. się Ścian"
  5417. #~ msgctxt "travel_compensate_overlapping_walls_0_enabled label"
  5418. #~ msgid "Compensate Outer Wall Overlaps"
  5419. #~ msgstr "Komp. Zew. Nakład. się Ścian"
  5420. #~ msgctxt "travel_compensate_overlapping_walls_enabled label"
  5421. #~ msgid "Compensate Wall Overlaps"
  5422. #~ msgstr "Kompensuj Nakładanie się Ścian"
  5423. #~ msgctxt "travel_compensate_overlapping_walls_enabled description"
  5424. #~ msgid "Compensate the flow for parts of a wall being printed where there is already a wall in place."
  5425. #~ msgstr "Kompensuje przepływ dla części, których ściana jest drukowana kiedy jest już w tym miejscu ściana."
  5426. #~ msgctxt "travel_compensate_overlapping_walls_x_enabled description"
  5427. #~ msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place."
  5428. #~ msgstr "Kompensuje przepływ dla części, których wewnętrzna ściana jest drukowana kiedy jest już w tym miejscu ściana."
  5429. #~ msgctxt "travel_compensate_overlapping_walls_0_enabled description"
  5430. #~ msgid "Compensate the flow for parts of an outer wall being printed where there is already a wall in place."
  5431. #~ msgstr "Kompensuje przepływ dla części, których zewnętrzna ściana jest drukowana kiedy jest już w tym miejscu ściana."
  5432. #~ msgctxt "infill_pattern option concentric_3d"
  5433. #~ msgid "Concentric 3D"
  5434. #~ msgstr "Koncentryczny 3D"
  5435. #~ msgctxt "support_bottom_pattern option concentric_3d"
  5436. #~ msgid "Concentric 3D"
  5437. #~ msgstr "Koncentryczny 3D"
  5438. #~ msgctxt "support_interface_pattern option concentric_3d"
  5439. #~ msgid "Concentric 3D"
  5440. #~ msgstr "Koncentryczny 3D"
  5441. #~ msgctxt "support_pattern option concentric_3d"
  5442. #~ msgid "Concentric 3D"
  5443. #~ msgstr "Koncentryczny 3D"
  5444. #~ msgctxt "support_roof_pattern option concentric_3d"
  5445. #~ msgid "Concentric 3D"
  5446. #~ msgstr "Koncentryczny 3D"
  5447. #~ msgctxt "zig_zaggify_infill description"
  5448. #~ msgid "Connect the ends where the infill pattern meets the inner wall using a lines which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduces the effects on infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used."
  5449. #~ msgstr "Łączy końce gdzie wypełnienie spotyka się z wewn. ścianą za pomocą linii, które podążają za kształtem wewn. ściany. Włączenie tej opcji może spowodować lepsze łączenie się wypełnienia ze ścianą i redukuje efekty związane z jakością na pionowych ścianach. Wyłączenie tej opcji redukuje ilość użytego materiału."
  5450. #~ msgctxt "connect_skin_polygons description"
  5451. #~ 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 happend midway over infill this feature can reduce the top surface quality."
  5452. #~ msgstr "Łączy górne/dolne ścieżki powłoki, gdy są one prowadzone obok siebie. Przy wzorze koncentrycznym, załączenie tego ustawienia znacznie zredukuje czas ruchów jałowych, ale ze względu na to, że połączenie może nastąpić w połowie drogi ponad wypełnieniem, ta fukncja może pogorszyć jakość górnej powierzchni."
  5453. #~ msgctxt "z_seam_corner description"
  5454. #~ 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."
  5455. #~ msgstr "Kontroluje, czy rogi na zewn. linii modelu wpływają na pozycję szwu. Brak oznacza, że rogi nie mają wpływu na pozycję szwu. Ukryj Szew powoduje, że szew będzie się bardziej pojawiał na wewn. rogach. Pokaż Szew powoduje, że szew będzie się bardziej pojawiał na zewn. rogach. Ukryj lub Pokaż Szew powoduje, że szew będzie się bardziej pojawiał na wewn. lub zewn. rogach."
  5456. #~ msgctxt "machine_nozzle_cool_down_speed label"
  5457. #~ msgid "Cool down speed"
  5458. #~ msgstr "Prędkość Chłodzenia"
  5459. #~ msgctxt "infill_mesh_order description"
  5460. #~ msgid "Determines which infill mesh is inside the infill of another infill mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes."
  5461. #~ msgstr "Określa, która siatka wypełnienia znajduje się wewnątrz wypełnienia innej siatki wypełnienia. Siatka wypełniająca o wyższym porządku modyfikuje wypełnienie siatki wypełnień o niższym porządku i normalnych siatek."
  5462. #~ msgctxt "machine_disallowed_areas label"
  5463. #~ msgid "Disallowed areas"
  5464. #~ msgstr "Zakazane obszary"
  5465. #~ msgctxt "support_xy_distance_overhang description"
  5466. #~ msgid "Distance of the support structure from the overhang in the X/Y directions. "
  5467. #~ msgstr "Odległość podpory od zwisu w kierunkach X/Y "
  5468. #~ msgctxt "machine_end_gcode label"
  5469. #~ msgid "End GCode"
  5470. #~ msgstr "Końcowy G-code"
  5471. #~ msgctxt "speed_equalize_flow_enabled label"
  5472. #~ msgid "Equalize Filament Flow"
  5473. #~ msgstr "Zrówn. Przepływ Filamentu"
  5474. #~ msgctxt "fill_perimeter_gaps option everywhere"
  5475. #~ msgid "Everywhere"
  5476. #~ msgstr "Wszędzie"
  5477. #~ msgctxt "expand_lower_skins label"
  5478. #~ msgid "Expand Bottom Skins Into Infill"
  5479. #~ msgstr "Rozszerz Dolną Powłokę Do Wypełn."
  5480. #~ msgctxt "expand_skins_into_infill label"
  5481. #~ msgid "Expand Skins Into Infill"
  5482. #~ msgstr "Rozszerz Powłokę Do Wypełn."
  5483. #~ msgctxt "expand_upper_skins label"
  5484. #~ msgid "Expand Top Skins Into Infill"
  5485. #~ msgstr "Rozszerz Górną Powłokę Do Wypełn."
  5486. #~ msgctxt "expand_skins_into_infill description"
  5487. #~ msgid "Expand skin areas of top and/or bottom skin of flat surfaces. By default, skins stop under the wall lines that surround infill but this can lead to holes appearing when the infill density is low. This setting extends the skins beyond the wall lines so that the infill on the next layer rests on skin."
  5488. #~ msgstr "Rozszerz obszary powłoki na górze i/lub dole powierzchni płaskich. Domyślnie, powłoka kończy się na linii ściany otaczające wypełnienie, chociaż może to prowadzić do powstawania dziur kiedy gęstość wypełnienia jest niska. Ustawienie to rozciąga powłokę poza linię ściany, dzięki czemu wypełnienie na kolejnej warstwie osiada na powłoce."
  5489. #~ msgctxt "expand_lower_skins description"
  5490. #~ msgid "Expand the bottom skin areas (areas with air below) so that they are anchored by the infill layers above and below."
  5491. #~ msgstr "Rozszerz dolną powłokę (obszary, pod którym jest powietrze) tak, aby zostały zakotwiczone o warstwy wypełniające powyżej i poniżej."
  5492. #~ msgctxt "expand_upper_skins description"
  5493. #~ msgid "Expand the top skin areas (areas with air above) so that they support infill above."
  5494. #~ msgstr "Rozszerz górne obszary ścian (obszary, które mają ponad sobą powietrze) tak, aby wspomagały wypełnienie powyżej."
  5495. #~ msgctxt "support_conical_enabled description"
  5496. #~ msgid "Experimental feature: Make support areas smaller at the bottom than at the overhang."
  5497. #~ msgstr "Opcja eksperymentalna: W dolnym obszarze podpory powinny być mniejsze niż na zwisie."
  5498. #~ msgctxt "machine_filament_park_distance label"
  5499. #~ msgid "Filament Park Distance"
  5500. #~ msgstr "Odległość Park. Filamentu"
  5501. #~ msgctxt "fill_perimeter_gaps label"
  5502. #~ msgid "Fill Gaps Between Walls"
  5503. #~ msgstr "Wypełnij Szczeliny Między Ścianami"
  5504. #~ msgctxt "fill_perimeter_gaps description"
  5505. #~ msgid "Fills the gaps between walls where no walls fit."
  5506. #~ msgstr "Wypełnia szczeliny pomiędzy ściany gdzie żadna ściana nie pasuje."
  5507. #~ msgctxt "filter_out_tiny_gaps label"
  5508. #~ msgid "Filter Out Tiny Gaps"
  5509. #~ msgstr "Filtruj Małe Luki"
  5510. #~ msgctxt "filter_out_tiny_gaps description"
  5511. #~ msgid "Filter out tiny gaps to reduce blobs on outside of model."
  5512. #~ msgstr "Filtruj małe luki, aby zredukować bloby na zewnątrz modelu."
  5513. #~ msgctxt "small_feature_speed_factor_0 label"
  5514. #~ msgid "First Layer Speed"
  5515. #~ msgstr "Prędkość pierwszej warstwy"
  5516. #~ msgctxt "prime_tower_flow description"
  5517. #~ msgid "Flow compensation: the amount of material extruded is multiplied by this value."
  5518. #~ msgstr "Kompensacja przepływu: ilość ekstrudowanego materiału jest mnożona przez tę wartość."
  5519. #~ msgctxt "flow_rate_extrusion_offset_factor label"
  5520. #~ msgid "Flow rate compensation factor"
  5521. #~ msgstr "Współczynnik kompensacji przepływu"
  5522. #~ msgctxt "flow_rate_max_extrusion_offset label"
  5523. #~ msgid "Flow rate compensation max extrusion offset"
  5524. #~ msgstr "Maks. offset ekstruzji do kompensowania przepływu"
  5525. #~ msgctxt "machine_gcode_flavor label"
  5526. #~ msgid "G-code Flavour"
  5527. #~ msgstr "Wersja G-code"
  5528. #~ msgctxt "machine_gcode_flavor label"
  5529. #~ msgid "G-code flavour"
  5530. #~ msgstr "Wersja G-code"
  5531. #~ msgctxt "material_guid description"
  5532. #~ msgid "GUID of the material. This is set automatically. "
  5533. #~ msgstr "GUID materiału. To jest ustawiana automatycznie "
  5534. #~ msgctxt "gantry_height label"
  5535. #~ msgid "Gantry height"
  5536. #~ msgstr "Wysokość Suwnicy (Gantry)"
  5537. #~ msgctxt "machine_end_gcode description"
  5538. #~ msgid ""
  5539. #~ "Gcode commands to be executed at the very end - separated by \n"
  5540. #~ "."
  5541. #~ msgstr ""
  5542. #~ "Polecenia G-code, które są wykonywane na samym końcu - oddzielone za pomocą \n"
  5543. #~ "."
  5544. #~ msgctxt "machine_start_gcode description"
  5545. #~ msgid ""
  5546. #~ "Gcode commands to be executed at the very start - separated by \n"
  5547. #~ "."
  5548. #~ msgstr ""
  5549. #~ "Polecenia G-code, które są wykonywane na samym początku - oddzielone za pomocą \n"
  5550. #~ "."
  5551. #~ msgctxt "machine_gcode_flavor label"
  5552. #~ msgid "Gcode flavour"
  5553. #~ msgstr "Wersja G-code"
  5554. #~ msgctxt "support_tree_enable description"
  5555. #~ msgid "Generate a tree-like support with branches that support your print. This may reduce material usage and print time, but greatly increases slicing time."
  5556. #~ msgstr "Generuj drzewiaste podpory z gałęziami podpierającymi wydruk. Może to zredukować zużycie materiału i czas wydruku, ale bardzo zwiększa czas cięcia."
  5557. #~ msgctxt "ironing_enabled description"
  5558. #~ msgid "Go over the top surface one additional time, but without extruding material. This is meant to melt the plastic on top further, creating a smoother surface."
  5559. #~ msgstr "Przejedź nad górną powierzchnią dodatkowy raz, ale bez ekstrudowania materiału. Topi to plastyk na górze, co powoduje gładszą powierzchnię."
  5560. #~ msgctxt "machine_heated_bed label"
  5561. #~ msgid "Has heated build plate"
  5562. #~ msgstr "Posiada podgrzewany stół"
  5563. #~ msgctxt "machine_nozzle_heat_up_speed label"
  5564. #~ msgid "Heat up speed"
  5565. #~ msgstr "Prędkość nagrzewania"
  5566. #~ msgctxt "machine_heat_zone_length label"
  5567. #~ msgid "Heat zone length"
  5568. #~ msgstr "Długość strefy cieplnej"
  5569. #~ msgctxt "infill_hollow label"
  5570. #~ msgid "Hollow Out Objects"
  5571. #~ msgstr "Wydrąż Model"
  5572. #~ msgctxt "machine_steps_per_mm_e description"
  5573. #~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion."
  5574. #~ msgstr "Ile kroków silnika krokowego będzie skutkowało ekstruzją 1mm."
  5575. #~ msgctxt "slicing_tolerance description"
  5576. #~ msgid "How to slice layers with diagonal surfaces. The areas of a layer can be generated based on where the middle of the layer intersects the surface (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the height of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Exclusive retains the most details, Inclusive makes for the best fit and Middle takes the least time to process."
  5577. #~ msgstr "Jak ciąć warstwy z ukośnymi powierzchniami. Obszary warstwy mogą być generowane na podstawie miejsca gdzie środek warstwy przecina się z powierzchnią (Środek). Alternatywnie każda warstwa może mieć obszary, które wpadają do środka objętości poprzez wysokość warstwy (Wyłączne) lub warstwa ma obszary, które wpadają do środka w każdym miejscu na warstwie (Włącznie). Wyłącznie zatrzymuje najwięcej detali, Włącznie powoduje najlepsze dopasowanie, a Środek wymaga najmniej czasu do przetworzenia."
  5578. #~ msgctxt "wall_min_flow_retract description"
  5579. #~ msgid "If enabled, retraction is used rather than combing for travel moves that replace walls whose flow is below the minimum flow threshold."
  5580. #~ msgstr "Gdy załączone, retrakcja jest używana zamiast kombinowanego ruchu jałowego, który zastępuje ściankę, której przepływ jest mniejszy od minimalnego."
  5581. #~ msgctxt "skin_no_small_gaps_heuristic label"
  5582. #~ msgid "Ignore Small Z Gaps"
  5583. #~ msgstr "Zignoruj Małe Luki Z"
  5584. #~ msgctxt "start_layers_at_same_position description"
  5585. #~ msgid "In each layer start with printing the object near the same point, so that we don't start a new layer with printing the piece which the previous layer ended with. This makes for better overhangs and small parts, but increases printing time."
  5586. #~ msgstr "Na każdej warstwie rozpocznij drukowanie obiektu blisko tego samego punktu, abyśmy nie rozpoczynali nowej warstwy w miejscu gdzie skończyła się poprzednia warstwa. Powoduje to lepsze nawisy i małe elementy, ale wydłuża czas druku."
  5587. #~ msgctxt "material_bed_temp_prepend label"
  5588. #~ msgid "Include build plate temperature"
  5589. #~ msgstr "Należy uwzględnić temperaturę stołu"
  5590. #~ msgctxt "material_print_temp_prepend label"
  5591. #~ msgid "Include material temperatures"
  5592. #~ msgstr "Uwzględnij temperaturę materiału"
  5593. #~ msgctxt "infill_mesh_order label"
  5594. #~ msgid "Infill Mesh Order"
  5595. #~ msgstr "Porządek Siatki Wypełnienia"
  5596. #~ msgctxt "z_offset_layer_0 label"
  5597. #~ msgid "Initial Layer Z Offset"
  5598. #~ msgstr "Przesunięcie w Osi Z Warstwy Początk."
  5599. #~ msgctxt "wall_x_extruder_nr label"
  5600. #~ msgid "Inner Walls Extruder"
  5601. #~ msgstr "Esktruder Wewn. Ściany"
  5602. #~ msgctxt "machine_center_is_zero label"
  5603. #~ msgid "Is center origin"
  5604. #~ msgstr "Począt. na Środku"
  5605. #~ msgctxt "machine_head_polygon label"
  5606. #~ msgid "Machine Head Polygon"
  5607. #~ msgstr "Obszar głowicy drukarki"
  5608. #~ msgctxt "machine_depth label"
  5609. #~ msgid "Machine depth"
  5610. #~ msgstr "Głębokość Drukarki"
  5611. #~ msgctxt "machine_head_with_fans_polygon label"
  5612. #~ msgid "Machine head & Fan polygon"
  5613. #~ msgstr "Obszar Głowicy i Wentylatora Drukarki"
  5614. #~ msgctxt "machine_head_polygon label"
  5615. #~ msgid "Machine head polygon"
  5616. #~ msgstr "Obszar Głowicy Drukarki"
  5617. #~ msgctxt "machine_height label"
  5618. #~ msgid "Machine height"
  5619. #~ msgstr "Wysokość drukarki"
  5620. #~ msgctxt "machine_width label"
  5621. #~ msgid "Machine width"
  5622. #~ msgstr "Szerokość drukarki"
  5623. #~ msgctxt "prime_tower_circular description"
  5624. #~ msgid "Make the prime tower as a circular shape."
  5625. #~ msgstr "Twórz wieżę czyszczącą o okrągłym kształcie."
  5626. #~ msgctxt "machine_max_feedrate_e label"
  5627. #~ msgid "Maximum Feedrate"
  5628. #~ msgstr "Maksymalna Prędk. Posuwu"
  5629. #~ msgctxt "speed_equalize_flow_max label"
  5630. #~ msgid "Maximum Speed for Flow Equalization"
  5631. #~ msgstr "Maks. Prędk. dla Zrówn. Przepływu"
  5632. #~ msgctxt "max_feedrate_z_override label"
  5633. #~ msgid "Maximum Z Speed"
  5634. #~ msgstr "Maksymalna Prędk. Z"
  5635. #~ msgctxt "max_extrusion_before_wipe description"
  5636. #~ msgid "Maximum material, that can be extruded before another nozzle wipe is initiated."
  5637. #~ msgstr "Maksymalna ilość materiału, który można wytłoczyć przed zainicjowaniem kolejnego czyszczenia dyszy."
  5638. #~ msgctxt "speed_equalize_flow_max description"
  5639. #~ msgid "Maximum print speed when adjusting the print speed in order to equalize flow."
  5640. #~ msgstr "Maksymalna prędkość drukowania podczas ustawiania prędkości druku w celu zrównoważenia przepływu."
  5641. #~ msgctxt "mesh_position_x label"
  5642. #~ msgid "Mesh position x"
  5643. #~ msgstr "Pozycja siatki X"
  5644. #~ msgctxt "mesh_position_y label"
  5645. #~ msgid "Mesh position y"
  5646. #~ msgstr "Pozycja siatki Y"
  5647. #~ msgctxt "mesh_position_z label"
  5648. #~ msgid "Mesh position z"
  5649. #~ msgstr "Pozycja siatki Z"
  5650. #~ msgctxt "support_minimal_diameter label"
  5651. #~ msgid "Minimum Diameter"
  5652. #~ msgstr "Minimalna Średnica"
  5653. #~ msgctxt "wall_min_flow label"
  5654. #~ msgid "Minimum Wall Flow"
  5655. #~ msgstr "Minimalny Przepływ Dla Ścianek"
  5656. #~ msgctxt "wall_min_flow description"
  5657. #~ msgid "Minimum allowed percentage flow for a wall line. The wall overlap compensation reduces a wall's flow when it lies close to an existing wall. Walls whose flow is less than this value will be replaced with a travel move. When using this setting, you must enable the wall overlap compensation and print the outer wall before inner walls."
  5658. #~ msgstr "Minimalny dopuszczalny przepływ procentowy dla linii ścianki. Kompensacja nakładania się ścianek redukuje przepływ, gdy dana ścianka znajduje się blisko wydrukowanej już ścianki. Ścianki, których przepływ powinien być mniejszy, niż ta wartość, będą zastąpione ruchami jałowymi. Aby używać tego ustawienia należy załączyć kompensację nakładających się ścianek oraz drukowanie ścianek zewnętrznych przed wewnętrznymi."
  5659. #~ msgctxt "minimum_interface_area description"
  5660. #~ msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will not be generated."
  5661. #~ msgstr "Minimalny rozmiar obszaru dla interfejsu podpór. Obszary, które mają powierzchnię mniejszą od tej wartości, nie będą generowane."
  5662. #~ msgctxt "minimum_bottom_area description"
  5663. #~ msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will not be generated."
  5664. #~ msgstr "Minimalny rozmiar obszaru dla podłoża podpór. Obszary, które mają powierzchnię mniejszą od tej wartości, nie będą generowane."
  5665. #~ msgctxt "minimum_roof_area description"
  5666. #~ msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will not be generated."
  5667. #~ msgstr "Minimalny rozmiar obszaru dla dachu podpór. Obszary, które mają powierzchnię mniejszą od tej wartości, nie będą generowane."
  5668. #~ msgctxt "support_minimal_diameter description"
  5669. #~ msgid "Minimum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower."
  5670. #~ msgstr "Minimalna średnica w kierunkach X/Y o małej powierzchni, który jest wspierana przez specjalną wieżę wspierającą."
  5671. #~ msgctxt "retraction_combing option noskin"
  5672. #~ msgid "No Skin"
  5673. #~ msgstr "Bez skóry"
  5674. #~ msgctxt "meshfix_keep_open_polygons description"
  5675. #~ 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 GCode."
  5676. #~ 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 można zszywać. Ta opcja powinna być używana jako ostatnia deska ratunku, gdy wszystko inne nie dostarczy właściwego G-code."
  5677. #~ msgctxt "fill_perimeter_gaps option nowhere"
  5678. #~ msgid "Nowhere"
  5679. #~ msgstr "Nigdzie"
  5680. #~ msgctxt "machine_nozzle_expansion_angle label"
  5681. #~ msgid "Nozzle angle"
  5682. #~ msgstr "Kąt dyszy"
  5683. #~ msgctxt "machine_nozzle_head_distance label"
  5684. #~ msgid "Nozzle length"
  5685. #~ msgstr "Długość dyszy"
  5686. #~ msgctxt "extruders_enabled_count label"
  5687. #~ msgid "Number of Extruders that are enabled"
  5688. #~ msgstr "Liczba Ekstruderów, które są dostępne"
  5689. #~ msgctxt "machine_use_extruder_offset_to_offset_coords label"
  5690. #~ msgid "Offset With Extruder"
  5691. #~ msgstr "Przesunięcie Ekstrudera"
  5692. #~ msgctxt "limit_support_retractions description"
  5693. #~ msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excesive stringing within the support structure."
  5694. #~ msgstr "Unikaj retrakcji podczas poruszania się od podpory do podpory w linii prostej. Załączenie tej funkcji spowoduje skrócenie czasu druku, lecz może prowadzić do nadmiernego nitkowania wewnątrz struktur podporowych."
  5695. #~ msgctxt "cross_infill_apply_pockets_alternatingly description"
  5696. #~ msgid "Only apply pockets at half of the four-way crossings in the cross 3D pattern and alternate the location of the pockets between heights where the pattern is touching itself."
  5697. #~ msgstr "Twórz kieszenie tylko w połowie czterostronnych skrzyżowań we wzorze krzyż 3D i zamieniaj pozycję kieszonek pomiędzy wysokościami gdzie wzór dotyka samego siebie."
  5698. #~ msgctxt "optimize_wall_printing_order description"
  5699. #~ 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."
  5700. #~ msgstr "Optymalizuj kolejność, według której drukowane są ściany, aby zredukować ilość retrakcji i długości ruchu jałowego. Większość części powinno na tym zyskać, ale niektóre mogą drukować się dłużej, dlatego prosimy o porównaniu czasu drukowania z i bez włączonej opcji."
  5701. #~ msgctxt "support_infill_angles description"
  5702. #~ msgid "Orientation of the infill pattern for supports. The support infill pattern is rotated in the horizontal plane."
  5703. #~ msgstr "Orientacja wzoru wypełnienia dla podpór. Wzór podpory jest obracany w płaszczyźnie poziomej."
  5704. #~ msgctxt "outer_inset_first label"
  5705. #~ msgid "Outer Before Inner Walls"
  5706. #~ msgstr "Zew. Ściany Przed Wew"
  5707. #~ msgctxt "machine_nozzle_tip_outer_diameter label"
  5708. #~ msgid "Outer nozzle diameter"
  5709. #~ msgstr "Zew. średnica dyszy"
  5710. #~ msgctxt "wall_min_flow_retract label"
  5711. #~ msgid "Prefer Retract"
  5712. #~ msgstr "Preferuj Retrakcję"
  5713. #~ msgctxt "prime_tower_purge_volume label"
  5714. #~ msgid "Prime Tower Purge Volume"
  5715. #~ msgstr "Pole Czyszczące Wieży Czyszcz."
  5716. #~ msgctxt "prime_tower_wall_thickness label"
  5717. #~ msgid "Prime Tower Thickness"
  5718. #~ msgstr "Grubość Wieży Czyszcz."
  5719. #~ msgctxt "spaghetti_infill_enabled description"
  5720. #~ msgid "Print the infill every so often, so that the filament will curl up chaotically inside the object. This reduces print time, but the behaviour is rather unpredictable."
  5721. #~ msgstr "Drukowanie wypełnienia tak często, aby filament zwisał chaotycznie wewnątrz przedmiotu. Zmniejsza to czas drukowania, ale zachowanie jest raczej nieprzewidywalne."
  5722. #~ msgctxt "speed_equalize_flow_enabled description"
  5723. #~ msgid "Print thinner than normal lines faster so that the amount of material extruded per second remains the same. Thin pieces in your model might require lines printed with smaller line width than provided in the settings. This setting controls the speed changes for such lines."
  5724. #~ msgstr "Wydrukuj cieńsze niż normalne linie szybciej, tak aby ilość materiału wytłaczanego na sekundę pozostała taka sama. Cienkie części modelu mogą wymagać drukowania linii o mniejszej szerokości linii niż podane w ustawieniach. To ustawienie kontroluje zmiany prędkości dla takich linii."
  5725. #~ msgctxt "outer_inset_first description"
  5726. #~ msgid "Prints walls in order of outside to inside when enabled. This can help improve dimensional accuracy in X and Y when using a high viscosity plastic like ABS; however it can decrease outer surface print quality, especially on overhangs."
  5727. #~ msgstr "Drukuje ściany w kolejności od zewnątrz do wewnątrz, gdy jest włączona. Może to poprawić dokładność wymiarów w modelach X i Y przy użyciu plastiku o wysokiej lepkości, takiego jak ABS; może jednak zmniejszyć jakość druku zewnętrznego, zwłaszcza na zwisach."
  5728. #~ msgctxt "raft_base_line_spacing label"
  5729. #~ msgid "Raft Line Spacing"
  5730. #~ msgstr "Rozstaw Linii Tratwy"
  5731. #~ msgctxt "infill_hollow description"
  5732. #~ msgid "Remove all infill and make the inside of the object eligible for support."
  5733. #~ msgstr "Usuń całe wypełnienie i spowoduj, aby środek modelu był wybieralny dla podpór."
  5734. #~ msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)"
  5735. #~ msgid "RepRap (Marlin/Sprinter)"
  5736. #~ msgstr "RepRap (Marlin/Sprinter)"
  5737. #~ msgctxt "machine_gcode_flavor option RepRap (Volumatric)"
  5738. #~ msgid "RepRap (Volumetric)"
  5739. #~ msgstr "RepRap (Objętościowy)"
  5740. #~ msgctxt "retraction_enable description"
  5741. #~ msgid "Retract the filament when the nozzle is moving over a non-printed area. "
  5742. #~ msgstr "Cofnij filament, gdy dysza porusza się nad obszarem, w którym nie ma drukować. "
  5743. #~ msgctxt "wipe_retraction_prime_speed label"
  5744. #~ msgid "Retraction Prime Speed"
  5745. #~ msgstr "Prędkość retrakcji Czyszczenia"
  5746. #~ msgctxt "shell label"
  5747. #~ msgid "Shell"
  5748. #~ msgstr "Powłoka"
  5749. #~ msgctxt "machine_show_variants label"
  5750. #~ msgid "Show machine variants"
  5751. #~ msgstr "Pokaż warianty drukarki"
  5752. #~ msgctxt "material_shrinkage_percentage label"
  5753. #~ msgid "Shrinkage Ratio"
  5754. #~ msgstr "Współczynnik Skurczu"
  5755. #~ msgctxt "material_shrinkage_percentage description"
  5756. #~ msgid "Shrinkage ratio in percentage."
  5757. #~ msgstr "Współczynnik skurczu w procentach."
  5758. #~ msgctxt "support_skip_some_zags label"
  5759. #~ msgid "Skip Some ZigZags Connections"
  5760. #~ msgstr "Pomijaj Niektóre Połączenia Zygzak"
  5761. #~ msgctxt "support_zag_skip_count description"
  5762. #~ msgid "Skip one in every N connection lines to make the support structure easier to break."
  5763. #~ msgstr "Pomijaj jedno na każde N linii połączeń, aby struktury podpór łatwiej się odrywały."
  5764. #~ msgctxt "support_skip_some_zags description"
  5765. #~ msgid "Skip some ZigZags connections to make the support structure easier to break."
  5766. #~ msgstr "Pomijaj niektóre połączenia Zygzak, aby struktura podpór łatwiej się odrywała."
  5767. #~ msgctxt "small_feature_speed_factor_0 description"
  5768. #~ msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhestion and accuracy."
  5769. #~ msgstr "Małe elementy na pierwszej warstwie zostaną wydrukowane z podanym procentem ich normalnej prędkości drukowania. Wolniejsze drukowanie może pomóc w zachowaniu dokładności i dokładności."
  5770. #~ msgctxt "small_feature_speed_factor description"
  5771. #~ msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhestion and accuracy."
  5772. #~ msgstr "Małe obiekty zostaną wydrukowane z podanym procentem ich normalnej prędkości drukowania. Wolniejsze drukowanie może pomóc w zachowaniu dokładności."
  5773. #~ msgctxt "smooth_spiralized_contours description"
  5774. #~ 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."
  5775. #~ msgstr "Wygładź spiralny kontur, aby zmniejszyć widoczność szwu Z (szew Z powinien być ledwo widoczny na wydruku, ale nadal będzie widoczny w widoku warstwy). Należy pamiętać, że wygładzanie będzie miało tendencję do rozmycia drobnych szczegółów powierzchni."
  5776. #~ msgctxt "spaghetti_flow label"
  5777. #~ msgid "Spaghetti Flow"
  5778. #~ msgstr "Przepływ Spaghetti"
  5779. #~ msgctxt "spaghetti_infill_enabled label"
  5780. #~ msgid "Spaghetti Infill"
  5781. #~ msgstr "Wypełnienie Spaghetti"
  5782. #~ msgctxt "spaghetti_infill_extra_volume label"
  5783. #~ msgid "Spaghetti Infill Extra Volume"
  5784. #~ msgstr "Ekstra Objętość Wypełn. Spaghetti"
  5785. #~ msgctxt "spaghetti_max_height label"
  5786. #~ msgid "Spaghetti Infill Maximum Height"
  5787. #~ msgstr "Maks. Wys. Wypełn. Spaghetti"
  5788. #~ msgctxt "spaghetti_infill_stepped label"
  5789. #~ msgid "Spaghetti Infill Stepping"
  5790. #~ msgstr "Krokowe Wypełn. Spaghetti"
  5791. #~ msgctxt "spaghetti_inset label"
  5792. #~ msgid "Spaghetti Inset"
  5793. #~ msgstr "Wkład Spaghetti"
  5794. #~ msgctxt "spaghetti_max_infill_angle label"
  5795. #~ msgid "Spaghetti Maximum Infill Angle"
  5796. #~ msgstr "Maks. Kąt Wypełn. Spaghetti"
  5797. #~ msgctxt "machine_start_gcode label"
  5798. #~ msgid "Start GCode"
  5799. #~ msgstr "Początk. G-code"
  5800. #~ msgctxt "start_layers_at_same_position label"
  5801. #~ msgid "Start Layers with the Same Part"
  5802. #~ msgstr "Rozp. Warstwy w tym Samym Punkcie"
  5803. #~ msgctxt "infill_pattern option tetrahedral"
  5804. #~ msgid "Tetrahedral"
  5805. #~ msgstr "Czworościenny"
  5806. #~ msgctxt "infill_overlap description"
  5807. #~ msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill."
  5808. #~ msgstr "Ilość nałożenia pomiędzy wypełnieniem a ścianami. Nieznaczne nałożenie pozwala ściśle łączyć się z wypełnieniem."
  5809. #~ msgctxt "skin_overlap description"
  5810. #~ msgid "The amount of overlap between the skin and the walls as a percentage of the line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall."
  5811. #~ msgstr "Wartość nałożenia pomiędzy skórą a ścianami jako procent szerokości linii. Delikatne nałożenie pozwala na dobre połączenie ścian ze skórą. Jest to procent średniej szerokości linii skóry i wewnętrznej ściany."
  5812. #~ msgctxt "skin_overlap description"
  5813. #~ msgid "The amount of overlap between the skin and the walls as a percentage of the skin line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall."
  5814. #~ msgstr "Ilość nałożenia pomiędzy skórą a ścianami w procentach szerokości linii skóry. Delikatne nałożenie pozawala na lepsze połączenie się ścian ze skórą. Jest to procent średniej szerokości linii skóry i wewnętrznej ściany."
  5815. #~ msgctxt "skin_overlap description"
  5816. #~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin."
  5817. #~ msgstr "Ilość nakładania się skóry i ścian. Lekkie nałożenie pozwala ściśle łączyć się ze skórą."
  5818. #~ msgctxt "skin_overlap_mm description"
  5819. #~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin."
  5820. #~ msgstr "Ilość nakładania się skóry i ścian. Lekkie nałożenie pozwala ściśle łączyć się ze skórą."
  5821. #~ msgctxt "switch_extruder_retraction_amount description"
  5822. #~ msgid "The amount of retraction: Set at 0 for no retraction at all. This should generally be the same as the length of the heat zone."
  5823. #~ msgstr "Długość retrakcji: Ustaw na 0, aby wyłączyć retrkację. To powinno ogólnie być takie samo jak długość strefy grzewczej."
  5824. #~ msgctxt "machine_filament_park_distance description"
  5825. #~ msgid "The distance from the tip of the nozzle where to park the filament when an extruder is no longer used."
  5826. #~ msgstr "Odległość od końcówki dyszy, gdzie parkować głowicę gdy nie jest używana."
  5827. #~ msgctxt "expand_skins_expand_distance description"
  5828. #~ msgid "The distance the skins are expanded into the infill. The default distance is enough to bridge the gap between the infill lines and will stop holes appearing in the skin where it meets the wall when the infill density is low. A smaller distance will often be sufficient."
  5829. #~ msgstr "Odległość na jaką powłoki zostają rozszerzone do wypełnienia. Domyślna odległość wystarcza, aby pokonać szczelinę między liniami wypełnienia i nie dopuścić do powstania dziur, gdzie spotyka się z powłoką, gdy gęstość wypełnienia jest niska. Mniejsza odległość będzie często wystarczająca."
  5830. #~ msgctxt "z_offset_layer_0 description"
  5831. #~ msgid "The extruder is offset from the normal height of the first layer by this amount. It can be positive (raised) or negative (lowered). Some filament types adhere to the build plate better if the extruder is raised slightly."
  5832. #~ msgstr "Ekstruder jest przesuwany z normalnej wysokości pierwszej warstwy o tą wartość. Może być dodatnia (uniesienie) lub ujemna (obniżenie). Niektóre typy filamentu przyklejają się lepiej do stołu jeżeli ekstruder jest lekko uniesiony."
  5833. #~ msgctxt "skirt_gap description"
  5834. #~ msgid ""
  5835. #~ "The horizontal distance between the skirt and the first layer of the print.\n"
  5836. #~ "This is the minimum distance, multiple skirt lines will extend outwards from this distance."
  5837. #~ msgstr ""
  5838. #~ "Pozioma odległość między obwódką a pierwszą warstwą nadruku.\n"
  5839. #~ "Jest to o minimalnej odległości. Z tej odległości linie będą nakładane w kierunku zewnętrznym."
  5840. #~ msgctxt "infill_offset_x description"
  5841. #~ msgid "The infill pattern is offset this distance along the X axis."
  5842. #~ msgstr "Wypełnienie jest przesunięte o taką odległość wzdłuż osi X."
  5843. #~ msgctxt "infill_offset_y description"
  5844. #~ msgid "The infill pattern is offset this distance along the Y axis."
  5845. #~ msgstr "Wypełnienie jest przesunięte o taką odległość wzdłuż osi Y."
  5846. #~ msgctxt "adaptive_layer_height_variation description"
  5847. #~ msgid "The maximum allowed height different from the base layer height in mm."
  5848. #~ msgstr "Maksymalna dozwolona różnica wysokości od podstawowej wysokości warstwy w mm."
  5849. #~ msgctxt "bridge_wall_max_overhang description"
  5850. #~ msgid "The maximum allowed width of the region of air below a wall line before the wall is printed using bridge settings. Expressed as a percentage of the wall line width. When the air gap is wider than this, the wall line is printed using the bridge settings. Otherwise, the wall line is printed using the normal settings. The lower the value, the more likely it is that overhung wall lines will be printed using bridge settings."
  5851. #~ msgstr "Maksymalna dozwolona szerokość obszaru powietrza pod linią ściany zanim zostanie wydrukowana ściana używająca ustawień mostu. Wyrażona w procentach szerokości linii ściany. Kiedy przestrzeń powietrza jest szersza od tego, linia ściany jest drukowana używając ustawień mostu. W przeciwnym wypadku linia ściany jest drukowana z normalnymi ustawieniami. Tym niższa wartość, tym większa szansa, że linie ściany na nawisach będą drukowane z ustawieniami mostu."
  5852. #~ msgctxt "spaghetti_max_infill_angle description"
  5853. #~ msgid "The maximum angle w.r.t. the Z axis of the inside of the print for areas which are to be filled with spaghetti infill afterwards. Lowering this value causes more angled parts in your model to be filled on each layer."
  5854. #~ msgstr "Maksymalny kąt w odniesieniu do Osi Z wewnątrz wydruku dla obszarów, które mają być wypełnione wypełnieniem spaghetti. Obniżenie tej wartości powoduje, że więcej części modelu, które są pod kątem, będzie wypełnianych na każdej warstwie."
  5855. #~ msgctxt "meshfix_maximum_deviation description"
  5856. #~ 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."
  5857. #~ msgstr "Maksymalne odchylenie dozwolone przy zmniejszaniu rozdzielczości dla ustawienia „Maksymalna rozdzielczość”. Jeśli to zwiększysz, wydruk będzie mniej dokładny, ale G-Code będzie mniejszy."
  5858. #~ msgctxt "support_join_distance description"
  5859. #~ msgid "The maximum distance between support structures in the X/Y directions. When seperate structures are closer together than this value, the structures merge into one."
  5860. #~ msgstr "Maksymalna odległość między podporami w kierunkach X/Y. Gdy oddzielne struktury są bliżej siebie niż ta wartość, struktury łączą się w jedną."
  5861. #~ msgctxt "flow_rate_max_extrusion_offset description"
  5862. #~ msgid "The maximum distance in mm to compensate."
  5863. #~ msgstr "Maksymalna odległość w mm do skompensowania."
  5864. #~ msgctxt "spaghetti_max_height description"
  5865. #~ msgid "The maximum height of inside space which can be combined and filled from the top."
  5866. #~ msgstr "Maksymalna wysokość przestrzeni wewnętrznej, którą można łączyć i napełniać od góry."
  5867. #~ msgctxt "max_feedrate_z_override description"
  5868. #~ msgid "The maximum speed with which the build plate is moved. Setting this to zero causes the print to use the firmware defaults for the maximum z speed."
  5869. #~ msgstr "Maksymalna prędkość przesuwu stołu. Ustawienie na zero powoduje, że druk używa domyślnych ustawień oprogramowania dla maksymalnej prędkości z."
  5870. #~ msgctxt "mold_width description"
  5871. #~ msgid "The minimal distance between the ouside of the mold and the outside of the model."
  5872. #~ msgstr "Minimalna odległość między zewnętrzną stroną formy i zewnętrzną stroną modelu."
  5873. #~ msgctxt "flow_rate_extrusion_offset_factor description"
  5874. #~ msgid "The multiplication factor for the flow rate -> distance translation."
  5875. #~ msgstr "Współczynnik mnożący przepływu -> tłumaczenie odległości."
  5876. #~ msgctxt "support_tree_wall_count description"
  5877. #~ msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
  5878. #~ msgstr "Liczba ścian gałęzi drzewiastej podpory. Grubsze ściany drukują się dłużej , ale nie odpadają tak łatwo."
  5879. #~ msgctxt "spaghetti_inset description"
  5880. #~ msgid "The offset from the walls from where the spaghetti infill will be printed."
  5881. #~ msgstr "Odsunięcie od ścian, z których będzie drukowane wypełnienie spaghetti."
  5882. #~ msgctxt "infill_pattern description"
  5883. #~ 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, cubic, octet, quarter cubic and concentric patterns are fully printed every layer. Cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction."
  5884. #~ msgstr "Wzór materiału wypełniającego wydruk. Linie i zygzaki zmieniają kierunek na przemiennych warstwach, redukując koszty materiału. Kratka, trójkąty, sześcienne, ośmiościenne, ćwierć sześcienny i koncentryczny wzór są drukowane w pełni na każdej warstwie. Sześcienne, ćwierć sześcienne i czworościenne wypełnienie zmienia się co każdą warstwę, aby zapewnić równy rozkład siły w każdym kierunku."
  5885. #~ msgctxt "infill_pattern description"
  5886. #~ 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, cubic, tetrahedral and concentric patterns are fully printed every layer. Cubic and tetrahedral infill change with every layer to provide a more equal distribution of strength over each direction."
  5887. #~ msgstr "Wzór materiału wypełniającego. Linia i zygzakowy wypełnienie zmienia kierunek na przemiennych warstwach zmniejszając koszt materiału. Wzory siatki, trójkątne, sześcienne, czworościenne i koncentryczne są w pełni drukowane na każdej warstwie. Wypełnienie sześcienne i czworościenne zmienia się co każdą warstwę, aby zapewnić równe rozłożenie siły w każdym kierunku."
  5888. #~ msgctxt "infill_pattern description"
  5889. #~ 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. Cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction."
  5890. #~ msgstr "Wzór materiału wypełniającego wydruk. Linie i zygzaki zmieniają kierunek na przemiennych warstwach, redukując koszty materiału. Kratka, trójkąty, tri-sześciokąt, sześcienne, ośmiościenne, ćwierć sześcienny i koncentryczny wzór są drukowane w pełni na każdej warstwie. Sześcienne, ćwierć sześcienne i czworościenne wypełnienie zmienia się co każdą warstwę, aby zapewnić równy rozkład siły w każdym kierunku."
  5891. #~ msgctxt "infill_pattern description"
  5892. #~ 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."
  5893. #~ msgstr "Wzorzec wypełnienia wydruku. Kierunek zamiany linii i zygzaka na alternatywnych warstwach, zmniejsza koszty materiałów. Wzorzec siatki, trójkąta, sześcianu, oktetu, ćwiartki sześciennej, krzyżyka i koncentryczny, są w pełni drukowane na każdej warstwie. Gyroid, sześcian, świartka sześcienna i oktet zmienia się z każdą warstwą, aby zapewnić bardziej równomierny rozkład sił w każdym kierunku."
  5894. #~ msgctxt "speed_layer_0 description"
  5895. #~ msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate."
  5896. #~ msgstr "Prędkość dla pierwszej warstwy. Niższa wartość jest zalecane w celu poprawy przyczepności do stołu."
  5897. #~ msgctxt "build_volume_temperature description"
  5898. #~ msgid "The temperature used for build volume. If this is 0, the build volume temperature will not be adjusted."
  5899. #~ msgstr "Temperatura stosowana dla obszaru roboczego. Jeżeli jest ustawione 0, temperatura nie będzie ustawiona."
  5900. #~ msgctxt "material_bed_temperature_layer_0 description"
  5901. #~ msgid "The temperature used for the heated build plate at the first layer."
  5902. #~ msgstr "Temperatura stosowana przy podgrzewanym stole na pierwszej warstwie."
  5903. #~ msgctxt "material_bed_temperature description"
  5904. #~ msgid "The temperature used for the heated build plate. If this is 0, the bed temperature will not be adjusted."
  5905. #~ msgstr "Temperatura stosowana dla podgrzewanej platformy roboczej. Jeżeli jest ustawione 0, temperatura stołu nie będzie ustawiona."
  5906. #~ msgctxt "material_bed_temperature description"
  5907. #~ msgid "The temperature used for the heated build plate. If this is 0, the bed will not heat up for this print."
  5908. #~ msgstr "Temperatura stosowana przy podgrzewanym stole. Jeśli jest to 0, stół nie rozgrzeje się dla tego wydruku."
  5909. #~ msgctxt "prime_tower_wall_thickness description"
  5910. #~ msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower."
  5911. #~ msgstr "Grubość pustej wieży czyszczącej. Grubość większa niż połowa minimalnej objętości wieży czyszczącej spowoduje, że wieża będzie miała dużą gęstość."
  5912. #~ msgctxt "wall_thickness description"
  5913. #~ msgid "The thickness of the outside walls in the horizontal direction. This value divided by the wall line width defines the number of walls."
  5914. #~ msgstr "Grubość ścian zewnętrznych w kierunku poziomym. Ta wartość podzielona przez szerokość linii ściany określa liczbę ścian."
  5915. #~ msgctxt "support_tree_wall_thickness description"
  5916. #~ msgid "The thickness of the walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
  5917. #~ msgstr "Grubość ścian gałęzi drzewiastej podpory. Grubsze ściany drukują się dłużej, ale nie odpadają tak łatwo."
  5918. #~ msgctxt "machine_gcode_flavor description"
  5919. #~ msgid "The type of gcode to be generated."
  5920. #~ msgstr "Typ G-code jaki ma być generowany."
  5921. #~ msgctxt "raft_smoothing description"
  5922. #~ msgid "This setting control 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."
  5923. #~ msgstr "To ustawienie kontroluje jak bardzo wewn. narożniki zewn. linii tratwy są zaokrąglone. Wewn. narożniki są zaokrąglone do pół-okręgów o promieniu równym wartości podanej w tym miejscu. To ustawienie usuwa też otwory w zewn. linii tratwy, które są mniejsze niż taki okrąg."
  5924. #~ msgctxt "adaptive_layer_height_threshold description"
  5925. #~ msgid "Threshold whether to use a smaller layer or not. This number is compared to the tan of the steepest slope in a layer."
  5926. #~ msgstr "Opóźnienie w wyborze, czy użyć mniejszej warstwy, czy nie. Ta liczba jest porównywana do najbardziej stromego nachylenia na warstwie."
  5927. #~ msgctxt "max_skin_angle_for_expansion description"
  5928. #~ 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, while an angle of 90° is vertical."
  5929. #~ msgstr "Górne i/lub dolne powierzchnie przedmiotu o kącie większym niż to ustawienie nie będą miały rozszerzonego górnej/dolnej skóry. Pozwala to uniknąć powiększania wąskich ścian, które powstają, gdy powierzchnia modelu ma blisko pionowe nachylenie. Kąt 0 ° jest poziomy, a kąt 90 ° jest pionowy."
  5930. #~ msgctxt "support_tree_enable label"
  5931. #~ msgid "Tree Support"
  5932. #~ msgstr "Drzewne Podpory"
  5933. #~ msgctxt "support_tree_wall_count label"
  5934. #~ msgid "Tree Support Wall Line Count"
  5935. #~ msgstr "Liczba Linii Ściany Drzewiastej Podpory"
  5936. #~ msgctxt "support_tree_wall_thickness label"
  5937. #~ msgid "Tree Support Wall Thickness"
  5938. #~ msgstr "Grubość Ściany Drzewiastej Podpory"
  5939. #~ msgctxt "adaptive_layer_height_enabled label"
  5940. #~ msgid "Use adaptive layers"
  5941. #~ msgstr "Użyj zmiennych warstw"
  5942. #~ msgctxt "relative_extrusion description"
  5943. #~ msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the Gcode. 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 Gcode script is output."
  5944. #~ msgstr "Używaj ekstruzji względnej zamiast bezwzględnej. Używanie względnych kroków osi E powoduje łatwiejszy postprocessing Gcodu. Jednakże nie jest to wspierane przez wszystkie drukarki i może powodować lekkie zakłamania w ilości podawanego materiału w porównaniu do kroków bezwzględnych. Niezależnie od tego ustawienia, tryb ekstruzji będzie zawsze ustawiany jako bezwzględny przez wyjściem jakiegokolwiek skryptu Gcode"
  5945. #~ msgctxt "material_bed_temp_wait label"
  5946. #~ msgid "Wait for build plate heatup"
  5947. #~ msgstr "Oczekiwanie na ogrzanie stołu"
  5948. #~ msgctxt "material_print_temp_wait label"
  5949. #~ msgid "Wait for nozzle heatup"
  5950. #~ msgstr "Oczekiwanie na ogrzanie dyszy"
  5951. #~ msgctxt "wall_overhang_angle description"
  5952. #~ 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."
  5953. #~ msgstr "Ścianka o większym kącie nawisu niż podany będzie drukowana z użyciem ustawień nawisającej ścianki. Przy wartości 90°, żadna ścianka nie będzie traktowana jako ścianka nawisająca."
  5954. #~ msgctxt "retraction_combing_max_distance description"
  5955. #~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction."
  5956. #~ msgstr "Przy wartości niezerowej, kombinowane ruchy jałowe o dystansie większym niż zadany bedą używały retrakcji."
  5957. #~ msgctxt "z_offset_taper_layers description"
  5958. #~ msgid "When non-zero, the Z offset is reduced to 0 over that many layers. A value of 0 means that the Z offset remains constant for all the layers in the print."
  5959. #~ msgstr "Kiedy niezerowe, przesunięcie w osi Z jest redukowane do zera w trakcie drukowania takiej ilości warstw. Wartość 0 oznacza, że przesunięcie pozostaje stałe dla wszystkich warstw wydruku."
  5960. #~ msgctxt "skin_no_small_gaps_heuristic description"
  5961. #~ msgid "When the model has small vertical gaps, about 5% extra computation time can be spent on generating top and bottom skin in these narrow spaces. In such case, disable the setting."
  5962. #~ msgstr "Jeśli model ma małe, pionowe szczeliny, to można wykorzystać dodatkowe 5% mocy obliczeniowej do wygenerowania górnej i dolnej skóry w wąskich przestrzeniach. W takim wypadku, wyłącz tę opcję."
  5963. #~ msgctxt "wipe_hop_enable description"
  5964. #~ 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."
  5965. #~ 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."
  5966. #~ msgctxt "clean_between_layers description"
  5967. #~ msgid "Whether to include nozzle wipe G-Code between layers. 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."
  5968. #~ msgstr "Włącza w G-Code wycieranie dyszy między warstwami. Włączenie tego ustawienia może wpłynąć na zachowanie retrakcji przy zmianie warstwy. Użyj ustawień „Czyszczenie przy retrakcji”, aby kontrolować retrakcję na warstwach, na których będzie działał skrypt czyszczenia."
  5969. #~ msgctxt "print_sequence description"
  5970. #~ 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 only possible if 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."
  5971. #~ msgstr "Czy drukować wszystkie modele po jednej warstwie, czy poczekać na zakończenie jednego modelu, przed przejściem do następnego. Tryb Jeden na raz jest możliwy, gdy wszystkie modele są oddzielone w taki sposób, aby cała głowica drukująca mogła się poruszać między wszystkimi modelami i są one niższe niż odległość pomiędzy dyszą i osiami X/Y."
  5972. #~ msgctxt "spaghetti_infill_stepped description"
  5973. #~ msgid "Whether to print spaghetti infill in steps or extrude all the infill filament at the end of the print."
  5974. #~ msgstr "Czy drukować wypełnienie spaghetti krokami, czy ekstrudować filament wypełnienia na końcu wydruku."
  5975. #~ msgctxt "dual_pre_wipe label"
  5976. #~ msgid "Wipe Nozzle After Switch"
  5977. #~ msgstr "Wytrzyj Dyszę po Przełączeniu"
  5978. #~ msgctxt "wipe_hop_enable label"
  5979. #~ msgid "Wipe Z Hop When Retracted"
  5980. #~ msgstr "Czyszczący skok Z jeśli jest retrakcja"
  5981. #~ msgctxt "z_offset_taper_layers label"
  5982. #~ msgid "Z Offset Taper Layers"
  5983. #~ msgstr "Warstwy Zbieżne Przesunięcia Z"
  5984. #~ msgctxt "support_zag_skip_count label"
  5985. #~ msgid "ZigZag Connection Skip Count"
  5986. #~ msgstr "Ilość Pominięć Połącz. Zygzak"
  5987. #~ msgctxt "blackmagic description"
  5988. #~ msgid "category_blackmagic"
  5989. #~ msgstr "category_blackmagic"
  5990. #~ msgctxt "meshfix description"
  5991. #~ msgid "category_fixes"
  5992. #~ msgstr "poprawki_kategorii"
  5993. #~ msgctxt "experimental description"
  5994. #~ msgid "experimental!"
  5995. #~ msgstr "eksperymentalne!"