cura.po 237 KB

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