fdmprinter.def.json.po 313 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027
  1. # Cura
  2. # Copyright (C) 2022 Ultimaker B.V.
  3. # This file is distributed under the same license as the Cura package.
  4. # Ultimaker <plugins@ultimaker.com>, 2022.
  5. #
  6. msgid ""
  7. msgstr ""
  8. "Project-Id-Version: Cura 5.1\n"
  9. "Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
  10. "POT-Creation-Date: 2023-09-12 17:04+0000\n"
  11. "PO-Revision-Date: 2023-02-16 20:35+0100\n"
  12. "Last-Translator: Miroslav Šustek <sustmidown@centrum.cz>\n"
  13. "Language-Team: DenyCZ <www.github.com/DenyCZ>\n"
  14. "Language: cs_CZ\n"
  15. "MIME-Version: 1.0\n"
  16. "Content-Type: text/plain; charset=UTF-8\n"
  17. "Content-Transfer-Encoding: 8bit\n"
  18. "X-Generator: Poedit 3.3.2\n"
  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 "Vzdálenost, která se má držet od okrajů modelu. Žehlení až k okraji mřížky může vést k zubatému okraji na výtisku."
  22. msgctxt "material_no_load_move_factor description"
  23. 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."
  24. msgstr "Faktor udávající, jak moc se vlákno stlačí mezi podavačem a komorou trysky, používá se k určení, jak daleko se má pohybovat materiál pro spínač vlákna."
  25. msgctxt "roofing_angles description"
  26. 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)."
  27. msgstr "Seznam směrů celočíselných čar, které se použijí, když horní povrchové vrstvy používají čáry nebo vzor cik cak. Prvky ze seznamu se používají postupně jako vrstvy a jakmile je dosaženo konce seznamu, začíná znovu na začátku. Položky seznamu jsou odděleny čárkami a celý seznam je obsažen v hranatých závorkách. Výchozí je prázdný seznam, což znamená použití tradičních výchozích úhlů (45 a 135 stupňů)."
  28. msgctxt "skin_angles description"
  29. 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)."
  30. msgstr "Seznam směrů celočíselných čar, které se použijí, když horní / dolní vrstvy používají čáry nebo vzor zig zag. Prvky ze seznamu se používají postupně jako vrstvy a jakmile je dosaženo konce seznamu, začíná znovu na začátku. Položky seznamu jsou odděleny čárkami a celý seznam je obsažen v hranatých závorkách. Výchozí je prázdný seznam, což znamená použití tradičních výchozích úhlů (45 a 135 stupňů)."
  31. msgctxt "support_infill_angles description"
  32. 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."
  33. msgstr "Seznam směrů celého čísla, které je třeba použít. Prvky ze seznamu se používají postupně jako vrstvy a jakmile je dosaženo konce seznamu, začíná znovu na začátku. Položky seznamu jsou odděleny čárkami a celý seznam je obsažen v hranatých závorkách. Výchozí je prázdný seznam, což znamená použít výchozí úhel 0 stupňů."
  34. msgctxt "support_bottom_angles description"
  35. 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)."
  36. msgstr "Seznam směrů celého čísla, které je třeba použít. Prvky ze seznamu se používají postupně jako vrstvy a jakmile je dosaženo konce seznamu, začíná znovu na začátku. Položky seznamu jsou odděleny čárkami a celý seznam je obsažen v hranatých závorkách. Výchozí je prázdný seznam, což znamená použít výchozí úhly (střídavě mezi 45 a 135 stupni, pokud jsou rozhraní poměrně silná nebo 90 stupňů)."
  37. msgctxt "support_interface_angles description"
  38. 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)."
  39. msgstr "Seznam směrů celého čísla, které je třeba použít. Prvky ze seznamu se používají postupně jako vrstvy a jakmile je dosaženo konce seznamu, začíná znovu na začátku. Položky seznamu jsou odděleny čárkami a celý seznam je obsažen v hranatých závorkách. Výchozí je prázdný seznam, což znamená použít výchozí úhly (střídavě mezi 45 a 135 stupni, pokud jsou rozhraní poměrně silná nebo 90 stupňů)."
  40. msgctxt "support_roof_angles description"
  41. 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)."
  42. msgstr "Seznam směrů celého čísla, které je třeba použít. Prvky ze seznamu se používají postupně jako vrstvy a jakmile je dosaženo konce seznamu, začíná znovu na začátku. Položky seznamu jsou odděleny čárkami a celý seznam je obsažen v hranatých závorkách. Výchozí je prázdný seznam, což znamená použít výchozí úhly (střídavě mezi 45 a 135 stupni, pokud jsou rozhraní poměrně silná nebo 90 stupňů)."
  43. msgctxt "infill_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 traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)."
  45. msgstr "Seznam směrů celého čísla, které je třeba použít. Prvky ze seznamu se používají postupně jako vrstvy a jakmile je dosaženo konce seznamu, začíná znovu na začátku. Položky seznamu jsou odděleny čárkami a celý seznam je obsažen v hranatých závorkách. Výchozí je prázdný seznam, který znamená použití tradičních výchozích úhlů (45 a 135 stupňů pro čáry a cik-cak vzory a 45 stupňů pro všechny ostatní vzory)."
  46. msgctxt "nozzle_disallowed_areas description"
  47. msgid "A list of polygons with areas the nozzle is not allowed to enter."
  48. msgstr "Seznam polygonů s oblastmi, do kterých nesmí vstoupit tryska."
  49. msgctxt "machine_disallowed_areas description"
  50. msgid "A list of polygons with areas the print head is not allowed to enter."
  51. msgstr "Seznam polygonů s oblastmi, do kterých tisková hlava nemá přístup."
  52. msgctxt "brim_inside_margin description"
  53. 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."
  54. msgstr "Část plně obklopená jinou částí může generovat vnější límec, který se dotýká vnitřku obklopující části. Toto nastavení odstraní límec v dané vzdálenosti od vnitřních otvorů."
  55. msgctxt "support_tree_branch_reach_limit description"
  56. 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) "
  57. msgstr "Doporučení, jak daleko se mohou větve pohnout od bodu, který podporují. Větve mohou tuto hodnotu porušit, aby dosáhly svého cíle (podložka nebo plochá část modelu). Snížení této hodnoty učiní podporu více pevnou, ale zvýší počet větví (a společně s tím také množství použitého materiálu a dobu tisku) "
  58. msgctxt "extruder_prime_pos_abs label"
  59. msgid "Absolute Extruder Prime Position"
  60. msgstr "Absolutní výchozí pozice extruderu"
  61. msgctxt "adaptive_layer_height_variation label"
  62. msgid "Adaptive Layers Maximum Variation"
  63. msgstr "Maximální variabilita adaptivních vrstev"
  64. msgctxt "adaptive_layer_height_threshold label"
  65. msgid "Adaptive Layers Topography Size"
  66. msgstr "Velikost topografie adaptivních vrstev"
  67. msgctxt "adaptive_layer_height_variation_step label"
  68. msgid "Adaptive Layers Variation Step Size"
  69. msgstr "Velikost kroku adaptivní vrstvy"
  70. msgctxt "adaptive_layer_height_enabled description"
  71. msgid "Adaptive layers computes the layer heights depending on the shape of the model."
  72. msgstr "Adaptivní vrstvy vypočítávají výšky vrstev v závislosti na tvaru modelu."
  73. msgctxt "infill_wall_line_count description"
  74. msgid ""
  75. "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"
  76. "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."
  77. msgstr ""
  78. "Okolo výplně přidejte další zdi. Takové stěny mohou snížit horní a dolní linii povrchu, což znamená, že potřebujete méně vrchních / spodních vrstev povrchu pro stejnou kvalitu za cenu nějakého dalšího materiálu.\n"
  79. "Tato funkce se může kombinovat s polygony Spojení výplně a spojit veškerou výplň do jediné cesty vytlačování bez nutnosti cest a stáhnutí, pokud je nakonfigurováno správně."
  80. msgctxt "platform_adhesion description"
  81. msgid "Adhesion"
  82. msgstr "Adheze"
  83. msgctxt "material_adhesion_tendency label"
  84. msgid "Adhesion Tendency"
  85. msgstr "Tendence adheze"
  86. msgctxt "skin_overlap description"
  87. 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."
  88. msgstr "Upravte míru překrytí mezi stěnami a (koncovými body) osami povrchu jako procento šířky linií pokožky a nejvnitřnější stěny. Mírné překrytí umožňuje, aby se stěny pevně spojily s povrchem. Uvědomte si, že při stejné šířce linie povrchu a stěny může jakékoli procento nad 50% již způsobit, že jakýkoli povrch projde kolem zdi, protože v tomto bodě může pozice trysky extruderu povrchu už dosáhnout kolem středu zeď."
  89. msgctxt "skin_overlap_mm description"
  90. 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."
  91. msgstr "Upravte míru překrytí mezi stěnami a (koncovými body) osami porvchu. Mírné překrytí umožňuje, aby se stěny pevně spojily s povrchem. Je třeba si uvědomit, že při stejné šířce linie povrchu a stěny může jakákoli hodnota přesahující polovinu šířky stěny již způsobit, že jakýkoli povrch projde kolem zdi, protože v tomto bodě může pozice trysky extruderu povrchu již dosáhnout. kolem středu zdi."
  92. msgctxt "infill_sparse_density description"
  93. msgid "Adjusts the density of infill of the print."
  94. msgstr "Upravuje hustotu výplně tisku."
  95. msgctxt "support_interface_density description"
  96. 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."
  97. msgstr "Upravuje hustotu střech a podlah nosné konstrukce. Vyšší hodnota má za následek lepší přesahy, ale podpory je těžší odstranit."
  98. msgctxt "support_tree_top_rate description"
  99. 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."
  100. msgstr "Upravuje hustotu struktury podpory použité pro generování konečků větví. Vyšší hodnota zajistí lepší převisy, ale bude těžší podpory odstranit. Použijte střechu podpory pro vysoké hodnoty, anebo se ujistěte, že hustota podpor nahoře je podobně vysoká."
  101. msgctxt "support_infill_rate description"
  102. msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  103. msgstr "Nastavuje hustotu podpůrné struktury. Vyšší hodnota má za následek lepší přesahy, ale podpory je těžší odstranit."
  104. msgctxt "material_diameter description"
  105. msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament."
  106. msgstr "Nastavuje průměr použitého vlákna filamentu. Srovnejte tuto hodnotu s průměrem použitého vlákna."
  107. msgctxt "support_type description"
  108. 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."
  109. msgstr "Upravuje umístění podpůrných struktur. Umístění lze nastavit tak, aby se dotýkalo podložky nebo kdekoli. Pokud je nastavena všude, podpůrné struktury budou také vytištěny na modelu."
  110. msgctxt "prime_tower_wipe_enabled description"
  111. msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower."
  112. msgstr "Po vytištění hlavní věže jednou tryskou otřete vyteklý materiál z druhé trysky na hlavní věži."
  113. msgctxt "retraction_hop_after_extruder_switch description"
  114. 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."
  115. msgstr "Poté, co se stroj přepnul z jednoho extrudéru na druhý, sestavovací deska se spustí, aby se vytvořila vůle mezi tryskou a tiskem. Tím se zabrání tomu, aby tryska zanechávala vyteklý materiál na vnější straně tisku."
  116. msgctxt "retraction_combing option all"
  117. msgid "All"
  118. msgstr "Vše"
  119. msgctxt "print_sequence option all_at_once"
  120. msgid "All at Once"
  121. msgstr "Vše najednou"
  122. msgctxt "resolution description"
  123. msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)"
  124. msgstr "Všechna nastavení, která ovlivňují rozlišení tisku. Tato nastavení mají velký vliv na kvalitu (a dobu tisku)"
  125. msgctxt "alternate_extra_perimeter label"
  126. msgid "Alternate Extra Wall"
  127. msgstr "Alternativní zeď navíc"
  128. msgctxt "alternate_carve_order label"
  129. msgid "Alternate Mesh Removal"
  130. msgstr "Alternativní odstranění sítí"
  131. msgctxt "material_alternate_walls label"
  132. msgid "Alternate Wall Directions"
  133. msgstr "Střídat směr zdí"
  134. msgctxt "material_alternate_walls description"
  135. msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing."
  136. msgstr "Střídat směr zdí s každou vrstvou. Je užitečné pro materiály, ve kterých se může hromadit napětí, jako například kovové materiály."
  137. msgctxt "machine_buildplate_type option aluminum"
  138. msgid "Aluminum"
  139. msgstr "Hliník"
  140. msgctxt "machine_always_write_active_tool label"
  141. msgid "Always Write Active Tool"
  142. msgstr "Vždy Zapisovat Aktivní Nástroj"
  143. msgctxt "travel_retract_before_outer_wall description"
  144. msgid "Always retract when moving to start an outer wall."
  145. msgstr "Vždy zatáhnout filament, když se přesouvá k začátku vnější zdi."
  146. msgctxt "xy_offset description"
  147. 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."
  148. msgstr "Množství ofsetu aplikovaného na všechny polygony v každé vrstvě. Pozitivní hodnoty mohou kompenzovat příliš velké díry; záporné hodnoty mohou kompenzovat příliš malé díry."
  149. msgctxt "xy_offset_layer_0 description"
  150. 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\"."
  151. msgstr "Množství ofsetu aplikovaného na všechny polygony v první vrstvě. Záporná hodnota může kompenzovat pískání první vrstvy známé jako „sloní noha“."
  152. msgctxt "support_offset description"
  153. 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."
  154. msgstr "Množství ofsetu aplikovaného na všechny podpůrné polygony v každé vrstvě. Pozitivní hodnoty mohou vyhladit oblasti podpory a vést k robustnější podpoře."
  155. msgctxt "support_bottom_offset description"
  156. msgid "Amount of offset applied to the floors of the support."
  157. msgstr "Částka kompenzace použitá na podlahy podpory."
  158. msgctxt "support_roof_offset description"
  159. msgid "Amount of offset applied to the roofs of the support."
  160. msgstr "Množství offsetu aplikovaný na střechy podpěry."
  161. msgctxt "support_interface_offset description"
  162. msgid "Amount of offset applied to the support interface polygons."
  163. msgstr "Množství offsetu aplikovaného na polygony rozhraní podpory."
  164. msgctxt "wipe_retraction_amount description"
  165. msgid "Amount to retract the filament so it does not ooze during the wipe sequence."
  166. msgstr "Délka pro zasunutí filamentu tak, aby během sekvence stírání nevytekla."
  167. msgctxt "sub_div_rad_add description"
  168. 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."
  169. msgstr "Přídavek k poloměru od středu každé krychle ke kontrole hranice modelu, aby se rozhodlo, zda má být tato krychle rozdělena. Větší hodnoty vedou k silnější skořápce malých kostek poblíž hranice modelu."
  170. msgctxt "anti_overhang_mesh label"
  171. msgid "Anti Overhang Mesh"
  172. msgstr "Síť proti převisu"
  173. msgctxt "material_anti_ooze_retracted_position label"
  174. msgid "Anti-ooze Retracted Position"
  175. msgstr "Pozice zabraňující úniku"
  176. msgctxt "material_anti_ooze_retraction_speed label"
  177. msgid "Anti-ooze Retraction Speed"
  178. msgstr "Rychlost návratu při vytékání"
  179. msgctxt "machine_use_extruder_offset_to_offset_coords description"
  180. msgid "Apply the extruder offset to the coordinate system. Affects all extruders."
  181. msgstr "Použít offset extruderu v souřadnicovém systému. Ovlivňuje všechny extrudery."
  182. msgctxt "interlocking_enable description"
  183. msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials."
  184. msgstr "V místech, kde se modely dotýkají, budou generovány vzájemně propletené struktury. Ty zlepšují adhezi mezi modely, obzvláště u modelů tištěných z různých materiálů."
  185. msgctxt "travel_avoid_other_parts label"
  186. msgid "Avoid Printed Parts When Traveling"
  187. msgstr "Při cestování se vyhněte tištěným součástem"
  188. msgctxt "travel_avoid_supports label"
  189. msgid "Avoid Supports When Traveling"
  190. msgstr "Při pohybu se vyhnout podporám"
  191. msgctxt "z_seam_position option back"
  192. msgid "Back"
  193. msgstr "Zpět"
  194. msgctxt "z_seam_position option backleft"
  195. msgid "Back Left"
  196. msgstr "Zadní levá"
  197. msgctxt "z_seam_position option backright"
  198. msgid "Back Right"
  199. msgstr "Zadní pravá"
  200. msgctxt "machine_gcode_flavor option BFB"
  201. msgid "Bits from Bytes"
  202. msgstr "Bits from Bytes"
  203. msgctxt "magic_mesh_surface_mode option both"
  204. msgid "Both"
  205. msgstr "Obojí"
  206. msgctxt "support_interface_priority option nothing"
  207. msgid "Both overlap"
  208. msgstr "Překrýt obojí"
  209. msgctxt "bottom_layers label"
  210. msgid "Bottom Layers"
  211. msgstr "Spodní vrstvy"
  212. msgctxt "top_bottom_pattern_0 label"
  213. msgid "Bottom Pattern Initial Layer"
  214. msgstr "Vzor spodní počáteční vrstvy"
  215. msgctxt "bottom_skin_expand_distance label"
  216. msgid "Bottom Skin Expand Distance"
  217. msgstr "Dolní vzdálenost rozšíření povrchu"
  218. msgctxt "bottom_skin_preshrink label"
  219. msgid "Bottom Skin Removal Width"
  220. msgstr "Dolní šířka odstranění povrchu"
  221. msgctxt "bottom_thickness label"
  222. msgid "Bottom Thickness"
  223. msgstr "Spodní tloušťka"
  224. msgctxt "support_tree_top_rate label"
  225. msgid "Branch Density"
  226. msgstr "Hustota větví"
  227. msgctxt "support_tree_branch_diameter label"
  228. msgid "Branch Diameter"
  229. msgstr "Průměr větve"
  230. msgctxt "support_tree_branch_diameter_angle label"
  231. msgid "Branch Diameter Angle"
  232. msgstr "Úhel průměru větve"
  233. msgctxt "material_break_preparation_retracted_position label"
  234. msgid "Break Preparation Retracted Position"
  235. msgstr "Maximální napnutí filamentu při zahřátí"
  236. msgctxt "material_break_preparation_speed label"
  237. msgid "Break Preparation Retraction Speed"
  238. msgstr "Maximální rychlost napnutí při zahřátí"
  239. msgctxt "material_break_preparation_temperature label"
  240. msgid "Break Preparation Temperature"
  241. msgstr "Teplota přípravy na napnutí"
  242. msgctxt "material_break_retracted_position label"
  243. msgid "Break Retracted Position"
  244. msgstr "Pozice napnutí"
  245. msgctxt "material_break_speed label"
  246. msgid "Break Retraction Speed"
  247. msgstr "Rychlost navíjení vlákna"
  248. msgctxt "material_break_temperature label"
  249. msgid "Break Temperature"
  250. msgstr "Teplota přerušení"
  251. msgctxt "support_skip_some_zags label"
  252. msgid "Break Up Support In Chunks"
  253. msgstr "Rozdělte podporu na kousky"
  254. msgctxt "bridge_fan_speed label"
  255. msgid "Bridge Fan Speed"
  256. msgstr "Rychlost ventilátoru při tisknutí můstku"
  257. msgctxt "bridge_enable_more_layers label"
  258. msgid "Bridge Has Multiple Layers"
  259. msgstr "Můstek má více vrstev"
  260. msgctxt "bridge_skin_density_2 label"
  261. msgid "Bridge Second Skin Density"
  262. msgstr "Hustota druhé vrstvy povrchu můstku"
  263. msgctxt "bridge_fan_speed_2 label"
  264. msgid "Bridge Second Skin Fan Speed"
  265. msgstr "Rychlost ventilátoru při tisku druhé vrstvy povrchu můstku"
  266. msgctxt "bridge_skin_material_flow_2 label"
  267. msgid "Bridge Second Skin Flow"
  268. msgstr "Průtok při tisku druhé vrstvy povrchu můstku"
  269. msgctxt "bridge_skin_speed_2 label"
  270. msgid "Bridge Second Skin Speed"
  271. msgstr "Rychlost tisku druhé vrstvy povrchu můstku"
  272. msgctxt "bridge_skin_density label"
  273. msgid "Bridge Skin Density"
  274. msgstr "Hustota povrchu mostu"
  275. msgctxt "bridge_skin_material_flow label"
  276. msgid "Bridge Skin Flow"
  277. msgstr "Průtok při tisku povrchu můstku"
  278. msgctxt "bridge_skin_speed label"
  279. msgid "Bridge Skin Speed"
  280. msgstr "Rychlost při tisku povrchu můstku"
  281. msgctxt "bridge_skin_support_threshold label"
  282. msgid "Bridge Skin Support Threshold"
  283. msgstr "Prahová hodnota podpory povrchu mostu"
  284. msgctxt "bridge_sparse_infill_max_density label"
  285. msgid "Bridge Sparse Infill Max Density"
  286. msgstr "Maximální hustota výplně mostu"
  287. msgctxt "bridge_skin_density_3 label"
  288. msgid "Bridge Third Skin Density"
  289. msgstr "Hustota třetí vrstvy povrchu můstku"
  290. msgctxt "bridge_fan_speed_3 label"
  291. msgid "Bridge Third Skin Fan Speed"
  292. msgstr "Rychlost ventilátoru při tisku třetí vrstvy povrchu můstku"
  293. msgctxt "bridge_skin_material_flow_3 label"
  294. msgid "Bridge Third Skin Flow"
  295. msgstr "Průtok při tisku třetí vrstvy povrchu můstku"
  296. msgctxt "bridge_skin_speed_3 label"
  297. msgid "Bridge Third Skin Speed"
  298. msgstr "Rychlost tisku třetí vrstvy povrchu můstku"
  299. msgctxt "bridge_wall_coast label"
  300. msgid "Bridge Wall Coasting"
  301. msgstr "Coasting zdi můstku"
  302. msgctxt "bridge_wall_material_flow label"
  303. msgid "Bridge Wall Flow"
  304. msgstr "Průtok při tisku zdi můstku"
  305. msgctxt "bridge_wall_speed label"
  306. msgid "Bridge Wall Speed"
  307. msgstr "Rychlost tisku zdi můstku"
  308. msgctxt "adhesion_type option brim"
  309. msgid "Brim"
  310. msgstr "Límec"
  311. msgctxt "brim_gap label"
  312. msgid "Brim Distance"
  313. msgstr "Vzdálenost límce"
  314. msgctxt "brim_inside_margin label"
  315. msgid "Brim Inside Avoid Margin"
  316. msgstr "Vzdálenost od límce uvnitř"
  317. msgctxt "brim_line_count label"
  318. msgid "Brim Line Count"
  319. msgstr "Počet linek pro límec"
  320. msgctxt "brim_outside_only label"
  321. msgid "Brim Only on Outside"
  322. msgstr "Límec pouze venku"
  323. msgctxt "brim_replaces_support label"
  324. msgid "Brim Replaces Support"
  325. msgstr "Límec nahrazuje podpory"
  326. msgctxt "brim_width label"
  327. msgid "Brim Width"
  328. msgstr "Šířka límce"
  329. msgctxt "platform_adhesion label"
  330. msgid "Build Plate Adhesion"
  331. msgstr "Adheze topné podložky"
  332. msgctxt "adhesion_extruder_nr label"
  333. msgid "Build Plate Adhesion Extruder"
  334. msgstr "Extruder pro adhezi podložky"
  335. msgctxt "adhesion_type label"
  336. msgid "Build Plate Adhesion Type"
  337. msgstr "Typ přilnavosti podložky"
  338. msgctxt "machine_buildplate_type label"
  339. msgid "Build Plate Material"
  340. msgstr "Materiál podložky"
  341. msgctxt "machine_shape label"
  342. msgid "Build Plate Shape"
  343. msgstr "Tvar podložky"
  344. msgctxt "material_bed_temperature label"
  345. msgid "Build Plate Temperature"
  346. msgstr "Teplota podložky"
  347. msgctxt "material_bed_temperature_layer_0 label"
  348. msgid "Build Plate Temperature Initial Layer"
  349. msgstr "Teplota podložky při počáteční vrstvě"
  350. msgctxt "build_volume_temperature label"
  351. msgid "Build Volume Temperature"
  352. msgstr "Teplota sestavení"
  353. msgctxt "center_object label"
  354. msgid "Center Object"
  355. msgstr "Centrovat objekt"
  356. msgctxt "conical_overhang_enabled description"
  357. 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."
  358. msgstr "Změňte geometrii tištěného modelu tak, aby byla vyžadována minimální podpora. Strmé převisy se stanou mělkými převisy. Převislé oblasti budou klesat dolů, aby se staly vertikálními."
  359. msgctxt "support_structure description"
  360. 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."
  361. msgstr "Volí mezi dostupnými technikami pro generování podpory. „Normální“ podpora vytváří podpůrnou strukturu přímo pod převislými částmi a upouští tyto oblasti přímo dolů. „Stromová“ podpora vytváří větve směrem k převislým oblastem, které podporují model na koncích těchto větví, a umožňuje větvím procházet se kolem modelu a podporovat je co nejvíce z konstrukční desky."
  362. msgctxt "coasting_speed label"
  363. msgid "Coasting Speed"
  364. msgstr "Rychlost coastingu"
  365. msgctxt "coasting_volume label"
  366. msgid "Coasting Volume"
  367. msgstr "Objem coastingu"
  368. msgctxt "coasting_enable description"
  369. 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."
  370. msgstr "Coasting nahradí poslední část vytlačovací cesty cestou. Vyteklý materiál se používá k tisku posledního kusu vytlačovací cesty, aby se snížilo strunování."
  371. msgctxt "retraction_combing label"
  372. msgid "Combing Mode"
  373. msgstr "Režím Combing"
  374. msgctxt "retraction_combing description"
  375. 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."
  376. msgstr "Combing udržuje trysku v již vytištěných oblastech při cestování. To má za následek mírně delší pohybové tahy, ale snižuje potřebu zatažení. Pokud je combing vyplý, materiál se stáhne a tryska se pohybuje v přímce k dalšímu bodu. Je také možné vyhnout se combingu na horních / dolních částech povrchu nebo jen combing uvnitř výplně."
  377. msgctxt "command_line_settings label"
  378. msgid "Command Line Settings"
  379. msgstr "Nastavení příkazové řádky"
  380. msgctxt "infill_pattern option concentric"
  381. msgid "Concentric"
  382. msgstr "Soustředný"
  383. msgctxt "ironing_pattern option concentric"
  384. msgid "Concentric"
  385. msgstr "Soustředný"
  386. msgctxt "roofing_pattern option concentric"
  387. msgid "Concentric"
  388. msgstr "Soustředný"
  389. msgctxt "support_bottom_pattern option concentric"
  390. msgid "Concentric"
  391. msgstr "Soustředný"
  392. msgctxt "support_interface_pattern option concentric"
  393. msgid "Concentric"
  394. msgstr "Soustředný"
  395. msgctxt "support_pattern option concentric"
  396. msgid "Concentric"
  397. msgstr "Soustředný"
  398. msgctxt "support_roof_pattern option concentric"
  399. msgid "Concentric"
  400. msgstr "Soustředný"
  401. msgctxt "top_bottom_pattern option concentric"
  402. msgid "Concentric"
  403. msgstr "Soustředný"
  404. msgctxt "top_bottom_pattern_0 option concentric"
  405. msgid "Concentric"
  406. msgstr "Soustředný"
  407. msgctxt "support_conical_angle label"
  408. msgid "Conical Support Angle"
  409. msgstr "Kónický podpěrný úhel"
  410. msgctxt "support_conical_min_width label"
  411. msgid "Conical Support Minimum Width"
  412. msgstr "Minimální šířka kónické podpory"
  413. msgctxt "zig_zaggify_infill label"
  414. msgid "Connect Infill Lines"
  415. msgstr "Spojovat čáry výplně"
  416. msgctxt "connect_infill_polygons label"
  417. msgid "Connect Infill Polygons"
  418. msgstr "Připojte výplňové polygony"
  419. msgctxt "zig_zaggify_support label"
  420. msgid "Connect Support Lines"
  421. msgstr "Spojovat linky podpor"
  422. msgctxt "support_connect_zigzags label"
  423. msgid "Connect Support ZigZags"
  424. msgstr "Spojovat cig-cag podpory"
  425. msgctxt "connect_skin_polygons label"
  426. msgid "Connect Top/Bottom Polygons"
  427. msgstr "Připojte horní / dolní polygony"
  428. msgctxt "connect_infill_polygons description"
  429. 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."
  430. msgstr "Připojte výplňové cesty tam, kde běží vedle sebe. Pro výplňové vzory, které se skládají z několika uzavřených polygonů, umožňuje toto nastavení výrazně zkrátit dobu cestování."
  431. msgctxt "support_connect_zigzags description"
  432. msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure."
  433. msgstr "Připojte ZigZagy. Tím se zvýší pevnost nosné struktury klikatá zag."
  434. msgctxt "zig_zaggify_support description"
  435. 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."
  436. msgstr "Spojte konce podpůrných linek dohromady. Aktivace tohoto nastavení může zvýšit vaši podporu a snížit podextruzi, ale bude to stát více materiálu."
  437. msgctxt "zig_zaggify_infill description"
  438. 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."
  439. msgstr "Konce, kde se vzor výplně setkává s vnitřní stěnou, pomocí čáry, která sleduje tvar vnitřní stěny. Aktivace tohoto nastavení může zlepšit přilnavost výplně ke stěnám a snížit vliv výplně na kvalitu svislých povrchů. Vypnutím tohoto nastavení se sníží množství použitého materiálu."
  440. msgctxt "connect_skin_polygons description"
  441. 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."
  442. msgstr "Propojte horní / dolní povrchové cesty tam, kde běží vedle sebe. Pro soustředné uspořádání umožňující toto nastavení výrazně zkracuje dobu cestování, ale protože se spojení může uskutečnit uprostřed výplně, může tato funkce snížit kvalitu povrchu."
  443. msgctxt "z_seam_corner description"
  444. 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."
  445. msgstr "Určete, zda rohy na obrysu modelu ovlivňují polohu švu. Žádné znamená, že rohy nemají žádný vliv na polohu švu. Funkce \"Schovat šev\" zvyšuje pravděpodobnost, že se šev vyskytuje ve vnitřním rohu. \"Ukázat šev\" zvyšuje pravděpodobnost, že se šev objeví na vnějším rohu. \"Skrýt nebo vystavit šev\" zvyšuje pravděpodobnost, že šev nastane ve vnitřním nebo vnějším rohu. \"Inteligentní skrytí\" umožňuje vnitřní i vnější rohy, ale v případě potřeby vybírá vnitřní rohy častěji."
  446. msgctxt "infill_multiplier description"
  447. 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."
  448. msgstr "Převeďte každou výplňovou linii na tuto řadu řádků. Další čáry se nepřekrývají, ale vzájemně se vyhýbají. Díky tomu je výplň tužší, ale zvyšuje se doba tisku a spotřeba materiálu."
  449. msgctxt "machine_nozzle_cool_down_speed label"
  450. msgid "Cool Down Speed"
  451. msgstr "Rychlost chlazení"
  452. msgctxt "cooling description"
  453. msgid "Cooling"
  454. msgstr "Chlazení"
  455. msgctxt "cooling label"
  456. msgid "Cooling"
  457. msgstr "Chlazení"
  458. msgctxt "infill_pattern option cross"
  459. msgid "Cross"
  460. msgstr "Křížek"
  461. msgctxt "support_pattern option cross"
  462. msgid "Cross"
  463. msgstr "Křížek"
  464. msgctxt "infill_pattern option cross_3d"
  465. msgid "Cross 3D"
  466. msgstr "3D Křížek"
  467. msgctxt "cross_infill_pocket_size label"
  468. msgid "Cross 3D Pocket Size"
  469. msgstr "Velikost kapsy u 3D kříže"
  470. msgctxt "cross_support_density_image label"
  471. msgid "Cross Fill Density Image for Support"
  472. msgstr "Obrázek s křížovou výplní pro podporu"
  473. msgctxt "cross_infill_density_image label"
  474. msgid "Cross Infill Density Image"
  475. msgstr "Obrázek s křížovou výplní"
  476. msgctxt "material_crystallinity label"
  477. msgid "Crystalline Material"
  478. msgstr "Krystalický materiál"
  479. msgctxt "infill_pattern option cubic"
  480. msgid "Cubic"
  481. msgstr "Krychle"
  482. msgctxt "infill_pattern option cubicsubdiv"
  483. msgid "Cubic Subdivision"
  484. msgstr "Kubické členění"
  485. msgctxt "sub_div_rad_add label"
  486. msgid "Cubic Subdivision Shell"
  487. msgstr "Shell kubické rozdělení"
  488. msgctxt "cutting_mesh label"
  489. msgid "Cutting Mesh"
  490. msgstr "Síť pro řezání"
  491. msgctxt "material_flow_temp_graph description"
  492. msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)."
  493. msgstr "Data spojující tok materiálu (v mm3 za sekundu) s teplotou (ve stupních Celsia)."
  494. msgctxt "machine_acceleration label"
  495. msgid "Default Acceleration"
  496. msgstr "Výchozí akcelerace"
  497. msgctxt "default_material_bed_temperature label"
  498. msgid "Default Build Plate Temperature"
  499. msgstr "Výchozí teplota podložky"
  500. msgctxt "machine_max_jerk_e label"
  501. msgid "Default Filament Jerk"
  502. msgstr "Výchozí jerk filamentu"
  503. msgctxt "default_material_print_temperature label"
  504. msgid "Default Printing Temperature"
  505. msgstr "Výchozí teplota tisknutí"
  506. msgctxt "machine_max_jerk_xy label"
  507. msgid "Default X-Y Jerk"
  508. msgstr "Výchozí X-Y jerk rychlost motoru"
  509. msgctxt "machine_max_jerk_z label"
  510. msgid "Default Z Jerk"
  511. msgstr "Výchozí Z jerk rychlost motoru"
  512. msgctxt "machine_max_jerk_xy description"
  513. msgid "Default jerk for movement in the horizontal plane."
  514. msgstr "Výchozí trhnutí pro pohyb ve vodorovné rovině."
  515. msgctxt "machine_max_jerk_z description"
  516. msgid "Default jerk for the motor of the Z-direction."
  517. msgstr "Výchozí trhnutí pro motor ve směru Z."
  518. msgctxt "machine_max_jerk_e description"
  519. msgid "Default jerk for the motor of the filament."
  520. msgstr "Výchozí trhnutí pro motor filamentu."
  521. msgctxt "bridge_settings_enabled description"
  522. msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed."
  523. msgstr "Zjistěte mosty a upravte rychlost tisku, průtok a nastavení ventilátoru během tisku mostů."
  524. msgctxt "inset_direction description"
  525. 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."
  526. msgstr "Určuje pořadí, v jakém budou tištěny zdi. Tištění vnějších zdí jako prvních pomáhá rozměrové přesnosti, jelikož se vady z vnitřních stěn nemohou přenášet na vnějšek. Naproti tomu tištění vnějších zdí nakonec dovoluje jejich lepší vrstvení při tištění převisů. Pokud je nepravidelný počet čar ve vnitřních stěnách, tisknou se 'zbylé střední čáry' nakonec."
  527. msgctxt "infill_mesh_order description"
  528. 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."
  529. msgstr "Určuje prioritu této sítě, když se překrývá více sítí výplně. U oblastí, kde se překrývá více sítí výplně, se nastavení přebírá ze sítě s nejvyšším pořadím. Síť výplně s vyšším pořadím bude modifikovat výplň sítě výplně s nižším pořadím a běžné sítě."
  530. msgctxt "lightning_infill_support_angle description"
  531. msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer."
  532. msgstr "Určuje, kdy má vrstva bleskové výplně nad sebou něco, co má podporovat. Zadává se jako úhel a řídí se tloušťkou vrstvy."
  533. msgctxt "lightning_infill_overhang_angle description"
  534. msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness."
  535. msgstr "Určuje, od jakého úhlu převisu bude vrstva bleskové výplň podporovat model nad sebou."
  536. msgctxt "material_diameter label"
  537. msgid "Diameter"
  538. msgstr "Průměr"
  539. msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label"
  540. msgid "Diameter Increase To Model"
  541. msgstr "Zvýšení průměru k modelu"
  542. msgctxt "support_tree_bp_diameter description"
  543. msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion."
  544. msgstr "Průměr, kterého se každá větev snaží dosáhnout, když se dotýká podložky. Zlepšuje přilnavost."
  545. msgctxt "adhesion_type description"
  546. 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."
  547. msgstr "Různé možnosti, které pomáhají zlepšit jak vytlačování, tak adhezi k sestavovací desce. Límec přidává jedinou vrstvu roviny kolem základny vašeho modelu, aby se zabránilo deformaci. Raft přidává tlustou mřížku se střechou pod modelem. Okraj je čára vytištěná kolem modelu, ale není k modelu připojena."
  548. msgctxt "machine_disallowed_areas label"
  549. msgid "Disallowed Areas"
  550. msgstr "Zakázané zóny"
  551. msgctxt "infill_line_distance description"
  552. msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width."
  553. msgstr "Vzdálenost mezi tištěnými výplněmi. Toto nastavení se vypočítá podle hustoty výplně a šířky výplně."
  554. msgctxt "support_initial_layer_line_distance description"
  555. msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density."
  556. msgstr "Vzdálenost mezi tištěnými liniemi základní struktury podpory. Toto nastavení se vypočítá podle hustoty podpory."
  557. msgctxt "support_bottom_line_distance description"
  558. msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately."
  559. msgstr "Vzdálenost mezi tištěnými podpůrnými podlahovými liniemi. Toto nastavení se vypočítá podle hustoty podpůrné podlahy, ale lze ji upravit samostatně."
  560. msgctxt "support_roof_line_distance description"
  561. msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately."
  562. msgstr "Vzdálenost mezi tištěnými oporami střechy. Toto nastavení se vypočítá podle hustoty nosné střechy, ale lze ji upravit samostatně."
  563. msgctxt "support_line_distance description"
  564. msgid "Distance between the printed support structure lines. This setting is calculated by the support density."
  565. msgstr "Vzdálenost mezi tištěnými liniemi podpůrné struktury. Toto nastavení se vypočítá podle hustoty podpory."
  566. msgctxt "support_bottom_distance description"
  567. msgid "Distance from the print to the bottom of the support."
  568. msgstr "Vzdálenost od tisku ke spodní části podpěry."
  569. msgctxt "support_top_distance description"
  570. msgid "Distance from the top of the support to the print."
  571. msgstr "Vzdálenost od horní strany podpory k tisku."
  572. msgctxt "support_z_distance description"
  573. 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."
  574. msgstr "Vzdálenost od horní / dolní nosné struktury k tisku. Tato mezera poskytuje vůli pro odstranění podpěr po vytištění modelu. Tato hodnota je zaokrouhlena nahoru na násobek výšky vrstvy."
  575. msgctxt "infill_wipe_dist description"
  576. 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."
  577. msgstr "Vzdálenost pohybového pohybu vloženého za každou výplňovou linii, aby se výplň lepila ke stěnám lépe. Tato možnost je podobná překrývání výplně, ale bez vytlačování a pouze na jednom konci výplňové linky."
  578. msgctxt "wall_0_wipe_dist description"
  579. msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better."
  580. msgstr "Vzdálenost pohybového posunu vloženého za vnější stěnu, aby se skryla Z šev lépe."
  581. msgctxt "draft_shield_dist description"
  582. msgid "Distance of the draft shield from the print, in the X/Y directions."
  583. msgstr "Vzdálenost štítu před tiskem ve směru X / Y."
  584. msgctxt "ooze_shield_dist description"
  585. msgid "Distance of the ooze shield from the print, in the X/Y directions."
  586. msgstr "Vzdálenost štítu od tisku ve směru X / Y."
  587. msgctxt "support_xy_distance_overhang description"
  588. msgid "Distance of the support structure from the overhang in the X/Y directions."
  589. msgstr "Vzdálenost podpor od převisu ve směru X/Y."
  590. msgctxt "support_xy_distance description"
  591. msgid "Distance of the support structure from the print in the X/Y directions."
  592. msgstr "Vzdálenost podpůrné struktury od tisku ve směru X / Y."
  593. msgctxt "meshfix_fluid_motion_shift_distance description"
  594. msgid "Distance points are shifted to smooth the path"
  595. msgstr ""
  596. msgctxt "meshfix_fluid_motion_small_distance description"
  597. msgid "Distance points are shifted to smooth the path"
  598. msgstr ""
  599. msgctxt "min_infill_area description"
  600. msgid "Don't generate areas of infill smaller than this (use skin instead)."
  601. msgstr "Nevytvářejte oblasti výplně menší než tato (místo toho použijte povrch)."
  602. msgctxt "draft_shield_height label"
  603. msgid "Draft Shield Height"
  604. msgstr "Výška štítu modelu"
  605. msgctxt "draft_shield_height_limitation label"
  606. msgid "Draft Shield Limitation"
  607. msgstr "Limitace štítu modelu"
  608. msgctxt "draft_shield_dist label"
  609. msgid "Draft Shield X/Y Distance"
  610. msgstr "X/Y vzdálenost štítu modelu"
  611. msgctxt "support_mesh_drop_down label"
  612. msgid "Drop Down Support Mesh"
  613. msgstr "Podpory pod celou sítí"
  614. msgctxt "dual label"
  615. msgid "Dual Extrusion"
  616. msgstr "Dvojitá extruze"
  617. msgctxt "machine_shape option elliptic"
  618. msgid "Elliptic"
  619. msgstr "Eliptická"
  620. msgctxt "acceleration_enabled label"
  621. msgid "Enable Acceleration Control"
  622. msgstr "Povolit ovládání akcelerace"
  623. msgctxt "bridge_settings_enabled label"
  624. msgid "Enable Bridge Settings"
  625. msgstr "Povolit nastavení mostu"
  626. msgctxt "coasting_enable label"
  627. msgid "Enable Coasting"
  628. msgstr "Povolit Coasting"
  629. msgctxt "support_conical_enabled label"
  630. msgid "Enable Conical Support"
  631. msgstr "Povolit kuželovou podporu"
  632. msgctxt "draft_shield_enabled label"
  633. msgid "Enable Draft Shield"
  634. msgstr "Zapnout štít modelu"
  635. msgctxt "meshfix_fluid_motion_enabled label"
  636. msgid "Enable Fluid Motion"
  637. msgstr ""
  638. msgctxt "ironing_enabled label"
  639. msgid "Enable Ironing"
  640. msgstr "Povolit žehlení"
  641. msgctxt "jerk_enabled label"
  642. msgid "Enable Jerk Control"
  643. msgstr "Povolit kontrolu trhu"
  644. msgctxt "machine_nozzle_temp_enabled label"
  645. msgid "Enable Nozzle Temperature Control"
  646. msgstr "Povolit řízení teploty trysek"
  647. msgctxt "ooze_shield_enabled label"
  648. msgid "Enable Ooze Shield"
  649. msgstr "Povolit Ooze štít"
  650. msgctxt "prime_blob_enable label"
  651. msgid "Enable Prime Blob"
  652. msgstr "Povolit primární blob"
  653. msgctxt "prime_tower_enable label"
  654. msgid "Enable Prime Tower"
  655. msgstr "Povolit hlavní věže"
  656. msgctxt "cool_fan_enabled label"
  657. msgid "Enable Print Cooling"
  658. msgstr "Povolit chlazení při tisku"
  659. msgctxt "retraction_enable label"
  660. msgid "Enable Retraction"
  661. msgstr "Povolit retrakci"
  662. msgctxt "support_brim_enable label"
  663. msgid "Enable Support Brim"
  664. msgstr "Povolit límec podpory"
  665. msgctxt "support_bottom_enable label"
  666. msgid "Enable Support Floor"
  667. msgstr "Povolit podpory podlah"
  668. msgctxt "support_interface_enable label"
  669. msgid "Enable Support Interface"
  670. msgstr "Povolit rozhraní podpor"
  671. msgctxt "support_roof_enable label"
  672. msgid "Enable Support Roof"
  673. msgstr "Povolit střechu podpory"
  674. msgctxt "acceleration_travel_enabled label"
  675. msgid "Enable Travel Acceleration"
  676. msgstr "Změnit akceleraci cestování"
  677. msgctxt "jerk_travel_enabled label"
  678. msgid "Enable Travel Jerk"
  679. msgstr "Změnit okamžitou rychlost cestování"
  680. msgctxt "ooze_shield_enabled description"
  681. 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."
  682. msgstr "Povolit vnější ochranu proti úniku. Tím se vytvoří model kolem modelu, který pravděpodobně otře druhou trysku, pokud je ve stejné výšce jako první tryska."
  683. msgctxt "small_skin_on_surface description"
  684. msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern."
  685. msgstr ""
  686. msgctxt "jerk_enabled description"
  687. 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."
  688. msgstr "Umožňuje nastavení trhnutí tiskové hlavy, když se mění rychlost v ose X nebo Y. Zvýšení trhnutí může zkrátit dobu tisku za cenu kvality tisku."
  689. msgctxt "acceleration_enabled description"
  690. msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality."
  691. msgstr "Umožňuje nastavení zrychlení tiskové hlavy. Zvýšení zrychlení může zkrátit dobu tisku za cenu kvality tisku."
  692. msgctxt "cool_fan_enabled description"
  693. msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs."
  694. msgstr "Aktivuje ventilátory chlazení tisku během tisku. Ventilátory zlepšují kvalitu tisku na vrstvách s krátkými časy a přemostěním / přesahy."
  695. msgctxt "machine_end_gcode label"
  696. msgid "End G-code"
  697. msgstr "Ukončující G kód"
  698. msgctxt "material_end_of_filament_purge_length label"
  699. msgid "End of Filament Purge Length"
  700. msgstr "Délka proplachu na konci vlákna"
  701. msgctxt "material_end_of_filament_purge_speed label"
  702. msgid "End of Filament Purge Speed"
  703. msgstr "Rychlost proplachování na konci filamentu"
  704. msgctxt "brim_replaces_support description"
  705. 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."
  706. msgstr "Vynutí vytištění límce kolem modelu, i když by tento prostor byl jinak obsazen podporou. To nahradí některé regiony první vrstvy podpory okrajovými regiony."
  707. msgctxt "support_type option everywhere"
  708. msgid "Everywhere"
  709. msgstr "Všude"
  710. msgctxt "slicing_tolerance option exclusive"
  711. msgid "Exclusive"
  712. msgstr "Exkluzivní"
  713. msgctxt "experimental label"
  714. msgid "Experimental"
  715. msgstr "Experimentální"
  716. msgctxt "z_seam_corner option z_seam_corner_outer"
  717. msgid "Expose Seam"
  718. msgstr "Ukázat šev"
  719. msgctxt "meshfix_extensive_stitching label"
  720. msgid "Extensive Stitching"
  721. msgstr "Rozsáhlé prošívání"
  722. msgctxt "meshfix_extensive_stitching description"
  723. 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."
  724. msgstr "Rozsáhlé sešívání se snaží spojit otevřené otvory v mřížce uzavřením díry dotykem mnohoúhelníků. Tato možnost může přinést spoustu času zpracování."
  725. msgctxt "infill_wall_line_count label"
  726. msgid "Extra Infill Wall Count"
  727. msgstr "Počet navíc výplní zdí"
  728. msgctxt "skin_outline_count label"
  729. msgid "Extra Skin Wall Count"
  730. msgstr "Počet povrchových zdí navíc"
  731. msgctxt "switch_extruder_extra_prime_amount description"
  732. msgid "Extra material to prime after nozzle switching."
  733. msgstr "Materiál navíc pro extruzi po změně trysky."
  734. msgctxt "extruder_prime_pos_x label"
  735. msgid "Extruder Prime X Position"
  736. msgstr "Primární pozice extruderu X"
  737. msgctxt "extruder_prime_pos_y label"
  738. msgid "Extruder Prime Y Position"
  739. msgstr "Primární pozice extruderu Y"
  740. msgctxt "extruder_prime_pos_z label"
  741. msgid "Extruder Prime Z Position"
  742. msgstr "První Z pozice extruderu"
  743. msgctxt "machine_extruders_share_heater label"
  744. msgid "Extruders Share Heater"
  745. msgstr "Extrudery sdílí ohřívač"
  746. msgctxt "machine_extruders_share_nozzle label"
  747. msgid "Extruders Share Nozzle"
  748. msgstr "Extrudery sdílí trysku"
  749. msgctxt "material_extrusion_cool_down_speed label"
  750. msgid "Extrusion Cool Down Speed Modifier"
  751. msgstr "Modifikátor rychlosti chlazení extruze"
  752. msgctxt "speed_equalize_flow_width_factor description"
  753. 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."
  754. msgstr "Faktor korekce rychlosti v závislosti na šířce extruze. Při 0 % je rychlost pohybu konstantně na hodnotě Rychlost tisku. Při 100 % je rychlost pohybu upravena tak, aby byl tok (v mm³/s) konstantní. To znamená, že čáry o šířce poloviny nastavení Šířka čáry jsou tištěny dvojnásobnou rychlostí a čáry dvojnásobné šířky jsou tištěny poloviční rychlostí. Hodnota vyšší než 100 % může pomoci kompenzovat vysoký tlak potřebný k extruzi širokých čar."
  755. msgctxt "cool_fan_speed label"
  756. msgid "Fan Speed"
  757. msgstr "Rychlost větráku"
  758. msgctxt "support_fan_enable label"
  759. msgid "Fan Speed Override"
  760. msgstr "Přepsání rychlosti ventilátoru"
  761. msgctxt "small_feature_max_length description"
  762. msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed."
  763. msgstr "Obrysy částí, které jsou kratší než tato délka, budou vytištěny pomocí funkce Rychlost malých částí."
  764. msgctxt "experimental description"
  765. msgid "Features that haven't completely been fleshed out yet."
  766. msgstr "Nové vychytávky, které ještě nejsou venku."
  767. msgctxt "machine_feeder_wheel_diameter label"
  768. msgid "Feeder Wheel Diameter"
  769. msgstr "Průměr kolečka feederu"
  770. msgctxt "material_final_print_temperature label"
  771. msgid "Final Printing Temperature"
  772. msgstr "Konečná teplota tisku"
  773. msgctxt "machine_firmware_retract label"
  774. msgid "Firmware Retraction"
  775. msgstr "Retrakce firmwaru"
  776. msgctxt "support_extruder_nr_layer_0 label"
  777. msgid "First Layer Support Extruder"
  778. msgstr "Extruder pro první vrstvu"
  779. msgctxt "material_flow label"
  780. msgid "Flow"
  781. msgstr "Průtok"
  782. msgctxt "speed_equalize_flow_width_factor label"
  783. msgid "Flow Equalization Ratio"
  784. msgstr "Míra vyrovnávání toku"
  785. msgctxt "flow_rate_extrusion_offset_factor label"
  786. msgid "Flow Rate Compensation Factor"
  787. msgstr "Faktor kompenzace průtoku"
  788. msgctxt "flow_rate_max_extrusion_offset label"
  789. msgid "Flow Rate Compensation Max Extrusion Offset"
  790. msgstr "Kompenzace průtoku maximální posunutí extruze"
  791. msgctxt "material_flow_temp_graph label"
  792. msgid "Flow Temperature Graph"
  793. msgstr "Graf teploty toku"
  794. msgctxt "material_flow_layer_0 description"
  795. msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value."
  796. msgstr "Kompenzace toku pro první vrstvu: množství materiálu vytlačovaného na počáteční vrstvě se vynásobí touto hodnotou."
  797. msgctxt "skin_material_flow_layer_0 description"
  798. msgid "Flow compensation on bottom lines of the first layer"
  799. msgstr "Kompenzace toku pro čáry spodku modelu v první vrstvě"
  800. msgctxt "infill_material_flow description"
  801. msgid "Flow compensation on infill lines."
  802. msgstr "Kompenzace toku na výplňových vedeních."
  803. msgctxt "support_interface_material_flow description"
  804. msgid "Flow compensation on lines of support roof or floor."
  805. msgstr "Kompenzace toku na liniích podpůrné střechy nebo podlahy."
  806. msgctxt "roofing_material_flow description"
  807. msgid "Flow compensation on lines of the areas at the top of the print."
  808. msgstr "Kompenzace toku na řádcích oblastí v horní části tisku."
  809. msgctxt "prime_tower_flow description"
  810. msgid "Flow compensation on prime tower lines."
  811. msgstr "Kompenzace toku na hlavních liniích věží."
  812. msgctxt "skirt_brim_material_flow description"
  813. msgid "Flow compensation on skirt or brim lines."
  814. msgstr "Kompenzace toku na okrajových nebo límcových liniích."
  815. msgctxt "support_bottom_material_flow description"
  816. msgid "Flow compensation on support floor lines."
  817. msgstr "Kompenzace toku na podpůrných podlahových linkách."
  818. msgctxt "support_roof_material_flow description"
  819. msgid "Flow compensation on support roof lines."
  820. msgstr "Kompenzace toku na podpůrných liniích střechy."
  821. msgctxt "support_material_flow description"
  822. msgid "Flow compensation on support structure lines."
  823. msgstr "Kompenzace toku na podpůrných strukturách."
  824. msgctxt "wall_0_material_flow_layer_0 description"
  825. msgid "Flow compensation on the outermost wall line of the first layer."
  826. msgstr "Kompenzace toku v nejvíce venkovní čáře stěny první vrstvy."
  827. msgctxt "wall_0_material_flow description"
  828. msgid "Flow compensation on the outermost wall line."
  829. msgstr "Kompenzace průtoku na vnější linii stěny."
  830. msgctxt "skin_material_flow description"
  831. msgid "Flow compensation on top/bottom lines."
  832. msgstr "Kompenzace průtoku na horních / dolních řádcích."
  833. msgctxt "wall_x_material_flow_layer_0 description"
  834. msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer"
  835. msgstr "Kompenzace toku pro všechny čáry stěn kromě té nejvíce venkovní, ale pouze pro první vrstvu"
  836. msgctxt "wall_x_material_flow description"
  837. msgid "Flow compensation on wall lines for all wall lines except the outermost one."
  838. msgstr "Kompenzace toku na liniích stěn pro všechny linie stěn s výjimkou těch nejvíce venkovních."
  839. msgctxt "wall_material_flow description"
  840. msgid "Flow compensation on wall lines."
  841. msgstr "Kompenzace průtoku na stěnách."
  842. msgctxt "material_flow description"
  843. msgid "Flow compensation: the amount of material extruded is multiplied by this value."
  844. msgstr "Kompenzace toku: množství vytlačovaného materiálu se vynásobí touto hodnotou."
  845. msgctxt "meshfix_fluid_motion_angle label"
  846. msgid "Fluid Motion Angle"
  847. msgstr ""
  848. msgctxt "meshfix_fluid_motion_shift_distance label"
  849. msgid "Fluid Motion Shift Distance"
  850. msgstr ""
  851. msgctxt "meshfix_fluid_motion_small_distance label"
  852. msgid "Fluid Motion Small Distance"
  853. msgstr ""
  854. msgctxt "material_flush_purge_length label"
  855. msgid "Flush Purge Length"
  856. msgstr "Délka proplachování"
  857. msgctxt "material_flush_purge_speed label"
  858. msgid "Flush Purge Speed"
  859. msgstr "Rychlost proplachování"
  860. msgctxt "min_wall_line_width description"
  861. 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."
  862. msgstr "Pro struktury o šířce okolo jedno až dvojnásobku velikosti trysky musí být šířky čar upravovány, aby to se dodržovala správná tloušťka modelu. Toto nastavení ovládá minimální dovolenou šířku čáry pro zdi. Z minimální šířky čáry se také odvozuje maximální šířka, jelikož při určité tloušťce tvaru se přechází z N na N + 1 zdí, kdy je N zdí širokých, zatímco N + 1 zdi jsou úzké. Nejvyšší možná šířka čáry zdi je tedy dvojnásobek tohoto nastavení."
  863. msgctxt "z_seam_position option front"
  864. msgid "Front"
  865. msgstr "Přední"
  866. msgctxt "z_seam_position option frontleft"
  867. msgid "Front Left"
  868. msgstr "Přední levá"
  869. msgctxt "z_seam_position option frontright"
  870. msgid "Front Right"
  871. msgstr "Přední pravá"
  872. msgctxt "draft_shield_height_limitation option full"
  873. msgid "Full"
  874. msgstr "Plná"
  875. msgctxt "magic_fuzzy_skin_enabled label"
  876. msgid "Fuzzy Skin"
  877. msgstr "Rozmazaný povrch"
  878. msgctxt "magic_fuzzy_skin_point_density label"
  879. msgid "Fuzzy Skin Density"
  880. msgstr "Hustota nejasného povrchu"
  881. msgctxt "magic_fuzzy_skin_outside_only label"
  882. msgid "Fuzzy Skin Outside Only"
  883. msgstr "Rozmazaný povrch pouze venku"
  884. msgctxt "magic_fuzzy_skin_point_dist label"
  885. msgid "Fuzzy Skin Point Distance"
  886. msgstr "Vzdálenost bodů při rozmazané výplni"
  887. msgctxt "magic_fuzzy_skin_thickness label"
  888. msgid "Fuzzy Skin Thickness"
  889. msgstr "Tloušťka rozmazaného povrchu"
  890. msgctxt "machine_gcode_flavor label"
  891. msgid "G-code Flavor"
  892. msgstr "Varianta G kódu"
  893. msgctxt "machine_end_gcode description"
  894. msgid ""
  895. "G-code commands to be executed at the very end - separated by \n"
  896. "."
  897. msgstr "Příkazy G-kódu, které mají být provedeny od samého začátku - oddělené \\ n."
  898. msgctxt "machine_start_gcode description"
  899. msgid ""
  900. "G-code commands to be executed at the very start - separated by \n"
  901. "."
  902. msgstr ""
  903. "Příkazy G-kódu, které mají být provedeny na samém konci - oddělené\n"
  904. "."
  905. msgctxt "material_guid description"
  906. msgid "GUID of the material. This is set automatically."
  907. msgstr "GUID materiálu. Je nastaveno automaticky."
  908. msgctxt "gantry_height label"
  909. msgid "Gantry Height"
  910. msgstr "Výška rámu tiskárny"
  911. msgctxt "interlocking_enable label"
  912. msgid "Generate Interlocking Structure"
  913. msgstr "Generovat vzájemné propletení"
  914. msgctxt "support_enable label"
  915. msgid "Generate Support"
  916. msgstr "Generovat podpory"
  917. msgctxt "support_brim_enable description"
  918. 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."
  919. msgstr "Vytvořte límec v podpůrných výplňových oblastech první vrstvy. Tento límec je vytištěn pod podpěrou, ne kolem ní. Povolením tohoto nastavení se zvýší přilnavost podpory k podložce."
  920. msgctxt "support_interface_enable description"
  921. 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."
  922. msgstr "Vytvořte husté rozhraní mezi modelem a podporou. Tím se vytvoří povrch v horní části podpory, na které je model vytištěn, a ve spodní části podpory, kde spočívá na modelu."
  923. msgctxt "support_bottom_enable description"
  924. 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."
  925. msgstr "Vytvořte hustou desku materiálu mezi spodní částí nosiče a modelem. Tím vytvoříte vzhled mezi modelem a podporou."
  926. msgctxt "support_roof_enable description"
  927. 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."
  928. msgstr "Vytvořte hustou desku materiálu mezi horní částí podpory a modelem. Tím vytvoříte vzhled mezi modelem a podporou."
  929. msgctxt "support_enable description"
  930. msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing."
  931. msgstr "Vytvořte struktury pro podporu částí modelu, které mají přesahy. Bez těchto struktur by se takové části během tisku zhroutily."
  932. msgctxt "machine_buildplate_type option glass"
  933. msgid "Glass"
  934. msgstr "Sklo"
  935. msgctxt "ironing_enabled description"
  936. 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."
  937. msgstr "Ještě jednou přejděte horní povrch, ale tentokrát vytlačujete jen velmi málo materiálu. To má za cíl roztavit plast nahoře dále a vytvořit hladší povrch. Tlak v komoře trysky je udržován vysoký, takže rýhy na povrchu jsou vyplněny materiálem."
  938. msgctxt "gradual_infill_step_height label"
  939. msgid "Gradual Infill Step Height"
  940. msgstr "Postupná výška kroku výplně"
  941. msgctxt "gradual_infill_steps label"
  942. msgid "Gradual Infill Steps"
  943. msgstr "Postupné kroky výplně"
  944. msgctxt "gradual_support_infill_step_height label"
  945. msgid "Gradual Support Infill Step Height"
  946. msgstr "Výška výplně krokové podpory"
  947. msgctxt "gradual_support_infill_steps label"
  948. msgid "Gradual Support Infill Steps"
  949. msgstr "Postupné kroky vyplňování podpory"
  950. msgctxt "cool_min_temperature description"
  951. msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time."
  952. msgstr "Postupně ochlazuje na tuto teplotu, když se tiskne při snížených rychlostech kvůli minimální doby vrstvy."
  953. msgctxt "infill_pattern option grid"
  954. msgid "Grid"
  955. msgstr "Mřížka"
  956. msgctxt "support_bottom_pattern option grid"
  957. msgid "Grid"
  958. msgstr "Mřížka"
  959. msgctxt "support_interface_pattern option grid"
  960. msgid "Grid"
  961. msgstr "Mřížka"
  962. msgctxt "support_pattern option grid"
  963. msgid "Grid"
  964. msgstr "Mřížka"
  965. msgctxt "support_roof_pattern option grid"
  966. msgid "Grid"
  967. msgstr "Mřížka"
  968. msgctxt "machine_gcode_flavor option Griffin"
  969. msgid "Griffin"
  970. msgstr "Griffin"
  971. msgctxt "infill_pattern option gyroid"
  972. msgid "Gyroid"
  973. msgstr "Gyroid"
  974. msgctxt "support_pattern option gyroid"
  975. msgid "Gyroid"
  976. msgstr "Gyroid"
  977. msgctxt "machine_heated_build_volume label"
  978. msgid "Has Build Volume Temperature Stabilization"
  979. msgstr "Má stabilizaci teploty podložky"
  980. msgctxt "machine_heated_bed label"
  981. msgid "Has Heated Build Plate"
  982. msgstr "Má vyhřívanou podložku"
  983. msgctxt "machine_nozzle_heat_up_speed label"
  984. msgid "Heat Up Speed"
  985. msgstr "Rychlost zahřívání"
  986. msgctxt "machine_heat_zone_length label"
  987. msgid "Heat Zone Length"
  988. msgstr "Délka tepelné zóny"
  989. msgctxt "draft_shield_height description"
  990. msgid "Height limitation of the draft shield. Above this height no draft shield will be printed."
  991. msgstr "Výškové omezení ochranného štítu. Nad touto výškou nebude vytištěn žádný koncept štítu."
  992. msgctxt "z_seam_corner option z_seam_corner_inner"
  993. msgid "Hide Seam"
  994. msgstr "Schovat šev"
  995. msgctxt "z_seam_corner option z_seam_corner_any"
  996. msgid "Hide or Expose Seam"
  997. msgstr "Skrýt nebo ukázat šev"
  998. msgctxt "hole_xy_offset label"
  999. msgid "Hole Horizontal Expansion"
  1000. msgstr "Horizontální expanze díry"
  1001. msgctxt "hole_xy_offset_max_diameter label"
  1002. msgid "Hole Horizontal Expansion Max Diameter"
  1003. msgstr "Maximální průměr horizontální expanze díry"
  1004. msgctxt "small_hole_max_size description"
  1005. msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
  1006. msgstr "Otvory a obrysy součástí s průměrem menším, než je tento, budou vytištěny pomocí funkce Rychlost malých funkcí."
  1007. msgctxt "xy_offset label"
  1008. msgid "Horizontal Expansion"
  1009. msgstr "Horizontální expanze"
  1010. msgctxt "material_shrinkage_percentage_xy label"
  1011. msgid "Horizontal Scaling Factor Shrinkage Compensation"
  1012. msgstr "Horizontální faktor zvětšení pro kompenzaci smrštění"
  1013. msgctxt "material_break_preparation_retracted_position description"
  1014. msgid "How far the filament can be stretched before it breaks, while heated."
  1015. msgstr "Jak daleko může být filament natažen, než se rozbije při zahřátí."
  1016. msgctxt "material_anti_ooze_retracted_position description"
  1017. msgid "How far the material needs to be retracted before it stops oozing."
  1018. msgstr "Jak daleko musí být materiál zasunut, než přestane vytékat."
  1019. msgctxt "flow_rate_extrusion_offset_factor description"
  1020. 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."
  1021. msgstr "Jak daleko posunout vlákno za účelem kompenzace změn průtoku, jako procento toho, jak daleko by se vlákno pohybovalo v jedné sekundě vytlačování."
  1022. msgctxt "material_break_retracted_position description"
  1023. msgid "How far to retract the filament in order to break it cleanly."
  1024. msgstr "Jak daleko se filament zasune tak, aby se čistě přerušil."
  1025. msgctxt "material_break_preparation_speed description"
  1026. msgid "How fast the filament needs to be retracted just before breaking it off in a retraction."
  1027. msgstr "Jak rychle musí být filament zatažen těsně před jeho rozbitím."
  1028. msgctxt "material_anti_ooze_retraction_speed description"
  1029. msgid "How fast the material needs to be retracted during a filament switch to prevent oozing."
  1030. msgstr "Jak rychle je třeba materiál zatáhnout během výměně filamentu, aby se zabránilo vytečení."
  1031. msgctxt "material_end_of_filament_purge_speed description"
  1032. msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material."
  1033. msgstr "Jak rychle se materiál po výměně prázdné cívky zastírá čerstvou cívkou stejného materiálu."
  1034. msgctxt "material_flush_purge_speed description"
  1035. msgid "How fast to prime the material after switching to a different material."
  1036. msgstr "Jak rychle se materiál po přepnutí na jiný materiál má rozjet."
  1037. msgctxt "material_maximum_park_duration description"
  1038. msgid "How long the material can be kept out of dry storage safely."
  1039. msgstr "Jak dlouho lze materiál bezpečně uchovávat mimo suché úložiště."
  1040. msgctxt "machine_steps_per_mm_x description"
  1041. msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction."
  1042. msgstr "Kolik kroků krokového motoru povede k jednomu milimetru pohybu ve směru X."
  1043. msgctxt "machine_steps_per_mm_y description"
  1044. msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction."
  1045. msgstr "Kolik kroků krokového motoru povede k jednomu milimetru pohybu ve směru Y."
  1046. msgctxt "machine_steps_per_mm_z description"
  1047. msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction."
  1048. msgstr "Kolik kroků krokového motoru povede k jednomu milimetru pohybu ve směru Z."
  1049. msgctxt "machine_steps_per_mm_e description"
  1050. msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference."
  1051. msgstr "Kolik kroků krokového motoru povede k pohybu kolečka feederu o jeden milimetr po jeho obvodu."
  1052. msgctxt "material_end_of_filament_purge_length description"
  1053. 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."
  1054. msgstr "Kolik materiálu se použije k propláchnutí předchozího materiálu z trysky (v délce vlákna) při výměně prázdné cívky za novou cívku ze stejného materiálu."
  1055. msgctxt "material_flush_purge_length description"
  1056. 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."
  1057. msgstr "Kolik materiálu použít k vyčištění předchozího materiálu z trysky (v délce vlákna) při přechodu na jiný materiál."
  1058. msgctxt "machine_extruders_shared_nozzle_initial_retraction description"
  1059. 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."
  1060. msgstr "Jak daleko je zatažen filament každého extruderu sdílené trysky po dokončení počátečního G kódu tiskárny. Tato hodnota by se měla rovnat nebo být vyšší než je délka společné části vedení trysky."
  1061. msgctxt "support_interface_priority description"
  1062. msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof."
  1063. msgstr "Jak mají rozhraní podpor a podpory interagovat když se překrývají. Aktuálně implementováno pro střechy podpor."
  1064. msgctxt "support_tree_min_height_to_model description"
  1065. 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."
  1066. msgstr "Jak vysoká musí větev být, aby mohla být umístěna na modelu. Zabraňuje malým hrudkám tvořícím podpory. Toto nastavení je ignorováno, pokud větev podporuje střechu podpory."
  1067. msgctxt "bridge_skin_support_threshold description"
  1068. 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."
  1069. msgstr "Pokud je oblast povrchu podporována pro méně než toto procento její plochy, vytiskněte ji pomocí nastavení můstku. V opačném případě se vytiskne pomocí běžných nastavení vzhledu."
  1070. msgctxt "meshfix_fluid_motion_angle description"
  1071. msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed."
  1072. msgstr ""
  1073. msgctxt "bridge_enable_more_layers description"
  1074. 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."
  1075. msgstr "Pokud je povoleno, druhá a třetí vrstva nad vzduchem se vytisknou pomocí následujících nastavení. V opačném případě se tyto vrstvy tisknou pomocí běžných nastavení."
  1076. msgctxt "wall_transition_filter_distance description"
  1077. 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."
  1078. msgstr "Pokud by se mělo rychle za sebou přecházet tam a zpět mezi různými počty zdí, nebude se sbíhání provádět. Nastavení odstraní přechody mezi různými počty čar zdí, pokud by byly blíže než tato vzdálenost."
  1079. msgctxt "raft_margin description"
  1080. 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."
  1081. msgstr "Pokud je raft povolen, jedná se o další oblast voru kolem modelu, která má také raft. Zvětšení tohoto okraje vytvoří silnější raft při použití více materiálu a ponechání menší plochy pro váš tisk."
  1082. msgctxt "meshfix_union_all description"
  1083. 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."
  1084. msgstr "Ignorujte vnitřní geometrii vznikající z překrývajících se svazků v síti a svazky vytiskněte jako jeden. To může způsobit, že nechtěné vnitřní dutiny zmizí."
  1085. msgctxt "material_bed_temp_prepend label"
  1086. msgid "Include Build Plate Temperature"
  1087. msgstr "Zahrnout teploty podložky"
  1088. msgctxt "material_print_temp_prepend label"
  1089. msgid "Include Material Temperatures"
  1090. msgstr "Zahrnout teploty materiálu"
  1091. msgctxt "slicing_tolerance option inclusive"
  1092. msgid "Inclusive"
  1093. msgstr "Inkluzivní"
  1094. msgctxt "infill description"
  1095. msgid "Infill"
  1096. msgstr "Výplň"
  1097. msgctxt "infill label"
  1098. msgid "Infill"
  1099. msgstr "Výplň"
  1100. msgctxt "acceleration_infill label"
  1101. msgid "Infill Acceleration"
  1102. msgstr "Akcelerace tisku výplně"
  1103. msgctxt "infill_before_walls label"
  1104. msgid "Infill Before Walls"
  1105. msgstr "Výplň před zdmi"
  1106. msgctxt "infill_sparse_density label"
  1107. msgid "Infill Density"
  1108. msgstr "Hustota výplně"
  1109. msgctxt "infill_extruder_nr label"
  1110. msgid "Infill Extruder"
  1111. msgstr "Výplňový extrudér"
  1112. msgctxt "infill_material_flow label"
  1113. msgid "Infill Flow"
  1114. msgstr "Průtok u výplně"
  1115. msgctxt "jerk_infill label"
  1116. msgid "Infill Jerk"
  1117. msgstr "Trh při tisku výplně"
  1118. msgctxt "infill_sparse_thickness label"
  1119. msgid "Infill Layer Thickness"
  1120. msgstr "Tloušťka výplně vrstvy"
  1121. msgctxt "infill_angles label"
  1122. msgid "Infill Line Directions"
  1123. msgstr "Směr výplně"
  1124. msgctxt "infill_line_distance label"
  1125. msgid "Infill Line Distance"
  1126. msgstr "Vzdálenost výplně"
  1127. msgctxt "infill_multiplier label"
  1128. msgid "Infill Line Multiplier"
  1129. msgstr "Náplň řádku linky"
  1130. msgctxt "infill_line_width label"
  1131. msgid "Infill Line Width"
  1132. msgstr "Šířka čáry výplně"
  1133. msgctxt "infill_mesh label"
  1134. msgid "Infill Mesh"
  1135. msgstr "Síť výplně"
  1136. msgctxt "infill_support_angle label"
  1137. msgid "Infill Overhang Angle"
  1138. msgstr "Výplňový přesahový úhel"
  1139. msgctxt "infill_overlap_mm label"
  1140. msgid "Infill Overlap"
  1141. msgstr "Výplň se překrývá"
  1142. msgctxt "infill_overlap label"
  1143. msgid "Infill Overlap Percentage"
  1144. msgstr "Procento překrytí výplně"
  1145. msgctxt "infill_pattern label"
  1146. msgid "Infill Pattern"
  1147. msgstr "Výplňový vzor"
  1148. msgctxt "speed_infill label"
  1149. msgid "Infill Speed"
  1150. msgstr "Rychlost tisku výplně"
  1151. msgctxt "infill_support_enabled label"
  1152. msgid "Infill Support"
  1153. msgstr "Výplňová podpora"
  1154. msgctxt "infill_enable_travel_optimization label"
  1155. msgid "Infill Travel Optimization"
  1156. msgstr "Optimalizace pohybu při tisku výplně"
  1157. msgctxt "infill_wipe_dist label"
  1158. msgid "Infill Wipe Distance"
  1159. msgstr "Vzdálenost výplně"
  1160. msgctxt "infill_offset_x label"
  1161. msgid "Infill X Offset"
  1162. msgstr "X Offset výplně"
  1163. msgctxt "infill_offset_y label"
  1164. msgid "Infill Y Offset"
  1165. msgstr "Y Offset výplně"
  1166. msgctxt "initial_bottom_layers label"
  1167. msgid "Initial Bottom Layers"
  1168. msgstr "Počáteční spodní vrstvy"
  1169. msgctxt "cool_fan_speed_0 label"
  1170. msgid "Initial Fan Speed"
  1171. msgstr "Počáteční rychlost ventilátoru"
  1172. msgctxt "acceleration_layer_0 label"
  1173. msgid "Initial Layer Acceleration"
  1174. msgstr "Akcelerace při první vrstvě"
  1175. msgctxt "skin_material_flow_layer_0 label"
  1176. msgid "Initial Layer Bottom Flow"
  1177. msgstr "Průtok první vrstvy spodku"
  1178. msgctxt "support_tree_bp_diameter label"
  1179. msgid "Initial Layer Diameter"
  1180. msgstr "Průměr počáteční vrstvy"
  1181. msgctxt "material_flow_layer_0 label"
  1182. msgid "Initial Layer Flow"
  1183. msgstr "Průtok při prvotní vrstvě"
  1184. msgctxt "layer_height_0 label"
  1185. msgid "Initial Layer Height"
  1186. msgstr "Výška výchozí vrstvy"
  1187. msgctxt "xy_offset_layer_0 label"
  1188. msgid "Initial Layer Horizontal Expansion"
  1189. msgstr "Počáteční horizontální rozšíření vrstvy"
  1190. msgctxt "wall_x_material_flow_layer_0 label"
  1191. msgid "Initial Layer Inner Wall Flow"
  1192. msgstr "Průtok vnitřních stěn první vrstvy"
  1193. msgctxt "jerk_layer_0 label"
  1194. msgid "Initial Layer Jerk"
  1195. msgstr "Okamžitá rychlost při prvotní vrstvě"
  1196. msgctxt "initial_layer_line_width_factor label"
  1197. msgid "Initial Layer Line Width"
  1198. msgstr "Šířka čáry počáteční vrstvy"
  1199. msgctxt "wall_0_material_flow_layer_0 label"
  1200. msgid "Initial Layer Outer Wall Flow"
  1201. msgstr "Průtok venkovních stěn první vrstvy"
  1202. msgctxt "acceleration_print_layer_0 label"
  1203. msgid "Initial Layer Print Acceleration"
  1204. msgstr "Akcelerace tisku při první vrstvě"
  1205. msgctxt "jerk_print_layer_0 label"
  1206. msgid "Initial Layer Print Jerk"
  1207. msgstr "Okamžitá rychlost při tisku prvotní vrstvy"
  1208. msgctxt "speed_print_layer_0 label"
  1209. msgid "Initial Layer Print Speed"
  1210. msgstr "Rychlost tisku prvotní vrstvy"
  1211. msgctxt "speed_layer_0 label"
  1212. msgid "Initial Layer Speed"
  1213. msgstr "Rychlost prvotní vrstvy"
  1214. msgctxt "support_initial_layer_line_distance label"
  1215. msgid "Initial Layer Support Line Distance"
  1216. msgstr "Počáteční vzdálenost linek podpory"
  1217. msgctxt "acceleration_travel_layer_0 label"
  1218. msgid "Initial Layer Travel Acceleration"
  1219. msgstr "Akcelerace při cestách v první vrstvě"
  1220. msgctxt "jerk_travel_layer_0 label"
  1221. msgid "Initial Layer Travel Jerk"
  1222. msgstr "Okamžitá rychlost při cestování nad prvotní vrstvou"
  1223. msgctxt "speed_travel_layer_0 label"
  1224. msgid "Initial Layer Travel Speed"
  1225. msgstr "Rychlost cestování prvotní vrstvy"
  1226. msgctxt "layer_0_z_overlap label"
  1227. msgid "Initial Layer Z Overlap"
  1228. msgstr "Počáteční překrytí vrstvy Z"
  1229. msgctxt "material_initial_print_temperature label"
  1230. msgid "Initial Printing Temperature"
  1231. msgstr "Počáteční teplota tisku"
  1232. msgctxt "acceleration_wall_x label"
  1233. msgid "Inner Wall Acceleration"
  1234. msgstr "Akcelerace tisku vnitřní zdi"
  1235. msgctxt "wall_x_extruder_nr label"
  1236. msgid "Inner Wall Extruder"
  1237. msgstr "Extruder vnitřní zdi"
  1238. msgctxt "jerk_wall_x label"
  1239. msgid "Inner Wall Jerk"
  1240. msgstr "Okamžitá rychlost při tisku vnitřní zdi"
  1241. msgctxt "speed_wall_x label"
  1242. msgid "Inner Wall Speed"
  1243. msgstr "Rychlost tisku vnitřní zdi"
  1244. msgctxt "wall_x_material_flow label"
  1245. msgid "Inner Wall(s) Flow"
  1246. msgstr "Průtok u vnitřních zdí"
  1247. msgctxt "wall_line_width_x label"
  1248. msgid "Inner Wall(s) Line Width"
  1249. msgstr "Šířka čáry vnitřních stěn"
  1250. msgctxt "wall_0_inset description"
  1251. 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."
  1252. msgstr "Inset aplikovaný na cestu vnější stěny. Pokud je vnější stěna menší než tryska a je vytištěna za vnitřními stěnami, použijte toto odsazení, aby se otvor v trysce překrýval s vnitřními stěnami místo vně modelu."
  1253. msgctxt "inset_direction option inside_out"
  1254. msgid "Inside To Outside"
  1255. msgstr "Zevnitř ven"
  1256. msgctxt "support_interface_priority option interface_lines_overwrite_support_area"
  1257. msgid "Interface lines preferred"
  1258. msgstr "Preferovat čáry rozhraní"
  1259. msgctxt "support_interface_priority option interface_area_overwrite_support_area"
  1260. msgid "Interface preferred"
  1261. msgstr "Preferovat rozhraní"
  1262. msgctxt "interlocking_beam_layer_count label"
  1263. msgid "Interlocking Beam Layer Count"
  1264. msgstr "Počet vrstev paprsků vzájemného propletení"
  1265. msgctxt "interlocking_beam_width label"
  1266. msgid "Interlocking Beam Width"
  1267. msgstr "Šířka paprsku vzájemného propletení"
  1268. msgctxt "interlocking_boundary_avoidance label"
  1269. msgid "Interlocking Boundary Avoidance"
  1270. msgstr "Vyhýbání vzájemného propletení hranicím"
  1271. msgctxt "interlocking_depth label"
  1272. msgid "Interlocking Depth"
  1273. msgstr "Hloubka vzájemného propletení"
  1274. msgctxt "interlocking_orientation label"
  1275. msgid "Interlocking Structure Orientation"
  1276. msgstr "Orientace vzájemného propletení"
  1277. msgctxt "ironing_only_highest_layer label"
  1278. msgid "Iron Only Highest Layer"
  1279. msgstr "Žehlit pouze nejvyšší vrstvu"
  1280. msgctxt "acceleration_ironing label"
  1281. msgid "Ironing Acceleration"
  1282. msgstr "Akcelerace žehlení"
  1283. msgctxt "ironing_flow label"
  1284. msgid "Ironing Flow"
  1285. msgstr "Průtok při žehlení"
  1286. msgctxt "ironing_inset label"
  1287. msgid "Ironing Inset"
  1288. msgstr "Žehlící vložka"
  1289. msgctxt "jerk_ironing label"
  1290. msgid "Ironing Jerk"
  1291. msgstr "Trhnutí při žehlení"
  1292. msgctxt "ironing_line_spacing label"
  1293. msgid "Ironing Line Spacing"
  1294. msgstr "Rozteč žehlicích linek"
  1295. msgctxt "ironing_pattern label"
  1296. msgid "Ironing Pattern"
  1297. msgstr "Vzor žehlení"
  1298. msgctxt "speed_ironing label"
  1299. msgid "Ironing Speed"
  1300. msgstr "Rychlost žehlení"
  1301. msgctxt "machine_center_is_zero label"
  1302. msgid "Is Center Origin"
  1303. msgstr "Je střed počátek"
  1304. msgctxt "material_is_support_material label"
  1305. msgid "Is support material"
  1306. msgstr "Je materiál podpory"
  1307. msgctxt "material_crystallinity description"
  1308. 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)?"
  1309. msgstr "Je tento materiál typem, který se při zahřívání (krystalický) čistě rozpadá, nebo jde o typ, který vytváří dlouhé propletené polymerní řetězce (nekrystalické)?"
  1310. msgctxt "material_is_support_material description"
  1311. msgid "Is this material typically used as a support material during printing."
  1312. msgstr "Je tento materiál typicky při tisku používán jako materiál podpory?"
  1313. msgctxt "magic_fuzzy_skin_outside_only description"
  1314. msgid "Jitter only the parts' outlines and not the parts' holes."
  1315. msgstr "Rozmazat jen okrajové části modelu a žádné díry modelu."
  1316. msgctxt "meshfix_keep_open_polygons label"
  1317. msgid "Keep Disconnected Faces"
  1318. msgstr "Ponechat odpojené plochy"
  1319. msgctxt "layer_height label"
  1320. msgid "Layer Height"
  1321. msgstr "Výška vrstvy"
  1322. msgctxt "layer_start_x label"
  1323. msgid "Layer Start X"
  1324. msgstr "Start vrstvy X"
  1325. msgctxt "layer_start_y label"
  1326. msgid "Layer Start Y"
  1327. msgstr "Start vrstvy Y"
  1328. msgctxt "raft_base_thickness description"
  1329. msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate."
  1330. msgstr "Tloušťka vrstvy základní vrstvy raftu. Měla by to být silná vrstva, která pevně přilne k podložce tiskárny."
  1331. msgctxt "raft_interface_thickness description"
  1332. msgid "Layer thickness of the middle raft layer."
  1333. msgstr "Tloušťka vrstvy střední vrstvy raftu."
  1334. msgctxt "raft_surface_thickness description"
  1335. msgid "Layer thickness of the top raft layers."
  1336. msgstr "Tloušťka vrstev vrchních vrstev raftu."
  1337. msgctxt "support_skip_zag_per_mm description"
  1338. msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away."
  1339. msgstr "Vynechejte spojení mezi podpůrnými linkami jednou za N milimetr, abyste usnadnili odtržení podpůrné struktury."
  1340. msgctxt "z_seam_position option left"
  1341. msgid "Left"
  1342. msgstr "Levá"
  1343. msgctxt "cool_lift_head label"
  1344. msgid "Lift Head"
  1345. msgstr "Zvednout hlavu"
  1346. msgctxt "infill_pattern option lightning"
  1347. msgid "Lightning"
  1348. msgstr "Bleskový"
  1349. msgctxt "lightning_infill_overhang_angle label"
  1350. msgid "Lightning Infill Overhang Angle"
  1351. msgstr "Úhel převisu bleskové podpory"
  1352. msgctxt "lightning_infill_prune_angle label"
  1353. msgid "Lightning Infill Prune Angle"
  1354. msgstr "Úhel ústupu bleskové vrstvy"
  1355. msgctxt "lightning_infill_straightening_angle label"
  1356. msgid "Lightning Infill Straightening Angle"
  1357. msgstr "Úhel vyrovnávání bleskové vrstvy"
  1358. msgctxt "lightning_infill_support_angle label"
  1359. msgid "Lightning Infill Support Angle"
  1360. msgstr "Úhel podpory bleskové výplně"
  1361. msgctxt "support_tree_limit_branch_reach label"
  1362. msgid "Limit Branch Reach"
  1363. msgstr "Omezení dosahu větví"
  1364. msgctxt "support_tree_limit_branch_reach description"
  1365. 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)"
  1366. msgstr "Omezuje, jak daleko by měly větve cestovat od bodu, který podporují. Toto nastavení může učinit podporu pevnější, ale zvýší počet větví (a společně s tím také množství použitého materiálu a dobu tisku)"
  1367. msgctxt "cutting_mesh description"
  1368. 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."
  1369. msgstr "Objem této sítě omezte na jiné sítě. Můžete to použít k vytvoření určitých oblastí tisku jednoho oka s různým nastavením as úplně jiným extruderem."
  1370. msgctxt "draft_shield_height_limitation option limited"
  1371. msgid "Limited"
  1372. msgstr "Limitovaná"
  1373. msgctxt "line_width label"
  1374. msgid "Line Width"
  1375. msgstr "Šířka čáry"
  1376. msgctxt "infill_pattern option lines"
  1377. msgid "Lines"
  1378. msgstr "Čáry"
  1379. msgctxt "roofing_pattern option lines"
  1380. msgid "Lines"
  1381. msgstr "Čáry"
  1382. msgctxt "support_bottom_pattern option lines"
  1383. msgid "Lines"
  1384. msgstr "Čáry"
  1385. msgctxt "support_interface_pattern option lines"
  1386. msgid "Lines"
  1387. msgstr "Čáry"
  1388. msgctxt "support_pattern option lines"
  1389. msgid "Lines"
  1390. msgstr "Čáry"
  1391. msgctxt "support_roof_pattern option lines"
  1392. msgid "Lines"
  1393. msgstr "Čáry"
  1394. msgctxt "top_bottom_pattern option lines"
  1395. msgid "Lines"
  1396. msgstr "Čáry"
  1397. msgctxt "top_bottom_pattern_0 option lines"
  1398. msgid "Lines"
  1399. msgstr "Čáry"
  1400. msgctxt "machine_gcode_flavor option MACH3"
  1401. msgid "Mach3"
  1402. msgstr "Mach3"
  1403. msgctxt "machine_settings label"
  1404. msgid "Machine"
  1405. msgstr "Zařízení"
  1406. msgctxt "machine_depth label"
  1407. msgid "Machine Depth"
  1408. msgstr "Hloubka zařízení"
  1409. msgctxt "machine_head_with_fans_polygon label"
  1410. msgid "Machine Head & Fan Polygon"
  1411. msgstr "Polygon hlavy a větráku zařízení"
  1412. msgctxt "machine_height label"
  1413. msgid "Machine Height"
  1414. msgstr "Výška zařízení"
  1415. msgctxt "machine_name label"
  1416. msgid "Machine Type"
  1417. msgstr "Typ zařízení"
  1418. msgctxt "machine_width label"
  1419. msgid "Machine Width"
  1420. msgstr "Šířka zařízení"
  1421. msgctxt "machine_settings description"
  1422. msgid "Machine specific settings"
  1423. msgstr "Specifické nastavení pro zařízení"
  1424. msgctxt "conical_overhang_enabled label"
  1425. msgid "Make Overhang Printable"
  1426. msgstr "Udělat převis tisknutelný"
  1427. msgctxt "multiple_mesh_overlap description"
  1428. msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better."
  1429. msgstr "Síťky, které se navzájem dotýkají, se trochu překrývají. Díky tomu se lepí dohromady."
  1430. msgctxt "support_conical_enabled description"
  1431. msgid "Make support areas smaller at the bottom than at the overhang."
  1432. msgstr "Zmenšete podpůrné oblasti na spodní straně než na převis."
  1433. msgctxt "support_mesh_drop_down description"
  1434. msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh."
  1435. msgstr "Podpořte všude pod podpůrnou sítí, aby v podpůrné síti nebyl přesah."
  1436. msgctxt "extruder_prime_pos_abs description"
  1437. msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head."
  1438. msgstr "Zajistěte, aby hlavní poloha extrudéru byla absolutní, nikoli relativní k poslednímu známému umístění hlavy."
  1439. msgctxt "layer_0_z_overlap description"
  1440. 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."
  1441. msgstr "První a druhá vrstva modelu se překrývají ve směru Z, aby se kompenzovalo vlákno ztracené ve vzduchové mezeře. Všechny modely nad první vrstvou modelu budou o tuto částku posunuty dolů."
  1442. msgctxt "meshfix description"
  1443. msgid "Make the meshes more suited for 3D printing."
  1444. msgstr "Udělat sítě lépe 3D tisknutelné."
  1445. msgctxt "machine_gcode_flavor option Makerbot"
  1446. msgid "Makerbot"
  1447. msgstr "Makerbot"
  1448. msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)"
  1449. msgid "Marlin"
  1450. msgstr "Marlin"
  1451. msgctxt "machine_gcode_flavor option RepRap (Volumetric)"
  1452. msgid "Marlin (Volumetric)"
  1453. msgstr "Marlin (Volumetric)"
  1454. msgctxt "material description"
  1455. msgid "Material"
  1456. msgstr "Materiál"
  1457. msgctxt "material label"
  1458. msgid "Material"
  1459. msgstr "Materiál"
  1460. msgctxt "material_guid label"
  1461. msgid "Material GUID"
  1462. msgstr "GUID materiálu"
  1463. msgctxt "max_extrusion_before_wipe label"
  1464. msgid "Material Volume Between Wipes"
  1465. msgstr "Objem materiálu mezi čištěními"
  1466. msgctxt "retraction_combing_max_distance label"
  1467. msgid "Max Comb Distance With No Retract"
  1468. msgstr "Maximální vzdálenost Combing-u bez retrakce"
  1469. msgctxt "machine_max_acceleration_x label"
  1470. msgid "Maximum Acceleration X"
  1471. msgstr "Maximální akcelerace X"
  1472. msgctxt "machine_max_acceleration_y label"
  1473. msgid "Maximum Acceleration Y"
  1474. msgstr "Maximální akcelerace Y"
  1475. msgctxt "machine_max_acceleration_z label"
  1476. msgid "Maximum Acceleration Z"
  1477. msgstr "Maximální akcelerace Z"
  1478. msgctxt "support_tree_angle label"
  1479. msgid "Maximum Branch Angle"
  1480. msgstr "Maximální úhel větví"
  1481. msgctxt "meshfix_maximum_deviation label"
  1482. msgid "Maximum Deviation"
  1483. msgstr "Maximální odchylka"
  1484. msgctxt "meshfix_maximum_extrusion_area_deviation label"
  1485. msgid "Maximum Extrusion Area Deviation"
  1486. msgstr "Maximální odchylka plochy extruze"
  1487. msgctxt "cool_fan_speed_max label"
  1488. msgid "Maximum Fan Speed"
  1489. msgstr "Maximální rychlost ventilátoru"
  1490. msgctxt "machine_max_acceleration_e label"
  1491. msgid "Maximum Filament Acceleration"
  1492. msgstr "Maximální akcelerace filamentu"
  1493. msgctxt "conical_overhang_angle label"
  1494. msgid "Maximum Model Angle"
  1495. msgstr "Maximální úhel modelu"
  1496. msgctxt "conical_overhang_hole_size label"
  1497. msgid "Maximum Overhang Hole Area"
  1498. msgstr "Maximální plocha díry pod převisem"
  1499. msgctxt "material_maximum_park_duration label"
  1500. msgid "Maximum Park Duration"
  1501. msgstr "Maximální doba parkingu"
  1502. msgctxt "meshfix_maximum_resolution label"
  1503. msgid "Maximum Resolution"
  1504. msgstr "Maximální rozlišení"
  1505. msgctxt "retraction_count_max label"
  1506. msgid "Maximum Retraction Count"
  1507. msgstr "Maximální pojezd"
  1508. msgctxt "max_skin_angle_for_expansion label"
  1509. msgid "Maximum Skin Angle for Expansion"
  1510. msgstr "Maximální úhel pro rozšíření povrchu"
  1511. msgctxt "machine_max_feedrate_e label"
  1512. msgid "Maximum Speed E"
  1513. msgstr "Maximální rychlost E"
  1514. msgctxt "machine_max_feedrate_x label"
  1515. msgid "Maximum Speed X"
  1516. msgstr "Maximální rychlost X"
  1517. msgctxt "machine_max_feedrate_y label"
  1518. msgid "Maximum Speed Y"
  1519. msgstr "Maximální rychlost Y"
  1520. msgctxt "machine_max_feedrate_z label"
  1521. msgid "Maximum Speed Z"
  1522. msgstr "Maximální rychlost Z"
  1523. msgctxt "support_tower_maximum_supported_diameter label"
  1524. msgid "Maximum Tower-Supported Diameter"
  1525. msgstr "Maximální průměr podporovaný věží"
  1526. msgctxt "meshfix_maximum_travel_resolution label"
  1527. msgid "Maximum Travel Resolution"
  1528. msgstr "Maximální rozlišení pohybu"
  1529. msgctxt "machine_max_acceleration_x description"
  1530. msgid "Maximum acceleration for the motor of the X-direction"
  1531. msgstr "Maximální zrychlení pro motor ve směru X"
  1532. msgctxt "machine_max_acceleration_y description"
  1533. msgid "Maximum acceleration for the motor of the Y-direction."
  1534. msgstr "Maximální zrychlení pro motor ve směru Y."
  1535. msgctxt "machine_max_acceleration_z description"
  1536. msgid "Maximum acceleration for the motor of the Z-direction."
  1537. msgstr "Maximální zrychlení pro motor ve směru Z."
  1538. msgctxt "machine_max_acceleration_e description"
  1539. msgid "Maximum acceleration for the motor of the filament."
  1540. msgstr "Maximální zrychlení pro motor filamentu."
  1541. msgctxt "bridge_sparse_infill_max_density description"
  1542. 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."
  1543. msgstr "Maximální hustota výplně považovaná za řídkou. Kůže nad řídkou výplní je považována za nepodporovanou, a proto ji lze považovat za můstkovou kůži."
  1544. msgctxt "support_tower_maximum_supported_diameter description"
  1545. msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower."
  1546. msgstr "Maximální průměr ve směru X / Y malé plochy, která má být podepřena specializovanou podpůrnou věží."
  1547. msgctxt "max_extrusion_before_wipe description"
  1548. 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."
  1549. msgstr "Maximální materiál, který může být vytlačen před zahájením dalšího stírání trysky. Pokud je tato hodnota menší než objem materiálu potřebného ve vrstvě, nemá nastavení v této vrstvě žádný účinek, tj. Je omezeno na jedno čištění na vrstvu."
  1550. msgctxt "multiple_mesh_overlap label"
  1551. msgid "Merged Meshes Overlap"
  1552. msgstr "Sloučené sítě se překrývají"
  1553. msgctxt "meshfix label"
  1554. msgid "Mesh Fixes"
  1555. msgstr "Opravy sítí"
  1556. msgctxt "mesh_position_x label"
  1557. msgid "Mesh Position X"
  1558. msgstr "Pozice sítě X"
  1559. msgctxt "mesh_position_y label"
  1560. msgid "Mesh Position Y"
  1561. msgstr "Pozice sítě Y"
  1562. msgctxt "mesh_position_z label"
  1563. msgid "Mesh Position Z"
  1564. msgstr "Pozice sítě Z"
  1565. msgctxt "infill_mesh_order label"
  1566. msgid "Mesh Processing Rank"
  1567. msgstr "Pořadí zpracování sítě"
  1568. msgctxt "mesh_rotation_matrix label"
  1569. msgid "Mesh Rotation Matrix"
  1570. msgstr "Matice rotace sítě"
  1571. msgctxt "slicing_tolerance option middle"
  1572. msgid "Middle"
  1573. msgstr "Střední"
  1574. msgctxt "mold_width label"
  1575. msgid "Minimal Mold Width"
  1576. msgstr "Minimální šířka formy"
  1577. msgctxt "machine_min_cool_heat_time_window label"
  1578. msgid "Minimal Time Standby Temperature"
  1579. msgstr "Minimální doba pohotovostního režimu"
  1580. msgctxt "bridge_wall_min_length label"
  1581. msgid "Minimum Bridge Wall Length"
  1582. msgstr "Minimální délka stěny mostu"
  1583. msgctxt "min_even_wall_line_width label"
  1584. msgid "Minimum Even Wall Line Width"
  1585. msgstr "Minimální šířka párové čáry zdi"
  1586. msgctxt "retraction_extrusion_window label"
  1587. msgid "Minimum Extrusion Distance Window"
  1588. msgstr "Minimální vzdálenost extruze"
  1589. msgctxt "min_feature_size label"
  1590. msgid "Minimum Feature Size"
  1591. msgstr "Minimální velikost částí"
  1592. msgctxt "machine_minimum_feedrate label"
  1593. msgid "Minimum Feedrate"
  1594. msgstr "Minimální feedrate"
  1595. msgctxt "support_tree_min_height_to_model label"
  1596. msgid "Minimum Height To Model"
  1597. msgstr "Minimální výška k modelu"
  1598. msgctxt "min_infill_area label"
  1599. msgid "Minimum Infill Area"
  1600. msgstr "Minimální plocha výplně"
  1601. msgctxt "cool_min_layer_time label"
  1602. msgid "Minimum Layer Time"
  1603. msgstr "Minimální doba vrstvy"
  1604. msgctxt "min_odd_wall_line_width label"
  1605. msgid "Minimum Odd Wall Line Width"
  1606. msgstr "Minimální šířka nepárové čáry zdi"
  1607. msgctxt "minimum_polygon_circumference label"
  1608. msgid "Minimum Polygon Circumference"
  1609. msgstr "Minimální polygonální obvod"
  1610. msgctxt "min_skin_width_for_expansion label"
  1611. msgid "Minimum Skin Width for Expansion"
  1612. msgstr "Minimální úhel pro rozšíření povrchu"
  1613. msgctxt "cool_min_speed label"
  1614. msgid "Minimum Speed"
  1615. msgstr "Minimální rychlost"
  1616. msgctxt "minimum_support_area label"
  1617. msgid "Minimum Support Area"
  1618. msgstr "Minimální oblast pro podporu"
  1619. msgctxt "minimum_bottom_area label"
  1620. msgid "Minimum Support Floor Area"
  1621. msgstr "Minimální oblast pro podporu podlahy"
  1622. msgctxt "minimum_interface_area label"
  1623. msgid "Minimum Support Interface Area"
  1624. msgstr "Minimální plocha pro tisk rozhraní podpory"
  1625. msgctxt "minimum_roof_area label"
  1626. msgid "Minimum Support Roof Area"
  1627. msgstr "Minimální oblast pro podporu střechy"
  1628. msgctxt "support_xy_distance_overhang label"
  1629. msgid "Minimum Support X/Y Distance"
  1630. msgstr "Minimální vzdálenost podpor X/Y"
  1631. msgctxt "min_bead_width label"
  1632. msgid "Minimum Thin Wall Line Width"
  1633. msgstr "Minimální šířka tenkých stěn"
  1634. msgctxt "coasting_min_volume label"
  1635. msgid "Minimum Volume Before Coasting"
  1636. msgstr "Minimální objem před coastingem"
  1637. msgctxt "min_wall_line_width label"
  1638. msgid "Minimum Wall Line Width"
  1639. msgstr "Minimální šířka čáry zdi"
  1640. msgctxt "minimum_interface_area description"
  1641. msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support."
  1642. msgstr "Minimální velikost plochy pro polygony rozhraní podpory. Polygony, které mají plochu menší než tato hodnota, budou vytištěny jako normální podpora."
  1643. msgctxt "minimum_support_area description"
  1644. msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated."
  1645. msgstr "Minimální velikost plochy pro podpůrné polygony. Polygony, které mají plochu menší než tato hodnota, nebudou generovány."
  1646. msgctxt "minimum_bottom_area description"
  1647. 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."
  1648. msgstr "Minimální velikost plochy podlah podpěry. Polygony, které mají plochu menší než tato hodnota, budou vytištěny jako normální podpora."
  1649. msgctxt "minimum_roof_area description"
  1650. 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."
  1651. msgstr "Minimální velikost plochy pro střechy podpěry. Polygony, které mají plochu menší než tato hodnota, budou vytištěny jako normální podpora."
  1652. msgctxt "min_feature_size description"
  1653. 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."
  1654. msgstr "Minimální tloušťka tenkých částí. Části modelu, které jsou tenčí než tato hodnota nebudou tištěny, zatímco části širší než tato hodnota budou rozšířeny na Minimální šířku čáry zdi."
  1655. msgctxt "support_conical_min_width description"
  1656. msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures."
  1657. msgstr "Minimální šířka, na kterou se zmenší základna kuželové nosné plochy. Malé šířky mohou vést k nestabilním podpůrným strukturám."
  1658. msgctxt "mold_enabled label"
  1659. msgid "Mold"
  1660. msgstr "Forma"
  1661. msgctxt "mold_angle label"
  1662. msgid "Mold Angle"
  1663. msgstr "Úhel formy"
  1664. msgctxt "mold_roof_height label"
  1665. msgid "Mold Roof Height"
  1666. msgstr "Výška střechy formy"
  1667. msgctxt "ironing_monotonic label"
  1668. msgid "Monotonic Ironing Order"
  1669. msgstr "Monotónní pořadí žehlení"
  1670. msgctxt "roofing_monotonic label"
  1671. msgid "Monotonic Top Surface Order"
  1672. msgstr "Monotónní pořadí horního povrchu"
  1673. msgctxt "skin_monotonic label"
  1674. msgid "Monotonic Top/Bottom Order"
  1675. msgstr "Monotónní pořadí horních / dolních povrchů"
  1676. msgctxt "skirt_line_count description"
  1677. msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt."
  1678. msgstr "Více linek okraje pomáhá vytlačit vaše vytlačování lépe pro malé modely. Nastavení na 0 zakáže okraj."
  1679. msgctxt "initial_layer_line_width_factor description"
  1680. msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion."
  1681. msgstr "Násobitel šířky čáry v první vrstvě. Jejich zvýšení by mohlo zlepšit přilnavost k podložce."
  1682. msgctxt "material_no_load_move_factor label"
  1683. msgid "No Load Move Factor"
  1684. msgstr "Žádný faktor přesunu zatížení"
  1685. msgctxt "skin_no_small_gaps_heuristic label"
  1686. msgid "No Skin in Z Gaps"
  1687. msgstr "Žádný povrch v Z mezerách"
  1688. msgctxt "blackmagic description"
  1689. msgid "Non-traditional ways to print your models."
  1690. msgstr "Netradiční způsoby, jak tisknout vaše modely."
  1691. msgctxt "adhesion_type option none"
  1692. msgid "None"
  1693. msgstr "Žádný"
  1694. msgctxt "z_seam_corner option z_seam_corner_none"
  1695. msgid "None"
  1696. msgstr "Žádný"
  1697. msgctxt "magic_mesh_surface_mode option normal"
  1698. msgid "Normal"
  1699. msgstr "Normální"
  1700. msgctxt "support_structure option normal"
  1701. msgid "Normal"
  1702. msgstr "Normální"
  1703. msgctxt "meshfix_keep_open_polygons description"
  1704. 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."
  1705. msgstr "Normálně se Cura pokouší spojit malé otvory do sítě a odstranit části vrstvy s velkými otvory. Povolením této možnosti zůstanou zachovány ty části, které nelze sešívat. Tato možnost by měla být použita jako poslední možnost, pokud všechno ostatní nedokáže vytvořit správný g-kód."
  1706. msgctxt "retraction_combing option noskin"
  1707. msgid "Not in Skin"
  1708. msgstr "Ne v povrchu"
  1709. msgctxt "retraction_combing option no_outer_surfaces"
  1710. msgid "Not on Outer Surface"
  1711. msgstr "Ne na vnějším povrchu"
  1712. msgctxt "machine_nozzle_expansion_angle label"
  1713. msgid "Nozzle Angle"
  1714. msgstr "Úhel trysky"
  1715. msgctxt "machine_nozzle_size label"
  1716. msgid "Nozzle Diameter"
  1717. msgstr "Průměr trysky"
  1718. msgctxt "nozzle_disallowed_areas label"
  1719. msgid "Nozzle Disallowed Areas"
  1720. msgstr "Zakázané oblasti pro trysku"
  1721. msgctxt "machine_nozzle_id label"
  1722. msgid "Nozzle ID"
  1723. msgstr "ID trysky"
  1724. msgctxt "machine_nozzle_head_distance label"
  1725. msgid "Nozzle Length"
  1726. msgstr "Délka trysky"
  1727. msgctxt "switch_extruder_extra_prime_amount label"
  1728. msgid "Nozzle Switch Extra Prime Amount"
  1729. msgstr "Množství materiálu navíc pro změnu trysky"
  1730. msgctxt "switch_extruder_prime_speed label"
  1731. msgid "Nozzle Switch Prime Speed"
  1732. msgstr "Rychlost přepínání trysky"
  1733. msgctxt "switch_extruder_retraction_speed label"
  1734. msgid "Nozzle Switch Retract Speed"
  1735. msgstr "Rychlost retrakce při změně trysky"
  1736. msgctxt "switch_extruder_retraction_amount label"
  1737. msgid "Nozzle Switch Retraction Distance"
  1738. msgstr "Retrakční vzdálenost přepnutí trysek"
  1739. msgctxt "switch_extruder_retraction_speeds label"
  1740. msgid "Nozzle Switch Retraction Speed"
  1741. msgstr "Retrakční rychlost přepnutí trysek"
  1742. msgctxt "machine_extruder_count label"
  1743. msgid "Number of Extruders"
  1744. msgstr "Počet extrůderů"
  1745. msgctxt "extruders_enabled_count label"
  1746. msgid "Number of Extruders That Are Enabled"
  1747. msgstr "Počet povolených extruderů"
  1748. msgctxt "speed_slowdown_layers label"
  1749. msgid "Number of Slower Layers"
  1750. msgstr "Počet pomalých vrstev"
  1751. msgctxt "extruders_enabled_count description"
  1752. msgid "Number of extruder trains that are enabled; automatically set in software"
  1753. msgstr "Počet extruderových strojů, které jsou povoleny; Automaticky nastaveno v softwaru"
  1754. msgctxt "machine_extruder_count description"
  1755. msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle."
  1756. msgstr "Počet extruderových strojů. Vytlačovací souprava je kombinací podavače, bowdenu a trysky."
  1757. msgctxt "wipe_repeat_count description"
  1758. msgid "Number of times to move the nozzle across the brush."
  1759. msgstr "Počet posunů trysky přes kartáč."
  1760. msgctxt "gradual_infill_steps description"
  1761. 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."
  1762. msgstr "Kolikrát se hustota výplně sníží na polovinu, když se dostane dále pod horní povrchy. Oblasti, které jsou blíže k vrchním povrchům, mají vyšší hustotu až do hustoty výplně."
  1763. msgctxt "gradual_support_infill_steps description"
  1764. 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."
  1765. msgstr "Počet opakování, aby se hustota výplně podpory snížila na polovinu, když se dostaneme dále pod horní povrchy. Oblasti, které jsou blíže k vrchním povrchům, mají vyšší hustotu až do podpůrné hustoty výplně."
  1766. msgctxt "infill_pattern option tetrahedral"
  1767. msgid "Octet"
  1768. msgstr "Oktet"
  1769. msgctxt "retraction_combing option off"
  1770. msgid "Off"
  1771. msgstr "Vyp"
  1772. msgctxt "mesh_position_x description"
  1773. msgid "Offset applied to the object in the x direction."
  1774. msgstr "Offset aplikovaný na objekt ve směru x."
  1775. msgctxt "mesh_position_y description"
  1776. msgid "Offset applied to the object in the y direction."
  1777. msgstr "Offset aplikovaný na objekt ve směru y."
  1778. msgctxt "mesh_position_z description"
  1779. msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'."
  1780. msgstr "Offset aplikovaný na objekt ve směru z."
  1781. msgctxt "machine_use_extruder_offset_to_offset_coords label"
  1782. msgid "Offset with Extruder"
  1783. msgstr "Offset s extrudérem"
  1784. msgctxt "support_tree_rest_preference option buildplate"
  1785. msgid "On buildplate when possible"
  1786. msgstr "Pokud možno na podložce"
  1787. msgctxt "support_tree_rest_preference option graceful"
  1788. msgid "On model if required"
  1789. msgstr "Klidně i na modelu"
  1790. msgctxt "print_sequence option one_at_a_time"
  1791. msgid "One at a Time"
  1792. msgstr "Pouze jedna"
  1793. msgctxt "retraction_hop_only_when_collides description"
  1794. msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling."
  1795. msgstr "Z-hop provádějte pouze při pohybu po tištěných částech, kterým nelze zabránit vodorovným pohybem pomocí Vyvarujte se potištěných součástí při cestování."
  1796. msgctxt "ironing_only_highest_layer description"
  1797. 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."
  1798. msgstr "Žehlení provádějte pouze na poslední vrstvě sítě. To šetří čas, pokud spodní vrstvy nepotřebují hladký povrch."
  1799. msgctxt "brim_outside_only description"
  1800. 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."
  1801. msgstr "Límec tiskněte pouze na vnější stranu modelu. Tím se snižuje množství límce, který je třeba následně odstranit, zatímco to tolik nesnižuje přilnavost k podložce."
  1802. msgctxt "ooze_shield_angle label"
  1803. msgid "Ooze Shield Angle"
  1804. msgstr "Úhel Ooze štítu"
  1805. msgctxt "ooze_shield_dist label"
  1806. msgid "Ooze Shield Distance"
  1807. msgstr "Vzdálenost Ooze štítu"
  1808. msgctxt "support_tree_branch_reach_limit label"
  1809. msgid "Optimal Branch Range"
  1810. msgstr "Optimální dosah větví"
  1811. msgctxt "optimize_wall_printing_order label"
  1812. msgid "Optimize Wall Printing Order"
  1813. msgstr "Optimalizace pořadí tisku stěn"
  1814. msgctxt "optimize_wall_printing_order description"
  1815. 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."
  1816. msgstr "Optimalizujte pořadí, ve kterém se stěny tisknou, aby se snížil počet retrakcí a ujetá vzdálenost. Většina částí bude mít z tohoto povolení prospěch, ale některé mohou ve skutečnosti trvat déle, proto porovnejte odhady doby tisku s optimalizací a bez ní. První vrstva není optimalizována při výběru límce jako adhezního typu desky."
  1817. msgctxt "machine_nozzle_tip_outer_diameter label"
  1818. msgid "Outer Nozzle Diameter"
  1819. msgstr "Vnější průměr trysky"
  1820. msgctxt "acceleration_wall_0 label"
  1821. msgid "Outer Wall Acceleration"
  1822. msgstr "Akcelerace tisku vnější zdi"
  1823. msgctxt "wall_0_extruder_nr label"
  1824. msgid "Outer Wall Extruder"
  1825. msgstr "Extruder vnější zdi"
  1826. msgctxt "wall_0_material_flow label"
  1827. msgid "Outer Wall Flow"
  1828. msgstr "Průtok u vnější zdi"
  1829. msgctxt "wall_0_inset label"
  1830. msgid "Outer Wall Inset"
  1831. msgstr "Vnější stěna"
  1832. msgctxt "jerk_wall_0 label"
  1833. msgid "Outer Wall Jerk"
  1834. msgstr "Okamžitá rychlost při tisku vnější zdi"
  1835. msgctxt "wall_line_width_0 label"
  1836. msgid "Outer Wall Line Width"
  1837. msgstr "Šířka čáry vnější stěny"
  1838. msgctxt "speed_wall_0 label"
  1839. msgid "Outer Wall Speed"
  1840. msgstr "Rychlost tisku vnější zdi"
  1841. msgctxt "wall_0_wipe_dist label"
  1842. msgid "Outer Wall Wipe Distance"
  1843. msgstr "Vzdálenost stírání vnější stěny"
  1844. msgctxt "inset_direction option outside_in"
  1845. msgid "Outside To Inside"
  1846. msgstr "Zvenku dovnitř"
  1847. msgctxt "wall_overhang_angle label"
  1848. msgid "Overhanging Wall Angle"
  1849. msgstr "Převislý úhel stěny"
  1850. msgctxt "wall_overhang_speed_factor label"
  1851. msgid "Overhanging Wall Speed"
  1852. msgstr "Rychlost tisku převislé stěny"
  1853. msgctxt "wall_overhang_speed_factor description"
  1854. msgid "Overhanging walls will be printed at this percentage of their normal print speed."
  1855. msgstr "Převislé stěny budou vytištěny v procentech jejich normální rychlosti tisku."
  1856. msgctxt "wipe_pause description"
  1857. msgid "Pause after the unretract."
  1858. msgstr "Pozastavit po vytažení."
  1859. msgctxt "bridge_fan_speed description"
  1860. msgid "Percentage fan speed to use when printing bridge walls and skin."
  1861. msgstr "Procentuální rychlost ventilátoru, která se použije při tisku mostních stěn a povrchu."
  1862. msgctxt "bridge_fan_speed_2 description"
  1863. msgid "Percentage fan speed to use when printing the second bridge skin layer."
  1864. msgstr "Procentuální rychlost ventilátoru, která se použije při tisku druhé vrstvy povrchu mostu."
  1865. msgctxt "support_supported_skin_fan_speed description"
  1866. 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."
  1867. msgstr "Procentuální rychlost ventilátoru, která se použije při tisku oblastí kůže bezprostředně nad podporou. Použití vysoké rychlosti ventilátoru může usnadnit odebrání podpory."
  1868. msgctxt "bridge_fan_speed_3 description"
  1869. msgid "Percentage fan speed to use when printing the third bridge skin layer."
  1870. msgstr "Procentuální rychlost ventilátoru, která se použije při tisku třetí vrstvy povrchu mostu."
  1871. msgctxt "minimum_polygon_circumference description"
  1872. 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."
  1873. msgstr "Polygony v krájených vrstvách, jejichž obvod je menší než toto množství, budou odfiltrovány. Nižší hodnoty vedou k vyššímu rozlišení ok za cenu krájení. Je určen především pro tiskárny SLA s vysokým rozlišením a velmi malé 3D modely se spoustou detailů."
  1874. msgctxt "support_tree_angle_slow label"
  1875. msgid "Preferred Branch Angle"
  1876. msgstr "Preferovaný úhel větví"
  1877. msgctxt "wall_transition_filter_deviation description"
  1878. 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."
  1879. msgstr "Zabraňuje přecházení tam a zpět mezi o jednu více a o jednu méně čarami zdí. Tato rezerva rozšíří rozsah možných šířek čar na [Minimální šířka čáry zdi - Rezerva, 2 * Minimální šířka čáry zdi + Rezerva]. Zvýšení této rezervy omezí počet přechodů mezi různými počty čar zdí, což sníží počet rozjezdů/zastavení a také čas cestování. Velké výkyvy v šířce čar však mohou vést k problémům s nedostatečnou nebo přílišnou extruzí."
  1880. msgctxt "acceleration_prime_tower label"
  1881. msgid "Prime Tower Acceleration"
  1882. msgstr "Akcelerace tisku hlavní věže"
  1883. msgctxt "prime_tower_brim_enable label"
  1884. msgid "Prime Tower Brim"
  1885. msgstr "Límec hlavní věže"
  1886. msgctxt "prime_tower_flow label"
  1887. msgid "Prime Tower Flow"
  1888. msgstr "Průtok u hlavní věžě"
  1889. msgctxt "jerk_prime_tower label"
  1890. msgid "Prime Tower Jerk"
  1891. msgstr "Okamžitá rychlost při tisku hlavní věže"
  1892. msgctxt "prime_tower_line_width label"
  1893. msgid "Prime Tower Line Width"
  1894. msgstr "Šířka čáry primární věže"
  1895. msgctxt "prime_tower_min_volume label"
  1896. msgid "Prime Tower Minimum Volume"
  1897. msgstr "Minimální objem hlavní věže"
  1898. msgctxt "prime_tower_size label"
  1899. msgid "Prime Tower Size"
  1900. msgstr "Velikost hlavní věže"
  1901. msgctxt "speed_prime_tower label"
  1902. msgid "Prime Tower Speed"
  1903. msgstr "Rychlost tisku hlavní věže"
  1904. msgctxt "prime_tower_position_x label"
  1905. msgid "Prime Tower X Position"
  1906. msgstr "Pozice X hlavní věže"
  1907. msgctxt "prime_tower_position_y label"
  1908. msgid "Prime Tower Y Position"
  1909. msgstr "Pozice Y hlavní věže"
  1910. msgctxt "prime_tower_brim_enable description"
  1911. 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."
  1912. msgstr "Hlavní věže mohou potřebovat zvláštní přilnavost, kterou poskytuje límec, i když to model neumožňuje. V současnosti nelze použít s adhezním typem „Raft“."
  1913. msgctxt "acceleration_print label"
  1914. msgid "Print Acceleration"
  1915. msgstr "Akcelerace tisku"
  1916. msgctxt "jerk_print label"
  1917. msgid "Print Jerk"
  1918. msgstr "Trh při tisku"
  1919. msgctxt "print_sequence label"
  1920. msgid "Print Sequence"
  1921. msgstr "Tisková sekvence"
  1922. msgctxt "speed_print label"
  1923. msgid "Print Speed"
  1924. msgstr "Rychlost tisku"
  1925. msgctxt "fill_outline_gaps label"
  1926. msgid "Print Thin Walls"
  1927. msgstr "Tisk tenkých stěn"
  1928. msgctxt "prime_tower_enable description"
  1929. msgid "Print a tower next to the print which serves to prime the material after each nozzle switch."
  1930. msgstr "Vytiskněte věž vedle tisku, která slouží k naplnění materiálu po každém přepnutí trysky."
  1931. msgctxt "infill_support_enabled description"
  1932. 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."
  1933. msgstr "Výplňové struktury tiskněte pouze tam, kde by měly být podporovány vrcholy modelu. Pokud to povolíte, sníží se doba tisku a spotřeba materiálu, ale vede k nestejnoměrné pevnosti objektu."
  1934. msgctxt "ironing_monotonic description"
  1935. 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."
  1936. msgstr "Tisknout žehlící linky v takovém pořadí, aby se navazující linky překrývaly ve stejném směru. Tisk zabere trochu více času, ale hladké povrchy budou vypadat více jednolité."
  1937. msgctxt "mold_enabled description"
  1938. msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate."
  1939. msgstr "Vytiskněte modely jako formu, kterou lze odlít, abyste získali model, který se podobá modelům na podložce."
  1940. msgctxt "fill_outline_gaps description"
  1941. msgid "Print pieces of the model which are horizontally thinner than the nozzle size."
  1942. msgstr "Tiskněte kousky modelu, které jsou vodorovně tenčí než velikost trysek."
  1943. msgctxt "bridge_skin_speed_2 description"
  1944. msgid "Print speed to use when printing the second bridge skin layer."
  1945. msgstr "Rychlost tisku, která se použije při tisku druhé vrstvy povrchu mostu."
  1946. msgctxt "bridge_skin_speed_3 description"
  1947. msgid "Print speed to use when printing the third bridge skin layer."
  1948. msgstr "Rychlost tisku, která se použije při tisku třetí vrstvy povrchu mostu."
  1949. msgctxt "infill_before_walls description"
  1950. 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."
  1951. msgstr "Vytiskněte výplň před tiskem na stěny. První tisk stěn může vést k přesnějším stěnám, ale převisy se zhoršují. Tisk výplně nejprve vede k robustnějším stěnám, ale vzor výplně se někdy může objevit skrz povrch."
  1952. msgctxt "roofing_monotonic description"
  1953. 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."
  1954. msgstr "Tisknout linky horního povrchu v takovém pořadí, aby se navazující linky překrývaly ve stejném směru. Tisk zabere trochu více času, ale hladké povrchy budou vypadat více jednolité."
  1955. msgctxt "skin_monotonic description"
  1956. 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."
  1957. msgstr "Tisknout horní / dolní linky v takovém pořadí, aby se navazující linky překrývaly ve stejném směru. Tisk zabere trochu více času, ale hladké povrchy budou vypadat více jednolité."
  1958. msgctxt "material_print_temperature label"
  1959. msgid "Printing Temperature"
  1960. msgstr "Teplota při tisku"
  1961. msgctxt "material_print_temperature_layer_0 label"
  1962. msgid "Printing Temperature Initial Layer"
  1963. msgstr "Teplota při tisku první vrstvy"
  1964. msgctxt "skirt_height description"
  1965. msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt."
  1966. msgstr "Tisk vnitřní čáry okraje pomocí více vrstev pomáhá snadnějšímu odstraňování okraje."
  1967. msgctxt "alternate_extra_perimeter description"
  1968. msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
  1969. msgstr "Vytiskne další stěnu na každou další vrstvu. Tímto způsobem se výplň zachytí mezi těmito stěnami, což má za následek silnější výtisky."
  1970. msgctxt "resolution label"
  1971. msgid "Quality"
  1972. msgstr "Kvalita"
  1973. msgctxt "infill_pattern option quarter_cubic"
  1974. msgid "Quarter Cubic"
  1975. msgstr "Čtvrtinově krychlový"
  1976. msgctxt "adhesion_type option raft"
  1977. msgid "Raft"
  1978. msgstr "Raft"
  1979. msgctxt "raft_airgap label"
  1980. msgid "Raft Air Gap"
  1981. msgstr "Vzduchový mezera v raftu"
  1982. msgctxt "raft_base_extruder_nr label"
  1983. msgid "Raft Base Extruder"
  1984. msgstr "Extruder základny raftu"
  1985. msgctxt "raft_base_fan_speed label"
  1986. msgid "Raft Base Fan Speed"
  1987. msgstr "Rychlost ventilátoru při tisku základních vrstev raftu"
  1988. msgctxt "raft_base_line_spacing label"
  1989. msgid "Raft Base Line Spacing"
  1990. msgstr "Rozteč základny voru"
  1991. msgctxt "raft_base_line_width label"
  1992. msgid "Raft Base Line Width"
  1993. msgstr "Šířka základní linky raftu"
  1994. msgctxt "raft_base_acceleration label"
  1995. msgid "Raft Base Print Acceleration"
  1996. msgstr "Zrychlení tisku spodku raftu"
  1997. msgctxt "raft_base_jerk label"
  1998. msgid "Raft Base Print Jerk"
  1999. msgstr "Trhnutí při tisku dolní vrstvy raftu"
  2000. msgctxt "raft_base_speed label"
  2001. msgid "Raft Base Print Speed"
  2002. msgstr "Rychlost tisku spodku raftu"
  2003. msgctxt "raft_base_thickness label"
  2004. msgid "Raft Base Thickness"
  2005. msgstr "Tloušťka základny raftu"
  2006. msgctxt "raft_base_wall_count label"
  2007. msgid "Raft Base Wall Count"
  2008. msgstr "Počet zdí raftu"
  2009. msgctxt "raft_margin label"
  2010. msgid "Raft Extra Margin"
  2011. msgstr "Místo navíc kolem raftu"
  2012. msgctxt "raft_fan_speed label"
  2013. msgid "Raft Fan Speed"
  2014. msgstr "Rychlost ventilátoru při tisku raftu"
  2015. msgctxt "raft_interface_extruder_nr label"
  2016. msgid "Raft Middle Extruder"
  2017. msgstr "Extruder vnitřku raftu"
  2018. msgctxt "raft_interface_fan_speed label"
  2019. msgid "Raft Middle Fan Speed"
  2020. msgstr "Rychlost ventilátoru při tisku středních vrstev raftu"
  2021. msgctxt "raft_interface_layers label"
  2022. msgid "Raft Middle Layers"
  2023. msgstr "Počet středních vrstev raftu"
  2024. msgctxt "raft_interface_line_width label"
  2025. msgid "Raft Middle Line Width"
  2026. msgstr "Šířka prostřední linky raftu"
  2027. msgctxt "raft_interface_acceleration label"
  2028. msgid "Raft Middle Print Acceleration"
  2029. msgstr "Zrychlení tisku středu raftu"
  2030. msgctxt "raft_interface_jerk label"
  2031. msgid "Raft Middle Print Jerk"
  2032. msgstr "Trhnutí při tisku střední vrstvy raftu"
  2033. msgctxt "raft_interface_speed label"
  2034. msgid "Raft Middle Print Speed"
  2035. msgstr "Rychlost tisku prostředku raftu"
  2036. msgctxt "raft_interface_line_spacing label"
  2037. msgid "Raft Middle Spacing"
  2038. msgstr "Mezera ve středu raftu"
  2039. msgctxt "raft_interface_thickness label"
  2040. msgid "Raft Middle Thickness"
  2041. msgstr "Tloušťka prostředku raftu"
  2042. msgctxt "raft_acceleration label"
  2043. msgid "Raft Print Acceleration"
  2044. msgstr "Zrychlení tisku raftu"
  2045. msgctxt "raft_jerk label"
  2046. msgid "Raft Print Jerk"
  2047. msgstr "Trhnutí při tisku raftu"
  2048. msgctxt "raft_speed label"
  2049. msgid "Raft Print Speed"
  2050. msgstr "Rychlost tisku raftu"
  2051. msgctxt "raft_smoothing label"
  2052. msgid "Raft Smoothing"
  2053. msgstr "Vyhlazování raftu"
  2054. msgctxt "raft_surface_extruder_nr label"
  2055. msgid "Raft Top Extruder"
  2056. msgstr "Extruder povrchu raftu"
  2057. msgctxt "raft_surface_fan_speed label"
  2058. msgid "Raft Top Fan Speed"
  2059. msgstr "Rychlost ventilátoru při tisku horních vrstev raftu"
  2060. msgctxt "raft_surface_thickness label"
  2061. msgid "Raft Top Layer Thickness"
  2062. msgstr "Tloušťka horní vrstvy raftu"
  2063. msgctxt "raft_surface_layers label"
  2064. msgid "Raft Top Layers"
  2065. msgstr "Vrchní vrstvy raftu"
  2066. msgctxt "raft_surface_line_width label"
  2067. msgid "Raft Top Line Width"
  2068. msgstr "Šířka horní linky raftu"
  2069. msgctxt "raft_surface_acceleration label"
  2070. msgid "Raft Top Print Acceleration"
  2071. msgstr "Zrychlení tisku vrchu raftu"
  2072. msgctxt "raft_surface_jerk label"
  2073. msgid "Raft Top Print Jerk"
  2074. msgstr "Trhnutí při tisku vrchní vrstvy raftu"
  2075. msgctxt "raft_surface_speed label"
  2076. msgid "Raft Top Print Speed"
  2077. msgstr "Rychlost tisku vršku raftu"
  2078. msgctxt "raft_surface_line_spacing label"
  2079. msgid "Raft Top Spacing"
  2080. msgstr "Mezera ve horních vrstvách raftu"
  2081. msgctxt "z_seam_type option random"
  2082. msgid "Random"
  2083. msgstr "Náhodné"
  2084. msgctxt "infill_randomize_start_location label"
  2085. msgid "Randomize Infill Start"
  2086. msgstr "Náhodné spuštění výplně"
  2087. msgctxt "infill_randomize_start_location description"
  2088. 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."
  2089. msgstr "Náhodně vyberte, který výplňový řádek je vytištěn jako první. To zabraňuje tomu, aby se jeden segment stal nejsilnějším, ale činí to za cenu dalšího pohybu."
  2090. msgctxt "magic_fuzzy_skin_enabled description"
  2091. msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look."
  2092. msgstr "Při tisku na vnější stěnu náhodně chvěte tak, že povrch má drsný a rozmazaný vzhled."
  2093. msgctxt "machine_shape option rectangular"
  2094. msgid "Rectangular"
  2095. msgstr "Obdélníková"
  2096. msgctxt "cool_fan_speed_min label"
  2097. msgid "Regular Fan Speed"
  2098. msgstr "Normální rychlost ventilátoru"
  2099. msgctxt "cool_fan_full_at_height label"
  2100. msgid "Regular Fan Speed at Height"
  2101. msgstr "Pravidelná rychlost ventilátoru ve výšce"
  2102. msgctxt "cool_fan_full_layer label"
  2103. msgid "Regular Fan Speed at Layer"
  2104. msgstr "Normální rychlost ventilátoru ve vrstvě"
  2105. msgctxt "cool_min_layer_time_fan_speed_max label"
  2106. msgid "Regular/Maximum Fan Speed Threshold"
  2107. msgstr "Pravidelná / maximální prahová rychlost ventilátoru"
  2108. msgctxt "relative_extrusion label"
  2109. msgid "Relative Extrusion"
  2110. msgstr "Relativní vytlačování"
  2111. msgctxt "meshfix_union_all_remove_holes label"
  2112. msgid "Remove All Holes"
  2113. msgstr "Odstranit všechny díry"
  2114. msgctxt "remove_empty_first_layers label"
  2115. msgid "Remove Empty First Layers"
  2116. msgstr "Odstraňte prázdné první vrstvy"
  2117. msgctxt "carve_multiple_volumes label"
  2118. msgid "Remove Mesh Intersection"
  2119. msgstr "Odstanit průnik sítí"
  2120. msgctxt "raft_remove_inside_corners label"
  2121. msgid "Remove Raft Inside Corners"
  2122. msgstr "Odstranit vnitřní rohy raftu"
  2123. msgctxt "carve_multiple_volumes description"
  2124. msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other."
  2125. msgstr "Odstraňte oblasti, kde se více sítí vzájemně překrývají. To lze použít, pokud se sloučené duální hmotné objekty vzájemně překrývají."
  2126. msgctxt "remove_empty_first_layers description"
  2127. 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."
  2128. msgstr "Odstraňte prázdné vrstvy pod první potištěnou vrstvou, pokud jsou přítomny. Deaktivace tohoto nastavení může způsobit prázdné první vrstvy, pokud je nastavení Tolerance řezu nastaveno na Exkluzivní nebo Střední."
  2129. msgctxt "raft_remove_inside_corners description"
  2130. msgid "Remove inside corners from the raft, causing the raft to become convex."
  2131. msgstr "Odstranit vnitřní rohy raftu a změnit tak raft v konvexní (vypouklý) tvar."
  2132. msgctxt "meshfix_union_all_remove_holes description"
  2133. 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."
  2134. msgstr "Odstraňte otvory v každé vrstvě a zachujte pouze vnější tvar. To bude ignorovat jakoukoli neviditelnou vnitřní geometrii. Ignoruje však také díry vrstvy, které lze prohlížet shora nebo zdola."
  2135. msgctxt "machine_gcode_flavor option RepRap (RepRap)"
  2136. msgid "RepRap"
  2137. msgstr "RepRap"
  2138. msgctxt "machine_gcode_flavor option Repetier"
  2139. msgid "Repetier"
  2140. msgstr "Repetier"
  2141. msgctxt "skin_outline_count description"
  2142. 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."
  2143. msgstr "Nahrazuje nejvzdálenější část horního / spodního vzoru řadou soustředných čar. Použití jedné nebo dvou čar zlepšuje střechy, které začínají na výplňovém materiálu."
  2144. msgctxt "support_tree_rest_preference label"
  2145. msgid "Rest Preference"
  2146. msgstr "Preferované umístění podpor"
  2147. msgctxt "travel_retract_before_outer_wall label"
  2148. msgid "Retract Before Outer Wall"
  2149. msgstr "Zasuňte před vnější stěnu"
  2150. msgctxt "retract_at_layer_change label"
  2151. msgid "Retract at Layer Change"
  2152. msgstr "Zasunout při změně vrstvy"
  2153. msgctxt "retraction_enable description"
  2154. msgid "Retract the filament when the nozzle is moving over a non-printed area."
  2155. msgstr "Zasunout vlákno, když se tryska pohybuje po netisknutelné oblasti."
  2156. msgctxt "wipe_retraction_enable description"
  2157. msgid "Retract the filament when the nozzle is moving over a non-printed area."
  2158. msgstr "Zasunout filament, když se tryska pohybuje po netisknuté oblasti."
  2159. msgctxt "retract_at_layer_change description"
  2160. msgid "Retract the filament when the nozzle is moving to the next layer."
  2161. msgstr "Zasuňte vlákno, když se tryska pohybuje do další vrstvy."
  2162. msgctxt "retraction_amount label"
  2163. msgid "Retraction Distance"
  2164. msgstr "Délka zatažení"
  2165. msgctxt "retraction_extra_prime_amount label"
  2166. msgid "Retraction Extra Prime Amount"
  2167. msgstr "Množství zatažení navíc"
  2168. msgctxt "retraction_min_travel label"
  2169. msgid "Retraction Minimum Travel"
  2170. msgstr "Minimální pojezd"
  2171. msgctxt "retraction_prime_speed label"
  2172. msgid "Retraction Prime Speed"
  2173. msgstr "Primární rychlost zatažení"
  2174. msgctxt "retraction_retract_speed label"
  2175. msgid "Retraction Retract Speed"
  2176. msgstr "Rychlost zatažení vlákna"
  2177. msgctxt "retraction_speed label"
  2178. msgid "Retraction Speed"
  2179. msgstr "Rychlost zatažení"
  2180. msgctxt "z_seam_position option right"
  2181. msgid "Right"
  2182. msgstr "Pravá"
  2183. msgctxt "machine_scale_fan_speed_zero_to_one label"
  2184. msgid "Scale Fan Speed To 0-1"
  2185. msgstr "Odstupňovat rychlost ventilátoru mezi 0–1"
  2186. msgctxt "machine_scale_fan_speed_zero_to_one description"
  2187. msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256."
  2188. msgstr "Změnit stupnici rychlosti ventilátoru na 0 až 1, namísto 0 až 256."
  2189. msgctxt "material_shrinkage_percentage label"
  2190. msgid "Scaling Factor Shrinkage Compensation"
  2191. msgstr "Faktor zvětšení pro kompenzaci smrštění"
  2192. msgctxt "support_meshes_present label"
  2193. msgid "Scene Has Support Meshes"
  2194. msgstr "Scéna Má Podpůrné Masky"
  2195. msgctxt "z_seam_corner label"
  2196. msgid "Seam Corner Preference"
  2197. msgstr "Rohová preference švu"
  2198. msgctxt "draft_shield_height_limitation description"
  2199. 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."
  2200. msgstr "Nastavte výšku štítu proti průvanu. Zvolte, zda chcete tisknout štít konceptu v plné výšce modelu nebo v omezené výšce."
  2201. msgctxt "dual description"
  2202. msgid "Settings used for printing with multiple extruders."
  2203. msgstr "Nastavení použitá pro tisk pomocí více extruderů."
  2204. msgctxt "command_line_settings description"
  2205. msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend."
  2206. msgstr "Nastavení, která se používají, pouze pokud není CuraEngine vyvolán z rozhraní Cura."
  2207. msgctxt "machine_extruders_shared_nozzle_initial_retraction label"
  2208. msgid "Shared Nozzle Initial Retraction"
  2209. msgstr "Počáteční retrakce sdílené trysky"
  2210. msgctxt "z_seam_type option sharpest_corner"
  2211. msgid "Sharpest Corner"
  2212. msgstr "Nejostřejší roh"
  2213. msgctxt "shell description"
  2214. msgid "Shell"
  2215. msgstr "Shell"
  2216. msgctxt "z_seam_type option shortest"
  2217. msgid "Shortest"
  2218. msgstr "Nejkratší"
  2219. msgctxt "machine_show_variants label"
  2220. msgid "Show Machine Variants"
  2221. msgstr "Zobrazit varianty zařízení"
  2222. msgctxt "skin_edge_support_layers label"
  2223. msgid "Skin Edge Support Layers"
  2224. msgstr "Vrstvy podpory hrany povrchu"
  2225. msgctxt "skin_edge_support_thickness label"
  2226. msgid "Skin Edge Support Thickness"
  2227. msgstr "Tloušťka podpory hrany povrchu"
  2228. msgctxt "expand_skins_expand_distance label"
  2229. msgid "Skin Expand Distance"
  2230. msgstr "Vzdálenost rozšíření povrchu"
  2231. msgctxt "skin_overlap_mm label"
  2232. msgid "Skin Overlap"
  2233. msgstr "Překrytí povrchu"
  2234. msgctxt "skin_overlap label"
  2235. msgid "Skin Overlap Percentage"
  2236. msgstr "Procentuální překrytí povrchu"
  2237. msgctxt "skin_preshrink label"
  2238. msgid "Skin Removal Width"
  2239. msgstr "Šířka odstranění povrchu"
  2240. msgctxt "min_skin_width_for_expansion description"
  2241. 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."
  2242. msgstr "Oblasti povrchu užší, než je tento, nejsou rozšířeny. Tím se zabrání rozšíření úzkých oblastí vzhledu, které jsou vytvořeny, když má povrch modelu sklon v blízkosti svislé."
  2243. msgctxt "support_zag_skip_count description"
  2244. msgid "Skip one in every N connection lines to make the support structure easier to break away."
  2245. msgstr "Přeskočte jeden v každém N spojovacím vedení, aby se usnadnilo odtržení podpůrné struktury."
  2246. msgctxt "support_skip_some_zags description"
  2247. 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."
  2248. msgstr "Přeskočte některá připojení podpůrné linky, aby se podpůrná struktura snadněji odtrhla. Toto nastavení je použitelné pro vzor výplně podpory Zig Zag."
  2249. msgctxt "adhesion_type option skirt"
  2250. msgid "Skirt"
  2251. msgstr "Okraj"
  2252. msgctxt "skirt_gap label"
  2253. msgid "Skirt Distance"
  2254. msgstr "Vzdálenost okraj"
  2255. msgctxt "skirt_height label"
  2256. msgid "Skirt Height"
  2257. msgstr "Výška okraje"
  2258. msgctxt "skirt_line_count label"
  2259. msgid "Skirt Line Count"
  2260. msgstr "Počet linek okraje"
  2261. msgctxt "acceleration_skirt_brim label"
  2262. msgid "Skirt/Brim Acceleration"
  2263. msgstr "Akcelerace tisku okraje/límce"
  2264. msgctxt "skirt_brim_extruder_nr label"
  2265. msgid "Skirt/Brim Extruder"
  2266. msgstr "Extruder okraje/límce"
  2267. msgctxt "skirt_brim_material_flow label"
  2268. msgid "Skirt/Brim Flow"
  2269. msgstr "Průtok u okraje/límce"
  2270. msgctxt "jerk_skirt_brim label"
  2271. msgid "Skirt/Brim Jerk"
  2272. msgstr "Okamžitá rychlost při tisku okraje/límce"
  2273. msgctxt "skirt_brim_line_width label"
  2274. msgid "Skirt/Brim Line Width"
  2275. msgstr "Šířka čáry okraje/límce"
  2276. msgctxt "skirt_brim_minimal_length label"
  2277. msgid "Skirt/Brim Minimum Length"
  2278. msgstr "Minimální délka okraje/límce"
  2279. msgctxt "skirt_brim_speed label"
  2280. msgid "Skirt/Brim Speed"
  2281. msgstr "Rychlost tisku okraje/límce"
  2282. msgctxt "slicing_tolerance label"
  2283. msgid "Slicing Tolerance"
  2284. msgstr "Tolerance slicování"
  2285. msgctxt "small_feature_speed_factor_0 label"
  2286. msgid "Small Feature Initial Layer Speed"
  2287. msgstr "Rychlost malých částí v počáteční vrstvě"
  2288. msgctxt "small_feature_max_length label"
  2289. msgid "Small Feature Max Length"
  2290. msgstr "Maximální délka malých částí"
  2291. msgctxt "small_feature_speed_factor label"
  2292. msgid "Small Feature Speed"
  2293. msgstr "Rychlost malých částí"
  2294. msgctxt "small_hole_max_size label"
  2295. msgid "Small Hole Max Size"
  2296. msgstr "Maximální velikost malé díry"
  2297. msgctxt "cool_min_temperature label"
  2298. msgid "Small Layer Printing Temperature"
  2299. msgstr "Teplota tisku malých vrstev"
  2300. msgctxt "small_skin_on_surface label"
  2301. msgid "Small Top/Bottom On Surface"
  2302. msgstr ""
  2303. msgctxt "small_skin_width label"
  2304. msgid "Small Top/Bottom Width"
  2305. msgstr "Šířka malého horního / dolního povrchu"
  2306. msgctxt "small_feature_speed_factor_0 description"
  2307. 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."
  2308. msgstr "Malé části v první vrstvě budou vytištěny při tomto procentuálním poměru jejich normální rychlosti tisku. Pomalejší tisk může pomoci s přilnavostí a přesností."
  2309. msgctxt "small_feature_speed_factor description"
  2310. msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
  2311. msgstr "Drobné části budou vytištěny v procentech jejich normální rychlosti tisku. Pomalejší tisk může pomoci s přilnavostí a přesností."
  2312. msgctxt "small_skin_width description"
  2313. msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')."
  2314. msgstr ""
  2315. msgctxt "brim_smart_ordering label"
  2316. msgid "Smart Brim"
  2317. msgstr "Chytrý límec"
  2318. msgctxt "z_seam_corner option z_seam_corner_weighted"
  2319. msgid "Smart Hiding"
  2320. msgstr "Inteligentní skrývání"
  2321. msgctxt "smooth_spiralized_contours label"
  2322. msgid "Smooth Spiralized Contours"
  2323. msgstr "Hladké spiralizované obrysy"
  2324. msgctxt "smooth_spiralized_contours description"
  2325. 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."
  2326. msgstr "Vyhlaďte spiralizované obrysy, aby se snížila viditelnost Z-spoje (Z-spoj by měl být sotva viditelný na výtisku, ale bude stále viditelný v pohledu vrstvy). Všimněte si, že vyhlazení bude mít tendenci rozmazávat jemné detaily povrchu."
  2327. msgctxt "retraction_extra_prime_amount description"
  2328. msgid "Some material can ooze away during a travel move, which can be compensated for here."
  2329. msgstr "Během pohybu může nějaký materiál uniknout pryč, což může být kompenzováno zde."
  2330. msgctxt "wipe_retraction_extra_prime_amount description"
  2331. msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here."
  2332. msgstr "Během pohybu stěrače může nějaký materiál vytéct pryč, což může být kompenzováno zde."
  2333. msgctxt "blackmagic label"
  2334. msgid "Special Modes"
  2335. msgstr "Speciální módy"
  2336. msgctxt "speed description"
  2337. msgid "Speed"
  2338. msgstr "Rychlost"
  2339. msgctxt "speed label"
  2340. msgid "Speed"
  2341. msgstr "Rychlost"
  2342. msgctxt "wipe_hop_speed description"
  2343. msgid "Speed to move the z-axis during the hop."
  2344. msgstr "Rychlost pohybu osy z během hopu."
  2345. msgctxt "magic_spiralize label"
  2346. msgid "Spiralize Outer Contour"
  2347. msgstr "Spiralizujte vnější konturu"
  2348. msgctxt "magic_spiralize description"
  2349. 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."
  2350. msgstr "Spiralizace vyhlazuje pohyb Z vnější hrany. Tím se vytvoří stálý nárůst Z v celém tisku. Tato funkce mění pevný model na jednostěnný tisk s plným dnem. Tato funkce by měla být povolena, pouze pokud každá vrstva obsahuje pouze jednu část."
  2351. msgctxt "material_standby_temperature label"
  2352. msgid "Standby Temperature"
  2353. msgstr "Teplota při čekání"
  2354. msgctxt "machine_start_gcode label"
  2355. msgid "Start G-code"
  2356. msgstr "Počáteční G kód"
  2357. msgctxt "z_seam_type description"
  2358. 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."
  2359. msgstr "Počáteční bod každé cesty ve vrstvě. Když cesty v po sobě jdoucích vrstvách začínají ve stejném bodě, může se na výtisku zobrazit svislý šev. Při jejich zarovnání poblíž uživatelem zadaného umístění je šev nejjednodušší odstranit. Při náhodném umístění budou nepřesnosti na začátku cest méně patrné. Při nejkratší cestě bude tisk rychlejší."
  2360. msgctxt "machine_steps_per_mm_e label"
  2361. msgid "Steps per Millimeter (E)"
  2362. msgstr "Kroků za milimetr (E)"
  2363. msgctxt "machine_steps_per_mm_x label"
  2364. msgid "Steps per Millimeter (X)"
  2365. msgstr "Kroků za milimetr (X)"
  2366. msgctxt "machine_steps_per_mm_y label"
  2367. msgid "Steps per Millimeter (Y)"
  2368. msgstr "Kroků za milimetr (Y)"
  2369. msgctxt "machine_steps_per_mm_z label"
  2370. msgid "Steps per Millimeter (Z)"
  2371. msgstr "Kroků za milimetr (Z)"
  2372. msgctxt "support description"
  2373. msgid "Support"
  2374. msgstr "Podpora"
  2375. msgctxt "support label"
  2376. msgid "Support"
  2377. msgstr "Podpora"
  2378. msgctxt "acceleration_support label"
  2379. msgid "Support Acceleration"
  2380. msgstr "Akcelerace tisku podpor"
  2381. msgctxt "support_bottom_distance label"
  2382. msgid "Support Bottom Distance"
  2383. msgstr "Vzdálenost spodní podpory"
  2384. msgctxt "support_bottom_wall_count label"
  2385. msgid "Support Bottom Wall Line Count"
  2386. msgstr "Počet stěn v podlaze podpor"
  2387. msgctxt "support_brim_line_count label"
  2388. msgid "Support Brim Line Count"
  2389. msgstr "Počet podpůrných čar límce"
  2390. msgctxt "support_brim_width label"
  2391. msgid "Support Brim Width"
  2392. msgstr "Šířka límce podpor"
  2393. msgctxt "support_zag_skip_count label"
  2394. msgid "Support Chunk Line Count"
  2395. msgstr "Počet kusů linek podpory"
  2396. msgctxt "support_skip_zag_per_mm label"
  2397. msgid "Support Chunk Size"
  2398. msgstr "Velikost bloku podpory"
  2399. msgctxt "support_infill_rate label"
  2400. msgid "Support Density"
  2401. msgstr "Hustota podpor"
  2402. msgctxt "support_xy_overrides_z label"
  2403. msgid "Support Distance Priority"
  2404. msgstr "Priorita vzdálenost podpor"
  2405. msgctxt "support_extruder_nr label"
  2406. msgid "Support Extruder"
  2407. msgstr "Extruder pro podpory"
  2408. msgctxt "acceleration_support_bottom label"
  2409. msgid "Support Floor Acceleration"
  2410. msgstr "Akcelerace tisku podpor podlahy"
  2411. msgctxt "support_bottom_density label"
  2412. msgid "Support Floor Density"
  2413. msgstr "Hustota podpor podlahy"
  2414. msgctxt "support_bottom_extruder_nr label"
  2415. msgid "Support Floor Extruder"
  2416. msgstr "Extruder pro podporu podlahy"
  2417. msgctxt "support_bottom_material_flow label"
  2418. msgid "Support Floor Flow"
  2419. msgstr "Průtok u podpor podlahy"
  2420. msgctxt "support_bottom_offset label"
  2421. msgid "Support Floor Horizontal Expansion"
  2422. msgstr "Horizontální expanze podpory podlah"
  2423. msgctxt "jerk_support_bottom label"
  2424. msgid "Support Floor Jerk"
  2425. msgstr "Okamžitá rychlost při tisku podpor podlahy"
  2426. msgctxt "support_bottom_angles label"
  2427. msgid "Support Floor Line Directions"
  2428. msgstr "Směrové linie rozhraní podlahy"
  2429. msgctxt "support_bottom_line_distance label"
  2430. msgid "Support Floor Line Distance"
  2431. msgstr "Vzdálenost linek podpor podlahy"
  2432. msgctxt "support_bottom_line_width label"
  2433. msgid "Support Floor Line Width"
  2434. msgstr "Šířka čáry podpory podlahy"
  2435. msgctxt "support_bottom_pattern label"
  2436. msgid "Support Floor Pattern"
  2437. msgstr "Vzor podpor podlahy"
  2438. msgctxt "speed_support_bottom label"
  2439. msgid "Support Floor Speed"
  2440. msgstr "Rychlost tisku podpor podlahy"
  2441. msgctxt "support_bottom_height label"
  2442. msgid "Support Floor Thickness"
  2443. msgstr "Tloušťka podpor podlahy"
  2444. msgctxt "support_material_flow label"
  2445. msgid "Support Flow"
  2446. msgstr "Průtok u podpor"
  2447. msgctxt "support_offset label"
  2448. msgid "Support Horizontal Expansion"
  2449. msgstr "Expanze horizontálnách podpor"
  2450. msgctxt "acceleration_support_infill label"
  2451. msgid "Support Infill Acceleration"
  2452. msgstr "Akcelerace tisku výplně podpor"
  2453. msgctxt "support_infill_extruder_nr label"
  2454. msgid "Support Infill Extruder"
  2455. msgstr "Extruder pro vnitřní podpory"
  2456. msgctxt "jerk_support_infill label"
  2457. msgid "Support Infill Jerk"
  2458. msgstr "Okamžitá rychlost při tisku výplně podpor"
  2459. msgctxt "support_infill_sparse_thickness label"
  2460. msgid "Support Infill Layer Thickness"
  2461. msgstr "Tloušťka vrstvy výplně podpory"
  2462. msgctxt "support_infill_angles label"
  2463. msgid "Support Infill Line Directions"
  2464. msgstr "Směry podpůrných výplní linek"
  2465. msgctxt "speed_support_infill label"
  2466. msgid "Support Infill Speed"
  2467. msgstr "Rychlost tisku výplně podpor"
  2468. msgctxt "acceleration_support_interface label"
  2469. msgid "Support Interface Acceleration"
  2470. msgstr "Akcelerace tisku rozhraní podpor"
  2471. msgctxt "support_interface_density label"
  2472. msgid "Support Interface Density"
  2473. msgstr "Hustota rozhraní podpor"
  2474. msgctxt "support_interface_extruder_nr label"
  2475. msgid "Support Interface Extruder"
  2476. msgstr "Extruder pro rozhraní podpor"
  2477. msgctxt "support_interface_material_flow label"
  2478. msgid "Support Interface Flow"
  2479. msgstr "Průtok rozhraní podpor"
  2480. msgctxt "support_interface_offset label"
  2481. msgid "Support Interface Horizontal Expansion"
  2482. msgstr "Horizontální rozšíření rozhraní podpor"
  2483. msgctxt "jerk_support_interface label"
  2484. msgid "Support Interface Jerk"
  2485. msgstr "Okamžitá rychlost při tisku rozhraní podpor"
  2486. msgctxt "support_interface_angles label"
  2487. msgid "Support Interface Line Directions"
  2488. msgstr "Směrové linie rozhraní podpor"
  2489. msgctxt "support_interface_line_width label"
  2490. msgid "Support Interface Line Width"
  2491. msgstr "Šířka čáry rozhraní podpor"
  2492. msgctxt "support_interface_pattern label"
  2493. msgid "Support Interface Pattern"
  2494. msgstr "Vzor rozhraní podpor"
  2495. msgctxt "support_interface_priority label"
  2496. msgid "Support Interface Priority"
  2497. msgstr "Priorita rozhraní podpor"
  2498. msgctxt "support_interface_skip_height label"
  2499. msgid "Support Interface Resolution"
  2500. msgstr "Rozlišení rozhraní podpor"
  2501. msgctxt "speed_support_interface label"
  2502. msgid "Support Interface Speed"
  2503. msgstr "Rychlost tisku rozhraní podpor"
  2504. msgctxt "support_interface_height label"
  2505. msgid "Support Interface Thickness"
  2506. msgstr "Tloušťka rozhraní podpor"
  2507. msgctxt "support_interface_wall_count label"
  2508. msgid "Support Interface Wall Line Count"
  2509. msgstr "Počet stěn rozhraní podpor"
  2510. msgctxt "jerk_support label"
  2511. msgid "Support Jerk"
  2512. msgstr "Okamžitá rychlost při tisku podpor"
  2513. msgctxt "support_join_distance label"
  2514. msgid "Support Join Distance"
  2515. msgstr "Vzdálenost propojení podpor"
  2516. msgctxt "support_line_distance label"
  2517. msgid "Support Line Distance"
  2518. msgstr "Vzdálenost mezi linkami podpor"
  2519. msgctxt "support_line_width label"
  2520. msgid "Support Line Width"
  2521. msgstr "Šířka čáry podpory"
  2522. msgctxt "support_mesh label"
  2523. msgid "Support Mesh"
  2524. msgstr "Síť podpor"
  2525. msgctxt "support_angle label"
  2526. msgid "Support Overhang Angle"
  2527. msgstr "Podpora převislého úhlu"
  2528. msgctxt "support_pattern label"
  2529. msgid "Support Pattern"
  2530. msgstr "Vzor podpor"
  2531. msgctxt "support_type label"
  2532. msgid "Support Placement"
  2533. msgstr "Rozmistění podpor"
  2534. msgctxt "acceleration_support_roof label"
  2535. msgid "Support Roof Acceleration"
  2536. msgstr "Akcelerace tisku podpor střechy"
  2537. msgctxt "support_roof_density label"
  2538. msgid "Support Roof Density"
  2539. msgstr "Hustota podpor střechy"
  2540. msgctxt "support_roof_extruder_nr label"
  2541. msgid "Support Roof Extruder"
  2542. msgstr "Extruder pro podporu střech"
  2543. msgctxt "support_roof_material_flow label"
  2544. msgid "Support Roof Flow"
  2545. msgstr "Průtok u podpor střechy"
  2546. msgctxt "support_roof_offset label"
  2547. msgid "Support Roof Horizontal Expansion"
  2548. msgstr "Horizontální expanze podpory střechy"
  2549. msgctxt "jerk_support_roof label"
  2550. msgid "Support Roof Jerk"
  2551. msgstr "Okamžitá rychlost při tisku podpor střechy"
  2552. msgctxt "support_roof_angles label"
  2553. msgid "Support Roof Line Directions"
  2554. msgstr "Směrové linie rozhraní střechy"
  2555. msgctxt "support_roof_line_distance label"
  2556. msgid "Support Roof Line Distance"
  2557. msgstr "Vzdálenost linek podpor střechy"
  2558. msgctxt "support_roof_line_width label"
  2559. msgid "Support Roof Line Width"
  2560. msgstr "Šířka čáry podpory střechy"
  2561. msgctxt "support_roof_pattern label"
  2562. msgid "Support Roof Pattern"
  2563. msgstr "Vzor podpor střechy"
  2564. msgctxt "speed_support_roof label"
  2565. msgid "Support Roof Speed"
  2566. msgstr "Rychlost tisku podpor střechy"
  2567. msgctxt "support_roof_height label"
  2568. msgid "Support Roof Thickness"
  2569. msgstr "Tloušťka podpor střechy"
  2570. msgctxt "support_roof_wall_count label"
  2571. msgid "Support Roof Wall Line Count"
  2572. msgstr "Počet stěn ve střeše podpor"
  2573. msgctxt "speed_support label"
  2574. msgid "Support Speed"
  2575. msgstr "Rychlost tisku podor"
  2576. msgctxt "support_bottom_stair_step_height label"
  2577. msgid "Support Stair Step Height"
  2578. msgstr "Výška schodu podpěrného schodiště"
  2579. msgctxt "support_bottom_stair_step_width label"
  2580. msgid "Support Stair Step Maximum Width"
  2581. msgstr "Maximální šířka schodu podpěrného schodiště"
  2582. msgctxt "support_bottom_stair_step_min_slope label"
  2583. msgid "Support Stair Step Minimum Slope Angle"
  2584. msgstr "Podpora Schodu Minimální Úhel Sklonu"
  2585. msgctxt "support_structure label"
  2586. msgid "Support Structure"
  2587. msgstr "Podpůrná struktura"
  2588. msgctxt "support_top_distance label"
  2589. msgid "Support Top Distance"
  2590. msgstr "Vzdálenost horní podpory"
  2591. msgctxt "support_wall_count label"
  2592. msgid "Support Wall Line Count"
  2593. msgstr "Počet stěn podpor"
  2594. msgctxt "support_xy_distance label"
  2595. msgid "Support X/Y Distance"
  2596. msgstr "Vzdálenost podpor X/Y"
  2597. msgctxt "support_z_distance label"
  2598. msgid "Support Z Distance"
  2599. msgstr "Vzdálenost Z podor"
  2600. msgctxt "support_interface_priority option support_lines_overwrite_interface_area"
  2601. msgid "Support lines preferred"
  2602. msgstr "Preferovat čáry podpor"
  2603. msgctxt "support_interface_priority option support_area_overwrite_interface_area"
  2604. msgid "Support preferred"
  2605. msgstr "Preferovat podpory"
  2606. msgctxt "support_supported_skin_fan_speed label"
  2607. msgid "Supported Skin Fan Speed"
  2608. msgstr "Rychlost ventilátoru při tisku podpor povrch"
  2609. msgctxt "magic_mesh_surface_mode option surface"
  2610. msgid "Surface"
  2611. msgstr "Povrchový"
  2612. msgctxt "material_surface_energy label"
  2613. msgid "Surface Energy"
  2614. msgstr "Povrchová energie"
  2615. msgctxt "magic_mesh_surface_mode label"
  2616. msgid "Surface Mode"
  2617. msgstr "Povrchový režim"
  2618. msgctxt "material_adhesion_tendency description"
  2619. msgid "Surface adhesion tendency."
  2620. msgstr "Tendence povrchové přilnavosti."
  2621. msgctxt "material_surface_energy description"
  2622. msgid "Surface energy."
  2623. msgstr "Povrchová energie."
  2624. msgctxt "brim_smart_ordering description"
  2625. msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal."
  2626. msgstr "Prohodí pořadí tisku vnitřní a druhé nejvnitřnější čáry límce. Toto usnadňuje odstraňování límce."
  2627. msgctxt "alternate_carve_order description"
  2628. 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."
  2629. msgstr "Přepněte do kterého protínajícího se svazku sítí bude patřit každá vrstva, takže překrývající se očka se protnou. Vypnutí tohoto nastavení způsobí, že jedna z sítí získá veškerý objem v překrytí, zatímco je odstraněna z ostatních sítí."
  2630. msgctxt "adaptive_layer_height_threshold description"
  2631. 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."
  2632. msgstr "Zaměřte vodorovnou vzdálenost mezi dvěma sousedními vrstvami. Snížení tohoto nastavení způsobí, že se tenčí vrstvy použijí k přibližování okrajů vrstev k sobě."
  2633. msgctxt "layer_start_x description"
  2634. msgid "The X coordinate of the position near where to find the part to start printing each layer."
  2635. msgstr "Souřadnice X pozice poblíž místa, kde má být nalezen díl pro zahájení tisku každé vrstvy."
  2636. msgctxt "z_seam_x description"
  2637. msgid "The X coordinate of the position near where to start printing each part in a layer."
  2638. msgstr "Souřadnice X pozice poblíž místa, kde se má začít tisknout každá část ve vrstvě."
  2639. msgctxt "extruder_prime_pos_x description"
  2640. msgid "The X coordinate of the position where the nozzle primes at the start of printing."
  2641. msgstr "Souřadnice X polohy, ve které tryska naplní tlak na začátku tisku."
  2642. msgctxt "layer_start_y description"
  2643. msgid "The Y coordinate of the position near where to find the part to start printing each layer."
  2644. msgstr "Souřadnice Y pozice poblíž místa, kde má být nalezen díl pro zahájení tisku každé vrstvy."
  2645. msgctxt "z_seam_y description"
  2646. msgid "The Y coordinate of the position near where to start printing each part in a layer."
  2647. msgstr "Souřadnice Y pozice poblíž místa, kde se má začít tisknout každá část ve vrstvě."
  2648. msgctxt "extruder_prime_pos_y description"
  2649. msgid "The Y coordinate of the position where the nozzle primes at the start of printing."
  2650. msgstr "Souřadnice Y polohy, ve které tryska naplní tlak na začátku tisku."
  2651. msgctxt "extruder_prime_pos_z description"
  2652. msgid "The Z coordinate of the position where the nozzle primes at the start of printing."
  2653. msgstr "Souřadnice Z pozice, ve které tryska naplní tlak na začátku tisku."
  2654. msgctxt "acceleration_print_layer_0 description"
  2655. msgid "The acceleration during the printing of the initial layer."
  2656. msgstr "Zrychlení během tisku počáteční vrstvy."
  2657. msgctxt "acceleration_layer_0 description"
  2658. msgid "The acceleration for the initial layer."
  2659. msgstr "Zrychlení počáteční vrstvy."
  2660. msgctxt "acceleration_travel_layer_0 description"
  2661. msgid "The acceleration for travel moves in the initial layer."
  2662. msgstr "Zrychlení pro pohyb se pohybuje v počáteční vrstvě."
  2663. msgctxt "jerk_travel_layer_0 description"
  2664. msgid "The acceleration for travel moves in the initial layer."
  2665. msgstr "Zrychlení pro pohyb se pohybuje v počáteční vrstvě."
  2666. msgctxt "acceleration_wall_x description"
  2667. msgid "The acceleration with which all inner walls are printed."
  2668. msgstr "Zrychlení, kterým jsou potištěny všechny vnitřní stěny."
  2669. msgctxt "acceleration_infill description"
  2670. msgid "The acceleration with which infill is printed."
  2671. msgstr "Zrychlení, kterým je výplň vytištěna."
  2672. msgctxt "acceleration_ironing description"
  2673. msgid "The acceleration with which ironing is performed."
  2674. msgstr "Zrychlení, s nímž se provádí žehlení."
  2675. msgctxt "acceleration_print description"
  2676. msgid "The acceleration with which printing happens."
  2677. msgstr "Zrychlení, s nímž dochází k tisku."
  2678. msgctxt "raft_base_acceleration description"
  2679. msgid "The acceleration with which the base raft layer is printed."
  2680. msgstr "Zrychlení, s nímž je tisknuta základní raftová vrstva."
  2681. msgctxt "acceleration_support_bottom description"
  2682. 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."
  2683. msgstr "Zrychlení, s nímž se potiskují podlahy podpory. Jejich tisk při nižším zrychlení může zlepšit přilnutí podpory na váš model."
  2684. msgctxt "acceleration_support_infill description"
  2685. msgid "The acceleration with which the infill of support is printed."
  2686. msgstr "Zrychlení, kterým je vytištěna výplň podpory."
  2687. msgctxt "raft_interface_acceleration description"
  2688. msgid "The acceleration with which the middle raft layer is printed."
  2689. msgstr "Zrychlení, kterým je tištěna střední vrstva raftu."
  2690. msgctxt "acceleration_wall_0 description"
  2691. msgid "The acceleration with which the outermost walls are printed."
  2692. msgstr "Zrychlení, kterým se potiskují vnější stěny."
  2693. msgctxt "acceleration_prime_tower description"
  2694. msgid "The acceleration with which the prime tower is printed."
  2695. msgstr "Zrychlení, kterým je vytištěna hlavní věž."
  2696. msgctxt "raft_acceleration description"
  2697. msgid "The acceleration with which the raft is printed."
  2698. msgstr "Zrychlení, s nímž je raft tištěn."
  2699. msgctxt "acceleration_support_interface description"
  2700. msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality."
  2701. msgstr "Zrychlení, kterým se potiskují střechy a podlahy podložky. Jejich tisk při nižším zrychlení může zlepšit kvalitu převisu."
  2702. msgctxt "acceleration_support_roof description"
  2703. msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality."
  2704. msgstr "Zrychlení, kterým se potiskují střechy podpěry. Jejich tisk při nižším zrychlení může zlepšit kvalitu převisu."
  2705. msgctxt "acceleration_skirt_brim description"
  2706. 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."
  2707. msgstr "Zrychlení, s nímž jsou okraj a límec vytištěny. Normálně se tak děje s počátečním zrychlením vrstvy, ale někdy budete chtít vytisknout okraj nebo límec při jiném zrychlení."
  2708. msgctxt "acceleration_support description"
  2709. msgid "The acceleration with which the support structure is printed."
  2710. msgstr "Zrychlení, kterým je tisknuta nosná struktura."
  2711. msgctxt "raft_surface_acceleration description"
  2712. msgid "The acceleration with which the top raft layers are printed."
  2713. msgstr "Zrychlení, s nímž se tiskne horní vrstvy raftu."
  2714. msgctxt "acceleration_wall description"
  2715. msgid "The acceleration with which the walls are printed."
  2716. msgstr "Zrychlení, kterým jsou stěny potištěny."
  2717. msgctxt "acceleration_roofing description"
  2718. msgid "The acceleration with which top surface skin layers are printed."
  2719. msgstr "Zrychlení, kterým se potiskují vrchní povrchové vrstvy."
  2720. msgctxt "acceleration_topbottom description"
  2721. msgid "The acceleration with which top/bottom layers are printed."
  2722. msgstr "Zrychlení, kterým se tisknou horní / dolní vrstvy."
  2723. msgctxt "acceleration_travel description"
  2724. msgid "The acceleration with which travel moves are made."
  2725. msgstr "Zrychlení, kterým se pohybují pohyby."
  2726. msgctxt "ironing_flow description"
  2727. 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."
  2728. msgstr "Množství materiálu vzhledem k normální linii kůže, které se během žehlení vytlačuje. Udržování trysky naplněné pomáhá vyplnit některé štěrbiny na horním povrchu, ale příliš mnoho vede k nadměrnému vytlačování a klouzání na straně povrchu."
  2729. msgctxt "infill_overlap description"
  2730. 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."
  2731. msgstr "Velikost překrytí mezi výplní a stěnami jako procento šířky výplňové linie. Mírné překrytí umožňuje, aby se stěny pevně připojily k výplni."
  2732. msgctxt "infill_overlap_mm description"
  2733. msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill."
  2734. msgstr "Velikost překrytí mezi výplní a stěnami. Mírné překrytí umožňuje, aby se stěny pevně připojily k výplni."
  2735. msgctxt "switch_extruder_retraction_amount description"
  2736. 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."
  2737. msgstr "Množství zatažení při přepínání extruderů. Nastavit na 0 pro žádné stažení. To by obecně mělo být stejné jako délka tepelné zóny."
  2738. msgctxt "machine_nozzle_expansion_angle description"
  2739. msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle."
  2740. msgstr "Úhel mezi vodorovnou rovinou a kuželovou částí přímo nad špičkou trysky."
  2741. msgctxt "support_tower_roof_angle description"
  2742. 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."
  2743. msgstr "Úhel střechy věže. Vyšší hodnota vede ke špičatým střechám věží, nižší hodnota vede ke zploštěním střech věží."
  2744. msgctxt "mold_angle description"
  2745. 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."
  2746. msgstr "Úhel přesahu vnějších stěn vytvořených pro formu. 0° způsobí, že vnější skořepina formy bude svislá, zatímco 90° způsobí, že vnější strana modelu bude sledovat obrys modelu."
  2747. msgctxt "support_tree_branch_diameter_angle description"
  2748. 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."
  2749. msgstr "Úhel, který vytváří průměr větví, jak se větve postupně stávají širší směrem dolů. Nulový úhel způsobí, že budou mít větve stejnou tloušťku po celou svoji délku. Malý úhel může pomoci zvýšit stabilitu stromové podpory."
  2750. msgctxt "support_conical_angle description"
  2751. 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."
  2752. msgstr "Úhel náklonu kuželové podpory. S 0° svislým a 90° vodorovným. Menší úhly způsobují, že podpora je robustnější, ale sestává z více materiálu. Záporné úhly způsobují, že základna podpory je širší než horní část."
  2753. msgctxt "magic_fuzzy_skin_point_density description"
  2754. 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."
  2755. msgstr "Průměrná hustota bodů zavedených na každý mnohoúhelník ve vrstvě. Všimněte si, že původní body mnohoúhelníku jsou zahozeny, takže nízká hustota vede ke snížení rozlišení."
  2756. msgctxt "magic_fuzzy_skin_point_dist description"
  2757. 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."
  2758. msgstr "Průměrná vzdálenost mezi náhodnými body zavedenými v každém segmentu čáry. Všimněte si, že původní body mnohoúhelníku jsou zahozeny, takže vysoká hladkost vede ke snížení rozlišení. Tato hodnota musí být vyšší než polovina tloušťky rozmazaného povrchu."
  2759. msgctxt "machine_acceleration description"
  2760. msgid "The default acceleration of print head movement."
  2761. msgstr "Výchozí zrychlení pohybu tiskové hlavy."
  2762. msgctxt "default_material_print_temperature description"
  2763. 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"
  2764. msgstr "Výchozí teplota použitá pro tisk. To by měla být „základní“ teplota materiálu. Všechny ostatní teploty tisku by měly používat odchylky založené na této hodnotě"
  2765. msgctxt "default_material_bed_temperature description"
  2766. 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"
  2767. msgstr "Výchozí teplota použitá pro vyhřívanou podložku. To by měla být „základní“ teplota podložky. Všechny ostatní teploty tisku by měly používat odchylky založené na této hodnotě"
  2768. msgctxt "bridge_skin_density description"
  2769. msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  2770. msgstr "Hustota vrstvy povrchu můstku. Hodnoty menší než 100 zvýší mezery mezi liniemi pokožky."
  2771. msgctxt "support_bottom_density description"
  2772. 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."
  2773. msgstr "Hustota podlah nosné konstrukce. Vyšší hodnota vede k lepší adhezi podpory k horní části modelu."
  2774. msgctxt "support_roof_density description"
  2775. msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  2776. msgstr "Hustota střech nosné konstrukce. Vyšší hodnota má za následek lepší přesahy, ale podpory je těžší odstranit."
  2777. msgctxt "bridge_skin_density_2 description"
  2778. msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  2779. msgstr "Hustota druhé vrstvy vrstvy můstku. Hodnoty menší než 100 zvýší mezery mezi liniemi pokožky."
  2780. msgctxt "bridge_skin_density_3 description"
  2781. msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  2782. msgstr "Hustota třetí vrstvy vrstvy můstku. Hodnoty menší než 100 zvýší mezery mezi liniemi pokožky."
  2783. msgctxt "machine_depth description"
  2784. msgid "The depth (Y-direction) of the printable area."
  2785. msgstr "Hlouba (Isa Y) plochy k tisku."
  2786. msgctxt "support_tower_diameter description"
  2787. msgid "The diameter of a special tower."
  2788. msgstr "Průměr speciální věže."
  2789. msgctxt "support_tree_branch_diameter description"
  2790. msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this."
  2791. msgstr "Průměr větve stromu podpory Průměr nejtenčí větve stromu podpory. Silnější větve jsou odolnější. Větve směrem k základně budou silnější než tato."
  2792. msgctxt "support_tree_tip_diameter description"
  2793. msgid "The diameter of the top of the tip of the branches of tree support."
  2794. msgstr "Průměr konečků větví stromové podpory."
  2795. msgctxt "machine_feeder_wheel_diameter description"
  2796. msgid "The diameter of the wheel that drives the material in the feeder."
  2797. msgstr "Průměr kola, který pohání materiál v podavači."
  2798. msgctxt "support_tree_max_diameter description"
  2799. 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."
  2800. msgstr "Průměr nejširší větve stromové podpory. Širší kmen je více stabilní; tenší kmen zabírá méně místa na podložce."
  2801. msgctxt "adaptive_layer_height_variation_step description"
  2802. msgid "The difference in height of the next layer height compared to the previous one."
  2803. msgstr "Rozdíl ve výšce další vrstvy ve srovnání s předchozí."
  2804. msgctxt "ironing_line_spacing description"
  2805. msgid "The distance between the lines of ironing."
  2806. msgstr "Vzdálenost mezi čárami žehlení."
  2807. msgctxt "travel_avoid_distance description"
  2808. msgid "The distance between the nozzle and already printed parts when avoiding during travel moves."
  2809. msgstr "Vzdálenost mezi tryskou a již potištěnými částmi, kterým se hlavy vyvaruje."
  2810. msgctxt "raft_base_line_spacing description"
  2811. 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."
  2812. msgstr "Vzdálenost mezi vorovými liniemi pro základní vrstvu raftu. Široký rozestup umožňuje snadné vyjmutí voru z podložky."
  2813. msgctxt "raft_interface_line_spacing description"
  2814. 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."
  2815. msgstr "Vzdálenost mezi liniemi raftů pro střední vrstvu raftů. Vzdálenost mezi středy by měla být poměrně široká, přičemž by měla být dostatečně hustá, aby podepírala horní vrstvy raftů."
  2816. msgctxt "raft_surface_line_spacing description"
  2817. 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."
  2818. msgstr "Vzdálenost mezi liniemi raftů pro horní vrstvy raftů. Rozestup by měl být roven šířce čáry, takže povrch je pevný."
  2819. msgctxt "interlocking_depth description"
  2820. msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion."
  2821. msgstr "Vzdálenost od hranic mezi modely, do jaké generovat vzájemně propletené struktury (měřeno v buňkách). Příliš málo buněk způsobí špatnou přilnavost."
  2822. msgctxt "brim_width description"
  2823. 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."
  2824. msgstr "Vzdálenost od modelu k nejzazší linii límce. Větší límec zvyšuje přilnavost k podložce, ale také snižuje efektivní tiskovou plochu."
  2825. msgctxt "interlocking_boundary_avoidance description"
  2826. msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells."
  2827. msgstr "Vzdálenost od vnějšku modelu, ve které nebudou vzájemně propletené se struktury generovány. Měřeno v buňkách."
  2828. msgctxt "machine_heat_zone_length description"
  2829. msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament."
  2830. msgstr "Vzdálenost od špičky trysky, ve které se teplo z trysky přenáší na filament."
  2831. msgctxt "bottom_skin_expand_distance description"
  2832. 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."
  2833. msgstr "Vzdálenost spodního povrchu, který se rozšiřuje do výplně. Vyšší hodnoty umožňují lepší přilnavost povrchu k vzoru výplně a lepší přilnavost povrchu ke stěnám na spodní vrstvě. Nižší hodnoty šetří množství použitého materiálu."
  2834. msgctxt "expand_skins_expand_distance description"
  2835. 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."
  2836. msgstr "Vzdálenost povrchu je rozšířena do výplně. Vyšší hodnoty umožňují lepší přilnavost povrchu k vzoru výplně a díky tomu lepí přilnavost stěn na sousedních vrstvách k povrchu. Nižší hodnoty šetří množství použitého materiálu."
  2837. msgctxt "top_skin_expand_distance description"
  2838. 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."
  2839. msgstr "Vzdálenost, ve které jsou vrchní vrstvy povrchu rozšířeny do výplně. Vyšší hodnoty umožňují lepší přilnavost povrchu k vzoru výplně a lepší přilnutí stěn nad vrstvou k povrchu. Nižší hodnoty šetří množství použitého materiálu."
  2840. msgctxt "wipe_move_distance description"
  2841. msgid "The distance to move the head back and forth across the brush."
  2842. msgstr "Vzdálenost k pohybu hlavy tam a zpět přes štětec."
  2843. msgctxt "lightning_infill_prune_angle description"
  2844. 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."
  2845. msgstr "Koncové body čar výplně jsou zkracovány pro šetření materiálu. Toto nastavení je úhel převisu koncových bodů těchto čar."
  2846. msgctxt "material_extrusion_cool_down_speed description"
  2847. 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."
  2848. msgstr "Extra rychlost, kterou se tryska během vytlačování ochladí. Stejná hodnota se používá k označení rychlosti zahřívání ztracené při zahřívání během vytlačování."
  2849. msgctxt "support_extruder_nr_layer_0 description"
  2850. msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion."
  2851. msgstr "Vytlačovací souprava použitá pro tisk první vrstvy výplně podpory. Používá se při vícenásobném vytlačování."
  2852. msgctxt "raft_base_extruder_nr description"
  2853. msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion."
  2854. msgstr "Vytlačovací souprava použitá pro tisk první vrstvy raftu. Používá se při vícenásobném vytlačování."
  2855. msgctxt "support_bottom_extruder_nr description"
  2856. msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion."
  2857. msgstr "Vytlačovací souprava použitá pro tisk podlah podpory. Používá se při vícenásobném vytlačování."
  2858. msgctxt "support_infill_extruder_nr description"
  2859. msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion."
  2860. msgstr "Vytlačovací souprava použitá pro tisk výplně podpory. Používá se při vícenásobném vytlačování."
  2861. msgctxt "raft_interface_extruder_nr description"
  2862. msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion."
  2863. msgstr "Vytlačovací souprava použitá pro tisk vnitřních vrstev raftu. Používá se při vícenásobném vytlačování."
  2864. msgctxt "support_interface_extruder_nr description"
  2865. msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion."
  2866. msgstr "Vytlačovací souprava použitá pro tisk střech a podlah podpory. Používá se při vícenásobném vytlačování."
  2867. msgctxt "support_roof_extruder_nr description"
  2868. msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion."
  2869. msgstr "Vytlačovací souprava použitá pro tisk střech podpory. Používá se při vícenásobném vytlačování."
  2870. msgctxt "skirt_brim_extruder_nr description"
  2871. msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion."
  2872. msgstr "Vytlačovací souprava použitá pro tisk okraje nebo límce. Používá se při vícenásobném vytlačování."
  2873. msgctxt "adhesion_extruder_nr description"
  2874. msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion."
  2875. msgstr "Vytlačovací souprava použitá pro tisk okraje / límce / raftu. Používá se při vícenásobném vytlačování."
  2876. msgctxt "support_extruder_nr description"
  2877. msgid "The extruder train to use for printing the support. This is used in multi-extrusion."
  2878. msgstr "Vytlačovací souprava použitá pro tisk podpory. Používá se při vícenásobném vytlačování."
  2879. msgctxt "raft_surface_extruder_nr description"
  2880. msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion."
  2881. msgstr "Vytlačovací souprava použitá pro tisk horní vrstvy (vrstev) raftu. Používá se při vícenásobném vytlačování."
  2882. msgctxt "infill_extruder_nr description"
  2883. msgid "The extruder train used for printing infill. This is used in multi-extrusion."
  2884. msgstr "Vytlačovací souprava použitá pro tisk výplně. Používá se při vícenásobném vytlačování."
  2885. msgctxt "wall_x_extruder_nr description"
  2886. msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion."
  2887. msgstr "Vytlačovací souprava použitá pro tisk vnitřních stěn. Používá se při vícenásobném vytlačování."
  2888. msgctxt "wall_0_extruder_nr description"
  2889. msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion."
  2890. msgstr "Vytlačovací souprava použitá pro tisk vnější stěny. Používá se při vícenásobném vytlačování."
  2891. msgctxt "top_bottom_extruder_nr description"
  2892. msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion."
  2893. msgstr "Vytlačovací souprava použitá pro tisk horní a spodní pokožky. Používá se při vícenásobném vytlačování."
  2894. msgctxt "roofing_extruder_nr description"
  2895. msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion."
  2896. msgstr "Vytlačovací souprava použitá pro tisk nejvyššího povrchu. Používá se při vícenásobném vytlačování."
  2897. msgctxt "wall_extruder_nr description"
  2898. msgid "The extruder train used for printing the walls. This is used in multi-extrusion."
  2899. msgstr "Vytlačovací souprava použitá pro tisk stěn. Používá se při vícenásobném vytlačování."
  2900. msgctxt "raft_base_fan_speed description"
  2901. msgid "The fan speed for the base raft layer."
  2902. msgstr "Rychlost ventilátoru při tisku základních vrstev raftu."
  2903. msgctxt "raft_interface_fan_speed description"
  2904. msgid "The fan speed for the middle raft layer."
  2905. msgstr "Rychlost ventilátoru při tisku středních vrstev raftu."
  2906. msgctxt "raft_fan_speed description"
  2907. msgid "The fan speed for the raft."
  2908. msgstr "Rychlost ventilátoru pro tisk raftu."
  2909. msgctxt "raft_surface_fan_speed description"
  2910. msgid "The fan speed for the top raft layers."
  2911. msgstr "Rychlost ventilátoru při tisku horních vrstev raftu."
  2912. msgctxt "cross_infill_density_image description"
  2913. 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."
  2914. msgstr "Umístění souboru obrázku, jehož hodnoty jasu určují minimální hustotu na odpovídajícím místě ve výplni tisku."
  2915. msgctxt "cross_support_density_image description"
  2916. msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support."
  2917. msgstr "Umístění souboru obrázku, jehož hodnoty jasu určují minimální hustotu na odpovídajícím místě v podpoře."
  2918. msgctxt "speed_slowdown_layers description"
  2919. 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."
  2920. msgstr "Prvních několik vrstev je vytištěno pomaleji než zbytek modelu, aby se dosáhlo lepší přilnavosti k sestavovací desce a zlepšila se celková úspěšnost tisků. Rychlost se v těchto vrstvách postupně zvyšuje."
  2921. msgctxt "raft_airgap description"
  2922. 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."
  2923. msgstr "Mezera mezi finální vrstvou raftu a první vrstvou modelu. Pouze první vrstva se zvýší o tuto částku, aby se snížilo spojení mezi vorovou vrstvou a modelem. Usnadňuje oloupání voru."
  2924. msgctxt "machine_height description"
  2925. msgid "The height (Z-direction) of the printable area."
  2926. msgstr "Výška (Osa Z) plochy k tisku."
  2927. msgctxt "mold_roof_height description"
  2928. msgid "The height above horizontal parts in your model which to print mold."
  2929. msgstr "Výška nad vodorovnými částmi modelu, které chcete vytisknout."
  2930. msgctxt "cool_fan_full_at_height description"
  2931. 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."
  2932. msgstr "Výška, při které se otáčejí ventilátory při normální rychlosti ventilátoru. Ve vrstvách pod rychlostí ventilátoru se postupně zvyšuje z počáteční rychlosti ventilátoru na normální rychlost ventilátoru."
  2933. msgctxt "gantry_height description"
  2934. msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)."
  2935. msgstr "Výškový rozdíl mezi špičkou trysky a portálovým systémem (osy X a Y)."
  2936. msgctxt "machine_nozzle_head_distance description"
  2937. msgid "The height difference between the tip of the nozzle and the lowest part of the print head."
  2938. msgstr "Výškový rozdíl mezi špičkou trysky a nejnižší částí tiskové hlavy."
  2939. msgctxt "retraction_hop_after_extruder_switch_height description"
  2940. msgid "The height difference when performing a Z Hop after extruder switch."
  2941. msgstr "Výškový rozdíl při provádění Z Hopu po přepnutí extruderu."
  2942. msgctxt "retraction_hop description"
  2943. msgid "The height difference when performing a Z Hop."
  2944. msgstr "Výškový rozdíl při provádění Z-hopu."
  2945. msgctxt "wipe_hop_amount description"
  2946. msgid "The height difference when performing a Z Hop."
  2947. msgstr "Výškový rozdíl při provádění Z-hopu."
  2948. msgctxt "layer_height description"
  2949. msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution."
  2950. msgstr "Výška každé vrstvy v mm. Vyšší hodnoty produkují rychlejší výtisky v nižším rozlišení, nižší hodnoty produkují pomalejší výtisky ve vyšším rozlišení."
  2951. msgctxt "gradual_infill_step_height description"
  2952. msgid "The height of infill of a given density before switching to half the density."
  2953. msgstr "Výška výplně dané hustoty před přepnutím na polovinu hustoty."
  2954. msgctxt "gradual_support_infill_step_height description"
  2955. msgid "The height of support infill of a given density before switching to half the density."
  2956. msgstr "Výška podpůrné výplně dané hustoty před přepnutím na polovinu hustoty."
  2957. msgctxt "interlocking_beam_layer_count description"
  2958. msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects."
  2959. msgstr "Výška paprsků vzájemného propletení. Měřeno v počtu vrstev. Méně vrstev způsobí větší pevnost, ale zvýší náchylnost k vadám."
  2960. msgctxt "interlocking_orientation description"
  2961. msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects."
  2962. msgstr "Výška paprsků vzájemného propletení. Měřeno v počtu vrstev. Méně vrstev způsobí větší pevnost, ale zvýší náchylnost k vadám."
  2963. msgctxt "layer_height_0 description"
  2964. msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier."
  2965. msgstr "Výška počáteční vrstvy v mm. Silnější počáteční vrstva usnadňuje přilnavost k montážní desce."
  2966. msgctxt "support_bottom_stair_step_height description"
  2967. 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."
  2968. msgstr "Výška stupňů schodišťového dna podpory spočívá na modelu. Nízká hodnota ztěžuje odstranění podpory, ale příliš vysoké hodnoty mohou vést k nestabilním podpůrným strukturám. Nastavením na nulu vypnete chování podobné schodišti."
  2969. msgctxt "brim_gap description"
  2970. 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."
  2971. msgstr "Vodorovná vzdálenost mezi první čarou límce a obrysem první vrstvy tisku. Malá mezera může usnadnit demontáž límce a přitom poskytovat tepelné výhody."
  2972. msgctxt "skirt_gap description"
  2973. msgid ""
  2974. "The horizontal distance between the skirt and the first layer of the print.\n"
  2975. "This is the minimum distance. Multiple skirt lines will extend outwards from this distance."
  2976. msgstr ""
  2977. "Vodorovná vzdálenost mezi okrajem a první vrstvou tisku.\n"
  2978. "Toto je minimální vzdálenost. Z této vzdálenosti se bude rozprostírat více linek okraje."
  2979. msgctxt "lightning_infill_straightening_angle description"
  2980. 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."
  2981. msgstr "Čáry výplně jsou vyrovnávány, aby se snížila doba tisku. Toto je maximální dovolený úhel převisu podél čáry výplně."
  2982. msgctxt "infill_offset_x description"
  2983. msgid "The infill pattern is moved this distance along the X axis."
  2984. msgstr "Výplňový vzor se pohybuje touto vzdáleností podél osy X."
  2985. msgctxt "infill_offset_y description"
  2986. msgid "The infill pattern is moved this distance along the Y axis."
  2987. msgstr "Výplňový vzor se pohybuje touto vzdáleností podél osy Y."
  2988. msgctxt "machine_nozzle_size description"
  2989. msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size."
  2990. msgstr "Vnitřní průměr trysky. Změňte toto nastavení pokud používáte nestandardní velikost trysky."
  2991. msgctxt "raft_base_jerk description"
  2992. msgid "The jerk with which the base raft layer is printed."
  2993. msgstr "Trhnutí, kterým je tisknuta základní vrstva raftu."
  2994. msgctxt "raft_interface_jerk description"
  2995. msgid "The jerk with which the middle raft layer is printed."
  2996. msgstr "Trhnutí, kterým je tisknuta střední vrstva raftu."
  2997. msgctxt "raft_jerk description"
  2998. msgid "The jerk with which the raft is printed."
  2999. msgstr "Trhnutí, při kterém je raft tištěn."
  3000. msgctxt "raft_surface_jerk description"
  3001. msgid "The jerk with which the top raft layers are printed."
  3002. msgstr "Trhnutí, kterým se tisknou horní vrstvy raftu."
  3003. msgctxt "bottom_skin_preshrink description"
  3004. 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."
  3005. msgstr "Největší šířka spodních částí povrchu, které mají být odstraněny. Každá oblast povrchu menší než tato hodnota zmizí. To může pomoci omezit množství času a materiálu stráveného tiskem spodní vrstvy na šikmých plochách v modelu."
  3006. msgctxt "skin_preshrink description"
  3007. 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."
  3008. msgstr "Největší šířka oblastí povrchu, které mají být odstraněny. Každá oblast povrchu menší než tato hodnota zmizí. To může pomoci omezit množství času a materiálu stráveného tiskem vrchní / spodní kůže na šikmých plochách v modelu."
  3009. msgctxt "top_skin_preshrink description"
  3010. 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."
  3011. msgstr "Největší šířka horních oblastí povrchu, které mají být odstraněny. Každá oblast povrchu menší než tato hodnota zmizí. To může pomoci omezit množství času a materiálu stráveného tiskem vrchní kůže na šikmých plochách v modelu."
  3012. msgctxt "cool_fan_full_layer description"
  3013. 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."
  3014. msgstr "Vrstva, ve které se ventilátory otáčejí běžnou rychlostí ventilátoru. Pokud je nastavena normální rychlost ventilátoru ve výšce, je tato hodnota vypočítána a zaokrouhlena na celé číslo."
  3015. msgctxt "cool_min_layer_time_fan_speed_max description"
  3016. 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."
  3017. msgstr "Čas vrstvy, který nastavuje práh mezi normální rychlostí ventilátoru a maximální rychlostí ventilátoru. Vrstvy, které se tisknou pomaleji než tentokrát, používají běžnou rychlost ventilátoru. U rychlejších vrstev se rychlost ventilátoru postupně zvyšuje směrem k maximální rychlosti ventilátoru."
  3018. msgctxt "retraction_amount description"
  3019. msgid "The length of material retracted during a retraction move."
  3020. msgstr "Délka materiálu zasunutého během pohybu zasunutí."
  3021. msgctxt "machine_buildplate_type description"
  3022. msgid "The material of the build plate installed on the printer."
  3023. msgstr "Materiál podložky nainstalované na tiskárně."
  3024. msgctxt "adaptive_layer_height_variation description"
  3025. msgid "The maximum allowed height different from the base layer height."
  3026. msgstr "Maximální povolená výška se liší od výšky základní vrstvy."
  3027. msgctxt "ooze_shield_angle description"
  3028. 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."
  3029. msgstr "Maximální úhel, který bude mít část štítu. S 0° svislým a 90° vodorovným. Menší úhel vede k méně poškozeným štítům, ale více materiálu."
  3030. msgctxt "conical_overhang_angle description"
  3031. 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."
  3032. msgstr "Maximální úhel přesahů po jejich tisku. Při hodnotě 0 ° jsou všechny převisy nahrazeny kusem modelu připojeným k podložce, 90 ° model nijak nijak nezmění."
  3033. msgctxt "support_tree_angle description"
  3034. 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."
  3035. msgstr "Maximální úhel větví, které rostou okolo modelu. Použijte nižší úhel, aby byly větve více vertikální a stabilní. Použijte vyšší úhel, aby měly větve větší dosah."
  3036. msgctxt "conical_overhang_hole_size description"
  3037. 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."
  3038. msgstr "Maximální plocha díry v základně modelu, která nebude odstraněna funkcí „Udělat převis tisknutelný“. Menší díry budou zachovány. Hodnota 0 mm² způsobí vyplnění všech děr v základně modelu."
  3039. msgctxt "meshfix_maximum_deviation description"
  3040. 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."
  3041. msgstr "Maximální odchylka povolená při snižování rozlišení pro nastavení Maximální rozlišení. Pokud toto zvýšíte, bude tisk méně přesný, ale g-kód bude menší. Maximální odchylka je limit pro maximální rozlišení, takže pokud dojde ke konfliktu, bude maximální odchylka vždy platná."
  3042. msgctxt "support_join_distance description"
  3043. 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."
  3044. msgstr "Maximální vzdálenost mezi podpůrnými strukturami ve směru X / Y. Když jsou oddělené struktury blíže k sobě než tato hodnota, struktury se sloučí do jedné."
  3045. msgctxt "flow_rate_max_extrusion_offset description"
  3046. msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate."
  3047. msgstr "Maximální vzdálenost v mm pro pohyb vlákna za účelem kompenzace změn průtoku."
  3048. msgctxt "meshfix_maximum_extrusion_area_deviation description"
  3049. 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."
  3050. msgstr "Maximální dovolená odchylka plochy extruze při odstraňování mezilehlých bodů na rovné čáře. Mezilehlý bod může sloužit jako místo, kde se mění tloušťka dlouhé přímé čáry. Proto, pokud je odstraněn, bude mít tato čára jednotnou šířku a následkem toho ztratí (nebo získá) kousek plochy extruze. Při zvýšení tohoto nastavení můžete zaznamenat mírnou podextruzi nebo nadměrnou extruzi mezi rovnými rovnoběžnými zdmi, jelikož bude dovoleno odstranit více mezilehlých bodů měnících šířku čáry. Vaše výtisky budou méně přesně, ale g-kód bude menší."
  3051. msgctxt "jerk_print_layer_0 description"
  3052. msgid "The maximum instantaneous velocity change during the printing of the initial layer."
  3053. msgstr "Maximální okamžitá změna rychlosti během tisku počáteční vrstvy."
  3054. msgctxt "jerk_print description"
  3055. msgid "The maximum instantaneous velocity change of the print head."
  3056. msgstr "Maximální okamžitá změna rychlosti tiskové hlavy."
  3057. msgctxt "jerk_ironing description"
  3058. msgid "The maximum instantaneous velocity change while performing ironing."
  3059. msgstr "Maximální okamžitá změna rychlosti při provádění žehlení."
  3060. msgctxt "jerk_wall_x description"
  3061. msgid "The maximum instantaneous velocity change with which all inner walls are printed."
  3062. msgstr "Maximální okamžitá změna rychlosti, se kterou se tisknou všechny vnitřní stěny."
  3063. msgctxt "jerk_infill description"
  3064. msgid "The maximum instantaneous velocity change with which infill is printed."
  3065. msgstr "Maximální okamžitá změna rychlosti tisku výplně."
  3066. msgctxt "jerk_support_bottom description"
  3067. msgid "The maximum instantaneous velocity change with which the floors of support are printed."
  3068. msgstr "Maximální okamžitá změna rychlosti, se kterou se potiskují podlahy podpory."
  3069. msgctxt "jerk_support_infill description"
  3070. msgid "The maximum instantaneous velocity change with which the infill of support is printed."
  3071. msgstr "Maximální okamžitá změna rychlosti, s níž je vytištěna výplň podpory."
  3072. msgctxt "jerk_wall_0 description"
  3073. msgid "The maximum instantaneous velocity change with which the outermost walls are printed."
  3074. msgstr "Maximální okamžitá změna rychlosti tisku vnějších stěn."
  3075. msgctxt "jerk_prime_tower description"
  3076. msgid "The maximum instantaneous velocity change with which the prime tower is printed."
  3077. msgstr "Maximální okamžitá změna rychlosti, se kterou se tiskne hlavní věž."
  3078. msgctxt "jerk_support_interface description"
  3079. msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed."
  3080. msgstr "Maximální okamžitá změna rychlosti tisku potisků střech a podlah."
  3081. msgctxt "jerk_support_roof description"
  3082. msgid "The maximum instantaneous velocity change with which the roofs of support are printed."
  3083. msgstr "Maximální okamžitá změna rychlosti, se kterou jsou střechy nosiče vytištěny."
  3084. msgctxt "jerk_skirt_brim description"
  3085. msgid "The maximum instantaneous velocity change with which the skirt and brim are printed."
  3086. msgstr "Maximální okamžitá změna rychlosti, se kterou jsou okraj a límec vytištěny."
  3087. msgctxt "jerk_support description"
  3088. msgid "The maximum instantaneous velocity change with which the support structure is printed."
  3089. msgstr "Maximální okamžitá změna rychlosti, se kterou se tiskne nosná struktura."
  3090. msgctxt "jerk_wall description"
  3091. msgid "The maximum instantaneous velocity change with which the walls are printed."
  3092. msgstr "Maximální okamžitá změna rychlosti, se kterou se stěny tisknou."
  3093. msgctxt "jerk_roofing description"
  3094. msgid "The maximum instantaneous velocity change with which top surface skin layers are printed."
  3095. msgstr "Maximální okamžitá změna rychlosti, se kterou se potiskují vrchní povrchové vrstvy."
  3096. msgctxt "jerk_topbottom description"
  3097. msgid "The maximum instantaneous velocity change with which top/bottom layers are printed."
  3098. msgstr "Maximální okamžitá změna rychlosti, se kterou se tisknou horní / dolní vrstvy."
  3099. msgctxt "jerk_travel description"
  3100. msgid "The maximum instantaneous velocity change with which travel moves are made."
  3101. msgstr "Maximální okamžitá změna rychlosti, se kterou se pohybují pohyby."
  3102. msgctxt "machine_max_feedrate_x description"
  3103. msgid "The maximum speed for the motor of the X-direction."
  3104. msgstr "Maximální rychlost pro motor ve směru X."
  3105. msgctxt "machine_max_feedrate_y description"
  3106. msgid "The maximum speed for the motor of the Y-direction."
  3107. msgstr "Maximální rychlost pro motor ve směru Y."
  3108. msgctxt "machine_max_feedrate_z description"
  3109. msgid "The maximum speed for the motor of the Z-direction."
  3110. msgstr "Maximální rychlost pro motor ve směru Z."
  3111. msgctxt "machine_max_feedrate_e description"
  3112. msgid "The maximum speed of the filament."
  3113. msgstr "Maximální rychlost filamentu."
  3114. msgctxt "support_bottom_stair_step_width description"
  3115. 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."
  3116. msgstr "Maximální šířka schodů schodišťového dna podpory spočívá na modelu. Nízká hodnota ztěžuje odstranění podpory, ale příliš vysoké hodnoty mohou vést k nestabilním podpůrným strukturám."
  3117. msgctxt "mold_width description"
  3118. msgid "The minimal distance between the outside of the mold and the outside of the model."
  3119. msgstr "Minimální vzdálenost mezi vnější stranou formy a modelu."
  3120. msgctxt "machine_minimum_feedrate description"
  3121. msgid "The minimal movement speed of the print head."
  3122. msgstr "Minimální rychlost pohybu tiskové hlavy."
  3123. msgctxt "material_initial_print_temperature description"
  3124. msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start."
  3125. msgstr "Minimální teplota při zahřívání až na teplotu tisku, při které již může tisk začít."
  3126. msgctxt "machine_min_cool_heat_time_window description"
  3127. 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."
  3128. msgstr "Minimální doba, po kterou musí být extrudér neaktivní, než se tryska ochladí. Pouze v případě, že se extrudér nepoužívá déle, než je tato doba, může se ochladit na pohotovostní teplotu."
  3129. msgctxt "infill_support_angle description"
  3130. 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."
  3131. msgstr "Minimální úhel vnitřních přesahů, pro které je přidána výplň. Při hodnotě 0 ° jsou objekty zcela vyplněny výplní, 90 ° neposkytuje výplně."
  3132. msgctxt "support_angle description"
  3133. 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."
  3134. msgstr "Minimální úhel přesahů, pro které je přidána podpora. Při hodnotě 0° jsou podporovány všechny přesahy, 90° neposkytuje žádnou podporu."
  3135. msgctxt "retraction_min_travel description"
  3136. msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area."
  3137. msgstr "Minimální vzdálenost potřebná k tomu, aby ke stažení došlo. To pomáhá dosáhnout menšího počtu stažení v malé oblasti."
  3138. msgctxt "skirt_brim_minimal_length description"
  3139. 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."
  3140. msgstr "Minimální délka límce nebo okraje. Pokud tuto délku nedosáhnou všechny linie okraj nebo límec dohromady, přidává se více okrajových nebo límcových linií, dokud není dosaženo minimální délky. Poznámka: Pokud je počet řádků nastaven na 0, ignoruje se."
  3141. msgctxt "min_odd_wall_line_width description"
  3142. 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."
  3143. msgstr "Minimální šířka čáry použité jako výplň mezi párovými čárami zdi. Toto nastavení určuje tloušťku modelu, při které se přepíná z tisku dvou čar zdi na tisk dvou vnějších čar zdi a jedné centrální čáry zdi mezi nimi. Vyšší hodnota Minimální šířky nepárové čáry zdi vede k vyšší maximální šířce párové čáry zdi. Maximální šířka nepárové čáry zdi je vypočtena jako 2 * Minimální šířka párové čáry zdi."
  3144. msgctxt "min_even_wall_line_width description"
  3145. 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."
  3146. msgstr "Minimální šířka čáry pro běžné mnohoúhelníkové zdi. Toto nastavení určuje tloušťku, při které se přepne z tisku jedné tenké čáry zdi na tisk dvou čar zdi. Vyšší hodnota Minimální šířky párové čáry zdi vede k vyšší maximální šířce nepárové čáry zdi. Maximální šířka párové čáry zdi je spočítána jako Šířka čáry vnější stěny + 0,5 * Minimální šířka nepárové čáry zdi."
  3147. msgctxt "cool_min_speed description"
  3148. 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."
  3149. msgstr "Minimální rychlost tisku, navzdory zpomalení kvůli minimální době vrstvy. Pokud by tiskárna příliš zpomalila, byl by tlak v trysce příliš nízký a výsledkem by byla špatná kvalita tisku."
  3150. msgctxt "meshfix_maximum_resolution description"
  3151. 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."
  3152. msgstr "Minimální velikost segmentu čáry po krájení. Pokud toto zvětšíte, bude mít síť nižší rozlišení. To může umožnit, aby tiskárna udržovala krok s rychlostí, kterou musí zpracovat g-kód, a zvýší se rychlost řezu odstraněním detailů sítě, které stejně nemůže zpracovat."
  3153. msgctxt "meshfix_maximum_travel_resolution description"
  3154. 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."
  3155. msgstr "Minimální velikost segmentu cestovní čáry po krájení. Pokud toto zvýšíte, budou mít cestovní pohyby méně hladké rohy. To může umožnit tiskárně držet krok s rychlostí, kterou musí zpracovat g-kód, ale může to způsobit, že se vyhnutí modelu stane méně přesným."
  3156. msgctxt "support_bottom_stair_step_min_slope description"
  3157. 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."
  3158. msgstr "Minimální sklon oblasti, aby se schodové schody projevily. Nízké hodnoty by měly usnadnit odstraňování podpory na mělkých svazích, ale opravdu nízké hodnoty mohou vést k velmi kontraintuitivním výsledkům na jiných částech modelu."
  3159. msgctxt "cool_min_layer_time description"
  3160. 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."
  3161. msgstr "Minimální doba strávená ve vrstvě. To nutí tiskárnu zpomalit a alespoň zde strávit čas nastavený v jedné vrstvě. To umožňuje, aby se tištěný materiál před tiskem další vrstvy správně ochladil. Vrstvy mohou stále trvat kratší dobu, než je minimální vrstva, pokud je Lift Head deaktivována a pokud by jinak byla porušena minimální rychlost."
  3162. msgctxt "prime_tower_min_volume description"
  3163. msgid "The minimum volume for each layer of the prime tower in order to purge enough material."
  3164. msgstr "Minimální objem pro každou vrstvu hlavní věže, aby se propláchlo dost materiálu."
  3165. msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description"
  3166. 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"
  3167. msgstr "O kolik nejvíce se průměr větve, která se má připojit k modelu, může zvýšit spojením s větvemi, které by se mohly dotýkat podložky. Zvýšení této hodnoty sníží dobu tisku, ale zvýší plochu podpory, která se opírá o model"
  3168. msgctxt "machine_name description"
  3169. msgid "The name of your 3D printer model."
  3170. msgstr "Název vašeho modelu 3D tiskárny."
  3171. msgctxt "machine_nozzle_id description"
  3172. msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"."
  3173. msgstr "ID trysky pro vytlačovací stroj, např. \"AA 0.4\" nebo \"BB 0.8\"."
  3174. msgctxt "travel_avoid_other_parts description"
  3175. msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled."
  3176. msgstr "Při cestování se tryska vyhýbá již potištěným částem. Tato možnost je k dispozici, pouze pokud je povolen combing."
  3177. msgctxt "travel_avoid_supports description"
  3178. msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled."
  3179. msgstr "Při cestování se tryska vyhýbá již potištěným podpěrám. Tato možnost je k dispozici, pouze pokud je combing povolen."
  3180. msgctxt "bottom_layers description"
  3181. msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number."
  3182. msgstr "Počet spodních vrstev. Při výpočtu podle tloušťky dna je tato hodnota zaokrouhlena na celé číslo."
  3183. msgctxt "raft_base_wall_count description"
  3184. msgid "The number of contours to print around the linear pattern in the base layer of the raft."
  3185. msgstr "Kolik obrysových čar se má tisknout okolo lineárního vzoru v základně raftu."
  3186. msgctxt "skin_edge_support_layers description"
  3187. msgid "The number of infill layers that supports skin edges."
  3188. msgstr "Počet výplňových vrstev, které podporují okraje povrchu."
  3189. msgctxt "initial_bottom_layers description"
  3190. 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."
  3191. msgstr "Počet počátečních spodních vrstev od montážní desky směrem nahoru. Při výpočtu podle tloušťky dna je tato hodnota zaokrouhlena na celé číslo."
  3192. msgctxt "raft_interface_layers description"
  3193. 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."
  3194. msgstr "Počet vrstev mezi základnou a povrchem raftu. Tyto vrstvy tvoří hlavní část tloušťky raftu. Vyšší hodnota vytvoří tlustší a robustnější raft."
  3195. msgctxt "brim_line_count description"
  3196. 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."
  3197. msgstr "Počet řádků použitých pro límec. Více linek límce zvyšuje přilnavost k podložce, ale také snižuje efektivní tiskovou plochu."
  3198. msgctxt "support_brim_line_count description"
  3199. 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."
  3200. msgstr "Počet řádků použitých pro podpůrný límec. Více límcových linií zvyšuje přilnavost k stavební desce za cenu nějakého dalšího materiálu."
  3201. msgctxt "raft_surface_layers description"
  3202. 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."
  3203. msgstr "Počet vrchních vrstev na druhé vrstvě voru. Jedná se o plně vyplněné vrstvy, na kterých model sedí. Výsledkem 2 vrstev je hladší horní povrch než 1."
  3204. msgctxt "top_layers description"
  3205. msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number."
  3206. msgstr "Počet vrchních vrstev. Při výpočtu podle nejvyšší tloušťky se tato hodnota zaokrouhlí na celé číslo."
  3207. msgctxt "roofing_layer_count description"
  3208. msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces."
  3209. msgstr "Počet nejpřednějších vrstev pokožky. Obvykle stačí jedna horní vrstva nejvíce k vytvoření horních povrchů vyšší kvality."
  3210. msgctxt "support_wall_count description"
  3211. 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."
  3212. msgstr "Počet stěn, který mají mít podpory. Přidání stěny může učinit podporu spolehlivější a umožnit podporovat lépe převisy, ale zároveň prodlouží tisk a zvýší spotřebu materiálu."
  3213. msgctxt "support_bottom_wall_count description"
  3214. 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."
  3215. msgstr "Počet stěn, který mají mít podlahy podpor. Přidání stěny může učinit podporu spolehlivější a umožnit podporovat lépe převisy, ale zároveň prodlouží tisk a zvýší spotřebu materiálu."
  3216. msgctxt "support_roof_wall_count description"
  3217. 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."
  3218. msgstr "Počet stěn, který mají mít střechy podpor. Přidání stěny může učinit podporu spolehlivější a umožnit podporovat lépe převisy, ale zároveň prodlouží tisk a zvýší spotřebu materiálu."
  3219. msgctxt "support_interface_wall_count description"
  3220. 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."
  3221. msgstr "Počet stěn, který mají mít rozhraní podpor. Přidání stěny může učinit podporu spolehlivější a umožnit podporovat lépe převisy, ale zároveň prodlouží tisk a zvýší spotřebu materiálu."
  3222. msgctxt "wall_distribution_count description"
  3223. 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."
  3224. msgstr "Počet čar zdí od středu, které mají měnit svou šířku při změně počtu čar zdí. Nižší hodnoty znamenají, že vnější stěny nebudou měnit svou šířku."
  3225. msgctxt "wall_line_count description"
  3226. msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number."
  3227. msgstr "Počet stěn. Při výpočtu podle tloušťky stěny je tato hodnota zaokrouhlena na celé číslo."
  3228. msgctxt "machine_nozzle_tip_outer_diameter description"
  3229. msgid "The outer diameter of the tip of the nozzle."
  3230. msgstr "Vnější průměr špičky trysky."
  3231. msgctxt "infill_pattern description"
  3232. 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."
  3233. msgstr "Vzor výplňového materiálu tisku. Čáry a cik-cak s každou vrstvou obracejí směr výplně, čímž se snižují náklady na materiál. Mřížka, trojúhelník, tri-hexagon, krychle, oktet, čtvrtinově krychlový, křížový a soustředný vzor jsou plně vytištěny v každé vrstvě. Vzory gyroid, krychlový, čtvrtinově krychlový a oktet se mění s každou vrstvou, aby se zajistilo rovnoměrnější rozložení síly v každém směru. Bleskový vzor se snaží minimalizovat množství výplně tím, že podporuje pouze strop objektu."
  3234. msgctxt "support_pattern description"
  3235. msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support."
  3236. msgstr "Vzor podpůrných struktur tisku. Výsledkem různých dostupných možností je robustní nebo snadno odstranitelná podpora."
  3237. msgctxt "roofing_pattern description"
  3238. msgid "The pattern of the top most layers."
  3239. msgstr "Vzor nejvyšší vrstvy."
  3240. msgctxt "top_bottom_pattern description"
  3241. msgid "The pattern of the top/bottom layers."
  3242. msgstr "Vzor horní / dolní vrstvy."
  3243. msgctxt "top_bottom_pattern_0 description"
  3244. msgid "The pattern on the bottom of the print on the first layer."
  3245. msgstr "Vzor ve spodní části tisku na první vrstvě."
  3246. msgctxt "ironing_pattern description"
  3247. msgid "The pattern to use for ironing top surfaces."
  3248. msgstr "Vzor pro žehlení horních povrchů."
  3249. msgctxt "support_bottom_pattern description"
  3250. msgid "The pattern with which the floors of the support are printed."
  3251. msgstr "Vzor, kterým se potiskují podlahy podpěry."
  3252. msgctxt "support_interface_pattern description"
  3253. msgid "The pattern with which the interface of the support with the model is printed."
  3254. msgstr "Vzor, pomocí kterého je vytištěno rozhraní podpory s modelem."
  3255. msgctxt "support_roof_pattern description"
  3256. msgid "The pattern with which the roofs of the support are printed."
  3257. msgstr "Vzor, kterým se tisknou střechy podpěry."
  3258. msgctxt "z_seam_position description"
  3259. msgid "The position near where to start printing each part in a layer."
  3260. msgstr "Poloha poblíž místa, kde začít tisknout každou část ve vrstvě."
  3261. msgctxt "support_tree_angle_slow description"
  3262. 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."
  3263. msgstr "Preferovaný úhel větví, které se nemusí vyhýbat modelu. Použijte nižší úhel, aby byly větve více vertikální a stabilní. Použijte vyšší úhel, aby se větve rychleji spojovaly."
  3264. msgctxt "support_tree_rest_preference description"
  3265. 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."
  3266. msgstr "Preferované umístění struktur podpory. Pokud nemohou být struktury umístěny na preferované umístění, budou umístěny jinde, i pokud by to mělo znamenat umístění na modelu."
  3267. msgctxt "jerk_layer_0 description"
  3268. msgid "The print maximum instantaneous velocity change for the initial layer."
  3269. msgstr "Maximální okamžitá změna rychlosti tisku pro počáteční vrstvu."
  3270. msgctxt "machine_shape description"
  3271. msgid "The shape of the build plate without taking unprintable areas into account."
  3272. msgstr "Tvar desky pro sestavení bez zohlednění netisknutelných oblastí."
  3273. msgctxt "machine_head_with_fans_polygon description"
  3274. 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."
  3275. msgstr "Tvar tiskové hlavy. Toto jsou souřadnice relativně k pozici tiskové hlavy, což je obvykle pozice jejího prvního extruderu. Rozměry vlevo a před tiskovou hlavou musí být negativní souřadnice."
  3276. msgctxt "cross_infill_pocket_size description"
  3277. msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself."
  3278. msgstr "Velikost kapes na čtyřcestných kříženích v křížovém 3D vzoru ve výškách, kde se vzor sám dotýká."
  3279. msgctxt "coasting_min_volume description"
  3280. 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."
  3281. msgstr "Nejmenší objem, který by měla mít vytlačovací cesta, než povolí dojezd. U menších vytlačovacích drah se v bowdenové trubici vytvořil menší tlak, a tak se dojezdový objem lineárně upraví. Tato hodnota by měla být vždy větší než dojezdový objem."
  3282. msgctxt "machine_nozzle_cool_down_speed description"
  3283. msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature."
  3284. msgstr "Rychlost (° C / s), kterou tryska ochlazuje, se průměrovala nad oknem normální teploty tisku a pohotovostní teploty."
  3285. msgctxt "machine_nozzle_heat_up_speed description"
  3286. msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature."
  3287. msgstr "Rychlost (° C / s), kterou se tryska zahřívá, se průměruje nad oknem normální teploty tisku a pohotovostní teploty."
  3288. msgctxt "speed_wall_x description"
  3289. 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."
  3290. msgstr "Rychlost tisku všech vnitřních stěn. Tisk vnitřní stěny rychleji než vnější zeď zkracuje dobu tisku. Funguje dobře, když je nastavena mezi rychlostí vnější stěny a rychlostí výplně."
  3291. msgctxt "bridge_skin_speed description"
  3292. msgid "The speed at which bridge skin regions are printed."
  3293. msgstr "Rychlost, při které se tisknou oblasti povrchu mostu."
  3294. msgctxt "speed_infill description"
  3295. msgid "The speed at which infill is printed."
  3296. msgstr "Rychlost tisku výplně."
  3297. msgctxt "speed_print description"
  3298. msgid "The speed at which printing happens."
  3299. msgstr "Rychlost tisku."
  3300. msgctxt "raft_base_speed description"
  3301. 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."
  3302. msgstr "Rychlost tisku základní vrstvy raftu. Toto by se mělo tisknout poměrně pomalu, protože objem materiálu vycházejícího z trysky je poměrně vysoký."
  3303. msgctxt "bridge_wall_speed description"
  3304. msgid "The speed at which the bridge walls are printed."
  3305. msgstr "Rychlost, při které jsou stěny mostu tisknuty."
  3306. msgctxt "cool_fan_speed_0 description"
  3307. 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."
  3308. msgstr "Rychlost, kterou se ventilátory otáčejí na začátku tisku. V následujících vrstvách se rychlost ventilátoru postupně zvyšuje až na vrstvu odpovídající normální rychlosti ventilátoru ve výšce."
  3309. msgctxt "cool_fan_speed_min description"
  3310. 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."
  3311. msgstr "Rychlost, při které se fanoušci točí před dosažením prahu. Když vrstva tiskne rychleji, než je prahová hodnota, rychlost ventilátoru se postupně naklání směrem k maximální rychlosti ventilátoru."
  3312. msgctxt "cool_fan_speed_max description"
  3313. 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."
  3314. msgstr "Rychlost, kterou se fanoušci otáčejí při minimální době vrstvy. Rychlost ventilátoru se postupně zvyšuje mezi normální rychlostí ventilátoru a maximální rychlostí ventilátoru, když je dosaženo prahu."
  3315. msgctxt "retraction_prime_speed description"
  3316. msgid "The speed at which the filament is primed during a retraction move."
  3317. msgstr "Rychlost, se kterou se vlákno během navíjení pohybuje."
  3318. msgctxt "wipe_retraction_prime_speed description"
  3319. msgid "The speed at which the filament is primed during a wipe retraction move."
  3320. msgstr "Rychlost, při které je vlákno aktivováno během pohybu stěrače."
  3321. msgctxt "switch_extruder_prime_speed description"
  3322. msgid "The speed at which the filament is pushed back after a nozzle switch retraction."
  3323. msgstr "Rychlost, při které se vlákno tlačí zpět po změně trysky."
  3324. msgctxt "retraction_speed description"
  3325. msgid "The speed at which the filament is retracted and primed during a retraction move."
  3326. msgstr "Rychlost, při které je vlákno zasunuto a aktivováno během pohybu zasunutí."
  3327. msgctxt "wipe_retraction_speed description"
  3328. msgid "The speed at which the filament is retracted and primed during a wipe retraction move."
  3329. msgstr "Rychlost, při které je vlákno zasunuto a aktivováno během pohybu stěrače."
  3330. msgctxt "switch_extruder_retraction_speed description"
  3331. msgid "The speed at which the filament is retracted during a nozzle switch retract."
  3332. msgstr "Rychlost, kterou je vlákno zasunuto během změny trysky."
  3333. msgctxt "retraction_retract_speed description"
  3334. msgid "The speed at which the filament is retracted during a retraction move."
  3335. msgstr "Rychlost, při které se vlákno během zatahovacího pohybu stahuje."
  3336. msgctxt "wipe_retraction_retract_speed description"
  3337. msgid "The speed at which the filament is retracted during a wipe retraction move."
  3338. msgstr "Rychlost, při které je vlákno zataženo během pohybu stěrače."
  3339. msgctxt "switch_extruder_retraction_speeds description"
  3340. 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."
  3341. msgstr "Rychlost, při které je vlákno zasunuto. Vyšší retrakční rychlost funguje lépe, ale velmi vysoká retrakční rychlost může vést k broušení vlákna."
  3342. msgctxt "speed_support_bottom description"
  3343. 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."
  3344. msgstr "Rychlost tisku potisku podlahy. Tisk s nižší rychlostí může zlepšit přilnutí podpory na váš model."
  3345. msgctxt "speed_support_infill description"
  3346. msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability."
  3347. msgstr "Rychlost tisku výplně podpory. Tisk výplně při nižších rychlostech zvyšuje stabilitu."
  3348. msgctxt "raft_interface_speed description"
  3349. 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."
  3350. msgstr "Rychlost tisku střední vrstvy raftu. Toto by se mělo tisknout poměrně pomalu, protože objem materiálu vycházejícího z trysky je poměrně vysoký."
  3351. msgctxt "speed_wall_0 description"
  3352. 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."
  3353. msgstr "Rychlost tisku vnějších stěn. Tisk vnější stěny nižší rychlostí zlepšuje konečnou kvalitu kůže. Avšak velký rozdíl mezi rychlostí vnitřní stěny a rychlostí vnější stěny negativně ovlivní kvalitu."
  3354. msgctxt "speed_prime_tower description"
  3355. 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."
  3356. msgstr "Rychlost tisku hlavní věže. Pomalejší tisk hlavní věže může zvýšit její stabilitu, je-li adheze mezi různými vlákny suboptimální."
  3357. msgctxt "cool_fan_speed description"
  3358. msgid "The speed at which the print cooling fans spin."
  3359. msgstr "Rychlost otáčení ventilátorů chlazení tisku."
  3360. msgctxt "raft_speed description"
  3361. msgid "The speed at which the raft is printed."
  3362. msgstr "Rychlost, při které se raft tiskne."
  3363. msgctxt "speed_support_interface description"
  3364. msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality."
  3365. msgstr "Rychlost, jakou se potiskují střechy a podlahy podpěry. Jejich tisk nižší rychlostí může zlepšit kvalitu převisu."
  3366. msgctxt "speed_support_roof description"
  3367. msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality."
  3368. msgstr "Rychlost, při které jsou střechy podpěry vytištěny. Jejich tisk nižší rychlostí může zlepšit kvalitu převisu."
  3369. msgctxt "skirt_brim_speed description"
  3370. 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."
  3371. msgstr "Rychlost tisku okraje a límce. Normálně se tak děje při počáteční rychlosti vrstvy, ale někdy můžete chtít okraj nebo límec vytisknout jinou rychlostí."
  3372. msgctxt "speed_support description"
  3373. 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."
  3374. msgstr "Rychlost tisku nosné struktury. Podpora tisku při vyšších rychlostech může výrazně zkrátit dobu tisku. Kvalita povrchu nosné konstrukce není důležitá, protože je odstraněna po tisku."
  3375. msgctxt "raft_surface_speed description"
  3376. 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."
  3377. msgstr "Rychlost tisku horních vrstev raftu. Ty by měly být vytištěny trochu pomaleji, aby tryska mohla pomalu vyhlazovat sousední povrchové linie."
  3378. msgctxt "speed_z_hop description"
  3379. 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."
  3380. msgstr "Rychlost, při které se svislý pohyb Z provádí pro Z Hopy. To je obvykle nižší než rychlost tisku, protože stavba talíře nebo portálového zařízení je obtížnější se pohybovat."
  3381. msgctxt "speed_wall description"
  3382. msgid "The speed at which the walls are printed."
  3383. msgstr "Rychlost, s jakou se stěny tisknou."
  3384. msgctxt "speed_ironing description"
  3385. msgid "The speed at which to pass over the top surface."
  3386. msgstr "Rychlost, kterou musí projít přes horní povrch."
  3387. msgctxt "material_break_speed description"
  3388. msgid "The speed at which to retract the filament in order to break it cleanly."
  3389. msgstr "Rychlost, kterou se má vlákno navíjet zpět, aby se čistě přerušilo."
  3390. msgctxt "speed_roofing description"
  3391. msgid "The speed at which top surface skin layers are printed."
  3392. msgstr "Rychlost tisku povrchových vrstev povrchu."
  3393. msgctxt "speed_topbottom description"
  3394. msgid "The speed at which top/bottom layers are printed."
  3395. msgstr "Rychlost tisku horní a dolní vrstvy."
  3396. msgctxt "speed_travel description"
  3397. msgid "The speed at which travel moves are made."
  3398. msgstr "Rychlost, jakou se dělají pohyby."
  3399. msgctxt "coasting_speed description"
  3400. 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."
  3401. msgstr "Rychlost, kterou se má pohybovat během dojezdu, relativně k rychlosti vytlačovací dráhy. Doporučuje se hodnota mírně pod 100%, protože během jízdy se pohybuje tlak v bowdenové trubici."
  3402. msgctxt "speed_layer_0 description"
  3403. 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."
  3404. msgstr "Rychlost počáteční vrstvy. Doporučuje se nižší hodnota pro zlepšení přilnavosti k montážní desce. Nemá vliv na samotné struktury pro přilnavost k podložce (např. límec a raft)."
  3405. msgctxt "speed_print_layer_0 description"
  3406. msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate."
  3407. msgstr "Rychlost tisku pro počáteční vrstvu. Doporučuje se nižší hodnota pro zlepšení přilnavosti k montážní desce."
  3408. msgctxt "speed_travel_layer_0 description"
  3409. 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."
  3410. msgstr "Rychlost pohybu se pohybuje v počáteční vrstvě. Doporučuje se nižší hodnota, aby nedocházelo k tažení dříve potištěných částí pryč od sestavovací desky. Hodnota tohoto nastavení lze automaticky vypočítat z poměru mezi rychlostí cestování a rychlostí tisku."
  3411. msgctxt "material_break_temperature description"
  3412. msgid "The temperature at which the filament is broken for a clean break."
  3413. msgstr "Teplota, při které je filament možno přerušit pro čisté přerušení."
  3414. msgctxt "build_volume_temperature description"
  3415. msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted."
  3416. msgstr "Teplota prostředí, ve kterém se má tisknout. Pokud je to 0, nebude se brát teplota prostředí v potaz."
  3417. msgctxt "material_standby_temperature description"
  3418. msgid "The temperature of the nozzle when another nozzle is currently used for printing."
  3419. msgstr "Teplota trysky, když je pro tisk aktuálně použita jiná tryska."
  3420. msgctxt "material_final_print_temperature description"
  3421. msgid "The temperature to which to already start cooling down just before the end of printing."
  3422. msgstr "Teplota, na kterou se má začít ochlazovat těsně před koncem tisku."
  3423. msgctxt "material_print_temperature_layer_0 description"
  3424. msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer."
  3425. msgstr "Teplota, která se používá pro tisk první vrstvy."
  3426. msgctxt "material_print_temperature description"
  3427. msgid "The temperature used for printing."
  3428. msgstr "Teplota, která se používá pro tisk."
  3429. msgctxt "material_bed_temperature_layer_0 description"
  3430. 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."
  3431. msgstr "Teplota použitá pro vyhřívanou podložku při první vrstvě. Pokud je to 0, podložka se při první vrstvě vyhřívat nebude."
  3432. msgctxt "material_bed_temperature description"
  3433. msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated."
  3434. msgstr "Teplota použitá pro vyhřívanou podložku. Pokud je to 0, podložka se vyhřívat nebude."
  3435. msgctxt "material_break_preparation_temperature description"
  3436. msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature."
  3437. msgstr "Teplota použitá k čištění materiálu by měla být zhruba stejná jako nejvyšší možná teplota tisku."
  3438. msgctxt "bottom_thickness description"
  3439. msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers."
  3440. msgstr "Tloušťka spodních vrstev v tisku. Tato hodnota dělená výškou vrstvy definuje počet spodních vrstev."
  3441. msgctxt "skin_edge_support_thickness description"
  3442. msgid "The thickness of the extra infill that supports skin edges."
  3443. msgstr "Tloušťka další výplně, která podporuje okraje povrchu."
  3444. msgctxt "support_interface_height description"
  3445. msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top."
  3446. msgstr "Tloušťka rozhraní podpěry, kde se dotýká modelu na spodní nebo horní straně."
  3447. msgctxt "support_bottom_height description"
  3448. 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."
  3449. msgstr "Tloušťka nosných podlah. Tím se řídí počet hustých vrstev, které jsou vytištěny na místech modelu, na kterých leží podpora."
  3450. msgctxt "support_roof_height description"
  3451. 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."
  3452. msgstr "Tloušťka nosných střech. Tím se řídí množství hustých vrstev v horní části nosiče, na kterém model spočívá."
  3453. msgctxt "top_thickness description"
  3454. msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers."
  3455. msgstr "Tloušťka horních vrstev v tisku. Tato hodnota dělená výškou vrstvy definuje počet vrchních vrstev."
  3456. msgctxt "top_bottom_thickness description"
  3457. 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."
  3458. msgstr "Tloušťka horní / dolní vrstvy v tisku. Tato hodnota dělená výškou vrstvy definuje počet vrstev horní / dolní."
  3459. msgctxt "wall_thickness description"
  3460. msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls."
  3461. msgstr "Tloušťka stěn v horizontálním směru. Tato hodnota dělená šířkou čáry stěny definuje počet stěn."
  3462. msgctxt "infill_sparse_thickness description"
  3463. msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded."
  3464. msgstr "Tloušťka výplňového materiálu na vrstvu. Tato hodnota by měla být vždy násobkem výšky vrstvy a je jinak zaoblená."
  3465. msgctxt "support_infill_sparse_thickness description"
  3466. msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded."
  3467. msgstr "Tloušťka na vrstvu nosného výplňového materiálu. Tato hodnota by měla být vždy násobkem výšky vrstvy a je jinak zaoblená."
  3468. msgctxt "machine_gcode_flavor description"
  3469. msgid "The type of g-code to be generated."
  3470. msgstr "Typ generovaného g-kódu."
  3471. msgctxt "coasting_volume description"
  3472. msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed."
  3473. msgstr "Objem jinak vytekl. Tato hodnota by měla být obecně blízká průměru trysek."
  3474. msgctxt "machine_width description"
  3475. msgid "The width (X-direction) of the printable area."
  3476. msgstr "Šířka (Osa X) plochy k tisku."
  3477. msgctxt "support_brim_width description"
  3478. 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."
  3479. msgstr "Šířka okraje pro tisk pod podpěrou. Větší okraj zvyšuje přilnavost ke podložce za cenu nějakého dalšího materiálu."
  3480. msgctxt "interlocking_beam_width description"
  3481. msgid "The width of the interlocking structure beams."
  3482. msgstr "Šířka paprsků vzájemného propletení."
  3483. msgctxt "prime_tower_size description"
  3484. msgid "The width of the prime tower."
  3485. msgstr "Šířka hlavní věže."
  3486. msgctxt "magic_fuzzy_skin_thickness description"
  3487. msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered."
  3488. msgstr "Šířka, do které se chvěje. Doporučuje se to udržovat pod šířkou vnější stěny, protože vnitřní stěny zůstávají nezměněny."
  3489. msgctxt "retraction_extrusion_window description"
  3490. 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."
  3491. msgstr "Okno, ve kterém je vynucován maximální počet stažení. Tato hodnota by měla být přibližně stejná jako retrakční vzdálenost, takže je účinně omezen počet opakování protažení stejnou vrstvou materiálu."
  3492. msgctxt "prime_tower_position_x description"
  3493. msgid "The x coordinate of the position of the prime tower."
  3494. msgstr "Souřadnice X polohy hlavní věže."
  3495. msgctxt "prime_tower_position_y description"
  3496. msgid "The y coordinate of the position of the prime tower."
  3497. msgstr "Souřadnice Y polohy hlavní věže."
  3498. msgctxt "support_meshes_present description"
  3499. msgid "There are support meshes present in the scene. This setting is controlled by Cura."
  3500. msgstr "Ve scéně existují podpůrné masky. Toto nastavení je kontrolováno Curou."
  3501. msgctxt "bridge_wall_coast description"
  3502. 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."
  3503. msgstr "Tím se řídí vzdálenost, kterou by extrudér měl dojet bezprostředně před začátkem zdi mostu. Pobyt před startem můstku může snížit tlak v trysce a může vést k ploššímu můstku."
  3504. msgctxt "raft_smoothing description"
  3505. 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."
  3506. msgstr "Toto nastavení řídí, kolik vnitřních rohů v obrysu raftů je zaobleno. Vnitřní rohy jsou zaokrouhleny na půlkruh s poloměrem rovným zde uvedené hodnotě. Toto nastavení také odstraní otvory v obrysu raftu, které jsou menší než takový kruh."
  3507. msgctxt "retraction_count_max description"
  3508. 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."
  3509. msgstr "Toto nastavení omezuje počet stažení, ke kterým dochází v okně minimální vzdálenosti vytlačování. Další stažení v tomto okně budou ignorovány. Tím se zabrání opakovanému navíjení na stejný kus vlákna, protože to může vlákno zploštit a způsobit problémy s broušením."
  3510. msgctxt "draft_shield_enabled description"
  3511. 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."
  3512. msgstr "Tím se vytvoří kolem modelu zeď, která zachycuje (horký) vzduch a chrání před vnějším proudem vzduchu. Obzvláště užitečné pro materiály, které se snadno deformují."
  3513. msgctxt "support_tree_tip_diameter label"
  3514. msgid "Tip Diameter"
  3515. msgstr "Průměr konečků"
  3516. msgctxt "material_shrinkage_percentage_xy description"
  3517. 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)."
  3518. msgstr "Model bude zvětšen tímto faktorem ve směru XY (horizontálně), aby bylo kompenzováno smrštění materiálu po vychladnutí."
  3519. msgctxt "material_shrinkage_percentage_z description"
  3520. 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)."
  3521. msgstr "Model bude zvětšen tímto faktorem ve směru Z (vertikálně), aby bylo kompenzováno smrštění materiálu po vychladnutí."
  3522. msgctxt "material_shrinkage_percentage description"
  3523. msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor."
  3524. msgstr "Model bude zvětšen tímto faktorem, aby bylo kompenzováno smrštění materiálu po vychladnutí."
  3525. msgctxt "top_layers label"
  3526. msgid "Top Layers"
  3527. msgstr "Vrchní vrstvy"
  3528. msgctxt "top_skin_expand_distance label"
  3529. msgid "Top Skin Expand Distance"
  3530. msgstr "Horní vzdálenost rozšíření povrchu"
  3531. msgctxt "top_skin_preshrink label"
  3532. msgid "Top Skin Removal Width"
  3533. msgstr "Horní šířka odstranění povrchu"
  3534. msgctxt "acceleration_roofing label"
  3535. msgid "Top Surface Skin Acceleration"
  3536. msgstr "Akcelerace tisku horního povrchu"
  3537. msgctxt "roofing_extruder_nr label"
  3538. msgid "Top Surface Skin Extruder"
  3539. msgstr "Nejvyšší povrchový extrudér"
  3540. msgctxt "roofing_material_flow label"
  3541. msgid "Top Surface Skin Flow"
  3542. msgstr "Nejlepší horní povrchový tok"
  3543. msgctxt "jerk_roofing label"
  3544. msgid "Top Surface Skin Jerk"
  3545. msgstr "Okamžitá rychlost při tisku horního povrchu"
  3546. msgctxt "roofing_layer_count label"
  3547. msgid "Top Surface Skin Layers"
  3548. msgstr "Nejvyšší povrchová vrstva"
  3549. msgctxt "roofing_angles label"
  3550. msgid "Top Surface Skin Line Directions"
  3551. msgstr "Pokyny pro horní povrchovou linii"
  3552. msgctxt "roofing_line_width label"
  3553. msgid "Top Surface Skin Line Width"
  3554. msgstr "Nejvyšší šířka linie povrchu"
  3555. msgctxt "roofing_pattern label"
  3556. msgid "Top Surface Skin Pattern"
  3557. msgstr "Vzor horního povrchu"
  3558. msgctxt "speed_roofing label"
  3559. msgid "Top Surface Skin Speed"
  3560. msgstr "Rychlost tisku horního povrchu"
  3561. msgctxt "top_thickness label"
  3562. msgid "Top Thickness"
  3563. msgstr "Vrchní tloušťka"
  3564. msgctxt "max_skin_angle_for_expansion description"
  3565. 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."
  3566. msgstr "Horní a/nebo dolní povrchy objektu s větším úhlem, než je toto nastavení, nebudou mít své horní/spodní povrchy rozšířeny. Tím se zabrání rozšíření úzkých oblastí, které jsou vytvořeny, když má povrch modelu téměř svislý sklon. Úhel 0° je vodorovný a způsobí, že žádný povrch nebude rozšířen, zatímco úhel 90° je svislý a způsobí, že všechny povrchy budou rozšířeny."
  3567. msgctxt "top_bottom description"
  3568. msgid "Top/Bottom"
  3569. msgstr "Vrch/spodek"
  3570. msgctxt "top_bottom label"
  3571. msgid "Top/Bottom"
  3572. msgstr "Vrch/spodek"
  3573. msgctxt "acceleration_topbottom label"
  3574. msgid "Top/Bottom Acceleration"
  3575. msgstr "Akcelerace tisku nahoře/dole"
  3576. msgctxt "top_bottom_extruder_nr label"
  3577. msgid "Top/Bottom Extruder"
  3578. msgstr "Vrchní/spodní extruder"
  3579. msgctxt "skin_material_flow label"
  3580. msgid "Top/Bottom Flow"
  3581. msgstr "Horní/spodní průtok"
  3582. msgctxt "jerk_topbottom label"
  3583. msgid "Top/Bottom Jerk"
  3584. msgstr "Okamžitá rychlost při tisku vršku/spodku"
  3585. msgctxt "skin_angles label"
  3586. msgid "Top/Bottom Line Directions"
  3587. msgstr "Pokyny pro horní a dolní řádek"
  3588. msgctxt "skin_line_width label"
  3589. msgid "Top/Bottom Line Width"
  3590. msgstr "Horní/dolní šířka čáry"
  3591. msgctxt "top_bottom_pattern label"
  3592. msgid "Top/Bottom Pattern"
  3593. msgstr "Vrchní/spodní vzor"
  3594. msgctxt "speed_topbottom label"
  3595. msgid "Top/Bottom Speed"
  3596. msgstr "Rychlost tisku horní/spodní vrstvy"
  3597. msgctxt "top_bottom_thickness label"
  3598. msgid "Top/Bottom Thickness"
  3599. msgstr "Vrchní/spodní tloušťka"
  3600. msgctxt "support_type option buildplate"
  3601. msgid "Touching Buildplate"
  3602. msgstr "Dotýká se podložky"
  3603. msgctxt "support_tower_diameter label"
  3604. msgid "Tower Diameter"
  3605. msgstr "Průměr věže"
  3606. msgctxt "support_tower_roof_angle label"
  3607. msgid "Tower Roof Angle"
  3608. msgstr "Úhel střechy věže"
  3609. msgctxt "mesh_rotation_matrix description"
  3610. msgid "Transformation matrix to be applied to the model when loading it from file."
  3611. msgstr "Transformační matice, která se použije na model při načítání ze souboru."
  3612. msgctxt "travel label"
  3613. msgid "Travel"
  3614. msgstr "Pohyb"
  3615. msgctxt "acceleration_travel label"
  3616. msgid "Travel Acceleration"
  3617. msgstr "Cestovní akcelerace"
  3618. msgctxt "travel_avoid_distance label"
  3619. msgid "Travel Avoid Distance"
  3620. msgstr "Vzdálenost vyhnutí se při pohybu"
  3621. msgctxt "jerk_travel label"
  3622. msgid "Travel Jerk"
  3623. msgstr "Okamžitá rychlost při cestování"
  3624. msgctxt "speed_travel label"
  3625. msgid "Travel Speed"
  3626. msgstr "Cestovní rychlost"
  3627. msgctxt "magic_mesh_surface_mode description"
  3628. 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."
  3629. msgstr "S modelem zacházejte pouze jako s povrchem, objemem nebo objemy s volnými povrchy. Normální režim tisku tiskne pouze uzavřené svazky. „Povrch“ vytiskne jedinou stěnu, která sleduje povrch oka bez výplně a bez horní / dolní povrch. „Oba“ tiskne uzavřené svazky jako normální a všechny zbývající polygony jako povrchy."
  3630. msgctxt "support_structure option tree"
  3631. msgid "Tree"
  3632. msgstr "Strom"
  3633. msgctxt "infill_pattern option trihexagon"
  3634. msgid "Tri-Hexagon"
  3635. msgstr "Tri-Hexagony"
  3636. msgctxt "infill_pattern option triangles"
  3637. msgid "Triangles"
  3638. msgstr "Trojúhelníky"
  3639. msgctxt "support_bottom_pattern option triangles"
  3640. msgid "Triangles"
  3641. msgstr "Trojúhelníky"
  3642. msgctxt "support_interface_pattern option triangles"
  3643. msgid "Triangles"
  3644. msgstr "Trojúhelníky"
  3645. msgctxt "support_pattern option triangles"
  3646. msgid "Triangles"
  3647. msgstr "Trojúhelníky"
  3648. msgctxt "support_roof_pattern option triangles"
  3649. msgid "Triangles"
  3650. msgstr "Trojúhelníky"
  3651. msgctxt "support_tree_max_diameter label"
  3652. msgid "Trunk Diameter"
  3653. msgstr "Průměr kmene"
  3654. msgctxt "machine_gcode_flavor option UltiGCode"
  3655. msgid "Ultimaker 2"
  3656. msgstr "Ultimaker 2"
  3657. msgctxt "meshfix_union_all label"
  3658. msgid "Union Overlapping Volumes"
  3659. msgstr "Spojit překrývající se objekty"
  3660. msgctxt "bridge_wall_min_length description"
  3661. 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."
  3662. msgstr "Nepodporované stěny kratší než tato budou vytištěny pomocí běžného nastavení zdi. Delší nepodporované stěny budou vytištěny pomocí nastavení mostní zdi."
  3663. msgctxt "adaptive_layer_height_enabled label"
  3664. msgid "Use Adaptive Layers"
  3665. msgstr "Použít adaptivní vrstvy"
  3666. msgctxt "support_use_towers label"
  3667. msgid "Use Towers"
  3668. msgstr "Používat věže"
  3669. msgctxt "acceleration_travel_enabled description"
  3670. 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."
  3671. msgstr "Použít jiné samostatné akcelerace pro cestovní pohyby. Pokud je vypnuto, pak budou cestovní pohyby používat hodnotu akcelerace podle tištěné čáry v cíli pohybu."
  3672. msgctxt "jerk_travel_enabled description"
  3673. 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."
  3674. msgstr "Použít samostatné nastavení okamžité rychlosti pro cestovní pohyby. Pokud je vypnuto, pak budou cestovní pohyby používat hodnotu okamžité rychlosti podle tištěné čáry v cíli pohybu."
  3675. msgctxt "relative_extrusion description"
  3676. 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."
  3677. msgstr "Použijte spíše relativní extruzi než absolutní extruzi. Použití relativních E-kroků usnadňuje následné zpracování g-kódu. Není však podporována všemi tiskárnami a může vést k velmi malým odchylkám v množství ukládaného materiálu ve srovnání s absolutními kroky E. Bez ohledu na toto nastavení bude režim vytlačování vždy nastaven na absolutní před výstupem jakéhokoli skriptu g-kódu."
  3678. msgctxt "support_use_towers description"
  3679. 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."
  3680. msgstr "K podpoře malých převislých oblastí použijte specializované věže. Tyto věže mají větší průměr než oblast, kterou podporují. V blízkosti převisu se průměr věží zmenšuje a vytváří střechu."
  3681. msgctxt "infill_mesh description"
  3682. 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."
  3683. msgstr "Pomocí této mřížky můžete upravit výplň dalších sítí, s nimiž se překrývá. Nahrazuje výplňové oblasti jiných sítí oblastmi pro tuto síť. Pro tuto mřížku se doporučuje tisknout pouze jednu zeď a žádnou horní / dolní vrstvu."
  3684. msgctxt "support_mesh description"
  3685. msgid "Use this mesh to specify support areas. This can be used to generate support structure."
  3686. msgstr "Pomocí této sítě můžete určit oblasti podpory. To lze použít ke generování podpůrné struktury."
  3687. msgctxt "anti_overhang_mesh description"
  3688. 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."
  3689. msgstr "Pomocí této mřížky určete, kde by žádná část modelu neměla být detekována jako převis. To lze použít k odstranění nežádoucí podpůrné struktury."
  3690. msgctxt "z_seam_type option back"
  3691. msgid "User Specified"
  3692. msgstr "Uživatelem specifikováno"
  3693. msgctxt "material_shrinkage_percentage_z label"
  3694. msgid "Vertical Scaling Factor Shrinkage Compensation"
  3695. msgstr "Vertikální faktor zvětšení pro kompenzaci smrštění"
  3696. msgctxt "slicing_tolerance description"
  3697. 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."
  3698. msgstr "Vertikální tolerance ve slicovaných vrstvách. Obrysy vrstvy jsou obvykle vytvářeny průřezy středem tloušťky každé vrstvy (uprostřed). Alternativně každá vrstva může mít oblasti, které spadají dovnitř objemu po celé tloušťce vrstvy (Exkluzivní), nebo vrstva má oblasti, které padají dovnitř kdekoli v rámci vrstvy (Inkluzivní). Inclusive si zachovává nejpodrobnější detaily, Exclusive dělá to nejlepší a Middle zůstává co nejblíže původnímu povrchu."
  3699. msgctxt "material_bed_temp_wait label"
  3700. msgid "Wait for Build Plate Heatup"
  3701. msgstr "Čekat na zahřátí desky"
  3702. msgctxt "material_print_temp_wait label"
  3703. msgid "Wait for Nozzle Heatup"
  3704. msgstr "Čekat na zahřátí trysek"
  3705. msgctxt "acceleration_wall label"
  3706. msgid "Wall Acceleration"
  3707. msgstr "Akcelerace tisku zdi"
  3708. msgctxt "wall_distribution_count label"
  3709. msgid "Wall Distribution Count"
  3710. msgstr "Počet čar zdí měnících šířku"
  3711. msgctxt "wall_extruder_nr label"
  3712. msgid "Wall Extruder"
  3713. msgstr "Extruder zdi"
  3714. msgctxt "wall_material_flow label"
  3715. msgid "Wall Flow"
  3716. msgstr "Průtok u zdi"
  3717. msgctxt "jerk_wall label"
  3718. msgid "Wall Jerk"
  3719. msgstr "Okamžitá rychlost při tisku zdi"
  3720. msgctxt "wall_line_count label"
  3721. msgid "Wall Line Count"
  3722. msgstr "Počet čar zdi"
  3723. msgctxt "wall_line_width label"
  3724. msgid "Wall Line Width"
  3725. msgstr "Šířka čáry stěny"
  3726. msgctxt "inset_direction label"
  3727. msgid "Wall Ordering"
  3728. msgstr "Pořadí tisku zdí"
  3729. msgctxt "speed_wall label"
  3730. msgid "Wall Speed"
  3731. msgstr "Rychlost tisku zdi"
  3732. msgctxt "wall_thickness label"
  3733. msgid "Wall Thickness"
  3734. msgstr "Tloušťka stěny"
  3735. msgctxt "wall_transition_length label"
  3736. msgid "Wall Transition Length"
  3737. msgstr "Délka změny počtu čar zdí"
  3738. msgctxt "wall_transition_filter_distance label"
  3739. msgid "Wall Transitioning Filter Distance"
  3740. msgstr "Minimální vzdálenost změny počtu čar zdí"
  3741. msgctxt "wall_transition_filter_deviation label"
  3742. msgid "Wall Transitioning Filter Margin"
  3743. msgstr "Rezerva pro změnu počtu čar zdí"
  3744. msgctxt "wall_transition_angle label"
  3745. msgid "Wall Transitioning Threshold Angle"
  3746. msgstr "Prahový úhel pro změnu počtu čar zdí"
  3747. msgctxt "shell label"
  3748. msgid "Walls"
  3749. msgstr "Stěny"
  3750. msgctxt "wall_overhang_angle description"
  3751. 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."
  3752. msgstr "Stěny, které přesahují více než tento úhel, budou vytištěny pomocí nastavení převislých stěn. Pokud je hodnota 90, nebudou se žádné stěny považovat za převislé. Převis, který je podporován podporou, nebude považován ani za převis."
  3753. msgctxt "support_interface_skip_height description"
  3754. 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."
  3755. msgstr "Při kontrole, kde je model nad a pod podpěrou, proveďte kroky dané výšky. Nižší hodnoty se budou řezat pomaleji, zatímco vyšší hodnoty mohou způsobit tisk normální podpory na místech, kde mělo být rozhraní podpory."
  3756. msgctxt "meshfix_fluid_motion_enabled description"
  3757. msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions."
  3758. msgstr ""
  3759. msgctxt "infill_enable_travel_optimization description"
  3760. 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."
  3761. msgstr "Je-li tato funkce povolena, je pořadí, ve kterém jsou vyplněny řádky výplně, optimalizováno, aby se snížila ujetá vzdálenost. Zkrácení doby cestování dosažené velmi záleží na modelu, který je nakrájen, vzor výplně, hustota atd. U některých modelů, které mají mnoho malých oblastí výplně, může být doba krájení modelu značně prodloužena."
  3762. msgctxt "support_fan_enable description"
  3763. msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support."
  3764. msgstr "Je-li tato funkce povolena, mění se rychlost ventilátoru chlazení tisku pro oblasti kůže bezprostředně nad podporou."
  3765. msgctxt "z_seam_relative description"
  3766. 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."
  3767. msgstr "Pokud je tato možnost povolena, jsou souřadnice z švu vztaženy ke středu každé součásti. Pokud je zakázána, souřadnice definují absolutní polohu na sestavovací desce."
  3768. msgctxt "retraction_combing_max_distance description"
  3769. 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."
  3770. msgstr "Pokud je větší než nula, combingové pohyby delší než tato vzdálenost budou používat retrakci. Nula znamená, že se při combingových pohybech retrakce provádět nebudou."
  3771. msgctxt "hole_xy_offset_max_diameter description"
  3772. 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."
  3773. msgstr "Když je větší než nula, Horizontální expanze díry je stupňovitě aplikována na malé díry (malé díry jsou zvětšovány více). Pokud je nastavení nula, Horizontální expanze díry bude aplikována na všechny díry. Díry větší, než Maximální průměr horizontální expanze díry nebudou zvětšeny."
  3774. msgctxt "hole_xy_offset description"
  3775. msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter."
  3776. msgstr ""
  3777. msgctxt "bridge_skin_material_flow description"
  3778. msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
  3779. msgstr "Při tisku oblastí povrchu můstku je množství vytlačovaného materiálu násobeno touto hodnotou."
  3780. msgctxt "bridge_wall_material_flow description"
  3781. msgid "When printing bridge walls, the amount of material extruded is multiplied by this value."
  3782. msgstr "Při tisku stěn můstku je množství vytlačovaného materiálu násobeno touto hodnotou."
  3783. msgctxt "bridge_skin_material_flow_2 description"
  3784. msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value."
  3785. msgstr "Při tisku druhé vrstvy potahu se množství vytlačovaného materiálu násobí touto hodnotou."
  3786. msgctxt "bridge_skin_material_flow_3 description"
  3787. msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value."
  3788. msgstr "Při tisku třetí vrstvy potahu se množství vytlačovaného materiálu násobí touto hodnotou."
  3789. msgctxt "cool_lift_head description"
  3790. 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."
  3791. msgstr "Pokud je minimální rychlost zasažena z důvodu minimálního času vrstvy, zvedněte hlavu z tisku a vyčkejte další čas, dokud není dosaženo minimálního času vrstvy."
  3792. msgctxt "skin_no_small_gaps_heuristic description"
  3793. 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."
  3794. msgstr "Pokud má model malé svislé mezery pouze v několika vrstvách, měla by být kolem těchto vrstev v úzkém prostoru normální povrch. Povolte toto nastavení, abyste nevytvořili vzhled, pokud je vertikální mezera velmi malá. To zlepšuje dobu tisku a slicování, ale technicky zůstává výplň vystavena vzduchu."
  3795. msgctxt "wall_transition_angle description"
  3796. 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."
  3797. msgstr "Určuje, kdy se bude měnit počet čar zdí. Pokud se v modelu vyskytuje tvar klínu s úhlem přesahujícím hodnotu tohoto nastavení, nebudou se pro vyplnění prostoru uprostřed používat sbíhající se čáry zdí s proměnlivou šířkou. Snížením této hodnoty se snižuje počet a délka těchto prostředních zdí, ale může zůstávat více mezer nebo nadměrná extruze."
  3798. msgctxt "wall_transition_length description"
  3799. 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."
  3800. msgstr "Když dochází k přechodu mezi různými počty čar zdí v místě, kde se část stává užší, je určitý prostor vyhrazen pro rozdělení nebo spojení čar zdí."
  3801. msgctxt "wipe_hop_enable description"
  3802. 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."
  3803. msgstr "Při stírání se podložka spustí, aby se vytvořila vůle mezi tryskou a tiskem. Zabraňuje tomu, aby tryska narazila na tisk během pohybů, což snižuje šanci vyrazit tisk z montážní desky."
  3804. msgctxt "retraction_hop_enabled description"
  3805. 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."
  3806. msgstr "Kdykoli je provedeno zasunutí, sestavovací deska se spustí, aby se vytvořila vůle mezi tryskou a tiskem. Zabraňuje tomu, aby tryska narazila na tisk během pohybů, což snižuje šanci vyrazit tisk z montážní desky."
  3807. msgctxt "support_xy_overrides_z description"
  3808. 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."
  3809. msgstr "Zda podpůrná vzdálenost X / Y přepíše podpůrnou vzdálenost Z nebo naopak. Když X / Y přepíše Z, X / Y vzdálenost může vytlačit podporu z modelu, což ovlivňuje skutečnou Z vzdálenost k převisu. Můžeme to zakázat tím, že nepoužijeme vzdálenost X / Y kolem převisů."
  3810. msgctxt "machine_center_is_zero description"
  3811. msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area."
  3812. msgstr "Zda jsou souřadnice X / Y nulové polohy tiskárny ve středu tisknutelné oblasti."
  3813. msgctxt "machine_endstop_positive_direction_x description"
  3814. msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)."
  3815. msgstr "Zda koncový doraz osy X je v kladném směru (vysoká souřadnice X) nebo záporný (souřadnice nízké X)."
  3816. msgctxt "machine_endstop_positive_direction_y description"
  3817. msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)."
  3818. msgstr "Zda koncový doraz osy X je v kladném směru (vysoká souřadnice X) nebo záporný (souřadnice nízké X)...."
  3819. msgctxt "machine_endstop_positive_direction_z description"
  3820. msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)."
  3821. msgstr "Zda je koncová zarážka osy Z v kladném směru (vysoká souřadnice Z) nebo záporná (souřadnice nízké Z)."
  3822. msgctxt "machine_extruders_share_heater description"
  3823. msgid "Whether the extruders share a single heater rather than each extruder having its own heater."
  3824. msgstr "Zda extrudéry sdílejí jeden ohřívač spíše než každý extrudér mající svůj vlastní ohřívač."
  3825. msgctxt "machine_extruders_share_nozzle description"
  3826. 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."
  3827. msgstr "Určuje, zda extrudery sdílí jednu trysku namísto, aby měl každý extruder svou vlastní trysku. Pokud je zvoleno, předpokládá se, že počáteční G kód tiskárny správně nastaví všechny extrudery do známého stavu, který je vzájemně kompatibilní (všechny filamenty jsou zatažené nebo jen jeden je nezatažený). V tomto případě je počáteční stav zatažení určen pro každý extruder parametrem 'machine_extruders_shared_nozzle_initial_retraction'."
  3828. msgctxt "machine_heated_bed description"
  3829. msgid "Whether the machine has a heated build plate present."
  3830. msgstr "Zda má stroj vyhřívanou podložku."
  3831. msgctxt "machine_heated_build_volume description"
  3832. msgid "Whether the machine is able to stabilize the build volume temperature."
  3833. msgstr "Zda je zařízení schopno stabilizovat teplotu podložky."
  3834. msgctxt "center_object description"
  3835. 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."
  3836. msgstr "Zda centrovat objekt uprostřed podložky (0,0), místo použití souřadnicového systému, ve kterém byl objekt uložen."
  3837. msgctxt "machine_nozzle_temp_enabled description"
  3838. msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura."
  3839. msgstr "Zda ovládat teplotu z Cury. Vypnutím této funkce můžete regulovat teplotu trysek z vnějšku Cury."
  3840. msgctxt "material_bed_temp_prepend description"
  3841. 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."
  3842. msgstr "Zda zahrnout příkazy pro sestavení teploty desky na začátku gcode. Pokud start_gcode již obsahuje příkazy teploty desky, Cura frontend toto nastavení automaticky deaktivuje."
  3843. msgctxt "material_print_temp_prepend description"
  3844. 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."
  3845. msgstr "Zda zahrnout příkazy teploty trysek na začátku gcode. Pokud start_gcode již obsahuje příkazy teploty trysek, Cura frontend toto nastavení automaticky deaktivuje."
  3846. msgctxt "clean_between_layers description"
  3847. 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."
  3848. msgstr "Zda se má G-kód stírat tryskou mezi vrstvami (maximálně 1 na vrstvu). Povolení tohoto nastavení by mohlo ovlivnit chování zatahování při změně vrstvy. Použijte nastavení retrakce čištění pro kontrolu stažení ve vrstvách, kde bude fungovat skript."
  3849. msgctxt "material_bed_temp_wait description"
  3850. msgid "Whether to insert a command to wait until the build plate temperature is reached at the start."
  3851. msgstr "Zda se má vložit příkaz k čekání, až se dosáhne teploty podložky na začátku."
  3852. msgctxt "prime_blob_enable description"
  3853. 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."
  3854. msgstr "Zda se vlákno před tiskem připraví blobem. Zapnutím tohoto nastavení zajistíte, že extrudér bude mít před tiskem materiál připravený v trysce. Tisk límce nebo okraje může také fungovat jako základní nátěr, takže vypnutí tohoto nastavení ušetří čas."
  3855. msgctxt "print_sequence description"
  3856. 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."
  3857. msgstr "Zda tisknout všechny modely po jedné vrstvě najednou, nebo počkat na dokončení jednoho modelu, než se přesunete k další. Jeden za časovým režimem je možný, pokud a) je povolen pouze jeden extrudér a b) všechny modely jsou odděleny tak, že celá tisková hlava se může pohybovat mezi a všechny modely jsou menší než vzdálenost mezi tryskou a X / Osy Y."
  3858. msgctxt "machine_show_variants description"
  3859. msgid "Whether to show the different variants of this machine, which are described in separate json files."
  3860. msgstr "Zda se mají zobrazit různé varianty tohoto zařízení, které jsou popsány v samostatných souborech json."
  3861. msgctxt "machine_firmware_retract description"
  3862. msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material."
  3863. msgstr "Zda se mají použít příkazy pro retrakci firmwaru (G10 / G11) namísto použití vlastnosti E v příkazech G1 pro stažení materiálu."
  3864. msgctxt "material_print_temp_wait description"
  3865. msgid "Whether to wait until the nozzle temperature is reached at the start."
  3866. msgstr "Zda čekat na dosažení teploty trysky na začátku."
  3867. msgctxt "infill_line_width description"
  3868. msgid "Width of a single infill line."
  3869. msgstr "Šířka jedné výplně."
  3870. msgctxt "support_interface_line_width description"
  3871. msgid "Width of a single line of support roof or floor."
  3872. msgstr "Šířka jedné řady nosných střech nebo podlah."
  3873. msgctxt "roofing_line_width description"
  3874. msgid "Width of a single line of the areas at the top of the print."
  3875. msgstr "Šířka jedné řady oblastí v horní části tisku."
  3876. msgctxt "line_width description"
  3877. 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."
  3878. msgstr "Šířka jedné řádky. Obecně by šířka každé linie měla odpovídat šířce trysky. Avšak mírné snížení této hodnoty by mohlo vést k lepším výtiskům."
  3879. msgctxt "prime_tower_line_width description"
  3880. msgid "Width of a single prime tower line."
  3881. msgstr "Šířka jedné hlavní věže."
  3882. msgctxt "skirt_brim_line_width description"
  3883. msgid "Width of a single skirt or brim line."
  3884. msgstr "Šířka čáry okraje nebo límce."
  3885. msgctxt "support_bottom_line_width description"
  3886. msgid "Width of a single support floor line."
  3887. msgstr "Šířka jedné podpůrné podlahové linie."
  3888. msgctxt "support_roof_line_width description"
  3889. msgid "Width of a single support roof line."
  3890. msgstr "Šířka jedné podpůrné linie střechy."
  3891. msgctxt "support_line_width description"
  3892. msgid "Width of a single support structure line."
  3893. msgstr "Šířka jedné linie podpůrné struktury."
  3894. msgctxt "skin_line_width description"
  3895. msgid "Width of a single top/bottom line."
  3896. msgstr "Šířka jedné horní/spodní čáry."
  3897. msgctxt "wall_line_width_x description"
  3898. msgid "Width of a single wall line for all wall lines except the outermost one."
  3899. msgstr "Šířka jedné linie stěny pro všechny linie stěny kromě té nejvíce venkovní."
  3900. msgctxt "wall_line_width description"
  3901. msgid "Width of a single wall line."
  3902. msgstr "Šířka jedné stěny."
  3903. msgctxt "raft_base_line_width description"
  3904. msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion."
  3905. msgstr "Šířka čar v základní vrstvě raftu. Měly by to být silné čáry, které napomáhají při přilnutí desky."
  3906. msgctxt "raft_interface_line_width description"
  3907. 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."
  3908. msgstr "Šířka čar ve střední vrstvě raftu. Další vytlačování druhé vrstvy způsobí, že se linie přilepí na podložku."
  3909. msgctxt "raft_surface_line_width description"
  3910. 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."
  3911. msgstr "Šířka čar v horním povrchu raftu. Mohou to být tenké čáry, takže horní část raftu je hladká."
  3912. msgctxt "wall_line_width_0 description"
  3913. msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed."
  3914. msgstr "Šířka čáry nejkrajnější stěny. Snížením této hodnoty lze vytisknout vyšší úrovně detailů."
  3915. msgctxt "min_bead_width description"
  3916. 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."
  3917. msgstr "Šířka zdi, která nahradí tenké části modelu (v souladu s nastavením Minimální velikost částí). Pokud je Minimální šířka tenkých stěn nižší, než část určitá modelu, bude zeď tištěna skutečnou tloušťkou této části."
  3918. msgctxt "wipe_brush_pos_x label"
  3919. msgid "Wipe Brush X Position"
  3920. msgstr "Pozice X stěrače"
  3921. msgctxt "wipe_hop_speed label"
  3922. msgid "Wipe Hop Speed"
  3923. msgstr "Rychlost čištění Hopu"
  3924. msgctxt "prime_tower_wipe_enabled label"
  3925. msgid "Wipe Inactive Nozzle on Prime Tower"
  3926. msgstr "Otřete neaktivní trysku na Prime Tower"
  3927. msgctxt "wipe_move_distance label"
  3928. msgid "Wipe Move Distance"
  3929. msgstr "Velikost pohybu při čištění"
  3930. msgctxt "clean_between_layers label"
  3931. msgid "Wipe Nozzle Between Layers"
  3932. msgstr "Čistit trysku mezi vrstvami"
  3933. msgctxt "wipe_pause label"
  3934. msgid "Wipe Pause"
  3935. msgstr "Pozastavit čištění"
  3936. msgctxt "wipe_repeat_count label"
  3937. msgid "Wipe Repeat Count"
  3938. msgstr "Počet opakování čištění"
  3939. msgctxt "wipe_retraction_amount label"
  3940. msgid "Wipe Retraction Distance"
  3941. msgstr "Vzdálenost retrakce při čištění"
  3942. msgctxt "wipe_retraction_enable label"
  3943. msgid "Wipe Retraction Enable"
  3944. msgstr "Povolit retrakci při čištění"
  3945. msgctxt "wipe_retraction_extra_prime_amount label"
  3946. msgid "Wipe Retraction Extra Prime Amount"
  3947. msgstr "Množství zasunutí filamentu při prvotním čištění"
  3948. msgctxt "wipe_retraction_prime_speed label"
  3949. msgid "Wipe Retraction Prime Speed"
  3950. msgstr "Primární rychlost retrakce při čištění"
  3951. msgctxt "wipe_retraction_retract_speed label"
  3952. msgid "Wipe Retraction Retract Speed"
  3953. msgstr "Rychlost navíjení stírání"
  3954. msgctxt "wipe_retraction_speed label"
  3955. msgid "Wipe Retraction Speed"
  3956. msgstr "Rychlost retrakce při čištění"
  3957. msgctxt "wipe_hop_enable label"
  3958. msgid "Wipe Z Hop"
  3959. msgstr "Čistit Z Hop"
  3960. msgctxt "wipe_hop_amount label"
  3961. msgid "Wipe Z Hop Height"
  3962. msgstr "Výška čištění Z Hopu"
  3963. msgctxt "retraction_combing option infill"
  3964. msgid "Within Infill"
  3965. msgstr "V rámci výplně"
  3966. msgctxt "machine_always_write_active_tool description"
  3967. 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."
  3968. msgstr "Zapisování aktivního nástroje po odeslání dočasných příkazů neaktivnímu nástroji. Vyžadováno pro tisk s dvojitým extruderem se Smoothie, či jiným firmwarem s modálními příkazy nástrojů."
  3969. msgctxt "machine_endstop_positive_direction_x label"
  3970. msgid "X Endstop in Positive Direction"
  3971. msgstr "Endstop X v kladném směru"
  3972. msgctxt "wipe_brush_pos_x description"
  3973. msgid "X location where wipe script will start."
  3974. msgstr "X místo, kde bude spuštěn čistící skript."
  3975. msgctxt "support_xy_overrides_z option xy_overrides_z"
  3976. msgid "X/Y overrides Z"
  3977. msgstr "X/Y přepisuje Z"
  3978. msgctxt "machine_endstop_positive_direction_y label"
  3979. msgid "Y Endstop in Positive Direction"
  3980. msgstr "Endstop Y v kladném směru"
  3981. msgctxt "machine_endstop_positive_direction_z label"
  3982. msgid "Z Endstop in Positive Direction"
  3983. msgstr "Endstop Z v kladném směru"
  3984. msgctxt "retraction_hop_after_extruder_switch label"
  3985. msgid "Z Hop After Extruder Switch"
  3986. msgstr "Z Hop po přepnutí extruderu"
  3987. msgctxt "retraction_hop_after_extruder_switch_height label"
  3988. msgid "Z Hop After Extruder Switch Height"
  3989. msgstr "Výška Z Hopu po přepnutí extruderu"
  3990. msgctxt "retraction_hop label"
  3991. msgid "Z Hop Height"
  3992. msgstr "Výška Z Hopu"
  3993. msgctxt "retraction_hop_only_when_collides label"
  3994. msgid "Z Hop Only Over Printed Parts"
  3995. msgstr "Z Hop pouze přes tištěné díly"
  3996. msgctxt "speed_z_hop label"
  3997. msgid "Z Hop Speed"
  3998. msgstr "Rychlost Z Hopu"
  3999. msgctxt "retraction_hop_enabled label"
  4000. msgid "Z Hop When Retracted"
  4001. msgstr "Z Hop po zatažení"
  4002. msgctxt "z_seam_type label"
  4003. msgid "Z Seam Alignment"
  4004. msgstr "Vyrovnávní spojů na ose Z"
  4005. msgctxt "z_seam_position label"
  4006. msgid "Z Seam Position"
  4007. msgstr "Z pozice švu"
  4008. msgctxt "z_seam_relative label"
  4009. msgid "Z Seam Relative"
  4010. msgstr "Relativní Z šev"
  4011. msgctxt "z_seam_x label"
  4012. msgid "Z Seam X"
  4013. msgstr "Z šev X"
  4014. msgctxt "z_seam_y label"
  4015. msgid "Z Seam Y"
  4016. msgstr "Z šev Y"
  4017. msgctxt "support_xy_overrides_z option z_overrides_xy"
  4018. msgid "Z overrides X/Y"
  4019. msgstr "Z přepisuje X/Y"
  4020. msgctxt "infill_pattern option zigzag"
  4021. msgid "Zig Zag"
  4022. msgstr "Cik-cak"
  4023. msgctxt "ironing_pattern option zigzag"
  4024. msgid "Zig Zag"
  4025. msgstr "Zig Zag"
  4026. msgctxt "roofing_pattern option zigzag"
  4027. msgid "Zig Zag"
  4028. msgstr "Zig Zag"
  4029. msgctxt "support_bottom_pattern option zigzag"
  4030. msgid "Zig Zag"
  4031. msgstr "Zig Zag"
  4032. msgctxt "support_interface_pattern option zigzag"
  4033. msgid "Zig Zag"
  4034. msgstr "Zig Zag"
  4035. msgctxt "support_pattern option zigzag"
  4036. msgid "Zig Zag"
  4037. msgstr "Zig Zag"
  4038. msgctxt "support_roof_pattern option zigzag"
  4039. msgid "Zig Zag"
  4040. msgstr "Zig Zag"
  4041. msgctxt "top_bottom_pattern option zigzag"
  4042. msgid "Zig Zag"
  4043. msgstr "Zig Zag"
  4044. msgctxt "top_bottom_pattern_0 option zigzag"
  4045. msgid "Zig Zag"
  4046. msgstr "Zig Zag"
  4047. msgctxt "travel description"
  4048. msgid "travel"
  4049. msgstr "cestování"
  4050. ### Settings added by bundled engine backend plugins. Add this manually for now. Should be removed whenever we handle it better.
  4051. msgctxt "gradual_flow_enabled label"
  4052. msgid "Gradual flow enabled"
  4053. msgstr ""
  4054. msgctxt "gradual_flow_enabled description"
  4055. msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops."
  4056. msgstr ""
  4057. msgctxt "max_flow_acceleration label"
  4058. msgid "Gradual flow max acceleration"
  4059. msgstr ""
  4060. msgctxt "max_flow_acceleration description"
  4061. msgid "Maximum acceleration for gradual flow changes"
  4062. msgstr ""
  4063. msgctxt "layer_0_max_flow_acceleration label"
  4064. msgid "Initial layer max flow acceleration"
  4065. msgstr ""
  4066. msgctxt "layer_0_max_flow_acceleration description"
  4067. msgid "Minimum speed for gradual flow changes for the first layer"
  4068. msgstr ""
  4069. msgctxt "gradual_flow_discretisation_step_size label"
  4070. msgid "Gradual flow discretisation step size"
  4071. msgstr ""
  4072. msgctxt "gradual_flow_discretisation_step_size description"
  4073. msgid "Duration of each step in the gradual flow change"
  4074. msgstr ""
  4075. msgctxt "reset_flow_duration label"
  4076. msgid "Reset flow duration"
  4077. msgstr ""
  4078. msgctxt "reset_flow_duration description"
  4079. msgid "For any travel move longer than this value, the material flow is reset to the paths target flow"
  4080. msgstr ""
  4081. #~ msgctxt "machine_head_with_fans_polygon description"
  4082. #~ msgid "A 2D silhouette of the print head (fan caps included)."
  4083. #~ msgstr "2D silueta tiskové hlavy (včetně krytů ventilátoru)."
  4084. #~ msgctxt "spaghetti_infill_extra_volume description"
  4085. #~ msgid "A correction term to adjust the total volume being extruded each time when filling spaghetti."
  4086. #~ msgstr "Korekční termín pro úpravu celkového objemu, který se vytlačuje pokaždé, když se plní špagety."
  4087. #~ msgctxt "wall_add_middle_threshold label"
  4088. #~ msgid "Add Middle Line Threshold"
  4089. #~ msgstr "Mez pro přidání prostřední čáry"
  4090. #~ msgctxt "spaghetti_flow description"
  4091. #~ 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."
  4092. #~ msgstr "Upravuje hustotu výplně špaget. Mějte na paměti, že hustota výplně řídí pouze rozteč linií výplňového vzoru, nikoli velikost výtluku pro výplň špaget."
  4093. #~ msgctxt "hole_xy_offset description"
  4094. #~ 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."
  4095. #~ msgstr "Množství ofsetu aplikovaného na všechny díry v každé vrstvě. Pozitivní hodnoty zvětšují velikost děr, záporné hodnoty snižují velikost děr."
  4096. #~ msgctxt "machine_use_extruder_offset_to_offset_coords description"
  4097. #~ msgid "Apply the extruder offset to the coordinate system."
  4098. #~ msgstr "Naneste odsazení extrudéru na souřadnicový systém."
  4099. #~ msgctxt "material_flow_dependent_temperature label"
  4100. #~ msgid "Auto Temperature"
  4101. #~ msgstr "Automatická teplota"
  4102. #~ msgctxt "material_flow_dependent_temperature description"
  4103. #~ msgid "Change the temperature for each layer automatically with the average flow speed of that layer."
  4104. #~ msgstr "Změňte teplotu pro každou vrstvu automaticky s průměrnou rychlostí průtoku této vrstvy."
  4105. #~ msgctxt "wireframe_strategy option compensate"
  4106. #~ msgid "Compensate"
  4107. #~ msgstr "Kompenzovat"
  4108. #~ msgctxt "travel_compensate_overlapping_walls_x_enabled label"
  4109. #~ msgid "Compensate Inner Wall Overlaps"
  4110. #~ msgstr "Kompenzujte překrytí vnitřní stěny"
  4111. #~ msgctxt "travel_compensate_overlapping_walls_0_enabled label"
  4112. #~ msgid "Compensate Outer Wall Overlaps"
  4113. #~ msgstr "Kompenzujte překrytí vnější stěny"
  4114. #~ msgctxt "travel_compensate_overlapping_walls_enabled label"
  4115. #~ msgid "Compensate Wall Overlaps"
  4116. #~ msgstr "Kompenzujte překrytí stěn"
  4117. #~ msgctxt "travel_compensate_overlapping_walls_enabled description"
  4118. #~ msgid "Compensate the flow for parts of a wall being printed where there is already a wall in place."
  4119. #~ msgstr "Vykompenzujte tok částí tisku, které se tisknou tam, kde je již zeď na místě."
  4120. #~ msgctxt "travel_compensate_overlapping_walls_x_enabled description"
  4121. #~ msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place."
  4122. #~ msgstr "Kompenzujte tok částí tisknuté vnitřní stěny, kde již je zeď na místě."
  4123. #~ msgctxt "travel_compensate_overlapping_walls_0_enabled description"
  4124. #~ msgid "Compensate the flow for parts of an outer wall being printed where there is already a wall in place."
  4125. #~ msgstr "Vykompenzujte tok částí tisknuté vnější stěny, kde již je zeď na místě."
  4126. #~ msgctxt "wireframe_top_jump description"
  4127. #~ 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."
  4128. #~ msgstr "Vytvoří malý uzel v horní části vzestupné linie, takže po sobě jdoucí vodorovná vrstva má lepší šanci se k němu připojit. Platí pouze pro drátový tisk."
  4129. #~ msgctxt "wireframe_bottom_delay description"
  4130. #~ msgid "Delay time after a downward move. Only applies to Wire Printing."
  4131. #~ msgstr "Zpoždění po pohybu dolů. Platí pouze pro drátový tisk."
  4132. #~ msgctxt "wireframe_top_delay description"
  4133. #~ msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing."
  4134. #~ msgstr "Zpoždění po pohybu vzhůru, aby mohla stoupající čára ztvrdnout. Platí pouze pro drátový tisk."
  4135. #~ msgctxt "wireframe_flat_delay description"
  4136. #~ 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."
  4137. #~ msgstr "Doba zpoždění mezi dvěma vodorovnými segmenty. Zavedení takového zpoždění může způsobit lepší přilnavost k předchozím vrstvám ve spojovacích bodech, zatímco příliš dlouhé zpoždění může způsobit ochabnutí. Platí pouze pro drátový tisk."
  4138. #~ msgctxt "inset_direction description"
  4139. #~ 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."
  4140. #~ msgstr "Určuje pořadí, v jakém budou tištěny zdi. Tištění vnějších zdí jako prvních pomáhá s rozměrovou přesností, jelikož se vady z vnitřních stěn nemohou přenášet na vnějšek. Naproti tomu tištění vnějších zdí nakonec dovoluje jejich lepší vrstvení při tištění převisů."
  4141. #~ msgctxt "infill_mesh_order description"
  4142. #~ 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 lowest rank. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes."
  4143. #~ msgstr "Určuje prioritu této sítě, když se překrývá více sítí výplně. U oblastí, kde se překrývá více sítí výplně, se nastavení přebírá ze sítě s nejnižším pořadím. Síť výplně s vyšším pořadím bude modifikovat výplň sítě výplně s nižším pořadím a běžné sítě."
  4144. #~ msgctxt "infill_mesh_order description"
  4145. #~ msgid "Determines the priority of this mesh when considering overlapping volumes. Areas where multiple meshes reside will be won by the lower rank mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes."
  4146. #~ msgstr "Určuje prioritu této sítě při zvažování překrývajících se objemů. Oblasti, kde je umístěno více sítí, budou vyhrány sítí s nižším hodnocením. Výplňová síť s vyšším pořádkem upraví výplň síťových výplní s nižším řádem a běžnými oky."
  4147. #~ msgctxt "infill_mesh_order description"
  4148. #~ 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."
  4149. #~ msgstr "Určuje, která výplň je uvnitř výplně jiné výplně. Výplňová síť s vyšším pořádkem upraví výplň síťových výplní s nižším řádem a normálními oky."
  4150. #~ msgctxt "wireframe_nozzle_clearance description"
  4151. #~ 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."
  4152. #~ msgstr "Vzdálenost mezi tryskou a vodorovnými liniemi dolů. Větší vůle vede k diagonálně dolů směřujícím liniím s menším strmým úhlem, což zase vede k menšímu spojení nahoru s další vrstvou. Platí pouze pro drátový tisk."
  4153. #~ msgctxt "wireframe_up_half_speed description"
  4154. #~ msgid ""
  4155. #~ "Distance of an upward move which is extruded with half speed.\n"
  4156. #~ "This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing."
  4157. #~ msgstr ""
  4158. #~ "Vzdálenost pohybu nahoru, který je vytlačován poloviční rychlostí.\n"
  4159. #~ "To může způsobit lepší přilnavost k předchozím vrstvám, aniž by se materiál v těchto vrstvách příliš zahříval. Platí pouze pro drátový tisk."
  4160. #~ msgctxt "support_xy_distance_overhang description"
  4161. #~ msgid "Distance of the support structure from the overhang in the X/Y directions. "
  4162. #~ msgstr "Vzdálenost podpor od převisu ve směru X / Y. "
  4163. #~ msgctxt "wireframe_fall_down description"
  4164. #~ msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing."
  4165. #~ msgstr "Vzdálenost, se kterou materiál padá po vytlačení směrem nahoru. Tato vzdálenost je kompenzována. Platí pouze pro drátový tisk."
  4166. #~ msgctxt "wireframe_drag_along description"
  4167. #~ 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."
  4168. #~ msgstr "Vzdálenost, se kterou je materiál vytlačování směrem vzhůru tažen spolu s diagonálně směrem dolů vytlačováním. Tato vzdálenost je kompenzována. Platí pouze pro drátový tisk."
  4169. #~ msgctxt "material_end_of_filament_purge_length label"
  4170. #~ msgid "End Of Filament Purge Length"
  4171. #~ msgstr "Délka proplachování konce filamentu"
  4172. #~ msgctxt "material_end_of_filament_purge_speed label"
  4173. #~ msgid "End Of Filament Purge Speed"
  4174. #~ msgstr "Rychlost proplachování konce filamentu"
  4175. #~ msgctxt "speed_equalize_flow_enabled label"
  4176. #~ msgid "Equalize Filament Flow"
  4177. #~ msgstr "Vyrovnat tok vlákna"
  4178. #~ msgctxt "fill_perimeter_gaps option everywhere"
  4179. #~ msgid "Everywhere"
  4180. #~ msgstr "Všude"
  4181. #~ msgctxt "machine_filament_park_distance label"
  4182. #~ msgid "Filament Park Distance"
  4183. #~ msgstr "Vzdálenost filamentového parkingu"
  4184. #~ msgctxt "fill_perimeter_gaps label"
  4185. #~ msgid "Fill Gaps Between Walls"
  4186. #~ msgstr "Vyplnit mezery mezi stěnami"
  4187. #~ msgctxt "fill_perimeter_gaps description"
  4188. #~ msgid "Fills the gaps between walls where no walls fit."
  4189. #~ msgstr "Vyplní mezery mezi stěnami, kde se žádné stěny nehodí."
  4190. #~ msgctxt "filter_out_tiny_gaps label"
  4191. #~ msgid "Filter Out Tiny Gaps"
  4192. #~ msgstr "Vyfiltrujte drobné mezery"
  4193. #~ msgctxt "filter_out_tiny_gaps description"
  4194. #~ msgid "Filter out tiny gaps to reduce blobs on outside of model."
  4195. #~ msgstr "Filtrujte drobné mezery, abyste zmenšili kuličky na vnější straně modelu."
  4196. #~ msgctxt "wireframe_flow_connection description"
  4197. #~ msgid "Flow compensation when going up or down. Only applies to Wire Printing."
  4198. #~ msgstr "Kompenzace toku při stoupání nebo klesání. Platí pouze pro drátový tisk."
  4199. #~ msgctxt "wireframe_flow_flat description"
  4200. #~ msgid "Flow compensation when printing flat lines. Only applies to Wire Printing."
  4201. #~ msgstr "Kompenzace toku při tisku rovných čar. Platí pouze pro drátový tisk."
  4202. #~ msgctxt "wireframe_flow description"
  4203. #~ msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing."
  4204. #~ msgstr "Kompenzace toku: množství vytlačovaného materiálu se vynásobí touto hodnotou. Platí pouze pro drátový tisk."
  4205. #~ msgctxt "material_guid description"
  4206. #~ msgid "GUID of the material. This is set automatically. "
  4207. #~ msgstr "GUID materiálu. Toto je nastaveno automaticky. "
  4208. #~ msgctxt "support_tree_enable description"
  4209. #~ 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."
  4210. #~ msgstr "Vygenerujte stromovou podporu s větvemi, které podporují váš tisk. To může snížit spotřebu materiálu a dobu tisku, ale výrazně prodlužuje dobu slicování."
  4211. #~ msgctxt "support_tree_branch_distance description"
  4212. #~ 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."
  4213. #~ msgstr "Jak daleko od sebe musí být větve, když se dotýkají modelu. Zmenšení této vzdálenosti způsobí, že se stromová podpora dotkne modelu ve více bodech, což způsobí lepší přesah, ale těžší odstranění podpory."
  4214. #~ msgctxt "machine_steps_per_mm_e description"
  4215. #~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion."
  4216. #~ msgstr "Kolik kroků krokových motorů vyústí v jeden milimetr vytlačování."
  4217. #~ msgctxt "slicing_tolerance description"
  4218. #~ 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."
  4219. #~ msgstr "Jak krájet vrstvy s diagonálními povrchy. Oblasti vrstvy mohou být generovány na základě toho, kde střed vrstvy protíná povrch (Střední). Alternativně každá vrstva může mít oblasti, které padají uvnitř objemu po celé výšce vrstvy (Exkluzivní), nebo vrstva má oblasti, které padají dovnitř kdekoli v rámci vrstvy (Inkluzivní). Exkluzivní zachovává co nejvíce podrobností, Inkluzivní dělá to nejlepší a Střední trvá zpracování nejméně času."
  4220. #~ msgctxt "wall_min_flow_retract description"
  4221. #~ msgid "If enabled, retraction is used rather than combing for travel moves that replace walls whose flow is below the minimum flow threshold."
  4222. #~ msgstr "Je-li tato funkce povolena, je pro retrakční pohyby, které nahrazují stěny, jejichž průtok je pod prahem minimálního průtoku, používáno spíše zatahování."
  4223. #~ msgctxt "infill_mesh_order label"
  4224. #~ msgid "Infill Mesh Order"
  4225. #~ msgstr "Pořadí sítě výplně"
  4226. #~ msgctxt "wireframe_strategy option knot"
  4227. #~ msgid "Knot"
  4228. #~ msgstr "Uzel"
  4229. #~ msgctxt "limit_support_retractions label"
  4230. #~ msgid "Limit Support Retractions"
  4231. #~ msgstr "Omezení retrakce podpor"
  4232. #~ msgctxt "material_end_of_filament_purge_length description"
  4233. #~ msgid "Material Station internal value"
  4234. #~ msgstr "Interní hodnota stanice materiálu"
  4235. #~ msgctxt "material_end_of_filament_purge_speed description"
  4236. #~ msgid "Material Station internal value"
  4237. #~ msgstr "Interní hodnota stanice materiálu"
  4238. #~ msgctxt "material_flush_purge_length description"
  4239. #~ msgid "Material Station internal value"
  4240. #~ msgstr "Interní hodnota stanice materiálu"
  4241. #~ msgctxt "material_flush_purge_speed description"
  4242. #~ msgid "Material Station internal value"
  4243. #~ msgstr "Interní hodnota stanice materiálu"
  4244. #~ msgctxt "material_maximum_park_duration description"
  4245. #~ msgid "Material Station internal value"
  4246. #~ msgstr "Interní hodnota stanice materiálu"
  4247. #~ msgctxt "material_no_load_move_factor description"
  4248. #~ msgid "Material Station internal value"
  4249. #~ msgstr "Interní hodnota stanice materiálu"
  4250. #~ msgctxt "machine_max_feedrate_e label"
  4251. #~ msgid "Maximum Feedrate"
  4252. #~ msgstr "Maximální feedrate"
  4253. #~ msgctxt "speed_equalize_flow_max label"
  4254. #~ msgid "Maximum Speed for Flow Equalization"
  4255. #~ msgstr "Maximální rychlost pro vyrovnávání průtoku"
  4256. #~ msgctxt "speed_equalize_flow_max description"
  4257. #~ msgid "Maximum print speed when adjusting the print speed in order to equalize flow."
  4258. #~ msgstr "Maximální rychlost tisku při úpravě rychlosti tisku za účelem vyrovnání toku."
  4259. #~ msgctxt "wall_min_flow label"
  4260. #~ msgid "Minimum Wall Flow"
  4261. #~ msgstr "Minimální průtok zdi"
  4262. #~ msgctxt "wall_min_flow description"
  4263. #~ 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."
  4264. #~ msgstr "Minimální povolený procentuální průtok pro linii stěny. Kompenzace překrytí stěny snižuje průtok stěny, když leží blízko ke stávající zdi. Stěny, jejichž průtok je menší než tato hodnota, budou nahrazeny pohybem. Při použití tohoto nastavení musíte povolit kompenzaci překrytí stěny a vnější stěnu vytisknout před vnitřními stěnami."
  4265. #~ msgctxt "fill_perimeter_gaps option nowhere"
  4266. #~ msgid "Nowhere"
  4267. #~ msgstr "Nikde"
  4268. #~ msgctxt "limit_support_retractions description"
  4269. #~ 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."
  4270. #~ msgstr "Při přechodu od podpory k podpoře v přímé linii vynechejte stažení. Povolením tohoto nastavení se šetří čas tisku, ale může to vést k nadměrnému strunění uvnitř podpůrné struktury."
  4271. #~ msgctxt "outer_inset_first label"
  4272. #~ msgid "Outer Before Inner Walls"
  4273. #~ msgstr "Vnější stěny před vnitřními"
  4274. #~ msgctxt "wireframe_straight_before_down description"
  4275. #~ 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."
  4276. #~ msgstr "Procento diagonálně sestupné linie, která je zakryta vodorovnou čárou. To může zabránit ochabnutí nejvyššího bodu vzhůru. Platí pouze pro drátový tisk."
  4277. #~ msgctxt "wall_min_flow_retract label"
  4278. #~ msgid "Prefer Retract"
  4279. #~ msgstr "Preferovat retrakci"
  4280. #~ msgctxt "wireframe_enabled description"
  4281. #~ 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."
  4282. #~ msgstr "Tiskněte pouze vnější povrch s řídkou strukturou struktury a tiskněte „na vzduchu“. To je realizováno horizontálním tiskem kontur modelu v daných intervalech Z, které jsou spojeny pomocí linií nahoru a diagonálně dolů."
  4283. #~ msgctxt "spaghetti_infill_enabled description"
  4284. #~ 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."
  4285. #~ msgstr "Výplň tiskněte tak často, aby se vlákno chaoticky stočilo uvnitř objektu. To zkracuje dobu tisku, ale chování je spíše nepředvídatelné."
  4286. #~ msgctxt "speed_equalize_flow_enabled description"
  4287. #~ 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."
  4288. #~ msgstr "Tiskněte tenčí než normální čáry rychleji, takže množství materiálu vytlačovaného za sekundu zůstává stejné. Tenké kousky ve vašem modelu mohou vyžadovat čáry vytištěné s menší šířkou čáry, než je uvedeno v nastavení. Toto nastavení řídí změny rychlosti těchto linek."
  4289. #~ msgctxt "outer_inset_first description"
  4290. #~ 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."
  4291. #~ msgstr "Když je povoleno, tiskne stěny v pořadí od vnějšku dovnitř. To může pomoci zlepšit rozměrovou přesnost v X a Y při použití plastu s vysokou viskozitou, jako je ABS; může však snížit kvalitu tisku vnějšího povrchu, zejména na převisy."
  4292. #~ msgctxt "support_tree_collision_resolution description"
  4293. #~ 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."
  4294. #~ msgstr "Rozlišení pro výpočet kolizí, aby nedošlo k nárazu do modelu. Nastavením této nižší se vytvoří přesnější stromy, které selhávají méně často, ale dramaticky se zvyšuje doba slicování."
  4295. #~ msgctxt "wireframe_strategy option retract"
  4296. #~ msgid "Retract"
  4297. #~ msgstr "Retrakce"
  4298. #~ msgctxt "retraction_enable description"
  4299. #~ msgid "Retract the filament when the nozzle is moving over a non-printed area. "
  4300. #~ msgstr "Zasuňte vlákno, když se tryska pohybuje po netisknuté oblasti. "
  4301. #~ msgctxt "shell label"
  4302. #~ msgid "Shell"
  4303. #~ msgstr "Shell"
  4304. #~ msgctxt "material_shrinkage_percentage label"
  4305. #~ msgid "Shrinkage Ratio"
  4306. #~ msgstr "Poměr smrštění"
  4307. #~ msgctxt "material_shrinkage_percentage description"
  4308. #~ msgid "Shrinkage ratio in percentage."
  4309. #~ msgstr "Poměr smrštění v procentech."
  4310. #~ msgctxt "spaghetti_flow label"
  4311. #~ msgid "Spaghetti Flow"
  4312. #~ msgstr "Průtok při špagetové výplni"
  4313. #~ msgctxt "spaghetti_infill_enabled label"
  4314. #~ msgid "Spaghetti Infill"
  4315. #~ msgstr "Špagetová výplň"
  4316. #~ msgctxt "spaghetti_infill_extra_volume label"
  4317. #~ msgid "Spaghetti Infill Extra Volume"
  4318. #~ msgstr "Objem navíc při špagetové výplni"
  4319. #~ msgctxt "spaghetti_max_height label"
  4320. #~ msgid "Spaghetti Infill Maximum Height"
  4321. #~ msgstr "Maximální výška špagetové výplně"
  4322. #~ msgctxt "spaghetti_infill_stepped label"
  4323. #~ msgid "Spaghetti Infill Stepping"
  4324. #~ msgstr "Krokování při špagetové výplni"
  4325. #~ msgctxt "spaghetti_inset label"
  4326. #~ msgid "Spaghetti Inset"
  4327. #~ msgstr "Špagetová výplň"
  4328. #~ msgctxt "spaghetti_max_infill_angle label"
  4329. #~ msgid "Spaghetti Maximum Infill Angle"
  4330. #~ msgstr "Maximální úhel špagetové výplně"
  4331. #~ msgctxt "wireframe_printspeed description"
  4332. #~ msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing."
  4333. #~ msgstr "Rychlost, jakou se tryska pohybuje při vytlačování materiálu. Platí pouze pro drátový tisk."
  4334. #~ msgctxt "wireframe_printspeed_down description"
  4335. #~ msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing."
  4336. #~ msgstr "Rychlost tisku linie šikmo dolů. Platí pouze pro drátový tisk."
  4337. #~ msgctxt "wireframe_printspeed_up description"
  4338. #~ msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing."
  4339. #~ msgstr "Rychlost tisku řádku nahoru „na vzduchu“. Platí pouze pro drátový tisk."
  4340. #~ msgctxt "wireframe_printspeed_bottom description"
  4341. #~ msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing."
  4342. #~ msgstr "Rychlost tisku první vrstvy, která je jedinou vrstvou dotýkající se platformy sestavení. Platí pouze pro drátový tisk."
  4343. #~ msgctxt "wireframe_printspeed_flat description"
  4344. #~ msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing."
  4345. #~ msgstr "Rychlost tisku vodorovných obrysů modelu. Platí pouze pro drátový tisk."
  4346. #~ msgctxt "wall_split_middle_threshold label"
  4347. #~ msgid "Split Middle Line Threshold"
  4348. #~ msgstr "Mez pro rozdělení prostřední čáry"
  4349. #~ msgctxt "wireframe_strategy description"
  4350. #~ 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."
  4351. #~ msgstr "Strategie pro zajištění toho, aby se v každém místě připojení připojily dvě po sobě následující vrstvy. Zpětné zasunutí umožní, aby linie vzhůru ztvrdly ve správné poloze, ale mohou způsobit broušení vlákna. Uzel může být vytvořen na konci vzestupné linie, aby se zvýšila šance na připojení k ní a aby se linka ochladila; to však může vyžadovat nízké rychlosti tisku. Další strategií je kompenzovat prohnutý vrchol horní linie; čáry však nebudou vždy klesat, jak bylo předpovězeno."
  4352. #~ msgctxt "support_tree_angle description"
  4353. #~ 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."
  4354. #~ msgstr "Úhel větví. Použijte nižší úhel, aby byly více vertikální a stabilnější. K dosažení většího dosahu použijte vyšší úhel."
  4355. #~ msgctxt "lightning_infill_prune_angle description"
  4356. #~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the pruning of the outer extremities of trees. Measured in the angle given the thickness."
  4357. #~ msgstr "Určuje, pod jakým úhlem mezi jednotlivými vrstvami se větve bleskové výplně zkracují."
  4358. #~ msgctxt "lightning_infill_straightening_angle description"
  4359. #~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the smoothing of trees. Measured in the angle given the thickness."
  4360. #~ msgstr "Určuje, pod jakým úhlem mezi jednotlivými vrstvami může docházet k vyrovnávání větví bleskové výplně."
  4361. #~ msgctxt "wireframe_roof_inset description"
  4362. #~ msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing."
  4363. #~ msgstr "Vzdálenost ujetá při vytváření spojení od obrysu střechy dovnitř. Platí pouze pro drátový tisk."
  4364. #~ msgctxt "wireframe_roof_drag_along description"
  4365. #~ 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."
  4366. #~ msgstr "Vzdálenost koncového kusu vnitřní linie, která se táhne, když se vrací zpět k vnějšímu obrysu střechy. Tato vzdálenost je kompenzována. Platí pouze pro drátový tisk."
  4367. #~ msgctxt "wireframe_roof_fall_down description"
  4368. #~ 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."
  4369. #~ msgstr "Vzdálenost, kterou vodorovné linie střechy vytištěné „na vzduchu“ klesají při tisku. Tato vzdálenost je kompenzována. Platí pouze pro drátový tisk."
  4370. #~ msgctxt "wireframe_height description"
  4371. #~ 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."
  4372. #~ msgstr "Výška nahoru a diagonálně dolů směřujících čar mezi dvěma vodorovnými částmi. To určuje celkovou hustotu struktury sítě. Platí pouze pro drátový tisk."
  4373. #~ msgctxt "spaghetti_max_infill_angle description"
  4374. #~ 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."
  4375. #~ msgstr "Maximální úhel osy Z uvnitř tisku pro oblasti, které mají být poté vyplněny špagetovou výplní. Snížení této hodnoty způsobí, že se na každé vrstvě vyplní více šikmých částí modelu."
  4376. #~ msgctxt "spaghetti_max_height description"
  4377. #~ msgid "The maximum height of inside space which can be combined and filled from the top."
  4378. #~ msgstr "Maximální výška vnitřního prostoru, kterou lze kombinovat a naplnit shora."
  4379. #~ msgctxt "mold_width description"
  4380. #~ msgid "The minimal distance between the ouside of the mold and the outside of the model."
  4381. #~ msgstr "Minimální vzdálenost mezi vnější stranou formy a vnější stranou modelu."
  4382. #~ msgctxt "min_odd_wall_line_width description"
  4383. #~ 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,"
  4384. #~ msgstr "Minimální šířka čáry použité jako výplň mezi párovými čárami zdi. Toto nastavení určuje tloušťku modelu, při které se přepíná z tisku dvou čar zdi na tisk dvou vnějších čar zdi a jedné centrální čáry zdi mezi nimi. Vyšší hodnota Minimální šířky nepárové čáry zdi vede k vyšší maximální šířce párové čáry zdi. Maximální šířka nepárové čáry zdi je vypočtena jako 2 * Minimální šířka párové čáry zdi,"
  4385. #~ msgctxt "spaghetti_inset description"
  4386. #~ msgid "The offset from the walls from where the spaghetti infill will be printed."
  4387. #~ msgstr "Odsazení od stěn, odkud bude vytištěna výplň špaget."
  4388. #~ msgctxt "infill_pattern description"
  4389. #~ 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."
  4390. #~ msgstr "Vzor výplňového materiálu tisku. Směr a cik-cak vyplňují směr výměny na alternativních vrstvách, čímž se snižují náklady na materiál. Mřížka, trojúhelník, tri-hexagon, krychlový, oktet, čtvrtý krychlový, křížový a soustředný obrazec jsou plně vytištěny v každé vrstvě. Výplň Gyroid, krychlový, kvartální a oktet se mění s každou vrstvou, aby se zajistilo rovnoměrnější rozložení síly v každém směru."
  4391. #~ msgctxt "infill_pattern description"
  4392. #~ 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 (internal) roofs of the object. As such, the infill percentage is only 'valid' one layer below whatever it needs to support of the model."
  4393. #~ msgstr "Vzor výplňového materiálu tisku. Čáry a cik-cak s každou vrstvou obracejí směr výplně, čímž se snižují náklady na materiál. Mřížka, trojúhelník, tri-hexagon, krychle, oktet, čtvrtinově krychlový, křížový a soustředný vzor jsou plně vytištěny v každé vrstvě. Vzory gyroid, krychlový, čtvrtinově krychlový a oktet se mění s každou vrstvou, aby se zajistilo rovnoměrnější rozložení síly v každém směru. Bleskový vzor se snaží minimalizovat množství výplně tím, že podporuje pouze horní povrchy objektu. U bleskového vzoru má procento význam pouze v první vrstvě pod každým povrchem."
  4394. #~ msgctxt "wall_add_middle_threshold description"
  4395. #~ msgid "The smallest line width, as a factor of the normal line width, above which a middle line (if there wasn't one already) will be added. Reduce this setting to use more, thinner lines. Increase to use fewer, wider lines. Note that this applies -as if- the entire shape should be filled with wall, so the middle here refers to the middle of the object between two outer edges of the shape, even if there actually is fill or (other) skin in the print instead of wall."
  4396. #~ msgstr "Nejnižší šířka čáry, zadaná jako procento běžné šířky čáry, nad kterou bude přidána prostřední nepárová čára mezi dvě párové čáry (pokud mezi nimi ještě nebyla). Snižte toto nastavení, aby se používalo více tenkých čar. Zvyšte toto nastavení pro použití méně a širších čar. Je třeba si uvědomit, že toto nastavení se použije, jako kdyby byl celý tvar vyplněn zdmi. Takže termín prostřední zde znamená prostředek objektu mezi dvěma vnějšími hranami tvaru, a to i v případě, že se namísto zdi tiskne výplň nebo jiný povrch."
  4397. #~ msgctxt "wall_split_middle_threshold description"
  4398. #~ msgid "The smallest line width, as a factor of the normal line width, above which the middle line (if there is one) will be split into two. Reduce this setting to use more, thinner lines. Increase to use fewer, wider lines. Note that this applies -as if- the entire shape should be filled with wall, so the middle here refers to the middle of the object between two outer edges of the shape, even if there actually is fill or (other) skin in the print instead of wall."
  4399. #~ msgstr "Nejnižší šířka čáry, zadaná jako procento běžné šířky čáry, nad kterou bude prostřední nepárová čára (pokud nějaká je) rozdělena na dvě párové čáry. Snižte toto nastavení, aby se používalo více tenkých čar. Zvyšte toto nastavení pro použití méně a širších čar. Je třeba si uvědomit, že toto nastavení se použije, jako kdyby byl celý tvar vyplněn zdmi. Takže termín prostřední zde znamená prostředek objektu mezi dvěma vnějšími hranami tvaru, a to i v případě, že se namísto zdi tiskne výplň nebo jiný povrch."
  4400. #~ msgctxt "speed_layer_0 description"
  4401. #~ msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate."
  4402. #~ msgstr "Rychlost počáteční vrstvy. Doporučuje se nižší hodnota pro zlepšení přilnavosti k montážní desce."
  4403. #~ msgctxt "material_bed_temperature_layer_0 description"
  4404. #~ msgid "The temperature used for the heated build plate at the first layer."
  4405. #~ msgstr "Teplota použitá pro vyhřívanou podložku v první vrstvě."
  4406. #~ msgctxt "material_bed_temperature description"
  4407. #~ msgid "The temperature used for the heated build plate. If this is 0, the bed temperature will not be adjusted."
  4408. #~ msgstr "Teplota použitá pro vyhřívanou podložku. Pokud je to 0, teplota podložky nebude upravena."
  4409. #~ msgctxt "wireframe_roof_outer_delay description"
  4410. #~ 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."
  4411. #~ msgstr "Čas strávený na vnějším obvodu díry, která se má stát střechou. Delší časy mohou zajistit lepší spojení. Platí pouze pro drátový tisk."
  4412. #~ msgctxt "max_skin_angle_for_expansion description"
  4413. #~ 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."
  4414. #~ msgstr "Horní a/nebo dolní povrch objektu s větším úhlem, než je toto nastavení, nebudou mít rozbalenou horní/dolní plochu. Tím se zabrání rozšíření úzkých oblastí vzhledu, které jsou vytvořeny, když má povrch modelu téměř svislý sklon. Úhel 0° je vodorovný, zatímco úhel 90° je svislý."
  4415. #~ msgctxt "support_tree_enable label"
  4416. #~ msgid "Tree Support"
  4417. #~ msgstr "Stromová podpora"
  4418. #~ msgctxt "support_tree_angle label"
  4419. #~ msgid "Tree Support Branch Angle"
  4420. #~ msgstr "Úhel větve stromové podpory"
  4421. #~ msgctxt "support_tree_branch_diameter label"
  4422. #~ msgid "Tree Support Branch Diameter"
  4423. #~ msgstr "Průměr větve podpěry stromu"
  4424. #~ msgctxt "support_tree_branch_diameter_angle label"
  4425. #~ msgid "Tree Support Branch Diameter Angle"
  4426. #~ msgstr "Průměr úhlu větve podpěry stromu"
  4427. #~ msgctxt "support_tree_branch_distance label"
  4428. #~ msgid "Tree Support Branch Distance"
  4429. #~ msgstr "Vzdálenost větví stromu"
  4430. #~ msgctxt "support_tree_collision_resolution label"
  4431. #~ msgid "Tree Support Collision Resolution"
  4432. #~ msgstr "Stromová podpora - rozlišení kolize"
  4433. #~ msgctxt "support_tree_max_diameter label"
  4434. #~ msgid "Tree Support Trunk Diameter"
  4435. #~ msgstr "Průměr kmene stromové podpory"
  4436. #~ msgctxt "wireframe_bottom_delay label"
  4437. #~ msgid "WP Bottom Delay"
  4438. #~ msgstr "Zpoždení pohybu dole při tisku DT"
  4439. #~ msgctxt "wireframe_printspeed_bottom label"
  4440. #~ msgid "WP Bottom Printing Speed"
  4441. #~ msgstr "Rychlost tisku spodního DT"
  4442. #~ msgctxt "wireframe_flow_connection label"
  4443. #~ msgid "WP Connection Flow"
  4444. #~ msgstr "Průtok při spojování DT"
  4445. #~ msgctxt "wireframe_height label"
  4446. #~ msgid "WP Connection Height"
  4447. #~ msgstr "Výška připojení DT"
  4448. #~ msgctxt "wireframe_printspeed_down label"
  4449. #~ msgid "WP Downward Printing Speed"
  4450. #~ msgstr "Rychlost tisku směrem dolů u DT"
  4451. #~ msgctxt "wireframe_drag_along label"
  4452. #~ msgid "WP Drag Along"
  4453. #~ msgstr "Tah DT"
  4454. #~ msgctxt "wireframe_up_half_speed label"
  4455. #~ msgid "WP Ease Upward"
  4456. #~ msgstr "Poloviční rychlost DT"
  4457. #~ msgctxt "wireframe_fall_down label"
  4458. #~ msgid "WP Fall Down"
  4459. #~ msgstr "Pád materiálu DT"
  4460. #~ msgctxt "wireframe_flat_delay label"
  4461. #~ msgid "WP Flat Delay"
  4462. #~ msgstr "Zpoždění při tisku plochých segmentů DT"
  4463. #~ msgctxt "wireframe_flow_flat label"
  4464. #~ msgid "WP Flat Flow"
  4465. #~ msgstr "Průtok při plochém DT"
  4466. #~ msgctxt "wireframe_flow label"
  4467. #~ msgid "WP Flow"
  4468. #~ msgstr "Průtok při DT"
  4469. #~ msgctxt "wireframe_printspeed_flat label"
  4470. #~ msgid "WP Horizontal Printing Speed"
  4471. #~ msgstr "Rychlost horizontálního tisku DT"
  4472. #~ msgctxt "wireframe_top_jump label"
  4473. #~ msgid "WP Knot Size"
  4474. #~ msgstr "Velikost uzlu DT"
  4475. #~ msgctxt "wireframe_nozzle_clearance label"
  4476. #~ msgid "WP Nozzle Clearance"
  4477. #~ msgstr "Vyčištění trysky DT"
  4478. #~ msgctxt "wireframe_roof_drag_along label"
  4479. #~ msgid "WP Roof Drag Along"
  4480. #~ msgstr "Tah střechy DT"
  4481. #~ msgctxt "wireframe_roof_fall_down label"
  4482. #~ msgid "WP Roof Fall Down"
  4483. #~ msgstr "Pád materiálu střechy DT"
  4484. #~ msgctxt "wireframe_roof_inset label"
  4485. #~ msgid "WP Roof Inset Distance"
  4486. #~ msgstr "Vzdálenost střechy DT"
  4487. #~ msgctxt "wireframe_roof_outer_delay label"
  4488. #~ msgid "WP Roof Outer Delay"
  4489. #~ msgstr "Vnější zpoždění střechy DT"
  4490. #~ msgctxt "wireframe_printspeed label"
  4491. #~ msgid "WP Speed"
  4492. #~ msgstr "Rychlost DT"
  4493. #~ msgctxt "wireframe_straight_before_down label"
  4494. #~ msgid "WP Straighten Downward Lines"
  4495. #~ msgstr "Vyrovnat spodní linky DT"
  4496. #~ msgctxt "wireframe_strategy label"
  4497. #~ msgid "WP Strategy"
  4498. #~ msgstr "Strategie DT"
  4499. #~ msgctxt "wireframe_top_delay label"
  4500. #~ msgid "WP Top Delay"
  4501. #~ msgstr "Zpoždení pohybu nahoře při tisku DT"
  4502. #~ msgctxt "wireframe_printspeed_up label"
  4503. #~ msgid "WP Upward Printing Speed"
  4504. #~ msgstr "Rychlost tisku nahoru u DT"
  4505. #~ msgctxt "retraction_combing_max_distance description"
  4506. #~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction."
  4507. #~ msgstr "Pokud nenulové, pohyby combingového pohybu, které jsou delší než tato vzdálenost, použijí zatažení."
  4508. #~ msgctxt "print_sequence description"
  4509. #~ 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. "
  4510. #~ msgstr "Zda se mají tisknout všechny modely po jedné vrstvě najednou, nebo počkat na dokončení jednoho modelu, než se přesunete na další. Jeden za časovým režimem je možný, pokud a) je povolen pouze jeden extruder ab) všechny modely jsou odděleny tak, že celá tisková hlava se může pohybovat mezi a všechny modely jsou menší než vzdálenost mezi tryskou a X / Osy Y. "
  4511. #~ msgctxt "spaghetti_infill_stepped description"
  4512. #~ msgid "Whether to print spaghetti infill in steps or extrude all the infill filament at the end of the print."
  4513. #~ msgstr "Zda se má tisknout špagetová výplň po krocích, nebo se vytlačí veškeré výplňové vlákno na konci tisku."
  4514. #~ msgctxt "wireframe_enabled label"
  4515. #~ msgid "Wire Printing"
  4516. #~ msgstr "Drátový tisk"
  4517. #~ msgctxt "blackmagic description"
  4518. #~ msgid "category_blackmagic"
  4519. #~ msgstr "category_blackmagic"
  4520. #~ msgctxt "meshfix description"
  4521. #~ msgid "category_fixes"
  4522. #~ msgstr "category_fixes"
  4523. #~ msgctxt "experimental description"
  4524. #~ msgid "experimental!"
  4525. #~ msgstr "experimentální!"