cura.po 271 KB

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