fdmprinter.def.json.po 267 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977
  1. # Cura JSON setting files
  2. # Copyright (C) 2018 Ultimaker
  3. # This file is distributed under the same license as the Cura package.
  4. # Ruben Dulek <r.dulek@ultimaker.com>, 2018.
  5. #
  6. msgid ""
  7. msgstr ""
  8. "Project-Id-Version: Cura 3.5\n"
  9. "Report-Msgid-Bugs-To: r.dulek@ultimaker.com"
  10. "POT-Creation-Date: 2018-09-19 17:07+0000\n"
  11. "PO-Revision-Date: 2018-09-21 21:52+0200\n"
  12. "Last-Translator: 'Jaguś' Paweł Jagusiak, Andrzej 'anraf1001' Rafalski and Jakub 'drzejkopf' Świeciński\n"
  13. "Language-Team: reprapy.pl\n"
  14. "Language: pl_PL\n"
  15. "MIME-Version: 1.0\n"
  16. "Content-Type: text/plain; charset=UTF-8\n"
  17. "Content-Transfer-Encoding: 8bit\n"
  18. "X-Generator: Poedit 2.1.1\n"
  19. "POT-Creation-Date: \n"
  20. #: fdmprinter.def.json
  21. msgctxt "machine_settings label"
  22. msgid "Machine"
  23. msgstr "Drukarka"
  24. #: fdmprinter.def.json
  25. msgctxt "machine_settings description"
  26. msgid "Machine specific settings"
  27. msgstr "Specyficzne ustawienia drukarki"
  28. #: fdmprinter.def.json
  29. msgctxt "machine_name label"
  30. msgid "Machine Type"
  31. msgstr "Typ drukarki"
  32. #: fdmprinter.def.json
  33. msgctxt "machine_name description"
  34. msgid "The name of your 3D printer model."
  35. msgstr "Nazwa modelu twojej drukarki."
  36. #: fdmprinter.def.json
  37. msgctxt "machine_show_variants label"
  38. msgid "Show Machine Variants"
  39. msgstr "Pokaż Warianty Maszyny"
  40. #: fdmprinter.def.json
  41. msgctxt "machine_show_variants description"
  42. msgid "Whether to show the different variants of this machine, which are described in separate json files."
  43. msgstr "Czy wyświetlać różna warianty drukarki, które są opisane w oddzielnych plikach JSON?"
  44. #: fdmprinter.def.json
  45. msgctxt "machine_start_gcode label"
  46. msgid "Start G-code"
  47. msgstr "Początkowy G-code"
  48. #: fdmprinter.def.json
  49. msgctxt "machine_start_gcode description"
  50. msgid ""
  51. "G-code commands to be executed at the very start - separated by \n"
  52. "."
  53. msgstr ""
  54. "Polecenia G-code, które są wykonywane na samym początku - oddzielone za pomocą \n"
  55. "."
  56. #: fdmprinter.def.json
  57. msgctxt "machine_end_gcode label"
  58. msgid "End G-code"
  59. msgstr "Końcowy G-code"
  60. #: fdmprinter.def.json
  61. msgctxt "machine_end_gcode description"
  62. msgid ""
  63. "G-code commands to be executed at the very end - separated by \n"
  64. "."
  65. msgstr ""
  66. "Polecenia G-code, które są wykonywane na samym końcu - oddzielone za pomocą \n"
  67. "."
  68. #: fdmprinter.def.json
  69. msgctxt "material_guid label"
  70. msgid "Material GUID"
  71. msgstr "GUID Materiału"
  72. #: fdmprinter.def.json
  73. msgctxt "material_guid description"
  74. msgid "GUID of the material. This is set automatically. "
  75. msgstr "GUID materiału. To jest ustawiana automatycznie "
  76. #: fdmprinter.def.json
  77. msgctxt "material_diameter label"
  78. msgid "Diameter"
  79. msgstr "Średnica"
  80. #: fdmprinter.def.json
  81. msgctxt "material_diameter description"
  82. msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament."
  83. msgstr "Dostosowuje średnicę stosowanego filamentu. Dopasuj tę wartość do średnicy stosowanego filamentu."
  84. #: fdmprinter.def.json
  85. msgctxt "material_bed_temp_wait label"
  86. msgid "Wait for Build Plate Heatup"
  87. msgstr "Czekaj na Podgrzanie Stołu"
  88. #: fdmprinter.def.json
  89. msgctxt "material_bed_temp_wait description"
  90. msgid "Whether to insert a command to wait until the build plate temperature is reached at the start."
  91. msgstr "Czy wstawić na początku komendę, czekającą aż temperatura stołu zostanie osiągnięta."
  92. #: fdmprinter.def.json
  93. msgctxt "material_print_temp_wait label"
  94. msgid "Wait for Nozzle Heatup"
  95. msgstr "Czekaj na Podgrzanie Dyszy"
  96. #: fdmprinter.def.json
  97. msgctxt "material_print_temp_wait description"
  98. msgid "Whether to wait until the nozzle temperature is reached at the start."
  99. msgstr "Poczekaj, aż temperatura dyszy zostanie osiągnięta na początku."
  100. #: fdmprinter.def.json
  101. msgctxt "material_print_temp_prepend label"
  102. msgid "Include Material Temperatures"
  103. msgstr "Załącz Temperaturę Materiału"
  104. #: fdmprinter.def.json
  105. msgctxt "material_print_temp_prepend description"
  106. 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."
  107. 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."
  108. #: fdmprinter.def.json
  109. msgctxt "material_bed_temp_prepend label"
  110. msgid "Include Build Plate Temperature"
  111. msgstr "Załącz Temperaturę Stołu"
  112. #: fdmprinter.def.json
  113. msgctxt "material_bed_temp_prepend description"
  114. 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."
  115. 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."
  116. #: fdmprinter.def.json
  117. msgctxt "machine_width label"
  118. msgid "Machine Width"
  119. msgstr "Szerokość Maszyny"
  120. #: fdmprinter.def.json
  121. msgctxt "machine_width description"
  122. msgid "The width (X-direction) of the printable area."
  123. msgstr "Szerokość (w kierunku X) obszaru roboczego."
  124. #: fdmprinter.def.json
  125. msgctxt "machine_depth label"
  126. msgid "Machine Depth"
  127. msgstr "Głębokość Maszyny"
  128. #: fdmprinter.def.json
  129. msgctxt "machine_depth description"
  130. msgid "The depth (Y-direction) of the printable area."
  131. msgstr "Głębokość (w kierunku Y) obszaru drukowania."
  132. #: fdmprinter.def.json
  133. msgctxt "machine_shape label"
  134. msgid "Build Plate Shape"
  135. msgstr "Kształt Stołu"
  136. #: fdmprinter.def.json
  137. msgctxt "machine_shape description"
  138. msgid "The shape of the build plate without taking unprintable areas into account."
  139. msgstr "Kształt stołu bez uwzględniania obszarów niedrukowalnych."
  140. #: fdmprinter.def.json
  141. msgctxt "machine_shape option rectangular"
  142. msgid "Rectangular"
  143. msgstr "Prostokątny"
  144. #: fdmprinter.def.json
  145. msgctxt "machine_shape option elliptic"
  146. msgid "Elliptic"
  147. msgstr "Eliptyczny"
  148. #: fdmprinter.def.json
  149. msgctxt "machine_buildplate_type label"
  150. msgid "Build Plate Material"
  151. msgstr "Materiał Platformy Roboczej"
  152. #: fdmprinter.def.json
  153. msgctxt "machine_buildplate_type description"
  154. msgid "The material of the build plate installed on the printer."
  155. msgstr "Materiał platformy roboczej zainstalowanej w drukarce."
  156. #: fdmprinter.def.json
  157. msgctxt "machine_buildplate_type option glass"
  158. msgid "Glass"
  159. msgstr "Szkło"
  160. #: fdmprinter.def.json
  161. msgctxt "machine_buildplate_type option aluminum"
  162. msgid "Aluminum"
  163. msgstr "Aluminium"
  164. #: fdmprinter.def.json
  165. msgctxt "machine_height label"
  166. msgid "Machine Height"
  167. msgstr "Wysokość Maszyny"
  168. #: fdmprinter.def.json
  169. msgctxt "machine_height description"
  170. msgid "The height (Z-direction) of the printable area."
  171. msgstr "Wysokość (w kierunku Z) obszaru drukowania."
  172. #: fdmprinter.def.json
  173. msgctxt "machine_heated_bed label"
  174. msgid "Has Heated Build Plate"
  175. msgstr "Posiada Podgrzewany Stół"
  176. #: fdmprinter.def.json
  177. msgctxt "machine_heated_bed description"
  178. msgid "Whether the machine has a heated build plate present."
  179. msgstr "Czy maszyna ma podgrzewany stół?"
  180. #: fdmprinter.def.json
  181. msgctxt "machine_center_is_zero label"
  182. msgid "Is Center Origin"
  183. msgstr "Środek to Początek"
  184. #: fdmprinter.def.json
  185. msgctxt "machine_center_is_zero description"
  186. msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area."
  187. msgstr "Określa, czy współrzędne zero X/Y znajdują się na środku pola wydruku."
  188. #: fdmprinter.def.json
  189. msgctxt "machine_extruder_count label"
  190. msgid "Number of Extruders"
  191. msgstr "Liczba Ekstruderów"
  192. #: fdmprinter.def.json
  193. msgctxt "machine_extruder_count description"
  194. msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle."
  195. msgstr "Liczba zespołów esktruderów. Zespół ekstrudera to kombinacja podajnika, rurki Bowden i dyszy."
  196. #: fdmprinter.def.json
  197. msgctxt "extruders_enabled_count label"
  198. msgid "Number of Extruders that are enabled"
  199. msgstr "Liczba Ekstruderów, które są dostępne"
  200. #: fdmprinter.def.json
  201. msgctxt "extruders_enabled_count description"
  202. msgid "Number of extruder trains that are enabled; automatically set in software"
  203. msgstr "Liczba zespołów ekstruderów, które są dostępne; automatycznie ustawiane w oprogramowaniu"
  204. #: fdmprinter.def.json
  205. msgctxt "machine_nozzle_tip_outer_diameter label"
  206. msgid "Outer nozzle diameter"
  207. msgstr "Zewn. średnica dyszy"
  208. #: fdmprinter.def.json
  209. msgctxt "machine_nozzle_tip_outer_diameter description"
  210. msgid "The outer diameter of the tip of the nozzle."
  211. msgstr "Zewnętrzna średnica końcówki dyszy."
  212. #: fdmprinter.def.json
  213. msgctxt "machine_nozzle_head_distance label"
  214. msgid "Nozzle length"
  215. msgstr "Długość dyszy"
  216. #: fdmprinter.def.json
  217. msgctxt "machine_nozzle_head_distance description"
  218. msgid "The height difference between the tip of the nozzle and the lowest part of the print head."
  219. msgstr "Różnica w wysokości pomiędzy końcówką dyszy a najniższą częścą głowicy drukującej."
  220. #: fdmprinter.def.json
  221. msgctxt "machine_nozzle_expansion_angle label"
  222. msgid "Nozzle angle"
  223. msgstr "Kąt dyszy"
  224. #: fdmprinter.def.json
  225. msgctxt "machine_nozzle_expansion_angle description"
  226. msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle."
  227. msgstr "Kąt pomiędzy poziomą powierzchnią a częścią stożkową bezpośrednio ponad dyszą."
  228. #: fdmprinter.def.json
  229. msgctxt "machine_heat_zone_length label"
  230. msgid "Heat zone length"
  231. msgstr "Długość strefy cieplnej"
  232. #: fdmprinter.def.json
  233. msgctxt "machine_heat_zone_length description"
  234. msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament."
  235. msgstr "Odległość od końcówki dyszy, z której ciepło dyszy przenoszone jest do filamentu."
  236. #: fdmprinter.def.json
  237. msgctxt "machine_filament_park_distance label"
  238. msgid "Filament Park Distance"
  239. msgstr "Odległość Park. Filamentu"
  240. #: fdmprinter.def.json
  241. msgctxt "machine_filament_park_distance description"
  242. msgid "The distance from the tip of the nozzle where to park the filament when an extruder is no longer used."
  243. msgstr "Odległość od końcówki dyszy, gdzie parkować głowicę gdy nie jest używana."
  244. #: fdmprinter.def.json
  245. msgctxt "machine_nozzle_temp_enabled label"
  246. msgid "Enable Nozzle Temperature Control"
  247. msgstr "Włącz Kontrolę Temp. Dyszy"
  248. #: fdmprinter.def.json
  249. msgctxt "machine_nozzle_temp_enabled description"
  250. msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura."
  251. msgstr "Czy kontrolować temperaturę przez Cura? Wyłącz tę funkcję, aby kontrolować temperaturę dyszy poza Cura."
  252. #: fdmprinter.def.json
  253. msgctxt "machine_nozzle_heat_up_speed label"
  254. msgid "Heat up speed"
  255. msgstr "Prędkość nagrzewania"
  256. #: fdmprinter.def.json
  257. msgctxt "machine_nozzle_heat_up_speed description"
  258. msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature."
  259. msgstr "Szybkość (° C/s.), z którą dysza ogrzewa się - średnia z normlanej temperatury druku i temperatury czuwania."
  260. #: fdmprinter.def.json
  261. msgctxt "machine_nozzle_cool_down_speed label"
  262. msgid "Cool down speed"
  263. msgstr "Prędkość Chłodzenia"
  264. #: fdmprinter.def.json
  265. msgctxt "machine_nozzle_cool_down_speed description"
  266. msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature."
  267. msgstr "Szybkość (° C/s.), z którą dysza chłodzi się - średnia z normlanej temperatury druku i temperatury czuwania."
  268. #: fdmprinter.def.json
  269. msgctxt "machine_min_cool_heat_time_window label"
  270. msgid "Minimal Time Standby Temperature"
  271. msgstr "Minimalny Czas Temp. Czuwania"
  272. #: fdmprinter.def.json
  273. msgctxt "machine_min_cool_heat_time_window description"
  274. 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."
  275. 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."
  276. #: fdmprinter.def.json
  277. msgctxt "machine_gcode_flavor label"
  278. msgid "G-code flavour"
  279. msgstr "Wersja G-code"
  280. #: fdmprinter.def.json
  281. msgctxt "machine_gcode_flavor description"
  282. msgid "The type of g-code to be generated."
  283. msgstr "Typ g-code, który ma być generowany."
  284. #: fdmprinter.def.json
  285. msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)"
  286. msgid "Marlin"
  287. msgstr "Marlin"
  288. #: fdmprinter.def.json
  289. msgctxt "machine_gcode_flavor option RepRap (Volumetric)"
  290. msgid "Marlin (Volumetric)"
  291. msgstr "Marlin (Objętościowy)"
  292. #: fdmprinter.def.json
  293. msgctxt "machine_gcode_flavor option RepRap (RepRap)"
  294. msgid "RepRap"
  295. msgstr "RepRap"
  296. #: fdmprinter.def.json
  297. msgctxt "machine_gcode_flavor option UltiGCode"
  298. msgid "Ultimaker 2"
  299. msgstr "Ultimaker 2"
  300. #: fdmprinter.def.json
  301. msgctxt "machine_gcode_flavor option Griffin"
  302. msgid "Griffin"
  303. msgstr "Griffin"
  304. #: fdmprinter.def.json
  305. msgctxt "machine_gcode_flavor option Makerbot"
  306. msgid "Makerbot"
  307. msgstr "Makerbot"
  308. #: fdmprinter.def.json
  309. msgctxt "machine_gcode_flavor option BFB"
  310. msgid "Bits from Bytes"
  311. msgstr "Bits from Bytes"
  312. #: fdmprinter.def.json
  313. msgctxt "machine_gcode_flavor option MACH3"
  314. msgid "Mach3"
  315. msgstr "Mach3"
  316. #: fdmprinter.def.json
  317. msgctxt "machine_gcode_flavor option Repetier"
  318. msgid "Repetier"
  319. msgstr "Repetier"
  320. #: fdmprinter.def.json
  321. msgctxt "machine_firmware_retract label"
  322. msgid "Firmware Retraction"
  323. msgstr "Retrakcja Programowa"
  324. #: fdmprinter.def.json
  325. msgctxt "machine_firmware_retract description"
  326. msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material."
  327. msgstr "Używaj komend retrakcji (G10/G11) zamiast używać współrzędną E w komendzie G1, aby wycofać materiał."
  328. #: fdmprinter.def.json
  329. msgctxt "machine_disallowed_areas label"
  330. msgid "Disallowed areas"
  331. msgstr "Zakazane obszary"
  332. #: fdmprinter.def.json
  333. msgctxt "machine_disallowed_areas description"
  334. msgid "A list of polygons with areas the print head is not allowed to enter."
  335. msgstr "Lista obszarów, we których głowica nie może się poruszać."
  336. #: fdmprinter.def.json
  337. msgctxt "nozzle_disallowed_areas label"
  338. msgid "Nozzle Disallowed Areas"
  339. msgstr "Niedozwolone Obszary Dyszy"
  340. #: fdmprinter.def.json
  341. msgctxt "nozzle_disallowed_areas description"
  342. msgid "A list of polygons with areas the nozzle is not allowed to enter."
  343. msgstr "Lista obszarów, w które dysze nie mogą wjeżdżać."
  344. #: fdmprinter.def.json
  345. msgctxt "machine_head_polygon label"
  346. msgid "Machine head polygon"
  347. msgstr "Obszar Głowicy Drukarki"
  348. #: fdmprinter.def.json
  349. msgctxt "machine_head_polygon description"
  350. msgid "A 2D silhouette of the print head (fan caps excluded)."
  351. msgstr "Sylwetka 2D głowicy drukującej (bez nasadki wentylatora)."
  352. #: fdmprinter.def.json
  353. msgctxt "machine_head_with_fans_polygon label"
  354. msgid "Machine head & Fan polygon"
  355. msgstr "Obszar Głowicy i Wentylatora Drukarki"
  356. #: fdmprinter.def.json
  357. msgctxt "machine_head_with_fans_polygon description"
  358. msgid "A 2D silhouette of the print head (fan caps included)."
  359. msgstr "Sylwetka 2D głowicy drukującej (z nasadką wentylatora)."
  360. #: fdmprinter.def.json
  361. msgctxt "gantry_height label"
  362. msgid "Gantry height"
  363. msgstr "Wysokość Suwnicy (Gantry)"
  364. #: fdmprinter.def.json
  365. msgctxt "gantry_height description"
  366. msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)."
  367. msgstr "Różnica wysokości między wierzchołkiem dyszy a suwnicą (gantry) (osie X i Y)."
  368. #: fdmprinter.def.json
  369. msgctxt "machine_nozzle_id label"
  370. msgid "Nozzle ID"
  371. msgstr "ID Dyszy"
  372. #: fdmprinter.def.json
  373. msgctxt "machine_nozzle_id description"
  374. msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"."
  375. msgstr "ID dyszy dla wózka ekstrudera np. \"AA 0.4\" i \"BB 0.8\"."
  376. #: fdmprinter.def.json
  377. msgctxt "machine_nozzle_size label"
  378. msgid "Nozzle Diameter"
  379. msgstr "Średnica dyszy"
  380. #: fdmprinter.def.json
  381. msgctxt "machine_nozzle_size description"
  382. msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size."
  383. msgstr "Wewnętrzna średnica dyszy. Użyj tego ustawienia, jeśli używasz dyszę o niestandardowym rozmiarze."
  384. #: fdmprinter.def.json
  385. msgctxt "machine_use_extruder_offset_to_offset_coords label"
  386. msgid "Offset With Extruder"
  387. msgstr "Przesunięcie Ekstrudera"
  388. #: fdmprinter.def.json
  389. msgctxt "machine_use_extruder_offset_to_offset_coords description"
  390. msgid "Apply the extruder offset to the coordinate system."
  391. msgstr "Zastosuj przesunięcie głowicy względem."
  392. #: fdmprinter.def.json
  393. msgctxt "extruder_prime_pos_z label"
  394. msgid "Extruder Prime Z Position"
  395. msgstr "Pozycja Z Czyszczenia Dyszy"
  396. #: fdmprinter.def.json
  397. msgctxt "extruder_prime_pos_z description"
  398. msgid "The Z coordinate of the position where the nozzle primes at the start of printing."
  399. msgstr "Współrzędna Z, w której dysza jest czyszczona na początku wydruku."
  400. #: fdmprinter.def.json
  401. msgctxt "extruder_prime_pos_abs label"
  402. msgid "Absolute Extruder Prime Position"
  403. msgstr "Bezwzgl. Końcowa Pozycja Ekstrudera"
  404. #: fdmprinter.def.json
  405. msgctxt "extruder_prime_pos_abs description"
  406. msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head."
  407. msgstr "Zmień pozycję końcową ekstrudera na bezwzględną, zamiast względem ostatniej pozycji głowicy."
  408. #: fdmprinter.def.json
  409. msgctxt "machine_max_feedrate_x label"
  410. msgid "Maximum Speed X"
  411. msgstr "Maksymalna Prędkość X"
  412. #: fdmprinter.def.json
  413. msgctxt "machine_max_feedrate_x description"
  414. msgid "The maximum speed for the motor of the X-direction."
  415. msgstr "Maksymalna prędkość silnika osi X."
  416. #: fdmprinter.def.json
  417. msgctxt "machine_max_feedrate_y label"
  418. msgid "Maximum Speed Y"
  419. msgstr "Maksymalna Prędkość Y"
  420. #: fdmprinter.def.json
  421. msgctxt "machine_max_feedrate_y description"
  422. msgid "The maximum speed for the motor of the Y-direction."
  423. msgstr "Maksymalna prędkość silnika osi Y."
  424. #: fdmprinter.def.json
  425. msgctxt "machine_max_feedrate_z label"
  426. msgid "Maximum Speed Z"
  427. msgstr "Maksymalna Prędkość Z"
  428. #: fdmprinter.def.json
  429. msgctxt "machine_max_feedrate_z description"
  430. msgid "The maximum speed for the motor of the Z-direction."
  431. msgstr "Maksymalna prędkość silnika osi Z."
  432. #: fdmprinter.def.json
  433. msgctxt "machine_max_feedrate_e label"
  434. msgid "Maximum Feedrate"
  435. msgstr "Maksymalna Prędk. Posuwu"
  436. #: fdmprinter.def.json
  437. msgctxt "machine_max_feedrate_e description"
  438. msgid "The maximum speed of the filament."
  439. msgstr "Maksymalna prędkość filamentu."
  440. #: fdmprinter.def.json
  441. msgctxt "machine_max_acceleration_x label"
  442. msgid "Maximum Acceleration X"
  443. msgstr "Maksymalne Przyspieszenie X"
  444. #: fdmprinter.def.json
  445. msgctxt "machine_max_acceleration_x description"
  446. msgid "Maximum acceleration for the motor of the X-direction"
  447. msgstr "Maksymalne przyspieszenie dla silnika osi X"
  448. #: fdmprinter.def.json
  449. msgctxt "machine_max_acceleration_y label"
  450. msgid "Maximum Acceleration Y"
  451. msgstr "Maksymalne Przyspieszenie Y"
  452. #: fdmprinter.def.json
  453. msgctxt "machine_max_acceleration_y description"
  454. msgid "Maximum acceleration for the motor of the Y-direction."
  455. msgstr "Maksymalne przyspieszenie dla silnika osi Y."
  456. #: fdmprinter.def.json
  457. msgctxt "machine_max_acceleration_z label"
  458. msgid "Maximum Acceleration Z"
  459. msgstr "Maksymalnie Przyspieszenie Z"
  460. #: fdmprinter.def.json
  461. msgctxt "machine_max_acceleration_z description"
  462. msgid "Maximum acceleration for the motor of the Z-direction."
  463. msgstr "Maksymalne przyspieszenie dla silnika osi Z."
  464. #: fdmprinter.def.json
  465. msgctxt "machine_max_acceleration_e label"
  466. msgid "Maximum Filament Acceleration"
  467. msgstr "Maksymalna Przysp. Filamentu"
  468. #: fdmprinter.def.json
  469. msgctxt "machine_max_acceleration_e description"
  470. msgid "Maximum acceleration for the motor of the filament."
  471. msgstr "Maksymalne przyspieszenie dla silnika filamentu."
  472. #: fdmprinter.def.json
  473. msgctxt "machine_acceleration label"
  474. msgid "Default Acceleration"
  475. msgstr "Domyślne Przyspieszenie"
  476. #: fdmprinter.def.json
  477. msgctxt "machine_acceleration description"
  478. msgid "The default acceleration of print head movement."
  479. msgstr "Domyślną przyspieszenie ruchu głowicy."
  480. #: fdmprinter.def.json
  481. msgctxt "machine_max_jerk_xy label"
  482. msgid "Default X-Y Jerk"
  483. msgstr "Domyślny Zryw X-Y"
  484. #: fdmprinter.def.json
  485. msgctxt "machine_max_jerk_xy description"
  486. msgid "Default jerk for movement in the horizontal plane."
  487. msgstr "Domyślny zryw dla ruchu w płaszczyźnie poziomej."
  488. #: fdmprinter.def.json
  489. msgctxt "machine_max_jerk_z label"
  490. msgid "Default Z Jerk"
  491. msgstr "Domyślny Zryw Z"
  492. #: fdmprinter.def.json
  493. msgctxt "machine_max_jerk_z description"
  494. msgid "Default jerk for the motor of the Z-direction."
  495. msgstr "Domyślny zryw do silnika osi Z."
  496. #: fdmprinter.def.json
  497. msgctxt "machine_max_jerk_e label"
  498. msgid "Default Filament Jerk"
  499. msgstr "Domyślny Zryw Filamentu"
  500. #: fdmprinter.def.json
  501. msgctxt "machine_max_jerk_e description"
  502. msgid "Default jerk for the motor of the filament."
  503. msgstr "Domyślny zryw dla silnika filamentu."
  504. #: fdmprinter.def.json
  505. msgctxt "machine_steps_per_mm_x label"
  506. msgid "Steps per Millimeter (X)"
  507. msgstr "Kroki na milimetr (X)"
  508. #: fdmprinter.def.json
  509. msgctxt "machine_steps_per_mm_x description"
  510. msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction."
  511. msgstr "Ile kroków silnika krokowego będzie skutkowało ruchem o 1mm w osi X."
  512. #: fdmprinter.def.json
  513. msgctxt "machine_steps_per_mm_y label"
  514. msgid "Steps per Millimeter (Y)"
  515. msgstr "Kroki na milimetr (Y)"
  516. #: fdmprinter.def.json
  517. msgctxt "machine_steps_per_mm_y description"
  518. msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction."
  519. msgstr "Ile kroków silnika krokowego będzie skutkowało ruchem o 1mm w osi Y."
  520. #: fdmprinter.def.json
  521. msgctxt "machine_steps_per_mm_z label"
  522. msgid "Steps per Millimeter (Z)"
  523. msgstr "Kroki na milimetr (Z)"
  524. #: fdmprinter.def.json
  525. msgctxt "machine_steps_per_mm_z description"
  526. msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction."
  527. msgstr "Ile kroków silnika krokowego będzie skutkowało ruchem o 1mm w osi Z."
  528. #: fdmprinter.def.json
  529. msgctxt "machine_steps_per_mm_e label"
  530. msgid "Steps per Millimeter (E)"
  531. msgstr "Kroki na milimetr (E)"
  532. #: fdmprinter.def.json
  533. msgctxt "machine_steps_per_mm_e description"
  534. msgid "How many steps of the stepper motors will result in one millimeter of extrusion."
  535. msgstr "Ile kroków silnika krokowego będzie skutkowało ekstruzją 1mm."
  536. #: fdmprinter.def.json
  537. msgctxt "machine_endstop_positive_direction_x label"
  538. msgid "X Endstop in Positive Direction"
  539. msgstr "Krańcówka X w Pozycji Dodatniej"
  540. #: fdmprinter.def.json
  541. msgctxt "machine_endstop_positive_direction_x description"
  542. msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)."
  543. msgstr "Czy krańcówka osi X jest w pozycji dodatniej (wysokie współrzędne X) czy w ujemnej (niskie współrzędne X)."
  544. #: fdmprinter.def.json
  545. msgctxt "machine_endstop_positive_direction_y label"
  546. msgid "Y Endstop in Positive Direction"
  547. msgstr "Krańcówka Y w Pozycji Dodatniej"
  548. #: fdmprinter.def.json
  549. msgctxt "machine_endstop_positive_direction_y description"
  550. msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)."
  551. msgstr "Czy krańcówka osi Y jest w pozycji dodatniej (wysokie współrzędne Y) czy w ujemnej (niskie współrzędne Y)."
  552. #: fdmprinter.def.json
  553. msgctxt "machine_endstop_positive_direction_z label"
  554. msgid "Z Endstop in Positive Direction"
  555. msgstr "Krańcówka Z w Pozycji Dodatniej"
  556. #: fdmprinter.def.json
  557. msgctxt "machine_endstop_positive_direction_z description"
  558. msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)."
  559. msgstr "Czy krańcówka osi Z jest w pozycji dodatniej (wysokie współrzędne Z) czy w ujemnej (niskie współrzędne Z)."
  560. #: fdmprinter.def.json
  561. msgctxt "machine_minimum_feedrate label"
  562. msgid "Minimum Feedrate"
  563. msgstr "Minimalna Prędk. Posuwu"
  564. #: fdmprinter.def.json
  565. msgctxt "machine_minimum_feedrate description"
  566. msgid "The minimal movement speed of the print head."
  567. msgstr "Minimalna prędkość ruchu głowicy drukującej."
  568. #: fdmprinter.def.json
  569. msgctxt "machine_feeder_wheel_diameter label"
  570. msgid "Feeder Wheel Diameter"
  571. msgstr "Średnica Koła Podajnika"
  572. #: fdmprinter.def.json
  573. msgctxt "machine_feeder_wheel_diameter description"
  574. msgid "The diameter of the wheel that drives the material in the feeder."
  575. msgstr "Średnica koła, które przesuwa materiał w podajniku."
  576. #: fdmprinter.def.json
  577. msgctxt "resolution label"
  578. msgid "Quality"
  579. msgstr "Jakość"
  580. #: fdmprinter.def.json
  581. msgctxt "resolution description"
  582. msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)"
  583. msgstr "Wszystkie ustawienia, które wpływają na rozdzielczość druku. Ustawienia te mają ogromny wpływ na jakość (i czas druku)"
  584. #: fdmprinter.def.json
  585. msgctxt "layer_height label"
  586. msgid "Layer Height"
  587. msgstr "Wysokość Warstwy"
  588. #: fdmprinter.def.json
  589. msgctxt "layer_height description"
  590. msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution."
  591. 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."
  592. #: fdmprinter.def.json
  593. msgctxt "layer_height_0 label"
  594. msgid "Initial Layer Height"
  595. msgstr "Wys. Początkowej Warstwy"
  596. #: fdmprinter.def.json
  597. msgctxt "layer_height_0 description"
  598. msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier."
  599. msgstr "Wysokość początkowej warstwy w mm. Grubsza początkowa warstwa powoduje lepszą przyczepność do stołu."
  600. #: fdmprinter.def.json
  601. msgctxt "line_width label"
  602. msgid "Line Width"
  603. msgstr "Szerokość Linii"
  604. #: fdmprinter.def.json
  605. msgctxt "line_width description"
  606. 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."
  607. 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."
  608. #: fdmprinter.def.json
  609. msgctxt "wall_line_width label"
  610. msgid "Wall Line Width"
  611. msgstr "Szerokość Linii Ściany"
  612. #: fdmprinter.def.json
  613. msgctxt "wall_line_width description"
  614. msgid "Width of a single wall line."
  615. msgstr "Szerokość jednej linii ściany."
  616. #: fdmprinter.def.json
  617. msgctxt "wall_line_width_0 label"
  618. msgid "Outer Wall Line Width"
  619. msgstr "Szerokość Linii Ściany Zewn."
  620. #: fdmprinter.def.json
  621. msgctxt "wall_line_width_0 description"
  622. msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed."
  623. msgstr "Szerokość zewnętrznej linii ściany. Przez obniżenie tej wartości wyższe poziomy szczegółów mogą być drukowane."
  624. #: fdmprinter.def.json
  625. msgctxt "wall_line_width_x label"
  626. msgid "Inner Wall(s) Line Width"
  627. msgstr "Szerokość Linii Ściany Wewn."
  628. #: fdmprinter.def.json
  629. msgctxt "wall_line_width_x description"
  630. msgid "Width of a single wall line for all wall lines except the outermost one."
  631. msgstr "Szerokość jednej linii dla wszystkich linii ściany z wyjątkiem jednej najbardziej zewnętrznej."
  632. #: fdmprinter.def.json
  633. msgctxt "skin_line_width label"
  634. msgid "Top/Bottom Line Width"
  635. msgstr "Szerokość Górnej/Dolnej Linii"
  636. #: fdmprinter.def.json
  637. msgctxt "skin_line_width description"
  638. msgid "Width of a single top/bottom line."
  639. msgstr "Szerokość pojedynczej górnej/dolnej linii."
  640. #: fdmprinter.def.json
  641. msgctxt "infill_line_width label"
  642. msgid "Infill Line Width"
  643. msgstr "Szerokość Linii Wypełn."
  644. #: fdmprinter.def.json
  645. msgctxt "infill_line_width description"
  646. msgid "Width of a single infill line."
  647. msgstr "Szerokość pojedynczej linii wypełniania."
  648. #: fdmprinter.def.json
  649. msgctxt "skirt_brim_line_width label"
  650. msgid "Skirt/Brim Line Width"
  651. msgstr "Szer. Linii Obwódki/Obrysu"
  652. #: fdmprinter.def.json
  653. msgctxt "skirt_brim_line_width description"
  654. msgid "Width of a single skirt or brim line."
  655. msgstr "Szerokość pojedynczej linii Obwódki i Obrysu."
  656. #: fdmprinter.def.json
  657. msgctxt "support_line_width label"
  658. msgid "Support Line Width"
  659. msgstr "Szerokość Linii Podpory"
  660. #: fdmprinter.def.json
  661. msgctxt "support_line_width description"
  662. msgid "Width of a single support structure line."
  663. msgstr "Szerokość jednej linii podpory."
  664. #: fdmprinter.def.json
  665. msgctxt "support_interface_line_width label"
  666. msgid "Support Interface Line Width"
  667. msgstr "Szerokość Linii Połączenia Podpory"
  668. #: fdmprinter.def.json
  669. msgctxt "support_interface_line_width description"
  670. msgid "Width of a single line of support roof or floor."
  671. msgstr "Szerokość pojedynczej linii dachu lub podłogi podpory."
  672. #: fdmprinter.def.json
  673. msgctxt "support_roof_line_width label"
  674. msgid "Support Roof Line Width"
  675. msgstr "Szerokość Linii Dachu Podpory"
  676. #: fdmprinter.def.json
  677. msgctxt "support_roof_line_width description"
  678. msgid "Width of a single support roof line."
  679. msgstr "Szerokość pojedynczej linii dachu podpory."
  680. #: fdmprinter.def.json
  681. msgctxt "support_bottom_line_width label"
  682. msgid "Support Floor Line Width"
  683. msgstr "Szerokość Linii Podłoża Podpory"
  684. #: fdmprinter.def.json
  685. msgctxt "support_bottom_line_width description"
  686. msgid "Width of a single support floor line."
  687. msgstr "Szerokość pojedynczej linii podłoża podpory."
  688. #: fdmprinter.def.json
  689. msgctxt "prime_tower_line_width label"
  690. msgid "Prime Tower Line Width"
  691. msgstr "Szerokość Linii Wieży Czyszcz."
  692. #: fdmprinter.def.json
  693. msgctxt "prime_tower_line_width description"
  694. msgid "Width of a single prime tower line."
  695. msgstr "Szerokość pojedynczej linii wieży."
  696. #: fdmprinter.def.json
  697. msgctxt "initial_layer_line_width_factor label"
  698. msgid "Initial Layer Line Width"
  699. msgstr "Szerokość Linii Początk. Warstwy"
  700. #: fdmprinter.def.json
  701. msgctxt "initial_layer_line_width_factor description"
  702. msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion."
  703. msgstr "Mnożnik szerokości linii na pierwszej warstwie. Zwiększenie może polepszyć przyczepność do stołu."
  704. #: fdmprinter.def.json
  705. msgctxt "shell label"
  706. msgid "Shell"
  707. msgstr "Powłoka"
  708. #: fdmprinter.def.json
  709. msgctxt "shell description"
  710. msgid "Shell"
  711. msgstr "Powłoka"
  712. #: fdmprinter.def.json
  713. msgctxt "wall_extruder_nr label"
  714. msgid "Wall Extruder"
  715. msgstr "Ekstruder Ściany"
  716. #: fdmprinter.def.json
  717. msgctxt "wall_extruder_nr description"
  718. msgid "The extruder train used for printing the walls. This is used in multi-extrusion."
  719. msgstr "Ekstruder używany do drukowania ścian. Używane w multi-esktruzji."
  720. #: fdmprinter.def.json
  721. msgctxt "wall_0_extruder_nr label"
  722. msgid "Outer Wall Extruder"
  723. msgstr "Esktruder Zewn. Ściany"
  724. #: fdmprinter.def.json
  725. msgctxt "wall_0_extruder_nr description"
  726. msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion."
  727. msgstr "Esktruder używany do drukowania zewn. ściany. Używane w multi-ekstruzji."
  728. #: fdmprinter.def.json
  729. msgctxt "wall_x_extruder_nr label"
  730. msgid "Inner Wall Extruder"
  731. msgstr "Ekstruder Wewn. Linii"
  732. #: fdmprinter.def.json
  733. msgctxt "wall_x_extruder_nr description"
  734. msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion."
  735. msgstr "Ekstruder używany do drukowania wenw. ściany. Używane w multi-ekstruzji."
  736. #: fdmprinter.def.json
  737. msgctxt "wall_thickness label"
  738. msgid "Wall Thickness"
  739. msgstr "Grubość Ściany"
  740. #: fdmprinter.def.json
  741. msgctxt "wall_thickness description"
  742. msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls."
  743. msgstr "Grubość ścian w kierunku poziomym. Ta wartość podzielona przez szerokość linii ściany, określa liczbę ścian."
  744. #: fdmprinter.def.json
  745. msgctxt "wall_line_count label"
  746. msgid "Wall Line Count"
  747. msgstr "Ilość Ścian"
  748. #: fdmprinter.def.json
  749. msgctxt "wall_line_count description"
  750. msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number."
  751. msgstr "Liczba ścian. Przy obliczaniu za pomocą grubości ściany, ta wartość jest zaokrąglana do liczby całkowitej."
  752. #: fdmprinter.def.json
  753. msgctxt "wall_0_wipe_dist label"
  754. msgid "Outer Wall Wipe Distance"
  755. msgstr "Długość Czyszczenia Zewn. Ściana"
  756. #: fdmprinter.def.json
  757. msgctxt "wall_0_wipe_dist description"
  758. msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better."
  759. msgstr "Długość ruchu jałowego umieszczonego po wydrukowaniu zewnętrznej ściany, aby lepiej ukryć szew Z."
  760. #: fdmprinter.def.json
  761. msgctxt "roofing_extruder_nr label"
  762. msgid "Top Surface Skin Extruder"
  763. msgstr "Ekstruder Górnej Pow. Skóry"
  764. #: fdmprinter.def.json
  765. msgctxt "roofing_extruder_nr description"
  766. msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion."
  767. msgstr "Esktruder używany do drukowania górnej skóry. Używane w multi-ekstruzji."
  768. #: fdmprinter.def.json
  769. msgctxt "roofing_layer_count label"
  770. msgid "Top Surface Skin Layers"
  771. msgstr "Warstwy Górnej Pow. Skóry"
  772. #: fdmprinter.def.json
  773. msgctxt "roofing_layer_count description"
  774. msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces."
  775. msgstr "Liczba warstw górnej skóry. Zazwyczaj tylko jedna górna warstwa poprawia jakość górnych powierzchni."
  776. #: fdmprinter.def.json
  777. msgctxt "top_bottom_extruder_nr label"
  778. msgid "Top/Bottom Extruder"
  779. msgstr "Ekstruder Góra/Dół"
  780. #: fdmprinter.def.json
  781. msgctxt "top_bottom_extruder_nr description"
  782. msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion."
  783. msgstr "Ekstruder używany do drukowania górnej i dolnej skóry. Używane w multi-ekstruzji."
  784. #: fdmprinter.def.json
  785. msgctxt "top_bottom_thickness label"
  786. msgid "Top/Bottom Thickness"
  787. msgstr "Grubość Góra/Dół"
  788. #: fdmprinter.def.json
  789. msgctxt "top_bottom_thickness description"
  790. 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."
  791. msgstr "Grubość górnej/dolnej warstwy wydruku. Ta wartość podzielona przez wysokość warstwy definiuje liczbę warstw górnych/dolnych."
  792. #: fdmprinter.def.json
  793. msgctxt "top_thickness label"
  794. msgid "Top Thickness"
  795. msgstr "Grubość Góra"
  796. #: fdmprinter.def.json
  797. msgctxt "top_thickness description"
  798. msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers."
  799. msgstr "Grubość górnych warstw na wydruku. Ta wartość podzielona przez wysokość warstwy definiuje liczbę warstw górnych."
  800. #: fdmprinter.def.json
  801. msgctxt "top_layers label"
  802. msgid "Top Layers"
  803. msgstr "Górne warstwy"
  804. #: fdmprinter.def.json
  805. msgctxt "top_layers description"
  806. msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number."
  807. msgstr "Liczba górnych warstw. Przy obliczaniu górnej grubości wartość ta jest zaokrąglana do liczby całkowitej."
  808. #: fdmprinter.def.json
  809. msgctxt "bottom_thickness label"
  810. msgid "Bottom Thickness"
  811. msgstr "Grubość Dołu"
  812. #: fdmprinter.def.json
  813. msgctxt "bottom_thickness description"
  814. msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers."
  815. msgstr "Grubość dolnych warstw w wydruku. Ta wartość podzielona przez wysokość warstwy definiuje liczbę warstw dolnych."
  816. #: fdmprinter.def.json
  817. msgctxt "bottom_layers label"
  818. msgid "Bottom Layers"
  819. msgstr "Dolne Warstwy"
  820. #: fdmprinter.def.json
  821. msgctxt "bottom_layers description"
  822. msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number."
  823. msgstr "Liczba dolnych warstw. Przy obliczaniu grubości dołu ta wartość jest zaokrąglana do liczby całkowitej."
  824. #: fdmprinter.def.json
  825. msgctxt "top_bottom_pattern label"
  826. msgid "Top/Bottom Pattern"
  827. msgstr "Wzór Góra/Dół"
  828. #: fdmprinter.def.json
  829. msgctxt "top_bottom_pattern description"
  830. msgid "The pattern of the top/bottom layers."
  831. msgstr "Wzór górnej/dolnej warstwy."
  832. #: fdmprinter.def.json
  833. msgctxt "top_bottom_pattern option lines"
  834. msgid "Lines"
  835. msgstr "Linie"
  836. #: fdmprinter.def.json
  837. msgctxt "top_bottom_pattern option concentric"
  838. msgid "Concentric"
  839. msgstr "Koncentryczny"
  840. #: fdmprinter.def.json
  841. msgctxt "top_bottom_pattern option zigzag"
  842. msgid "Zig Zag"
  843. msgstr "Zygzak"
  844. #: fdmprinter.def.json
  845. msgctxt "top_bottom_pattern_0 label"
  846. msgid "Bottom Pattern Initial Layer"
  847. msgstr "Wzór Dolnej Początkowej Warstwy"
  848. #: fdmprinter.def.json
  849. msgctxt "top_bottom_pattern_0 description"
  850. msgid "The pattern on the bottom of the print on the first layer."
  851. msgstr "Wzór na pierwszej warstwie na dole wydruku."
  852. #: fdmprinter.def.json
  853. msgctxt "top_bottom_pattern_0 option lines"
  854. msgid "Lines"
  855. msgstr "Linie"
  856. #: fdmprinter.def.json
  857. msgctxt "top_bottom_pattern_0 option concentric"
  858. msgid "Concentric"
  859. msgstr "Koncentryczny"
  860. #: fdmprinter.def.json
  861. msgctxt "top_bottom_pattern_0 option zigzag"
  862. msgid "Zig Zag"
  863. msgstr "Zygzak"
  864. #: fdmprinter.def.json
  865. msgctxt "connect_skin_polygons label"
  866. msgid "Connect Top/Bottom Polygons"
  867. msgstr "Połącz Górne/Dolne Wieloboki"
  868. #: fdmprinter.def.json
  869. msgctxt "connect_skin_polygons description"
  870. 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."
  871. 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."
  872. #: fdmprinter.def.json
  873. msgctxt "skin_angles label"
  874. msgid "Top/Bottom Line Directions"
  875. msgstr "Kierunki Linii Góra/Dół"
  876. #: fdmprinter.def.json
  877. msgctxt "skin_angles description"
  878. 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)."
  879. 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)."
  880. #: fdmprinter.def.json
  881. msgctxt "wall_0_inset label"
  882. msgid "Outer Wall Inset"
  883. msgstr "Wkład Zewn. Ściany"
  884. #: fdmprinter.def.json
  885. msgctxt "wall_0_inset description"
  886. 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."
  887. 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."
  888. #: fdmprinter.def.json
  889. msgctxt "optimize_wall_printing_order label"
  890. msgid "Optimize Wall Printing Order"
  891. msgstr "Optymalizuj Kolejność Drukowania Ścian"
  892. #: fdmprinter.def.json
  893. msgctxt "optimize_wall_printing_order description"
  894. 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."
  895. 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."
  896. #: fdmprinter.def.json
  897. msgctxt "outer_inset_first label"
  898. msgid "Outer Before Inner Walls"
  899. msgstr "Zewn. Ściany przed Wewn."
  900. #: fdmprinter.def.json
  901. msgctxt "outer_inset_first description"
  902. 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."
  903. 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."
  904. #: fdmprinter.def.json
  905. msgctxt "alternate_extra_perimeter label"
  906. msgid "Alternate Extra Wall"
  907. msgstr "Zastosuj Dodatkową Ścianę"
  908. #: fdmprinter.def.json
  909. msgctxt "alternate_extra_perimeter description"
  910. msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
  911. 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."
  912. #: fdmprinter.def.json
  913. msgctxt "travel_compensate_overlapping_walls_enabled label"
  914. msgid "Compensate Wall Overlaps"
  915. msgstr "Kompensuj Nakładanie się Ścian"
  916. #: fdmprinter.def.json
  917. msgctxt "travel_compensate_overlapping_walls_enabled description"
  918. msgid "Compensate the flow for parts of a wall being printed where there is already a wall in place."
  919. msgstr "Kompensuje przepływ dla części, których ściana jest drukowana kiedy jest już w tym miejscu ściana."
  920. #: fdmprinter.def.json
  921. msgctxt "travel_compensate_overlapping_walls_0_enabled label"
  922. msgid "Compensate Outer Wall Overlaps"
  923. msgstr "Komp. Zewn. Nakład. się Ścian"
  924. #: fdmprinter.def.json
  925. msgctxt "travel_compensate_overlapping_walls_0_enabled description"
  926. msgid "Compensate the flow for parts of an outer wall being printed where there is already a wall in place."
  927. msgstr "Kompensuje przepływ dla części, których zewnętrzna ściana jest drukowana kiedy jest już w tym miejscu ściana."
  928. #: fdmprinter.def.json
  929. msgctxt "travel_compensate_overlapping_walls_x_enabled label"
  930. msgid "Compensate Inner Wall Overlaps"
  931. msgstr "Komp. Wewn. Nakład. się Ścian"
  932. #: fdmprinter.def.json
  933. msgctxt "travel_compensate_overlapping_walls_x_enabled description"
  934. msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place."
  935. msgstr "Kompensuje przepływ dla części, których wewnętrzna ściana jest drukowana kiedy jest już w tym miejscu ściana."
  936. #: fdmprinter.def.json
  937. msgctxt "wall_min_flow label"
  938. msgid "Minimum Wall Flow"
  939. msgstr "Minimalny Przepływ Dla Ścianek"
  940. #: fdmprinter.def.json
  941. msgctxt "wall_min_flow description"
  942. 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."
  943. 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."
  944. #: fdmprinter.def.json
  945. msgctxt "wall_min_flow_retract label"
  946. msgid "Prefer Retract"
  947. msgstr "Preferuj Retrakcję"
  948. #: fdmprinter.def.json
  949. msgctxt "wall_min_flow_retract description"
  950. msgid "If enabled, retraction is used rather than combing for travel moves that replace walls whose flow is below the minimum flow threshold."
  951. 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."
  952. #: fdmprinter.def.json
  953. msgctxt "fill_perimeter_gaps label"
  954. msgid "Fill Gaps Between Walls"
  955. msgstr "Wypełnij Szczeliny Między Ścianami"
  956. #: fdmprinter.def.json
  957. msgctxt "fill_perimeter_gaps description"
  958. msgid "Fills the gaps between walls where no walls fit."
  959. msgstr "Wypełnia szczeliny pomiędzy ściany gdzie żadna ściana nie pasuje."
  960. #: fdmprinter.def.json
  961. msgctxt "fill_perimeter_gaps option nowhere"
  962. msgid "Nowhere"
  963. msgstr "Nigdzie"
  964. #: fdmprinter.def.json
  965. msgctxt "fill_perimeter_gaps option everywhere"
  966. msgid "Everywhere"
  967. msgstr "Wszędzie"
  968. #: fdmprinter.def.json
  969. msgctxt "filter_out_tiny_gaps label"
  970. msgid "Filter Out Tiny Gaps"
  971. msgstr "Filtruj Małe Luki"
  972. #: fdmprinter.def.json
  973. msgctxt "filter_out_tiny_gaps description"
  974. msgid "Filter out tiny gaps to reduce blobs on outside of model."
  975. msgstr "Filtruj małe luki, aby zredukować bloby na zewnątrz modelu."
  976. #: fdmprinter.def.json
  977. msgctxt "fill_outline_gaps label"
  978. msgid "Print Thin Walls"
  979. msgstr "Drukuj Cienkie Linie"
  980. #: fdmprinter.def.json
  981. msgctxt "fill_outline_gaps description"
  982. msgid "Print pieces of the model which are horizontally thinner than the nozzle size."
  983. msgstr "Drukuj części modelu, które są poziomo cieńsze niż rozmiar dyszy."
  984. #: fdmprinter.def.json
  985. msgctxt "xy_offset label"
  986. msgid "Horizontal Expansion"
  987. msgstr "Poziome Poszerzenie"
  988. #: fdmprinter.def.json
  989. msgctxt "xy_offset description"
  990. 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."
  991. 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."
  992. #: fdmprinter.def.json
  993. msgctxt "xy_offset_layer_0 label"
  994. msgid "Initial Layer Horizontal Expansion"
  995. msgstr "Poziome Poszerzenie Początk. Warstwy"
  996. #: fdmprinter.def.json
  997. msgctxt "xy_offset_layer_0 description"
  998. 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\"."
  999. 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\"."
  1000. #: fdmprinter.def.json
  1001. msgctxt "z_seam_type label"
  1002. msgid "Z Seam Alignment"
  1003. msgstr "Wyrównanie Szwu Z"
  1004. #: fdmprinter.def.json
  1005. msgctxt "z_seam_type description"
  1006. 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."
  1007. 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."
  1008. #: fdmprinter.def.json
  1009. msgctxt "z_seam_type option back"
  1010. msgid "User Specified"
  1011. msgstr "Określone przez Użytkownika"
  1012. #: fdmprinter.def.json
  1013. msgctxt "z_seam_type option shortest"
  1014. msgid "Shortest"
  1015. msgstr "Najkrótsze"
  1016. #: fdmprinter.def.json
  1017. msgctxt "z_seam_type option random"
  1018. msgid "Random"
  1019. msgstr "Losowe"
  1020. #: fdmprinter.def.json
  1021. msgctxt "z_seam_type option sharpest_corner"
  1022. msgid "Sharpest Corner"
  1023. msgstr "Najostrzejszy róg"
  1024. #: fdmprinter.def.json
  1025. msgctxt "z_seam_x label"
  1026. msgid "Z Seam X"
  1027. msgstr "Szew X"
  1028. #: fdmprinter.def.json
  1029. msgctxt "z_seam_x description"
  1030. msgid "The X coordinate of the position near where to start printing each part in a layer."
  1031. msgstr "Współrzędna X położenia, w pobliżu miejsca rozpoczęcia drukowania każdej warstwy."
  1032. #: fdmprinter.def.json
  1033. msgctxt "z_seam_y label"
  1034. msgid "Z Seam Y"
  1035. msgstr "Szew Y"
  1036. #: fdmprinter.def.json
  1037. msgctxt "z_seam_y description"
  1038. msgid "The Y coordinate of the position near where to start printing each part in a layer."
  1039. msgstr "Współrzędna Y położenia, w pobliżu miejsca rozpoczęcia drukowania każdej warstwy."
  1040. #: fdmprinter.def.json
  1041. msgctxt "z_seam_corner label"
  1042. msgid "Seam Corner Preference"
  1043. msgstr "Wybór Rogu Szwu"
  1044. #: fdmprinter.def.json
  1045. msgctxt "z_seam_corner description"
  1046. 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."
  1047. 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."
  1048. #: fdmprinter.def.json
  1049. msgctxt "z_seam_corner option z_seam_corner_none"
  1050. msgid "None"
  1051. msgstr "Brak"
  1052. #: fdmprinter.def.json
  1053. msgctxt "z_seam_corner option z_seam_corner_inner"
  1054. msgid "Hide Seam"
  1055. msgstr "Ukryj Szew"
  1056. #: fdmprinter.def.json
  1057. msgctxt "z_seam_corner option z_seam_corner_outer"
  1058. msgid "Expose Seam"
  1059. msgstr "Pokaż Szew"
  1060. #: fdmprinter.def.json
  1061. msgctxt "z_seam_corner option z_seam_corner_any"
  1062. msgid "Hide or Expose Seam"
  1063. msgstr "Ukryj lub Pokaż Szew"
  1064. #: fdmprinter.def.json
  1065. msgctxt "z_seam_relative label"
  1066. msgid "Z Seam Relative"
  1067. msgstr "Względny Szew Z"
  1068. #: fdmprinter.def.json
  1069. msgctxt "z_seam_relative description"
  1070. 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."
  1071. 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."
  1072. #: fdmprinter.def.json
  1073. msgctxt "skin_no_small_gaps_heuristic label"
  1074. msgid "Ignore Small Z Gaps"
  1075. msgstr "Zignoruj Małe Luki Z"
  1076. #: fdmprinter.def.json
  1077. msgctxt "skin_no_small_gaps_heuristic description"
  1078. 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."
  1079. 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ę."
  1080. #: fdmprinter.def.json
  1081. msgctxt "skin_outline_count label"
  1082. msgid "Extra Skin Wall Count"
  1083. msgstr "Liczba Dod. Ścian na Skórze"
  1084. #: fdmprinter.def.json
  1085. msgctxt "skin_outline_count description"
  1086. 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."
  1087. 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."
  1088. #: fdmprinter.def.json
  1089. msgctxt "ironing_enabled label"
  1090. msgid "Enable Ironing"
  1091. msgstr "Włącz Prasowanie"
  1092. #: fdmprinter.def.json
  1093. msgctxt "ironing_enabled description"
  1094. 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."
  1095. msgstr "Przejedź nad górną powierzchnią dodatkowy raz, ale bez ekstrudowania materiału. Topi to plastyk na górze, co powoduje gładszą powierzchnię."
  1096. #: fdmprinter.def.json
  1097. msgctxt "ironing_only_highest_layer label"
  1098. msgid "Iron Only Highest Layer"
  1099. msgstr "Prasuj Tylko Najwyższą Warstwę"
  1100. #: fdmprinter.def.json
  1101. msgctxt "ironing_only_highest_layer description"
  1102. 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."
  1103. 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."
  1104. #: fdmprinter.def.json
  1105. msgctxt "ironing_pattern label"
  1106. msgid "Ironing Pattern"
  1107. msgstr "Wzór Prasowania"
  1108. #: fdmprinter.def.json
  1109. msgctxt "ironing_pattern description"
  1110. msgid "The pattern to use for ironing top surfaces."
  1111. msgstr "Wzór używany dla górnych powierzchni prasowania."
  1112. #: fdmprinter.def.json
  1113. msgctxt "ironing_pattern option concentric"
  1114. msgid "Concentric"
  1115. msgstr "Koncentryczny"
  1116. #: fdmprinter.def.json
  1117. msgctxt "ironing_pattern option zigzag"
  1118. msgid "Zig Zag"
  1119. msgstr "Zygzak"
  1120. #: fdmprinter.def.json
  1121. msgctxt "ironing_line_spacing label"
  1122. msgid "Ironing Line Spacing"
  1123. msgstr "Przerwy Linii Prasowania"
  1124. #: fdmprinter.def.json
  1125. msgctxt "ironing_line_spacing description"
  1126. msgid "The distance between the lines of ironing."
  1127. msgstr "Odległość pomiędzy liniami prasowania."
  1128. #: fdmprinter.def.json
  1129. msgctxt "ironing_flow label"
  1130. msgid "Ironing Flow"
  1131. msgstr "Przepływ Prasowania"
  1132. #: fdmprinter.def.json
  1133. msgctxt "ironing_flow description"
  1134. 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."
  1135. 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."
  1136. #: fdmprinter.def.json
  1137. msgctxt "ironing_inset label"
  1138. msgid "Ironing Inset"
  1139. msgstr "Margines Prasowania"
  1140. #: fdmprinter.def.json
  1141. msgctxt "ironing_inset description"
  1142. 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."
  1143. msgstr "Odległość utrzymywana od krawędzi modelu. Prasowanie do końca krawędzi siatki może powodować zadarte krawędzie na wydruku."
  1144. #: fdmprinter.def.json
  1145. msgctxt "speed_ironing label"
  1146. msgid "Ironing Speed"
  1147. msgstr "Prędkość Prasowania"
  1148. #: fdmprinter.def.json
  1149. msgctxt "speed_ironing description"
  1150. msgid "The speed at which to pass over the top surface."
  1151. msgstr "Prędkość, z jaką drukarka przejeżdża nad górnymi powierzchniami."
  1152. #: fdmprinter.def.json
  1153. msgctxt "acceleration_ironing label"
  1154. msgid "Ironing Acceleration"
  1155. msgstr "Przyspieszenie Prasowania"
  1156. #: fdmprinter.def.json
  1157. msgctxt "acceleration_ironing description"
  1158. msgid "The acceleration with which ironing is performed."
  1159. msgstr "Przyspieszenie, z jakim przeprowadzane jest prasowanie."
  1160. #: fdmprinter.def.json
  1161. msgctxt "jerk_ironing label"
  1162. msgid "Ironing Jerk"
  1163. msgstr "Zryw Prasowania"
  1164. #: fdmprinter.def.json
  1165. msgctxt "jerk_ironing description"
  1166. msgid "The maximum instantaneous velocity change while performing ironing."
  1167. msgstr "Maksymalna nagła zmiana prędkości podczas przeprowadzania prasowania."
  1168. #: fdmprinter.def.json
  1169. msgctxt "infill label"
  1170. msgid "Infill"
  1171. msgstr "Wypełnienie"
  1172. #: fdmprinter.def.json
  1173. msgctxt "infill description"
  1174. msgid "Infill"
  1175. msgstr "Wypełnienie"
  1176. #: fdmprinter.def.json
  1177. msgctxt "infill_extruder_nr label"
  1178. msgid "Infill Extruder"
  1179. msgstr "Ekstruder Wypełn."
  1180. #: fdmprinter.def.json
  1181. msgctxt "infill_extruder_nr description"
  1182. msgid "The extruder train used for printing infill. This is used in multi-extrusion."
  1183. msgstr "Ekstruder używany do drukowania wypełnienia. Używane w multi-ekstruzji."
  1184. #: fdmprinter.def.json
  1185. msgctxt "infill_sparse_density label"
  1186. msgid "Infill Density"
  1187. msgstr "Gęstość Wypełn."
  1188. #: fdmprinter.def.json
  1189. msgctxt "infill_sparse_density description"
  1190. msgid "Adjusts the density of infill of the print."
  1191. msgstr "Dostosowuje gęstość wypełnienia wydruku."
  1192. #: fdmprinter.def.json
  1193. msgctxt "infill_line_distance label"
  1194. msgid "Infill Line Distance"
  1195. msgstr "Odstęp Linii Wypełn."
  1196. #: fdmprinter.def.json
  1197. msgctxt "infill_line_distance description"
  1198. msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width."
  1199. 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."
  1200. #: fdmprinter.def.json
  1201. msgctxt "infill_pattern label"
  1202. msgid "Infill Pattern"
  1203. msgstr "Wzór Wypełn."
  1204. #: fdmprinter.def.json
  1205. msgctxt "infill_pattern description"
  1206. 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."
  1207. 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."
  1208. #: fdmprinter.def.json
  1209. msgctxt "infill_pattern option grid"
  1210. msgid "Grid"
  1211. msgstr "Kratka"
  1212. #: fdmprinter.def.json
  1213. msgctxt "infill_pattern option lines"
  1214. msgid "Lines"
  1215. msgstr "Linie"
  1216. #: fdmprinter.def.json
  1217. msgctxt "infill_pattern option triangles"
  1218. msgid "Triangles"
  1219. msgstr "Trójkąty"
  1220. #: fdmprinter.def.json
  1221. msgctxt "infill_pattern option trihexagon"
  1222. msgid "Tri-Hexagon"
  1223. msgstr "Tri-Sześciokąt"
  1224. #: fdmprinter.def.json
  1225. msgctxt "infill_pattern option cubic"
  1226. msgid "Cubic"
  1227. msgstr "Sześcienny"
  1228. #: fdmprinter.def.json
  1229. msgctxt "infill_pattern option cubicsubdiv"
  1230. msgid "Cubic Subdivision"
  1231. msgstr "Podział sześcienny"
  1232. #: fdmprinter.def.json
  1233. msgctxt "infill_pattern option tetrahedral"
  1234. msgid "Octet"
  1235. msgstr "Czworościan"
  1236. #: fdmprinter.def.json
  1237. msgctxt "infill_pattern option quarter_cubic"
  1238. msgid "Quarter Cubic"
  1239. msgstr "Ćwierć Sześcienny"
  1240. #: fdmprinter.def.json
  1241. msgctxt "infill_pattern option concentric"
  1242. msgid "Concentric"
  1243. msgstr "Koncentryczny"
  1244. #: fdmprinter.def.json
  1245. msgctxt "infill_pattern option zigzag"
  1246. msgid "Zig Zag"
  1247. msgstr "Zygzak"
  1248. #: fdmprinter.def.json
  1249. msgctxt "infill_pattern option cross"
  1250. msgid "Cross"
  1251. msgstr "Krzyż"
  1252. #: fdmprinter.def.json
  1253. msgctxt "infill_pattern option cross_3d"
  1254. msgid "Cross 3D"
  1255. msgstr "Krzyż 3D"
  1256. #: fdmprinter.def.json
  1257. msgctxt "zig_zaggify_infill label"
  1258. msgid "Connect Infill Lines"
  1259. msgstr "Połącz Linie Wypełnienia"
  1260. #: fdmprinter.def.json
  1261. msgctxt "zig_zaggify_infill description"
  1262. 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."
  1263. 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."
  1264. #: fdmprinter.def.json
  1265. msgctxt "connect_infill_polygons label"
  1266. msgid "Connect Infill Polygons"
  1267. msgstr "Połącz Wieloboki Wypełnienia"
  1268. #: fdmprinter.def.json
  1269. msgctxt "connect_infill_polygons description"
  1270. 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."
  1271. 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."
  1272. #: fdmprinter.def.json
  1273. msgctxt "infill_angles label"
  1274. msgid "Infill Line Directions"
  1275. msgstr "Kierunek Linii Wypełn."
  1276. #: fdmprinter.def.json
  1277. msgctxt "infill_angles description"
  1278. 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)."
  1279. 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)."
  1280. #: fdmprinter.def.json
  1281. msgctxt "infill_offset_x label"
  1282. msgid "Infill X Offset"
  1283. msgstr "Przesunięcie Wypełn. w Osi X"
  1284. #: fdmprinter.def.json
  1285. msgctxt "infill_offset_x description"
  1286. msgid "The infill pattern is moved this distance along the X axis."
  1287. msgstr "Wzór wypełnienia jest przesunięty o tę odległość wzdłuż osi X."
  1288. #: fdmprinter.def.json
  1289. msgctxt "infill_offset_y label"
  1290. msgid "Infill Y Offset"
  1291. msgstr "Przesunięcie Wypełn. w Osi Y"
  1292. #: fdmprinter.def.json
  1293. msgctxt "infill_offset_y description"
  1294. msgid "The infill pattern is moved this distance along the Y axis."
  1295. msgstr "Wzór wypełnienia jest przesunięty o tę odległość wzdłuż osi Y."
  1296. #: fdmprinter.def.json
  1297. msgctxt "infill_multiplier label"
  1298. msgid "Infill Line Multiplier"
  1299. msgstr "Mnożnik Linii Wypełnienia"
  1300. #: fdmprinter.def.json
  1301. msgctxt "infill_multiplier description"
  1302. 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."
  1303. 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ę."
  1304. #: fdmprinter.def.json
  1305. msgctxt "infill_wall_line_count label"
  1306. msgid "Extra Infill Wall Count"
  1307. msgstr "Ilość Dodatkowych Ścianek Wypełnienia"
  1308. #: fdmprinter.def.json
  1309. msgctxt "infill_wall_line_count description"
  1310. msgid ""
  1311. "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"
  1312. "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."
  1313. msgstr ""
  1314. "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"
  1315. "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."
  1316. #: fdmprinter.def.json
  1317. msgctxt "sub_div_rad_add label"
  1318. msgid "Cubic Subdivision Shell"
  1319. msgstr "Sześcienny Podział Powłoki"
  1320. #: fdmprinter.def.json
  1321. msgctxt "sub_div_rad_add description"
  1322. 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."
  1323. 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."
  1324. #: fdmprinter.def.json
  1325. msgctxt "infill_overlap label"
  1326. msgid "Infill Overlap Percentage"
  1327. msgstr "Procent Nałożenia Wypełn."
  1328. #: fdmprinter.def.json
  1329. msgctxt "infill_overlap description"
  1330. 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."
  1331. 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."
  1332. #: fdmprinter.def.json
  1333. msgctxt "infill_overlap_mm label"
  1334. msgid "Infill Overlap"
  1335. msgstr "Nałożenie Wypełn."
  1336. #: fdmprinter.def.json
  1337. msgctxt "infill_overlap_mm description"
  1338. msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill."
  1339. msgstr "Ilość nałożenia pomiędzy wypełnieniem a ścianami. Nieznaczne nałożenie pozwala ściśle łączyć się z wypełnieniem."
  1340. #: fdmprinter.def.json
  1341. msgctxt "skin_overlap label"
  1342. msgid "Skin Overlap Percentage"
  1343. msgstr "Procent Nakładania się Skóry"
  1344. #: fdmprinter.def.json
  1345. msgctxt "skin_overlap description"
  1346. 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."
  1347. 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."
  1348. #: fdmprinter.def.json
  1349. msgctxt "skin_overlap_mm label"
  1350. msgid "Skin Overlap"
  1351. msgstr "Nakładanie się Skóry"
  1352. #: fdmprinter.def.json
  1353. msgctxt "skin_overlap_mm description"
  1354. msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin."
  1355. msgstr "Ilość nakładania się skóry i ścian. Lekkie nałożenie pozwala ściśle łączyć się ze skórą."
  1356. #: fdmprinter.def.json
  1357. msgctxt "infill_wipe_dist label"
  1358. msgid "Infill Wipe Distance"
  1359. msgstr "Dług. Czyszczenia Wypełn."
  1360. #: fdmprinter.def.json
  1361. msgctxt "infill_wipe_dist description"
  1362. 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."
  1363. 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."
  1364. #: fdmprinter.def.json
  1365. msgctxt "infill_sparse_thickness label"
  1366. msgid "Infill Layer Thickness"
  1367. msgstr "Grubość Warstwy Wypełn."
  1368. #: fdmprinter.def.json
  1369. msgctxt "infill_sparse_thickness description"
  1370. msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded."
  1371. msgstr "Grubość na warstwe materiału wypełniającego. Ta wartość powinna zawsze być wielokrotnością wysokości warstwy i być zaokrąglana."
  1372. #: fdmprinter.def.json
  1373. msgctxt "gradual_infill_steps label"
  1374. msgid "Gradual Infill Steps"
  1375. msgstr "Stopnie Stopniowego Wypełn."
  1376. #: fdmprinter.def.json
  1377. msgctxt "gradual_infill_steps description"
  1378. 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."
  1379. 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."
  1380. #: fdmprinter.def.json
  1381. msgctxt "gradual_infill_step_height label"
  1382. msgid "Gradual Infill Step Height"
  1383. msgstr "Wys. Stopnia Stopniowego Wypełn."
  1384. #: fdmprinter.def.json
  1385. msgctxt "gradual_infill_step_height description"
  1386. msgid "The height of infill of a given density before switching to half the density."
  1387. msgstr "Wysokość wypełnienia o danej gęstości przed przejściem na połowę gęstości."
  1388. #: fdmprinter.def.json
  1389. msgctxt "infill_before_walls label"
  1390. msgid "Infill Before Walls"
  1391. msgstr "Wypełn. przed Ścianami"
  1392. #: fdmprinter.def.json
  1393. msgctxt "infill_before_walls description"
  1394. 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."
  1395. 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ę."
  1396. #: fdmprinter.def.json
  1397. msgctxt "min_infill_area label"
  1398. msgid "Minimum Infill Area"
  1399. msgstr "Min. Obszar Wypełn."
  1400. #: fdmprinter.def.json
  1401. msgctxt "min_infill_area description"
  1402. msgid "Don't generate areas of infill smaller than this (use skin instead)."
  1403. msgstr "Nie generuj obszarów wypełnienia mniejszych niż to (zamiast tego używaj skóry)."
  1404. #: fdmprinter.def.json
  1405. msgctxt "infill_support_enabled label"
  1406. msgid "Infill Support"
  1407. msgstr "Wypełnienie Podporowe"
  1408. #: fdmprinter.def.json
  1409. msgctxt "infill_support_enabled description"
  1410. 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."
  1411. 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."
  1412. #: fdmprinter.def.json
  1413. msgctxt "infill_support_angle label"
  1414. msgid "Infill Overhang Angle"
  1415. msgstr "Kąt Zwisu dla Wypełnienia"
  1416. #: fdmprinter.def.json
  1417. msgctxt "infill_support_angle description"
  1418. 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."
  1419. 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."
  1420. #: fdmprinter.def.json
  1421. msgctxt "skin_preshrink label"
  1422. msgid "Skin Removal Width"
  1423. msgstr "Szerokość Usuwania Skóry"
  1424. #: fdmprinter.def.json
  1425. msgctxt "skin_preshrink description"
  1426. 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."
  1427. 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."
  1428. #: fdmprinter.def.json
  1429. msgctxt "top_skin_preshrink label"
  1430. msgid "Top Skin Removal Width"
  1431. msgstr "Szer. Usuwania Górnej Skóry"
  1432. #: fdmprinter.def.json
  1433. msgctxt "top_skin_preshrink description"
  1434. 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."
  1435. 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."
  1436. #: fdmprinter.def.json
  1437. msgctxt "bottom_skin_preshrink label"
  1438. msgid "Bottom Skin Removal Width"
  1439. msgstr "Szer. Usuwania Dolnej Skóry"
  1440. #: fdmprinter.def.json
  1441. msgctxt "bottom_skin_preshrink description"
  1442. 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."
  1443. 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."
  1444. #: fdmprinter.def.json
  1445. msgctxt "expand_skins_expand_distance label"
  1446. msgid "Skin Expand Distance"
  1447. msgstr "Odległość Rozsz. Skóry"
  1448. #: fdmprinter.def.json
  1449. msgctxt "expand_skins_expand_distance description"
  1450. 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."
  1451. 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ł."
  1452. #: fdmprinter.def.json
  1453. msgctxt "top_skin_expand_distance label"
  1454. msgid "Top Skin Expand Distance"
  1455. msgstr "Odległość Rozsz. Górnej Skóry"
  1456. #: fdmprinter.def.json
  1457. msgctxt "top_skin_expand_distance description"
  1458. 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."
  1459. 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ł."
  1460. #: fdmprinter.def.json
  1461. msgctxt "bottom_skin_expand_distance label"
  1462. msgid "Bottom Skin Expand Distance"
  1463. msgstr "Odległość Rozsz. Dolnej Skóry"
  1464. #: fdmprinter.def.json
  1465. msgctxt "bottom_skin_expand_distance description"
  1466. 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."
  1467. 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ł."
  1468. #: fdmprinter.def.json
  1469. msgctxt "max_skin_angle_for_expansion label"
  1470. msgid "Maximum Skin Angle for Expansion"
  1471. msgstr "Maks. Kąt Rozciągania Ścian"
  1472. #: fdmprinter.def.json
  1473. msgctxt "max_skin_angle_for_expansion description"
  1474. 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."
  1475. 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."
  1476. #: fdmprinter.def.json
  1477. msgctxt "min_skin_width_for_expansion label"
  1478. msgid "Minimum Skin Width for Expansion"
  1479. msgstr "Min. Szerok. Skóry do Poszerzenia"
  1480. #: fdmprinter.def.json
  1481. msgctxt "min_skin_width_for_expansion description"
  1482. 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."
  1483. 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."
  1484. #: fdmprinter.def.json
  1485. msgctxt "material label"
  1486. msgid "Material"
  1487. msgstr "Materiał"
  1488. #: fdmprinter.def.json
  1489. msgctxt "material description"
  1490. msgid "Material"
  1491. msgstr "Materiał"
  1492. #: fdmprinter.def.json
  1493. msgctxt "default_material_print_temperature label"
  1494. msgid "Default Printing Temperature"
  1495. msgstr "Domyślna Temperatura Druku"
  1496. #: fdmprinter.def.json
  1497. msgctxt "default_material_print_temperature description"
  1498. 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"
  1499. 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"
  1500. #: fdmprinter.def.json
  1501. msgctxt "material_print_temperature label"
  1502. msgid "Printing Temperature"
  1503. msgstr "Temperatura Druku"
  1504. #: fdmprinter.def.json
  1505. msgctxt "material_print_temperature description"
  1506. msgid "The temperature used for printing."
  1507. msgstr "Temperatura stosowana do drukowania."
  1508. #: fdmprinter.def.json
  1509. msgctxt "material_print_temperature_layer_0 label"
  1510. msgid "Printing Temperature Initial Layer"
  1511. msgstr "Temp. Druku Początk. Warstwy"
  1512. #: fdmprinter.def.json
  1513. msgctxt "material_print_temperature_layer_0 description"
  1514. msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer."
  1515. msgstr "Temperatura stosowana do drukowania pierwszej warstwy. Ustaw wartość 0, aby wyłączyć szczególną obsługę początkowej warstwy."
  1516. #: fdmprinter.def.json
  1517. msgctxt "material_initial_print_temperature label"
  1518. msgid "Initial Printing Temperature"
  1519. msgstr "Początkowa Temp. Druku"
  1520. #: fdmprinter.def.json
  1521. msgctxt "material_initial_print_temperature description"
  1522. msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start."
  1523. msgstr "Minimalna temperatura podczas podgrzewania do temperatury drukowania, przy której można rozpocząć drukowanie."
  1524. #: fdmprinter.def.json
  1525. msgctxt "material_final_print_temperature label"
  1526. msgid "Final Printing Temperature"
  1527. msgstr "Końcowa Temp. Druku"
  1528. #: fdmprinter.def.json
  1529. msgctxt "material_final_print_temperature description"
  1530. msgid "The temperature to which to already start cooling down just before the end of printing."
  1531. msgstr "Temperatura, od której zaczyna się chłodzenie tuż przed końcem drukowania."
  1532. #: fdmprinter.def.json
  1533. msgctxt "material_extrusion_cool_down_speed label"
  1534. msgid "Extrusion Cool Down Speed Modifier"
  1535. msgstr "Współczynnik chłodz. podczas Ekstruzji"
  1536. #: fdmprinter.def.json
  1537. msgctxt "material_extrusion_cool_down_speed description"
  1538. 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."
  1539. 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."
  1540. #: fdmprinter.def.json
  1541. msgctxt "default_material_bed_temperature label"
  1542. msgid "Default Build Plate Temperature"
  1543. msgstr "Domyślna Temp. Platformy Roboczej"
  1544. #: fdmprinter.def.json
  1545. msgctxt "default_material_bed_temperature description"
  1546. 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"
  1547. 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"
  1548. #: fdmprinter.def.json
  1549. msgctxt "material_bed_temperature label"
  1550. msgid "Build Plate Temperature"
  1551. msgstr "Temperatura Stołu"
  1552. #: fdmprinter.def.json
  1553. msgctxt "material_bed_temperature description"
  1554. msgid "The temperature used for the heated build plate. If this is 0, the bed temperature will not be adjusted."
  1555. msgstr "Temperatura stosowana dla podgrzewanej platformy roboczej. Jeżeli jest ustawione 0, temperatura stołu nie będzie ustawiona."
  1556. #: fdmprinter.def.json
  1557. msgctxt "material_bed_temperature_layer_0 label"
  1558. msgid "Build Plate Temperature Initial Layer"
  1559. msgstr "Temp. Stołu na Pierw. Warstwie"
  1560. #: fdmprinter.def.json
  1561. msgctxt "material_bed_temperature_layer_0 description"
  1562. msgid "The temperature used for the heated build plate at the first layer."
  1563. msgstr "Temperatura stosowana przy podgrzewanym stole na pierwszej warstwie."
  1564. #: fdmprinter.def.json
  1565. msgctxt "material_adhesion_tendency label"
  1566. msgid "Adhesion Tendency"
  1567. msgstr "Tendencja Przyczepności"
  1568. #: fdmprinter.def.json
  1569. msgctxt "material_adhesion_tendency description"
  1570. msgid "Surface adhesion tendency."
  1571. msgstr "Tendencja przyczepności powierzchni."
  1572. #: fdmprinter.def.json
  1573. msgctxt "material_surface_energy label"
  1574. msgid "Surface Energy"
  1575. msgstr "Energia Powierzchni"
  1576. #: fdmprinter.def.json
  1577. msgctxt "material_surface_energy description"
  1578. msgid "Surface energy."
  1579. msgstr "Energia powierzchni."
  1580. #: fdmprinter.def.json
  1581. msgctxt "material_shrinkage_percentage label"
  1582. msgid "Shrinkage Ratio"
  1583. msgstr "Współczynnik Skurczu"
  1584. #: fdmprinter.def.json
  1585. msgctxt "material_shrinkage_percentage description"
  1586. msgid "Shrinkage ratio in percentage."
  1587. msgstr "Współczynnik skurczu w procentach."
  1588. #: fdmprinter.def.json
  1589. msgctxt "material_flow label"
  1590. msgid "Flow"
  1591. msgstr "Przepływ"
  1592. #: fdmprinter.def.json
  1593. msgctxt "material_flow description"
  1594. msgid "Flow compensation: the amount of material extruded is multiplied by this value."
  1595. msgstr "Kompensacja przepływu: ilość ekstrudowanego materiału jest mnożona przez tę wartość."
  1596. #: fdmprinter.def.json
  1597. msgctxt "material_flow_layer_0 label"
  1598. msgid "Initial Layer Flow"
  1599. msgstr "Przepływ Pierwszej Warstwy"
  1600. #: fdmprinter.def.json
  1601. msgctxt "material_flow_layer_0 description"
  1602. msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value."
  1603. msgstr "Kompensacja przepływu dla pierwszej warstwy: ilość materiału ekstrudowanego na pierwszej warstwie jest mnożona przez tę wartość."
  1604. #: fdmprinter.def.json
  1605. msgctxt "retraction_enable label"
  1606. msgid "Enable Retraction"
  1607. msgstr "Włącz Retrakcję"
  1608. #: fdmprinter.def.json
  1609. msgctxt "retraction_enable description"
  1610. msgid "Retract the filament when the nozzle is moving over a non-printed area. "
  1611. msgstr "Cofnij filament, gdy dysza porusza się nad obszarem, w którym nie ma drukować. "
  1612. #: fdmprinter.def.json
  1613. msgctxt "retract_at_layer_change label"
  1614. msgid "Retract at Layer Change"
  1615. msgstr "Retrakcja podczas Zmiany Warstwy"
  1616. #: fdmprinter.def.json
  1617. msgctxt "retract_at_layer_change description"
  1618. msgid "Retract the filament when the nozzle is moving to the next layer."
  1619. msgstr "Cofnij filament, gdy dysza przesuwa się do następnej warstwy."
  1620. #: fdmprinter.def.json
  1621. msgctxt "retraction_amount label"
  1622. msgid "Retraction Distance"
  1623. msgstr "Długość Retrakcji"
  1624. #: fdmprinter.def.json
  1625. msgctxt "retraction_amount description"
  1626. msgid "The length of material retracted during a retraction move."
  1627. msgstr "Długość materiału wycofanego podczas retrakcji."
  1628. #: fdmprinter.def.json
  1629. msgctxt "retraction_speed label"
  1630. msgid "Retraction Speed"
  1631. msgstr "Prędkość Retrakcji"
  1632. #: fdmprinter.def.json
  1633. msgctxt "retraction_speed description"
  1634. msgid "The speed at which the filament is retracted and primed during a retraction move."
  1635. msgstr "Prędkość, z jaką jest wykonywana i dopełniana retrakcja."
  1636. #: fdmprinter.def.json
  1637. msgctxt "retraction_retract_speed label"
  1638. msgid "Retraction Retract Speed"
  1639. msgstr "Prędk. Wycofania Retrakcji"
  1640. #: fdmprinter.def.json
  1641. msgctxt "retraction_retract_speed description"
  1642. msgid "The speed at which the filament is retracted during a retraction move."
  1643. msgstr "Prędkość, z jaką wykonywana jest retrakcja."
  1644. #: fdmprinter.def.json
  1645. msgctxt "retraction_prime_speed label"
  1646. msgid "Retraction Prime Speed"
  1647. msgstr "Prędk. Dopełn. Retrakcji"
  1648. #: fdmprinter.def.json
  1649. msgctxt "retraction_prime_speed description"
  1650. msgid "The speed at which the filament is primed during a retraction move."
  1651. msgstr "Prędkość, z jaką retrakcja jest dopełniana."
  1652. #: fdmprinter.def.json
  1653. msgctxt "retraction_extra_prime_amount label"
  1654. msgid "Retraction Extra Prime Amount"
  1655. msgstr "Dod. Czyszcz. Wart. Retrakcji"
  1656. #: fdmprinter.def.json
  1657. msgctxt "retraction_extra_prime_amount description"
  1658. msgid "Some material can ooze away during a travel move, which can be compensated for here."
  1659. msgstr "Trochę materiału może wypływać podczas ruchu jałowego co może zostać skompensowane tutaj."
  1660. #: fdmprinter.def.json
  1661. msgctxt "retraction_min_travel label"
  1662. msgid "Retraction Minimum Travel"
  1663. msgstr "Minimalny Przejazd dla Retrakcji"
  1664. #: fdmprinter.def.json
  1665. msgctxt "retraction_min_travel description"
  1666. msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area."
  1667. msgstr "Minimalna odległość ruchu jałowego potrzebna do wykonania retrkacji. Pomaga to uzyskać mniej retrakcji w małym obszarze."
  1668. #: fdmprinter.def.json
  1669. msgctxt "retraction_count_max label"
  1670. msgid "Maximum Retraction Count"
  1671. msgstr "Maksymalna Liczba Retrakcji"
  1672. #: fdmprinter.def.json
  1673. msgctxt "retraction_count_max description"
  1674. 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."
  1675. 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."
  1676. #: fdmprinter.def.json
  1677. msgctxt "retraction_extrusion_window label"
  1678. msgid "Minimum Extrusion Distance Window"
  1679. msgstr "Okno Min. Dług. Ekstruzji"
  1680. #: fdmprinter.def.json
  1681. msgctxt "retraction_extrusion_window description"
  1682. 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."
  1683. 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."
  1684. #: fdmprinter.def.json
  1685. msgctxt "limit_support_retractions label"
  1686. msgid "Limit Support Retractions"
  1687. msgstr "Ogranicz Retrakcje Pomiędzy Podporami"
  1688. #: fdmprinter.def.json
  1689. msgctxt "limit_support_retractions description"
  1690. 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."
  1691. 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."
  1692. #: fdmprinter.def.json
  1693. msgctxt "material_standby_temperature label"
  1694. msgid "Standby Temperature"
  1695. msgstr "Temperatura Czuwania"
  1696. #: fdmprinter.def.json
  1697. msgctxt "material_standby_temperature description"
  1698. msgid "The temperature of the nozzle when another nozzle is currently used for printing."
  1699. msgstr "Temperatura dyszy, gdy inne dysze są obecnie używane do drukowania."
  1700. #: fdmprinter.def.json
  1701. msgctxt "switch_extruder_retraction_amount label"
  1702. msgid "Nozzle Switch Retraction Distance"
  1703. msgstr "Długość Retrakcji przy Zmianie Dyszy"
  1704. #: fdmprinter.def.json
  1705. msgctxt "switch_extruder_retraction_amount description"
  1706. 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."
  1707. msgstr "Długość retrakcji: Ustaw na 0, aby wyłączyć retrkację. To powinno ogólnie być takie samo jak długość strefy grzewczej."
  1708. #: fdmprinter.def.json
  1709. msgctxt "switch_extruder_retraction_speeds label"
  1710. msgid "Nozzle Switch Retraction Speed"
  1711. msgstr "Prędk. Retrakcji przy Zmianie Dyszy"
  1712. #: fdmprinter.def.json
  1713. msgctxt "switch_extruder_retraction_speeds description"
  1714. 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."
  1715. 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."
  1716. #: fdmprinter.def.json
  1717. msgctxt "switch_extruder_retraction_speed label"
  1718. msgid "Nozzle Switch Retract Speed"
  1719. msgstr "Prędk. Cofania przy Zmianie Dyszy"
  1720. #: fdmprinter.def.json
  1721. msgctxt "switch_extruder_retraction_speed description"
  1722. msgid "The speed at which the filament is retracted during a nozzle switch retract."
  1723. msgstr "Prędkość, z jaką filament jest wycofywany podczas retrakcji przy zmianie dyszy."
  1724. #: fdmprinter.def.json
  1725. msgctxt "switch_extruder_prime_speed label"
  1726. msgid "Nozzle Switch Prime Speed"
  1727. msgstr "Prędk. Czyszcz. przy Zmianie Dyszy"
  1728. #: fdmprinter.def.json
  1729. msgctxt "switch_extruder_prime_speed description"
  1730. msgid "The speed at which the filament is pushed back after a nozzle switch retraction."
  1731. msgstr "Prędkość, z jaką filament jest cofany podczas retrakcji po zmianie dyszy."
  1732. #: fdmprinter.def.json
  1733. msgctxt "speed label"
  1734. msgid "Speed"
  1735. msgstr "Prędkość"
  1736. #: fdmprinter.def.json
  1737. msgctxt "speed description"
  1738. msgid "Speed"
  1739. msgstr "Prędkość"
  1740. #: fdmprinter.def.json
  1741. msgctxt "speed_print label"
  1742. msgid "Print Speed"
  1743. msgstr "Prędkość Druku"
  1744. #: fdmprinter.def.json
  1745. msgctxt "speed_print description"
  1746. msgid "The speed at which printing happens."
  1747. msgstr "Prędkość druku."
  1748. #: fdmprinter.def.json
  1749. msgctxt "speed_infill label"
  1750. msgid "Infill Speed"
  1751. msgstr "Prędkość Wypełn."
  1752. #: fdmprinter.def.json
  1753. msgctxt "speed_infill description"
  1754. msgid "The speed at which infill is printed."
  1755. msgstr "Prędkość, z jaką drukowane jest wypełnienie."
  1756. #: fdmprinter.def.json
  1757. msgctxt "speed_wall label"
  1758. msgid "Wall Speed"
  1759. msgstr "Prędkość Ścian"
  1760. #: fdmprinter.def.json
  1761. msgctxt "speed_wall description"
  1762. msgid "The speed at which the walls are printed."
  1763. msgstr "Prędkość drukowania ścian."
  1764. #: fdmprinter.def.json
  1765. msgctxt "speed_wall_0 label"
  1766. msgid "Outer Wall Speed"
  1767. msgstr "Prędkość Zewn. Ściany"
  1768. #: fdmprinter.def.json
  1769. msgctxt "speed_wall_0 description"
  1770. 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."
  1771. 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."
  1772. #: fdmprinter.def.json
  1773. msgctxt "speed_wall_x label"
  1774. msgid "Inner Wall Speed"
  1775. msgstr "Prędkość Wewn. Ściany"
  1776. #: fdmprinter.def.json
  1777. msgctxt "speed_wall_x description"
  1778. 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."
  1779. 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."
  1780. #: fdmprinter.def.json
  1781. msgctxt "speed_roofing label"
  1782. msgid "Top Surface Skin Speed"
  1783. msgstr "Prędk. Górnej Pow. Skóry"
  1784. #: fdmprinter.def.json
  1785. msgctxt "speed_roofing description"
  1786. msgid "The speed at which top surface skin layers are printed."
  1787. msgstr "Prędkość, z jaką drukowane są warstwy górnej powierzchni skóry."
  1788. #: fdmprinter.def.json
  1789. msgctxt "speed_topbottom label"
  1790. msgid "Top/Bottom Speed"
  1791. msgstr "Prędkość Góra/Dół"
  1792. #: fdmprinter.def.json
  1793. msgctxt "speed_topbottom description"
  1794. msgid "The speed at which top/bottom layers are printed."
  1795. msgstr "Szybkość, z jaką drukowane są górne/dolne warstwy."
  1796. #: fdmprinter.def.json
  1797. msgctxt "speed_support label"
  1798. msgid "Support Speed"
  1799. msgstr "Prędkość Podpór"
  1800. #: fdmprinter.def.json
  1801. msgctxt "speed_support description"
  1802. 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."
  1803. 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."
  1804. #: fdmprinter.def.json
  1805. msgctxt "speed_support_infill label"
  1806. msgid "Support Infill Speed"
  1807. msgstr "Prędkość Wypełn. Podpór"
  1808. #: fdmprinter.def.json
  1809. msgctxt "speed_support_infill description"
  1810. msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability."
  1811. msgstr "Prędkość, z jaką drukowane jest wypełnienie podstawy. Drukowanie wypełnień przy niższych prędkościach poprawia stabilność."
  1812. #: fdmprinter.def.json
  1813. msgctxt "speed_support_interface label"
  1814. msgid "Support Interface Speed"
  1815. msgstr "Prędk. Połączenia Podpór"
  1816. #: fdmprinter.def.json
  1817. msgctxt "speed_support_interface description"
  1818. msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality."
  1819. 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."
  1820. #: fdmprinter.def.json
  1821. msgctxt "speed_support_roof label"
  1822. msgid "Support Roof Speed"
  1823. msgstr "Prędkość Dachu Podpory"
  1824. #: fdmprinter.def.json
  1825. msgctxt "speed_support_roof description"
  1826. msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality."
  1827. msgstr "Prędkość, z jaką drukowane są dachy podpory. Drukowanie przy niższych prędkościach może poprawić jakość nawisów."
  1828. #: fdmprinter.def.json
  1829. msgctxt "speed_support_bottom label"
  1830. msgid "Support Floor Speed"
  1831. msgstr "Prędk. Podstawy Podpory"
  1832. #: fdmprinter.def.json
  1833. msgctxt "speed_support_bottom description"
  1834. 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."
  1835. 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."
  1836. #: fdmprinter.def.json
  1837. msgctxt "speed_prime_tower label"
  1838. msgid "Prime Tower Speed"
  1839. msgstr "Prędkość Wieży Czyszcz."
  1840. #: fdmprinter.def.json
  1841. msgctxt "speed_prime_tower description"
  1842. 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."
  1843. 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."
  1844. #: fdmprinter.def.json
  1845. msgctxt "speed_travel label"
  1846. msgid "Travel Speed"
  1847. msgstr "Prędkość Ruchów Jałowych"
  1848. #: fdmprinter.def.json
  1849. msgctxt "speed_travel description"
  1850. msgid "The speed at which travel moves are made."
  1851. msgstr "Prędkość, z jaką wykonywane są ruchy jałowe."
  1852. #: fdmprinter.def.json
  1853. msgctxt "speed_layer_0 label"
  1854. msgid "Initial Layer Speed"
  1855. msgstr "Prędk. Początk. Warstwy"
  1856. #: fdmprinter.def.json
  1857. msgctxt "speed_layer_0 description"
  1858. msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate."
  1859. msgstr "Prędkość dla pierwszej warstwy. Niższa wartość jest zalecane w celu poprawy przyczepności do stołu."
  1860. #: fdmprinter.def.json
  1861. msgctxt "speed_print_layer_0 label"
  1862. msgid "Initial Layer Print Speed"
  1863. msgstr "Prędk. Druku Początk. Warstwy"
  1864. #: fdmprinter.def.json
  1865. msgctxt "speed_print_layer_0 description"
  1866. msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate."
  1867. msgstr "Szybkość drukowania dla pierwszej warstwy. Niższa wartość jest zalecane w celu poprawy przyczepności do stołu."
  1868. #: fdmprinter.def.json
  1869. msgctxt "speed_travel_layer_0 label"
  1870. msgid "Initial Layer Travel Speed"
  1871. msgstr "Prędk. Ruchów Jał. na 1. Warstwie"
  1872. #: fdmprinter.def.json
  1873. msgctxt "speed_travel_layer_0 description"
  1874. 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."
  1875. 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."
  1876. #: fdmprinter.def.json
  1877. msgctxt "skirt_brim_speed label"
  1878. msgid "Skirt/Brim Speed"
  1879. msgstr "Prędkość Obwódka/Obrys"
  1880. #: fdmprinter.def.json
  1881. msgctxt "skirt_brim_speed description"
  1882. 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."
  1883. 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ą."
  1884. #: fdmprinter.def.json
  1885. msgctxt "max_feedrate_z_override label"
  1886. msgid "Maximum Z Speed"
  1887. msgstr "Maksymalna Prędk. Z"
  1888. #: fdmprinter.def.json
  1889. msgctxt "max_feedrate_z_override description"
  1890. 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."
  1891. 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."
  1892. #: fdmprinter.def.json
  1893. msgctxt "speed_slowdown_layers label"
  1894. msgid "Number of Slower Layers"
  1895. msgstr "Ilość Wolnych Warstw"
  1896. #: fdmprinter.def.json
  1897. msgctxt "speed_slowdown_layers description"
  1898. 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."
  1899. 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."
  1900. #: fdmprinter.def.json
  1901. msgctxt "speed_equalize_flow_enabled label"
  1902. msgid "Equalize Filament Flow"
  1903. msgstr "Zrówn. Przepływ Filamentu"
  1904. #: fdmprinter.def.json
  1905. msgctxt "speed_equalize_flow_enabled description"
  1906. 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."
  1907. 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."
  1908. #: fdmprinter.def.json
  1909. msgctxt "speed_equalize_flow_max label"
  1910. msgid "Maximum Speed for Flow Equalization"
  1911. msgstr "Maks. Prędk. dla Zrówn. Przepływu"
  1912. #: fdmprinter.def.json
  1913. msgctxt "speed_equalize_flow_max description"
  1914. msgid "Maximum print speed when adjusting the print speed in order to equalize flow."
  1915. msgstr "Maksymalna prędkość drukowania podczas ustawiania prędkości druku w celu zrównoważenia przepływu."
  1916. #: fdmprinter.def.json
  1917. msgctxt "acceleration_enabled label"
  1918. msgid "Enable Acceleration Control"
  1919. msgstr "Włącz Sterowanie Przyspieszeniem"
  1920. #: fdmprinter.def.json
  1921. msgctxt "acceleration_enabled description"
  1922. msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality."
  1923. msgstr "Umożliwia regulację przyspieszenia głowicy drukującej. Wzrost przyspieszeń może skrócić czas drukowania kosztem jakości druku."
  1924. #: fdmprinter.def.json
  1925. msgctxt "acceleration_print label"
  1926. msgid "Print Acceleration"
  1927. msgstr "Przyspieszenie Druku"
  1928. #: fdmprinter.def.json
  1929. msgctxt "acceleration_print description"
  1930. msgid "The acceleration with which printing happens."
  1931. msgstr "Przyspieszenie, z jakim odbywa się drukowanie."
  1932. #: fdmprinter.def.json
  1933. msgctxt "acceleration_infill label"
  1934. msgid "Infill Acceleration"
  1935. msgstr "Przyspieszenie Wypełnienia"
  1936. #: fdmprinter.def.json
  1937. msgctxt "acceleration_infill description"
  1938. msgid "The acceleration with which infill is printed."
  1939. msgstr "Przyspieszenie, z którym drukowane jest wypełnienie."
  1940. #: fdmprinter.def.json
  1941. msgctxt "acceleration_wall label"
  1942. msgid "Wall Acceleration"
  1943. msgstr "Przyspieszenie Ścian"
  1944. #: fdmprinter.def.json
  1945. msgctxt "acceleration_wall description"
  1946. msgid "The acceleration with which the walls are printed."
  1947. msgstr "Przyspieszenie, z jakim drukowane są ściany."
  1948. #: fdmprinter.def.json
  1949. msgctxt "acceleration_wall_0 label"
  1950. msgid "Outer Wall Acceleration"
  1951. msgstr "Przyspieszenie Ściany Zewn."
  1952. #: fdmprinter.def.json
  1953. msgctxt "acceleration_wall_0 description"
  1954. msgid "The acceleration with which the outermost walls are printed."
  1955. msgstr "Przyspieszenia, z jakim drukowane są ściany zewn."
  1956. #: fdmprinter.def.json
  1957. msgctxt "acceleration_wall_x label"
  1958. msgid "Inner Wall Acceleration"
  1959. msgstr "Przyspieszenie Ściany Wewn."
  1960. #: fdmprinter.def.json
  1961. msgctxt "acceleration_wall_x description"
  1962. msgid "The acceleration with which all inner walls are printed."
  1963. msgstr "Przyspieszenie, z jakim drukowane są ściany wewn."
  1964. #: fdmprinter.def.json
  1965. msgctxt "acceleration_roofing label"
  1966. msgid "Top Surface Skin Acceleration"
  1967. msgstr "Przysp. Górnej Pow. Skóry"
  1968. #: fdmprinter.def.json
  1969. msgctxt "acceleration_roofing description"
  1970. msgid "The acceleration with which top surface skin layers are printed."
  1971. msgstr "Przyspieszenie, z jakim drukowane są warstwy górnej powierzchni skóry."
  1972. #: fdmprinter.def.json
  1973. msgctxt "acceleration_topbottom label"
  1974. msgid "Top/Bottom Acceleration"
  1975. msgstr "Przysp. Górnych/Dolnych Warstw"
  1976. #: fdmprinter.def.json
  1977. msgctxt "acceleration_topbottom description"
  1978. msgid "The acceleration with which top/bottom layers are printed."
  1979. msgstr "Przyspieszenie, z jakim drukowane są górne/dolne warstwy."
  1980. #: fdmprinter.def.json
  1981. msgctxt "acceleration_support label"
  1982. msgid "Support Acceleration"
  1983. msgstr "Przyspieszenie Podpór"
  1984. #: fdmprinter.def.json
  1985. msgctxt "acceleration_support description"
  1986. msgid "The acceleration with which the support structure is printed."
  1987. msgstr "Przyspieszenie, z którym drukowane są podpory."
  1988. #: fdmprinter.def.json
  1989. msgctxt "acceleration_support_infill label"
  1990. msgid "Support Infill Acceleration"
  1991. msgstr "Przyspieszenie Wypełnienia Podpory"
  1992. #: fdmprinter.def.json
  1993. msgctxt "acceleration_support_infill description"
  1994. msgid "The acceleration with which the infill of support is printed."
  1995. msgstr "Przyspieszenie, z których drukowane jest wypełnienie podpory."
  1996. #: fdmprinter.def.json
  1997. msgctxt "acceleration_support_interface label"
  1998. msgid "Support Interface Acceleration"
  1999. msgstr "Przyspieszenie Pow. Styku Podpory"
  2000. #: fdmprinter.def.json
  2001. msgctxt "acceleration_support_interface description"
  2002. msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality."
  2003. msgstr "Przyspieszenie, z jakim drukowane są dachy i podłoża podpory. Drukowanie przy niższym przyspieszeniu może poprawić jakość zwisu."
  2004. #: fdmprinter.def.json
  2005. msgctxt "acceleration_support_roof label"
  2006. msgid "Support Roof Acceleration"
  2007. msgstr "Przyspieszenie Dachu Podpory"
  2008. #: fdmprinter.def.json
  2009. msgctxt "acceleration_support_roof description"
  2010. msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality."
  2011. msgstr "Przyspieszenie, z jakim drukowane są dachy podpór. Drukowanie przy niższym przyspieszeniu może poprawić jakość zwisu."
  2012. #: fdmprinter.def.json
  2013. msgctxt "acceleration_support_bottom label"
  2014. msgid "Support Floor Acceleration"
  2015. msgstr "Przyspieszenie Podłoża Podpory"
  2016. #: fdmprinter.def.json
  2017. msgctxt "acceleration_support_bottom description"
  2018. 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."
  2019. msgstr "Przyspieszenie, z jakim są drukowane podłoża podpór. Drukowanie przy niższym przyspieszeniu może poprawić adhezję podpory na modelu."
  2020. #: fdmprinter.def.json
  2021. msgctxt "acceleration_prime_tower label"
  2022. msgid "Prime Tower Acceleration"
  2023. msgstr "Przyspieszenie Wieży Czyszczącej"
  2024. #: fdmprinter.def.json
  2025. msgctxt "acceleration_prime_tower description"
  2026. msgid "The acceleration with which the prime tower is printed."
  2027. msgstr "Przyspieszenie, z którym drukowana jest wieża czyszcząca."
  2028. #: fdmprinter.def.json
  2029. msgctxt "acceleration_travel label"
  2030. msgid "Travel Acceleration"
  2031. msgstr "Przyspieszenie Ruchów Jałowych"
  2032. #: fdmprinter.def.json
  2033. msgctxt "acceleration_travel description"
  2034. msgid "The acceleration with which travel moves are made."
  2035. msgstr "Przyspieszenie, z jakim wykonywane są ruchy jałowe."
  2036. #: fdmprinter.def.json
  2037. msgctxt "acceleration_layer_0 label"
  2038. msgid "Initial Layer Acceleration"
  2039. msgstr "Pierwsza warstwa przyspieszenie"
  2040. #: fdmprinter.def.json
  2041. msgctxt "acceleration_layer_0 description"
  2042. msgid "The acceleration for the initial layer."
  2043. msgstr "Przyspieszenie dla początkowej warstwy."
  2044. #: fdmprinter.def.json
  2045. msgctxt "acceleration_print_layer_0 label"
  2046. msgid "Initial Layer Print Acceleration"
  2047. msgstr "Przysp. Druku 1. Warstwy"
  2048. #: fdmprinter.def.json
  2049. msgctxt "acceleration_print_layer_0 description"
  2050. msgid "The acceleration during the printing of the initial layer."
  2051. msgstr "Przyspieszenie podczas drukowania pierwszej warstwy."
  2052. #: fdmprinter.def.json
  2053. msgctxt "acceleration_travel_layer_0 label"
  2054. msgid "Initial Layer Travel Acceleration"
  2055. msgstr "Przyspieszenie Ruchu Jał. 1. Warstwa"
  2056. #: fdmprinter.def.json
  2057. msgctxt "acceleration_travel_layer_0 description"
  2058. msgid "The acceleration for travel moves in the initial layer."
  2059. msgstr "Przyspieszenie ruchów jałowych na pierwszej warstwie."
  2060. #: fdmprinter.def.json
  2061. msgctxt "acceleration_skirt_brim label"
  2062. msgid "Skirt/Brim Acceleration"
  2063. msgstr "Przyspieszenie Obwódki/Obrysu"
  2064. #: fdmprinter.def.json
  2065. msgctxt "acceleration_skirt_brim description"
  2066. 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."
  2067. 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."
  2068. #: fdmprinter.def.json
  2069. msgctxt "jerk_enabled label"
  2070. msgid "Enable Jerk Control"
  2071. msgstr "Włącz Kontrole Zrywu"
  2072. #: fdmprinter.def.json
  2073. msgctxt "jerk_enabled description"
  2074. 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."
  2075. 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."
  2076. #: fdmprinter.def.json
  2077. msgctxt "jerk_print label"
  2078. msgid "Print Jerk"
  2079. msgstr "Zryw Druku"
  2080. #: fdmprinter.def.json
  2081. msgctxt "jerk_print description"
  2082. msgid "The maximum instantaneous velocity change of the print head."
  2083. msgstr "Maksymalna zmiana prędkości chwilowej głowicy drukującej."
  2084. #: fdmprinter.def.json
  2085. msgctxt "jerk_infill label"
  2086. msgid "Infill Jerk"
  2087. msgstr "Zryw Wypełnienie"
  2088. #: fdmprinter.def.json
  2089. msgctxt "jerk_infill description"
  2090. msgid "The maximum instantaneous velocity change with which infill is printed."
  2091. msgstr "Maksymalna zmiana prędkości chwilowej, z którą jest drukowane wypełnienie."
  2092. #: fdmprinter.def.json
  2093. msgctxt "jerk_wall label"
  2094. msgid "Wall Jerk"
  2095. msgstr "Zryw Ściany"
  2096. #: fdmprinter.def.json
  2097. msgctxt "jerk_wall description"
  2098. msgid "The maximum instantaneous velocity change with which the walls are printed."
  2099. msgstr "Maksymalna zmiana prędkości chwilowej z jaką drukowane są ściany."
  2100. #: fdmprinter.def.json
  2101. msgctxt "jerk_wall_0 label"
  2102. msgid "Outer Wall Jerk"
  2103. msgstr "Zryw Zewn. Ścian"
  2104. #: fdmprinter.def.json
  2105. msgctxt "jerk_wall_0 description"
  2106. msgid "The maximum instantaneous velocity change with which the outermost walls are printed."
  2107. msgstr "Maksymalna zmiana prędkości chwilowej z jaką drukowane są zewnętrzne ściany."
  2108. #: fdmprinter.def.json
  2109. msgctxt "jerk_wall_x label"
  2110. msgid "Inner Wall Jerk"
  2111. msgstr "Zryw Wewn. Ścian"
  2112. #: fdmprinter.def.json
  2113. msgctxt "jerk_wall_x description"
  2114. msgid "The maximum instantaneous velocity change with which all inner walls are printed."
  2115. msgstr "Maksymalna zmiana prędkości chwilowej z jaką drukowane są wewnętrzne ściany."
  2116. #: fdmprinter.def.json
  2117. msgctxt "jerk_roofing label"
  2118. msgid "Top Surface Skin Jerk"
  2119. msgstr "Zryw Górnej Pow. Skóry"
  2120. #: fdmprinter.def.json
  2121. msgctxt "jerk_roofing description"
  2122. msgid "The maximum instantaneous velocity change with which top surface skin layers are printed."
  2123. msgstr "Maksymalna nagła zmiana prędkości, z jaką drukowane są warstwy górnej powierzchni skóry."
  2124. #: fdmprinter.def.json
  2125. msgctxt "jerk_topbottom label"
  2126. msgid "Top/Bottom Jerk"
  2127. msgstr "Zryw Góra/Dół"
  2128. #: fdmprinter.def.json
  2129. msgctxt "jerk_topbottom description"
  2130. msgid "The maximum instantaneous velocity change with which top/bottom layers are printed."
  2131. msgstr "Maksymalna zmiana prędkości chwilowej z jaką drukowane są górne/dolne warstwy."
  2132. #: fdmprinter.def.json
  2133. msgctxt "jerk_support label"
  2134. msgid "Support Jerk"
  2135. msgstr "Zryw Podpory"
  2136. #: fdmprinter.def.json
  2137. msgctxt "jerk_support description"
  2138. msgid "The maximum instantaneous velocity change with which the support structure is printed."
  2139. msgstr "Maksymalna zmiana prędkości chwilowej z jaką drukowane są podpory."
  2140. #: fdmprinter.def.json
  2141. msgctxt "jerk_support_infill label"
  2142. msgid "Support Infill Jerk"
  2143. msgstr "Zryw Wypełnienia Podpory"
  2144. #: fdmprinter.def.json
  2145. msgctxt "jerk_support_infill description"
  2146. msgid "The maximum instantaneous velocity change with which the infill of support is printed."
  2147. msgstr "Maksymalna zmiana prędkości chwilowej z jaką drukowane jest wypełnienie podpory."
  2148. #: fdmprinter.def.json
  2149. msgctxt "jerk_support_interface label"
  2150. msgid "Support Interface Jerk"
  2151. msgstr "Zryw Połączenia Podpory"
  2152. #: fdmprinter.def.json
  2153. msgctxt "jerk_support_interface description"
  2154. msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed."
  2155. msgstr "Maksymalna zmiana prędkości chwilowej z jaką drukowane są podłoża i dachy podpory."
  2156. #: fdmprinter.def.json
  2157. msgctxt "jerk_support_roof label"
  2158. msgid "Support Roof Jerk"
  2159. msgstr "Zryw Dachu Podpory"
  2160. #: fdmprinter.def.json
  2161. msgctxt "jerk_support_roof description"
  2162. msgid "The maximum instantaneous velocity change with which the roofs of support are printed."
  2163. msgstr "Maksymalna zmiana prędkości chwilowej z jaką drukowane są dachy podpory."
  2164. #: fdmprinter.def.json
  2165. msgctxt "jerk_support_bottom label"
  2166. msgid "Support Floor Jerk"
  2167. msgstr "Zryw Podł. Podpór"
  2168. #: fdmprinter.def.json
  2169. msgctxt "jerk_support_bottom description"
  2170. msgid "The maximum instantaneous velocity change with which the floors of support are printed."
  2171. msgstr "Maksymalna zmiana prędkości chwilowej z jaką drukowane są podłoża podpór."
  2172. #: fdmprinter.def.json
  2173. msgctxt "jerk_prime_tower label"
  2174. msgid "Prime Tower Jerk"
  2175. msgstr "Zryw Wieży Czyszczącej"
  2176. #: fdmprinter.def.json
  2177. msgctxt "jerk_prime_tower description"
  2178. msgid "The maximum instantaneous velocity change with which the prime tower is printed."
  2179. msgstr "Maksymalna zmiana chwilowej prędkości z jaką drukowana jest wieża czyszcząca."
  2180. #: fdmprinter.def.json
  2181. msgctxt "jerk_travel label"
  2182. msgid "Travel Jerk"
  2183. msgstr "Zryw Ruch Jałowy"
  2184. #: fdmprinter.def.json
  2185. msgctxt "jerk_travel description"
  2186. msgid "The maximum instantaneous velocity change with which travel moves are made."
  2187. msgstr "Maksymalna zmiana prędkości chwilowej z jaką wykonywane są ruchy jałowe."
  2188. #: fdmprinter.def.json
  2189. msgctxt "jerk_layer_0 label"
  2190. msgid "Initial Layer Jerk"
  2191. msgstr "Zryw Pierwsz. Warstwa"
  2192. #: fdmprinter.def.json
  2193. msgctxt "jerk_layer_0 description"
  2194. msgid "The print maximum instantaneous velocity change for the initial layer."
  2195. msgstr "Maksymalna zmiana chwilowej prędkości dla pierwszej warstwy."
  2196. #: fdmprinter.def.json
  2197. msgctxt "jerk_print_layer_0 label"
  2198. msgid "Initial Layer Print Jerk"
  2199. msgstr "Zryw Początk. Warstwy"
  2200. #: fdmprinter.def.json
  2201. msgctxt "jerk_print_layer_0 description"
  2202. msgid "The maximum instantaneous velocity change during the printing of the initial layer."
  2203. msgstr "Maksymalna zmiana prędkości chwilowej podczas drukowania pierwszej warstwy."
  2204. #: fdmprinter.def.json
  2205. msgctxt "jerk_travel_layer_0 label"
  2206. msgid "Initial Layer Travel Jerk"
  2207. msgstr "Zryw Początk. Wartswa"
  2208. #: fdmprinter.def.json
  2209. msgctxt "jerk_travel_layer_0 description"
  2210. msgid "The acceleration for travel moves in the initial layer."
  2211. msgstr "Przyspieszenie dla ruchów jałowych na początkowej warstwie."
  2212. #: fdmprinter.def.json
  2213. msgctxt "jerk_skirt_brim label"
  2214. msgid "Skirt/Brim Jerk"
  2215. msgstr "Zryw Obwódki/Obrysu"
  2216. #: fdmprinter.def.json
  2217. msgctxt "jerk_skirt_brim description"
  2218. msgid "The maximum instantaneous velocity change with which the skirt and brim are printed."
  2219. msgstr "Maksymalna zmiana prędkości chwilowej z jaką drukowane są obwódka i obrys."
  2220. #: fdmprinter.def.json
  2221. msgctxt "travel label"
  2222. msgid "Travel"
  2223. msgstr "Ruch Jałowy"
  2224. #: fdmprinter.def.json
  2225. msgctxt "travel description"
  2226. msgid "travel"
  2227. msgstr "ruch jałowy"
  2228. #: fdmprinter.def.json
  2229. msgctxt "retraction_combing label"
  2230. msgid "Combing Mode"
  2231. msgstr "Tryb Kombinowania"
  2232. #: fdmprinter.def.json
  2233. msgctxt "retraction_combing description"
  2234. 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."
  2235. msgstr ""
  2236. "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 "
  2237. "wydaniach Cura."
  2238. #: fdmprinter.def.json
  2239. msgctxt "retraction_combing option off"
  2240. msgid "Off"
  2241. msgstr "Wyłącz"
  2242. #: fdmprinter.def.json
  2243. msgctxt "retraction_combing option all"
  2244. msgid "All"
  2245. msgstr "Wszędzie"
  2246. #: fdmprinter.def.json
  2247. msgctxt "retraction_combing option noskin"
  2248. msgid "Not in Skin"
  2249. msgstr "Nie w Powłoce"
  2250. #: fdmprinter.def.json
  2251. msgctxt "retraction_combing option infill"
  2252. msgid "Within Infill"
  2253. msgstr "Wewnątrz Wypełnienia"
  2254. #: fdmprinter.def.json
  2255. msgctxt "retraction_combing_max_distance label"
  2256. msgid "Max Comb Distance With No Retract"
  2257. msgstr "Max. Dystans Kombinowania Bez Retrakcji"
  2258. #: fdmprinter.def.json
  2259. msgctxt "retraction_combing_max_distance description"
  2260. msgid "When non-zero, combing travel moves that are longer than this distance will use retraction."
  2261. msgstr "Przy wartości niezerowej, kombinowane ruchy jałowe o dystansie większym niż zadany bedą używały retrakcji."
  2262. #: fdmprinter.def.json
  2263. msgctxt "travel_retract_before_outer_wall label"
  2264. msgid "Retract Before Outer Wall"
  2265. msgstr "Cofnij Przed Zewn. Ścianą"
  2266. #: fdmprinter.def.json
  2267. msgctxt "travel_retract_before_outer_wall description"
  2268. msgid "Always retract when moving to start an outer wall."
  2269. msgstr "Zawsze cofaj podczas przemieszczania się do początku zewnętrznej ściany."
  2270. #: fdmprinter.def.json
  2271. msgctxt "travel_avoid_other_parts label"
  2272. msgid "Avoid Printed Parts When Traveling"
  2273. msgstr "Unikaj Wydruk. Części Podczas Ruchu Jałowego"
  2274. #: fdmprinter.def.json
  2275. msgctxt "travel_avoid_other_parts description"
  2276. msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled."
  2277. msgstr "Dysza unika już wydrukowanych części podczas ruchu jałowego. Ta opcja jest dostępna tylko w przypadku włączonego trybu kombinowania."
  2278. #: fdmprinter.def.json
  2279. msgctxt "travel_avoid_supports label"
  2280. msgid "Avoid Supports When Traveling"
  2281. msgstr "Unikaj Podpór Podczas Ruchu Jałowego"
  2282. #: fdmprinter.def.json
  2283. msgctxt "travel_avoid_supports description"
  2284. msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled."
  2285. msgstr "Dysza będzie omijała już wydrukowane podpory podczas ruchu jałowego. Ta opcja jest dostępna jedynie, gdy kombinowanie jest włączone."
  2286. #: fdmprinter.def.json
  2287. msgctxt "travel_avoid_distance label"
  2288. msgid "Travel Avoid Distance"
  2289. msgstr "Odległość Omijania Ruchu Jałowego"
  2290. #: fdmprinter.def.json
  2291. msgctxt "travel_avoid_distance description"
  2292. msgid "The distance between the nozzle and already printed parts when avoiding during travel moves."
  2293. msgstr "Odległość między dyszą a już wydrukowanym elementem, gdy są one omijane podczas ruchu jałowego."
  2294. #: fdmprinter.def.json
  2295. msgctxt "start_layers_at_same_position label"
  2296. msgid "Start Layers with the Same Part"
  2297. msgstr "Rozp. Warstwy w tym Samym Punkcie"
  2298. #: fdmprinter.def.json
  2299. msgctxt "start_layers_at_same_position description"
  2300. 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."
  2301. 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."
  2302. #: fdmprinter.def.json
  2303. msgctxt "layer_start_x label"
  2304. msgid "Layer Start X"
  2305. msgstr "Początek Warstwy X"
  2306. #: fdmprinter.def.json
  2307. msgctxt "layer_start_x description"
  2308. msgid "The X coordinate of the position near where to find the part to start printing each layer."
  2309. msgstr "Współrzędna X pozycji blisko miejsca gdzie ma rozpoczynać się drukowanie każdej warstwy."
  2310. #: fdmprinter.def.json
  2311. msgctxt "layer_start_y label"
  2312. msgid "Layer Start Y"
  2313. msgstr "Początek Warstwy Y"
  2314. #: fdmprinter.def.json
  2315. msgctxt "layer_start_y description"
  2316. msgid "The Y coordinate of the position near where to find the part to start printing each layer."
  2317. msgstr "Współrzędna Y pozycji blisko miejsca gdzie ma rozpoczynać się drukowanie każdej warstwy."
  2318. #: fdmprinter.def.json
  2319. msgctxt "retraction_hop_enabled label"
  2320. msgid "Z Hop When Retracted"
  2321. msgstr "Skok Z Podczas Retrakcji"
  2322. #: fdmprinter.def.json
  2323. msgctxt "retraction_hop_enabled description"
  2324. 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."
  2325. 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."
  2326. #: fdmprinter.def.json
  2327. msgctxt "retraction_hop_only_when_collides label"
  2328. msgid "Z Hop Only Over Printed Parts"
  2329. msgstr "Skok Z Tylko nad Druk. Częściami"
  2330. #: fdmprinter.def.json
  2331. msgctxt "retraction_hop_only_when_collides description"
  2332. msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling."
  2333. 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."
  2334. #: fdmprinter.def.json
  2335. msgctxt "retraction_hop label"
  2336. msgid "Z Hop Height"
  2337. msgstr "Wysokość Skoku Z"
  2338. #: fdmprinter.def.json
  2339. msgctxt "retraction_hop description"
  2340. msgid "The height difference when performing a Z Hop."
  2341. msgstr "Różnica w wysokości podczas przeprowadzania Skoku Z."
  2342. #: fdmprinter.def.json
  2343. msgctxt "retraction_hop_after_extruder_switch label"
  2344. msgid "Z Hop After Extruder Switch"
  2345. msgstr "Skok Z po Zmianie Ekstrudera"
  2346. #: fdmprinter.def.json
  2347. msgctxt "retraction_hop_after_extruder_switch description"
  2348. 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."
  2349. 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."
  2350. #: fdmprinter.def.json
  2351. msgctxt "cooling label"
  2352. msgid "Cooling"
  2353. msgstr "Chłodzenie"
  2354. #: fdmprinter.def.json
  2355. msgctxt "cooling description"
  2356. msgid "Cooling"
  2357. msgstr "Chłodzenie"
  2358. #: fdmprinter.def.json
  2359. msgctxt "cool_fan_enabled label"
  2360. msgid "Enable Print Cooling"
  2361. msgstr "Włącz Chłodzenie Wydruku"
  2362. #: fdmprinter.def.json
  2363. msgctxt "cool_fan_enabled description"
  2364. msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs."
  2365. 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."
  2366. #: fdmprinter.def.json
  2367. msgctxt "cool_fan_speed label"
  2368. msgid "Fan Speed"
  2369. msgstr "Prędkość Wentylatora"
  2370. #: fdmprinter.def.json
  2371. msgctxt "cool_fan_speed description"
  2372. msgid "The speed at which the print cooling fans spin."
  2373. msgstr "Prędkość z jaką mają obracać się wentylatory."
  2374. #: fdmprinter.def.json
  2375. msgctxt "cool_fan_speed_min label"
  2376. msgid "Regular Fan Speed"
  2377. msgstr "Normalna Pręd. Wentylatora"
  2378. #: fdmprinter.def.json
  2379. msgctxt "cool_fan_speed_min description"
  2380. 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."
  2381. 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."
  2382. #: fdmprinter.def.json
  2383. msgctxt "cool_fan_speed_max label"
  2384. msgid "Maximum Fan Speed"
  2385. msgstr "Maksymalna Pręd. Wentylatora"
  2386. #: fdmprinter.def.json
  2387. msgctxt "cool_fan_speed_max description"
  2388. 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."
  2389. 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."
  2390. #: fdmprinter.def.json
  2391. msgctxt "cool_min_layer_time_fan_speed_max label"
  2392. msgid "Regular/Maximum Fan Speed Threshold"
  2393. msgstr "Regularny/Maks. Próg Pręd. Wentylatora"
  2394. #: fdmprinter.def.json
  2395. msgctxt "cool_min_layer_time_fan_speed_max description"
  2396. 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."
  2397. 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."
  2398. #: fdmprinter.def.json
  2399. msgctxt "cool_fan_speed_0 label"
  2400. msgid "Initial Fan Speed"
  2401. msgstr "Początkowa Prędk. Wentylatora"
  2402. #: fdmprinter.def.json
  2403. msgctxt "cool_fan_speed_0 description"
  2404. 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."
  2405. 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."
  2406. #: fdmprinter.def.json
  2407. msgctxt "cool_fan_full_at_height label"
  2408. msgid "Regular Fan Speed at Height"
  2409. msgstr "Regularna Pręd. Went. na Wysokości"
  2410. #: fdmprinter.def.json
  2411. msgctxt "cool_fan_full_at_height description"
  2412. 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."
  2413. 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."
  2414. #: fdmprinter.def.json
  2415. msgctxt "cool_fan_full_layer label"
  2416. msgid "Regular Fan Speed at Layer"
  2417. msgstr "Regularna Pręd. Went. na Wartswie"
  2418. #: fdmprinter.def.json
  2419. msgctxt "cool_fan_full_layer description"
  2420. 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."
  2421. 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."
  2422. #: fdmprinter.def.json
  2423. msgctxt "cool_min_layer_time label"
  2424. msgid "Minimum Layer Time"
  2425. msgstr "Minimalny Czas Warstwy"
  2426. #: fdmprinter.def.json
  2427. msgctxt "cool_min_layer_time description"
  2428. 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."
  2429. 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."
  2430. #: fdmprinter.def.json
  2431. msgctxt "cool_min_speed label"
  2432. msgid "Minimum Speed"
  2433. msgstr "Minimalna Prędkość"
  2434. #: fdmprinter.def.json
  2435. msgctxt "cool_min_speed description"
  2436. 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."
  2437. 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."
  2438. #: fdmprinter.def.json
  2439. msgctxt "cool_lift_head label"
  2440. msgid "Lift Head"
  2441. msgstr "Unieś Głowicę"
  2442. #: fdmprinter.def.json
  2443. msgctxt "cool_lift_head description"
  2444. 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."
  2445. 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."
  2446. #: fdmprinter.def.json
  2447. msgctxt "support label"
  2448. msgid "Support"
  2449. msgstr "Podpory"
  2450. #: fdmprinter.def.json
  2451. msgctxt "support description"
  2452. msgid "Support"
  2453. msgstr "Podpory"
  2454. #: fdmprinter.def.json
  2455. msgctxt "support_enable label"
  2456. msgid "Generate Support"
  2457. msgstr "Generuj Podpory"
  2458. #: fdmprinter.def.json
  2459. msgctxt "support_enable description"
  2460. msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing."
  2461. msgstr "Generuj struktury wspierające części modelu, które zwisają. Bez tych struktur takie części mogłyby spaść podczas drukowania."
  2462. #: fdmprinter.def.json
  2463. msgctxt "support_extruder_nr label"
  2464. msgid "Support Extruder"
  2465. msgstr "Ekstruder Podpory"
  2466. #: fdmprinter.def.json
  2467. msgctxt "support_extruder_nr description"
  2468. msgid "The extruder train to use for printing the support. This is used in multi-extrusion."
  2469. msgstr "Ekstruder używany do drukowania podpory. Używane do multi-ekstruzji."
  2470. #: fdmprinter.def.json
  2471. msgctxt "support_infill_extruder_nr label"
  2472. msgid "Support Infill Extruder"
  2473. msgstr "Ekstruder Wypełnienia Podpory"
  2474. #: fdmprinter.def.json
  2475. msgctxt "support_infill_extruder_nr description"
  2476. msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion."
  2477. msgstr "Ekstruder wykorzystywany do drukowania wypełnienia podpory. Używane do multi-ekstruzji."
  2478. #: fdmprinter.def.json
  2479. msgctxt "support_extruder_nr_layer_0 label"
  2480. msgid "First Layer Support Extruder"
  2481. msgstr "Ekstruder Pierwszej Warstwy Podpory"
  2482. #: fdmprinter.def.json
  2483. msgctxt "support_extruder_nr_layer_0 description"
  2484. msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion."
  2485. msgstr "Ekstruder wykorzystywany do drukowania pierwszej warstwy wypełnienia podpory. Używane do multi-ekstruzji."
  2486. #: fdmprinter.def.json
  2487. msgctxt "support_interface_extruder_nr label"
  2488. msgid "Support Interface Extruder"
  2489. msgstr "Ekstruder Połączenia Podpory"
  2490. #: fdmprinter.def.json
  2491. msgctxt "support_interface_extruder_nr description"
  2492. msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion."
  2493. msgstr "Ekstruder wykorzystywany do drukowania dachów i podłoży podpory. Używane do multi-ekstruzji."
  2494. #: fdmprinter.def.json
  2495. msgctxt "support_roof_extruder_nr label"
  2496. msgid "Support Roof Extruder"
  2497. msgstr "Ekstruder Dachu Podpory"
  2498. #: fdmprinter.def.json
  2499. msgctxt "support_roof_extruder_nr description"
  2500. msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion."
  2501. msgstr "Ekstruder wykorzystywany do drukowania dachów podpory. Używany do multi-ekstruzji."
  2502. #: fdmprinter.def.json
  2503. msgctxt "support_bottom_extruder_nr label"
  2504. msgid "Support Floor Extruder"
  2505. msgstr "Ekstruder Podłoża Podpory"
  2506. #: fdmprinter.def.json
  2507. msgctxt "support_bottom_extruder_nr description"
  2508. msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion."
  2509. msgstr "Ekstruder używany do druku podłoża podpory. Służy do multi-ekstruzji."
  2510. #: fdmprinter.def.json
  2511. msgctxt "support_type label"
  2512. msgid "Support Placement"
  2513. msgstr "Rozmieszczenie Podpór"
  2514. #: fdmprinter.def.json
  2515. msgctxt "support_type description"
  2516. 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."
  2517. 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."
  2518. #: fdmprinter.def.json
  2519. msgctxt "support_type option buildplate"
  2520. msgid "Touching Buildplate"
  2521. msgstr "Dotykające Stołu"
  2522. #: fdmprinter.def.json
  2523. msgctxt "support_type option everywhere"
  2524. msgid "Everywhere"
  2525. msgstr "Wszędzie"
  2526. #: fdmprinter.def.json
  2527. msgctxt "support_angle label"
  2528. msgid "Support Overhang Angle"
  2529. msgstr "Kąt Zwisu dla Podpory"
  2530. #: fdmprinter.def.json
  2531. msgctxt "support_angle description"
  2532. 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."
  2533. msgstr "Minimalny kąt zwisu, dla którego dodaje się podporę. Przy wartości 0 ° wszystkie zwisy są podparte, 90 ° nie zapewnia żadnego podparcia."
  2534. #: fdmprinter.def.json
  2535. msgctxt "support_pattern label"
  2536. msgid "Support Pattern"
  2537. msgstr "Wzór Podpory"
  2538. #: fdmprinter.def.json
  2539. msgctxt "support_pattern description"
  2540. msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support."
  2541. msgstr "Wzór struktury podpory wydruku. Różne opcje zapewniają trwałe lub łatwe do usunięcia podpory."
  2542. #: fdmprinter.def.json
  2543. msgctxt "support_pattern option lines"
  2544. msgid "Lines"
  2545. msgstr "Linie"
  2546. #: fdmprinter.def.json
  2547. msgctxt "support_pattern option grid"
  2548. msgid "Grid"
  2549. msgstr "Kratka"
  2550. #: fdmprinter.def.json
  2551. msgctxt "support_pattern option triangles"
  2552. msgid "Triangles"
  2553. msgstr "Trójkąty"
  2554. #: fdmprinter.def.json
  2555. msgctxt "support_pattern option concentric"
  2556. msgid "Concentric"
  2557. msgstr "Koncentryczny"
  2558. #: fdmprinter.def.json
  2559. msgctxt "support_pattern option zigzag"
  2560. msgid "Zig Zag"
  2561. msgstr "Zygzak"
  2562. #: fdmprinter.def.json
  2563. msgctxt "support_pattern option cross"
  2564. msgid "Cross"
  2565. msgstr "Krzyż"
  2566. #: fdmprinter.def.json
  2567. msgctxt "support_wall_count label"
  2568. msgid "Support Wall Line Count"
  2569. msgstr "Ilość Ścianek Podpory"
  2570. #: fdmprinter.def.json
  2571. msgctxt "support_wall_count description"
  2572. 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."
  2573. 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."
  2574. #: fdmprinter.def.json
  2575. msgctxt "zig_zaggify_support label"
  2576. msgid "Connect Support Lines"
  2577. msgstr "Łącz Linie Podpory"
  2578. #: fdmprinter.def.json
  2579. msgctxt "zig_zaggify_support description"
  2580. 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."
  2581. 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."
  2582. #: fdmprinter.def.json
  2583. msgctxt "support_connect_zigzags label"
  2584. msgid "Connect Support ZigZags"
  2585. msgstr "Połącz Zygzaki Podpory"
  2586. #: fdmprinter.def.json
  2587. msgctxt "support_connect_zigzags description"
  2588. msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure."
  2589. msgstr "Połącz Zygzaki. To zwiększa wytrzymałość zygzakowatej podpory."
  2590. #: fdmprinter.def.json
  2591. msgctxt "support_infill_rate label"
  2592. msgid "Support Density"
  2593. msgstr "Gęstość Podpory"
  2594. #: fdmprinter.def.json
  2595. msgctxt "support_infill_rate description"
  2596. msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  2597. msgstr "Reguluje gęstość struktury podpory. Wyższa wartość powoduje lepsze zwisy, ale podpory są trudniejsze do usunięcia."
  2598. #: fdmprinter.def.json
  2599. msgctxt "support_line_distance label"
  2600. msgid "Support Line Distance"
  2601. msgstr "Odstępy między Liniami Podpory"
  2602. #: fdmprinter.def.json
  2603. msgctxt "support_line_distance description"
  2604. msgid "Distance between the printed support structure lines. This setting is calculated by the support density."
  2605. msgstr "Odległość między drukowanymi liniami struktury podpory. To ustawienie jest obliczane przez gęstość podpory."
  2606. #: fdmprinter.def.json
  2607. msgctxt "support_initial_layer_line_distance label"
  2608. msgid "Initial Layer Support Line Distance"
  2609. msgstr "Odstęp Między Liniami Podpory w Pocz. Warstwie"
  2610. #: fdmprinter.def.json
  2611. msgctxt "support_initial_layer_line_distance description"
  2612. msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density."
  2613. msgstr "Odległość między drukowanymi liniami struktury podpory w początkowej warstwie. To ustawienie jest obliczane na podstawie gęstości podpory."
  2614. #: fdmprinter.def.json
  2615. msgctxt "support_infill_angle label"
  2616. msgid "Support Infill Line Direction"
  2617. msgstr "Kierunek Linii Wypełnienia Podpory"
  2618. #: fdmprinter.def.json
  2619. msgctxt "support_infill_angle description"
  2620. msgid "Orientation of the infill pattern for supports. The support infill pattern is rotated in the horizontal plane."
  2621. msgstr "Orientacja wzoru wypełnienia dla podpór. Wzór podpory jest obracany w płaszczyźnie poziomej."
  2622. #: fdmprinter.def.json
  2623. msgctxt "support_z_distance label"
  2624. msgid "Support Z Distance"
  2625. msgstr "Odległość Podpory Z"
  2626. #: fdmprinter.def.json
  2627. msgctxt "support_z_distance description"
  2628. 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."
  2629. 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."
  2630. #: fdmprinter.def.json
  2631. msgctxt "support_top_distance label"
  2632. msgid "Support Top Distance"
  2633. msgstr "Odległość od Góry Podpory"
  2634. #: fdmprinter.def.json
  2635. msgctxt "support_top_distance description"
  2636. msgid "Distance from the top of the support to the print."
  2637. msgstr "Odległość od wierzchołka podpory do wydruku."
  2638. #: fdmprinter.def.json
  2639. msgctxt "support_bottom_distance label"
  2640. msgid "Support Bottom Distance"
  2641. msgstr "Odległ. na Dole Podpory"
  2642. #: fdmprinter.def.json
  2643. msgctxt "support_bottom_distance description"
  2644. msgid "Distance from the print to the bottom of the support."
  2645. msgstr "Odległość od wydruku do dolnej części podpory."
  2646. #: fdmprinter.def.json
  2647. msgctxt "support_xy_distance label"
  2648. msgid "Support X/Y Distance"
  2649. msgstr "Odległość X/Y Podpory"
  2650. #: fdmprinter.def.json
  2651. msgctxt "support_xy_distance description"
  2652. msgid "Distance of the support structure from the print in the X/Y directions."
  2653. msgstr "Odległość podpory od wydruku w kierunkach X/Y."
  2654. #: fdmprinter.def.json
  2655. msgctxt "support_xy_overrides_z label"
  2656. msgid "Support Distance Priority"
  2657. msgstr "Priorytet Odległości Podpory"
  2658. #: fdmprinter.def.json
  2659. msgctxt "support_xy_overrides_z description"
  2660. 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."
  2661. 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."
  2662. #: fdmprinter.def.json
  2663. msgctxt "support_xy_overrides_z option xy_overrides_z"
  2664. msgid "X/Y overrides Z"
  2665. msgstr "X/Y nadpisuje Z"
  2666. #: fdmprinter.def.json
  2667. msgctxt "support_xy_overrides_z option z_overrides_xy"
  2668. msgid "Z overrides X/Y"
  2669. msgstr "Z nadpisuje X/Y"
  2670. #: fdmprinter.def.json
  2671. msgctxt "support_xy_distance_overhang label"
  2672. msgid "Minimum Support X/Y Distance"
  2673. msgstr "Min. Odległość X/Y Podpory"
  2674. #: fdmprinter.def.json
  2675. msgctxt "support_xy_distance_overhang description"
  2676. msgid "Distance of the support structure from the overhang in the X/Y directions. "
  2677. msgstr "Odległość podpory od zwisu w kierunkach X/Y "
  2678. #: fdmprinter.def.json
  2679. msgctxt "support_bottom_stair_step_height label"
  2680. msgid "Support Stair Step Height"
  2681. msgstr "Wysokość Stopnia Podpory"
  2682. #: fdmprinter.def.json
  2683. msgctxt "support_bottom_stair_step_height description"
  2684. 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."
  2685. 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."
  2686. #: fdmprinter.def.json
  2687. msgctxt "support_bottom_stair_step_width label"
  2688. msgid "Support Stair Step Maximum Width"
  2689. msgstr "Maks. Szerokość Stopnia Podpory"
  2690. #: fdmprinter.def.json
  2691. msgctxt "support_bottom_stair_step_width description"
  2692. 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."
  2693. 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."
  2694. #: fdmprinter.def.json
  2695. msgctxt "support_join_distance label"
  2696. msgid "Support Join Distance"
  2697. msgstr "Odległość Łączenia Podpór"
  2698. #: fdmprinter.def.json
  2699. msgctxt "support_join_distance description"
  2700. 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."
  2701. 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ą."
  2702. #: fdmprinter.def.json
  2703. msgctxt "support_offset label"
  2704. msgid "Support Horizontal Expansion"
  2705. msgstr "Poszerzenie Podpór Poziome"
  2706. #: fdmprinter.def.json
  2707. msgctxt "support_offset description"
  2708. 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."
  2709. 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."
  2710. #: fdmprinter.def.json
  2711. msgctxt "support_infill_sparse_thickness label"
  2712. msgid "Support Infill Layer Thickness"
  2713. msgstr "Wys. Warstwy Wypełn. Podpory"
  2714. #: fdmprinter.def.json
  2715. msgctxt "support_infill_sparse_thickness description"
  2716. msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded."
  2717. msgstr "Wysokość warstwy materiału wypełniającego podpory. Ta wartość jest zawsze wielokrotnością wysokości warstwy i jest zaokrąglana."
  2718. #: fdmprinter.def.json
  2719. msgctxt "gradual_support_infill_steps label"
  2720. msgid "Gradual Support Infill Steps"
  2721. msgstr "Stopnie Stopniowego Wypełn. Podpór"
  2722. #: fdmprinter.def.json
  2723. msgctxt "gradual_support_infill_steps description"
  2724. 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."
  2725. 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."
  2726. #: fdmprinter.def.json
  2727. msgctxt "gradual_support_infill_step_height label"
  2728. msgid "Gradual Support Infill Step Height"
  2729. msgstr "Wys. Stopnia Stopniowego Wypełn. Podpory"
  2730. #: fdmprinter.def.json
  2731. msgctxt "gradual_support_infill_step_height description"
  2732. msgid "The height of support infill of a given density before switching to half the density."
  2733. msgstr "Wysokość wypełnienia podpory o danej gęstości przed przełączeniem na połowę gęstości."
  2734. #: fdmprinter.def.json
  2735. msgctxt "support_interface_enable label"
  2736. msgid "Enable Support Interface"
  2737. msgstr "Włącz Połączenie Podpory"
  2738. #: fdmprinter.def.json
  2739. msgctxt "support_interface_enable description"
  2740. 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."
  2741. 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."
  2742. #: fdmprinter.def.json
  2743. msgctxt "support_roof_enable label"
  2744. msgid "Enable Support Roof"
  2745. msgstr "Włącz Dach Podpory"
  2746. #: fdmprinter.def.json
  2747. msgctxt "support_roof_enable description"
  2748. 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."
  2749. 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ą."
  2750. #: fdmprinter.def.json
  2751. msgctxt "support_bottom_enable label"
  2752. msgid "Enable Support Floor"
  2753. msgstr "Włącz Podłoże Podpory"
  2754. #: fdmprinter.def.json
  2755. msgctxt "support_bottom_enable description"
  2756. 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."
  2757. msgstr "Generuj gęstą warstwę materiału pomiędzy spodem podpory a modelem. Tworzy to skórę pomiędzy modelem a podporą."
  2758. #: fdmprinter.def.json
  2759. msgctxt "support_interface_height label"
  2760. msgid "Support Interface Thickness"
  2761. msgstr "Grubość Połączenia Podpory"
  2762. #: fdmprinter.def.json
  2763. msgctxt "support_interface_height description"
  2764. msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top."
  2765. msgstr "Grubość połączenia podpory, gdzie styka się ona z modelem na górze i na dole."
  2766. #: fdmprinter.def.json
  2767. msgctxt "support_roof_height label"
  2768. msgid "Support Roof Thickness"
  2769. msgstr "Grubość Dachu Podpory"
  2770. #: fdmprinter.def.json
  2771. msgctxt "support_roof_height description"
  2772. 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."
  2773. msgstr "Grubość dachu podpory. Steruje ilością gęstych warstw na górnej części podpory, na której osiada model."
  2774. #: fdmprinter.def.json
  2775. msgctxt "support_bottom_height label"
  2776. msgid "Support Floor Thickness"
  2777. msgstr "Grubość Podłoża Podpory"
  2778. #: fdmprinter.def.json
  2779. msgctxt "support_bottom_height description"
  2780. 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."
  2781. msgstr "Grubość podłoża podpory. Steruje liczbę zwartych warstw, które są drukowane na modelu, na którym spoczywa podpora."
  2782. #: fdmprinter.def.json
  2783. msgctxt "support_interface_skip_height label"
  2784. msgid "Support Interface Resolution"
  2785. msgstr "Rozdzielczość Połączenia Podpory"
  2786. #: fdmprinter.def.json
  2787. msgctxt "support_interface_skip_height description"
  2788. 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."
  2789. 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."
  2790. #: fdmprinter.def.json
  2791. msgctxt "support_interface_density label"
  2792. msgid "Support Interface Density"
  2793. msgstr "Gęstość Połączenia Podpory"
  2794. #: fdmprinter.def.json
  2795. msgctxt "support_interface_density description"
  2796. 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."
  2797. msgstr "Dostosowuje gęstość dachów i podłoży podpory. Wyższa wartość powoduje lepsze zwisy, ale podpory są trudniejsze do usunięcia."
  2798. #: fdmprinter.def.json
  2799. msgctxt "support_roof_density label"
  2800. msgid "Support Roof Density"
  2801. msgstr "Gęstość Dachu Podpory"
  2802. #: fdmprinter.def.json
  2803. msgctxt "support_roof_density description"
  2804. msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  2805. msgstr "Gęstość dachów podpór. Wyższa wartość powoduje lepsze zwisy, ale podpory są trudniejsze do usunięcia."
  2806. #: fdmprinter.def.json
  2807. msgctxt "support_roof_line_distance label"
  2808. msgid "Support Roof Line Distance"
  2809. msgstr "Odległość Linii Dachu Podpory"
  2810. #: fdmprinter.def.json
  2811. msgctxt "support_roof_line_distance description"
  2812. msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately."
  2813. 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."
  2814. #: fdmprinter.def.json
  2815. msgctxt "support_bottom_density label"
  2816. msgid "Support Floor Density"
  2817. msgstr "Gęstość Podłoża Podpory"
  2818. #: fdmprinter.def.json
  2819. msgctxt "support_bottom_density description"
  2820. 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."
  2821. msgstr "Gęstość podłoża podpory. Wyższa wartość powoduje lepszą adhezję podpory na górze modelu."
  2822. #: fdmprinter.def.json
  2823. msgctxt "support_bottom_line_distance label"
  2824. msgid "Support Floor Line Distance"
  2825. msgstr "Odstęp między Liniami Podłoża Podpory"
  2826. #: fdmprinter.def.json
  2827. msgctxt "support_bottom_line_distance description"
  2828. msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately."
  2829. 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."
  2830. #: fdmprinter.def.json
  2831. msgctxt "support_interface_pattern label"
  2832. msgid "Support Interface Pattern"
  2833. msgstr "Wzór Połączenia Podpory"
  2834. #: fdmprinter.def.json
  2835. msgctxt "support_interface_pattern description"
  2836. msgid "The pattern with which the interface of the support with the model is printed."
  2837. msgstr "Wzór, z jakim drukowane jest połączenie podpory z modelem."
  2838. #: fdmprinter.def.json
  2839. msgctxt "support_interface_pattern option lines"
  2840. msgid "Lines"
  2841. msgstr "Linie"
  2842. #: fdmprinter.def.json
  2843. msgctxt "support_interface_pattern option grid"
  2844. msgid "Grid"
  2845. msgstr "Kratka"
  2846. #: fdmprinter.def.json
  2847. msgctxt "support_interface_pattern option triangles"
  2848. msgid "Triangles"
  2849. msgstr "Trójkąty"
  2850. #: fdmprinter.def.json
  2851. msgctxt "support_interface_pattern option concentric"
  2852. msgid "Concentric"
  2853. msgstr "Koncentryczny"
  2854. #: fdmprinter.def.json
  2855. msgctxt "support_interface_pattern option zigzag"
  2856. msgid "Zig Zag"
  2857. msgstr "Zygzak"
  2858. #: fdmprinter.def.json
  2859. msgctxt "support_roof_pattern label"
  2860. msgid "Support Roof Pattern"
  2861. msgstr "Wzór Dachu Podpory"
  2862. #: fdmprinter.def.json
  2863. msgctxt "support_roof_pattern description"
  2864. msgid "The pattern with which the roofs of the support are printed."
  2865. msgstr "Wzór, z jakim drukowane są dachy podpory."
  2866. #: fdmprinter.def.json
  2867. msgctxt "support_roof_pattern option lines"
  2868. msgid "Lines"
  2869. msgstr "Linie"
  2870. #: fdmprinter.def.json
  2871. msgctxt "support_roof_pattern option grid"
  2872. msgid "Grid"
  2873. msgstr "Kratka"
  2874. #: fdmprinter.def.json
  2875. msgctxt "support_roof_pattern option triangles"
  2876. msgid "Triangles"
  2877. msgstr "Trójkąty"
  2878. #: fdmprinter.def.json
  2879. msgctxt "support_roof_pattern option concentric"
  2880. msgid "Concentric"
  2881. msgstr "Koncentryczny"
  2882. #: fdmprinter.def.json
  2883. msgctxt "support_roof_pattern option zigzag"
  2884. msgid "Zig Zag"
  2885. msgstr "Zygzak"
  2886. #: fdmprinter.def.json
  2887. msgctxt "support_bottom_pattern label"
  2888. msgid "Support Floor Pattern"
  2889. msgstr "Wzór Podłoża Podpory"
  2890. #: fdmprinter.def.json
  2891. msgctxt "support_bottom_pattern description"
  2892. msgid "The pattern with which the floors of the support are printed."
  2893. msgstr "Wzór, według którego drukowane są podłoża podpory."
  2894. #: fdmprinter.def.json
  2895. msgctxt "support_bottom_pattern option lines"
  2896. msgid "Lines"
  2897. msgstr "Linie"
  2898. #: fdmprinter.def.json
  2899. msgctxt "support_bottom_pattern option grid"
  2900. msgid "Grid"
  2901. msgstr "Kratka"
  2902. #: fdmprinter.def.json
  2903. msgctxt "support_bottom_pattern option triangles"
  2904. msgid "Triangles"
  2905. msgstr "Trójkąty"
  2906. #: fdmprinter.def.json
  2907. msgctxt "support_bottom_pattern option concentric"
  2908. msgid "Concentric"
  2909. msgstr "Koncentryczny"
  2910. #: fdmprinter.def.json
  2911. msgctxt "support_bottom_pattern option zigzag"
  2912. msgid "Zig Zag"
  2913. msgstr "Zygzak"
  2914. #: fdmprinter.def.json
  2915. msgctxt "support_fan_enable label"
  2916. msgid "Fan Speed Override"
  2917. msgstr "Nadpisanie Prędkości Wentylatora"
  2918. #: fdmprinter.def.json
  2919. msgctxt "support_fan_enable description"
  2920. msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support."
  2921. msgstr "Gdy załączone, prędkość wentylatora chłodzącego wydruk jest zmieniana dla obszarów leżących bezpośrednio ponad podporami,"
  2922. #: fdmprinter.def.json
  2923. msgctxt "support_supported_skin_fan_speed label"
  2924. msgid "Supported Skin Fan Speed"
  2925. msgstr "Prędkość Wentylatora Podpartej Powłoki"
  2926. #: fdmprinter.def.json
  2927. msgctxt "support_supported_skin_fan_speed description"
  2928. 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."
  2929. 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."
  2930. #: fdmprinter.def.json
  2931. msgctxt "support_use_towers label"
  2932. msgid "Use Towers"
  2933. msgstr "Używaj Wież"
  2934. #: fdmprinter.def.json
  2935. msgctxt "support_use_towers description"
  2936. 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."
  2937. 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."
  2938. #: fdmprinter.def.json
  2939. msgctxt "support_tower_diameter label"
  2940. msgid "Tower Diameter"
  2941. msgstr "Średnica Wieży"
  2942. #: fdmprinter.def.json
  2943. msgctxt "support_tower_diameter description"
  2944. msgid "The diameter of a special tower."
  2945. msgstr "Średnica wieży specjalnej."
  2946. #: fdmprinter.def.json
  2947. msgctxt "support_minimal_diameter label"
  2948. msgid "Minimum Diameter"
  2949. msgstr "Minimalna Średnica"
  2950. #: fdmprinter.def.json
  2951. msgctxt "support_minimal_diameter description"
  2952. msgid "Minimum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower."
  2953. msgstr "Minimalna średnica w kierunkach X/Y o małej powierzchni, który jest wspierana przez specjalną wieżę wspierającą."
  2954. #: fdmprinter.def.json
  2955. msgctxt "support_tower_roof_angle label"
  2956. msgid "Tower Roof Angle"
  2957. msgstr "Kąt Dachu Wieży"
  2958. #: fdmprinter.def.json
  2959. msgctxt "support_tower_roof_angle description"
  2960. 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."
  2961. msgstr "Kąt dachu wieży. Wyższa wartość powoduje punktowy dach wieży, a niższa wartość powoduje płaskie dachy wieży."
  2962. #: fdmprinter.def.json
  2963. msgctxt "support_mesh_drop_down label"
  2964. msgid "Drop Down Support Mesh"
  2965. msgstr "Upuść Siatkę Podpory"
  2966. #: fdmprinter.def.json
  2967. msgctxt "support_mesh_drop_down description"
  2968. msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh."
  2969. msgstr "Twórz podpory wszędzie pod siatką podpory, tak aby nie było zwisu w siatce podpory."
  2970. #: fdmprinter.def.json
  2971. msgctxt "platform_adhesion label"
  2972. msgid "Build Plate Adhesion"
  2973. msgstr "Popraw Przycz. Stołu"
  2974. #: fdmprinter.def.json
  2975. msgctxt "platform_adhesion description"
  2976. msgid "Adhesion"
  2977. msgstr "Przyczepność"
  2978. #: fdmprinter.def.json
  2979. msgctxt "prime_blob_enable label"
  2980. msgid "Enable Prime Blob"
  2981. msgstr "Włącz Czyszcz. \"Blob\""
  2982. #: fdmprinter.def.json
  2983. msgctxt "prime_blob_enable description"
  2984. 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."
  2985. 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."
  2986. #: fdmprinter.def.json
  2987. msgctxt "extruder_prime_pos_x label"
  2988. msgid "Extruder Prime X Position"
  2989. msgstr "Pozycja X Czyszczenia Dyszy"
  2990. #: fdmprinter.def.json
  2991. msgctxt "extruder_prime_pos_x description"
  2992. msgid "The X coordinate of the position where the nozzle primes at the start of printing."
  2993. msgstr "Współrzędna X, w której dysza jest czyszczona na początku wydruku."
  2994. #: fdmprinter.def.json
  2995. msgctxt "extruder_prime_pos_y label"
  2996. msgid "Extruder Prime Y Position"
  2997. msgstr "Pozycja Y Czyszczenia Dyszy"
  2998. #: fdmprinter.def.json
  2999. msgctxt "extruder_prime_pos_y description"
  3000. msgid "The Y coordinate of the position where the nozzle primes at the start of printing."
  3001. msgstr "Współrzędna Y, w której dysza jest czyszczona na początku wydruku."
  3002. #: fdmprinter.def.json
  3003. msgctxt "adhesion_type label"
  3004. msgid "Build Plate Adhesion Type"
  3005. msgstr "Typ Ulepszenia Przyczepności"
  3006. #: fdmprinter.def.json
  3007. msgctxt "adhesion_type description"
  3008. 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."
  3009. 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."
  3010. #: fdmprinter.def.json
  3011. msgctxt "adhesion_type option skirt"
  3012. msgid "Skirt"
  3013. msgstr "Obwódka"
  3014. #: fdmprinter.def.json
  3015. msgctxt "adhesion_type option brim"
  3016. msgid "Brim"
  3017. msgstr "Obrys"
  3018. #: fdmprinter.def.json
  3019. msgctxt "adhesion_type option raft"
  3020. msgid "Raft"
  3021. msgstr "Tratwa"
  3022. #: fdmprinter.def.json
  3023. msgctxt "adhesion_type option none"
  3024. msgid "None"
  3025. msgstr "Brak"
  3026. #: fdmprinter.def.json
  3027. msgctxt "adhesion_extruder_nr label"
  3028. msgid "Build Plate Adhesion Extruder"
  3029. msgstr "Ekstruder Drukujący Ułatw. Przyczep."
  3030. #: fdmprinter.def.json
  3031. msgctxt "adhesion_extruder_nr description"
  3032. msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion."
  3033. msgstr "Ekstruder używany do drukowania obwódki/obrysu/tratwy. Używane przy multi-ekstruzji."
  3034. #: fdmprinter.def.json
  3035. msgctxt "skirt_line_count label"
  3036. msgid "Skirt Line Count"
  3037. msgstr "Liczba Linii Obwódki"
  3038. #: fdmprinter.def.json
  3039. msgctxt "skirt_line_count description"
  3040. msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt."
  3041. msgstr "Liczne linie pomagają w lepszym wytłaczaniu małych modeli. Ustawienie na 0 spowoduje wyłączenie obwódki."
  3042. #: fdmprinter.def.json
  3043. msgctxt "skirt_gap label"
  3044. msgid "Skirt Distance"
  3045. msgstr "Odległ. Obwódki"
  3046. #: fdmprinter.def.json
  3047. msgctxt "skirt_gap description"
  3048. msgid ""
  3049. "The horizontal distance between the skirt and the first layer of the print.\n"
  3050. "This is the minimum distance. Multiple skirt lines will extend outwards from this distance."
  3051. msgstr ""
  3052. "Pozioma odległość między obwódką a pierwszą warstwą nadruku.\n"
  3053. "Jest to o minimalnej odległości. Z tej odległości linie będą nakładane w kierunku zewnętrznym."
  3054. #: fdmprinter.def.json
  3055. msgctxt "skirt_brim_minimal_length label"
  3056. msgid "Skirt/Brim Minimum Length"
  3057. msgstr "Min. Dł. Obwódki/Obrysu"
  3058. #: fdmprinter.def.json
  3059. msgctxt "skirt_brim_minimal_length description"
  3060. 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."
  3061. 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."
  3062. #: fdmprinter.def.json
  3063. msgctxt "brim_width label"
  3064. msgid "Brim Width"
  3065. msgstr "Szerokość Obrysu"
  3066. #: fdmprinter.def.json
  3067. msgctxt "brim_width description"
  3068. 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."
  3069. 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."
  3070. #: fdmprinter.def.json
  3071. msgctxt "brim_line_count label"
  3072. msgid "Brim Line Count"
  3073. msgstr "Liczba Linii Obrysu"
  3074. #: fdmprinter.def.json
  3075. msgctxt "brim_line_count description"
  3076. 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."
  3077. msgstr "Liczba linii używana dla obrysu. Więcej linii obrysu poprawia przyczepność do stołu, ale zmniejsza rzeczywiste pole wydruku."
  3078. #: fdmprinter.def.json
  3079. msgctxt "brim_outside_only label"
  3080. msgid "Brim Only on Outside"
  3081. msgstr "Obrys Tylko na Zewn."
  3082. #: fdmprinter.def.json
  3083. msgctxt "brim_outside_only description"
  3084. 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."
  3085. 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."
  3086. #: fdmprinter.def.json
  3087. msgctxt "raft_margin label"
  3088. msgid "Raft Extra Margin"
  3089. msgstr "Dod. Margines Tratwy"
  3090. #: fdmprinter.def.json
  3091. msgctxt "raft_margin description"
  3092. 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."
  3093. 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."
  3094. #: fdmprinter.def.json
  3095. msgctxt "raft_smoothing label"
  3096. msgid "Raft Smoothing"
  3097. msgstr "Wygładzanie Tratwy"
  3098. #: fdmprinter.def.json
  3099. msgctxt "raft_smoothing description"
  3100. 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."
  3101. msgstr "To ustawienie kontroluje jak bardzo wewn. narożniki w zewn. krawędzi tratwy mają być zaokrąglone. Wewn. 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."
  3102. #: fdmprinter.def.json
  3103. msgctxt "raft_airgap label"
  3104. msgid "Raft Air Gap"
  3105. msgstr "Przerwa Tratwy"
  3106. #: fdmprinter.def.json
  3107. msgctxt "raft_airgap description"
  3108. 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."
  3109. 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."
  3110. #: fdmprinter.def.json
  3111. msgctxt "layer_0_z_overlap label"
  3112. msgid "Initial Layer Z Overlap"
  3113. msgstr "Pokryw. się Pierwsz. Warstwy w Z"
  3114. #: fdmprinter.def.json
  3115. msgctxt "layer_0_z_overlap description"
  3116. 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."
  3117. 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ść."
  3118. #: fdmprinter.def.json
  3119. msgctxt "raft_surface_layers label"
  3120. msgid "Raft Top Layers"
  3121. msgstr "Górne Warstwy Tartwy"
  3122. #: fdmprinter.def.json
  3123. msgctxt "raft_surface_layers description"
  3124. 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."
  3125. 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."
  3126. #: fdmprinter.def.json
  3127. msgctxt "raft_surface_thickness label"
  3128. msgid "Raft Top Layer Thickness"
  3129. msgstr "Grubość Warstwy Góra Tratwy"
  3130. #: fdmprinter.def.json
  3131. msgctxt "raft_surface_thickness description"
  3132. msgid "Layer thickness of the top raft layers."
  3133. msgstr "Grubość warstwy górnych warstw tratwy."
  3134. #: fdmprinter.def.json
  3135. msgctxt "raft_surface_line_width label"
  3136. msgid "Raft Top Line Width"
  3137. msgstr "Szerokość Linii Góra Tratwy"
  3138. #: fdmprinter.def.json
  3139. msgctxt "raft_surface_line_width description"
  3140. 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."
  3141. msgstr "Szerokość linii na górnej powierzchni tratwy. Mogą to być cienkie linie tak, aby góra tratwy była gładka."
  3142. #: fdmprinter.def.json
  3143. msgctxt "raft_surface_line_spacing label"
  3144. msgid "Raft Top Spacing"
  3145. msgstr "Przerwy Góra Tratwy"
  3146. #: fdmprinter.def.json
  3147. msgctxt "raft_surface_line_spacing description"
  3148. 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."
  3149. 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."
  3150. #: fdmprinter.def.json
  3151. msgctxt "raft_interface_thickness label"
  3152. msgid "Raft Middle Thickness"
  3153. msgstr "Grubość Środka Tratwy"
  3154. #: fdmprinter.def.json
  3155. msgctxt "raft_interface_thickness description"
  3156. msgid "Layer thickness of the middle raft layer."
  3157. msgstr "Grubość środkowej warstwy tratwy."
  3158. #: fdmprinter.def.json
  3159. msgctxt "raft_interface_line_width label"
  3160. msgid "Raft Middle Line Width"
  3161. msgstr "Szerokość Linii Środka Tratwy"
  3162. #: fdmprinter.def.json
  3163. msgctxt "raft_interface_line_width description"
  3164. 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."
  3165. msgstr "Szerokość linii na środkowej warstwie tratwy. Wytłaczanie drugiej warstwy powoduje, że linie przyklejają się do stołu."
  3166. #: fdmprinter.def.json
  3167. msgctxt "raft_interface_line_spacing label"
  3168. msgid "Raft Middle Spacing"
  3169. msgstr "Przerwy Środka Tratwy"
  3170. #: fdmprinter.def.json
  3171. msgctxt "raft_interface_line_spacing description"
  3172. 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."
  3173. 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."
  3174. #: fdmprinter.def.json
  3175. msgctxt "raft_base_thickness label"
  3176. msgid "Raft Base Thickness"
  3177. msgstr "Grubość Podstawy Tratwy"
  3178. #: fdmprinter.def.json
  3179. msgctxt "raft_base_thickness description"
  3180. msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate."
  3181. msgstr "Grubość podstawowej warstwy tratwy. Powinna to być gruba warstwa, która mocno przykleja się do stołu drukarki."
  3182. #: fdmprinter.def.json
  3183. msgctxt "raft_base_line_width label"
  3184. msgid "Raft Base Line Width"
  3185. msgstr "Szerokość Linii Podst. Tratwy"
  3186. #: fdmprinter.def.json
  3187. msgctxt "raft_base_line_width description"
  3188. msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion."
  3189. msgstr "Szerokość linii na podstawowej warstwie tratwy. Powinny być to grube linie, które pomogą w przyczepności do stołu."
  3190. #: fdmprinter.def.json
  3191. msgctxt "raft_base_line_spacing label"
  3192. msgid "Raft Base Line Spacing"
  3193. msgstr "Rozstaw Linii Podstawy Tratwy"
  3194. #: fdmprinter.def.json
  3195. msgctxt "raft_base_line_spacing description"
  3196. 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."
  3197. msgstr "Odległość pomiędzy linami tratwy na podstawowej warstwie tratwy. Szerokie odstępy ułatwiają usuwanie tratwy ze stołu."
  3198. #: fdmprinter.def.json
  3199. msgctxt "raft_speed label"
  3200. msgid "Raft Print Speed"
  3201. msgstr "Prędk. Druku Tratwy"
  3202. #: fdmprinter.def.json
  3203. msgctxt "raft_speed description"
  3204. msgid "The speed at which the raft is printed."
  3205. msgstr "Prędkość, z jaką drukowana jest tratwa."
  3206. #: fdmprinter.def.json
  3207. msgctxt "raft_surface_speed label"
  3208. msgid "Raft Top Print Speed"
  3209. msgstr "Prędk. Druku Góry Tratwy"
  3210. #: fdmprinter.def.json
  3211. msgctxt "raft_surface_speed description"
  3212. 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."
  3213. 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."
  3214. #: fdmprinter.def.json
  3215. msgctxt "raft_interface_speed label"
  3216. msgid "Raft Middle Print Speed"
  3217. msgstr "Prędk. Druku Środka Tratwy"
  3218. #: fdmprinter.def.json
  3219. msgctxt "raft_interface_speed description"
  3220. 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."
  3221. 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."
  3222. #: fdmprinter.def.json
  3223. msgctxt "raft_base_speed label"
  3224. msgid "Raft Base Print Speed"
  3225. msgstr "Prędk. Druku Podst. Tratwy"
  3226. #: fdmprinter.def.json
  3227. msgctxt "raft_base_speed description"
  3228. 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."
  3229. 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."
  3230. #: fdmprinter.def.json
  3231. msgctxt "raft_acceleration label"
  3232. msgid "Raft Print Acceleration"
  3233. msgstr "Przysp. Druku Tratwy"
  3234. #: fdmprinter.def.json
  3235. msgctxt "raft_acceleration description"
  3236. msgid "The acceleration with which the raft is printed."
  3237. msgstr "Przyspieszenie, z jakim tratwa jest drukowana."
  3238. #: fdmprinter.def.json
  3239. msgctxt "raft_surface_acceleration label"
  3240. msgid "Raft Top Print Acceleration"
  3241. msgstr "Przysp. Druku Góry Tratwy"
  3242. #: fdmprinter.def.json
  3243. msgctxt "raft_surface_acceleration description"
  3244. msgid "The acceleration with which the top raft layers are printed."
  3245. msgstr "Przyspieszenie, z jakim drukowane są górne warstwy tratwy."
  3246. #: fdmprinter.def.json
  3247. msgctxt "raft_interface_acceleration label"
  3248. msgid "Raft Middle Print Acceleration"
  3249. msgstr "Przysp. Druku Środka Tratwy"
  3250. #: fdmprinter.def.json
  3251. msgctxt "raft_interface_acceleration description"
  3252. msgid "The acceleration with which the middle raft layer is printed."
  3253. msgstr "Przyspieszenie, z jakim drukowana jest środkowa warstwa tratwy."
  3254. #: fdmprinter.def.json
  3255. msgctxt "raft_base_acceleration label"
  3256. msgid "Raft Base Print Acceleration"
  3257. msgstr "Przysp. Podst. Warstwy Tratwy"
  3258. #: fdmprinter.def.json
  3259. msgctxt "raft_base_acceleration description"
  3260. msgid "The acceleration with which the base raft layer is printed."
  3261. msgstr "Przyspieszenie, z jakim drukowana jest podstawowa warstwa tratwy."
  3262. #: fdmprinter.def.json
  3263. msgctxt "raft_jerk label"
  3264. msgid "Raft Print Jerk"
  3265. msgstr "Zryw Tratwy"
  3266. #: fdmprinter.def.json
  3267. msgctxt "raft_jerk description"
  3268. msgid "The jerk with which the raft is printed."
  3269. msgstr "Zryw, z jakim drukowana jest tratwa."
  3270. #: fdmprinter.def.json
  3271. msgctxt "raft_surface_jerk label"
  3272. msgid "Raft Top Print Jerk"
  3273. msgstr "Zryw Góry Tratwy"
  3274. #: fdmprinter.def.json
  3275. msgctxt "raft_surface_jerk description"
  3276. msgid "The jerk with which the top raft layers are printed."
  3277. msgstr "Zryw, z jakim drukowane są górne warstwy tratwy."
  3278. #: fdmprinter.def.json
  3279. msgctxt "raft_interface_jerk label"
  3280. msgid "Raft Middle Print Jerk"
  3281. msgstr "Zryw Środek Tratwy"
  3282. #: fdmprinter.def.json
  3283. msgctxt "raft_interface_jerk description"
  3284. msgid "The jerk with which the middle raft layer is printed."
  3285. msgstr "Zryw, z którym drukowany jest środek tratwy."
  3286. #: fdmprinter.def.json
  3287. msgctxt "raft_base_jerk label"
  3288. msgid "Raft Base Print Jerk"
  3289. msgstr "Zryw Podst. Tratwy"
  3290. #: fdmprinter.def.json
  3291. msgctxt "raft_base_jerk description"
  3292. msgid "The jerk with which the base raft layer is printed."
  3293. msgstr "Zryw, z którym drukowana jest podstawowa warstwa tratwy."
  3294. #: fdmprinter.def.json
  3295. msgctxt "raft_fan_speed label"
  3296. msgid "Raft Fan Speed"
  3297. msgstr "Prędk. Went. Tratwa"
  3298. #: fdmprinter.def.json
  3299. msgctxt "raft_fan_speed description"
  3300. msgid "The fan speed for the raft."
  3301. msgstr "Prędkość wentylatora dla tratwy."
  3302. #: fdmprinter.def.json
  3303. msgctxt "raft_surface_fan_speed label"
  3304. msgid "Raft Top Fan Speed"
  3305. msgstr "Prędk. Went. Góra Tratwy"
  3306. #: fdmprinter.def.json
  3307. msgctxt "raft_surface_fan_speed description"
  3308. msgid "The fan speed for the top raft layers."
  3309. msgstr "Prędkość wentylatora dla górnych warstw tratwy."
  3310. #: fdmprinter.def.json
  3311. msgctxt "raft_interface_fan_speed label"
  3312. msgid "Raft Middle Fan Speed"
  3313. msgstr "Prędk. Went. Środek Tratwy"
  3314. #: fdmprinter.def.json
  3315. msgctxt "raft_interface_fan_speed description"
  3316. msgid "The fan speed for the middle raft layer."
  3317. msgstr "Prędkość wentylatora dla środkowej warstwy tratwy."
  3318. #: fdmprinter.def.json
  3319. msgctxt "raft_base_fan_speed label"
  3320. msgid "Raft Base Fan Speed"
  3321. msgstr "Prędk. Went. Podst. Tratwy"
  3322. #: fdmprinter.def.json
  3323. msgctxt "raft_base_fan_speed description"
  3324. msgid "The fan speed for the base raft layer."
  3325. msgstr "Prędkość wentylatora dla podstawowej warstwy tratwy."
  3326. #: fdmprinter.def.json
  3327. msgctxt "dual label"
  3328. msgid "Dual Extrusion"
  3329. msgstr "Podwójna ekstruzja"
  3330. #: fdmprinter.def.json
  3331. msgctxt "dual description"
  3332. msgid "Settings used for printing with multiple extruders."
  3333. msgstr "Ustawienia używane do drukowania wieloma głowicami."
  3334. #: fdmprinter.def.json
  3335. msgctxt "prime_tower_enable label"
  3336. msgid "Enable Prime Tower"
  3337. msgstr "Włącz Wieżę Czyszcz."
  3338. #: fdmprinter.def.json
  3339. msgctxt "prime_tower_enable description"
  3340. msgid "Print a tower next to the print which serves to prime the material after each nozzle switch."
  3341. msgstr "Wydrukuj wieżę obok wydruku, która służy do zmiany materiału po każdym przełączeniu dyszy."
  3342. #: fdmprinter.def.json
  3343. msgctxt "prime_tower_circular label"
  3344. msgid "Circular Prime Tower"
  3345. msgstr "Okrągła Wieża Czyszcząca"
  3346. #: fdmprinter.def.json
  3347. msgctxt "prime_tower_circular description"
  3348. msgid "Make the prime tower as a circular shape."
  3349. msgstr "Twórz wieżę czyszczącą o okrągłym kształcie."
  3350. #: fdmprinter.def.json
  3351. msgctxt "prime_tower_size label"
  3352. msgid "Prime Tower Size"
  3353. msgstr "Rozmiar Wieży Czyszcz."
  3354. #: fdmprinter.def.json
  3355. msgctxt "prime_tower_size description"
  3356. msgid "The width of the prime tower."
  3357. msgstr "Szerokość wieży czyszczącej."
  3358. #: fdmprinter.def.json
  3359. msgctxt "prime_tower_min_volume label"
  3360. msgid "Prime Tower Minimum Volume"
  3361. msgstr "Min. Objętość Wieży Czyszcz."
  3362. #: fdmprinter.def.json
  3363. msgctxt "prime_tower_min_volume description"
  3364. msgid "The minimum volume for each layer of the prime tower in order to purge enough material."
  3365. msgstr "Minimalna objętość każdej warstwy wieży czyszczącej w celu oczyszczenia wystarczającej ilości materiału."
  3366. #: fdmprinter.def.json
  3367. msgctxt "prime_tower_position_x label"
  3368. msgid "Prime Tower X Position"
  3369. msgstr "Pozycja Wieży Czyszcz. X"
  3370. #: fdmprinter.def.json
  3371. msgctxt "prime_tower_position_x description"
  3372. msgid "The x coordinate of the position of the prime tower."
  3373. msgstr "Współrzędna X położenia wieży czyszczącej."
  3374. #: fdmprinter.def.json
  3375. msgctxt "prime_tower_position_y label"
  3376. msgid "Prime Tower Y Position"
  3377. msgstr "Pozycja Wieży Czyszcz. Y"
  3378. #: fdmprinter.def.json
  3379. msgctxt "prime_tower_position_y description"
  3380. msgid "The y coordinate of the position of the prime tower."
  3381. msgstr "Współrzędna Y położenia wieży czyszczącej."
  3382. #: fdmprinter.def.json
  3383. msgctxt "prime_tower_flow label"
  3384. msgid "Prime Tower Flow"
  3385. msgstr "Przepływ Wieży Czyszcz."
  3386. #: fdmprinter.def.json
  3387. msgctxt "prime_tower_flow description"
  3388. msgid "Flow compensation: the amount of material extruded is multiplied by this value."
  3389. msgstr "Kompensacja przepływu: ilość ekstrudowanego materiału jest mnożona przez tę wartość."
  3390. #: fdmprinter.def.json
  3391. msgctxt "prime_tower_wipe_enabled label"
  3392. msgid "Wipe Inactive Nozzle on Prime Tower"
  3393. msgstr "Wytrzyj Nieuż. Dyszą o Wieże Czyszcz."
  3394. #: fdmprinter.def.json
  3395. msgctxt "prime_tower_wipe_enabled description"
  3396. msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower."
  3397. msgstr "Po wydrukowaniu podstawowej wieży jedną dyszą, wytrzyj wytłoczony materiał z drugiej dyszy o wieżę czyszczącą."
  3398. #: fdmprinter.def.json
  3399. msgctxt "ooze_shield_enabled label"
  3400. msgid "Enable Ooze Shield"
  3401. msgstr "Włącz Osłonę Wycierającą"
  3402. #: fdmprinter.def.json
  3403. msgctxt "ooze_shield_enabled description"
  3404. 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."
  3405. 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."
  3406. #: fdmprinter.def.json
  3407. msgctxt "ooze_shield_angle label"
  3408. msgid "Ooze Shield Angle"
  3409. msgstr "Kąt Osłony Wycierającej"
  3410. #: fdmprinter.def.json
  3411. msgctxt "ooze_shield_angle description"
  3412. 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."
  3413. 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."
  3414. #: fdmprinter.def.json
  3415. msgctxt "ooze_shield_dist label"
  3416. msgid "Ooze Shield Distance"
  3417. msgstr "Odległ. Osłony Wycierającej"
  3418. #: fdmprinter.def.json
  3419. msgctxt "ooze_shield_dist description"
  3420. msgid "Distance of the ooze shield from the print, in the X/Y directions."
  3421. msgstr "Odległość od osłony wycierającej do wydruku, w kierunkach X/Y."
  3422. #: fdmprinter.def.json
  3423. msgctxt "meshfix label"
  3424. msgid "Mesh Fixes"
  3425. msgstr "Poprawki Siatki"
  3426. #: fdmprinter.def.json
  3427. msgctxt "meshfix description"
  3428. msgid "category_fixes"
  3429. msgstr "poprawki_kategorii"
  3430. #: fdmprinter.def.json
  3431. msgctxt "meshfix_union_all label"
  3432. msgid "Union Overlapping Volumes"
  3433. msgstr "Nakładanie się Związanych Brył"
  3434. #: fdmprinter.def.json
  3435. msgctxt "meshfix_union_all description"
  3436. 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."
  3437. 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."
  3438. #: fdmprinter.def.json
  3439. msgctxt "meshfix_union_all_remove_holes label"
  3440. msgid "Remove All Holes"
  3441. msgstr "Usuń Wszystkie Otwory"
  3442. #: fdmprinter.def.json
  3443. msgctxt "meshfix_union_all_remove_holes description"
  3444. 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."
  3445. 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."
  3446. #: fdmprinter.def.json
  3447. msgctxt "meshfix_extensive_stitching label"
  3448. msgid "Extensive Stitching"
  3449. msgstr "Poszerzające Zszywanie"
  3450. #: fdmprinter.def.json
  3451. msgctxt "meshfix_extensive_stitching description"
  3452. 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."
  3453. 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."
  3454. #: fdmprinter.def.json
  3455. msgctxt "meshfix_keep_open_polygons label"
  3456. msgid "Keep Disconnected Faces"
  3457. msgstr "Zachowaj Rozłączone Pow."
  3458. #: fdmprinter.def.json
  3459. msgctxt "meshfix_keep_open_polygons description"
  3460. 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."
  3461. 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."
  3462. #: fdmprinter.def.json
  3463. msgctxt "multiple_mesh_overlap label"
  3464. msgid "Merged Meshes Overlap"
  3465. msgstr "Połączone Siatki Pokrywają się"
  3466. #: fdmprinter.def.json
  3467. msgctxt "multiple_mesh_overlap description"
  3468. msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better."
  3469. msgstr "Spowoduj, że siatki, które się dotykają będą na siebie trochę nachodzić. To sprawia, że lepiej się łączą."
  3470. #: fdmprinter.def.json
  3471. msgctxt "carve_multiple_volumes label"
  3472. msgid "Remove Mesh Intersection"
  3473. msgstr "Usuń Przecięcia Siatki"
  3474. #: fdmprinter.def.json
  3475. msgctxt "carve_multiple_volumes description"
  3476. msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other."
  3477. 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."
  3478. #: fdmprinter.def.json
  3479. msgctxt "alternate_carve_order label"
  3480. msgid "Alternate Mesh Removal"
  3481. msgstr "Zastosuj Usuwanie Siatki"
  3482. #: fdmprinter.def.json
  3483. msgctxt "alternate_carve_order description"
  3484. 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."
  3485. 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."
  3486. #: fdmprinter.def.json
  3487. msgctxt "remove_empty_first_layers label"
  3488. msgid "Remove Empty First Layers"
  3489. msgstr "Usuń Pustą Pierwsz. Warstwę"
  3490. #: fdmprinter.def.json
  3491. msgctxt "remove_empty_first_layers description"
  3492. 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."
  3493. 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."
  3494. #: fdmprinter.def.json
  3495. msgctxt "blackmagic label"
  3496. msgid "Special Modes"
  3497. msgstr "Specjalne Tryby"
  3498. #: fdmprinter.def.json
  3499. msgctxt "blackmagic description"
  3500. msgid "category_blackmagic"
  3501. msgstr "category_blackmagic"
  3502. #: fdmprinter.def.json
  3503. msgctxt "print_sequence label"
  3504. msgid "Print Sequence"
  3505. msgstr "Sekwencja Wydruku"
  3506. #: fdmprinter.def.json
  3507. msgctxt "print_sequence description"
  3508. 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."
  3509. 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."
  3510. #: fdmprinter.def.json
  3511. msgctxt "print_sequence option all_at_once"
  3512. msgid "All at Once"
  3513. msgstr "Wszystko na raz"
  3514. #: fdmprinter.def.json
  3515. msgctxt "print_sequence option one_at_a_time"
  3516. msgid "One at a Time"
  3517. msgstr "Jeden na raz"
  3518. #: fdmprinter.def.json
  3519. msgctxt "infill_mesh label"
  3520. msgid "Infill Mesh"
  3521. msgstr "Siatka Wypełn."
  3522. #: fdmprinter.def.json
  3523. msgctxt "infill_mesh description"
  3524. 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."
  3525. 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."
  3526. #: fdmprinter.def.json
  3527. msgctxt "infill_mesh_order label"
  3528. msgid "Infill Mesh Order"
  3529. msgstr "Porządek Siatki Wypełn."
  3530. #: fdmprinter.def.json
  3531. msgctxt "infill_mesh_order description"
  3532. 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."
  3533. 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."
  3534. #: fdmprinter.def.json
  3535. msgctxt "cutting_mesh label"
  3536. msgid "Cutting Mesh"
  3537. msgstr "Cięcie Siatki"
  3538. #: fdmprinter.def.json
  3539. msgctxt "cutting_mesh description"
  3540. 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."
  3541. 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."
  3542. #: fdmprinter.def.json
  3543. msgctxt "mold_enabled label"
  3544. msgid "Mold"
  3545. msgstr "Forma"
  3546. #: fdmprinter.def.json
  3547. msgctxt "mold_enabled description"
  3548. msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate."
  3549. msgstr "Wydrukuj modele jako formę, którą można wyrzucić w celu uzyskania odlewu, który przypomina modele na płycie."
  3550. #: fdmprinter.def.json
  3551. msgctxt "mold_width label"
  3552. msgid "Minimal Mold Width"
  3553. msgstr "Min. Szerokość Formy"
  3554. #: fdmprinter.def.json
  3555. msgctxt "mold_width description"
  3556. msgid "The minimal distance between the ouside of the mold and the outside of the model."
  3557. msgstr "Minimalna odległość między zewnętrzną stroną formy i zewnętrzną stroną modelu."
  3558. #: fdmprinter.def.json
  3559. msgctxt "mold_roof_height label"
  3560. msgid "Mold Roof Height"
  3561. msgstr "Wysokość Dachu Formy"
  3562. #: fdmprinter.def.json
  3563. msgctxt "mold_roof_height description"
  3564. msgid "The height above horizontal parts in your model which to print mold."
  3565. msgstr "Wysokość nad poziomymi częściami w modelu, które będą drukowanie jako formy."
  3566. #: fdmprinter.def.json
  3567. msgctxt "mold_angle label"
  3568. msgid "Mold Angle"
  3569. msgstr "Kąt Formy"
  3570. #: fdmprinter.def.json
  3571. msgctxt "mold_angle description"
  3572. 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."
  3573. 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."
  3574. #: fdmprinter.def.json
  3575. msgctxt "support_mesh label"
  3576. msgid "Support Mesh"
  3577. msgstr "Siatka Podpory"
  3578. #: fdmprinter.def.json
  3579. msgctxt "support_mesh description"
  3580. msgid "Use this mesh to specify support areas. This can be used to generate support structure."
  3581. msgstr "Użyj tej siatki, aby określić obszary wsparcia. Można to wykorzystać do generowania struktury podpory."
  3582. #: fdmprinter.def.json
  3583. msgctxt "anti_overhang_mesh label"
  3584. msgid "Anti Overhang Mesh"
  3585. msgstr "Siatka Anty-zwisowa"
  3586. #: fdmprinter.def.json
  3587. msgctxt "anti_overhang_mesh description"
  3588. 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."
  3589. 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."
  3590. #: fdmprinter.def.json
  3591. msgctxt "magic_mesh_surface_mode label"
  3592. msgid "Surface Mode"
  3593. msgstr "Tryb Powierzchni"
  3594. #: fdmprinter.def.json
  3595. msgctxt "magic_mesh_surface_mode description"
  3596. 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."
  3597. 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."
  3598. #: fdmprinter.def.json
  3599. msgctxt "magic_mesh_surface_mode option normal"
  3600. msgid "Normal"
  3601. msgstr "Normalny"
  3602. #: fdmprinter.def.json
  3603. msgctxt "magic_mesh_surface_mode option surface"
  3604. msgid "Surface"
  3605. msgstr "Powierzchnia"
  3606. #: fdmprinter.def.json
  3607. msgctxt "magic_mesh_surface_mode option both"
  3608. msgid "Both"
  3609. msgstr "Oba"
  3610. #: fdmprinter.def.json
  3611. msgctxt "magic_spiralize label"
  3612. msgid "Spiralize Outer Contour"
  3613. msgstr "Spiralizuj Zewn. Kontur"
  3614. #: fdmprinter.def.json
  3615. msgctxt "magic_spiralize description"
  3616. 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."
  3617. 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ęść."
  3618. #: fdmprinter.def.json
  3619. msgctxt "smooth_spiralized_contours label"
  3620. msgid "Smooth Spiralized Contours"
  3621. msgstr "Wygładź Spiralne Kontury"
  3622. #: fdmprinter.def.json
  3623. msgctxt "smooth_spiralized_contours description"
  3624. 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."
  3625. 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."
  3626. #: fdmprinter.def.json
  3627. msgctxt "relative_extrusion label"
  3628. msgid "Relative Extrusion"
  3629. msgstr "Ekstruzja Względna"
  3630. #: fdmprinter.def.json
  3631. msgctxt "relative_extrusion description"
  3632. 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."
  3633. 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."
  3634. #: fdmprinter.def.json
  3635. msgctxt "experimental label"
  3636. msgid "Experimental"
  3637. msgstr "Eksperymentalne"
  3638. #: fdmprinter.def.json
  3639. msgctxt "experimental description"
  3640. msgid "experimental!"
  3641. msgstr "eksperymentalne!"
  3642. #: fdmprinter.def.json
  3643. msgctxt "support_tree_enable label"
  3644. msgid "Tree Support"
  3645. msgstr "Drzewne Podpory"
  3646. #: fdmprinter.def.json
  3647. msgctxt "support_tree_enable description"
  3648. 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."
  3649. 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."
  3650. #: fdmprinter.def.json
  3651. msgctxt "support_tree_angle label"
  3652. msgid "Tree Support Branch Angle"
  3653. msgstr "Kąt Gałęzi Drzewnej Podpory"
  3654. #: fdmprinter.def.json
  3655. msgctxt "support_tree_angle description"
  3656. 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."
  3657. 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."
  3658. #: fdmprinter.def.json
  3659. msgctxt "support_tree_branch_distance label"
  3660. msgid "Tree Support Branch Distance"
  3661. msgstr "Odległość Gałęzi Drzewiastej Podpory"
  3662. #: fdmprinter.def.json
  3663. msgctxt "support_tree_branch_distance description"
  3664. 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."
  3665. 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."
  3666. #: fdmprinter.def.json
  3667. msgctxt "support_tree_branch_diameter label"
  3668. msgid "Tree Support Branch Diameter"
  3669. msgstr "Średnica Gałęzi Drzewiastej Podpory"
  3670. #: fdmprinter.def.json
  3671. msgctxt "support_tree_branch_diameter description"
  3672. msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this."
  3673. 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."
  3674. #: fdmprinter.def.json
  3675. msgctxt "support_tree_branch_diameter_angle label"
  3676. msgid "Tree Support Branch Diameter Angle"
  3677. msgstr "Kąt Średnicy Gałęzi Drzewiastej Podpory"
  3678. #: fdmprinter.def.json
  3679. msgctxt "support_tree_branch_diameter_angle description"
  3680. 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."
  3681. 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."
  3682. #: fdmprinter.def.json
  3683. msgctxt "support_tree_collision_resolution label"
  3684. msgid "Tree Support Collision Resolution"
  3685. msgstr "Rozdzielczość Kolizji Drzewiastej Podpory"
  3686. #: fdmprinter.def.json
  3687. msgctxt "support_tree_collision_resolution description"
  3688. 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."
  3689. 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."
  3690. #: fdmprinter.def.json
  3691. msgctxt "support_tree_wall_thickness label"
  3692. msgid "Tree Support Wall Thickness"
  3693. msgstr "Grubość Ściany Drzewiastej Podpory"
  3694. #: fdmprinter.def.json
  3695. msgctxt "support_tree_wall_thickness description"
  3696. 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."
  3697. msgstr "Grubość ścian gałęzi drzewiastej podpory. Grubsze ściany drukują się dłużej, ale nie odpadają tak łatwo."
  3698. #: fdmprinter.def.json
  3699. msgctxt "support_tree_wall_count label"
  3700. msgid "Tree Support Wall Line Count"
  3701. msgstr "Liczba Linii Ściany Drzewiastej Podpory"
  3702. #: fdmprinter.def.json
  3703. msgctxt "support_tree_wall_count description"
  3704. msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
  3705. msgstr "Liczba ścian gałęzi drzewiastej podpory. Grubsze ściany drukują się dłużej , ale nie odpadają tak łatwo."
  3706. #: fdmprinter.def.json
  3707. msgctxt "slicing_tolerance label"
  3708. msgid "Slicing Tolerance"
  3709. msgstr "Tolerancja Cięcia"
  3710. #: fdmprinter.def.json
  3711. msgctxt "slicing_tolerance description"
  3712. 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."
  3713. 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."
  3714. #: fdmprinter.def.json
  3715. msgctxt "slicing_tolerance option middle"
  3716. msgid "Middle"
  3717. msgstr "Środek"
  3718. #: fdmprinter.def.json
  3719. msgctxt "slicing_tolerance option exclusive"
  3720. msgid "Exclusive"
  3721. msgstr "Wyłącznie"
  3722. #: fdmprinter.def.json
  3723. msgctxt "slicing_tolerance option inclusive"
  3724. msgid "Inclusive"
  3725. msgstr "Włącznie"
  3726. #: fdmprinter.def.json
  3727. msgctxt "roofing_line_width label"
  3728. msgid "Top Surface Skin Line Width"
  3729. msgstr "Szerokość Linii Powierzchni Skóry"
  3730. #: fdmprinter.def.json
  3731. msgctxt "roofing_line_width description"
  3732. msgid "Width of a single line of the areas at the top of the print."
  3733. msgstr "Szerokość pojedynczej linii na obszarach na górze wydruku."
  3734. #: fdmprinter.def.json
  3735. msgctxt "roofing_pattern label"
  3736. msgid "Top Surface Skin Pattern"
  3737. msgstr "Wzór Górnej Pow. Skóry"
  3738. #: fdmprinter.def.json
  3739. msgctxt "roofing_pattern description"
  3740. msgid "The pattern of the top most layers."
  3741. msgstr "Wzór najwyższych warstw."
  3742. #: fdmprinter.def.json
  3743. msgctxt "roofing_pattern option lines"
  3744. msgid "Lines"
  3745. msgstr "Linie"
  3746. #: fdmprinter.def.json
  3747. msgctxt "roofing_pattern option concentric"
  3748. msgid "Concentric"
  3749. msgstr "Koncentryczny"
  3750. #: fdmprinter.def.json
  3751. msgctxt "roofing_pattern option zigzag"
  3752. msgid "Zig Zag"
  3753. msgstr "Zygzak"
  3754. #: fdmprinter.def.json
  3755. msgctxt "roofing_angles label"
  3756. msgid "Top Surface Skin Line Directions"
  3757. msgstr "Kierunki Linii Górnej Pow. Skóry"
  3758. #: fdmprinter.def.json
  3759. msgctxt "roofing_angles description"
  3760. 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)."
  3761. 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)."
  3762. #: fdmprinter.def.json
  3763. msgctxt "infill_enable_travel_optimization label"
  3764. msgid "Infill Travel Optimization"
  3765. msgstr "Optymalizacja Ruchów Jałowych Wypełnienia"
  3766. #: fdmprinter.def.json
  3767. msgctxt "infill_enable_travel_optimization description"
  3768. 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."
  3769. 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ć."
  3770. #: fdmprinter.def.json
  3771. msgctxt "material_flow_dependent_temperature label"
  3772. msgid "Auto Temperature"
  3773. msgstr "Auto Temperatura"
  3774. #: fdmprinter.def.json
  3775. msgctxt "material_flow_dependent_temperature description"
  3776. msgid "Change the temperature for each layer automatically with the average flow speed of that layer."
  3777. msgstr "Zmień temperaturę każdej warstwy automatycznie przy średniej prędkości przepływu tej warstwy."
  3778. #: fdmprinter.def.json
  3779. msgctxt "material_flow_temp_graph label"
  3780. msgid "Flow Temperature Graph"
  3781. msgstr "Wykres Temp. Przepływu"
  3782. #: fdmprinter.def.json
  3783. msgctxt "material_flow_temp_graph description"
  3784. msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)."
  3785. msgstr "Dane łączące przepływ materiału (w mm3 na sekundę) z temperaturą (stopnie Celsjusza)."
  3786. #: fdmprinter.def.json
  3787. msgctxt "minimum_polygon_circumference label"
  3788. msgid "Minimum Polygon Circumference"
  3789. msgstr "Minimalny Obwód Wieloboku"
  3790. #: fdmprinter.def.json
  3791. msgctxt "minimum_polygon_circumference description"
  3792. 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."
  3793. 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."
  3794. #: fdmprinter.def.json
  3795. msgctxt "meshfix_maximum_resolution label"
  3796. msgid "Maximum Resolution"
  3797. msgstr "Maksymalna Rozdzielczość"
  3798. #: fdmprinter.def.json
  3799. msgctxt "meshfix_maximum_resolution description"
  3800. 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."
  3801. 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ć."
  3802. #: fdmprinter.def.json
  3803. msgctxt "meshfix_maximum_travel_resolution label"
  3804. msgid "Maximum Travel Resolution"
  3805. msgstr "Maksymalna Rozdzielczość Ruchów Jałowych"
  3806. #: fdmprinter.def.json
  3807. msgctxt "meshfix_maximum_travel_resolution description"
  3808. 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."
  3809. 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."
  3810. #: fdmprinter.def.json
  3811. msgctxt "support_skip_some_zags label"
  3812. msgid "Break Up Support In Chunks"
  3813. msgstr "Podziel Podpory na Kawałki"
  3814. #: fdmprinter.def.json
  3815. msgctxt "support_skip_some_zags description"
  3816. 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."
  3817. msgstr "Pomijaj niektóre połączenia linii podpory, aby struktura podpory była łatwiejsza do odłamania. To ustawienie dotyczy wypełn. podpory Zygzak."
  3818. #: fdmprinter.def.json
  3819. msgctxt "support_skip_zag_per_mm label"
  3820. msgid "Support Chunk Size"
  3821. msgstr "Wielkość Kawałka Podpory"
  3822. #: fdmprinter.def.json
  3823. msgctxt "support_skip_zag_per_mm description"
  3824. msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away."
  3825. msgstr "Pomiń połączenie pomiędzy liniami podpory co N milimetrów, aby struktura podpory była łatwiejsza do odłamania."
  3826. #: fdmprinter.def.json
  3827. msgctxt "support_zag_skip_count label"
  3828. msgid "Support Chunk Line Count"
  3829. msgstr "Liczba Linii Kawałka Podpory"
  3830. #: fdmprinter.def.json
  3831. msgctxt "support_zag_skip_count description"
  3832. msgid "Skip one in every N connection lines to make the support structure easier to break away."
  3833. msgstr "Pomijaj jedną z każdych N linii, aby struktura podpory była łatwiejsza do odłamania."
  3834. #: fdmprinter.def.json
  3835. msgctxt "draft_shield_enabled label"
  3836. msgid "Enable Draft Shield"
  3837. msgstr "Włącz Osłonę Przeciwwiatrową"
  3838. #: fdmprinter.def.json
  3839. msgctxt "draft_shield_enabled description"
  3840. 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."
  3841. 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ą."
  3842. #: fdmprinter.def.json
  3843. msgctxt "draft_shield_dist label"
  3844. msgid "Draft Shield X/Y Distance"
  3845. msgstr "Odległość Osłony w X/Y"
  3846. #: fdmprinter.def.json
  3847. msgctxt "draft_shield_dist description"
  3848. msgid "Distance of the draft shield from the print, in the X/Y directions."
  3849. msgstr "Odległość osłony przeciwwiatrowej od druku, we współrzędnych X/Y."
  3850. #: fdmprinter.def.json
  3851. msgctxt "draft_shield_height_limitation label"
  3852. msgid "Draft Shield Limitation"
  3853. msgstr "Ograniczenie Osłony"
  3854. #: fdmprinter.def.json
  3855. msgctxt "draft_shield_height_limitation description"
  3856. 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."
  3857. msgstr "Ustaw wysokość osłony przeciwwiatrowej. Wybierz czy drukować osłonę do pełnej wysokości modelu czy do określonej wysokości."
  3858. #: fdmprinter.def.json
  3859. msgctxt "draft_shield_height_limitation option full"
  3860. msgid "Full"
  3861. msgstr "Pełna"
  3862. #: fdmprinter.def.json
  3863. msgctxt "draft_shield_height_limitation option limited"
  3864. msgid "Limited"
  3865. msgstr "Ograniczona"
  3866. #: fdmprinter.def.json
  3867. msgctxt "draft_shield_height label"
  3868. msgid "Draft Shield Height"
  3869. msgstr "Wysokość Osłony"
  3870. #: fdmprinter.def.json
  3871. msgctxt "draft_shield_height description"
  3872. msgid "Height limitation of the draft shield. Above this height no draft shield will be printed."
  3873. msgstr "Ograniczenie wysokości osłony przeciwwiatrowej. Powyżej tej wysokości nie będzie drukowana żadna osłona."
  3874. #: fdmprinter.def.json
  3875. msgctxt "conical_overhang_enabled label"
  3876. msgid "Make Overhang Printable"
  3877. msgstr "Drukowalne Zwisy"
  3878. #: fdmprinter.def.json
  3879. msgctxt "conical_overhang_enabled description"
  3880. 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."
  3881. msgstr "Zmienia geometrię modelu tak, aby wymagał minimalnego podparcia. Strome zwisy staną się mniej strome. Zwisające obszary zostaną opuszczone by być bardziej pionowymi."
  3882. #: fdmprinter.def.json
  3883. msgctxt "conical_overhang_angle label"
  3884. msgid "Maximum Model Angle"
  3885. msgstr "Maksymalny Kąt Modelu"
  3886. #: fdmprinter.def.json
  3887. msgctxt "conical_overhang_angle description"
  3888. 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."
  3889. 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."
  3890. #: fdmprinter.def.json
  3891. msgctxt "coasting_enable label"
  3892. msgid "Enable Coasting"
  3893. msgstr "Włącz Wypływanie"
  3894. #: fdmprinter.def.json
  3895. msgctxt "coasting_enable description"
  3896. 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."
  3897. 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."
  3898. #: fdmprinter.def.json
  3899. msgctxt "coasting_volume label"
  3900. msgid "Coasting Volume"
  3901. msgstr "Objętość Wypływania"
  3902. #: fdmprinter.def.json
  3903. msgctxt "coasting_volume description"
  3904. msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed."
  3905. msgstr "Objętość materiału wyciekającego jest inna. Wartość ta powinna być zasadniczo zbliżona do średnicy dyszy do sześcianu."
  3906. #: fdmprinter.def.json
  3907. msgctxt "coasting_min_volume label"
  3908. msgid "Minimum Volume Before Coasting"
  3909. msgstr "Minimalna Objętość Przed Wypływaniem"
  3910. #: fdmprinter.def.json
  3911. msgctxt "coasting_min_volume description"
  3912. 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."
  3913. 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."
  3914. #: fdmprinter.def.json
  3915. msgctxt "coasting_speed label"
  3916. msgid "Coasting Speed"
  3917. msgstr "Prędkość Wypływania"
  3918. #: fdmprinter.def.json
  3919. msgctxt "coasting_speed description"
  3920. 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."
  3921. 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."
  3922. #: fdmprinter.def.json
  3923. msgctxt "skin_alternate_rotation label"
  3924. msgid "Alternate Skin Rotation"
  3925. msgstr "Zmień Kierunek Skóry"
  3926. #: fdmprinter.def.json
  3927. msgctxt "skin_alternate_rotation description"
  3928. 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."
  3929. 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\"."
  3930. #: fdmprinter.def.json
  3931. msgctxt "cross_infill_pocket_size label"
  3932. msgid "Cross 3D Pocket Size"
  3933. msgstr "Rozmiar Kieszeni Krzyża 3D"
  3934. #: fdmprinter.def.json
  3935. msgctxt "cross_infill_pocket_size description"
  3936. msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself."
  3937. msgstr "Rozmiar kieszeni na czterostronnych skrzyżowaniach we wzorze krzyż 3D na wysokościach gdzie wzór tego siebie samego."
  3938. #: fdmprinter.def.json
  3939. msgctxt "cross_infill_density_image label"
  3940. msgid "Cross Infill Density Image"
  3941. msgstr "Gęstośc Wypełnienia Krzyżowego Według Obrazu"
  3942. #: fdmprinter.def.json
  3943. msgctxt "cross_infill_density_image description"
  3944. 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."
  3945. msgstr "Lokalizacja pliku obrazu, którego jasność będzie determinowała minimalną gęstość wypełnienia wydruku w danym punkcie."
  3946. #: fdmprinter.def.json
  3947. msgctxt "cross_support_density_image label"
  3948. msgid "Cross Fill Density Image for Support"
  3949. msgstr "Gęstości Wypełnienia Krzyżowego Podstaw Według Obrazu"
  3950. #: fdmprinter.def.json
  3951. msgctxt "cross_support_density_image description"
  3952. msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support."
  3953. msgstr "Lokalizacja pliku obrazu, którego jasność będzie determinowała minimalną gęstość wypełnienia podstawy w danym punkcie."
  3954. #: fdmprinter.def.json
  3955. msgctxt "spaghetti_infill_enabled label"
  3956. msgid "Spaghetti Infill"
  3957. msgstr "Wypełnienie Spaghetti"
  3958. #: fdmprinter.def.json
  3959. msgctxt "spaghetti_infill_enabled description"
  3960. 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."
  3961. msgstr "Drukowanie wypełnienia tak często, aby filament zwisał chaotycznie wewnątrz przedmiotu. Zmniejsza to czas drukowania, ale zachowanie jest raczej nieprzewidywalne."
  3962. #: fdmprinter.def.json
  3963. msgctxt "spaghetti_infill_stepped label"
  3964. msgid "Spaghetti Infill Stepping"
  3965. msgstr "Krokowe Wypełn. Spaghetti"
  3966. #: fdmprinter.def.json
  3967. msgctxt "spaghetti_infill_stepped description"
  3968. msgid "Whether to print spaghetti infill in steps or extrude all the infill filament at the end of the print."
  3969. msgstr "Czy drukować wypełnienie spaghetti krokami, czy ekstrudować filament wypełnienia na końcu wydruku."
  3970. #: fdmprinter.def.json
  3971. msgctxt "spaghetti_max_infill_angle label"
  3972. msgid "Spaghetti Maximum Infill Angle"
  3973. msgstr "Maks. Kąt Wypełn. Spaghetti"
  3974. #: fdmprinter.def.json
  3975. msgctxt "spaghetti_max_infill_angle description"
  3976. 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."
  3977. 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."
  3978. #: fdmprinter.def.json
  3979. msgctxt "spaghetti_max_height label"
  3980. msgid "Spaghetti Infill Maximum Height"
  3981. msgstr "Maks. Wys. Wypełn. Spaghetti"
  3982. #: fdmprinter.def.json
  3983. msgctxt "spaghetti_max_height description"
  3984. msgid "The maximum height of inside space which can be combined and filled from the top."
  3985. msgstr "Maksymalna wysokość przestrzeni wewnętrznej, którą można łączyć i napełniać od góry."
  3986. #: fdmprinter.def.json
  3987. msgctxt "spaghetti_inset label"
  3988. msgid "Spaghetti Inset"
  3989. msgstr "Wkład Spaghetti"
  3990. #: fdmprinter.def.json
  3991. msgctxt "spaghetti_inset description"
  3992. msgid "The offset from the walls from where the spaghetti infill will be printed."
  3993. msgstr "Odsunięcie od ścian, z których będzie drukowane wypełnienie spaghetti."
  3994. #: fdmprinter.def.json
  3995. msgctxt "spaghetti_flow label"
  3996. msgid "Spaghetti Flow"
  3997. msgstr "Przepływ Spaghetti"
  3998. #: fdmprinter.def.json
  3999. msgctxt "spaghetti_flow description"
  4000. 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."
  4001. 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."
  4002. #: fdmprinter.def.json
  4003. msgctxt "spaghetti_infill_extra_volume label"
  4004. msgid "Spaghetti Infill Extra Volume"
  4005. msgstr "Ekstra Objętość Wypełn. Spaghetti"
  4006. #: fdmprinter.def.json
  4007. msgctxt "spaghetti_infill_extra_volume description"
  4008. msgid "A correction term to adjust the total volume being extruded each time when filling spaghetti."
  4009. msgstr "Korekcja objętości materiału ekstrudowanego za każdym razem, kiedy drukowane jest wypełn. spaghetti."
  4010. #: fdmprinter.def.json
  4011. msgctxt "support_conical_enabled label"
  4012. msgid "Enable Conical Support"
  4013. msgstr "Włącz Podpory Stożkowe"
  4014. #: fdmprinter.def.json
  4015. msgctxt "support_conical_enabled description"
  4016. msgid "Experimental feature: Make support areas smaller at the bottom than at the overhang."
  4017. msgstr "Opcja eksperymentalna: W dolnym obszarze podpory powinny być mniejsze niż na zwisie."
  4018. #: fdmprinter.def.json
  4019. msgctxt "support_conical_angle label"
  4020. msgid "Conical Support Angle"
  4021. msgstr "Kąt Podpory Stożkowej"
  4022. #: fdmprinter.def.json
  4023. msgctxt "support_conical_angle description"
  4024. 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."
  4025. 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."
  4026. #: fdmprinter.def.json
  4027. msgctxt "support_conical_min_width label"
  4028. msgid "Conical Support Minimum Width"
  4029. msgstr "Min. Szerokość Podpory Stożkowej"
  4030. #: fdmprinter.def.json
  4031. msgctxt "support_conical_min_width description"
  4032. msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures."
  4033. msgstr "Minimalna szerokość, do której można zmniejszyć bazę podpory stożkowej. Małe szerokości mogą prowadzić do niestabilnych struktur nośnych."
  4034. #: fdmprinter.def.json
  4035. msgctxt "magic_fuzzy_skin_enabled label"
  4036. msgid "Fuzzy Skin"
  4037. msgstr "Nierówna Skóra"
  4038. #: fdmprinter.def.json
  4039. msgctxt "magic_fuzzy_skin_enabled description"
  4040. msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look."
  4041. msgstr "Losowe drgania podczas drukowania zewnętrznej ściany, dzięki czemu powierzchnia ma szorstki i rozmyty wygląd."
  4042. #: fdmprinter.def.json
  4043. msgctxt "magic_fuzzy_skin_thickness label"
  4044. msgid "Fuzzy Skin Thickness"
  4045. msgstr "Grubości Nierównej Skóry"
  4046. #: fdmprinter.def.json
  4047. msgctxt "magic_fuzzy_skin_thickness description"
  4048. msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered."
  4049. 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."
  4050. #: fdmprinter.def.json
  4051. msgctxt "magic_fuzzy_skin_point_density label"
  4052. msgid "Fuzzy Skin Density"
  4053. msgstr "Gęstość Nierównej Skóry"
  4054. #: fdmprinter.def.json
  4055. msgctxt "magic_fuzzy_skin_point_density description"
  4056. 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."
  4057. 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."
  4058. #: fdmprinter.def.json
  4059. msgctxt "magic_fuzzy_skin_point_dist label"
  4060. msgid "Fuzzy Skin Point Distance"
  4061. msgstr "Odległ. między Punkt. Nierównej Skóry"
  4062. #: fdmprinter.def.json
  4063. msgctxt "magic_fuzzy_skin_point_dist description"
  4064. 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."
  4065. 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."
  4066. #: fdmprinter.def.json
  4067. msgctxt "flow_rate_max_extrusion_offset label"
  4068. msgid "Flow rate compensation max extrusion offset"
  4069. msgstr "Maks. offset ekstruzji do kompensowania przepływu"
  4070. #: fdmprinter.def.json
  4071. msgctxt "flow_rate_max_extrusion_offset description"
  4072. msgid "The maximum distance in mm to compensate."
  4073. msgstr "Maksymalna odległość w mm do skompensowania."
  4074. #: fdmprinter.def.json
  4075. msgctxt "flow_rate_extrusion_offset_factor label"
  4076. msgid "Flow rate compensation factor"
  4077. msgstr "Współczynnik kompensacji przepływu"
  4078. #: fdmprinter.def.json
  4079. msgctxt "flow_rate_extrusion_offset_factor description"
  4080. msgid "The multiplication factor for the flow rate -> distance translation."
  4081. msgstr "Współczynnik mnożący przepływu -> tłumaczenie odległości."
  4082. #: fdmprinter.def.json
  4083. msgctxt "wireframe_enabled label"
  4084. msgid "Wire Printing"
  4085. msgstr "Drukowanie Drutu"
  4086. #: fdmprinter.def.json
  4087. msgctxt "wireframe_enabled description"
  4088. 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."
  4089. 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."
  4090. #: fdmprinter.def.json
  4091. msgctxt "wireframe_height label"
  4092. msgid "WP Connection Height"
  4093. msgstr "DD Wysokość Połączenia"
  4094. #: fdmprinter.def.json
  4095. msgctxt "wireframe_height description"
  4096. 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."
  4097. 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."
  4098. #: fdmprinter.def.json
  4099. msgctxt "wireframe_roof_inset label"
  4100. msgid "WP Roof Inset Distance"
  4101. msgstr "DD Długość Wkładu Dachu"
  4102. #: fdmprinter.def.json
  4103. msgctxt "wireframe_roof_inset description"
  4104. msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing."
  4105. msgstr "Odległość jaka zostaje pokryta podczas tworzenia połączenia z wewnętrznego konturu dachu. Odnosi się tylko do Drukowania Drutu."
  4106. #: fdmprinter.def.json
  4107. msgctxt "wireframe_printspeed label"
  4108. msgid "WP Speed"
  4109. msgstr "DD Prędkość"
  4110. #: fdmprinter.def.json
  4111. msgctxt "wireframe_printspeed description"
  4112. msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing."
  4113. msgstr "Prędkość, z jaką porusza się dysza podczas wytłaczania materiału. Dotyczy tylko Drukowania Drutu."
  4114. #: fdmprinter.def.json
  4115. msgctxt "wireframe_printspeed_bottom label"
  4116. msgid "WP Bottom Printing Speed"
  4117. msgstr "DD Prędk. Drukowania Dołu"
  4118. #: fdmprinter.def.json
  4119. msgctxt "wireframe_printspeed_bottom description"
  4120. msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing."
  4121. msgstr "Prędkość drukowania pierwszej warstwy, która jest jedyną warstwą dotykającą stołu. Dotyczy tylko Drukowania Drutu."
  4122. #: fdmprinter.def.json
  4123. msgctxt "wireframe_printspeed_up label"
  4124. msgid "WP Upward Printing Speed"
  4125. msgstr "DD Prędkość Drukowania do Góry"
  4126. #: fdmprinter.def.json
  4127. msgctxt "wireframe_printspeed_up description"
  4128. msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing."
  4129. msgstr "Szybkość drukowania linii do góry „w powietrzu”. Odnosi się tylko do Drukowania Drutu."
  4130. #: fdmprinter.def.json
  4131. msgctxt "wireframe_printspeed_down label"
  4132. msgid "WP Downward Printing Speed"
  4133. msgstr "DD Prędkość Drukowania w Dół"
  4134. #: fdmprinter.def.json
  4135. msgctxt "wireframe_printspeed_down description"
  4136. msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing."
  4137. msgstr "Prędkość drukowania ukośnej linii w dół. Odnosi się tylko do Drukowania Drutu."
  4138. #: fdmprinter.def.json
  4139. msgctxt "wireframe_printspeed_flat label"
  4140. msgid "WP Horizontal Printing Speed"
  4141. msgstr "DD Prędkość Drukowania Poziomo"
  4142. #: fdmprinter.def.json
  4143. msgctxt "wireframe_printspeed_flat description"
  4144. msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing."
  4145. msgstr "Prędkość drukowania poziomych konturów modelu. Odnosi się tylko do Drukowania Drutu."
  4146. #: fdmprinter.def.json
  4147. msgctxt "wireframe_flow label"
  4148. msgid "WP Flow"
  4149. msgstr "DD Przepływ"
  4150. #: fdmprinter.def.json
  4151. msgctxt "wireframe_flow description"
  4152. msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing."
  4153. msgstr "Kompensacja przepływu: ilość wytłaczanego materiału jest mnożona przez tę wartość. Odnosi się tylko do Drukowania Drutu."
  4154. #: fdmprinter.def.json
  4155. msgctxt "wireframe_flow_connection label"
  4156. msgid "WP Connection Flow"
  4157. msgstr "DD Przepływ Połączenia"
  4158. #: fdmprinter.def.json
  4159. msgctxt "wireframe_flow_connection description"
  4160. msgid "Flow compensation when going up or down. Only applies to Wire Printing."
  4161. msgstr "Kompensacja przepływu w górę i w dół. Odnosi się tylko do Drukowania Drutu."
  4162. #: fdmprinter.def.json
  4163. msgctxt "wireframe_flow_flat label"
  4164. msgid "WP Flat Flow"
  4165. msgstr "DD Płaskie Przepływ"
  4166. #: fdmprinter.def.json
  4167. msgctxt "wireframe_flow_flat description"
  4168. msgid "Flow compensation when printing flat lines. Only applies to Wire Printing."
  4169. msgstr "Kompensacja przepływu podczas drukowania płaskich linii. Dotyczy tylko Drukowania Drutu."
  4170. #: fdmprinter.def.json
  4171. msgctxt "wireframe_top_delay label"
  4172. msgid "WP Top Delay"
  4173. msgstr "DD Opóźnienie Góry"
  4174. #: fdmprinter.def.json
  4175. msgctxt "wireframe_top_delay description"
  4176. msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing."
  4177. msgstr "Opóźnienie czasu po wzniesieniu w górę, tak aby linia idąca w górę mogła zesztywniać. Dotyczy tylko Drukowania Drutu."
  4178. #: fdmprinter.def.json
  4179. msgctxt "wireframe_bottom_delay label"
  4180. msgid "WP Bottom Delay"
  4181. msgstr "DD Dolne Opóźnienie"
  4182. #: fdmprinter.def.json
  4183. msgctxt "wireframe_bottom_delay description"
  4184. msgid "Delay time after a downward move. Only applies to Wire Printing."
  4185. msgstr "Opóźnienie po pochyłym ruchu. Dotyczy tylko Drukowania Drutu."
  4186. #: fdmprinter.def.json
  4187. msgctxt "wireframe_flat_delay label"
  4188. msgid "WP Flat Delay"
  4189. msgstr "DD Płaskie Opóźnienie"
  4190. #: fdmprinter.def.json
  4191. msgctxt "wireframe_flat_delay description"
  4192. 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."
  4193. 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."
  4194. #: fdmprinter.def.json
  4195. msgctxt "wireframe_up_half_speed label"
  4196. msgid "WP Ease Upward"
  4197. msgstr "DD Łatwe Wzniesienie"
  4198. #: fdmprinter.def.json
  4199. msgctxt "wireframe_up_half_speed description"
  4200. msgid ""
  4201. "Distance of an upward move which is extruded with half speed.\n"
  4202. "This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing."
  4203. msgstr ""
  4204. "Dystans przemieszczania się ku górze, który jest wytłaczany z połową szybkości.\n"
  4205. "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."
  4206. #: fdmprinter.def.json
  4207. msgctxt "wireframe_top_jump label"
  4208. msgid "WP Knot Size"
  4209. msgstr "DD Rozmiar Węzła"
  4210. #: fdmprinter.def.json
  4211. msgctxt "wireframe_top_jump description"
  4212. 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."
  4213. 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."
  4214. #: fdmprinter.def.json
  4215. msgctxt "wireframe_fall_down label"
  4216. msgid "WP Fall Down"
  4217. msgstr "DD Spadek"
  4218. #: fdmprinter.def.json
  4219. msgctxt "wireframe_fall_down description"
  4220. msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing."
  4221. 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."
  4222. #: fdmprinter.def.json
  4223. msgctxt "wireframe_drag_along label"
  4224. msgid "WP Drag Along"
  4225. msgstr "DD Przeciągnij Wzdłuż"
  4226. #: fdmprinter.def.json
  4227. msgctxt "wireframe_drag_along description"
  4228. 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."
  4229. 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."
  4230. #: fdmprinter.def.json
  4231. msgctxt "wireframe_strategy label"
  4232. msgid "WP Strategy"
  4233. msgstr "DD Strategia"
  4234. #: fdmprinter.def.json
  4235. msgctxt "wireframe_strategy description"
  4236. 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."
  4237. 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."
  4238. #: fdmprinter.def.json
  4239. msgctxt "wireframe_strategy option compensate"
  4240. msgid "Compensate"
  4241. msgstr "Kompensuj"
  4242. #: fdmprinter.def.json
  4243. msgctxt "wireframe_strategy option knot"
  4244. msgid "Knot"
  4245. msgstr "Węzeł"
  4246. #: fdmprinter.def.json
  4247. msgctxt "wireframe_strategy option retract"
  4248. msgid "Retract"
  4249. msgstr "Wycofanie"
  4250. #: fdmprinter.def.json
  4251. msgctxt "wireframe_straight_before_down label"
  4252. msgid "WP Straighten Downward Lines"
  4253. msgstr "DD Prostuj Linie w Dół"
  4254. #: fdmprinter.def.json
  4255. msgctxt "wireframe_straight_before_down description"
  4256. 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."
  4257. 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."
  4258. #: fdmprinter.def.json
  4259. msgctxt "wireframe_roof_fall_down label"
  4260. msgid "WP Roof Fall Down"
  4261. msgstr "DD Spadek Dachu"
  4262. #: fdmprinter.def.json
  4263. msgctxt "wireframe_roof_fall_down description"
  4264. 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."
  4265. msgstr "Odległość, na jaką opadają linie dachu wydrukowane \"w powietrzu\" podczas druku. Ta odległość jest kompensowana. Dotyczy tylko Drukowania Drutu."
  4266. #: fdmprinter.def.json
  4267. msgctxt "wireframe_roof_drag_along label"
  4268. msgid "WP Roof Drag Along"
  4269. msgstr "DD Rozciągaj Dach"
  4270. #: fdmprinter.def.json
  4271. msgctxt "wireframe_roof_drag_along description"
  4272. 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."
  4273. 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."
  4274. #: fdmprinter.def.json
  4275. msgctxt "wireframe_roof_outer_delay label"
  4276. msgid "WP Roof Outer Delay"
  4277. msgstr "DD Opóźnienie Zewn. Dachu"
  4278. #: fdmprinter.def.json
  4279. msgctxt "wireframe_roof_outer_delay description"
  4280. 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."
  4281. 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."
  4282. #: fdmprinter.def.json
  4283. msgctxt "wireframe_nozzle_clearance label"
  4284. msgid "WP Nozzle Clearance"
  4285. msgstr "DD Prześwit Dyszy"
  4286. #: fdmprinter.def.json
  4287. msgctxt "wireframe_nozzle_clearance description"
  4288. 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."
  4289. 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."
  4290. #: fdmprinter.def.json
  4291. msgctxt "adaptive_layer_height_enabled label"
  4292. msgid "Use adaptive layers"
  4293. msgstr "Użyj zmiennych warstw"
  4294. #: fdmprinter.def.json
  4295. msgctxt "adaptive_layer_height_enabled description"
  4296. msgid "Adaptive layers computes the layer heights depending on the shape of the model."
  4297. msgstr "Zmienne warstwy obliczają wysokości warstw w zależności od kształtu modelu."
  4298. #: fdmprinter.def.json
  4299. msgctxt "adaptive_layer_height_variation label"
  4300. msgid "Adaptive layers maximum variation"
  4301. msgstr "Maks. zmiana zmiennych warstw"
  4302. #: fdmprinter.def.json
  4303. msgctxt "adaptive_layer_height_variation description"
  4304. msgid "The maximum allowed height different from the base layer height."
  4305. msgstr "Maksymalna dozwolona różnica wysokości względem bazowej wysokości warstwy."
  4306. #: fdmprinter.def.json
  4307. msgctxt "adaptive_layer_height_variation_step label"
  4308. msgid "Adaptive layers variation step size"
  4309. msgstr "Krok zmian zmiennych warstw"
  4310. #: fdmprinter.def.json
  4311. msgctxt "adaptive_layer_height_variation_step description"
  4312. msgid "The difference in height of the next layer height compared to the previous one."
  4313. msgstr "Różnica w wysokości pomiędzy następną wysokością warstwy i poprzednią."
  4314. #: fdmprinter.def.json
  4315. msgctxt "adaptive_layer_height_threshold label"
  4316. msgid "Adaptive layers threshold"
  4317. msgstr "Opóźnienie zmiennych warstw"
  4318. #: fdmprinter.def.json
  4319. msgctxt "adaptive_layer_height_threshold description"
  4320. msgid "Threshold whether to use a smaller layer or not. This number is compared to the tan of the steepest slope in a layer."
  4321. msgstr "Opóźnienie w wyborze, czy użyć mniejszej warstwy, czy nie. Ta liczba jest porównywana do najbardziej stromego nachylenia na warstwie."
  4322. #: fdmprinter.def.json
  4323. msgctxt "wall_overhang_angle label"
  4324. msgid "Overhanging Wall Angle"
  4325. msgstr "Kąt Nawisającej Ścianki"
  4326. #: fdmprinter.def.json
  4327. msgctxt "wall_overhang_angle description"
  4328. 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."
  4329. 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."
  4330. #: fdmprinter.def.json
  4331. msgctxt "wall_overhang_speed_factor label"
  4332. msgid "Overhanging Wall Speed"
  4333. msgstr "Prędkość Ścianki Nawisającej"
  4334. #: fdmprinter.def.json
  4335. msgctxt "wall_overhang_speed_factor description"
  4336. msgid "Overhanging walls will be printed at this percentage of their normal print speed."
  4337. msgstr "Nawisające ścianki będą drukowane z taką procentową wartością względem normalnej prędkości druku."
  4338. #: fdmprinter.def.json
  4339. msgctxt "bridge_settings_enabled label"
  4340. msgid "Enable Bridge Settings"
  4341. msgstr "Włącz Ustawienia Mostów"
  4342. #: fdmprinter.def.json
  4343. msgctxt "bridge_settings_enabled description"
  4344. msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed."
  4345. msgstr "Wykryj mosty i modyfikuj prędkość drukowania, przepływ i ustawienia wentylatora podczas drukowania mostó."
  4346. #: fdmprinter.def.json
  4347. msgctxt "bridge_wall_min_length label"
  4348. msgid "Minimum Bridge Wall Length"
  4349. msgstr "Min. Długość Mostu"
  4350. #: fdmprinter.def.json
  4351. msgctxt "bridge_wall_min_length description"
  4352. 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."
  4353. 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."
  4354. #: fdmprinter.def.json
  4355. msgctxt "bridge_skin_support_threshold label"
  4356. msgid "Bridge Skin Support Threshold"
  4357. msgstr "Próg Podpory Skóry Mostu"
  4358. #: fdmprinter.def.json
  4359. msgctxt "bridge_skin_support_threshold description"
  4360. 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."
  4361. 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."
  4362. #: fdmprinter.def.json
  4363. msgctxt "bridge_wall_coast label"
  4364. msgid "Bridge Wall Coasting"
  4365. msgstr "Rozbieg Ściany Mostu"
  4366. #: fdmprinter.def.json
  4367. msgctxt "bridge_wall_coast description"
  4368. 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."
  4369. 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."
  4370. #: fdmprinter.def.json
  4371. msgctxt "bridge_wall_speed label"
  4372. msgid "Bridge Wall Speed"
  4373. msgstr "Prędkość Ścian Mostu"
  4374. #: fdmprinter.def.json
  4375. msgctxt "bridge_wall_speed description"
  4376. msgid "The speed at which the bridge walls are printed."
  4377. msgstr "Prędkość z jaką są drukowane ściany mostu."
  4378. #: fdmprinter.def.json
  4379. msgctxt "bridge_wall_material_flow label"
  4380. msgid "Bridge Wall Flow"
  4381. msgstr "Przepływ Mostów"
  4382. #: fdmprinter.def.json
  4383. msgctxt "bridge_wall_material_flow description"
  4384. msgid "When printing bridge walls, the amount of material extruded is multiplied by this value."
  4385. msgstr "Kiedy drukowane są ściany mostu, ilość ekstrudowanego materiału jest mnożona prze tę wartość."
  4386. #: fdmprinter.def.json
  4387. msgctxt "bridge_skin_speed label"
  4388. msgid "Bridge Skin Speed"
  4389. msgstr "Prędk. Skóry Mostu"
  4390. #: fdmprinter.def.json
  4391. msgctxt "bridge_skin_speed description"
  4392. msgid "The speed at which bridge skin regions are printed."
  4393. msgstr "Prędkość z jaką drukowane są obszary skóry mostu."
  4394. #: fdmprinter.def.json
  4395. msgctxt "bridge_skin_material_flow label"
  4396. msgid "Bridge Skin Flow"
  4397. msgstr "Przepływ Skóry Mostu"
  4398. #: fdmprinter.def.json
  4399. msgctxt "bridge_skin_material_flow description"
  4400. msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
  4401. msgstr "Kiedy drukowane są obszary skóry mostu, ilość ekstrudowanego materiału jest mnożona przez tę wartość."
  4402. #: fdmprinter.def.json
  4403. msgctxt "bridge_skin_density label"
  4404. msgid "Bridge Skin Density"
  4405. msgstr "Gęstość Skóry Mostu"
  4406. #: fdmprinter.def.json
  4407. msgctxt "bridge_skin_density description"
  4408. msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  4409. msgstr "Gęstość warstwy skóry mostu. Wartości mniejsze od 100 będą zwiększać przerwy pomiędzy liniami skóry."
  4410. #: fdmprinter.def.json
  4411. msgctxt "bridge_fan_speed label"
  4412. msgid "Bridge Fan Speed"
  4413. msgstr "Prędk. Wentylatora - Mosty"
  4414. #: fdmprinter.def.json
  4415. msgctxt "bridge_fan_speed description"
  4416. msgid "Percentage fan speed to use when printing bridge walls and skin."
  4417. msgstr "Procent prędkości wentylatora używany podczas drukowania ścian i skóry mostów."
  4418. #: fdmprinter.def.json
  4419. msgctxt "bridge_enable_more_layers label"
  4420. msgid "Bridge Has Multiple Layers"
  4421. msgstr "Most Ma Wiele Warstw"
  4422. #: fdmprinter.def.json
  4423. msgctxt "bridge_enable_more_layers description"
  4424. 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."
  4425. 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."
  4426. #: fdmprinter.def.json
  4427. msgctxt "bridge_skin_speed_2 label"
  4428. msgid "Bridge Second Skin Speed"
  4429. msgstr "Prędk. Drugiej Skóry Mostu"
  4430. #: fdmprinter.def.json
  4431. msgctxt "bridge_skin_speed_2 description"
  4432. msgid "Print speed to use when printing the second bridge skin layer."
  4433. msgstr "Prędkość używana podczas drukowania drugiej warstwy skóry mostu."
  4434. #: fdmprinter.def.json
  4435. msgctxt "bridge_skin_material_flow_2 label"
  4436. msgid "Bridge Second Skin Flow"
  4437. msgstr "Przepływ Drugiej Skóry Mostu"
  4438. #: fdmprinter.def.json
  4439. msgctxt "bridge_skin_material_flow_2 description"
  4440. msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value."
  4441. msgstr "Kiedy drukowana jest druga warstwa skóry mostu, ilość ekstrudowanego materiału jest mnożona przez tę wartość."
  4442. #: fdmprinter.def.json
  4443. msgctxt "bridge_skin_density_2 label"
  4444. msgid "Bridge Second Skin Density"
  4445. msgstr "Gęstość Drugiej Skóry Mostu"
  4446. #: fdmprinter.def.json
  4447. msgctxt "bridge_skin_density_2 description"
  4448. msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  4449. msgstr "Gęstość drugiej warstwy skóry mostu. Wartości mniejsze od 100 będą zwiększać przerwy pomiędzy liniami skóry."
  4450. #: fdmprinter.def.json
  4451. msgctxt "bridge_fan_speed_2 label"
  4452. msgid "Bridge Second Skin Fan Speed"
  4453. msgstr "Prędk. Wentylatora - Druga Skóra Mostu"
  4454. #: fdmprinter.def.json
  4455. msgctxt "bridge_fan_speed_2 description"
  4456. msgid "Percentage fan speed to use when printing the second bridge skin layer."
  4457. msgstr "Procent prędkości wentylatora używany podczas drukowania drugiej warstwy skóry most."
  4458. #: fdmprinter.def.json
  4459. msgctxt "bridge_skin_speed_3 label"
  4460. msgid "Bridge Third Skin Speed"
  4461. msgstr "Prędkość Trzeciej Skóry Mostu"
  4462. #: fdmprinter.def.json
  4463. msgctxt "bridge_skin_speed_3 description"
  4464. msgid "Print speed to use when printing the third bridge skin layer."
  4465. msgstr "Prędkość używana podczas drukowania trzeciej warstwy skóry mostu."
  4466. #: fdmprinter.def.json
  4467. msgctxt "bridge_skin_material_flow_3 label"
  4468. msgid "Bridge Third Skin Flow"
  4469. msgstr "Przepływ Trzeciej Skóry Mostu"
  4470. #: fdmprinter.def.json
  4471. msgctxt "bridge_skin_material_flow_3 description"
  4472. msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value."
  4473. msgstr "Kiedy drukowana jest trzecia warstwa skóry mostu, ilość ekstrudowanego materiału jest mnożona przez tę wartość."
  4474. #: fdmprinter.def.json
  4475. msgctxt "bridge_skin_density_3 label"
  4476. msgid "Bridge Third Skin Density"
  4477. msgstr "Gęstość Trzeciej Skóry Mostu"
  4478. #: fdmprinter.def.json
  4479. msgctxt "bridge_skin_density_3 description"
  4480. msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  4481. msgstr "Gęstość trzeciej warstwy skóry mostu. Wartości mniejsze od 100 będą zwiększać przerwy pomiędzy liniami skóry."
  4482. #: fdmprinter.def.json
  4483. msgctxt "bridge_fan_speed_3 label"
  4484. msgid "Bridge Third Skin Fan Speed"
  4485. msgstr "Prędk. Wentylatora - Trzecia Skóra Mostu"
  4486. #: fdmprinter.def.json
  4487. msgctxt "bridge_fan_speed_3 description"
  4488. msgid "Percentage fan speed to use when printing the third bridge skin layer."
  4489. msgstr "Procent prędkości wentylatora używany podczas drukowania trzeciej warstwy skóry most."
  4490. #: fdmprinter.def.json
  4491. msgctxt "command_line_settings label"
  4492. msgid "Command Line Settings"
  4493. msgstr "Ustawienia Wiersza Polecenia"
  4494. #: fdmprinter.def.json
  4495. msgctxt "command_line_settings description"
  4496. msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend."
  4497. msgstr "Ustawienia, które są używane tylko wtedy, gdy CuraEngine nie jest wywoływana przez frontend Cura."
  4498. #: fdmprinter.def.json
  4499. msgctxt "center_object label"
  4500. msgid "Center Object"
  4501. msgstr "Wyśrodkuj obiekt"
  4502. #: fdmprinter.def.json
  4503. msgctxt "center_object description"
  4504. 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."
  4505. 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."
  4506. #: fdmprinter.def.json
  4507. msgctxt "mesh_position_x label"
  4508. msgid "Mesh Position X"
  4509. msgstr "Pozycja Siatki w X"
  4510. #: fdmprinter.def.json
  4511. msgctxt "mesh_position_x description"
  4512. msgid "Offset applied to the object in the x direction."
  4513. msgstr "Przesunięcie zastosowane dla obiektu w kierunku X."
  4514. #: fdmprinter.def.json
  4515. msgctxt "mesh_position_y label"
  4516. msgid "Mesh Position Y"
  4517. msgstr "Pozycja Siatki w Y"
  4518. #: fdmprinter.def.json
  4519. msgctxt "mesh_position_y description"
  4520. msgid "Offset applied to the object in the y direction."
  4521. msgstr "Przesunięcie zastosowane dla obiektu w kierunku Y."
  4522. #: fdmprinter.def.json
  4523. msgctxt "mesh_position_z label"
  4524. msgid "Mesh Position Z"
  4525. msgstr "Pozycja Siatki w Z"
  4526. #: fdmprinter.def.json
  4527. msgctxt "mesh_position_z description"
  4528. msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'."
  4529. msgstr "Przesunięcie zastosowane dla obiektu w kierunku Z. Za pomocą tego możesz sprecyzować co nazywamy 'Zatopieniem Obiektu."
  4530. #: fdmprinter.def.json
  4531. msgctxt "mesh_rotation_matrix label"
  4532. msgid "Mesh Rotation Matrix"
  4533. msgstr "Forma Obrotu Siatki"
  4534. #: fdmprinter.def.json
  4535. msgctxt "mesh_rotation_matrix description"
  4536. msgid "Transformation matrix to be applied to the model when loading it from file."
  4537. msgstr "Forma przesunięcia, która ma być zastosowana do modelu podczas ładowania z pliku."
  4538. #~ msgctxt "infill_pattern option concentric_3d"
  4539. #~ msgid "Concentric 3D"
  4540. #~ msgstr "Koncentryczny 3D"
  4541. #~ msgctxt "retraction_combing description"
  4542. #~ 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."
  4543. #~ 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."
  4544. #~ msgctxt "support_pattern option concentric_3d"
  4545. #~ msgid "Concentric 3D"
  4546. #~ msgstr "Koncentryczny 3D"
  4547. #~ msgctxt "support_interface_pattern option concentric_3d"
  4548. #~ msgid "Concentric 3D"
  4549. #~ msgstr "Koncentryczny 3D"
  4550. #~ msgctxt "support_roof_pattern option concentric_3d"
  4551. #~ msgid "Concentric 3D"
  4552. #~ msgstr "Koncentryczny 3D"
  4553. #~ msgctxt "support_bottom_pattern option concentric_3d"
  4554. #~ msgid "Concentric 3D"
  4555. #~ msgstr "Koncentryczny 3D"
  4556. #~ msgctxt "raft_base_line_spacing label"
  4557. #~ msgid "Raft Line Spacing"
  4558. #~ msgstr "Rozstaw Linii Tratwy"
  4559. #~ msgctxt "prime_tower_wall_thickness label"
  4560. #~ msgid "Prime Tower Thickness"
  4561. #~ msgstr "Grubość Wieży Czyszcz."
  4562. #~ msgctxt "prime_tower_wall_thickness description"
  4563. #~ 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."
  4564. #~ 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ść."
  4565. #~ msgctxt "dual_pre_wipe label"
  4566. #~ msgid "Wipe Nozzle After Switch"
  4567. #~ msgstr "Wytrzyj Dyszę po Przełączeniu"
  4568. #~ msgctxt "dual_pre_wipe description"
  4569. #~ 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."
  4570. #~ 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."
  4571. #~ msgctxt "prime_tower_purge_volume label"
  4572. #~ msgid "Prime Tower Purge Volume"
  4573. #~ msgstr "Pole Czyszczące Wieży Czyszcz."
  4574. #~ msgctxt "prime_tower_purge_volume description"
  4575. #~ 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."
  4576. #~ 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."
  4577. #~ msgctxt "bridge_wall_max_overhang label"
  4578. #~ msgid "Bridge Wall Max Overhang"
  4579. #~ msgstr "Maks. Nachylenie Ściany Mostu"
  4580. #~ msgctxt "bridge_wall_max_overhang description"
  4581. #~ 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."
  4582. #~ 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."
  4583. #~ msgctxt "optimize_wall_printing_order description"
  4584. #~ 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."
  4585. #~ 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."
  4586. #~ msgctxt "retraction_combing option noskin"
  4587. #~ msgid "No Skin"
  4588. #~ msgstr "Bez skóry"
  4589. #~ msgctxt "cross_infill_apply_pockets_alternatingly label"
  4590. #~ msgid "Alternate Cross 3D Pockets"
  4591. #~ msgstr "Zamieniaj Kieszenie Krzyża 3D"
  4592. #~ msgctxt "cross_infill_apply_pockets_alternatingly description"
  4593. #~ 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."
  4594. #~ 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."
  4595. #~ msgctxt "infill_hollow label"
  4596. #~ msgid "Hollow Out Objects"
  4597. #~ msgstr "Wydrąż Model"
  4598. #~ msgctxt "infill_hollow description"
  4599. #~ msgid "Remove all infill and make the inside of the object eligible for support."
  4600. #~ msgstr "Usuń całe wypełnienie i spowoduj, aby środek modelu był wybieralny dla podpór."
  4601. #~ msgctxt "adaptive_layer_height_variation description"
  4602. #~ msgid "The maximum allowed height different from the base layer height in mm."
  4603. #~ msgstr "Maksymalna dozwolona różnica wysokości od podstawowej wysokości warstwy w mm."
  4604. #~ msgctxt "center_object label"
  4605. #~ msgid "Center object"
  4606. #~ msgstr "Wyśrodkuj Obiekt"
  4607. #~ msgctxt "mesh_position_x label"
  4608. #~ msgid "Mesh position x"
  4609. #~ msgstr "Pozycja siatki X"
  4610. #~ msgctxt "mesh_position_y label"
  4611. #~ msgid "Mesh position y"
  4612. #~ msgstr "Pozycja siatki Y"
  4613. #~ msgctxt "mesh_position_z label"
  4614. #~ msgid "Mesh position z"
  4615. #~ msgstr "Pozycja siatki Z"
  4616. #~ msgctxt "machine_start_gcode label"
  4617. #~ msgid "Start GCode"
  4618. #~ msgstr "Początk. G-code"
  4619. #~ msgctxt "machine_start_gcode description"
  4620. #~ msgid ""
  4621. #~ "Gcode commands to be executed at the very start - separated by \n"
  4622. #~ "."
  4623. #~ msgstr ""
  4624. #~ "Polecenia G-code, które są wykonywane na samym początku - oddzielone za pomocą \n"
  4625. #~ "."
  4626. #~ msgctxt "machine_end_gcode label"
  4627. #~ msgid "End GCode"
  4628. #~ msgstr "Końcowy G-code"
  4629. #~ msgctxt "machine_end_gcode description"
  4630. #~ msgid ""
  4631. #~ "Gcode commands to be executed at the very end - separated by \n"
  4632. #~ "."
  4633. #~ msgstr ""
  4634. #~ "Polecenia G-code, które są wykonywane na samym końcu - oddzielone za pomocą \n"
  4635. #~ "."
  4636. #~ msgctxt "machine_gcode_flavor label"
  4637. #~ msgid "Gcode flavour"
  4638. #~ msgstr "Wersja G-code"
  4639. #~ msgctxt "machine_gcode_flavor description"
  4640. #~ msgid "The type of gcode to be generated."
  4641. #~ msgstr "Typ G-code jaki ma być generowany."
  4642. #~ msgctxt "meshfix_keep_open_polygons description"
  4643. #~ 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."
  4644. #~ 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."
  4645. #~ msgctxt "relative_extrusion description"
  4646. #~ 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."
  4647. #~ 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"
  4648. #~ msgctxt "infill_offset_x description"
  4649. #~ msgid "The infill pattern is offset this distance along the X axis."
  4650. #~ msgstr "Wypełnienie jest przesunięte o taką odległość wzdłuż osi X."
  4651. #~ msgctxt "infill_offset_y description"
  4652. #~ msgid "The infill pattern is offset this distance along the Y axis."
  4653. #~ msgstr "Wypełnienie jest przesunięte o taką odległość wzdłuż osi Y."
  4654. #~ msgctxt "infill_overlap description"
  4655. #~ msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill."
  4656. #~ msgstr "Ilość nałożenia pomiędzy wypełnieniem a ścianami. Nieznaczne nałożenie pozwala ściśle łączyć się z wypełnieniem."
  4657. #~ msgctxt "skin_overlap description"
  4658. #~ 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."
  4659. #~ 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."
  4660. #~ msgctxt "material_bed_temperature description"
  4661. #~ msgid "The temperature used for the heated build plate. If this is 0, the bed will not heat up for this print."
  4662. #~ msgstr "Temperatura stosowana przy podgrzewanym stole. Jeśli jest to 0, stół nie rozgrzeje się dla tego wydruku."
  4663. #~ msgctxt "wall_x_extruder_nr label"
  4664. #~ msgid "Inner Walls Extruder"
  4665. #~ msgstr "Esktruder Wewn. Ściany"
  4666. #~ msgctxt "infill_pattern description"
  4667. #~ 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."
  4668. #~ 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."
  4669. #~ msgctxt "zig_zaggify_infill description"
  4670. #~ 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."
  4671. #~ 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."
  4672. #~ msgctxt "skirt_gap description"
  4673. #~ msgid ""
  4674. #~ "The horizontal distance between the skirt and the first layer of the print.\n"
  4675. #~ "This is the minimum distance, multiple skirt lines will extend outwards from this distance."
  4676. #~ msgstr ""
  4677. #~ "Pozioma odległość między obwódką a pierwszą warstwą nadruku.\n"
  4678. #~ "Jest to o minimalnej odległości. Z tej odległości linie będą nakładane w kierunku zewnętrznym."
  4679. #~ msgctxt "z_offset_layer_0 label"
  4680. #~ msgid "Initial Layer Z Offset"
  4681. #~ msgstr "Przesunięcie w Osi Z Warstwy Początk."
  4682. #~ msgctxt "z_offset_layer_0 description"
  4683. #~ 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."
  4684. #~ 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."
  4685. #~ msgctxt "z_offset_taper_layers label"
  4686. #~ msgid "Z Offset Taper Layers"
  4687. #~ msgstr "Warstwy Zbieżne Przesunięcia Z"
  4688. #~ msgctxt "z_offset_taper_layers description"
  4689. #~ 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."
  4690. #~ 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."
  4691. #~ msgctxt "raft_smoothing description"
  4692. #~ 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."
  4693. #~ 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."
  4694. #~ msgctxt "infill_pattern description"
  4695. #~ 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."
  4696. #~ 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."
  4697. #~ msgctxt "infill_pattern option tetrahedral"
  4698. #~ msgid "Tetrahedral"
  4699. #~ msgstr "Czworościenny"
  4700. #~ msgctxt "expand_skins_into_infill label"
  4701. #~ msgid "Expand Skins Into Infill"
  4702. #~ msgstr "Rozszerz Powłokę Do Wypełn."
  4703. #~ msgctxt "expand_skins_into_infill description"
  4704. #~ 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."
  4705. #~ 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."
  4706. #~ msgctxt "expand_upper_skins label"
  4707. #~ msgid "Expand Top Skins Into Infill"
  4708. #~ msgstr "Rozszerz Górną Powłokę Do Wypełn."
  4709. #~ msgctxt "expand_upper_skins description"
  4710. #~ msgid "Expand the top skin areas (areas with air above) so that they support infill above."
  4711. #~ msgstr "Rozszerz górne obszary ścian (obszary, które mają ponad sobą powietrze) tak, aby wspomagały wypełnienie powyżej."
  4712. #~ msgctxt "expand_lower_skins label"
  4713. #~ msgid "Expand Bottom Skins Into Infill"
  4714. #~ msgstr "Rozszerz Dolną Powłokę Do Wypełn."
  4715. #~ msgctxt "expand_lower_skins description"
  4716. #~ msgid "Expand the bottom skin areas (areas with air below) so that they are anchored by the infill layers above and below."
  4717. #~ 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."
  4718. #~ msgctxt "expand_skins_expand_distance description"
  4719. #~ 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."
  4720. #~ 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."
  4721. #~ msgctxt "support_skip_some_zags label"
  4722. #~ msgid "Skip Some ZigZags Connections"
  4723. #~ msgstr "Pomijaj Niektóre Połączenia Zygzak"
  4724. #~ msgctxt "support_skip_some_zags description"
  4725. #~ msgid "Skip some ZigZags connections to make the support structure easier to break."
  4726. #~ msgstr "Pomijaj niektóre połączenia Zygzak, aby struktura podpór łatwiej się odrywała."
  4727. #~ msgctxt "support_zag_skip_count label"
  4728. #~ msgid "ZigZag Connection Skip Count"
  4729. #~ msgstr "Ilość Pominięć Połącz. Zygzak"
  4730. #~ msgctxt "support_zag_skip_count description"
  4731. #~ msgid "Skip one in every N connection lines to make the support structure easier to break."
  4732. #~ msgstr "Pomijaj jedno na każde N linii połączeń, aby struktury podpór łatwiej się odrywały."
  4733. #~ msgctxt "machine_center_is_zero label"
  4734. #~ msgid "Is center origin"
  4735. #~ msgstr "Począt. na Środku"
  4736. #~ msgctxt "machine_depth label"
  4737. #~ msgid "Machine depth"
  4738. #~ msgstr "Głębokość Drukarki"
  4739. #~ msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)"
  4740. #~ msgid "RepRap (Marlin/Sprinter)"
  4741. #~ msgstr "RepRap (Marlin/Sprinter)"
  4742. #~ msgctxt "machine_gcode_flavor option RepRap (Volumatric)"
  4743. #~ msgid "RepRap (Volumetric)"
  4744. #~ msgstr "RepRap (Objętościowy)"
  4745. #~ msgctxt "machine_heated_bed label"
  4746. #~ msgid "Has heated build plate"
  4747. #~ msgstr "Posiada podgrzewany stół"
  4748. #~ msgctxt "machine_height label"
  4749. #~ msgid "Machine height"
  4750. #~ msgstr "Wysokość drukarki"
  4751. #~ msgctxt "machine_shape label"
  4752. #~ msgid "Build plate shape"
  4753. #~ msgstr "Kształt stołu"
  4754. #~ msgctxt "machine_show_variants label"
  4755. #~ msgid "Show machine variants"
  4756. #~ msgstr "Pokaż warianty drukarki"
  4757. #~ msgctxt "machine_width label"
  4758. #~ msgid "Machine width"
  4759. #~ msgstr "Szerokość drukarki"
  4760. #~ msgctxt "material_bed_temp_prepend label"
  4761. #~ msgid "Include build plate temperature"
  4762. #~ msgstr "Należy uwzględnić temperaturę stołu"
  4763. #~ msgctxt "material_bed_temp_wait label"
  4764. #~ msgid "Wait for build plate heatup"
  4765. #~ msgstr "Oczekiwanie na ogrzanie stołu"
  4766. #~ msgctxt "material_print_temp_prepend label"
  4767. #~ msgid "Include material temperatures"
  4768. #~ msgstr "Uwzględnij temperaturę materiału"
  4769. #~ msgctxt "material_print_temp_wait label"
  4770. #~ msgid "Wait for nozzle heatup"
  4771. #~ msgstr "Oczekiwanie na ogrzanie dyszy"
  4772. #~ msgctxt "skin_overlap description"
  4773. #~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin."
  4774. #~ msgstr "Ilość nakładania się skóry i ścian. Lekkie nałożenie pozwala ściśle łączyć się ze skórą."
  4775. #~ msgctxt "wall_thickness description"
  4776. #~ msgid "The thickness of the outside walls in the horizontal direction. This value divided by the wall line width defines the number of walls."
  4777. #~ msgstr "Grubość ścian zewnętrznych w kierunku poziomym. Ta wartość podzielona przez szerokość linii ściany określa liczbę ścian."