fdmprinter.def.json.po 350 KB

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