cura.po 235 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051
  1. # Cura
  2. # Copyright (C) 2022 UltiMaker.
  3. # This file is distributed under the same license as the Cura package.
  4. # Ultimaker <plugins@ultimaker.com>, 2022.
  5. #
  6. #, fuzzy
  7. msgid ""
  8. msgstr ""
  9. "Project-Id-Version: PACKAGE VERSION\n"
  10. "Report-Msgid-Bugs-To: \n"
  11. "POT-Creation-Date: 2023-01-31 16:46+0100\n"
  12. "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
  13. "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  14. "Language-Team: LANGUAGE <LL@li.org>\n"
  15. "Language: de_DE\n"
  16. "MIME-Version: 1.0\n"
  17. "Content-Type: text/plain; charset=UTF-8\n"
  18. "Content-Transfer-Encoding: 8bit\n"
  19. "Plural-Forms: nplurals=2; plural=n != 1;\n"
  20. #: cura/API/Account.py:199
  21. msgctxt "@info:title"
  22. msgid "Login failed"
  23. msgstr "Login fehlgeschlagen"
  24. #: cura/Arranging/ArrangeObjectsJob.py:25
  25. msgctxt "@info:status"
  26. msgid "Finding new location for objects"
  27. msgstr "Neue Position für Objekte finden"
  28. #: cura/Arranging/ArrangeObjectsJob.py:29
  29. msgctxt "@info:title"
  30. msgid "Finding Location"
  31. msgstr "Position finden"
  32. #: cura/Arranging/ArrangeObjectsJob.py:42 cura/MultiplyObjectsJob.py:99
  33. msgctxt "@info:status"
  34. msgid "Unable to find a location within the build volume for all objects"
  35. msgstr "Innerhalb der Druckabmessung für alle Objekte konnte keine Position gefunden werden"
  36. #: cura/Arranging/ArrangeObjectsJob.py:43
  37. msgctxt "@info:title"
  38. msgid "Can't Find Location"
  39. msgstr "Kann Position nicht finden"
  40. #: cura/Backups/Backup.py:115
  41. msgctxt "@info:backup_failed"
  42. msgid "Could not create archive from user data directory: {}"
  43. msgstr "Konnte kein Archiv von Benutzer-Datenverzeichnis {} erstellen"
  44. #: cura/Backups/Backup.py:122 cura/Backups/Backup.py:159
  45. #: plugins/CuraDrive/src/DrivePluginExtension.py:118
  46. #: plugins/CuraDrive/src/DrivePluginExtension.py:126
  47. msgctxt "@info:title"
  48. msgid "Backup"
  49. msgstr "Backup"
  50. #: cura/Backups/Backup.py:134
  51. msgctxt "@info:backup_failed"
  52. msgid "Tried to restore a Cura backup without having proper data or meta data."
  53. msgstr "Versucht, ein Cura-Backup-Verzeichnis ohne entsprechende Daten oder Metadaten wiederherzustellen."
  54. #: cura/Backups/Backup.py:145
  55. msgctxt "@info:backup_failed"
  56. msgid "Tried to restore a Cura backup that is higher than the current version."
  57. msgstr "Versucht, ein Cura-Backup wiederherzustellen, das eine höhere Version als die aktuelle hat."
  58. #: cura/Backups/Backup.py:158
  59. msgctxt "@info:backup_failed"
  60. msgid "The following error occurred while trying to restore a Cura backup:"
  61. msgstr "Beim Versuch, ein Backup von Cura wiederherzustellen, trat der folgende Fehler auf:"
  62. #: cura/BuildVolume.py:100
  63. msgctxt "@info:status"
  64. msgid "The build volume height has been reduced due to the value of the \"Print Sequence\" setting to prevent the gantry from colliding with printed models."
  65. msgstr "Die Höhe der Druckabmessung wurde aufgrund des Wertes der Einstellung „Druckreihenfolge“ reduziert, um eine Kollision der Brücke mit den gedruckten Modellen zu verhindern."
  66. #: cura/BuildVolume.py:103
  67. msgctxt "@info:title"
  68. msgid "Build Volume"
  69. msgstr "Produktabmessungen"
  70. #: cura/CrashHandler.py:107
  71. msgctxt "@title:window"
  72. msgid "Cura can't start"
  73. msgstr "Cura kann nicht starten"
  74. #: cura/CrashHandler.py:113
  75. msgctxt "@label crash message"
  76. msgid ""
  77. "<p><b>Oops, UltiMaker Cura has encountered something that doesn't seem right.</p></b>\n"
  78. " <p>We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.</p>\n"
  79. " <p>Backups can be found in the configuration folder.</p>\n"
  80. " <p>Please send us this Crash Report to fix the problem.</p>\n"
  81. " "
  82. msgstr ""
  83. "<p><b>Hoppla, bei UltiMaker Cura ist ein Problem aufgetreten.</p></b>\n"
  84. " <p>Beim Start ist ein nicht behebbarer Fehler aufgetreten. Er wurde möglicherweise durch einige falsche Konfigurationsdateien verursacht. Wir empfehlen ein Backup und Reset Ihrer Konfiguration.</p>\n"
  85. " <p>Backups sind im Konfigurationsordner abgelegt.</p>\n"
  86. " <p>Senden Sie uns diesen Absturzbericht bitte, um das Problem zu beheben.</p>\n"
  87. " "
  88. #: cura/CrashHandler.py:122
  89. msgctxt "@action:button"
  90. msgid "Send crash report to UltiMaker"
  91. msgstr "Absturzbericht an UltiMaker senden"
  92. #: cura/CrashHandler.py:125
  93. msgctxt "@action:button"
  94. msgid "Show detailed crash report"
  95. msgstr "Detaillierten Absturzbericht anzeigen"
  96. #: cura/CrashHandler.py:129
  97. msgctxt "@action:button"
  98. msgid "Show configuration folder"
  99. msgstr "Konfigurationsordner anzeigen"
  100. #: cura/CrashHandler.py:140
  101. msgctxt "@action:button"
  102. msgid "Backup and Reset Configuration"
  103. msgstr "Backup und Reset der Konfiguration"
  104. #: cura/CrashHandler.py:171
  105. msgctxt "@title:window"
  106. msgid "Crash Report"
  107. msgstr "Crash-Bericht"
  108. #: cura/CrashHandler.py:190
  109. msgctxt "@label crash message"
  110. msgid ""
  111. "<p><b>A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem</p></b>\n"
  112. " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  113. " "
  114. msgstr ""
  115. "<p><b>Ein schwerer Fehler ist in Cura aufgetreten. Senden Sie uns diesen Absturzbericht, um das Problem zu beheben</p></b>\n"
  116. " <p>Verwenden Sie bitte die Schaltfläche „Bericht senden“, um den Fehlerbericht automatisch an unsere Server zu senden</p>\n"
  117. " "
  118. #: cura/CrashHandler.py:198
  119. msgctxt "@title:groupbox"
  120. msgid "System information"
  121. msgstr "Systeminformationen"
  122. #: cura/CrashHandler.py:207
  123. msgctxt "@label unknown version of Cura"
  124. msgid "Unknown"
  125. msgstr "Unbekannt"
  126. #: cura/CrashHandler.py:228
  127. msgctxt "@label Cura version number"
  128. msgid "Cura version"
  129. msgstr "Cura-Version"
  130. #: cura/CrashHandler.py:229
  131. msgctxt "@label"
  132. msgid "Cura language"
  133. msgstr "Cura-Sprache"
  134. #: cura/CrashHandler.py:230
  135. msgctxt "@label"
  136. msgid "OS language"
  137. msgstr "Sprache des Betriebssystems"
  138. #: cura/CrashHandler.py:231
  139. msgctxt "@label Type of platform"
  140. msgid "Platform"
  141. msgstr "Plattform"
  142. #: cura/CrashHandler.py:232
  143. msgctxt "@label"
  144. msgid "Qt version"
  145. msgstr "Qt Version"
  146. #: cura/CrashHandler.py:233
  147. msgctxt "@label"
  148. msgid "PyQt version"
  149. msgstr "PyQt Version"
  150. #: cura/CrashHandler.py:234
  151. msgctxt "@label OpenGL version"
  152. msgid "OpenGL"
  153. msgstr "OpenGL"
  154. #: cura/CrashHandler.py:264
  155. msgctxt "@label"
  156. msgid "Not yet initialized"
  157. msgstr "Noch nicht initialisiert"
  158. #: cura/CrashHandler.py:267
  159. #, python-brace-format
  160. msgctxt "@label OpenGL version"
  161. msgid "<li>OpenGL Version: {version}</li>"
  162. msgstr "<li>OpenGL-Version: {version}</li>"
  163. #: cura/CrashHandler.py:268
  164. #, python-brace-format
  165. msgctxt "@label OpenGL vendor"
  166. msgid "<li>OpenGL Vendor: {vendor}</li>"
  167. msgstr "<li>OpenGL-Anbieter: {vendor}</li>"
  168. #: cura/CrashHandler.py:269
  169. #, python-brace-format
  170. msgctxt "@label OpenGL renderer"
  171. msgid "<li>OpenGL Renderer: {renderer}</li>"
  172. msgstr "<li>OpenGL-Renderer: {renderer}</li>"
  173. #: cura/CrashHandler.py:304
  174. msgctxt "@title:groupbox"
  175. msgid "Error traceback"
  176. msgstr "Fehler-Rückverfolgung"
  177. #: cura/CrashHandler.py:390
  178. msgctxt "@title:groupbox"
  179. msgid "Logs"
  180. msgstr "Protokolle"
  181. #: cura/CrashHandler.py:418
  182. msgctxt "@action:button"
  183. msgid "Send report"
  184. msgstr "Bericht senden"
  185. #: cura/CuraApplication.py:540
  186. msgctxt "@info:progress"
  187. msgid "Loading machines..."
  188. msgstr "Geräte werden geladen..."
  189. #: cura/CuraApplication.py:547
  190. msgctxt "@info:progress"
  191. msgid "Setting up preferences..."
  192. msgstr "Erstellungen werden eingerichtet ..."
  193. #: cura/CuraApplication.py:692
  194. msgctxt "@info:progress"
  195. msgid "Initializing Active Machine..."
  196. msgstr "Aktives Gerät wird initialisiert ..."
  197. #: cura/CuraApplication.py:839
  198. msgctxt "@info:progress"
  199. msgid "Initializing machine manager..."
  200. msgstr "Gerätemanager wird initialisiert ..."
  201. #: cura/CuraApplication.py:853
  202. msgctxt "@info:progress"
  203. msgid "Initializing build volume..."
  204. msgstr "Bauraum wird initialisiert ..."
  205. #: cura/CuraApplication.py:921
  206. msgctxt "@info:progress"
  207. msgid "Setting up scene..."
  208. msgstr "Die Szene wird eingerichtet..."
  209. #: cura/CuraApplication.py:957
  210. msgctxt "@info:progress"
  211. msgid "Loading interface..."
  212. msgstr "Die Benutzeroberfläche wird geladen..."
  213. #: cura/CuraApplication.py:962
  214. msgctxt "@info:progress"
  215. msgid "Initializing engine..."
  216. msgstr "Funktion wird initialisiert ..."
  217. #: cura/CuraApplication.py:1290
  218. #, python-format
  219. msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm."
  220. msgid "%(width).1f x %(depth).1f x %(height).1f mm"
  221. msgstr "%(width).1f x %(depth).1f x %(height).1f mm"
  222. #: cura/CuraApplication.py:1816
  223. #, python-brace-format
  224. msgctxt "@info:status"
  225. msgid "Only one G-code file can be loaded at a time. Skipped importing {0}"
  226. msgstr "Es kann nur jeweils ein G-Code gleichzeitig geladen werden. Wichtige {0} werden übersprungen."
  227. #: cura/CuraApplication.py:1818 cura/OAuth2/AuthorizationService.py:217
  228. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:189
  229. msgctxt "@info:title"
  230. msgid "Warning"
  231. msgstr "Warnhinweis"
  232. #: cura/CuraApplication.py:1828
  233. #, python-brace-format
  234. msgctxt "@info:status"
  235. msgid "Can't open any other file if G-code is loading. Skipped importing {0}"
  236. msgstr "Wenn G-Code geladen wird, kann keine weitere Datei geöffnet werden. Wichtige {0} werden übersprungen."
  237. #: cura/CuraApplication.py:1830 cura/Settings/CuraContainerRegistry.py:156
  238. #: cura/Settings/CuraContainerRegistry.py:166
  239. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153
  240. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173
  241. msgctxt "@info:title"
  242. msgid "Error"
  243. msgstr "Fehler"
  244. #: cura/Machines/Models/DiscoveredPrintersModel.py:83
  245. msgctxt "@label"
  246. msgid "Unknown"
  247. msgstr "Unbekannt"
  248. #: cura/Machines/Models/DiscoveredPrintersModel.py:113
  249. msgctxt "@label"
  250. msgid "The printer(s) below cannot be connected because they are part of a group"
  251. msgstr "Der/die nachfolgende(n) Drucker kann/können nicht verbunden werden, weil er/sie Teil einer Gruppe ist/sind"
  252. #: cura/Machines/Models/DiscoveredPrintersModel.py:115
  253. msgctxt "@label"
  254. msgid "Available networked printers"
  255. msgstr "Verfügbare vernetzte Drucker"
  256. #: cura/Machines/Models/ExtrudersModel.py:219
  257. msgctxt "@menuitem"
  258. msgid "Not overridden"
  259. msgstr "Nicht überschrieben"
  260. #: cura/Machines/Models/GlobalStacksModel.py:160
  261. #: resources/qml/PrinterSelector/MachineSelectorList.qml:28
  262. msgctxt "@label"
  263. msgid "Connected printers"
  264. msgstr "Verbundene Drucker"
  265. #: cura/Machines/Models/GlobalStacksModel.py:160
  266. msgctxt "@label"
  267. msgid "Preset printers"
  268. msgstr "Voreingestellte Drucker"
  269. #: cura/Machines/Models/GlobalStacksModel.py:165
  270. #, python-brace-format
  271. msgctxt "@label {0} is the name of a printer that's about to be deleted."
  272. msgid "Are you sure you wish to remove {0}? This cannot be undone!"
  273. msgstr "Möchten Sie {0} wirklich entfernen? Der Vorgang kann nicht rückgängig gemacht werden!"
  274. #: cura/Machines/Models/IntentCategoryModel.py:42
  275. #: cura/Machines/Models/IntentSelectionModel.py:61
  276. #: cura/Machines/Models/IntentTranslations.py:11
  277. #: cura/Machines/Models/QualityManagementModel.py:347
  278. msgctxt "@label"
  279. msgid "Default"
  280. msgstr "Default"
  281. #: cura/Machines/Models/IntentCategoryModel.py:45
  282. #: cura/Machines/Models/IntentSelectionModel.py:65
  283. #: cura/Machines/Models/IntentTranslations.py:14
  284. msgctxt "@label"
  285. msgid "Visual"
  286. msgstr "Visuell"
  287. #: cura/Machines/Models/IntentCategoryModel.py:46
  288. #: cura/Machines/Models/IntentSelectionModel.py:66
  289. #: cura/Machines/Models/IntentTranslations.py:15
  290. msgctxt "@text"
  291. msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality."
  292. msgstr "Das visuelle Profil wurde für den Druck visueller Prototypen und Modellen entwickelt, bei denen das Ziel eine hohe visuelle Qualität und eine hohe Oberflächenqualität ist."
  293. #: cura/Machines/Models/IntentCategoryModel.py:49
  294. #: cura/Machines/Models/IntentSelectionModel.py:70
  295. #: cura/Machines/Models/IntentTranslations.py:18
  296. msgctxt "@label"
  297. msgid "Engineering"
  298. msgstr "Engineering"
  299. #: cura/Machines/Models/IntentCategoryModel.py:50
  300. #: cura/Machines/Models/IntentSelectionModel.py:71
  301. #: cura/Machines/Models/IntentTranslations.py:19
  302. msgctxt "@text"
  303. msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances."
  304. msgstr "Das Engineering-Profil ist für den Druck von Funktionsprototypen und Endnutzungsteilen gedacht, bei denen Präzision gefragt ist und engere Toleranzen gelten."
  305. #: cura/Machines/Models/IntentCategoryModel.py:53
  306. #: cura/Machines/Models/IntentSelectionModel.py:75
  307. #: cura/Machines/Models/IntentTranslations.py:22
  308. msgctxt "@label"
  309. msgid "Draft"
  310. msgstr "Entwurf"
  311. #: cura/Machines/Models/IntentCategoryModel.py:54
  312. #: cura/Machines/Models/IntentSelectionModel.py:76
  313. #: cura/Machines/Models/IntentTranslations.py:23
  314. msgctxt "@text"
  315. msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction."
  316. msgstr "Das Entwurfsprofil wurde für erste Prototypen und die Konzeptvalidierung entwickelt, um einen deutlich schnelleren Druck zu ermöglichen."
  317. #: cura/Machines/Models/MaterialManagementModel.py:232
  318. msgctxt "@label"
  319. msgid "Custom Material"
  320. msgstr "Benutzerdefiniertes Material"
  321. #: cura/Machines/Models/MaterialManagementModel.py:233
  322. #: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:340
  323. msgctxt "@label"
  324. msgid "Custom"
  325. msgstr "Benutzerdefiniert"
  326. #: cura/Machines/Models/QualityManagementModel.py:400
  327. msgctxt "@label"
  328. msgid "Custom profiles"
  329. msgstr "Benutzerdefinierte Profile"
  330. #: cura/Machines/Models/QualityManagementModel.py:435
  331. #, python-brace-format
  332. msgctxt "@item:inlistbox"
  333. msgid "All Supported Types ({0})"
  334. msgstr "Alle unterstützten Typen ({0})"
  335. #: cura/Machines/Models/QualityManagementModel.py:436
  336. msgctxt "@item:inlistbox"
  337. msgid "All Files (*)"
  338. msgstr "Alle Dateien (*)"
  339. #: cura/Machines/Models/QualitySettingsModel.py:182
  340. msgctxt "@info:status"
  341. msgid "Calculated"
  342. msgstr "Berechnet"
  343. #: cura/MultiplyObjectsJob.py:30
  344. msgctxt "@info:status"
  345. msgid "Multiplying and placing objects"
  346. msgstr "Objekte vervielfältigen und platzieren"
  347. #: cura/MultiplyObjectsJob.py:32
  348. msgctxt "@info:title"
  349. msgid "Placing Objects"
  350. msgstr "Objekte platzieren"
  351. #: cura/MultiplyObjectsJob.py:100
  352. msgctxt "@info:title"
  353. msgid "Placing Object"
  354. msgstr "Objekt-Platzierung"
  355. #: cura/OAuth2/AuthorizationHelpers.py:89
  356. msgctxt "@message"
  357. msgid "Could not read response."
  358. msgstr "Antwort konnte nicht gelesen werden."
  359. #: cura/OAuth2/AuthorizationRequestHandler.py:75
  360. msgctxt "@message"
  361. msgid "The provided state is not correct."
  362. msgstr "Angegebener Status ist falsch."
  363. #: cura/OAuth2/AuthorizationRequestHandler.py:80
  364. msgctxt "@message"
  365. msgid "Timeout when authenticating with the account server."
  366. msgstr "Zeitüberschreitung bei der Authentifizierung mit dem Kontoserver."
  367. #: cura/OAuth2/AuthorizationRequestHandler.py:97
  368. msgctxt "@message"
  369. msgid "Please give the required permissions when authorizing this application."
  370. msgstr "Erteilen Sie bitte die erforderlichen Freigaben bei der Autorisierung dieser Anwendung."
  371. #: cura/OAuth2/AuthorizationRequestHandler.py:104
  372. msgctxt "@message"
  373. msgid "Something unexpected happened when trying to log in, please try again."
  374. msgstr "Bei dem Versuch, sich anzumelden, trat ein unerwarteter Fehler auf. Bitte erneut versuchen."
  375. #: cura/OAuth2/AuthorizationService.py:216
  376. msgctxt "@info"
  377. msgid "Unable to start a new sign in process. Check if another sign in attempt is still active."
  378. msgstr "Es kann kein neuer Anmeldevorgang gestartet werden. Bitte überprüfen Sie, ob noch ein weiterer Anmeldevorgang aktiv ist."
  379. #: cura/OAuth2/AuthorizationService.py:277
  380. msgctxt "@info"
  381. msgid "Unable to reach the UltiMaker account server."
  382. msgstr "Der UltiMaker-Konto-Server konnte nicht erreicht werden."
  383. #: cura/OAuth2/AuthorizationService.py:278
  384. msgctxt "@info:title"
  385. msgid "Log-in failed"
  386. msgstr "Anmeldung fehlgeschlagen"
  387. #: cura/PrinterOutput/UploadMaterialsJob.py:104
  388. msgctxt "@text:error"
  389. msgid "Failed to create archive of materials to sync with printers."
  390. msgstr "Die Erstellung eines Materialarchivs zur Synchronisierung mit Druckern ist fehlgeschlagen."
  391. #: cura/PrinterOutput/UploadMaterialsJob.py:111
  392. #: cura/PrinterOutput/UploadMaterialsJob.py:165
  393. msgctxt "@text:error"
  394. msgid "Failed to load the archive of materials to sync it with printers."
  395. msgstr "Das Archiv der Materialien konnte nicht geladen werden, um es mit Druckern zu synchronisieren."
  396. #: cura/PrinterOutput/UploadMaterialsJob.py:143
  397. msgctxt "@text:error"
  398. msgid "The response from Digital Factory appears to be corrupted."
  399. msgstr "Die Antwort von Digital Factory scheint beschädigt zu sein."
  400. #: cura/PrinterOutput/UploadMaterialsJob.py:147
  401. #: cura/PrinterOutput/UploadMaterialsJob.py:151
  402. #: cura/PrinterOutput/UploadMaterialsJob.py:155
  403. msgctxt "@text:error"
  404. msgid "The response from Digital Factory is missing important information."
  405. msgstr "In der Antwort von Digital Factory fehlen wichtige Informationen."
  406. #: cura/PrinterOutput/UploadMaterialsJob.py:218
  407. msgctxt "@text:error"
  408. msgid "Failed to connect to Digital Factory to sync materials with some of the printers."
  409. msgstr "Die Verbindung mit Digital Factory zum Synchronisieren von Materialien mit einigen Druckern ist fehlgeschlagen."
  410. #: cura/PrinterOutput/UploadMaterialsJob.py:232
  411. msgctxt "@text:error"
  412. msgid "Failed to connect to Digital Factory."
  413. msgstr "Es konnte keine Verbindung zu Digital Factory hergestellt werden."
  414. #: cura/Settings/ActiveQuality.py:43
  415. msgctxt "@label"
  416. msgid "Experimental"
  417. msgstr "Experimentell"
  418. #: cura/Settings/ContainerManager.py:207
  419. #: cura/Settings/CuraContainerRegistry.py:140
  420. msgctxt "@title:window"
  421. msgid "File Already Exists"
  422. msgstr "Datei bereits vorhanden"
  423. #: cura/Settings/ContainerManager.py:208
  424. #: cura/Settings/CuraContainerRegistry.py:141
  425. #, python-brace-format
  426. msgctxt "@label Don't translate the XML tag <filename>!"
  427. msgid "The file <filename>{0}</filename> already exists. Are you sure you want to overwrite it?"
  428. msgstr "Die Datei <filename>{0}</filename> ist bereits vorhanden. Soll die Datei wirklich überschrieben werden?"
  429. #: cura/Settings/ContainerManager.py:459 cura/Settings/ContainerManager.py:462
  430. msgctxt "@info:status"
  431. msgid "Invalid file URL:"
  432. msgstr "Ungültige Datei-URL:"
  433. #: cura/Settings/CuraContainerRegistry.py:153
  434. #, python-brace-format
  435. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  436. msgid "Failed to export profile to <filename>{0}</filename>: <message>{1}</message>"
  437. msgstr "Export des Profils nach <filename>{0}</filename> fehlgeschlagen: <message>{1}</message>"
  438. #: cura/Settings/CuraContainerRegistry.py:163
  439. #, python-brace-format
  440. msgctxt "@info:status Don't translate the XML tag <filename>!"
  441. msgid "Failed to export profile to <filename>{0}</filename>: Writer plugin reported failure."
  442. msgstr "Export des Profils nach <filename>{0}</filename> fehlgeschlagen: Fehlermeldung von Writer-Plugin."
  443. #: cura/Settings/CuraContainerRegistry.py:171
  444. #, python-brace-format
  445. msgctxt "@info:status Don't translate the XML tag <filename>!"
  446. msgid "Exported profile to <filename>{0}</filename>"
  447. msgstr "Profil wurde nach <filename>{0}</filename> exportiert"
  448. #: cura/Settings/CuraContainerRegistry.py:173
  449. msgctxt "@info:title"
  450. msgid "Export succeeded"
  451. msgstr "Export erfolgreich ausgeführt"
  452. #: cura/Settings/CuraContainerRegistry.py:205
  453. #, python-brace-format
  454. msgctxt "@info:status Don't translate the XML tags <filename>!"
  455. msgid "Failed to import profile from <filename>{0}</filename>: {1}"
  456. msgstr "Import des Profils aus Datei <filename>{0}</filename>: {1} fehlgeschlagen"
  457. #: cura/Settings/CuraContainerRegistry.py:209
  458. #, python-brace-format
  459. msgctxt "@info:status Don't translate the XML tags <filename>!"
  460. msgid "Can't import profile from <filename>{0}</filename> before a printer is added."
  461. msgstr "Import des Profils aus Datei <filename>{0}</filename> kann erst durchgeführt werden, wenn ein Drucker hinzugefügt wurde."
  462. #: cura/Settings/CuraContainerRegistry.py:224
  463. #, python-brace-format
  464. msgctxt "@info:status Don't translate the XML tags <filename>!"
  465. msgid "No custom profile to import in file <filename>{0}</filename>"
  466. msgstr "Kein benutzerdefiniertes Profil für das Importieren in Datei <filename>{0}</filename>"
  467. #: cura/Settings/CuraContainerRegistry.py:228
  468. #, python-brace-format
  469. msgctxt "@info:status Don't translate the XML tags <filename>!"
  470. msgid "Failed to import profile from <filename>{0}</filename>:"
  471. msgstr "Import des Profils aus Datei <filename>{0}</filename> fehlgeschlagen:"
  472. #: cura/Settings/CuraContainerRegistry.py:252
  473. #: cura/Settings/CuraContainerRegistry.py:262
  474. #, python-brace-format
  475. msgctxt "@info:status Don't translate the XML tags <filename>!"
  476. msgid "This profile <filename>{0}</filename> contains incorrect data, could not import it."
  477. msgstr "Dieses Profil <filename>{0}</filename> enthält falsche Daten, Importieren nicht möglich."
  478. #: cura/Settings/CuraContainerRegistry.py:355
  479. #, python-brace-format
  480. msgctxt "@info:status Don't translate the XML tag <filename>!"
  481. msgid "Failed to import profile from <filename>{0}</filename>:"
  482. msgstr "Import des Profils aus Datei <filename>{0}</filename> fehlgeschlagen:"
  483. #: cura/Settings/CuraContainerRegistry.py:359
  484. #, python-brace-format
  485. msgctxt "@info:status"
  486. msgid "Successfully imported profile {0}."
  487. msgstr "Profil {0} erfolgreich importiert."
  488. #: cura/Settings/CuraContainerRegistry.py:366
  489. #, python-brace-format
  490. msgctxt "@info:status"
  491. msgid "File {0} does not contain any valid profile."
  492. msgstr "Datei {0} enthält kein gültiges Profil."
  493. #: cura/Settings/CuraContainerRegistry.py:369
  494. #, python-brace-format
  495. msgctxt "@info:status"
  496. msgid "Profile {0} has an unknown file type or is corrupted."
  497. msgstr "Profil {0} hat einen unbekannten Dateityp oder ist beschädigt."
  498. #: cura/Settings/CuraContainerRegistry.py:443
  499. msgctxt "@label"
  500. msgid "Custom profile"
  501. msgstr "Benutzerdefiniertes Profil"
  502. #: cura/Settings/CuraContainerRegistry.py:459
  503. msgctxt "@info:status"
  504. msgid "Profile is missing a quality type."
  505. msgstr "Für das Profil fehlt eine Qualitätsangabe."
  506. #: cura/Settings/CuraContainerRegistry.py:463
  507. msgctxt "@info:status"
  508. msgid "There is no active printer yet."
  509. msgstr "Es ist noch kein Drucker aktiv."
  510. #: cura/Settings/CuraContainerRegistry.py:469
  511. msgctxt "@info:status"
  512. msgid "Unable to add the profile."
  513. msgstr "Das Profil kann nicht hinzugefügt werden."
  514. #: cura/Settings/CuraContainerRegistry.py:483
  515. #, python-brace-format
  516. msgctxt "@info:status"
  517. msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'."
  518. msgstr "Der Qualitätstyp „{0}“ ist nicht mit der aktuell aktiven Maschinendefinition „{1}“ kompatibel."
  519. #: cura/Settings/CuraContainerRegistry.py:488
  520. #, python-brace-format
  521. msgctxt "@info:status"
  522. msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type."
  523. msgstr "Warnung: Das Profil wird nicht angezeigt, weil sein Qualitätstyp „{0}“ für die aktuelle Konfiguration nicht verfügbar ist. Wechseln Sie zu einer Material-/Düsenkombination, die mit diesem Qualitätstyp kompatibel ist."
  524. #: cura/Settings/MachineManager.py:746
  525. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:221
  526. msgctxt "@label"
  527. msgid "Nozzle"
  528. msgstr "Düse"
  529. #: cura/Settings/MachineManager.py:890
  530. msgctxt "@info:message Followed by a list of settings."
  531. msgid "Settings have been changed to match the current availability of extruders:"
  532. msgstr "Die Einstellungen wurden an die aktuell verfügbaren Extruder angepasst:"
  533. #: cura/Settings/MachineManager.py:891
  534. msgctxt "@info:title"
  535. msgid "Settings updated"
  536. msgstr "Einstellungen aktualisiert"
  537. #: cura/Settings/MachineManager.py:1514
  538. msgctxt "@info:title"
  539. msgid "Extruder(s) Disabled"
  540. msgstr "Extruder deaktiviert"
  541. #: cura/Settings/cura_empty_instance_containers.py:36
  542. msgctxt "@info:not supported profile"
  543. msgid "Not supported"
  544. msgstr "Nicht unterstützt"
  545. #: cura/Settings/cura_empty_instance_containers.py:55
  546. msgctxt "@info:No intent profile selected"
  547. msgid "Default"
  548. msgstr "Default"
  549. #: cura/UI/AddPrinterPagesModel.py:17
  550. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:61
  551. msgctxt "@action:button"
  552. msgid "Add"
  553. msgstr "Hinzufügen"
  554. #: cura/UI/AddPrinterPagesModel.py:26 cura/UI/WelcomePagesModel.py:290
  555. msgctxt "@action:button"
  556. msgid "Finish"
  557. msgstr "Beenden"
  558. #: cura/UI/AddPrinterPagesModel.py:33 plugins/3MFReader/WorkspaceDialog.qml:386
  559. #: plugins/ImageReader/ConfigUI.qml:323
  560. #: plugins/SliceInfoPlugin/MoreInfoWindow.qml:147
  561. #: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27
  562. #: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:43
  563. #: resources/qml/ColorDialog.qml:143
  564. #: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59
  565. #: resources/qml/Dialogs/RenameDialog.qml:103
  566. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:293
  567. msgctxt "@action:button"
  568. msgid "Cancel"
  569. msgstr "Abbrechen"
  570. #: cura/UI/ObjectsModel.py:69
  571. #, python-brace-format
  572. msgctxt "@label"
  573. msgid "Group #{group_nr}"
  574. msgstr "Gruppe #{group_nr}"
  575. #: cura/UI/PrintInformation.py:87
  576. msgctxt "@tooltip"
  577. msgid "Outer Wall"
  578. msgstr "Außenwand"
  579. #: cura/UI/PrintInformation.py:88
  580. msgctxt "@tooltip"
  581. msgid "Inner Walls"
  582. msgstr "Innenwände"
  583. #: cura/UI/PrintInformation.py:89
  584. msgctxt "@tooltip"
  585. msgid "Skin"
  586. msgstr "Außenhaut"
  587. #: cura/UI/PrintInformation.py:90
  588. msgctxt "@tooltip"
  589. msgid "Infill"
  590. msgstr "Füllung"
  591. #: cura/UI/PrintInformation.py:91
  592. msgctxt "@tooltip"
  593. msgid "Support Infill"
  594. msgstr "Stützstruktur-Füllung"
  595. #: cura/UI/PrintInformation.py:92
  596. msgctxt "@tooltip"
  597. msgid "Support Interface"
  598. msgstr "Stützstruktur-Schnittstelle"
  599. #: cura/UI/PrintInformation.py:93
  600. msgctxt "@tooltip"
  601. msgid "Support"
  602. msgstr "Stützstruktur"
  603. #: cura/UI/PrintInformation.py:94
  604. msgctxt "@tooltip"
  605. msgid "Skirt"
  606. msgstr "Skirt"
  607. #: cura/UI/PrintInformation.py:95
  608. msgctxt "@tooltip"
  609. msgid "Prime Tower"
  610. msgstr "Einzugsturm"
  611. #: cura/UI/PrintInformation.py:96
  612. msgctxt "@tooltip"
  613. msgid "Travel"
  614. msgstr "Bewegungen"
  615. #: cura/UI/PrintInformation.py:97
  616. msgctxt "@tooltip"
  617. msgid "Retractions"
  618. msgstr "Einzüge"
  619. #: cura/UI/PrintInformation.py:98
  620. msgctxt "@tooltip"
  621. msgid "Other"
  622. msgstr "Sonstige"
  623. #: cura/UI/TextManager.py:37 cura/UI/TextManager.py:63
  624. msgctxt "@text:window"
  625. msgid "The release notes could not be opened."
  626. msgstr "Die Versionshinweise konnten nicht geöffnet werden."
  627. #: cura/UI/WelcomePagesModel.py:57 cura/UI/WelcomePagesModel.py:277
  628. msgctxt "@action:button"
  629. msgid "Next"
  630. msgstr "Weiter"
  631. #: cura/UI/WelcomePagesModel.py:286 cura/UI/WhatsNewPagesModel.py:68
  632. msgctxt "@action:button"
  633. msgid "Skip"
  634. msgstr "Überspringen"
  635. #: cura/UI/WhatsNewPagesModel.py:76
  636. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:175
  637. #: plugins/PerObjectSettingsTool/SettingPickDialog.qml:135
  638. #: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:444
  639. #: resources/qml/Dialogs/AboutDialog.qml:188
  640. msgctxt "@action:button"
  641. msgid "Close"
  642. msgstr "Schließen"
  643. #: cura/UltimakerCloud/CloudMaterialSync.py:66
  644. msgctxt "@action:button"
  645. msgid "Please sync the material profiles with your printers before starting to print."
  646. msgstr "Bitte stimmen Sie die Materialprofile auf Ihre Drucker ab („synchronisieren“), bevor Sie mit dem Drucken beginnen."
  647. #: cura/UltimakerCloud/CloudMaterialSync.py:67
  648. msgctxt "@action:button"
  649. msgid "New materials installed"
  650. msgstr "Neue Materialien installiert"
  651. #: cura/UltimakerCloud/CloudMaterialSync.py:74
  652. msgctxt "@action:button"
  653. msgid "Sync materials"
  654. msgstr "Materialien synchronisieren"
  655. #: cura/UltimakerCloud/CloudMaterialSync.py:82
  656. #: plugins/3MFReader/WorkspaceDialog.py:418 plugins/SolidView/SolidView.py:80
  657. msgctxt "@action:button"
  658. msgid "Learn more"
  659. msgstr "Mehr erfahren"
  660. #: cura/UltimakerCloud/CloudMaterialSync.py:135
  661. msgctxt "@message:text"
  662. msgid "Could not save material archive to {}:"
  663. msgstr "Materialarchiv konnte nicht in {} gespeichert werden:"
  664. #: cura/UltimakerCloud/CloudMaterialSync.py:136
  665. msgctxt "@message:title"
  666. msgid "Failed to save material archive"
  667. msgstr "Speichern des Materialarchivs fehlgeschlagen"
  668. #: cura/UltimakerCloud/CloudMaterialSync.py:188
  669. msgctxt "@text"
  670. msgid "Unknown error."
  671. msgstr "Unbekannter Fehler."
  672. #: plugin.json
  673. msgctxt "name"
  674. msgid "3MF Reader"
  675. msgstr "3MF-Reader"
  676. #: plugin.json
  677. msgctxt "name"
  678. msgid "3MF Writer"
  679. msgstr "3MF-Writer"
  680. #: plugin.json
  681. msgctxt "name"
  682. msgid "AMF Reader"
  683. msgstr "AMF-Reader"
  684. #: plugin.json
  685. msgctxt "description"
  686. msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
  687. msgstr "Akzeptiert den G-Code und sendet diesen an einen Drucker. Das Plugin kann auch die Firmware aktualisieren."
  688. #: plugin.json
  689. msgctxt "description"
  690. msgid "Allows loading and displaying G-code files."
  691. msgstr "Ermöglicht das Laden und Anzeigen von G-Code-Dateien."
  692. #: plugin.json
  693. msgctxt "description"
  694. msgid "Backup and restore your configuration."
  695. msgstr "Sicherung und Wiederherstellen Ihrer Konfiguration."
  696. #: plugin.json
  697. msgctxt "description"
  698. msgid "Checks for firmware updates."
  699. msgstr "Nach Firmware-Updates suchen."
  700. #: plugin.json
  701. msgctxt "description"
  702. msgid "Checks models and print configuration for possible printing issues and give suggestions."
  703. msgstr "Überprüft Modelle und Druckkonfiguration auf mögliche Probleme und erteilt Empfehlungen."
  704. #: plugin.json
  705. msgctxt "name"
  706. msgid "Compressed G-code Reader"
  707. msgstr "Reader für komprimierten G-Code"
  708. #: plugin.json
  709. msgctxt "name"
  710. msgid "Compressed G-code Writer"
  711. msgstr "Writer für komprimierten G-Code"
  712. #: plugin.json
  713. msgctxt "description"
  714. msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library."
  715. msgstr "Stellt eine Verbindung zur Digitalen Bibliothek her und ermöglicht es Cura, Dateien aus der Digitalen Bibliothek zu öffnen und darin zu speichern."
  716. #: plugin.json
  717. msgctxt "description"
  718. msgid "Creates an eraser mesh to block the printing of support in certain places"
  719. msgstr "Erstellt ein Radierernetz, um den Druck von Stützstrukturen in bestimmten Positionen zu blockieren"
  720. #: plugin.json
  721. msgctxt "name"
  722. msgid "Cura Backups"
  723. msgstr "Cura-Backups"
  724. #: plugin.json
  725. msgctxt "name"
  726. msgid "Cura Profile Reader"
  727. msgstr "Cura-Profil-Reader"
  728. #: plugin.json
  729. msgctxt "name"
  730. msgid "Cura Profile Writer"
  731. msgstr "Cura-Profil-Writer"
  732. #: plugin.json
  733. msgctxt "name"
  734. msgid "CuraEngine Backend"
  735. msgstr "CuraEngine Backend"
  736. #: plugin.json
  737. msgctxt "description"
  738. msgid "Enables ability to generate printable geometry from 2D image files."
  739. msgstr "Ermöglicht Erstellung von druckbarer Geometrie aus einer 2D-Bilddatei."
  740. #: plugin.json
  741. msgctxt "description"
  742. msgid "Extension that allows for user created scripts for post processing"
  743. msgstr "Erweiterung, die eine Nachbearbeitung von Skripten ermöglicht, die von Benutzern erstellt wurden"
  744. #: plugin.json
  745. msgctxt "name"
  746. msgid "Firmware Update Checker"
  747. msgstr "Firmware-Update-Prüfer"
  748. #: plugin.json
  749. msgctxt "name"
  750. msgid "Firmware Updater"
  751. msgstr "Firmware-Aktualisierungsfunktion"
  752. #: plugin.json
  753. msgctxt "name"
  754. msgid "G-code Profile Reader"
  755. msgstr "G-Code-Profil-Reader"
  756. #: plugin.json
  757. msgctxt "name"
  758. msgid "G-code Reader"
  759. msgstr "G-Code-Reader"
  760. #: plugin.json
  761. msgctxt "name"
  762. msgid "G-code Writer"
  763. msgstr "G-Code-Writer"
  764. #: plugin.json
  765. msgctxt "name"
  766. msgid "Image Reader"
  767. msgstr "Bild-Reader"
  768. #: plugin.json
  769. msgctxt "name"
  770. msgid "Legacy Cura Profile Reader"
  771. msgstr "Cura-Vorgängerprofil-Reader"
  772. #: plugin.json
  773. msgctxt "description"
  774. msgid "Logs certain events so that they can be used by the crash reporter"
  775. msgstr "Protokolliert bestimmte Ereignisse, damit diese vom Absturzbericht verwendet werden können"
  776. #: plugin.json
  777. msgctxt "name"
  778. msgid "Machine Settings Action"
  779. msgstr "Beschreibung Geräteeinstellungen"
  780. #: plugin.json
  781. #, fuzzy
  782. msgctxt "description"
  783. msgid "Manages extensions to the application and allows browsing extensions from the Ultimaker website."
  784. msgstr "Verwaltet die Erweiterungen der Anwendung und ermöglicht das Durchsuchen von Erweiterungen auf der UltiMaker-Website."
  785. #: plugin.json
  786. #, fuzzy
  787. msgctxt "description"
  788. msgid "Manages network connections to Ultimaker networked printers."
  789. msgstr "Verwaltet Netzwerkverbindungen zu UltiMaker-Netzwerkdruckern."
  790. #: plugin.json
  791. msgctxt "name"
  792. msgid "Marketplace"
  793. msgstr "Marktplatz"
  794. #: plugin.json
  795. msgctxt "name"
  796. msgid "Material Profiles"
  797. msgstr "Materialprofile"
  798. #: plugin.json
  799. msgctxt "name"
  800. msgid "Model Checker"
  801. msgstr "Modell-Prüfer"
  802. #: plugin.json
  803. msgctxt "name"
  804. msgid "Monitor Stage"
  805. msgstr "Überwachungsstufe"
  806. #: plugin.json
  807. msgctxt "name"
  808. msgid "Per Model Settings Tool"
  809. msgstr "Werkzeug „Einstellungen pro Objekt“"
  810. #: plugin.json
  811. msgctxt "name"
  812. msgid "Post Processing"
  813. msgstr "Nachbearbeitung"
  814. #: plugin.json
  815. msgctxt "name"
  816. msgid "Prepare Stage"
  817. msgstr "Vorbereitungsstufe"
  818. #: plugin.json
  819. msgctxt "name"
  820. msgid "Preview Stage"
  821. msgstr "Vorschaustufe"
  822. #: plugin.json
  823. msgctxt "description"
  824. msgid "Provides a machine actions for updating firmware."
  825. msgstr "Ermöglicht Gerätemaßnahmen für die Aktualisierung der Firmware."
  826. #: plugin.json
  827. msgctxt "description"
  828. msgid "Provides a monitor stage in Cura."
  829. msgstr "Bietet eine Überwachungsstufe in Cura."
  830. #: plugin.json
  831. msgctxt "description"
  832. msgid "Provides a normal solid mesh view."
  833. msgstr "Bietet eine normale, solide Netzansicht."
  834. #: plugin.json
  835. msgctxt "description"
  836. msgid "Provides a prepare stage in Cura."
  837. msgstr "Bietet eine Vorbereitungsstufe in Cura."
  838. #: plugin.json
  839. msgctxt "description"
  840. msgid "Provides a preview stage in Cura."
  841. msgstr "Bietet eine Vorschaustufe in Cura."
  842. #: plugin.json
  843. msgctxt "description"
  844. msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)."
  845. msgstr "Beschreibt die Durchführung der Geräteeinstellung (z. B. Druckabmessung, Düsengröße usw.)"
  846. #: plugin.json
  847. msgctxt "description"
  848. msgid "Provides capabilities to read and write XML-based material profiles."
  849. msgstr "Bietet Möglichkeiten, um XML-basierte Materialprofile zu lesen und zu schreiben."
  850. #: plugin.json
  851. #, fuzzy
  852. msgctxt "description"
  853. msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)."
  854. msgstr "Ermöglicht Maschinenabläufe für UltiMaker-Maschinen (z. B. Assistent für Bettnivellierung, Auswahl von Upgrades usw.)"
  855. #: plugin.json
  856. msgctxt "description"
  857. msgid "Provides removable drive hotplugging and writing support."
  858. msgstr "Ermöglicht Hotplugging des Wechseldatenträgers und Beschreiben."
  859. #: plugin.json
  860. msgctxt "description"
  861. msgid "Provides support for exporting Cura profiles."
  862. msgstr "Ermöglicht das Exportieren von Cura-Profilen."
  863. #: plugin.json
  864. msgctxt "description"
  865. msgid "Provides support for importing Cura profiles."
  866. msgstr "Ermöglicht das Importieren von Cura-Profilen."
  867. #: plugin.json
  868. msgctxt "description"
  869. msgid "Provides support for importing profiles from g-code files."
  870. msgstr "Ermöglicht das Importieren von Profilen aus G-Code-Dateien."
  871. #: plugin.json
  872. msgctxt "description"
  873. msgid "Provides support for importing profiles from legacy Cura versions."
  874. msgstr "Bietet Unterstützung für den Import von Profilen der Vorgängerversionen von Cura."
  875. #: plugin.json
  876. msgctxt "description"
  877. msgid "Provides support for reading 3MF files."
  878. msgstr "Ermöglicht das Lesen von 3MF-Dateien."
  879. #: plugin.json
  880. msgctxt "description"
  881. msgid "Provides support for reading AMF files."
  882. msgstr "Ermöglicht das Lesen von AMF-Dateien."
  883. #: plugin.json
  884. #, fuzzy
  885. msgctxt "description"
  886. msgid "Provides support for reading Ultimaker Format Packages."
  887. msgstr "Bietet Unterstützung für das Lesen von UltiMaker Format Packages."
  888. #: plugin.json
  889. msgctxt "description"
  890. msgid "Provides support for reading X3D files."
  891. msgstr "Bietet Unterstützung für das Lesen von X3D-Dateien."
  892. #: plugin.json
  893. msgctxt "description"
  894. msgid "Provides support for reading model files."
  895. msgstr "Unterstützt das Lesen von Modelldateien."
  896. #: plugin.json
  897. msgctxt "description"
  898. msgid "Provides support for writing 3MF files."
  899. msgstr "Bietet Unterstützung für das Schreiben von 3MF-Dateien."
  900. #: plugin.json
  901. #, fuzzy
  902. msgctxt "description"
  903. msgid "Provides support for writing Ultimaker Format Packages."
  904. msgstr "Bietet Unterstützung für das Schreiben von UltiMaker Format Packages."
  905. #: plugin.json
  906. msgctxt "description"
  907. msgid "Provides the Per Model Settings."
  908. msgstr "Ermöglicht die Einstellungen pro Objekt."
  909. #: plugin.json
  910. msgctxt "description"
  911. msgid "Provides the X-Ray view."
  912. msgstr "Stellt die Röntgen-Ansicht bereit."
  913. #: plugin.json
  914. msgctxt "description"
  915. msgid "Provides the link to the CuraEngine slicing backend."
  916. msgstr "Stellt die Verbindung zum Slicing-Backend der CuraEngine her."
  917. #: plugin.json
  918. msgctxt "description"
  919. msgid "Provides the preview of sliced layerdata."
  920. msgstr "Stellt eine Vorschau der Daten der Slice-Ebene bereit."
  921. #: plugin.json
  922. msgctxt "description"
  923. msgid "Reads g-code from a compressed archive."
  924. msgstr "Liest G-Code-Format aus einem komprimierten Archiv."
  925. #: plugin.json
  926. msgctxt "name"
  927. msgid "Removable Drive Output Device Plugin"
  928. msgstr "Ausgabegerät-Plugin für Wechseldatenträger"
  929. #: plugin.json
  930. msgctxt "name"
  931. msgid "Sentry Logger"
  932. msgstr "Sentry-Protokolleinrichtung"
  933. #: plugin.json
  934. msgctxt "name"
  935. msgid "Simulation View"
  936. msgstr "Simulationsansicht"
  937. #: plugin.json
  938. msgctxt "name"
  939. msgid "Slice info"
  940. msgstr "Slice-Informationen"
  941. #: plugin.json
  942. msgctxt "name"
  943. msgid "Solid View"
  944. msgstr "Solide Ansicht"
  945. #: plugin.json
  946. msgctxt "description"
  947. msgid "Submits anonymous slice info. Can be disabled through preferences."
  948. msgstr "Sendet anonymisierte Slice-Informationen. Kann in den Einstellungen deaktiviert werden."
  949. #: plugin.json
  950. msgctxt "name"
  951. msgid "Support Eraser"
  952. msgstr "Stützstruktur-Radierer"
  953. #: plugin.json
  954. msgctxt "name"
  955. msgid "Trimesh Reader"
  956. msgstr "Trimesh Reader"
  957. #: plugin.json
  958. msgctxt "name"
  959. msgid "UFP Reader"
  960. msgstr "UFP-Reader"
  961. #: plugin.json
  962. msgctxt "name"
  963. msgid "UFP Writer"
  964. msgstr "UFP-Writer"
  965. #: plugin.json
  966. msgctxt "name"
  967. msgid "USB printing"
  968. msgstr "USB-Drucken"
  969. #: plugin.json
  970. msgctxt "name"
  971. msgid "Ultimaker Digital Library"
  972. msgstr "Digitale Bibliothek von UltiMaker"
  973. #: plugin.json
  974. #, fuzzy
  975. msgctxt "name"
  976. msgid "Ultimaker Network Connection"
  977. msgstr "UltiMaker-Netzwerkverbindung"
  978. #: plugin.json
  979. #, fuzzy
  980. msgctxt "name"
  981. msgid "Ultimaker machine actions"
  982. msgstr "UltiMaker-Maschinenabläufe"
  983. #: plugin.json
  984. msgctxt "description"
  985. msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
  986. msgstr "Aktualisiert Konfigurationen von Cura 2.1 auf Cura 2.2."
  987. #: plugin.json
  988. msgctxt "description"
  989. msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
  990. msgstr "Aktualisiert Konfigurationen von Cura 2.2 auf Cura 2.4."
  991. #: plugin.json
  992. msgctxt "description"
  993. msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
  994. msgstr "Aktualisiert Konfigurationen von Cura 2.5 auf Cura 2.6."
  995. #: plugin.json
  996. msgctxt "description"
  997. msgid "Upgrades configurations from Cura 2.6 to Cura 2.7."
  998. msgstr "Aktualisiert Konfigurationen von Cura 2.6 auf Cura 2.7."
  999. #: plugin.json
  1000. msgctxt "description"
  1001. msgid "Upgrades configurations from Cura 2.7 to Cura 3.0."
  1002. msgstr "Aktualisiert Konfigurationen von Cura 2.7 auf Cura 3.0."
  1003. #: plugin.json
  1004. msgctxt "description"
  1005. msgid "Upgrades configurations from Cura 3.0 to Cura 3.1."
  1006. msgstr "Aktualisiert Konfigurationen von Cura 3.0 auf Cura 3.1."
  1007. #: plugin.json
  1008. msgctxt "description"
  1009. msgid "Upgrades configurations from Cura 3.2 to Cura 3.3."
  1010. msgstr "Aktualisiert Konfigurationen von Cura 3.2 auf Cura 3.3."
  1011. #: plugin.json
  1012. msgctxt "description"
  1013. msgid "Upgrades configurations from Cura 3.3 to Cura 3.4."
  1014. msgstr "Aktualisiert Konfigurationen von Cura 3.3 auf Cura 3.4."
  1015. #: plugin.json
  1016. msgctxt "description"
  1017. msgid "Upgrades configurations from Cura 3.4 to Cura 3.5."
  1018. msgstr "Aktualisiert Konfigurationen von Cura 3.4 auf Cura 3.5."
  1019. #: plugin.json
  1020. msgctxt "description"
  1021. msgid "Upgrades configurations from Cura 3.5 to Cura 4.0."
  1022. msgstr "Aktualisiert Konfigurationen von Cura 3.5 auf Cura 4.0."
  1023. #: plugin.json
  1024. msgctxt "description"
  1025. msgid "Upgrades configurations from Cura 4.0 to Cura 4.1."
  1026. msgstr "Aktualisiert Konfigurationen von Cura 4.0 auf Cura 4.1."
  1027. #: plugin.json
  1028. msgctxt "description"
  1029. msgid "Upgrades configurations from Cura 4.1 to Cura 4.2."
  1030. msgstr "Aktualisiert Konfigurationen von Cura 4.1 auf Cura 4.2."
  1031. #: plugin.json
  1032. msgctxt "description"
  1033. msgid "Upgrades configurations from Cura 4.11 to Cura 4.12."
  1034. msgstr "Aktualisiert die Konfigurationen von Cura 4.11 auf Cura 4.12."
  1035. #: plugin.json
  1036. msgctxt "description"
  1037. msgid "Upgrades configurations from Cura 4.13 to Cura 5.0."
  1038. msgstr "Aktualisiert Konfigurationen von Cura 4.13 auf Cura 5.0."
  1039. #: plugin.json
  1040. msgctxt "description"
  1041. msgid "Upgrades configurations from Cura 4.2 to Cura 4.3."
  1042. msgstr "Aktualisiert Konfigurationen von Cura 4.2 auf Cura 4.3."
  1043. #: plugin.json
  1044. msgctxt "description"
  1045. msgid "Upgrades configurations from Cura 4.3 to Cura 4.4."
  1046. msgstr "Aktualisiert Konfigurationen von Cura 4.3 auf Cura 4.4."
  1047. #: plugin.json
  1048. msgctxt "description"
  1049. msgid "Upgrades configurations from Cura 4.4 to Cura 4.5."
  1050. msgstr "Upgrade der Konfigurationen von Cura 4.4 auf Cura 4.5."
  1051. #: plugin.json
  1052. msgctxt "description"
  1053. msgid "Upgrades configurations from Cura 4.5 to Cura 4.6."
  1054. msgstr "Upgrade der Konfigurationen von Cura 4.5 auf Cura 4.6."
  1055. #: plugin.json
  1056. msgctxt "description"
  1057. msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2."
  1058. msgstr "Upgrade der Konfigurationen von Cura 4.6.0 auf Cura 4.6.2."
  1059. #: plugin.json
  1060. msgctxt "description"
  1061. msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7."
  1062. msgstr "Aktualisiert Konfigurationen von Cura 4.6.2 auf Cura 4.7."
  1063. #: plugin.json
  1064. msgctxt "description"
  1065. msgid "Upgrades configurations from Cura 4.7 to Cura 4.8."
  1066. msgstr "Upgrade der Konfigurationen von Cura 4.7 auf Cura 4.8."
  1067. #: plugin.json
  1068. msgctxt "description"
  1069. msgid "Upgrades configurations from Cura 4.8 to Cura 4.9."
  1070. msgstr "Upgrade der Konfigurationen von Cura 4.8 auf Cura 4.9."
  1071. #: plugin.json
  1072. msgctxt "description"
  1073. msgid "Upgrades configurations from Cura 4.9 to Cura 4.10."
  1074. msgstr "Upgrade der Konfigurationen von Cura 4.9 auf Cura 4.10."
  1075. #: plugin.json
  1076. #, fuzzy
  1077. msgctxt "description"
  1078. msgid "Upgrades configurations from Cura 5.2 to Cura 5.3."
  1079. msgstr "Aktualisiert Konfigurationen von Cura 3.2 auf Cura 3.3."
  1080. #: plugin.json
  1081. msgctxt "name"
  1082. msgid "Version Upgrade 2.1 to 2.2"
  1083. msgstr "Upgrade von Version 2.1 auf 2.2"
  1084. #: plugin.json
  1085. msgctxt "name"
  1086. msgid "Version Upgrade 2.2 to 2.4"
  1087. msgstr "Upgrade von Version 2.2 auf 2.4"
  1088. #: plugin.json
  1089. msgctxt "name"
  1090. msgid "Version Upgrade 2.5 to 2.6"
  1091. msgstr "Upgrade von Version 2.5 auf 2.6"
  1092. #: plugin.json
  1093. msgctxt "name"
  1094. msgid "Version Upgrade 2.6 to 2.7"
  1095. msgstr "Upgrade von Version 2.6 auf 2.7"
  1096. #: plugin.json
  1097. msgctxt "name"
  1098. msgid "Version Upgrade 2.7 to 3.0"
  1099. msgstr "Upgrade von Version 2.7 auf 3.0"
  1100. #: plugin.json
  1101. msgctxt "name"
  1102. msgid "Version Upgrade 3.0 to 3.1"
  1103. msgstr "Upgrade von Version 3.0 auf 3.1"
  1104. #: plugin.json
  1105. msgctxt "name"
  1106. msgid "Version Upgrade 3.2 to 3.3"
  1107. msgstr "Upgrade von Version 3.2 auf 3.3"
  1108. #: plugin.json
  1109. msgctxt "name"
  1110. msgid "Version Upgrade 3.3 to 3.4"
  1111. msgstr "Upgrade von Version 3.3 auf 3.4"
  1112. #: plugin.json
  1113. msgctxt "name"
  1114. msgid "Version Upgrade 3.4 to 3.5"
  1115. msgstr "Upgrade von Version 3.4 auf 3.5"
  1116. #: plugin.json
  1117. msgctxt "name"
  1118. msgid "Version Upgrade 3.5 to 4.0"
  1119. msgstr "Upgrade von Version 3.5 auf 4.0"
  1120. #: plugin.json
  1121. msgctxt "name"
  1122. msgid "Version Upgrade 4.0 to 4.1"
  1123. msgstr "Upgrade von Version 4.0 auf 4.1"
  1124. #: plugin.json
  1125. msgctxt "name"
  1126. msgid "Version Upgrade 4.1 to 4.2"
  1127. msgstr "Upgrade von Version 4.1 auf 4.2"
  1128. #: plugin.json
  1129. msgctxt "name"
  1130. msgid "Version Upgrade 4.11 to 4.12"
  1131. msgstr "Upgrade von Version 4.11 auf 4.12"
  1132. #: plugin.json
  1133. msgctxt "name"
  1134. msgid "Version Upgrade 4.13 to 5.0"
  1135. msgstr "Upgrade von Version 4.13 auf 5.0"
  1136. #: plugin.json
  1137. msgctxt "name"
  1138. msgid "Version Upgrade 4.2 to 4.3"
  1139. msgstr "Upgrade von Version 4.2 auf 4.3"
  1140. #: plugin.json
  1141. msgctxt "name"
  1142. msgid "Version Upgrade 4.3 to 4.4"
  1143. msgstr "Upgrade von Version 4.3 auf 4.4"
  1144. #: plugin.json
  1145. msgctxt "name"
  1146. msgid "Version Upgrade 4.4 to 4.5"
  1147. msgstr "Upgrade von Version 4.4 auf 4.5"
  1148. #: plugin.json
  1149. msgctxt "name"
  1150. msgid "Version Upgrade 4.5 to 4.6"
  1151. msgstr "Upgrade von Version 4.5 auf 4.6"
  1152. #: plugin.json
  1153. msgctxt "name"
  1154. msgid "Version Upgrade 4.6.0 to 4.6.2"
  1155. msgstr "Upgrade von Version 4.6.0 auf 4.6.2"
  1156. #: plugin.json
  1157. msgctxt "name"
  1158. msgid "Version Upgrade 4.6.2 to 4.7"
  1159. msgstr "Upgrade von Version 4.6.2 auf 4.7"
  1160. #: plugin.json
  1161. msgctxt "name"
  1162. msgid "Version Upgrade 4.7 to 4.8"
  1163. msgstr "Upgrade von Version 4.7 auf 4.8"
  1164. #: plugin.json
  1165. msgctxt "name"
  1166. msgid "Version Upgrade 4.8 to 4.9"
  1167. msgstr "Upgrade von Version 4.8 auf 4.9"
  1168. #: plugin.json
  1169. msgctxt "name"
  1170. msgid "Version Upgrade 4.9 to 4.10"
  1171. msgstr "Upgrade von Version 4.9 auf 4.10"
  1172. #: plugin.json
  1173. #, fuzzy
  1174. msgctxt "name"
  1175. msgid "Version Upgrade 5.2 to 5.3"
  1176. msgstr "Upgrade von Version 3.2 auf 3.3"
  1177. #: plugin.json
  1178. msgctxt "description"
  1179. msgid "Writes g-code to a compressed archive."
  1180. msgstr "G-Code wird in ein komprimiertes Archiv geschrieben."
  1181. #: plugin.json
  1182. msgctxt "description"
  1183. msgid "Writes g-code to a file."
  1184. msgstr "Schreibt G-Code in eine Datei."
  1185. #: plugin.json
  1186. msgctxt "name"
  1187. msgid "X-Ray View"
  1188. msgstr "Röntgen-Ansicht"
  1189. #: plugin.json
  1190. msgctxt "name"
  1191. msgid "X3D Reader"
  1192. msgstr "X3D-Reader"
  1193. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:547
  1194. #, python-brace-format
  1195. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  1196. msgid "Project file <filename>{0}</filename> contains an unknown machine type <message>{1}</message>. Cannot import the machine. Models will be imported instead."
  1197. msgstr "Projektdatei <filename>{0}</filename> enthält einen unbekannten Maschinentyp <message>{1}</message>. Importieren der Maschine ist nicht möglich. Stattdessen werden die Modelle importiert."
  1198. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:550
  1199. msgctxt "@info:title"
  1200. msgid "Open Project File"
  1201. msgstr "Projektdatei öffnen"
  1202. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:631
  1203. #: plugins/3MFReader/WorkspaceDialog.qml:99
  1204. #: plugins/3MFReader/WorkspaceDialog.qml:127
  1205. #: plugins/3MFReader/WorkspaceDialog.qml:134
  1206. #, fuzzy
  1207. msgctxt "@button"
  1208. msgid "Create new"
  1209. msgstr "Neu erstellen"
  1210. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:681
  1211. #, python-brace-format
  1212. msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
  1213. msgid "Project file <filename>{0}</filename> is suddenly inaccessible: <message>{1}</message>."
  1214. msgstr "Auf Projektdatei <filename>{0}</filename> kann plötzlich nicht mehr zugegriffen werden: <message>{1}</message>."
  1215. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:682
  1216. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:690
  1217. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:709
  1218. msgctxt "@info:title"
  1219. msgid "Can't Open Project File"
  1220. msgstr "Projektdatei kann nicht geöffnet werden"
  1221. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:689
  1222. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:707
  1223. #, python-brace-format
  1224. msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
  1225. msgid "Project file <filename>{0}</filename> is corrupt: <message>{1}</message>."
  1226. msgstr "Projektdatei <filename>{0}</filename> ist beschädigt: <message>{1}</message>."
  1227. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:754
  1228. #, fuzzy, python-brace-format
  1229. msgctxt "@info:error Don't translate the XML tag <filename>!"
  1230. msgid "Project file <filename>{0}</filename> is made using profiles that are unknown to this version of Ultimaker Cura."
  1231. msgstr "Projektdatei <filename>{0}</filename> verwendet Profile, die nicht mit dieser UltiMaker Cura-Version kompatibel sind."
  1232. #: plugins/3MFReader/WorkspaceDialog.py:233
  1233. msgctxt "@title:tab"
  1234. msgid "Recommended"
  1235. msgstr "Empfohlen"
  1236. #: plugins/3MFReader/WorkspaceDialog.py:235
  1237. msgctxt "@title:tab"
  1238. msgid "Custom"
  1239. msgstr "Benutzerdefiniert"
  1240. #: plugins/3MFReader/WorkspaceDialog.py:411
  1241. msgctxt "@info:status"
  1242. msgid "The material used in this project relies on some material definitions not available in Cura, this might produce undesirable print results. We highly recommend installing the full material package from the Marketplace."
  1243. msgstr "Das in diesem Projekt verwendete Material basiert auf einigen Materialdefinitionen, die in Cura nicht verfügbar sind. Dies kann zu unerwünschten Druckergebnissen führen. Wir empfehlen dringend, das komplette Materialpaket aus dem Marketplace zu installieren."
  1244. #: plugins/3MFReader/WorkspaceDialog.py:413
  1245. msgctxt "@info:title"
  1246. msgid "Material profiles not installed"
  1247. msgstr "Materialprofile nicht installiert"
  1248. #: plugins/3MFReader/WorkspaceDialog.py:426
  1249. msgctxt "@action:button"
  1250. msgid "Install Materials"
  1251. msgstr "Materialien installieren"
  1252. #: plugins/3MFReader/WorkspaceDialog.qml:15
  1253. msgctxt "@title:window"
  1254. msgid "Open Project"
  1255. msgstr "Projekt öffnen"
  1256. #: plugins/3MFReader/WorkspaceDialog.qml:31
  1257. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:61
  1258. msgctxt "@action:title"
  1259. msgid "Summary - Cura Project"
  1260. msgstr "Zusammenfassung – Cura-Projekt"
  1261. #: plugins/3MFReader/WorkspaceDialog.qml:65
  1262. msgctxt "@action:ComboBox Update/override existing profile"
  1263. msgid "Update existing"
  1264. msgstr "Vorhandenes aktualisieren"
  1265. #: plugins/3MFReader/WorkspaceDialog.qml:66
  1266. msgctxt "@action:ComboBox Save settings in a new profile"
  1267. msgid "Create new"
  1268. msgstr "Neu erstellen"
  1269. #: plugins/3MFReader/WorkspaceDialog.qml:83
  1270. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:97
  1271. msgctxt "@action:label"
  1272. msgid "Printer settings"
  1273. msgstr "Druckereinstellungen"
  1274. #: plugins/3MFReader/WorkspaceDialog.qml:92
  1275. #: plugins/3MFReader/WorkspaceRow.qml:23
  1276. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:106
  1277. msgctxt "@action:label"
  1278. msgid "Type"
  1279. msgstr "Typ"
  1280. #: plugins/3MFReader/WorkspaceDialog.qml:98
  1281. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:121
  1282. msgctxt "@action:label"
  1283. msgid "Printer Group"
  1284. msgstr "Druckergruppe"
  1285. #: plugins/3MFReader/WorkspaceDialog.qml:103
  1286. #, fuzzy
  1287. msgctxt "@action:label"
  1288. msgid "Open With"
  1289. msgstr "Öffnen"
  1290. #: plugins/3MFReader/WorkspaceDialog.qml:104
  1291. msgctxt "@info:tooltip"
  1292. msgid "Printer settings will be updated to match the settings saved with the project."
  1293. msgstr ""
  1294. #: plugins/3MFReader/WorkspaceDialog.qml:156
  1295. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:222
  1296. msgctxt "@action:label"
  1297. msgid "Profile settings"
  1298. msgstr "Profileinstellungen"
  1299. #: plugins/3MFReader/WorkspaceDialog.qml:166
  1300. #: plugins/3MFReader/WorkspaceDialog.qml:238
  1301. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:121
  1302. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:246
  1303. msgctxt "@action:label"
  1304. msgid "Name"
  1305. msgstr "Name"
  1306. #: plugins/3MFReader/WorkspaceDialog.qml:172
  1307. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:263
  1308. msgctxt "@action:label"
  1309. msgid "Intent"
  1310. msgstr "Intent"
  1311. #: plugins/3MFReader/WorkspaceDialog.qml:178
  1312. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:230
  1313. msgctxt "@action:label"
  1314. msgid "Not in profile"
  1315. msgstr "Nicht im Profil"
  1316. #: plugins/3MFReader/WorkspaceDialog.qml:179
  1317. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:235
  1318. msgctxt "@action:label"
  1319. msgid "%1 override"
  1320. msgid_plural "%1 overrides"
  1321. msgstr[0] "%1 überschreiben"
  1322. msgstr[1] "%1 überschreibt"
  1323. #: plugins/3MFReader/WorkspaceDialog.qml:185
  1324. msgctxt "@action:label"
  1325. msgid "Derivative from"
  1326. msgstr "Ableitung von"
  1327. #: plugins/3MFReader/WorkspaceDialog.qml:186
  1328. msgctxt "@action:label"
  1329. msgid "%1, %2 override"
  1330. msgid_plural "%1, %2 overrides"
  1331. msgstr[0] "%1, %2 überschreiben"
  1332. msgstr[1] "%1, %2 überschreibt"
  1333. #: plugins/3MFReader/WorkspaceDialog.qml:226
  1334. msgctxt "@action:label"
  1335. msgid "Material settings"
  1336. msgstr "Materialeinstellungen"
  1337. #: plugins/3MFReader/WorkspaceDialog.qml:280
  1338. msgctxt "@action:label"
  1339. msgid "Setting visibility"
  1340. msgstr "Sichtbarkeit einstellen"
  1341. #: plugins/3MFReader/WorkspaceDialog.qml:290
  1342. msgctxt "@action:label"
  1343. msgid "Mode"
  1344. msgstr "Modus"
  1345. #: plugins/3MFReader/WorkspaceDialog.qml:296
  1346. msgctxt "@action:label"
  1347. msgid "%1 out of %2"
  1348. msgstr "%1 von %2"
  1349. #: plugins/3MFReader/WorkspaceDialog.qml:321
  1350. msgctxt "@action:warning"
  1351. msgid "Loading a project will clear all models on the build plate."
  1352. msgstr "Das Laden eines Projekts entfernt alle Modelle von der Druckplatte."
  1353. #: plugins/3MFReader/WorkspaceDialog.qml:367
  1354. msgctxt "@label"
  1355. msgid "The material used in this project is currently not installed in Cura.<br/>Install the material profile and reopen the project."
  1356. msgstr "Das in diesem Projekt verwendete Material ist derzeit nicht in Cura installiert.<br/>Installieren Sie das Materialprofil und öffnen Sie das Projekt erneut."
  1357. #: plugins/3MFReader/WorkspaceDialog.qml:392
  1358. msgctxt "@action:button"
  1359. msgid "Open"
  1360. msgstr "Öffnen"
  1361. #: plugins/3MFReader/WorkspaceDialog.qml:398
  1362. msgctxt "@action:button"
  1363. msgid "Open project anyway"
  1364. msgstr "Projekt trotzdem öffnen"
  1365. #: plugins/3MFReader/WorkspaceDialog.qml:407
  1366. msgctxt "@action:button"
  1367. msgid "Install missing material"
  1368. msgstr "Fehlendes Material installieren"
  1369. #: plugins/3MFReader/__init__.py:27 plugins/3MFReader/__init__.py:33
  1370. msgctxt "@item:inlistbox"
  1371. msgid "3MF File"
  1372. msgstr "3MF-Datei"
  1373. #: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31
  1374. msgctxt "@error:zip"
  1375. msgid "3MF Writer plug-in is corrupt."
  1376. msgstr "Das 3MF-Writer-Plugin ist beschädigt."
  1377. #: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37
  1378. msgctxt "@error"
  1379. msgid "There is no workspace yet to write. Please add a printer first."
  1380. msgstr "Es ist noch kein Workspace zum Speichern vorhanden. Bitte fügen Sie zuerst einen Drucker hinzu."
  1381. #: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64
  1382. #: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97
  1383. msgctxt "@error:zip"
  1384. msgid "No permission to write the workspace here."
  1385. msgstr "Keine Erlaubnis zum Beschreiben dieses Arbeitsbereichs."
  1386. #: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:101
  1387. msgctxt "@error:zip"
  1388. msgid "The operating system does not allow saving a project file to this location or with this file name."
  1389. msgstr "Das Betriebssystem erlaubt es nicht, eine Projektdatei an diesem Speicherort oder mit diesem Dateinamen zu speichern."
  1390. #: plugins/3MFWriter/ThreeMFWriter.py:240
  1391. msgctxt "@error:zip"
  1392. msgid "Error writing 3mf file."
  1393. msgstr "Fehler beim Schreiben von 3MF-Datei."
  1394. #: plugins/3MFWriter/__init__.py:28
  1395. msgctxt "@item:inlistbox"
  1396. msgid "3MF file"
  1397. msgstr "3MF-Datei"
  1398. #: plugins/3MFWriter/__init__.py:36
  1399. msgctxt "@item:inlistbox"
  1400. msgid "Cura Project 3MF file"
  1401. msgstr "Cura-Projekt 3MF-Datei"
  1402. #: plugins/AMFReader/__init__.py:15
  1403. msgctxt "@item:inlistbox"
  1404. msgid "AMF File"
  1405. msgstr "AMF-Datei"
  1406. #: plugins/CuraDrive/src/CreateBackupJob.py:25
  1407. msgctxt "@info:title"
  1408. msgid "Backups"
  1409. msgstr "Backups"
  1410. #: plugins/CuraDrive/src/CreateBackupJob.py:26
  1411. msgctxt "@info:backup_status"
  1412. msgid "There was an error while uploading your backup."
  1413. msgstr "Beim Versuch, Ihr Backup hochzuladen, trat ein Fehler auf."
  1414. #: plugins/CuraDrive/src/CreateBackupJob.py:46
  1415. msgctxt "@info:backup_status"
  1416. msgid "Creating your backup..."
  1417. msgstr "Ihr Backup wird erstellt..."
  1418. #: plugins/CuraDrive/src/CreateBackupJob.py:55
  1419. msgctxt "@info:backup_status"
  1420. msgid "There was an error while creating your backup."
  1421. msgstr "Beim Erstellen Ihres Backups ist ein Fehler aufgetreten."
  1422. #: plugins/CuraDrive/src/CreateBackupJob.py:59
  1423. msgctxt "@info:backup_status"
  1424. msgid "Uploading your backup..."
  1425. msgstr "Ihr Backup wird hochgeladen..."
  1426. #: plugins/CuraDrive/src/CreateBackupJob.py:69
  1427. msgctxt "@info:backup_status"
  1428. msgid "Your backup has finished uploading."
  1429. msgstr "Ihr Backup wurde erfolgreich hochgeladen."
  1430. #: plugins/CuraDrive/src/CreateBackupJob.py:103
  1431. msgctxt "@error:file_size"
  1432. msgid "The backup exceeds the maximum file size."
  1433. msgstr "Das Backup überschreitet die maximale Dateigröße."
  1434. #: plugins/CuraDrive/src/DriveApiService.py:86
  1435. #: plugins/CuraDrive/src/RestoreBackupJob.py:26
  1436. msgctxt "@info:backup_status"
  1437. msgid "There was an error trying to restore your backup."
  1438. msgstr "Beim Versuch, Ihr Backup wiederherzustellen, trat ein Fehler auf."
  1439. #: plugins/CuraDrive/src/DrivePluginExtension.py:69
  1440. msgctxt "@item:inmenu"
  1441. msgid "Manage backups"
  1442. msgstr "Backups verwalten"
  1443. #: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22
  1444. msgctxt "@button"
  1445. msgid "Want more?"
  1446. msgstr "Möchten Sie mehr?"
  1447. #: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31
  1448. msgctxt "@button"
  1449. msgid "Backup Now"
  1450. msgstr "Jetzt Backup durchführen"
  1451. #: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43
  1452. msgctxt "@checkbox:description"
  1453. msgid "Auto Backup"
  1454. msgstr "Automatisches Backup"
  1455. #: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44
  1456. msgctxt "@checkbox:description"
  1457. msgid "Automatically create a backup each day that Cura is started."
  1458. msgstr "An jedem Tag, an dem Cura gestartet wird, ein automatisches Backup erstellen."
  1459. #: plugins/CuraDrive/src/qml/components/BackupListItem.qml:64
  1460. msgctxt "@button"
  1461. msgid "Restore"
  1462. msgstr "Wiederherstellen"
  1463. #: plugins/CuraDrive/src/qml/components/BackupListItem.qml:93
  1464. msgctxt "@dialog:title"
  1465. msgid "Delete Backup"
  1466. msgstr "Backup löschen"
  1467. #: plugins/CuraDrive/src/qml/components/BackupListItem.qml:94
  1468. msgctxt "@dialog:info"
  1469. msgid "Are you sure you want to delete this backup? This cannot be undone."
  1470. msgstr "Soll dieses Backup wirklich gelöscht werden? Der Vorgang kann nicht rückgängig gemacht werden."
  1471. #: plugins/CuraDrive/src/qml/components/BackupListItem.qml:102
  1472. msgctxt "@dialog:title"
  1473. msgid "Restore Backup"
  1474. msgstr "Backup wiederherstellen"
  1475. #: plugins/CuraDrive/src/qml/components/BackupListItem.qml:103
  1476. msgctxt "@dialog:info"
  1477. msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?"
  1478. msgstr "Cura muss neu gestartet werden, um Ihre Datensicherung wiederherzustellen. Möchten Sie Cura jetzt schließen?"
  1479. #: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21
  1480. msgctxt "@backuplist:label"
  1481. msgid "Cura Version"
  1482. msgstr "Cura-Version"
  1483. #: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29
  1484. msgctxt "@backuplist:label"
  1485. msgid "Machines"
  1486. msgstr "Maschinen"
  1487. #: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37
  1488. msgctxt "@backuplist:label"
  1489. msgid "Materials"
  1490. msgstr "Materialien"
  1491. #: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45
  1492. msgctxt "@backuplist:label"
  1493. msgid "Profiles"
  1494. msgstr "Profile"
  1495. #: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53
  1496. msgctxt "@backuplist:label"
  1497. msgid "Plugins"
  1498. msgstr "Plugins"
  1499. #: plugins/CuraDrive/src/qml/main.qml:25
  1500. msgctxt "@title:window"
  1501. msgid "Cura Backups"
  1502. msgstr "Cura-Backups"
  1503. #: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28
  1504. msgctxt "@title"
  1505. msgid "My Backups"
  1506. msgstr "Meine Backups"
  1507. #: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:36
  1508. msgctxt "@empty_state"
  1509. msgid "You don't have any backups currently. Use the 'Backup Now' button to create one."
  1510. msgstr "Sie verfügen derzeit über keine Backups. Verwenden Sie die Schaltfläche ‚Jetzt Backup erstellen‘, um ein Backup zu erstellen."
  1511. #: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:55
  1512. msgctxt "@backup_limit_info"
  1513. msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones."
  1514. msgstr "In der Vorschau-Phase sind Sie auf 5 sichtbare Backups beschränkt. Ein Backup entfernen, um ältere anzusehen."
  1515. #: plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34
  1516. msgctxt "@description"
  1517. msgid "Backup and synchronize your Cura settings."
  1518. msgstr "Ihre Cura-Einstellungen sichern und synchronisieren."
  1519. #: plugins/CuraDrive/src/qml/pages/WelcomePage.qml:47
  1520. #: resources/qml/Account/GeneralOperations.qml:49
  1521. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:180
  1522. #: resources/qml/WelcomePages/CloudContent.qml:212
  1523. msgctxt "@button"
  1524. msgid "Sign in"
  1525. msgstr "Anmelden"
  1526. #: plugins/CuraEngineBackend/CuraEngineBackend.py:162
  1527. msgctxt "@message"
  1528. msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker."
  1529. msgstr "Fehler beim Slicing mit einem unerwarteten Fehler. Bitte denken Sie daran, Fehler in unserem Issue Tracker zu melden."
  1530. #: plugins/CuraEngineBackend/CuraEngineBackend.py:163
  1531. msgctxt "@message:title"
  1532. msgid "Slicing failed"
  1533. msgstr "Slicing fehlgeschlagen"
  1534. #: plugins/CuraEngineBackend/CuraEngineBackend.py:168
  1535. msgctxt "@message:button"
  1536. msgid "Report a bug"
  1537. msgstr "Einen Fehler melden"
  1538. #: plugins/CuraEngineBackend/CuraEngineBackend.py:169
  1539. msgctxt "@message:description"
  1540. msgid "Report a bug on UltiMaker Cura's issue tracker."
  1541. msgstr "Einen Fehler im Issue Tracker von UltiMaker Cura melden."
  1542. #: plugins/CuraEngineBackend/CuraEngineBackend.py:401
  1543. msgctxt "@info:status"
  1544. msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration."
  1545. msgstr "Slicing mit dem aktuellen Material nicht möglich, da es mit der gewählten Maschine oder Konfiguration nicht kompatibel ist."
  1546. #: plugins/CuraEngineBackend/CuraEngineBackend.py:402
  1547. #: plugins/CuraEngineBackend/CuraEngineBackend.py:435
  1548. #: plugins/CuraEngineBackend/CuraEngineBackend.py:462
  1549. #: plugins/CuraEngineBackend/CuraEngineBackend.py:474
  1550. #: plugins/CuraEngineBackend/CuraEngineBackend.py:486
  1551. #: plugins/CuraEngineBackend/CuraEngineBackend.py:499
  1552. msgctxt "@info:title"
  1553. msgid "Unable to slice"
  1554. msgstr "Slicing nicht möglich"
  1555. #: plugins/CuraEngineBackend/CuraEngineBackend.py:434
  1556. #, python-brace-format
  1557. msgctxt "@info:status"
  1558. msgid "Unable to slice with the current settings. The following settings have errors: {0}"
  1559. msgstr "Die aktuellen Einstellungen lassen kein Schneiden (Slicing) zu. Die folgenden Einstellungen sind fehlerhaft:{0}"
  1560. #: plugins/CuraEngineBackend/CuraEngineBackend.py:461
  1561. #, python-brace-format
  1562. msgctxt "@info:status"
  1563. msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}"
  1564. msgstr "Aufgrund der Pro-Modell-Einstellungen ist kein Schneiden (Slicing) möglich. Die folgenden Einstellungen sind für ein oder mehrere Modelle fehlerhaft: {error_labels}"
  1565. #: plugins/CuraEngineBackend/CuraEngineBackend.py:473
  1566. msgctxt "@info:status"
  1567. msgid "Unable to slice because the prime tower or prime position(s) are invalid."
  1568. msgstr "Schneiden (Slicing) ist nicht möglich, da der Einzugsturm oder die Einzugsposition(en) ungültig ist (sind)."
  1569. #: plugins/CuraEngineBackend/CuraEngineBackend.py:485
  1570. #, python-format
  1571. msgctxt "@info:status"
  1572. msgid "Unable to slice because there are objects associated with disabled Extruder %s."
  1573. msgstr "Schneiden (Slicing) ist nicht möglich, da Objekte vorhanden sind, die mit dem deaktivierten Extruder %s verbunden sind."
  1574. #: plugins/CuraEngineBackend/CuraEngineBackend.py:495
  1575. msgctxt "@info:status"
  1576. msgid ""
  1577. "Please review settings and check if your models:\n"
  1578. "- Fit within the build volume\n"
  1579. "- Are assigned to an enabled extruder\n"
  1580. "- Are not all set as modifier meshes"
  1581. msgstr ""
  1582. "Bitte überprüfen Sie die Einstellungen und prüfen Sie, ob Ihre Modelle:\n"
  1583. "- Mit der Druckraumgröße kompatibel sind\n"
  1584. "- Einem aktiven Extruder zugewiesen sind\n"
  1585. "- Nicht alle als Modifier Meshes eingerichtet sind"
  1586. #: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52
  1587. #: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260
  1588. msgctxt "@info:status"
  1589. msgid "Processing Layers"
  1590. msgstr "Schichten werden verarbeitet"
  1591. #: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261
  1592. msgctxt "@info:title"
  1593. msgid "Information"
  1594. msgstr "Informationen"
  1595. #: plugins/CuraProfileReader/__init__.py:14
  1596. #: plugins/CuraProfileWriter/__init__.py:14
  1597. msgctxt "@item:inlistbox"
  1598. msgid "Cura Profile"
  1599. msgstr "Cura-Profil"
  1600. #: plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:216
  1601. msgctxt "@option"
  1602. msgid "Save Cura project and print file"
  1603. msgstr "Cura-Projekt speichern und Datei drucken"
  1604. #: plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:217
  1605. msgctxt "@option"
  1606. msgid "Save Cura project"
  1607. msgstr "Cura-Projekt speichern"
  1608. #: plugins/DigitalLibrary/src/DigitalFactoryProjectResponse.py:19
  1609. msgctxt "@text Placeholder for the username if it has been deleted"
  1610. msgid "deleted user"
  1611. msgstr "gelöschter Benutzer"
  1612. #: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127
  1613. msgctxt "@info"
  1614. msgid "Could not access update information."
  1615. msgstr "Zugriff auf Update-Informationen nicht möglich."
  1616. #: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17
  1617. #, python-brace-format
  1618. msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  1619. msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}."
  1620. msgstr "Es können neue Funktionen oder Bug-Fixes für Ihren {machine_name} verfügbar sein! Falls noch nicht geschehen, wird empfohlen, die Firmware auf Ihrem Drucker auf Version {latest_version} zu aktualisieren."
  1621. #: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22
  1622. #, python-format
  1623. msgctxt "@info:title The %s gets replaced with the printer name."
  1624. msgid "New %s stable firmware available"
  1625. msgstr "Neue %s-stabile Firmware verfügbar"
  1626. #: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28
  1627. msgctxt "@action:button"
  1628. msgid "How to update"
  1629. msgstr "Anleitung für die Aktualisierung"
  1630. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27
  1631. msgctxt "@action"
  1632. msgid "Update Firmware"
  1633. msgstr "Firmware aktualisieren"
  1634. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31
  1635. msgctxt "@title"
  1636. msgid "Update Firmware"
  1637. msgstr "Firmware aktualisieren"
  1638. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:37
  1639. msgctxt "@label"
  1640. msgid "Firmware is the piece of software running directly on your 3D printer. This firmware controls the step motors, regulates the temperature and ultimately makes your printer work."
  1641. msgstr "Die Firmware ist der Teil der Software, der direkt auf Ihrem 3D-Drucker läuft. Diese Firmware kontrolliert die Schrittmotoren, reguliert die Temperatur und sorgt letztlich dafür, dass Ihr Drucker funktioniert."
  1642. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:43
  1643. msgctxt "@label"
  1644. msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements."
  1645. msgstr "Die mit neuen Druckern gelieferte Firmware funktioniert, allerdings enthalten neue Versionen üblicherweise mehr Funktionen und Verbesserungen."
  1646. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:55
  1647. msgctxt "@action:button"
  1648. msgid "Automatically upgrade Firmware"
  1649. msgstr "Firmware automatisch aktualisieren"
  1650. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:66
  1651. msgctxt "@action:button"
  1652. msgid "Upload custom Firmware"
  1653. msgstr "Benutzerdefinierte Firmware hochladen"
  1654. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:79
  1655. msgctxt "@label"
  1656. msgid "Firmware can not be updated because there is no connection with the printer."
  1657. msgstr "Firmware kann nicht aktualisiert werden, da keine Verbindung zum Drucker besteht."
  1658. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:86
  1659. msgctxt "@label"
  1660. msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware."
  1661. msgstr "Firmware kann nicht aktualisiert werden, da die Verbindung zum Drucker die Firmware-Aktualisierung nicht unterstützt."
  1662. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:93
  1663. msgctxt "@title:window"
  1664. msgid "Select custom firmware"
  1665. msgstr "Benutzerdefinierte Firmware wählen"
  1666. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:113
  1667. msgctxt "@title:window"
  1668. msgid "Firmware Update"
  1669. msgstr "Firmware-Aktualisierung"
  1670. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:137
  1671. msgctxt "@label"
  1672. msgid "Updating firmware."
  1673. msgstr "Die Firmware wird aktualisiert."
  1674. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:139
  1675. msgctxt "@label"
  1676. msgid "Firmware update completed."
  1677. msgstr "Firmware-Aktualisierung abgeschlossen."
  1678. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:141
  1679. msgctxt "@label"
  1680. msgid "Firmware update failed due to an unknown error."
  1681. msgstr "Die Firmware-Aktualisierung ist aufgrund eines unbekannten Fehlers fehlgeschlagen."
  1682. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143
  1683. msgctxt "@label"
  1684. msgid "Firmware update failed due to an communication error."
  1685. msgstr "Die Firmware-Aktualisierung ist aufgrund eines Kommunikationsfehlers fehlgeschlagen."
  1686. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145
  1687. msgctxt "@label"
  1688. msgid "Firmware update failed due to an input/output error."
  1689. msgstr "Die Firmware-Aktualisierung ist aufgrund eines Eingabe-/Ausgabefehlers fehlgeschlagen."
  1690. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147
  1691. msgctxt "@label"
  1692. msgid "Firmware update failed due to missing firmware."
  1693. msgstr "Die Firmware-Aktualisierung ist aufgrund von fehlender Firmware fehlgeschlagen."
  1694. #: plugins/GCodeGzReader/__init__.py:17 plugins/GCodeGzWriter/__init__.py:17
  1695. msgctxt "@item:inlistbox"
  1696. msgid "Compressed G-code File"
  1697. msgstr "Komprimierte G-Code-Datei"
  1698. #: plugins/GCodeGzWriter/GCodeGzWriter.py:43
  1699. msgctxt "@error:not supported"
  1700. msgid "GCodeGzWriter does not support text mode."
  1701. msgstr "GCodeWriter unterstützt keinen Textmodus."
  1702. #: plugins/GCodeProfileReader/__init__.py:14 plugins/GCodeReader/__init__.py:14
  1703. #: plugins/GCodeWriter/__init__.py:16
  1704. msgctxt "@item:inlistbox"
  1705. msgid "G-code File"
  1706. msgstr "G-Code-Datei"
  1707. #: plugins/GCodeReader/FlavorParser.py:350
  1708. msgctxt "@info:status"
  1709. msgid "Parsing G-code"
  1710. msgstr "G-Code parsen"
  1711. #: plugins/GCodeReader/FlavorParser.py:352
  1712. #: plugins/GCodeReader/FlavorParser.py:506
  1713. msgctxt "@info:title"
  1714. msgid "G-code Details"
  1715. msgstr "G-Code-Details"
  1716. #: plugins/GCodeReader/FlavorParser.py:504
  1717. msgctxt "@info:generic"
  1718. msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate."
  1719. msgstr "Stellen Sie sicher, dass der G-Code für Ihren Drucker und Ihre Druckerkonfiguration geeignet ist, bevor Sie die Datei senden. Der Darstellung des G-Codes ist möglicherweise nicht korrekt."
  1720. #: plugins/GCodeReader/__init__.py:18
  1721. msgctxt "@item:inlistbox"
  1722. msgid "G File"
  1723. msgstr "G-Datei"
  1724. #: plugins/GCodeWriter/GCodeWriter.py:75
  1725. msgctxt "@error:not supported"
  1726. msgid "GCodeWriter does not support non-text mode."
  1727. msgstr "GCodeWriter unterstützt keinen Nicht-Textmodus."
  1728. #: plugins/GCodeWriter/GCodeWriter.py:81 plugins/GCodeWriter/GCodeWriter.py:97
  1729. msgctxt "@warning:status"
  1730. msgid "Please prepare G-code before exporting."
  1731. msgstr "Vor dem Exportieren bitte G-Code vorbereiten."
  1732. #: plugins/ImageReader/ConfigUI.qml:14
  1733. msgctxt "@title:window"
  1734. msgid "Convert Image"
  1735. msgstr "Bild konvertieren"
  1736. #: plugins/ImageReader/ConfigUI.qml:33
  1737. msgctxt "@action:label"
  1738. msgid "Height (mm)"
  1739. msgstr "Höhe (mm)"
  1740. #: plugins/ImageReader/ConfigUI.qml:56
  1741. msgctxt "@info:tooltip"
  1742. msgid "The maximum distance of each pixel from \"Base.\""
  1743. msgstr "Der Maximalabstand von jedem Pixel von der „Basis“."
  1744. #: plugins/ImageReader/ConfigUI.qml:66
  1745. msgctxt "@action:label"
  1746. msgid "Base (mm)"
  1747. msgstr "Basis (mm)"
  1748. #: plugins/ImageReader/ConfigUI.qml:90
  1749. msgctxt "@info:tooltip"
  1750. msgid "The base height from the build plate in millimeters."
  1751. msgstr "Die Basishöhe von der Druckplatte in Millimetern."
  1752. #: plugins/ImageReader/ConfigUI.qml:100
  1753. msgctxt "@action:label"
  1754. msgid "Width (mm)"
  1755. msgstr "Breite (mm)"
  1756. #: plugins/ImageReader/ConfigUI.qml:124
  1757. msgctxt "@info:tooltip"
  1758. msgid "The width in millimeters on the build plate"
  1759. msgstr "Die Breite der Druckplatte in Millimetern"
  1760. #: plugins/ImageReader/ConfigUI.qml:134
  1761. msgctxt "@action:label"
  1762. msgid "Depth (mm)"
  1763. msgstr "Tiefe (mm)"
  1764. #: plugins/ImageReader/ConfigUI.qml:158
  1765. msgctxt "@info:tooltip"
  1766. msgid "The depth in millimeters on the build plate"
  1767. msgstr "Die Tiefe der Druckplatte in Millimetern"
  1768. #: plugins/ImageReader/ConfigUI.qml:187
  1769. msgctxt "@item:inlistbox"
  1770. msgid "Darker is higher"
  1771. msgstr "Dunkler ist höher"
  1772. #: plugins/ImageReader/ConfigUI.qml:188
  1773. msgctxt "@item:inlistbox"
  1774. msgid "Lighter is higher"
  1775. msgstr "Heller ist höher"
  1776. #: plugins/ImageReader/ConfigUI.qml:195
  1777. msgctxt "@info:tooltip"
  1778. msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model."
  1779. msgstr "Für Lithophanien sollten dunkle Pixel dickeren Positionen entsprechen, um mehr einfallendes Licht zu blockieren. Für Höhenkarten stellen hellere Pixel höheres Terrain dar, sodass hellere Pixel dickeren Positionen im generierten 3D-Modell entsprechen sollten."
  1780. #: plugins/ImageReader/ConfigUI.qml:205
  1781. msgctxt "@action:label"
  1782. msgid "Color Model"
  1783. msgstr "Farbmodell"
  1784. #: plugins/ImageReader/ConfigUI.qml:224
  1785. msgctxt "@item:inlistbox"
  1786. msgid "Linear"
  1787. msgstr "Linear"
  1788. #: plugins/ImageReader/ConfigUI.qml:225
  1789. msgctxt "@item:inlistbox"
  1790. msgid "Translucency"
  1791. msgstr "Transparenz"
  1792. #: plugins/ImageReader/ConfigUI.qml:232
  1793. msgctxt "@info:tooltip"
  1794. msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly."
  1795. msgstr "Für Lithophanien ist ein einfaches logarithmisches Modell für Transparenz verfügbar. Bei Höhenprofilen entsprechen die Pixelwerte den Höhen linear."
  1796. #: plugins/ImageReader/ConfigUI.qml:242
  1797. msgctxt "@action:label"
  1798. msgid "1mm Transmittance (%)"
  1799. msgstr "1 mm Durchlässigkeit (%)"
  1800. #: plugins/ImageReader/ConfigUI.qml:263
  1801. msgctxt "@info:tooltip"
  1802. msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image."
  1803. msgstr "Der Prozentsatz an Licht, der einen Druck von einer Dicke mit 1 Millimeter durchdringt. Senkt man diesen Wert, steigt der Kontrast in den dunkleren Bereichen, während der Kontrast in den helleren Bereichen des Bilds sinkt."
  1804. #: plugins/ImageReader/ConfigUI.qml:274
  1805. msgctxt "@action:label"
  1806. msgid "Smoothing"
  1807. msgstr "Glättung"
  1808. #: plugins/ImageReader/ConfigUI.qml:298
  1809. msgctxt "@info:tooltip"
  1810. msgid "The amount of smoothing to apply to the image."
  1811. msgstr "Die Stärke der Glättung, die für das Bild angewendet wird."
  1812. #: plugins/ImageReader/ConfigUI.qml:329
  1813. #: plugins/SliceInfoPlugin/MoreInfoWindow.qml:136
  1814. #: resources/qml/ColorDialog.qml:148 resources/qml/Dialogs/RenameDialog.qml:25
  1815. msgctxt "@action:button"
  1816. msgid "OK"
  1817. msgstr "OK"
  1818. #: plugins/ImageReader/__init__.py:14
  1819. msgctxt "@item:inlistbox"
  1820. msgid "JPG Image"
  1821. msgstr "JPG-Bilddatei"
  1822. #: plugins/ImageReader/__init__.py:18
  1823. msgctxt "@item:inlistbox"
  1824. msgid "JPEG Image"
  1825. msgstr "JPEG-Bilddatei"
  1826. #: plugins/ImageReader/__init__.py:22
  1827. msgctxt "@item:inlistbox"
  1828. msgid "PNG Image"
  1829. msgstr "PNG-Bilddatei"
  1830. #: plugins/ImageReader/__init__.py:26
  1831. msgctxt "@item:inlistbox"
  1832. msgid "BMP Image"
  1833. msgstr "BMP-Bilddatei"
  1834. #: plugins/ImageReader/__init__.py:30
  1835. msgctxt "@item:inlistbox"
  1836. msgid "GIF Image"
  1837. msgstr "GIF-Bilddatei"
  1838. #: plugins/LegacyProfileReader/__init__.py:14
  1839. msgctxt "@item:inlistbox"
  1840. msgid "Cura 15.04 profiles"
  1841. msgstr "Cura 15.04-Profile"
  1842. #: plugins/MachineSettingsAction/MachineSettingsAction.py:32
  1843. msgctxt "@action"
  1844. msgid "Machine Settings"
  1845. msgstr "Geräteeinstellungen"
  1846. #: plugins/MachineSettingsAction/MachineSettingsAction.qml:42
  1847. msgctxt "@title:tab"
  1848. msgid "Printer"
  1849. msgstr "Drucker"
  1850. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63
  1851. msgctxt "@title:label"
  1852. msgid "Nozzle Settings"
  1853. msgstr "Düseneinstellungen"
  1854. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:74
  1855. msgctxt "@label"
  1856. msgid "Nozzle size"
  1857. msgstr "Düsengröße"
  1858. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:78
  1859. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:92
  1860. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:108
  1861. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:123
  1862. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:72
  1863. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:87
  1864. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:102
  1865. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201
  1866. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221
  1867. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241
  1868. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261
  1869. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279
  1870. #: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:85
  1871. #: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:99
  1872. msgctxt "@label"
  1873. msgid "mm"
  1874. msgstr "mm"
  1875. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:88
  1876. msgctxt "@label"
  1877. msgid "Compatible material diameter"
  1878. msgstr "Kompatibler Materialdurchmesser"
  1879. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:104
  1880. msgctxt "@label"
  1881. msgid "Nozzle offset X"
  1882. msgstr "X-Versatz Düse"
  1883. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:119
  1884. msgctxt "@label"
  1885. msgid "Nozzle offset Y"
  1886. msgstr "Y-Versatz Düse"
  1887. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:134
  1888. msgctxt "@label"
  1889. msgid "Cooling Fan Number"
  1890. msgstr "Kühllüfter-Nr"
  1891. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:162
  1892. msgctxt "@title:label"
  1893. msgid "Extruder Start G-code"
  1894. msgstr "G-Code Extruder-Start"
  1895. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:176
  1896. msgctxt "@title:label"
  1897. msgid "Extruder End G-code"
  1898. msgstr "G-Code Extruder-Ende"
  1899. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56
  1900. msgctxt "@title:label"
  1901. msgid "Printer Settings"
  1902. msgstr "Druckereinstellungen"
  1903. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:68
  1904. msgctxt "@label"
  1905. msgid "X (Width)"
  1906. msgstr "X (Breite)"
  1907. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:83
  1908. msgctxt "@label"
  1909. msgid "Y (Depth)"
  1910. msgstr "Y (Tiefe)"
  1911. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:98
  1912. msgctxt "@label"
  1913. msgid "Z (Height)"
  1914. msgstr "Z (Höhe)"
  1915. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:112
  1916. msgctxt "@label"
  1917. msgid "Build plate shape"
  1918. msgstr "Druckbettform"
  1919. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:125
  1920. msgctxt "@label"
  1921. msgid "Origin at center"
  1922. msgstr "Ausgang in Mitte"
  1923. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:137
  1924. msgctxt "@label"
  1925. msgid "Heated bed"
  1926. msgstr "Heizbares Bett"
  1927. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:149
  1928. msgctxt "@label"
  1929. msgid "Heated build volume"
  1930. msgstr "Druckraum aufgeheizt"
  1931. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:161
  1932. msgctxt "@label"
  1933. msgid "G-code flavor"
  1934. msgstr "G-Code-Variante"
  1935. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:185
  1936. msgctxt "@title:label"
  1937. msgid "Printhead Settings"
  1938. msgstr "Druckkopfeinstellungen"
  1939. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:197
  1940. msgctxt "@label"
  1941. msgid "X min"
  1942. msgstr "X min"
  1943. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:217
  1944. msgctxt "@label"
  1945. msgid "Y min"
  1946. msgstr "Y min"
  1947. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:237
  1948. msgctxt "@label"
  1949. msgid "X max"
  1950. msgstr "X max"
  1951. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:257
  1952. msgctxt "@label"
  1953. msgid "Y max"
  1954. msgstr "Y max"
  1955. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:275
  1956. msgctxt "@label"
  1957. msgid "Gantry Height"
  1958. msgstr "Brückenhöhe"
  1959. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:289
  1960. msgctxt "@label"
  1961. msgid "Number of Extruders"
  1962. msgstr "Anzahl Extruder"
  1963. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:341
  1964. msgctxt "@label"
  1965. msgid "Apply Extruder offsets to GCode"
  1966. msgstr "Extruder-Versatzwerte auf GCode anwenden"
  1967. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:389
  1968. msgctxt "@title:label"
  1969. msgid "Start G-code"
  1970. msgstr "Start G-Code"
  1971. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:400
  1972. msgctxt "@title:label"
  1973. msgid "End G-code"
  1974. msgstr "Ende G-Code"
  1975. #: plugins/Marketplace/CloudSync/CloudPackageChecker.py:144
  1976. msgctxt "@info:generic"
  1977. msgid "Do you want to sync material and software packages with your account?"
  1978. msgstr "Möchten Sie Material- und Softwarepakete mit Ihrem Konto synchronisieren?"
  1979. #: plugins/Marketplace/CloudSync/CloudPackageChecker.py:145
  1980. #: plugins/Marketplace/CloudSync/DownloadPresenter.py:95
  1981. msgctxt "@info:title"
  1982. msgid "Changes detected from your UltiMaker account"
  1983. msgstr "Von Ihrem UltiMaker-Konto erkannte Änderungen"
  1984. #: plugins/Marketplace/CloudSync/CloudPackageChecker.py:147
  1985. msgctxt "@action:button"
  1986. msgid "Sync"
  1987. msgstr "Synchronisieren"
  1988. #: plugins/Marketplace/CloudSync/DownloadPresenter.py:91
  1989. msgctxt "@info:generic"
  1990. msgid "Syncing..."
  1991. msgstr "Synchronisierung läuft..."
  1992. #: plugins/Marketplace/CloudSync/LicenseModel.py:12
  1993. #: plugins/Marketplace/resources/qml/LicenseDialog.qml:79
  1994. msgctxt "@button"
  1995. msgid "Decline"
  1996. msgstr "Ablehnen"
  1997. #: plugins/Marketplace/CloudSync/LicenseModel.py:13
  1998. #: resources/qml/WelcomePages/UserAgreementContent.qml:53
  1999. msgctxt "@button"
  2000. msgid "Agree"
  2001. msgstr "Stimme zu"
  2002. #: plugins/Marketplace/CloudSync/LicenseModel.py:77
  2003. msgctxt "@title:window"
  2004. msgid "Plugin License Agreement"
  2005. msgstr "Plugin für Lizenzvereinbarung"
  2006. #: plugins/Marketplace/CloudSync/LicensePresenter.py:42
  2007. msgctxt "@button"
  2008. msgid "Decline and remove from account"
  2009. msgstr "Ablehnen und vom Konto entfernen"
  2010. #: plugins/Marketplace/CloudSync/RestartApplicationPresenter.py:22
  2011. msgctxt "@info:generic"
  2012. msgid "You need to quit and restart {} before changes have effect."
  2013. msgstr "Sie müssen das Programm beenden und neu starten {}, bevor Änderungen wirksam werden."
  2014. #: plugins/Marketplace/CloudSync/SyncOrchestrator.py:79
  2015. msgctxt "@info:generic"
  2016. msgid "{} plugins failed to download"
  2017. msgstr "Sie müssen das Programm beenden und neu starten {}, bevor Änderungen wirksam werden."
  2018. #: plugins/Marketplace/LocalPackageList.py:28
  2019. msgctxt "@label"
  2020. msgid "Installed Plugins"
  2021. msgstr "Installierte Plugins"
  2022. #: plugins/Marketplace/LocalPackageList.py:29
  2023. msgctxt "@label"
  2024. msgid "Installed Materials"
  2025. msgstr "Installierte Materialien"
  2026. #: plugins/Marketplace/LocalPackageList.py:33
  2027. msgctxt "@label"
  2028. msgid "Bundled Plugins"
  2029. msgstr "Gebündelte Plugins"
  2030. #: plugins/Marketplace/LocalPackageList.py:34
  2031. msgctxt "@label"
  2032. msgid "Bundled Materials"
  2033. msgstr "Gebündelte Materialien"
  2034. #: plugins/Marketplace/PackageModel.py:43
  2035. msgctxt "@label:property"
  2036. msgid "Unknown Package"
  2037. msgstr "Unbekanntes Paket"
  2038. #: plugins/Marketplace/PackageModel.py:66
  2039. msgctxt "@label:property"
  2040. msgid "Unknown Author"
  2041. msgstr "Unbekannter Autor"
  2042. #: plugins/Marketplace/PackageModel.py:95
  2043. msgctxt "@label:label Ultimaker Marketplace is a brand name, don't translate"
  2044. msgid "The material package associated with the Cura project could not be found on the Ultimaker Marketplace. Use the partial material profile definition stored in the Cura project file at your own risk."
  2045. msgstr ""
  2046. #: plugins/Marketplace/RemotePackageList.py:117
  2047. msgctxt "@info:error"
  2048. msgid "Could not interpret the server's response."
  2049. msgstr "Die Antwort vom Server konnte nicht interpretiert werden."
  2050. #: plugins/Marketplace/RemotePackageList.py:148
  2051. msgctxt "@info:error"
  2052. msgid "Could not reach Marketplace."
  2053. msgstr "Der Marktplatz konnte nicht erreicht werden."
  2054. #: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:15
  2055. msgctxt "@title"
  2056. msgid "Changes from your account"
  2057. msgstr "Änderungen in deinem Konto"
  2058. #: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24
  2059. msgctxt "@button"
  2060. msgid "Dismiss"
  2061. msgstr "Verwerfen"
  2062. #: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24
  2063. #: resources/qml/WelcomePages/DataCollectionsContent.qml:118
  2064. #: resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:76
  2065. #: resources/qml/WelcomePages/WhatsNewContent.qml:175
  2066. msgctxt "@button"
  2067. msgid "Next"
  2068. msgstr "Weiter"
  2069. #: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:52
  2070. msgctxt "@label"
  2071. msgid "The following packages will be added:"
  2072. msgstr "Die folgenden Pakete werden hinzugefügt:"
  2073. #: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:94
  2074. msgctxt "@label"
  2075. msgid "The following packages can not be installed because of an incompatible Cura version:"
  2076. msgstr "Die folgenden Pakete können nicht hinzugefügt werden, weil die Cura-Version nicht kompatibel ist:"
  2077. #: plugins/Marketplace/resources/qml/InstallMissingPackagesDialog.qml:15
  2078. msgctxt "@title"
  2079. msgid "Install missing Materials"
  2080. msgstr "Fehlende Materialien installieren"
  2081. #: plugins/Marketplace/resources/qml/LicenseDialog.qml:15
  2082. msgctxt "@button"
  2083. msgid "Plugin license agreement"
  2084. msgstr "Plugin für Lizenzvereinbarung"
  2085. #: plugins/Marketplace/resources/qml/LicenseDialog.qml:47
  2086. msgctxt "@text"
  2087. msgid "Please read and agree with the plugin licence."
  2088. msgstr "Bitte lesen und akzeptieren Sie die Plug-in-Lizenz."
  2089. #: plugins/Marketplace/resources/qml/LicenseDialog.qml:70
  2090. msgctxt "@button"
  2091. msgid "Accept"
  2092. msgstr "Akzeptieren"
  2093. #: plugins/Marketplace/resources/qml/ManagePackagesButton.qml:32
  2094. msgctxt "@info:tooltip"
  2095. msgid "Manage packages"
  2096. msgstr "Pakete verwalten"
  2097. #: plugins/Marketplace/resources/qml/ManagedPackages.qml:12
  2098. msgctxt "@header"
  2099. msgid "Manage packages"
  2100. msgstr "Pakete verwalten"
  2101. #: plugins/Marketplace/resources/qml/ManagedPackages.qml:16
  2102. msgctxt "@text"
  2103. msgid "Manage your UltiMaker Cura plugins and material profiles here. Make sure to keep your plugins up to date and backup your setup regularly."
  2104. msgstr "Verwalten Sie hier Ihre UltiMaker Cura Plug-ins und Ihre Materialprofile. Halten Sie Ihre Plug-ins auf dem neuesten Stand und sichern Sie Ihr Setup regelmäßig."
  2105. #: plugins/Marketplace/resources/qml/Marketplace.qml:87
  2106. msgctxt "@title"
  2107. msgid "Loading..."
  2108. msgstr "Lädt..."
  2109. #: plugins/Marketplace/resources/qml/Marketplace.qml:148
  2110. msgctxt "@button"
  2111. msgid "Plugins"
  2112. msgstr "Plugins"
  2113. #: plugins/Marketplace/resources/qml/Marketplace.qml:156
  2114. msgctxt "@button"
  2115. msgid "Materials"
  2116. msgstr "Materialien"
  2117. #: plugins/Marketplace/resources/qml/Marketplace.qml:193
  2118. msgctxt "@info"
  2119. msgid "Search in the browser"
  2120. msgstr "Suche im Browser"
  2121. #: plugins/Marketplace/resources/qml/Marketplace.qml:271
  2122. msgctxt "@button"
  2123. msgid "In order to use the package you will need to restart Cura"
  2124. msgstr "Um das Paket nutzen zu können, müssen Sie Cura neu starten"
  2125. #: plugins/Marketplace/resources/qml/Marketplace.qml:279
  2126. msgctxt "@info:button, %1 is the application name"
  2127. msgid "Quit %1"
  2128. msgstr "%1 beenden"
  2129. #: plugins/Marketplace/resources/qml/Materials.qml:8
  2130. #: plugins/Marketplace/resources/qml/MissingPackages.qml:8
  2131. msgctxt "@header"
  2132. msgid "Install Materials"
  2133. msgstr "Materialien installieren"
  2134. #: plugins/Marketplace/resources/qml/Materials.qml:12
  2135. msgctxt "@text"
  2136. msgid "Select and install material profiles optimised for your UltiMaker 3D printers."
  2137. msgstr "Wählen und installieren Sie Materialprofile, die für Ihre UltiMaker 3D-Drucker optimiert sind."
  2138. #: plugins/Marketplace/resources/qml/MultipleLicenseDialog.qml:35
  2139. msgctxt "@label"
  2140. msgid "You need to accept the license to install the package"
  2141. msgstr "Sie müssen die Lizenz akzeptieren, um das Paket zu installieren"
  2142. #: plugins/Marketplace/resources/qml/OnboardBanner.qml:101
  2143. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:205
  2144. msgctxt "@button:label"
  2145. msgid "Learn More"
  2146. msgstr "Mehr Erfahren"
  2147. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:170
  2148. msgctxt "@label Is followed by the name of an author"
  2149. msgid "By"
  2150. msgstr "Von"
  2151. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:224
  2152. msgctxt "@button"
  2153. msgid "Disable"
  2154. msgstr "Deaktivieren"
  2155. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:224
  2156. msgctxt "@button"
  2157. msgid "Enable"
  2158. msgstr "Aktivieren"
  2159. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:242
  2160. msgctxt "@button"
  2161. msgid "Downgrading..."
  2162. msgstr "Downgrade läuft…"
  2163. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:243
  2164. msgctxt "@button"
  2165. msgid "Downgrade"
  2166. msgstr "Downgraden"
  2167. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:247
  2168. msgctxt "@button"
  2169. msgid "Installing..."
  2170. msgstr "Wird installiert…"
  2171. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:248
  2172. msgctxt "@button"
  2173. msgid "Install"
  2174. msgstr "Installieren"
  2175. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:252
  2176. msgctxt "@button"
  2177. msgid "Uninstall"
  2178. msgstr "Deinstallieren"
  2179. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:267
  2180. msgctxt "@button"
  2181. msgid "Update"
  2182. msgstr "Aktualisierung"
  2183. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:267
  2184. msgctxt "@button"
  2185. msgid "Updating..."
  2186. msgstr "Aktualisierung läuft…"
  2187. #: plugins/Marketplace/resources/qml/PackageDetails.qml:15
  2188. msgctxt "@header"
  2189. msgid "Package details"
  2190. msgstr "Details zum Paket"
  2191. #: plugins/Marketplace/resources/qml/PackageDetails.qml:40
  2192. msgctxt "@button:tooltip"
  2193. msgid "Back"
  2194. msgstr "Hinten"
  2195. #: plugins/Marketplace/resources/qml/PackagePage.qml:81
  2196. msgctxt "@header"
  2197. msgid "Description"
  2198. msgstr "Beschreibung"
  2199. #: plugins/Marketplace/resources/qml/PackagePage.qml:110
  2200. msgctxt "@header"
  2201. msgid "Compatible printers"
  2202. msgstr "Kompatible Drucker"
  2203. #: plugins/Marketplace/resources/qml/PackagePage.qml:134
  2204. msgctxt "@info"
  2205. msgid "No compatibility information"
  2206. msgstr "Keine Kompatibilitätsinformationen"
  2207. #: plugins/Marketplace/resources/qml/PackagePage.qml:152
  2208. msgctxt "@header"
  2209. msgid "Compatible support materials"
  2210. msgstr "Kompatible Stützmaterialien"
  2211. #: plugins/Marketplace/resources/qml/PackagePage.qml:176
  2212. msgctxt "@info No materials"
  2213. msgid "None"
  2214. msgstr "Keine"
  2215. #: plugins/Marketplace/resources/qml/PackagePage.qml:193
  2216. msgctxt "@header"
  2217. msgid "Compatible with Material Station"
  2218. msgstr "Kompatibel mit Material Station"
  2219. #: plugins/Marketplace/resources/qml/PackagePage.qml:202
  2220. #: plugins/Marketplace/resources/qml/PackagePage.qml:228
  2221. msgctxt "@info"
  2222. msgid "No"
  2223. msgstr "Nein"
  2224. #: plugins/Marketplace/resources/qml/PackagePage.qml:202
  2225. #: plugins/Marketplace/resources/qml/PackagePage.qml:228
  2226. msgctxt "@info"
  2227. msgid "Yes"
  2228. msgstr "Ja"
  2229. #: plugins/Marketplace/resources/qml/PackagePage.qml:219
  2230. msgctxt "@header"
  2231. msgid "Optimized for Air Manager"
  2232. msgstr "Optimiert für Air Manager"
  2233. #: plugins/Marketplace/resources/qml/PackagePage.qml:243
  2234. msgctxt "@button"
  2235. msgid "Visit plug-in website"
  2236. msgstr "Plug-in-Website besuchen"
  2237. #: plugins/Marketplace/resources/qml/PackagePage.qml:243
  2238. msgctxt "@button"
  2239. msgid "Website"
  2240. msgstr "Website"
  2241. #: plugins/Marketplace/resources/qml/PackagePage.qml:252
  2242. msgctxt "@button"
  2243. msgid "Buy spool"
  2244. msgstr "Spule kaufen"
  2245. #: plugins/Marketplace/resources/qml/PackagePage.qml:261
  2246. msgctxt "@button"
  2247. msgid "Safety datasheet"
  2248. msgstr "Sicherheitsdatenblatt"
  2249. #: plugins/Marketplace/resources/qml/PackagePage.qml:270
  2250. msgctxt "@button"
  2251. msgid "Technical datasheet"
  2252. msgstr "Technisches Datenblatt"
  2253. #: plugins/Marketplace/resources/qml/Packages.qml:151
  2254. msgctxt "@button"
  2255. msgid "Failed to load packages:"
  2256. msgstr "Pakete konnten nicht geladen werden:"
  2257. #: plugins/Marketplace/resources/qml/Packages.qml:151
  2258. msgctxt "@button"
  2259. msgid "Retry?"
  2260. msgstr "Erneut versuchen?"
  2261. #: plugins/Marketplace/resources/qml/Packages.qml:167
  2262. msgctxt "@button"
  2263. msgid "Loading"
  2264. msgstr "Wird geladen"
  2265. #: plugins/Marketplace/resources/qml/Packages.qml:183
  2266. msgctxt "@message"
  2267. msgid "No more results to load"
  2268. msgstr "Keine weiteren Ergebnisse zum Laden"
  2269. #: plugins/Marketplace/resources/qml/Packages.qml:183
  2270. msgctxt "@message"
  2271. msgid "No results found with current filter"
  2272. msgstr "Keine Ergebnisse mit dem aktuellen Filter gefunden"
  2273. #: plugins/Marketplace/resources/qml/Packages.qml:226
  2274. msgctxt "@button"
  2275. msgid "Load more"
  2276. msgstr "Weitere laden"
  2277. #: plugins/Marketplace/resources/qml/Plugins.qml:8
  2278. msgctxt "@header"
  2279. msgid "Install Plugins"
  2280. msgstr "Plug-ins installieren"
  2281. #: plugins/Marketplace/resources/qml/Plugins.qml:12
  2282. msgctxt "@text"
  2283. msgid "Streamline your workflow and customize your UltiMaker Cura experience with plugins contributed by our amazing community of users."
  2284. msgstr "Optimieren Sie Ihren Workflow und individualisieren Sie Ihr Erlebnis in UltiMaker Cura mit Plug-ins, die von der großartigen Community unserer Anwender bereitgestellt werden."
  2285. #: plugins/Marketplace/resources/qml/VerifiedIcon.qml:21
  2286. msgctxt "@info"
  2287. msgid "UltiMaker Verified Plug-in"
  2288. msgstr "Durch UltiMaker verifiziertes Plug-in"
  2289. #: plugins/Marketplace/resources/qml/VerifiedIcon.qml:22
  2290. msgctxt "@info"
  2291. msgid "UltiMaker Certified Material"
  2292. msgstr "Durch UltiMaker zertifiziertes Material"
  2293. #: plugins/Marketplace/resources/qml/VerifiedIcon.qml:23
  2294. msgctxt "@info"
  2295. msgid "UltiMaker Verified Package"
  2296. msgstr "Durch UltiMaker verifiziertes Paket"
  2297. #: plugins/ModelChecker/ModelChecker.py:31
  2298. msgctxt "@info:title"
  2299. msgid "3D Model Assistant"
  2300. msgstr "3D-Modell-Assistent"
  2301. #: plugins/ModelChecker/ModelChecker.py:97
  2302. #, python-brace-format
  2303. msgctxt "@info:status"
  2304. msgid ""
  2305. "<p>One or more 3D models may not print optimally due to the model size and material configuration:</p>\n"
  2306. "<p>{model_names}</p>\n"
  2307. "<p>Find out how to ensure the best possible print quality and reliability.</p>\n"
  2308. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">View print quality guide</a></p>"
  2309. msgstr ""
  2310. "<p>Ein oder mehrere 3D-Modelle können möglicherweise aufgrund der Modellgröße und Materialkonfiguration nicht optimal gedruckt werden:</p>\n"
  2311. "<p>{model_names}</p>\n"
  2312. "<p>Erfahren Sie, wie Sie die bestmögliche Druckqualität und Zuverlässigkeit sicherstellen.</p>\n"
  2313. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">Leitfaden zu Druckqualität anzeigen</a></p>"
  2314. #: plugins/MonitorStage/MonitorMain.qml:100
  2315. msgctxt "@info"
  2316. msgid ""
  2317. "Please make sure your printer has a connection:\n"
  2318. "- Check if the printer is turned on.\n"
  2319. "- Check if the printer is connected to the network.\n"
  2320. "- Check if you are signed in to discover cloud-connected printers."
  2321. msgstr ""
  2322. "Stellen Sie sicher, dass der Drucker verbunden ist:\n"
  2323. "– Prüfen Sie, ob der Drucker eingeschaltet ist.– Prüfen Sie, ob der Drucker mit dem Netzwerk verbunden ist.\n"
  2324. "– Prüfen Sie, ob Sie angemeldet sind, falls Sie über die Cloud verbundene Drucker suchen möchten."
  2325. #: plugins/MonitorStage/MonitorMain.qml:113
  2326. msgctxt "@info"
  2327. msgid "Please connect your printer to the network."
  2328. msgstr "Verbinden Sie Ihren Drucker bitte mit dem Netzwerk."
  2329. #: plugins/MonitorStage/MonitorMain.qml:148
  2330. msgctxt "@label link to technical assistance"
  2331. msgid "View user manuals online"
  2332. msgstr "Benutzerhandbücher online anzeigen"
  2333. #: plugins/MonitorStage/MonitorMain.qml:164
  2334. msgctxt "@info"
  2335. msgid "In order to monitor your print from Cura, please connect the printer."
  2336. msgstr "Um Ihren Druck von Cura aus zu überwachen, schließen Sie bitte den Drucker an."
  2337. #: plugins/MonitorStage/__init__.py:14
  2338. msgctxt "@item:inmenu"
  2339. msgid "Monitor"
  2340. msgstr "Überwachen"
  2341. #: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:41
  2342. msgctxt "@label"
  2343. msgid "Mesh Type"
  2344. msgstr "Mesh-Typ"
  2345. #: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:81
  2346. msgctxt "@label"
  2347. msgid "Normal model"
  2348. msgstr "Normales Modell"
  2349. #: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:96
  2350. msgctxt "@label"
  2351. msgid "Print as support"
  2352. msgstr "Als Stützstruktur drucken"
  2353. #: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:111
  2354. msgctxt "@label"
  2355. msgid "Modify settings for overlaps"
  2356. msgstr "Einstellungen für Überlappungen ändern"
  2357. #: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:126
  2358. msgctxt "@label"
  2359. msgid "Don't support overlaps"
  2360. msgstr "Überlappungen nicht unterstützen"
  2361. #: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:160
  2362. msgctxt "@item:inlistbox"
  2363. msgid "Infill mesh only"
  2364. msgstr "Nur Mesh-Füllung"
  2365. #: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:161
  2366. msgctxt "@item:inlistbox"
  2367. msgid "Cutting mesh"
  2368. msgstr "Mesh beschneiden"
  2369. #: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:386
  2370. msgctxt "@action:button"
  2371. msgid "Select settings"
  2372. msgstr "Einstellungen wählen"
  2373. #: plugins/PerObjectSettingsTool/SettingPickDialog.qml:17
  2374. msgctxt "@title:window"
  2375. msgid "Select Settings to Customize for this model"
  2376. msgstr "Einstellungen für die benutzerdefinierte Anpassung dieses Modells wählen"
  2377. #: plugins/PerObjectSettingsTool/SettingPickDialog.qml:61
  2378. #: resources/qml/Preferences/SettingVisibilityPage.qml:102
  2379. msgctxt "@label:textbox"
  2380. msgid "Filter..."
  2381. msgstr "Filtern..."
  2382. #: plugins/PerObjectSettingsTool/SettingPickDialog.qml:75
  2383. msgctxt "@label:checkbox"
  2384. msgid "Show all"
  2385. msgstr "Alle anzeigen"
  2386. #: plugins/PerObjectSettingsTool/__init__.py:14
  2387. msgctxt "@label"
  2388. msgid "Per Model Settings"
  2389. msgstr "Einstellungen pro Objekt"
  2390. #: plugins/PerObjectSettingsTool/__init__.py:15
  2391. msgctxt "@info:tooltip"
  2392. msgid "Configure Per Model Settings"
  2393. msgstr "Pro Objekteinstellungen konfigurieren"
  2394. #: plugins/PostProcessingPlugin/PostProcessingPlugin.py:35
  2395. msgctxt "@item:inmenu"
  2396. msgid "Post Processing"
  2397. msgstr "Nachbearbeitung"
  2398. #: plugins/PostProcessingPlugin/PostProcessingPlugin.py:36
  2399. msgctxt "@item:inmenu"
  2400. msgid "Modify G-Code"
  2401. msgstr "G-Code ändern"
  2402. #: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:17
  2403. msgctxt "@title:window"
  2404. msgid "Post Processing Plugin"
  2405. msgstr "Plugin Nachbearbeitung"
  2406. #: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57
  2407. msgctxt "@label"
  2408. msgid "Post Processing Scripts"
  2409. msgstr "Skripts Nachbearbeitung"
  2410. #: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:215
  2411. msgctxt "@action"
  2412. msgid "Add a script"
  2413. msgstr "Ein Skript hinzufügen"
  2414. #: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:251
  2415. msgctxt "@label"
  2416. msgid "Settings"
  2417. msgstr "Einstellungen"
  2418. #: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:460
  2419. msgctxt "@info:tooltip"
  2420. msgid "Change active post-processing scripts."
  2421. msgstr "Aktive Nachbearbeitungsskripts ändern."
  2422. #: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:464
  2423. msgctxt "@info:tooltip"
  2424. msgid "The following script is active:"
  2425. msgid_plural "The following scripts are active:"
  2426. msgstr[0] "Die folgenden Skript ist aktiv:"
  2427. msgstr[1] "Die folgenden Skripte sind aktiv:"
  2428. #: plugins/PrepareStage/PrepareMenu.qml:74
  2429. msgctxt "@button"
  2430. msgid "Add printer"
  2431. msgstr "Drucker hinzufügen"
  2432. #: plugins/PrepareStage/PrepareMenu.qml:90
  2433. msgctxt "@button"
  2434. msgid "Manage printers"
  2435. msgstr "Drucker verwalten"
  2436. #: plugins/PrepareStage/__init__.py:12
  2437. msgctxt "@item:inmenu"
  2438. msgid "Prepare"
  2439. msgstr "Vorbereiten"
  2440. #: plugins/PreviewStage/__init__.py:13
  2441. msgctxt "@item:inmenu"
  2442. msgid "Preview"
  2443. msgstr "Vorschau"
  2444. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23
  2445. msgctxt "@action:button Preceded by 'Ready to'."
  2446. msgid "Save to Removable Drive"
  2447. msgstr "Speichern auf Wechseldatenträger"
  2448. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24
  2449. #, python-brace-format
  2450. msgctxt "@item:inlistbox"
  2451. msgid "Save to Removable Drive {0}"
  2452. msgstr "Auf Wechseldatenträger speichern {0}"
  2453. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66
  2454. #: plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118
  2455. msgctxt "@info:status"
  2456. msgid "There are no file formats available to write with!"
  2457. msgstr "Es sind keine Dateiformate zum Schreiben vorhanden!"
  2458. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109
  2459. #, python-brace-format
  2460. msgctxt "@info:progress Don't translate the XML tags <filename>!"
  2461. msgid "Saving to Removable Drive <filename>{0}</filename>"
  2462. msgstr "Wird auf Wechseldatenträger gespeichert <filename>{0}</filename>"
  2463. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:110
  2464. msgctxt "@info:title"
  2465. msgid "Saving"
  2466. msgstr "Wird gespeichert"
  2467. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:120
  2468. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:123
  2469. #, python-brace-format
  2470. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  2471. msgid "Could not save to <filename>{0}</filename>: <message>{1}</message>"
  2472. msgstr "Konnte nicht als <filename>{0}</filename> gespeichert werden: <message>{1}</message>"
  2473. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139
  2474. #, python-brace-format
  2475. msgctxt "@info:status Don't translate the tag {device}!"
  2476. msgid "Could not find a file name when trying to write to {device}."
  2477. msgstr "Bei dem Versuch, auf {device} zu schreiben, wurde ein Dateiname nicht gefunden."
  2478. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:152
  2479. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:171
  2480. #, python-brace-format
  2481. msgctxt "@info:status"
  2482. msgid "Could not save to removable drive {0}: {1}"
  2483. msgstr "Konnte nicht auf dem Wechseldatenträger gespeichert werden {0}: {1}"
  2484. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:162
  2485. #, python-brace-format
  2486. msgctxt "@info:status"
  2487. msgid "Saved to Removable Drive {0} as {1}"
  2488. msgstr "Auf Wechseldatenträger {0} gespeichert als {1}"
  2489. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163
  2490. msgctxt "@info:title"
  2491. msgid "File Saved"
  2492. msgstr "Datei wurde gespeichert"
  2493. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165
  2494. msgctxt "@action:button"
  2495. msgid "Eject"
  2496. msgstr "Auswerfen"
  2497. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165
  2498. #, python-brace-format
  2499. msgctxt "@action"
  2500. msgid "Eject removable device {0}"
  2501. msgstr "Wechseldatenträger auswerfen {0}"
  2502. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:184
  2503. #, python-brace-format
  2504. msgctxt "@info:status"
  2505. msgid "Ejected {0}. You can now safely remove the drive."
  2506. msgstr "Ausgeworfen {0}. Sie können den Datenträger jetzt sicher entfernen."
  2507. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:185
  2508. msgctxt "@info:title"
  2509. msgid "Safely Remove Hardware"
  2510. msgstr "Hardware sicher entfernen"
  2511. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:188
  2512. #, python-brace-format
  2513. msgctxt "@info:status"
  2514. msgid "Failed to eject {0}. Another program may be using the drive."
  2515. msgstr "Auswurf fehlgeschlagen {0}. Möglicherweise wird das Laufwerk von einem anderen Programm verwendet."
  2516. #: plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76
  2517. msgctxt "@item:intext"
  2518. msgid "Removable Drive"
  2519. msgstr "Wechseldatenträger"
  2520. #: plugins/SimulationView/SimulationView.py:129
  2521. msgctxt "@info:status"
  2522. msgid "Cura does not accurately display layers when Wire Printing is enabled."
  2523. msgstr "Cura zeigt die Schichten nicht präzise an, wenn „Drucken mit Drahtstruktur“ aktiviert ist."
  2524. #: plugins/SimulationView/SimulationView.py:130
  2525. msgctxt "@info:title"
  2526. msgid "Simulation View"
  2527. msgstr "Simulationsansicht"
  2528. #: plugins/SimulationView/SimulationView.py:133
  2529. msgctxt "@info:status"
  2530. msgid "Nothing is shown because you need to slice first."
  2531. msgstr "Es kann nichts angezeigt werden, weil Sie zuerst das Slicing vornehmen müssen."
  2532. #: plugins/SimulationView/SimulationView.py:134
  2533. msgctxt "@info:title"
  2534. msgid "No layers to show"
  2535. msgstr "Keine anzeigbaren Schichten vorhanden"
  2536. #: plugins/SimulationView/SimulationView.py:136
  2537. #: plugins/SolidView/SolidView.py:74
  2538. msgctxt "@info:option_text"
  2539. msgid "Do not show this message again"
  2540. msgstr "Diese Meldung nicht mehr anzeigen"
  2541. #: plugins/SimulationView/SimulationViewMenuComponent.qml:18
  2542. #: plugins/SimulationView/SimulationViewMenuComponent.qml:47
  2543. msgctxt "@label"
  2544. msgid "Color scheme"
  2545. msgstr "Farbschema"
  2546. #: plugins/SimulationView/SimulationViewMenuComponent.qml:104
  2547. msgctxt "@label:listbox"
  2548. msgid "Material Color"
  2549. msgstr "Materialfarbe"
  2550. #: plugins/SimulationView/SimulationViewMenuComponent.qml:108
  2551. msgctxt "@label:listbox"
  2552. msgid "Line Type"
  2553. msgstr "Linientyp"
  2554. #: plugins/SimulationView/SimulationViewMenuComponent.qml:112
  2555. msgctxt "@label:listbox"
  2556. msgid "Speed"
  2557. msgstr "Geschwindigkeit"
  2558. #: plugins/SimulationView/SimulationViewMenuComponent.qml:116
  2559. msgctxt "@label:listbox"
  2560. msgid "Layer Thickness"
  2561. msgstr "Schichtdicke"
  2562. #: plugins/SimulationView/SimulationViewMenuComponent.qml:120
  2563. msgctxt "@label:listbox"
  2564. msgid "Line Width"
  2565. msgstr "Linienbreite"
  2566. #: plugins/SimulationView/SimulationViewMenuComponent.qml:124
  2567. msgctxt "@label:listbox"
  2568. msgid "Flow"
  2569. msgstr "Fluss"
  2570. #: plugins/SimulationView/SimulationViewMenuComponent.qml:164
  2571. msgctxt "@label"
  2572. msgid "Compatibility Mode"
  2573. msgstr "Kompatibilitätsmodus"
  2574. #: plugins/SimulationView/SimulationViewMenuComponent.qml:231
  2575. msgctxt "@label"
  2576. msgid "Travels"
  2577. msgstr "Bewegungen"
  2578. #: plugins/SimulationView/SimulationViewMenuComponent.qml:237
  2579. msgctxt "@label"
  2580. msgid "Helpers"
  2581. msgstr "Helfer"
  2582. #: plugins/SimulationView/SimulationViewMenuComponent.qml:243
  2583. msgctxt "@label"
  2584. msgid "Shell"
  2585. msgstr "Gehäuse"
  2586. #: plugins/SimulationView/SimulationViewMenuComponent.qml:249
  2587. msgctxt "@label"
  2588. msgid "Infill"
  2589. msgstr "Füllung"
  2590. #: plugins/SimulationView/SimulationViewMenuComponent.qml:257
  2591. msgctxt "@label"
  2592. msgid "Starts"
  2593. msgstr "Startet"
  2594. #: plugins/SimulationView/SimulationViewMenuComponent.qml:304
  2595. msgctxt "@label"
  2596. msgid "Only Show Top Layers"
  2597. msgstr "Nur obere Schichten anzeigen"
  2598. #: plugins/SimulationView/SimulationViewMenuComponent.qml:313
  2599. msgctxt "@label"
  2600. msgid "Show 5 Detailed Layers On Top"
  2601. msgstr "5 detaillierte Schichten oben anzeigen"
  2602. #: plugins/SimulationView/SimulationViewMenuComponent.qml:326
  2603. msgctxt "@label"
  2604. msgid "Top / Bottom"
  2605. msgstr "Oben/Unten"
  2606. #: plugins/SimulationView/SimulationViewMenuComponent.qml:330
  2607. msgctxt "@label"
  2608. msgid "Inner Wall"
  2609. msgstr "Innenwand"
  2610. #: plugins/SimulationView/SimulationViewMenuComponent.qml:397
  2611. msgctxt "@label"
  2612. msgid "min"
  2613. msgstr "min"
  2614. #: plugins/SimulationView/SimulationViewMenuComponent.qml:462
  2615. msgctxt "@label"
  2616. msgid "max"
  2617. msgstr "max"
  2618. #: plugins/SimulationView/__init__.py:15
  2619. msgctxt "@item:inlistbox"
  2620. msgid "Layer view"
  2621. msgstr "Schichtenansicht"
  2622. #: plugins/SliceInfoPlugin/MoreInfoWindow.qml:16
  2623. msgctxt "@title:window"
  2624. msgid "More information on anonymous data collection"
  2625. msgstr "Weitere Informationen zur anonymen Datenerfassung"
  2626. #: plugins/SliceInfoPlugin/MoreInfoWindow.qml:73
  2627. msgctxt "@text:window"
  2628. msgid "UltiMaker Cura collects anonymous data in order to improve the print quality and user experience. Below is an example of all the data that is shared:"
  2629. msgstr "UltiMaker Cura erfasst anonyme Daten, um die Druckqualität und Benutzererfahrung zu steigern. Nachfolgend ist ein Beispiel aller Daten, die geteilt werden:"
  2630. #: plugins/SliceInfoPlugin/MoreInfoWindow.qml:107
  2631. msgctxt "@text:window"
  2632. msgid "I don't want to send anonymous data"
  2633. msgstr "Ich möchte keine anonymen Daten senden"
  2634. #: plugins/SliceInfoPlugin/MoreInfoWindow.qml:116
  2635. msgctxt "@text:window"
  2636. msgid "Allow sending anonymous data"
  2637. msgstr "Senden von anonymen Daten erlauben"
  2638. #: plugins/SliceInfoPlugin/SliceInfo.py:95
  2639. msgctxt "@text"
  2640. msgid "Unable to read example data file."
  2641. msgstr "Die Datei mit den Beispieldaten kann nicht gelesen werden."
  2642. #: plugins/SolidView/SolidView.py:71
  2643. msgctxt "@info:status"
  2644. msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura."
  2645. msgstr "Die hervorgehobenen Bereiche kennzeichnen fehlende oder überschüssige Oberflächen. Beheben Sie die Fehler am Modell und öffnen Sie es erneut in Cura."
  2646. #: plugins/SolidView/SolidView.py:73
  2647. msgctxt "@info:title"
  2648. msgid "Model Errors"
  2649. msgstr "Modellfehler"
  2650. #: plugins/SolidView/__init__.py:12
  2651. msgctxt "@item:inmenu"
  2652. msgid "Solid view"
  2653. msgstr "Solide Ansicht"
  2654. #: plugins/SupportEraser/__init__.py:12
  2655. msgctxt "@label"
  2656. msgid "Support Blocker"
  2657. msgstr "Stützstruktur-Blocker"
  2658. #: plugins/SupportEraser/__init__.py:13
  2659. msgctxt "@info:tooltip"
  2660. msgid "Create a volume in which supports are not printed."
  2661. msgstr "Erstellt ein Volumen, in dem keine Stützstrukturen gedruckt werden."
  2662. #: plugins/TrimeshReader/__init__.py:15
  2663. msgctxt "@item:inlistbox 'Open' is part of the name of this file format."
  2664. msgid "Open Compressed Triangle Mesh"
  2665. msgstr "Öffnen Sie das komprimierte Dreiecksnetz"
  2666. #: plugins/TrimeshReader/__init__.py:19
  2667. msgctxt "@item:inlistbox"
  2668. msgid "COLLADA Digital Asset Exchange"
  2669. msgstr "COLLADA Digital Asset Exchange"
  2670. #: plugins/TrimeshReader/__init__.py:23
  2671. msgctxt "@item:inlistbox"
  2672. msgid "glTF Binary"
  2673. msgstr "glTF Binary"
  2674. #: plugins/TrimeshReader/__init__.py:27
  2675. msgctxt "@item:inlistbox"
  2676. msgid "glTF Embedded JSON"
  2677. msgstr "glTF Embedded JSON"
  2678. #: plugins/TrimeshReader/__init__.py:36
  2679. msgctxt "@item:inlistbox"
  2680. msgid "Stanford Triangle Format"
  2681. msgstr "Stanford Triangle Format"
  2682. #: plugins/TrimeshReader/__init__.py:40
  2683. msgctxt "@item:inlistbox"
  2684. msgid "Compressed COLLADA Digital Asset Exchange"
  2685. msgstr "Compressed COLLADA Digital Asset Exchange"
  2686. #: plugins/UFPReader/__init__.py:22 plugins/UFPWriter/__init__.py:28
  2687. msgctxt "@item:inlistbox"
  2688. msgid "UltiMaker Format Package"
  2689. msgstr "UltiMaker Format Package"
  2690. #: plugins/UFPWriter/UFPWriter.py:64 plugins/UFPWriter/UFPWriter.py:80
  2691. #: plugins/UFPWriter/UFPWriter.py:93 plugins/UFPWriter/UFPWriter.py:115
  2692. #: plugins/UFPWriter/UFPWriter.py:170 plugins/UFPWriter/UFPWriter.py:180
  2693. msgctxt "@info:error"
  2694. msgid "Can't write to UFP file:"
  2695. msgstr "Kann nicht in UFP-Datei schreiben:"
  2696. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:44
  2697. msgctxt "@title:window"
  2698. msgid "Connect to Networked Printer"
  2699. msgstr "Anschluss an vernetzten Drucker"
  2700. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51
  2701. msgctxt "@label"
  2702. msgid "Select your printer from the list below:"
  2703. msgstr "Wählen Sie Ihren Drucker aus der folgenden Liste aus:"
  2704. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51
  2705. msgctxt "@label"
  2706. msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer."
  2707. msgstr "Um direkt auf Ihrem Drucker über das Netzwerk zu drucken, muss der Drucker über ein Netzwerkkabel oder per WLAN mit dem Netzwerk verbunden sein. Wenn Sie Cura nicht mit Ihrem Drucker verbinden, können Sie G-Code-Dateien auf einen USB-Stick kopieren und diesen am Drucker anschließen."
  2708. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:71
  2709. msgctxt "@action:button"
  2710. msgid "Edit"
  2711. msgstr "Bearbeiten"
  2712. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:82
  2713. #: resources/qml/Preferences/MachinesPage.qml:153
  2714. #: resources/qml/Preferences/Materials/MaterialsPage.qml:186
  2715. #: resources/qml/Preferences/ProfilesPage.qml:321
  2716. msgctxt "@action:button"
  2717. msgid "Remove"
  2718. msgstr "Entfernen"
  2719. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:90
  2720. msgctxt "@action:button"
  2721. msgid "Refresh"
  2722. msgstr "Aktualisieren"
  2723. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:161
  2724. msgctxt "@label"
  2725. msgid "If your printer is not listed, read the <a href='%1'>network printing troubleshooting guide</a>"
  2726. msgstr "Wenn Ihr Drucker nicht aufgeführt ist, lesen Sie die <a href='%1'>Anleitung für Fehlerbehebung für Netzwerkdruck</a>"
  2727. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:186
  2728. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:247
  2729. msgctxt "@label"
  2730. msgid "Type"
  2731. msgstr "Typ"
  2732. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:202
  2733. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:256
  2734. msgctxt "@label"
  2735. msgid "Firmware version"
  2736. msgstr "Firmware-Version"
  2737. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:212
  2738. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:266
  2739. msgctxt "@label"
  2740. msgid "Address"
  2741. msgstr "Adresse"
  2742. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:232
  2743. msgctxt "@label"
  2744. msgid "This printer is not set up to host a group of printers."
  2745. msgstr "Dieser Drucker ist nicht eingerichtet um eine Gruppe von Druckern anzusteuern."
  2746. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:236
  2747. msgctxt "@label"
  2748. msgid "This printer is the host for a group of %1 printers."
  2749. msgstr "Dieser Drucker steuert eine Gruppe von %1 Druckern an."
  2750. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:245
  2751. msgctxt "@label"
  2752. msgid "The printer at this address has not yet responded."
  2753. msgstr "Der Drucker unter dieser Adresse hat nicht reagiert."
  2754. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:250
  2755. msgctxt "@action:button"
  2756. msgid "Connect"
  2757. msgstr "Verbinden"
  2758. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:261
  2759. msgctxt "@title:window"
  2760. msgid "Invalid IP address"
  2761. msgstr "Ungültige IP-Adresse"
  2762. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:262
  2763. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:141
  2764. msgctxt "@text"
  2765. msgid "Please enter a valid IP address."
  2766. msgstr "Bitte eine gültige IP-Adresse eingeben."
  2767. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:272
  2768. msgctxt "@title:window"
  2769. msgid "Printer Address"
  2770. msgstr "Druckeradresse"
  2771. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297
  2772. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:97
  2773. msgctxt "@label"
  2774. msgid "Enter the IP address of your printer on the network."
  2775. msgstr "Geben Sie die IP-Adresse Ihres Druckers in das Netzwerk ein."
  2776. #: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20
  2777. msgctxt "@title:window"
  2778. msgid "Configuration Changes"
  2779. msgstr "Konfigurationsänderungen"
  2780. #: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:36
  2781. msgctxt "@action:button"
  2782. msgid "Override"
  2783. msgstr "Überschreiben"
  2784. #: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:83
  2785. msgctxt "@label"
  2786. msgid "The assigned printer, %1, requires the following configuration change:"
  2787. msgid_plural "The assigned printer, %1, requires the following configuration changes:"
  2788. msgstr[0] "Der zugewiesene Drucker %1 erfordert die folgende Konfigurationsänderung:"
  2789. msgstr[1] "Der zugewiesene Drucker %1 erfordert die folgenden Konfigurationsänderungen:"
  2790. #: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:87
  2791. msgctxt "@label"
  2792. msgid "The printer %1 is assigned, but the job contains an unknown material configuration."
  2793. msgstr "Der Drucker %1 wurde zugewiesen, allerdings enthält der Auftrag eine unbekannte Materialkonfiguration."
  2794. #: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:97
  2795. msgctxt "@label"
  2796. msgid "Change material %1 from %2 to %3."
  2797. msgstr "Material %1 von %2 auf %3 wechseln."
  2798. #: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:100
  2799. msgctxt "@label"
  2800. msgid "Load %3 as material %1 (This cannot be overridden)."
  2801. msgstr "%3 als Material %1 laden (Dies kann nicht übergangen werden)."
  2802. #: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:103
  2803. msgctxt "@label"
  2804. msgid "Change print core %1 from %2 to %3."
  2805. msgstr "Print Core %1 von %2 auf %3 wechseln."
  2806. #: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:110
  2807. msgctxt "@label"
  2808. msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print."
  2809. msgstr "Überschreiben verwendet die definierten Einstellungen mit der vorhandenen Druckerkonfiguration. Dies kann zu einem fehlgeschlagenen Druck führen."
  2810. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144
  2811. msgctxt "@label"
  2812. msgid "Move to top"
  2813. msgstr "Vorziehen"
  2814. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:155
  2815. msgctxt "@label"
  2816. msgid "Delete"
  2817. msgstr "Löschen"
  2818. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:186
  2819. #: resources/qml/MonitorButton.qml:284
  2820. msgctxt "@label"
  2821. msgid "Resume"
  2822. msgstr "Zurückkehren"
  2823. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:188
  2824. msgctxt "@label"
  2825. msgid "Pausing..."
  2826. msgstr "Wird pausiert..."
  2827. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:190
  2828. msgctxt "@label"
  2829. msgid "Resuming..."
  2830. msgstr "Wird fortgesetzt..."
  2831. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:192
  2832. #: resources/qml/MonitorButton.qml:279 resources/qml/MonitorButton.qml:288
  2833. msgctxt "@label"
  2834. msgid "Pause"
  2835. msgstr "Pausieren"
  2836. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:206
  2837. msgctxt "@label"
  2838. msgid "Abort"
  2839. msgstr "Abbrechen"
  2840. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:206
  2841. msgctxt "@label"
  2842. msgid "Aborting..."
  2843. msgstr "Wird abgebrochen..."
  2844. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:218
  2845. msgctxt "@label %1 is the name of a print job."
  2846. msgid "Are you sure you want to move %1 to the top of the queue?"
  2847. msgstr "Soll dieser %1 wirklich an den Anfang der Warteschlange vorgezogen werden?"
  2848. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:219
  2849. msgctxt "@window:title"
  2850. msgid "Move print job to top"
  2851. msgstr "Druckauftrag vorziehen"
  2852. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:227
  2853. msgctxt "@label %1 is the name of a print job."
  2854. msgid "Are you sure you want to delete %1?"
  2855. msgstr "Soll %1 wirklich gelöscht werden?"
  2856. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:228
  2857. msgctxt "@window:title"
  2858. msgid "Delete print job"
  2859. msgstr "Druckauftrag löschen"
  2860. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:236
  2861. msgctxt "@label %1 is the name of a print job."
  2862. msgid "Are you sure you want to abort %1?"
  2863. msgstr "Möchten Sie %1 wirklich abbrechen?"
  2864. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:237
  2865. #: resources/qml/MonitorButton.qml:326
  2866. msgctxt "@window:title"
  2867. msgid "Abort print"
  2868. msgstr "Drucken abbrechen"
  2869. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:126
  2870. msgctxt "@label"
  2871. msgid "Unavailable printer"
  2872. msgstr "Drucker nicht verfügbar"
  2873. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:128
  2874. msgctxt "@label"
  2875. msgid "First available"
  2876. msgstr "Zuerst verfügbar"
  2877. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:242
  2878. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:246
  2879. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:472
  2880. msgctxt "@info"
  2881. msgid "Please update your printer's firmware to manage the queue remotely."
  2882. msgstr "Damit Sie die Warteschlange aus der Ferne verwalten können, müssen Sie die Druckfirmware aktualisieren."
  2883. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:70
  2884. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82
  2885. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84
  2886. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86
  2887. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88
  2888. msgctxt "@label:status"
  2889. msgid "Aborted"
  2890. msgstr "Abgebrochen"
  2891. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:72
  2892. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:74
  2893. msgctxt "@label:status"
  2894. msgid "Finished"
  2895. msgstr "Beendet"
  2896. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76
  2897. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78
  2898. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356
  2899. msgctxt "@label:status"
  2900. msgid "Preparing..."
  2901. msgstr "Vorbereitung..."
  2902. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80
  2903. msgctxt "@label:status"
  2904. msgid "Aborting..."
  2905. msgstr "Wird abgebrochen..."
  2906. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90
  2907. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92
  2908. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94
  2909. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96
  2910. msgctxt "@label:status"
  2911. msgid "Failed"
  2912. msgstr "Fehlgeschlagen"
  2913. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98
  2914. msgctxt "@label:status"
  2915. msgid "Pausing..."
  2916. msgstr "Wird pausiert..."
  2917. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100
  2918. msgctxt "@label:status"
  2919. msgid "Paused"
  2920. msgstr "Pausiert"
  2921. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102
  2922. msgctxt "@label:status"
  2923. msgid "Resuming..."
  2924. msgstr "Wird fortgesetzt..."
  2925. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104
  2926. msgctxt "@label:status"
  2927. msgid "Action required"
  2928. msgstr "Handlung erforderlich"
  2929. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106
  2930. msgctxt "@label:status"
  2931. msgid "Finishes %1 at %2"
  2932. msgstr "Fertigstellung %1 um %2"
  2933. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:148
  2934. msgctxt "@label link to Connect and Cloud interfaces"
  2935. msgid "Manage printer"
  2936. msgstr "Drucker verwalten"
  2937. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:280
  2938. msgctxt "@info"
  2939. msgid "Webcam feeds for cloud printers cannot be viewed from UltiMaker Cura. Click \"Manage printer\" to visit Ultimaker Digital Factory and view this webcam."
  2940. msgstr "Webcam-Feeds für Cloud-Drucker können nicht in UltiMaker Cura angezeigt werden. Klicken Sie auf „Drucker verwalten“, um die Ultimaker Digital Factory zu besuchen und diese Webcam zu sehen."
  2941. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:340
  2942. msgctxt "@label:status"
  2943. msgid "Loading..."
  2944. msgstr "Lädt..."
  2945. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:344
  2946. msgctxt "@label:status"
  2947. msgid "Unavailable"
  2948. msgstr "Nicht verfügbar"
  2949. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348
  2950. msgctxt "@label:status"
  2951. msgid "Unreachable"
  2952. msgstr "Nicht erreichbar"
  2953. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352
  2954. msgctxt "@label:status"
  2955. msgid "Idle"
  2956. msgstr "Leerlauf"
  2957. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:361
  2958. msgctxt "@label:status"
  2959. msgid "Printing"
  2960. msgstr "Drucken"
  2961. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:402
  2962. msgctxt "@label"
  2963. msgid "Untitled"
  2964. msgstr "Unbenannt"
  2965. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:417
  2966. msgctxt "@label"
  2967. msgid "Anonymous"
  2968. msgstr "Anonym"
  2969. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:438
  2970. msgctxt "@label:status"
  2971. msgid "Requires configuration changes"
  2972. msgstr "Erfordert Konfigurationsänderungen"
  2973. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:452
  2974. msgctxt "@action:button"
  2975. msgid "Details"
  2976. msgstr "Details"
  2977. #: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:29
  2978. msgctxt "@label"
  2979. msgid "Queued"
  2980. msgstr "In Warteschlange"
  2981. #: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:64
  2982. msgctxt "@label link to connect manager"
  2983. msgid "Manage in browser"
  2984. msgstr "Im Browser verwalten"
  2985. #: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:91
  2986. msgctxt "@label"
  2987. msgid "There are no print jobs in the queue. Slice and send a job to add one."
  2988. msgstr "Die Warteschlange enthält keine Druckaufträge. Slicen Sie einen Auftrag und schicken Sie ihn ab, um ihn zur Warteschlange hinzuzufügen."
  2989. #: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99
  2990. msgctxt "@label"
  2991. msgid "Print jobs"
  2992. msgstr "Druckaufträge"
  2993. #: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:108
  2994. msgctxt "@label"
  2995. msgid "Total print time"
  2996. msgstr "Druckdauer insgesamt"
  2997. #: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:117
  2998. msgctxt "@label"
  2999. msgid "Waiting for"
  3000. msgstr "Warten auf"
  3001. #: plugins/UM3NetworkPrinting/resources/qml/MonitorStage.qml:117
  3002. msgctxt "@info"
  3003. msgid "Monitor your printers from everywhere using Ultimaker Digital Factory"
  3004. msgstr "Überwachen Sie Ihre Drucker standortunabhängig mit Ultimaker Digital Factory."
  3005. #: plugins/UM3NetworkPrinting/resources/qml/MonitorStage.qml:129
  3006. msgctxt "@button"
  3007. msgid "View printers in Digital Factory"
  3008. msgstr "Drucker in der Digital Factory anzeigen"
  3009. #: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:12
  3010. msgctxt "@title:window"
  3011. msgid "Print over network"
  3012. msgstr "Drucken über Netzwerk"
  3013. #: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:53
  3014. msgctxt "@action:button"
  3015. msgid "Print"
  3016. msgstr "Drucken"
  3017. #: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:81
  3018. msgctxt "@label"
  3019. msgid "Printer selection"
  3020. msgstr "Druckerauswahl"
  3021. #: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:80
  3022. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:162
  3023. msgctxt "@action:button"
  3024. msgid "Print via cloud"
  3025. msgstr "Über Cloud drucken"
  3026. #: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:81
  3027. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:163
  3028. msgctxt "@properties:tooltip"
  3029. msgid "Print via cloud"
  3030. msgstr "Über Cloud drucken"
  3031. #: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:82
  3032. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:164
  3033. msgctxt "@info:status"
  3034. msgid "Connected via cloud"
  3035. msgstr "Über Cloud verbunden"
  3036. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:276
  3037. msgctxt "@action:button"
  3038. msgid "Monitor print"
  3039. msgstr "Druck überwachen"
  3040. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:278
  3041. msgctxt "@action:tooltip"
  3042. msgid "Track the print in Ultimaker Digital Factory"
  3043. msgstr "Verfolgen Sie den Druck in der Ultimaker Digital Factory"
  3044. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:298
  3045. #, python-brace-format
  3046. msgctxt "@error:send"
  3047. msgid "Unknown error code when uploading print job: {0}"
  3048. msgstr "Unbekannter Fehlercode beim Upload des Druckauftrags: {0}"
  3049. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:422
  3050. #: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:23
  3051. msgctxt "info:name"
  3052. msgid "Ultimaker Digital Factory"
  3053. msgstr "Ultimaker Digital Factory"
  3054. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:425
  3055. #, python-brace-format
  3056. msgctxt "@message {printer_name} is replaced with the name of the printer"
  3057. msgid "{printer_name} will be removed until the next account sync."
  3058. msgstr "{printer_name} wird bis zur nächsten Synchronisierung entfernt."
  3059. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:426
  3060. #, python-brace-format
  3061. msgctxt "@message {printer_name} is replaced with the name of the printer"
  3062. msgid "To remove {printer_name} permanently, visit {digital_factory_link}"
  3063. msgstr "Wenn Sie {printer_name} dauerhaft entfernen möchten, dann besuchen Sie bitte die {digital_factory_link}"
  3064. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:427
  3065. #, python-brace-format
  3066. msgctxt "@message {printer_name} is replaced with the name of the printer"
  3067. msgid "Are you sure you want to remove {printer_name} temporarily?"
  3068. msgstr "Möchten Sie {printer_name} wirklich vorübergehend entfernen?"
  3069. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:474
  3070. msgctxt "@title:window"
  3071. msgid "Remove printers?"
  3072. msgstr "Drucker entfernen?"
  3073. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:477
  3074. #, python-brace-format
  3075. msgctxt "@label"
  3076. msgid ""
  3077. "You are about to remove {0} printer from Cura. This action cannot be undone.\n"
  3078. "Are you sure you want to continue?"
  3079. msgid_plural ""
  3080. "You are about to remove {0} printers from Cura. This action cannot be undone.\n"
  3081. "Are you sure you want to continue?"
  3082. msgstr[0] ""
  3083. "Es wird gleich {0} Drucker aus Cura entfernt. Der Vorgang kann nicht rückgängig gemacht werden. \n"
  3084. "Möchten Sie wirklich fortfahren."
  3085. msgstr[1] ""
  3086. "Es werden gleich {0} Drucker aus Cura entfernt. Der Vorgang kann nicht rückgängig gemacht werden. \n"
  3087. "Möchten Sie wirklich fortfahren."
  3088. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:484
  3089. msgctxt "@label"
  3090. msgid ""
  3091. "You are about to remove all printers from Cura. This action cannot be undone.\n"
  3092. "Are you sure you want to continue?"
  3093. msgstr "Es werden gleich alle Drucker aus Cura entfernt. Dieser Vorgang kann nicht rückgängig gemacht werden.Möchten Sie wirklich fortfahren?"
  3094. #: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25
  3095. #, python-brace-format
  3096. msgctxt "@info:status"
  3097. msgid ""
  3098. "Your printer <b>{printer_name}</b> could be connected via cloud.\n"
  3099. " Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory"
  3100. msgstr ""
  3101. "Your printer <b>{printer_name}</b> could be connected via cloud.\n"
  3102. " Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory"
  3103. #: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26
  3104. msgctxt "@info:title"
  3105. msgid "Are you ready for cloud printing?"
  3106. msgstr "Sind Sie bereit für den Cloud-Druck?"
  3107. #: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30
  3108. msgctxt "@action"
  3109. msgid "Get started"
  3110. msgstr "Erste Schritte"
  3111. #: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31
  3112. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:24
  3113. msgctxt "@action"
  3114. msgid "Learn more"
  3115. msgstr "Mehr erfahren"
  3116. #: plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18
  3117. #, fuzzy
  3118. msgctxt "@info:status"
  3119. msgid "You are attempting to connect to a printer that is not running Ultimaker Connect. Please update the printer to the latest firmware."
  3120. msgstr "Sie versuchen, sich mit einem Drucker zu verbinden, auf dem UltiMaker Connect nicht läuft. Bitte aktualisieren Sie die Firmware des Druckers."
  3121. #: plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21
  3122. msgctxt "@info:title"
  3123. msgid "Update your printer"
  3124. msgstr "Drucker aktualisieren"
  3125. #: plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24
  3126. #, python-brace-format
  3127. msgctxt "@info:status"
  3128. msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}."
  3129. msgstr "Cura hat Materialprofile entdeckt, die auf dem Host-Drucker der Gruppe {0} noch nicht installiert wurden."
  3130. #: plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26
  3131. msgctxt "@info:title"
  3132. msgid "Sending materials to printer"
  3133. msgstr "Material an Drucker senden"
  3134. #: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:13
  3135. #, fuzzy
  3136. msgctxt "info:status"
  3137. msgid "New printer detected from your Ultimaker account"
  3138. msgid_plural "New printers detected from your Ultimaker account"
  3139. msgstr[0] "Ihr UltiMaker-Konto hat einen neuen Drucker erkannt"
  3140. msgstr[1] "Ihr UltiMaker-Konto hat neue Drucker erkannt"
  3141. #: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:29
  3142. #, python-brace-format
  3143. msgctxt "info:status Filled in with printer name and printer model."
  3144. msgid "Adding printer {name} ({model}) from your account"
  3145. msgstr "Drucker {name} ({model}) aus Ihrem Konto wird hinzugefügt"
  3146. #: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:48
  3147. #, python-brace-format
  3148. msgctxt "info:{0} gets replaced by a number of printers"
  3149. msgid "... and {0} other"
  3150. msgid_plural "... and {0} others"
  3151. msgstr[0] "... und {0} weiterer"
  3152. msgstr[1] "... und {0} weitere"
  3153. #: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:57
  3154. msgctxt "info:status"
  3155. msgid "Printers added from Digital Factory:"
  3156. msgstr "Drucker aus Digital Factory hinzugefügt:"
  3157. #: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27
  3158. #, python-brace-format
  3159. msgctxt "@info:status"
  3160. msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host."
  3161. msgstr "Sie versuchen, sich mit {0} zu verbinden, aber dieser Drucker ist nicht der Host, der die Gruppe verwaltet. Besuchen Sie die Website, um den Drucker als Host der Gruppe zu konfigurieren."
  3162. #: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30
  3163. msgctxt "@info:title"
  3164. msgid "Not a group host"
  3165. msgstr "Nicht Host-Drucker der Gruppe"
  3166. #: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36
  3167. msgctxt "@action"
  3168. msgid "Configure group"
  3169. msgstr "Gruppe konfigurieren"
  3170. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:18
  3171. msgctxt "@info:status"
  3172. msgid "You will receive a confirmation via email when the print job is approved"
  3173. msgstr "Sie erhalten eine Bestätigung per E-Mail, wenn der Druckauftrag genehmigt wurde."
  3174. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:19
  3175. msgctxt "@info:title"
  3176. msgid "The print job was successfully submitted"
  3177. msgstr "Der Druckauftrag wurde erfolgreich übermittelt."
  3178. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:22
  3179. msgctxt "@action"
  3180. msgid "Manage print jobs"
  3181. msgstr "Druckaufträge verwalten"
  3182. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15
  3183. msgctxt "@info:status"
  3184. msgid "Please wait until the current job has been sent."
  3185. msgstr "Bitte warten Sie, bis der aktuelle Druckauftrag gesendet wurde."
  3186. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16
  3187. msgctxt "@info:title"
  3188. msgid "Print error"
  3189. msgstr "Druckfehler"
  3190. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15
  3191. msgctxt "@info:text"
  3192. msgid "Could not upload the data to the printer."
  3193. msgstr "Daten konnten nicht in Drucker geladen werden."
  3194. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16
  3195. msgctxt "@info:title"
  3196. msgid "Network error"
  3197. msgstr "Netzwerkfehler"
  3198. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15
  3199. msgctxt "@info:status"
  3200. msgid "Sending Print Job"
  3201. msgstr "Druckauftrag senden"
  3202. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16
  3203. msgctxt "@info:status"
  3204. msgid "Uploading print job to printer."
  3205. msgstr "Druckauftrag wird vorbereitet."
  3206. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16
  3207. msgctxt "@info:status"
  3208. msgid "Print job queue is full. The printer can't accept a new job."
  3209. msgstr "Die Druckauftragswarteschlange ist voll. Der Drucker kann keinen neuen Auftrag annehmen."
  3210. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17
  3211. msgctxt "@info:title"
  3212. msgid "Queue Full"
  3213. msgstr "Warteschlange voll"
  3214. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15
  3215. msgctxt "@info:status"
  3216. msgid "Print job was successfully sent to the printer."
  3217. msgstr "Der Druckauftrag wurde erfolgreich an den Drucker gesendet."
  3218. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16
  3219. msgctxt "@info:title"
  3220. msgid "Data Sent"
  3221. msgstr "Daten gesendet"
  3222. #: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:17
  3223. msgctxt "info:status"
  3224. msgid "This printer is not linked to the Digital Factory:"
  3225. msgid_plural "These printers are not linked to the Digital Factory:"
  3226. msgstr[0] "Dieser Drucker ist nicht mit der Digital Factory verbunden:"
  3227. msgstr[1] "Diese Drucker sind nicht mit der Digital Factory verbunden:"
  3228. #: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:29
  3229. #, python-brace-format
  3230. msgctxt "info:status"
  3231. msgid "To establish a connection, please visit the {website_link}"
  3232. msgstr "Bitte besuchen Sie {website_link}, um eine Verbindung herzustellen"
  3233. #: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:33
  3234. msgctxt "info:status"
  3235. msgid "A cloud connection is not available for a printer"
  3236. msgid_plural "A cloud connection is not available for some printers"
  3237. msgstr[0] "Für einen Drucker ist keine Cloud-Verbindung verfügbar"
  3238. msgstr[1] "Für mehrere Drucker ist keine Cloud-Verbindung verfügbar"
  3239. #: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:41
  3240. msgctxt "@action:button"
  3241. msgid "Keep printer configurations"
  3242. msgstr "Druckerkonfigurationen speichern"
  3243. #: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:46
  3244. msgctxt "@action:button"
  3245. msgid "Remove printers"
  3246. msgstr "Drucker entfernen"
  3247. #: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:62
  3248. msgctxt "@action:button Preceded by 'Ready to'."
  3249. msgid "Print over network"
  3250. msgstr "Drucken über Netzwerk"
  3251. #: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:63
  3252. msgctxt "@properties:tooltip"
  3253. msgid "Print over network"
  3254. msgstr "Drücken über Netzwerk"
  3255. #: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:64
  3256. msgctxt "@info:status"
  3257. msgid "Connected over the network"
  3258. msgstr "Über Netzwerk verbunden"
  3259. #: plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28
  3260. msgctxt "@action"
  3261. msgid "Connect via Network"
  3262. msgstr "Anschluss über Netzwerk"
  3263. #: plugins/UM3NetworkPrinting/src/Utils.py:27
  3264. msgctxt "@info:status"
  3265. msgid "tomorrow"
  3266. msgstr "morgen"
  3267. #: plugins/UM3NetworkPrinting/src/Utils.py:30
  3268. msgctxt "@info:status"
  3269. msgid "today"
  3270. msgstr "heute"
  3271. #: plugins/USBPrinting/USBPrinterOutputDevice.py:42
  3272. msgctxt "@item:inmenu"
  3273. msgid "USB printing"
  3274. msgstr "USB-Drucken"
  3275. #: plugins/USBPrinting/USBPrinterOutputDevice.py:43
  3276. msgctxt "@action:button Preceded by 'Ready to'."
  3277. msgid "Print via USB"
  3278. msgstr "Über USB drucken"
  3279. #: plugins/USBPrinting/USBPrinterOutputDevice.py:44
  3280. msgctxt "@info:tooltip"
  3281. msgid "Print via USB"
  3282. msgstr "Über USB drucken"
  3283. #: plugins/USBPrinting/USBPrinterOutputDevice.py:80
  3284. msgctxt "@info:status"
  3285. msgid "Connected via USB"
  3286. msgstr "Über USB verbunden"
  3287. #: plugins/USBPrinting/USBPrinterOutputDevice.py:110
  3288. msgctxt "@label"
  3289. msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?"
  3290. msgstr "Ein USB-Druck wird ausgeführt. Das Schließen von Cura beendet diesen Druck. Sind Sie sicher?"
  3291. #: plugins/USBPrinting/USBPrinterOutputDevice.py:135
  3292. msgctxt "@message"
  3293. msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed."
  3294. msgstr "Druck wird bearbeitet. Cura kann keinen weiteren Druck via USB starten, bis der vorherige Druck abgeschlossen wurde."
  3295. #: plugins/USBPrinting/USBPrinterOutputDevice.py:136
  3296. msgctxt "@message"
  3297. msgid "Print in Progress"
  3298. msgstr "Druck in Bearbeitung"
  3299. #: plugins/UltimakerMachineActions/BedLevelMachineAction.py:24
  3300. msgctxt "@action"
  3301. msgid "Level build plate"
  3302. msgstr "Druckbett nivellieren"
  3303. #: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30
  3304. msgctxt "@title"
  3305. msgid "Build Plate Leveling"
  3306. msgstr "Nivellierung der Druckplatte"
  3307. #: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:42
  3308. msgctxt "@label"
  3309. msgid "To make sure your prints will come out great, you can now adjust your buildplate. When you click 'Move to Next Position' the nozzle will move to the different positions that can be adjusted."
  3310. msgstr "Um sicherzustellen, dass Ihre Drucke hervorragend werden, können Sie nun Ihre Druckplatte justieren. Wenn Sie auf „Gehe zur nächsten Position“ klicken, bewegt sich die Düse zu den verschiedenen Positionen, die justiert werden können."
  3311. #: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:52
  3312. msgctxt "@label"
  3313. msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle."
  3314. msgstr "Legen Sie für jede Position ein Blatt Papier unter die Düse und stellen Sie die Höhe der Druckplatte ein. Die Höhe der Druckplatte ist korrekt, wenn das Papier von der Spitze der Düse leicht berührt wird."
  3315. #: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:67
  3316. msgctxt "@action:button"
  3317. msgid "Start Build Plate Leveling"
  3318. msgstr "Nivellierung der Druckplatte starten"
  3319. #: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:79
  3320. msgctxt "@action:button"
  3321. msgid "Move to Next Position"
  3322. msgstr "Gehe zur nächsten Position"
  3323. #: plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21
  3324. msgctxt "@action"
  3325. msgid "Select upgrades"
  3326. msgstr "Upgrades wählen"
  3327. #: plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30
  3328. msgctxt "@label"
  3329. msgid "Please select any upgrades made to this UltiMaker Original"
  3330. msgstr "Wählen Sie bitte alle Upgrades für dieses UltiMaker-Original"
  3331. #: plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:39
  3332. msgctxt "@label"
  3333. msgid "Heated Build Plate (official kit or self-built)"
  3334. msgstr "Beheizte Druckplatte (offizielles Kit oder Eigenbau)"
  3335. #: plugins/X3DReader/__init__.py:13
  3336. msgctxt "@item:inlistbox"
  3337. msgid "X3D File"
  3338. msgstr "X3D-Datei"
  3339. #: plugins/XRayView/__init__.py:12
  3340. msgctxt "@item:inlistbox"
  3341. msgid "X-Ray view"
  3342. msgstr "Röntgen-Ansicht"
  3343. #: resources/qml/Account/AccountWidget.qml:24
  3344. msgctxt "@action:button"
  3345. msgid "Sign in"
  3346. msgstr "Anmelden"
  3347. #: resources/qml/Account/GeneralOperations.qml:19
  3348. #: resources/qml/WelcomePages/CloudContent.qml:64
  3349. msgctxt "@label"
  3350. msgid "Sign in to the UltiMaker platform"
  3351. msgstr "Bei der UltiMaker-Plattform anmelden"
  3352. #: resources/qml/Account/GeneralOperations.qml:39
  3353. msgctxt "@text"
  3354. msgid ""
  3355. "- Add material profiles and plug-ins from the Marketplace\n"
  3356. "- Back-up and sync your material profiles and plug-ins\n"
  3357. "- Share ideas and get help from 48,000+ users in the UltiMaker community"
  3358. msgstr ""
  3359. "- Materialprofile und Plug-ins aus dem Marketplace hinzufügen\n"
  3360. "- Materialprofile und Plug-ins sichern und synchronisieren\n"
  3361. "- Ideenaustausch mit und Hilfe von mehr als 48.000 Benutzern in der UltiMaker Community"
  3362. #: resources/qml/Account/GeneralOperations.qml:58
  3363. msgctxt "@button"
  3364. msgid "Create a free UltiMaker account"
  3365. msgstr "Kostenloses UltiMaker-Konto erstellen"
  3366. #: resources/qml/Account/SyncState.qml:35
  3367. msgctxt "@label"
  3368. msgid "Checking..."
  3369. msgstr "Überprüfung läuft ..."
  3370. #: resources/qml/Account/SyncState.qml:42
  3371. msgctxt "@label"
  3372. msgid "Account synced"
  3373. msgstr "Konto wurde synchronisiert"
  3374. #: resources/qml/Account/SyncState.qml:49
  3375. msgctxt "@label"
  3376. msgid "Something went wrong..."
  3377. msgstr "Irgendetwas ist schief gelaufen ..."
  3378. #: resources/qml/Account/SyncState.qml:102
  3379. msgctxt "@button"
  3380. msgid "Install pending updates"
  3381. msgstr "Ausstehende Updates installieren"
  3382. #: resources/qml/Account/SyncState.qml:123
  3383. msgctxt "@button"
  3384. msgid "Check for account updates"
  3385. msgstr "Nach Updates für das Konto suchen"
  3386. #: resources/qml/Account/UserOperations.qml:78
  3387. msgctxt "@label The argument is a timestamp"
  3388. msgid "Last update: %1"
  3389. msgstr "Letztes Update: %1"
  3390. #: resources/qml/Account/UserOperations.qml:107
  3391. msgctxt "@button"
  3392. msgid "UltiMaker Account"
  3393. msgstr "UltiMaker‑Konto"
  3394. #: resources/qml/Account/UserOperations.qml:126
  3395. msgctxt "@button"
  3396. msgid "Sign Out"
  3397. msgstr "Abmelden"
  3398. #: resources/qml/ActionPanel/OutputProcessWidget.qml:59
  3399. msgctxt "@label"
  3400. msgid "No time estimation available"
  3401. msgstr "Keine Zeitschätzung verfügbar"
  3402. #: resources/qml/ActionPanel/OutputProcessWidget.qml:77
  3403. msgctxt "@label"
  3404. msgid "No cost estimation available"
  3405. msgstr "Keine Kostenschätzung verfügbar"
  3406. #: resources/qml/ActionPanel/OutputProcessWidget.qml:127
  3407. msgctxt "@button"
  3408. msgid "Preview"
  3409. msgstr "Vorschau"
  3410. #: resources/qml/ActionPanel/PrintJobInformation.qml:31
  3411. msgctxt "@label"
  3412. msgid "Time estimation"
  3413. msgstr "Zeitschätzung"
  3414. #: resources/qml/ActionPanel/PrintJobInformation.qml:107
  3415. msgctxt "@label"
  3416. msgid "Material estimation"
  3417. msgstr "Materialschätzung"
  3418. #: resources/qml/ActionPanel/PrintJobInformation.qml:156
  3419. msgctxt "@label m for meter"
  3420. msgid "%1m"
  3421. msgstr "%1 m"
  3422. #: resources/qml/ActionPanel/PrintJobInformation.qml:157
  3423. msgctxt "@label g for grams"
  3424. msgid "%1g"
  3425. msgstr "%1 g"
  3426. #: resources/qml/ActionPanel/SliceProcessWidget.qml:54
  3427. msgctxt "@label:PrintjobStatus"
  3428. msgid "Slicing..."
  3429. msgstr "Das Slicing läuft..."
  3430. #: resources/qml/ActionPanel/SliceProcessWidget.qml:78
  3431. msgctxt "@label:PrintjobStatus"
  3432. msgid "Unable to slice"
  3433. msgstr "Slicing nicht möglich"
  3434. #: resources/qml/ActionPanel/SliceProcessWidget.qml:114
  3435. msgctxt "@button"
  3436. msgid "Processing"
  3437. msgstr "Verarbeitung läuft"
  3438. #: resources/qml/ActionPanel/SliceProcessWidget.qml:114
  3439. msgctxt "@button"
  3440. msgid "Slice"
  3441. msgstr "Slice"
  3442. #: resources/qml/ActionPanel/SliceProcessWidget.qml:115
  3443. msgctxt "@label"
  3444. msgid "Start the slicing process"
  3445. msgstr "Slicing-Vorgang starten"
  3446. #: resources/qml/ActionPanel/SliceProcessWidget.qml:132
  3447. msgctxt "@button"
  3448. msgid "Cancel"
  3449. msgstr "Abbrechen"
  3450. #: resources/qml/Actions.qml:81
  3451. msgctxt "@action:inmenu"
  3452. msgid "Show Online Troubleshooting"
  3453. msgstr "Online-Fehlerbehebung anzeigen"
  3454. #: resources/qml/Actions.qml:88
  3455. msgctxt "@action:inmenu"
  3456. msgid "Toggle Full Screen"
  3457. msgstr "Umschalten auf Vollbild-Modus"
  3458. #: resources/qml/Actions.qml:96
  3459. msgctxt "@action:inmenu"
  3460. msgid "Exit Full Screen"
  3461. msgstr "Vollbildmodus beenden"
  3462. #: resources/qml/Actions.qml:103
  3463. msgctxt "@action:inmenu menubar:edit"
  3464. msgid "&Undo"
  3465. msgstr "&Rückgängig machen"
  3466. #: resources/qml/Actions.qml:113
  3467. msgctxt "@action:inmenu menubar:edit"
  3468. msgid "&Redo"
  3469. msgstr "&Wiederholen"
  3470. #: resources/qml/Actions.qml:131
  3471. msgctxt "@action:inmenu menubar:file"
  3472. msgid "&Quit"
  3473. msgstr "&Beenden"
  3474. #: resources/qml/Actions.qml:139
  3475. msgctxt "@action:inmenu menubar:view"
  3476. msgid "3D View"
  3477. msgstr "3D-Ansicht"
  3478. #: resources/qml/Actions.qml:146
  3479. msgctxt "@action:inmenu menubar:view"
  3480. msgid "Front View"
  3481. msgstr "Vorderansicht"
  3482. #: resources/qml/Actions.qml:153
  3483. msgctxt "@action:inmenu menubar:view"
  3484. msgid "Top View"
  3485. msgstr "Draufsicht"
  3486. #: resources/qml/Actions.qml:160
  3487. msgctxt "@action:inmenu menubar:view"
  3488. msgid "Bottom View"
  3489. msgstr "Ansicht von unten"
  3490. #: resources/qml/Actions.qml:167
  3491. msgctxt "@action:inmenu menubar:view"
  3492. msgid "Left Side View"
  3493. msgstr "Ansicht von links"
  3494. #: resources/qml/Actions.qml:174
  3495. msgctxt "@action:inmenu menubar:view"
  3496. msgid "Right Side View"
  3497. msgstr "Ansicht von rechts"
  3498. #: resources/qml/Actions.qml:188
  3499. msgctxt "@action:inmenu"
  3500. msgid "Configure Cura..."
  3501. msgstr "Cura konfigurieren..."
  3502. #: resources/qml/Actions.qml:197
  3503. msgctxt "@action:inmenu menubar:printer"
  3504. msgid "&Add Printer..."
  3505. msgstr "&Drucker hinzufügen..."
  3506. #: resources/qml/Actions.qml:203
  3507. msgctxt "@action:inmenu menubar:printer"
  3508. msgid "Manage Pr&inters..."
  3509. msgstr "Dr&ucker verwalten..."
  3510. #: resources/qml/Actions.qml:210
  3511. msgctxt "@action:inmenu"
  3512. msgid "Manage Materials..."
  3513. msgstr "Materialien werden verwaltet..."
  3514. #: resources/qml/Actions.qml:218
  3515. msgctxt "@action:inmenu Marketplace is a brand name of UltiMaker's, so don't translate."
  3516. msgid "Add more materials from Marketplace"
  3517. msgstr "Weiteres Material aus Marketplace hinzufügen"
  3518. #: resources/qml/Actions.qml:225
  3519. msgctxt "@action:inmenu menubar:profile"
  3520. msgid "&Update profile with current settings/overrides"
  3521. msgstr "&Profil mit aktuellen Einstellungen/Überschreibungen aktualisieren"
  3522. #: resources/qml/Actions.qml:233
  3523. msgctxt "@action:inmenu menubar:profile"
  3524. msgid "&Discard current changes"
  3525. msgstr "&Aktuelle Änderungen verwerfen"
  3526. #: resources/qml/Actions.qml:245
  3527. msgctxt "@action:inmenu menubar:profile"
  3528. msgid "&Create profile from current settings/overrides..."
  3529. msgstr "P&rofil von aktuellen Einstellungen/Überschreibungen erstellen..."
  3530. #: resources/qml/Actions.qml:251
  3531. msgctxt "@action:inmenu menubar:profile"
  3532. msgid "Manage Profiles..."
  3533. msgstr "Profile verwalten..."
  3534. #: resources/qml/Actions.qml:259
  3535. msgctxt "@action:inmenu menubar:help"
  3536. msgid "Show Online &Documentation"
  3537. msgstr "Online-&Dokumentation anzeigen"
  3538. #: resources/qml/Actions.qml:267
  3539. msgctxt "@action:inmenu menubar:help"
  3540. msgid "Report a &Bug"
  3541. msgstr "&Fehler melden"
  3542. #: resources/qml/Actions.qml:275
  3543. msgctxt "@action:inmenu menubar:help"
  3544. msgid "What's New"
  3545. msgstr "Neuheiten"
  3546. #: resources/qml/Actions.qml:289
  3547. msgctxt "@action:inmenu menubar:help"
  3548. msgid "About..."
  3549. msgstr "Über..."
  3550. #: resources/qml/Actions.qml:296
  3551. msgctxt "@action:inmenu menubar:edit"
  3552. msgid "Delete Selected"
  3553. msgstr "Ausgewählte löschen"
  3554. #: resources/qml/Actions.qml:306
  3555. msgctxt "@action:inmenu menubar:edit"
  3556. msgid "Center Selected"
  3557. msgstr "Ausgewählte zentrieren"
  3558. #: resources/qml/Actions.qml:315
  3559. msgctxt "@action:inmenu menubar:edit"
  3560. msgid "Multiply Selected"
  3561. msgstr "Ausgewählte vervielfachen"
  3562. #: resources/qml/Actions.qml:324
  3563. msgctxt "@action:inmenu"
  3564. msgid "Delete Model"
  3565. msgstr "Modell löschen"
  3566. #: resources/qml/Actions.qml:332
  3567. msgctxt "@action:inmenu"
  3568. msgid "Ce&nter Model on Platform"
  3569. msgstr "Modell auf Druckplatte ze&ntrieren"
  3570. #: resources/qml/Actions.qml:338
  3571. msgctxt "@action:inmenu menubar:edit"
  3572. msgid "&Group Models"
  3573. msgstr "Modelle &gruppieren"
  3574. #: resources/qml/Actions.qml:358
  3575. msgctxt "@action:inmenu menubar:edit"
  3576. msgid "Ungroup Models"
  3577. msgstr "Gruppierung für Modelle aufheben"
  3578. #: resources/qml/Actions.qml:368
  3579. msgctxt "@action:inmenu menubar:edit"
  3580. msgid "&Merge Models"
  3581. msgstr "Modelle &zusammenführen"
  3582. #: resources/qml/Actions.qml:378
  3583. msgctxt "@action:inmenu"
  3584. msgid "&Multiply Model..."
  3585. msgstr "Modell &multiplizieren..."
  3586. #: resources/qml/Actions.qml:385
  3587. msgctxt "@action:inmenu menubar:edit"
  3588. msgid "Select All Models"
  3589. msgstr "Alle Modelle wählen"
  3590. #: resources/qml/Actions.qml:395
  3591. msgctxt "@action:inmenu menubar:edit"
  3592. msgid "Clear Build Plate"
  3593. msgstr "Druckplatte reinigen"
  3594. #: resources/qml/Actions.qml:405
  3595. msgctxt "@action:inmenu menubar:file"
  3596. msgid "Reload All Models"
  3597. msgstr "Alle Modelle neu laden"
  3598. #: resources/qml/Actions.qml:414
  3599. msgctxt "@action:inmenu menubar:edit"
  3600. msgid "Arrange All Models"
  3601. msgstr "Alle Modelle anordnen"
  3602. #: resources/qml/Actions.qml:422
  3603. msgctxt "@action:inmenu menubar:edit"
  3604. msgid "Arrange Selection"
  3605. msgstr "Anordnung auswählen"
  3606. #: resources/qml/Actions.qml:429
  3607. msgctxt "@action:inmenu menubar:edit"
  3608. msgid "Reset All Model Positions"
  3609. msgstr "Alle Modellpositionen zurücksetzen"
  3610. #: resources/qml/Actions.qml:436
  3611. msgctxt "@action:inmenu menubar:edit"
  3612. msgid "Reset All Model Transformations"
  3613. msgstr "Alle Modelltransformationen zurücksetzen"
  3614. #: resources/qml/Actions.qml:445
  3615. msgctxt "@action:inmenu menubar:file"
  3616. msgid "&Open File(s)..."
  3617. msgstr "&Datei(en) öffnen..."
  3618. #: resources/qml/Actions.qml:455
  3619. msgctxt "@action:inmenu menubar:file"
  3620. msgid "&New Project..."
  3621. msgstr "&Neues Projekt..."
  3622. #: resources/qml/Actions.qml:462
  3623. msgctxt "@action:inmenu menubar:help"
  3624. msgid "Show Configuration Folder"
  3625. msgstr "Konfigurationsordner anzeigen"
  3626. #: resources/qml/Actions.qml:469 resources/qml/Settings/SettingView.qml:476
  3627. msgctxt "@action:menu"
  3628. msgid "Configure setting visibility..."
  3629. msgstr "Sichtbarkeit einstellen wird konfiguriert..."
  3630. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32
  3631. msgctxt "@label:button"
  3632. msgid "My printers"
  3633. msgstr "Meine Drucker"
  3634. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34
  3635. msgctxt "@tooltip:button"
  3636. msgid "Monitor printers in Ultimaker Digital Factory."
  3637. msgstr "Überwachen Sie Drucker in der Ultimaker Digital Factory."
  3638. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41
  3639. msgctxt "@tooltip:button"
  3640. msgid "Create print projects in Digital Library."
  3641. msgstr "Erstellen Sie Druckprojekte in der digitalen Bibliothek."
  3642. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46
  3643. msgctxt "@label:button"
  3644. msgid "Print jobs"
  3645. msgstr "Druckaufträge"
  3646. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48
  3647. msgctxt "@tooltip:button"
  3648. msgid "Monitor print jobs and reprint from your print history."
  3649. msgstr "Überwachen Sie Druckaufträge und drucken Sie sie aus Ihrem Druckprotokoll nach."
  3650. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55
  3651. msgctxt "@tooltip:button"
  3652. msgid "Extend UltiMaker Cura with plugins and material profiles."
  3653. msgstr "Erweitern Sie UltiMaker Cura durch Plugins und Materialprofile."
  3654. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62
  3655. msgctxt "@tooltip:button"
  3656. msgid "Become a 3D printing expert with UltiMaker e-learning."
  3657. msgstr "Werden Sie ein 3D-Druck-Experte mittels des E-Learning von UltiMaker."
  3658. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67
  3659. msgctxt "@label:button"
  3660. msgid "UltiMaker support"
  3661. msgstr "UltiMaker Kundendienst"
  3662. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69
  3663. msgctxt "@tooltip:button"
  3664. msgid "Learn how to get started with UltiMaker Cura."
  3665. msgstr "Erfahren Sie, wie Sie mit UltiMaker Cura Ihre Arbeit beginnen können."
  3666. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74
  3667. msgctxt "@label:button"
  3668. msgid "Ask a question"
  3669. msgstr "Eine Frage stellen"
  3670. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76
  3671. msgctxt "@tooltip:button"
  3672. msgid "Consult the UltiMaker Community."
  3673. msgstr "Wenden Sie sich an die UltiMaker Community."
  3674. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81
  3675. msgctxt "@label:button"
  3676. msgid "Report a bug"
  3677. msgstr "Einen Fehler melden"
  3678. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83
  3679. msgctxt "@tooltip:button"
  3680. msgid "Let developers know that something is going wrong."
  3681. msgstr "Lassen Sie es die Entwickler wissen, falls etwas schief läuft."
  3682. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90
  3683. msgctxt "@tooltip:button"
  3684. msgid "Visit the UltiMaker website."
  3685. msgstr "Besuchen Sie die UltiMaker-Website."
  3686. #: resources/qml/ColorDialog.qml:110
  3687. msgctxt "@label"
  3688. msgid "Hex"
  3689. msgstr "Hexadezimal"
  3690. #: resources/qml/Cura.qml:256
  3691. msgctxt "@label"
  3692. msgid "This package will be installed after restarting."
  3693. msgstr "Dieses Paket wird nach einem Neustart installiert."
  3694. #: resources/qml/Cura.qml:467 resources/qml/Preferences/GeneralPage.qml:14
  3695. msgctxt "@title:tab"
  3696. msgid "General"
  3697. msgstr "Allgemein"
  3698. #: resources/qml/Cura.qml:470
  3699. msgctxt "@title:tab"
  3700. msgid "Settings"
  3701. msgstr "Einstellungen"
  3702. #: resources/qml/Cura.qml:472 resources/qml/Preferences/MachinesPage.qml:17
  3703. msgctxt "@title:tab"
  3704. msgid "Printers"
  3705. msgstr "Drucker"
  3706. #: resources/qml/Cura.qml:474
  3707. #: resources/qml/Preferences/Materials/MaterialsPage.qml:70
  3708. msgctxt "@title:tab"
  3709. msgid "Materials"
  3710. msgstr "Materialien"
  3711. #: resources/qml/Cura.qml:476 resources/qml/Preferences/ProfilesPage.qml:57
  3712. msgctxt "@title:tab"
  3713. msgid "Profiles"
  3714. msgstr "Profile"
  3715. #: resources/qml/Cura.qml:581
  3716. msgctxt "@title:window %1 is the application name"
  3717. msgid "Closing %1"
  3718. msgstr "%1 wird geschlossen"
  3719. #: resources/qml/Cura.qml:582 resources/qml/Cura.qml:591
  3720. msgctxt "@label %1 is the application name"
  3721. msgid "Are you sure you want to exit %1?"
  3722. msgstr "Möchten Sie %1 wirklich beenden?"
  3723. #: resources/qml/Cura.qml:629
  3724. #: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:16
  3725. msgctxt "@title:window"
  3726. msgid "Open file(s)"
  3727. msgstr "Datei(en) öffnen"
  3728. #: resources/qml/Cura.qml:734
  3729. msgctxt "@window:title"
  3730. msgid "Install Package"
  3731. msgstr "Paket installieren"
  3732. #: resources/qml/Cura.qml:741
  3733. msgctxt "@title:window"
  3734. msgid "Open File(s)"
  3735. msgstr "Datei(en) öffnen"
  3736. #: resources/qml/Cura.qml:743
  3737. msgctxt "@text:window"
  3738. msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one."
  3739. msgstr "Es wurden eine oder mehrere G-Code-Datei(en) innerhalb der von Ihnen gewählten Dateien gefunden. Sie können nur eine G-Code-Datei auf einmal öffnen. Wenn Sie eine G-Code-Datei öffnen möchten wählen Sie bitte nur eine Datei."
  3740. #: resources/qml/Cura.qml:828
  3741. msgctxt "@title:window"
  3742. msgid "Add Printer"
  3743. msgstr "Drucker hinzufügen"
  3744. #: resources/qml/Cura.qml:836
  3745. msgctxt "@title:window"
  3746. msgid "What's New"
  3747. msgstr "Neuheiten"
  3748. #: resources/qml/Cura.qml:890
  3749. #, fuzzy
  3750. msgctxt "@title:window"
  3751. msgid "Save Custom Profile"
  3752. msgstr "Benutzerdefiniertes Profil"
  3753. #: resources/qml/Cura.qml:891
  3754. #, fuzzy
  3755. msgctxt "@textfield:placeholder"
  3756. msgid "New Custom Profile"
  3757. msgstr "Benutzerdefiniertes Profil"
  3758. #: resources/qml/Cura.qml:892
  3759. #, fuzzy
  3760. msgctxt "@info"
  3761. msgid "Custom profile name:"
  3762. msgstr "Benutzerdefiniertes Profil"
  3763. #: resources/qml/Cura.qml:909
  3764. msgctxt "@label %i will be replaced with a profile name"
  3765. msgid "<b>Only user changed settings will be saved in the custom profile.</b><br/>For materials that support it, the new custom profile will inherit properties from <b>%1</b>."
  3766. msgstr ""
  3767. #: resources/qml/Cura.qml:917
  3768. msgctxt "@action:button"
  3769. msgid "Learn more about Cura print profiles"
  3770. msgstr ""
  3771. #: resources/qml/Cura.qml:926
  3772. #, fuzzy
  3773. msgctxt "@button"
  3774. msgid "Save new profile"
  3775. msgstr "Nicht im Profil"
  3776. #: resources/qml/Dialogs/AboutDialog.qml:15
  3777. msgctxt "@title:window The argument is the application name."
  3778. msgid "About %1"
  3779. msgstr "Über %1"
  3780. #: resources/qml/Dialogs/AboutDialog.qml:59
  3781. msgctxt "@label"
  3782. msgid "version: %1"
  3783. msgstr "Version: %1"
  3784. #: resources/qml/Dialogs/AboutDialog.qml:74
  3785. msgctxt "@label"
  3786. msgid "End-to-end solution for fused filament 3D printing."
  3787. msgstr "Komplettlösung für den 3D-Druck mit geschmolzenem Filament."
  3788. #: resources/qml/Dialogs/AboutDialog.qml:87
  3789. #, fuzzy
  3790. msgctxt "@info:credit"
  3791. msgid ""
  3792. "Cura is developed by UltiMaker in cooperation with the community.\n"
  3793. "Cura proudly uses the following open source projects:"
  3794. msgstr ""
  3795. "Cura wurde von UltiMaker B.V. in Zusammenarbeit mit der Community entwickelt.\n"
  3796. "Cura verwendet mit Stolz die folgenden Open Source-Projekte:"
  3797. #: resources/qml/Dialogs/AboutDialog.qml:138
  3798. msgctxt "@label Description for application component"
  3799. msgid "Graphical user interface"
  3800. msgstr "Grafische Benutzerschnittstelle"
  3801. #: resources/qml/Dialogs/AboutDialog.qml:139
  3802. msgctxt "@label Description for application component"
  3803. msgid "Application framework"
  3804. msgstr "Anwendungsrahmenwerk"
  3805. #: resources/qml/Dialogs/AboutDialog.qml:140
  3806. msgctxt "@label Description for application component"
  3807. msgid "G-code generator"
  3808. msgstr "G-Code-Generator"
  3809. #: resources/qml/Dialogs/AboutDialog.qml:141
  3810. msgctxt "@label Description for application component"
  3811. msgid "Interprocess communication library"
  3812. msgstr "Bibliothek Interprozess-Kommunikation"
  3813. #: resources/qml/Dialogs/AboutDialog.qml:142
  3814. msgctxt "@label Description for application component"
  3815. msgid "Python bindings for libnest2d"
  3816. msgstr "Python-Bindungen für libnest2d"
  3817. #: resources/qml/Dialogs/AboutDialog.qml:143
  3818. msgctxt "@label Description for application component"
  3819. msgid "Polygon packing library, developed by Prusa Research"
  3820. msgstr "Polygon-Packaging-Bibliothek, entwickelt von Prusa Research"
  3821. #: resources/qml/Dialogs/AboutDialog.qml:144
  3822. msgctxt "@label Description for application component"
  3823. msgid "Support library for handling 3MF files"
  3824. msgstr "Support-Bibliothek für die Handhabung von 3MF-Dateien"
  3825. #: resources/qml/Dialogs/AboutDialog.qml:145
  3826. msgctxt "@label Description for application component"
  3827. msgid "Support library for file metadata and streaming"
  3828. msgstr "Support-Bibliothek für Datei-Metadaten und Streaming"
  3829. #: resources/qml/Dialogs/AboutDialog.qml:148
  3830. msgctxt "@label Description for application dependency"
  3831. msgid "Programming language"
  3832. msgstr "Programmiersprache"
  3833. #: resources/qml/Dialogs/AboutDialog.qml:149
  3834. msgctxt "@label Description for application dependency"
  3835. msgid "GUI framework"
  3836. msgstr "GUI-Rahmenwerk"
  3837. #: resources/qml/Dialogs/AboutDialog.qml:150
  3838. msgctxt "@label Description for application dependency"
  3839. msgid "GUI framework bindings"
  3840. msgstr "GUI-Rahmenwerk Einbindungen"
  3841. #: resources/qml/Dialogs/AboutDialog.qml:151
  3842. msgctxt "@label Description for application dependency"
  3843. msgid "C/C++ Binding library"
  3844. msgstr "C/C++ Einbindungsbibliothek"
  3845. #: resources/qml/Dialogs/AboutDialog.qml:152
  3846. msgctxt "@label Description for application dependency"
  3847. msgid "Data interchange format"
  3848. msgstr "Format Datenaustausch"
  3849. #: resources/qml/Dialogs/AboutDialog.qml:153
  3850. msgctxt "@label"
  3851. msgid "Font"
  3852. msgstr "Schriftart"
  3853. #: resources/qml/Dialogs/AboutDialog.qml:156
  3854. msgctxt "@label Description for application dependency"
  3855. msgid "Polygon clipping library"
  3856. msgstr "Bibliothek für Polygon-Beschneidung"
  3857. #: resources/qml/Dialogs/AboutDialog.qml:157
  3858. msgctxt "@label Description for application dependency"
  3859. msgid "JSON parser"
  3860. msgstr "JSON-Parser"
  3861. #: resources/qml/Dialogs/AboutDialog.qml:158
  3862. msgctxt "@label Description for application dependency"
  3863. msgid "Utility functions, including an image loader"
  3864. msgstr "Utility-Funktionen, einschließlich Bildlader"
  3865. #: resources/qml/Dialogs/AboutDialog.qml:159
  3866. msgctxt "@label Description for application dependency"
  3867. msgid "Utility library, including Voronoi generation"
  3868. msgstr "Utility-Bibliothek, einschließlich Voronoi-Generierung"
  3869. #: resources/qml/Dialogs/AboutDialog.qml:162
  3870. #: resources/qml/Dialogs/AboutDialog.qml:163
  3871. msgctxt "@label Description for application dependency"
  3872. msgid "Root Certificates for validating SSL trustworthiness"
  3873. msgstr "Root-Zertifikate zur Validierung der SSL-Vertrauenswürdigkeit"
  3874. #: resources/qml/Dialogs/AboutDialog.qml:164
  3875. msgctxt "@label Description for application dependency"
  3876. msgid "Compatibility between Python 2 and 3"
  3877. msgstr "Kompatibilität zwischen Python 2 und 3"
  3878. #: resources/qml/Dialogs/AboutDialog.qml:165
  3879. msgctxt "@label Description for application dependency"
  3880. msgid "Support library for system keyring access"
  3881. msgstr "Unterstützungsbibliothek für den Zugriff auf den Systemschlüsselbund"
  3882. #: resources/qml/Dialogs/AboutDialog.qml:166
  3883. msgctxt "@label Description for application dependency"
  3884. msgid "Support library for faster math"
  3885. msgstr "Support-Bibliothek für schnelleres Rechnen"
  3886. #: resources/qml/Dialogs/AboutDialog.qml:167
  3887. msgctxt "@label Description for application dependency"
  3888. msgid "Support library for handling STL files"
  3889. msgstr "Support-Bibliothek für die Handhabung von STL-Dateien"
  3890. #: resources/qml/Dialogs/AboutDialog.qml:168
  3891. msgctxt "@label Description for application dependency"
  3892. msgid "Python bindings for Clipper"
  3893. msgstr "Python-Anbindungen für Clipper"
  3894. #: resources/qml/Dialogs/AboutDialog.qml:169
  3895. msgctxt "@label Description for application dependency"
  3896. msgid "Serial communication library"
  3897. msgstr "Bibliothek für serielle Kommunikation"
  3898. #: resources/qml/Dialogs/AboutDialog.qml:170
  3899. msgctxt "@label Description for application dependency"
  3900. msgid "Support library for scientific computing"
  3901. msgstr "Support-Bibliothek für wissenschaftliche Berechnung"
  3902. #: resources/qml/Dialogs/AboutDialog.qml:171
  3903. msgctxt "@Label Description for application dependency"
  3904. msgid "Python Error tracking library"
  3905. msgstr "Python-Fehlerverfolgungs-Bibliothek"
  3906. #: resources/qml/Dialogs/AboutDialog.qml:172
  3907. msgctxt "@label Description for application dependency"
  3908. msgid "Support library for handling triangular meshes"
  3909. msgstr "Support-Bibliothek für die Handhabung von dreieckigen Netzen"
  3910. #: resources/qml/Dialogs/AboutDialog.qml:173
  3911. msgctxt "@label Description for application dependency"
  3912. msgid "ZeroConf discovery library"
  3913. msgstr "Bibliothek für ZeroConf-Erkennung"
  3914. #: resources/qml/Dialogs/AboutDialog.qml:176
  3915. msgctxt "@label Description for development tool"
  3916. msgid "Universal build system configuration"
  3917. msgstr "Universelle Build-Systemkonfiguration"
  3918. #: resources/qml/Dialogs/AboutDialog.qml:177
  3919. msgctxt "@label Description for development tool"
  3920. msgid "Dependency and package manager"
  3921. msgstr "Abhängigkeits- und Paketmanager"
  3922. #: resources/qml/Dialogs/AboutDialog.qml:178
  3923. msgctxt "@label Description for development tool"
  3924. msgid "Packaging Python-applications"
  3925. msgstr "Verpacken von Python-Anwendungen"
  3926. #: resources/qml/Dialogs/AboutDialog.qml:179
  3927. msgctxt "@label Description for development tool"
  3928. msgid "Linux cross-distribution application deployment"
  3929. msgstr "Distributionsunabhängiges Format für Linux-Anwendungen"
  3930. #: resources/qml/Dialogs/AboutDialog.qml:180
  3931. msgctxt "@label Description for development tool"
  3932. msgid "Generating Windows installers"
  3933. msgstr "Generieren von Windows-Installern"
  3934. #: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:17
  3935. msgctxt "@title:window"
  3936. msgid "Open project file"
  3937. msgstr "Projektdatei öffnen"
  3938. #: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:84
  3939. msgctxt "@text:window"
  3940. msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?"
  3941. msgstr "Dies ist eine Cura-Projektdatei. Möchten Sie diese als Projekt öffnen oder die Modelle hieraus importieren?"
  3942. #: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:91
  3943. msgctxt "@text:window"
  3944. msgid "Remember my choice"
  3945. msgstr "Meine Auswahl merken"
  3946. #: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:105
  3947. msgctxt "@action:button"
  3948. msgid "Open as project"
  3949. msgstr "Als Projekt öffnen"
  3950. #: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:110
  3951. msgctxt "@action:button"
  3952. msgid "Import models"
  3953. msgstr "Modelle importieren"
  3954. #: resources/qml/Dialogs/ChoosePrinterDialog.qml:17
  3955. msgctxt "@title:window"
  3956. msgid "Select Printer"
  3957. msgstr "Drucker auswählen"
  3958. #: resources/qml/Dialogs/ChoosePrinterDialog.qml:54
  3959. msgctxt "@title:label"
  3960. msgid "Compatible Printers"
  3961. msgstr "Kompatible Drucker"
  3962. #: resources/qml/Dialogs/ChoosePrinterDialog.qml:110
  3963. msgctxt "@description"
  3964. msgid "No compatible printers, that are currently online, where found."
  3965. msgstr "Es wurden keine kompatiblen Drucker gefunden, die derzeit online sind."
  3966. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:13
  3967. msgctxt "@title:window"
  3968. msgid "Discard or Keep changes"
  3969. msgstr "Änderungen verwerfen oder übernehmen"
  3970. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:64
  3971. msgctxt "@text:window, %1 is a profile name"
  3972. msgid "You have customized some profile settings. Would you like to Keep these changed settings after switching profiles? Alternatively, you can discard the changes to load the defaults from '%1'."
  3973. msgstr ""
  3974. "Sie haben einige Profileinstellungen personalisiert.\n"
  3975. "Möchten Sie diese geänderten Einstellungen nach einem Profilwechsel beibehalten?\n"
  3976. "Sie können die Änderungen auch verwerfen, um die Standardeinstellungen von '%1' zu laden."
  3977. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:90
  3978. msgctxt "@title:column"
  3979. msgid "Profile settings"
  3980. msgstr "Profileinstellungen"
  3981. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:92
  3982. msgctxt "@title:column"
  3983. msgid "Current changes"
  3984. msgstr "Aktuelle Änderungen"
  3985. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:123
  3986. #: resources/qml/Preferences/GeneralPage.qml:820
  3987. msgctxt "@option:discardOrKeep"
  3988. msgid "Always ask me this"
  3989. msgstr "Stets nachfragen"
  3990. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:124
  3991. msgctxt "@option:discardOrKeep"
  3992. msgid "Discard and never ask again"
  3993. msgstr "Verwerfen und zukünftig nicht mehr nachfragen"
  3994. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:125
  3995. msgctxt "@option:discardOrKeep"
  3996. msgid "Keep and never ask again"
  3997. msgstr "Übernehmen und zukünftig nicht mehr nachfragen"
  3998. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:157
  3999. msgctxt "@action:button"
  4000. msgid "Discard changes"
  4001. msgstr "Änderungen verwerfen"
  4002. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:164
  4003. msgctxt "@action:button"
  4004. msgid "Keep changes"
  4005. msgstr "Änderungen speichern"
  4006. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:171
  4007. #, fuzzy
  4008. msgctxt "@action:button"
  4009. msgid "Save as new custom profile"
  4010. msgstr "Benutzerdefiniertes Profil"
  4011. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:178
  4012. #, fuzzy
  4013. msgctxt "@action:button"
  4014. msgid "Save changes"
  4015. msgstr "Änderungen speichern"
  4016. #: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:47
  4017. msgctxt "@text:window"
  4018. msgid "We have found one or more project file(s) within the files you have selected. You can open only one project file at a time. We suggest to only import models from those files. Would you like to proceed?"
  4019. msgstr "Es wurden eine oder mehrere Projektdatei(en) innerhalb der von Ihnen gewählten Dateien gefunden. Sie können nur eine Projektdatei auf einmal öffnen. Es wird empfohlen, nur Modelle aus diesen Dateien zu importieren. Möchten Sie fortfahren?"
  4020. #: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:64
  4021. msgctxt "@action:button"
  4022. msgid "Import all as models"
  4023. msgstr "Alle als Modelle importieren"
  4024. #: resources/qml/Dialogs/RenameDialog.qml:23
  4025. msgctxt "@title:window"
  4026. msgid "Rename"
  4027. msgstr "Umbenennen"
  4028. #: resources/qml/Dialogs/RenameDialog.qml:24
  4029. msgctxt "@info"
  4030. msgid "Please provide a new name."
  4031. msgstr "Bitte geben Sie einen neuen Namen ein."
  4032. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:14
  4033. msgctxt "@title:window"
  4034. msgid "Save Project"
  4035. msgstr "Projekt speichern"
  4036. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:177
  4037. msgctxt "@action:label"
  4038. msgid "Extruder %1"
  4039. msgstr "Extruder %1"
  4040. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:193
  4041. msgctxt "@action:label"
  4042. msgid "%1 & material"
  4043. msgstr "%1 & Material"
  4044. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:195
  4045. msgctxt "@action:label"
  4046. msgid "Material"
  4047. msgstr "Material"
  4048. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:284
  4049. msgctxt "@action:label"
  4050. msgid "Don't show project summary on save again"
  4051. msgstr "Projektzusammenfassung beim Speichern nicht erneut anzeigen"
  4052. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:298
  4053. msgctxt "@action:button"
  4054. msgid "Save"
  4055. msgstr "Speichern"
  4056. #: resources/qml/JobSpecs.qml:93
  4057. msgctxt "@text Print job name"
  4058. msgid "Untitled"
  4059. msgstr "Unbenannt"
  4060. #: resources/qml/MainWindow/ApplicationMenu.qml:63
  4061. #: resources/qml/Menus/SettingsMenu.qml:13
  4062. msgctxt "@title:menu menubar:toplevel"
  4063. msgid "&Settings"
  4064. msgstr "&Einstellungen"
  4065. #: resources/qml/MainWindow/ApplicationMenu.qml:87
  4066. msgctxt "@title:window"
  4067. msgid "New project"
  4068. msgstr "Neues Projekt"
  4069. #: resources/qml/MainWindow/ApplicationMenu.qml:88
  4070. msgctxt "@info:question"
  4071. msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings."
  4072. msgstr "Möchten Sie wirklich ein neues Projekt beginnen? Damit werden das Druckbett und alle nicht gespeicherten Einstellungen gelöscht."
  4073. #: resources/qml/MainWindow/MainWindowHeader.qml:135
  4074. msgctxt "@action:button"
  4075. msgid "Marketplace"
  4076. msgstr "Marktplatz"
  4077. #: resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18
  4078. msgctxt "@header"
  4079. msgid "Configurations"
  4080. msgstr "Konfigurationen"
  4081. #: resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137
  4082. msgctxt "@label"
  4083. msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile."
  4084. msgstr "Diese Konfigurationen sind nicht verfügbar, weil %1 nicht erkannt wird. Besuchen Sie bitte %2 für das Herunterladen des korrekten Materialprofils."
  4085. #: resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138
  4086. msgctxt "@label"
  4087. msgid "Marketplace"
  4088. msgstr "Marktplatz"
  4089. #: resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52
  4090. msgctxt "@label"
  4091. msgid "Loading available configurations from the printer..."
  4092. msgstr "Verfügbare Konfigurationen werden von diesem Drucker geladen..."
  4093. #: resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53
  4094. msgctxt "@label"
  4095. msgid "The configurations are not available because the printer is disconnected."
  4096. msgstr "Die Konfigurationen sind nicht verfügbar, da der Drucker getrennt ist."
  4097. #: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106
  4098. msgctxt "@tooltip"
  4099. msgid "The configuration of this extruder is not allowed, and prohibits slicing."
  4100. msgstr "Die Konfiguration dieses Extruders ist nicht zulässig und verhindert das Slicing."
  4101. #: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:110
  4102. msgctxt "@tooltip"
  4103. msgid "There are no profiles matching the configuration of this extruder."
  4104. msgstr "Es gibt keine Profile, die mit der Konfiguration dieses Extruders übereinstimmen."
  4105. #: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:250
  4106. msgctxt "@label"
  4107. msgid "Select configuration"
  4108. msgstr "Konfiguration wählen"
  4109. #: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:358
  4110. msgctxt "@label"
  4111. msgid "Configurations"
  4112. msgstr "Konfigurationen"
  4113. #: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:27
  4114. msgctxt "@header"
  4115. msgid "Custom"
  4116. msgstr "Benutzerdefiniert"
  4117. #: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:173
  4118. msgctxt "@label"
  4119. msgid "Enabled"
  4120. msgstr "Aktiviert"
  4121. #: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:222
  4122. msgctxt "@label"
  4123. msgid "Material"
  4124. msgstr "Material"
  4125. #: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:348
  4126. msgctxt "@label"
  4127. msgid "Use glue for better adhesion with this material combination."
  4128. msgstr "Für diese Materialkombination Kleber für eine bessere Haftung verwenden."
  4129. #: resources/qml/Menus/ContextMenu.qml:29
  4130. msgctxt "@label"
  4131. msgid "Print Selected Model With:"
  4132. msgid_plural "Print Selected Models With:"
  4133. msgstr[0] "Ausgewähltes Modell drucken mit:"
  4134. msgstr[1] "Ausgewählte Modelle drucken mit:"
  4135. #: resources/qml/Menus/ContextMenu.qml:92
  4136. msgctxt "@title:window"
  4137. msgid "Multiply Selected Model"
  4138. msgid_plural "Multiply Selected Models"
  4139. msgstr[0] "Ausgewähltes Modell multiplizieren"
  4140. msgstr[1] "Ausgewählte Modelle multiplizieren"
  4141. #: resources/qml/Menus/ContextMenu.qml:123
  4142. msgctxt "@label"
  4143. msgid "Number of Copies"
  4144. msgstr "Anzahl Kopien"
  4145. #: resources/qml/Menus/EditMenu.qml:12
  4146. msgctxt "@title:menu menubar:toplevel"
  4147. msgid "&Edit"
  4148. msgstr "&Bearbeiten"
  4149. #: resources/qml/Menus/ExtensionMenu.qml:13
  4150. msgctxt "@title:menu menubar:toplevel"
  4151. msgid "E&xtensions"
  4152. msgstr "Er&weiterungen"
  4153. #: resources/qml/Menus/FileMenu.qml:13
  4154. msgctxt "@title:menu menubar:toplevel"
  4155. msgid "&File"
  4156. msgstr "&Datei"
  4157. #: resources/qml/Menus/FileMenu.qml:45
  4158. msgctxt "@title:menu menubar:file"
  4159. msgid "&Save Project..."
  4160. msgstr "&Projekt speichern ..."
  4161. #: resources/qml/Menus/FileMenu.qml:78
  4162. msgctxt "@title:menu menubar:file"
  4163. msgid "&Export..."
  4164. msgstr "&Exportieren..."
  4165. #: resources/qml/Menus/FileMenu.qml:89
  4166. msgctxt "@action:inmenu menubar:file"
  4167. msgid "Export Selection..."
  4168. msgstr "Auswahl exportieren..."
  4169. #: resources/qml/Menus/HelpMenu.qml:14
  4170. msgctxt "@title:menu menubar:toplevel"
  4171. msgid "&Help"
  4172. msgstr "&Hilfe"
  4173. #: resources/qml/Menus/MaterialMenu.qml:13
  4174. msgctxt "@label:category menu label"
  4175. msgid "Material"
  4176. msgstr "Material"
  4177. #: resources/qml/Menus/MaterialMenu.qml:53
  4178. msgctxt "@label:category menu label"
  4179. msgid "Favorites"
  4180. msgstr "Favoriten"
  4181. #: resources/qml/Menus/MaterialMenu.qml:78
  4182. msgctxt "@label:category menu label"
  4183. msgid "Generic"
  4184. msgstr "Generisch"
  4185. #: resources/qml/Menus/OpenFilesMenu.qml:15
  4186. msgctxt "@title:menu menubar:file"
  4187. msgid "Open File(s)..."
  4188. msgstr "Datei(en) öffnen..."
  4189. #: resources/qml/Menus/PreferencesMenu.qml:21
  4190. msgctxt "@title:menu menubar:toplevel"
  4191. msgid "P&references"
  4192. msgstr "&Konfiguration"
  4193. #: resources/qml/Menus/PrinterMenu.qml:13
  4194. msgctxt "@title:menu menubar:settings"
  4195. msgid "&Printer"
  4196. msgstr "Dr&ucker"
  4197. #: resources/qml/Menus/PrinterMenu.qml:17
  4198. msgctxt "@label:category menu label"
  4199. msgid "Network enabled printers"
  4200. msgstr "Netzwerkfähige Drucker"
  4201. #: resources/qml/Menus/PrinterMenu.qml:50
  4202. msgctxt "@label:category menu label"
  4203. msgid "Local printers"
  4204. msgstr "Lokale Drucker"
  4205. #: resources/qml/Menus/RecentFilesMenu.qml:15
  4206. msgctxt "@title:menu menubar:file"
  4207. msgid "Open &Recent"
  4208. msgstr "&Zuletzt geöffnet"
  4209. #: resources/qml/Menus/SaveProjectMenu.qml:15
  4210. msgctxt "@title:menu menubar:file"
  4211. msgid "Save Project..."
  4212. msgstr "Projekt speichern..."
  4213. #: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16
  4214. msgctxt "@action:inmenu"
  4215. msgid "Visible Settings"
  4216. msgstr "Sichtbare Einstellungen"
  4217. #: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:42
  4218. msgctxt "@action:inmenu"
  4219. msgid "Collapse All Categories"
  4220. msgstr "Alle Kategorien schließen"
  4221. #: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:51
  4222. msgctxt "@action:inmenu"
  4223. msgid "Manage Setting Visibility..."
  4224. msgstr "Sichtbarkeit einstellen verwalten..."
  4225. #: resources/qml/Menus/SettingsMenu.qml:34
  4226. msgctxt "@title:menu"
  4227. msgid "&Material"
  4228. msgstr "&Material"
  4229. #: resources/qml/Menus/SettingsMenu.qml:49
  4230. msgctxt "@action:inmenu"
  4231. msgid "Set as Active Extruder"
  4232. msgstr "Als aktiven Extruder festlegen"
  4233. #: resources/qml/Menus/SettingsMenu.qml:55
  4234. msgctxt "@action:inmenu"
  4235. msgid "Enable Extruder"
  4236. msgstr "Extruder aktivieren"
  4237. #: resources/qml/Menus/SettingsMenu.qml:63
  4238. msgctxt "@action:inmenu"
  4239. msgid "Disable Extruder"
  4240. msgstr "Extruder deaktivieren"
  4241. #: resources/qml/Menus/ViewMenu.qml:13
  4242. msgctxt "@title:menu menubar:toplevel"
  4243. msgid "&View"
  4244. msgstr "&Ansicht"
  4245. #: resources/qml/Menus/ViewMenu.qml:17
  4246. msgctxt "@action:inmenu menubar:view"
  4247. msgid "&Camera position"
  4248. msgstr "&Kameraposition"
  4249. #: resources/qml/Menus/ViewMenu.qml:30
  4250. msgctxt "@action:inmenu menubar:view"
  4251. msgid "Camera view"
  4252. msgstr "Kameraansicht"
  4253. #: resources/qml/Menus/ViewMenu.qml:48
  4254. msgctxt "@action:inmenu menubar:view"
  4255. msgid "Perspective"
  4256. msgstr "Ansicht"
  4257. #: resources/qml/Menus/ViewMenu.qml:59
  4258. msgctxt "@action:inmenu menubar:view"
  4259. msgid "Orthographic"
  4260. msgstr "Orthogonal"
  4261. #: resources/qml/MonitorButton.qml:115
  4262. msgctxt "@label:MonitorStatus"
  4263. msgid "Not connected to a printer"
  4264. msgstr "Nicht mit einem Drucker verbunden"
  4265. #: resources/qml/MonitorButton.qml:119
  4266. msgctxt "@label:MonitorStatus"
  4267. msgid "Printer does not accept commands"
  4268. msgstr "Drucker nimmt keine Befehle an"
  4269. #: resources/qml/MonitorButton.qml:129
  4270. msgctxt "@label:MonitorStatus"
  4271. msgid "In maintenance. Please check the printer"
  4272. msgstr "In Wartung. Den Drucker überprüfen"
  4273. #: resources/qml/MonitorButton.qml:140
  4274. msgctxt "@label:MonitorStatus"
  4275. msgid "Lost connection with the printer"
  4276. msgstr "Verbindung zum Drucker wurde unterbrochen"
  4277. #: resources/qml/MonitorButton.qml:142
  4278. msgctxt "@label:MonitorStatus"
  4279. msgid "Printing..."
  4280. msgstr "Es wird gedruckt..."
  4281. #: resources/qml/MonitorButton.qml:145
  4282. msgctxt "@label:MonitorStatus"
  4283. msgid "Paused"
  4284. msgstr "Pausiert"
  4285. #: resources/qml/MonitorButton.qml:148
  4286. msgctxt "@label:MonitorStatus"
  4287. msgid "Preparing..."
  4288. msgstr "Vorbereitung läuft..."
  4289. #: resources/qml/MonitorButton.qml:150
  4290. msgctxt "@label:MonitorStatus"
  4291. msgid "Please remove the print"
  4292. msgstr "Bitte den Ausdruck entfernen"
  4293. #: resources/qml/MonitorButton.qml:318
  4294. msgctxt "@label"
  4295. msgid "Abort Print"
  4296. msgstr "Drucken abbrechen"
  4297. #: resources/qml/MonitorButton.qml:327
  4298. msgctxt "@label"
  4299. msgid "Are you sure you want to abort the print?"
  4300. msgstr "Soll das Drucken wirklich abgebrochen werden?"
  4301. #: resources/qml/ObjectItemButton.qml:109
  4302. msgctxt "@label"
  4303. msgid "Is printed as support."
  4304. msgstr "Wird als Stückstruktur gedruckt."
  4305. #: resources/qml/ObjectItemButton.qml:112
  4306. msgctxt "@label"
  4307. msgid "Other models overlapping with this model are modified."
  4308. msgstr "Andere Modelle, die sich mit diesem Modell überschneiden, werden angepasst."
  4309. #: resources/qml/ObjectItemButton.qml:115
  4310. msgctxt "@label"
  4311. msgid "Infill overlapping with this model is modified."
  4312. msgstr "Überlappende Füllung wird bei diesem Modell angepasst."
  4313. #: resources/qml/ObjectItemButton.qml:118
  4314. msgctxt "@label"
  4315. msgid "Overlaps with this model are not supported."
  4316. msgstr "Überlappungen mit diesem Modell werden nicht unterstützt."
  4317. #: resources/qml/ObjectItemButton.qml:125
  4318. msgctxt "@label %1 is the number of settings it overrides."
  4319. msgid "Overrides %1 setting."
  4320. msgid_plural "Overrides %1 settings."
  4321. msgstr[0] "Überschreibt %1-Einstellung."
  4322. msgstr[1] "Überschreibt %1-Einstellungen."
  4323. #: resources/qml/ObjectSelector.qml:59
  4324. msgctxt "@label"
  4325. msgid "Object list"
  4326. msgstr "Objektliste"
  4327. #: resources/qml/Preferences/GeneralPage.qml:134
  4328. #: resources/qml/Preferences/SettingVisibilityPage.qml:24
  4329. msgctxt "@action:button"
  4330. msgid "Defaults"
  4331. msgstr "Standardeinstellungen"
  4332. #: resources/qml/Preferences/GeneralPage.qml:172
  4333. msgctxt "@label"
  4334. msgid "Interface"
  4335. msgstr "Schnittstelle"
  4336. #: resources/qml/Preferences/GeneralPage.qml:215
  4337. msgctxt "@heading"
  4338. msgid "-- incomplete --"
  4339. msgstr "-- unvollständig --"
  4340. #: resources/qml/Preferences/GeneralPage.qml:261
  4341. msgctxt "@label"
  4342. msgid "Currency:"
  4343. msgstr "Währung:"
  4344. #: resources/qml/Preferences/GeneralPage.qml:277
  4345. msgctxt "@label: Please keep the asterix, it's to indicate that a restart is needed."
  4346. msgid "Theme*:"
  4347. msgstr "Thema*:"
  4348. #: resources/qml/Preferences/GeneralPage.qml:323
  4349. msgctxt "@info:tooltip"
  4350. msgid "Slice automatically when changing settings."
  4351. msgstr "Bei Änderung der Einstellungen automatisch schneiden."
  4352. #: resources/qml/Preferences/GeneralPage.qml:331
  4353. msgctxt "@option:check"
  4354. msgid "Slice automatically"
  4355. msgstr "Automatisch schneiden"
  4356. #: resources/qml/Preferences/GeneralPage.qml:340
  4357. msgctxt "@info:tooltip"
  4358. msgid "Show an icon and notifications in the system notification area."
  4359. msgstr "Symbol und Benachrichtigungen im Infobereich des Systems anzeigen."
  4360. #: resources/qml/Preferences/GeneralPage.qml:348
  4361. msgctxt "@option:check"
  4362. msgid "Add icon to system tray *"
  4363. msgstr "Symbol zur Taskleiste hinzufügen*"
  4364. #: resources/qml/Preferences/GeneralPage.qml:357
  4365. msgctxt "@label"
  4366. msgid "*You will need to restart the application for these changes to have effect."
  4367. msgstr "*Die Anwendung muss neu gestartet werden, damit die Änderungen in Kraft treten."
  4368. #: resources/qml/Preferences/GeneralPage.qml:373
  4369. msgctxt "@label"
  4370. msgid "Viewport behavior"
  4371. msgstr "Viewport-Verhalten"
  4372. #: resources/qml/Preferences/GeneralPage.qml:381
  4373. msgctxt "@info:tooltip"
  4374. msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly."
  4375. msgstr "Nicht gestützte Bereiche des Modells in rot hervorheben. Ohne Support werden diese Bereiche nicht korrekt gedruckt."
  4376. #: resources/qml/Preferences/GeneralPage.qml:390
  4377. msgctxt "@option:check"
  4378. msgid "Display overhang"
  4379. msgstr "Überhang anzeigen"
  4380. #: resources/qml/Preferences/GeneralPage.qml:400
  4381. msgctxt "@info:tooltip"
  4382. msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry."
  4383. msgstr "Heben Sie fehlende oder fehlerhafte Flächen des Modells mithilfe von Warnhinweisen hervor. In den Werkzeugpfaden fehlen oft Teile der beabsichtigten Geometrie."
  4384. #: resources/qml/Preferences/GeneralPage.qml:409
  4385. msgctxt "@option:check"
  4386. msgid "Display model errors"
  4387. msgstr "Modellfehler anzeigen"
  4388. #: resources/qml/Preferences/GeneralPage.qml:417
  4389. msgctxt "@info:tooltip"
  4390. msgid "Moves the camera so the model is in the center of the view when a model is selected"
  4391. msgstr "Bewegt die Kamera, bis sich das Modell im Mittelpunkt der Ansicht befindet, wenn ein Modell ausgewählt wurde"
  4392. #: resources/qml/Preferences/GeneralPage.qml:422
  4393. msgctxt "@action:button"
  4394. msgid "Center camera when item is selected"
  4395. msgstr "Zentrieren Sie die Kamera, wenn das Element ausgewählt wurde"
  4396. #: resources/qml/Preferences/GeneralPage.qml:432
  4397. msgctxt "@info:tooltip"
  4398. msgid "Should the default zoom behavior of cura be inverted?"
  4399. msgstr "Soll das standardmäßige Zoom-Verhalten von Cura umgekehrt werden?"
  4400. #: resources/qml/Preferences/GeneralPage.qml:437
  4401. msgctxt "@action:button"
  4402. msgid "Invert the direction of camera zoom."
  4403. msgstr "Kehren Sie die Richtung des Kamera-Zooms um."
  4404. #: resources/qml/Preferences/GeneralPage.qml:453
  4405. msgctxt "@info:tooltip"
  4406. msgid "Should zooming move in the direction of the mouse?"
  4407. msgstr "Soll das Zoomen in Richtung der Maus erfolgen?"
  4408. #: resources/qml/Preferences/GeneralPage.qml:453
  4409. msgctxt "@info:tooltip"
  4410. msgid "Zooming towards the mouse is not supported in the orthographic perspective."
  4411. msgstr "Das Zoomen in Richtung der Maus wird in der orthografischen Perspektive nicht unterstützt."
  4412. #: resources/qml/Preferences/GeneralPage.qml:458
  4413. msgctxt "@action:button"
  4414. msgid "Zoom toward mouse direction"
  4415. msgstr "In Mausrichtung zoomen"
  4416. #: resources/qml/Preferences/GeneralPage.qml:484
  4417. msgctxt "@info:tooltip"
  4418. msgid "Should models on the platform be moved so that they no longer intersect?"
  4419. msgstr "Sollen Modelle auf der Plattform so verschoben werden, dass sie sich nicht länger überschneiden?"
  4420. #: resources/qml/Preferences/GeneralPage.qml:489
  4421. msgctxt "@option:check"
  4422. msgid "Ensure models are kept apart"
  4423. msgstr "Stellen Sie sicher, dass die Modelle getrennt gehalten werden"
  4424. #: resources/qml/Preferences/GeneralPage.qml:498
  4425. msgctxt "@info:tooltip"
  4426. msgid "Should models on the platform be moved down to touch the build plate?"
  4427. msgstr "Sollen Modelle auf der Plattform so nach unten verschoben werden, dass sie die Druckplatte berühren?"
  4428. #: resources/qml/Preferences/GeneralPage.qml:503
  4429. msgctxt "@option:check"
  4430. msgid "Automatically drop models to the build plate"
  4431. msgstr "Setzt Modelle automatisch auf der Druckplatte ab"
  4432. #: resources/qml/Preferences/GeneralPage.qml:515
  4433. msgctxt "@info:tooltip"
  4434. msgid "Show caution message in g-code reader."
  4435. msgstr "Warnmeldung im G-Code-Reader anzeigen."
  4436. #: resources/qml/Preferences/GeneralPage.qml:524
  4437. msgctxt "@option:check"
  4438. msgid "Caution message in g-code reader"
  4439. msgstr "Warnmeldung in G-Code-Reader"
  4440. #: resources/qml/Preferences/GeneralPage.qml:532
  4441. msgctxt "@info:tooltip"
  4442. msgid "Should layer be forced into compatibility mode?"
  4443. msgstr "Soll die Schicht in den Kompatibilitätsmodus gezwungen werden?"
  4444. #: resources/qml/Preferences/GeneralPage.qml:537
  4445. msgctxt "@option:check"
  4446. msgid "Force layer view compatibility mode (restart required)"
  4447. msgstr "Schichtenansicht Kompatibilitätsmodus erzwingen (Neustart erforderlich)"
  4448. #: resources/qml/Preferences/GeneralPage.qml:547
  4449. msgctxt "@info:tooltip"
  4450. msgid "Should Cura open at the location it was closed?"
  4451. msgstr "Sollte Cura sich an der Stelle öffnen, an der das Programm geschlossen wurde?"
  4452. #: resources/qml/Preferences/GeneralPage.qml:552
  4453. msgctxt "@option:check"
  4454. msgid "Restore window position on start"
  4455. msgstr "Fensterposition beim Start wiederherstellen"
  4456. #: resources/qml/Preferences/GeneralPage.qml:562
  4457. msgctxt "@info:tooltip"
  4458. msgid "What type of camera rendering should be used?"
  4459. msgstr "Welches Kamera-Rendering sollte verwendet werden?"
  4460. #: resources/qml/Preferences/GeneralPage.qml:569
  4461. msgctxt "@window:text"
  4462. msgid "Camera rendering:"
  4463. msgstr "Kamera-Rendering:"
  4464. #: resources/qml/Preferences/GeneralPage.qml:576
  4465. msgid "Perspective"
  4466. msgstr "Ansicht"
  4467. #: resources/qml/Preferences/GeneralPage.qml:577
  4468. msgid "Orthographic"
  4469. msgstr "Orthogonal"
  4470. #: resources/qml/Preferences/GeneralPage.qml:617
  4471. msgctxt "@label"
  4472. msgid "Opening and saving files"
  4473. msgstr "Dateien öffnen und speichern"
  4474. #: resources/qml/Preferences/GeneralPage.qml:624
  4475. msgctxt "@info:tooltip"
  4476. msgid "Should opening files from the desktop or external applications open in the same instance of Cura?"
  4477. msgstr "Sollten Dateien vom Desktop oder von externen Anwendungen in derselben Instanz von Cura geöffnet werden?"
  4478. #: resources/qml/Preferences/GeneralPage.qml:629
  4479. msgctxt "@option:check"
  4480. msgid "Use a single instance of Cura"
  4481. msgstr "Eine einzelne Instanz von Cura verwenden"
  4482. #: resources/qml/Preferences/GeneralPage.qml:640
  4483. msgctxt "@info:tooltip"
  4484. msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?"
  4485. msgstr "Soll das Druckbett jeweils vor dem Laden eines neuen Modells in einer einzelnen Instanz von Cura gelöscht werden?"
  4486. #: resources/qml/Preferences/GeneralPage.qml:646
  4487. msgctxt "@option:check"
  4488. msgid "Clear buildplate before loading model into the single instance"
  4489. msgstr "Druckbett vor dem Laden des Modells in die Einzelinstanz löschen"
  4490. #: resources/qml/Preferences/GeneralPage.qml:656
  4491. msgctxt "@info:tooltip"
  4492. msgid "Should models be scaled to the build volume if they are too large?"
  4493. msgstr "Sollen Modelle an das Erstellungsvolumen angepasst werden, wenn sie zu groß sind?"
  4494. #: resources/qml/Preferences/GeneralPage.qml:661
  4495. msgctxt "@option:check"
  4496. msgid "Scale large models"
  4497. msgstr "Große Modelle anpassen"
  4498. #: resources/qml/Preferences/GeneralPage.qml:671
  4499. msgctxt "@info:tooltip"
  4500. msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?"
  4501. msgstr "Ein Modell kann extrem klein erscheinen, wenn seine Maßeinheit z. B. in Metern anstelle von Millimetern angegeben ist. Sollen diese Modelle hoch skaliert werden?"
  4502. #: resources/qml/Preferences/GeneralPage.qml:676
  4503. msgctxt "@option:check"
  4504. msgid "Scale extremely small models"
  4505. msgstr "Extrem kleine Modelle skalieren"
  4506. #: resources/qml/Preferences/GeneralPage.qml:686
  4507. msgctxt "@info:tooltip"
  4508. msgid "Should models be selected after they are loaded?"
  4509. msgstr "Sollten Modelle gewählt werden, nachdem sie geladen wurden?"
  4510. #: resources/qml/Preferences/GeneralPage.qml:691
  4511. msgctxt "@option:check"
  4512. msgid "Select models when loaded"
  4513. msgstr "Modelle wählen, nachdem sie geladen wurden"
  4514. #: resources/qml/Preferences/GeneralPage.qml:701
  4515. msgctxt "@info:tooltip"
  4516. msgid "Should a prefix based on the printer name be added to the print job name automatically?"
  4517. msgstr "Soll ein Präfix anhand des Druckernamens automatisch zum Namen des Druckauftrags hinzugefügt werden?"
  4518. #: resources/qml/Preferences/GeneralPage.qml:706
  4519. msgctxt "@option:check"
  4520. msgid "Add machine prefix to job name"
  4521. msgstr "Geräte-Präfix zu Auftragsnamen hinzufügen"
  4522. #: resources/qml/Preferences/GeneralPage.qml:716
  4523. msgctxt "@info:tooltip"
  4524. msgid "Should a summary be shown when saving a project file?"
  4525. msgstr "Soll beim Speichern einer Projektdatei eine Zusammenfassung angezeigt werden?"
  4526. #: resources/qml/Preferences/GeneralPage.qml:720
  4527. msgctxt "@option:check"
  4528. msgid "Show summary dialog when saving project"
  4529. msgstr "Dialog Zusammenfassung beim Speichern eines Projekts anzeigen"
  4530. #: resources/qml/Preferences/GeneralPage.qml:730
  4531. msgctxt "@info:tooltip"
  4532. msgid "Default behavior when opening a project file"
  4533. msgstr "Standardverhalten beim Öffnen einer Projektdatei"
  4534. #: resources/qml/Preferences/GeneralPage.qml:738
  4535. msgctxt "@window:text"
  4536. msgid "Default behavior when opening a project file: "
  4537. msgstr "Standardverhalten beim Öffnen einer Projektdatei: "
  4538. #: resources/qml/Preferences/GeneralPage.qml:753
  4539. msgctxt "@option:openProject"
  4540. msgid "Always ask me this"
  4541. msgstr "Stets nachfragen"
  4542. #: resources/qml/Preferences/GeneralPage.qml:754
  4543. msgctxt "@option:openProject"
  4544. msgid "Always open as a project"
  4545. msgstr "Immer als Projekt öffnen"
  4546. #: resources/qml/Preferences/GeneralPage.qml:755
  4547. msgctxt "@option:openProject"
  4548. msgid "Always import models"
  4549. msgstr "Modelle immer importieren"
  4550. #: resources/qml/Preferences/GeneralPage.qml:792
  4551. msgctxt "@info:tooltip"
  4552. msgid "When you have made changes to a profile and switched to a different one, a dialog will be shown asking whether you want to keep your modifications or not, or you can choose a default behaviour and never show that dialog again."
  4553. msgstr "Wenn Sie Änderungen für ein Profil vorgenommen haben und zu einem anderen Profil gewechselt sind, wird ein Dialog angezeigt, der hinterfragt, ob Sie Ihre Änderungen beibehalten möchten oder nicht; optional können Sie ein Standardverhalten wählen, sodass dieser Dialog nicht erneut angezeigt wird."
  4554. #: resources/qml/Preferences/GeneralPage.qml:801
  4555. #: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:46
  4556. msgctxt "@label"
  4557. msgid "Profiles"
  4558. msgstr "Profile"
  4559. #: resources/qml/Preferences/GeneralPage.qml:806
  4560. msgctxt "@window:text"
  4561. msgid "Default behavior for changed setting values when switching to a different profile: "
  4562. msgstr "Standardverhalten für geänderte Einstellungswerte beim Wechsel zu einem anderen Profil: "
  4563. #: resources/qml/Preferences/GeneralPage.qml:821
  4564. msgctxt "@option:discardOrKeep"
  4565. msgid "Always discard changed settings"
  4566. msgstr "Geänderte Einstellungen immer verwerfen"
  4567. #: resources/qml/Preferences/GeneralPage.qml:822
  4568. msgctxt "@option:discardOrKeep"
  4569. msgid "Always transfer changed settings to new profile"
  4570. msgstr "Geänderte Einstellungen immer auf neues Profil übertragen"
  4571. #: resources/qml/Preferences/GeneralPage.qml:856
  4572. msgctxt "@label"
  4573. msgid "Privacy"
  4574. msgstr "Privatsphäre"
  4575. #: resources/qml/Preferences/GeneralPage.qml:862
  4576. msgctxt "@info:tooltip"
  4577. msgid "Should anonymous data about your print be sent to UltiMaker? Note, no models, IP addresses or other personally identifiable information is sent or stored."
  4578. msgstr "Sollen anonyme Daten über Ihren Druck an UltiMaker gesendet werden? Beachten Sie, dass keine Modelle, IP-Adressen oder andere personenbezogene Daten gesendet oder gespeichert werden."
  4579. #: resources/qml/Preferences/GeneralPage.qml:867
  4580. msgctxt "@option:check"
  4581. msgid "Send (anonymous) print information"
  4582. msgstr "(Anonyme) Druckinformationen senden"
  4583. #: resources/qml/Preferences/GeneralPage.qml:897
  4584. msgctxt "@label"
  4585. msgid "Updates"
  4586. msgstr "Updates"
  4587. #: resources/qml/Preferences/GeneralPage.qml:904
  4588. msgctxt "@info:tooltip"
  4589. msgid "Should Cura check for updates when the program is started?"
  4590. msgstr "Soll Cura bei Programmstart nach Updates suchen?"
  4591. #: resources/qml/Preferences/GeneralPage.qml:909
  4592. msgctxt "@option:check"
  4593. msgid "Check for updates on start"
  4594. msgstr "Bei Start nach Updates suchen"
  4595. #: resources/qml/Preferences/GeneralPage.qml:925
  4596. msgctxt "@info:tooltip"
  4597. msgid "When checking for updates, only check for stable releases."
  4598. msgstr "Wählen Sie bei der Suche nach Updates nur stabile Versionen aus."
  4599. #: resources/qml/Preferences/GeneralPage.qml:931
  4600. msgctxt "@option:radio"
  4601. msgid "Stable releases only"
  4602. msgstr "Nur stabile Versionen"
  4603. #: resources/qml/Preferences/GeneralPage.qml:941
  4604. msgctxt "@info:tooltip"
  4605. msgid "When checking for updates, check for both stable and for beta releases."
  4606. msgstr "Wählen Sie bei der Suche nach Updates sowohl stabile als auch Beta-Versionen."
  4607. #: resources/qml/Preferences/GeneralPage.qml:947
  4608. msgctxt "@option:radio"
  4609. msgid "Stable and Beta releases"
  4610. msgstr "Stabile und Beta-Versionen"
  4611. #: resources/qml/Preferences/GeneralPage.qml:957
  4612. msgctxt "@info:tooltip"
  4613. msgid "Should an automatic check for new plugins be done every time Cura is started? It is highly recommended that you do not disable this!"
  4614. msgstr "Sollte jedes Mal, wenn Cura gestartet wird, eine automatische Überprüfung auf neue Plug-ins durchgeführt werden? Es wird dringend empfohlen, diese Funktion nicht zu deaktivieren!"
  4615. #: resources/qml/Preferences/GeneralPage.qml:962
  4616. msgctxt "@option:check"
  4617. msgid "Get notifications for plugin updates"
  4618. msgstr "Benachrichtigungen über Plug-in-Updates erhalten"
  4619. #: resources/qml/Preferences/MachinesPage.qml:50
  4620. msgctxt "@action:button"
  4621. msgid "Add New"
  4622. msgstr "Neue hinzufügen"
  4623. #: resources/qml/Preferences/MachinesPage.qml:147
  4624. #: resources/qml/Preferences/Materials/MaterialsPage.qml:160
  4625. #: resources/qml/Preferences/ProfilesPage.qml:294
  4626. msgctxt "@action:button"
  4627. msgid "Activate"
  4628. msgstr "Aktivieren"
  4629. #: resources/qml/Preferences/MachinesPage.qml:159
  4630. #: resources/qml/Preferences/ProfilesPage.qml:331
  4631. msgctxt "@action:button"
  4632. msgid "Rename"
  4633. msgstr "Umbenennen"
  4634. #: resources/qml/Preferences/Materials/MaterialsPage.qml:72
  4635. msgctxt "@label"
  4636. msgid "Materials compatible with active printer:"
  4637. msgstr "Mit aktivem Drucker kompatible Materialien:"
  4638. #: resources/qml/Preferences/Materials/MaterialsPage.qml:78
  4639. #: resources/qml/Preferences/ProfilesPage.qml:94
  4640. msgctxt "@action:button"
  4641. msgid "Create new"
  4642. msgstr "Neu erstellen"
  4643. #: resources/qml/Preferences/Materials/MaterialsPage.qml:90
  4644. #: resources/qml/Preferences/ProfilesPage.qml:88
  4645. msgctxt "@action:button"
  4646. msgid "Import"
  4647. msgstr "Import"
  4648. #: resources/qml/Preferences/Materials/MaterialsPage.qml:101
  4649. msgctxt "@action:button"
  4650. msgid "Sync with Printers"
  4651. msgstr "Mit Druckern synchronisieren"
  4652. #: resources/qml/Preferences/Materials/MaterialsPage.qml:174
  4653. #: resources/qml/Preferences/ProfilesPage.qml:311
  4654. msgctxt "@action:button"
  4655. msgid "Duplicate"
  4656. msgstr "Duplizieren"
  4657. #: resources/qml/Preferences/Materials/MaterialsPage.qml:198
  4658. #: resources/qml/Preferences/ProfilesPage.qml:342
  4659. msgctxt "@action:button"
  4660. msgid "Export"
  4661. msgstr "Export"
  4662. #: resources/qml/Preferences/Materials/MaterialsPage.qml:212
  4663. #: resources/qml/Preferences/ProfilesPage.qml:392
  4664. msgctxt "@title:window"
  4665. msgid "Confirm Remove"
  4666. msgstr "Entfernen bestätigen"
  4667. #: resources/qml/Preferences/Materials/MaterialsPage.qml:215
  4668. #: resources/qml/Preferences/ProfilesPage.qml:393
  4669. msgctxt "@label (%1 is object name)"
  4670. msgid "Are you sure you wish to remove %1? This cannot be undone!"
  4671. msgstr "Möchten Sie %1 wirklich entfernen? Dies kann nicht rückgängig gemacht werden!"
  4672. #: resources/qml/Preferences/Materials/MaterialsPage.qml:228
  4673. #: resources/qml/Preferences/Materials/MaterialsPage.qml:238
  4674. msgctxt "@title:window"
  4675. msgid "Import Material"
  4676. msgstr "Material importieren"
  4677. #: resources/qml/Preferences/Materials/MaterialsPage.qml:242
  4678. msgctxt "@info:status Don't translate the XML tag <filename>!"
  4679. msgid "Successfully imported material <filename>%1</filename>"
  4680. msgstr "Material wurde erfolgreich importiert <filename>%1</filename>"
  4681. #: resources/qml/Preferences/Materials/MaterialsPage.qml:245
  4682. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  4683. msgid "Could not import material <filename>%1</filename>: <message>%2</message>"
  4684. msgstr "Material konnte nicht importiert werden <filename>%1</filename>: <message>%2</message>"
  4685. #: resources/qml/Preferences/Materials/MaterialsPage.qml:256
  4686. #: resources/qml/Preferences/Materials/MaterialsPage.qml:267
  4687. msgctxt "@title:window"
  4688. msgid "Export Material"
  4689. msgstr "Material exportieren"
  4690. #: resources/qml/Preferences/Materials/MaterialsPage.qml:272
  4691. msgctxt "@info:status Don't translate the XML tags <filename> and <message>!"
  4692. msgid "Failed to export material to <filename>%1</filename>: <message>%2</message>"
  4693. msgstr "Exportieren des Materials nach <filename>%1</filename>: <message>%2</message> schlug fehl"
  4694. #: resources/qml/Preferences/Materials/MaterialsPage.qml:275
  4695. msgctxt "@info:status Don't translate the XML tag <filename>!"
  4696. msgid "Successfully exported material to <filename>%1</filename>"
  4697. msgstr "Material erfolgreich nach <filename>%1</filename> exportiert"
  4698. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:18
  4699. msgctxt "@title:window"
  4700. msgid "Sync materials with printers"
  4701. msgstr "Materialien mit Druckern synchronisieren"
  4702. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:49
  4703. msgctxt "@title:header"
  4704. msgid "Sync materials with printers"
  4705. msgstr "Materialien mit Druckern synchronisieren"
  4706. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:55
  4707. msgctxt "@text"
  4708. msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers."
  4709. msgstr "Mit ein paar einfachen Schritten können Sie alle Ihre Materialprofile mit Ihren Druckern synchronisieren."
  4710. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77
  4711. msgctxt "@button"
  4712. msgid "Why do I need to sync material profiles?"
  4713. msgstr "Warum muss ich Materialprofile synchronisieren?"
  4714. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:86
  4715. msgctxt "@button"
  4716. msgid "Start"
  4717. msgstr "Start"
  4718. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:144
  4719. msgctxt "@title:header"
  4720. msgid "Sign in"
  4721. msgstr "Anmelden"
  4722. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:150
  4723. msgctxt "@text"
  4724. msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura."
  4725. msgstr "Um die Materialprofile automatisch mit all Ihren mit Digital Factory verbundenen Druckern zu synchronisieren, müssen Sie in Cura angemeldet sein."
  4726. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:174
  4727. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:462
  4728. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:602
  4729. msgctxt "@button"
  4730. msgid "Sync materials with USB"
  4731. msgstr "Materialien über USB snchronisieren"
  4732. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:207
  4733. msgctxt "@title:header"
  4734. msgid "The following printers will receive the new material profiles:"
  4735. msgstr "Die folgenden Drucker erhalten die neuen Materialprofile:"
  4736. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:214
  4737. msgctxt "@title:header"
  4738. msgid "Something went wrong when sending the materials to the printers."
  4739. msgstr "Beim Senden der Materialien an die Drucker ist ein Fehler aufgetreten."
  4740. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:221
  4741. msgctxt "@title:header"
  4742. msgid "Material profiles successfully synced with the following printers:"
  4743. msgstr "Materialprofile wurden erfolgreich mit den folgenden Druckern synchronisiert:"
  4744. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:258
  4745. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:445
  4746. msgctxt "@button"
  4747. msgid "Troubleshooting"
  4748. msgstr "Störungen beheben"
  4749. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:422
  4750. msgctxt "@text Asking the user whether printers are missing in a list."
  4751. msgid "Printers missing?"
  4752. msgstr "Fehlen Drucker?"
  4753. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:424
  4754. msgctxt "@text"
  4755. msgid "Make sure all your printers are turned ON and connected to Digital Factory."
  4756. msgstr "Vergewissern Sie sich, dass alle Ihre Drucker eingeschaltet und mit Digital Factory verbunden sind."
  4757. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:433
  4758. msgctxt "@button"
  4759. msgid "Refresh List"
  4760. msgstr "Liste aktualisieren"
  4761. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:473
  4762. msgctxt "@button"
  4763. msgid "Try again"
  4764. msgstr "Erneut versuchen"
  4765. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:477
  4766. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:712
  4767. msgctxt "@button"
  4768. msgid "Done"
  4769. msgstr "Fertig"
  4770. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:479
  4771. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:622
  4772. msgctxt "@button"
  4773. msgid "Sync"
  4774. msgstr "Synchronisieren"
  4775. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:535
  4776. msgctxt "@button"
  4777. msgid "Syncing"
  4778. msgstr "Synchronisierung"
  4779. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:553
  4780. msgctxt "@title:header"
  4781. msgid "No printers found"
  4782. msgstr "Keine Drucker gefunden"
  4783. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:574
  4784. msgctxt "@text"
  4785. msgid "It seems like you don't have any compatible printers connected to Digital Factory. Make sure your printer is connected and it's running the latest firmware."
  4786. msgstr "Es scheint, als ob Sie keine kompatiblen Drucker mit Digital Factory verbunden haben. Stellen Sie sicher, dass Ihr Drucker verbunden ist und die neueste Firmware ausgeführt wird."
  4787. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:585
  4788. msgctxt "@button"
  4789. msgid "Learn how to connect your printer to Digital Factory"
  4790. msgstr "Erfahren Sie, wie Sie Ihren Drucker mit Digital Factory verbinden"
  4791. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:613
  4792. msgctxt "@button"
  4793. msgid "Refresh"
  4794. msgstr "Aktualisieren"
  4795. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:642
  4796. msgctxt "@title:header"
  4797. msgid "Sync material profiles via USB"
  4798. msgstr "Synchronisieren von Materialprofilen über USB"
  4799. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:648
  4800. msgctxt "@text In the UI this is followed by a list of steps the user needs to take."
  4801. msgid "Follow the following steps to load the new material profiles to your printer."
  4802. msgstr "Führen Sie die folgenden Schritte aus, um die neuen Materialprofile in Ihren Drucker zu laden."
  4803. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:679
  4804. msgctxt "@text"
  4805. msgid "Click the export material archive button."
  4806. msgstr "Klicken Sie auf die Schaltfläche Materialarchiv exportieren."
  4807. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:680
  4808. msgctxt "@text"
  4809. msgid "Save the .umm file on a USB stick."
  4810. msgstr "Save the .umm file on a USB stick."
  4811. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:681
  4812. msgctxt "@text"
  4813. msgid "Insert the USB stick into your printer and launch the procedure to load new material profiles."
  4814. msgstr "Stecken Sie den USB-Stick in Ihren Drucker und starten Sie das Verfahren zum Laden neuer Materialprofile."
  4815. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:689
  4816. msgctxt "@button"
  4817. msgid "How to load new material profiles to my printer"
  4818. msgstr "How to load new material profiles to my printer"
  4819. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:703
  4820. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:299
  4821. msgctxt "@button"
  4822. msgid "Back"
  4823. msgstr "Zurück"
  4824. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:712
  4825. msgctxt "@button"
  4826. msgid "Export material archive"
  4827. msgstr "Materialarchiv exportieren"
  4828. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:747
  4829. msgctxt "@title:window"
  4830. msgid "Export All Materials"
  4831. msgstr "Alle Materialien exportieren"
  4832. #: resources/qml/Preferences/Materials/MaterialsView.qml:121
  4833. msgctxt "@title:window"
  4834. msgid "Confirm Diameter Change"
  4835. msgstr "Änderung Durchmesser bestätigen"
  4836. #: resources/qml/Preferences/Materials/MaterialsView.qml:122
  4837. msgctxt "@label (%1 is a number)"
  4838. msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?"
  4839. msgstr "Der neue Filament-Durchmesser wurde auf %1 mm eingestellt, was nicht kompatibel mit dem aktuellen Extruder ist. Möchten Sie fortfahren?"
  4840. #: resources/qml/Preferences/Materials/MaterialsView.qml:152
  4841. msgctxt "@label"
  4842. msgid "Display Name"
  4843. msgstr "Namen anzeigen"
  4844. #: resources/qml/Preferences/Materials/MaterialsView.qml:171
  4845. msgctxt "@label"
  4846. msgid "Brand"
  4847. msgstr "Marke"
  4848. #: resources/qml/Preferences/Materials/MaterialsView.qml:190
  4849. msgctxt "@label"
  4850. msgid "Material Type"
  4851. msgstr "Materialtyp"
  4852. #: resources/qml/Preferences/Materials/MaterialsView.qml:210
  4853. msgctxt "@label"
  4854. msgid "Color"
  4855. msgstr "Farbe"
  4856. #: resources/qml/Preferences/Materials/MaterialsView.qml:262
  4857. msgctxt "@title"
  4858. msgid "Material color picker"
  4859. msgstr "Material-Farbwähler"
  4860. #: resources/qml/Preferences/Materials/MaterialsView.qml:275
  4861. msgctxt "@label"
  4862. msgid "Properties"
  4863. msgstr "Eigenschaften"
  4864. #: resources/qml/Preferences/Materials/MaterialsView.qml:286
  4865. msgctxt "@label"
  4866. msgid "Density"
  4867. msgstr "Dichte"
  4868. #: resources/qml/Preferences/Materials/MaterialsView.qml:319
  4869. msgctxt "@label"
  4870. msgid "Diameter"
  4871. msgstr "Durchmesser"
  4872. #: resources/qml/Preferences/Materials/MaterialsView.qml:369
  4873. msgctxt "@label"
  4874. msgid "Filament Cost"
  4875. msgstr "Filamentkosten"
  4876. #: resources/qml/Preferences/Materials/MaterialsView.qml:401
  4877. msgctxt "@label"
  4878. msgid "Filament weight"
  4879. msgstr "Filamentgewicht"
  4880. #: resources/qml/Preferences/Materials/MaterialsView.qml:433
  4881. msgctxt "@label"
  4882. msgid "Filament length"
  4883. msgstr "Filamentlänge"
  4884. #: resources/qml/Preferences/Materials/MaterialsView.qml:451
  4885. msgctxt "@label"
  4886. msgid "Cost per Meter"
  4887. msgstr "Kosten pro Meter"
  4888. #: resources/qml/Preferences/Materials/MaterialsView.qml:465
  4889. msgctxt "@label"
  4890. msgid "This material is linked to %1 and shares some of its properties."
  4891. msgstr "Dieses Material ist mit %1 verknüpft und teilt sich damit einige seiner Eigenschaften."
  4892. #: resources/qml/Preferences/Materials/MaterialsView.qml:472
  4893. msgctxt "@label"
  4894. msgid "Unlink Material"
  4895. msgstr "Material trennen"
  4896. #: resources/qml/Preferences/Materials/MaterialsView.qml:485
  4897. msgctxt "@label"
  4898. msgid "Description"
  4899. msgstr "Beschreibung"
  4900. #: resources/qml/Preferences/Materials/MaterialsView.qml:503
  4901. msgctxt "@label"
  4902. msgid "Adhesion Information"
  4903. msgstr "Haftungsinformationen"
  4904. #: resources/qml/Preferences/Materials/MaterialsView.qml:642
  4905. msgctxt "@title"
  4906. msgid "Information"
  4907. msgstr "Informationen"
  4908. #: resources/qml/Preferences/Materials/MaterialsView.qml:647
  4909. #: resources/qml/PrintSetupSelector/PrintSetupSelector.qml:18
  4910. msgctxt "@label"
  4911. msgid "Print settings"
  4912. msgstr "Druckeinstellungen"
  4913. #: resources/qml/Preferences/ProfilesPage.qml:59
  4914. msgctxt "@label"
  4915. msgid "Profiles compatible with active printer:"
  4916. msgstr "Mit aktivem Drucker kompatible Profile:"
  4917. #: resources/qml/Preferences/ProfilesPage.qml:98
  4918. msgctxt "@action:tooltip"
  4919. msgid "Create new profile from current settings/overrides"
  4920. msgstr "Neues Profil aus aktuellen Einstellungen/Überschreibungen erstellen"
  4921. #: resources/qml/Preferences/ProfilesPage.qml:125
  4922. msgctxt "@action:label"
  4923. msgid "Some settings from current profile were overwritten."
  4924. msgstr "Einige Einstellungen des aktuellen Profils wurden überschrieben."
  4925. #: resources/qml/Preferences/ProfilesPage.qml:140
  4926. msgctxt "@action:button"
  4927. msgid "Update profile."
  4928. msgstr "Profil aktualisieren"
  4929. #: resources/qml/Preferences/ProfilesPage.qml:143
  4930. msgctxt "@action:tooltip"
  4931. msgid "Update profile with current settings/overrides"
  4932. msgstr "Profil mit aktuellen Einstellungen/Überschreibungen aktualisieren"
  4933. #: resources/qml/Preferences/ProfilesPage.qml:148
  4934. msgctxt "@action:button"
  4935. msgid "Discard current changes"
  4936. msgstr "Aktuelle Änderungen verwerfen"
  4937. #: resources/qml/Preferences/ProfilesPage.qml:158
  4938. msgctxt "@action:label"
  4939. msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below."
  4940. msgstr "Dieses Profil verwendet die vom Drucker festgelegten Standardeinstellungen, deshalb sind in der folgenden Liste keine Einstellungen/Überschreibungen enthalten."
  4941. #: resources/qml/Preferences/ProfilesPage.qml:165
  4942. msgctxt "@action:label"
  4943. msgid "Your current settings match the selected profile."
  4944. msgstr "Ihre aktuellen Einstellungen stimmen mit dem gewählten Profil überein."
  4945. #: resources/qml/Preferences/ProfilesPage.qml:175
  4946. msgctxt "@title:tab"
  4947. msgid "Global Settings"
  4948. msgstr "Globale Einstellungen"
  4949. #: resources/qml/Preferences/ProfilesPage.qml:278
  4950. msgctxt "@title:window"
  4951. msgid "Create Profile"
  4952. msgstr "Profil erstellen"
  4953. #: resources/qml/Preferences/ProfilesPage.qml:280
  4954. msgctxt "@info"
  4955. msgid "Please provide a name for this profile."
  4956. msgstr "Geben Sie bitte einen Namen für dieses Profil an."
  4957. #: resources/qml/Preferences/ProfilesPage.qml:352
  4958. #: resources/qml/Preferences/ProfilesPage.qml:368
  4959. msgctxt "@title:window"
  4960. msgid "Export Profile"
  4961. msgstr "Profil exportieren"
  4962. #: resources/qml/Preferences/ProfilesPage.qml:382
  4963. msgctxt "@title:window"
  4964. msgid "Duplicate Profile"
  4965. msgstr "Profil duplizieren"
  4966. #: resources/qml/Preferences/ProfilesPage.qml:409
  4967. msgctxt "@title:window"
  4968. msgid "Rename Profile"
  4969. msgstr "Profil umbenennen"
  4970. #: resources/qml/Preferences/ProfilesPage.qml:422
  4971. #: resources/qml/Preferences/ProfilesPage.qml:429
  4972. msgctxt "@title:window"
  4973. msgid "Import Profile"
  4974. msgstr "Profil importieren"
  4975. #: resources/qml/Preferences/SettingVisibilityItem.qml:56
  4976. msgctxt "@item:tooltip"
  4977. msgid "This setting has been hidden by the active machine and will not be visible."
  4978. msgstr "Diese Einstellung wurde durch das aktive Gerät ausgeblendet und ist nicht sichtbar."
  4979. #: resources/qml/Preferences/SettingVisibilityItem.qml:73
  4980. msgctxt "@item:tooltip %1 is list of setting names"
  4981. msgid "This setting has been hidden by the value of %1. Change the value of that setting to make this setting visible."
  4982. msgid_plural "This setting has been hidden by the values of %1. Change the values of those settings to make this setting visible."
  4983. msgstr[0] "Diese Einstellung wurde durch den Wert von %1 ausgeblendet. Ändern Sie den Wert dieser Einstellung, um diese Einstellung sichtbar zu machen."
  4984. msgstr[1] "Diese Einstellung wurde durch die Werte von %1 ausgeblendet. Ändern Sie die Werte dieser Einstellung, um diese Einstellung sichtbar zu machen."
  4985. #: resources/qml/Preferences/SettingVisibilityPage.qml:13
  4986. msgctxt "@title:tab"
  4987. msgid "Setting Visibility"
  4988. msgstr "Sichtbarkeit einstellen"
  4989. #: resources/qml/Preferences/SettingVisibilityPage.qml:55
  4990. msgctxt "@label:textbox"
  4991. msgid "Check all"
  4992. msgstr "Alle prüfen"
  4993. #: resources/qml/PrintMonitor.qml:156
  4994. msgctxt "@label"
  4995. msgid "Active print"
  4996. msgstr "Aktiver Druck"
  4997. #: resources/qml/PrintMonitor.qml:164
  4998. msgctxt "@label"
  4999. msgid "Job Name"
  5000. msgstr "Name des Auftrags"
  5001. #: resources/qml/PrintMonitor.qml:172
  5002. msgctxt "@label"
  5003. msgid "Printing Time"
  5004. msgstr "Druckzeit"
  5005. #: resources/qml/PrintMonitor.qml:180
  5006. msgctxt "@label"
  5007. msgid "Estimated time left"
  5008. msgstr "Geschätzte verbleibende Zeit"
  5009. #: resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:46
  5010. msgctxt "@label"
  5011. msgid "Profile"
  5012. msgstr "Profil"
  5013. #: resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:136
  5014. msgctxt "@tooltip"
  5015. msgid ""
  5016. "Some setting/override values are different from the values stored in the profile.\n"
  5017. "\n"
  5018. "Click to open the profile manager."
  5019. msgstr ""
  5020. "Einige Einstellungs-/Überschreibungswerte unterscheiden sich von den im Profil gespeicherten Werten.\n"
  5021. "\n"
  5022. "Klicken Sie, um den Profilmanager zu öffnen."
  5023. #: resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:158
  5024. msgctxt "@label:header"
  5025. msgid "Custom profiles"
  5026. msgstr "Benutzerdefinierte Profile"
  5027. #: resources/qml/PrintSetupSelector/PrintSetupSelector.qml:20
  5028. msgctxt "@label shown when we load a Gcode file"
  5029. msgid "Print setup disabled. G-code file can not be modified."
  5030. msgstr "Druckeinrichtung ist deaktiviert. G-Code-Datei kann nicht geändert werden."
  5031. #: resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:160
  5032. msgctxt "@button"
  5033. msgid "Recommended"
  5034. msgstr "Empfohlen"
  5035. #: resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13
  5036. msgctxt "@label:Should be short"
  5037. msgid "On"
  5038. msgstr "Ein"
  5039. #: resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14
  5040. msgctxt "@label:Should be short"
  5041. msgid "Off"
  5042. msgstr "Aus"
  5043. #: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:65
  5044. msgctxt "@info, %1 is the name of the custom profile"
  5045. msgid "<b>%1</b> custom profile is active and you overwrote some settings."
  5046. msgstr "<b>%1</b> benutzerdefiniertes Profil ist aktiv und einige Einstellungen wurden überschrieben."
  5047. #: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:78
  5048. msgctxt "@info, %1 is the name of the custom profile"
  5049. msgid "<b>%1</b> custom profile is overriding some settings."
  5050. msgstr "<b>%1</b> benutzerdefiniertes Profil überschreibt einige Einstellungen."
  5051. #: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:92
  5052. msgctxt "@info %1 is the name of a profile"
  5053. msgid "Recommended settings (for <b>%1</b>) were altered."
  5054. msgstr ""
  5055. #: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:106
  5056. #, fuzzy
  5057. msgctxt "@info %1 is the name of a profile"
  5058. msgid "Some setting-values defined in <b>%1</b> were overridden."
  5059. msgstr "Einige Einstellungen des aktuellen Profils wurden überschrieben."
  5060. #: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:137
  5061. msgctxt "@info"
  5062. msgid "Reset to defaults."
  5063. msgstr ""
  5064. #: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:178
  5065. msgctxt "@info"
  5066. msgid "Compare and save."
  5067. msgstr ""
  5068. #: resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:15
  5069. msgctxt "@label"
  5070. msgid "Adhesion"
  5071. msgstr "Haftung"
  5072. #: resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:20
  5073. msgctxt "@label"
  5074. msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards."
  5075. msgstr "Drucken eines Brim- oder Raft-Elements aktivieren. Es wird ein flacher Bereich rund um oder unter Ihrem Objekt hinzugefügt, das im Anschluss leicht abgeschnitten werden kann."
  5076. #: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:102
  5077. #, fuzzy
  5078. msgctxt "@label"
  5079. msgid "Recommended print settings"
  5080. msgstr "Druckeinstellungen"
  5081. #: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:111
  5082. #, fuzzy
  5083. msgctxt "@button"
  5084. msgid "Show Custom"
  5085. msgstr "Benutzerdefiniert"
  5086. #: resources/qml/PrintSetupSelector/Recommended/RecommendedResolutionSelector.qml:27
  5087. msgctxt "@label"
  5088. msgid "Resolution"
  5089. msgstr "Auflösung"
  5090. #: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:16
  5091. msgctxt "@label"
  5092. msgid "Strength"
  5093. msgstr ""
  5094. #: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:20
  5095. msgctxt "@label"
  5096. msgid "The following settings define the strength of your part."
  5097. msgstr ""
  5098. #: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:34
  5099. #, fuzzy
  5100. msgctxt "infill_sparse_density description"
  5101. msgid "Infill Density"
  5102. msgstr "Nur Mesh-Füllung"
  5103. #: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:35
  5104. msgctxt "@label"
  5105. msgid "Adjusts the density of infill of the print."
  5106. msgstr ""
  5107. #: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:54
  5108. msgctxt "@action:label"
  5109. msgid "Infill Pattern"
  5110. msgstr ""
  5111. #: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:56
  5112. msgctxt "@label"
  5113. msgid ""
  5114. "The pattern of the infill material of the print:\n"
  5115. "\n"
  5116. "For quick prints of non functional model choose line, zig zag or lighting infill.\n"
  5117. "\n"
  5118. "For functional part not subjected to a lot of stress we reccomend grid or triangle or tri hexagon.\n"
  5119. "\n"
  5120. "For functional 3D prints which require high strenght in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid."
  5121. msgstr ""
  5122. #: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:67
  5123. #, fuzzy
  5124. msgctxt "@action:label"
  5125. msgid "Shell Thickness"
  5126. msgstr "Schichtdicke"
  5127. #: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:68
  5128. msgctxt "@label"
  5129. msgid "Defines the tickness of your part side walls, roof and floor."
  5130. msgstr ""
  5131. #: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:16
  5132. msgctxt "@label"
  5133. msgid "Support"
  5134. msgstr "Stützstruktur"
  5135. #: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:21
  5136. #, fuzzy
  5137. msgctxt "@label"
  5138. msgid "Generate structures to support parts of the model which have overhangs. Without these structures, these parts would collapse during printing."
  5139. 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."
  5140. #: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:40
  5141. #, fuzzy
  5142. msgctxt "@action:label"
  5143. msgid "Support Type"
  5144. msgstr "Stützstruktur"
  5145. #: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:41
  5146. msgctxt "@label"
  5147. msgid ""
  5148. "Chooses between the techniques available to generate support. \n"
  5149. "\n"
  5150. "\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n"
  5151. "\n"
  5152. "\"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."
  5153. msgstr ""
  5154. #: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:53
  5155. #, fuzzy
  5156. msgctxt "@action:label"
  5157. msgid "Print with"
  5158. msgstr "Drucken"
  5159. #: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:54
  5160. msgctxt "@label"
  5161. msgid "The extruder train to use for printing the support. This is used in multi-extrusion."
  5162. msgstr ""
  5163. #: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:67
  5164. msgctxt "@action:label"
  5165. msgid "Placement"
  5166. msgstr ""
  5167. #: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:68
  5168. msgctxt "support_type description"
  5169. 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."
  5170. msgstr ""
  5171. #: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:31
  5172. msgctxt "@error"
  5173. msgid "Configuration not supported"
  5174. msgstr "Konfiguration wird nicht unterstützt"
  5175. #: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:39
  5176. msgctxt "@message:text %1 is the name the printer uses for 'nozzle'."
  5177. msgid "No profiles are available for the selected material/%1 configuration. Please change your configuration."
  5178. msgstr "Für die ausgewählte Material-/%1-Konfiguration sind keine Profile verfügbar. Bitte ändern Sie Ihre Konfiguration."
  5179. #: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:47
  5180. msgctxt "@button:label"
  5181. msgid "Learn more"
  5182. msgstr "Mehr erfahren"
  5183. #: resources/qml/PrinterOutput/ExtruderBox.qml:40
  5184. msgctxt "@label"
  5185. msgid "Extruder"
  5186. msgstr "Extruder"
  5187. #: resources/qml/PrinterOutput/ExtruderBox.qml:70
  5188. msgctxt "@tooltip"
  5189. msgid "The target temperature of the hotend. The hotend will heat up or cool down towards this temperature. If this is 0, the hotend heating is turned off."
  5190. msgstr "Die Zieltemperatur des Hotend. Das Hotend wird auf diese Temperatur aufgeheizt oder abgekühlt. Wenn der Wert 0 beträgt, wird die Hotend-Heizung ausgeschaltet."
  5191. #: resources/qml/PrinterOutput/ExtruderBox.qml:105
  5192. msgctxt "@tooltip"
  5193. msgid "The current temperature of this hotend."
  5194. msgstr "Die aktuelle Temperatur dieses Hotends."
  5195. #: resources/qml/PrinterOutput/ExtruderBox.qml:182
  5196. msgctxt "@tooltip of temperature input"
  5197. msgid "The temperature to pre-heat the hotend to."
  5198. msgstr "Die Temperatur, auf die das Hotend vorgeheizt wird."
  5199. #: resources/qml/PrinterOutput/ExtruderBox.qml:271
  5200. #: resources/qml/PrinterOutput/HeatedBedBox.qml:259
  5201. msgctxt "@button Cancel pre-heating"
  5202. msgid "Cancel"
  5203. msgstr "Abbrechen"
  5204. #: resources/qml/PrinterOutput/ExtruderBox.qml:274
  5205. #: resources/qml/PrinterOutput/HeatedBedBox.qml:263
  5206. msgctxt "@button"
  5207. msgid "Pre-heat"
  5208. msgstr "Vorheizen"
  5209. #: resources/qml/PrinterOutput/ExtruderBox.qml:297
  5210. msgctxt "@tooltip of pre-heat"
  5211. msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print."
  5212. msgstr "Heizen Sie das Hotend vor Druckbeginn auf. Sie können Ihren Druck während des Aufheizens weiter anpassen und müssen nicht warten, bis das Hotend aufgeheizt ist, wenn Sie druckbereit sind."
  5213. #: resources/qml/PrinterOutput/ExtruderBox.qml:335
  5214. msgctxt "@tooltip"
  5215. msgid "The colour of the material in this extruder."
  5216. msgstr "Die Farbe des Materials in diesem Extruder."
  5217. #: resources/qml/PrinterOutput/ExtruderBox.qml:367
  5218. msgctxt "@tooltip"
  5219. msgid "The material in this extruder."
  5220. msgstr "Das Material in diesem Extruder."
  5221. #: resources/qml/PrinterOutput/ExtruderBox.qml:400
  5222. msgctxt "@tooltip"
  5223. msgid "The nozzle inserted in this extruder."
  5224. msgstr "Die in diesem Extruder eingesetzte Düse."
  5225. #: resources/qml/PrinterOutput/HeatedBedBox.qml:25
  5226. msgctxt "@label"
  5227. msgid "Build plate"
  5228. msgstr "Druckbett"
  5229. #: resources/qml/PrinterOutput/HeatedBedBox.qml:55
  5230. msgctxt "@tooltip"
  5231. msgid "The target temperature of the heated bed. The bed will heat up or cool down towards this temperature. If this is 0, the bed heating is turned off."
  5232. msgstr "Die Zieltemperatur des heizbaren Betts. Das Bett wird auf diese Temperatur aufgeheizt oder abgekühlt. Wenn der Wert 0 beträgt, wird die Bettheizung ausgeschaltet."
  5233. #: resources/qml/PrinterOutput/HeatedBedBox.qml:88
  5234. msgctxt "@tooltip"
  5235. msgid "The current temperature of the heated bed."
  5236. msgstr "Die aktuelle Temperatur des beheizten Betts."
  5237. #: resources/qml/PrinterOutput/HeatedBedBox.qml:162
  5238. msgctxt "@tooltip of temperature input"
  5239. msgid "The temperature to pre-heat the bed to."
  5240. msgstr "Die Temperatur, auf die das Bett vorgeheizt wird."
  5241. #: resources/qml/PrinterOutput/HeatedBedBox.qml:286
  5242. msgctxt "@tooltip of pre-heat"
  5243. msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print."
  5244. msgstr "Heizen Sie das Bett vor Druckbeginn auf. Sie können Ihren Druck während des Aufheizens weiter anpassen und müssen nicht warten, bis das Bett aufgeheizt ist, wenn Sie druckbereit sind."
  5245. #: resources/qml/PrinterOutput/ManualPrinterControl.qml:51
  5246. msgctxt "@label"
  5247. msgid "Printer control"
  5248. msgstr "Druckersteuerung"
  5249. #: resources/qml/PrinterOutput/ManualPrinterControl.qml:66
  5250. msgctxt "@label"
  5251. msgid "Jog Position"
  5252. msgstr "Tippposition"
  5253. #: resources/qml/PrinterOutput/ManualPrinterControl.qml:82
  5254. msgctxt "@label"
  5255. msgid "X/Y"
  5256. msgstr "X/Y"
  5257. #: resources/qml/PrinterOutput/ManualPrinterControl.qml:162
  5258. msgctxt "@label"
  5259. msgid "Z"
  5260. msgstr "Z"
  5261. #: resources/qml/PrinterOutput/ManualPrinterControl.qml:217
  5262. msgctxt "@label"
  5263. msgid "Jog Distance"
  5264. msgstr "Tippdistanz"
  5265. #: resources/qml/PrinterOutput/ManualPrinterControl.qml:257
  5266. msgctxt "@label"
  5267. msgid "Send G-code"
  5268. msgstr "G-Code senden"
  5269. #: resources/qml/PrinterOutput/ManualPrinterControl.qml:319
  5270. msgctxt "@tooltip of G-code command input"
  5271. msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command."
  5272. msgstr "Einen benutzerdefinierten G-Code-Befehl an den verbundenen Drucker senden. „Eingabe“ drücken, um den Befehl zu senden."
  5273. #: resources/qml/PrinterOutput/OutputDeviceHeader.qml:55
  5274. msgctxt "@info:status"
  5275. msgid "The printer is not connected."
  5276. msgstr "Der Drucker ist nicht verbunden."
  5277. #: resources/qml/PrinterSelector/MachineListButton.qml:34
  5278. msgctxt "@label"
  5279. msgid "Hide all connected printers"
  5280. msgstr "Alle verbundenen Drucker ausblenden"
  5281. #: resources/qml/PrinterSelector/MachineListButton.qml:47
  5282. msgctxt "@label"
  5283. msgid "Show all connected printers"
  5284. msgstr "Alle verbundenen Drucker anzeigen"
  5285. #: resources/qml/PrinterSelector/MachineSelector.qml:64
  5286. msgctxt "@status"
  5287. msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet."
  5288. msgstr "Der Cloud-Drucker ist offline. Bitte prüfen Sie, ob der Drucker eingeschaltet und mit dem Internet verbunden ist."
  5289. #: resources/qml/PrinterSelector/MachineSelector.qml:68
  5290. #, fuzzy
  5291. msgctxt "@status"
  5292. msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection."
  5293. msgstr "Der Drucker ist nicht mit Ihrem Konto verbunden. Bitte besuchen Sie die Ultimaker Digital Factory, um eine Verbindung herzustellen."
  5294. #: resources/qml/PrinterSelector/MachineSelector.qml:73
  5295. msgctxt "@status"
  5296. msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer."
  5297. msgstr "Die Cloud-Verbindung ist aktuell nicht verfügbar. Bitte melden Sie sich an, um sich mit dem Cloud-Drucker zu verbinden."
  5298. #: resources/qml/PrinterSelector/MachineSelector.qml:78
  5299. msgctxt "@status"
  5300. msgid "The cloud connection is currently unavailable. Please check your internet connection."
  5301. msgstr "Die Cloud-Verbindung ist aktuell nicht verfügbar. Bitte überprüfen Sie ihre Internetverbindung."
  5302. #: resources/qml/PrinterSelector/MachineSelectorList.qml:30
  5303. #: resources/qml/PrinterSelector/MachineSelectorList.qml:32
  5304. msgctxt "@label"
  5305. msgid "Other printers"
  5306. msgstr "Andere Drucker"
  5307. #: resources/qml/ProfileOverview.qml:36
  5308. msgctxt "@title:column"
  5309. msgid "Setting"
  5310. msgstr "Einstellung"
  5311. #: resources/qml/ProfileOverview.qml:37
  5312. msgctxt "@title:column"
  5313. msgid "Profile"
  5314. msgstr "Profil"
  5315. #: resources/qml/ProfileOverview.qml:38
  5316. msgctxt "@title:column"
  5317. msgid "Current"
  5318. msgstr "Aktuell"
  5319. #: resources/qml/ProfileOverview.qml:39
  5320. msgctxt "@title:column Unit of measurement"
  5321. msgid "Unit"
  5322. msgstr "Einheit"
  5323. #: resources/qml/SearchBar.qml:17
  5324. msgctxt "@placeholder"
  5325. msgid "Search"
  5326. msgstr "Suche"
  5327. #: resources/qml/Settings/SettingCategory.qml:115
  5328. msgctxt "@label"
  5329. msgid ""
  5330. "Some hidden settings use values different from their normal calculated value.\n"
  5331. "\n"
  5332. "Click to make these settings visible."
  5333. msgstr ""
  5334. "Einige ausgeblendete Einstellungen verwenden Werte, die von ihren normalen, berechneten Werten abweichen.\n"
  5335. "\n"
  5336. "Klicken Sie, um diese Einstellungen sichtbar zu machen."
  5337. #: resources/qml/Settings/SettingItem.qml:84
  5338. msgctxt "@label"
  5339. msgid "This setting is not used because all the settings that it influences are overridden."
  5340. msgstr "Diese Einstellung wird nicht verwendet, weil alle hierdurch beeinflussten Einstellungen aufgehoben werden."
  5341. #: resources/qml/Settings/SettingItem.qml:89
  5342. msgctxt "@label Header for list of settings."
  5343. msgid "Affects"
  5344. msgstr "Hat Einfluss auf"
  5345. #: resources/qml/Settings/SettingItem.qml:94
  5346. msgctxt "@label Header for list of settings."
  5347. msgid "Affected By"
  5348. msgstr "Wird beeinflusst von"
  5349. #: resources/qml/Settings/SettingItem.qml:190
  5350. msgctxt "@label"
  5351. msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders."
  5352. msgstr "Diese Einstellung wird stets zwischen allen Extrudern geteilt. Eine Änderung ändert den Wert für alle Extruder."
  5353. #: resources/qml/Settings/SettingItem.qml:194
  5354. msgctxt "@label"
  5355. msgid "This setting is resolved from conflicting extruder-specific values:"
  5356. msgstr "Diese Einstellung wird durch gegensätzliche, extruderspezifische Werte gelöst:"
  5357. #: resources/qml/Settings/SettingItem.qml:234
  5358. msgctxt "@label"
  5359. msgid ""
  5360. "This setting has a value that is different from the profile.\n"
  5361. "\n"
  5362. "Click to restore the value of the profile."
  5363. msgstr ""
  5364. "Diese Einstellung hat einen vom Profil abweichenden Wert.\n"
  5365. "\n"
  5366. "Klicken Sie, um den Wert des Profils wiederherzustellen."
  5367. #: resources/qml/Settings/SettingItem.qml:334
  5368. msgctxt "@label"
  5369. msgid ""
  5370. "This setting is normally calculated, but it currently has an absolute value set.\n"
  5371. "\n"
  5372. "Click to restore the calculated value."
  5373. msgstr ""
  5374. "Diese Einstellung wird normalerweise berechnet; aktuell ist jedoch ein Absolutwert eingestellt.\n"
  5375. "\n"
  5376. "Klicken Sie, um den berechneten Wert wiederherzustellen."
  5377. #: resources/qml/Settings/SettingView.qml:48
  5378. msgctxt "@label:textbox"
  5379. msgid "Search settings"
  5380. msgstr "Einstellungen durchsuchen"
  5381. #: resources/qml/Settings/SettingView.qml:395
  5382. msgctxt "@action:menu"
  5383. msgid "Copy value to all extruders"
  5384. msgstr "Werte für alle Extruder kopieren"
  5385. #: resources/qml/Settings/SettingView.qml:404
  5386. msgctxt "@action:menu"
  5387. msgid "Copy all changed values to all extruders"
  5388. msgstr "Alle geänderten Werte für alle Extruder kopieren"
  5389. #: resources/qml/Settings/SettingView.qml:440
  5390. msgctxt "@action:menu"
  5391. msgid "Hide this setting"
  5392. msgstr "Diese Einstellung ausblenden"
  5393. #: resources/qml/Settings/SettingView.qml:453
  5394. msgctxt "@action:menu"
  5395. msgid "Don't show this setting"
  5396. msgstr "Diese Einstellung ausblenden"
  5397. #: resources/qml/Settings/SettingView.qml:457
  5398. msgctxt "@action:menu"
  5399. msgid "Keep this setting visible"
  5400. msgstr "Diese Einstellung weiterhin anzeigen"
  5401. #: resources/qml/Toolbar.qml:142
  5402. msgctxt "@label %1 is filled in with the name of an extruder"
  5403. msgid "Print Selected Model with %1"
  5404. msgid_plural "Print Selected Models with %1"
  5405. msgstr[0] "Ausgewähltes Modell drucken mit %1"
  5406. msgstr[1] "Ausgewählte Modelle drucken mit %1"
  5407. #: resources/qml/ViewOrientationControls.qml:25
  5408. msgctxt "@info:tooltip"
  5409. msgid "3D View"
  5410. msgstr "3D-Ansicht"
  5411. #: resources/qml/ViewOrientationControls.qml:38
  5412. msgctxt "@info:tooltip"
  5413. msgid "Front View"
  5414. msgstr "Vorderansicht"
  5415. #: resources/qml/ViewOrientationControls.qml:51
  5416. msgctxt "@info:tooltip"
  5417. msgid "Top View"
  5418. msgstr "Draufsicht"
  5419. #: resources/qml/ViewOrientationControls.qml:64
  5420. msgctxt "@info:tooltip"
  5421. msgid "Left View"
  5422. msgstr "Ansicht von links"
  5423. #: resources/qml/ViewOrientationControls.qml:77
  5424. msgctxt "@info:tooltip"
  5425. msgid "Right View"
  5426. msgstr "Ansicht von rechts"
  5427. #: resources/qml/ViewsSelector.qml:50
  5428. msgctxt "@label"
  5429. msgid "View type"
  5430. msgstr "Typ anzeigen"
  5431. #: resources/qml/WelcomePages/AddCloudPrintersView.qml:47
  5432. msgctxt "@label"
  5433. msgid "Add a Cloud printer"
  5434. msgstr "Einen Cloud-Drucker hinzufügen"
  5435. #: resources/qml/WelcomePages/AddCloudPrintersView.qml:73
  5436. msgctxt "@label"
  5437. msgid "Waiting for Cloud response"
  5438. msgstr "Auf eine Antwort von der Cloud warten"
  5439. #: resources/qml/WelcomePages/AddCloudPrintersView.qml:83
  5440. msgctxt "@label"
  5441. msgid "No printers found in your account?"
  5442. msgstr "Keine Drucker in Ihrem Konto gefunden?"
  5443. #: resources/qml/WelcomePages/AddCloudPrintersView.qml:117
  5444. msgctxt "@label"
  5445. msgid "The following printers in your account have been added in Cura:"
  5446. msgstr "Folgende Drucker in Ihrem Konto wurden zu Cura hinzugefügt:"
  5447. #: resources/qml/WelcomePages/AddCloudPrintersView.qml:186
  5448. msgctxt "@button"
  5449. msgid "Add printer manually"
  5450. msgstr "Drucker manuell hinzufügen"
  5451. #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:203
  5452. msgctxt "@label"
  5453. msgid "Manufacturer"
  5454. msgstr "Hersteller"
  5455. #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214
  5456. msgctxt "@label"
  5457. msgid "Profile author"
  5458. msgstr "Autor des Profils"
  5459. #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:226
  5460. msgctxt "@label"
  5461. msgid "Printer name"
  5462. msgstr "Druckername"
  5463. #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:232
  5464. msgctxt "@text"
  5465. msgid "Please name your printer"
  5466. msgstr "Bitte weisen Sie Ihrem Drucker einen Namen zu"
  5467. #: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43
  5468. msgctxt "@label"
  5469. msgid "There is no printer found over your network."
  5470. msgstr "Kein Drucker in Ihrem Netzwerk gefunden."
  5471. #: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:162
  5472. msgctxt "@label"
  5473. msgid "Refresh"
  5474. msgstr "Aktualisieren"
  5475. #: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:173
  5476. msgctxt "@label"
  5477. msgid "Add printer by IP"
  5478. msgstr "Drucker nach IP hinzufügen"
  5479. #: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:205
  5480. msgctxt "@label"
  5481. msgid "Troubleshooting"
  5482. msgstr "Störungen beheben"
  5483. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:70
  5484. msgctxt "@label"
  5485. msgid "Add printer by IP address"
  5486. msgstr "Drucker nach IP-Adresse hinzufügen"
  5487. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:128
  5488. msgctxt "@text"
  5489. msgid "Enter your printer's IP address."
  5490. msgstr "Geben Sie die IP-Adresse Ihres Druckers ein."
  5491. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:150
  5492. msgctxt "@button"
  5493. msgid "Add"
  5494. msgstr "Hinzufügen"
  5495. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:195
  5496. msgctxt "@label"
  5497. msgid "Could not connect to device."
  5498. msgstr "Verbindung mit Drucker nicht möglich."
  5499. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:196
  5500. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:201
  5501. msgctxt "@label"
  5502. msgid "Can't connect to your UltiMaker printer?"
  5503. msgstr "Sie können keine Verbindung zu Ihrem UltiMaker-Drucker herstellen?"
  5504. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:200
  5505. msgctxt "@label"
  5506. msgid "The printer at this address has not responded yet."
  5507. msgstr "Der Drucker unter dieser Adresse hat noch nicht reagiert."
  5508. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:231
  5509. msgctxt "@label"
  5510. msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group."
  5511. msgstr "Dieser Drucker kann nicht hinzugefügt werden, weil es sich um einen unbekannten Drucker handelt oder er nicht im Host einer Gruppe enthalten ist."
  5512. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:312
  5513. msgctxt "@button"
  5514. msgid "Connect"
  5515. msgstr "Verbinden"
  5516. #: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:29
  5517. msgctxt "@label"
  5518. msgid "Add a networked printer"
  5519. msgstr "Einen vernetzten Drucker hinzufügen"
  5520. #: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:78
  5521. msgctxt "@label"
  5522. msgid "Add a non-networked printer"
  5523. msgstr "Einen unvernetzten Drucker hinzufügen"
  5524. #: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:102
  5525. #, fuzzy
  5526. msgctxt "@button"
  5527. msgid "Add UltiMaker printer via Digital Factory"
  5528. msgstr "Drucker in der Digital Factory anzeigen"
  5529. #: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:29
  5530. #, fuzzy
  5531. msgctxt "@label"
  5532. msgid "In order to start using Cura you will need to configure a printer."
  5533. msgstr "Um das Paket nutzen zu können, müssen Sie Cura neu starten"
  5534. #: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:36
  5535. msgctxt "@label"
  5536. msgid "What printer would you like to setup?"
  5537. msgstr ""
  5538. #: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:55
  5539. #, fuzzy
  5540. msgctxt "@button"
  5541. msgid "UltiMaker printer"
  5542. msgstr "UltiMaker Kundendienst"
  5543. #: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:64
  5544. #, fuzzy
  5545. msgctxt "@button"
  5546. msgid "Non UltiMaker printer"
  5547. msgstr "UltiMaker Kundendienst"
  5548. #: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:73
  5549. msgctxt "@button"
  5550. msgid "Learn more about adding printers to Cura"
  5551. msgstr ""
  5552. #: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinterStack.qml:29
  5553. #, fuzzy
  5554. msgctxt "@label"
  5555. msgid "Add printer"
  5556. msgstr "Drucker hinzufügen"
  5557. #: resources/qml/WelcomePages/AddUltimakerPrinter.qml:33
  5558. #, fuzzy
  5559. msgctxt "@label"
  5560. msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely."
  5561. msgstr "Vergewissern Sie sich, dass alle Ihre Drucker eingeschaltet und mit Digital Factory verbunden sind."
  5562. #: resources/qml/WelcomePages/AddUltimakerPrinter.qml:70
  5563. msgctxt "@label"
  5564. msgid "If you are trying to add a new UltiMaker printer to Cura"
  5565. msgstr ""
  5566. #: resources/qml/WelcomePages/AddUltimakerPrinter.qml:80
  5567. #, fuzzy
  5568. msgctxt "@info"
  5569. msgid "Sign in into UltiMaker Digilal Factory"
  5570. msgstr "Überwachen Sie Drucker in der Ultimaker Digital Factory."
  5571. #: resources/qml/WelcomePages/AddUltimakerPrinter.qml:81
  5572. msgctxt "@info"
  5573. msgid "Follow the procedure to add a new printer"
  5574. msgstr ""
  5575. #: resources/qml/WelcomePages/AddUltimakerPrinter.qml:82
  5576. msgctxt "@info"
  5577. msgid "Your new printer will automatically appear in Cura"
  5578. msgstr ""
  5579. #: resources/qml/WelcomePages/AddUltimakerPrinter.qml:100
  5580. #, fuzzy
  5581. msgctxt "@button"
  5582. msgid "Learn more"
  5583. msgstr "Mehr erfahren"
  5584. #: resources/qml/WelcomePages/AddUltimakerPrinter.qml:121
  5585. #, fuzzy
  5586. msgctxt "@button"
  5587. msgid "Add local printer"
  5588. msgstr "Einen Drucker hinzufügen"
  5589. #: resources/qml/WelcomePages/AddUltimakerPrinter.qml:129
  5590. #, fuzzy
  5591. msgctxt "@button"
  5592. msgid "Sign in to Digital Factory"
  5593. msgstr "Drucker in der Digital Factory anzeigen"
  5594. #: resources/qml/WelcomePages/AddUltimakerPrinter.qml:133
  5595. #, fuzzy
  5596. msgctxt "@button"
  5597. msgid "Waiting for new printers"
  5598. msgstr "Drucker verwalten"
  5599. #: resources/qml/WelcomePages/ChangelogContent.qml:24
  5600. msgctxt "@label"
  5601. msgid "Release Notes"
  5602. msgstr "Versionshinweise"
  5603. #: resources/qml/WelcomePages/CloudContent.qml:123
  5604. msgctxt "@text"
  5605. msgid "Add material settings and plugins from the Marketplace"
  5606. msgstr "Materialeinstellungen und Plug-ins aus dem Marketplace hinzufügen"
  5607. #: resources/qml/WelcomePages/CloudContent.qml:149
  5608. msgctxt "@text"
  5609. msgid "Backup and sync your material settings and plugins"
  5610. msgstr "Materialeinstellungen und Plug-ins sichern und synchronisieren"
  5611. #: resources/qml/WelcomePages/CloudContent.qml:175
  5612. msgctxt "@text"
  5613. msgid "Share ideas and get help from 48,000+ users in the UltiMaker Community"
  5614. msgstr "Ideenaustausch mit und Hilfe von mehr als 48.000 Benutzern in der UltiMaker Community"
  5615. #: resources/qml/WelcomePages/CloudContent.qml:189
  5616. msgctxt "@button"
  5617. msgid "Skip"
  5618. msgstr "Überspringen"
  5619. #: resources/qml/WelcomePages/CloudContent.qml:201
  5620. msgctxt "@text"
  5621. msgid "Create a free UltiMaker Account"
  5622. msgstr "Kostenloses UltiMaker-Konto erstellen"
  5623. #: resources/qml/WelcomePages/DataCollectionsContent.qml:24
  5624. msgctxt "@label"
  5625. msgid "Help us to improve UltiMaker Cura"
  5626. msgstr "Helfen Sie uns, UltiMaker Cura zu verbessern"
  5627. #: resources/qml/WelcomePages/DataCollectionsContent.qml:56
  5628. msgctxt "@text"
  5629. msgid "UltiMaker Cura collects anonymous data to improve print quality and user experience, including:"
  5630. msgstr "UltiMaker Cura erfasst anonyme Daten, um die Druckqualität und Benutzererfahrung zu steigern. Dazu gehören:"
  5631. #: resources/qml/WelcomePages/DataCollectionsContent.qml:68
  5632. msgctxt "@text"
  5633. msgid "Machine types"
  5634. msgstr "Gerätetypen"
  5635. #: resources/qml/WelcomePages/DataCollectionsContent.qml:74
  5636. msgctxt "@text"
  5637. msgid "Material usage"
  5638. msgstr "Materialverbrauch"
  5639. #: resources/qml/WelcomePages/DataCollectionsContent.qml:80
  5640. msgctxt "@text"
  5641. msgid "Number of slices"
  5642. msgstr "Anzahl der Slices"
  5643. #: resources/qml/WelcomePages/DataCollectionsContent.qml:86
  5644. msgctxt "@text"
  5645. msgid "Print settings"
  5646. msgstr "Druckeinstellungen"
  5647. #: resources/qml/WelcomePages/DataCollectionsContent.qml:99
  5648. msgctxt "@text"
  5649. msgid "Data collected by UltiMaker Cura will not contain any personal information."
  5650. msgstr "Die von UltiMaker Cura erfassten Daten enthalten keine personenbezogenen Daten."
  5651. #: resources/qml/WelcomePages/DataCollectionsContent.qml:100
  5652. msgctxt "@text"
  5653. msgid "More information"
  5654. msgstr "Mehr Informationen"
  5655. #: resources/qml/WelcomePages/DropDownWidget.qml:93
  5656. msgctxt "@label"
  5657. msgid "Empty"
  5658. msgstr "Leer"
  5659. #: resources/qml/WelcomePages/UserAgreementContent.qml:23
  5660. msgctxt "@label"
  5661. msgid "User Agreement"
  5662. msgstr "Benutzervereinbarung"
  5663. #: resources/qml/WelcomePages/UserAgreementContent.qml:67
  5664. msgctxt "@button"
  5665. msgid "Decline and close"
  5666. msgstr "Ablehnen und schließen"
  5667. #: resources/qml/WelcomePages/WelcomeContent.qml:56
  5668. msgctxt "@label"
  5669. msgid "Welcome to UltiMaker Cura"
  5670. msgstr "Willkommen bei UltiMaker Cura"
  5671. #: resources/qml/WelcomePages/WelcomeContent.qml:67
  5672. msgctxt "@text"
  5673. msgid "Please follow these steps to set up UltiMaker Cura. This will only take a few moments."
  5674. msgstr ""
  5675. "Befolgen Sie bitte diese Schritte für das Einrichten von\n"
  5676. "UltiMaker Cura. Dies dauert nur wenige Sekunden."
  5677. #: resources/qml/WelcomePages/WelcomeContent.qml:82
  5678. msgctxt "@button"
  5679. msgid "Get started"
  5680. msgstr "Erste Schritte"
  5681. #: resources/qml/WelcomePages/WhatsNewContent.qml:28
  5682. msgctxt "@label"
  5683. msgid "What's New"
  5684. msgstr "Neuheiten"
  5685. #: resources/qml/Widgets/ComboBox.qml:18
  5686. msgctxt "@label"
  5687. msgid "No items to select from"
  5688. msgstr "Keine auswählbaren Einträge"
  5689. #~ msgctxt "@label"
  5690. #~ msgid "Add cloud printer"
  5691. #~ msgstr "Ein Cloud-Drucker hinzufügen"
  5692. #~ msgctxt "@label"
  5693. #~ msgid "Aluminum"
  5694. #~ msgstr "Aluminium"
  5695. #~ msgctxt "@label"
  5696. #~ msgid "Change build plate to %1 (This cannot be overridden)."
  5697. #~ msgstr "Druckplatte auf %1 wechseln (Dies kann nicht übergangen werden)."
  5698. #~ msgctxt "@label"
  5699. #~ msgid "Glass"
  5700. #~ msgstr "Glas"
  5701. #~ msgctxt "@label"
  5702. #~ msgid "Gradual infill"
  5703. #~ msgstr "Stufenweise Füllung"
  5704. #~ msgctxt "@label"
  5705. #~ msgid "Gradual infill will gradually increase the amount of infill towards the top."
  5706. #~ msgstr "Die graduelle Füllung steigert die Menge der Füllung nach oben hin schrittweise."
  5707. #~ msgctxt "@info:tooltip"
  5708. #~ msgid "How should the conflict in the machine be resolved?"
  5709. #~ msgstr "Wie soll der Konflikt im Gerät gelöst werden?"
  5710. #~ msgctxt "@info:tooltip"
  5711. #~ msgid "How should the conflict in the material be resolved?"
  5712. #~ msgstr "Wie soll der Konflikt im Material gelöst werden?"
  5713. #~ msgctxt "@info:tooltip"
  5714. #~ msgid "How should the conflict in the profile be resolved?"
  5715. #~ msgstr "Wie soll der Konflikt im Profil gelöst werden?"
  5716. #~ msgctxt "@info"
  5717. #~ msgid "Some settings were changed."
  5718. #~ msgstr "Einige Einstellungen wurden geändert."
  5719. #~ msgctxt "@action:label"
  5720. #~ msgid "Visible settings:"
  5721. #~ msgstr "Sichtbare Einstellungen:"