cura.po 238 KB

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