fdmprinter.def.json.po 318 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902
  1. msgid ""
  2. msgstr ""
  3. "Project-Id-Version: PACKAGE VERSION\n"
  4. "Report-Msgid-Bugs-To: \n"
  5. "POT-Creation-Date: 2024-03-13 09:02+0100\n"
  6. "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
  7. "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  8. "Language-Team: LANGUAGE <LL@li.org>\n"
  9. "Language: de_DE\n"
  10. "MIME-Version: 1.0\n"
  11. "Content-Type: text/plain; charset=UTF-8\n"
  12. "Content-Transfer-Encoding: 8bit\n"
  13. "Plural-Forms: nplurals=2; plural=n != 1;\n"
  14. msgctxt "prime_tower_mode description"
  15. msgid "<html>How to generate the prime tower:<ul><li><b>Normal:</b> create a bucket in which secondary materials are primed</li><li><b>Interleaved:</b> create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other</li></ul></html>"
  16. msgstr "<html>So erzeugen Sie den Prime Tower:<ul><li><b>Normal:</b> Erstellen Sie ein Bucket, in dem sekundäre Materialien grundiert werden</li> <li><b>Verschachtelt:</b> Erstellen Sie einen Prime Tower so spärlich wie möglich. Das spart Zeit und Filament, ist aber nur möglich, wenn die verwendeten Materialien aneinander haften</li> </ul> </html>"
  17. msgctxt "brim_inside_margin description"
  18. msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models."
  19. msgstr "Ein Rand um ein Modell kann ein anderes Modell an einer Stelle berühren, an der Sie sie nicht haben wollen. Dies entfernt alle Ränder innerhalb dieser Entfernung von Modellen ohne Rand."
  20. msgctxt "ironing_inset description"
  21. 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."
  22. msgstr "Eine Distanz, die von den Kanten des Modells einzuhalten ist. Die Glättung des gesamten Weges zur Kante des Mesh führt möglicherweise zu einer gezackten Kante Ihres Drucks."
  23. msgctxt "material_no_load_move_factor description"
  24. msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch."
  25. msgstr "Ein Faktor, der angibt, wie stark das Filament zwischen dem Feeder und der Düsenkammer komprimiert wird; hilft zu bestimmen, wie weit das Material für einen Filamentwechsel bewegt werden muss."
  26. msgctxt "roofing_angles description"
  27. 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)."
  28. msgstr "Eine Liste von Ganzzahl-Linienrichtungen für den Fall, wenn die oberen Außenhautschichten die Linien- oder Zickzack-Muster verwenden. Elemente aus der Liste werden während des Aufbaus der Schichten sequentiell verwendet und wenn das Listenende erreicht wird, beginnt die Liste von vorne. Die Listenobjekte werden durch Kommas getrennt und die gesamte Liste ist in eckige Klammern gesetzt. Standardmäßig ist eine leere Liste vorhanden, was bedeutet, dass herkömmliche Standardwinkel (45- und 135-Grad) verwendet werden."
  29. msgctxt "skin_angles description"
  30. 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)."
  31. msgstr "Eine Liste von Ganzzahl-Linienrichtungen für den Fall, wenn die oberen/unteren Schichten die Linien- oder Zickzack-Muster verwenden. Elemente aus der Liste werden während des Aufbaus der Schichten sequentiell verwendet und wenn das Listenende erreicht wird, beginnt die Liste von vorne. Die Listenobjekte werden durch Kommas getrennt und die gesamte Liste ist in eckige Klammern gesetzt. Standardmäßig ist eine leere Liste vorhanden, was bedeutet, dass herkömmliche Standardwinkel (45- und 135-Grad) verwendet werden."
  32. msgctxt "support_infill_angles description"
  33. 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."
  34. msgstr "Liste der zu verwendenden Linienrichtungen (in ganzen Zahlen). Die Elemente der Liste werden während des Aufbaus der Schichten der Reihe nach abgearbeitet. Wenn das Ende der Liste erreicht wird, wird wieder beim ersten Element begonnen. Die Listenobjekte werden durch Kommas getrennt und die gesamte Liste ist in eckige Klammern gesetzt. Standardmäßig ist eine leere Liste vorhanden, was bedeutet, dass der Standardwinkel von 0 Grad zu verwenden ist."
  35. msgctxt "support_bottom_angles description"
  36. msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)."
  37. msgstr "Liste der zu verwendenden Linienrichtungen (in ganzen Zahlen). Die Elemente der Liste werden während des Aufbaus der Schichten der Reihe nach abgearbeitet. Wenn das Ende der Liste erreicht wird, wird wieder beim ersten Element begonnen. Die Listenobjekte werden durch Kommas getrennt und die gesamte Liste ist in eckige Klammern gesetzt. Standardmäßig ist eine leere Liste vorhanden, was bedeutet, dass herkömmliche Standardwinkel (zwischen 45 und 135- rad, falls die Verbindungsstellen ziemlich dick sind, oder 90 Grad) zu verwenden sind."
  38. msgctxt "support_interface_angles description"
  39. 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)."
  40. msgstr "Liste der zu verwendenden Linienrichtungen (in ganzen Zahlen). Die Elemente der Liste werden während des Aufbaus der Schichten der Reihe nach abgearbeitet. Wenn das Ende der Liste erreicht wird, wird wieder beim ersten Element begonnen. Die Listenobjekte werden durch Kommas getrennt und die gesamte Liste ist in eckige Klammern gesetzt. Standardmäßig ist eine leere Liste vorhanden, was bedeutet, dass herkömmliche Standardwinkel (zwischen 45 und 135- rad, falls die Verbindungsstellen ziemlich dick sind, oder 90 Grad) zu verwenden sind."
  41. msgctxt "support_roof_angles description"
  42. 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)."
  43. msgstr "Liste der zu verwendenden Linienrichtungen (in ganzen Zahlen). Die Elemente der Liste werden während des Aufbaus der Schichten der Reihe nach abgearbeitet. Wenn das Ende der Liste erreicht wird, wird wieder beim ersten Element begonnen. Die Listenobjekte werden durch Kommas getrennt und die gesamte Liste ist in eckige Klammern gesetzt. Standardmäßig ist eine leere Liste vorhanden, was bedeutet, dass herkömmliche Standardwinkel (zwischen 45 und 135- rad, falls die Verbindungsstellen ziemlich dick sind, oder 90 Grad) zu verwenden sind."
  44. msgctxt "infill_angles description"
  45. 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)."
  46. msgstr "Eine Liste von Ganzzahl-Linienrichtungen für die Verwendung. Elemente aus der Liste werden während des Aufbaus der Schichten sequentiell verwendet und wenn das Listenende erreicht wird, beginnt die Liste von vorne. Die Listenobjekte werden durch Kommas getrennt und die gesamte Liste ist in eckige Klammern gesetzt. Standardmäßig ist eine leere Liste vorhanden, was bedeutet, dass herkömmliche Standardwinkel (45- und 135-Grad für die Linien- und Zickzack-Muster und 45-Grad für alle anderen Muster) verwendet werden."
  47. msgctxt "nozzle_disallowed_areas description"
  48. msgid "A list of polygons with areas the nozzle is not allowed to enter."
  49. msgstr "Eine Liste mit Polygonen mit Bereichen, in welche die Düse nicht eintreten darf."
  50. msgctxt "machine_disallowed_areas description"
  51. msgid "A list of polygons with areas the print head is not allowed to enter."
  52. msgstr "Eine Liste mit Polygonen mit Bereichen, die für den Druckkopf unzulässig sind."
  53. msgctxt "support_tree_branch_reach_limit description"
  54. 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) "
  55. msgstr "Dieser Wert ist die empfohlene Entfernung der Äste von den Stellen, die durch sie gestützt werden. Er kann überschritten werden, damit Äste ihre Zielposition erreichen (Druckplatte oder einen flachen Teil des Modells). Eine Senkung dieses Werts sorgt für eine stabilere Stützstruktur, erhöht jedoch die Anzahl der Äste und damit den Materialverbrauch/die Druckzeit)."
  56. msgctxt "extruder_prime_pos_abs label"
  57. msgid "Absolute Extruder Prime Position"
  58. msgstr "Extruder absolute Einzugsposition"
  59. msgctxt "adaptive_layer_height_variation label"
  60. msgid "Adaptive Layers Maximum Variation"
  61. msgstr "Maximale Abweichung für Anpassschichten"
  62. msgctxt "adaptive_layer_height_threshold label"
  63. msgid "Adaptive Layers Topography Size"
  64. msgstr "Topographische Größe der Anpassschichten"
  65. msgctxt "adaptive_layer_height_variation_step label"
  66. msgid "Adaptive Layers Variation Step Size"
  67. msgstr "Abweichung Schrittgröße für Anpassschichten"
  68. msgctxt "adaptive_layer_height_enabled description"
  69. msgid "Adaptive layers computes the layer heights depending on the shape of the model."
  70. msgstr "Die Funktion Anpassschichten berechnet die Schichthöhe je nach Form des Modells."
  71. msgctxt "infill_wall_line_count description"
  72. msgid "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.\nThis 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."
  73. msgstr "Fügen Sie zusätzliche Wände um den Füllbereich hinzu. Derartige Wände können zu einem verringerten Absacken der oberen/unteren Außenhautlinien beitragen, was bedeutet, dass Sie weniger Außenhautschichten oben/unten bei derselben Qualität von Kosten für zusätzliches Material benötigen."
  74. " Diese Funktion ist verknüpfbar mit „Füllungspolygone verbinden“, um alle Füllungen mit einem einzigen Extrusionspfad zu verbinden, ohne dass hierzu Vorwärtsbewegungen oder Rückzüge erforderlich sind, sofern die richtige Konfiguration gewählt wurde."
  75. msgctxt "platform_adhesion description"
  76. msgid "Adhesion"
  77. msgstr "Haftung"
  78. msgctxt "material_adhesion_tendency label"
  79. msgid "Adhesion Tendency"
  80. msgstr "Haftungstendenz"
  81. msgctxt "skin_overlap description"
  82. 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."
  83. msgstr "Justieren Sie die Überlappung zwischen den Wänden und den Außenhaut-Mittellinien bzw. den Endpunkten der Außenhaut-Mittellinien als Prozentwert der Linienbreite der Außenhautlinien und der inneren Wand. Eine geringe Überlappung ermöglicht die feste Verbindung der Wände mit der Außenhaut. Beachten Sie, dass bei einer einheitlichen Linienbreite von Außenhaut und Wand jeder Prozentwert über 50 % bereits dazu führen kann, dass die Außenhaut über die Wand hinausgeht, da in diesem Moment die Position der Düse des Außenhaut-Extruders möglicherweise bereits über die Wandmitte hinausgeht."
  84. msgctxt "skin_overlap_mm description"
  85. 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."
  86. msgstr "Justieren Sie die Überlappung zwischen den Wänden und den Außenhaut-Mittellinien bzw. den Endpunkten der Außenhaut-Mittellinien. Eine geringe Überlappung ermöglicht die feste Verbindung der Wände mit der Außenhaut. Beachten Sie, dass bei einer einheitlichen Linienbreite von Außenhaut und Wand jeder Wert über die Hälfte der Wandbreite bereits dazu führen kann, dass die Außenhaut über die Wand hinausgeht, da in diesem Moment die Position der Düse des Außenhaut-Extruders möglicherweise bereits über die Wandmitte hinausgeht."
  87. msgctxt "infill_sparse_density description"
  88. msgid "Adjusts the density of infill of the print."
  89. msgstr "Passt die Fülldichte des Drucks an."
  90. msgctxt "support_interface_density description"
  91. 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."
  92. msgstr "Die Dichte der Stützstrukturdächer und -böden wird eingestellt. Ein höherer Wert führt zu besseren Überhängen, aber die Stützstrukturen sind schwieriger zu entfernen."
  93. msgctxt "support_tree_top_rate description"
  94. 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."
  95. msgstr "Dadurch wird die Dichte der Stützstruktur angepasst, mit der die Spitzen der Äste generiert werden. Ein höherer Wert führt zu besseren Überhängen, allerdings lässt sich die Stützstruktur schwerer entfernen. Verwenden Sie bei sehr hohen Werten ein Stützdach oder stellen Sie sicher, dass die Dichte der Stützstruktur oben ähnlich hoch ist."
  96. msgctxt "support_infill_rate description"
  97. msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  98. msgstr "Die Dichte der Stützstruktur wird eingestellt. Ein höherer Wert führt zu besseren Überhängen, aber die Stützstrukturen sind schwieriger zu entfernen."
  99. msgctxt "material_diameter description"
  100. msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament."
  101. msgstr "Der Durchmesser des verwendeten Filaments wird angepasst. Stellen Sie hier den Durchmesser des verwendeten Filaments ein."
  102. msgctxt "support_type description"
  103. 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."
  104. msgstr "Es werden Stützstrukturen platziert. Die Platzierung kann auf „Druckbett berühren“ oder „Überall“ eingestellt werden. Wenn „Überall“ eingestellt wird, werden die Stützstrukturen auch auf dem Modell gedruckt."
  105. msgctxt "prime_tower_wipe_enabled description"
  106. msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower."
  107. msgstr "Nach dem Drucken des Einzugsturms mit einer Düse wird das ausgetretene Material von der anderen Düse am Einzugsturm abgewischt."
  108. msgctxt "retraction_hop_after_extruder_switch description"
  109. 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."
  110. msgstr "Nachdem das Gerät von einem Extruder zu einem anderen gewechselt hat, wird die Druckplatte abgesenkt, um einen Abstand zwischen der Düse und dem Druck zu bilden. Das verhindert, dass die Düse abgesondertes Material auf der Außenseite des Drucks hinterlässt."
  111. msgctxt "retraction_combing option all"
  112. msgid "All"
  113. msgstr "Alle"
  114. msgctxt "print_sequence option all_at_once"
  115. msgid "All at Once"
  116. msgstr "Alle gleichzeitig"
  117. msgctxt "resolution description"
  118. msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)"
  119. msgstr "Alle Einstellungen, die die Auflösung des Drucks beeinflussen. Diese Einstellungen haben große Auswirkung auf die Qualität (und Druckdauer)."
  120. msgctxt "user_defined_print_order_enabled description"
  121. msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first."
  122. msgstr "Ermöglicht es Ihnen, die Objektliste zu ordnen, um die Druckreihenfolge manuell festzulegen. Das erste Objekt in der Liste wird zuerst gedruckt."
  123. msgctxt "alternate_extra_perimeter label"
  124. msgid "Alternate Extra Wall"
  125. msgstr "Abwechselnde Zusatzwände"
  126. msgctxt "alternate_carve_order label"
  127. msgid "Alternate Mesh Removal"
  128. msgstr "Wechselndes Entfernen des Netzes"
  129. msgctxt "material_alternate_walls label"
  130. msgid "Alternate Wall Directions"
  131. msgstr "Abwechselnde Wandrichtungen"
  132. msgctxt "material_alternate_walls description"
  133. msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing."
  134. msgstr "Abwechselnde Wandrichtungen für jede weitere Schicht und jeden Einsatz. Nützlich für Materialien, die Spannungen aufbauen können, wie beim Metalldruck."
  135. msgctxt "machine_buildplate_type option aluminum"
  136. msgid "Aluminum"
  137. msgstr "Aluminium"
  138. msgctxt "machine_always_write_active_tool label"
  139. msgid "Always Write Active Tool"
  140. msgstr "Immer aktives Tools schreiben"
  141. msgctxt "travel_retract_before_outer_wall description"
  142. msgid "Always retract when moving to start an outer wall."
  143. msgstr "Stets zurückziehen, wenn eine Bewegung für den Beginn einer Außenwand erfolgt."
  144. msgctxt "xy_offset description"
  145. 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."
  146. msgstr "Der Abstand, der auf die Polygone in den einzelnen Schichten angewendet wird. Positive Werte können zu große Löcher kompensieren; negative Werte können zu kleine Löcher kompensieren."
  147. msgctxt "xy_offset_layer_0 description"
  148. 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\"."
  149. msgstr "Der Abstand, der auf die Polygone in der ersten Schicht angewendet wird. Ein negativer Wert kann ein Zerquetschen der ersten Schicht, auch als „Elefantenfuß“ bezeichnet, ausgleichen."
  150. msgctxt "support_offset description"
  151. 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."
  152. msgstr "Der Abstand, der auf die Polygone in den einzelnen Schichten angewendet wird. Positive Werte können die Stützbereiche glätten und dadurch eine stabilere Stützstruktur schaffen."
  153. msgctxt "support_bottom_offset description"
  154. msgid "Amount of offset applied to the floors of the support."
  155. msgstr "Umfang des angewandten Versatzes für die Böden der Stützstruktur."
  156. msgctxt "support_roof_offset description"
  157. msgid "Amount of offset applied to the roofs of the support."
  158. msgstr "Umfang des angewandten Versatzes für die Dächer der Stützstruktur."
  159. msgctxt "support_interface_offset description"
  160. msgid "Amount of offset applied to the support interface polygons."
  161. msgstr "Umfang des angewandten Versatzes für die Stützstruktur-Schnittstellen-Polygone."
  162. msgctxt "wipe_retraction_amount description"
  163. msgid "Amount to retract the filament so it does not ooze during the wipe sequence."
  164. msgstr "Wert, um den das Filament eingezogen wird, damit es während des Abwischens nicht austritt."
  165. msgctxt "sub_div_rad_add description"
  166. 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."
  167. msgstr "Ein Zusatz zum Radius von der Mitte jedes Würfels, um die Modellbegrenzungen zu überprüfen und um zu entscheiden, ob dieser Würfel unterteilt werden sollte. Höhere Werte führen zu einem dickeren Gehäuse von kleinen Würfeln im Bereich der Modellbegrenzungen."
  168. msgctxt "anti_overhang_mesh label"
  169. msgid "Anti Overhang Mesh"
  170. msgstr "Anti-Überhang-Netz"
  171. msgctxt "material_anti_ooze_retracted_position label"
  172. msgid "Anti-ooze Retracted Position"
  173. msgstr "Einzugsmaß für Sickerschutz"
  174. msgctxt "material_anti_ooze_retraction_speed label"
  175. msgid "Anti-ooze Retraction Speed"
  176. msgstr "Einzugsgeschwindigkeit für Sickerschutz"
  177. msgctxt "machine_use_extruder_offset_to_offset_coords description"
  178. msgid "Apply the extruder offset to the coordinate system. Affects all extruders."
  179. msgstr "Verwenden Sie den Extruder-Versatz für das Koordinatensystem. Betrifft alle Extruder."
  180. msgctxt "interlocking_enable description"
  181. msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials."
  182. msgstr "Erzeugt eine Struktur aus ineinandergreifenden Balken an den Stellen, an denen sich Modelle berühren. Dies verbessert die Haftung zwischen Modellen, insbesondere bei Modellen, die aus verschiedenen Materialien gedruckt werden."
  183. msgctxt "travel_avoid_other_parts label"
  184. msgid "Avoid Printed Parts When Traveling"
  185. msgstr "Gedruckte Teile bei Bewegung umgehen"
  186. msgctxt "travel_avoid_supports label"
  187. msgid "Avoid Supports When Traveling"
  188. msgstr "Stützstrukturen bei Bewegung umgehen"
  189. msgctxt "z_seam_position option back"
  190. msgid "Back"
  191. msgstr "Hinten"
  192. msgctxt "z_seam_position option backleft"
  193. msgid "Back Left"
  194. msgstr "Hinten links"
  195. msgctxt "z_seam_position option backright"
  196. msgid "Back Right"
  197. msgstr "Hinten rechts"
  198. msgctxt "machine_gcode_flavor option BFB"
  199. msgid "Bits from Bytes"
  200. msgstr "Bits von Bytes"
  201. msgctxt "magic_mesh_surface_mode option both"
  202. msgid "Both"
  203. msgstr "Beides"
  204. msgctxt "support_interface_priority option nothing"
  205. msgid "Both overlap"
  206. msgstr "Beide überlappen"
  207. msgctxt "bottom_layers label"
  208. msgid "Bottom Layers"
  209. msgstr "Untere Schichten"
  210. msgctxt "top_bottom_pattern_0 label"
  211. msgid "Bottom Pattern Initial Layer"
  212. msgstr "Unteres Muster für erste Schicht"
  213. msgctxt "bottom_skin_expand_distance label"
  214. msgid "Bottom Skin Expand Distance"
  215. msgstr "Expansionsdistanz Außenhaut unten"
  216. msgctxt "bottom_skin_preshrink label"
  217. msgid "Bottom Skin Removal Width"
  218. msgstr "Breite für das Entfernen der Außenhaut unten"
  219. msgctxt "bottom_thickness label"
  220. msgid "Bottom Thickness"
  221. msgstr "Untere Dicke"
  222. msgctxt "support_tree_top_rate label"
  223. msgid "Branch Density"
  224. msgstr "Astdichte"
  225. msgctxt "support_tree_branch_diameter label"
  226. msgid "Branch Diameter"
  227. msgstr "Astdichte"
  228. msgctxt "support_tree_branch_diameter_angle label"
  229. msgid "Branch Diameter Angle"
  230. msgstr "Winkel des Astdurchmessers"
  231. msgctxt "material_break_preparation_retracted_position label"
  232. msgid "Break Preparation Retracted Position"
  233. msgstr "Einzugsmaß für Bruchvorbereitung"
  234. msgctxt "material_break_preparation_speed label"
  235. msgid "Break Preparation Retraction Speed"
  236. msgstr "Einzugsgeschwindigkeit für Bruchvorbereitung"
  237. msgctxt "material_break_preparation_temperature label"
  238. msgid "Break Preparation Temperature"
  239. msgstr "Temperatur für Bruchvorbereitung"
  240. msgctxt "material_break_retracted_position label"
  241. msgid "Break Retracted Position"
  242. msgstr "Einzugsmaß für das Brechen"
  243. msgctxt "material_break_speed label"
  244. msgid "Break Retraction Speed"
  245. msgstr "Einzugsgeschwindigkeit für das Brechen"
  246. msgctxt "material_break_temperature label"
  247. msgid "Break Temperature"
  248. msgstr "Bruchtemperatur"
  249. msgctxt "support_skip_some_zags label"
  250. msgid "Break Up Support In Chunks"
  251. msgstr "Stützstruktur in Blöcke aufteilen"
  252. msgctxt "bridge_fan_speed label"
  253. msgid "Bridge Fan Speed"
  254. msgstr "Lüfterdrehzahl Brücke"
  255. msgctxt "bridge_enable_more_layers label"
  256. msgid "Bridge Has Multiple Layers"
  257. msgstr "Brücke hat mehrere Schichten"
  258. msgctxt "bridge_skin_density_2 label"
  259. msgid "Bridge Second Skin Density"
  260. msgstr "Dichte Brücke, zweite Außenhaut"
  261. msgctxt "bridge_fan_speed_2 label"
  262. msgid "Bridge Second Skin Fan Speed"
  263. msgstr "Lüfterdrehzahl Brücke, zweite Außenhaut"
  264. msgctxt "bridge_skin_material_flow_2 label"
  265. msgid "Bridge Second Skin Flow"
  266. msgstr "Fluss Brücke, zweite Außenhaut"
  267. msgctxt "bridge_skin_speed_2 label"
  268. msgid "Bridge Second Skin Speed"
  269. msgstr "Geschwindigkeit Brücke, zweite Außenhaut"
  270. msgctxt "bridge_skin_density label"
  271. msgid "Bridge Skin Density"
  272. msgstr "Dichte der Brücken-Außenhaut"
  273. msgctxt "bridge_skin_material_flow label"
  274. msgid "Bridge Skin Flow"
  275. msgstr "Brücken-Außenhautfluss"
  276. msgctxt "bridge_skin_speed label"
  277. msgid "Bridge Skin Speed"
  278. msgstr "Brücken-Außenhautgeschwindigkeit"
  279. msgctxt "bridge_skin_support_threshold label"
  280. msgid "Bridge Skin Support Threshold"
  281. msgstr "Schwellenwert Stützstruktur Brücken-Außenhaut"
  282. msgctxt "bridge_sparse_infill_max_density label"
  283. msgid "Bridge Sparse Infill Max Density"
  284. msgstr "Maximale Dichte der Materialsparfüllung der Brücke"
  285. msgctxt "bridge_skin_density_3 label"
  286. msgid "Bridge Third Skin Density"
  287. msgstr "Dichte Brücke, dritte Außenhaut"
  288. msgctxt "bridge_fan_speed_3 label"
  289. msgid "Bridge Third Skin Fan Speed"
  290. msgstr "Lüfterdrehzahl Brücke, dritte Außenhaut"
  291. msgctxt "bridge_skin_material_flow_3 label"
  292. msgid "Bridge Third Skin Flow"
  293. msgstr "Fluss Brücke, dritte Außenhaut"
  294. msgctxt "bridge_skin_speed_3 label"
  295. msgid "Bridge Third Skin Speed"
  296. msgstr "Geschwindigkeit Brücke, dritte Außenhaut"
  297. msgctxt "bridge_wall_coast label"
  298. msgid "Bridge Wall Coasting"
  299. msgstr "Coasting Brückenwand"
  300. msgctxt "bridge_wall_material_flow label"
  301. msgid "Bridge Wall Flow"
  302. msgstr "Brückenwandfluss"
  303. msgctxt "bridge_wall_speed label"
  304. msgid "Bridge Wall Speed"
  305. msgstr "Brückenwandgeschwindigkeit"
  306. msgctxt "adhesion_type option brim"
  307. msgid "Brim"
  308. msgstr "Brim"
  309. msgctxt "brim_inside_margin label"
  310. msgid "Brim Avoid Margin"
  311. msgstr "Randvermeidung"
  312. msgctxt "brim_gap label"
  313. msgid "Brim Distance"
  314. msgstr "Abstand zum Brim-Element"
  315. msgctxt "brim_line_count label"
  316. msgid "Brim Line Count"
  317. msgstr "Anzahl der Brim-Linien"
  318. msgctxt "brim_location label"
  319. msgid "Brim Location"
  320. msgstr "Position des Randes"
  321. msgctxt "brim_replaces_support label"
  322. msgid "Brim Replaces Support"
  323. msgstr "Brim ersetzt die Stützstruktur"
  324. msgctxt "brim_width label"
  325. msgid "Brim Width"
  326. msgstr "Breite des Brim-Elements"
  327. msgctxt "platform_adhesion label"
  328. msgid "Build Plate Adhesion"
  329. msgstr "Druckplattenhaftung"
  330. msgctxt "adhesion_extruder_nr label"
  331. msgid "Build Plate Adhesion Extruder"
  332. msgstr "Druckplattenhaftung für Extruder"
  333. msgctxt "adhesion_type label"
  334. msgid "Build Plate Adhesion Type"
  335. msgstr "Druckplattenhaftungstyp"
  336. msgctxt "machine_buildplate_type label"
  337. msgid "Build Plate Material"
  338. msgstr "Druckplattenmaterial"
  339. msgctxt "machine_shape label"
  340. msgid "Build Plate Shape"
  341. msgstr "Druckbettform"
  342. msgctxt "material_bed_temperature label"
  343. msgid "Build Plate Temperature"
  344. msgstr "Temperatur Druckplatte"
  345. msgctxt "material_bed_temperature_layer_0 label"
  346. msgid "Build Plate Temperature Initial Layer"
  347. msgstr "Temperatur der Druckplatte für die erste Schicht"
  348. msgctxt "build_volume_temperature label"
  349. msgid "Build Volume Temperature"
  350. msgstr "Temperatur Druckabmessung"
  351. msgctxt "bv_temp_anomaly_limit label"
  352. msgid "Build Volume temperature Limit"
  353. msgstr "Build-Volumen-Temperatur Grenzwert"
  354. msgctxt "bv_temp_warn_limit label"
  355. msgid "Build Volume temperature Warning"
  356. msgstr "Build-Volumen-Temperatur Warnung"
  357. msgctxt "prime_tower_brim_enable description"
  358. msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height."
  359. msgstr "Durch Aktivieren dieser Einstellung erhält Ihr Prime-Turm einen Rand, auch wenn das Modell keinen hat. Wenn Sie eine stabilere Basis für einen hohen Turm möchten, können Sie die Basis-Höhe erhöhen."
  360. msgctxt "center_object label"
  361. msgid "Center Object"
  362. msgstr "Objekt zentrieren"
  363. msgctxt "conical_overhang_enabled description"
  364. 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."
  365. msgstr "Ändern Sie die Geometrie des gedruckten Modells so, dass eine minimale Stützstruktur benötigt wird. Tiefe Überhänge werden flacher. Überhängende Bereiche fallen herunter und werden damit vertikaler."
  366. msgctxt "support_structure description"
  367. 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."
  368. msgstr "Wählt zwischen den verfügbaren Techniken zur Erzeugung von Stützstrukturen. Mit „Normal“ wird eine Stützstruktur direkt unter den überhängenden Teilen erzeugt, die direkt darauf liegen. In der Einstellung „Tree“ wird eine Baumstützstruktur erzeugt, die zu den überhängenden Teilen reicht und diese stützt. Die Stützstruktur verästelt sich innerhalb des Modells und stützt es so gut wie möglich vom Druckbett aus."
  369. msgctxt "coasting_speed label"
  370. msgid "Coasting Speed"
  371. msgstr "Coasting-Geschwindigkeit"
  372. msgctxt "coasting_volume label"
  373. msgid "Coasting Volume"
  374. msgstr "Coasting-Volumen"
  375. msgctxt "coasting_enable description"
  376. 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."
  377. msgstr "Beim Coasting wird der letzte Teil eines Extrusionswegs durch einen Bewegungsweg ersetzt. Das abgesonderte Material wird zum Druck des letzten Stücks des Extrusionswegs verwendet, um Fadenziehen zu vermindern."
  378. msgctxt "retraction_combing label"
  379. msgid "Combing Mode"
  380. msgstr "Combing-Modus"
  381. msgctxt "retraction_combing description"
  382. 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."
  383. msgstr "Durch Combing bleibt die Düse während der Bewegung innerhalb von bereits gedruckten Bereichen. Dies führt zu einer leicht verlängerten Bewegungszeit, reduziert jedoch die Notwendigkeit von Einzügen. Wenn Combing deaktiviert ist, wird das Material eingezogen und die Düse bewegt sich in einer geraden Linie zum nächsten Punkt. Es ist außerdem möglich, das Combing über die oberen/unteren Außenhautbereiche zu vermeiden, oder nur Combing innerhalb der Füllung auszuführen."
  384. msgctxt "command_line_settings label"
  385. msgid "Command Line Settings"
  386. msgstr "Einstellungen Befehlszeile"
  387. msgctxt "infill_pattern option concentric"
  388. msgid "Concentric"
  389. msgstr "Konzentrisch"
  390. msgctxt "ironing_pattern option concentric"
  391. msgid "Concentric"
  392. msgstr "Konzentrisch"
  393. msgctxt "roofing_pattern option concentric"
  394. msgid "Concentric"
  395. msgstr "Konzentrisch"
  396. msgctxt "support_bottom_pattern option concentric"
  397. msgid "Concentric"
  398. msgstr "Konzentrisch"
  399. msgctxt "support_interface_pattern option concentric"
  400. msgid "Concentric"
  401. msgstr "Konzentrisch"
  402. msgctxt "support_pattern option concentric"
  403. msgid "Concentric"
  404. msgstr "Konzentrisch"
  405. msgctxt "support_roof_pattern option concentric"
  406. msgid "Concentric"
  407. msgstr "Konzentrisch"
  408. msgctxt "top_bottom_pattern option concentric"
  409. msgid "Concentric"
  410. msgstr "Konzentrisch"
  411. msgctxt "top_bottom_pattern_0 option concentric"
  412. msgid "Concentric"
  413. msgstr "Konzentrisch"
  414. msgctxt "support_conical_angle label"
  415. msgid "Conical Support Angle"
  416. msgstr "Winkel konische Stützstruktur"
  417. msgctxt "support_conical_min_width label"
  418. msgid "Conical Support Minimum Width"
  419. msgstr "Mindestbreite konische Stützstruktur"
  420. msgctxt "zig_zaggify_infill label"
  421. msgid "Connect Infill Lines"
  422. msgstr "Füllungslinien verbinden"
  423. msgctxt "connect_infill_polygons label"
  424. msgid "Connect Infill Polygons"
  425. msgstr "Füllungspolygone verbinden"
  426. msgctxt "zig_zaggify_support label"
  427. msgid "Connect Support Lines"
  428. msgstr "Stützlinien verbinden"
  429. msgctxt "support_connect_zigzags label"
  430. msgid "Connect Support ZigZags"
  431. msgstr "Zickzack-Elemente Stützstruktur verbinden"
  432. msgctxt "connect_skin_polygons label"
  433. msgid "Connect Top/Bottom Polygons"
  434. msgstr "Polygone oben/unten verbinden"
  435. msgctxt "connect_infill_polygons description"
  436. 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."
  437. msgstr "Verbinden Sie Füllungspfade, wenn sie nebeneinander laufen. Bei Füllungsmustern, die aus mehreren geschlossenen Polygonen bestehen, reduziert die Aktivierung dieser Einstellung die Durchlaufzeit erheblich."
  438. msgctxt "support_connect_zigzags description"
  439. msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure."
  440. msgstr "Die Zickzack-Elemente werden verbunden. Dies erhöht die Stärke der Zickzack-Stützstruktur."
  441. msgctxt "zig_zaggify_support description"
  442. 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."
  443. msgstr "Die Enden der Stützlinien werden miteinander verbunden. Die Aktivierung dieser Einstellung kann Ihre Stützstruktur stabiler machen und Unterextrusion verhindern, kostet jedoch mehr Material."
  444. msgctxt "zig_zaggify_infill description"
  445. 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."
  446. msgstr "Verbindet die Enden, an denen das Füllmuster auf die Innenwand trifft, mithilfe einer Linie, die der Form der Innenwand folgt. Durch Aktivierung dieser Einstellung kann die Füllung besser an den Wänden haften; auch die Auswirkungen der Füllung auf die Qualität der vertikalen Flächen werden reduziert. Die Deaktivierung dieser Einstellung reduziert den Materialverbrauch."
  447. msgctxt "connect_skin_polygons description"
  448. 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."
  449. msgstr "Außenhaut-Pfade oben/unten verbinden, wenn sie nebeneinander laufen. Bei konzentrischen Mustern reduziert die Aktivierung dieser Einstellung die Durchlaufzeit erheblich. Da die Verbindungen jedoch auf halbem Weg über der Füllung erfolgen können, kann diese Funktion die Oberflächenqualität reduzieren."
  450. msgctxt "z_seam_corner description"
  451. 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."
  452. msgstr "Definieren Sie, ob Kanten am Modell-Umriss die Nahtposition beeinflussen. Keine bedeutet, dass Kanten keinen Einfluss auf die Nahtposition haben. Naht verbergen lässt die Naht mit höherer Wahrscheinlichkeit an einer innenliegenden Kante auftreten. Naht offenlegen lässt die Naht mit höherer Wahrscheinlichkeit an einer Außenkante auftreten. Naht verbergen oder offenlegen lässt die Naht mit höherer Wahrscheinlichkeit an einer innenliegenden oder außenliegenden Kante auftreten. Intelligent verbergen lässt die Naht an innen- oder außenliegenden Kanten auftreten, verwendet aber – falls zweckmäßig – häufiger innenliegende Kanten."
  453. msgctxt "infill_multiplier description"
  454. 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."
  455. msgstr "Konvertieren Sie jede Fülllinie in diese mehrfachen Linien. Die zusätzlichen Linien überschneiden sich nicht, sondern vermeiden sich vielmehr. Damit wird die Füllung steifer, allerdings erhöhen sich Druckzeit und Materialverbrauch."
  456. msgctxt "machine_nozzle_cool_down_speed label"
  457. msgid "Cool Down Speed"
  458. msgstr "Abkühlgeschwindigkeit"
  459. msgctxt "cooling description"
  460. msgid "Cooling"
  461. msgstr "Kühlung"
  462. msgctxt "cooling label"
  463. msgid "Cooling"
  464. msgstr "Kühlung"
  465. msgctxt "infill_pattern option cross"
  466. msgid "Cross"
  467. msgstr "Kreuz"
  468. msgctxt "support_pattern option cross"
  469. msgid "Cross"
  470. msgstr "Quer"
  471. msgctxt "infill_pattern option cross_3d"
  472. msgid "Cross 3D"
  473. msgstr "3D-Kreuz"
  474. msgctxt "cross_infill_pocket_size label"
  475. msgid "Cross 3D Pocket Size"
  476. msgstr "Größe 3D-Quertasche"
  477. msgctxt "cross_support_density_image label"
  478. msgid "Cross Fill Density Image for Support"
  479. msgstr "Querfülldichte Bild für Stützstruktur"
  480. msgctxt "cross_infill_density_image label"
  481. msgid "Cross Infill Density Image"
  482. msgstr "Querfülldichte Bild"
  483. msgctxt "material_crystallinity label"
  484. msgid "Crystalline Material"
  485. msgstr "Kristallines Material"
  486. msgctxt "infill_pattern option cubic"
  487. msgid "Cubic"
  488. msgstr "Würfel"
  489. msgctxt "infill_pattern option cubicsubdiv"
  490. msgid "Cubic Subdivision"
  491. msgstr "Würfel-Unterbereich"
  492. msgctxt "sub_div_rad_add label"
  493. msgid "Cubic Subdivision Shell"
  494. msgstr "Gehäuse Würfel-Unterbereich"
  495. msgctxt "cutting_mesh label"
  496. msgid "Cutting Mesh"
  497. msgstr "Mesh beschneiden"
  498. msgctxt "material_flow_temp_graph description"
  499. msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)."
  500. msgstr "Der Materialfluss (in mm3 pro Sekunde) in Bezug zur Temperatur (Grad Celsius)."
  501. msgctxt "machine_acceleration label"
  502. msgid "Default Acceleration"
  503. msgstr "Voreingestellte Beschleunigung"
  504. msgctxt "default_material_bed_temperature label"
  505. msgid "Default Build Plate Temperature"
  506. msgstr "Standardtemperatur Druckplatte"
  507. msgctxt "machine_max_jerk_e label"
  508. msgid "Default Filament Jerk"
  509. msgstr "Voreingestellter Filament-Ruck"
  510. msgctxt "default_material_print_temperature label"
  511. msgid "Default Printing Temperature"
  512. msgstr "Voreingestellte Drucktemperatur"
  513. msgctxt "machine_max_jerk_xy label"
  514. msgid "Default X-Y Jerk"
  515. msgstr "Voreingestellter X-Y-Ruck"
  516. msgctxt "machine_max_jerk_z label"
  517. msgid "Default Z Jerk"
  518. msgstr "Voreingestellter Z-Ruck"
  519. msgctxt "machine_max_jerk_xy description"
  520. msgid "Default jerk for movement in the horizontal plane."
  521. msgstr "Voreingestellter Ruck für die Bewegung in der horizontalen Planfläche."
  522. msgctxt "machine_max_jerk_z description"
  523. msgid "Default jerk for the motor of the Z-direction."
  524. msgstr "Voreingestellter Ruck für den Motor in Z-Richtung."
  525. msgctxt "machine_max_jerk_e description"
  526. msgid "Default jerk for the motor of the filament."
  527. msgstr "Voreingestellter Ruck für den Motor des Filaments."
  528. msgctxt "bridge_settings_enabled description"
  529. msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed."
  530. msgstr "Erkennt Brücken und ändert die Druckgeschwindigkeit, Fluss- und Lüftereinstellungen während des Drucks von Brücken."
  531. msgctxt "inset_direction description"
  532. 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."
  533. msgstr "Bestimmt die Reihenfolge, in der die Wände gedruckt werden. Das frühe Drucken der Außenwände hilft bei der Maßgenauigkeit, da Fehler von Innenwänden nicht an die Außenseite weitergegeben werden können. Wenn sie jedoch später gedruckt werden, ist ein Stapeldruck besser möglich, wenn Überhänge gedruckt werden. Bei einer ungleichmäßigen Anzahl an Gesamtinnenwänden wird die „mittlere letzte Linie“ immer zuletzt gedruckt."
  534. msgctxt "infill_mesh_order description"
  535. 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."
  536. msgstr "Legt fest, welchen Rang dieses Netz (Mesh) bei mehreren überlappenden Mesh-Füllungen hat. Bereiche, in denen mehrere Mesh-Füllungen überlappen, übernehmen die Einstellungen des Netzes mit dem höchsten Rang. Ist der Rang einer Mesh-Füllung höher, führt dies zu einer Modifizierung der Füllungen oder Mesh-Füllungen, deren Rang niedriger oder normal ist."
  537. msgctxt "lightning_infill_support_angle description"
  538. msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer."
  539. msgstr "Legt fest, wann eine Blitz-Füllschicht alles Darüberliegende tragen soll. Gemessen in dem Winkel, den die Schichtstärke vorgibt."
  540. msgctxt "lightning_infill_overhang_angle description"
  541. msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness."
  542. msgstr "Legt fest, wann eine Blitz-Füllschicht das Modell darüber tragen soll. Gemessen in dem Winkel, den die Schichtstärke vorgibt."
  543. msgctxt "material_diameter label"
  544. msgid "Diameter"
  545. msgstr "Durchmesser"
  546. msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label"
  547. msgid "Diameter Increase To Model"
  548. msgstr "Vergrößerung des Durchmessers zum Modell"
  549. msgctxt "support_tree_bp_diameter description"
  550. msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion."
  551. msgstr "Dies bezeichnet den Durchmesser, den jeder Ast haben sollte, wenn er die Druckplatte erreicht. Verbessert die Betthaftung."
  552. msgctxt "adhesion_type description"
  553. 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."
  554. msgstr "Verschiedene Optionen, die die Materialbereitstellung für die Extrusion und die Haftung am Druckbett verbessern. Durch die Brim-Funktion wird ein flacher, einschichtiger Bereich um die Basis des Modells herum hinzugefügt, um Warping zu verhindern. Durch die Raft-Funktion wird ein dickes Gitter mit Dach unter dem Modell hinzugefügt. Das Skirt-Element ist eine Linie, die um das Modell herum gedruckt wird, aber nicht mit dem Modell verbunden ist."
  555. msgctxt "machine_disallowed_areas label"
  556. msgid "Disallowed Areas"
  557. msgstr "Unzulässige Bereiche"
  558. msgctxt "infill_line_distance description"
  559. msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width."
  560. msgstr "Der Abstand zwischen den gedruckten Fülllinien. Diese Einstellung wird anhand von Fülldichte und Breite der Fülllinien berechnet."
  561. msgctxt "support_initial_layer_line_distance description"
  562. msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density."
  563. msgstr "Der Abstand zwischen der ursprünglichen gedruckten Stützstrukturlinien. Diese Einstellung wird anhand der Dichte der Stützstruktur berechnet."
  564. msgctxt "support_bottom_line_distance description"
  565. msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately."
  566. msgstr "Der Abstand zwischen den gedruckten Stützstrukturbodenlinien. Diese Einstellung wird anhand der Dichte des Stützstrukturboden berechnet, kann aber auch separat eingestellt werden."
  567. msgctxt "support_roof_line_distance description"
  568. msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately."
  569. msgstr "Der Abstand zwischen den gedruckten Stützdachlinien. Diese Einstellung wird anhand der Dichte der Stützstruktur berechnet, kann aber auch separat eingestellt werden."
  570. msgctxt "support_line_distance description"
  571. msgid "Distance between the printed support structure lines. This setting is calculated by the support density."
  572. msgstr "Der Abstand zwischen den gedruckten Stützstrukturlinien. Diese Einstellung wird anhand der Dichte der Stützstruktur berechnet."
  573. msgctxt "support_bottom_distance description"
  574. msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height."
  575. msgstr "Abstand vom Druck zum Boden der Stütze. Beachten Sie, dass dies auf die nächste Schichthöhe aufgerundet wird."
  576. msgctxt "support_top_distance description"
  577. msgid "Distance from the top of the support to the print."
  578. msgstr "Der Abstand von der Oberseite der Stützstruktur zum gedruckten Objekt."
  579. msgctxt "support_z_distance description"
  580. msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers."
  581. msgstr "Abstand von der Ober-/Unterseite der Stützstruktur zum Druck. Diese Lücke ermöglicht es, die Stützen nach dem Drucken des Modells zu entfernen. Die oberste Stützschicht unter dem Modell könnte ein Bruchteil der normalen Schichten sein."
  582. msgctxt "infill_wipe_dist description"
  583. 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."
  584. msgstr "Der Abstand, der nach jeder Fülllinie zurückgelegt wird, damit die Füllung besser an den Wänden haftet. Diese Option ähnelt Füllung überlappen, aber ohne Extrusion und nur an einem Ende der Fülllinie."
  585. msgctxt "wall_0_wipe_dist description"
  586. msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better."
  587. msgstr "Entfernung einer Bewegung nach der Außenwand, um die Z-Naht besser zu verbergen."
  588. msgctxt "draft_shield_dist description"
  589. msgid "Distance of the draft shield from the print, in the X/Y directions."
  590. msgstr "Der Abstand des Windschutzes zum gedruckten Objekt in den X/Y-Richtungen."
  591. msgctxt "ooze_shield_dist description"
  592. msgid "Distance of the ooze shield from the print, in the X/Y directions."
  593. msgstr "Der Abstand des Sicherschutzes zum gedruckten Objekt in den X/Y-Richtungen."
  594. msgctxt "support_xy_distance_overhang description"
  595. msgid "Distance of the support structure from the overhang in the X/Y directions."
  596. msgstr "Der Abstand der Stützstruktur zum Überhang in der X- und Y-Richtung."
  597. msgctxt "support_xy_distance description"
  598. msgid "Distance of the support structure from the print in the X/Y directions."
  599. msgstr "Der Abstand der Stützstruktur zum gedruckten Objekt in der X- und Y-Richtung."
  600. msgctxt "meshfix_fluid_motion_shift_distance description"
  601. msgid "Distance points are shifted to smooth the path"
  602. msgstr "Abstandspunkte werden verschoben, um den Pfad zu glätten"
  603. msgctxt "meshfix_fluid_motion_small_distance description"
  604. msgid "Distance points are shifted to smooth the path"
  605. msgstr "Abstandspunkte werden verschoben, um den Pfad zu glätten"
  606. msgctxt "min_infill_area description"
  607. msgid "Don't generate areas of infill smaller than this (use skin instead)."
  608. msgstr "Keine Füllungsbereiche generieren, die kleiner als dieser sind (stattdessen Außenhaut verwenden)."
  609. msgctxt "draft_shield_height label"
  610. msgid "Draft Shield Height"
  611. msgstr "Höhe des Windschutzes"
  612. msgctxt "draft_shield_height_limitation label"
  613. msgid "Draft Shield Limitation"
  614. msgstr "Begrenzung des Windschutzes"
  615. msgctxt "draft_shield_dist label"
  616. msgid "Draft Shield X/Y Distance"
  617. msgstr "X/Y-Abstand des Windschutzes"
  618. msgctxt "support_mesh_drop_down label"
  619. msgid "Drop Down Support Mesh"
  620. msgstr "Stütznetz ablegen"
  621. msgctxt "dual label"
  622. msgid "Dual Extrusion"
  623. msgstr "Duale Extrusion"
  624. msgctxt "machine_shape option elliptic"
  625. msgid "Elliptic"
  626. msgstr "Elliptisch"
  627. msgctxt "acceleration_enabled label"
  628. msgid "Enable Acceleration Control"
  629. msgstr "Beschleunigungssteuerung aktivieren"
  630. msgctxt "bridge_settings_enabled label"
  631. msgid "Enable Bridge Settings"
  632. msgstr "Brückeneinstellungen aktivieren"
  633. msgctxt "coasting_enable label"
  634. msgid "Enable Coasting"
  635. msgstr "Coasting aktivieren"
  636. msgctxt "support_conical_enabled label"
  637. msgid "Enable Conical Support"
  638. msgstr "Konische Stützstruktur aktivieren"
  639. msgctxt "draft_shield_enabled label"
  640. msgid "Enable Draft Shield"
  641. msgstr "Windschutz aktivieren"
  642. msgctxt "meshfix_fluid_motion_enabled label"
  643. msgid "Enable Fluid Motion"
  644. msgstr "Fließbewegung aktivieren"
  645. msgctxt "ironing_enabled label"
  646. msgid "Enable Ironing"
  647. msgstr "Glätten aktivieren"
  648. msgctxt "jerk_enabled label"
  649. msgid "Enable Jerk Control"
  650. msgstr "Rucksteuerung aktivieren"
  651. msgctxt "machine_nozzle_temp_enabled label"
  652. msgid "Enable Nozzle Temperature Control"
  653. msgstr "Temperatursteuerung der Düse aktivieren"
  654. msgctxt "ooze_shield_enabled label"
  655. msgid "Enable Ooze Shield"
  656. msgstr "Sickerschutz aktivieren"
  657. msgctxt "prime_blob_enable label"
  658. msgid "Enable Prime Blob"
  659. msgstr "Einzugstropfen aktivieren"
  660. msgctxt "prime_tower_enable label"
  661. msgid "Enable Prime Tower"
  662. msgstr "Einzugsturm aktivieren"
  663. msgctxt "cool_fan_enabled label"
  664. msgid "Enable Print Cooling"
  665. msgstr "Kühlung für Drucken aktivieren"
  666. msgctxt "ppr_enable label"
  667. msgid "Enable Print Process Reporting"
  668. msgstr "Druckprozess-Berichterstattung aktivieren"
  669. msgctxt "retraction_enable label"
  670. msgid "Enable Retraction"
  671. msgstr "Einzug aktivieren"
  672. msgctxt "support_brim_enable label"
  673. msgid "Enable Support Brim"
  674. msgstr "Stütz-Brim aktivieren"
  675. msgctxt "support_bottom_enable label"
  676. msgid "Enable Support Floor"
  677. msgstr "Stützboden aktivieren"
  678. msgctxt "support_interface_enable label"
  679. msgid "Enable Support Interface"
  680. msgstr "Stützstruktur-Schnittstelle aktivieren"
  681. msgctxt "support_roof_enable label"
  682. msgid "Enable Support Roof"
  683. msgstr "Stützdach aktivieren"
  684. msgctxt "acceleration_travel_enabled label"
  685. msgid "Enable Travel Acceleration"
  686. msgstr "Beschleunigung für Bewegungen aktivieren"
  687. msgctxt "jerk_travel_enabled label"
  688. msgid "Enable Travel Jerk"
  689. msgstr "Ruckfunktion für Bewegungen aktivieren"
  690. msgctxt "ooze_shield_enabled description"
  691. 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."
  692. msgstr "Aktiviert den äußeren Sickerschutz. Damit wird eine Hülle um das Modell erstellt, die eine zweite Düse abstreift, wenn diese auf derselben Höhe wie die erste Düse steht."
  693. msgctxt "ppr_enable description"
  694. msgid "Enable print process reporting for setting threshold values for possible fault detection."
  695. msgstr "Aktivieren Sie die Druckprozess-Berichterstattung, um Schwellenwerte für eine mögliche Fehlererkennung festzulegen."
  696. msgctxt "small_skin_on_surface description"
  697. 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."
  698. msgstr "Ermöglicht es, dass kleine (bis zu „Kleine obere/untere Breite“) Bereiche auf der obersten (der Luft ausgesetzten) Hautschicht mit Wänden anstelle des Standardmusters gefüllt werden."
  699. msgctxt "jerk_enabled description"
  700. 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."
  701. msgstr "Ermöglicht die Justierung der Ruckfunktion des Druckkopfes bei Änderung der Geschwindigkeit in der X- oder Y-Achse. Eine Erhöhung der Ruckfunktion kann die Druckzeit auf Kosten der Druckqualität reduzieren."
  702. msgctxt "acceleration_enabled description"
  703. msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality."
  704. msgstr "Ermöglicht die Justierung der Druckkopfbeschleunigung. Eine Erhöhung der Beschleunigungen kann die Druckzeit auf Kosten der Druckqualität reduzieren."
  705. msgctxt "cool_fan_enabled description"
  706. msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs."
  707. msgstr "Die Druckerlüfter werden während des Druckens aktiviert. Die Lüfter verbessern die Qualität von Schichten mit kurzen Schichtzeiten und von Brückenbildung/Überhängen."
  708. msgctxt "machine_end_gcode label"
  709. msgid "End G-code"
  710. msgstr "Ende G-Code"
  711. msgctxt "material_end_of_filament_purge_length label"
  712. msgid "End of Filament Purge Length"
  713. msgstr "Ausspüldauer am Ende des Filaments"
  714. msgctxt "material_end_of_filament_purge_speed label"
  715. msgid "End of Filament Purge Speed"
  716. msgstr "Ausspülgeschwindigkeit am Ende des Filaments"
  717. msgctxt "brim_replaces_support description"
  718. 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."
  719. msgstr "Erzwingen Sie den Druck des Brims um das Modell herum, auch wenn dieser Raum sonst durch die Stützstruktur belegt würde. Dies ersetzt einige der ersten Schichten der Stützstruktur durch Brim-Bereiche."
  720. msgctxt "brim_location option everywhere"
  721. msgid "Everywhere"
  722. msgstr "Überall"
  723. msgctxt "support_type option everywhere"
  724. msgid "Everywhere"
  725. msgstr "Überall"
  726. msgctxt "slicing_tolerance option exclusive"
  727. msgid "Exclusive"
  728. msgstr "Exklusiv"
  729. msgctxt "experimental label"
  730. msgid "Experimental"
  731. msgstr "Experimentell"
  732. msgctxt "z_seam_corner option z_seam_corner_outer"
  733. msgid "Expose Seam"
  734. msgstr "Naht offenlegen"
  735. msgctxt "meshfix_extensive_stitching label"
  736. msgid "Extensive Stitching"
  737. msgstr "Extensives Stitching"
  738. msgctxt "meshfix_extensive_stitching description"
  739. 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."
  740. msgstr "Extensives Stitching versucht die Löcher im Netz mit sich berührenden Polygonen abzudecken. Diese Option kann eine lange Verarbeitungszeit in Anspruch nehmen."
  741. msgctxt "infill_wall_line_count label"
  742. msgid "Extra Infill Wall Count"
  743. msgstr "Zusätzliche Füllung Wandlinien"
  744. msgctxt "skin_outline_count label"
  745. msgid "Extra Skin Wall Count"
  746. msgstr "Linienanzahl der zusätzlichen Außenhaut"
  747. msgctxt "switch_extruder_extra_prime_amount description"
  748. msgid "Extra material to prime after nozzle switching."
  749. msgstr "Nach einem Düsenwechsel zusätzlich bereitzustellendes Material."
  750. msgctxt "extruder_prime_pos_x label"
  751. msgid "Extruder Prime X Position"
  752. msgstr "X-Position Extruder-Einzug"
  753. msgctxt "extruder_prime_pos_y label"
  754. msgid "Extruder Prime Y Position"
  755. msgstr "Y-Position Extruder-Einzug"
  756. msgctxt "extruder_prime_pos_z label"
  757. msgid "Extruder Prime Z Position"
  758. msgstr "Z-Position Extruder-Einzug"
  759. msgctxt "machine_extruders_share_heater label"
  760. msgid "Extruders Share Heater"
  761. msgstr "Extruder teilen sich Heizelement"
  762. msgctxt "machine_extruders_share_nozzle label"
  763. msgid "Extruders Share Nozzle"
  764. msgstr "Extruder teilen sich eine Düse"
  765. msgctxt "material_extrusion_cool_down_speed label"
  766. msgid "Extrusion Cool Down Speed Modifier"
  767. msgstr "Geschwindigkeitsregulierer für Abkühlung bei Extrusion"
  768. msgctxt "speed_equalize_flow_width_factor description"
  769. 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."
  770. msgstr "Korrekturfaktor für die Geschwindigkeit auf Basis der Extrusionsbreite. Bei 0 % wird die Bewegungsgeschwindigkeit konstant in der Druckgeschwindigkeit gehalten. Bei 100 % wird die Bewegungsgeschwindigkeit so eingestellt, dass der Fluss (in mm³/s) konstant bleibt, d. h. Linien mit der Hälfte der normalen Linienstärke werden doppelt so schnell gedruckt und Linien mit der doppelten Linienstärke werden halb so schnell gedruckt. Ein Wert größer als 100 % kann dazu beitragen, den höheren Druck zu kompensieren, der zum Extrudieren breiter Linien erforderlich ist."
  771. msgctxt "cool_fan_speed label"
  772. msgid "Fan Speed"
  773. msgstr "Lüfterdrehzahl"
  774. msgctxt "support_fan_enable label"
  775. msgid "Fan Speed Override"
  776. msgstr "Lüfterdrehzahl überschreiben"
  777. msgctxt "small_feature_max_length description"
  778. msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed."
  779. msgstr "Teile, die kleiner sind als dieser Wert, werden in Detailgeschwindigkeit gedruckt."
  780. msgctxt "experimental description"
  781. msgid "Features that haven't completely been fleshed out yet."
  782. msgstr "Merkmale, die noch nicht vollständig ausgearbeitet wurden."
  783. msgctxt "machine_feeder_wheel_diameter label"
  784. msgid "Feeder Wheel Diameter"
  785. msgstr "Feeder-Raddurchmesser"
  786. msgctxt "material_final_print_temperature label"
  787. msgid "Final Printing Temperature"
  788. msgstr "Endgültige Drucktemperatur"
  789. msgctxt "machine_firmware_retract label"
  790. msgid "Firmware Retraction"
  791. msgstr "Firmware-Einzug"
  792. msgctxt "support_extruder_nr_layer_0 label"
  793. msgid "First Layer Support Extruder"
  794. msgstr "Extruder für erste Schicht der Stützstruktur"
  795. msgctxt "material_flow label"
  796. msgid "Flow"
  797. msgstr "Fluss"
  798. msgctxt "speed_equalize_flow_width_factor label"
  799. msgid "Flow Equalization Ratio"
  800. msgstr "Verhältnis für Durchflussausgleich"
  801. msgctxt "flow_anomaly_limit label"
  802. msgid "Flow Limit"
  803. msgstr "Fluss-Grenzwert"
  804. msgctxt "flow_rate_extrusion_offset_factor label"
  805. msgid "Flow Rate Compensation Factor"
  806. msgstr "Ausgleichsfaktor Durchflussrate"
  807. msgctxt "flow_rate_max_extrusion_offset label"
  808. msgid "Flow Rate Compensation Max Extrusion Offset"
  809. msgstr "Ausgleich Durchflussrate max. Extrusionswirkung"
  810. msgctxt "material_flow_temp_graph label"
  811. msgid "Flow Temperature Graph"
  812. msgstr "Fließtemperaturgraf"
  813. msgctxt "flow_warn_limit label"
  814. msgid "Flow Warning"
  815. msgstr "Fluss-Warnung"
  816. msgctxt "material_flow_layer_0 description"
  817. msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value."
  818. msgstr "Fluss-Kompensation für die erste Schicht: Die auf der ersten Schicht extrudierte Materialmenge wird mit diesem Wert multipliziert."
  819. msgctxt "skin_material_flow_layer_0 description"
  820. msgid "Flow compensation on bottom lines of the first layer"
  821. msgstr "Durchflusskompensation an den unteren Linien der ersten Schicht"
  822. msgctxt "infill_material_flow description"
  823. msgid "Flow compensation on infill lines."
  824. msgstr "Durchflusskompensation an Füllungslinien."
  825. msgctxt "support_interface_material_flow description"
  826. msgid "Flow compensation on lines of support roof or floor."
  827. msgstr "Durchflusskompensation an Dach- oder Bodenlinien der Stützstruktur."
  828. msgctxt "roofing_material_flow description"
  829. msgid "Flow compensation on lines of the areas at the top of the print."
  830. msgstr "Durchflusskompensation an Linien von Flächen an der Oberseite des Druckobjekts."
  831. msgctxt "prime_tower_flow description"
  832. msgid "Flow compensation on prime tower lines."
  833. msgstr "Durchflusskompensation an Einzugsturmlinien."
  834. msgctxt "skirt_brim_material_flow description"
  835. msgid "Flow compensation on skirt or brim lines."
  836. msgstr "Durchflusskompensation an Skirt- oder Brim-Linien."
  837. msgctxt "support_bottom_material_flow description"
  838. msgid "Flow compensation on support floor lines."
  839. msgstr "Durchflusskompensation an Stützbodenlinien."
  840. msgctxt "support_roof_material_flow description"
  841. msgid "Flow compensation on support roof lines."
  842. msgstr "Durchflusskompensation an Stützdachlinien."
  843. msgctxt "support_material_flow description"
  844. msgid "Flow compensation on support structure lines."
  845. msgstr "Durchflusskompensation an Stützstrukturlinien."
  846. msgctxt "wall_0_material_flow_layer_0 description"
  847. msgid "Flow compensation on the outermost wall line of the first layer."
  848. msgstr "Durchflusskompensation an der äußersten Wandlinie der ersten Schicht"
  849. msgctxt "wall_0_material_flow description"
  850. msgid "Flow compensation on the outermost wall line."
  851. msgstr "Durchflusskompensation an der äußeren Wandlinie."
  852. msgctxt "wall_0_material_flow_roofing description"
  853. msgid "Flow compensation on the top surface outermost wall line."
  854. msgstr "Flussausgleich an der äußersten Wandlinie der Oberfläche."
  855. msgctxt "wall_x_material_flow_roofing description"
  856. msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one."
  857. msgstr "Flussausgleich auf den Wandlinien der Oberfläche für alle Wandlinien außer der äußersten."
  858. msgctxt "skin_material_flow description"
  859. msgid "Flow compensation on top/bottom lines."
  860. msgstr "Durchflusskompensation an oberen/unteren Linien."
  861. msgctxt "wall_x_material_flow_layer_0 description"
  862. msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer"
  863. msgstr "Durchflusskompensation an allen Wandlinien bis auf die äußere, aber nur für die erste Schicht"
  864. msgctxt "wall_x_material_flow description"
  865. msgid "Flow compensation on wall lines for all wall lines except the outermost one."
  866. msgstr "Durchflusskompensation an allen Wandlinien bis auf die äußere."
  867. msgctxt "wall_material_flow description"
  868. msgid "Flow compensation on wall lines."
  869. msgstr "Durchflusskompensation an Wandlinien."
  870. msgctxt "material_flow description"
  871. msgid "Flow compensation: the amount of material extruded is multiplied by this value."
  872. msgstr "Fluss-Kompensation: Die extrudierte Materialmenge wird mit diesem Wert multipliziert."
  873. msgctxt "meshfix_fluid_motion_angle label"
  874. msgid "Fluid Motion Angle"
  875. msgstr "Fließbewegungswinkel"
  876. msgctxt "meshfix_fluid_motion_shift_distance label"
  877. msgid "Fluid Motion Shift Distance"
  878. msgstr "Fließbewegung – Verschiebeabstand"
  879. msgctxt "meshfix_fluid_motion_small_distance label"
  880. msgid "Fluid Motion Small Distance"
  881. msgstr "Fließbewegung – kleiner Abstand"
  882. msgctxt "material_flush_purge_length label"
  883. msgid "Flush Purge Length"
  884. msgstr "Ausspüldauer"
  885. msgctxt "material_flush_purge_speed label"
  886. msgid "Flush Purge Speed"
  887. msgstr "Ausspülgeschwindigkeit"
  888. msgctxt "min_wall_line_width description"
  889. 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."
  890. msgstr "Bei dünnen Strukturen, die etwa ein- bis zweimal so groß sind wie die Düse, müssen die Linienstärken an die Dicke des Modells angepasst werden. Mit dieser Einstellung wird die Mindestlinienstärke für die Wände festgelegt. Die minimalen Linienstärken bestimmen gleichzeitig auch die maximalen Linienstärken, da wir bei einer gewissen Stärke der Geometrie von N- auf N+1-Wände übergehen, wobei die N-Wände breit und die N+1-Wände schmal sind. Die maximale Wandlinienstärke beträgt das Doppelte der minimalen Wandlinienstärke."
  891. msgctxt "z_seam_position option front"
  892. msgid "Front"
  893. msgstr "Vorne"
  894. msgctxt "z_seam_position option frontleft"
  895. msgid "Front Left"
  896. msgstr "Vorne links"
  897. msgctxt "z_seam_position option frontright"
  898. msgid "Front Right"
  899. msgstr "Vorne rechts"
  900. msgctxt "draft_shield_height_limitation option full"
  901. msgid "Full"
  902. msgstr "Voll"
  903. msgctxt "magic_fuzzy_skin_enabled label"
  904. msgid "Fuzzy Skin"
  905. msgstr "Ungleichmäßige Außenhaut"
  906. msgctxt "magic_fuzzy_skin_point_density label"
  907. msgid "Fuzzy Skin Density"
  908. msgstr "Dichte der ungleichmäßigen Außenhaut"
  909. msgctxt "magic_fuzzy_skin_outside_only label"
  910. msgid "Fuzzy Skin Outside Only"
  911. msgstr "Nur ungleichmäßige Außenhaut"
  912. msgctxt "magic_fuzzy_skin_point_dist label"
  913. msgid "Fuzzy Skin Point Distance"
  914. msgstr "Punktabstand der ungleichmäßigen Außenhaut"
  915. msgctxt "magic_fuzzy_skin_thickness label"
  916. msgid "Fuzzy Skin Thickness"
  917. msgstr "Dicke der ungleichmäßigen Außenhaut"
  918. msgctxt "machine_gcode_flavor label"
  919. msgid "G-code Flavor"
  920. msgstr "G-Code-Variante"
  921. msgctxt "machine_end_gcode description"
  922. msgid "G-code commands to be executed at the very end - separated by \n."
  923. msgstr "G-Code-Befehle, die am Ende ausgeführt werden sollen – getrennt durch "
  924. "."
  925. msgctxt "machine_start_gcode description"
  926. msgid "G-code commands to be executed at the very start - separated by \n."
  927. msgstr "G-Code-Befehle, die zu Beginn ausgeführt werden sollen – getrennt durch "
  928. "."
  929. msgctxt "material_guid description"
  930. msgid "GUID of the material. This is set automatically."
  931. msgstr "GUID des Materials. Dies wird automatisch eingestellt."
  932. msgctxt "gantry_height label"
  933. msgid "Gantry Height"
  934. msgstr "Brückenhöhe"
  935. msgctxt "interlocking_enable label"
  936. msgid "Generate Interlocking Structure"
  937. msgstr "Ineinandergreifende Struktur generieren"
  938. msgctxt "support_enable label"
  939. msgid "Generate Support"
  940. msgstr "Stützstruktur generieren"
  941. msgctxt "support_brim_enable description"
  942. 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."
  943. msgstr "Erstellen Sie ein Brim in den Stützstruktur-Füllungsbereichen der ersten Schicht. Das Brim wird unterhalb der Stützstruktur und nicht drumherum gedruckt. Die Aktivierung dieser Einstellung erhöht die Haftung der Stützstruktur am Druckbett."
  944. msgctxt "support_interface_enable description"
  945. 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."
  946. msgstr "Es wird eine dichte Schnittstelle zwischen dem Modell und der Stützstruktur generiert. Das erstellt eine Außenhaut oben auf der Stützstruktur, auf der das Modell gedruckt wird, und unten auf der Stützstruktur, wo diese auf dem Modell ruht."
  947. msgctxt "support_bottom_enable description"
  948. 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."
  949. msgstr "Es wird eine dichte Materialschicht zwischen dem Boden der Stützstruktur und dem Modell generiert. Das erstellt eine Außenhaut zwischen dem Modell und der Stützstruktur."
  950. msgctxt "support_roof_enable description"
  951. 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."
  952. msgstr "Es wird eine dichte Materialschicht zwischen der Stützdachstruktur und dem Modell generiert. Das erstellt eine Außenhaut zwischen dem Modell und der Stützstruktur."
  953. msgctxt "support_enable description"
  954. msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing."
  955. msgstr "Damit werden Strukturen zur Unterstützung von Modellteilen mit Überhängen generiert. Ohne diese Strukturen würden solche Teile während des Druckvorgangs zusammenfallen."
  956. msgctxt "machine_buildplate_type option glass"
  957. msgid "Glass"
  958. msgstr "Glas"
  959. msgctxt "ironing_enabled description"
  960. 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."
  961. msgstr "Gehen Sie ein weiteres Mal über die Oberfläche, aber extrudieren Sie diesmal sehr wenig Material. Dadurch wird die oberste Kunststoffschicht geschmolzen und es entsteht eine glattere Oberfläche. Der Druck in der Düsenkammer bleibt weiterhin hoch, so dass Risse in der Oberfläche mit Material gefüllt werden."
  962. msgctxt "gradual_infill_step_height label"
  963. msgid "Gradual Infill Step Height"
  964. msgstr "Höhe stufenweise Füllungsschritte"
  965. msgctxt "gradual_infill_steps label"
  966. msgid "Gradual Infill Steps"
  967. msgstr "Stufenweise Füllungsschritte"
  968. msgctxt "gradual_support_infill_step_height label"
  969. msgid "Gradual Support Infill Step Height"
  970. msgstr "Höhe stufenweiser Füllungsschritt Stützstruktur"
  971. msgctxt "gradual_support_infill_steps label"
  972. msgid "Gradual Support Infill Steps"
  973. msgstr "Stufenweise Füllungsschritte Stützstruktur"
  974. msgctxt "cool_min_temperature description"
  975. msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time."
  976. msgstr "Reduzieren Sie die Temperatur allmählich auf diesen Wert, wenn Sie aufgrund der Mindestzeit für eine Schicht mit reduzierter Geschwindigkeit drucken."
  977. msgctxt "infill_pattern option grid"
  978. msgid "Grid"
  979. msgstr "Gitter"
  980. msgctxt "support_bottom_pattern option grid"
  981. msgid "Grid"
  982. msgstr "Gitter"
  983. msgctxt "support_interface_pattern option grid"
  984. msgid "Grid"
  985. msgstr "Gitter"
  986. msgctxt "support_pattern option grid"
  987. msgid "Grid"
  988. msgstr "Gitter"
  989. msgctxt "support_roof_pattern option grid"
  990. msgid "Grid"
  991. msgstr "Gitter"
  992. msgctxt "machine_gcode_flavor option Griffin"
  993. msgid "Griffin"
  994. msgstr "Griffin"
  995. msgctxt "group_outer_walls label"
  996. msgid "Group Outer Walls"
  997. msgstr "Äußere Wände gruppieren"
  998. msgctxt "infill_pattern option gyroid"
  999. msgid "Gyroid"
  1000. msgstr "Gyroid"
  1001. msgctxt "support_pattern option gyroid"
  1002. msgid "Gyroid"
  1003. msgstr "Gyroid"
  1004. msgctxt "machine_heated_build_volume label"
  1005. msgid "Has Build Volume Temperature Stabilization"
  1006. msgstr "Verfügt über Temperaturstabilisierung für den Druckraum"
  1007. msgctxt "machine_heated_bed label"
  1008. msgid "Has Heated Build Plate"
  1009. msgstr "Mit beheizter Druckplatte"
  1010. msgctxt "machine_nozzle_heat_up_speed label"
  1011. msgid "Heat Up Speed"
  1012. msgstr "Aufheizgeschwindigkeit"
  1013. msgctxt "machine_heat_zone_length label"
  1014. msgid "Heat Zone Length"
  1015. msgstr "Heizzonenlänge"
  1016. msgctxt "draft_shield_height description"
  1017. msgid "Height limitation of the draft shield. Above this height no draft shield will be printed."
  1018. msgstr "Die Begrenzung der Höhe des Windschutzes. Oberhalb dieser Höhe wird kein Windschutz mehr gedruckt."
  1019. msgctxt "z_seam_corner option z_seam_corner_inner"
  1020. msgid "Hide Seam"
  1021. msgstr "Naht verbergen"
  1022. msgctxt "z_seam_corner option z_seam_corner_any"
  1023. msgid "Hide or Expose Seam"
  1024. msgstr "Naht verbergen oder offenlegen"
  1025. msgctxt "hole_xy_offset label"
  1026. msgid "Hole Horizontal Expansion"
  1027. msgstr "Horizontalloch-Erweiterung"
  1028. msgctxt "hole_xy_offset_max_diameter label"
  1029. msgid "Hole Horizontal Expansion Max Diameter"
  1030. msgstr "Maximaler Durchmesser der Horizontalloch-Erweiterung"
  1031. msgctxt "small_hole_max_size description"
  1032. msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
  1033. msgstr "Löcher und Teilkonturen mit einem kleineren Durchmesser werden mit Small Feature Speed gedruckt."
  1034. msgctxt "xy_offset label"
  1035. msgid "Horizontal Expansion"
  1036. msgstr "Horizontale Erweiterung"
  1037. msgctxt "material_shrinkage_percentage_xy label"
  1038. msgid "Horizontal Scaling Factor Shrinkage Compensation"
  1039. msgstr "Schrumpfungskompensation für horizontalen Skalierungsfaktor"
  1040. msgctxt "material_break_preparation_retracted_position description"
  1041. msgid "How far the filament can be stretched before it breaks, while heated."
  1042. msgstr "Streckmaß für das Filament im erhitzten Zustand, bevor es bricht."
  1043. msgctxt "material_anti_ooze_retracted_position description"
  1044. msgid "How far the material needs to be retracted before it stops oozing."
  1045. msgstr "Maß, um das das Material eingezogen werden muss, damit es nicht heraussickert."
  1046. msgctxt "flow_rate_extrusion_offset_factor description"
  1047. 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."
  1048. msgstr "Wie weit das Filament bewegt werden kann, um Änderungen der Durchflussrate zu kompensieren – als Prozentsatz der Strecke, die das Filament sich während einer Sekunde Extrusion bewegen würde."
  1049. msgctxt "material_break_retracted_position description"
  1050. msgid "How far to retract the filament in order to break it cleanly."
  1051. msgstr "Maß, um das das Filament eingezogen werden muss, damit es sauber abgebrochen werden kann."
  1052. msgctxt "material_break_preparation_speed description"
  1053. msgid "How fast the filament needs to be retracted just before breaking it off in a retraction."
  1054. msgstr "Geschwindigkeit, mit der das Filament eingezogen werden muss, bevor es beim Einziehen abgebrochen wird."
  1055. msgctxt "material_anti_ooze_retraction_speed description"
  1056. msgid "How fast the material needs to be retracted during a filament switch to prevent oozing."
  1057. msgstr "Geschwindigkeit, mit der das Material beim Filamentwechsel eingezogen werden muss, damit es nicht heraussickert."
  1058. msgctxt "material_end_of_filament_purge_speed description"
  1059. msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material."
  1060. msgstr "Gibt an, wie schnell das Material nach Austausch einer leeren Spule gegen eine neue Spule desselben Materials vorbereitet werden muss."
  1061. msgctxt "material_flush_purge_speed description"
  1062. msgid "How fast to prime the material after switching to a different material."
  1063. msgstr "Gibt an, wie schnell das Material nach einem Wechsel zu einem anderen Material vorbereitet werden muss."
  1064. msgctxt "material_maximum_park_duration description"
  1065. msgid "How long the material can be kept out of dry storage safely."
  1066. msgstr "Gibt an, wie lange das Material sicher außerhalb der trockenen Lagerung aufbewahrt werden kann."
  1067. msgctxt "machine_steps_per_mm_x description"
  1068. msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction."
  1069. msgstr "Anzahl der Schritte des Schrittmotors, die zu einem Millimeter Bewegung in X-Richtung führen."
  1070. msgctxt "machine_steps_per_mm_y description"
  1071. msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction."
  1072. msgstr "Anzahl der Schritte des Schrittmotors, die zu einem Millimeter Bewegung in Y-Richtung führen."
  1073. msgctxt "machine_steps_per_mm_z description"
  1074. msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction."
  1075. msgstr "Anzahl der Schritte des Schrittmotors, die zu einem Millimeter Bewegung in Z-Richtung führen."
  1076. msgctxt "machine_steps_per_mm_e description"
  1077. msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference."
  1078. msgstr "Wie viele Schritte sollen die Schrittmotoren ausführen, um das Feeder-Rad um einen Millimeter auf seinem Umfang zu bewegen."
  1079. msgctxt "material_end_of_filament_purge_length description"
  1080. 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."
  1081. msgstr "Materialmenge (Filamentlänge), die erforderlich ist, um das letzte Material aus der Düse zu entfernen, wenn eine leere Spule durch eine neue Spule mit dem selben Material ersetzt wird."
  1082. msgctxt "material_flush_purge_length description"
  1083. 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."
  1084. msgstr "Materialmenge (Filamentlänge), die erforderlich ist, um bei einem Materialwechsel das letzte Material aus der Düse zu entfernen."
  1085. msgctxt "machine_extruders_shared_nozzle_initial_retraction description"
  1086. 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."
  1087. msgstr "Bestimmt, wie weit das Filament jedes Extruders bei Abschluss des GCode-Skripts „printer-start“ von der gemeinsam genutzten Düsenspitze zurückgezogen sein soll; der Wert sollte gleich oder größer sein als die Länge des gemeinsamen Teils der Düsenkanäle."
  1088. msgctxt "support_interface_priority description"
  1089. msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof."
  1090. msgstr "Hierdurch wird bestimmt, wie Stützstruktur-Schnittstelle und Stützstruktur interagieren, wenn sie sich überschneiden. Zurzeit nur für Stützdächer implementiert."
  1091. msgctxt "support_tree_min_height_to_model description"
  1092. 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."
  1093. msgstr "Dies bezeichnet die minimale Höhe eines Astes, der auf dem Modell platziert werden soll. Verhindert kleine Tropfen in der Stützstruktur. Diese Einstellung wird ignoriert, wenn ein Ast ein Stützdach hält."
  1094. msgctxt "bridge_skin_support_threshold description"
  1095. 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."
  1096. msgstr "Wenn ein Außenhautbereich für weniger als diesen Prozentwert seines Bereichs unterstützt wird, drucken Sie ihn mit den Brückeneinstellungen. Ansonsten erfolgt der Druck mit den normalen Außenhauteinstellungen."
  1097. msgctxt "meshfix_fluid_motion_angle description"
  1098. msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed."
  1099. msgstr "Weicht ein Werkzeugpfad-Segment mehr als diesen Winkel von der allgemeinen Bewegung ab, wird es geglättet."
  1100. msgctxt "bridge_enable_more_layers description"
  1101. 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."
  1102. msgstr "Bei Aktivierung werden die zweite und dritte Schicht über der Luft mit den folgenden Einstellungen gedruckt. Ansonsten werden diese Schichten mit den normalen Einstellungen gedruckt."
  1103. msgctxt "wall_transition_filter_distance description"
  1104. 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."
  1105. msgstr "Wenn in schneller Folge viele Übergänge zwischen verschiedenen Wänden erzeugt würden, werden gar keine Übergänge erzeugt. Übergänge, die näher beieinander liegen als dieser Abstand, werden entfernt."
  1106. msgctxt "raft_base_margin description"
  1107. msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print."
  1108. msgstr "Wenn die Floßbasis aktiviert ist, ist dies der zusätzliche Floßbereich um das Modell herum, das ebenfalls ein Floß erhält. Wenn Sie diesen Rand vergrößern, wird ein stärkeres Floß erzeugt, wobei mehr Material verwendet wird und weniger Fläche für den Druck übrig bleibt."
  1109. msgctxt "raft_margin description"
  1110. 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."
  1111. msgstr "Wenn die Raft-Funktion aktiviert ist, gibt es einen zusätzlichen Raft-Bereich um das Modell herum, für das ein Raft erstellt wird. Bei einem größeren Abstand wird ein kräftigeres Raft-Element hergestellt, wobei jedoch mehr Material verbraucht wird und weniger Platz für das gedruckte Modell verbleibt."
  1112. msgctxt "raft_interface_margin description"
  1113. msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print."
  1114. msgstr "Wenn die Floßmitte aktiviert ist, ist dies der zusätzliche Floßbereich um das Modell, der ebenfalls ein Floß erhält. Wenn Sie diesen Rand erhöhen, wird ein stärkeres Floß erzeugt, wobei mehr Material verwendet wird und weniger Fläche für den Druck übrig bleibt."
  1115. msgctxt "raft_surface_margin description"
  1116. msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print."
  1117. msgstr "Wenn die Oberseite des Floßes aktiviert ist, ist dies der zusätzliche Bereich um das Modell herum, der ebenfalls mit einem Floß versehen wird. Wenn Sie diesen Rand erhöhen, wird ein stärkeres Floß erzeugt, wobei mehr Material verwendet wird und weniger Fläche für den Druck übrig bleibt."
  1118. msgctxt "meshfix_union_all description"
  1119. 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."
  1120. msgstr "Die interne Geometrie, die durch überlappende Volumen innerhalb eines Netzes entsteht, wird ignoriert und diese Volumen werden als ein Einziges gedruckt. Dadurch können unbeabsichtigte innere Hohlräume verschwinden."
  1121. msgctxt "material_bed_temp_prepend label"
  1122. msgid "Include Build Plate Temperature"
  1123. msgstr "Temperaturprüfung der Druckplatte einfügen"
  1124. msgctxt "material_print_temp_prepend label"
  1125. msgid "Include Material Temperatures"
  1126. msgstr "Materialtemperaturen einfügen"
  1127. msgctxt "slicing_tolerance option inclusive"
  1128. msgid "Inclusive"
  1129. msgstr "Inklusiv"
  1130. msgctxt "infill description"
  1131. msgid "Infill"
  1132. msgstr "Füllung"
  1133. msgctxt "infill label"
  1134. msgid "Infill"
  1135. msgstr "Füllung"
  1136. msgctxt "acceleration_infill label"
  1137. msgid "Infill Acceleration"
  1138. msgstr "Beschleunigung Füllung"
  1139. msgctxt "infill_before_walls label"
  1140. msgid "Infill Before Walls"
  1141. msgstr "Füllung vor Wänden"
  1142. msgctxt "infill_sparse_density label"
  1143. msgid "Infill Density"
  1144. msgstr "Fülldichte"
  1145. msgctxt "infill_extruder_nr label"
  1146. msgid "Infill Extruder"
  1147. msgstr "Extruder für Füllung"
  1148. msgctxt "infill_material_flow label"
  1149. msgid "Infill Flow"
  1150. msgstr "Fluss der Füllung"
  1151. msgctxt "jerk_infill label"
  1152. msgid "Infill Jerk"
  1153. msgstr "Ruckfunktion Füllung"
  1154. msgctxt "infill_sparse_thickness label"
  1155. msgid "Infill Layer Thickness"
  1156. msgstr "Füllschichtdicke"
  1157. msgctxt "infill_angles label"
  1158. msgid "Infill Line Directions"
  1159. msgstr "Linienrichtungen Füllung"
  1160. msgctxt "infill_line_distance label"
  1161. msgid "Infill Line Distance"
  1162. msgstr "Linienabstand Füllung"
  1163. msgctxt "infill_multiplier label"
  1164. msgid "Infill Line Multiplier"
  1165. msgstr "Fülllinie multiplizieren"
  1166. msgctxt "infill_line_width label"
  1167. msgid "Infill Line Width"
  1168. msgstr "Breite der Fülllinien"
  1169. msgctxt "infill_mesh label"
  1170. msgid "Infill Mesh"
  1171. msgstr "Mesh-Füllung"
  1172. msgctxt "infill_support_angle label"
  1173. msgid "Infill Overhang Angle"
  1174. msgstr "Füllung für Überhänge Stützstruktur"
  1175. msgctxt "infill_overlap_mm label"
  1176. msgid "Infill Overlap"
  1177. msgstr "Füllung überlappen"
  1178. msgctxt "infill_overlap label"
  1179. msgid "Infill Overlap Percentage"
  1180. msgstr "Prozentsatz Füllung überlappen"
  1181. msgctxt "infill_pattern label"
  1182. msgid "Infill Pattern"
  1183. msgstr "Füllmuster"
  1184. msgctxt "speed_infill label"
  1185. msgid "Infill Speed"
  1186. msgstr "Füllgeschwindigkeit"
  1187. msgctxt "infill_support_enabled label"
  1188. msgid "Infill Support"
  1189. msgstr "Füllstruktur"
  1190. msgctxt "infill_enable_travel_optimization label"
  1191. msgid "Infill Travel Optimization"
  1192. msgstr "Bewegungsoptimierung Füllung"
  1193. msgctxt "infill_wipe_dist label"
  1194. msgid "Infill Wipe Distance"
  1195. msgstr "Wipe-Abstand der Füllung"
  1196. msgctxt "infill_offset_x label"
  1197. msgid "Infill X Offset"
  1198. msgstr "X-Versatz Füllung"
  1199. msgctxt "infill_offset_y label"
  1200. msgid "Infill Y Offset"
  1201. msgstr "Y-Versatz Füllung"
  1202. msgctxt "initial_bottom_layers label"
  1203. msgid "Initial Bottom Layers"
  1204. msgstr "Erste untere Schichten"
  1205. msgctxt "cool_fan_speed_0 label"
  1206. msgid "Initial Fan Speed"
  1207. msgstr "Anfängliche Lüfterdrehzahl"
  1208. msgctxt "acceleration_layer_0 label"
  1209. msgid "Initial Layer Acceleration"
  1210. msgstr "Beschleunigung erste Schicht"
  1211. msgctxt "skin_material_flow_layer_0 label"
  1212. msgid "Initial Layer Bottom Flow"
  1213. msgstr "Unterer Fluss der ersten Schicht"
  1214. msgctxt "support_tree_bp_diameter label"
  1215. msgid "Initial Layer Diameter"
  1216. msgstr "Durchmesser der ersten Schicht"
  1217. msgctxt "material_flow_layer_0 label"
  1218. msgid "Initial Layer Flow"
  1219. msgstr "Fluss der ersten Schicht"
  1220. msgctxt "layer_height_0 label"
  1221. msgid "Initial Layer Height"
  1222. msgstr "Dicke der ersten Schicht"
  1223. msgctxt "xy_offset_layer_0 label"
  1224. msgid "Initial Layer Horizontal Expansion"
  1225. msgstr "Horizontale Erweiterung erste Schicht"
  1226. msgctxt "wall_x_material_flow_layer_0 label"
  1227. msgid "Initial Layer Inner Wall Flow"
  1228. msgstr "Innenwandfluss der ersten Schicht"
  1229. msgctxt "jerk_layer_0 label"
  1230. msgid "Initial Layer Jerk"
  1231. msgstr "Ruckfunktion der ersten Schicht"
  1232. msgctxt "initial_layer_line_width_factor label"
  1233. msgid "Initial Layer Line Width"
  1234. msgstr "Linienbreite der ersten Schicht"
  1235. msgctxt "wall_0_material_flow_layer_0 label"
  1236. msgid "Initial Layer Outer Wall Flow"
  1237. msgstr "Außenwandfluss der ersten Schicht"
  1238. msgctxt "acceleration_print_layer_0 label"
  1239. msgid "Initial Layer Print Acceleration"
  1240. msgstr "Druckbeschleunigung für die erste Schicht"
  1241. msgctxt "jerk_print_layer_0 label"
  1242. msgid "Initial Layer Print Jerk"
  1243. msgstr "Ruckfunktion Druck für die erste Schicht"
  1244. msgctxt "speed_print_layer_0 label"
  1245. msgid "Initial Layer Print Speed"
  1246. msgstr "Druckgeschwindigkeit für die erste Schicht"
  1247. msgctxt "speed_layer_0 label"
  1248. msgid "Initial Layer Speed"
  1249. msgstr "Geschwindigkeit der ersten Schicht"
  1250. msgctxt "support_initial_layer_line_distance label"
  1251. msgid "Initial Layer Support Line Distance"
  1252. msgstr "Linienabstand der ursprünglichen Stützstruktur"
  1253. msgctxt "acceleration_travel_layer_0 label"
  1254. msgid "Initial Layer Travel Acceleration"
  1255. msgstr "Geschwindigkeit der Bewegung für die erste Schicht"
  1256. msgctxt "jerk_travel_layer_0 label"
  1257. msgid "Initial Layer Travel Jerk"
  1258. msgstr "Ruckfunktion Bewegung für die erste Schicht"
  1259. msgctxt "speed_travel_layer_0 label"
  1260. msgid "Initial Layer Travel Speed"
  1261. msgstr "Bewegungsgeschwindigkeit für die erste Schicht"
  1262. msgctxt "layer_0_z_overlap label"
  1263. msgid "Initial Layer Z Overlap"
  1264. msgstr "Z Überlappung der ersten Schicht"
  1265. msgctxt "material_initial_print_temperature label"
  1266. msgid "Initial Printing Temperature"
  1267. msgstr "Anfängliche Drucktemperatur"
  1268. msgctxt "acceleration_wall_x label"
  1269. msgid "Inner Wall Acceleration"
  1270. msgstr "Beschleunigung Innenwand"
  1271. msgctxt "wall_x_extruder_nr label"
  1272. msgid "Inner Wall Extruder"
  1273. msgstr "Extruder Innenwand"
  1274. msgctxt "jerk_wall_x label"
  1275. msgid "Inner Wall Jerk"
  1276. msgstr "Ruckfunktion Innenwand"
  1277. msgctxt "speed_wall_x label"
  1278. msgid "Inner Wall Speed"
  1279. msgstr "Geschwindigkeit Innenwand"
  1280. msgctxt "wall_x_material_flow label"
  1281. msgid "Inner Wall(s) Flow"
  1282. msgstr "Wandfluss innen"
  1283. msgctxt "wall_line_width_x label"
  1284. msgid "Inner Wall(s) Line Width"
  1285. msgstr "Breite der inneren Wandlinien"
  1286. msgctxt "wall_0_inset description"
  1287. 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."
  1288. msgstr "Verwendete Einfügung am Pfad zur Außenwand. Wenn die Außenwand kleiner als die Düse ist und nach den Innenwänden gedruckt wird, verwenden Sie diesen Versatz, damit die Öffnung in der Düse mit den Innenwänden überlappt, anstelle mit der Außenseite des Modells."
  1289. msgctxt "brim_location option inside"
  1290. msgid "Inside Only"
  1291. msgstr "Nur innen"
  1292. msgctxt "inset_direction option inside_out"
  1293. msgid "Inside To Outside"
  1294. msgstr "Von innen nach außen"
  1295. msgctxt "support_interface_priority option interface_lines_overwrite_support_area"
  1296. msgid "Interface lines preferred"
  1297. msgstr "Schnittstellenlinien priorisiert"
  1298. msgctxt "support_interface_priority option interface_area_overwrite_support_area"
  1299. msgid "Interface preferred"
  1300. msgstr "Schnittstelle priorisiert"
  1301. msgctxt "prime_tower_mode option interleaved"
  1302. msgid "Interleaved"
  1303. msgstr "Verschachtelt"
  1304. msgctxt "interlocking_beam_layer_count label"
  1305. msgid "Interlocking Beam Layer Count"
  1306. msgstr "Anzahl der Schichten ineinandergreifender Balken"
  1307. msgctxt "interlocking_beam_width label"
  1308. msgid "Interlocking Beam Width"
  1309. msgstr "Breite der ineinandergreifenden Balken"
  1310. msgctxt "interlocking_boundary_avoidance label"
  1311. msgid "Interlocking Boundary Avoidance"
  1312. msgstr "Abstand zu Begrenzungen ineinandergreifender Strukturen"
  1313. msgctxt "interlocking_depth label"
  1314. msgid "Interlocking Depth"
  1315. msgstr "Tiefe der ineinandergreifenden Struktur"
  1316. msgctxt "interlocking_orientation label"
  1317. msgid "Interlocking Structure Orientation"
  1318. msgstr "Ausrichtung der ineinandergreifenden Struktur"
  1319. msgctxt "ironing_only_highest_layer label"
  1320. msgid "Iron Only Highest Layer"
  1321. msgstr "Nur oberste Schicht glätten"
  1322. msgctxt "acceleration_ironing label"
  1323. msgid "Ironing Acceleration"
  1324. msgstr "Beschleunigung Glättung"
  1325. msgctxt "ironing_flow label"
  1326. msgid "Ironing Flow"
  1327. msgstr "Glättungsfluss"
  1328. msgctxt "ironing_inset label"
  1329. msgid "Ironing Inset"
  1330. msgstr "Glättungseinsatz"
  1331. msgctxt "jerk_ironing label"
  1332. msgid "Ironing Jerk"
  1333. msgstr "Ruckfunktion glätten"
  1334. msgctxt "ironing_line_spacing label"
  1335. msgid "Ironing Line Spacing"
  1336. msgstr "Glättungslinienabstand"
  1337. msgctxt "ironing_pattern label"
  1338. msgid "Ironing Pattern"
  1339. msgstr "Glättungsmuster"
  1340. msgctxt "speed_ironing label"
  1341. msgid "Ironing Speed"
  1342. msgstr "Glättungsgeschwindigkeit"
  1343. msgctxt "machine_center_is_zero label"
  1344. msgid "Is Center Origin"
  1345. msgstr "Is-Center-Ursprung"
  1346. msgctxt "material_is_support_material label"
  1347. msgid "Is support material"
  1348. msgstr "Ist Stützmaterial"
  1349. msgctxt "material_crystallinity description"
  1350. 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)?"
  1351. msgstr "Lässt sich das Material im erhitzten Zustand leicht brechen (kristallin) oder bildet es lange, verflochtene Polymerketten (nicht kristallin)?"
  1352. msgctxt "material_is_support_material description"
  1353. msgid "Is this material typically used as a support material during printing."
  1354. msgstr "Wird dieses Material normalerweise während des Druckvorgangs als Stützmaterial verwendet?"
  1355. msgctxt "magic_fuzzy_skin_outside_only description"
  1356. msgid "Jitter only the parts' outlines and not the parts' holes."
  1357. msgstr "Es werden nur die Umrisse der Teile gejittert und nicht die Löcher der Teile."
  1358. msgctxt "meshfix_keep_open_polygons label"
  1359. msgid "Keep Disconnected Faces"
  1360. msgstr "Unterbrochene Flächen beibehalten"
  1361. msgctxt "layer_height label"
  1362. msgid "Layer Height"
  1363. msgstr "Schichtdicke"
  1364. msgctxt "layer_start_x label"
  1365. msgid "Layer Start X"
  1366. msgstr "Schichtstart X"
  1367. msgctxt "layer_start_y label"
  1368. msgid "Layer Start Y"
  1369. msgstr "Schichtstart Y"
  1370. msgctxt "raft_base_thickness description"
  1371. msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate."
  1372. msgstr "Die Schichtdicke der Raft-Basisschicht. Dabei sollte es sich um eine dicke Schicht handeln, die fest an der Druckplatte haftet."
  1373. msgctxt "raft_interface_thickness description"
  1374. msgid "Layer thickness of the middle raft layer."
  1375. msgstr "Die Schichtdicke des Raft-Mittelbereichs."
  1376. msgctxt "raft_surface_thickness description"
  1377. msgid "Layer thickness of the top raft layers."
  1378. msgstr "Die Schichtdicke der oberen Raft-Schichten."
  1379. msgctxt "support_skip_zag_per_mm description"
  1380. msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away."
  1381. msgstr "Überspringen Sie eine Verbindung zwischen den Stützstrukturlinien nach jedem N-Millimeter, um das Brechen der Stützstruktur zu erleichtern."
  1382. msgctxt "z_seam_position option left"
  1383. msgid "Left"
  1384. msgstr "Links"
  1385. msgctxt "cool_lift_head label"
  1386. msgid "Lift Head"
  1387. msgstr "Druckkopf anheben"
  1388. msgctxt "infill_pattern option lightning"
  1389. msgid "Lightning"
  1390. msgstr "Blitz"
  1391. msgctxt "lightning_infill_overhang_angle label"
  1392. msgid "Lightning Infill Overhang Angle"
  1393. msgstr "Überstandswinkel der Blitz-Füllung"
  1394. msgctxt "lightning_infill_prune_angle label"
  1395. msgid "Lightning Infill Prune Angle"
  1396. msgstr "Beschnittwinkel der Blitz-Füllung"
  1397. msgctxt "lightning_infill_straightening_angle label"
  1398. msgid "Lightning Infill Straightening Angle"
  1399. msgstr "Begradigungswinkel der Blitz-Füllung"
  1400. msgctxt "lightning_infill_support_angle label"
  1401. msgid "Lightning Infill Support Angle"
  1402. msgstr "Stützwinkel der Blitz-Füllung"
  1403. msgctxt "support_tree_limit_branch_reach label"
  1404. msgid "Limit Branch Reach"
  1405. msgstr "Begrenzung der Astreichweite"
  1406. msgctxt "support_tree_limit_branch_reach description"
  1407. 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)"
  1408. msgstr "Dieser Parameter schränkt ein, wie weit sich jeder Ast von der Stelle entfernen kann, die er stützt. Dadurch wird die Stabilität der Stützstruktur gestärkt, jedoch erhöht sich die Anzahl der Äste (und damit der Materialverbrauch•/ die Druckzeit)."
  1409. msgctxt "bv_temp_warn_limit description"
  1410. msgid "Limit on Build Volume Temperature warning for detection."
  1411. msgstr "Grenzwert für die Erkennung einer Warnung vor der Build-Volumen-Temperatur."
  1412. msgctxt "bv_temp_anomaly_limit description"
  1413. msgid "Limit on Build Volume temperature Anomaly for detection."
  1414. msgstr "Grenzwert für Anomalie der Build-Volumen-Temperatur für die Erkennung."
  1415. msgctxt "print_temp_anomaly_limit description"
  1416. msgid "Limit on Print Temperature anomaly for detection."
  1417. msgstr "Grenzwert für die Erkennung von Drucktemperatur-Anomalien."
  1418. msgctxt "print_temp_warn_limit description"
  1419. msgid "Limit on Print temperature warning for detection."
  1420. msgstr "Grenzwert für Drucktemperaturwarnung zur Erkennung."
  1421. msgctxt "flow_anomaly_limit description"
  1422. msgid "Limit on flow anomaly for detection."
  1423. msgstr "Grenzwert für die Flussanomalie zur Erkennung."
  1424. msgctxt "flow_warn_limit description"
  1425. msgid "Limit on the flow warning for detection."
  1426. msgstr "Grenzwert für die Fluss-Warnung zur Erkennung."
  1427. msgctxt "cutting_mesh description"
  1428. 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."
  1429. msgstr "Beschränkt die Menge dieses Meshs innerhalb der anderen Meshes. Sie können diese Funktion verwenden, um bestimmte Bereiche eines Mesh-Drucks mit unterschiedlichen Einstellungen und einem völlig anderen Extruder zu produzieren."
  1430. msgctxt "draft_shield_height_limitation option limited"
  1431. msgid "Limited"
  1432. msgstr "Begrenzt"
  1433. msgctxt "line_width label"
  1434. msgid "Line Width"
  1435. msgstr "Linienbreite"
  1436. msgctxt "infill_pattern option lines"
  1437. msgid "Lines"
  1438. msgstr "Linien"
  1439. msgctxt "roofing_pattern option lines"
  1440. msgid "Lines"
  1441. msgstr "Linien"
  1442. msgctxt "support_bottom_pattern option lines"
  1443. msgid "Lines"
  1444. msgstr "Linien"
  1445. msgctxt "support_interface_pattern option lines"
  1446. msgid "Lines"
  1447. msgstr "Linien"
  1448. msgctxt "support_pattern option lines"
  1449. msgid "Lines"
  1450. msgstr "Linien"
  1451. msgctxt "support_roof_pattern option lines"
  1452. msgid "Lines"
  1453. msgstr "Linien"
  1454. msgctxt "top_bottom_pattern option lines"
  1455. msgid "Lines"
  1456. msgstr "Linien"
  1457. msgctxt "top_bottom_pattern_0 option lines"
  1458. msgid "Lines"
  1459. msgstr "Linien"
  1460. msgctxt "machine_gcode_flavor option MACH3"
  1461. msgid "Mach3"
  1462. msgstr "Mach3"
  1463. msgctxt "machine_settings label"
  1464. msgid "Machine"
  1465. msgstr "Gerät"
  1466. msgctxt "machine_depth label"
  1467. msgid "Machine Depth"
  1468. msgstr "Gerätetiefe"
  1469. msgctxt "machine_head_with_fans_polygon label"
  1470. msgid "Machine Head & Fan Polygon"
  1471. msgstr "Gerätekopf und Lüfter Polygon"
  1472. msgctxt "machine_height label"
  1473. msgid "Machine Height"
  1474. msgstr "Gerätehöhe"
  1475. msgctxt "machine_name label"
  1476. msgid "Machine Type"
  1477. msgstr "Gerät"
  1478. msgctxt "machine_width label"
  1479. msgid "Machine Width"
  1480. msgstr "Gerätebreite"
  1481. msgctxt "machine_settings description"
  1482. msgid "Machine specific settings"
  1483. msgstr "Gerätespezifische Einstellungen"
  1484. msgctxt "conical_overhang_enabled label"
  1485. msgid "Make Overhang Printable"
  1486. msgstr "Überhänge druckbar machen"
  1487. msgctxt "multiple_mesh_overlap description"
  1488. msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better."
  1489. msgstr "Erstellen Sie Netze, die einander berühren und sich leicht überlappen. Damit haften sie besser aneinander."
  1490. msgctxt "support_conical_enabled description"
  1491. msgid "Make support areas smaller at the bottom than at the overhang."
  1492. msgstr "Macht die Bereiche der Stützstruktur am Boden kleiner als beim Überhang."
  1493. msgctxt "support_mesh_drop_down description"
  1494. msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh."
  1495. msgstr "Sorgt für Unterstützung überall unterhalb des Stütznetzes, sodass kein Überhang im Stütznetz vorhanden ist."
  1496. msgctxt "extruder_prime_pos_abs description"
  1497. msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head."
  1498. msgstr "Bevorzugen Sie eine absolute Einzugsposition des Extruders anstelle einer relativen Position zur zuletzt bekannten Kopfposition."
  1499. msgctxt "layer_0_z_overlap description"
  1500. 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.\nIt may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior"
  1501. msgstr "Lassen Sie die erste und zweite Ebene des Modells in Z-Richtung überlappen, um das im Luftspalt verlorene Filament auszugleichen. Alle Modelle oberhalb der ersten Modellebene werden um diesen Betrag nach unten verschoben."
  1502. "Es kann vorkommen, dass aufgrund dieser Einstellung die zweite Ebene unterhalb der ersten Ebene gedruckt wird. Dieses Verhalten ist beabsichtigt."
  1503. msgctxt "meshfix description"
  1504. msgid "Make the meshes more suited for 3D printing."
  1505. msgstr "Passe die Gitter besser an den 3D-Druck an."
  1506. msgctxt "machine_gcode_flavor option Makerbot"
  1507. msgid "Makerbot"
  1508. msgstr "Makerbot"
  1509. msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)"
  1510. msgid "Marlin"
  1511. msgstr "Marlin"
  1512. msgctxt "machine_gcode_flavor option RepRap (Volumetric)"
  1513. msgid "Marlin (Volumetric)"
  1514. msgstr "Marlin (Volumetrisch)"
  1515. msgctxt "material description"
  1516. msgid "Material"
  1517. msgstr "Material"
  1518. msgctxt "material label"
  1519. msgid "Material"
  1520. msgstr "Material"
  1521. msgctxt "material_brand label"
  1522. msgid "Material Brand"
  1523. msgstr "Material-Marke"
  1524. msgctxt "material_guid label"
  1525. msgid "Material GUID"
  1526. msgstr "Material-GUID"
  1527. msgctxt "material_type label"
  1528. msgid "Material Type"
  1529. msgstr "Materialart"
  1530. msgctxt "max_extrusion_before_wipe label"
  1531. msgid "Material Volume Between Wipes"
  1532. msgstr "Materialmenge zwischen den Wischvorgängen"
  1533. msgctxt "retraction_combing_max_distance label"
  1534. msgid "Max Comb Distance With No Retract"
  1535. msgstr "Max. Combing Entfernung ohne Einziehen"
  1536. msgctxt "machine_max_acceleration_x label"
  1537. msgid "Maximum Acceleration X"
  1538. msgstr "Maximale Beschleunigung X"
  1539. msgctxt "machine_max_acceleration_y label"
  1540. msgid "Maximum Acceleration Y"
  1541. msgstr "Maximale Beschleunigung Y"
  1542. msgctxt "machine_max_acceleration_z label"
  1543. msgid "Maximum Acceleration Z"
  1544. msgstr "Maximale Beschleunigung Z"
  1545. msgctxt "support_tree_angle label"
  1546. msgid "Maximum Branch Angle"
  1547. msgstr "Maximaler Astwinkel"
  1548. msgctxt "meshfix_maximum_deviation label"
  1549. msgid "Maximum Deviation"
  1550. msgstr "Maximale Abweichung"
  1551. msgctxt "meshfix_maximum_extrusion_area_deviation label"
  1552. msgid "Maximum Extrusion Area Deviation"
  1553. msgstr "Maximale Abweichung der Extrusionsfläche"
  1554. msgctxt "cool_fan_speed_max label"
  1555. msgid "Maximum Fan Speed"
  1556. msgstr "Maximaldrehzahl des Lüfters"
  1557. msgctxt "machine_max_acceleration_e label"
  1558. msgid "Maximum Filament Acceleration"
  1559. msgstr "Maximale Beschleunigung Filament"
  1560. msgctxt "conical_overhang_angle label"
  1561. msgid "Maximum Model Angle"
  1562. msgstr "Maximaler Winkel des Modells"
  1563. msgctxt "conical_overhang_hole_size label"
  1564. msgid "Maximum Overhang Hole Area"
  1565. msgstr "Maximaler Lochflächen-Überstand"
  1566. msgctxt "material_maximum_park_duration label"
  1567. msgid "Maximum Park Duration"
  1568. msgstr "Maximale Parkdauer"
  1569. msgctxt "meshfix_maximum_resolution label"
  1570. msgid "Maximum Resolution"
  1571. msgstr "Maximale Auflösung"
  1572. msgctxt "retraction_count_max label"
  1573. msgid "Maximum Retraction Count"
  1574. msgstr "Maximale Anzahl von Einzügen"
  1575. msgctxt "max_skin_angle_for_expansion label"
  1576. msgid "Maximum Skin Angle for Expansion"
  1577. msgstr "Maximaler Winkel Außenhaut für Expansion"
  1578. msgctxt "machine_max_feedrate_e label"
  1579. msgid "Maximum Speed E"
  1580. msgstr "Maximaldrehzahl E"
  1581. msgctxt "machine_max_feedrate_x label"
  1582. msgid "Maximum Speed X"
  1583. msgstr "Maximaldrehzahl X"
  1584. msgctxt "machine_max_feedrate_y label"
  1585. msgid "Maximum Speed Y"
  1586. msgstr "Maximaldrehzahl Y"
  1587. msgctxt "machine_max_feedrate_z label"
  1588. msgid "Maximum Speed Z"
  1589. msgstr "Maximaldrehzahl Z"
  1590. msgctxt "support_tower_maximum_supported_diameter label"
  1591. msgid "Maximum Tower-Supported Diameter"
  1592. msgstr "Maximaler Durchmesser für Stützpfeiler"
  1593. msgctxt "meshfix_maximum_travel_resolution label"
  1594. msgid "Maximum Travel Resolution"
  1595. msgstr "Maximale Bewegungsauflösung"
  1596. msgctxt "machine_max_acceleration_x description"
  1597. msgid "Maximum acceleration for the motor of the X-direction"
  1598. msgstr "Die maximale Beschleunigung für den Motor der X-Richtung"
  1599. msgctxt "machine_max_acceleration_y description"
  1600. msgid "Maximum acceleration for the motor of the Y-direction."
  1601. msgstr "Die maximale Beschleunigung für den Motor der Y-Richtung."
  1602. msgctxt "machine_max_acceleration_z description"
  1603. msgid "Maximum acceleration for the motor of the Z-direction."
  1604. msgstr "Die maximale Beschleunigung für den Motor der Z-Richtung."
  1605. msgctxt "machine_max_acceleration_e description"
  1606. msgid "Maximum acceleration for the motor of the filament."
  1607. msgstr "Die maximale Beschleunigung für den Motor des Filaments."
  1608. msgctxt "bridge_sparse_infill_max_density description"
  1609. 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."
  1610. msgstr "Maximale Dichte der Füllung, die im Sparmodus eingefüllt werden soll. Haut über spärlicher Füllung wird als nicht unterstützt betrachtet und kann daher als Brückenhaut behandelt werden."
  1611. msgctxt "support_tower_maximum_supported_diameter description"
  1612. msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower."
  1613. msgstr "Der Mindestdurchmesser in den X/Y-Richtungen eines kleinen Bereichs, der durch einen speziellen Stützpfeiler gestützt wird."
  1614. msgctxt "max_extrusion_before_wipe description"
  1615. 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."
  1616. msgstr "Die maximale Materialmenge, die extrudiert werden kann, bevor die Düse ein weiteres Mal abgewischt wird. Ist dieser Wert kleiner als das in einer Schicht benötigte Materialvolumen, so hat die Einstellung in dieser Schicht keine Auswirkung, d.h. sie ist auf ein Wischen pro Schicht begrenzt."
  1617. msgctxt "multiple_mesh_overlap label"
  1618. msgid "Merged Meshes Overlap"
  1619. msgstr "Überlappung zusammengeführte Netze"
  1620. msgctxt "meshfix label"
  1621. msgid "Mesh Fixes"
  1622. msgstr "Netzreparaturen"
  1623. msgctxt "mesh_position_x label"
  1624. msgid "Mesh Position X"
  1625. msgstr "Netzposition X"
  1626. msgctxt "mesh_position_y label"
  1627. msgid "Mesh Position Y"
  1628. msgstr "Netzposition Y"
  1629. msgctxt "mesh_position_z label"
  1630. msgid "Mesh Position Z"
  1631. msgstr "Netzposition Z"
  1632. msgctxt "infill_mesh_order label"
  1633. msgid "Mesh Processing Rank"
  1634. msgstr "Rang der Netzverarbeitung"
  1635. msgctxt "mesh_rotation_matrix label"
  1636. msgid "Mesh Rotation Matrix"
  1637. msgstr "Matrix Netzdrehung"
  1638. msgctxt "slicing_tolerance option middle"
  1639. msgid "Middle"
  1640. msgstr "Mitte"
  1641. msgctxt "mold_width label"
  1642. msgid "Minimal Mold Width"
  1643. msgstr "Mindestbreite der Form"
  1644. msgctxt "machine_min_cool_heat_time_window label"
  1645. msgid "Minimal Time Standby Temperature"
  1646. msgstr "Mindestzeit Standby-Temperatur"
  1647. msgctxt "bridge_wall_min_length label"
  1648. msgid "Minimum Bridge Wall Length"
  1649. msgstr "Mindestlänge Brückenwand"
  1650. msgctxt "min_even_wall_line_width label"
  1651. msgid "Minimum Even Wall Line Width"
  1652. msgstr "Minimale Wandlinienstärke (geradzahlig)"
  1653. msgctxt "retraction_extrusion_window label"
  1654. msgid "Minimum Extrusion Distance Window"
  1655. msgstr "Fenster „Minimaler Extrusionsabstand“"
  1656. msgctxt "min_feature_size label"
  1657. msgid "Minimum Feature Size"
  1658. msgstr "Mindestgröße des Merkmals"
  1659. msgctxt "machine_minimum_feedrate label"
  1660. msgid "Minimum Feedrate"
  1661. msgstr "Mindest-Vorschub"
  1662. msgctxt "support_tree_min_height_to_model label"
  1663. msgid "Minimum Height To Model"
  1664. msgstr "Mindesthöhe auf Modell"
  1665. msgctxt "min_infill_area label"
  1666. msgid "Minimum Infill Area"
  1667. msgstr "Mindestbereich Füllung"
  1668. msgctxt "cool_min_layer_time label"
  1669. msgid "Minimum Layer Time"
  1670. msgstr "Mindestzeit für Schicht"
  1671. msgctxt "min_odd_wall_line_width label"
  1672. msgid "Minimum Odd Wall Line Width"
  1673. msgstr "Minimale Wandlinienstärke (ungeradzahlig)"
  1674. msgctxt "minimum_polygon_circumference label"
  1675. msgid "Minimum Polygon Circumference"
  1676. msgstr "Mindestumfang Polygon"
  1677. msgctxt "min_skin_width_for_expansion label"
  1678. msgid "Minimum Skin Width for Expansion"
  1679. msgstr "Mindestbreite Außenhaut für Expansion"
  1680. msgctxt "cool_min_speed label"
  1681. msgid "Minimum Speed"
  1682. msgstr "Mindestgeschwindigkeit"
  1683. msgctxt "minimum_support_area label"
  1684. msgid "Minimum Support Area"
  1685. msgstr "Mindestbereich Stützstruktur"
  1686. msgctxt "minimum_bottom_area label"
  1687. msgid "Minimum Support Floor Area"
  1688. msgstr "Mindestbereich Stützstrukturboden"
  1689. msgctxt "minimum_interface_area label"
  1690. msgid "Minimum Support Interface Area"
  1691. msgstr "Mindestbereich Stützstruktur-Schnittstelle"
  1692. msgctxt "minimum_roof_area label"
  1693. msgid "Minimum Support Roof Area"
  1694. msgstr "Mindestbereich Stützstrukturdach"
  1695. msgctxt "support_xy_distance_overhang label"
  1696. msgid "Minimum Support X/Y Distance"
  1697. msgstr "X/Y-Mindestabstand der Stützstruktur"
  1698. msgctxt "min_bead_width label"
  1699. msgid "Minimum Thin Wall Line Width"
  1700. msgstr "Minimale Wandlinienstärke (dünn)"
  1701. msgctxt "coasting_min_volume label"
  1702. msgid "Minimum Volume Before Coasting"
  1703. msgstr "Mindestvolumen vor Coasting"
  1704. msgctxt "min_wall_line_width label"
  1705. msgid "Minimum Wall Line Width"
  1706. msgstr "Mindestlinienstärke der Wand"
  1707. msgctxt "minimum_interface_area description"
  1708. msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support."
  1709. msgstr "Mindestflächenbreite für Stützstruktur-Schnittstellen-Polygone. Polygone, die eine kleinere Fläche als diesen Wert aufweisen, werden als normale Stützstruktur gedruckt."
  1710. msgctxt "minimum_support_area description"
  1711. msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated."
  1712. msgstr "Mindestflächenbreite für Stützstruktur-Polygone. Polygone, die eine kleinere Fläche als diesen Wert aufweisen, werden nicht generiert."
  1713. msgctxt "minimum_bottom_area description"
  1714. 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."
  1715. msgstr "Mindestfläche für die Dächer der Stützstruktur. Polygone, die eine kleinere Fläche als diesen Wert aufweisen, werden als normale Stützstruktur gedruckt."
  1716. msgctxt "minimum_roof_area description"
  1717. 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."
  1718. msgstr "Mindestfläche für die Dächer der Stützstruktur. Polygone, die eine kleinere Fläche als diesen Wert aufweisen, werden als normale Stützstruktur gedruckt."
  1719. msgctxt "min_feature_size description"
  1720. 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."
  1721. msgstr "Mindeststärke dünner Merkmale. Modellmerkmale, die dünner sind als dieser Wert, werden nicht gedruckt, während Merkmale, die dicker als die Mindeststärke sind, auf die Mindestwandlinienstärke verbreitert werden."
  1722. msgctxt "support_conical_min_width description"
  1723. msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures."
  1724. msgstr "Die Mindestbreite, auf die die Basis der konischen Stützstruktur reduziert wird. Geringe Breiten können instabile Stützstrukturen zur Folge haben."
  1725. msgctxt "mold_enabled label"
  1726. msgid "Mold"
  1727. msgstr "Form"
  1728. msgctxt "mold_angle label"
  1729. msgid "Mold Angle"
  1730. msgstr "Formwinkel"
  1731. msgctxt "mold_roof_height label"
  1732. msgid "Mold Roof Height"
  1733. msgstr "Dachhöhe der Form"
  1734. msgctxt "ironing_monotonic label"
  1735. msgid "Monotonic Ironing Order"
  1736. msgstr "Gleichmäßige Reihenfolge hin/her"
  1737. msgctxt "raft_surface_monotonic label"
  1738. msgid "Monotonic Raft Top Surface Order"
  1739. msgstr "Monotone Floßoberflächenordnung"
  1740. msgctxt "roofing_monotonic label"
  1741. msgid "Monotonic Top Surface Order"
  1742. msgstr "Gleichmäßige Reihenfolge oben"
  1743. msgctxt "skin_monotonic label"
  1744. msgid "Monotonic Top/Bottom Order"
  1745. msgstr "Gleichmäßige Reihenfolge oben/unten"
  1746. msgctxt "skirt_line_count description"
  1747. msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt."
  1748. msgstr "Mehrere Skirt-Linien ermöglichen eine bessere Materialbereitstellung für die Extrusion für kleine Modelle. Wird dieser Wert auf 0 eingestellt, wird kein Skirt erstellt."
  1749. msgctxt "initial_layer_line_width_factor description"
  1750. msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion."
  1751. msgstr "Multiplikator der Linienbreite der ersten Schicht. Eine Erhöhung dieses Werts verbessert möglicherweise die Betthaftung."
  1752. msgctxt "material_no_load_move_factor label"
  1753. msgid "No Load Move Factor"
  1754. msgstr "Faktor für Bewegung ohne Ladung"
  1755. msgctxt "skin_no_small_gaps_heuristic label"
  1756. msgid "No Skin in Z Gaps"
  1757. msgstr "Keine Außenhaut in Z-Lücken"
  1758. msgctxt "blackmagic description"
  1759. msgid "Non-traditional ways to print your models."
  1760. msgstr "Nicht-traditionelle Möglichkeiten, Ihre Modelle zu drucken."
  1761. msgctxt "adhesion_type option none"
  1762. msgid "None"
  1763. msgstr "Keine"
  1764. msgctxt "z_seam_corner option z_seam_corner_none"
  1765. msgid "None"
  1766. msgstr "Keine"
  1767. msgctxt "magic_mesh_surface_mode option normal"
  1768. msgid "Normal"
  1769. msgstr "Normal"
  1770. msgctxt "prime_tower_mode option normal"
  1771. msgid "Normal"
  1772. msgstr "Normal"
  1773. msgctxt "support_structure option normal"
  1774. msgid "Normal"
  1775. msgstr "Normal"
  1776. msgctxt "meshfix_keep_open_polygons description"
  1777. 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."
  1778. msgstr "Normalerweise versucht Cura kleine Löcher im Netz abzudecken und Teile von Schichten, die große Löcher aufweisen, zu entfernen. Die Aktivierung dieser Option erhält jene Teile, die nicht abgedeckt werden können. Diese Option sollte nur als letzter Ausweg verwendet werden, wenn es andernfalls nicht möglich ist, einen korrekten G-Code zu berechnen."
  1779. msgctxt "retraction_combing option noskin"
  1780. msgid "Not in Skin"
  1781. msgstr "Nicht in Außenhaut"
  1782. msgctxt "retraction_combing option no_outer_surfaces"
  1783. msgid "Not on Outer Surface"
  1784. msgstr "Nicht auf der Außenfläche"
  1785. msgctxt "machine_nozzle_expansion_angle label"
  1786. msgid "Nozzle Angle"
  1787. msgstr "Düsenwinkel"
  1788. msgctxt "machine_nozzle_size label"
  1789. msgid "Nozzle Diameter"
  1790. msgstr "Düsendurchmesser"
  1791. msgctxt "nozzle_disallowed_areas label"
  1792. msgid "Nozzle Disallowed Areas"
  1793. msgstr "Unzulässige Bereiche für die Düse"
  1794. msgctxt "machine_nozzle_id label"
  1795. msgid "Nozzle ID"
  1796. msgstr "Düsen-ID"
  1797. msgctxt "machine_nozzle_head_distance label"
  1798. msgid "Nozzle Length"
  1799. msgstr "Düsenlänge"
  1800. msgctxt "switch_extruder_extra_prime_amount label"
  1801. msgid "Nozzle Switch Extra Prime Amount"
  1802. msgstr "Zusätzliche Einzugsmenge bei Düsenwechsel"
  1803. msgctxt "switch_extruder_prime_speed label"
  1804. msgid "Nozzle Switch Prime Speed"
  1805. msgstr "Düsenwechsel Einzugsgeschwindigkeit (Zurückschieben)"
  1806. msgctxt "switch_extruder_retraction_speed label"
  1807. msgid "Nozzle Switch Retract Speed"
  1808. msgstr "Düsenwechsel Rückzuggeschwindigkeit"
  1809. msgctxt "switch_extruder_retraction_amount label"
  1810. msgid "Nozzle Switch Retraction Distance"
  1811. msgstr "Düsenwechsel Einzugsabstand"
  1812. msgctxt "switch_extruder_retraction_speeds label"
  1813. msgid "Nozzle Switch Retraction Speed"
  1814. msgstr "Düsenwechsel Rückzugsgeschwindigkeit"
  1815. msgctxt "machine_extruder_count label"
  1816. msgid "Number of Extruders"
  1817. msgstr "Anzahl Extruder"
  1818. msgctxt "extruders_enabled_count label"
  1819. msgid "Number of Extruders That Are Enabled"
  1820. msgstr "Anzahl der aktivierten Extruder"
  1821. msgctxt "speed_slowdown_layers label"
  1822. msgid "Number of Slower Layers"
  1823. msgstr "Anzahl der langsamen Schichten"
  1824. msgctxt "extruders_enabled_count description"
  1825. msgid "Number of extruder trains that are enabled; automatically set in software"
  1826. msgstr "Anzahl der aktivierten Extruder-Elemente; wird automatisch in der Software festgelegt"
  1827. msgctxt "machine_extruder_count description"
  1828. msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle."
  1829. msgstr "Anzahl der Extruder-Elemente. Ein Extruder-Element ist die Kombination aus Zuführung, Filamentführungsschlauch und Düse."
  1830. msgctxt "wipe_repeat_count description"
  1831. msgid "Number of times to move the nozzle across the brush."
  1832. msgstr "Anzahl der Wiederholungen für das Bewegen der Düse über der Bürste."
  1833. msgctxt "gradual_infill_steps description"
  1834. 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."
  1835. msgstr "Anzahl der Male zur Reduzierung der Füllungsdichte um die Hälfte bei Arbeiten unter den oberen Flächen. Bereiche, die weiter an den Oberflächen sind, erhalten eine höhere Dichte bis zur Füllungsdichte."
  1836. msgctxt "gradual_support_infill_steps description"
  1837. 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."
  1838. msgstr "Anzahl der Male zur Reduzierung der Stützstruktur-Füllungsdichte um die Hälfte bei Arbeiten unter den oberen Flächen. Bereiche, die weiter an den Oberflächen sind, erhalten eine höhere Dichte bis zur Füllungsdichte der Stützstruktur."
  1839. msgctxt "infill_pattern option tetrahedral"
  1840. msgid "Octet"
  1841. msgstr "Octet"
  1842. msgctxt "retraction_combing option off"
  1843. msgid "Off"
  1844. msgstr "Aus"
  1845. msgctxt "mesh_position_x description"
  1846. msgid "Offset applied to the object in the x direction."
  1847. msgstr "Verwendeter Versatz für das Objekt in X-Richtung."
  1848. msgctxt "mesh_position_y description"
  1849. msgid "Offset applied to the object in the y direction."
  1850. msgstr "Verwendeter Versatz für das Objekt in Y-Richtung."
  1851. msgctxt "mesh_position_z description"
  1852. msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'."
  1853. msgstr "Der für das Objekt in Z-Richtung verwendete Versatz. Damit können Sie den Vorgang ausführen, der unter dem Begriff „Objekt absenken“ verwendet wurde."
  1854. msgctxt "machine_use_extruder_offset_to_offset_coords label"
  1855. msgid "Offset with Extruder"
  1856. msgstr "Versatz mit Extruder"
  1857. msgctxt "support_tree_rest_preference option buildplate"
  1858. msgid "On buildplate when possible"
  1859. msgstr "Wenn möglich auf der Druckplatte"
  1860. msgctxt "support_tree_rest_preference option graceful"
  1861. msgid "On model if required"
  1862. msgstr "Bei Bedarf auf dem Modell"
  1863. msgctxt "print_sequence option one_at_a_time"
  1864. msgid "One at a Time"
  1865. msgstr "Nacheinander"
  1866. msgctxt "retraction_hop_only_when_collides description"
  1867. msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling."
  1868. msgstr "Führen Sie nur einen Z-Sprung aus, wenn Sie über gedruckte Teile fahren, die nicht durch eine horizontale Bewegung vermeidbar sind, indem Sie gedruckte Teile während der Fahrt vermeiden."
  1869. msgctxt "ironing_only_highest_layer description"
  1870. 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."
  1871. msgstr "Führen Sie das Glätten nur für die allerletzte Schicht des Meshs aus. Dies spart Zeit, wenn die unteren Schichten keine glatte Oberflächenausführung erfordern."
  1872. msgctxt "ooze_shield_angle label"
  1873. msgid "Ooze Shield Angle"
  1874. msgstr "Winkel für Sickerschutz"
  1875. msgctxt "ooze_shield_dist label"
  1876. msgid "Ooze Shield Distance"
  1877. msgstr "Abstand für Sickerschutz"
  1878. msgctxt "support_tree_branch_reach_limit label"
  1879. msgid "Optimal Branch Range"
  1880. msgstr "Optimale Astreichweite"
  1881. msgctxt "optimize_wall_printing_order label"
  1882. msgid "Optimize Wall Printing Order"
  1883. msgstr "Reihenfolge des Wanddrucks optimieren"
  1884. msgctxt "optimize_wall_printing_order description"
  1885. 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."
  1886. msgstr "Optimieren Sie die Reihenfolge, in der die Wände gedruckt werden, um die Anzahl der Einzüge und die zurückgelegten Distanzen zu reduzieren. Dieser Schritt bringt für die meisten Teile Vorteile, allerdings werden einige möglicherweise länger benötigen. Vergleichen Sie deshalb bitte die Schätzung der Druckzeiten mit und ohne Optimierung. Bei Wahl eines Brims als Druckplattenhaftungstyp ist die erste Schicht nicht optimiert."
  1887. msgctxt "machine_nozzle_tip_outer_diameter label"
  1888. msgid "Outer Nozzle Diameter"
  1889. msgstr "Düsendurchmesser außen"
  1890. msgctxt "acceleration_wall_0 label"
  1891. msgid "Outer Wall Acceleration"
  1892. msgstr "Beschleunigung Außenwand"
  1893. msgctxt "wall_0_extruder_nr label"
  1894. msgid "Outer Wall Extruder"
  1895. msgstr "Extruder Außenwand"
  1896. msgctxt "wall_0_material_flow label"
  1897. msgid "Outer Wall Flow"
  1898. msgstr "Wandfluss außen"
  1899. msgctxt "wall_0_inset label"
  1900. msgid "Outer Wall Inset"
  1901. msgstr "Einfügung Außenwand"
  1902. msgctxt "jerk_wall_0 label"
  1903. msgid "Outer Wall Jerk"
  1904. msgstr "Ruckfunktion Außenwand"
  1905. msgctxt "wall_line_width_0 label"
  1906. msgid "Outer Wall Line Width"
  1907. msgstr "Breite der äußeren Wandlinien"
  1908. msgctxt "speed_wall_0 label"
  1909. msgid "Outer Wall Speed"
  1910. msgstr "Geschwindigkeit Außenwand"
  1911. msgctxt "wall_0_wipe_dist label"
  1912. msgid "Outer Wall Wipe Distance"
  1913. msgstr "Wipe-Abstand der Außenwand"
  1914. msgctxt "group_outer_walls description"
  1915. msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped."
  1916. msgstr "Die äußeren Wände verschiedener Inseln in derselben Schicht werden nacheinander gedruckt. Wenn aktiviert, wird die Menge der Flussänderungen begrenzt, da die Wände nacheinander gedruckt werden, wenn deaktiviert, wird die Anzahl der Fahrten zwischen den Inseln reduziert, da die Wände auf den gleichen Inseln gruppiert sind."
  1917. msgctxt "brim_location option outside"
  1918. msgid "Outside Only"
  1919. msgstr "Nur außen"
  1920. msgctxt "inset_direction option outside_in"
  1921. msgid "Outside To Inside"
  1922. msgstr "Von außen nach innen"
  1923. msgctxt "wall_overhang_angle label"
  1924. msgid "Overhanging Wall Angle"
  1925. msgstr "Winkel für überhängende Wände"
  1926. msgctxt "wall_overhang_speed_factor label"
  1927. msgid "Overhanging Wall Speed"
  1928. msgstr "Geschwindigkeit für überhängende Wände"
  1929. msgctxt "wall_overhang_speed_factor description"
  1930. msgid "Overhanging walls will be printed at this percentage of their normal print speed."
  1931. msgstr "Überhängende Wände werden zu diesem Prozentwert ihrer normalen Druckgeschwindigkeit gedruckt."
  1932. msgctxt "wipe_pause description"
  1933. msgid "Pause after the unretract."
  1934. msgstr "Pausieren nach Aufhebung des Einzugs."
  1935. msgctxt "bridge_fan_speed description"
  1936. msgid "Percentage fan speed to use when printing bridge walls and skin."
  1937. msgstr "Lüfterdrehzahl in Prozentwert für das Drucken von Brückenwänden und -Außenhaut."
  1938. msgctxt "bridge_fan_speed_2 description"
  1939. msgid "Percentage fan speed to use when printing the second bridge skin layer."
  1940. msgstr "Lüfterdrehzahl in Prozentwert für das Drucken der zweiten Brücken-Außenhautschicht."
  1941. msgctxt "support_supported_skin_fan_speed description"
  1942. 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."
  1943. msgstr "Prozentwert der Lüfterdrehzahl für die Verwendung beim Drucken der Außenhautbereiche direkt oberhalb der Stützstruktur. Die Verwendung einer hohen Lüfterdrehzahl ermöglicht ein leichteres Entfernen der Stützstruktur."
  1944. msgctxt "bridge_fan_speed_3 description"
  1945. msgid "Percentage fan speed to use when printing the third bridge skin layer."
  1946. msgstr "Prozentwert der Lüfterdrehzahl für das Drucken der dritten Brücken-Außenhautschicht."
  1947. msgctxt "minimum_polygon_circumference description"
  1948. 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."
  1949. msgstr "Polygone in geschnittenen Schichten, die einen Umfang unter diesem Wert haben, werden ausgefiltert. Niedrigere Werte führen zu einem Mesh mit höherer Auflösung zulasten der Slicing-Zeit. Dies gilt in erster Linie für SLA-Drucker mit höherer Auflösung und sehr kleine 3D-Modelle mit zahlreichen Details."
  1950. msgctxt "support_tree_angle_slow label"
  1951. msgid "Preferred Branch Angle"
  1952. msgstr "Bevorzugter Astwinkel"
  1953. msgctxt "wall_transition_filter_deviation description"
  1954. 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."
  1955. msgstr "Vermeiden Sie den Wechsel zwischen getrennten und zusammengeführten Wänden. Dieser Rand erweitert den Bereich der Linienstärken auf [Minimale Wandlinienstärke – Rand, 2 x Minimale Wandlinienstärke + Rand]. Wenn Sie diesen Rand vergrößern, wird die Anzahl der Übergänge reduziert, was die Anzahl der Starts/Stopps und die Anfahrzeit für die Extrusion reduziert. Große Unterschiede der Linienstärken können jedoch zu Unter- oder Überextrusionsproblemen führen."
  1956. msgctxt "acceleration_prime_tower label"
  1957. msgid "Prime Tower Acceleration"
  1958. msgstr "Beschleunigung Einzugsturm"
  1959. msgctxt "prime_tower_brim_enable label"
  1960. msgid "Prime Tower Base"
  1961. msgstr "Grundfläche des Prime-Turms"
  1962. msgctxt "prime_tower_base_height label"
  1963. msgid "Prime Tower Base Height"
  1964. msgstr "Höhe der Prime-Turm-Basis"
  1965. msgctxt "prime_tower_base_size label"
  1966. msgid "Prime Tower Base Size"
  1967. msgstr "Größe der Prime-Turm-Basis"
  1968. msgctxt "prime_tower_base_curve_magnitude label"
  1969. msgid "Prime Tower Base Slope"
  1970. msgstr "Neigung der Prime-Turm-Basis"
  1971. msgctxt "prime_tower_flow label"
  1972. msgid "Prime Tower Flow"
  1973. msgstr "Fluss Einzugsturm"
  1974. msgctxt "jerk_prime_tower label"
  1975. msgid "Prime Tower Jerk"
  1976. msgstr "Ruckfunktion Einzugsturm"
  1977. msgctxt "prime_tower_line_width label"
  1978. msgid "Prime Tower Line Width"
  1979. msgstr "Linienbreite Einzugsturm"
  1980. msgctxt "prime_tower_max_bridging_distance label"
  1981. msgid "Prime Tower Maximum Bridging Distance"
  1982. msgstr "Prime Tower Maximaler Überbrückungsabstand"
  1983. msgctxt "prime_tower_min_volume label"
  1984. msgid "Prime Tower Minimum Volume"
  1985. msgstr "Mindestvolumen Einzugsturm"
  1986. msgctxt "prime_tower_raft_base_line_spacing label"
  1987. msgid "Prime Tower Raft Line Spacing"
  1988. msgstr "Linienabstand des Prime-Turm-Floßes"
  1989. msgctxt "prime_tower_size label"
  1990. msgid "Prime Tower Size"
  1991. msgstr "Größe Einzugsturm"
  1992. msgctxt "speed_prime_tower label"
  1993. msgid "Prime Tower Speed"
  1994. msgstr "Geschwindigkeit Einzugsturm"
  1995. msgctxt "prime_tower_mode label"
  1996. msgid "Prime Tower Type"
  1997. msgstr "Prime Tower Typ"
  1998. msgctxt "prime_tower_position_x label"
  1999. msgid "Prime Tower X Position"
  2000. msgstr "X-Position des Einzugsturm"
  2001. msgctxt "prime_tower_position_y label"
  2002. msgid "Prime Tower Y Position"
  2003. msgstr "Y-Position des Einzugsturms"
  2004. msgctxt "acceleration_print label"
  2005. msgid "Print Acceleration"
  2006. msgstr "Beschleunigung Druck"
  2007. msgctxt "jerk_print label"
  2008. msgid "Print Jerk"
  2009. msgstr "Ruckfunktion Drucken"
  2010. msgctxt "ppr label"
  2011. msgid "Print Process Reporting"
  2012. msgstr "Druckprozess-Berichterstattung"
  2013. msgctxt "print_sequence label"
  2014. msgid "Print Sequence"
  2015. msgstr "Druckreihenfolge"
  2016. msgctxt "speed_print label"
  2017. msgid "Print Speed"
  2018. msgstr "Druckgeschwindigkeit"
  2019. msgctxt "fill_outline_gaps label"
  2020. msgid "Print Thin Walls"
  2021. msgstr "Drucken von dünnen Wänden"
  2022. msgctxt "brim_location description"
  2023. msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion."
  2024. msgstr "Drucken Sie einen Rand an der Außenseite des Modells, an der Innenseite oder an beiden. Je nach Modell können Sie so die Menge des Randes, den Sie anschließend entfernen müssen, reduzieren und gleichzeitig eine gute Bettanhaftung sicherstellen."
  2025. msgctxt "prime_tower_enable description"
  2026. msgid "Print a tower next to the print which serves to prime the material after each nozzle switch."
  2027. msgstr "Drucken Sie einen Turm neben dem Druck, der zum Einziehen des Materials nach jeder Düsenschaltung dient."
  2028. msgctxt "infill_support_enabled description"
  2029. 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."
  2030. msgstr "Drucken Sie Füllstrukturen nur dort, wo das Modell gestützt werden soll. Die Aktivierung dieser Option reduziert die Druckdauer und den Materialverbrauch, führt jedoch zu einer ungleichmäßigen Objektdicke."
  2031. msgctxt "ironing_monotonic description"
  2032. 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."
  2033. msgstr "Linien werden hin und her in einer Reihenfolge gedruckt, so dass sie sich mit benachbarten Linien immer in gleicher Richtung überschneiden. Dies erfordert etwas mehr Zeit für den Druck, lässt aber flache Oberflächen gleichmäßiger aussehen."
  2034. msgctxt "mold_enabled description"
  2035. msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate."
  2036. msgstr "Damit werden Modelle als Form gedruckt, die gegossen werden kann, um ein Modell zu erhalten, das den Modellen des Druckbetts ähnelt."
  2037. msgctxt "fill_outline_gaps description"
  2038. msgid "Print pieces of the model which are horizontally thinner than the nozzle size."
  2039. msgstr "Drucken Sie Teile des Modells, die horizontal dünner als die Düsengröße sind."
  2040. msgctxt "raft_surface_monotonic description"
  2041. msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface."
  2042. msgstr "Drucken Sie die Linien auf der Oberseite des Floßes in einer Reihenfolge, die bewirkt, dass sie sich immer mit den benachbarten Linien in einer Richtung überlappen. Der Druckvorgang dauert dadurch etwas länger, aber die Oberfläche sieht konsistenter aus, was auch auf der Unterseite des Modells sichtbar ist."
  2043. msgctxt "bridge_skin_speed_2 description"
  2044. msgid "Print speed to use when printing the second bridge skin layer."
  2045. msgstr "Druckgeschwindigkeit für das Drucken der zweiten Brücken-Außenhautschicht."
  2046. msgctxt "bridge_skin_speed_3 description"
  2047. msgid "Print speed to use when printing the third bridge skin layer."
  2048. msgstr "Druckgeschwindigkeit für das Drucken der dritten Brücken-Außenhautschicht."
  2049. msgctxt "print_temp_anomaly_limit label"
  2050. msgid "Print temperature Limit"
  2051. msgstr "Drucktemperatur-Grenzwert"
  2052. msgctxt "print_temp_warn_limit label"
  2053. msgid "Print temperature Warning"
  2054. msgstr "Drucktemperatur-Warnung"
  2055. msgctxt "infill_before_walls description"
  2056. 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."
  2057. msgstr "Es wird die Füllung gedruckt, bevor die Wände gedruckt werden. Wenn man die Wände zuerst druckt, kann dies zu präziseren Wänden führen, aber Überhänge werden schlechter gedruckt. Wenn man die Füllung zuerst druckt, bekommt man stabilere Wände, aber manchmal zeigt sich das Füllmuster auf der Oberfläche."
  2058. msgctxt "roofing_monotonic description"
  2059. 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."
  2060. msgstr "Obere Linien werden in einer Reihenfolge gedruckt, so dass sie sich mit benachbarten Linien immer in einer einzigen Richtung überschneiden. Dies erfordert etwas mehr Zeit für den Druck, lässt aber flache Oberflächen gleichmäßiger aussehen."
  2061. msgctxt "skin_monotonic description"
  2062. 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."
  2063. msgstr "Obere/Untere Linien werden in einer Reihenfolge gedruckt, so dass sie sich mit benachbarten Linien immer in gleicher Richtung überschneiden. Dies erfordert etwas mehr Zeit für den Druck, lässt aber flache Oberflächen gleichmäßiger aussehen."
  2064. msgctxt "material_print_temperature label"
  2065. msgid "Printing Temperature"
  2066. msgstr "Drucktemperatur"
  2067. msgctxt "material_print_temperature_layer_0 label"
  2068. msgid "Printing Temperature Initial Layer"
  2069. msgstr "Drucktemperatur erste Schicht"
  2070. msgctxt "skirt_height description"
  2071. msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt."
  2072. msgstr "Ein Druck der innersten Skirt-Linie mit mehreren Schichten ermöglicht ein einfaches Entfernen des Skirts."
  2073. msgctxt "alternate_extra_perimeter description"
  2074. msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
  2075. msgstr "Es wird eine Zusatzwand für jede zweite Schicht gedruckt. Auf diese Weise gelangt Füllung zwischen diese Zusatzwände, was zu stärkeren Drucken führt."
  2076. msgctxt "resolution label"
  2077. msgid "Quality"
  2078. msgstr "Qualität"
  2079. msgctxt "infill_pattern option quarter_cubic"
  2080. msgid "Quarter Cubic"
  2081. msgstr "Viertelwürfel"
  2082. msgctxt "adhesion_type option raft"
  2083. msgid "Raft"
  2084. msgstr "Raft"
  2085. msgctxt "raft_airgap label"
  2086. msgid "Raft Air Gap"
  2087. msgstr "Luftspalt für Raft"
  2088. msgctxt "raft_base_margin label"
  2089. msgid "Raft Base Extra Margin"
  2090. msgstr "Floßbasis Extra-Rand"
  2091. msgctxt "raft_base_extruder_nr label"
  2092. msgid "Raft Base Extruder"
  2093. msgstr "Raft-Basis-Extruder"
  2094. msgctxt "raft_base_fan_speed label"
  2095. msgid "Raft Base Fan Speed"
  2096. msgstr "Lüfterdrehzahl für Raft-Basis"
  2097. msgctxt "raft_base_line_spacing label"
  2098. msgid "Raft Base Line Spacing"
  2099. msgstr "Linienabstand der Raft-Basis"
  2100. msgctxt "raft_base_line_width label"
  2101. msgid "Raft Base Line Width"
  2102. msgstr "Linienbreite der Raft-Basis"
  2103. msgctxt "raft_base_acceleration label"
  2104. msgid "Raft Base Print Acceleration"
  2105. msgstr "Druckbeschleunigung Raft Unten"
  2106. msgctxt "raft_base_jerk label"
  2107. msgid "Raft Base Print Jerk"
  2108. msgstr "Ruckfunktion Drucken Raft-Basis"
  2109. msgctxt "raft_base_speed label"
  2110. msgid "Raft Base Print Speed"
  2111. msgstr "Druckgeschwindigkeit für Raft-Basis"
  2112. msgctxt "raft_base_smoothing label"
  2113. msgid "Raft Base Smoothing"
  2114. msgstr "Floßbasis glätten"
  2115. msgctxt "raft_base_thickness label"
  2116. msgid "Raft Base Thickness"
  2117. msgstr "Dicke der Raft-Basis"
  2118. msgctxt "raft_base_wall_count label"
  2119. msgid "Raft Base Wall Count"
  2120. msgstr "Wandanzahl des Raft-Bodens"
  2121. msgctxt "raft_margin label"
  2122. msgid "Raft Extra Margin"
  2123. msgstr "Zusätzlicher Abstand für Raft"
  2124. msgctxt "raft_fan_speed label"
  2125. msgid "Raft Fan Speed"
  2126. msgstr "Lüfterdrehzahl für Raft"
  2127. msgctxt "raft_interface_margin label"
  2128. msgid "Raft Middle Extra Margin"
  2129. msgstr "Floßmitte Extra-Rand"
  2130. msgctxt "raft_interface_extruder_nr label"
  2131. msgid "Raft Middle Extruder"
  2132. msgstr "Extruder für die Raft-Mitte"
  2133. msgctxt "raft_interface_fan_speed label"
  2134. msgid "Raft Middle Fan Speed"
  2135. msgstr "Lüfterdrehzahl Raft Mitte"
  2136. msgctxt "raft_interface_layers label"
  2137. msgid "Raft Middle Layers"
  2138. msgstr "Mittlere Ebenen des Rafts"
  2139. msgctxt "raft_interface_line_width label"
  2140. msgid "Raft Middle Line Width"
  2141. msgstr "Linienbreite des Raft-Mittelbereichs"
  2142. msgctxt "raft_interface_acceleration label"
  2143. msgid "Raft Middle Print Acceleration"
  2144. msgstr "Druckbeschleunigung Raft Mitte"
  2145. msgctxt "raft_interface_jerk label"
  2146. msgid "Raft Middle Print Jerk"
  2147. msgstr "Ruckfunktion Drucken Raft Mitte"
  2148. msgctxt "raft_interface_speed label"
  2149. msgid "Raft Middle Print Speed"
  2150. msgstr "Druckgeschwindigkeit Raft Mitte"
  2151. msgctxt "raft_interface_smoothing label"
  2152. msgid "Raft Middle Smoothing"
  2153. msgstr "Floßmitte glätten"
  2154. msgctxt "raft_interface_line_spacing label"
  2155. msgid "Raft Middle Spacing"
  2156. msgstr "Linienabstand im Raft-Mittelbereich"
  2157. msgctxt "raft_interface_thickness label"
  2158. msgid "Raft Middle Thickness"
  2159. msgstr "Dicke der Raft-Mittelbereichs"
  2160. msgctxt "raft_interface_wall_count label"
  2161. msgid "Raft Middle Wall Count"
  2162. msgstr "Anzahl der mittleren Wände des Floßes"
  2163. msgctxt "raft_acceleration label"
  2164. msgid "Raft Print Acceleration"
  2165. msgstr "Druckbeschleunigung Raft"
  2166. msgctxt "raft_jerk label"
  2167. msgid "Raft Print Jerk"
  2168. msgstr "Ruckfunktion Raft-Druck"
  2169. msgctxt "raft_speed label"
  2170. msgid "Raft Print Speed"
  2171. msgstr "Raft-Druckgeschwindigkeit"
  2172. msgctxt "raft_smoothing label"
  2173. msgid "Raft Smoothing"
  2174. msgstr "Raft-Glättung"
  2175. msgctxt "raft_surface_margin label"
  2176. msgid "Raft Top Extra Margin"
  2177. msgstr "Floß Oberseite Extra-Rand"
  2178. msgctxt "raft_surface_extruder_nr label"
  2179. msgid "Raft Top Extruder"
  2180. msgstr "Extruder für die Raft-Oberseite"
  2181. msgctxt "raft_surface_fan_speed label"
  2182. msgid "Raft Top Fan Speed"
  2183. msgstr "Lüfterdrehzahl Raft Oben"
  2184. msgctxt "raft_surface_thickness label"
  2185. msgid "Raft Top Layer Thickness"
  2186. msgstr "Dicke der oberen Raft-Schichten"
  2187. msgctxt "raft_surface_layers label"
  2188. msgid "Raft Top Layers"
  2189. msgstr "Obere Raft-Schichten"
  2190. msgctxt "raft_surface_line_width label"
  2191. msgid "Raft Top Line Width"
  2192. msgstr "Linienbreite der Raft-Oberfläche"
  2193. msgctxt "raft_surface_acceleration label"
  2194. msgid "Raft Top Print Acceleration"
  2195. msgstr "Druckbeschleunigung Raft Oben"
  2196. msgctxt "raft_surface_jerk label"
  2197. msgid "Raft Top Print Jerk"
  2198. msgstr "Ruckfunktion Drucken Raft Oben"
  2199. msgctxt "raft_surface_speed label"
  2200. msgid "Raft Top Print Speed"
  2201. msgstr "Druckgeschwindigkeit Raft Oben"
  2202. msgctxt "raft_surface_smoothing label"
  2203. msgid "Raft Top Smoothing"
  2204. msgstr "Floßoberseite glätten"
  2205. msgctxt "raft_surface_line_spacing label"
  2206. msgid "Raft Top Spacing"
  2207. msgstr "Linienabstand der Raft-Oberfläche"
  2208. msgctxt "raft_surface_wall_count label"
  2209. msgid "Raft Top Wall Count"
  2210. msgstr "Anzahl der oberen Wände des Floßes"
  2211. msgctxt "raft_wall_count label"
  2212. msgid "Raft Wall Count"
  2213. msgstr "Anzahl der Floßwände"
  2214. msgctxt "z_seam_type option random"
  2215. msgid "Random"
  2216. msgstr "Zufall"
  2217. msgctxt "infill_randomize_start_location label"
  2218. msgid "Randomize Infill Start"
  2219. msgstr "Füllstart randomisieren"
  2220. msgctxt "infill_randomize_start_location description"
  2221. 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."
  2222. msgstr "Randomisieren Sie, welche Fülllinie zuerst gedruckt wird. So wird vermieden, dass ein Segment am stärksten ist. Allerdings muss dafür eine zusätzliche Bewegung ausgeführt werden."
  2223. msgctxt "magic_fuzzy_skin_enabled description"
  2224. msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look."
  2225. msgstr "Willkürliche Zitterbewegung beim Druck der äußeren Wand, wodurch die Oberfläche ein raues und ungleichmäßiges Aussehen erhält."
  2226. msgctxt "machine_shape option rectangular"
  2227. msgid "Rectangular"
  2228. msgstr "Rechteckig"
  2229. msgctxt "cool_fan_speed_min label"
  2230. msgid "Regular Fan Speed"
  2231. msgstr "Normaldrehzahl des Lüfters"
  2232. msgctxt "cool_fan_full_at_height label"
  2233. msgid "Regular Fan Speed at Height"
  2234. msgstr "Normaldrehzahl des Lüfters bei Höhe"
  2235. msgctxt "cool_fan_full_layer label"
  2236. msgid "Regular Fan Speed at Layer"
  2237. msgstr "Normaldrehzahl des Lüfters bei Schicht"
  2238. msgctxt "cool_min_layer_time_fan_speed_max label"
  2239. msgid "Regular/Maximum Fan Speed Threshold"
  2240. msgstr "Grenzwert für Normaldrehzahl/Maximaldrehzahl des Lüfters"
  2241. msgctxt "relative_extrusion label"
  2242. msgid "Relative Extrusion"
  2243. msgstr "Relative Extrusion"
  2244. msgctxt "meshfix_union_all_remove_holes label"
  2245. msgid "Remove All Holes"
  2246. msgstr "Alle Löcher entfernen"
  2247. msgctxt "remove_empty_first_layers label"
  2248. msgid "Remove Empty First Layers"
  2249. msgstr "Leere erste Schichten entfernen"
  2250. msgctxt "carve_multiple_volumes label"
  2251. msgid "Remove Mesh Intersection"
  2252. msgstr "Netzüberschneidung entfernen"
  2253. msgctxt "raft_base_remove_inside_corners label"
  2254. msgid "Remove Raft Base Inside Corners"
  2255. msgstr "Innenecken der Floßbasis entfernen"
  2256. msgctxt "raft_remove_inside_corners label"
  2257. msgid "Remove Raft Inside Corners"
  2258. msgstr "Innenecken des Rafts entfernen"
  2259. msgctxt "raft_interface_remove_inside_corners label"
  2260. msgid "Remove Raft Middle Inside Corners"
  2261. msgstr "Mittlere Innenecken des Floßes entfernen"
  2262. msgctxt "raft_surface_remove_inside_corners label"
  2263. msgid "Remove Raft Top Inside Corners"
  2264. msgstr "Innenecken der Oberseite des Floßes entfernen"
  2265. msgctxt "carve_multiple_volumes description"
  2266. msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other."
  2267. msgstr "Entfernt Bereiche, in denen mehrere Netze miteinander überlappen. Dies kann verwendet werden, wenn zusammengefügte Objekte aus zwei Materialien miteinander überlappen."
  2268. msgctxt "remove_empty_first_layers description"
  2269. 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."
  2270. msgstr "Entfernen Sie die leeren Schichten unter der ersten gedruckten Schicht, sofern vorhanden. Die Deaktivierung dieser Einstellung kann zu leeren ersten Schichten führen, wenn die Einstellung der Slicing-Toleranz auf Exklusiv oder Mittel gesetzt wurde."
  2271. msgctxt "raft_base_remove_inside_corners description"
  2272. msgid "Remove inside corners from the raft base, causing the raft to become convex."
  2273. msgstr "Entfernen Sie die Innenecken der Floßbasis, so dass das Floß konvex wird."
  2274. msgctxt "raft_interface_remove_inside_corners description"
  2275. msgid "Remove inside corners from the raft middle part, causing the raft to become convex."
  2276. msgstr "Entfernen Sie die Innenecken aus dem mittleren Teil des Floßes, so dass das Floß konvex wird."
  2277. msgctxt "raft_surface_remove_inside_corners description"
  2278. msgid "Remove inside corners from the raft top part, causing the raft to become convex."
  2279. msgstr "Entfernen Sie die Innenecken aus der Oberseite des Floßes, damit das Floß konvex wird."
  2280. msgctxt "raft_remove_inside_corners description"
  2281. msgid "Remove inside corners from the raft, causing the raft to become convex."
  2282. msgstr "Entfernen der inneren Ecken des Floßes, so dass das Floß konvex wird."
  2283. msgctxt "meshfix_union_all_remove_holes description"
  2284. 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."
  2285. msgstr "Es werden alle Löcher in den einzelnen Schichten entfernt und lediglich die äußere Form wird erhalten. Dadurch wird jegliche unsichtbare interne Geometrie ignoriert. Jedoch werden auch solche Löcher in den Schichten ignoriert, die man von oben oder unten sehen kann."
  2286. msgctxt "machine_gcode_flavor option RepRap (RepRap)"
  2287. msgid "RepRap"
  2288. msgstr "RepRap"
  2289. msgctxt "machine_gcode_flavor option Repetier"
  2290. msgid "Repetier"
  2291. msgstr "Repetier"
  2292. msgctxt "skin_outline_count description"
  2293. 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."
  2294. msgstr "Der äußerste Teil des oberen/unteren Musters wird durch eine Anzahl von konzentrischen Linien ersetzt. Die Verwendung von ein oder zwei Linien verbessert Dächer, die auf Füllmaterial beginnen."
  2295. msgctxt "ppr description"
  2296. msgid "Reporting events that go out of set thresholds"
  2297. msgstr "Meldung von Ereignissen, die über die eingestellten Schwellenwerte hinausgehen"
  2298. msgctxt "support_tree_rest_preference label"
  2299. msgid "Rest Preference"
  2300. msgstr "Präferenz Auflagestelle"
  2301. msgctxt "travel_retract_before_outer_wall label"
  2302. msgid "Retract Before Outer Wall"
  2303. msgstr "Vor Außenwand zurückziehen"
  2304. msgctxt "retract_at_layer_change label"
  2305. msgid "Retract at Layer Change"
  2306. msgstr "Einziehen bei Schichtänderung"
  2307. msgctxt "retraction_enable description"
  2308. msgid "Retract the filament when the nozzle is moving over a non-printed area."
  2309. msgstr "Das Filament wird eingezogen, wenn sich die Düse über einen nicht zu bedruckenden Bereich bewegt."
  2310. msgctxt "wipe_retraction_enable description"
  2311. msgid "Retract the filament when the nozzle is moving over a non-printed area."
  2312. msgstr "Das Filament wird eingezogen, wenn sich die Düse über einen nicht zu bedruckenden Bereich bewegt."
  2313. msgctxt "retract_at_layer_change description"
  2314. msgid "Retract the filament when the nozzle is moving to the next layer."
  2315. msgstr "Ziehen Sie das Filament ein, wenn die Düse zur nächsten Schicht fährt."
  2316. msgctxt "retraction_amount label"
  2317. msgid "Retraction Distance"
  2318. msgstr "Einzugsabstand"
  2319. msgctxt "retraction_extra_prime_amount label"
  2320. msgid "Retraction Extra Prime Amount"
  2321. msgstr "Zusätzliche Zurückschiebemenge nach Einzug"
  2322. msgctxt "retraction_min_travel label"
  2323. msgid "Retraction Minimum Travel"
  2324. msgstr "Mindestbewegung für Einzug"
  2325. msgctxt "retraction_prime_speed label"
  2326. msgid "Retraction Prime Speed"
  2327. msgstr "Einzugsgeschwindigkeit (Zurückschieben)"
  2328. msgctxt "retraction_retract_speed label"
  2329. msgid "Retraction Retract Speed"
  2330. msgstr "Einzugsgeschwindigkeit (Einzug)"
  2331. msgctxt "retraction_speed label"
  2332. msgid "Retraction Speed"
  2333. msgstr "Einzugsgeschwindigkeit"
  2334. msgctxt "z_seam_position option right"
  2335. msgid "Right"
  2336. msgstr "Rechts"
  2337. msgctxt "machine_scale_fan_speed_zero_to_one label"
  2338. msgid "Scale Fan Speed To 0-1"
  2339. msgstr "Skalierung der Lüftergeschwindigkeit auf 0–1"
  2340. msgctxt "machine_scale_fan_speed_zero_to_one description"
  2341. msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256."
  2342. msgstr "Skalieren der Lüftergeschwindigkeit auf einen Wert zwischen 0 und 1 statt zwischen 0 und 256"
  2343. msgctxt "material_shrinkage_percentage label"
  2344. msgid "Scaling Factor Shrinkage Compensation"
  2345. msgstr "Kompensation der Schrumpfung des Skalierungsfaktors"
  2346. msgctxt "support_meshes_present label"
  2347. msgid "Scene Has Support Meshes"
  2348. msgstr "Szene verfügt über Stütznetze"
  2349. msgctxt "z_seam_corner label"
  2350. msgid "Seam Corner Preference"
  2351. msgstr "Präferenz Nahtkante"
  2352. msgctxt "user_defined_print_order_enabled label"
  2353. msgid "Set Print Sequence Manually"
  2354. msgstr "Druckreihenfolge manuell einstellen"
  2355. msgctxt "draft_shield_height_limitation description"
  2356. 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."
  2357. msgstr "Hier wird die Höhe des Windschutzes eingestellt. Stellen Sie ein, ob der Windschutz für die gesamte Höhe des Modells oder für eine begrenzte Höhe gedruckt wird."
  2358. msgctxt "dual description"
  2359. msgid "Settings used for printing with multiple extruders."
  2360. msgstr "Verwendete Einstellungen für das Drucken mit mehreren Extrudern."
  2361. msgctxt "command_line_settings description"
  2362. msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend."
  2363. msgstr "Diese Einstellungen werden nur verwendet, wenn CuraEngine nicht seitens Cura aufgerufen wird."
  2364. msgctxt "machine_extruders_shared_nozzle_initial_retraction label"
  2365. msgid "Shared Nozzle Initial Retraction"
  2366. msgstr "Rückzugstellung der gemeinsam genutzten Düse"
  2367. msgctxt "z_seam_type option sharpest_corner"
  2368. msgid "Sharpest Corner"
  2369. msgstr "Schärfste Kante"
  2370. msgctxt "shell description"
  2371. msgid "Shell"
  2372. msgstr "Gehäuse"
  2373. msgctxt "z_seam_type option shortest"
  2374. msgid "Shortest"
  2375. msgstr "Kürzester"
  2376. msgctxt "machine_show_variants label"
  2377. msgid "Show Machine Variants"
  2378. msgstr "Anzeige der Gerätevarianten"
  2379. msgctxt "skin_edge_support_layers label"
  2380. msgid "Skin Edge Support Layers"
  2381. msgstr "Unterstützungsebenen für Außenhautkanten"
  2382. msgctxt "skin_edge_support_thickness label"
  2383. msgid "Skin Edge Support Thickness"
  2384. msgstr "Stützenstärke für Außenhautkanten"
  2385. msgctxt "expand_skins_expand_distance label"
  2386. msgid "Skin Expand Distance"
  2387. msgstr "Expansionsdistanz Außenhaut"
  2388. msgctxt "skin_overlap_mm label"
  2389. msgid "Skin Overlap"
  2390. msgstr "Außenhaut überlappen"
  2391. msgctxt "skin_overlap label"
  2392. msgid "Skin Overlap Percentage"
  2393. msgstr "Prozentsatz Außenhaut überlappen"
  2394. msgctxt "skin_preshrink label"
  2395. msgid "Skin Removal Width"
  2396. msgstr "Breite für das Entfernen der Außenhaut"
  2397. msgctxt "min_skin_width_for_expansion description"
  2398. 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."
  2399. msgstr "Außenhautbereiche, die schmaler als die Mindestbreite sind, werden nicht expandiert. Damit wird vermieden, dass enge Außenhautbereiche expandiert werden, die entstehen, wenn die Modellfläche eine nahezu vertikale Neigung aufweist."
  2400. msgctxt "support_zag_skip_count description"
  2401. msgid "Skip one in every N connection lines to make the support structure easier to break away."
  2402. msgstr "Überspringen Sie eine in jeder N-Verbindungslinie, um das Wegbrechen der Stützstruktur zu erleichtern."
  2403. msgctxt "support_skip_some_zags description"
  2404. 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."
  2405. msgstr "Überspringen Sie einige Stützstruktur-Verbindungen, um das Brechen der Stützstruktur zu erleichtern. Diese Einstellung ist für die Zickzack-Stützstruktur-Füllung vorgesehen."
  2406. msgctxt "adhesion_type option skirt"
  2407. msgid "Skirt"
  2408. msgstr "Skirt"
  2409. msgctxt "skirt_gap label"
  2410. msgid "Skirt Distance"
  2411. msgstr "Skirt-Abstand"
  2412. msgctxt "skirt_height label"
  2413. msgid "Skirt Height"
  2414. msgstr "Skirt-Höhe"
  2415. msgctxt "skirt_line_count label"
  2416. msgid "Skirt Line Count"
  2417. msgstr "Anzahl der Skirt-Linien"
  2418. msgctxt "acceleration_skirt_brim label"
  2419. msgid "Skirt/Brim Acceleration"
  2420. msgstr "Beschleunigung Skirt/Brim"
  2421. msgctxt "skirt_brim_extruder_nr label"
  2422. msgid "Skirt/Brim Extruder"
  2423. msgstr "Skirt/Brim-Extruder"
  2424. msgctxt "skirt_brim_material_flow label"
  2425. msgid "Skirt/Brim Flow"
  2426. msgstr "Skirt/Brim-Fluss"
  2427. msgctxt "jerk_skirt_brim label"
  2428. msgid "Skirt/Brim Jerk"
  2429. msgstr "Ruckfunktion Skirt/Brim"
  2430. msgctxt "skirt_brim_line_width label"
  2431. msgid "Skirt/Brim Line Width"
  2432. msgstr "Skirt-/Brim-Linienbreite"
  2433. msgctxt "skirt_brim_minimal_length label"
  2434. msgid "Skirt/Brim Minimum Length"
  2435. msgstr "Mindestlänge für Skirt/Brim"
  2436. msgctxt "skirt_brim_speed label"
  2437. msgid "Skirt/Brim Speed"
  2438. msgstr "Geschwindigkeit Skirt/Brim"
  2439. msgctxt "slicing_tolerance label"
  2440. msgid "Slicing Tolerance"
  2441. msgstr "Slicing-Toleranz"
  2442. msgctxt "small_feature_speed_factor_0 label"
  2443. msgid "Small Feature Initial Layer Speed"
  2444. msgstr "Geschwindigkeit der ersten Schicht von Details"
  2445. msgctxt "small_feature_max_length label"
  2446. msgid "Small Feature Max Length"
  2447. msgstr "Max. Detaillänge"
  2448. msgctxt "small_feature_speed_factor label"
  2449. msgid "Small Feature Speed"
  2450. msgstr "Detailgeschwindigkeit"
  2451. msgctxt "small_hole_max_size label"
  2452. msgid "Small Hole Max Size"
  2453. msgstr "Max. Lochdurchmesser"
  2454. msgctxt "cool_min_temperature label"
  2455. msgid "Small Layer Printing Temperature"
  2456. msgstr "Drucktemperatur für kleine Schichten"
  2457. msgctxt "small_skin_on_surface label"
  2458. msgid "Small Top/Bottom On Surface"
  2459. msgstr "Kleine Oberseite/Unterseite auf der Oberfläche"
  2460. msgctxt "small_skin_width label"
  2461. msgid "Small Top/Bottom Width"
  2462. msgstr "Kleine obere/untere Breite"
  2463. msgctxt "small_feature_speed_factor_0 description"
  2464. 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."
  2465. msgstr "Bei kleinen Details wird die Geschwindigkeit bei der ersten Schicht auf diesen Prozentsatz der normalen Druckgeschwindigkeit gesetzt. Durch eine niedrigere Druckgeschwindigkeit können die Haftung und die Genauigkeit verbessert werden."
  2466. msgctxt "small_feature_speed_factor description"
  2467. msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
  2468. msgstr "Bei kleinen Details wird die Geschwindigkeit auf diesen Prozentsatz der normalen Druckgeschwindigkeit gesetzt. Durch eine niedrigere Druckgeschwindigkeit können die Haftung und die Genauigkeit verbessert werden."
  2469. msgctxt "small_skin_width description"
  2470. 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')."
  2471. msgstr "Kleine obere bzw. untere Bereiche werden mit Wänden anstelle des standardmäßigen oberen und unteren Musters gefüllt. So lassen sich ruckartige Bewegungen vermeiden. Dies ist standardmäßig für die oberste (der Luft ausgesetzten) Schicht deaktiviert (siehe „Kleine Oberseite/Unterseite auf der Oberfläche“)."
  2472. msgctxt "brim_smart_ordering label"
  2473. msgid "Smart Brim"
  2474. msgstr "Intelligente Brim"
  2475. msgctxt "z_seam_corner option z_seam_corner_weighted"
  2476. msgid "Smart Hiding"
  2477. msgstr "Intelligent verbergen"
  2478. msgctxt "smooth_spiralized_contours label"
  2479. msgid "Smooth Spiralized Contours"
  2480. msgstr "Glätten der spiralisierten Kontur"
  2481. msgctxt "smooth_spiralized_contours description"
  2482. 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."
  2483. msgstr "Glättet die spiralförmigen Konturen, um die Sichtbarkeit der Z-Naht zu reduzieren (die Z-Naht sollte am Druckobjekt kaum sichtbar sein, ist jedoch in der Schichtenansicht erkennbar). Beachten Sie, dass beim Glätten feine Oberflächendetails verwischt werden."
  2484. msgctxt "retraction_extra_prime_amount description"
  2485. msgid "Some material can ooze away during a travel move, which can be compensated for here."
  2486. msgstr "Während einer Bewegung über einen nicht zu bedruckenden Bereich kann Material wegsickern, was hier kompensiert werden kann."
  2487. msgctxt "wipe_retraction_extra_prime_amount description"
  2488. msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here."
  2489. msgstr "Während einer Bewegung für den Abwischvorgang kann Material wegsickern, was hier kompensiert werden kann."
  2490. msgctxt "blackmagic label"
  2491. msgid "Special Modes"
  2492. msgstr "Sonderfunktionen"
  2493. msgctxt "speed description"
  2494. msgid "Speed"
  2495. msgstr "Geschwindigkeit"
  2496. msgctxt "speed label"
  2497. msgid "Speed"
  2498. msgstr "Geschwindigkeit"
  2499. msgctxt "wipe_hop_speed description"
  2500. msgid "Speed to move the z-axis during the hop."
  2501. msgstr "Geschwindigkeit für das Verfahren der Z-Achse während des Sprungs."
  2502. msgctxt "magic_spiralize label"
  2503. msgid "Spiralize Outer Contour"
  2504. msgstr "Spiralisieren der äußeren Konturen"
  2505. msgctxt "magic_spiralize description"
  2506. 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."
  2507. msgstr "Durch Spiralisieren wird die Z-Bewegung der äußeren Kante geglättet. Dies führt zu einem konstanten Z-Anstieg des gesamten Drucks. Diese Funktion wandelt ein solides Modell in einen Druck mit Einzelwänden und einem soliden Boden um. Diese Funktion sollte nur aktiviert werden, wenn jede Schicht nur ein einzelnes Teil enthält."
  2508. msgctxt "material_standby_temperature label"
  2509. msgid "Standby Temperature"
  2510. msgstr "Standby-Temperatur"
  2511. msgctxt "machine_start_gcode label"
  2512. msgid "Start G-code"
  2513. msgstr "Start G-Code"
  2514. msgctxt "z_seam_type description"
  2515. 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."
  2516. msgstr "Der Startdruckpunkt von jedem Teil einer Schicht. Wenn der Druck der Teile in aufeinanderfolgenden Schichten am gleichen Punkt startet, kann eine vertikale Naht sichtbar werden. Wird dieser neben einer benutzerdefinierten Position ausgerichtet, ist die Naht am einfachsten zu entfernen. Wird er zufällig platziert, fallen die Ungenauigkeiten am Startpunkt weniger auf. Wird der kürzeste Weg eingestellt, ist der Druck schneller."
  2517. msgctxt "machine_steps_per_mm_e label"
  2518. msgid "Steps per Millimeter (E)"
  2519. msgstr "Schritte pro Millimeter (E)"
  2520. msgctxt "machine_steps_per_mm_x label"
  2521. msgid "Steps per Millimeter (X)"
  2522. msgstr "Schritte pro Millimeter (X)"
  2523. msgctxt "machine_steps_per_mm_y label"
  2524. msgid "Steps per Millimeter (Y)"
  2525. msgstr "Schritte pro Millimeter (Y)"
  2526. msgctxt "machine_steps_per_mm_z label"
  2527. msgid "Steps per Millimeter (Z)"
  2528. msgstr "Schritte pro Millimeter (Z)"
  2529. msgctxt "support description"
  2530. msgid "Support"
  2531. msgstr "Stützstruktur"
  2532. msgctxt "support label"
  2533. msgid "Support"
  2534. msgstr "Stützstruktur"
  2535. msgctxt "acceleration_support label"
  2536. msgid "Support Acceleration"
  2537. msgstr "Beschleunigung Stützstruktur"
  2538. msgctxt "support_bottom_distance label"
  2539. msgid "Support Bottom Distance"
  2540. msgstr "Unterer Abstand der Stützstruktur"
  2541. msgctxt "support_bottom_wall_count label"
  2542. msgid "Support Bottom Wall Line Count"
  2543. msgstr "Anzahl der unteren Wandlinien der Stützstruktur"
  2544. msgctxt "support_brim_line_count label"
  2545. msgid "Support Brim Line Count"
  2546. msgstr "Anzahl der Brim-Stützstrukturlinien"
  2547. msgctxt "support_brim_width label"
  2548. msgid "Support Brim Width"
  2549. msgstr "Breite der Brim-Stützstruktur"
  2550. msgctxt "support_zag_skip_count label"
  2551. msgid "Support Chunk Line Count"
  2552. msgstr "Anzahl der Stützstruktur-Blocklinien"
  2553. msgctxt "support_skip_zag_per_mm label"
  2554. msgid "Support Chunk Size"
  2555. msgstr "Blockgröße für Stützstruktur"
  2556. msgctxt "support_infill_rate label"
  2557. msgid "Support Density"
  2558. msgstr "Dichte der Stützstruktur"
  2559. msgctxt "support_xy_overrides_z label"
  2560. msgid "Support Distance Priority"
  2561. msgstr "Abstandspriorität der Stützstruktur"
  2562. msgctxt "support_extruder_nr label"
  2563. msgid "Support Extruder"
  2564. msgstr "Extruder für Stützstruktur"
  2565. msgctxt "acceleration_support_bottom label"
  2566. msgid "Support Floor Acceleration"
  2567. msgstr "Beschleunigung Bodenstruktur"
  2568. msgctxt "support_bottom_density label"
  2569. msgid "Support Floor Density"
  2570. msgstr "Dichte der Bodenstruktur"
  2571. msgctxt "support_bottom_extruder_nr label"
  2572. msgid "Support Floor Extruder"
  2573. msgstr "Extruder für Bodenstruktur"
  2574. msgctxt "support_bottom_material_flow label"
  2575. msgid "Support Floor Flow"
  2576. msgstr "Stützbodenfluss"
  2577. msgctxt "support_bottom_offset label"
  2578. msgid "Support Floor Horizontal Expansion"
  2579. msgstr "Horizontale Erweiterung Stützstrukturboden"
  2580. msgctxt "jerk_support_bottom label"
  2581. msgid "Support Floor Jerk"
  2582. msgstr "Ruckfunktion für Bodenstruktur"
  2583. msgctxt "support_bottom_angles label"
  2584. msgid "Support Floor Line Directions"
  2585. msgstr "Richtungen der Bodenlinien unterstützen"
  2586. msgctxt "support_bottom_line_distance label"
  2587. msgid "Support Floor Line Distance"
  2588. msgstr "Linienabstand der Bodenstruktur"
  2589. msgctxt "support_bottom_line_width label"
  2590. msgid "Support Floor Line Width"
  2591. msgstr "Stützstruktur Boden Linienbreite"
  2592. msgctxt "support_bottom_pattern label"
  2593. msgid "Support Floor Pattern"
  2594. msgstr "Muster der Bodenstruktur"
  2595. msgctxt "speed_support_bottom label"
  2596. msgid "Support Floor Speed"
  2597. msgstr "Geschwindigkeit Bodenstruktur"
  2598. msgctxt "support_bottom_height label"
  2599. msgid "Support Floor Thickness"
  2600. msgstr "Dicke der Bodenstruktur"
  2601. msgctxt "support_material_flow label"
  2602. msgid "Support Flow"
  2603. msgstr "Stützstruktur-Fluss"
  2604. msgctxt "support_offset label"
  2605. msgid "Support Horizontal Expansion"
  2606. msgstr "Horizontale Erweiterung der Stützstruktur"
  2607. msgctxt "acceleration_support_infill label"
  2608. msgid "Support Infill Acceleration"
  2609. msgstr "Beschleunigung Stützstrukturfüllung"
  2610. msgctxt "support_infill_extruder_nr label"
  2611. msgid "Support Infill Extruder"
  2612. msgstr "Extruder für Füllung Stützstruktur"
  2613. msgctxt "jerk_support_infill label"
  2614. msgid "Support Infill Jerk"
  2615. msgstr "Ruckfunktion Stützstruktur-Füllung"
  2616. msgctxt "support_infill_sparse_thickness label"
  2617. msgid "Support Infill Layer Thickness"
  2618. msgstr "Stützstruktur Füllschichtdicke"
  2619. msgctxt "support_infill_angles label"
  2620. msgid "Support Infill Line Directions"
  2621. msgstr "Unterstützung Linienrichtung Füllung"
  2622. msgctxt "speed_support_infill label"
  2623. msgid "Support Infill Speed"
  2624. msgstr "Stützstruktur-Füllungsgeschwindigkeit"
  2625. msgctxt "acceleration_support_interface label"
  2626. msgid "Support Interface Acceleration"
  2627. msgstr "Beschleunigung Stützstrukturschnittstelle"
  2628. msgctxt "support_interface_density label"
  2629. msgid "Support Interface Density"
  2630. msgstr "Dichte Stützstrukturschnittstelle"
  2631. msgctxt "support_interface_extruder_nr label"
  2632. msgid "Support Interface Extruder"
  2633. msgstr "Extruder für Stützstruktur-Schnittstelle"
  2634. msgctxt "support_interface_material_flow label"
  2635. msgid "Support Interface Flow"
  2636. msgstr "Fluss Stützstruktur-Schnittstelle"
  2637. msgctxt "support_interface_offset label"
  2638. msgid "Support Interface Horizontal Expansion"
  2639. msgstr "Horizontale Erweiterung Stützstruktur-Schnittstelle"
  2640. msgctxt "jerk_support_interface label"
  2641. msgid "Support Interface Jerk"
  2642. msgstr "Ruckfunktion Stützstruktur-Schnittstelle"
  2643. msgctxt "support_interface_angles label"
  2644. msgid "Support Interface Line Directions"
  2645. msgstr "Richtungen der Verbindungslinien unterstützen"
  2646. msgctxt "support_interface_line_width label"
  2647. msgid "Support Interface Line Width"
  2648. msgstr "Stützstruktur Schnittstelle Linienbreite"
  2649. msgctxt "support_interface_pattern label"
  2650. msgid "Support Interface Pattern"
  2651. msgstr "Muster Stützstrukturschnittstelle"
  2652. msgctxt "support_interface_priority label"
  2653. msgid "Support Interface Priority"
  2654. msgstr "Schnittstellenpriorität der Stützstruktur"
  2655. msgctxt "speed_support_interface label"
  2656. msgid "Support Interface Speed"
  2657. msgstr "Stützstruktur-Schnittstellengeschwindigkeit"
  2658. msgctxt "support_interface_height label"
  2659. msgid "Support Interface Thickness"
  2660. msgstr "Dicke der Stützstrukturschnittstelle"
  2661. msgctxt "support_interface_wall_count label"
  2662. msgid "Support Interface Wall Line Count"
  2663. msgstr "Anzahl der Wandlinien der Stützstruktur-Schnittstelle"
  2664. msgctxt "jerk_support label"
  2665. msgid "Support Jerk"
  2666. msgstr "Ruckfunktion Stützstruktur"
  2667. msgctxt "support_join_distance label"
  2668. msgid "Support Join Distance"
  2669. msgstr "Abstand für Zusammenführung der Stützstrukturen"
  2670. msgctxt "support_line_distance label"
  2671. msgid "Support Line Distance"
  2672. msgstr "Linienabstand der Stützstruktur"
  2673. msgctxt "support_line_width label"
  2674. msgid "Support Line Width"
  2675. msgstr "Breite der Stützstrukturlinien"
  2676. msgctxt "support_mesh label"
  2677. msgid "Support Mesh"
  2678. msgstr "Stütznetz"
  2679. msgctxt "support_angle label"
  2680. msgid "Support Overhang Angle"
  2681. msgstr "Winkel für Überhänge Stützstruktur"
  2682. msgctxt "support_pattern label"
  2683. msgid "Support Pattern"
  2684. msgstr "Muster der Stützstruktur"
  2685. msgctxt "support_type label"
  2686. msgid "Support Placement"
  2687. msgstr "Platzierung Stützstruktur"
  2688. msgctxt "acceleration_support_roof label"
  2689. msgid "Support Roof Acceleration"
  2690. msgstr "Beschleunigung Dachstruktur"
  2691. msgctxt "support_roof_density label"
  2692. msgid "Support Roof Density"
  2693. msgstr "Dichte der Dachstruktur"
  2694. msgctxt "support_roof_extruder_nr label"
  2695. msgid "Support Roof Extruder"
  2696. msgstr "Extruder für Dachstruktur"
  2697. msgctxt "support_roof_material_flow label"
  2698. msgid "Support Roof Flow"
  2699. msgstr "Stützdachfluss"
  2700. msgctxt "support_roof_offset label"
  2701. msgid "Support Roof Horizontal Expansion"
  2702. msgstr "Horizontale Erweiterung Stützstrukturdach"
  2703. msgctxt "jerk_support_roof label"
  2704. msgid "Support Roof Jerk"
  2705. msgstr "Ruckfunktion für Dachstruktur"
  2706. msgctxt "support_roof_angles label"
  2707. msgid "Support Roof Line Directions"
  2708. msgstr "Richtungen der Dachlinien unterstützen"
  2709. msgctxt "support_roof_line_distance label"
  2710. msgid "Support Roof Line Distance"
  2711. msgstr "Linienabstand der Dachstruktur"
  2712. msgctxt "support_roof_line_width label"
  2713. msgid "Support Roof Line Width"
  2714. msgstr "Breite der Stützdachlinie"
  2715. msgctxt "support_roof_pattern label"
  2716. msgid "Support Roof Pattern"
  2717. msgstr "Muster des Stützdachs"
  2718. msgctxt "speed_support_roof label"
  2719. msgid "Support Roof Speed"
  2720. msgstr "Stützdachgeschwindigkeit"
  2721. msgctxt "support_roof_height label"
  2722. msgid "Support Roof Thickness"
  2723. msgstr "Dicke des Stützdachs"
  2724. msgctxt "support_roof_wall_count label"
  2725. msgid "Support Roof Wall Line Count"
  2726. msgstr "Anzahl der Wandlinien des Stützdachs"
  2727. msgctxt "speed_support label"
  2728. msgid "Support Speed"
  2729. msgstr "Stützstrukturgeschwindigkeit"
  2730. msgctxt "support_bottom_stair_step_height label"
  2731. msgid "Support Stair Step Height"
  2732. msgstr "Stufenhöhe der Stützstruktur"
  2733. msgctxt "support_bottom_stair_step_width label"
  2734. msgid "Support Stair Step Maximum Width"
  2735. msgstr "Max. Stufenhöhe der Stützstruktur"
  2736. msgctxt "support_bottom_stair_step_min_slope label"
  2737. msgid "Support Stair Step Minimum Slope Angle"
  2738. msgstr "Stützstufe minimaler Neigungswinkel"
  2739. msgctxt "support_structure label"
  2740. msgid "Support Structure"
  2741. msgstr "Stützstruktur"
  2742. msgctxt "support_top_distance label"
  2743. msgid "Support Top Distance"
  2744. msgstr "Oberer Abstand der Stützstruktur"
  2745. msgctxt "support_wall_count label"
  2746. msgid "Support Wall Line Count"
  2747. msgstr "Anzahl der Wandlinien der Stützstruktur"
  2748. msgctxt "support_xy_distance label"
  2749. msgid "Support X/Y Distance"
  2750. msgstr "X/Y-Abstand der Stützstruktur"
  2751. msgctxt "support_z_distance label"
  2752. msgid "Support Z Distance"
  2753. msgstr "Z-Abstand der Stützstruktur"
  2754. msgctxt "support_interface_priority option support_lines_overwrite_interface_area"
  2755. msgid "Support lines preferred"
  2756. msgstr "Stützlinien priorisiert"
  2757. msgctxt "support_interface_priority option support_area_overwrite_interface_area"
  2758. msgid "Support preferred"
  2759. msgstr "Stützstruktur priorisiert"
  2760. msgctxt "support_supported_skin_fan_speed label"
  2761. msgid "Supported Skin Fan Speed"
  2762. msgstr "Unterstützte Lüfterdrehzahl für Außenhaut"
  2763. msgctxt "magic_mesh_surface_mode option surface"
  2764. msgid "Surface"
  2765. msgstr "Oberfläche"
  2766. msgctxt "material_surface_energy label"
  2767. msgid "Surface Energy"
  2768. msgstr "Oberflächenenergie"
  2769. msgctxt "magic_mesh_surface_mode label"
  2770. msgid "Surface Mode"
  2771. msgstr "Oberflächenmodus"
  2772. msgctxt "material_adhesion_tendency description"
  2773. msgid "Surface adhesion tendency."
  2774. msgstr "Oberflächenhaftungstendenz."
  2775. msgctxt "material_surface_energy description"
  2776. msgid "Surface energy."
  2777. msgstr "Oberflächenenergie."
  2778. msgctxt "brim_smart_ordering description"
  2779. msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal."
  2780. msgstr "Vertauschen Sie die Druckreihenfolge der innersten und der zweitinnersten Brim-Linie, um die Entfernung des Brims zu erleichtern."
  2781. msgctxt "alternate_carve_order description"
  2782. 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."
  2783. msgstr "Schaltet mit jeder Schicht das Volumen zu den entsprechenden Netzüberschneidungen, sodass die überlappenden Netze miteinander verwebt werden. Durch Abschalten dieser Funktion erhält eines der Netze das gesamte Volumen der Überlappung, während es von den anderen Netzen entfernt wird."
  2784. msgctxt "adaptive_layer_height_threshold description"
  2785. 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."
  2786. msgstr "Horizontaler Abstand zwischen zwei angrenzenden Schichten. Bei Einstellung eines niedrigeren Werts werden dünnere Schichten aufgetragen, damit die Kanten der Schichten enger aneinander liegen."
  2787. msgctxt "layer_start_x description"
  2788. msgid "The X coordinate of the position near where to find the part to start printing each layer."
  2789. msgstr "Die X-Koordinate der Position, neben der das Teil positioniert ist, von dem aus der Druck jeder Schicht begonnen wird."
  2790. msgctxt "z_seam_x description"
  2791. msgid "The X coordinate of the position near where to start printing each part in a layer."
  2792. msgstr "Die X-Koordinate der Position, neben der der Druck jedes Teils in einer Schicht begonnen wird."
  2793. msgctxt "extruder_prime_pos_x description"
  2794. msgid "The X coordinate of the position where the nozzle primes at the start of printing."
  2795. msgstr "Die X-Koordinate der Position, an der die Düse am Druckbeginn einzieht."
  2796. msgctxt "layer_start_y description"
  2797. msgid "The Y coordinate of the position near where to find the part to start printing each layer."
  2798. msgstr "Die Y-Koordinate der Position, neben der das Teil positioniert ist, von dem aus der Druck jeder Schicht begonnen wird."
  2799. msgctxt "z_seam_y description"
  2800. msgid "The Y coordinate of the position near where to start printing each part in a layer."
  2801. msgstr "Die Y-Koordinate der Position, neben der der Druck jedes Teils in einer Schicht begonnen wird."
  2802. msgctxt "extruder_prime_pos_y description"
  2803. msgid "The Y coordinate of the position where the nozzle primes at the start of printing."
  2804. msgstr "Die Y-Koordinate der Position, an der die Düse am Druckbeginn einzieht."
  2805. msgctxt "extruder_prime_pos_z description"
  2806. msgid "The Z coordinate of the position where the nozzle primes at the start of printing."
  2807. msgstr "Die Z-Koordinate der Position, an der die Düse am Druckbeginn einzieht."
  2808. msgctxt "acceleration_print_layer_0 description"
  2809. msgid "The acceleration during the printing of the initial layer."
  2810. msgstr "Die Beschleunigung während des Druckens der ersten Schicht."
  2811. msgctxt "acceleration_layer_0 description"
  2812. msgid "The acceleration for the initial layer."
  2813. msgstr "Die Beschleunigung für die erste Schicht."
  2814. msgctxt "acceleration_travel_layer_0 description"
  2815. msgid "The acceleration for travel moves in the initial layer."
  2816. msgstr "Die Beschleunigung für die Fahrtbewegung der ersten Schicht."
  2817. msgctxt "jerk_travel_layer_0 description"
  2818. msgid "The acceleration for travel moves in the initial layer."
  2819. msgstr "Die Beschleunigung für die Fahrtbewegung der ersten Schicht."
  2820. msgctxt "acceleration_wall_x description"
  2821. msgid "The acceleration with which all inner walls are printed."
  2822. msgstr "Die Beschleunigung, mit der die Innenwände gedruckt werden."
  2823. msgctxt "acceleration_infill description"
  2824. msgid "The acceleration with which infill is printed."
  2825. msgstr "Die Beschleunigung, mit der die Füllung gedruckt wird."
  2826. msgctxt "acceleration_ironing description"
  2827. msgid "The acceleration with which ironing is performed."
  2828. msgstr "Die Beschleunigung, mit der das Glätten erfolgt."
  2829. msgctxt "acceleration_print description"
  2830. msgid "The acceleration with which printing happens."
  2831. msgstr "Die Beschleunigung, mit der das Drucken erfolgt."
  2832. msgctxt "raft_base_acceleration description"
  2833. msgid "The acceleration with which the base raft layer is printed."
  2834. msgstr "Die Beschleunigung, mit der die unteren Raft-Schichten gedruckt werden."
  2835. msgctxt "acceleration_support_bottom description"
  2836. 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."
  2837. msgstr "Die Beschleunigung, mit der die Böden der Stützstruktur gedruckt werden. Durch das Drucken bei einer geringeren Beschleunigung kann die Haftung des Stützdachs verbessert werden."
  2838. msgctxt "acceleration_support_infill description"
  2839. msgid "The acceleration with which the infill of support is printed."
  2840. msgstr "Die Beschleunigung, mit der die Füllung der Stützstruktur gedruckt wird."
  2841. msgctxt "raft_interface_acceleration description"
  2842. msgid "The acceleration with which the middle raft layer is printed."
  2843. msgstr "Die Beschleunigung, mit der die mittleren Raft-Schichten gedruckt werden."
  2844. msgctxt "acceleration_wall_0 description"
  2845. msgid "The acceleration with which the outermost walls are printed."
  2846. msgstr "Die Beschleunigung, mit der die Außenwände gedruckt werden."
  2847. msgctxt "acceleration_prime_tower description"
  2848. msgid "The acceleration with which the prime tower is printed."
  2849. msgstr "Die Beschleunigung, mit der der Einzugsturm gedruckt wird."
  2850. msgctxt "raft_acceleration description"
  2851. msgid "The acceleration with which the raft is printed."
  2852. msgstr "Die Beschleunigung, mit der das Raft gedruckt wird."
  2853. msgctxt "acceleration_support_interface description"
  2854. msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality."
  2855. msgstr "Die Beschleunigung, mit der die Böden der Stützstruktur gedruckt wird. Durch das Drucken bei einer geringeren Beschleunigung kann die Qualität der Überhänge verbessert werden."
  2856. msgctxt "acceleration_support_roof description"
  2857. msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality."
  2858. msgstr "Die Beschleunigung, mit der die Dächer der Stützstruktur gedruckt werden. Durch das Drucken bei einer geringeren Beschleunigung kann die Qualität der Überhänge verbessert werden."
  2859. msgctxt "acceleration_skirt_brim description"
  2860. 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."
  2861. msgstr "Die Beschleunigung, mit der die Skirt- und Brim-Elemente gedruckt werden. Normalerweise wird dafür die Beschleunigung der Basisschicht verwendet. In machen Fällen kann es jedoch vorteilhaft sein, das Skirt- oder Brim-Element mit einer anderen Beschleunigung zu drucken."
  2862. msgctxt "acceleration_support description"
  2863. msgid "The acceleration with which the support structure is printed."
  2864. msgstr "Die Beschleunigung, mit der die Stützstruktur gedruckt wird."
  2865. msgctxt "raft_surface_acceleration description"
  2866. msgid "The acceleration with which the top raft layers are printed."
  2867. msgstr "Die Beschleunigung, mit der die oberen Raft-Schichten gedruckt werden."
  2868. msgctxt "acceleration_wall_x_roofing description"
  2869. msgid "The acceleration with which the top surface inner walls are printed."
  2870. msgstr "Die Beschleunigung, mit der die inneren Wände der Oberfläche gedruckt werden."
  2871. msgctxt "acceleration_wall_0_roofing description"
  2872. msgid "The acceleration with which the top surface outermost walls are printed."
  2873. msgstr "Die Beschleunigung, mit der die äußersten Wände der Oberfläche gedruckt werden."
  2874. msgctxt "acceleration_wall description"
  2875. msgid "The acceleration with which the walls are printed."
  2876. msgstr "Die Beschleunigung, mit der die Wände gedruckt werden."
  2877. msgctxt "acceleration_roofing description"
  2878. msgid "The acceleration with which top surface skin layers are printed."
  2879. msgstr "Die Beschleunigung, mit der die Oberflächen der Außenhaut-Schichten gedruckt werden."
  2880. msgctxt "acceleration_topbottom description"
  2881. msgid "The acceleration with which top/bottom layers are printed."
  2882. msgstr "Die Beschleunigung, mit der die oberen/unteren Schichten gedruckt werden."
  2883. msgctxt "acceleration_travel description"
  2884. msgid "The acceleration with which travel moves are made."
  2885. msgstr "Die Beschleunigung, mit der Bewegungen durchgeführt werden."
  2886. msgctxt "ironing_flow description"
  2887. 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."
  2888. msgstr "Die Materialmenge relativ zu einer normalen Außenhautlinie, um während des Glättens zu extrudieren. Indem die Düse gefüllt bleibt, können einige Spalten in der oberen Schicht gefüllt werden, allerdings führt zu viel davon zu einer übermäßigen Extrudierung und Markierungen seitlich der Oberfläche."
  2889. msgctxt "infill_overlap description"
  2890. 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."
  2891. msgstr "Das Ausmaß des Überlappens zwischen der Füllung und den Wänden als Prozentwert der Füllungslinienbreite. Ein leichtes Überlappen ermöglicht es den Wänden, eine solide Verbindung mit der Füllung herzustellen."
  2892. msgctxt "infill_overlap_mm description"
  2893. msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill."
  2894. msgstr "Das Ausmaß des Überlappens zwischen der Füllung und den Wänden. Ein leichtes Überlappen ermöglicht es den Wänden, eine solide Verbindung mit der Füllung herzustellen."
  2895. msgctxt "switch_extruder_retraction_amount description"
  2896. 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."
  2897. msgstr "Der Wert für den Einzug beim Umstellen der Extruder: 0 einstellen, um keinen Einzug zu erhalten. Dies sollte generell mit der Länge der Heizzone übereinstimmen."
  2898. msgctxt "machine_nozzle_expansion_angle description"
  2899. msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle."
  2900. msgstr "Der Winkel zwischen der horizontalen Planfläche und dem konischen Teil direkt über der Düsenspitze."
  2901. msgctxt "support_tower_roof_angle description"
  2902. 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."
  2903. msgstr "Der Winkel eines Pfeilerdachs. Ein höherer Wert hat spitze Pfeilerdächer zur Folge, ein niedrigerer Wert führt zu flacheren Pfeilerdächern."
  2904. msgctxt "mold_angle description"
  2905. 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."
  2906. msgstr "Dies bezeichnet den Winkel des Überhangs der für die Form erstellten Außenwände. 0 Grad ergibt eine vertikale Außenhaut der Form, während 90 Grad dazu führt, dass die Außenseite des Modells der Modellkontur folgt."
  2907. msgctxt "support_tree_branch_diameter_angle description"
  2908. 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."
  2909. msgstr "Dies beschreibt den Winkel der Astdurchmesser, da sie stufenweise zum Boden hin dicker werden. Ein Winkel von 0 lässt die Äste über die gesamte Länge hinweg eine gleiche Dicke haben. Ein geringer Winkel kann die Stabilität der Baumstützstruktur erhöhen."
  2910. msgctxt "support_conical_angle description"
  2911. 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."
  2912. msgstr "Der Neigungswinkel der konischen Stützstruktur. Bei 0 Grad ist er vertikal und bei 90 Grad horizontal. Kleinere Winkel machen die Stützstruktur stabiler, aber benötigen mehr Material. Negative Winkel machen die Basis der Stützstruktur breiter als die Spitze."
  2913. msgctxt "magic_fuzzy_skin_point_density description"
  2914. 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."
  2915. msgstr "Die durchschnittliche Dichte der Punkte, die auf jedes Polygon einer Schicht aufgebracht werden. Beachten Sie, dass die Originalpunkte des Polygons verworfen werden, sodass eine geringe Dichte in einer Reduzierung der Auflösung resultiert."
  2916. msgctxt "magic_fuzzy_skin_point_dist description"
  2917. 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."
  2918. msgstr "Der durchschnittliche Abstand zwischen den willkürlich auf jedes Liniensegment aufgebrachten Punkten. Beachten Sie, dass die Originalpunkte des Polygons verworfen werden, sodass eine hohe Glättung in einer Reduzierung der Auflösung resultiert. Dieser Wert muss größer sein als die Hälfte der Dicke der ungleichmäßigen Außenhaut."
  2919. msgctxt "material_brand description"
  2920. msgid "The brand of material used."
  2921. msgstr "Die Marke des verwendeten Materials."
  2922. msgctxt "machine_acceleration description"
  2923. msgid "The default acceleration of print head movement."
  2924. msgstr "Die voreingestellte Beschleunigung der Druckkopfbewegung."
  2925. msgctxt "default_material_print_temperature description"
  2926. 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"
  2927. msgstr "Die für den Druck verwendete Standardtemperatur. Dies sollte die „Basis“-Temperatur eines Materials sein. Alle anderen Drucktemperaturen sollten anhand dieses Wertes einen Versatz verwenden"
  2928. msgctxt "default_material_bed_temperature description"
  2929. 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"
  2930. msgstr "Die für die erhitzte Druckplatte verwendete Standardtemperatur. Dies sollte die „Basis“-Temperatur einer Druckplatte sein. Alle anderen Drucktemperaturen sollten anhand dieses Wertes einen Versatz verwenden"
  2931. msgctxt "bridge_skin_density description"
  2932. msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  2933. msgstr "Die Dichte der Brücken-Außenhautschicht. Werte unter 100 erhöhen die Spalten zwischen den Außenhautlinien."
  2934. msgctxt "support_bottom_density description"
  2935. 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."
  2936. msgstr "Die Dichte der Stützstrukturböden wird eingestellt. Ein höherer Wert führt zu einer besseren Haftung der Stützstruktur oben am Modell."
  2937. msgctxt "support_roof_density description"
  2938. msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  2939. msgstr "Die Dichte der Stützstrukturdächer wird eingestellt. Ein höherer Wert führt zu besseren Überhängen, aber die Stützstrukturen sind schwieriger zu entfernen."
  2940. msgctxt "bridge_skin_density_2 description"
  2941. msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  2942. msgstr "Die Dichte der zweiten Brücken-Außenhautschicht. Werte unter 100 erhöhen die Spalten zwischen den Außenhautlinien."
  2943. msgctxt "bridge_skin_density_3 description"
  2944. msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  2945. msgstr "Die Dichte der dritten Brücken-Außenhautschicht. Werte unter 100 erhöhen die Spalten zwischen den Außenhautlinien."
  2946. msgctxt "machine_depth description"
  2947. msgid "The depth (Y-direction) of the printable area."
  2948. msgstr "Die Tiefe (Y-Richtung) des druckbaren Bereichs."
  2949. msgctxt "support_tower_diameter description"
  2950. msgid "The diameter of a special tower."
  2951. msgstr "Der Durchmesser eines speziellen Pfeilers."
  2952. msgctxt "support_tree_branch_diameter description"
  2953. msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this."
  2954. msgstr "Dies beschreibt den Durchmesser der dünnsten Äste der Baumstützstruktur. Dickere Äste sind stabiler. Äste zur Basis hin werden dicker als diese sein."
  2955. msgctxt "support_tree_tip_diameter description"
  2956. msgid "The diameter of the top of the tip of the branches of tree support."
  2957. msgstr "Dies bezeichnet den Durchmesser an der Spitze von Ästen in der Baumstützstruktur."
  2958. msgctxt "machine_feeder_wheel_diameter description"
  2959. msgid "The diameter of the wheel that drives the material in the feeder."
  2960. msgstr "Der Durchmesser des Rades für den Transport des Materials in den Feeder."
  2961. msgctxt "support_tree_max_diameter description"
  2962. 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."
  2963. msgstr "Durchmesser der breitesten Äste der Baumstützstruktur. Ein dickerer Stamm ist stabiler, ein dünnerer Stamm nimmt weniger Platz auf dem Druckbett ein."
  2964. msgctxt "adaptive_layer_height_variation_step description"
  2965. msgid "The difference in height of the next layer height compared to the previous one."
  2966. msgstr "Der Höhenunterscheid der nächsten Schichthöhe im Vergleich zur vorherigen."
  2967. msgctxt "ironing_line_spacing description"
  2968. msgid "The distance between the lines of ironing."
  2969. msgstr "Der Abstand zwischen den Glättungslinien."
  2970. msgctxt "travel_avoid_distance description"
  2971. msgid "The distance between the nozzle and already printed parts when avoiding during travel moves."
  2972. msgstr "Der Abstand zwischen der Düse und den bereits gedruckten Teilen, wenn diese bei Bewegungen umgangen werden."
  2973. msgctxt "raft_base_line_spacing description"
  2974. 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."
  2975. msgstr "Der Abstand zwischen den Raft-Linien der Raft-Basisschicht. Große Abstände erleichtern das Entfernen des Raft vom Druckbett."
  2976. msgctxt "raft_interface_line_spacing description"
  2977. 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."
  2978. msgstr "Der Abstand zwischen den Raft-Linien im Raft-Mittelbereich. Der Abstand im Mittelbereich sollte recht groß sein, dennoch muss dieser dicht genug sein, um die Raft-Oberflächenschichten stützen zu können."
  2979. msgctxt "raft_surface_line_spacing description"
  2980. 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."
  2981. msgstr "Der Abstand zwischen den Raft-Linien der Raft-Oberflächenschichten. Der Abstand sollte der Linienbreite entsprechen, damit die Oberfläche stabil ist."
  2982. msgctxt "prime_tower_raft_base_line_spacing description"
  2983. msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate."
  2984. msgstr "Der Abstand zwischen den Floßlinien für die einzigartige Prime-Turm-Floßschicht. Ein großer Abstand erleichtert das Entfernen des Floßes von der Bauplatte."
  2985. msgctxt "interlocking_depth description"
  2986. msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion."
  2987. msgstr "Der Abstand von der Begrenzung zwischen Modellen, der eine ineinandergreifende Struktur erzeugt, gemessen in Zellen. Eine zu geringe Zellenanzahl führt zu mangelnder Haftung."
  2988. msgctxt "brim_width description"
  2989. 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."
  2990. msgstr "Der Abstand vom Model zur äußersten Brim-Linie. Ein größeres Brim-Element verbessert die Haftung am Druckbett, es wird dadurch aber auch der verwendbare Druckbereich verkleinert."
  2991. msgctxt "interlocking_boundary_avoidance description"
  2992. msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells."
  2993. msgstr "Der Abstand von der Außenseite eines Modells, in dem keine ineinandergreifenden Strukturen erzeugt werden, gemessen in Zellen."
  2994. msgctxt "machine_heat_zone_length description"
  2995. msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament."
  2996. msgstr "Die Distanz von der Düsenspitze, in der Wärme von der Düse zum Filament geleitet wird."
  2997. msgctxt "bottom_skin_expand_distance description"
  2998. 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."
  2999. msgstr "Die Distanz, um die die unteren Außenhäute in die Füllung expandiert werden. Höhere Werte lassen die Außenhaut besser am Füllmuster und an den Wänden auf der darunter liegenden Schicht haften. Niedrigere Werte reduzieren den Materialverbrauch."
  3000. msgctxt "expand_skins_expand_distance description"
  3001. 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."
  3002. msgstr "Die Distanz, um die die Außenhäute in die Füllung expandiert werden. Höhere Werte lassen die Außenhaut besser am Füllmuster und die Wände an den angrenzenden Schichten besser an der Außenhaut haften. Niedrigere Werte reduzieren den Materialverbrauch."
  3003. msgctxt "top_skin_expand_distance description"
  3004. 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."
  3005. msgstr "Die Distanz, um die die oberen Außenhäute in die Füllung expandiert werden. Höhere Werte lassen die Außenhaut besser am Füllmuster und die Wände an den Schichten darüber besser an der Außenhaut haften. Niedrigere Werte reduzieren den Materialverbrauch."
  3006. msgctxt "wipe_move_distance description"
  3007. msgid "The distance to move the head back and forth across the brush."
  3008. msgstr "Die Strecke, die der Kopf durch Vorwärts- und Rückwärtsbewegung über die Bürste hinweg fährt."
  3009. msgctxt "lightning_infill_prune_angle description"
  3010. 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."
  3011. msgstr "Die Endpunkte von Füllungslinien werden gekürzt, um Material zu sparen. Bei dieser Einstellung handelt es sich um den Winkel des Überhangs der Endpunkte von diesen Linien."
  3012. msgctxt "material_extrusion_cool_down_speed description"
  3013. 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."
  3014. msgstr "Die zusätzliche Geschwindigkeit mit der die Düse während der Extrusion abkühlt. Der gleiche Wert wird verwendet, um Aufheizgeschwindigkeit anzugeben, die verloren geht wenn während der Extrusion aufgeheizt wird."
  3015. msgctxt "support_extruder_nr_layer_0 description"
  3016. msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion."
  3017. msgstr "Das für das Drucken der ersten Schicht der Stützstruktur verwendete Extruder-Element. Diese wird für die Mehrfach-Extrusion benutzt."
  3018. msgctxt "raft_base_extruder_nr description"
  3019. msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion."
  3020. msgstr "Der Extruderzug, der für den Druck der ersten Schicht des Rafts verwendet wird. Dies wird bei der Mehrfachextrusion verwendet."
  3021. msgctxt "support_bottom_extruder_nr description"
  3022. msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion."
  3023. msgstr "Das für das Drucken der Stützstruktur der Böden verwendete Extruder-Element. Dieses wird für die Mehrfach-Extrusion benutzt."
  3024. msgctxt "support_infill_extruder_nr description"
  3025. msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion."
  3026. msgstr "Das für das Drucken der Füllung der Stützstruktur verwendete Extruder-Element. Diese wird für die Mehrfach-Extrusion benutzt."
  3027. msgctxt "raft_interface_extruder_nr description"
  3028. msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion."
  3029. msgstr "Der Extruderzug, der für den Druck der mittleren Schicht des Rafts verwendet wird. Dies wird bei der Mehrfachextrusion verwendet."
  3030. msgctxt "support_interface_extruder_nr description"
  3031. msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion."
  3032. msgstr "Das für das Drucken der Dächer und Böden der Stützstruktur verwendete Extruder-Element. Dieses wird für die Mehrfach-Extrusion benutzt."
  3033. msgctxt "support_roof_extruder_nr description"
  3034. msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion."
  3035. msgstr "Das für das Drucken der Stützdachstruktur verwendete Extruder-Element. Dieses wird für die Mehrfach-Extrusion benutzt."
  3036. msgctxt "skirt_brim_extruder_nr description"
  3037. msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion."
  3038. msgstr "Der Extruderzug, der für den Druck von Skirt oder Brim verwendet wird. Dies wird bei der Mehrfachextrusion verwendet."
  3039. msgctxt "adhesion_extruder_nr description"
  3040. msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion."
  3041. msgstr "Das für das Drucken von Skirt/Brim/Raft verwendete Extruder-Element. Diese wird für die Mehrfach-Extrusion benutzt."
  3042. msgctxt "support_extruder_nr description"
  3043. msgid "The extruder train to use for printing the support. This is used in multi-extrusion."
  3044. msgstr "Das für das Drucken der Stützstruktur verwendete Extruder-Element. Diese wird für die Mehrfach-Extrusion benutzt."
  3045. msgctxt "raft_surface_extruder_nr description"
  3046. msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion."
  3047. msgstr "Der Extruderzug, der für den Druck der obersten Schicht(en) des Rafts verwendet wird. Dies wird bei der Mehrfachextrusion verwendet."
  3048. msgctxt "infill_extruder_nr description"
  3049. msgid "The extruder train used for printing infill. This is used in multi-extrusion."
  3050. msgstr "Die für das Drucken der Füllung verwendete Extruder-Einheit. Diese wird für die Mehrfach-Extrusion benutzt."
  3051. msgctxt "wall_x_extruder_nr description"
  3052. msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion."
  3053. msgstr "Die für das Drucken der Innenwände verwendete Extruder-Einheit. Diese wird für die Mehrfach-Extrusion benutzt."
  3054. msgctxt "wall_0_extruder_nr description"
  3055. msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion."
  3056. msgstr "Die für das Drucken der Außenwände verwendete Extruder-Einheit. Diese wird für die Mehrfach-Extrusion benutzt."
  3057. msgctxt "top_bottom_extruder_nr description"
  3058. msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion."
  3059. msgstr "Die für das Drucken der oberen und unteren Außenhaut verwendete Extruder-Einheit. Diese wird für die Mehrfach-Extrusion benutzt."
  3060. msgctxt "roofing_extruder_nr description"
  3061. msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion."
  3062. msgstr "Die für das Drucken der obersten Außenhaut verwendete Extruder-Einheit. Diese wird für die Mehrfach-Extrusion benutzt."
  3063. msgctxt "wall_extruder_nr description"
  3064. msgid "The extruder train used for printing the walls. This is used in multi-extrusion."
  3065. msgstr "Die für das Drucken der Wände verwendete Extruder-Einheit. Diese wird für die Mehrfach-Extrusion benutzt."
  3066. msgctxt "raft_base_fan_speed description"
  3067. msgid "The fan speed for the base raft layer."
  3068. msgstr "Die Drehzahl des Lüfters für die Raft-Basisschicht."
  3069. msgctxt "raft_interface_fan_speed description"
  3070. msgid "The fan speed for the middle raft layer."
  3071. msgstr "Die Drehzahl des Lüfters für die mittlere Raft-Schicht."
  3072. msgctxt "raft_fan_speed description"
  3073. msgid "The fan speed for the raft."
  3074. msgstr "Die Drehzahl des Lüfters für das Raft."
  3075. msgctxt "raft_surface_fan_speed description"
  3076. msgid "The fan speed for the top raft layers."
  3077. msgstr "Die Drehzahl des Lüfters für die obere Raft-Schicht."
  3078. msgctxt "cross_infill_density_image description"
  3079. 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."
  3080. msgstr "Die Dateiposition eines Bildes, von dem die Helligkeitswerte die minimale Dichte an der entsprechenden Position in der Füllung des Drucks bestimmen."
  3081. msgctxt "cross_support_density_image description"
  3082. msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support."
  3083. msgstr "Die Dateiposition eines Bildes, von dem die Helligkeitswerte die minimale Dichte an der entsprechenden Position in der Stützstruktur bestimmen."
  3084. msgctxt "speed_slowdown_layers description"
  3085. 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."
  3086. msgstr "Die ersten Schichten werden langsamer als der Rest des Modells gedruckt, damit sie besser am Druckbett haften und um die Wahrscheinlichkeit eines erfolgreichen Drucks zu erhöhen. Die Geschwindigkeit wird während des Druckens dieser Schichten schrittweise erhöht."
  3087. msgctxt "raft_airgap description"
  3088. 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."
  3089. msgstr "Die Lücke zwischen der letzten Raft-Schicht und der ersten Schicht des Modells. Nur die erste Schicht wird entsprechend dieses Wertes angehoben, um die Bindung zwischen der Raft-Schicht und dem Modell zu reduzieren. Dies macht es leichter, das Raft abzuziehen."
  3090. msgctxt "machine_height description"
  3091. msgid "The height (Z-direction) of the printable area."
  3092. msgstr "Die Höhe (Z-Richtung) des druckbaren Bereichs."
  3093. msgctxt "mold_roof_height description"
  3094. msgid "The height above horizontal parts in your model which to print mold."
  3095. msgstr "Bezeichnet die Höhe über horizontalen Teilen Ihres Modell, in der die Form gedruckt wird."
  3096. msgctxt "cool_fan_full_at_height description"
  3097. 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."
  3098. msgstr "Die Höhe, auf der die Lüfter mit Normaldrehzahl laufen. In den Schichten darunter wird die Lüfterdrehzahl schrittweise von der anfänglichen Lüfterdrehzahl bis zur Normaldrehzahl angehoben."
  3099. msgctxt "gantry_height description"
  3100. msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)."
  3101. msgstr "Der Höhenunterschied zwischen der Düsenspitze und dem Brückensystem (X- und Y-Achsen)."
  3102. msgctxt "machine_nozzle_head_distance description"
  3103. msgid "The height difference between the tip of the nozzle and the lowest part of the print head."
  3104. msgstr "Der Höhenunterschied zwischen der Düsenspitze und dem untersten Bereich des Druckkopfes."
  3105. msgctxt "retraction_hop_after_extruder_switch_height description"
  3106. msgid "The height difference when performing a Z Hop after extruder switch."
  3107. msgstr "Der Höhenunterschied bei Ausführung eines Z-Sprungs nach Extruder-Wechsel."
  3108. msgctxt "retraction_hop description"
  3109. msgid "The height difference when performing a Z Hop."
  3110. msgstr "Der Höhenunterschied bei Ausführung eines Z-Sprungs."
  3111. msgctxt "wipe_hop_amount description"
  3112. msgid "The height difference when performing a Z Hop."
  3113. msgstr "Der Höhenunterschied bei Ausführung eines Z-Sprungs."
  3114. msgctxt "layer_height description"
  3115. msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution."
  3116. msgstr "Die Dicke jeder Schicht in mm. Bei höheren Werten werden schnellere Drucke mit niedrigerer Auflösung hergestellt, bei niedrigeren Werten langsamere Drucke mit höherer Auflösung."
  3117. msgctxt "gradual_infill_step_height description"
  3118. msgid "The height of infill of a given density before switching to half the density."
  3119. msgstr "Die Höhe der Füllung einer bestimmten Dichte vor dem Umschalten auf die halbe Dichte."
  3120. msgctxt "gradual_support_infill_step_height description"
  3121. msgid "The height of support infill of a given density before switching to half the density."
  3122. msgstr "Die Höhe der Stützstruktur-Füllung einer bestimmten Dichte vor dem Umschalten auf die halbe Dichte."
  3123. msgctxt "interlocking_beam_layer_count description"
  3124. msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects."
  3125. msgstr "Die Höhe der Balken in der ineinandergreifenden Struktur, gemessen in der Anzahl der Schichten. Eine geringe Anzahl an Schichten ist stärker, aber anfälliger für Mängel."
  3126. msgctxt "interlocking_orientation description"
  3127. msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects."
  3128. msgstr "Die Höhe der Balken in der ineinandergreifenden Struktur, gemessen in der Anzahl der Schichten. Eine geringe Anzahl an Schichten ist stärker, aber anfälliger für Mängel."
  3129. msgctxt "layer_height_0 description"
  3130. msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier."
  3131. msgstr "Die Dicke der ersten Schicht in mm. Eine dicke erste Schicht erleichtert die Haftung am Druckbett."
  3132. msgctxt "prime_tower_base_height description"
  3133. msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base."
  3134. msgstr "Die Höhe der Prime-Turm-Basis. Eine Erhöhung dieses Wertes führt zu einem stabileren Prime-Turm, da die Basis breiter wird. Ist dieser Wert zu niedrig, hat der Prime-Turm keine stabile Basis."
  3135. msgctxt "support_bottom_stair_step_height description"
  3136. 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."
  3137. msgstr "Die Höhe der Stufen der treppenförmigen Unterlage für die Stützstruktur des Modells. Ein niedriger Wert kann das Entfernen der Stützstruktur erschweren, ein zu hoher Wert kann jedoch zu instabilen Stützstrukturen führen. Auf Null einstellen, um das Stufenverhalten zu deaktivieren."
  3138. msgctxt "brim_gap description"
  3139. 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."
  3140. msgstr "Der horizontale Abstand zwischen der ersten Brim-Linie und der Kontur der ersten Schicht des Drucks. Eine kleine Spalte kann das Entfernen des Brims vereinfachen, wobei trotzdem alle thermischen Vorteile genutzt werden können."
  3141. msgctxt "skirt_gap description"
  3142. msgid "The horizontal distance between the skirt and the first layer of the print.\nThis is the minimum distance. Multiple skirt lines will extend outwards from this distance."
  3143. msgstr "Der horizontale Abstand zwischen dem Skirt und der ersten Schicht des Drucks."
  3144. "Es handelt sich dabei um den Mindestabstand. Ab diesem Abstand werden mehrere Skirt-Linien in äußerer Richtung angebracht."
  3145. msgctxt "lightning_infill_straightening_angle description"
  3146. 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."
  3147. msgstr "Um Druckzeit zu sparen, werden die Füllungslinien begradigt. Dies ist der maximal zulässige Winkel des Überhangs über die Länge der Füllung."
  3148. msgctxt "infill_offset_x description"
  3149. msgid "The infill pattern is moved this distance along the X axis."
  3150. msgstr "Das Füllmuster wird um diese Distanz entlang der X-Achse verschoben."
  3151. msgctxt "infill_offset_y description"
  3152. msgid "The infill pattern is moved this distance along the Y axis."
  3153. msgstr "Das Füllmuster wird um diese Distanz entlang der Y-Achse verschoben."
  3154. msgctxt "machine_nozzle_size description"
  3155. msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size."
  3156. msgstr "Der Innendurchmesser der Düse. Verwenden Sie diese Einstellung, wenn Sie eine Düse einer Nicht-Standardgröße verwenden."
  3157. msgctxt "raft_base_jerk description"
  3158. msgid "The jerk with which the base raft layer is printed."
  3159. msgstr "Die Ruckfunktion, mit der die unteren Raft-Schichten gedruckt werden."
  3160. msgctxt "raft_interface_jerk description"
  3161. msgid "The jerk with which the middle raft layer is printed."
  3162. msgstr "Die Ruckfunktion, mit der die mittleren Raft-Schichten gedruckt werden."
  3163. msgctxt "raft_jerk description"
  3164. msgid "The jerk with which the raft is printed."
  3165. msgstr "Die Ruckfunktion, mit der das Raft gedruckt wird."
  3166. msgctxt "raft_surface_jerk description"
  3167. msgid "The jerk with which the top raft layers are printed."
  3168. msgstr "Die Ruckfunktion, mit der die oberen Raft-Schichten gedruckt werden."
  3169. msgctxt "bottom_skin_preshrink description"
  3170. 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."
  3171. msgstr "Dies bezeichnet die größte Breite der zu entfernenden unteren Außenhautbereiche. Jeder Außenhautbereich, der kleiner als dieser Wert ist, verschwindet. Dies kann bei der Beschränkung der benötigten Zeit und Materialmenge für das Drucken der unteren Außenhaut an abgeschrägten Flächen des Modells unterstützen."
  3172. msgctxt "skin_preshrink description"
  3173. 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."
  3174. msgstr "Dies bezeichnet die größte Breite der zu entfernenden Außenhautbereiche. Jeder Außenhautbereich, der kleiner als dieser Wert ist, verschwindet. Dies kann bei der Beschränkung der benötigten Zeit und Materialmenge für das Drucken der Außenhaut oben/unten an abgeschrägten Flächen des Modells unterstützen."
  3175. msgctxt "top_skin_preshrink description"
  3176. 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."
  3177. msgstr "Dies bezeichnet die größte Breite der zu entfernenden oberen Außenhautbereiche. Jeder Außenhautbereich, der kleiner als dieser Wert ist, verschwindet. Dies kann bei der Beschränkung der benötigten Zeit und Materialmenge für das Drucken der oberen Außenhaut an abgeschrägten Flächen des Modells unterstützen."
  3178. msgctxt "cool_fan_full_layer description"
  3179. 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."
  3180. msgstr "Die Schicht, bei der die Lüfter mit Normaldrehzahl laufen. Wenn Normaldrehzahl des Lüfters bei Höhe eingestellt ist, wird dieser Wert berechnet und auf eine ganze Zahl auf- oder abgerundet."
  3181. msgctxt "cool_min_layer_time_fan_speed_max description"
  3182. 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."
  3183. msgstr "Die Schichtzeit, die den Grenzwert zwischen Normaldrehzahl und Maximaldrehzahl des Lüfters darstellt. Für Schichten, die langsamer als diese Zeit gedruckt werden, läuft der Lüfter auf Normaldrehzahl. Für schnellere Schichten steigt die Lüfterdrehzahl schrittweise zur Maximaldrehzahl des Lüfters an."
  3184. msgctxt "retraction_amount description"
  3185. msgid "The length of material retracted during a retraction move."
  3186. msgstr "Die Länge des Materials, das während der Einzugsbewegung eingezogen wird."
  3187. msgctxt "prime_tower_base_curve_magnitude description"
  3188. msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker."
  3189. msgstr "Der Größenfaktor, der für die Neigung der Prime-Turm-Basis verwendet wird. Wenn Sie diesen Wert erhöhen, wird die Basis schlanker. Wenn Sie ihn verringern, wird die Basis dicker."
  3190. msgctxt "machine_buildplate_type description"
  3191. msgid "The material of the build plate installed on the printer."
  3192. msgstr "Das Material der im Drucker eingebauten Druckplatte."
  3193. msgctxt "adaptive_layer_height_variation description"
  3194. msgid "The maximum allowed height different from the base layer height."
  3195. msgstr "Die max. zulässige Höhendifferenz von der Basisschichthöhe."
  3196. msgctxt "ooze_shield_angle description"
  3197. 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."
  3198. msgstr "Der maximale Winkel, den ein Teil im Sickerschutz haben kann. 0 Grad ist vertikal und 90 Grad ist horizontal. Ein kleinerer Winkel führt zu weniger ausgefallenen Sickerschützen, jedoch mehr Material."
  3199. msgctxt "conical_overhang_angle description"
  3200. 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."
  3201. msgstr "Der maximale Winkel von Überhängen, nachdem sie druckbar gemacht wurden. Bei einem Wert von 0° werden alle Überhänge durch ein Teil des Modells ersetzt, das mit der Druckplatte verbunden ist, 90° führt zu keiner Änderung des Modells."
  3202. msgctxt "support_tree_angle description"
  3203. 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."
  3204. msgstr "Dies bezeichnet den maximalen Winkel der Äste, die um das Modell herum entstehen. Verwenden Sie einen geringeren Winkel, um sie vertikaler und stabiler zu gestalten. Verwenden Sie einen stärkeren Winkel, um mehr Reichweite zu erhalten."
  3205. msgctxt "conical_overhang_hole_size description"
  3206. 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."
  3207. msgstr "Die maximale Fläche eines Lochs im Sockel des Modells, das mittels „Überhang drucken“ entfernt werden soll. Löcher mit kleinerer Fläche werden beibehalten. Beim Wert 0 mm² werden alle Löcher in der Modellbasis gefüllt."
  3208. msgctxt "meshfix_maximum_deviation description"
  3209. 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."
  3210. msgstr "Die maximal zulässige Abweichung bei Reduzierung der maximalen Auflösung. Wenn Sie diesen Wert erhöhen, wird der Druck ungenauer, der G-Code wird jedoch kleiner. Die maximale Abweichung ist eine Grenze für die maximale Auflösung. Wenn die beiden Werte sich widersprechen, wird stets die maximale Abweichung eingehalten."
  3211. msgctxt "support_join_distance description"
  3212. 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."
  3213. msgstr "Der Maximalabstand zwischen Stützstrukturen in der X- und Y-Richtung. Wenn der Abstand einzelner Strukturen zueinander diesen Wert unterschreitet, werden diese Strukturen miteinander kombiniert und bilden eine Struktur."
  3214. msgctxt "flow_rate_max_extrusion_offset description"
  3215. msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate."
  3216. msgstr "Die maximale Strecke (in mm), die das Filament bewegt werden kann, um Änderungen der Durchflussrate zu kompensieren."
  3217. msgctxt "meshfix_maximum_extrusion_area_deviation description"
  3218. 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."
  3219. msgstr "Die maximale zulässige Abweichung für Extrusionsflächen beim Entfernen von Zwischenpunkten aus einer Geraden. Ein Zwischenpunkt kann als Änderungspunkt für die Linienstärke in einer langen Geraden dienen. Wenn dieser entfernt wird, führt es dazu, dass die Linie eine einheitliche Stärke hat und folglich ein wenig Extrusionsfläche verloren geht (oder hinzugefügt wird). Wenn Sie diesen Wert erhöhen, können Sie eine leichte Unter- (oder Über-) Extrusion zwischen geraden, parallelen Wänden feststellen, da mehr dazwischenliegende Änderungspunkte für die Linienstärke entfernt werden können. Ihr Druck wird weniger genau sein, aber der g-Code wird kleiner sein."
  3220. msgctxt "jerk_print_layer_0 description"
  3221. msgid "The maximum instantaneous velocity change during the printing of the initial layer."
  3222. msgstr "Die maximale unmittelbare Geschwindigkeitsänderung während des Druckens für die erste Schicht."
  3223. msgctxt "jerk_print description"
  3224. msgid "The maximum instantaneous velocity change of the print head."
  3225. msgstr "Die maximale unmittelbare Geschwindigkeitsänderung des Druckkopfes."
  3226. msgctxt "jerk_ironing description"
  3227. msgid "The maximum instantaneous velocity change while performing ironing."
  3228. msgstr "Die maximale unmittelbare Geschwindigkeitsänderung während des Glättens."
  3229. msgctxt "jerk_wall_x description"
  3230. msgid "The maximum instantaneous velocity change with which all inner walls are printed."
  3231. msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der alle Innenwände gedruckt werden."
  3232. msgctxt "jerk_infill description"
  3233. msgid "The maximum instantaneous velocity change with which infill is printed."
  3234. msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die Füllung gedruckt wird."
  3235. msgctxt "jerk_support_bottom description"
  3236. msgid "The maximum instantaneous velocity change with which the floors of support are printed."
  3237. msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die Böden der Stützstruktur gedruckt werden."
  3238. msgctxt "jerk_support_infill description"
  3239. msgid "The maximum instantaneous velocity change with which the infill of support is printed."
  3240. msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die Füllung der Stützstruktur gedruckt wird."
  3241. msgctxt "jerk_wall_0 description"
  3242. msgid "The maximum instantaneous velocity change with which the outermost walls are printed."
  3243. msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die Außenwände gedruckt werden."
  3244. msgctxt "jerk_prime_tower description"
  3245. msgid "The maximum instantaneous velocity change with which the prime tower is printed."
  3246. msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der der Einzugsturm gedruckt wird."
  3247. msgctxt "jerk_support_interface description"
  3248. msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed."
  3249. msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die Dächer und Böden der Stützstruktur gedruckt werden."
  3250. msgctxt "jerk_support_roof description"
  3251. msgid "The maximum instantaneous velocity change with which the roofs of support are printed."
  3252. msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die Dächer der Stützstruktur gedruckt werden."
  3253. msgctxt "jerk_skirt_brim description"
  3254. msgid "The maximum instantaneous velocity change with which the skirt and brim are printed."
  3255. msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der Skirt und Brim gedruckt werden."
  3256. msgctxt "jerk_support description"
  3257. msgid "The maximum instantaneous velocity change with which the support structure is printed."
  3258. msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die Stützstruktur gedruckt wird."
  3259. msgctxt "jerk_wall_x_roofing description"
  3260. msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed."
  3261. msgstr "Die maximale instantane Geschwindigkeitsänderung, mit der die äußersten Oberflächenwände gedruckt werden."
  3262. msgctxt "jerk_wall_0_roofing description"
  3263. msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed."
  3264. msgstr "Die maximale instantane Geschwindigkeitsänderung, mit der die inneren Oberflächenwände gedruckt werden."
  3265. msgctxt "jerk_wall description"
  3266. msgid "The maximum instantaneous velocity change with which the walls are printed."
  3267. msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die Wände gedruckt werden."
  3268. msgctxt "jerk_roofing description"
  3269. msgid "The maximum instantaneous velocity change with which top surface skin layers are printed."
  3270. msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die oberen Schichten der Außenhaut gedruckt werden."
  3271. msgctxt "jerk_topbottom description"
  3272. msgid "The maximum instantaneous velocity change with which top/bottom layers are printed."
  3273. msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die oberen/unteren Schichten gedruckt werden."
  3274. msgctxt "jerk_travel description"
  3275. msgid "The maximum instantaneous velocity change with which travel moves are made."
  3276. msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die Fahrtbewegung ausgeführt wird."
  3277. msgctxt "prime_tower_max_bridging_distance description"
  3278. msgid "The maximum length of the branches which may be printed over the air."
  3279. msgstr "Die maximale Länge der Zweige, die über die Luft gedruckt werden dürfen."
  3280. msgctxt "machine_max_feedrate_x description"
  3281. msgid "The maximum speed for the motor of the X-direction."
  3282. msgstr "Die Maximaldrehzahl für den Motor der X-Richtung."
  3283. msgctxt "machine_max_feedrate_y description"
  3284. msgid "The maximum speed for the motor of the Y-direction."
  3285. msgstr "Die Maximaldrehzahl für den Motor der Y-Richtung."
  3286. msgctxt "machine_max_feedrate_z description"
  3287. msgid "The maximum speed for the motor of the Z-direction."
  3288. msgstr "Die Maximaldrehzahl für den Motor der Z-Richtung."
  3289. msgctxt "machine_max_feedrate_e description"
  3290. msgid "The maximum speed of the filament."
  3291. msgstr "Die Maximalgeschwindigkeit des Filaments."
  3292. msgctxt "support_bottom_stair_step_width description"
  3293. 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."
  3294. msgstr "Die maximale Breite der Stufen der treppenförmigen Unterlage für die Stützstruktur des Modells. Ein niedriger Wert kann das Entfernen der Stützstruktur erschweren, ein zu hoher Wert kann jedoch zu instabilen Stützstrukturen führen."
  3295. msgctxt "mold_width description"
  3296. msgid "The minimal distance between the outside of the mold and the outside of the model."
  3297. msgstr "Der Mindestabstand zwischen der Außenseite der Form und der Außenseite des Modells."
  3298. msgctxt "machine_minimum_feedrate description"
  3299. msgid "The minimal movement speed of the print head."
  3300. msgstr "Die Mindestgeschwindigkeit für die Bewegung des Druckkopfes."
  3301. msgctxt "material_initial_print_temperature description"
  3302. msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start."
  3303. msgstr "Die Mindesttemperatur während des Aufheizens auf die Drucktemperatur, bei welcher der Druck bereits starten kann."
  3304. msgctxt "machine_min_cool_heat_time_window description"
  3305. 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."
  3306. msgstr "Die Mindestzeit, die ein Extruder inaktiv sein muss, bevor die Düse abkühlt. Nur wenn der Extruder über diese Zeit hinaus nicht verwendet wurde, kann er auf die Standby-Temperatur abkühlen."
  3307. msgctxt "infill_support_angle description"
  3308. 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."
  3309. msgstr "Der Mindestwinkel für Überhänge, für welche eine Stützstruktur zugefügt wird. Bei einem Wert von 0° werden Objekte komplett gefüllt, bei 90° wird keine Füllung ausgeführt."
  3310. msgctxt "support_angle description"
  3311. 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."
  3312. msgstr "Der Mindestwinkel für Überhänge, für welche eine Stützstruktur zugefügt wird. Bei einem Wert von 0° werden alle Überhänge gestützt, bei 90° wird kein Überhang gestützt."
  3313. msgctxt "retraction_min_travel description"
  3314. msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area."
  3315. msgstr "Der Mindestbewegungsabstand, damit ein Einzug erfolgt. Dadurch kommt es zu weniger Einzügen in einem kleinen Gebiet."
  3316. msgctxt "skirt_brim_minimal_length description"
  3317. 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."
  3318. msgstr "Die Mindestlänge für das Skirt- oder Brim-Element. Wenn diese Mindestlänge nicht durch die Anzahl der Skirt- oder Brim-Linien erreicht wird, werden weitere Skirt- oder Brim-Linien hinzugefügt, bis diese Mindestlänge erreicht wird. Hinweis: Wenn die Linienzahl auf 0 eingestellt wird, wird dies ignoriert."
  3319. msgctxt "min_odd_wall_line_width description"
  3320. 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."
  3321. msgstr "Die minimale Linienbreite für Polylinienwände mit Lücken in der mittleren Linie. Diese Einstellung legt fest, bei welcher Stärke im Modell ein Übergang vom Druck zweier Wandlinien zum Druck zweier Außenwände und einer einzigen zentralen Wand in der Mitte erfolgt. Eine höhere minimale ungeradzahlige Wandlinienstärke führt zu einer höheren maximalen ungeradzahligen Wandlinienstärke. Die maximale ungerade Wandlinienbreite wird berechnet als 2 x Minimale Wandlinienbreite."
  3322. msgctxt "min_even_wall_line_width description"
  3323. 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."
  3324. msgstr "Die Mindestlinienstärke für normale polygonale Wände. Diese Einstellung legt fest, bei welcher Stärke des Modells vom Druck einer einzelnen dünnen Wandlinie auf den Druck zweier Wandlinien umgeschaltet wird. Eine höhere minimale geradzahlige Wandlinienstärke führt zu einer höheren maximalen geradzahligen Wandlinienstärke. Die maximale geradzahlige Wandlinienstärke wird berechnet als Außenwandlinienstärke + 0,5 x minimale geradzahlige Wandlinienstärke."
  3325. msgctxt "cool_min_speed description"
  3326. 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."
  3327. msgstr "Die Mindestdruckgeschwindigkeit, trotz Verlangsamung aufgrund der Mindestzeit für Schicht. Wenn der Drucker zu langsam arbeitet, sinkt der Druck in der Düse zu stark ab und dies führt zu einer schlechten Druckqualität."
  3328. msgctxt "meshfix_maximum_resolution description"
  3329. 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."
  3330. msgstr "Die Mindestgröße eines Linienabschnitts nach dem Slicen. Wenn Sie diesen Wert erhöhen, führt dies zu einer niedrigeren Auslösung des Mesh. Damit kann der Drucker die erforderliche Geschwindigkeit für die Verarbeitung des G-Codes beibehalten; außerdem wird die Slice-Geschwindigkeit erhöht, indem Details des Mesh entfernt werden, die ohnehin nicht verarbeitet werden können."
  3331. msgctxt "meshfix_maximum_travel_resolution description"
  3332. 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."
  3333. msgstr "Die maximale Größe eines Bewegungsliniensegments nach dem Slicen. Wenn Sie diesen Wert erhöhen, weisen die Fahrtbewegungen weniger glatte Kanten aus. Das ermöglicht dem Drucker, die für die Verarbeitung eines G-Codes erforderliche Geschwindigkeit aufrechtzuerhalten, allerdings kann das Modell damit auch weniger akkurat werden."
  3334. msgctxt "support_bottom_stair_step_min_slope description"
  3335. 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."
  3336. msgstr "Die Mindestneigung des Bereichs zur Erstellung einer Stützstufe. Bei niedrigeren Werten lassen sich die Stützstrukturen an flachen Neigungen leichter entfernen. Zu niedrige Werte können allerdings zu widersprüchlichen Ergebnissen an anderen Teilen des Modells führen."
  3337. msgctxt "cool_min_layer_time description"
  3338. 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."
  3339. msgstr "Die Mindestzeit, die für eine Schicht aufgewendet wird. Hierdurch wird der Drucker verlangsamt, um mindestens die hier eingestellte Zeit für eine Schicht aufzuwenden. Dadurch kann das gedruckte Material angemessen abkühlen, bevor die folgende Schicht gedruckt wird. Die Schichten können dennoch weniger als die Mindestzeit für eine Schicht erfordern, wenn die Funktion Druckkopf anheben deaktiviert ist und die Mindestgeschwindigkeit andernfalls verletzt würde."
  3340. msgctxt "prime_tower_min_volume description"
  3341. msgid "The minimum volume for each layer of the prime tower in order to purge enough material."
  3342. msgstr "Das Mindestvolumen für jede Schicht des Einzugsturms, um ausreichend Material zu spülen."
  3343. msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description"
  3344. 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"
  3345. msgstr "Dies bezeichnet die maximale Vergrößerung des Durchmessers eines Astes, der mit dem Modell verbunden werden muss, durch die Zusammenführung mit Ästen, die die Druckplatte erreichen könnten. Die Erhöhung dieses Wertes verkürzt die Druckzeit, vergrößert jedoch die Stützstruktur, die auf dem Modell ruht."
  3346. msgctxt "machine_name description"
  3347. msgid "The name of your 3D printer model."
  3348. msgstr "Die Bezeichnung Ihres 3D-Druckermodells."
  3349. msgctxt "machine_nozzle_id description"
  3350. msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"."
  3351. msgstr "Der Düsen-ID für eine Extruder-Einheit, z. B. „AA 0,4“ und „BB 0,8“."
  3352. msgctxt "travel_avoid_other_parts description"
  3353. msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled."
  3354. msgstr "Die Düse vermeidet bei der Bewegung bereits gedruckte Teile. Diese Option ist nur verfügbar, wenn Combing aktiviert ist."
  3355. msgctxt "travel_avoid_supports description"
  3356. msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled."
  3357. msgstr "Die Düse vermeidet bei der Bewegung bereits gedruckte Stützstrukturen. Diese Option ist nur verfügbar, wenn Combing aktiviert ist."
  3358. msgctxt "bottom_layers description"
  3359. msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number."
  3360. msgstr "Die Anzahl der unteren Schichten. Wenn diese anhand der unteren Dicke berechnet wird, wird der Wert auf eine ganze Zahl auf- oder abgerundet."
  3361. msgctxt "raft_base_wall_count description"
  3362. msgid "The number of contours to print around the linear pattern in the base layer of the raft."
  3363. msgstr "Die Anzahl der Konturlinien, die um das Linienmodell in der untersten Schicht des Rafts gedruckt werden sollen."
  3364. msgctxt "raft_interface_wall_count description"
  3365. msgid "The number of contours to print around the linear pattern in the middle layers of the raft."
  3366. msgstr "Die Anzahl der Konturen, die um das lineare Muster in den mittleren Schichten des Floßes gedruckt werden."
  3367. msgctxt "raft_surface_wall_count description"
  3368. msgid "The number of contours to print around the linear pattern in the top layers of the raft."
  3369. msgstr "Die Anzahl der Konturen, die um das lineare Muster in den oberen Lagen des Floßes gedruckt werden sollen."
  3370. msgctxt "raft_wall_count description"
  3371. msgid "The number of contours to print around the linear pattern of the raft."
  3372. msgstr "Die Anzahl der Konturen, die um das lineare Muster des Floßes gedruckt werden."
  3373. msgctxt "skin_edge_support_layers description"
  3374. msgid "The number of infill layers that supports skin edges."
  3375. msgstr "Die Anzahl der zusätzlichen Schichten, die die Außenhautkanten stützen."
  3376. msgctxt "initial_bottom_layers description"
  3377. 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."
  3378. msgstr "Die Anzahl der ersten Schichten, die auf die Druckplatte aufgetragen werden. Wenn diese anhand der unteren Dicke berechnet werden, wird der Wert auf eine ganze Zahl auf- oder abgerundet."
  3379. msgctxt "raft_interface_layers description"
  3380. 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."
  3381. msgstr "Die Anzahl der Schichten zwischen dem Boden und der Oberfläche des Rafts. Aus diesen besteht der größte Teil des Rafts. Eine Erhöhung dieses Wertes führt zu einem dickeren und stabileren Raft."
  3382. msgctxt "brim_line_count description"
  3383. 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."
  3384. msgstr "Die Anzahl der Linien für das Brim-Element. Eine größere Anzahl von Brim-Linien verbessert die Haftung am Druckbett, es wird dadurch aber auch der verwendbare Druckbereich verkleinert."
  3385. msgctxt "support_brim_line_count description"
  3386. 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."
  3387. msgstr "Die Anzahl der Linien für die Brim-Stützstruktur. Eine größere Anzahl von Brim-Linien verbessert die Haftung am Druckbett, jedoch erhöht sich hierdurch der Materialverbrauch."
  3388. msgctxt "raft_surface_layers description"
  3389. 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."
  3390. msgstr "Die Anzahl der Oberflächenschichten auf der zweiten Raft-Schicht. Dabei handelt es sich um komplett gefüllte Schichten, auf denen das Modell ruht. Bei der Verwendung von 2 Schichten entsteht eine glattere Oberfläche als bei einer Schicht."
  3391. msgctxt "top_layers description"
  3392. msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number."
  3393. msgstr "Die Anzahl der oberen Schichten. Wenn diese anhand der oberen Dicke berechnet wird, wird der Wert auf eine ganze Zahl auf- oder abgerundet."
  3394. msgctxt "roofing_layer_count description"
  3395. msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces."
  3396. msgstr "Die Anzahl der obersten Außenhautschichten. Üblicherweise reicht eine einzige oberste Schicht aus, um höherwertige Oberflächen zu generieren."
  3397. msgctxt "support_wall_count description"
  3398. 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."
  3399. msgstr "Die Anzahl der Wände, mit denen die Stützstruktur-Füllung umgeben wird. Das Hinzufügen einer Wand kann den Druck der Stützstruktur zuverlässiger machen und Überhänge besser unterstützen. Es erhöht jedoch die Druckzeit und den Materialverbrauch."
  3400. msgctxt "support_bottom_wall_count description"
  3401. 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."
  3402. msgstr "Die Anzahl der Wände, mit denen der Stützstruktur-Schnittstellenboden umgeben wird. Das Hinzufügen einer Wand kann den Druck der Stützstruktur zuverlässiger machen und Überhänge besser unterstützen. Es erhöht jedoch die Druckzeit und den Materialverbrauch."
  3403. msgctxt "support_roof_wall_count description"
  3404. 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."
  3405. msgstr "Die Anzahl der Wände, mit denen das Stützstruktur-Schnittstellendach umgeben wird. Das Hinzufügen einer Wand kann den Druck der Stützstruktur zuverlässiger machen und Überhänge besser unterstützen. Es erhöht jedoch die Druckzeit und den Materialverbrauch."
  3406. msgctxt "support_interface_wall_count description"
  3407. 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."
  3408. msgstr "Die Anzahl der Wände, mit denen die Stützstruktur-Schnittstelle umgeben wird. Das Hinzufügen einer Wand kann den Druck der Stützstruktur zuverlässiger machen und Überhänge besser unterstützen. Es erhöht jedoch die Druckzeit und den Materialverbrauch."
  3409. msgctxt "wall_distribution_count description"
  3410. 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."
  3411. msgstr "Die Anzahl der Wände, gezählt von der Mitte aus, über welche die Variation verteilt werden soll. Niedrigere Werte führen dazu, dass sich die Außenwände in ihrer Stärke nicht verändern."
  3412. msgctxt "wall_line_count description"
  3413. msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number."
  3414. msgstr "Die Anzahl der Wände. Wenn diese anhand der Wanddicke berechnet wird, wird der Wert auf eine ganze Zahl auf- oder abgerundet."
  3415. msgctxt "machine_nozzle_tip_outer_diameter description"
  3416. msgid "The outer diameter of the tip of the nozzle."
  3417. msgstr "Der Außendurchmesser der Düsenspitze."
  3418. msgctxt "infill_pattern description"
  3419. 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."
  3420. msgstr "Das Muster des Füllungsmaterials des Drucks. Die Linien- und Zickzack-Füllung wechselt die Richtung auf abwechselnden Schichten, was die Materialkosten reduziert. Die Gitter-, Dreieck-, Tri-Hexagon-, Kubus-, Oktett-, Viertelkubus-, Kreuz- und konzentrischen Muster werden in jeder Schicht vollständig gedruckt. Die Füllung in Form von Kreiseln, Würfeln, Viertelwürfeln und Achten wechselt mit jeder Schicht, um eine gleichmäßigere Verteilung der Stärke in jeder Richtung zu erreichen. Bei der Blitz-Füllung wird versucht, die Füllung zu minimieren, indem nur die Decke des Objekts unterstützt wird."
  3421. msgctxt "support_pattern description"
  3422. msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support."
  3423. msgstr "Das Muster der Stützstruktur des Drucks. Die verschiedenen verfügbaren Optionen führen zu einer stabilen oder zu einer leicht entfernbaren Stützstruktur."
  3424. msgctxt "roofing_pattern description"
  3425. msgid "The pattern of the top most layers."
  3426. msgstr "Das Muster der obersten Schichten."
  3427. msgctxt "top_bottom_pattern description"
  3428. msgid "The pattern of the top/bottom layers."
  3429. msgstr "Das Muster der oberen/unteren Schichten."
  3430. msgctxt "top_bottom_pattern_0 description"
  3431. msgid "The pattern on the bottom of the print on the first layer."
  3432. msgstr "Das Muster am Boden des Drucks der ersten Schicht."
  3433. msgctxt "ironing_pattern description"
  3434. msgid "The pattern to use for ironing top surfaces."
  3435. msgstr "Das Muster, das für die Glättung der Oberflächen verwendet wird."
  3436. msgctxt "support_bottom_pattern description"
  3437. msgid "The pattern with which the floors of the support are printed."
  3438. msgstr "Das Muster, mit dem die Unterseiten der Stützstruktur gedruckt werden."
  3439. msgctxt "support_interface_pattern description"
  3440. msgid "The pattern with which the interface of the support with the model is printed."
  3441. msgstr "Das Muster, mit dem die Schnittstelle der Stützstruktur mit dem Modell gedruckt wird."
  3442. msgctxt "support_roof_pattern description"
  3443. msgid "The pattern with which the roofs of the support are printed."
  3444. msgstr "Das Muster, mit dem die Dächer der Stützstruktur gedruckt werden."
  3445. msgctxt "z_seam_position description"
  3446. msgid "The position near where to start printing each part in a layer."
  3447. msgstr "Die Position in der Nähe der Stelle, an der die einzelnen Teile einer Ebene gedruckt werden sollen."
  3448. msgctxt "support_tree_angle_slow description"
  3449. 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."
  3450. msgstr "Dies bezeichnet den bevorzugten Winkel der Äste, wenn eine Vermeidung des Modells nicht notwendig ist. Verwenden Sie einen geringeren Winkel, um sie vertikaler und stabiler zu gestalten. Verwenden Sie einen stärkeren Astwinkel, um sie schneller zusammenzuführen."
  3451. msgctxt "support_tree_rest_preference description"
  3452. 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."
  3453. msgstr "Hierdurch wird die bevorzugte Platzierung der Stützstrukturen festgelegt. Wenn Strukturen nicht an der gewünschten Stelle platziert werden können, werden sie anderswo positioniert, möglicherweise sogar auf dem Modell."
  3454. msgctxt "jerk_layer_0 description"
  3455. msgid "The print maximum instantaneous velocity change for the initial layer."
  3456. msgstr "Die maximale unmittelbare Geschwindigkeitsänderung für die erste Schicht."
  3457. msgctxt "machine_shape description"
  3458. msgid "The shape of the build plate without taking unprintable areas into account."
  3459. msgstr "Die Form der Druckplatte ohne Berücksichtigung nicht druckbarer Bereiche."
  3460. msgctxt "machine_head_with_fans_polygon description"
  3461. 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."
  3462. msgstr "Die Form des Druckkopfes. Dies sind die Koordinaten relativ zur Position des Druckkopfs; meist ist dies die Position des ersten Extruders. Die Abmessungen links und vor dem Druckkopf müssen negative Koordinaten sein."
  3463. msgctxt "cross_infill_pocket_size description"
  3464. msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself."
  3465. msgstr "Die Größe der Taschen bei Überkreuzung im 3D-Quermuster bei Höhen, in denen sich das Muster selbst berührt."
  3466. msgctxt "coasting_min_volume description"
  3467. 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."
  3468. msgstr "Das kleinste Volumen, das ein Extrusionsweg haben sollte, damit Coasting möglich ist. Bei kürzeren Extrusionswegen wurde ein geringerer Druck in der Bowden-Röhre aufgebaut und daher wird das Coasting-Volumen linear skaliert. Dieser Wert sollte immer größer sein als das Coasting-Volumen."
  3469. msgctxt "machine_nozzle_cool_down_speed description"
  3470. msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature."
  3471. msgstr "Die Geschwindigkeit (°C/Sek.), mit der die Düse durchschnittlich bei normalen Drucktemperaturen und im Standby abkühlt."
  3472. msgctxt "machine_nozzle_heat_up_speed description"
  3473. msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature."
  3474. msgstr "Die Geschwindigkeit (°C/Sek.), mit der die Düse durchschnittlich bei normalen Drucktemperaturen und im Standby aufheizt."
  3475. msgctxt "speed_wall_x description"
  3476. 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."
  3477. msgstr "Die Geschwindigkeit, mit der alle Innenwände gedruckt werden. Wenn die Innenwand schneller als die Außenwand gedruckt wird, wird die Druckzeit reduziert. Es wird empfohlen, diese Geschwindigkeit zwischen der Geschwindigkeit für die Außenwand und der Füllgeschwindigkeit einzustellen."
  3478. msgctxt "bridge_skin_speed description"
  3479. msgid "The speed at which bridge skin regions are printed."
  3480. msgstr "Die Geschwindigkeit, mit der die Brücken-Außenhautbereiche gedruckt werden."
  3481. msgctxt "speed_infill description"
  3482. msgid "The speed at which infill is printed."
  3483. msgstr "Die Geschwindigkeit, mit der die Füllung gedruckt wird."
  3484. msgctxt "speed_print description"
  3485. msgid "The speed at which printing happens."
  3486. msgstr "Die Geschwindigkeit, mit der gedruckt wird."
  3487. msgctxt "raft_base_speed description"
  3488. 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."
  3489. msgstr "Die Geschwindigkeit, mit der die Raft-Basisschicht gedruckt wird. Diese sollte relativ niedrig sein, da zu diesem Zeitpunkt ein großes Materialvolumen aus der Düse kommt."
  3490. msgctxt "bridge_wall_speed description"
  3491. msgid "The speed at which the bridge walls are printed."
  3492. msgstr "Die Geschwindigkeit, mit der die Brückenwände gedruckt werden."
  3493. msgctxt "cool_fan_speed_0 description"
  3494. 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."
  3495. msgstr "Die Drehzahl, mit der die Lüfter zu Druckbeginn drehen. In den nachfolgenden Schichten wird die Lüfterdrehzahl schrittweise bis zu der Schicht gesteigert, die der Normaldrehzahl in der Höhe entspricht."
  3496. msgctxt "cool_fan_speed_min description"
  3497. 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."
  3498. msgstr "Die Drehzahl, mit der die Lüfter laufen, bevor der Grenzwert erreicht wird. Wenn eine Schicht schneller als der Grenzwert gedruckt wird, steigt die Lüfterdrehzahl schrittweise zur Maximaldrehzahl des Lüfters an."
  3499. msgctxt "cool_fan_speed_max description"
  3500. 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."
  3501. msgstr "Die Drehzahl, mit der die Lüfter bei der Mindestzeit für Schicht laufen. Die Lüfterdrehzahl wird schrittweise von der Normaldrehzahl bis zur Maximaldrehzahl des Lüfters angehoben, wenn der Grenzwert erreicht wird."
  3502. msgctxt "retraction_prime_speed description"
  3503. msgid "The speed at which the filament is primed during a retraction move."
  3504. msgstr "Die Geschwindigkeit, mit der das Filament während einer Einzugsbewegung zurückgeschoben wird."
  3505. msgctxt "wipe_retraction_prime_speed description"
  3506. msgid "The speed at which the filament is primed during a wipe retraction move."
  3507. msgstr "Die Geschwindigkeit, mit der das Filament während einer Einzugsbewegung vorbereitet wird."
  3508. msgctxt "switch_extruder_prime_speed description"
  3509. msgid "The speed at which the filament is pushed back after a nozzle switch retraction."
  3510. msgstr "Die Geschwindigkeit, mit der das Filament während eines Düsenwechseleinzugs zurückgeschoben wird."
  3511. msgctxt "retraction_speed description"
  3512. msgid "The speed at which the filament is retracted and primed during a retraction move."
  3513. msgstr "Die Geschwindigkeit, mit der das Filament während einer Einzugsbewegung eingezogen und zurückgeschoben wird."
  3514. msgctxt "wipe_retraction_speed description"
  3515. msgid "The speed at which the filament is retracted and primed during a wipe retraction move."
  3516. msgstr "Die Geschwindigkeit, mit der das Filament während einer Einzugsbewegung eingezogen und während einer Einzugsbewegung für Abwischen zurückgeschoben wird."
  3517. msgctxt "switch_extruder_retraction_speed description"
  3518. msgid "The speed at which the filament is retracted during a nozzle switch retract."
  3519. msgstr "Die Geschwindigkeit, mit der das Filament während eines Düsenwechseleinzugs zurückgezogen wird."
  3520. msgctxt "retraction_retract_speed description"
  3521. msgid "The speed at which the filament is retracted during a retraction move."
  3522. msgstr "Die Geschwindigkeit, mit der das Filament während einer Einzugsbewegung eingezogen wird."
  3523. msgctxt "wipe_retraction_retract_speed description"
  3524. msgid "The speed at which the filament is retracted during a wipe retraction move."
  3525. msgstr "Die Geschwindigkeit, mit der das Filament während einer Einzugsbewegung für Abwischen eingezogen wird."
  3526. msgctxt "switch_extruder_retraction_speeds description"
  3527. 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."
  3528. msgstr "Die Geschwindigkeit, mit der das Filament zurückgezogen wird. Eine höhere Rückzugsgeschwindigkeit funktioniert besser, allerdings kann eine sehr hohe Rückzugsgeschwindigkeit zu einem Schleifen des Filaments führen."
  3529. msgctxt "speed_support_bottom description"
  3530. 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."
  3531. msgstr "Die Geschwindigkeit, mit der die Böden der Stützstruktur gedruckt werden. Durch das Drucken bei einer geringeren Geschwindigkeit kann die Haftung des Stützdachs Ihres Modells verbessert werden."
  3532. msgctxt "speed_support_infill description"
  3533. msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability."
  3534. msgstr "Die Geschwindigkeit, mit der die Füllung der Stützstruktur gedruckt wird. Durch das Drucken der Füllung bei einer geringeren Geschwindigkeit, kann die Stabilität verbessert werden."
  3535. msgctxt "raft_interface_speed description"
  3536. 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."
  3537. msgstr "Die Geschwindigkeit, mit der die Raft-Mittelschicht gedruckt wird. Diese sollte relativ niedrig sein, da zu diesem Zeitpunkt ein großes Materialvolumen aus der Düse kommt."
  3538. msgctxt "speed_wall_0 description"
  3539. 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."
  3540. msgstr "Die Geschwindigkeit, mit der die Außenwände gedruckt werden. Durch das Drucken der Außenwand bei einer niedrigeren Geschwindigkeit wird eine bessere Endqualität der Außenhaut erreicht. Wenn allerdings zwischen der Geschwindigkeit für die Innenwand und jener für die Außenwand ein zu großer Unterschied besteht, wird die Qualität negativ beeinträchtigt."
  3541. msgctxt "speed_prime_tower description"
  3542. 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."
  3543. msgstr "Die Geschwindigkeit, mit der der Einzugsturm gedruckt wird. Das Drucken des Einzugsturms bei einer geringeren Geschwindigkeit kann zu einem stabileren Ergebnis führen, wenn die Haftung zwischen den verschiedenen Filamenten nicht optimal ist."
  3544. msgctxt "cool_fan_speed description"
  3545. msgid "The speed at which the print cooling fans spin."
  3546. msgstr "Die Drehzahl, mit der die Druckerlüfter laufen."
  3547. msgctxt "raft_speed description"
  3548. msgid "The speed at which the raft is printed."
  3549. msgstr "Die Geschwindigkeit, mit der das Raft gedruckt wird."
  3550. msgctxt "speed_support_interface description"
  3551. msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality."
  3552. msgstr "Die Geschwindigkeit, mit der die Dächer und Böden der Stützstruktur gedruckt werden. Durch das Drucken bei einer geringeren Geschwindigkeit kann die Qualität der Überhänge verbessert werden."
  3553. msgctxt "speed_support_roof description"
  3554. msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality."
  3555. msgstr "Die Geschwindigkeit, mit der die Dächer der Stützstruktur gedruckt werden. Durch das Drucken bei einer geringeren Geschwindigkeit kann die Qualität der Überhänge verbessert werden."
  3556. msgctxt "skirt_brim_speed description"
  3557. 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."
  3558. msgstr "Die Geschwindigkeit, mit der die Skirt- und Brim-Elemente gedruckt werden. Normalerweise wird dafür die Geschwindigkeit der Basisschicht verwendet. In machen Fällen kann es jedoch vorteilhaft sein, das Skirt- oder Brim-Element mit einer anderen Geschwindigkeit zu drucken."
  3559. msgctxt "speed_support description"
  3560. 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."
  3561. msgstr "Die Geschwindigkeit, mit der die Stützstruktur gedruckt wird. Durch das Drucken der Stützstruktur bei höheren Geschwindigkeiten kann die Gesamtdruckzeit deutlich verringert werden. Die Oberflächenqualität der Stützstruktur ist nicht wichtig, da diese nach dem Drucken entfernt wird."
  3562. msgctxt "raft_surface_speed description"
  3563. 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."
  3564. msgstr "Die Geschwindigkeit, mit der die oberen Schichten des Raft gedruckt werden. Diese sollte etwas geringer sein, damit die Düse langsam angrenzende Oberflächenlinien glätten kann."
  3565. msgctxt "speed_wall_x_roofing description"
  3566. msgid "The speed at which the top surface inner walls are printed."
  3567. msgstr "Die Geschwindigkeit, mit der die inneren Wände der Oberfläche gedruckt werden."
  3568. msgctxt "speed_wall_0_roofing description"
  3569. msgid "The speed at which the top surface outermost wall is printed."
  3570. msgstr "Die Geschwindigkeit, mit der die äußersten Wände der Oberfläche gedruckt werden."
  3571. msgctxt "speed_z_hop description"
  3572. 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."
  3573. msgstr "Die Geschwindigkeit, mit der bei Z-Sprüngen die vertikale Bewegung (Z-Achse) erfolgt. Diese liegt in der Regel unterhalb der Druckgeschwindigkeit, da die Bewegung von Druckbett oder Brücke schwieriger ist."
  3574. msgctxt "speed_wall description"
  3575. msgid "The speed at which the walls are printed."
  3576. msgstr "Die Geschwindigkeit, mit der die Wände gedruckt werden."
  3577. msgctxt "speed_ironing description"
  3578. msgid "The speed at which to pass over the top surface."
  3579. msgstr "Die Geschwindigkeit, mit der über die Oberfläche gegangen wird."
  3580. msgctxt "material_break_speed description"
  3581. msgid "The speed at which to retract the filament in order to break it cleanly."
  3582. msgstr "Geschwindigkeit, mit der das Filament eingezogen werden muss, damit es sauber abgebrochen werden kann."
  3583. msgctxt "speed_roofing description"
  3584. msgid "The speed at which top surface skin layers are printed."
  3585. msgstr "Die Geschwindigkeit, mit der die Oberflächen der Außenhaut-Schichten gedruckt werden."
  3586. msgctxt "speed_topbottom description"
  3587. msgid "The speed at which top/bottom layers are printed."
  3588. msgstr "Die Geschwindigkeit, mit der die oberen/unteren Schichten gedruckt werden."
  3589. msgctxt "speed_travel description"
  3590. msgid "The speed at which travel moves are made."
  3591. msgstr "Die Geschwindigkeit, mit der Bewegungen durchgeführt werden."
  3592. msgctxt "coasting_speed description"
  3593. 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."
  3594. msgstr "Die Geschwindigkeit, mit der die Bewegung während des Coasting erfolgt, in Relation zur Geschwindigkeit des Extrusionswegs. Ein Wert leicht unter 100 % wird empfohlen, da während der Coasting-Bewegung der Druck in den Bowden-Röhren abfällt."
  3595. msgctxt "speed_layer_0 description"
  3596. 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."
  3597. msgstr "Die Geschwindigkeit für die erste Schicht. Ein niedrigerer Wert wird empfohlen, um die Haftung auf der Bauplatte zu verbessern. Hat keinen Einfluss auf die Haftstrukturen des Druckbetts selbst, wie Krempe und Raft."
  3598. msgctxt "speed_print_layer_0 description"
  3599. msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate."
  3600. msgstr "Die Druckgeschwindigkeit für die erste Schicht. Ein niedrigerer Wert wird empfohlen, um die Haftung an der Druckplatte zu verbessern."
  3601. msgctxt "speed_travel_layer_0 description"
  3602. 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."
  3603. msgstr "Die Bewegungsgeschwindigkeit für die erste Schicht. Ein niedrigerer Wert wird empfohlen, um das Wegziehen zuvor gedruckter Teile von der Druckplatte zu vermeiden. Der Wert dieser Einstellung kann automatisch aus dem Verhältnis zwischen Bewegungsgeschwindigkeit und Druckgeschwindigkeit errechnet werden."
  3604. msgctxt "material_break_temperature description"
  3605. msgid "The temperature at which the filament is broken for a clean break."
  3606. msgstr "Die Temperatur, bei der das Filament für eine saubere Bruchstelle gebrochen wird."
  3607. msgctxt "build_volume_temperature description"
  3608. msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted."
  3609. msgstr "Die Temperatur der Druckumgebung. Beträgt der Wert 0, wird die Druckraumtemperatur nicht angepasst."
  3610. msgctxt "material_standby_temperature description"
  3611. msgid "The temperature of the nozzle when another nozzle is currently used for printing."
  3612. msgstr "Die Temperatur der Düse, wenn eine andere Düse aktuell für das Drucken verwendet wird."
  3613. msgctxt "material_final_print_temperature description"
  3614. msgid "The temperature to which to already start cooling down just before the end of printing."
  3615. msgstr "Die Temperatur, bei der das Abkühlen bereits beginnen kann, bevor der Druck beendet wird."
  3616. msgctxt "material_print_temperature_layer_0 description"
  3617. msgid "The temperature used for printing the first layer."
  3618. msgstr "Die Temperatur, die für den Druck der ersten Schicht verwendet wird."
  3619. msgctxt "material_print_temperature description"
  3620. msgid "The temperature used for printing."
  3621. msgstr "Die Temperatur, die für das Drucken verwendet wird."
  3622. msgctxt "material_bed_temperature_layer_0 description"
  3623. 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."
  3624. msgstr "Die Temperatur, auf die das Druckbett für die erste Schicht erhitzt wird. Beträgt dieser Wert 0, wird das Druckbett für die erste Schicht nicht beheizt."
  3625. msgctxt "material_bed_temperature description"
  3626. msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated."
  3627. msgstr "Die Temperatur, die für das beheizte Druckbett verwendet wird. Beträgt dieser Wert 0, wird das Bett nicht beheizt."
  3628. msgctxt "material_break_preparation_temperature description"
  3629. msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature."
  3630. msgstr "Die Temperatur, die zum Spülen des Materials verwendet wird, sollte ungefähr der höchstmöglichen Drucktemperatur entsprechen."
  3631. msgctxt "bottom_thickness description"
  3632. msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers."
  3633. msgstr "Die Dicke der unteren Schichten des Drucks. Dieser Wert geteilt durch die Schichtdicke bestimmt die Anzahl der unteren Schichten."
  3634. msgctxt "skin_edge_support_thickness description"
  3635. msgid "The thickness of the extra infill that supports skin edges."
  3636. msgstr "Die Stärke der zusätzlichen Füllung, die die Außenhautkanten stützt."
  3637. msgctxt "support_interface_height description"
  3638. msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top."
  3639. msgstr "Die Dicke der Schnittstelle der Stützstruktur, wo sie das Modell unten und oben berührt."
  3640. msgctxt "support_bottom_height description"
  3641. 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."
  3642. msgstr "Die Dicke der Stützböden. Dies steuert die Anzahl der dichten Schichten, die oben an einem Modell gedruckt werden, auf dem die Stützstruktur aufsitzt."
  3643. msgctxt "support_roof_height description"
  3644. 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."
  3645. msgstr "Die Dicke des Stützdachs. Dies steuert die Menge an dichten Schichten oben an der Stützstruktur, auf der das Modell aufsitzt."
  3646. msgctxt "top_thickness description"
  3647. msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers."
  3648. msgstr "Die Dicke der oberen Schichten des Drucks. Dieser Wert geteilt durch die Schichtdicke bestimmt die Anzahl der oberen Schichten."
  3649. msgctxt "top_bottom_thickness description"
  3650. 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."
  3651. msgstr "Die Dicke der oberen/unteren Schichten des Drucks. Dieser Wert geteilt durch die Schichtdicke bestimmt die Anzahl der oberen/unteren Schichten."
  3652. msgctxt "wall_thickness description"
  3653. msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls."
  3654. msgstr "Die Dicke der Wände in horizontaler Richtung. Dieser Wert geteilt durch die Wandliniendicke bestimmt die Anzahl der Wände."
  3655. msgctxt "infill_sparse_thickness description"
  3656. msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded."
  3657. msgstr "Die Dicke pro Schicht des Füllmaterials. Dieser Wert sollte immer ein Vielfaches der Schichtdicke sein und wird sonst auf- oder abgerundet."
  3658. msgctxt "support_infill_sparse_thickness description"
  3659. msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded."
  3660. msgstr "Die Dicke pro Schicht des Füllmaterials der Stützstruktur. Dieser Wert sollte immer ein Vielfaches der Schichtdicke sein und wird sonst auf- oder abgerundet."
  3661. msgctxt "machine_gcode_flavor description"
  3662. msgid "The type of g-code to be generated."
  3663. msgstr "Der Typ des zu generierenden G-Codes."
  3664. msgctxt "material_type description"
  3665. msgid "The type of material used."
  3666. msgstr "Die Art des verwendeten Materials."
  3667. msgctxt "coasting_volume description"
  3668. msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed."
  3669. msgstr "Die Menge, die anderweitig abgesondert wird. Dieser Wert sollte im Allgemeinen in der Nähe vom Düsendurchmesser hoch drei liegen."
  3670. msgctxt "machine_width description"
  3671. msgid "The width (X-direction) of the printable area."
  3672. msgstr "Die Breite (X-Richtung) des druckbaren Bereichs."
  3673. msgctxt "support_brim_width description"
  3674. 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."
  3675. msgstr "Die Breite des unter der Stützstruktur zu druckenden Brims. Ein größeres Brim erhöht die Haftung am Druckbett, jedoch erhöht sich hierdurch der Materialverbrauch."
  3676. msgctxt "interlocking_beam_width description"
  3677. msgid "The width of the interlocking structure beams."
  3678. msgstr "Die Breite der Balken in der ineinandergreifenden Struktur."
  3679. msgctxt "prime_tower_base_size description"
  3680. msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area."
  3681. msgstr "Die Breite des Prime-Turm-Randes/Basis. Eine größere Basis verbessert die Haftung auf der Bauplatte, verringert jedoch auch den effektiven Druckbereich."
  3682. msgctxt "prime_tower_size description"
  3683. msgid "The width of the prime tower."
  3684. msgstr "Die Breite des Einzugsturms."
  3685. msgctxt "magic_fuzzy_skin_thickness description"
  3686. msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered."
  3687. msgstr "Die Breite der Zitterbewegung. Es wird empfohlen, diese niedriger als der Breite der äußeren Wand einzustellen, da die inneren Wände unverändert bleiben."
  3688. msgctxt "retraction_extrusion_window description"
  3689. 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."
  3690. msgstr "Das Fenster, in dem die maximale Anzahl von Einzügen durchgeführt wird. Dieser Wert sollte etwa der Größe des Einzugsabstands entsprechen, sodass die effektive Häufigkeit, mit der ein Einzug dieselbe Stelle des Materials passiert, begrenzt wird."
  3691. msgctxt "prime_tower_position_x description"
  3692. msgid "The x coordinate of the position of the prime tower."
  3693. msgstr "Die X-Koordinate der Position des Einzugsturms."
  3694. msgctxt "prime_tower_position_y description"
  3695. msgid "The y coordinate of the position of the prime tower."
  3696. msgstr "Die Y-Koordinate der Position des Einzugsturms."
  3697. msgctxt "support_meshes_present description"
  3698. msgid "There are support meshes present in the scene. This setting is controlled by Cura."
  3699. msgstr "Die Szene verfügt über Stütznetze. Diese Einstellung wird von Cura gesteuert."
  3700. msgctxt "bridge_wall_coast description"
  3701. 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."
  3702. msgstr "Damit wird der Abstand für das unmittelbare Coasting des Extruders vor Beginn einer Brückenwand gesteuert. Ein Coasting vor Brückenstart kann den Druck in der Düse reduzieren und eine flachere Brücke produzieren."
  3703. msgctxt "raft_base_smoothing description"
  3704. msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle."
  3705. msgstr "Diese Einstellung steuert, wie stark die Innenecken in der Kontur des Floßbodens abgerundet werden. Die Innenecken werden zu einem Halbkreis mit einem Radius abgerundet, der dem hier angegebenen Wert entspricht. Mit dieser Einstellung werden auch Löcher im Umriss des Floßes entfernt, die kleiner als ein solcher Kreis sind."
  3706. msgctxt "raft_interface_smoothing description"
  3707. msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle."
  3708. msgstr "Diese Einstellung steuert, wie stark die Innenecken in der Floßmitte abgerundet werden. Die Innenecken werden zu einem Halbkreis mit einem Radius abgerundet, der dem hier angegebenen Wert entspricht. Mit dieser Einstellung werden auch Löcher im Floßumriss entfernt, die kleiner als ein solcher Kreis sind."
  3709. msgctxt "raft_smoothing description"
  3710. 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."
  3711. msgstr "Diese Einstellung steuert, wie stark die Innenkanten des Raft-Umrisses gerundet werden. Die Innenkanten werden zu einem Halbkreis mit einem Radius entsprechend des hier definierten Werts gerundet. Diese Einstellung entfernt außerdem Löcher im Raft-Umriss, die kleiner als ein solcher Kreis sind."
  3712. msgctxt "raft_surface_smoothing description"
  3713. msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle."
  3714. msgstr "Mit dieser Einstellung legen Sie fest, wie stark die Innenecken des oberen Umrisses des Floßes abgerundet werden. Die Innenecken werden zu einem Halbkreis mit einem Radius abgerundet, der dem hier angegebenen Wert entspricht. Mit dieser Einstellung werden auch Löcher im Floßumriss entfernt, die kleiner als ein solcher Kreis sind."
  3715. msgctxt "retraction_count_max description"
  3716. 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."
  3717. msgstr "Diese Einstellung limitiert die Anzahl an Einzügen, die innerhalb des Fensters „Minimaler Extrusionsabstand“ auftritt. Weitere Einzüge innerhalb dieses Fensters werden ignoriert. Durch diese Funktion wird vermieden, dass das gleiche Stück Filament wiederholt eingezogen wird, da es in diesem Fall abgeflacht werden oder es zu Schleifen kommen kann."
  3718. msgctxt "draft_shield_enabled description"
  3719. 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."
  3720. msgstr "Es wird rund um das Modell eine Wand erstellt, die (heiße) Luft festhält und vor externen Luftströmen schützt. Dies ist besonders nützlich bei Materialien, die sich leicht verbiegen."
  3721. msgctxt "support_tree_tip_diameter label"
  3722. msgid "Tip Diameter"
  3723. msgstr "Astspitzendurchmesser"
  3724. msgctxt "material_shrinkage_percentage_xy description"
  3725. 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)."
  3726. msgstr "Um die Schrumpfung des Materials beim Abkühlen auszugleichen, wird das Modell mit diesem Faktor in XY-Richtung (horizontal) skaliert."
  3727. msgctxt "material_shrinkage_percentage_z description"
  3728. 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)."
  3729. msgstr "Um die Schrumpfung des Materials beim Abkühlen auszugleichen, wird das Modell mit diesem Faktor in Z-Richtung (vertikal) skaliert."
  3730. msgctxt "material_shrinkage_percentage description"
  3731. msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor."
  3732. msgstr "Um die Schrumpfung des Materials beim Abkühlen zu kompensieren, wird das Modell mit diesem Faktor skaliert."
  3733. msgctxt "top_layers label"
  3734. msgid "Top Layers"
  3735. msgstr "Obere Schichten"
  3736. msgctxt "top_skin_expand_distance label"
  3737. msgid "Top Skin Expand Distance"
  3738. msgstr "Expansionsdistanz Außenhaut oben"
  3739. msgctxt "top_skin_preshrink label"
  3740. msgid "Top Skin Removal Width"
  3741. msgstr "Breite für das Entfernen der Außenhaut oben"
  3742. msgctxt "acceleration_wall_x_roofing label"
  3743. msgid "Top Surface Inner Wall Acceleration"
  3744. msgstr "Beschleunigung der inneren Oberfläche der Wand"
  3745. msgctxt "jerk_wall_x_roofing label"
  3746. msgid "Top Surface Inner Wall Jerk"
  3747. msgstr "Ruck der äußersten Oberflächenwand"
  3748. msgctxt "speed_wall_x_roofing label"
  3749. msgid "Top Surface Inner Wall Speed"
  3750. msgstr "Geschwindigkeit der inneren Oberfläche der Wand"
  3751. msgctxt "wall_x_material_flow_roofing label"
  3752. msgid "Top Surface Inner Wall(s) Flow"
  3753. msgstr "Fluss der inneren Oberflächenwand(en)"
  3754. msgctxt "acceleration_wall_0_roofing label"
  3755. msgid "Top Surface Outer Wall Acceleration"
  3756. msgstr "Beschleunigung der äußeren Oberfläche der Wand"
  3757. msgctxt "wall_0_material_flow_roofing label"
  3758. msgid "Top Surface Outer Wall Flow"
  3759. msgstr "Fluss der äußersten Oberflächenwand"
  3760. msgctxt "jerk_wall_0_roofing label"
  3761. msgid "Top Surface Outer Wall Jerk"
  3762. msgstr "Ruck der inneren Oberflächenwand"
  3763. msgctxt "speed_wall_0_roofing label"
  3764. msgid "Top Surface Outer Wall Speed"
  3765. msgstr "Geschwindigkeit der äußeren Oberfläche der Wand"
  3766. msgctxt "acceleration_roofing label"
  3767. msgid "Top Surface Skin Acceleration"
  3768. msgstr "Beschleunigung Oberfläche Außenhaut"
  3769. msgctxt "roofing_extruder_nr label"
  3770. msgid "Top Surface Skin Extruder"
  3771. msgstr "Oberfläche Außenhaut Extruder"
  3772. msgctxt "roofing_material_flow label"
  3773. msgid "Top Surface Skin Flow"
  3774. msgstr "Fluss Oberfläche Außenhaut"
  3775. msgctxt "jerk_roofing label"
  3776. msgid "Top Surface Skin Jerk"
  3777. msgstr "Justierung der Oberfläche Außenhaut"
  3778. msgctxt "roofing_layer_count label"
  3779. msgid "Top Surface Skin Layers"
  3780. msgstr "Oberfläche Außenhaut Schichten"
  3781. msgctxt "roofing_angles label"
  3782. msgid "Top Surface Skin Line Directions"
  3783. msgstr "Linienrichtungen der Oberfläche Außenhaut"
  3784. msgctxt "roofing_line_width label"
  3785. msgid "Top Surface Skin Line Width"
  3786. msgstr "Oberfläche Außenhaut Linienbreite"
  3787. msgctxt "roofing_pattern label"
  3788. msgid "Top Surface Skin Pattern"
  3789. msgstr "Oberfläche Außenhaut Muster"
  3790. msgctxt "speed_roofing label"
  3791. msgid "Top Surface Skin Speed"
  3792. msgstr "Oberfläche Außenhaut Geschwindigkeit"
  3793. msgctxt "top_thickness label"
  3794. msgid "Top Thickness"
  3795. msgstr "Obere Dicke"
  3796. msgctxt "max_skin_angle_for_expansion description"
  3797. 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."
  3798. msgstr "Die Außenhaut von Ober- und/oder Unterseiten Ihres Objekts, deren Winkel größer als dieser Wert sind, werden nicht expandiert. Dadurch wird vermieden, dass die schmalen Außenhautbereiche, die entstehen, wenn die Modelloberfläche eine nahezu vertikale Neigung aufweist, expandiert werden. Ein Winkel von 0° ist horizontal und führt dazu, dass ein solcher Außenhautbereich nicht expandiert wird; ein Winkel von 90° ist vertikal und führt dazu, dass die gesamte Außenhaut expandiert wird."
  3799. msgctxt "top_bottom description"
  3800. msgid "Top/Bottom"
  3801. msgstr "Oben/Unten"
  3802. msgctxt "top_bottom label"
  3803. msgid "Top/Bottom"
  3804. msgstr "Oben/Unten"
  3805. msgctxt "acceleration_topbottom label"
  3806. msgid "Top/Bottom Acceleration"
  3807. msgstr "Beschleunigung Oben/Unten"
  3808. msgctxt "top_bottom_extruder_nr label"
  3809. msgid "Top/Bottom Extruder"
  3810. msgstr "Extruder Oben/Unten"
  3811. msgctxt "skin_material_flow label"
  3812. msgid "Top/Bottom Flow"
  3813. msgstr "Fluss oben/unten"
  3814. msgctxt "jerk_topbottom label"
  3815. msgid "Top/Bottom Jerk"
  3816. msgstr "Ruckfunktion obere/untere Schicht"
  3817. msgctxt "skin_angles label"
  3818. msgid "Top/Bottom Line Directions"
  3819. msgstr "Richtungen der oberen/unteren Linie"
  3820. msgctxt "skin_line_width label"
  3821. msgid "Top/Bottom Line Width"
  3822. msgstr "Breite der oberen/unteren Linie"
  3823. msgctxt "top_bottom_pattern label"
  3824. msgid "Top/Bottom Pattern"
  3825. msgstr "Unteres/oberes Muster"
  3826. msgctxt "speed_topbottom label"
  3827. msgid "Top/Bottom Speed"
  3828. msgstr "Geschwindigkeit obere/untere Schicht"
  3829. msgctxt "top_bottom_thickness label"
  3830. msgid "Top/Bottom Thickness"
  3831. msgstr "Obere/untere Dicke"
  3832. msgctxt "support_type option buildplate"
  3833. msgid "Touching Buildplate"
  3834. msgstr "Druckbett berühren"
  3835. msgctxt "support_tower_diameter label"
  3836. msgid "Tower Diameter"
  3837. msgstr "Pfeilerdurchmesser"
  3838. msgctxt "support_tower_roof_angle label"
  3839. msgid "Tower Roof Angle"
  3840. msgstr "Winkel des Pfeilerdachs"
  3841. msgctxt "mesh_rotation_matrix description"
  3842. msgid "Transformation matrix to be applied to the model when loading it from file."
  3843. msgstr "Transformationsmatrix, die beim Laden aus der Datei auf das Modell angewandt wird."
  3844. msgctxt "travel label"
  3845. msgid "Travel"
  3846. msgstr "Bewegungen"
  3847. msgctxt "acceleration_travel label"
  3848. msgid "Travel Acceleration"
  3849. msgstr "Beschleunigung Bewegung"
  3850. msgctxt "travel_avoid_distance label"
  3851. msgid "Travel Avoid Distance"
  3852. msgstr "Umgehungsabstand Bewegung"
  3853. msgctxt "jerk_travel label"
  3854. msgid "Travel Jerk"
  3855. msgstr "Ruckfunktion Bewegung"
  3856. msgctxt "speed_travel label"
  3857. msgid "Travel Speed"
  3858. msgstr "Bewegungsgeschwindigkeit"
  3859. msgctxt "magic_mesh_surface_mode description"
  3860. 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."
  3861. msgstr "Behandelt das Modell nur als Oberfläche, Volumen oder Volumen mit losen Oberflächen. Der Normaldruck-Modus druckt nur umschlossene Volumen. „Oberfläche“ druckt eine einzelne Wand und verfolgt die Mesh-Oberfläche ohne Füllung und ohne obere/untere Außenhaut. „Beide“ druckt umschlossene Volumen wie üblich und alle verbleibenden Polygone als Oberflächen."
  3862. msgctxt "support_structure option tree"
  3863. msgid "Tree"
  3864. msgstr "Tree"
  3865. msgctxt "infill_pattern option trihexagon"
  3866. msgid "Tri-Hexagon"
  3867. msgstr "Tri-Hexagon"
  3868. msgctxt "infill_pattern option triangles"
  3869. msgid "Triangles"
  3870. msgstr "Dreiecke"
  3871. msgctxt "support_bottom_pattern option triangles"
  3872. msgid "Triangles"
  3873. msgstr "Dreiecke"
  3874. msgctxt "support_interface_pattern option triangles"
  3875. msgid "Triangles"
  3876. msgstr "Dreiecke"
  3877. msgctxt "support_pattern option triangles"
  3878. msgid "Triangles"
  3879. msgstr "Dreiecke"
  3880. msgctxt "support_roof_pattern option triangles"
  3881. msgid "Triangles"
  3882. msgstr "Dreiecke"
  3883. msgctxt "support_tree_max_diameter label"
  3884. msgid "Trunk Diameter"
  3885. msgstr "Stammdurchmesser"
  3886. msgctxt "machine_gcode_flavor option UltiGCode"
  3887. msgid "Ultimaker 2"
  3888. msgstr "Ultimaker 2"
  3889. msgctxt "meshfix_union_all label"
  3890. msgid "Union Overlapping Volumes"
  3891. msgstr "Überlappende Volumen vereinen"
  3892. msgctxt "bridge_wall_min_length description"
  3893. 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."
  3894. msgstr "Wände ohne Stützstruktur, die kürzer als dieser Wert sind, werden mit normalen Wandeinstellungen gedruckt. Längere Wände ohne Stützstruktur werden mithilfe der Brückenwandeinstellungen gedruckt."
  3895. msgctxt "adaptive_layer_height_enabled label"
  3896. msgid "Use Adaptive Layers"
  3897. msgstr "Anpassschichten verwenden"
  3898. msgctxt "support_use_towers label"
  3899. msgid "Use Towers"
  3900. msgstr "Verwendung von Pfeilern"
  3901. msgctxt "acceleration_travel_enabled description"
  3902. 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."
  3903. msgstr "Verwenden Sie eine separate Beschleunigungsrate für Bewegungen. Wenn diese Option deaktiviert ist, wird für Bewegungen der Beschleunigungswert der gedruckten Linie an der Zielposition verwendet."
  3904. msgctxt "jerk_travel_enabled description"
  3905. 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."
  3906. msgstr "Verwenden Sie eine separate Ruckrate für Bewegungen. Wenn diese Option deaktiviert ist, wird für Bewegungen der Ruckfunktionswert der gedruckten Linie an der Zielposition verwendet."
  3907. msgctxt "relative_extrusion description"
  3908. 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."
  3909. msgstr "Verwenden Sie die relative Extrusion anstelle der absoluten Extrusion. Die Verwendung relativer E-Schritte erleichtert die Nachbearbeitung des G-Code. Diese Option wird jedoch nicht von allen Druckern unterstützt und kann geringfügige Abweichungen bei der Menge des abgesetzten Materials im Vergleich zu absoluten E-Schritten zur Folge haben. Ungeachtet dieser Einstellung wird der Extrusionsmodus stets auf absolut gesetzt, bevor ein G-Code-Skript ausgegeben wird."
  3910. msgctxt "support_use_towers description"
  3911. 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."
  3912. msgstr "Es werden spezielle Pfeiler verwendet, um kleine Überhänge zu stützen. Diese Pfeiler haben einen größeren Durchmesser als der von ihnen gestützte Bereich. In der Nähe des Überhangs verkleinert sich der Durchmesser der Pfeiler, was zur Bildung eines Dachs führt."
  3913. msgctxt "infill_mesh description"
  3914. 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."
  3915. msgstr "Verwenden Sie dieses Mesh, um die Füllung anderer Meshes zu ändern, mit denen es überlappt. Dabei werden Füllungsbereiche anderer Meshes mit Regionen für dieses Mesh ersetzt. Es wird empfohlen, nur eine Wand und keine obere/untere Außenhaut für dieses Mesh zu drucken."
  3916. msgctxt "support_mesh description"
  3917. msgid "Use this mesh to specify support areas. This can be used to generate support structure."
  3918. msgstr "Dieses Netz wird verwendet, um festzulegen, welche Bereiche gestützt werden sollen. Dies kann verwendet werden, um eine Stützstruktur zu errichten."
  3919. msgctxt "anti_overhang_mesh description"
  3920. 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."
  3921. msgstr "Dieses Netz wird verwendet, um festzulegen, welcher Teil des Modells als Überhang erkannt werden soll. Dies kann verwendet werden, um eine unerwünschte Stützstruktur zu entfernen."
  3922. msgctxt "z_seam_type option back"
  3923. msgid "User Specified"
  3924. msgstr "Benutzerdefiniert"
  3925. msgctxt "material_shrinkage_percentage_z label"
  3926. msgid "Vertical Scaling Factor Shrinkage Compensation"
  3927. msgstr "Schrumpfungskompensation für vertikalen Skalierungsfaktor"
  3928. msgctxt "slicing_tolerance description"
  3929. 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."
  3930. msgstr "Vertikale Toleranz der geschnittenen (Slicing) Schichten. Die Konturen einer Schicht werden normalerweise erzeugt, indem ein Querschnitt durch die Mitte der Höhe jeder Schicht (Mitte) vorgenommen wird. Alternativ kann jede Schicht die Bereiche aufweisen, die über die gesamte Dicke der Schicht (Exklusiv) in das Volumen fallen, oder eine Schicht weist die Bereiche auf, die innerhalb der Schicht (Inklusiv) irgendwo hineinfallen. Inklusiv ermöglicht die meisten Details, Exklusiv die beste Passform und Mitte entspricht der ursprünglichen Fläche am ehesten."
  3931. msgctxt "material_bed_temp_wait label"
  3932. msgid "Wait for Build Plate Heatup"
  3933. msgstr "Warten auf Aufheizen der Druckplatte"
  3934. msgctxt "material_print_temp_wait label"
  3935. msgid "Wait for Nozzle Heatup"
  3936. msgstr "Warten auf Aufheizen der Düse"
  3937. msgctxt "acceleration_wall label"
  3938. msgid "Wall Acceleration"
  3939. msgstr "Beschleunigung Wand"
  3940. msgctxt "wall_distribution_count label"
  3941. msgid "Wall Distribution Count"
  3942. msgstr "Anzahl verteilter Wände"
  3943. msgctxt "wall_extruder_nr label"
  3944. msgid "Wall Extruder"
  3945. msgstr "Extruder für Wand"
  3946. msgctxt "wall_material_flow label"
  3947. msgid "Wall Flow"
  3948. msgstr "Wandfluss"
  3949. msgctxt "jerk_wall label"
  3950. msgid "Wall Jerk"
  3951. msgstr "Ruckfunktion Wand"
  3952. msgctxt "wall_line_count label"
  3953. msgid "Wall Line Count"
  3954. msgstr "Anzahl der Wandlinien"
  3955. msgctxt "wall_line_width label"
  3956. msgid "Wall Line Width"
  3957. msgstr "Breite der Wandlinien"
  3958. msgctxt "inset_direction label"
  3959. msgid "Wall Ordering"
  3960. msgstr "Wandreihenfolge"
  3961. msgctxt "speed_wall label"
  3962. msgid "Wall Speed"
  3963. msgstr "Wandgeschwindigkeit"
  3964. msgctxt "wall_thickness label"
  3965. msgid "Wall Thickness"
  3966. msgstr "Wanddicke"
  3967. msgctxt "wall_transition_length label"
  3968. msgid "Wall Transition Length"
  3969. msgstr "Wandübergangslänge"
  3970. msgctxt "wall_transition_filter_distance label"
  3971. msgid "Wall Transitioning Filter Distance"
  3972. msgstr "Wandübergangsfilter Abstand"
  3973. msgctxt "wall_transition_filter_deviation label"
  3974. msgid "Wall Transitioning Filter Margin"
  3975. msgstr "Wandübergangsfilter Rand"
  3976. msgctxt "wall_transition_angle label"
  3977. msgid "Wall Transitioning Threshold Angle"
  3978. msgstr "Schwellenwinkel für Wandübergang"
  3979. msgctxt "shell label"
  3980. msgid "Walls"
  3981. msgstr "Wände"
  3982. msgctxt "wall_overhang_angle description"
  3983. 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."
  3984. msgstr "Wände, die über diesen Winkel hinaus hängen, werden mithilfe der Einstellungen für Winkel für überhängende Wände gedruckt. Wenn der Wert 90 beträgt, werden keine Wände als überhängend behandelt. Überhänge, die von Stützstrukturen gestützt werden, werden ebenfalls nicht als Überhang behandelt."
  3985. msgctxt "meshfix_fluid_motion_enabled description"
  3986. 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."
  3987. msgstr "Wenn diese Option aktiviert ist, werden die Werkzeugpfade für Drucker mit Planern für fließende Bewegungen korrigiert. Kleine Bewegungen, die von der allgemeinen Werkzeugpfadrichtung abweichen, werden geglättet, um Fließbewegungen zu verbessern."
  3988. msgctxt "infill_enable_travel_optimization description"
  3989. 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."
  3990. msgstr "Bei Aktivierung wird die Reihenfolge, in der die Fülllinien gedruckt werden, optimiert, um die gefahrene Distanz zu reduzieren. Diese erzielte Reduzierung der Bewegung ist sehr stark von dem zu slicenden Modell, dem Füllmuster, der Dichte usw. abhängig. Beachten Sie, dass die Dauer für das Slicen bei einigen Modellen mit vielen kleinen Füllbereichen erheblich länger ausfallen kann."
  3991. msgctxt "support_fan_enable description"
  3992. msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support."
  3993. msgstr "Bei Aktivierung wird die Lüfterdrehzahl für die Druckkühlung für die Außenhautbereiche direkt über der Stützstruktur geändert."
  3994. msgctxt "z_seam_relative description"
  3995. 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."
  3996. msgstr "Bei Aktivierung sind die Z-Naht-Koordinaten relativ zur Mitte der jeweiligen Teile. Bei Deaktivierung definieren die Koordinaten eine absolute Position auf dem Druckbett."
  3997. msgctxt "retraction_combing_max_distance description"
  3998. 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."
  3999. msgstr "Bei Werten größer als Null verwenden die Combing-Fahrbewegungen, die weiter als über diese Distanz erfolgen, die Einzugsfunktion. Beim Wert Null gibt es keine Maximalstellung, und die Combing-Fahrbewegungen verwenden die Einzugsfunktion nicht."
  4000. msgctxt "hole_xy_offset_max_diameter description"
  4001. 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."
  4002. msgstr "Bei Werten größer als Null wird die Horizontalloch-Erweiterung schrittweise auf kleine Löcher angewendet (kleine Löcher werden stärker erweitert). Beim Wert Null wird die Horizontalloch-Erweiterung auf alle Löcher angewendet. Löcher, die größer als der maximale Durchmesser der Horizontalloch-Erweiterung sind, werden nicht erweitert."
  4003. msgctxt "hole_xy_offset description"
  4004. 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."
  4005. msgstr "Bei einem Wert größer als Null ist die Horizontalloch-Erweiterung der Versatz, der auf alle Löcher in jeder Schicht angewendet wird. Positive Werte vergrößern die Löcher, negative Werte verringern die Lochgröße. Wenn diese Einstellung aktiviert ist, kann sie mit „Maximaler Durchmesser der Horizontalloch-Erweiterung“ weiter angepasst werden."
  4006. msgctxt "bridge_skin_material_flow description"
  4007. msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
  4008. msgstr "Die extrudierte Materialmenge beim Drucken von Brücken-Außenhautbereichen wird mit diesem Wert multipliziert."
  4009. msgctxt "bridge_wall_material_flow description"
  4010. msgid "When printing bridge walls, the amount of material extruded is multiplied by this value."
  4011. msgstr "Die extrudierte Materialmenge beim Drucken von Brückenwänden wird mit diesem Wert multipliziert."
  4012. msgctxt "bridge_skin_material_flow_2 description"
  4013. msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value."
  4014. msgstr "Die extrudierte Materialmenge beim Drucken der zweiten Brücken-Außenhautschicht wird mit diesem Wert multipliziert."
  4015. msgctxt "bridge_skin_material_flow_3 description"
  4016. msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value."
  4017. msgstr "Die extrudierte Materialmenge beim Drucken der dritten Brücken-Außenhautschicht wird mit diesem Wert multipliziert."
  4018. msgctxt "cool_lift_head description"
  4019. 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."
  4020. msgstr "Wenn die Mindestgeschwindigkeit aufgrund der Mindestzeit für Schicht erreicht wird, wird der Druckkopf vom Druck angehoben und die zusätzliche Zeit, bis die Mindestzeit für Schicht erreicht ist, gewartet."
  4021. msgctxt "skin_no_small_gaps_heuristic description"
  4022. 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."
  4023. msgstr "Wenn das Modell kleine, nur wenige Schichten hohe vertikale Lücken aufweist, sind diese normalerweise von einer Außenhaut bedeckt. Aktivieren Sie diese Einstellung, damit bei sehr kleinen Lücken keine Außenhaut gedruckt wird. Dies verkürzt die zum Drucken und Slicen benötigte Zeit, aber die Füllung bleibt der Luft ausgesetzt."
  4024. msgctxt "wall_transition_angle description"
  4025. 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."
  4026. msgstr "Legt fest, ab welchem Winkel Übergänge zwischen einer geraden und einer ungeraden Anzahl von Wänden erstellt werden. Eine Keilform mit einem größeren Winkel als in dieser Einstellung erhält keine Übergänge und es werden keine Wände in der Mitte gedruckt, um den verbleibenden Raum zu füllen. Wenn diese Einstellung verringert wird, reduziert dies die Anzahl und Länge dieser Mittelwände, kann jedoch Lücken oder zu starke Extrudierungen hinterlassen."
  4027. msgctxt "wall_transition_length description"
  4028. 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."
  4029. msgstr "Wenn beim Übergang zwischen verschiedenen Wänden das Teil dünner wird, wird ein bestimmter Raum zugewiesen, in dem sich die Wandlinien teilen bzw. verbinden."
  4030. msgctxt "wipe_hop_enable description"
  4031. 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."
  4032. msgstr "Beim Abwischen wird das Druckbett gesenkt, um einen Abstand zwischen Düse und Druck herzustellen. Das verhindert, dass die Düse während der Bewegungen den Druckkörper trifft und verringert die Möglichkeit, dass der Druck vom Druckbett heruntergestoßen wird."
  4033. msgctxt "retraction_hop_enabled description"
  4034. 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."
  4035. msgstr "Nach dem Einzug wird das Druckbett gesenkt, um einen Abstand zwischen Düse und Druck herzustellen. Das verhindert, dass die Düse den Druck während der Bewegungen anschlägt und verringert die Möglichkeit, dass der Druck vom Druckbett heruntergestoßen wird."
  4036. msgctxt "support_xy_overrides_z description"
  4037. 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."
  4038. msgstr "Definiert, ob die X/Y-Distanz der Stützstruktur die Z-Distanz der Stützstruktur aufhebt oder umgekehrt. Wenn X/Y Z aufhebt, kann die X/Y-Distanz die Stützstruktur vom Modell wegschieben und damit die tatsächliche Z-Distanz zum Überhang beeinflussen. Diese Einstellung kann deaktiviert werden, indem die X/Y-Distanz um die Überhänge nicht angewendet wird."
  4039. msgctxt "machine_center_is_zero description"
  4040. msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area."
  4041. msgstr "Definiert, ob die X/Y-Koordinaten der Nullposition des Druckers in der Mitte des druckbaren Bereichs stehen."
  4042. msgctxt "machine_endstop_positive_direction_x description"
  4043. msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)."
  4044. msgstr "Definiert, ob der Endanschlag der X-Achse in positiver Richtung (hohe X-Koordinate) oder negativer Richtung (niedrige X-Koordinate) liegt."
  4045. msgctxt "machine_endstop_positive_direction_y description"
  4046. msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)."
  4047. msgstr "Definiert, ob der Endanschlag der Y-Achse in positiver Richtung (hohe Y-Koordinate) oder negativer Richtung (niedrige Y-Koordinate) liegt."
  4048. msgctxt "machine_endstop_positive_direction_z description"
  4049. msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)."
  4050. msgstr "Definiert, ob der Endanschlag der Z-Achse in positiver Richtung (hohe Z-Koordinate) oder negativer Richtung (niedrige Z-Koordinate) liegt."
  4051. msgctxt "machine_extruders_share_heater description"
  4052. msgid "Whether the extruders share a single heater rather than each extruder having its own heater."
  4053. msgstr "Gibt an, ob die Extruder sich ein Heizelement teilen oder jeweils über ein eigenes verfügen."
  4054. msgctxt "machine_extruders_share_nozzle description"
  4055. 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."
  4056. msgstr "Gibt an, ob die Extruder gemeinsam eine Düse nutzen oder jeweils über eine eigene verfügen. In der Einstellung „true“ ist zu erwarten, dass das GCode-Skript „printer-start“ alle Extruder ordnungsgemäß in einem bekannten und untereinander kompatiblen Anfangszustand anordnet (Rückzugstellung; entweder Null oder mit einem nicht zurückgezogenen Filament); in diesem Fall wird die anfängliche Rückzugstellung für jeden Extruder durch den Parameter „machine_extruders_shared_nozzle_initial_retraction“ beschrieben."
  4057. msgctxt "machine_heated_bed description"
  4058. msgid "Whether the machine has a heated build plate present."
  4059. msgstr "Option für vorhandene beheizte Druckplatte."
  4060. msgctxt "machine_heated_build_volume description"
  4061. msgid "Whether the machine is able to stabilize the build volume temperature."
  4062. msgstr "Zeigt an, ob das Gerät die Temperatur im Druckraum stabilisieren kann."
  4063. msgctxt "center_object description"
  4064. 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."
  4065. msgstr "Ermöglicht das Zentrieren des Objekts in der Mitte eines Druckbetts (0,0) anstelle der Verwendung eines Koordinatensystems, in dem das Objekt gespeichert war."
  4066. msgctxt "machine_nozzle_temp_enabled description"
  4067. msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura."
  4068. msgstr "Für die Temperatursteuerung von Cura. Schalten Sie diese Funktion aus, um die Düsentemperatur außerhalb von Cura zu steuern."
  4069. msgctxt "material_bed_temp_prepend description"
  4070. 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."
  4071. msgstr "Option zum Einfügen von Befehlen für die Druckplattentemperatur am Start des Gcodes. Wenn der start_gcode bereits Befehle für die Druckplattentemperatur enthält, deaktiviert das Cura Programm diese Einstellung automatisch."
  4072. msgctxt "material_print_temp_prepend description"
  4073. 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."
  4074. msgstr "Option zum Einfügen von Befehlen für die Düsentemperatur am Start des Gcodes. Wenn der start_gcode bereits Befehle für die Düsentemperatur enthält, deaktiviert das Cura Programm diese Einstellung automatisch."
  4075. msgctxt "clean_between_layers description"
  4076. 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."
  4077. msgstr "Option für das Einfügen eines G-Codes für das Abwischen der Düse zwischen den Schichten (max. einer pro Schicht). Die Aktivierung dieser Einstellung könnte das Einzugsverhalten beim Schichtenwechsel beeinflussen. Verwenden Sie bitte die Einstellungen für Abwischen bei Einzug, um das Einziehen bei Schichten zu steuern, bei denen das Skript für das Abwischen aktiv wird."
  4078. msgctxt "material_bed_temp_wait description"
  4079. msgid "Whether to insert a command to wait until the build plate temperature is reached at the start."
  4080. msgstr "Option zur Eingabe eines Befehls beim Start, um zu warten, bis die Druckplattentemperatur erreicht wurde."
  4081. msgctxt "prime_blob_enable description"
  4082. 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."
  4083. msgstr "Diese Funktion legt fest, ob das Filament vor dem Drucken mit einem Tropfen eingezogen wird. Wenn diese Funktion aktiviert ist, stellt der Extruder vor dem Drucken an der Düse Material bereit. Der Brim- oder Skirt-Druck kann ebenfalls als Einzug wirken; in diesem Fall kann das Ausschalten dieser Funktion Zeit einsparen."
  4084. msgctxt "print_sequence description"
  4085. 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."
  4086. msgstr "Es wird festgelegt, ob eine Schicht für alle Modelle gleichzeitig gedruckt werden soll oder ob zuerst ein Modell fertig gedruckt wird, bevor der Druck eines weiteren begonnen wird. Der „Nacheinandermodus“ ist möglich, wenn a) nur ein Extruder aktiviert ist und b) alle Modelle voneinander getrennt sind, sodass sich der gesamte Druckkopf zwischen allen Modellen bewegen kann und alle Modelle niedriger sind als der Abstand zwischen der Düse und den X/Y-Achsen."
  4087. msgctxt "machine_show_variants description"
  4088. msgid "Whether to show the different variants of this machine, which are described in separate json files."
  4089. msgstr "Zeigt optional die verschiedenen Varianten dieses Geräts an, die in separaten json-Dateien beschrieben werden."
  4090. msgctxt "machine_firmware_retract description"
  4091. msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material."
  4092. msgstr "Definiert, ob Firmware-Einzugsbefehle (G10/G11) anstelle der E-Eigenschaft in G1-Befehlen verwendet wird, um das Material einzuziehen."
  4093. msgctxt "material_print_temp_wait description"
  4094. msgid "Whether to wait until the nozzle temperature is reached at the start."
  4095. msgstr "Option zur Eingabe eines Befehls beim Start, um zu warten, bis die Düsentemperatur erreicht wurde."
  4096. msgctxt "infill_line_width description"
  4097. msgid "Width of a single infill line."
  4098. msgstr "Die Breite einer einzelnen Fülllinie."
  4099. msgctxt "support_interface_line_width description"
  4100. msgid "Width of a single line of support roof or floor."
  4101. msgstr "Die Breite einer einzelnen Stützdach- oder Bodenlinie."
  4102. msgctxt "roofing_line_width description"
  4103. msgid "Width of a single line of the areas at the top of the print."
  4104. msgstr "Die Breite einer einzelnen Linie der oberen Druckbereiche."
  4105. msgctxt "line_width description"
  4106. 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."
  4107. msgstr "Die Breite einer einzelnen Linie. Generell sollte die Breite jeder Linie der Breite der Düse entsprechen. Eine leichte Reduzierung dieses Werts kann jedoch zu besseren Drucken führen."
  4108. msgctxt "prime_tower_line_width description"
  4109. msgid "Width of a single prime tower line."
  4110. msgstr "Die Linienbreite eines einzelnen Einzugsturms."
  4111. msgctxt "skirt_brim_line_width description"
  4112. msgid "Width of a single skirt or brim line."
  4113. msgstr "Die Breite einer einzelnen Skirt- oder Brim-Linie."
  4114. msgctxt "support_bottom_line_width description"
  4115. msgid "Width of a single support floor line."
  4116. msgstr "Die Breite einer Linienbreite eines einzelnen Bodens."
  4117. msgctxt "support_roof_line_width description"
  4118. msgid "Width of a single support roof line."
  4119. msgstr "Die Breite einer einzelnen Stützdachlinie."
  4120. msgctxt "support_line_width description"
  4121. msgid "Width of a single support structure line."
  4122. msgstr "Die Breite einer einzelnen Stützstrukturlinie."
  4123. msgctxt "skin_line_width description"
  4124. msgid "Width of a single top/bottom line."
  4125. msgstr "Die Breite einer einzelnen oberen/unteren Linie."
  4126. msgctxt "wall_line_width_x description"
  4127. msgid "Width of a single wall line for all wall lines except the outermost one."
  4128. msgstr "Die Breite einer einzelnen Wandlinie für alle Wandlinien, außer der äußersten."
  4129. msgctxt "wall_line_width description"
  4130. msgid "Width of a single wall line."
  4131. msgstr "Die Breite einer einzelnen Wandlinie."
  4132. msgctxt "raft_base_line_width description"
  4133. msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion."
  4134. msgstr "Die Breite der Linien in der Raft-Basisschicht. Dabei sollte es sich um dicke Linien handeln, da diese besser an der Druckplatte haften."
  4135. msgctxt "raft_interface_line_width description"
  4136. 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."
  4137. msgstr "Die Breite der Linien im Raft-Mittelbereich. Wenn die zweite Schicht mehr extrudiert, haften die Linien besser an der Druckplatte."
  4138. msgctxt "raft_surface_line_width description"
  4139. 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."
  4140. msgstr "Die Breite der Linien in der Raft-Oberfläche. Dünne Linien sorgen dafür, dass die Raft-Oberfläche glatter wird."
  4141. msgctxt "wall_line_width_0 description"
  4142. msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed."
  4143. msgstr "Die Breite der äußersten Wandlinie. Indem dieser Wert reduziert wird, können höhere Detaillierungsgrade erreicht werden."
  4144. msgctxt "min_bead_width description"
  4145. 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."
  4146. msgstr "Breite der Wand, die dünne Merkmale (entsprechend der Mindest-Merkmalgröße) des Modells ersetzen wird. Wenn die Mindeststärke der Wandlinie dünner ist als die Stärke des Merkmals, wird die Wand so dick wie das Merkmal selbst."
  4147. msgctxt "wipe_brush_pos_x label"
  4148. msgid "Wipe Brush X Position"
  4149. msgstr "X-Position für Bürste - Abwischen"
  4150. msgctxt "wipe_hop_speed label"
  4151. msgid "Wipe Hop Speed"
  4152. msgstr "Sprunghöhe - Abwischen"
  4153. msgctxt "prime_tower_wipe_enabled label"
  4154. msgid "Wipe Inactive Nozzle on Prime Tower"
  4155. msgstr "Wipe-Düse am Einzugsturm inaktiv"
  4156. msgctxt "wipe_move_distance label"
  4157. msgid "Wipe Move Distance"
  4158. msgstr "Abstand Wischbewegung"
  4159. msgctxt "clean_between_layers label"
  4160. msgid "Wipe Nozzle Between Layers"
  4161. msgstr "Düse zwischen den Schichten abwischen"
  4162. msgctxt "wipe_pause label"
  4163. msgid "Wipe Pause"
  4164. msgstr "Abwischen pausieren"
  4165. msgctxt "wipe_repeat_count label"
  4166. msgid "Wipe Repeat Count"
  4167. msgstr "Wiederholungszähler - Abwischen"
  4168. msgctxt "wipe_retraction_amount label"
  4169. msgid "Wipe Retraction Distance"
  4170. msgstr "Einzugsabstand für Abwischen"
  4171. msgctxt "wipe_retraction_enable label"
  4172. msgid "Wipe Retraction Enable"
  4173. msgstr "Abwischen bei Einzug aktivieren"
  4174. msgctxt "wipe_retraction_extra_prime_amount label"
  4175. msgid "Wipe Retraction Extra Prime Amount"
  4176. msgstr "Zusätzliche Zurückschiebemenge nach Einzug für Abwischen"
  4177. msgctxt "wipe_retraction_prime_speed label"
  4178. msgid "Wipe Retraction Prime Speed"
  4179. msgstr "Vorbereitungszeit für Abwischen beim Einzug"
  4180. msgctxt "wipe_retraction_retract_speed label"
  4181. msgid "Wipe Retraction Retract Speed"
  4182. msgstr "Einzugsgeschwindigkeit (Einzug) für Abwischen"
  4183. msgctxt "wipe_retraction_speed label"
  4184. msgid "Wipe Retraction Speed"
  4185. msgstr "Einzugsgeschwindigkeit für Abwischen"
  4186. msgctxt "wipe_hop_enable label"
  4187. msgid "Wipe Z Hop"
  4188. msgstr "Z-Sprung beim Abwischen"
  4189. msgctxt "wipe_hop_amount label"
  4190. msgid "Wipe Z Hop Height"
  4191. msgstr "Z-Sprung Höhe - Abwischen"
  4192. msgctxt "retraction_combing option infill"
  4193. msgid "Within Infill"
  4194. msgstr "Innerhalb der Füllung"
  4195. msgctxt "machine_always_write_active_tool description"
  4196. 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."
  4197. msgstr "Mit aktivem Werkzeug schreiben, nach dem temporäre Befehle an das inaktive Werkzeug übermittelt wurden. Erforderlich für Dual-Extruder-Druck mit Smoothie oder anderer Firmware mit modalen Werkzeugbefehlen."
  4198. msgctxt "machine_endstop_positive_direction_x label"
  4199. msgid "X Endstop in Positive Direction"
  4200. msgstr "X-Endanschlag in positiver Richtung"
  4201. msgctxt "wipe_brush_pos_x description"
  4202. msgid "X location where wipe script will start."
  4203. msgstr "X-Position, an der das Skript für Abwischen startet."
  4204. msgctxt "support_xy_overrides_z option xy_overrides_z"
  4205. msgid "X/Y overrides Z"
  4206. msgstr "X/Y hebt Z auf"
  4207. msgctxt "machine_endstop_positive_direction_y label"
  4208. msgid "Y Endstop in Positive Direction"
  4209. msgstr "Y-Endanschlag in positiver Richtung"
  4210. msgctxt "machine_endstop_positive_direction_z label"
  4211. msgid "Z Endstop in Positive Direction"
  4212. msgstr "Z-Endanschlag in positiver Richtung"
  4213. msgctxt "retraction_hop_after_extruder_switch label"
  4214. msgid "Z Hop After Extruder Switch"
  4215. msgstr "Z-Sprung nach Extruder-Wechsel"
  4216. msgctxt "retraction_hop_after_extruder_switch_height label"
  4217. msgid "Z Hop After Extruder Switch Height"
  4218. msgstr "Z-Sprung Höhe nach Extruder-Wechsel"
  4219. msgctxt "retraction_hop label"
  4220. msgid "Z Hop Height"
  4221. msgstr "Z-Sprung Höhe"
  4222. msgctxt "retraction_hop_only_when_collides label"
  4223. msgid "Z Hop Only Over Printed Parts"
  4224. msgstr "Z-Sprung nur über gedruckten Teilen"
  4225. msgctxt "speed_z_hop label"
  4226. msgid "Z Hop Speed"
  4227. msgstr "Sprunghöhe Z"
  4228. msgctxt "retraction_hop_enabled label"
  4229. msgid "Z Hop When Retracted"
  4230. msgstr "Z-Sprung beim Einziehen"
  4231. msgctxt "z_seam_type label"
  4232. msgid "Z Seam Alignment"
  4233. msgstr "Justierung der Z-Naht"
  4234. msgctxt "z_seam_position label"
  4235. msgid "Z Seam Position"
  4236. msgstr "Position der Z-Naht"
  4237. msgctxt "z_seam_relative label"
  4238. msgid "Z Seam Relative"
  4239. msgstr "Realitvwert der Z-Naht"
  4240. msgctxt "z_seam_x label"
  4241. msgid "Z Seam X"
  4242. msgstr "Z-Naht X"
  4243. msgctxt "z_seam_y label"
  4244. msgid "Z Seam Y"
  4245. msgstr "Z-Naht Y"
  4246. msgctxt "support_xy_overrides_z option z_overrides_xy"
  4247. msgid "Z overrides X/Y"
  4248. msgstr "Z hebt X/Y auf"
  4249. msgctxt "infill_pattern option zigzag"
  4250. msgid "Zig Zag"
  4251. msgstr "Zickzack"
  4252. msgctxt "ironing_pattern option zigzag"
  4253. msgid "Zig Zag"
  4254. msgstr "Zickzack"
  4255. msgctxt "roofing_pattern option zigzag"
  4256. msgid "Zig Zag"
  4257. msgstr "Zickzack"
  4258. msgctxt "support_bottom_pattern option zigzag"
  4259. msgid "Zig Zag"
  4260. msgstr "Zickzack"
  4261. msgctxt "support_interface_pattern option zigzag"
  4262. msgid "Zig Zag"
  4263. msgstr "Zickzack"
  4264. msgctxt "support_pattern option zigzag"
  4265. msgid "Zig Zag"
  4266. msgstr "Zickzack"
  4267. msgctxt "support_roof_pattern option zigzag"
  4268. msgid "Zig Zag"
  4269. msgstr "Zickzack"
  4270. msgctxt "top_bottom_pattern option zigzag"
  4271. msgid "Zig Zag"
  4272. msgstr "Zickzack"
  4273. msgctxt "top_bottom_pattern_0 option zigzag"
  4274. msgid "Zig Zag"
  4275. msgstr "Zickzack"
  4276. msgctxt "travel description"
  4277. msgid "travel"
  4278. msgstr "Bewegungen"
  4279. msgctxt "cool_during_extruder_switch description"
  4280. msgid "<html>Whether to activate the cooling fans during a nozzle switch. This can help reducing oozing by cooling the nozzle faster:<ul><li><b>Unchanged:</b> keep the fans as they were previously</li><li><b>Only last extruder:</b> turn on the fan of the last used extruder, but turn the others off (if any). This is useful if you have completely separate extruders.</li><li><b>All fans:</b> turn on all fans during nozzle switch. This is useful if you have a single cooling fan, or multiple fans that stay close to each other.</li></ul></html>"
  4281. msgstr "<html>Ob die Kühlventilatoren während eines Düsenwechsels aktiviert werden sollen. Dies kann helfen, das Auslaufen zu reduzieren, indem die Düse schneller gekühlt wird:<ul><li><b>Unverändert:</b> Lassen Sie die Ventilatoren wie zuvor</li><li><b>Nur letzter Extruder:</b> Schalten Sie den Ventilator des zuletzt verwendeten Extruders ein, aber die anderen aus (falls vorhanden). Dies ist nützlich, wenn Sie völlig separate Extruder haben.</li><li><b>Alle Ventilatoren:</b> Schalten Sie alle Ventilatoren während des Düsenwechsels ein. Dies ist nützlich, wenn Sie einen einzelnen Kühllüfter oder mehrere Lüfter haben, die nahe beieinander stehen.</li></ul></html>"
  4282. msgctxt "cool_during_extruder_switch option all_fans"
  4283. msgid "All fans"
  4284. msgstr "Alle Lüfter"
  4285. msgctxt "cool_during_extruder_switch label"
  4286. msgid "Cooling during extruder switch"
  4287. msgstr "Kühlung während des Extruderwechsels"
  4288. msgctxt "support_z_seam_away_from_model description"
  4289. msgid "Manage the spatial relationship between the z seam of the support structure and the actual 3D model. This control is crucial as it allows users to ensure the seamless removal of support structures post-printing, without inflicting damage or leaving marks on the printed model."
  4290. msgstr "Verwalten Sie die räumliche Beziehung zwischen der Z-Naht der Stützstruktur und dem eigentlichen 3D-Modell. Diese Steuerung ist entscheidend, da sie es Benutzern ermöglicht, die nahtlose Entfernung von Stützstrukturen nach dem Drucken sicherzustellen, ohne Schäden zu verursachen oder Spuren auf dem gedruckten Modell zu hinterlassen."
  4291. msgctxt "support_z_seam_min_distance label"
  4292. msgid "Min Z Seam Distance from Model"
  4293. msgstr "Min. Z-Naht-Abstand vom Modell"
  4294. msgctxt "support_infill_density_multiplier_initial_layer description"
  4295. msgid "Multiplier for the infill on the initial layers of the support. Increasing this may help for bed adhesion."
  4296. msgstr "Multiplikator für die Füllung der ersten Schichten der Stütze. Eine Erhöhung dieses Wertes kann die Haftung des Bettes verbessern."
  4297. msgctxt "cool_during_extruder_switch option only_last_extruder"
  4298. msgid "Only last extruder"
  4299. msgstr "Nur letzter Extruder"
  4300. msgctxt "z_seam_on_vertex description"
  4301. msgid "Place the z-seam on a polygon vertex. Switching this off can place the seam between vertices as well. (Keep in mind that this won't override the restrictions on placing the seam on an unsupported overhang.)"
  4302. msgstr "Platzieren Sie die Z-Naht auf einem Polygonscheitelpunkt. Wenn Sie dies ausschalten, können Sie die Naht auch zwischen Scheitelpunkten platzieren. (Beachten Sie, dass dies nicht die Beschränkungen für die Platzierung der Naht auf einem nicht unterstützten Überhang aufhebt)."
  4303. msgctxt "prime_tower_min_shell_thickness label"
  4304. msgid "Prime Tower Minimum Shell Thickness"
  4305. msgstr "Mindeststärke der Schale des Prime Tower"
  4306. msgctxt "raft_base_flow label"
  4307. msgid "Raft Base Flow"
  4308. msgstr "Raft-Basisfluss"
  4309. msgctxt "raft_base_infill_overlap_mm label"
  4310. msgid "Raft Base Infill Overlap"
  4311. msgstr "Raft-Basis-Füllüberlappung"
  4312. msgctxt "raft_base_infill_overlap label"
  4313. msgid "Raft Base Infill Overlap Percentage"
  4314. msgstr "Raft-Basis-Füllüberlappungsprozentsatz"
  4315. msgctxt "raft_flow label"
  4316. msgid "Raft Flow"
  4317. msgstr "Raft-Fluss"
  4318. msgctxt "raft_interface_flow label"
  4319. msgid "Raft Interface Flow"
  4320. msgstr "Raft-Schnittstellenfluss"
  4321. msgctxt "raft_interface_infill_overlap_mm label"
  4322. msgid "Raft Interface Infill Overlap"
  4323. msgstr "Raft-Schnittstellen-Füllüberlappung"
  4324. msgctxt "raft_interface_infill_overlap label"
  4325. msgid "Raft Interface Infill Overlap Percentage"
  4326. msgstr "Raft-Schnittstellen-Füllüberlappungsprozentsatz"
  4327. msgctxt "raft_interface_z_offset label"
  4328. msgid "Raft Interface Z Offset"
  4329. msgstr "Raft-Schnittstellen-Z-Versatz"
  4330. msgctxt "raft_surface_flow label"
  4331. msgid "Raft Surface Flow"
  4332. msgstr "Raft-Oberflächenfluss"
  4333. msgctxt "raft_surface_infill_overlap_mm label"
  4334. msgid "Raft Surface Infill Overlap"
  4335. msgstr "Raft-Oberflächen-Füllüberlappung"
  4336. msgctxt "raft_surface_infill_overlap label"
  4337. msgid "Raft Surface Infill Overlap Percentage"
  4338. msgstr "Raft-Oberflächen-Füllüberlappungsprozentsatz"
  4339. msgctxt "raft_surface_z_offset label"
  4340. msgid "Raft Surface Z Offset"
  4341. msgstr "Raft-Oberflächen-Z-Versatz"
  4342. msgctxt "seam_overhang_angle label"
  4343. msgid "Seam Overhanging Wall Angle"
  4344. msgstr "Winkel überhängender Nahtwand"
  4345. msgctxt "support_infill_density_multiplier_initial_layer label"
  4346. msgid "Support Infill Density Multiplier Initial Layer"
  4347. msgstr "Stützen-Fülldichtemultiplikator-Anfangsschicht"
  4348. msgctxt "support_z_seam_away_from_model label"
  4349. msgid "Support Z Seam Away from Model"
  4350. msgstr "Stützen-Z-Naht vom Modell weg"
  4351. msgctxt "raft_base_flow description"
  4352. msgid "The amount of material, relative to a normal extrusion line, to extrude during raft base printing. Having an increased flow may improve adhesion and raft structural strength."
  4353. msgstr "Die Materialmenge, die im Vergleich zu einer normalen Extrusionslinie während des Drucks der Raftbasis extrudiert wird. Ein erhöhter Durchfluss kann die Haftung und die strukturelle Festigkeit des Rafts verbessern."
  4354. msgctxt "raft_interface_flow description"
  4355. msgid "The amount of material, relative to a normal extrusion line, to extrude during raft interface printing. Having an increased flow may improve adhesion and raft structural strength."
  4356. msgstr "Die Materialmenge, die im Vergleich zu einer normalen Extrusionslinie während des Drucks der Raft-Oberfläche extrudiert wird. Ein erhöhter Durchfluss kann die Haftung und die strukturelle Festigkeit des Rafts verbessern."
  4357. msgctxt "raft_flow description"
  4358. msgid "The amount of material, relative to a normal extrusion line, to extrude during raft printing. Having an increased flow may improve adhesion and raft structural strength."
  4359. msgstr "Die Materialmenge, die im Vergleich zu einer normalen Extrusionslinie beim Bedrucken des Rafts extrudiert wird. Ein erhöhter Durchfluss kann die Haftung und die strukturelle Festigkeit des Rafts verbessern."
  4360. msgctxt "raft_surface_flow description"
  4361. msgid "The amount of material, relative to a normal extrusion line, to extrude during raft surface printing. Having an increased flow may improve adhesion and raft structural strength."
  4362. msgstr "Die Materialmenge, die im Vergleich zu einer normalen Extrusionslinie während des Drucks der Floßoberfläche extrudiert wird. Ein erhöhter Durchfluss kann die Haftung und die strukturelle Festigkeit des Rafts verbessern."
  4363. msgctxt "raft_base_infill_overlap description"
  4364. msgid "The amount of overlap between the infill and the walls of the raft base, as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill."
  4365. msgstr "Der Überlappungsgrad zwischen der Füllung und den Wänden des Raftbodens, als Prozentsatz der Breite der Fülllinie. Eine geringe Überlappung ermöglicht einen festen Anschluss der Wände an die Füllung."
  4366. msgctxt "raft_base_infill_overlap_mm description"
  4367. msgid "The amount of overlap between the infill and the walls of the raft base. A slight overlap allows the walls to connect firmly to the infill."
  4368. msgstr "Der Überlappungsgrad zwischen der Füllung und den Wänden des Raftbodens. Eine leichte Überlappung ermöglicht einen festen Anschluss der Wände an die Füllung."
  4369. msgctxt "raft_interface_infill_overlap description"
  4370. msgid "The amount of overlap between the infill and the walls of the raft interface, as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill."
  4371. msgstr "Der Überlappungsgrad zwischen der Füllung und den Wänden der Raft-Schnittstelle, in Prozent der Breite der Füllungslinie. Eine leichte Überlappung ermöglicht einen festen Anschluss der Wände an die Füllung."
  4372. msgctxt "raft_interface_infill_overlap_mm description"
  4373. msgid "The amount of overlap between the infill and the walls of the raft interface. A slight overlap allows the walls to connect firmly to the infill."
  4374. msgstr "Der Überlappungsgrad zwischen der Füllung und den Wänden an der Raft-Schnittstelle. Eine leichte Überlappung ermöglicht einen festen Anschluss der Wände an die Füllung."
  4375. msgctxt "raft_surface_infill_overlap description"
  4376. msgid "The amount of overlap between the infill and the walls of the raft surface, as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill."
  4377. msgstr "Der Überlappungsgrad zwischen der Füllung und den Wänden der Raft-Oberfläche als Prozentsatz der Fülllinienbreite. Eine leichte Überlappung einen festen Anschluss der Wände an die Füllung."
  4378. msgctxt "raft_surface_infill_overlap_mm description"
  4379. msgid "The amount of overlap between the infill and the walls of the raft surface. A slight overlap allows the walls to connect firmly to the infill."
  4380. msgstr "Der Überlappungsgrad zwischen der Füllung und den Wänden an der Raft-Schnittstelle. Eine leichte Überlappung ermöglicht einen festen Anschluss der Wände an die Füllung."
  4381. msgctxt "support_z_seam_min_distance description"
  4382. msgid "The distance between the model and its support structure at the z-axis seam."
  4383. msgstr "Der Abstand zwischen dem Modell und seiner Stützstruktur an der Z-Achsen-Naht."
  4384. msgctxt "prime_tower_min_shell_thickness description"
  4385. msgid "The minimum thickness of the prime tower shell. You may increase it to make the prime tower stronger."
  4386. msgstr "Die Mindestdicke der Prime-Tower-Hülle. Sie können sie erhöhen, um den Prime-Tower stärker zu machen."
  4387. msgctxt "seam_overhang_angle description"
  4388. msgid "Try to prevent seams on walls that overhang more than this angle. When the value is 90, no walls will be treated as overhanging."
  4389. msgstr "Versuchen Sie, Nähte an Wänden zu vermeiden, die mehr als diesen Winkel überhängen. Wenn der Wert 90 beträgt, werden keine Wände als überhängend behandelt."
  4390. msgctxt "cool_during_extruder_switch option unchanged"
  4391. msgid "Unchanged"
  4392. msgstr "Unverändert"
  4393. msgctxt "raft_interface_z_offset description"
  4394. msgid "When printing the first layer of the raft interface, translate by this offset to customize the adhesion between base and interface. A negative offset should improve the adhesion."
  4395. msgstr "Beim Drucken der ersten Schicht der Raft-Schnittstelle verschieben Sie um diesen Versatz, um die Haftung zwischen Basis und Schnittstelle anzupassen. Ein negativer Versatz sollte die Haftung verbessern."
  4396. msgctxt "raft_surface_z_offset description"
  4397. msgid "When printing the first layer of the raft surface, translate by this offset to customize the adhesion between interface and surface. A negative offset should improve the adhesion."
  4398. msgstr "Beim Drucken der ersten Schicht der Raft-Oberfläche verschieben Sie um diesen Versatz, um die Haftung zwischen Schnittstelle und Oberfläche anzupassen. Ein negativer Versatz sollte die Haftung verbessern."
  4399. msgctxt "z_seam_on_vertex label"
  4400. msgid "Z Seam On Vertex"
  4401. msgstr "Z-Naht auf Scheitelpunkt"
  4402. msgctxt "gradual_flow_discretisation_step_size description"
  4403. msgid "Duration of each step in the gradual flow change"
  4404. msgstr "Dauer jedes Schritts bei der sukzessiven Durchflusssänderung"
  4405. msgctxt "gradual_flow_enabled description"
  4406. 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."
  4407. msgstr "Aktivieren Sie sukzessive Durchflussänderungen. Wenn diese Option aktiviert ist, wird der Durchfluss sukzessiv auf den angestrebten Durchfluss erhöht/verringert. Dies ist nützlich für Drucker mit einem Bowdenschlauch, bei denen der Durchfluss nicht sofort geändert wird, wenn der Extrudermotor startet/stoppt."
  4408. msgctxt "reset_flow_duration description"
  4409. msgid "For any travel move longer than this value, the material flow is reset to the paths target flow"
  4410. msgstr "Für jede Verfahrbewegung, die länger als dieser Wert ist, wird der Materialfluss auf den Sollwegfluss zurückgesetzt."
  4411. msgctxt "gradual_flow_discretisation_step_size label"
  4412. msgid "Gradual flow discretisation step size"
  4413. msgstr "Umfang des Diskretisierungsvorgangs bei sukzessivem Durchfluss"
  4414. msgctxt "gradual_flow_enabled label"
  4415. msgid "Gradual flow enabled"
  4416. msgstr "Sukzessiver Durchfluss aktiviert"
  4417. msgctxt "max_flow_acceleration label"
  4418. msgid "Gradual flow max acceleration"
  4419. msgstr "Maximale Beschleunigung bei sukzessivem Durchfluss"
  4420. msgctxt "layer_0_max_flow_acceleration label"
  4421. msgid "Initial layer max flow acceleration"
  4422. msgstr "Maximale Durchflussbeschleunigung bei der Anfangsschicht"
  4423. msgctxt "max_flow_acceleration description"
  4424. msgid "Maximum acceleration for gradual flow changes"
  4425. msgstr "Maximale Beschleunigung für sukzessive Durchflussänderungen"
  4426. msgctxt "layer_0_max_flow_acceleration description"
  4427. msgid "Minimum speed for gradual flow changes for the first layer"
  4428. msgstr "Mindestgeschwindigkeit für sukzessive Durchflussänderungen bei der Anfangsschicht"
  4429. msgctxt "reset_flow_duration label"
  4430. msgid "Reset flow duration"
  4431. msgstr "Durchflussdauer zurücksetzen"