cura.po 353 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446
  1. # Cura
  2. # Copyright (C) 2021 Ultimaker B.V.
  3. # This file is distributed under the same license as the Cura package.
  4. #
  5. msgid ""
  6. msgstr ""
  7. "Project-Id-Version: Cura 4.9\n"
  8. "Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
  9. "POT-Creation-Date: 2021-04-02 16:10+0200\n"
  10. "PO-Revision-Date: 2020-11-09 14:27+0100\n"
  11. "Last-Translator: Lionbridge <info@lionbridge.com>\n"
  12. "Language-Team: German <info@lionbridge.com>, German <info@bothof.nl>\n"
  13. "Language: de_DE\n"
  14. "MIME-Version: 1.0\n"
  15. "Content-Type: text/plain; charset=UTF-8\n"
  16. "Content-Transfer-Encoding: 8bit\n"
  17. "Plural-Forms: nplurals=2; plural=(n != 1);\n"
  18. "X-Generator: Poedit 2.4.1\n"
  19. #: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:523
  20. msgctxt "@info:progress"
  21. msgid "Loading machines..."
  22. msgstr "Geräte werden geladen..."
  23. #: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:530
  24. msgctxt "@info:progress"
  25. msgid "Setting up preferences..."
  26. msgstr "Erstellungen werden eingerichtet ..."
  27. #: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:668
  28. msgctxt "@info:progress"
  29. msgid "Initializing Active Machine..."
  30. msgstr "Aktives Gerät wird initialisiert ..."
  31. #: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:799
  32. msgctxt "@info:progress"
  33. msgid "Initializing machine manager..."
  34. msgstr "Gerätemanager wird initialisiert ..."
  35. #: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:813
  36. msgctxt "@info:progress"
  37. msgid "Initializing build volume..."
  38. msgstr "Bauraum wird initialisiert ..."
  39. #: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:884
  40. msgctxt "@info:progress"
  41. msgid "Setting up scene..."
  42. msgstr "Die Szene wird eingerichtet..."
  43. #: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:920
  44. msgctxt "@info:progress"
  45. msgid "Loading interface..."
  46. msgstr "Die Benutzeroberfläche wird geladen..."
  47. #: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:925
  48. msgctxt "@info:progress"
  49. msgid "Initializing engine..."
  50. msgstr "Funktion wird initialisiert ..."
  51. #: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:1242
  52. #, python-format
  53. msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm."
  54. msgid "%(width).1f x %(depth).1f x %(height).1f mm"
  55. msgstr "%(width).1f x %(depth).1f x %(height).1f mm"
  56. #: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:1799
  57. #, python-brace-format
  58. msgctxt "@info:status"
  59. msgid "Only one G-code file can be loaded at a time. Skipped importing {0}"
  60. msgstr "Es kann nur jeweils ein G-Code gleichzeitig geladen werden. Wichtige {0} werden übersprungen."
  61. #: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:1800
  62. #: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationService.py:188
  63. #: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationService.py:242
  64. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153
  65. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165
  66. msgctxt "@info:title"
  67. msgid "Warning"
  68. msgstr "Warnhinweis"
  69. #: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:1809
  70. #, python-brace-format
  71. msgctxt "@info:status"
  72. msgid "Can't open any other file if G-code is loading. Skipped importing {0}"
  73. msgstr "Wenn G-Code geladen wird, kann keine weitere Datei geöffnet werden. Wichtige {0} werden übersprungen."
  74. #: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:1810
  75. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:146
  76. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:153
  77. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139
  78. msgctxt "@info:title"
  79. msgid "Error"
  80. msgstr "Fehler"
  81. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/GlobalStacksModel.py:76
  82. #, python-brace-format
  83. msgctxt "@label {0} is the name of a printer that's about to be deleted."
  84. msgid "Are you sure you wish to remove {0}? This cannot be undone!"
  85. msgstr "Möchten Sie {0} wirklich entfernen? Der Vorgang kann nicht rückgängig gemacht werden!"
  86. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/MaterialManagementModel.py:226
  87. msgctxt "@label"
  88. msgid "Custom Material"
  89. msgstr "Benutzerdefiniertes Material"
  90. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/MaterialManagementModel.py:227
  91. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:205
  92. msgctxt "@label"
  93. msgid "Custom"
  94. msgstr "Benutzerdefiniert"
  95. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/QualityManagementModel.py:338
  96. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:11
  97. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:42
  98. msgctxt "@label"
  99. msgid "Default"
  100. msgstr "Default"
  101. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/QualityManagementModel.py:361
  102. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:110
  103. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83
  104. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/MachineManager.py:1612
  105. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130
  106. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171
  107. msgctxt "@label"
  108. msgid "Unknown"
  109. msgstr "Unbekannt"
  110. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/QualityManagementModel.py:383
  111. msgctxt "@label"
  112. msgid "Custom profiles"
  113. msgstr "Benutzerdefinierte Profile"
  114. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/QualityManagementModel.py:418
  115. #, python-brace-format
  116. msgctxt "@item:inlistbox"
  117. msgid "All Supported Types ({0})"
  118. msgstr "Alle unterstützten Typen ({0})"
  119. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/QualityManagementModel.py:419
  120. msgctxt "@item:inlistbox"
  121. msgid "All Files (*)"
  122. msgstr "Alle Dateien (*)"
  123. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:14
  124. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:45
  125. msgctxt "@label"
  126. msgid "Visual"
  127. msgstr "Visuell"
  128. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:15
  129. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:46
  130. msgctxt "@text"
  131. msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality."
  132. 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."
  133. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:18
  134. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:49
  135. msgctxt "@label"
  136. msgid "Engineering"
  137. msgstr "Engineering"
  138. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:19
  139. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:50
  140. msgctxt "@text"
  141. msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances."
  142. msgstr "Das Engineering-Profil ist für den Druck von Funktionsprototypen und Endnutzungsteilen gedacht, bei denen Präzision gefragt ist und engere Toleranzen gelten."
  143. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:22
  144. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:53
  145. msgctxt "@label"
  146. msgid "Draft"
  147. msgstr "Entwurf"
  148. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:23
  149. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:54
  150. msgctxt "@text"
  151. msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction."
  152. msgstr "Das Entwurfsprofil wurde für erste Prototypen und die Konzeptvalidierung entwickelt, um einen deutlich schnelleren Druck zu ermöglichen."
  153. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113
  154. msgctxt "@label"
  155. msgid "The printer(s) below cannot be connected because they are part of a group"
  156. msgstr "Der/die nachfolgende(n) Drucker kann/können nicht verbunden werden, weil er/sie Teil einer Gruppe ist/sind"
  157. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115
  158. msgctxt "@label"
  159. msgid "Available networked printers"
  160. msgstr "Verfügbare vernetzte Drucker"
  161. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/ExtrudersModel.py:211
  162. msgctxt "@menuitem"
  163. msgid "Not overridden"
  164. msgstr "Nicht überschrieben"
  165. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:107
  166. msgctxt "@title:window"
  167. msgid "Cura can't start"
  168. msgstr "Cura kann nicht starten"
  169. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:113
  170. msgctxt "@label crash message"
  171. msgid ""
  172. "<p><b>Oops, Ultimaker Cura has encountered something that doesn't seem right.</p></b>\n"
  173. " <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"
  174. " <p>Backups can be found in the configuration folder.</p>\n"
  175. " <p>Please send us this Crash Report to fix the problem.</p>\n"
  176. " "
  177. msgstr ""
  178. "<p><b>Hoppla, bei Ultimaker Cura ist ein Problem aufgetreten.</p></b>\n"
  179. " <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"
  180. " <p>Backups sind im Konfigurationsordner abgelegt.</p>\n"
  181. " <p>Senden Sie uns diesen Absturzbericht bitte, um das Problem zu beheben.</p>\n"
  182. " "
  183. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:122
  184. msgctxt "@action:button"
  185. msgid "Send crash report to Ultimaker"
  186. msgstr "Absturzbericht an Ultimaker senden"
  187. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:125
  188. msgctxt "@action:button"
  189. msgid "Show detailed crash report"
  190. msgstr "Detaillierten Absturzbericht anzeigen"
  191. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:129
  192. msgctxt "@action:button"
  193. msgid "Show configuration folder"
  194. msgstr "Konfigurationsordner anzeigen"
  195. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:140
  196. msgctxt "@action:button"
  197. msgid "Backup and Reset Configuration"
  198. msgstr "Backup und Reset der Konfiguration"
  199. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:171
  200. msgctxt "@title:window"
  201. msgid "Crash Report"
  202. msgstr "Crash-Bericht"
  203. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:190
  204. msgctxt "@label crash message"
  205. msgid ""
  206. "<p><b>A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem</p></b>\n"
  207. " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  208. " "
  209. msgstr ""
  210. "<p><b>Ein schwerer Fehler ist in Cura aufgetreten. Senden Sie uns diesen Absturzbericht, um das Problem zu beheben</p></b>\n"
  211. " <p>Verwenden Sie bitte die Schaltfläche „Bericht senden“, um den Fehlerbericht automatisch an unsere Server zu senden</p>\n"
  212. " "
  213. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:198
  214. msgctxt "@title:groupbox"
  215. msgid "System information"
  216. msgstr "Systeminformationen"
  217. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:207
  218. msgctxt "@label unknown version of Cura"
  219. msgid "Unknown"
  220. msgstr "Unbekannt"
  221. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:228
  222. msgctxt "@label Cura version number"
  223. msgid "Cura version"
  224. msgstr "Cura-Version"
  225. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:229
  226. msgctxt "@label"
  227. msgid "Cura language"
  228. msgstr "Cura-Sprache"
  229. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:230
  230. msgctxt "@label"
  231. msgid "OS language"
  232. msgstr "Sprache des Betriebssystems"
  233. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:231
  234. msgctxt "@label Type of platform"
  235. msgid "Platform"
  236. msgstr "Plattform"
  237. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:232
  238. msgctxt "@label"
  239. msgid "Qt version"
  240. msgstr "Qt Version"
  241. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:233
  242. msgctxt "@label"
  243. msgid "PyQt version"
  244. msgstr "PyQt Version"
  245. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:234
  246. msgctxt "@label OpenGL version"
  247. msgid "OpenGL"
  248. msgstr "OpenGL"
  249. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:264
  250. msgctxt "@label"
  251. msgid "Not yet initialized<br/>"
  252. msgstr "Noch nicht initialisiert<br/>"
  253. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:267
  254. #, python-brace-format
  255. msgctxt "@label OpenGL version"
  256. msgid "<li>OpenGL Version: {version}</li>"
  257. msgstr "<li>OpenGL-Version: {version}</li>"
  258. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:268
  259. #, python-brace-format
  260. msgctxt "@label OpenGL vendor"
  261. msgid "<li>OpenGL Vendor: {vendor}</li>"
  262. msgstr "<li>OpenGL-Anbieter: {vendor}</li>"
  263. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:269
  264. #, python-brace-format
  265. msgctxt "@label OpenGL renderer"
  266. msgid "<li>OpenGL Renderer: {renderer}</li>"
  267. msgstr "<li>OpenGL-Renderer: {renderer}</li>"
  268. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:303
  269. msgctxt "@title:groupbox"
  270. msgid "Error traceback"
  271. msgstr "Fehler-Rückverfolgung"
  272. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:389
  273. msgctxt "@title:groupbox"
  274. msgid "Logs"
  275. msgstr "Protokolle"
  276. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:417
  277. msgctxt "@action:button"
  278. msgid "Send report"
  279. msgstr "Bericht senden"
  280. #: /mnt/projects/ultimaker/cura/Cura/cura/API/Account.py:179
  281. msgctxt "@info:title"
  282. msgid "Login failed"
  283. msgstr "Login fehlgeschlagen"
  284. #: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationHelpers.py:92
  285. msgctxt "@message"
  286. msgid "Could not read response."
  287. msgstr "Antwort konnte nicht gelesen werden."
  288. #: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationService.py:187
  289. msgctxt "@info"
  290. msgid "Unable to start a new sign in process. Check if another sign in attempt is still active."
  291. msgstr "Es kann kein neuer Anmeldevorgang gestartet werden. Bitte überprüfen Sie, ob noch ein weiterer Anmeldevorgang aktiv ist."
  292. #: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationService.py:242
  293. msgctxt "@info"
  294. msgid "Unable to reach the Ultimaker account server."
  295. msgstr "Der Ultimaker-Konto-Server konnte nicht erreicht werden."
  296. #: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationRequestHandler.py:74
  297. msgctxt "@message"
  298. msgid "The provided state is not correct."
  299. msgstr "Angegebener Status ist falsch."
  300. #: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationRequestHandler.py:85
  301. msgctxt "@message"
  302. msgid "Please give the required permissions when authorizing this application."
  303. msgstr "Erteilen Sie bitte die erforderlichen Freigaben bei der Autorisierung dieser Anwendung."
  304. #: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationRequestHandler.py:92
  305. msgctxt "@message"
  306. msgid "Something unexpected happened when trying to log in, please try again."
  307. msgstr "Bei dem Versuch, sich anzumelden, trat ein unerwarteter Fehler auf. Bitte erneut versuchen."
  308. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/ContainerManager.py:205
  309. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:132
  310. msgctxt "@title:window"
  311. msgid "File Already Exists"
  312. msgstr "Datei bereits vorhanden"
  313. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/ContainerManager.py:206
  314. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:133
  315. #, python-brace-format
  316. msgctxt "@label Don't translate the XML tag <filename>!"
  317. msgid "The file <filename>{0}</filename> already exists. Are you sure you want to overwrite it?"
  318. msgstr "Die Datei <filename>{0}</filename> ist bereits vorhanden. Soll die Datei wirklich überschrieben werden?"
  319. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/ContainerManager.py:456
  320. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/ContainerManager.py:459
  321. msgctxt "@info:status"
  322. msgid "Invalid file URL:"
  323. msgstr "Ungültige Datei-URL:"
  324. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/MachineManager.py:713
  325. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:216
  326. msgctxt "@label"
  327. msgid "Nozzle"
  328. msgstr "Düse"
  329. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/MachineManager.py:856
  330. msgctxt "@info:message Followed by a list of settings."
  331. msgid "Settings have been changed to match the current availability of extruders:"
  332. msgstr "Die Einstellungen wurden an die aktuell verfügbaren Extruder angepasst:"
  333. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/MachineManager.py:858
  334. msgctxt "@info:title"
  335. msgid "Settings updated"
  336. msgstr "Einstellungen aktualisiert"
  337. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/MachineManager.py:1478
  338. msgctxt "@info:title"
  339. msgid "Extruder(s) Disabled"
  340. msgstr "Extruder deaktiviert"
  341. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:144
  342. #, python-brace-format
  343. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  344. msgid "Failed to export profile to <filename>{0}</filename>: <message>{1}</message>"
  345. msgstr "Export des Profils nach <filename>{0}</filename> fehlgeschlagen: <message>{1}</message>"
  346. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:151
  347. #, python-brace-format
  348. msgctxt "@info:status Don't translate the XML tag <filename>!"
  349. msgid "Failed to export profile to <filename>{0}</filename>: Writer plugin reported failure."
  350. msgstr "Export des Profils nach <filename>{0}</filename> fehlgeschlagen: Fehlermeldung von Writer-Plugin."
  351. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:156
  352. #, python-brace-format
  353. msgctxt "@info:status Don't translate the XML tag <filename>!"
  354. msgid "Exported profile to <filename>{0}</filename>"
  355. msgstr "Profil wurde nach <filename>{0}</filename> exportiert"
  356. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:157
  357. msgctxt "@info:title"
  358. msgid "Export succeeded"
  359. msgstr "Export erfolgreich ausgeführt"
  360. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:188
  361. #, python-brace-format
  362. msgctxt "@info:status Don't translate the XML tags <filename>!"
  363. msgid "Failed to import profile from <filename>{0}</filename>: {1}"
  364. msgstr "Import des Profils aus Datei <filename>{0}</filename>: {1} fehlgeschlagen"
  365. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:192
  366. #, python-brace-format
  367. msgctxt "@info:status Don't translate the XML tags <filename>!"
  368. msgid "Can't import profile from <filename>{0}</filename> before a printer is added."
  369. msgstr "Import des Profils aus Datei <filename>{0}</filename> kann erst durchgeführt werden, wenn ein Drucker hinzugefügt wurde."
  370. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:207
  371. #, python-brace-format
  372. msgctxt "@info:status Don't translate the XML tags <filename>!"
  373. msgid "No custom profile to import in file <filename>{0}</filename>"
  374. msgstr "Kein benutzerdefiniertes Profil für das Importieren in Datei <filename>{0}</filename>"
  375. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:211
  376. #, python-brace-format
  377. msgctxt "@info:status Don't translate the XML tags <filename>!"
  378. msgid "Failed to import profile from <filename>{0}</filename>:"
  379. msgstr "Import des Profils aus Datei <filename>{0}</filename> fehlgeschlagen:"
  380. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:235
  381. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:245
  382. #, python-brace-format
  383. msgctxt "@info:status Don't translate the XML tags <filename>!"
  384. msgid "This profile <filename>{0}</filename> contains incorrect data, could not import it."
  385. msgstr "Dieses Profil <filename>{0}</filename> enthält falsche Daten, Importieren nicht möglich."
  386. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:338
  387. #, python-brace-format
  388. msgctxt "@info:status Don't translate the XML tag <filename>!"
  389. msgid "Failed to import profile from <filename>{0}</filename>:"
  390. msgstr "Import des Profils aus Datei <filename>{0}</filename> fehlgeschlagen:"
  391. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:342
  392. #, python-brace-format
  393. msgctxt "@info:status"
  394. msgid "Successfully imported profile {0}."
  395. msgstr "Profil {0} erfolgreich importiert."
  396. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:349
  397. #, python-brace-format
  398. msgctxt "@info:status"
  399. msgid "File {0} does not contain any valid profile."
  400. msgstr "Datei {0} enthält kein gültiges Profil."
  401. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:352
  402. #, python-brace-format
  403. msgctxt "@info:status"
  404. msgid "Profile {0} has an unknown file type or is corrupted."
  405. msgstr "Profil {0} hat einen unbekannten Dateityp oder ist beschädigt."
  406. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:426
  407. msgctxt "@label"
  408. msgid "Custom profile"
  409. msgstr "Benutzerdefiniertes Profil"
  410. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:442
  411. msgctxt "@info:status"
  412. msgid "Profile is missing a quality type."
  413. msgstr "Für das Profil fehlt eine Qualitätsangabe."
  414. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:446
  415. msgctxt "@info:status"
  416. msgid "There is no active printer yet."
  417. msgstr ""
  418. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:452
  419. msgctxt "@info:status"
  420. msgid "Unable to add the profile."
  421. msgstr "Das Profil kann nicht hinzugefügt werden."
  422. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:466
  423. #, python-brace-format
  424. msgctxt "@info:status"
  425. msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'."
  426. msgstr "Der Qualitätstyp „{0}“ ist nicht mit der aktuell aktiven Maschinendefinition „{1}“ kompatibel."
  427. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:471
  428. #, python-brace-format
  429. msgctxt "@info:status"
  430. 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."
  431. 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."
  432. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/cura_empty_instance_containers.py:36
  433. msgctxt "@info:not supported profile"
  434. msgid "Not supported"
  435. msgstr "Nicht unterstützt"
  436. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/cura_empty_instance_containers.py:55
  437. msgctxt "@info:No intent profile selected"
  438. msgid "Default"
  439. msgstr "Default"
  440. #: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67
  441. #: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsJob.py:24
  442. msgctxt "@info:status"
  443. msgid "Finding new location for objects"
  444. msgstr "Neue Position für Objekte finden"
  445. #: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71
  446. #: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsJob.py:28
  447. msgctxt "@info:title"
  448. msgid "Finding Location"
  449. msgstr "Position finden"
  450. #: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150
  451. #: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsJob.py:41
  452. #: /mnt/projects/ultimaker/cura/Cura/cura/MultiplyObjectsJob.py:76
  453. msgctxt "@info:status"
  454. msgid "Unable to find a location within the build volume for all objects"
  455. msgstr "Innerhalb der Druckabmessung für alle Objekte konnte keine Position gefunden werden"
  456. #: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151
  457. #: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsJob.py:42
  458. msgctxt "@info:title"
  459. msgid "Can't Find Location"
  460. msgstr "Kann Position nicht finden"
  461. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/ObjectsModel.py:69
  462. #, python-brace-format
  463. msgctxt "@label"
  464. msgid "Group #{group_nr}"
  465. msgstr "Gruppe #{group_nr}"
  466. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/WhatsNewPagesModel.py:55
  467. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/WelcomePagesModel.py:268
  468. msgctxt "@action:button"
  469. msgid "Skip"
  470. msgstr ""
  471. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/WhatsNewPagesModel.py:60
  472. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185
  473. #: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128
  474. #: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:482
  475. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:174
  476. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/MachinesPage.qml:127
  477. msgctxt "@action:button"
  478. msgid "Close"
  479. msgstr "Schließen"
  480. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/WelcomePagesModel.py:56
  481. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/WelcomePagesModel.py:259
  482. msgctxt "@action:button"
  483. msgid "Next"
  484. msgstr "Weiter"
  485. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/WelcomePagesModel.py:272
  486. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/AddPrinterPagesModel.py:26
  487. msgctxt "@action:button"
  488. msgid "Finish"
  489. msgstr "Beenden"
  490. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:82
  491. msgctxt "@tooltip"
  492. msgid "Outer Wall"
  493. msgstr "Außenwand"
  494. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:83
  495. msgctxt "@tooltip"
  496. msgid "Inner Walls"
  497. msgstr "Innenwände"
  498. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:84
  499. msgctxt "@tooltip"
  500. msgid "Skin"
  501. msgstr "Außenhaut"
  502. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:85
  503. msgctxt "@tooltip"
  504. msgid "Infill"
  505. msgstr "Füllung"
  506. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:86
  507. msgctxt "@tooltip"
  508. msgid "Support Infill"
  509. msgstr "Stützstruktur-Füllung"
  510. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:87
  511. msgctxt "@tooltip"
  512. msgid "Support Interface"
  513. msgstr "Stützstruktur-Schnittstelle"
  514. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:88
  515. msgctxt "@tooltip"
  516. msgid "Support"
  517. msgstr "Stützstruktur"
  518. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:89
  519. msgctxt "@tooltip"
  520. msgid "Skirt"
  521. msgstr "Skirt"
  522. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:90
  523. msgctxt "@tooltip"
  524. msgid "Prime Tower"
  525. msgstr "Einzugsturm"
  526. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:91
  527. msgctxt "@tooltip"
  528. msgid "Travel"
  529. msgstr "Bewegungen"
  530. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:92
  531. msgctxt "@tooltip"
  532. msgid "Retractions"
  533. msgstr "Einzüge"
  534. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:93
  535. msgctxt "@tooltip"
  536. msgid "Other"
  537. msgstr "Sonstige"
  538. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/AddPrinterPagesModel.py:17
  539. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67
  540. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/MachinesPage.qml:48
  541. msgctxt "@action:button"
  542. msgid "Add"
  543. msgstr "Hinzufügen"
  544. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/AddPrinterPagesModel.py:33
  545. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81
  546. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19
  547. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58
  548. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352
  549. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:42
  550. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:445
  551. #: /mnt/projects/ultimaker/cura/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150
  552. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:234
  553. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82
  554. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:292
  555. msgctxt "@action:button"
  556. msgid "Cancel"
  557. msgstr "Abbrechen"
  558. #: /mnt/projects/ultimaker/cura/Cura/cura/BuildVolume.py:98
  559. msgctxt "@info:status"
  560. 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."
  561. 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."
  562. #: /mnt/projects/ultimaker/cura/Cura/cura/BuildVolume.py:100
  563. msgctxt "@info:title"
  564. msgid "Build Volume"
  565. msgstr "Produktabmessungen"
  566. #: /mnt/projects/ultimaker/cura/Cura/cura/Backups/Backup.py:113
  567. msgctxt "@info:backup_failed"
  568. msgid "Could not create archive from user data directory: {}"
  569. msgstr "Konnte kein Archiv von Benutzer-Datenverzeichnis {} erstellen"
  570. #: /mnt/projects/ultimaker/cura/Cura/cura/Backups/Backup.py:119
  571. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:107
  572. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:113
  573. msgctxt "@info:title"
  574. msgid "Backup"
  575. msgstr "Backup"
  576. #: /mnt/projects/ultimaker/cura/Cura/cura/Backups/Backup.py:132
  577. msgctxt "@info:backup_failed"
  578. msgid "Tried to restore a Cura backup without having proper data or meta data."
  579. msgstr "Versucht, ein Cura-Backup-Verzeichnis ohne entsprechende Daten oder Metadaten wiederherzustellen."
  580. #: /mnt/projects/ultimaker/cura/Cura/cura/Backups/Backup.py:143
  581. msgctxt "@info:backup_failed"
  582. msgid "Tried to restore a Cura backup that is higher than the current version."
  583. msgstr "Versucht, ein Cura-Backup wiederherzustellen, das eine höhere Version als die aktuelle hat."
  584. #: /mnt/projects/ultimaker/cura/Cura/cura/MultiplyObjectsJob.py:26
  585. msgctxt "@info:status"
  586. msgid "Multiplying and placing objects"
  587. msgstr "Objekte vervielfältigen und platzieren"
  588. #: /mnt/projects/ultimaker/cura/Cura/cura/MultiplyObjectsJob.py:28
  589. msgctxt "@info:title"
  590. msgid "Placing Objects"
  591. msgstr "Objekte platzieren"
  592. #: /mnt/projects/ultimaker/cura/Cura/cura/MultiplyObjectsJob.py:77
  593. msgctxt "@info:title"
  594. msgid "Placing Object"
  595. msgstr "Objekt-Platzierung"
  596. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23
  597. msgctxt "@action:button Preceded by 'Ready to'."
  598. msgid "Save to Removable Drive"
  599. msgstr "Speichern auf Wechseldatenträger"
  600. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24
  601. #, python-brace-format
  602. msgctxt "@item:inlistbox"
  603. msgid "Save to Removable Drive {0}"
  604. msgstr "Auf Wechseldatenträger speichern {0}"
  605. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66
  606. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118
  607. msgctxt "@info:status"
  608. msgid "There are no file formats available to write with!"
  609. msgstr "Es sind keine Dateiformate zum Schreiben vorhanden!"
  610. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96
  611. #, python-brace-format
  612. msgctxt "@info:progress Don't translate the XML tags <filename>!"
  613. msgid "Saving to Removable Drive <filename>{0}</filename>"
  614. msgstr "Wird auf Wechseldatenträger gespeichert <filename>{0}</filename>"
  615. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96
  616. msgctxt "@info:title"
  617. msgid "Saving"
  618. msgstr "Wird gespeichert"
  619. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:106
  620. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109
  621. #, python-brace-format
  622. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  623. msgid "Could not save to <filename>{0}</filename>: <message>{1}</message>"
  624. msgstr "Konnte nicht als <filename>{0}</filename> gespeichert werden: <message>{1}</message>"
  625. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:125
  626. #, python-brace-format
  627. msgctxt "@info:status Don't translate the tag {device}!"
  628. msgid "Could not find a file name when trying to write to {device}."
  629. msgstr "Bei dem Versuch, auf {device} zu schreiben, wurde ein Dateiname nicht gefunden."
  630. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:138
  631. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153
  632. #, python-brace-format
  633. msgctxt "@info:status"
  634. msgid "Could not save to removable drive {0}: {1}"
  635. msgstr "Konnte nicht auf dem Wechseldatenträger gespeichert werden {0}: {1}"
  636. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147
  637. #, python-brace-format
  638. msgctxt "@info:status"
  639. msgid "Saved to Removable Drive {0} as {1}"
  640. msgstr "Auf Wechseldatenträger {0} gespeichert als {1}"
  641. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147
  642. msgctxt "@info:title"
  643. msgid "File Saved"
  644. msgstr "Datei wurde gespeichert"
  645. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148
  646. msgctxt "@action:button"
  647. msgid "Eject"
  648. msgstr "Auswerfen"
  649. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148
  650. #, python-brace-format
  651. msgctxt "@action"
  652. msgid "Eject removable device {0}"
  653. msgstr "Wechseldatenträger auswerfen {0}"
  654. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163
  655. #, python-brace-format
  656. msgctxt "@info:status"
  657. msgid "Ejected {0}. You can now safely remove the drive."
  658. msgstr "Ausgeworfen {0}. Sie können den Datenträger jetzt sicher entfernen."
  659. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163
  660. msgctxt "@info:title"
  661. msgid "Safely Remove Hardware"
  662. msgstr "Hardware sicher entfernen"
  663. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165
  664. #, python-brace-format
  665. msgctxt "@info:status"
  666. msgid "Failed to eject {0}. Another program may be using the drive."
  667. msgstr "Auswurf fehlgeschlagen {0}. Möglicherweise wird das Laufwerk von einem anderen Programm verwendet."
  668. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76
  669. msgctxt "@item:intext"
  670. msgid "Removable Drive"
  671. msgstr "Wechseldatenträger"
  672. #: /mnt/projects/ultimaker/cura/Cura/plugins/AMFReader/__init__.py:15
  673. msgctxt "@item:inlistbox"
  674. msgid "AMF File"
  675. msgstr "AMF-Datei"
  676. #: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeProfileReader/__init__.py:14
  677. #: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeReader/__init__.py:14
  678. #: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeWriter/__init__.py:16
  679. msgctxt "@item:inlistbox"
  680. msgid "G-code File"
  681. msgstr "G-Code-Datei"
  682. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27
  683. msgctxt "@action"
  684. msgid "Update Firmware"
  685. msgstr "Firmware aktualisieren"
  686. #: /mnt/projects/ultimaker/cura/Cura/plugins/X3DReader/__init__.py:13
  687. msgctxt "@item:inlistbox"
  688. msgid "X3D File"
  689. msgstr "X3D-Datei"
  690. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9
  691. msgctxt "@button"
  692. msgid "Decline"
  693. msgstr "Ablehnen"
  694. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10
  695. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56
  696. msgctxt "@button"
  697. msgid "Agree"
  698. msgstr "Stimme zu"
  699. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74
  700. msgctxt "@title:window"
  701. msgid "Plugin License Agreement"
  702. msgstr "Plugin für Lizenzvereinbarung"
  703. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:38
  704. msgctxt "@button"
  705. msgid "Decline and remove from account"
  706. msgstr "Ablehnen und vom Konto entfernen"
  707. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79
  708. msgctxt "@info:generic"
  709. msgid "{} plugins failed to download"
  710. msgstr "{} Plugins konnten nicht heruntergeladen werden"
  711. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:89
  712. msgctxt "@info:generic"
  713. msgid "Syncing..."
  714. msgstr "Synchronisierung läuft ..."
  715. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:93
  716. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143
  717. msgctxt "@info:title"
  718. msgid "Changes detected from your Ultimaker account"
  719. msgstr "Von Ihrem Ultimaker-Konto erkannte Änderungen"
  720. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:20
  721. msgctxt "@info:generic"
  722. msgid "You need to quit and restart {} before changes have effect."
  723. msgstr "Sie müssen das Programm beenden und neu starten {}, bevor Änderungen wirksam werden."
  724. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142
  725. msgctxt "@info:generic"
  726. msgid "Do you want to sync material and software packages with your account?"
  727. msgstr "Möchten Sie Material- und Softwarepakete mit Ihrem Konto synchronisieren?"
  728. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145
  729. msgctxt "@action:button"
  730. msgid "Sync"
  731. msgstr "Synchronisieren"
  732. #: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/__init__.py:14
  733. msgctxt "@label"
  734. msgid "Per Model Settings"
  735. msgstr "Einstellungen pro Objekt"
  736. #: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/__init__.py:15
  737. msgctxt "@info:tooltip"
  738. msgid "Configure Per Model Settings"
  739. msgstr "Pro Objekteinstellungen konfigurieren"
  740. #: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35
  741. msgctxt "@item:inmenu"
  742. msgid "Post Processing"
  743. msgstr "Nachbearbeitung"
  744. #: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36
  745. msgctxt "@item:inmenu"
  746. msgid "Modify G-Code"
  747. msgstr "G-Code ändern"
  748. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:382
  749. msgctxt "@info:status"
  750. msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration."
  751. msgstr "Slicing mit dem aktuellen Material nicht möglich, da es mit der gewählten Maschine oder Konfiguration nicht kompatibel ist."
  752. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:382
  753. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:413
  754. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:437
  755. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:446
  756. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455
  757. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467
  758. msgctxt "@info:title"
  759. msgid "Unable to slice"
  760. msgstr "Slicing nicht möglich"
  761. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:412
  762. #, python-brace-format
  763. msgctxt "@info:status"
  764. msgid "Unable to slice with the current settings. The following settings have errors: {0}"
  765. msgstr "Die aktuellen Einstellungen lassen kein Schneiden (Slicing) zu. Die folgenden Einstellungen sind fehlerhaft:{0}"
  766. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:436
  767. #, python-brace-format
  768. msgctxt "@info:status"
  769. msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}"
  770. 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}"
  771. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:445
  772. msgctxt "@info:status"
  773. msgid "Unable to slice because the prime tower or prime position(s) are invalid."
  774. msgstr "Schneiden (Slicing) ist nicht möglich, da der Einzugsturm oder die Einzugsposition(en) ungültig ist (sind)."
  775. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:454
  776. #, python-format
  777. msgctxt "@info:status"
  778. msgid "Unable to slice because there are objects associated with disabled Extruder %s."
  779. msgstr "Schneiden (Slicing) ist nicht möglich, da Objekte vorhanden sind, die mit dem deaktivierten Extruder %s verbunden sind."
  780. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:463
  781. msgctxt "@info:status"
  782. msgid ""
  783. "Please review settings and check if your models:\n"
  784. "- Fit within the build volume\n"
  785. "- Are assigned to an enabled extruder\n"
  786. "- Are not all set as modifier meshes"
  787. msgstr ""
  788. "Bitte überprüfen Sie die Einstellungen und prüfen Sie, ob Ihre Modelle:\n"
  789. "- Mit der Druckraumgröße kompatibel sind\n"
  790. "- Einem aktiven Extruder zugewiesen sind\n"
  791. "- Nicht alle als Modifier Meshes eingerichtet sind"
  792. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52
  793. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260
  794. msgctxt "@info:status"
  795. msgid "Processing Layers"
  796. msgstr "Schichten werden verarbeitet"
  797. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260
  798. msgctxt "@info:title"
  799. msgid "Information"
  800. msgstr "Informationen"
  801. #: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42
  802. msgctxt "@item:inmenu"
  803. msgid "USB printing"
  804. msgstr "USB-Drucken"
  805. #: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43
  806. msgctxt "@action:button Preceded by 'Ready to'."
  807. msgid "Print via USB"
  808. msgstr "Über USB drucken"
  809. #: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44
  810. msgctxt "@info:tooltip"
  811. msgid "Print via USB"
  812. msgstr "Über USB drucken"
  813. #: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80
  814. msgctxt "@info:status"
  815. msgid "Connected via USB"
  816. msgstr "Über USB verbunden"
  817. #: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110
  818. msgctxt "@label"
  819. msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?"
  820. msgstr "Ein USB-Druck wird ausgeführt. Das Schließen von Cura beendet diesen Druck. Sind Sie sicher?"
  821. #: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134
  822. msgctxt "@message"
  823. msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed."
  824. msgstr "Druck wird bearbeitet. Cura kann keinen weiteren Druck via USB starten, bis der vorherige Druck abgeschlossen wurde."
  825. #: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134
  826. msgctxt "@message"
  827. msgid "Print in Progress"
  828. msgstr "Druck in Bearbeitung"
  829. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraProfileWriter/__init__.py:14
  830. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraProfileReader/__init__.py:14
  831. msgctxt "@item:inlistbox"
  832. msgid "Cura Profile"
  833. msgstr "Cura-Profil"
  834. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28
  835. msgctxt "@action"
  836. msgid "Connect via Network"
  837. msgstr "Anschluss über Netzwerk"
  838. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:227
  839. msgctxt "info:status"
  840. msgid "New printer detected from your Ultimaker account"
  841. msgid_plural "New printers detected from your Ultimaker account"
  842. msgstr[0] "Ihr Ultimaker-Konto hat einen neuen Drucker erkannt"
  843. msgstr[1] "Ihr Ultimaker-Konto hat neue Drucker erkannt."
  844. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:238
  845. #, python-brace-format
  846. msgctxt "info:status Filled in with printer name and printer model."
  847. msgid "Adding printer {name} ({model}) from your account"
  848. msgstr "Drucker {name} ({model}) aus Ihrem Konto wird hinzugefügt"
  849. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:255
  850. #, python-brace-format
  851. msgctxt "info:{0} gets replaced by a number of printers"
  852. msgid "... and {0} other"
  853. msgid_plural "... and {0} others"
  854. msgstr[0] "... und {0} weiterer"
  855. msgstr[1] "... und {0} weitere"
  856. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:260
  857. msgctxt "info:status"
  858. msgid "Printers added from Digital Factory:"
  859. msgstr "Drucker aus Digital Factory hinzugefügt:"
  860. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:316
  861. msgctxt "info:status"
  862. msgid "A cloud connection is not available for a printer"
  863. msgid_plural "A cloud connection is not available for some printers"
  864. msgstr[0] "Für einen Drucker ist keine Cloud-Verbindung verfügbar"
  865. msgstr[1] "Für mehrere Drucker ist keine Cloud-Verbindung verfügbar"
  866. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:324
  867. msgctxt "info:status"
  868. msgid "This printer is not linked to the Digital Factory:"
  869. msgid_plural "These printers are not linked to the Digital Factory:"
  870. msgstr[0] "Dieser Drucker ist nicht mit der Digital Factory verbunden:"
  871. msgstr[1] "Diese Drucker sind nicht mit der Digital Factory verbunden:"
  872. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:329
  873. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:419
  874. msgctxt "info:name"
  875. msgid "Ultimaker Digital Factory"
  876. msgstr "Ultimaker Digital Factory"
  877. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:333
  878. #, python-brace-format
  879. msgctxt "info:status"
  880. msgid "To establish a connection, please visit the {website_link}"
  881. msgstr "Bitte besuchen Sie {website_link}, um eine Verbindung herzustellen"
  882. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337
  883. msgctxt "@action:button"
  884. msgid "Keep printer configurations"
  885. msgstr "Druckerkonfigurationen speichern"
  886. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342
  887. msgctxt "@action:button"
  888. msgid "Remove printers"
  889. msgstr "Drucker entfernen"
  890. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:421
  891. #, python-brace-format
  892. msgctxt "@message {printer_name} is replaced with the name of the printer"
  893. msgid "{printer_name} will be removed until the next account sync."
  894. msgstr "{printer_name} wird bis zur nächsten Synchronisierung entfernt."
  895. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:422
  896. #, python-brace-format
  897. msgctxt "@message {printer_name} is replaced with the name of the printer"
  898. msgid "To remove {printer_name} permanently, visit {digital_factory_link}"
  899. msgstr "Wenn Sie {printer_name} dauerhaft entfernen möchten, dann besuchen Sie bitte die {digital_factory_link}"
  900. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:423
  901. #, python-brace-format
  902. msgctxt "@message {printer_name} is replaced with the name of the printer"
  903. msgid "Are you sure you want to remove {printer_name} temporarily?"
  904. msgstr "Möchten Sie {printer_name} wirklich vorübergehend entfernen?"
  905. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:460
  906. msgctxt "@title:window"
  907. msgid "Remove printers?"
  908. msgstr "Drucker entfernen?"
  909. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:463
  910. #, python-brace-format
  911. msgctxt "@label"
  912. msgid ""
  913. "You are about to remove {0} printer from Cura. This action cannot be undone.\n"
  914. "Are you sure you want to continue?"
  915. msgid_plural ""
  916. "You are about to remove {0} printers from Cura. This action cannot be undone.\n"
  917. "Are you sure you want to continue?"
  918. msgstr[0] ""
  919. "Es wird gleich {0} Drucker aus Cura entfernt. Der Vorgang kann nicht rückgängig gemacht werden. \n"
  920. "Möchten Sie wirklich fortfahren?"
  921. msgstr[1] ""
  922. "Es werden gleich {0} Drucker aus Cura entfernt. Der Vorgang kann nicht rückgängig gemacht werden. \n"
  923. "Möchten Sie wirklich fortfahren."
  924. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:468
  925. msgctxt "@label"
  926. msgid ""
  927. "You are about to remove all printers from Cura. This action cannot be undone.\n"
  928. "Are you sure you want to continue?"
  929. msgstr "Es werden gleich alle Drucker aus Cura entfernt. Dieser Vorgang kann nicht rückgängig gemacht werden.Möchten Sie wirklich fortfahren?"
  930. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:152
  931. msgctxt "@action:button"
  932. msgid "Print via cloud"
  933. msgstr "Über Cloud drucken"
  934. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:153
  935. msgctxt "@properties:tooltip"
  936. msgid "Print via cloud"
  937. msgstr "Über Cloud drucken"
  938. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154
  939. msgctxt "@info:status"
  940. msgid "Connected via cloud"
  941. msgstr "Über Cloud verbunden"
  942. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:264
  943. #, python-brace-format
  944. msgctxt "@error:send"
  945. msgid "Unknown error code when uploading print job: {0}"
  946. msgstr "Unbekannter Fehlercode beim Upload des Druckauftrags: {0}"
  947. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27
  948. msgctxt "@info:status"
  949. msgid "tomorrow"
  950. msgstr "morgen"
  951. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30
  952. msgctxt "@info:status"
  953. msgid "today"
  954. msgstr "heute"
  955. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15
  956. msgctxt "@info:status"
  957. msgid "Sending Print Job"
  958. msgstr "Druckauftrag senden"
  959. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16
  960. msgctxt "@info:status"
  961. msgid "Uploading print job to printer."
  962. msgstr "Druckauftrag wird vorbereitet."
  963. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27
  964. #, python-brace-format
  965. msgctxt "@info:status"
  966. 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."
  967. 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."
  968. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30
  969. msgctxt "@info:title"
  970. msgid "Not a group host"
  971. msgstr "Nicht Host-Drucker der Gruppe"
  972. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:35
  973. msgctxt "@action"
  974. msgid "Configure group"
  975. msgstr "Gruppe konfigurieren"
  976. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:27
  977. msgctxt "@info:status"
  978. msgid "Send and monitor print jobs from anywhere using your Ultimaker account."
  979. msgstr "Druckaufträge mithilfe Ihres Ultimaker-Kontos von einem anderen Ort aus senden und überwachen."
  980. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:33
  981. msgctxt "@info:status Ultimaker Cloud should not be translated."
  982. msgid "Connect to Ultimaker Digital Factory"
  983. msgstr "Mit der Ultimaker Digital Factory verbinden"
  984. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:36
  985. msgctxt "@action"
  986. msgid "Get started"
  987. msgstr "Erste Schritte"
  988. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15
  989. msgctxt "@info:status"
  990. msgid "Please wait until the current job has been sent."
  991. msgstr "Bitte warten Sie, bis der aktuelle Druckauftrag gesendet wurde."
  992. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16
  993. msgctxt "@info:title"
  994. msgid "Print error"
  995. msgstr "Druckfehler"
  996. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15
  997. msgctxt "@info:text"
  998. msgid "Could not upload the data to the printer."
  999. msgstr "Daten konnten nicht in Drucker geladen werden."
  1000. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16
  1001. msgctxt "@info:title"
  1002. msgid "Network error"
  1003. msgstr "Netzwerkfehler"
  1004. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24
  1005. #, python-brace-format
  1006. msgctxt "@info:status"
  1007. msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}."
  1008. msgstr "Cura hat Materialprofile entdeckt, die auf dem Host-Drucker der Gruppe {0} noch nicht installiert wurden."
  1009. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26
  1010. msgctxt "@info:title"
  1011. msgid "Sending materials to printer"
  1012. msgstr "Material an Drucker senden"
  1013. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16
  1014. msgctxt "@info:status"
  1015. msgid "Print job queue is full. The printer can't accept a new job."
  1016. msgstr "Die Druckauftragswarteschlange ist voll. Der Drucker kann keinen neuen Auftrag annehmen."
  1017. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17
  1018. msgctxt "@info:title"
  1019. msgid "Queue Full"
  1020. msgstr "Warteschlange voll"
  1021. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15
  1022. msgctxt "@info:status"
  1023. msgid "Print job was successfully sent to the printer."
  1024. msgstr "Der Druckauftrag wurde erfolgreich an den Drucker gesendet."
  1025. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16
  1026. msgctxt "@info:title"
  1027. msgid "Data Sent"
  1028. msgstr "Daten gesendet"
  1029. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18
  1030. msgctxt "@info:status"
  1031. msgid "You are attempting to connect to a printer that is not running Ultimaker Connect. Please update the printer to the latest firmware."
  1032. msgstr "Sie versuchen, sich mit einem Drucker zu verbinden, auf dem Ultimaker Connect nicht läuft. Bitte aktualisieren Sie die Firmware des Druckers."
  1033. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21
  1034. msgctxt "@info:title"
  1035. msgid "Update your printer"
  1036. msgstr "Drucker aktualisieren"
  1037. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58
  1038. msgctxt "@action:button Preceded by 'Ready to'."
  1039. msgid "Print over network"
  1040. msgstr "Drucken über Netzwerk"
  1041. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59
  1042. msgctxt "@properties:tooltip"
  1043. msgid "Print over network"
  1044. msgstr "Drücken über Netzwerk"
  1045. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60
  1046. msgctxt "@info:status"
  1047. msgid "Connected over the network"
  1048. msgstr "Über Netzwerk verbunden"
  1049. #: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21
  1050. msgctxt "@action"
  1051. msgid "Select upgrades"
  1052. msgstr "Upgrades wählen"
  1053. #: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24
  1054. msgctxt "@action"
  1055. msgid "Level build plate"
  1056. msgstr "Druckbett nivellieren"
  1057. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.py:203
  1058. msgctxt "@title:tab"
  1059. msgid "Recommended"
  1060. msgstr "Empfohlen"
  1061. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.py:205
  1062. msgctxt "@title:tab"
  1063. msgid "Custom"
  1064. msgstr "Benutzerdefiniert"
  1065. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:535
  1066. #, python-brace-format
  1067. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  1068. msgid "Project file <filename>{0}</filename> contains an unknown machine type <message>{1}</message>. Cannot import the machine. Models will be imported instead."
  1069. 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."
  1070. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:538
  1071. msgctxt "@info:title"
  1072. msgid "Open Project File"
  1073. msgstr "Projektdatei öffnen"
  1074. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:634
  1075. #, python-brace-format
  1076. msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
  1077. msgid "Project file <filename>{0}</filename> is suddenly inaccessible: <message>{1}</message>."
  1078. msgstr "Auf Projektdatei <filename>{0}</filename> kann plötzlich nicht mehr zugegriffen werden: <message>{1}</message>."
  1079. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:635
  1080. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:642
  1081. msgctxt "@info:title"
  1082. msgid "Can't Open Project File"
  1083. msgstr "Projektdatei kann nicht geöffnet werden"
  1084. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:641
  1085. #, python-brace-format
  1086. msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
  1087. msgid "Project file <filename>{0}</filename> is corrupt: <message>{1}</message>."
  1088. msgstr ""
  1089. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:693
  1090. #, python-brace-format
  1091. msgctxt "@info:error Don't translate the XML tag <filename>!"
  1092. msgid "Project file <filename>{0}</filename> is made using profiles that are unknown to this version of Ultimaker Cura."
  1093. msgstr "Projektdatei <filename>{0}</filename> verwendet Profile, die nicht mit dieser Ultimaker Cura-Version kompatibel sind."
  1094. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/__init__.py:27
  1095. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/__init__.py:33
  1096. msgctxt "@item:inlistbox"
  1097. msgid "3MF File"
  1098. msgstr "3MF-Datei"
  1099. #: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeGzWriter/__init__.py:17
  1100. #: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeGzReader/__init__.py:17
  1101. msgctxt "@item:inlistbox"
  1102. msgid "Compressed G-code File"
  1103. msgstr "Komprimierte G-Code-Datei"
  1104. #: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43
  1105. msgctxt "@error:not supported"
  1106. msgid "GCodeGzWriter does not support text mode."
  1107. msgstr "GCodeWriter unterstützt keinen Textmodus."
  1108. #: /mnt/projects/ultimaker/cura/Cura/plugins/ModelChecker/ModelChecker.py:31
  1109. msgctxt "@info:title"
  1110. msgid "3D Model Assistant"
  1111. msgstr "3D-Modell-Assistent"
  1112. #: /mnt/projects/ultimaker/cura/Cura/plugins/ModelChecker/ModelChecker.py:96
  1113. #, python-brace-format
  1114. msgctxt "@info:status"
  1115. msgid ""
  1116. "<p>One or more 3D models may not print optimally due to the model size and material configuration:</p>\n"
  1117. "<p>{model_names}</p>\n"
  1118. "<p>Find out how to ensure the best possible print quality and reliability.</p>\n"
  1119. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">View print quality guide</a></p>"
  1120. msgstr ""
  1121. "<p>Ein oder mehrere 3D-Modelle können möglicherweise aufgrund der Modellgröße und Materialkonfiguration nicht optimal gedruckt werden:</p>\n"
  1122. "<p>{model_names}</p>\n"
  1123. "<p>Erfahren Sie, wie Sie die bestmögliche Druckqualität und Zuverlässigkeit sicherstellen.</p>\n"
  1124. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">Leitfaden zu Druckqualität anzeigen</a></p>"
  1125. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127
  1126. msgctxt "@info"
  1127. msgid "Could not access update information."
  1128. msgstr "Zugriff auf Update-Informationen nicht möglich."
  1129. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17
  1130. #, python-brace-format
  1131. msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  1132. msgid "New features or bug-fixes may be available for your {machine_name}! If not already at the latest version, it is recommended to update the firmware on your printer to version {latest_version}."
  1133. msgstr "Für Ihren {machine_name} sind eventuell neue Funktionen oder Fehlerbereinigungen verfügbar! Falls Sie nicht bereits die aktuellste Version verwenden, empfehlen wir Ihnen, ein Firmware-Update Ihres Druckers auf Version {latest_version} auszuführen."
  1134. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22
  1135. #, python-format
  1136. msgctxt "@info:title The %s gets replaced with the printer name."
  1137. msgid "New %s firmware available"
  1138. msgstr "Neue Firmware für %s verfügbar"
  1139. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28
  1140. msgctxt "@action:button"
  1141. msgid "How to update"
  1142. msgstr "Anleitung für die Aktualisierung"
  1143. #: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeReader/__init__.py:18
  1144. msgctxt "@item:inlistbox"
  1145. msgid "G File"
  1146. msgstr "G-Datei"
  1147. #: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeReader/FlavorParser.py:347
  1148. msgctxt "@info:status"
  1149. msgid "Parsing G-code"
  1150. msgstr "G-Code parsen"
  1151. #: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeReader/FlavorParser.py:349
  1152. #: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeReader/FlavorParser.py:503
  1153. msgctxt "@info:title"
  1154. msgid "G-code Details"
  1155. msgstr "G-Code-Details"
  1156. #: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeReader/FlavorParser.py:501
  1157. msgctxt "@info:generic"
  1158. 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."
  1159. 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."
  1160. #: /mnt/projects/ultimaker/cura/Cura/plugins/SupportEraser/__init__.py:12
  1161. msgctxt "@label"
  1162. msgid "Support Blocker"
  1163. msgstr "Stützstruktur-Blocker"
  1164. #: /mnt/projects/ultimaker/cura/Cura/plugins/SupportEraser/__init__.py:13
  1165. msgctxt "@info:tooltip"
  1166. msgid "Create a volume in which supports are not printed."
  1167. msgstr "Erstellt ein Volumen, in dem keine Stützstrukturen gedruckt werden."
  1168. #: /mnt/projects/ultimaker/cura/Cura/plugins/TrimeshReader/__init__.py:15
  1169. msgctxt "@item:inlistbox 'Open' is part of the name of this file format."
  1170. msgid "Open Compressed Triangle Mesh"
  1171. msgstr "Öffnen Sie das komprimierte Dreiecksnetz"
  1172. #: /mnt/projects/ultimaker/cura/Cura/plugins/TrimeshReader/__init__.py:19
  1173. msgctxt "@item:inlistbox"
  1174. msgid "COLLADA Digital Asset Exchange"
  1175. msgstr "COLLADA Digital Asset Exchange"
  1176. #: /mnt/projects/ultimaker/cura/Cura/plugins/TrimeshReader/__init__.py:23
  1177. msgctxt "@item:inlistbox"
  1178. msgid "glTF Binary"
  1179. msgstr "glTF Binary"
  1180. #: /mnt/projects/ultimaker/cura/Cura/plugins/TrimeshReader/__init__.py:27
  1181. msgctxt "@item:inlistbox"
  1182. msgid "glTF Embedded JSON"
  1183. msgstr "glTF Embedded JSON"
  1184. #: /mnt/projects/ultimaker/cura/Cura/plugins/TrimeshReader/__init__.py:36
  1185. msgctxt "@item:inlistbox"
  1186. msgid "Stanford Triangle Format"
  1187. msgstr "Stanford Triangle Format"
  1188. #: /mnt/projects/ultimaker/cura/Cura/plugins/TrimeshReader/__init__.py:40
  1189. msgctxt "@item:inlistbox"
  1190. msgid "Compressed COLLADA Digital Asset Exchange"
  1191. msgstr "Compressed COLLADA Digital Asset Exchange"
  1192. #: /mnt/projects/ultimaker/cura/Cura/plugins/UFPReader/__init__.py:22
  1193. #: /mnt/projects/ultimaker/cura/Cura/plugins/UFPWriter/__init__.py:28
  1194. msgctxt "@item:inlistbox"
  1195. msgid "Ultimaker Format Package"
  1196. msgstr "Ultimaker Format Package"
  1197. #: /mnt/projects/ultimaker/cura/Cura/plugins/LegacyProfileReader/__init__.py:14
  1198. msgctxt "@item:inlistbox"
  1199. msgid "Cura 15.04 profiles"
  1200. msgstr "Cura 15.04-Profile"
  1201. #: /mnt/projects/ultimaker/cura/Cura/plugins/PrepareStage/__init__.py:12
  1202. msgctxt "@item:inmenu"
  1203. msgid "Prepare"
  1204. msgstr "Vorbereiten"
  1205. #: /mnt/projects/ultimaker/cura/Cura/plugins/MonitorStage/__init__.py:14
  1206. msgctxt "@item:inmenu"
  1207. msgid "Monitor"
  1208. msgstr "Überwachen"
  1209. #: /mnt/projects/ultimaker/cura/Cura/plugins/XRayView/__init__.py:12
  1210. msgctxt "@item:inlistbox"
  1211. msgid "X-Ray view"
  1212. msgstr "Röntgen-Ansicht"
  1213. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/ThreeMFWriter.py:206
  1214. msgctxt "@error:zip"
  1215. msgid "Error writing 3mf file."
  1216. msgstr "Fehler beim Schreiben von 3MF-Datei."
  1217. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/__init__.py:26
  1218. msgctxt "@item:inlistbox"
  1219. msgid "3MF file"
  1220. msgstr "3MF-Datei"
  1221. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/__init__.py:34
  1222. msgctxt "@item:inlistbox"
  1223. msgid "Cura Project 3MF file"
  1224. msgstr "Cura-Projekt 3MF-Datei"
  1225. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31
  1226. msgctxt "@error:zip"
  1227. msgid "3MF Writer plug-in is corrupt."
  1228. msgstr "Das 3MF-Writer-Plugin ist beschädigt."
  1229. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:59
  1230. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:92
  1231. msgctxt "@error:zip"
  1232. msgid "No permission to write the workspace here."
  1233. msgstr "Keine Erlaubnis zum Beschreiben dieses Arbeitsbereichs."
  1234. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:96
  1235. msgctxt "@error:zip"
  1236. msgid "The operating system does not allow saving a project file to this location or with this file name."
  1237. msgstr "Das Betriebssystem erlaubt es nicht, eine Projektdatei an diesem Speicherort oder mit diesem Dateinamen zu speichern."
  1238. #: /mnt/projects/ultimaker/cura/Cura/plugins/PreviewStage/__init__.py:13
  1239. msgctxt "@item:inmenu"
  1240. msgid "Preview"
  1241. msgstr "Vorschau"
  1242. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/__init__.py:15
  1243. msgctxt "@item:inlistbox"
  1244. msgid "Layer view"
  1245. msgstr "Schichtenansicht"
  1246. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationView.py:124
  1247. msgctxt "@info:status"
  1248. msgid "Cura does not accurately display layers when Wire Printing is enabled."
  1249. msgstr "Cura zeigt die Schichten nicht präzise an, wenn „Drucken mit Drahtstruktur“ aktiviert ist."
  1250. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationView.py:125
  1251. msgctxt "@info:title"
  1252. msgid "Simulation View"
  1253. msgstr "Simulationsansicht"
  1254. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationView.py:126
  1255. msgctxt "@info:status"
  1256. msgid "Nothing is shown because you need to slice first."
  1257. msgstr "Es kann nichts angezeigt werden, weil Sie zuerst das Slicing vornehmen müssen."
  1258. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationView.py:126
  1259. msgctxt "@info:title"
  1260. msgid "No layers to show"
  1261. msgstr "Keine anzeigbaren Schichten vorhanden"
  1262. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationView.py:127
  1263. #: /mnt/projects/ultimaker/cura/Cura/plugins/SolidView/SolidView.py:74
  1264. msgctxt "@info:option_text"
  1265. msgid "Do not show this message again"
  1266. msgstr "Diese Meldung nicht mehr anzeigen"
  1267. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32
  1268. msgctxt "@action"
  1269. msgid "Machine Settings"
  1270. msgstr "Geräteeinstellungen"
  1271. #: /mnt/projects/ultimaker/cura/Cura/plugins/SolidView/__init__.py:12
  1272. msgctxt "@item:inmenu"
  1273. msgid "Solid view"
  1274. msgstr "Solide Ansicht"
  1275. #: /mnt/projects/ultimaker/cura/Cura/plugins/SolidView/SolidView.py:71
  1276. msgctxt "@info:status"
  1277. msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura."
  1278. msgstr ""
  1279. #: /mnt/projects/ultimaker/cura/Cura/plugins/SolidView/SolidView.py:73
  1280. msgctxt "@info:title"
  1281. msgid "Model Errors"
  1282. msgstr ""
  1283. #: /mnt/projects/ultimaker/cura/Cura/plugins/SolidView/SolidView.py:79
  1284. msgctxt "@action:button"
  1285. msgid "Learn more"
  1286. msgstr ""
  1287. #: /mnt/projects/ultimaker/cura/Cura/plugins/UFPWriter/UFPWriter.py:134
  1288. msgctxt "@info:error"
  1289. msgid "Can't write to UFP file:"
  1290. msgstr "Kann nicht in UFP-Datei schreiben:"
  1291. #: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeWriter/GCodeWriter.py:74
  1292. msgctxt "@error:not supported"
  1293. msgid "GCodeWriter does not support non-text mode."
  1294. msgstr "GCodeWriter unterstützt keinen Nicht-Textmodus."
  1295. #: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeWriter/GCodeWriter.py:80
  1296. #: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeWriter/GCodeWriter.py:96
  1297. msgctxt "@warning:status"
  1298. msgid "Please prepare G-code before exporting."
  1299. msgstr "Vor dem Exportieren bitte G-Code vorbereiten."
  1300. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/__init__.py:14
  1301. msgctxt "@item:inlistbox"
  1302. msgid "JPG Image"
  1303. msgstr "JPG-Bilddatei"
  1304. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/__init__.py:18
  1305. msgctxt "@item:inlistbox"
  1306. msgid "JPEG Image"
  1307. msgstr "JPEG-Bilddatei"
  1308. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/__init__.py:22
  1309. msgctxt "@item:inlistbox"
  1310. msgid "PNG Image"
  1311. msgstr "PNG-Bilddatei"
  1312. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/__init__.py:26
  1313. msgctxt "@item:inlistbox"
  1314. msgid "BMP Image"
  1315. msgstr "BMP-Bilddatei"
  1316. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/__init__.py:30
  1317. msgctxt "@item:inlistbox"
  1318. msgid "GIF Image"
  1319. msgstr "GIF-Bilddatei"
  1320. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/DriveApiService.py:86
  1321. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:23
  1322. msgctxt "@info:backup_status"
  1323. msgid "There was an error trying to restore your backup."
  1324. msgstr "Beim Versuch, Ihr Backup wiederherzustellen, trat ein Fehler auf."
  1325. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26
  1326. msgctxt "@info:title"
  1327. msgid "Backups"
  1328. msgstr "Backups"
  1329. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:27
  1330. msgctxt "@info:backup_status"
  1331. msgid "There was an error while uploading your backup."
  1332. msgstr "Beim Versuch, Ihr Backup hochzuladen, trat ein Fehler auf."
  1333. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:47
  1334. msgctxt "@info:backup_status"
  1335. msgid "Creating your backup..."
  1336. msgstr "Ihr Backup wird erstellt..."
  1337. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:54
  1338. msgctxt "@info:backup_status"
  1339. msgid "There was an error while creating your backup."
  1340. msgstr "Beim Erstellen Ihres Backups ist ein Fehler aufgetreten."
  1341. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:58
  1342. msgctxt "@info:backup_status"
  1343. msgid "Uploading your backup..."
  1344. msgstr "Ihr Backup wird hochgeladen..."
  1345. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:68
  1346. msgctxt "@info:backup_status"
  1347. msgid "Your backup has finished uploading."
  1348. msgstr "Ihr Backup wurde erfolgreich hochgeladen."
  1349. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:107
  1350. msgctxt "@error:file_size"
  1351. msgid "The backup exceeds the maximum file size."
  1352. msgstr "Das Backup überschreitet die maximale Dateigröße."
  1353. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:64
  1354. msgctxt "@item:inmenu"
  1355. msgid "Manage backups"
  1356. msgstr "Backups verwalten"
  1357. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31
  1358. msgctxt "@title"
  1359. msgid "Update Firmware"
  1360. msgstr "Firmware aktualisieren"
  1361. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39
  1362. msgctxt "@label"
  1363. 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."
  1364. 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."
  1365. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46
  1366. msgctxt "@label"
  1367. msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements."
  1368. msgstr "Die mit neuen Druckern gelieferte Firmware funktioniert, allerdings enthalten neue Versionen üblicherweise mehr Funktionen und Verbesserungen."
  1369. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58
  1370. msgctxt "@action:button"
  1371. msgid "Automatically upgrade Firmware"
  1372. msgstr "Firmware automatisch aktualisieren"
  1373. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69
  1374. msgctxt "@action:button"
  1375. msgid "Upload custom Firmware"
  1376. msgstr "Benutzerdefinierte Firmware hochladen"
  1377. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83
  1378. msgctxt "@label"
  1379. msgid "Firmware can not be updated because there is no connection with the printer."
  1380. msgstr "Firmware kann nicht aktualisiert werden, da keine Verbindung zum Drucker besteht."
  1381. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91
  1382. msgctxt "@label"
  1383. msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware."
  1384. msgstr "Firmware kann nicht aktualisiert werden, da die Verbindung zum Drucker die Firmware-Aktualisierung nicht unterstützt."
  1385. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98
  1386. msgctxt "@title:window"
  1387. msgid "Select custom firmware"
  1388. msgstr "Benutzerdefinierte Firmware wählen"
  1389. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119
  1390. msgctxt "@title:window"
  1391. msgid "Firmware Update"
  1392. msgstr "Firmware-Aktualisierung"
  1393. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143
  1394. msgctxt "@label"
  1395. msgid "Updating firmware."
  1396. msgstr "Die Firmware wird aktualisiert."
  1397. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145
  1398. msgctxt "@label"
  1399. msgid "Firmware update completed."
  1400. msgstr "Firmware-Aktualisierung abgeschlossen."
  1401. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147
  1402. msgctxt "@label"
  1403. msgid "Firmware update failed due to an unknown error."
  1404. msgstr "Die Firmware-Aktualisierung ist aufgrund eines unbekannten Fehlers fehlgeschlagen."
  1405. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149
  1406. msgctxt "@label"
  1407. msgid "Firmware update failed due to an communication error."
  1408. msgstr "Die Firmware-Aktualisierung ist aufgrund eines Kommunikationsfehlers fehlgeschlagen."
  1409. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151
  1410. msgctxt "@label"
  1411. msgid "Firmware update failed due to an input/output error."
  1412. msgstr "Die Firmware-Aktualisierung ist aufgrund eines Eingabe-/Ausgabefehlers fehlgeschlagen."
  1413. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153
  1414. msgctxt "@label"
  1415. msgid "Firmware update failed due to missing firmware."
  1416. msgstr "Die Firmware-Aktualisierung ist aufgrund von fehlender Firmware fehlgeschlagen."
  1417. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19
  1418. msgctxt "@title"
  1419. msgid "Marketplace"
  1420. msgstr "Marktplatz"
  1421. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36
  1422. msgctxt "@label"
  1423. msgid "You need to accept the license to install the package"
  1424. msgstr "Sie müssen die Lizenz akzeptieren, um das Paket zu installieren"
  1425. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14
  1426. msgctxt "@title"
  1427. msgid "Changes from your account"
  1428. msgstr "Änderungen in deinem Konto"
  1429. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23
  1430. msgctxt "@button"
  1431. msgid "Dismiss"
  1432. msgstr "Verwerfen"
  1433. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23
  1434. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123
  1435. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:182
  1436. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77
  1437. msgctxt "@button"
  1438. msgid "Next"
  1439. msgstr "Weiter"
  1440. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52
  1441. msgctxt "@label"
  1442. msgid "The following packages will be added:"
  1443. msgstr "Die folgenden Pakete werden hinzugefügt:"
  1444. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97
  1445. msgctxt "@label"
  1446. msgid "The following packages can not be installed because of an incompatible Cura version:"
  1447. msgstr "Die folgenden Pakete können nicht hinzugefügt werden, weil die Cura-Version nicht kompatibel ist:"
  1448. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20
  1449. msgctxt "@title:window"
  1450. msgid "Confirm uninstall"
  1451. msgstr "Deinstallieren bestätigen"
  1452. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50
  1453. msgctxt "@text:window"
  1454. msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults."
  1455. msgstr "Sie sind dabei, Materialien und/oder Profile zu deinstallieren, die noch verwendet werden. Durch Bestätigen werden die folgenden Materialien/Profile auf ihre Standardeinstellungen zurückgesetzt."
  1456. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51
  1457. msgctxt "@text:window"
  1458. msgid "Materials"
  1459. msgstr "Materialien"
  1460. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52
  1461. msgctxt "@text:window"
  1462. msgid "Profiles"
  1463. msgstr "Profile"
  1464. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90
  1465. msgctxt "@action:button"
  1466. msgid "Confirm"
  1467. msgstr "Bestätigen"
  1468. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16
  1469. msgctxt "@info"
  1470. msgid "Could not connect to the Cura Package database. Please check your connection."
  1471. msgstr "Verbindung zur Cura Paket-Datenbank konnte nicht hergestellt werden. Bitte überprüfen Sie Ihre Verbindung."
  1472. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33
  1473. msgctxt "@label"
  1474. msgid "Community Contributions"
  1475. msgstr "Community-Beiträge"
  1476. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33
  1477. msgctxt "@label"
  1478. msgid "Community Plugins"
  1479. msgstr "Community-Plugins"
  1480. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42
  1481. msgctxt "@label"
  1482. msgid "Generic Materials"
  1483. msgstr "Generische Materialien"
  1484. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89
  1485. msgctxt "@label"
  1486. msgid "Version"
  1487. msgstr "Version"
  1488. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96
  1489. msgctxt "@label"
  1490. msgid "Last updated"
  1491. msgstr "Zuletzt aktualisiert"
  1492. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103
  1493. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138
  1494. msgctxt "@label"
  1495. msgid "Brand"
  1496. msgstr "Marke"
  1497. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110
  1498. msgctxt "@label"
  1499. msgid "Downloads"
  1500. msgstr "Downloads"
  1501. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33
  1502. msgctxt "@title:tab"
  1503. msgid "Installed plugins"
  1504. msgstr "Installierte Plugins"
  1505. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72
  1506. msgctxt "@info"
  1507. msgid "No plugin has been installed."
  1508. msgstr "Es wurde kein Plugin installiert."
  1509. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:86
  1510. msgctxt "@title:tab"
  1511. msgid "Installed materials"
  1512. msgstr "Installierte Materialien"
  1513. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:125
  1514. msgctxt "@info"
  1515. msgid "No material has been installed."
  1516. msgstr "Es wurde kein Material installiert."
  1517. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:139
  1518. msgctxt "@title:tab"
  1519. msgid "Bundled plugins"
  1520. msgstr "Gebündelte Plugins"
  1521. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:184
  1522. msgctxt "@title:tab"
  1523. msgid "Bundled materials"
  1524. msgstr "Gebündelte Materialien"
  1525. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95
  1526. msgctxt "@label"
  1527. msgid "Website"
  1528. msgstr "Website"
  1529. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102
  1530. msgctxt "@label"
  1531. msgid "Email"
  1532. msgstr "E-Mail"
  1533. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22
  1534. msgctxt "@description"
  1535. msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise"
  1536. msgstr "Bitte melden Sie sich an, um verifizierte Plugins und Materialien für Ultimaker Cura Enterprise zu erhalten"
  1537. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39
  1538. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51
  1539. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:199
  1540. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/GeneralOperations.qml:53
  1541. msgctxt "@button"
  1542. msgid "Sign in"
  1543. msgstr "Anmelden"
  1544. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17
  1545. msgctxt "@info"
  1546. msgid "Fetching packages..."
  1547. msgstr "Pakete werden abgeholt..."
  1548. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34
  1549. msgctxt "@label"
  1550. msgid "Compatibility"
  1551. msgstr "Kompatibilität"
  1552. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124
  1553. msgctxt "@label:table_header"
  1554. msgid "Machine"
  1555. msgstr "Gerät"
  1556. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137
  1557. msgctxt "@label:table_header"
  1558. msgid "Build Plate"
  1559. msgstr "Druckbett"
  1560. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143
  1561. msgctxt "@label:table_header"
  1562. msgid "Support"
  1563. msgstr "Support"
  1564. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149
  1565. msgctxt "@label:table_header"
  1566. msgid "Quality"
  1567. msgstr "Qualität"
  1568. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170
  1569. msgctxt "@action:label"
  1570. msgid "Technical Data Sheet"
  1571. msgstr "Technisches Datenblatt"
  1572. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179
  1573. msgctxt "@action:label"
  1574. msgid "Safety Data Sheet"
  1575. msgstr "Sicherheitsdatenblatt"
  1576. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188
  1577. msgctxt "@action:label"
  1578. msgid "Printing Guidelines"
  1579. msgstr "Druckrichtlinien"
  1580. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197
  1581. msgctxt "@action:label"
  1582. msgid "Website"
  1583. msgstr "Website"
  1584. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30
  1585. msgctxt "@title:tab"
  1586. msgid "Plugins"
  1587. msgstr "Plugins"
  1588. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44
  1589. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89
  1590. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:457
  1591. msgctxt "@title:tab"
  1592. msgid "Materials"
  1593. msgstr "Materialien"
  1594. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58
  1595. msgctxt "@title:tab"
  1596. msgid "Installed"
  1597. msgstr "Installiert"
  1598. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86
  1599. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39
  1600. msgctxt "@info:tooltip"
  1601. msgid "Go to Web Marketplace"
  1602. msgstr "Zum Web Marketplace gehen"
  1603. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22
  1604. msgctxt "@label"
  1605. msgid "Will install upon restarting"
  1606. msgstr "Installiert nach Neustart"
  1607. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34
  1608. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96
  1609. msgctxt "@action:button"
  1610. msgid "Update"
  1611. msgstr "Aktualisierung"
  1612. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35
  1613. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97
  1614. msgctxt "@action:button"
  1615. msgid "Updating"
  1616. msgstr "Aktualisierung wird durchgeführt"
  1617. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36
  1618. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98
  1619. msgctxt "@action:button"
  1620. msgid "Updated"
  1621. msgstr "Aktualisiert"
  1622. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53
  1623. msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  1624. msgid "<a href='%1'>Log in</a> is required to update"
  1625. msgstr "<a href=‘%1‘>Anmeldung</a> für Update erforderlich"
  1626. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71
  1627. msgctxt "@action:button"
  1628. msgid "Downgrade"
  1629. msgstr "Downgraden"
  1630. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71
  1631. msgctxt "@action:button"
  1632. msgid "Uninstall"
  1633. msgstr "Deinstallieren"
  1634. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46
  1635. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20
  1636. msgctxt "@action:button"
  1637. msgid "Installed"
  1638. msgstr "Installiert"
  1639. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56
  1640. msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  1641. msgid "<a href='%1'>Log in</a> is required to install or update"
  1642. msgstr "<a href=‘%1‘>Anmeldung</a> für Installation oder Update erforderlich"
  1643. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80
  1644. msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  1645. msgid "<a href='%1'>Buy material spools</a>"
  1646. msgstr "<a href=‘%1‘>Materialspulen kaufen</a>"
  1647. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27
  1648. msgctxt "@label"
  1649. msgid "Premium"
  1650. msgstr "Premium"
  1651. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42
  1652. msgctxt "@label"
  1653. msgid "Search materials"
  1654. msgstr "Materialien suchen"
  1655. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19
  1656. msgctxt "@info"
  1657. msgid "You will need to restart Cura before changes in packages have effect."
  1658. msgstr "Cura muss neu gestartet werden, um die Änderungen der Pakete zu übernehmen."
  1659. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46
  1660. msgctxt "@info:button, %1 is the application name"
  1661. msgid "Quit %1"
  1662. msgstr "%1 beenden"
  1663. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25
  1664. msgctxt "@action:button"
  1665. msgid "Back"
  1666. msgstr "Zurück"
  1667. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18
  1668. msgctxt "@action:button"
  1669. msgid "Install"
  1670. msgstr "Installieren"
  1671. #: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42
  1672. msgctxt "@label"
  1673. msgid "Mesh Type"
  1674. msgstr "Mesh-Typ"
  1675. #: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82
  1676. msgctxt "@label"
  1677. msgid "Normal model"
  1678. msgstr "Normales Modell"
  1679. #: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94
  1680. msgctxt "@label"
  1681. msgid "Print as support"
  1682. msgstr "Als Stützstruktur drucken"
  1683. #: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106
  1684. msgctxt "@label"
  1685. msgid "Modify settings for overlaps"
  1686. msgstr "Einstellungen für Überlappungen ändern"
  1687. #: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118
  1688. msgctxt "@label"
  1689. msgid "Don't support overlaps"
  1690. msgstr "Überlappungen nicht unterstützen"
  1691. #: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:149
  1692. msgctxt "@item:inlistbox"
  1693. msgid "Infill mesh only"
  1694. msgstr "Nur Mesh-Füllung"
  1695. #: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:150
  1696. msgctxt "@item:inlistbox"
  1697. msgid "Cutting mesh"
  1698. msgstr "Mesh beschneiden"
  1699. #: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:380
  1700. msgctxt "@action:button"
  1701. msgid "Select settings"
  1702. msgstr "Einstellungen wählen"
  1703. #: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13
  1704. msgctxt "@title:window"
  1705. msgid "Select Settings to Customize for this model"
  1706. msgstr "Einstellungen für die benutzerdefinierte Anpassung dieses Modells wählen"
  1707. #: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55
  1708. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:94
  1709. msgctxt "@label:textbox"
  1710. msgid "Filter..."
  1711. msgstr "Filtern..."
  1712. #: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68
  1713. msgctxt "@label:checkbox"
  1714. msgid "Show all"
  1715. msgstr "Alle anzeigen"
  1716. #: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:18
  1717. msgctxt "@title:window"
  1718. msgid "Post Processing Plugin"
  1719. msgstr "Plugin Nachbearbeitung"
  1720. #: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57
  1721. msgctxt "@label"
  1722. msgid "Post Processing Scripts"
  1723. msgstr "Skripts Nachbearbeitung"
  1724. #: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:233
  1725. msgctxt "@action"
  1726. msgid "Add a script"
  1727. msgstr "Ein Skript hinzufügen"
  1728. #: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:279
  1729. msgctxt "@label"
  1730. msgid "Settings"
  1731. msgstr "Einstellungen"
  1732. #: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:499
  1733. msgctxt "@info:tooltip"
  1734. msgid "Change active post-processing scripts."
  1735. msgstr "Aktive Nachbearbeitungsskripts ändern."
  1736. #: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:503
  1737. msgctxt "@info:tooltip"
  1738. msgid "The following script is active:"
  1739. msgid_plural "The following scripts are active:"
  1740. msgstr[0] "Die folgenden Skript ist aktiv:"
  1741. msgstr[1] "Die folgenden Skripte sind aktiv:"
  1742. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31
  1743. msgctxt "@label"
  1744. msgid "Queued"
  1745. msgstr "In Warteschlange"
  1746. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66
  1747. msgctxt "@label link to connect manager"
  1748. msgid "Manage in browser"
  1749. msgstr "Im Browser verwalten"
  1750. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99
  1751. msgctxt "@label"
  1752. msgid "There are no print jobs in the queue. Slice and send a job to add one."
  1753. msgstr "Die Warteschlange enthält keine Druckaufträge. Slicen Sie einen Auftrag und schicken Sie ihn ab, um ihn zur Warteschlange hinzuzufügen."
  1754. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110
  1755. msgctxt "@label"
  1756. msgid "Print jobs"
  1757. msgstr "Druckaufträge"
  1758. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122
  1759. msgctxt "@label"
  1760. msgid "Total print time"
  1761. msgstr "Druckdauer insgesamt"
  1762. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134
  1763. msgctxt "@label"
  1764. msgid "Waiting for"
  1765. msgstr "Warten auf"
  1766. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20
  1767. msgctxt "@title:window"
  1768. msgid "Configuration Changes"
  1769. msgstr "Konfigurationsänderungen"
  1770. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27
  1771. msgctxt "@action:button"
  1772. msgid "Override"
  1773. msgstr "Überschreiben"
  1774. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85
  1775. msgctxt "@label"
  1776. msgid "The assigned printer, %1, requires the following configuration change:"
  1777. msgid_plural "The assigned printer, %1, requires the following configuration changes:"
  1778. msgstr[0] "Der zugewiesene Drucker %1 erfordert die folgende Konfigurationsänderung:"
  1779. msgstr[1] "Der zugewiesene Drucker %1 erfordert die folgenden Konfigurationsänderungen:"
  1780. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89
  1781. msgctxt "@label"
  1782. msgid "The printer %1 is assigned, but the job contains an unknown material configuration."
  1783. msgstr "Der Drucker %1 wurde zugewiesen, allerdings enthält der Auftrag eine unbekannte Materialkonfiguration."
  1784. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99
  1785. msgctxt "@label"
  1786. msgid "Change material %1 from %2 to %3."
  1787. msgstr "Material %1 von %2 auf %3 wechseln."
  1788. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102
  1789. msgctxt "@label"
  1790. msgid "Load %3 as material %1 (This cannot be overridden)."
  1791. msgstr "%3 als Material %1 laden (Dies kann nicht übergangen werden)."
  1792. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105
  1793. msgctxt "@label"
  1794. msgid "Change print core %1 from %2 to %3."
  1795. msgstr "Print Core %1 von %2 auf %3 wechseln."
  1796. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108
  1797. msgctxt "@label"
  1798. msgid "Change build plate to %1 (This cannot be overridden)."
  1799. msgstr "Druckplatte auf %1 wechseln (Dies kann nicht übergangen werden)."
  1800. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115
  1801. msgctxt "@label"
  1802. msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print."
  1803. msgstr "Überschreiben verwendet die definierten Einstellungen mit der vorhandenen Druckerkonfiguration. Dies kann zu einem fehlgeschlagenen Druck führen."
  1804. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153
  1805. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184
  1806. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191
  1807. msgctxt "@label"
  1808. msgid "Glass"
  1809. msgstr "Glas"
  1810. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156
  1811. msgctxt "@label"
  1812. msgid "Aluminum"
  1813. msgstr "Aluminium"
  1814. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133
  1815. msgctxt "@label"
  1816. msgid "Unavailable printer"
  1817. msgstr "Drucker nicht verfügbar"
  1818. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135
  1819. msgctxt "@label"
  1820. msgid "First available"
  1821. msgstr "Zuerst verfügbar"
  1822. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250
  1823. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254
  1824. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523
  1825. msgctxt "@info"
  1826. msgid "Please update your printer's firmware to manage the queue remotely."
  1827. msgstr "Damit Sie die Warteschlange aus der Ferne verwalten können, müssen Sie die Druckfirmware aktualisieren."
  1828. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45
  1829. msgctxt "@title:window"
  1830. msgid "Connect to Networked Printer"
  1831. msgstr "Anschluss an vernetzten Drucker"
  1832. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57
  1833. msgctxt "@label"
  1834. 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."
  1835. 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."
  1836. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57
  1837. msgctxt "@label"
  1838. msgid "Select your printer from the list below:"
  1839. msgstr "Wählen Sie Ihren Drucker aus der folgenden Liste aus:"
  1840. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77
  1841. msgctxt "@action:button"
  1842. msgid "Edit"
  1843. msgstr "Bearbeiten"
  1844. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88
  1845. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156
  1846. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/MachinesPage.qml:55
  1847. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:138
  1848. msgctxt "@action:button"
  1849. msgid "Remove"
  1850. msgstr "Entfernen"
  1851. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96
  1852. msgctxt "@action:button"
  1853. msgid "Refresh"
  1854. msgstr "Aktualisieren"
  1855. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176
  1856. msgctxt "@label"
  1857. msgid "If your printer is not listed, read the <a href='%1'>network printing troubleshooting guide</a>"
  1858. msgstr "Wenn Ihr Drucker nicht aufgeführt ist, lesen Sie die <a href='%1'>Anleitung für Fehlerbehebung für Netzwerkdruck</a>"
  1859. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205
  1860. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263
  1861. msgctxt "@label"
  1862. msgid "Type"
  1863. msgstr "Typ"
  1864. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225
  1865. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279
  1866. msgctxt "@label"
  1867. msgid "Firmware version"
  1868. msgstr "Firmware-Version"
  1869. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239
  1870. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295
  1871. msgctxt "@label"
  1872. msgid "Address"
  1873. msgstr "Adresse"
  1874. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263
  1875. msgctxt "@label"
  1876. msgid "This printer is not set up to host a group of printers."
  1877. msgstr "Dieser Drucker ist nicht eingerichtet um eine Gruppe von Druckern anzusteuern."
  1878. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267
  1879. msgctxt "@label"
  1880. msgid "This printer is the host for a group of %1 printers."
  1881. msgstr "Dieser Drucker steuert eine Gruppe von %1 Druckern an."
  1882. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278
  1883. msgctxt "@label"
  1884. msgid "The printer at this address has not yet responded."
  1885. msgstr "Der Drucker unter dieser Adresse hat nicht reagiert."
  1886. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283
  1887. msgctxt "@action:button"
  1888. msgid "Connect"
  1889. msgstr "Verbinden"
  1890. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296
  1891. msgctxt "@title:window"
  1892. msgid "Invalid IP address"
  1893. msgstr "Ungültige IP-Adresse"
  1894. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297
  1895. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146
  1896. msgctxt "@text"
  1897. msgid "Please enter a valid IP address."
  1898. msgstr "Bitte eine gültige IP-Adresse eingeben."
  1899. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308
  1900. msgctxt "@title:window"
  1901. msgid "Printer Address"
  1902. msgstr "Druckeradresse"
  1903. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331
  1904. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102
  1905. msgctxt "@label"
  1906. msgid "Enter the IP address of your printer on the network."
  1907. msgstr "Geben Sie die IP-Adresse Ihres Druckers in das Netzwerk ein."
  1908. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361
  1909. #: /mnt/projects/ultimaker/cura/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139
  1910. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:227
  1911. msgctxt "@action:button"
  1912. msgid "OK"
  1913. msgstr "OK"
  1914. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:11
  1915. msgctxt "@title:window"
  1916. msgid "Print over network"
  1917. msgstr "Drucken über Netzwerk"
  1918. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:52
  1919. msgctxt "@action:button"
  1920. msgid "Print"
  1921. msgstr "Drucken"
  1922. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:80
  1923. msgctxt "@label"
  1924. msgid "Printer selection"
  1925. msgstr "Druckerauswahl"
  1926. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54
  1927. msgctxt "@label"
  1928. msgid "Move to top"
  1929. msgstr "Vorziehen"
  1930. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70
  1931. msgctxt "@label"
  1932. msgid "Delete"
  1933. msgstr "Löschen"
  1934. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100
  1935. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:290
  1936. msgctxt "@label"
  1937. msgid "Resume"
  1938. msgstr "Zurückkehren"
  1939. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102
  1940. msgctxt "@label"
  1941. msgid "Pausing..."
  1942. msgstr "Wird pausiert..."
  1943. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104
  1944. msgctxt "@label"
  1945. msgid "Resuming..."
  1946. msgstr "Wird fortgesetzt..."
  1947. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106
  1948. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:285
  1949. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:294
  1950. msgctxt "@label"
  1951. msgid "Pause"
  1952. msgstr "Pausieren"
  1953. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124
  1954. msgctxt "@label"
  1955. msgid "Aborting..."
  1956. msgstr "Wird abgebrochen..."
  1957. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124
  1958. msgctxt "@label"
  1959. msgid "Abort"
  1960. msgstr "Abbrechen"
  1961. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143
  1962. msgctxt "@label %1 is the name of a print job."
  1963. msgid "Are you sure you want to move %1 to the top of the queue?"
  1964. msgstr "Soll dieser %1 wirklich an den Anfang der Warteschlange vorgezogen werden?"
  1965. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144
  1966. msgctxt "@window:title"
  1967. msgid "Move print job to top"
  1968. msgstr "Druckauftrag vorziehen"
  1969. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153
  1970. msgctxt "@label %1 is the name of a print job."
  1971. msgid "Are you sure you want to delete %1?"
  1972. msgstr "Soll %1 wirklich gelöscht werden?"
  1973. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154
  1974. msgctxt "@window:title"
  1975. msgid "Delete print job"
  1976. msgstr "Druckauftrag löschen"
  1977. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163
  1978. msgctxt "@label %1 is the name of a print job."
  1979. msgid "Are you sure you want to abort %1?"
  1980. msgstr "Möchten Sie %1 wirklich abbrechen?"
  1981. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164
  1982. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:336
  1983. msgctxt "@window:title"
  1984. msgid "Abort print"
  1985. msgstr "Drucken abbrechen"
  1986. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78
  1987. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90
  1988. msgctxt "@label:status"
  1989. msgid "Aborted"
  1990. msgstr "Abgebrochen"
  1991. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80
  1992. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82
  1993. msgctxt "@label:status"
  1994. msgid "Finished"
  1995. msgstr "Beendet"
  1996. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84
  1997. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86
  1998. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364
  1999. msgctxt "@label:status"
  2000. msgid "Preparing..."
  2001. msgstr "Vorbereitung..."
  2002. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88
  2003. msgctxt "@label:status"
  2004. msgid "Aborting..."
  2005. msgstr "Wird abgebrochen..."
  2006. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92
  2007. msgctxt "@label:status"
  2008. msgid "Pausing..."
  2009. msgstr "Wird pausiert..."
  2010. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94
  2011. msgctxt "@label:status"
  2012. msgid "Paused"
  2013. msgstr "Pausiert"
  2014. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96
  2015. msgctxt "@label:status"
  2016. msgid "Resuming..."
  2017. msgstr "Wird fortgesetzt..."
  2018. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98
  2019. msgctxt "@label:status"
  2020. msgid "Action required"
  2021. msgstr "Handlung erforderlich"
  2022. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100
  2023. msgctxt "@label:status"
  2024. msgid "Finishes %1 at %2"
  2025. msgstr "Fertigstellung %1 auf %2"
  2026. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154
  2027. msgctxt "@label link to Connect and Cloud interfaces"
  2028. msgid "Manage printer"
  2029. msgstr "Drucker verwalten"
  2030. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348
  2031. msgctxt "@label:status"
  2032. msgid "Loading..."
  2033. msgstr "Lädt..."
  2034. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352
  2035. msgctxt "@label:status"
  2036. msgid "Unavailable"
  2037. msgstr "Nicht verfügbar"
  2038. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356
  2039. msgctxt "@label:status"
  2040. msgid "Unreachable"
  2041. msgstr "Nicht erreichbar"
  2042. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360
  2043. msgctxt "@label:status"
  2044. msgid "Idle"
  2045. msgstr "Leerlauf"
  2046. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369
  2047. msgctxt "@label:status"
  2048. msgid "Printing"
  2049. msgstr "Drucken"
  2050. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410
  2051. msgctxt "@label"
  2052. msgid "Untitled"
  2053. msgstr "Unbenannt"
  2054. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431
  2055. msgctxt "@label"
  2056. msgid "Anonymous"
  2057. msgstr "Anonym"
  2058. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458
  2059. msgctxt "@label:status"
  2060. msgid "Requires configuration changes"
  2061. msgstr "Erfordert Konfigurationsänderungen"
  2062. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496
  2063. msgctxt "@action:button"
  2064. msgid "Details"
  2065. msgstr "Details"
  2066. #: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30
  2067. msgctxt "@label"
  2068. msgid "Please select any upgrades made to this Ultimaker Original"
  2069. msgstr "Wählen Sie bitte alle Upgrades für dieses Ultimaker-Original"
  2070. #: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41
  2071. msgctxt "@label"
  2072. msgid "Heated Build Plate (official kit or self-built)"
  2073. msgstr "Beheizte Druckplatte (offizielles Kit oder Eigenbau)"
  2074. #: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30
  2075. msgctxt "@title"
  2076. msgid "Build Plate Leveling"
  2077. msgstr "Nivellierung der Druckplatte"
  2078. #: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44
  2079. msgctxt "@label"
  2080. 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."
  2081. 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."
  2082. #: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57
  2083. msgctxt "@label"
  2084. 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."
  2085. 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."
  2086. #: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75
  2087. msgctxt "@action:button"
  2088. msgid "Start Build Plate Leveling"
  2089. msgstr "Nivellierung der Druckplatte starten"
  2090. #: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87
  2091. msgctxt "@action:button"
  2092. msgid "Move to Next Position"
  2093. msgstr "Gehe zur nächsten Position"
  2094. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:15
  2095. msgctxt "@title:window"
  2096. msgid "Open Project"
  2097. msgstr "Projekt öffnen"
  2098. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:62
  2099. msgctxt "@action:ComboBox Update/override existing profile"
  2100. msgid "Update existing"
  2101. msgstr "Vorhandenes aktualisieren"
  2102. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:63
  2103. msgctxt "@action:ComboBox Save settings in a new profile"
  2104. msgid "Create new"
  2105. msgstr "Neu erstellen"
  2106. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:75
  2107. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:69
  2108. msgctxt "@action:title"
  2109. msgid "Summary - Cura Project"
  2110. msgstr "Zusammenfassung – Cura-Projekt"
  2111. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:97
  2112. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:93
  2113. msgctxt "@action:label"
  2114. msgid "Printer settings"
  2115. msgstr "Druckereinstellungen"
  2116. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:113
  2117. msgctxt "@info:tooltip"
  2118. msgid "How should the conflict in the machine be resolved?"
  2119. msgstr "Wie soll der Konflikt im Gerät gelöst werden?"
  2120. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:167
  2121. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:102
  2122. msgctxt "@action:label"
  2123. msgid "Type"
  2124. msgstr "Typ"
  2125. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:183
  2126. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117
  2127. msgctxt "@action:label"
  2128. msgid "Printer Group"
  2129. msgstr "Druckergruppe"
  2130. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:205
  2131. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:218
  2132. msgctxt "@action:label"
  2133. msgid "Profile settings"
  2134. msgstr "Profileinstellungen"
  2135. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:221
  2136. msgctxt "@info:tooltip"
  2137. msgid "How should the conflict in the profile be resolved?"
  2138. msgstr "Wie soll der Konflikt im Profil gelöst werden?"
  2139. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:242
  2140. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:353
  2141. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117
  2142. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:242
  2143. msgctxt "@action:label"
  2144. msgid "Name"
  2145. msgstr "Name"
  2146. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:258
  2147. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:259
  2148. msgctxt "@action:label"
  2149. msgid "Intent"
  2150. msgstr "Intent"
  2151. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:274
  2152. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:226
  2153. msgctxt "@action:label"
  2154. msgid "Not in profile"
  2155. msgstr "Nicht im Profil"
  2156. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:279
  2157. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:231
  2158. msgctxt "@action:label"
  2159. msgid "%1 override"
  2160. msgid_plural "%1 overrides"
  2161. msgstr[0] "%1 überschreiben"
  2162. msgstr[1] "%1 überschreibt"
  2163. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:290
  2164. msgctxt "@action:label"
  2165. msgid "Derivative from"
  2166. msgstr "Ableitung von"
  2167. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:295
  2168. msgctxt "@action:label"
  2169. msgid "%1, %2 override"
  2170. msgid_plural "%1, %2 overrides"
  2171. msgstr[0] "%1, %2 überschreiben"
  2172. msgstr[1] "%1, %2 überschreibt"
  2173. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:312
  2174. msgctxt "@action:label"
  2175. msgid "Material settings"
  2176. msgstr "Materialeinstellungen"
  2177. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:328
  2178. msgctxt "@info:tooltip"
  2179. msgid "How should the conflict in the material be resolved?"
  2180. msgstr "Wie soll der Konflikt im Material gelöst werden?"
  2181. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:373
  2182. msgctxt "@action:label"
  2183. msgid "Setting visibility"
  2184. msgstr "Sichtbarkeit einstellen"
  2185. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:382
  2186. msgctxt "@action:label"
  2187. msgid "Mode"
  2188. msgstr "Modus"
  2189. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:398
  2190. msgctxt "@action:label"
  2191. msgid "Visible settings:"
  2192. msgstr "Sichtbare Einstellungen:"
  2193. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:403
  2194. msgctxt "@action:label"
  2195. msgid "%1 out of %2"
  2196. msgstr "%1 von %2"
  2197. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:429
  2198. msgctxt "@action:warning"
  2199. msgid "Loading a project will clear all models on the build plate."
  2200. msgstr "Das Laden eines Projekts entfernt alle Modelle von der Druckplatte."
  2201. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:457
  2202. msgctxt "@action:button"
  2203. msgid "Open"
  2204. msgstr "Öffnen"
  2205. #: /mnt/projects/ultimaker/cura/Cura/plugins/ModelChecker/ModelChecker.qml:22
  2206. msgctxt "@info:tooltip"
  2207. msgid "Some things could be problematic in this print. Click to see tips for adjustment."
  2208. msgstr "Einige Punkte bei diesem Druck könnten problematisch sein. Klicken Sie, um Tipps für die Anpassung zu erhalten."
  2209. #: /mnt/projects/ultimaker/cura/Cura/plugins/MonitorStage/MonitorMain.qml:100
  2210. msgctxt "@info"
  2211. msgid ""
  2212. "Please make sure your printer has a connection:\n"
  2213. "- Check if the printer is turned on.\n"
  2214. "- Check if the printer is connected to the network.\n"
  2215. "- Check if you are signed in to discover cloud-connected printers."
  2216. msgstr ""
  2217. "Stellen Sie sicher, dass der Drucker verbunden ist:\n"
  2218. "– Prüfen Sie, ob der Drucker eingeschaltet ist.– Prüfen Sie, ob der Drucker mit dem Netzwerk verbunden ist.\n"
  2219. "– Prüfen Sie, ob Sie angemeldet sind, falls Sie über die Cloud verbundene Drucker suchen möchten."
  2220. #: /mnt/projects/ultimaker/cura/Cura/plugins/MonitorStage/MonitorMain.qml:117
  2221. msgctxt "@info"
  2222. msgid "Please connect your printer to the network."
  2223. msgstr "Verbinden Sie Ihren Drucker bitte mit dem Netzwerk."
  2224. #: /mnt/projects/ultimaker/cura/Cura/plugins/MonitorStage/MonitorMain.qml:155
  2225. msgctxt "@label link to technical assistance"
  2226. msgid "View user manuals online"
  2227. msgstr "Benutzerhandbücher online anzeigen"
  2228. #: /mnt/projects/ultimaker/cura/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17
  2229. msgctxt "@title:window"
  2230. msgid "More information on anonymous data collection"
  2231. msgstr "Weitere Informationen zur anonymen Datenerfassung"
  2232. #: /mnt/projects/ultimaker/cura/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74
  2233. msgctxt "@text:window"
  2234. 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:"
  2235. msgstr "Ultimaker Cura erfasst anonyme Daten, um die Druckqualität und Benutzererfahrung zu steigern. Nachfolgend ist ein Beispiel aller Daten, die geteilt werden:"
  2236. #: /mnt/projects/ultimaker/cura/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110
  2237. msgctxt "@text:window"
  2238. msgid "I don't want to send anonymous data"
  2239. msgstr "Ich möchte keine anonymen Daten senden"
  2240. #: /mnt/projects/ultimaker/cura/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119
  2241. msgctxt "@text:window"
  2242. msgid "Allow sending anonymous data"
  2243. msgstr "Senden von anonymen Daten erlauben"
  2244. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20
  2245. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49
  2246. msgctxt "@label"
  2247. msgid "Color scheme"
  2248. msgstr "Farbschema"
  2249. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:109
  2250. msgctxt "@label:listbox"
  2251. msgid "Material Color"
  2252. msgstr "Materialfarbe"
  2253. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:113
  2254. msgctxt "@label:listbox"
  2255. msgid "Line Type"
  2256. msgstr "Linientyp"
  2257. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:117
  2258. msgctxt "@label:listbox"
  2259. msgid "Speed"
  2260. msgstr "Geschwindigkeit"
  2261. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:121
  2262. msgctxt "@label:listbox"
  2263. msgid "Layer Thickness"
  2264. msgstr ""
  2265. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:125
  2266. msgctxt "@label:listbox"
  2267. msgid "Line Width"
  2268. msgstr ""
  2269. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:163
  2270. msgctxt "@label"
  2271. msgid "Compatibility Mode"
  2272. msgstr "Kompatibilitätsmodus"
  2273. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:237
  2274. msgctxt "@label"
  2275. msgid "Travels"
  2276. msgstr "Bewegungen"
  2277. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:243
  2278. msgctxt "@label"
  2279. msgid "Helpers"
  2280. msgstr "Helfer"
  2281. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:249
  2282. msgctxt "@label"
  2283. msgid "Shell"
  2284. msgstr "Gehäuse"
  2285. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:255
  2286. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65
  2287. msgctxt "@label"
  2288. msgid "Infill"
  2289. msgstr "Füllung"
  2290. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263
  2291. msgctxt "@label"
  2292. msgid "Starts"
  2293. msgstr ""
  2294. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:314
  2295. msgctxt "@label"
  2296. msgid "Only Show Top Layers"
  2297. msgstr "Nur obere Schichten anzeigen"
  2298. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:324
  2299. msgctxt "@label"
  2300. msgid "Show 5 Detailed Layers On Top"
  2301. msgstr "5 detaillierte Schichten oben anzeigen"
  2302. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:338
  2303. msgctxt "@label"
  2304. msgid "Top / Bottom"
  2305. msgstr "Oben/Unten"
  2306. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:342
  2307. msgctxt "@label"
  2308. msgid "Inner Wall"
  2309. msgstr "Innenwand"
  2310. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:405
  2311. msgctxt "@label"
  2312. msgid "min"
  2313. msgstr "min."
  2314. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:464
  2315. msgctxt "@label"
  2316. msgid "max"
  2317. msgstr "max."
  2318. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63
  2319. msgctxt "@title:label"
  2320. msgid "Nozzle Settings"
  2321. msgstr "Düseneinstellungen"
  2322. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75
  2323. msgctxt "@label"
  2324. msgid "Nozzle size"
  2325. msgstr "Düsengröße"
  2326. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79
  2327. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93
  2328. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109
  2329. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124
  2330. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74
  2331. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89
  2332. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104
  2333. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205
  2334. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225
  2335. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245
  2336. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265
  2337. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283
  2338. msgctxt "@label"
  2339. msgid "mm"
  2340. msgstr "mm"
  2341. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89
  2342. msgctxt "@label"
  2343. msgid "Compatible material diameter"
  2344. msgstr "Kompatibler Materialdurchmesser"
  2345. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105
  2346. msgctxt "@label"
  2347. msgid "Nozzle offset X"
  2348. msgstr "X-Versatz Düse"
  2349. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120
  2350. msgctxt "@label"
  2351. msgid "Nozzle offset Y"
  2352. msgstr "Y-Versatz Düse"
  2353. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135
  2354. msgctxt "@label"
  2355. msgid "Cooling Fan Number"
  2356. msgstr "Kühllüfter-Nr."
  2357. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163
  2358. msgctxt "@title:label"
  2359. msgid "Extruder Start G-code"
  2360. msgstr "G-Code Extruder-Start"
  2361. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177
  2362. msgctxt "@title:label"
  2363. msgid "Extruder End G-code"
  2364. msgstr "G-Code Extruder-Ende"
  2365. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42
  2366. msgctxt "@title:tab"
  2367. msgid "Printer"
  2368. msgstr "Drucker"
  2369. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56
  2370. msgctxt "@title:label"
  2371. msgid "Printer Settings"
  2372. msgstr "Druckereinstellungen"
  2373. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70
  2374. msgctxt "@label"
  2375. msgid "X (Width)"
  2376. msgstr "X (Breite)"
  2377. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85
  2378. msgctxt "@label"
  2379. msgid "Y (Depth)"
  2380. msgstr "Y (Tiefe)"
  2381. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100
  2382. msgctxt "@label"
  2383. msgid "Z (Height)"
  2384. msgstr "Z (Höhe)"
  2385. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114
  2386. msgctxt "@label"
  2387. msgid "Build plate shape"
  2388. msgstr "Druckbettform"
  2389. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127
  2390. msgctxt "@label"
  2391. msgid "Origin at center"
  2392. msgstr "Ausgang in Mitte"
  2393. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139
  2394. msgctxt "@label"
  2395. msgid "Heated bed"
  2396. msgstr "Heizbares Bett"
  2397. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151
  2398. msgctxt "@label"
  2399. msgid "Heated build volume"
  2400. msgstr "Druckraum aufgeheizt"
  2401. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163
  2402. msgctxt "@label"
  2403. msgid "G-code flavor"
  2404. msgstr "G-Code-Variante"
  2405. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187
  2406. msgctxt "@title:label"
  2407. msgid "Printhead Settings"
  2408. msgstr "Druckkopfeinstellungen"
  2409. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201
  2410. msgctxt "@label"
  2411. msgid "X min"
  2412. msgstr "X min."
  2413. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221
  2414. msgctxt "@label"
  2415. msgid "Y min"
  2416. msgstr "Y min."
  2417. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241
  2418. msgctxt "@label"
  2419. msgid "X max"
  2420. msgstr "X max."
  2421. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261
  2422. msgctxt "@label"
  2423. msgid "Y max"
  2424. msgstr "Y max."
  2425. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279
  2426. msgctxt "@label"
  2427. msgid "Gantry Height"
  2428. msgstr "Brückenhöhe"
  2429. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293
  2430. msgctxt "@label"
  2431. msgid "Number of Extruders"
  2432. msgstr "Anzahl Extruder"
  2433. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345
  2434. msgctxt "@label"
  2435. msgid "Apply Extruder offsets to GCode"
  2436. msgstr ""
  2437. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393
  2438. msgctxt "@title:label"
  2439. msgid "Start G-code"
  2440. msgstr "Start G-Code"
  2441. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404
  2442. msgctxt "@title:label"
  2443. msgid "End G-code"
  2444. msgstr "Ende G-Code"
  2445. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:19
  2446. msgctxt "@title:window"
  2447. msgid "Convert Image..."
  2448. msgstr "Bild konvertieren..."
  2449. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:33
  2450. msgctxt "@info:tooltip"
  2451. msgid "The maximum distance of each pixel from \"Base.\""
  2452. msgstr "Der Maximalabstand von jedem Pixel von der „Basis“."
  2453. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:38
  2454. msgctxt "@action:label"
  2455. msgid "Height (mm)"
  2456. msgstr "Höhe (mm)"
  2457. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:56
  2458. msgctxt "@info:tooltip"
  2459. msgid "The base height from the build plate in millimeters."
  2460. msgstr "Die Basishöhe von der Druckplatte in Millimetern."
  2461. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:61
  2462. msgctxt "@action:label"
  2463. msgid "Base (mm)"
  2464. msgstr "Basis (mm)"
  2465. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:79
  2466. msgctxt "@info:tooltip"
  2467. msgid "The width in millimeters on the build plate."
  2468. msgstr "Die Breite der Druckplatte in Millimetern."
  2469. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:84
  2470. msgctxt "@action:label"
  2471. msgid "Width (mm)"
  2472. msgstr "Breite (mm)"
  2473. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:103
  2474. msgctxt "@info:tooltip"
  2475. msgid "The depth in millimeters on the build plate"
  2476. msgstr "Die Tiefe der Druckplatte in Millimetern"
  2477. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:108
  2478. msgctxt "@action:label"
  2479. msgid "Depth (mm)"
  2480. msgstr "Tiefe (mm)"
  2481. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:126
  2482. msgctxt "@info:tooltip"
  2483. 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."
  2484. 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."
  2485. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:139
  2486. msgctxt "@item:inlistbox"
  2487. msgid "Darker is higher"
  2488. msgstr "Dunkler ist höher"
  2489. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:139
  2490. msgctxt "@item:inlistbox"
  2491. msgid "Lighter is higher"
  2492. msgstr "Heller ist höher"
  2493. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:149
  2494. msgctxt "@info:tooltip"
  2495. msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly."
  2496. msgstr "Für Lithophanien ist ein einfaches logarithmisches Modell für Transparenz verfügbar. Bei Höhenprofilen entsprechen die Pixelwerte den Höhen linear."
  2497. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:161
  2498. msgctxt "@item:inlistbox"
  2499. msgid "Linear"
  2500. msgstr "Linear"
  2501. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:161
  2502. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:172
  2503. msgctxt "@item:inlistbox"
  2504. msgid "Translucency"
  2505. msgstr "Transparenz"
  2506. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:171
  2507. msgctxt "@info:tooltip"
  2508. 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."
  2509. 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."
  2510. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:177
  2511. msgctxt "@action:label"
  2512. msgid "1mm Transmittance (%)"
  2513. msgstr "1 mm Durchlässigkeit (%)"
  2514. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:195
  2515. msgctxt "@info:tooltip"
  2516. msgid "The amount of smoothing to apply to the image."
  2517. msgstr "Die Stärke der Glättung, die für das Bild angewendet wird."
  2518. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:200
  2519. msgctxt "@action:label"
  2520. msgid "Smoothing"
  2521. msgstr "Glättung"
  2522. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28
  2523. msgctxt "@title"
  2524. msgid "My Backups"
  2525. msgstr "Meine Backups"
  2526. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38
  2527. msgctxt "@empty_state"
  2528. msgid "You don't have any backups currently. Use the 'Backup Now' button to create one."
  2529. msgstr "Sie verfügen derzeit über keine Backups. Verwenden Sie die Schaltfläche ‚Jetzt Backup erstellen‘, um ein Backup zu erstellen."
  2530. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60
  2531. msgctxt "@backup_limit_info"
  2532. msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones."
  2533. msgstr "In der Vorschau-Phase sind Sie auf 5 sichtbare Backups beschränkt. Ein Backup entfernen, um ältere anzusehen."
  2534. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34
  2535. msgctxt "@description"
  2536. msgid "Backup and synchronize your Cura settings."
  2537. msgstr "Ihre Cura-Einstellungen sichern und synchronisieren."
  2538. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22
  2539. msgctxt "@button"
  2540. msgid "Want more?"
  2541. msgstr "Möchten Sie mehr?"
  2542. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31
  2543. msgctxt "@button"
  2544. msgid "Backup Now"
  2545. msgstr "Jetzt Backup durchführen"
  2546. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43
  2547. msgctxt "@checkbox:description"
  2548. msgid "Auto Backup"
  2549. msgstr "Automatisches Backup"
  2550. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44
  2551. msgctxt "@checkbox:description"
  2552. msgid "Automatically create a backup each day that Cura is started."
  2553. msgstr "An jedem Tag, an dem Cura gestartet wird, ein automatisches Backup erstellen."
  2554. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21
  2555. msgctxt "@backuplist:label"
  2556. msgid "Cura Version"
  2557. msgstr "Cura-Version"
  2558. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29
  2559. msgctxt "@backuplist:label"
  2560. msgid "Machines"
  2561. msgstr "Maschinen"
  2562. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37
  2563. msgctxt "@backuplist:label"
  2564. msgid "Materials"
  2565. msgstr "Materialien"
  2566. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45
  2567. msgctxt "@backuplist:label"
  2568. msgid "Profiles"
  2569. msgstr "Profile"
  2570. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53
  2571. msgctxt "@backuplist:label"
  2572. msgid "Plugins"
  2573. msgstr "Plugins"
  2574. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71
  2575. msgctxt "@button"
  2576. msgid "Restore"
  2577. msgstr "Wiederherstellen"
  2578. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:99
  2579. msgctxt "@dialog:title"
  2580. msgid "Delete Backup"
  2581. msgstr "Backup löschen"
  2582. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100
  2583. msgctxt "@dialog:info"
  2584. msgid "Are you sure you want to delete this backup? This cannot be undone."
  2585. msgstr "Soll dieses Backup wirklich gelöscht werden? Der Vorgang kann nicht rückgängig gemacht werden."
  2586. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:108
  2587. msgctxt "@dialog:title"
  2588. msgid "Restore Backup"
  2589. msgstr "Backup wiederherstellen"
  2590. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109
  2591. msgctxt "@dialog:info"
  2592. msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?"
  2593. msgstr "Cura muss neu gestartet werden, um Ihre Datensicherung wiederherzustellen. Möchten Sie Cura jetzt schließen?"
  2594. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/main.qml:25
  2595. msgctxt "@title:window"
  2596. msgid "Cura Backups"
  2597. msgstr "Cura-Backups"
  2598. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/MaterialMenu.qml:13
  2599. msgctxt "@label:category menu label"
  2600. msgid "Material"
  2601. msgstr "Material"
  2602. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/MaterialMenu.qml:54
  2603. msgctxt "@label:category menu label"
  2604. msgid "Favorites"
  2605. msgstr "Favoriten"
  2606. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/MaterialMenu.qml:79
  2607. msgctxt "@label:category menu label"
  2608. msgid "Generic"
  2609. msgstr "Generisch"
  2610. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/FileMenu.qml:13
  2611. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27
  2612. msgctxt "@title:menu menubar:toplevel"
  2613. msgid "&File"
  2614. msgstr "&Datei"
  2615. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/FileMenu.qml:41
  2616. msgctxt "@title:menu menubar:file"
  2617. msgid "&Save Project..."
  2618. msgstr "&Projekt speichern ..."
  2619. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/FileMenu.qml:74
  2620. msgctxt "@title:menu menubar:file"
  2621. msgid "&Export..."
  2622. msgstr "&Exportieren..."
  2623. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/FileMenu.qml:85
  2624. msgctxt "@action:inmenu menubar:file"
  2625. msgid "Export Selection..."
  2626. msgstr "Auswahl exportieren..."
  2627. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/RecentFilesMenu.qml:15
  2628. msgctxt "@title:menu menubar:file"
  2629. msgid "Open &Recent"
  2630. msgstr "&Zuletzt geöffnet"
  2631. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:112
  2632. msgctxt "@label"
  2633. msgid "Select configuration"
  2634. msgstr "Konfiguration wählen"
  2635. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:223
  2636. msgctxt "@label"
  2637. msgid "Configurations"
  2638. msgstr "Konfigurationen"
  2639. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18
  2640. msgctxt "@header"
  2641. msgid "Configurations"
  2642. msgstr "Konfigurationen"
  2643. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25
  2644. msgctxt "@header"
  2645. msgid "Custom"
  2646. msgstr "Benutzerdefiniert"
  2647. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61
  2648. msgctxt "@label"
  2649. msgid "Printer"
  2650. msgstr "Drucker"
  2651. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213
  2652. msgctxt "@label"
  2653. msgid "Enabled"
  2654. msgstr "Aktiviert"
  2655. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267
  2656. msgctxt "@label"
  2657. msgid "Material"
  2658. msgstr "Material"
  2659. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:394
  2660. msgctxt "@label"
  2661. msgid "Use glue for better adhesion with this material combination."
  2662. msgstr "Für diese Materialkombination Kleber für eine bessere Haftung verwenden."
  2663. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137
  2664. msgctxt "@label"
  2665. msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile."
  2666. msgstr "Diese Konfigurationen sind nicht verfügbar, weil %1 nicht erkannt wird. Besuchen Sie bitte %2 für das Herunterladen des korrekten Materialprofils."
  2667. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138
  2668. msgctxt "@label"
  2669. msgid "Marketplace"
  2670. msgstr "Marktplatz"
  2671. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:57
  2672. msgctxt "@label"
  2673. msgid "Loading available configurations from the printer..."
  2674. msgstr "Verfügbare Konfigurationen werden von diesem Drucker geladen..."
  2675. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:58
  2676. msgctxt "@label"
  2677. msgid "The configurations are not available because the printer is disconnected."
  2678. msgstr "Die Konfigurationen sind nicht verfügbar, da der Drucker getrennt ist."
  2679. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ViewMenu.qml:12
  2680. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49
  2681. msgctxt "@title:menu menubar:toplevel"
  2682. msgid "&View"
  2683. msgstr "&Ansicht"
  2684. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ViewMenu.qml:19
  2685. msgctxt "@action:inmenu menubar:view"
  2686. msgid "&Camera position"
  2687. msgstr "&Kameraposition"
  2688. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ViewMenu.qml:44
  2689. msgctxt "@action:inmenu menubar:view"
  2690. msgid "Camera view"
  2691. msgstr "Kameraansicht"
  2692. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ViewMenu.qml:47
  2693. msgctxt "@action:inmenu menubar:view"
  2694. msgid "Perspective"
  2695. msgstr "Ansicht"
  2696. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ViewMenu.qml:59
  2697. msgctxt "@action:inmenu menubar:view"
  2698. msgid "Orthographic"
  2699. msgstr "Orthogonal"
  2700. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ViewMenu.qml:80
  2701. msgctxt "@action:inmenu menubar:view"
  2702. msgid "&Build plate"
  2703. msgstr "&Druckplatte"
  2704. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/PrinterMenu.qml:25
  2705. msgctxt "@label:category menu label"
  2706. msgid "Network enabled printers"
  2707. msgstr "Netzwerkfähige Drucker"
  2708. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/PrinterMenu.qml:42
  2709. msgctxt "@label:category menu label"
  2710. msgid "Local printers"
  2711. msgstr "Lokale Drucker"
  2712. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:13
  2713. msgctxt "@action:inmenu"
  2714. msgid "Visible Settings"
  2715. msgstr "Sichtbare Einstellungen"
  2716. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:42
  2717. msgctxt "@action:inmenu"
  2718. msgid "Collapse All Categories"
  2719. msgstr "Alle Kategorien schließen"
  2720. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:51
  2721. msgctxt "@action:inmenu"
  2722. msgid "Manage Setting Visibility..."
  2723. msgstr "Sichtbarkeit einstellen verwalten..."
  2724. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingsMenu.qml:13
  2725. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:51
  2726. msgctxt "@title:menu menubar:toplevel"
  2727. msgid "&Settings"
  2728. msgstr "&Einstellungen"
  2729. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingsMenu.qml:15
  2730. msgctxt "@title:menu menubar:settings"
  2731. msgid "&Printer"
  2732. msgstr "Dr&ucker"
  2733. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingsMenu.qml:29
  2734. msgctxt "@title:menu"
  2735. msgid "&Material"
  2736. msgstr "&Material"
  2737. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingsMenu.qml:44
  2738. msgctxt "@action:inmenu"
  2739. msgid "Set as Active Extruder"
  2740. msgstr "Als aktiven Extruder festlegen"
  2741. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingsMenu.qml:50
  2742. msgctxt "@action:inmenu"
  2743. msgid "Enable Extruder"
  2744. msgstr "Extruder aktivieren"
  2745. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingsMenu.qml:57
  2746. msgctxt "@action:inmenu"
  2747. msgid "Disable Extruder"
  2748. msgstr "Extruder deaktivieren"
  2749. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SaveProjectMenu.qml:15
  2750. msgctxt "@title:menu menubar:file"
  2751. msgid "Save Project..."
  2752. msgstr ""
  2753. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ContextMenu.qml:27
  2754. msgctxt "@label"
  2755. msgid "Print Selected Model With:"
  2756. msgid_plural "Print Selected Models With:"
  2757. msgstr[0] "Ausgewähltes Modell drucken mit:"
  2758. msgstr[1] "Ausgewählte Modelle drucken mit:"
  2759. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ContextMenu.qml:116
  2760. msgctxt "@title:window"
  2761. msgid "Multiply Selected Model"
  2762. msgid_plural "Multiply Selected Models"
  2763. msgstr[0] "Ausgewähltes Modell multiplizieren"
  2764. msgstr[1] "Ausgewählte Modelle multiplizieren"
  2765. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ContextMenu.qml:141
  2766. msgctxt "@label"
  2767. msgid "Number of Copies"
  2768. msgstr "Anzahl Kopien"
  2769. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/OpenFilesMenu.qml:15
  2770. msgctxt "@title:menu menubar:file"
  2771. msgid "Open File(s)..."
  2772. msgstr ""
  2773. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146
  2774. msgctxt "@label:header"
  2775. msgid "Custom profiles"
  2776. msgstr "Benutzerdefinierte Profile"
  2777. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244
  2778. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:564
  2779. msgctxt "@action:button"
  2780. msgid "Discard current changes"
  2781. msgstr "Aktuelle Änderungen verwerfen"
  2782. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47
  2783. msgctxt "@label"
  2784. msgid "Profile"
  2785. msgstr "Profil"
  2786. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170
  2787. msgctxt "@tooltip"
  2788. msgid ""
  2789. "Some setting/override values are different from the values stored in the profile.\n"
  2790. "\n"
  2791. "Click to open the profile manager."
  2792. msgstr ""
  2793. "Einige Einstellungs-/Überschreibungswerte unterscheiden sich von den im Profil gespeicherten Werten.\n"
  2794. "\n"
  2795. "Klicken Sie, um den Profilmanager zu öffnen."
  2796. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13
  2797. msgctxt "@label:Should be short"
  2798. msgid "On"
  2799. msgstr "Ein"
  2800. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14
  2801. msgctxt "@label:Should be short"
  2802. msgid "Off"
  2803. msgstr "Aus"
  2804. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:33
  2805. msgctxt "@label"
  2806. msgid "Experimental"
  2807. msgstr "Experimentell"
  2808. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144
  2809. msgctxt "@button"
  2810. msgid "Recommended"
  2811. msgstr "Empfohlen"
  2812. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158
  2813. msgctxt "@button"
  2814. msgid "Custom"
  2815. msgstr "Benutzerdefiniert"
  2816. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19
  2817. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374
  2818. msgctxt "@label"
  2819. msgid "Print settings"
  2820. msgstr "Druckeinstellungen"
  2821. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21
  2822. msgctxt "@label shown when we load a Gcode file"
  2823. msgid "Print setup disabled. G-code file can not be modified."
  2824. msgstr "Druckeinrichtung ist deaktiviert. G-Code-Datei kann nicht geändert werden."
  2825. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:193
  2826. msgctxt "@label"
  2827. msgid "Gradual infill"
  2828. msgstr "Stufenweise Füllung"
  2829. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:232
  2830. msgctxt "@label"
  2831. msgid "Gradual infill will gradually increase the amount of infill towards the top."
  2832. msgstr "Die graduelle Füllung steigert die Menge der Füllung nach oben hin schrittweise."
  2833. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52
  2834. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:728
  2835. msgctxt "@label"
  2836. msgid "Profiles"
  2837. msgstr "Profile"
  2838. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:81
  2839. msgctxt "@tooltip"
  2840. msgid "You have modified some profile settings. If you want to change these go to custom mode."
  2841. msgstr "Sie haben einige Profileinstellungen geändert. Wenn Sie diese ändern möchten, wechseln Sie in den Modus „Benutzerdefiniert“."
  2842. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30
  2843. msgctxt "@label"
  2844. msgid "Support"
  2845. msgstr "Stützstruktur"
  2846. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:71
  2847. msgctxt "@label"
  2848. msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing."
  2849. 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."
  2850. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29
  2851. msgctxt "@label"
  2852. msgid "Adhesion"
  2853. msgstr "Haftung"
  2854. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:74
  2855. msgctxt "@label"
  2856. 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."
  2857. 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."
  2858. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31
  2859. msgctxt "@label %1 is filled in with the type of a profile. %2 is filled with a list of numbers (eg '1' or '1, 2')"
  2860. msgid "There is no %1 profile for the configuration in extruder %2. The default intent will be used instead"
  2861. msgid_plural "There is no %1 profile for the configurations in extruders %2. The default intent will be used instead"
  2862. msgstr[0] "Es gibt kein %1-Profil für die Konfiguration in der Extruder %2. Es wird stattdessen der Standard verwendet"
  2863. msgstr[1] "Es gibt kein %1-Profil für die Konfigurationen in den Extrudern %2. Es wird stattdessen der Standard verwendet"
  2864. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Widgets/ComboBox.qml:24
  2865. msgctxt "@label"
  2866. msgid "No items to select from"
  2867. msgstr ""
  2868. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintMonitor.qml:140
  2869. msgctxt "@label"
  2870. msgid "Active print"
  2871. msgstr "Aktiver Druck"
  2872. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintMonitor.qml:148
  2873. msgctxt "@label"
  2874. msgid "Job Name"
  2875. msgstr "Name des Auftrags"
  2876. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintMonitor.qml:156
  2877. msgctxt "@label"
  2878. msgid "Printing Time"
  2879. msgstr "Druckzeit"
  2880. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintMonitor.qml:164
  2881. msgctxt "@label"
  2882. msgid "Estimated time left"
  2883. msgstr "Geschätzte verbleibende Zeit"
  2884. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:15
  2885. msgctxt "@title:window"
  2886. msgid "Discard or Keep changes"
  2887. msgstr "Änderungen verwerfen oder übernehmen"
  2888. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:57
  2889. msgctxt "@text:window, %1 is a profile name"
  2890. msgid ""
  2891. "You have customized some profile settings.\n"
  2892. "Would you like to Keep these changed settings after switching profiles?\n"
  2893. "Alternatively, you can discard the changes to load the defaults from '%1'."
  2894. msgstr ""
  2895. "Sie haben einige Profileinstellungen personalisiert.\n"
  2896. "Möchten Sie diese geänderten Einstellungen nach einem Profilwechsel beibehalten?\n"
  2897. "Sie können die Änderungen auch verwerfen, um die Standardeinstellungen von '%1' zu laden."
  2898. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:111
  2899. msgctxt "@title:column"
  2900. msgid "Profile settings"
  2901. msgstr "Profileinstellungen"
  2902. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:125
  2903. msgctxt "@title:column"
  2904. msgid "Current changes"
  2905. msgstr "Aktuelle Änderungen"
  2906. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:158
  2907. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:747
  2908. msgctxt "@option:discardOrKeep"
  2909. msgid "Always ask me this"
  2910. msgstr "Stets nachfragen"
  2911. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:159
  2912. msgctxt "@option:discardOrKeep"
  2913. msgid "Discard and never ask again"
  2914. msgstr "Verwerfen und zukünftig nicht mehr nachfragen"
  2915. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160
  2916. msgctxt "@option:discardOrKeep"
  2917. msgid "Keep and never ask again"
  2918. msgstr "Übernehmen und zukünftig nicht mehr nachfragen"
  2919. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:197
  2920. msgctxt "@action:button"
  2921. msgid "Discard changes"
  2922. msgstr "Änderungen verwerfen"
  2923. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:210
  2924. msgctxt "@action:button"
  2925. msgid "Keep changes"
  2926. msgstr "Änderungen speichern"
  2927. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:15
  2928. msgctxt "@title:window The argument is the application name."
  2929. msgid "About %1"
  2930. msgstr "Über %1"
  2931. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:57
  2932. msgctxt "@label"
  2933. msgid "version: %1"
  2934. msgstr "Version: %1"
  2935. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:72
  2936. msgctxt "@label"
  2937. msgid "End-to-end solution for fused filament 3D printing."
  2938. msgstr "Komplettlösung für den 3D-Druck mit geschmolzenem Filament."
  2939. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:85
  2940. msgctxt "@info:credit"
  2941. msgid ""
  2942. "Cura is developed by Ultimaker B.V. in cooperation with the community.\n"
  2943. "Cura proudly uses the following open source projects:"
  2944. msgstr ""
  2945. "Cura wurde von Ultimaker B.V. in Zusammenarbeit mit der Community entwickelt.\n"
  2946. "Cura verwendet mit Stolz die folgenden Open Source-Projekte:"
  2947. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:135
  2948. msgctxt "@label"
  2949. msgid "Graphical user interface"
  2950. msgstr "Grafische Benutzerschnittstelle"
  2951. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:136
  2952. msgctxt "@label"
  2953. msgid "Application framework"
  2954. msgstr "Anwendungsrahmenwerk"
  2955. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:137
  2956. msgctxt "@label"
  2957. msgid "G-code generator"
  2958. msgstr "G-Code-Generator"
  2959. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:138
  2960. msgctxt "@label"
  2961. msgid "Interprocess communication library"
  2962. msgstr "Bibliothek Interprozess-Kommunikation"
  2963. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:140
  2964. msgctxt "@label"
  2965. msgid "Programming language"
  2966. msgstr "Programmiersprache"
  2967. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:141
  2968. msgctxt "@label"
  2969. msgid "GUI framework"
  2970. msgstr "GUI-Rahmenwerk"
  2971. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:142
  2972. msgctxt "@label"
  2973. msgid "GUI framework bindings"
  2974. msgstr "GUI-Rahmenwerk Einbindungen"
  2975. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:143
  2976. msgctxt "@label"
  2977. msgid "C/C++ Binding library"
  2978. msgstr "C/C++ Einbindungsbibliothek"
  2979. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:144
  2980. msgctxt "@label"
  2981. msgid "Data interchange format"
  2982. msgstr "Format Datenaustausch"
  2983. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:145
  2984. msgctxt "@label"
  2985. msgid "Support library for scientific computing"
  2986. msgstr "Support-Bibliothek für wissenschaftliche Berechnung"
  2987. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:146
  2988. msgctxt "@label"
  2989. msgid "Support library for faster math"
  2990. msgstr "Support-Bibliothek für schnelleres Rechnen"
  2991. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:147
  2992. msgctxt "@label"
  2993. msgid "Support library for handling STL files"
  2994. msgstr "Support-Bibliothek für die Handhabung von STL-Dateien"
  2995. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:148
  2996. msgctxt "@label"
  2997. msgid "Support library for handling planar objects"
  2998. msgstr "Support-Bibliothek für die Handhabung von ebenen Objekten"
  2999. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:149
  3000. msgctxt "@label"
  3001. msgid "Support library for handling triangular meshes"
  3002. msgstr "Support-Bibliothek für die Handhabung von dreieckigen Netzen"
  3003. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:150
  3004. msgctxt "@label"
  3005. msgid "Support library for handling 3MF files"
  3006. msgstr "Support-Bibliothek für die Handhabung von 3MF-Dateien"
  3007. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:151
  3008. msgctxt "@label"
  3009. msgid "Support library for file metadata and streaming"
  3010. msgstr "Support-Bibliothek für Datei-Metadaten und Streaming"
  3011. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:152
  3012. msgctxt "@label"
  3013. msgid "Serial communication library"
  3014. msgstr "Bibliothek für serielle Kommunikation"
  3015. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:153
  3016. msgctxt "@label"
  3017. msgid "ZeroConf discovery library"
  3018. msgstr "Bibliothek für ZeroConf-Erkennung"
  3019. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:154
  3020. msgctxt "@label"
  3021. msgid "Polygon clipping library"
  3022. msgstr "Bibliothek für Polygon-Beschneidung"
  3023. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:155
  3024. msgctxt "@Label"
  3025. msgid "Static type checker for Python"
  3026. msgstr "Statischer Prüfer für Python"
  3027. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:156
  3028. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:157
  3029. msgctxt "@Label"
  3030. msgid "Root Certificates for validating SSL trustworthiness"
  3031. msgstr "Root-Zertifikate zur Validierung der SSL-Vertrauenswürdigkeit"
  3032. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:158
  3033. msgctxt "@Label"
  3034. msgid "Python Error tracking library"
  3035. msgstr "Python-Fehlerverfolgungs-Bibliothek"
  3036. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:159
  3037. msgctxt "@label"
  3038. msgid "Polygon packing library, developed by Prusa Research"
  3039. msgstr "Polygon-Packaging-Bibliothek, entwickelt von Prusa Research"
  3040. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:160
  3041. msgctxt "@label"
  3042. msgid "Python bindings for libnest2d"
  3043. msgstr "Python-Bindungen für libnest2d"
  3044. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:161
  3045. msgctxt "@label"
  3046. msgid "Support library for system keyring access"
  3047. msgstr ""
  3048. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:162
  3049. msgctxt "@label"
  3050. msgid "Python extensions for Microsoft Windows"
  3051. msgstr ""
  3052. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:163
  3053. msgctxt "@label"
  3054. msgid "Font"
  3055. msgstr "Schriftart"
  3056. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:164
  3057. msgctxt "@label"
  3058. msgid "SVG icons"
  3059. msgstr "SVG-Symbole"
  3060. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:165
  3061. msgctxt "@label"
  3062. msgid "Linux cross-distribution application deployment"
  3063. msgstr "Distributionsunabhängiges Format für Linux-Anwendungen"
  3064. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19
  3065. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:627
  3066. msgctxt "@title:window"
  3067. msgid "Open file(s)"
  3068. msgstr "Datei(en) öffnen"
  3069. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59
  3070. msgctxt "@text:window"
  3071. 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?"
  3072. 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?"
  3073. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94
  3074. msgctxt "@action:button"
  3075. msgid "Import all as models"
  3076. msgstr "Alle als Modelle importieren"
  3077. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:15
  3078. msgctxt "@title:window"
  3079. msgid "Save Project"
  3080. msgstr "Projekt speichern"
  3081. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:173
  3082. msgctxt "@action:label"
  3083. msgid "Extruder %1"
  3084. msgstr "Extruder %1"
  3085. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:189
  3086. msgctxt "@action:label"
  3087. msgid "%1 & material"
  3088. msgstr "%1 & Material"
  3089. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191
  3090. msgctxt "@action:label"
  3091. msgid "Material"
  3092. msgstr "Material"
  3093. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:281
  3094. msgctxt "@action:label"
  3095. msgid "Don't show project summary on save again"
  3096. msgstr "Projektzusammenfassung beim Speichern nicht erneut anzeigen"
  3097. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:300
  3098. msgctxt "@action:button"
  3099. msgid "Save"
  3100. msgstr "Speichern"
  3101. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20
  3102. msgctxt "@title:window"
  3103. msgid "Open project file"
  3104. msgstr "Projektdatei öffnen"
  3105. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88
  3106. msgctxt "@text:window"
  3107. msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?"
  3108. msgstr "Dies ist eine Cura-Projektdatei. Möchten Sie diese als Projekt öffnen oder die Modelle hieraus importieren?"
  3109. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98
  3110. msgctxt "@text:window"
  3111. msgid "Remember my choice"
  3112. msgstr "Meine Auswahl merken"
  3113. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117
  3114. msgctxt "@action:button"
  3115. msgid "Open as project"
  3116. msgstr "Als Projekt öffnen"
  3117. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126
  3118. msgctxt "@action:button"
  3119. msgid "Import models"
  3120. msgstr "Modelle importieren"
  3121. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/JobSpecs.qml:99
  3122. msgctxt "@text Print job name"
  3123. msgid "Untitled"
  3124. msgstr "Unbenannt"
  3125. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56
  3126. msgctxt "@label"
  3127. msgid "Welcome to Ultimaker Cura"
  3128. msgstr "Willkommen bei Ultimaker Cura"
  3129. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68
  3130. msgctxt "@text"
  3131. msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments."
  3132. msgstr ""
  3133. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86
  3134. msgctxt "@button"
  3135. msgid "Get started"
  3136. msgstr "Erste Schritte"
  3137. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93
  3138. msgctxt "@label"
  3139. msgid "Empty"
  3140. msgstr "Leer"
  3141. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24
  3142. msgctxt "@label"
  3143. msgid "Help us to improve Ultimaker Cura"
  3144. msgstr "Helfen Sie uns, Ultimaker Cura zu verbessern"
  3145. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57
  3146. msgctxt "@text"
  3147. msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:"
  3148. msgstr "Ultimaker Cura erfasst anonyme Daten, um die Druckqualität und Benutzererfahrung zu steigern. Dazu gehören:"
  3149. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71
  3150. msgctxt "@text"
  3151. msgid "Machine types"
  3152. msgstr "Gerätetypen"
  3153. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77
  3154. msgctxt "@text"
  3155. msgid "Material usage"
  3156. msgstr "Materialverbrauch"
  3157. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83
  3158. msgctxt "@text"
  3159. msgid "Number of slices"
  3160. msgstr "Anzahl der Slices"
  3161. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89
  3162. msgctxt "@text"
  3163. msgid "Print settings"
  3164. msgstr "Druckeinstellungen"
  3165. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102
  3166. msgctxt "@text"
  3167. msgid "Data collected by Ultimaker Cura will not contain any personal information."
  3168. msgstr "Die von Ultimaker Cura erfassten Daten enthalten keine personenbezogenen Daten."
  3169. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103
  3170. msgctxt "@text"
  3171. msgid "More information"
  3172. msgstr "Mehr Informationen"
  3173. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70
  3174. msgctxt "@label"
  3175. msgid "Add printer by IP address"
  3176. msgstr "Drucker nach IP-Adresse hinzufügen"
  3177. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133
  3178. msgctxt "@text"
  3179. msgid "Enter your printer's IP address."
  3180. msgstr "Geben Sie die IP-Adresse Ihres Druckers ein."
  3181. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158
  3182. msgctxt "@button"
  3183. msgid "Add"
  3184. msgstr "Hinzufügen"
  3185. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206
  3186. msgctxt "@label"
  3187. msgid "Could not connect to device."
  3188. msgstr "Verbindung mit Drucker nicht möglich."
  3189. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207
  3190. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212
  3191. msgctxt "@label"
  3192. msgid "Can't connect to your Ultimaker printer?"
  3193. msgstr "Sie können keine Verbindung zu Ihrem Ultimaker-Drucker herstellen?"
  3194. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211
  3195. msgctxt "@label"
  3196. msgid "The printer at this address has not responded yet."
  3197. msgstr "Der Drucker unter dieser Adresse hat noch nicht reagiert."
  3198. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245
  3199. msgctxt "@label"
  3200. msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group."
  3201. 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."
  3202. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334
  3203. msgctxt "@button"
  3204. msgid "Back"
  3205. msgstr "Zurück"
  3206. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347
  3207. msgctxt "@button"
  3208. msgid "Connect"
  3209. msgstr "Verbinden"
  3210. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24
  3211. msgctxt "@label"
  3212. msgid "Add a printer"
  3213. msgstr "Einen Drucker hinzufügen"
  3214. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39
  3215. msgctxt "@label"
  3216. msgid "Add a networked printer"
  3217. msgstr "Einen vernetzten Drucker hinzufügen"
  3218. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90
  3219. msgctxt "@label"
  3220. msgid "Add a non-networked printer"
  3221. msgstr "Einen unvernetzten Drucker hinzufügen"
  3222. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:28
  3223. msgctxt "@label"
  3224. msgid "What's New"
  3225. msgstr ""
  3226. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47
  3227. msgctxt "@label"
  3228. msgid "Add a Cloud printer"
  3229. msgstr "Einen Cloud-Drucker hinzufügen"
  3230. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74
  3231. msgctxt "@label"
  3232. msgid "Waiting for Cloud response"
  3233. msgstr "Auf eine Antwort von der Cloud warten"
  3234. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86
  3235. msgctxt "@label"
  3236. msgid "No printers found in your account?"
  3237. msgstr "Keine Drucker in Ihrem Konto gefunden?"
  3238. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121
  3239. msgctxt "@label"
  3240. msgid "The following printers in your account have been added in Cura:"
  3241. msgstr "Folgende Drucker in Ihrem Konto wurden zu Cura hinzugefügt:"
  3242. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204
  3243. msgctxt "@button"
  3244. msgid "Add printer manually"
  3245. msgstr "Drucker manuell hinzufügen"
  3246. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:64
  3247. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/GeneralOperations.qml:20
  3248. msgctxt "@label"
  3249. msgid "Sign in to the Ultimaker platform"
  3250. msgstr ""
  3251. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:124
  3252. msgctxt "@text"
  3253. msgid "Add material settings and plugins from the Marketplace"
  3254. msgstr ""
  3255. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:154
  3256. msgctxt "@text"
  3257. msgid "Backup and sync your material settings and plugins"
  3258. msgstr ""
  3259. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:184
  3260. msgctxt "@text"
  3261. msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community"
  3262. msgstr ""
  3263. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:217
  3264. msgctxt "@text"
  3265. msgid "Create a free Ultimaker Account"
  3266. msgstr ""
  3267. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:230
  3268. msgctxt "@button"
  3269. msgid "Skip"
  3270. msgstr "Überspringen"
  3271. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23
  3272. msgctxt "@label"
  3273. msgid "User Agreement"
  3274. msgstr "Benutzervereinbarung"
  3275. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70
  3276. msgctxt "@button"
  3277. msgid "Decline and close"
  3278. msgstr "Ablehnen und schließen"
  3279. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24
  3280. msgctxt "@label"
  3281. msgid "Release Notes"
  3282. msgstr ""
  3283. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43
  3284. msgctxt "@label"
  3285. msgid "There is no printer found over your network."
  3286. msgstr "Kein Drucker in Ihrem Netzwerk gefunden."
  3287. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182
  3288. msgctxt "@label"
  3289. msgid "Refresh"
  3290. msgstr "Aktualisieren"
  3291. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193
  3292. msgctxt "@label"
  3293. msgid "Add printer by IP"
  3294. msgstr "Drucker nach IP hinzufügen"
  3295. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204
  3296. msgctxt "@label"
  3297. msgid "Add cloud printer"
  3298. msgstr "Ein Cloud-Drucker hinzufügen"
  3299. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:240
  3300. msgctxt "@label"
  3301. msgid "Troubleshooting"
  3302. msgstr "Störungen beheben"
  3303. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:230
  3304. msgctxt "@label"
  3305. msgid "Manufacturer"
  3306. msgstr "Hersteller"
  3307. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:247
  3308. msgctxt "@label"
  3309. msgid "Profile author"
  3310. msgstr "Autor des Profils"
  3311. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:265
  3312. msgctxt "@label"
  3313. msgid "Printer name"
  3314. msgstr "Druckername"
  3315. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:274
  3316. msgctxt "@text"
  3317. msgid "Please name your printer"
  3318. msgstr "Bitte weisen Sie Ihrem Drucker einen Namen zu"
  3319. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/UserOperations.qml:81
  3320. msgctxt "@label The argument is a timestamp"
  3321. msgid "Last update: %1"
  3322. msgstr "Letztes Update: %1"
  3323. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/UserOperations.qml:109
  3324. msgctxt "@button"
  3325. msgid "Ultimaker Account"
  3326. msgstr "Ultimaker‑Konto"
  3327. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/UserOperations.qml:125
  3328. msgctxt "@button"
  3329. msgid "Sign Out"
  3330. msgstr "Abmelden"
  3331. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/GeneralOperations.qml:42
  3332. msgctxt "@text"
  3333. msgid ""
  3334. "- Add material profiles and plug-ins from the Marketplace\n"
  3335. "- Back-up and sync your material profiles and plug-ins\n"
  3336. "- Share ideas and get help from 48,000+ users in the Ultimaker community"
  3337. msgstr ""
  3338. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/GeneralOperations.qml:62
  3339. msgctxt "@button"
  3340. msgid "Create a free Ultimaker account"
  3341. msgstr ""
  3342. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/AccountWidget.qml:24
  3343. msgctxt "@action:button"
  3344. msgid "Sign in"
  3345. msgstr "Anmelden"
  3346. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/SyncState.qml:28
  3347. msgctxt "@label"
  3348. msgid "Checking..."
  3349. msgstr "Überprüfung läuft ..."
  3350. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/SyncState.qml:35
  3351. msgctxt "@label"
  3352. msgid "Account synced"
  3353. msgstr "Konto wurde synchronisiert"
  3354. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/SyncState.qml:42
  3355. msgctxt "@label"
  3356. msgid "Something went wrong..."
  3357. msgstr "Irgendetwas ist schief gelaufen ..."
  3358. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/SyncState.qml:96
  3359. msgctxt "@button"
  3360. msgid "Install pending updates"
  3361. msgstr "Ausstehende Updates installieren"
  3362. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/SyncState.qml:118
  3363. msgctxt "@button"
  3364. msgid "Check for account updates"
  3365. msgstr "Nach Updates für das Konto suchen"
  3366. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ObjectSelector.qml:59
  3367. msgctxt "@label"
  3368. msgid "Object list"
  3369. msgstr "Objektliste"
  3370. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:82
  3371. msgctxt "@action:inmenu"
  3372. msgid "Show Online Troubleshooting Guide"
  3373. msgstr "Online-Fehlerbehebung anzeigen"
  3374. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:89
  3375. msgctxt "@action:inmenu"
  3376. msgid "Toggle Full Screen"
  3377. msgstr "Umschalten auf Vollbild-Modus"
  3378. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:97
  3379. msgctxt "@action:inmenu"
  3380. msgid "Exit Full Screen"
  3381. msgstr "Vollbildmodus beenden"
  3382. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:104
  3383. msgctxt "@action:inmenu menubar:edit"
  3384. msgid "&Undo"
  3385. msgstr "&Rückgängig machen"
  3386. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:114
  3387. msgctxt "@action:inmenu menubar:edit"
  3388. msgid "&Redo"
  3389. msgstr "&Wiederholen"
  3390. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:124
  3391. msgctxt "@action:inmenu menubar:file"
  3392. msgid "&Quit"
  3393. msgstr "&Beenden"
  3394. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:132
  3395. msgctxt "@action:inmenu menubar:view"
  3396. msgid "3D View"
  3397. msgstr "3D-Ansicht"
  3398. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:139
  3399. msgctxt "@action:inmenu menubar:view"
  3400. msgid "Front View"
  3401. msgstr "Vorderansicht"
  3402. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:146
  3403. msgctxt "@action:inmenu menubar:view"
  3404. msgid "Top View"
  3405. msgstr "Draufsicht"
  3406. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:153
  3407. msgctxt "@action:inmenu menubar:view"
  3408. msgid "Left Side View"
  3409. msgstr "Ansicht von links"
  3410. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:160
  3411. msgctxt "@action:inmenu menubar:view"
  3412. msgid "Right Side View"
  3413. msgstr "Ansicht von rechts"
  3414. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:167
  3415. msgctxt "@action:inmenu"
  3416. msgid "Configure Cura..."
  3417. msgstr "Cura konfigurieren..."
  3418. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:174
  3419. msgctxt "@action:inmenu menubar:printer"
  3420. msgid "&Add Printer..."
  3421. msgstr "&Drucker hinzufügen..."
  3422. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:180
  3423. msgctxt "@action:inmenu menubar:printer"
  3424. msgid "Manage Pr&inters..."
  3425. msgstr "Dr&ucker verwalten..."
  3426. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:187
  3427. msgctxt "@action:inmenu"
  3428. msgid "Manage Materials..."
  3429. msgstr "Materialien werden verwaltet..."
  3430. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:195
  3431. msgctxt "@action:inmenu"
  3432. msgid "Add more materials from Marketplace"
  3433. msgstr "Weiteres Material aus Marketplace hinzufügen"
  3434. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:202
  3435. msgctxt "@action:inmenu menubar:profile"
  3436. msgid "&Update profile with current settings/overrides"
  3437. msgstr "&Profil mit aktuellen Einstellungen/Überschreibungen aktualisieren"
  3438. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:210
  3439. msgctxt "@action:inmenu menubar:profile"
  3440. msgid "&Discard current changes"
  3441. msgstr "&Aktuelle Änderungen verwerfen"
  3442. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:222
  3443. msgctxt "@action:inmenu menubar:profile"
  3444. msgid "&Create profile from current settings/overrides..."
  3445. msgstr "P&rofil von aktuellen Einstellungen/Überschreibungen erstellen..."
  3446. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:228
  3447. msgctxt "@action:inmenu menubar:profile"
  3448. msgid "Manage Profiles..."
  3449. msgstr "Profile verwalten..."
  3450. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:236
  3451. msgctxt "@action:inmenu menubar:help"
  3452. msgid "Show Online &Documentation"
  3453. msgstr "Online-&Dokumentation anzeigen"
  3454. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:244
  3455. msgctxt "@action:inmenu menubar:help"
  3456. msgid "Report a &Bug"
  3457. msgstr "&Fehler melden"
  3458. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:252
  3459. msgctxt "@action:inmenu menubar:help"
  3460. msgid "What's New"
  3461. msgstr "Neuheiten"
  3462. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:258
  3463. msgctxt "@action:inmenu menubar:help"
  3464. msgid "About..."
  3465. msgstr "Über..."
  3466. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:265
  3467. msgctxt "@action:inmenu menubar:edit"
  3468. msgid "Delete Selected"
  3469. msgstr ""
  3470. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:275
  3471. msgctxt "@action:inmenu menubar:edit"
  3472. msgid "Center Selected"
  3473. msgstr ""
  3474. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:284
  3475. msgctxt "@action:inmenu menubar:edit"
  3476. msgid "Multiply Selected"
  3477. msgstr ""
  3478. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:293
  3479. msgctxt "@action:inmenu"
  3480. msgid "Delete Model"
  3481. msgstr "Modell löschen"
  3482. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:301
  3483. msgctxt "@action:inmenu"
  3484. msgid "Ce&nter Model on Platform"
  3485. msgstr "Modell auf Druckplatte ze&ntrieren"
  3486. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:307
  3487. msgctxt "@action:inmenu menubar:edit"
  3488. msgid "&Group Models"
  3489. msgstr "Modelle &gruppieren"
  3490. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:327
  3491. msgctxt "@action:inmenu menubar:edit"
  3492. msgid "Ungroup Models"
  3493. msgstr "Gruppierung für Modelle aufheben"
  3494. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:337
  3495. msgctxt "@action:inmenu menubar:edit"
  3496. msgid "&Merge Models"
  3497. msgstr "Modelle &zusammenführen"
  3498. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:347
  3499. msgctxt "@action:inmenu"
  3500. msgid "&Multiply Model..."
  3501. msgstr "Modell &multiplizieren..."
  3502. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:354
  3503. msgctxt "@action:inmenu menubar:edit"
  3504. msgid "Select All Models"
  3505. msgstr "Alle Modelle wählen"
  3506. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:364
  3507. msgctxt "@action:inmenu menubar:edit"
  3508. msgid "Clear Build Plate"
  3509. msgstr "Druckplatte reinigen"
  3510. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:374
  3511. msgctxt "@action:inmenu menubar:file"
  3512. msgid "Reload All Models"
  3513. msgstr "Alle Modelle neu laden"
  3514. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:383
  3515. msgctxt "@action:inmenu menubar:edit"
  3516. msgid "Arrange All Models To All Build Plates"
  3517. msgstr "Alle Modelle an allen Druckplatten anordnen"
  3518. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:390
  3519. msgctxt "@action:inmenu menubar:edit"
  3520. msgid "Arrange All Models"
  3521. msgstr "Alle Modelle anordnen"
  3522. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:398
  3523. msgctxt "@action:inmenu menubar:edit"
  3524. msgid "Arrange Selection"
  3525. msgstr "Anordnung auswählen"
  3526. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:405
  3527. msgctxt "@action:inmenu menubar:edit"
  3528. msgid "Reset All Model Positions"
  3529. msgstr "Alle Modellpositionen zurücksetzen"
  3530. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:412
  3531. msgctxt "@action:inmenu menubar:edit"
  3532. msgid "Reset All Model Transformations"
  3533. msgstr "Alle Modelltransformationen zurücksetzen"
  3534. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:421
  3535. msgctxt "@action:inmenu menubar:file"
  3536. msgid "&Open File(s)..."
  3537. msgstr "&Datei(en) öffnen..."
  3538. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:431
  3539. msgctxt "@action:inmenu menubar:file"
  3540. msgid "&New Project..."
  3541. msgstr "&Neues Projekt..."
  3542. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:438
  3543. msgctxt "@action:inmenu menubar:help"
  3544. msgid "Show Configuration Folder"
  3545. msgstr "Konfigurationsordner anzeigen"
  3546. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:445
  3547. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:538
  3548. msgctxt "@action:menu"
  3549. msgid "Configure setting visibility..."
  3550. msgstr "Sichtbarkeit einstellen wird konfiguriert..."
  3551. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:452
  3552. msgctxt "@action:menu"
  3553. msgid "&Marketplace"
  3554. msgstr "&Marktplatz"
  3555. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfileTab.qml:61
  3556. msgctxt "@info:status"
  3557. msgid "Calculated"
  3558. msgstr "Berechnet"
  3559. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfileTab.qml:75
  3560. msgctxt "@title:column"
  3561. msgid "Setting"
  3562. msgstr "Einstellung"
  3563. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfileTab.qml:82
  3564. msgctxt "@title:column"
  3565. msgid "Profile"
  3566. msgstr "Profil"
  3567. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfileTab.qml:89
  3568. msgctxt "@title:column"
  3569. msgid "Current"
  3570. msgstr "Aktuell"
  3571. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfileTab.qml:97
  3572. msgctxt "@title:column"
  3573. msgid "Unit"
  3574. msgstr "Einheit"
  3575. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72
  3576. msgctxt "@title"
  3577. msgid "Information"
  3578. msgstr "Informationen"
  3579. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101
  3580. msgctxt "@title:window"
  3581. msgid "Confirm Diameter Change"
  3582. msgstr "Änderung Durchmesser bestätigen"
  3583. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102
  3584. msgctxt "@label (%1 is a number)"
  3585. msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?"
  3586. msgstr "Der neue Filament-Durchmesser wurde auf %1 mm eingestellt, was nicht kompatibel mit dem aktuellen Extruder ist. Möchten Sie fortfahren?"
  3587. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128
  3588. msgctxt "@label"
  3589. msgid "Display Name"
  3590. msgstr "Namen anzeigen"
  3591. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148
  3592. msgctxt "@label"
  3593. msgid "Material Type"
  3594. msgstr "Materialtyp"
  3595. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158
  3596. msgctxt "@label"
  3597. msgid "Color"
  3598. msgstr "Farbe"
  3599. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208
  3600. msgctxt "@label"
  3601. msgid "Properties"
  3602. msgstr "Eigenschaften"
  3603. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210
  3604. msgctxt "@label"
  3605. msgid "Density"
  3606. msgstr "Dichte"
  3607. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225
  3608. msgctxt "@label"
  3609. msgid "Diameter"
  3610. msgstr "Durchmesser"
  3611. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259
  3612. msgctxt "@label"
  3613. msgid "Filament Cost"
  3614. msgstr "Filamentkosten"
  3615. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276
  3616. msgctxt "@label"
  3617. msgid "Filament weight"
  3618. msgstr "Filamentgewicht"
  3619. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294
  3620. msgctxt "@label"
  3621. msgid "Filament length"
  3622. msgstr "Filamentlänge"
  3623. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303
  3624. msgctxt "@label"
  3625. msgid "Cost per Meter"
  3626. msgstr "Kosten pro Meter"
  3627. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317
  3628. msgctxt "@label"
  3629. msgid "This material is linked to %1 and shares some of its properties."
  3630. msgstr "Dieses Material ist mit %1 verknüpft und teilt sich damit einige seiner Eigenschaften."
  3631. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324
  3632. msgctxt "@label"
  3633. msgid "Unlink Material"
  3634. msgstr "Material trennen"
  3635. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335
  3636. msgctxt "@label"
  3637. msgid "Description"
  3638. msgstr "Beschreibung"
  3639. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348
  3640. msgctxt "@label"
  3641. msgid "Adhesion Information"
  3642. msgstr "Haftungsinformationen"
  3643. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108
  3644. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/MachinesPage.qml:40
  3645. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:84
  3646. msgctxt "@action:button"
  3647. msgid "Activate"
  3648. msgstr "Aktivieren"
  3649. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126
  3650. msgctxt "@action:button"
  3651. msgid "Create"
  3652. msgstr "Erstellen"
  3653. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141
  3654. msgctxt "@action:button"
  3655. msgid "Duplicate"
  3656. msgstr "Duplizieren"
  3657. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171
  3658. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:167
  3659. msgctxt "@action:button"
  3660. msgid "Import"
  3661. msgstr "Import"
  3662. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185
  3663. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:179
  3664. msgctxt "@action:button"
  3665. msgid "Export"
  3666. msgstr "Export"
  3667. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:234
  3668. msgctxt "@action:label"
  3669. msgid "Printer"
  3670. msgstr "Drucker"
  3671. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:298
  3672. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:277
  3673. msgctxt "@title:window"
  3674. msgid "Confirm Remove"
  3675. msgstr "Entfernen bestätigen"
  3676. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:301
  3677. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:278
  3678. msgctxt "@label (%1 is object name)"
  3679. msgid "Are you sure you wish to remove %1? This cannot be undone!"
  3680. msgstr "Möchten Sie %1 wirklich entfernen? Dies kann nicht rückgängig gemacht werden!"
  3681. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315
  3682. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:323
  3683. msgctxt "@title:window"
  3684. msgid "Import Material"
  3685. msgstr "Material importieren"
  3686. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:324
  3687. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  3688. msgid "Could not import material <filename>%1</filename>: <message>%2</message>"
  3689. msgstr "Material konnte nicht importiert werden <filename>%1</filename>: <message>%2</message>"
  3690. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:328
  3691. msgctxt "@info:status Don't translate the XML tag <filename>!"
  3692. msgid "Successfully imported material <filename>%1</filename>"
  3693. msgstr "Material wurde erfolgreich importiert <filename>%1</filename>"
  3694. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:346
  3695. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:354
  3696. msgctxt "@title:window"
  3697. msgid "Export Material"
  3698. msgstr "Material exportieren"
  3699. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:358
  3700. msgctxt "@info:status Don't translate the XML tags <filename> and <message>!"
  3701. msgid "Failed to export material to <filename>%1</filename>: <message>%2</message>"
  3702. msgstr "Exportieren des Materials nach <filename>%1</filename>: <message>%2</message> schlug fehl"
  3703. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:364
  3704. msgctxt "@info:status Don't translate the XML tag <filename>!"
  3705. msgid "Successfully exported material to <filename>%1</filename>"
  3706. msgstr "Material erfolgreich nach <filename>%1</filename> exportiert"
  3707. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/MachinesPage.qml:16
  3708. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:455
  3709. msgctxt "@title:tab"
  3710. msgid "Printers"
  3711. msgstr "Drucker"
  3712. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/MachinesPage.qml:63
  3713. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:152
  3714. msgctxt "@action:button"
  3715. msgid "Rename"
  3716. msgstr "Umbenennen"
  3717. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:34
  3718. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:459
  3719. msgctxt "@title:tab"
  3720. msgid "Profiles"
  3721. msgstr "Profile"
  3722. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:104
  3723. msgctxt "@label"
  3724. msgid "Create"
  3725. msgstr "Erstellen"
  3726. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:121
  3727. msgctxt "@label"
  3728. msgid "Duplicate"
  3729. msgstr "Duplizieren"
  3730. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:202
  3731. msgctxt "@title:window"
  3732. msgid "Create Profile"
  3733. msgstr "Profil erstellen"
  3734. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:204
  3735. msgctxt "@info"
  3736. msgid "Please provide a name for this profile."
  3737. msgstr "Geben Sie bitte einen Namen für dieses Profil an."
  3738. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:263
  3739. msgctxt "@title:window"
  3740. msgid "Duplicate Profile"
  3741. msgstr "Profil duplizieren"
  3742. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:294
  3743. msgctxt "@title:window"
  3744. msgid "Rename Profile"
  3745. msgstr "Profil umbenennen"
  3746. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:307
  3747. msgctxt "@title:window"
  3748. msgid "Import Profile"
  3749. msgstr "Profil importieren"
  3750. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:336
  3751. msgctxt "@title:window"
  3752. msgid "Export Profile"
  3753. msgstr "Profil exportieren"
  3754. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:399
  3755. msgctxt "@label %1 is printer name"
  3756. msgid "Printer: %1"
  3757. msgstr "Drucker: %1"
  3758. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:557
  3759. msgctxt "@action:button"
  3760. msgid "Update profile with current settings/overrides"
  3761. msgstr "Profil mit aktuellen Einstellungen/Überschreibungen aktualisieren"
  3762. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:583
  3763. msgctxt "@action:label"
  3764. msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below."
  3765. msgstr "Dieses Profil verwendet die vom Drucker festgelegten Standardeinstellungen, deshalb sind in der folgenden Liste keine Einstellungen/Überschreibungen enthalten."
  3766. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:591
  3767. msgctxt "@action:label"
  3768. msgid "Your current settings match the selected profile."
  3769. msgstr "Ihre aktuellen Einstellungen stimmen mit dem gewählten Profil überein."
  3770. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:609
  3771. msgctxt "@title:tab"
  3772. msgid "Global Settings"
  3773. msgstr "Globale Einstellungen"
  3774. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:14
  3775. msgctxt "@title:tab"
  3776. msgid "Setting Visibility"
  3777. msgstr "Sichtbarkeit einstellen"
  3778. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:46
  3779. msgctxt "@label:textbox"
  3780. msgid "Check all"
  3781. msgstr "Alle prüfen"
  3782. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:15
  3783. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:450
  3784. msgctxt "@title:tab"
  3785. msgid "General"
  3786. msgstr "Allgemein"
  3787. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:137
  3788. msgctxt "@label"
  3789. msgid "Interface"
  3790. msgstr "Schnittstelle"
  3791. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:216
  3792. msgctxt "@label"
  3793. msgid "Currency:"
  3794. msgstr "Währung:"
  3795. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:229
  3796. msgctxt "@label"
  3797. msgid "Theme:"
  3798. msgstr "Thema:"
  3799. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:285
  3800. msgctxt "@label"
  3801. msgid "You will need to restart the application for these changes to have effect."
  3802. msgstr "Die Anwendung muss neu gestartet werden, um die Änderungen zu übernehmen."
  3803. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:302
  3804. msgctxt "@info:tooltip"
  3805. msgid "Slice automatically when changing settings."
  3806. msgstr "Bei Änderung der Einstellungen automatisch schneiden."
  3807. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:310
  3808. msgctxt "@option:check"
  3809. msgid "Slice automatically"
  3810. msgstr "Automatisch schneiden"
  3811. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:324
  3812. msgctxt "@label"
  3813. msgid "Viewport behavior"
  3814. msgstr "Viewport-Verhalten"
  3815. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:332
  3816. msgctxt "@info:tooltip"
  3817. msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly."
  3818. msgstr "Nicht gestützte Bereiche des Modells in rot hervorheben. Ohne Support werden diese Bereiche nicht korrekt gedruckt."
  3819. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:341
  3820. msgctxt "@option:check"
  3821. msgid "Display overhang"
  3822. msgstr "Überhang anzeigen"
  3823. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:351
  3824. msgctxt "@info:tooltip"
  3825. msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry."
  3826. msgstr "Heben Sie fehlende oder fehlerhafte Flächen des Modells mithilfe von Warnhinweisen hervor. In den Werkzeugpfaden fehlen oft Teile der beabsichtigten Geometrie."
  3827. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:360
  3828. msgctxt "@option:check"
  3829. msgid "Display model errors"
  3830. msgstr "Modellfehler anzeigen"
  3831. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:368
  3832. msgctxt "@info:tooltip"
  3833. msgid "Moves the camera so the model is in the center of the view when a model is selected"
  3834. msgstr "Bewegt die Kamera, bis sich das Modell im Mittelpunkt der Ansicht befindet, wenn ein Modell ausgewählt wurde"
  3835. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:373
  3836. msgctxt "@action:button"
  3837. msgid "Center camera when item is selected"
  3838. msgstr "Zentrieren Sie die Kamera, wenn das Element ausgewählt wurde"
  3839. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:383
  3840. msgctxt "@info:tooltip"
  3841. msgid "Should the default zoom behavior of cura be inverted?"
  3842. msgstr "Soll das standardmäßige Zoom-Verhalten von Cura umgekehrt werden?"
  3843. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:388
  3844. msgctxt "@action:button"
  3845. msgid "Invert the direction of camera zoom."
  3846. msgstr "Kehren Sie die Richtung des Kamera-Zooms um."
  3847. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:404
  3848. msgctxt "@info:tooltip"
  3849. msgid "Should zooming move in the direction of the mouse?"
  3850. msgstr "Soll das Zoomen in Richtung der Maus erfolgen?"
  3851. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:404
  3852. msgctxt "@info:tooltip"
  3853. msgid "Zooming towards the mouse is not supported in the orthographic perspective."
  3854. msgstr "Das Zoomen in Richtung der Maus wird in der orthografischen Perspektive nicht unterstützt."
  3855. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:409
  3856. msgctxt "@action:button"
  3857. msgid "Zoom toward mouse direction"
  3858. msgstr "In Mausrichtung zoomen"
  3859. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:435
  3860. msgctxt "@info:tooltip"
  3861. msgid "Should models on the platform be moved so that they no longer intersect?"
  3862. msgstr "Sollen Modelle auf der Plattform so verschoben werden, dass sie sich nicht länger überschneiden?"
  3863. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:440
  3864. msgctxt "@option:check"
  3865. msgid "Ensure models are kept apart"
  3866. msgstr "Stellen Sie sicher, dass die Modelle getrennt gehalten werden"
  3867. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:449
  3868. msgctxt "@info:tooltip"
  3869. msgid "Should models on the platform be moved down to touch the build plate?"
  3870. msgstr "Sollen Modelle auf der Plattform so nach unten verschoben werden, dass sie die Druckplatte berühren?"
  3871. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:454
  3872. msgctxt "@option:check"
  3873. msgid "Automatically drop models to the build plate"
  3874. msgstr "Setzt Modelle automatisch auf der Druckplatte ab"
  3875. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:466
  3876. msgctxt "@info:tooltip"
  3877. msgid "Show caution message in g-code reader."
  3878. msgstr "Warnmeldung im G-Code-Reader anzeigen."
  3879. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:475
  3880. msgctxt "@option:check"
  3881. msgid "Caution message in g-code reader"
  3882. msgstr "Warnmeldung in G-Code-Reader"
  3883. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:483
  3884. msgctxt "@info:tooltip"
  3885. msgid "Should layer be forced into compatibility mode?"
  3886. msgstr "Soll die Schicht in den Kompatibilitätsmodus gezwungen werden?"
  3887. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:488
  3888. msgctxt "@option:check"
  3889. msgid "Force layer view compatibility mode (restart required)"
  3890. msgstr "Schichtenansicht Kompatibilitätsmodus erzwingen (Neustart erforderlich)"
  3891. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:498
  3892. msgctxt "@info:tooltip"
  3893. msgid "Should Cura open at the location it was closed?"
  3894. msgstr "Sollte Cura sich an der Stelle öffnen, an der das Programm geschlossen wurde?"
  3895. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:503
  3896. msgctxt "@option:check"
  3897. msgid "Restore window position on start"
  3898. msgstr "Fensterposition beim Start wiederherstellen"
  3899. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:513
  3900. msgctxt "@info:tooltip"
  3901. msgid "What type of camera rendering should be used?"
  3902. msgstr "Welches Kamera-Rendering sollte verwendet werden?"
  3903. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:520
  3904. msgctxt "@window:text"
  3905. msgid "Camera rendering:"
  3906. msgstr "Kamera-Rendering:"
  3907. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:531
  3908. msgid "Perspective"
  3909. msgstr "Ansicht"
  3910. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:532
  3911. msgid "Orthographic"
  3912. msgstr "Orthogonal"
  3913. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:563
  3914. msgctxt "@label"
  3915. msgid "Opening and saving files"
  3916. msgstr "Dateien öffnen und speichern"
  3917. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:570
  3918. msgctxt "@info:tooltip"
  3919. msgid "Should opening files from the desktop or external applications open in the same instance of Cura?"
  3920. msgstr "Sollten Dateien vom Desktop oder von externen Anwendungen in derselben Instanz von Cura geöffnet werden?"
  3921. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:575
  3922. msgctxt "@option:check"
  3923. msgid "Use a single instance of Cura"
  3924. msgstr "Eine einzelne Instanz von Cura verwenden"
  3925. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:585
  3926. msgctxt "@info:tooltip"
  3927. msgid "Should models be scaled to the build volume if they are too large?"
  3928. msgstr "Sollen Modelle an das Erstellungsvolumen angepasst werden, wenn sie zu groß sind?"
  3929. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:590
  3930. msgctxt "@option:check"
  3931. msgid "Scale large models"
  3932. msgstr "Große Modelle anpassen"
  3933. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:600
  3934. msgctxt "@info:tooltip"
  3935. msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?"
  3936. 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?"
  3937. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:605
  3938. msgctxt "@option:check"
  3939. msgid "Scale extremely small models"
  3940. msgstr "Extrem kleine Modelle skalieren"
  3941. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:615
  3942. msgctxt "@info:tooltip"
  3943. msgid "Should models be selected after they are loaded?"
  3944. msgstr "Sollten Modelle gewählt werden, nachdem sie geladen wurden?"
  3945. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:620
  3946. msgctxt "@option:check"
  3947. msgid "Select models when loaded"
  3948. msgstr "Modelle wählen, nachdem sie geladen wurden"
  3949. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:630
  3950. msgctxt "@info:tooltip"
  3951. msgid "Should a prefix based on the printer name be added to the print job name automatically?"
  3952. msgstr "Soll ein Präfix anhand des Druckernamens automatisch zum Namen des Druckauftrags hinzugefügt werden?"
  3953. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:635
  3954. msgctxt "@option:check"
  3955. msgid "Add machine prefix to job name"
  3956. msgstr "Geräte-Präfix zu Auftragsnamen hinzufügen"
  3957. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:645
  3958. msgctxt "@info:tooltip"
  3959. msgid "Should a summary be shown when saving a project file?"
  3960. msgstr "Soll beim Speichern einer Projektdatei eine Zusammenfassung angezeigt werden?"
  3961. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:649
  3962. msgctxt "@option:check"
  3963. msgid "Show summary dialog when saving project"
  3964. msgstr "Dialog Zusammenfassung beim Speichern eines Projekts anzeigen"
  3965. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:659
  3966. msgctxt "@info:tooltip"
  3967. msgid "Default behavior when opening a project file"
  3968. msgstr "Standardverhalten beim Öffnen einer Projektdatei"
  3969. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:667
  3970. msgctxt "@window:text"
  3971. msgid "Default behavior when opening a project file: "
  3972. msgstr "Standardverhalten beim Öffnen einer Projektdatei: "
  3973. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:681
  3974. msgctxt "@option:openProject"
  3975. msgid "Always ask me this"
  3976. msgstr "Stets nachfragen"
  3977. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:682
  3978. msgctxt "@option:openProject"
  3979. msgid "Always open as a project"
  3980. msgstr "Immer als Projekt öffnen"
  3981. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:683
  3982. msgctxt "@option:openProject"
  3983. msgid "Always import models"
  3984. msgstr "Modelle immer importieren"
  3985. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:719
  3986. msgctxt "@info:tooltip"
  3987. 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."
  3988. 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."
  3989. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:733
  3990. msgctxt "@window:text"
  3991. msgid "Default behavior for changed setting values when switching to a different profile: "
  3992. msgstr "Standardverhalten für geänderte Einstellungswerte beim Wechsel zu einem anderen Profil: "
  3993. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:748
  3994. msgctxt "@option:discardOrKeep"
  3995. msgid "Always discard changed settings"
  3996. msgstr "Geänderte Einstellungen immer verwerfen"
  3997. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:749
  3998. msgctxt "@option:discardOrKeep"
  3999. msgid "Always transfer changed settings to new profile"
  4000. msgstr "Geänderte Einstellungen immer auf neues Profil übertragen"
  4001. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:783
  4002. msgctxt "@label"
  4003. msgid "Privacy"
  4004. msgstr "Privatsphäre"
  4005. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:790
  4006. msgctxt "@info:tooltip"
  4007. msgid "Should Cura check for updates when the program is started?"
  4008. msgstr "Soll Cura bei Programmstart nach Updates suchen?"
  4009. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:795
  4010. msgctxt "@option:check"
  4011. msgid "Check for updates on start"
  4012. msgstr "Bei Start nach Updates suchen"
  4013. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:805
  4014. msgctxt "@info:tooltip"
  4015. 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."
  4016. 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."
  4017. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:810
  4018. msgctxt "@option:check"
  4019. msgid "Send (anonymous) print information"
  4020. msgstr "(Anonyme) Druckinformationen senden"
  4021. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:819
  4022. msgctxt "@action:button"
  4023. msgid "More information"
  4024. msgstr "Mehr Informationen"
  4025. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ViewsSelector.qml:50
  4026. msgctxt "@label"
  4027. msgid "View type"
  4028. msgstr "Typ anzeigen"
  4029. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:119
  4030. msgctxt "@label:MonitorStatus"
  4031. msgid "Not connected to a printer"
  4032. msgstr "Nicht mit einem Drucker verbunden"
  4033. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:123
  4034. msgctxt "@label:MonitorStatus"
  4035. msgid "Printer does not accept commands"
  4036. msgstr "Drucker nimmt keine Befehle an"
  4037. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:133
  4038. msgctxt "@label:MonitorStatus"
  4039. msgid "In maintenance. Please check the printer"
  4040. msgstr "In Wartung. Den Drucker überprüfen"
  4041. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:144
  4042. msgctxt "@label:MonitorStatus"
  4043. msgid "Lost connection with the printer"
  4044. msgstr "Verbindung zum Drucker wurde unterbrochen"
  4045. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:146
  4046. msgctxt "@label:MonitorStatus"
  4047. msgid "Printing..."
  4048. msgstr "Es wird gedruckt..."
  4049. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:149
  4050. msgctxt "@label:MonitorStatus"
  4051. msgid "Paused"
  4052. msgstr "Pausiert"
  4053. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:152
  4054. msgctxt "@label:MonitorStatus"
  4055. msgid "Preparing..."
  4056. msgstr "Vorbereitung läuft..."
  4057. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:154
  4058. msgctxt "@label:MonitorStatus"
  4059. msgid "Please remove the print"
  4060. msgstr "Bitte den Ausdruck entfernen"
  4061. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:326
  4062. msgctxt "@label"
  4063. msgid "Abort Print"
  4064. msgstr "Drucken abbrechen"
  4065. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:338
  4066. msgctxt "@label"
  4067. msgid "Are you sure you want to abort the print?"
  4068. msgstr "Soll das Drucken wirklich abgebrochen werden?"
  4069. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:68
  4070. msgctxt "@label:textbox"
  4071. msgid "Search settings"
  4072. msgstr "Einstellungen durchsuchen"
  4073. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:456
  4074. msgctxt "@action:menu"
  4075. msgid "Copy value to all extruders"
  4076. msgstr "Werte für alle Extruder kopieren"
  4077. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:465
  4078. msgctxt "@action:menu"
  4079. msgid "Copy all changed values to all extruders"
  4080. msgstr "Alle geänderten Werte für alle Extruder kopieren"
  4081. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:502
  4082. msgctxt "@action:menu"
  4083. msgid "Hide this setting"
  4084. msgstr "Diese Einstellung ausblenden"
  4085. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:515
  4086. msgctxt "@action:menu"
  4087. msgid "Don't show this setting"
  4088. msgstr "Diese Einstellung ausblenden"
  4089. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:519
  4090. msgctxt "@action:menu"
  4091. msgid "Keep this setting visible"
  4092. msgstr "Diese Einstellung weiterhin anzeigen"
  4093. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingCategory.qml:200
  4094. msgctxt "@label"
  4095. msgid ""
  4096. "Some hidden settings use values different from their normal calculated value.\n"
  4097. "\n"
  4098. "Click to make these settings visible."
  4099. msgstr ""
  4100. "Einige ausgeblendete Einstellungen verwenden Werte, die von ihren normalen, berechneten Werten abweichen.\n"
  4101. "\n"
  4102. "Klicken Sie, um diese Einstellungen sichtbar zu machen."
  4103. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:81
  4104. msgctxt "@label"
  4105. msgid "This setting is not used because all the settings that it influences are overridden."
  4106. msgstr "Diese Einstellung wird nicht verwendet, weil alle hierdurch beeinflussten Einstellungen aufgehoben werden."
  4107. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:86
  4108. msgctxt "@label Header for list of settings."
  4109. msgid "Affects"
  4110. msgstr "Hat Einfluss auf"
  4111. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:91
  4112. msgctxt "@label Header for list of settings."
  4113. msgid "Affected By"
  4114. msgstr "Wird beeinflusst von"
  4115. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:187
  4116. msgctxt "@label"
  4117. msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders."
  4118. msgstr "Diese Einstellung wird stets zwischen allen Extrudern geteilt. Eine Änderung ändert den Wert für alle Extruder."
  4119. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:191
  4120. msgctxt "@label"
  4121. msgid "This setting is resolved from conflicting extruder-specific values:"
  4122. msgstr "Diese Einstellung wird durch gegensätzliche, extruderspezifische Werte gelöst:"
  4123. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:230
  4124. msgctxt "@label"
  4125. msgid ""
  4126. "This setting has a value that is different from the profile.\n"
  4127. "\n"
  4128. "Click to restore the value of the profile."
  4129. msgstr ""
  4130. "Diese Einstellung hat einen vom Profil abweichenden Wert.\n"
  4131. "\n"
  4132. "Klicken Sie, um den Wert des Profils wiederherzustellen."
  4133. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:329
  4134. msgctxt "@label"
  4135. msgid ""
  4136. "This setting is normally calculated, but it currently has an absolute value set.\n"
  4137. "\n"
  4138. "Click to restore the calculated value."
  4139. msgstr ""
  4140. "Diese Einstellung wird normalerweise berechnet; aktuell ist jedoch ein Absolutwert eingestellt.\n"
  4141. "\n"
  4142. "Klicken Sie, um den berechneten Wert wiederherzustellen."
  4143. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ViewOrientationControls.qml:27
  4144. msgctxt "@info:tooltip"
  4145. msgid "3D View"
  4146. msgstr "3D-Ansicht"
  4147. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ViewOrientationControls.qml:40
  4148. msgctxt "@info:tooltip"
  4149. msgid "Front View"
  4150. msgstr "Vorderansicht"
  4151. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ViewOrientationControls.qml:53
  4152. msgctxt "@info:tooltip"
  4153. msgid "Top View"
  4154. msgstr "Draufsicht"
  4155. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ViewOrientationControls.qml:66
  4156. msgctxt "@info:tooltip"
  4157. msgid "Left View"
  4158. msgstr "Ansicht von links"
  4159. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ViewOrientationControls.qml:79
  4160. msgctxt "@info:tooltip"
  4161. msgid "Right View"
  4162. msgstr "Ansicht von rechts"
  4163. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41
  4164. msgctxt "@label"
  4165. msgid "Extruder"
  4166. msgstr "Extruder"
  4167. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71
  4168. msgctxt "@tooltip"
  4169. 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."
  4170. 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."
  4171. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103
  4172. msgctxt "@tooltip"
  4173. msgid "The current temperature of this hotend."
  4174. msgstr "Die aktuelle Temperatur dieses Hotends."
  4175. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177
  4176. msgctxt "@tooltip of temperature input"
  4177. msgid "The temperature to pre-heat the hotend to."
  4178. msgstr "Die Temperatur, auf die das Hotend vorgeheizt wird."
  4179. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341
  4180. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332
  4181. msgctxt "@button Cancel pre-heating"
  4182. msgid "Cancel"
  4183. msgstr "Abbrechen"
  4184. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344
  4185. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335
  4186. msgctxt "@button"
  4187. msgid "Pre-heat"
  4188. msgstr "Vorheizen"
  4189. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370
  4190. msgctxt "@tooltip of pre-heat"
  4191. 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."
  4192. 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."
  4193. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406
  4194. msgctxt "@tooltip"
  4195. msgid "The colour of the material in this extruder."
  4196. msgstr "Die Farbe des Materials in diesem Extruder."
  4197. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438
  4198. msgctxt "@tooltip"
  4199. msgid "The material in this extruder."
  4200. msgstr "Das Material in diesem Extruder."
  4201. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470
  4202. msgctxt "@tooltip"
  4203. msgid "The nozzle inserted in this extruder."
  4204. msgstr "Die in diesem Extruder eingesetzte Düse."
  4205. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26
  4206. msgctxt "@label"
  4207. msgid "Build plate"
  4208. msgstr "Druckbett"
  4209. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56
  4210. msgctxt "@tooltip"
  4211. 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."
  4212. 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."
  4213. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88
  4214. msgctxt "@tooltip"
  4215. msgid "The current temperature of the heated bed."
  4216. msgstr "Die aktuelle Temperatur des beheizten Betts."
  4217. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161
  4218. msgctxt "@tooltip of temperature input"
  4219. msgid "The temperature to pre-heat the bed to."
  4220. msgstr "Die Temperatur, auf die das Bett vorgeheizt wird."
  4221. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361
  4222. msgctxt "@tooltip of pre-heat"
  4223. 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."
  4224. 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."
  4225. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52
  4226. msgctxt "@label"
  4227. msgid "Printer control"
  4228. msgstr "Druckersteuerung"
  4229. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67
  4230. msgctxt "@label"
  4231. msgid "Jog Position"
  4232. msgstr "Tippposition"
  4233. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85
  4234. msgctxt "@label"
  4235. msgid "X/Y"
  4236. msgstr "X/Y"
  4237. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192
  4238. msgctxt "@label"
  4239. msgid "Z"
  4240. msgstr "Z"
  4241. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257
  4242. msgctxt "@label"
  4243. msgid "Jog Distance"
  4244. msgstr "Tippdistanz"
  4245. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301
  4246. msgctxt "@label"
  4247. msgid "Send G-code"
  4248. msgstr "G-Code senden"
  4249. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365
  4250. msgctxt "@tooltip of G-code command input"
  4251. msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command."
  4252. msgstr "Einen benutzerdefinierten G-Code-Befehl an den verbundenen Drucker senden. „Eingabe“ drücken, um den Befehl zu senden."
  4253. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55
  4254. msgctxt "@info:status"
  4255. msgid "The printer is not connected."
  4256. msgstr "Der Drucker ist nicht verbunden."
  4257. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ObjectItemButton.qml:114
  4258. msgctxt "@label"
  4259. msgid "Is printed as support."
  4260. msgstr "Wird als Stückstruktur gedruckt."
  4261. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ObjectItemButton.qml:117
  4262. msgctxt "@label"
  4263. msgid "Other models overlapping with this model are modified."
  4264. msgstr "Andere Modelle, die sich mit diesem Modell überschneiden, werden angepasst."
  4265. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ObjectItemButton.qml:120
  4266. msgctxt "@label"
  4267. msgid "Infill overlapping with this model is modified."
  4268. msgstr "Überlappende Füllung wird bei diesem Modell angepasst."
  4269. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ObjectItemButton.qml:123
  4270. msgctxt "@label"
  4271. msgid "Overlaps with this model are not supported."
  4272. msgstr "Überlappungen mit diesem Modell werden nicht unterstützt."
  4273. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ObjectItemButton.qml:130
  4274. msgctxt "@label %1 is the number of settings it overrides."
  4275. msgid "Overrides %1 setting."
  4276. msgid_plural "Overrides %1 settings."
  4277. msgstr[0] "Überschreibt %1-Einstellung."
  4278. msgstr[1] "Überschreibt %1-Einstellungen."
  4279. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90
  4280. msgctxt "@action:button"
  4281. msgid "Marketplace"
  4282. msgstr "Marktplatz"
  4283. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31
  4284. msgctxt "@title:menu menubar:toplevel"
  4285. msgid "&Edit"
  4286. msgstr "&Bearbeiten"
  4287. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:56
  4288. msgctxt "@title:menu menubar:toplevel"
  4289. msgid "E&xtensions"
  4290. msgstr "Er&weiterungen"
  4291. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:94
  4292. msgctxt "@title:menu menubar:toplevel"
  4293. msgid "P&references"
  4294. msgstr "E&instellungen"
  4295. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:102
  4296. msgctxt "@title:menu menubar:toplevel"
  4297. msgid "&Help"
  4298. msgstr "&Hilfe"
  4299. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:148
  4300. msgctxt "@title:window"
  4301. msgid "New project"
  4302. msgstr "Neues Projekt"
  4303. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:149
  4304. msgctxt "@info:question"
  4305. msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings."
  4306. msgstr "Möchten Sie wirklich ein neues Projekt beginnen? Damit werden das Druckbett und alle nicht gespeicherten Einstellungen gelöscht."
  4307. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:257
  4308. msgctxt "@label"
  4309. msgid "This package will be installed after restarting."
  4310. msgstr "Dieses Paket wird nach einem Neustart installiert."
  4311. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:453
  4312. msgctxt "@title:tab"
  4313. msgid "Settings"
  4314. msgstr "Einstellungen"
  4315. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:576
  4316. msgctxt "@title:window %1 is the application name"
  4317. msgid "Closing %1"
  4318. msgstr "%1 wird geschlossen"
  4319. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:577
  4320. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:589
  4321. msgctxt "@label %1 is the application name"
  4322. msgid "Are you sure you want to exit %1?"
  4323. msgstr "Möchten Sie %1 wirklich beenden?"
  4324. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:737
  4325. msgctxt "@window:title"
  4326. msgid "Install Package"
  4327. msgstr "Paket installieren"
  4328. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:745
  4329. msgctxt "@title:window"
  4330. msgid "Open File(s)"
  4331. msgstr "Datei(en) öffnen"
  4332. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:748
  4333. msgctxt "@text:window"
  4334. 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."
  4335. 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."
  4336. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:857
  4337. msgctxt "@title:window"
  4338. msgid "Add Printer"
  4339. msgstr "Drucker hinzufügen"
  4340. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:865
  4341. msgctxt "@title:window"
  4342. msgid "What's New"
  4343. msgstr "Neuheiten"
  4344. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47
  4345. msgctxt "@status"
  4346. msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet."
  4347. msgstr "Der Cloud-Drucker ist offline. Bitte prüfen Sie, ob der Drucker eingeschaltet und mit dem Internet verbunden ist."
  4348. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51
  4349. msgctxt "@status"
  4350. msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection."
  4351. msgstr "Der Drucker ist nicht mit Ihrem Konto verbunden. Bitte besuchen Sie die Ultimaker Digital Factory, um eine Verbindung herzustellen."
  4352. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56
  4353. msgctxt "@status"
  4354. msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer."
  4355. msgstr "Die Cloud-Verbindung ist aktuell nicht verfügbar. Bitte melden Sie sich an, um sich mit dem Cloud-Drucker zu verbinden."
  4356. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60
  4357. msgctxt "@status"
  4358. msgid "The cloud connection is currently unavailable. Please check your internet connection."
  4359. msgstr "Die Cloud-Verbindung ist aktuell nicht verfügbar. Bitte überprüfen Sie ihre Internetverbindung."
  4360. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelector.qml:238
  4361. msgctxt "@button"
  4362. msgid "Add printer"
  4363. msgstr "Drucker hinzufügen"
  4364. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelector.qml:255
  4365. msgctxt "@button"
  4366. msgid "Manage printers"
  4367. msgstr "Drucker verwalten"
  4368. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19
  4369. msgctxt "@label"
  4370. msgid "Connected printers"
  4371. msgstr "Verbundene Drucker"
  4372. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19
  4373. msgctxt "@label"
  4374. msgid "Preset printers"
  4375. msgstr "Voreingestellte Drucker"
  4376. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ExtruderButton.qml:16
  4377. msgctxt "@label %1 is filled in with the name of an extruder"
  4378. msgid "Print Selected Model with %1"
  4379. msgid_plural "Print Selected Models with %1"
  4380. msgstr[0] "Ausgewähltes Modell drucken mit %1"
  4381. msgstr[1] "Ausgewählte Modelle drucken mit %1"
  4382. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31
  4383. msgctxt "@label"
  4384. msgid "Time estimation"
  4385. msgstr "Zeitschätzung"
  4386. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114
  4387. msgctxt "@label"
  4388. msgid "Material estimation"
  4389. msgstr "Materialschätzung"
  4390. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164
  4391. msgctxt "@label m for meter"
  4392. msgid "%1m"
  4393. msgstr "%1 m"
  4394. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165
  4395. msgctxt "@label g for grams"
  4396. msgid "%1g"
  4397. msgstr "%1 g"
  4398. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55
  4399. msgctxt "@label:PrintjobStatus"
  4400. msgid "Slicing..."
  4401. msgstr "Das Slicing läuft..."
  4402. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:67
  4403. msgctxt "@label:PrintjobStatus"
  4404. msgid "Unable to slice"
  4405. msgstr "Slicing nicht möglich"
  4406. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103
  4407. msgctxt "@button"
  4408. msgid "Processing"
  4409. msgstr "Verarbeitung läuft"
  4410. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103
  4411. msgctxt "@button"
  4412. msgid "Slice"
  4413. msgstr "Slice"
  4414. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:104
  4415. msgctxt "@label"
  4416. msgid "Start the slicing process"
  4417. msgstr "Slicing-Vorgang starten"
  4418. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:118
  4419. msgctxt "@button"
  4420. msgid "Cancel"
  4421. msgstr "Abbrechen"
  4422. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59
  4423. msgctxt "@label"
  4424. msgid "No time estimation available"
  4425. msgstr "Keine Zeitschätzung verfügbar"
  4426. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77
  4427. msgctxt "@label"
  4428. msgid "No cost estimation available"
  4429. msgstr "Keine Kostenschätzung verfügbar"
  4430. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127
  4431. msgctxt "@button"
  4432. msgid "Preview"
  4433. msgstr "Vorschau"
  4434. #: RemovableDriveOutputDevice/plugin.json
  4435. msgctxt "description"
  4436. msgid "Provides removable drive hotplugging and writing support."
  4437. msgstr "Ermöglicht Hotplugging des Wechseldatenträgers und Beschreiben."
  4438. #: RemovableDriveOutputDevice/plugin.json
  4439. msgctxt "name"
  4440. msgid "Removable Drive Output Device Plugin"
  4441. msgstr "Ausgabegerät-Plugin für Wechseldatenträger"
  4442. #: VersionUpgrade/VersionUpgrade35to40/plugin.json
  4443. msgctxt "description"
  4444. msgid "Upgrades configurations from Cura 3.5 to Cura 4.0."
  4445. msgstr "Aktualisiert Konfigurationen von Cura 3.5 auf Cura 4.0."
  4446. #: VersionUpgrade/VersionUpgrade35to40/plugin.json
  4447. msgctxt "name"
  4448. msgid "Version Upgrade 3.5 to 4.0"
  4449. msgstr "Upgrade von Version 3.5 auf 4.0"
  4450. #: VersionUpgrade/VersionUpgrade462to47/plugin.json
  4451. msgctxt "description"
  4452. msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7."
  4453. msgstr "Aktualisiert Konfigurationen von Cura 4.6.2 auf Cura 4.7."
  4454. #: VersionUpgrade/VersionUpgrade462to47/plugin.json
  4455. msgctxt "name"
  4456. msgid "Version Upgrade 4.6.2 to 4.7"
  4457. msgstr "Upgrade von Version 4.6.2 auf 4.7"
  4458. #: VersionUpgrade/VersionUpgrade22to24/plugin.json
  4459. msgctxt "description"
  4460. msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
  4461. msgstr "Aktualisiert Konfigurationen von Cura 2.2 auf Cura 2.4."
  4462. #: VersionUpgrade/VersionUpgrade22to24/plugin.json
  4463. msgctxt "name"
  4464. msgid "Version Upgrade 2.2 to 2.4"
  4465. msgstr "Upgrade von Version 2.2 auf 2.4"
  4466. #: VersionUpgrade/VersionUpgrade42to43/plugin.json
  4467. msgctxt "description"
  4468. msgid "Upgrades configurations from Cura 4.2 to Cura 4.3."
  4469. msgstr "Aktualisiert Konfigurationen von Cura 4.2 auf Cura 4.3."
  4470. #: VersionUpgrade/VersionUpgrade42to43/plugin.json
  4471. msgctxt "name"
  4472. msgid "Version Upgrade 4.2 to 4.3"
  4473. msgstr "Upgrade von Version 4.2 auf 4.3"
  4474. #: VersionUpgrade/VersionUpgrade460to462/plugin.json
  4475. msgctxt "description"
  4476. msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2."
  4477. msgstr "Upgrade der Konfigurationen von Cura 4.6.0 auf Cura 4.6.2."
  4478. #: VersionUpgrade/VersionUpgrade460to462/plugin.json
  4479. msgctxt "name"
  4480. msgid "Version Upgrade 4.6.0 to 4.6.2"
  4481. msgstr "Upgrade von Version 4.6.0 auf 4.6.2"
  4482. #: VersionUpgrade/VersionUpgrade30to31/plugin.json
  4483. msgctxt "description"
  4484. msgid "Upgrades configurations from Cura 3.0 to Cura 3.1."
  4485. msgstr "Aktualisiert Konfigurationen von Cura 3.0 auf Cura 3.1."
  4486. #: VersionUpgrade/VersionUpgrade30to31/plugin.json
  4487. msgctxt "name"
  4488. msgid "Version Upgrade 3.0 to 3.1"
  4489. msgstr "Upgrade von Version 3.0 auf 3.1"
  4490. #: VersionUpgrade/VersionUpgrade40to41/plugin.json
  4491. msgctxt "description"
  4492. msgid "Upgrades configurations from Cura 4.0 to Cura 4.1."
  4493. msgstr "Aktualisiert Konfigurationen von Cura 4.0 auf Cura 4.1."
  4494. #: VersionUpgrade/VersionUpgrade40to41/plugin.json
  4495. msgctxt "name"
  4496. msgid "Version Upgrade 4.0 to 4.1"
  4497. msgstr "Upgrade von Version 4.0 auf 4.1"
  4498. #: VersionUpgrade/VersionUpgrade26to27/plugin.json
  4499. msgctxt "description"
  4500. msgid "Upgrades configurations from Cura 2.6 to Cura 2.7."
  4501. msgstr "Aktualisiert Konfigurationen von Cura 2.6 auf Cura 2.7."
  4502. #: VersionUpgrade/VersionUpgrade26to27/plugin.json
  4503. msgctxt "name"
  4504. msgid "Version Upgrade 2.6 to 2.7"
  4505. msgstr "Upgrade von Version 2.6 auf 2.7"
  4506. #: VersionUpgrade/VersionUpgrade25to26/plugin.json
  4507. msgctxt "description"
  4508. msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
  4509. msgstr "Aktualisiert Konfigurationen von Cura 2.5 auf Cura 2.6."
  4510. #: VersionUpgrade/VersionUpgrade25to26/plugin.json
  4511. msgctxt "name"
  4512. msgid "Version Upgrade 2.5 to 2.6"
  4513. msgstr "Upgrade von Version 2.5 auf 2.6"
  4514. #: VersionUpgrade/VersionUpgrade41to42/plugin.json
  4515. msgctxt "description"
  4516. msgid "Upgrades configurations from Cura 4.1 to Cura 4.2."
  4517. msgstr "Aktualisiert Konfigurationen von Cura 4.1 auf Cura 4.2."
  4518. #: VersionUpgrade/VersionUpgrade41to42/plugin.json
  4519. msgctxt "name"
  4520. msgid "Version Upgrade 4.1 to 4.2"
  4521. msgstr "Upgrade von Version 4.1 auf 4.2"
  4522. #: VersionUpgrade/VersionUpgrade21to22/plugin.json
  4523. msgctxt "description"
  4524. msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
  4525. msgstr "Aktualisiert Konfigurationen von Cura 2.1 auf Cura 2.2."
  4526. #: VersionUpgrade/VersionUpgrade21to22/plugin.json
  4527. msgctxt "name"
  4528. msgid "Version Upgrade 2.1 to 2.2"
  4529. msgstr "Upgrade von Version 2.1 auf 2.2"
  4530. #: VersionUpgrade/VersionUpgrade32to33/plugin.json
  4531. msgctxt "description"
  4532. msgid "Upgrades configurations from Cura 3.2 to Cura 3.3."
  4533. msgstr "Aktualisiert Konfigurationen von Cura 3.2 auf Cura 3.3."
  4534. #: VersionUpgrade/VersionUpgrade32to33/plugin.json
  4535. msgctxt "name"
  4536. msgid "Version Upgrade 3.2 to 3.3"
  4537. msgstr "Upgrade von Version 3.2 auf 3.3"
  4538. #: VersionUpgrade/VersionUpgrade45to46/plugin.json
  4539. msgctxt "description"
  4540. msgid "Upgrades configurations from Cura 4.5 to Cura 4.6."
  4541. msgstr "Upgrade der Konfigurationen von Cura 4.5 auf Cura 4.6."
  4542. #: VersionUpgrade/VersionUpgrade45to46/plugin.json
  4543. msgctxt "name"
  4544. msgid "Version Upgrade 4.5 to 4.6"
  4545. msgstr "Upgrade von Version 4.5 auf 4.6"
  4546. #: VersionUpgrade/VersionUpgrade44to45/plugin.json
  4547. msgctxt "description"
  4548. msgid "Upgrades configurations from Cura 4.4 to Cura 4.5."
  4549. msgstr "Upgrade der Konfigurationen von Cura 4.4 auf Cura 4.5."
  4550. #: VersionUpgrade/VersionUpgrade44to45/plugin.json
  4551. msgctxt "name"
  4552. msgid "Version Upgrade 4.4 to 4.5"
  4553. msgstr "Upgrade von Version 4.4 auf 4.5"
  4554. #: VersionUpgrade/VersionUpgrade47to48/plugin.json
  4555. msgctxt "description"
  4556. msgid "Upgrades configurations from Cura 4.7 to Cura 4.8."
  4557. msgstr "Upgrade der Konfigurationen von Cura 4.7 auf Cura 4.8."
  4558. #: VersionUpgrade/VersionUpgrade47to48/plugin.json
  4559. msgctxt "name"
  4560. msgid "Version Upgrade 4.7 to 4.8"
  4561. msgstr "Upgrade von Version 4.7 auf 4.8"
  4562. #: VersionUpgrade/VersionUpgrade33to34/plugin.json
  4563. msgctxt "description"
  4564. msgid "Upgrades configurations from Cura 3.3 to Cura 3.4."
  4565. msgstr "Aktualisiert Konfigurationen von Cura 3.3 auf Cura 3.4."
  4566. #: VersionUpgrade/VersionUpgrade33to34/plugin.json
  4567. msgctxt "name"
  4568. msgid "Version Upgrade 3.3 to 3.4"
  4569. msgstr "Upgrade von Version 3.3 auf 3.4"
  4570. #: VersionUpgrade/VersionUpgrade43to44/plugin.json
  4571. msgctxt "description"
  4572. msgid "Upgrades configurations from Cura 4.3 to Cura 4.4."
  4573. msgstr "Aktualisiert Konfigurationen von Cura 4.3 auf Cura 4.4."
  4574. #: VersionUpgrade/VersionUpgrade43to44/plugin.json
  4575. msgctxt "name"
  4576. msgid "Version Upgrade 4.3 to 4.4"
  4577. msgstr "Upgrade von Version 4.3 auf 4.4"
  4578. #: VersionUpgrade/VersionUpgrade34to35/plugin.json
  4579. msgctxt "description"
  4580. msgid "Upgrades configurations from Cura 3.4 to Cura 3.5."
  4581. msgstr "Aktualisiert Konfigurationen von Cura 3.4 auf Cura 3.5."
  4582. #: VersionUpgrade/VersionUpgrade34to35/plugin.json
  4583. msgctxt "name"
  4584. msgid "Version Upgrade 3.4 to 3.5"
  4585. msgstr "Upgrade von Version 3.4 auf 3.5"
  4586. #: VersionUpgrade/VersionUpgrade27to30/plugin.json
  4587. msgctxt "description"
  4588. msgid "Upgrades configurations from Cura 2.7 to Cura 3.0."
  4589. msgstr "Aktualisiert Konfigurationen von Cura 2.7 auf Cura 3.0."
  4590. #: VersionUpgrade/VersionUpgrade27to30/plugin.json
  4591. msgctxt "name"
  4592. msgid "Version Upgrade 2.7 to 3.0"
  4593. msgstr "Upgrade von Version 2.7 auf 3.0"
  4594. #: AMFReader/plugin.json
  4595. msgctxt "description"
  4596. msgid "Provides support for reading AMF files."
  4597. msgstr "Ermöglicht das Lesen von AMF-Dateien."
  4598. #: AMFReader/plugin.json
  4599. msgctxt "name"
  4600. msgid "AMF Reader"
  4601. msgstr "AMF-Reader"
  4602. #: GCodeProfileReader/plugin.json
  4603. msgctxt "description"
  4604. msgid "Provides support for importing profiles from g-code files."
  4605. msgstr "Ermöglicht das Importieren von Profilen aus G-Code-Dateien."
  4606. #: GCodeProfileReader/plugin.json
  4607. msgctxt "name"
  4608. msgid "G-code Profile Reader"
  4609. msgstr "G-Code-Profil-Reader"
  4610. #: FirmwareUpdater/plugin.json
  4611. msgctxt "description"
  4612. msgid "Provides a machine actions for updating firmware."
  4613. msgstr "Ermöglicht Gerätemaßnahmen für die Aktualisierung der Firmware."
  4614. #: FirmwareUpdater/plugin.json
  4615. msgctxt "name"
  4616. msgid "Firmware Updater"
  4617. msgstr "Firmware-Aktualisierungsfunktion"
  4618. #: X3DReader/plugin.json
  4619. msgctxt "description"
  4620. msgid "Provides support for reading X3D files."
  4621. msgstr "Bietet Unterstützung für das Lesen von X3D-Dateien."
  4622. #: X3DReader/plugin.json
  4623. msgctxt "name"
  4624. msgid "X3D Reader"
  4625. msgstr "X3D-Reader"
  4626. #: Toolbox/plugin.json
  4627. msgctxt "description"
  4628. msgid "Find, manage and install new Cura packages."
  4629. msgstr "Neue Cura Pakete finden, verwalten und installieren."
  4630. #: Toolbox/plugin.json
  4631. msgctxt "name"
  4632. msgid "Toolbox"
  4633. msgstr "Toolbox"
  4634. #: PerObjectSettingsTool/plugin.json
  4635. msgctxt "description"
  4636. msgid "Provides the Per Model Settings."
  4637. msgstr "Ermöglicht die Einstellungen pro Objekt."
  4638. #: PerObjectSettingsTool/plugin.json
  4639. msgctxt "name"
  4640. msgid "Per Model Settings Tool"
  4641. msgstr "Werkzeug „Einstellungen pro Objekt“"
  4642. #: PostProcessingPlugin/plugin.json
  4643. msgctxt "description"
  4644. msgid "Extension that allows for user created scripts for post processing"
  4645. msgstr "Erweiterung, die eine Nachbearbeitung von Skripten ermöglicht, die von Benutzern erstellt wurden"
  4646. #: PostProcessingPlugin/plugin.json
  4647. msgctxt "name"
  4648. msgid "Post Processing"
  4649. msgstr "Nachbearbeitung"
  4650. #: CuraEngineBackend/plugin.json
  4651. msgctxt "description"
  4652. msgid "Provides the link to the CuraEngine slicing backend."
  4653. msgstr "Stellt die Verbindung zum Slicing-Backend der CuraEngine her."
  4654. #: CuraEngineBackend/plugin.json
  4655. msgctxt "name"
  4656. msgid "CuraEngine Backend"
  4657. msgstr "CuraEngine Backend"
  4658. #: USBPrinting/plugin.json
  4659. msgctxt "description"
  4660. msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
  4661. msgstr "Akzeptiert den G-Code und sendet diesen an einen Drucker. Das Plugin kann auch die Firmware aktualisieren."
  4662. #: USBPrinting/plugin.json
  4663. msgctxt "name"
  4664. msgid "USB printing"
  4665. msgstr "USB-Drucken"
  4666. #: CuraProfileWriter/plugin.json
  4667. msgctxt "description"
  4668. msgid "Provides support for exporting Cura profiles."
  4669. msgstr "Ermöglicht das Exportieren von Cura-Profilen."
  4670. #: CuraProfileWriter/plugin.json
  4671. msgctxt "name"
  4672. msgid "Cura Profile Writer"
  4673. msgstr "Cura-Profil-Writer"
  4674. #: UM3NetworkPrinting/plugin.json
  4675. msgctxt "description"
  4676. msgid "Manages network connections to Ultimaker networked printers."
  4677. msgstr "Verwaltet Netzwerkverbindungen zu Ultimaker-Netzwerkdruckern."
  4678. #: UM3NetworkPrinting/plugin.json
  4679. msgctxt "name"
  4680. msgid "Ultimaker Network Connection"
  4681. msgstr "Ultimaker-Netzwerkverbindung"
  4682. #: UltimakerMachineActions/plugin.json
  4683. msgctxt "description"
  4684. msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)."
  4685. msgstr "Ermöglicht Maschinenabläufe für Ultimaker-Maschinen (z. B. Assistent für Bettnivellierung, Auswahl von Upgrades usw.)"
  4686. #: UltimakerMachineActions/plugin.json
  4687. msgctxt "name"
  4688. msgid "Ultimaker machine actions"
  4689. msgstr "Ultimaker-Maschinenabläufe"
  4690. #: 3MFReader/plugin.json
  4691. msgctxt "description"
  4692. msgid "Provides support for reading 3MF files."
  4693. msgstr "Ermöglicht das Lesen von 3MF-Dateien."
  4694. #: 3MFReader/plugin.json
  4695. msgctxt "name"
  4696. msgid "3MF Reader"
  4697. msgstr "3MF-Reader"
  4698. #: GCodeGzWriter/plugin.json
  4699. msgctxt "description"
  4700. msgid "Writes g-code to a compressed archive."
  4701. msgstr "G-Code wird in ein komprimiertes Archiv geschrieben."
  4702. #: GCodeGzWriter/plugin.json
  4703. msgctxt "name"
  4704. msgid "Compressed G-code Writer"
  4705. msgstr "Writer für komprimierten G-Code"
  4706. #: GCodeGzReader/plugin.json
  4707. msgctxt "description"
  4708. msgid "Reads g-code from a compressed archive."
  4709. msgstr "Liest G-Code-Format aus einem komprimierten Archiv."
  4710. #: GCodeGzReader/plugin.json
  4711. msgctxt "name"
  4712. msgid "Compressed G-code Reader"
  4713. msgstr "Reader für komprimierten G-Code"
  4714. #: ModelChecker/plugin.json
  4715. msgctxt "description"
  4716. msgid "Checks models and print configuration for possible printing issues and give suggestions."
  4717. msgstr "Überprüft Modelle und Druckkonfiguration auf mögliche Probleme und erteilt Empfehlungen."
  4718. #: ModelChecker/plugin.json
  4719. msgctxt "name"
  4720. msgid "Model Checker"
  4721. msgstr "Modell-Prüfer"
  4722. #: FirmwareUpdateChecker/plugin.json
  4723. msgctxt "description"
  4724. msgid "Checks for firmware updates."
  4725. msgstr "Nach Firmware-Updates suchen."
  4726. #: FirmwareUpdateChecker/plugin.json
  4727. msgctxt "name"
  4728. msgid "Firmware Update Checker"
  4729. msgstr "Firmware-Update-Prüfer"
  4730. #: GCodeReader/plugin.json
  4731. msgctxt "description"
  4732. msgid "Allows loading and displaying G-code files."
  4733. msgstr "Ermöglicht das Laden und Anzeigen von G-Code-Dateien."
  4734. #: GCodeReader/plugin.json
  4735. msgctxt "name"
  4736. msgid "G-code Reader"
  4737. msgstr "G-Code-Reader"
  4738. #: SupportEraser/plugin.json
  4739. msgctxt "description"
  4740. msgid "Creates an eraser mesh to block the printing of support in certain places"
  4741. msgstr "Erstellt ein Radierernetz, um den Druck von Stützstrukturen in bestimmten Positionen zu blockieren"
  4742. #: SupportEraser/plugin.json
  4743. msgctxt "name"
  4744. msgid "Support Eraser"
  4745. msgstr "Stützstruktur-Radierer"
  4746. #: TrimeshReader/plugin.json
  4747. msgctxt "description"
  4748. msgid "Provides support for reading model files."
  4749. msgstr "Unterstützt das Lesen von Modelldateien."
  4750. #: TrimeshReader/plugin.json
  4751. msgctxt "name"
  4752. msgid "Trimesh Reader"
  4753. msgstr "Trimesh Reader"
  4754. #: SentryLogger/plugin.json
  4755. msgctxt "description"
  4756. msgid "Logs certain events so that they can be used by the crash reporter"
  4757. msgstr "Protokolliert bestimmte Ereignisse, damit diese vom Absturzbericht verwendet werden können"
  4758. #: SentryLogger/plugin.json
  4759. msgctxt "name"
  4760. msgid "Sentry Logger"
  4761. msgstr "Sentry-Protokolleinrichtung"
  4762. #: UFPReader/plugin.json
  4763. msgctxt "description"
  4764. msgid "Provides support for reading Ultimaker Format Packages."
  4765. msgstr "Bietet Unterstützung für das Lesen von Ultimaker Format Packages."
  4766. #: UFPReader/plugin.json
  4767. msgctxt "name"
  4768. msgid "UFP Reader"
  4769. msgstr "UFP-Reader"
  4770. #: LegacyProfileReader/plugin.json
  4771. msgctxt "description"
  4772. msgid "Provides support for importing profiles from legacy Cura versions."
  4773. msgstr "Bietet Unterstützung für den Import von Profilen der Vorgängerversionen von Cura."
  4774. #: LegacyProfileReader/plugin.json
  4775. msgctxt "name"
  4776. msgid "Legacy Cura Profile Reader"
  4777. msgstr "Cura-Vorgängerprofil-Reader"
  4778. #: PrepareStage/plugin.json
  4779. msgctxt "description"
  4780. msgid "Provides a prepare stage in Cura."
  4781. msgstr "Bietet eine Vorbereitungsstufe in Cura."
  4782. #: PrepareStage/plugin.json
  4783. msgctxt "name"
  4784. msgid "Prepare Stage"
  4785. msgstr "Vorbereitungsstufe"
  4786. #: MonitorStage/plugin.json
  4787. msgctxt "description"
  4788. msgid "Provides a monitor stage in Cura."
  4789. msgstr "Bietet eine Überwachungsstufe in Cura."
  4790. #: MonitorStage/plugin.json
  4791. msgctxt "name"
  4792. msgid "Monitor Stage"
  4793. msgstr "Überwachungsstufe"
  4794. #: XRayView/plugin.json
  4795. msgctxt "description"
  4796. msgid "Provides the X-Ray view."
  4797. msgstr "Stellt die Röntgen-Ansicht bereit."
  4798. #: XRayView/plugin.json
  4799. msgctxt "name"
  4800. msgid "X-Ray View"
  4801. msgstr "Röntgen-Ansicht"
  4802. #: 3MFWriter/plugin.json
  4803. msgctxt "description"
  4804. msgid "Provides support for writing 3MF files."
  4805. msgstr "Bietet Unterstützung für das Schreiben von 3MF-Dateien."
  4806. #: 3MFWriter/plugin.json
  4807. msgctxt "name"
  4808. msgid "3MF Writer"
  4809. msgstr "3MF-Writer"
  4810. #: SliceInfoPlugin/plugin.json
  4811. msgctxt "description"
  4812. msgid "Submits anonymous slice info. Can be disabled through preferences."
  4813. msgstr "Sendet anonymisierte Slice-Informationen. Kann in den Einstellungen deaktiviert werden."
  4814. #: SliceInfoPlugin/plugin.json
  4815. msgctxt "name"
  4816. msgid "Slice info"
  4817. msgstr "Slice-Informationen"
  4818. #: PreviewStage/plugin.json
  4819. msgctxt "description"
  4820. msgid "Provides a preview stage in Cura."
  4821. msgstr "Bietet eine Vorschaustufe in Cura."
  4822. #: PreviewStage/plugin.json
  4823. msgctxt "name"
  4824. msgid "Preview Stage"
  4825. msgstr "Vorschaustufe"
  4826. #: SimulationView/plugin.json
  4827. msgctxt "description"
  4828. msgid "Provides the Simulation view."
  4829. msgstr "Ermöglicht die Simulationsansicht."
  4830. #: SimulationView/plugin.json
  4831. msgctxt "name"
  4832. msgid "Simulation View"
  4833. msgstr "Simulationsansicht"
  4834. #: MachineSettingsAction/plugin.json
  4835. msgctxt "description"
  4836. msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)."
  4837. msgstr "Beschreibt die Durchführung der Geräteeinstellung (z. B. Druckabmessung, Düsengröße usw.)"
  4838. #: MachineSettingsAction/plugin.json
  4839. msgctxt "name"
  4840. msgid "Machine Settings Action"
  4841. msgstr "Beschreibung Geräteeinstellungen"
  4842. #: XmlMaterialProfile/plugin.json
  4843. msgctxt "description"
  4844. msgid "Provides capabilities to read and write XML-based material profiles."
  4845. msgstr "Bietet Möglichkeiten, um XML-basierte Materialprofile zu lesen und zu schreiben."
  4846. #: XmlMaterialProfile/plugin.json
  4847. msgctxt "name"
  4848. msgid "Material Profiles"
  4849. msgstr "Materialprofile"
  4850. #: SolidView/plugin.json
  4851. msgctxt "description"
  4852. msgid "Provides a normal solid mesh view."
  4853. msgstr "Bietet eine normale, solide Netzansicht."
  4854. #: SolidView/plugin.json
  4855. msgctxt "name"
  4856. msgid "Solid View"
  4857. msgstr "Solide Ansicht"
  4858. #: CuraProfileReader/plugin.json
  4859. msgctxt "description"
  4860. msgid "Provides support for importing Cura profiles."
  4861. msgstr "Ermöglicht das Importieren von Cura-Profilen."
  4862. #: CuraProfileReader/plugin.json
  4863. msgctxt "name"
  4864. msgid "Cura Profile Reader"
  4865. msgstr "Cura-Profil-Reader"
  4866. #: UFPWriter/plugin.json
  4867. msgctxt "description"
  4868. msgid "Provides support for writing Ultimaker Format Packages."
  4869. msgstr "Bietet Unterstützung für das Schreiben von Ultimaker Format Packages."
  4870. #: UFPWriter/plugin.json
  4871. msgctxt "name"
  4872. msgid "UFP Writer"
  4873. msgstr "UFP-Writer"
  4874. #: GCodeWriter/plugin.json
  4875. msgctxt "description"
  4876. msgid "Writes g-code to a file."
  4877. msgstr "Schreibt G-Code in eine Datei."
  4878. #: GCodeWriter/plugin.json
  4879. msgctxt "name"
  4880. msgid "G-code Writer"
  4881. msgstr "G-Code-Writer"
  4882. #: ImageReader/plugin.json
  4883. msgctxt "description"
  4884. msgid "Enables ability to generate printable geometry from 2D image files."
  4885. msgstr "Ermöglicht Erstellung von druckbarer Geometrie aus einer 2D-Bilddatei."
  4886. #: ImageReader/plugin.json
  4887. msgctxt "name"
  4888. msgid "Image Reader"
  4889. msgstr "Bild-Reader"
  4890. #: CuraDrive/plugin.json
  4891. msgctxt "description"
  4892. msgid "Backup and restore your configuration."
  4893. msgstr "Sicherung und Wiederherstellen Ihrer Konfiguration."
  4894. #: CuraDrive/plugin.json
  4895. msgctxt "name"
  4896. msgid "Cura Backups"
  4897. msgstr "Cura-Backups"
  4898. #~ msgctxt "@info:status"
  4899. #~ msgid "Global stack is missing."
  4900. #~ msgstr "Globaler Stack fehlt."
  4901. #~ msgctxt "@info:status"
  4902. #~ msgid "Your model is not manifold. The highlighted areas indicate either missing or extraneous surfaces."
  4903. #~ msgstr "Ihrem Modell fehlen Schichten. Die fehlenden oder fehlerhaften Bereiche sind hervorgehoben."
  4904. #~ msgctxt "@info:title"
  4905. #~ msgid "Model errors"
  4906. #~ msgstr "Modellfehler"
  4907. #~ msgctxt "@label:listbox"
  4908. #~ msgid "Layer thickness"
  4909. #~ msgstr "Schichtdicke"
  4910. #~ msgctxt "@label"
  4911. #~ msgid "Your key to connected 3D printing"
  4912. #~ msgstr "Ihr Schlüssel zu vernetztem 3D-Druck"
  4913. #~ msgctxt "@text"
  4914. #~ msgid ""
  4915. #~ "- Customize your experience with more print profiles and plugins\n"
  4916. #~ "- Stay flexible by syncing your setup and loading it anywhere\n"
  4917. #~ "- Increase efficiency with a remote workflow on Ultimaker printers"
  4918. #~ msgstr ""
  4919. #~ "- Personalisieren Sie Ihre Druckerfahrung mit weiteren Druckprofilen und Plugins\n"
  4920. #~ "- Bleiben Sie flexibel, indem Sie Ihre Einstellungen synchronisieren und überall laden können\n"
  4921. #~ "- Steigern Sie Ihre Effizienz mit einem Remote-Workflow für Ultimaker-Drucker"
  4922. #~ msgctxt "@button"
  4923. #~ msgid "Create account"
  4924. #~ msgstr "Konto erstellen"
  4925. #~ msgctxt "@action:inmenu menubar:edit"
  4926. #~ msgid "Delete Selected Model"
  4927. #~ msgid_plural "Delete Selected Models"
  4928. #~ msgstr[0] "Ausgewähltes Modell löschen"
  4929. #~ msgstr[1] "Ausgewählte Modelle löschen"
  4930. #~ msgctxt "@action:inmenu menubar:edit"
  4931. #~ msgid "Center Selected Model"
  4932. #~ msgid_plural "Center Selected Models"
  4933. #~ msgstr[0] "Ausgewähltes Modell zentrieren"
  4934. #~ msgstr[1] "Ausgewählte Modelle zentrieren"
  4935. #~ msgctxt "@action:inmenu menubar:edit"
  4936. #~ msgid "Multiply Selected Model"
  4937. #~ msgid_plural "Multiply Selected Models"
  4938. #~ msgstr[0] "Ausgewähltes Modell multiplizieren"
  4939. #~ msgstr[1] "Ausgewählte Modelle multiplizieren"
  4940. #~ msgctxt "@button"
  4941. #~ msgid "Finish"
  4942. #~ msgstr "Beenden"
  4943. #~ msgctxt "@label"
  4944. #~ msgid "Ultimaker Account"
  4945. #~ msgstr "Ultimaker‑Konto"
  4946. #~ msgctxt "@text"
  4947. #~ msgid "Your key to connected 3D printing"
  4948. #~ msgstr "Ihr Schlüssel zu vernetztem 3D-Druck"
  4949. #~ msgctxt "@text"
  4950. #~ msgid "- Customize your experience with more print profiles and plugins"
  4951. #~ msgstr "- Personalisieren Sie Ihre Druckerfahrung mit weiteren Druckprofile und Plugins"
  4952. #~ msgctxt "@text"
  4953. #~ msgid "- Stay flexible by syncing your setup and loading it anywhere"
  4954. #~ msgstr "- Bleiben Sie flexibel, indem Sie Ihre Einstellungen synchronisieren und überall laden können"
  4955. #~ msgctxt "@text"
  4956. #~ msgid "- Increase efficiency with a remote workflow on Ultimaker printers"
  4957. #~ msgstr "- Steigern Sie Ihre Effizienz mit einem Remote-Workflow für Ultimaker-Drucker"
  4958. #~ msgctxt "@text"
  4959. #~ msgid ""
  4960. #~ "Please follow these steps to set up\n"
  4961. #~ "Ultimaker Cura. This will only take a few moments."
  4962. #~ msgstr ""
  4963. #~ "Befolgen Sie bitte diese Schritte für das Einrichten von\n"
  4964. #~ "Ultimaker Cura. Dies dauert nur wenige Sekunden."
  4965. #~ msgctxt "@label"
  4966. #~ msgid "What's new in Ultimaker Cura"
  4967. #~ msgstr "Neuheiten bei Ultimaker Cura"
  4968. #~ msgctxt "@label ({} is object name)"
  4969. #~ msgid "Are you sure you wish to remove {}? This cannot be undone!"
  4970. #~ msgstr "Möchten Sie {} wirklich entfernen? Der Vorgang kann nicht rückgängig gemacht werden!"
  4971. #~ msgctxt "@info:status"
  4972. #~ msgid "The selected model was too small to load."
  4973. #~ msgstr "Das gewählte Modell war zu klein zum Laden."
  4974. #~ msgctxt "@info:status"
  4975. #~ msgid "Successfully imported profile {0}"
  4976. #~ msgstr "Profil erfolgreich importiert {0}"
  4977. #~ msgctxt "@info:status"
  4978. #~ msgid "Could not find a quality type {0} for the current configuration."
  4979. #~ msgstr "Es konnte keine Qualitätsangabe {0} für die vorliegende Konfiguration gefunden werden."
  4980. #~ msgctxt "info:status"
  4981. #~ msgid "Adding printer {} ({}) from your account"
  4982. #~ msgstr "Drucker {} ({}) aus Ihrem Konto wird hinzugefügt"
  4983. #~ msgctxt "info:hidden list items"
  4984. #~ msgid "<li>... and {} others</li>"
  4985. #~ msgstr "<li>... und {} weitere</li>"
  4986. #~ msgctxt "info:status"
  4987. #~ msgid "Printers added from Digital Factory:<ul>{}</ul>"
  4988. #~ msgstr "Drucker aus Digital Factory hinzugefügt<ul>:{}</ul>"
  4989. #~ msgctxt "info:status"
  4990. #~ msgid "<ul>{}</ul>To establish a connection, please visit the <a href='https://mycloud.ultimaker.com/'>Ultimaker Digital Factory</a>."
  4991. #~ msgstr "<ul>{}</ul>Bitte besuchen Sie die <a href='https://mycloud.ultimaker.com/'>Ultimaker Digital Factory</a>, um eine Verbindung herzustellen."
  4992. #~ msgctxt "@label ({} is printer name)"
  4993. #~ msgid "{} will be removed until the next account sync. <br> To remove {} permanently, visit <a href='https://mycloud.ultimaker.com/'>Ultimaker Digital Factory</a>. <br><br>Are you sure you want to remove {} temporarily?"
  4994. #~ msgstr "{} wird bis zur nächsten Synchronisierung des Kontos entfernt. <br> Wenn Sie {} dauerhaft entfernen möchten, dann besuchen Sie bitte die <a href='https://mycloud.ultimaker.com/'>Ultimaker Digital Factory</a>. <br><br>Möchten Sie {} wirklich vorübergehend entfernen?"
  4995. #~ msgctxt "@label"
  4996. #~ msgid ""
  4997. #~ "You are about to remove {} printer(s) from Cura. This action cannot be undone. \n"
  4998. #~ "Are you sure you want to continue?"
  4999. #~ msgstr ""
  5000. #~ "Es werden gleich {} Drucker aus Cura entfernt. Der Vorgang kann nicht rückgängig gemacht werden. \n"
  5001. #~ "Möchten Sie wirklich fortfahren?"
  5002. #~ msgctxt "@label"
  5003. #~ msgid ""
  5004. #~ "You are about to remove all printers from Cura. This action cannot be undone. \n"
  5005. #~ "Are you sure you want to continue?"
  5006. #~ msgstr ""
  5007. #~ "Es werden gleich alle Drucker aus Cura entfernt. Dieser Vorgang kann nicht rückgängig gemacht werden. \n"
  5008. #~ "Möchten Sie wirklich fortfahren?"
  5009. #~ msgctxt "@action:ComboBox option"
  5010. #~ msgid "Update"
  5011. #~ msgstr "Aktualisierung"
  5012. #~ msgctxt "@action:ComboBox option"
  5013. #~ msgid "Create new"
  5014. #~ msgstr "Neu erstellen"
  5015. #~ msgctxt "@label"
  5016. #~ msgid "Shared Heater"
  5017. #~ msgstr "Gemeinsames Heizelement"
  5018. #~ msgctxt "@info"
  5019. #~ msgid "The webcam is not available because you are monitoring a cloud printer."
  5020. #~ msgstr "Die Webcam ist nicht verfügbar, weil Sie einen Cloud-Drucker überwachen."
  5021. #~ msgctxt "@button"
  5022. #~ msgid "Ultimaker Digital Factory"
  5023. #~ msgstr "Ultimaker Digital Factory"
  5024. #~ msgctxt "@text:window, %1 is a profile name"
  5025. #~ msgid ""
  5026. #~ "You have customized some profile settings.\n"
  5027. #~ "Would you like to Keep these changed settings after switching profiles?\n"
  5028. #~ "Alternatively, you can Discard the changes to load the defaults from '%1'."
  5029. #~ msgstr ""
  5030. #~ "Sie haben einige Profileinstellungen personalisiert.\n"
  5031. #~ "Möchten Sie diese geänderten Einstellungen nach einem Profilwechsel beibehalten?\n"
  5032. #~ "Sie können die Änderungen auch verwerfen, um die Standardeinstellungen von '%1' zu laden."
  5033. #~ msgctxt "@label"
  5034. #~ msgid "Overrides %1 setting."
  5035. #~ msgid_plural "Overrides %1 settings."
  5036. #~ msgstr[0] "Überschreibt %1 Einstellung."
  5037. #~ msgstr[1] "Überschreibt %1 Einstellungen."
  5038. #~ msgctxt "@text"
  5039. #~ msgid "Please give your printer a name"
  5040. #~ msgstr "Weisen Sie Ihrem Drucker bitte einen Namen zu"
  5041. #~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  5042. #~ msgid "New features are available for your {machine_name}! It is recommended to update the firmware on your printer."
  5043. #~ msgstr "Für Ihren {machine_name} sind neue Funktionen verfügbar! Es wird empfohlen, ein Firmware-Update für Ihren Drucker auszuführen."
  5044. #~ msgctxt "@action:button"
  5045. #~ msgid "Print via Cloud"
  5046. #~ msgstr "Über Cloud drucken"
  5047. #~ msgctxt "@properties:tooltip"
  5048. #~ msgid "Print via Cloud"
  5049. #~ msgstr "Über Cloud drucken"
  5050. #~ msgctxt "@info:status"
  5051. #~ msgid "Connected via Cloud"
  5052. #~ msgstr "Über Cloud verbunden"
  5053. #~ msgctxt "@info:status Ultimaker Cloud should not be translated."
  5054. #~ msgid "Connect to Ultimaker Cloud"
  5055. #~ msgstr "Verbinden mit Ultimaker Cloud"
  5056. #~ msgctxt "@label"
  5057. #~ msgid "You need to login first before you can rate"
  5058. #~ msgstr "Vor der Bewertung müssen Sie sich anmelden"
  5059. #~ msgctxt "@label"
  5060. #~ msgid "You need to install the package before you can rate"
  5061. #~ msgstr "Vor der Bewertung müssen Sie das Paket installierten"
  5062. #~ msgctxt "@label"
  5063. #~ msgid "ratings"
  5064. #~ msgstr "Bewertungen"
  5065. #~ msgctxt "@label"
  5066. #~ msgid "Featured"
  5067. #~ msgstr "Unterstützter"
  5068. #~ msgctxt "@label"
  5069. #~ msgid "Your rating"
  5070. #~ msgstr "Ihre Bewertung"
  5071. #~ msgctxt "@label"
  5072. #~ msgid "Author"
  5073. #~ msgstr "Autor"
  5074. #~ msgctxt "@description"
  5075. #~ msgid "Get plugins and materials verified by Ultimaker"
  5076. #~ msgstr "Holen Sie sich Plugins und von Ultimaker getestete Materialien"
  5077. #~ msgctxt "@label The argument is a username."
  5078. #~ msgid "Hi %1"
  5079. #~ msgstr "Hallo %1"
  5080. #~ msgctxt "@button"
  5081. #~ msgid "Ultimaker account"
  5082. #~ msgstr "Ultimaker‑Konto"
  5083. #~ msgctxt "@button"
  5084. #~ msgid "Sign out"
  5085. #~ msgstr "Abmelden"
  5086. #~ msgctxt "@label"
  5087. #~ msgid "Support library for analysis of complex networks"
  5088. #~ msgstr "Support-Bibliothek für die Analyse von komplexen Netzwerken"
  5089. #~ msgctxt "@Label"
  5090. #~ msgid "Python HTTP library"
  5091. #~ msgstr "Bibliothek für Python HTTP"
  5092. #~ msgctxt "@text:window"
  5093. #~ msgid ""
  5094. #~ "You have customized some profile settings.\n"
  5095. #~ "Would you like to keep or discard those settings?"
  5096. #~ msgstr ""
  5097. #~ "Sie haben einige Profileinstellungen angepasst.\n"
  5098. #~ "Möchten Sie diese Einstellungen übernehmen oder verwerfen?"
  5099. #~ msgctxt "@title:column"
  5100. #~ msgid "Default"
  5101. #~ msgstr "Standard"
  5102. #~ msgctxt "@title:column"
  5103. #~ msgid "Customized"
  5104. #~ msgstr "Angepasst"
  5105. #~ msgctxt "@action:button"
  5106. #~ msgid "Discard"
  5107. #~ msgstr "Verwerfen"
  5108. #~ msgctxt "@action:button"
  5109. #~ msgid "Keep"
  5110. #~ msgstr "Übernehmen"
  5111. #~ msgctxt "@action:button"
  5112. #~ msgid "Create New Profile"
  5113. #~ msgstr "Neues Profil erstellen"
  5114. #~ msgctxt "@title:menu menubar:file"
  5115. #~ msgid "&Save..."
  5116. #~ msgstr "&Speichern..."
  5117. #~ msgctxt "@text"
  5118. #~ msgid "Place enter your printer's IP address."
  5119. #~ msgstr "Bitte geben Sie die IP-Adresse Ihres Druckers ein."
  5120. #~ msgctxt "@button"
  5121. #~ msgid "Create an account"
  5122. #~ msgstr "Ein Konto erstellen"
  5123. #~ msgctxt "@info:generic"
  5124. #~ msgid ""
  5125. #~ "\n"
  5126. #~ "Do you want to sync material and software packages with your account?"
  5127. #~ msgstr ""
  5128. #~ "\n"
  5129. #~ "Möchten Sie Material- und Softwarepakete mit Ihrem Konto synchronisieren?"
  5130. #~ msgctxt "@info:generic"
  5131. #~ msgid ""
  5132. #~ "\n"
  5133. #~ "Syncing..."
  5134. #~ msgstr ""
  5135. #~ "\n"
  5136. #~ "Synchronisierung läuft ..."
  5137. #~ msgctxt "@info:status"
  5138. #~ msgid "Nothing to slice because none of the models fit the build volume or are assigned to a disabled extruder. Please scale or rotate models to fit, or enable an extruder."
  5139. #~ msgstr "Es ist kein Objekt zum Schneiden vorhanden, da keines der Modelle den Druckabmessungen entspricht oder weil sie einem deaktivierten Extruder zugewiesen wurden. Bitte die Modelle passend skalieren oder drehen."
  5140. #~ msgctxt "@info:backup_status"
  5141. #~ msgid "There was an error listing your backups."
  5142. #~ msgstr "Beim Versuch, Ihre Backups aufzulisten, trat ein Fehler auf."
  5143. #~ msgctxt "@title:groupbox"
  5144. #~ msgid "User description (Note: Developers may not speak your language, please use English if possible)"
  5145. #~ msgstr "Benutzerbeschreibung (Hinweis: Bitte schreiben Sie auf Englisch, da die Entwickler Ihre Sprache möglicherweise nicht beherrschen.)"
  5146. #~ msgctxt "@title:window"
  5147. #~ msgid "Closing Cura"
  5148. #~ msgstr "Cura wird geschlossen"
  5149. #~ msgctxt "@label"
  5150. #~ msgid "Are you sure you want to exit Cura?"
  5151. #~ msgstr "Möchten Sie Cura wirklich beenden?"
  5152. #~ msgctxt "@label"
  5153. #~ msgid "Language:"
  5154. #~ msgstr "Sprache:"
  5155. #~ msgctxt "@label"
  5156. #~ msgid "Ultimaker Cloud"
  5157. #~ msgstr "Ultimaker Cloud"
  5158. #~ msgctxt "@text"
  5159. #~ msgid "The next generation 3D printing workflow"
  5160. #~ msgstr "Der 3D-Druckablauf der nächsten Generation"
  5161. #~ msgctxt "@text"
  5162. #~ msgid "- Send print jobs to Ultimaker printers outside your local network"
  5163. #~ msgstr "- Aufträge an Ultimaker-Drucker außerhalb Ihres lokalen Netzwerks senden"
  5164. #~ msgctxt "@text"
  5165. #~ msgid "- Store your Ultimaker Cura settings in the cloud for use anywhere"
  5166. #~ msgstr "- Ihre Ultimaker Cura-Einstellungen für die Verwendung andernorts an die Cloud senden"
  5167. #~ msgctxt "@text"
  5168. #~ msgid "- Get exclusive access to print profiles from leading brands"
  5169. #~ msgstr "- Exklusiven Zugang zu Druckprofilen von führenden Marken erhalten"
  5170. #~ msgctxt "@label"
  5171. #~ msgid "The value is resolved from per-extruder values "
  5172. #~ msgstr "Der Wert wird von Pro-Extruder-Werten gelöst "
  5173. #~ msgctxt "@label"
  5174. #~ msgid "The next generation 3D printing workflow"
  5175. #~ msgstr "Der 3D-Druckablauf der nächsten Generation"
  5176. #~ msgctxt "@text"
  5177. #~ msgid ""
  5178. #~ "- Send print jobs to Ultimaker printers outside your local network\n"
  5179. #~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n"
  5180. #~ "- Get exclusive access to print profiles from leading brands"
  5181. #~ msgstr ""
  5182. #~ "- Aufträge an Ultimaker-Drucker außerhalb Ihres lokalen Netzwerks senden\n"
  5183. #~ "- Ihre Ultimaker Cura-Einstellungen für die Verwendung andernorts an die Cloud senden\n"
  5184. #~ "- Exklusiven Zugang zu Druckprofilen von führenden Marken erhalten"
  5185. #~ msgctxt "@title:window"
  5186. #~ msgid "About "
  5187. #~ msgstr "Über "
  5188. #~ msgctxt "@info:button"
  5189. #~ msgid "Quit Cura"
  5190. #~ msgstr "Quit Cura"
  5191. #~ msgctxt "@action:checkbox"
  5192. #~ msgid "Infill only"
  5193. #~ msgstr "Nur Füllungen"
  5194. #~ msgctxt "@info:tooltip"
  5195. #~ msgid "Change active post-processing scripts"
  5196. #~ msgstr "Aktive Skripts Nachbearbeitung ändern"
  5197. #~ msgctxt "@label:listbox"
  5198. #~ msgid "Feedrate"
  5199. #~ msgstr "Vorschub"
  5200. #~ msgctxt "name"
  5201. #~ msgid "Machine Settings action"
  5202. #~ msgstr "Beschreibung Geräteeinstellungen"
  5203. #~ msgctxt "@info:title"
  5204. #~ msgid "New cloud printers found"
  5205. #~ msgstr "Neue Cloud-Drucker gefunden"
  5206. #~ msgctxt "@info:message"
  5207. #~ msgid "New printers have been found connected to your account, you can find them in your list of discovered printers."
  5208. #~ msgstr "Es wurden neue Drucker gefunden, die Sie zu Ihrem Konto hinzufügen können. Sie finden diese in der Liste gefundener Drucker."
  5209. #~ msgctxt "@info:status"
  5210. #~ msgid "Cura does not accurately display layers when Wire Printing is enabled"
  5211. #~ msgstr "Cura zeigt die Schichten nicht akkurat an, wenn Wire Printing aktiviert ist"
  5212. #~ msgctxt "@label"
  5213. #~ msgid "Pre-sliced file {0}"
  5214. #~ msgstr "Vorgeschnittene Datei {0}"
  5215. #~ msgctxt "@label"
  5216. #~ msgid ""
  5217. #~ "This plugin contains a license.\n"
  5218. #~ "You need to accept this license to install this plugin.\n"
  5219. #~ "Do you agree with the terms below?"
  5220. #~ msgstr ""
  5221. #~ "Dieses Plugin enthält eine Lizenz.\n"
  5222. #~ "Sie müssen diese Lizenz akzeptieren, um das Plugin zu installieren.\n"
  5223. #~ "Stimmen Sie den nachfolgenden Bedingungen zu?"
  5224. #~ msgctxt "@action:button"
  5225. #~ msgid "Accept"
  5226. #~ msgstr "Akzeptieren"
  5227. #~ msgctxt "@action:button"
  5228. #~ msgid "Decline"
  5229. #~ msgstr "Ablehnen"
  5230. #~ msgctxt "@action:inmenu"
  5231. #~ msgid "Show All Settings"
  5232. #~ msgstr "Alle Einstellungen anzeigen"
  5233. #~ msgctxt "@title:window"
  5234. #~ msgid "Ultimaker Cura"
  5235. #~ msgstr "Ultimaker Cura"
  5236. #~ msgctxt "@title:window"
  5237. #~ msgid "About Cura"
  5238. #~ msgstr "Über Cura"
  5239. #~ msgctxt "@item:inmenu"
  5240. #~ msgid "Flatten active settings"
  5241. #~ msgstr "Einstellungen Glätten aktiv"
  5242. #~ msgctxt "@info:status"
  5243. #~ msgid "Profile has been flattened & activated."
  5244. #~ msgstr "Das Profil wurde geglättet und aktiviert."
  5245. #~ msgctxt "X3g Writer Plugin Description"
  5246. #~ msgid "Writes X3g to files"
  5247. #~ msgstr "Schreibt X3g in Dateien"
  5248. #~ msgctxt "X3g Writer File Description"
  5249. #~ msgid "X3g File"
  5250. #~ msgstr "X3g-Datei"
  5251. #~ msgctxt "X3G Writer File Description"
  5252. #~ msgid "X3G File"
  5253. #~ msgstr "X3G-Datei"
  5254. #~ msgctxt "@item:inlistbox"
  5255. #~ msgid "Open Compressed Triangle Mesh"
  5256. #~ msgstr "Öffnen Sie das komprimierte Dreiecksnetz"
  5257. #~ msgctxt "@item:inmenu"
  5258. #~ msgid "Profile Assistant"
  5259. #~ msgstr "Profilassistent"
  5260. #~ msgctxt "@item:inlistbox"
  5261. #~ msgid "Profile Assistant"
  5262. #~ msgstr "Profilassistent"
  5263. #~ msgctxt "@action:button"
  5264. #~ msgid "Retry"
  5265. #~ msgstr "Erneut versuchen"
  5266. #~ msgctxt "@label:table_header"
  5267. #~ msgid "Print Core"
  5268. #~ msgstr "Print Core"
  5269. #~ msgctxt "@label"
  5270. #~ msgid "Don't support overlap with other models"
  5271. #~ msgstr "Keine Überlappung mit anderen Modellen unterstützen"
  5272. #~ msgctxt "@label"
  5273. #~ msgid "Modify settings for overlap with other models"
  5274. #~ msgstr "Einstellungen für Überlappung mit anderen Modellen bearbeiten"
  5275. #~ msgctxt "@label"
  5276. #~ msgid "Modify settings for infill of other models"
  5277. #~ msgstr "Einstellungen für Füllung von anderen Modellen bearbeiten"
  5278. #~ msgctxt "@action:ComboBox option"
  5279. #~ msgid "Update existing"
  5280. #~ msgstr "Vorhandenes aktualisieren"
  5281. #~ msgctxt "@label"
  5282. #~ msgid "Not supported"
  5283. #~ msgstr "Nicht unterstützt"
  5284. #~ msgctxt "@action:button"
  5285. #~ msgid "Previous"
  5286. #~ msgstr "Zurück"
  5287. #~ msgctxt "@label"
  5288. #~ msgid "Tip"
  5289. #~ msgstr "Tipp"
  5290. #~ msgctxt "@label"
  5291. #~ msgid "Print experiment"
  5292. #~ msgstr "Druckexperiment"
  5293. #~ msgctxt "@label"
  5294. #~ msgid "Checklist"
  5295. #~ msgstr "Checkliste"
  5296. #~ msgctxt "@label"
  5297. #~ msgid "Please select any upgrades made to this Ultimaker 2."
  5298. #~ msgstr "Wählen Sie bitte alle durchgeführten Upgrades für diesen Ultimaker 2."
  5299. #~ msgctxt "@label"
  5300. #~ msgid "Olsson Block"
  5301. #~ msgstr "Olsson-Block"
  5302. #~ msgctxt "@window:text"
  5303. #~ msgid "Camera rendering: "
  5304. #~ msgstr "Kamera-Rendering: "
  5305. #~ msgctxt "@info:tooltip"
  5306. #~ msgid "Use multi build plate functionality"
  5307. #~ msgstr "Mehrfach-Druckplattenfunktion verwenden"
  5308. #~ msgctxt "@option:check"
  5309. #~ msgid "Use multi build plate functionality (restart required)"
  5310. #~ msgstr "Mehrfach-Druckplattenfunktion verwenden (Neustart erforderlich)"
  5311. #~ msgctxt "@label"
  5312. #~ msgid "Default profiles"
  5313. #~ msgstr "Standardprofile"
  5314. #~ msgctxt "@label:textbox"
  5315. #~ msgid "search settings"
  5316. #~ msgstr "Einstellungen durchsuchen"
  5317. #~ msgctxt "@label"
  5318. #~ msgid "Layer Height"
  5319. #~ msgstr "Schichtdicke"
  5320. #~ msgctxt "@tooltip"
  5321. #~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile."
  5322. #~ msgstr "Dieses Qualitätsprofil ist für Ihr aktuelles Material und Ihre derzeitige Düsenkonfiguration nicht verfügbar. Bitte ändern Sie diese, um das Qualitätsprofil zu aktivieren."
  5323. #~ msgctxt "@tooltip"
  5324. #~ msgid "A custom profile is currently active. To enable the quality slider, choose a default quality profile in Custom tab"
  5325. #~ msgstr "Ein benutzerdefiniertes Profil ist derzeit aktiv. Wählen Sie ein voreingestelltes Qualitätsprofil aus der Registerkarte „Benutzerdefiniert“, um den Schieberegler für Qualität zu aktivieren"
  5326. #~ msgctxt "@title:menu"
  5327. #~ msgid "&Build plate"
  5328. #~ msgstr "&Druckplatte"
  5329. #~ msgctxt "@title:settings"
  5330. #~ msgid "&Profile"
  5331. #~ msgstr "&Profil"
  5332. #~ msgctxt "@action:label"
  5333. #~ msgid "Build plate"
  5334. #~ msgstr "Druckplatte"
  5335. #~ msgctxt "description"
  5336. #~ msgid "Dump the contents of all settings to a HTML file."
  5337. #~ msgstr "Die Inhalte aller Einstellungen in eine HTML-Datei ausgeben."
  5338. #~ msgctxt "name"
  5339. #~ msgid "God Mode"
  5340. #~ msgstr "Gott-Modus"
  5341. #~ msgctxt "description"
  5342. #~ msgid "Create a flattened quality changes profile."
  5343. #~ msgstr "Erstellt eine geglättete Qualität, verändert das Profil."
  5344. #~ msgctxt "name"
  5345. #~ msgid "Profile Flattener"
  5346. #~ msgstr "Profilglättfunktion"
  5347. #~ msgctxt "description"
  5348. #~ msgid "Allows material manufacturers to create new material and quality profiles using a drop-in UI."
  5349. #~ msgstr "Ermöglichen Sie Materialherstellern die Erstellung neuer Material- und Qualitätsprofile, indem Sie eine Drop-In-Benutzerschnittstelle verwenden."
  5350. #~ msgctxt "name"
  5351. #~ msgid "Print Profile Assistant"
  5352. #~ msgstr "Druckprofil-Assistent"
  5353. #~ msgctxt "@info:status"
  5354. #~ msgid "Connected over the network."
  5355. #~ msgstr "Über Netzwerk verbunden."
  5356. #~ msgctxt "@info:status"
  5357. #~ msgid "Connected over the network. Please approve the access request on the printer."
  5358. #~ msgstr "Über Netzwerk verbunden. Geben Sie die Zugriffsanforderung für den Drucker frei."
  5359. #~ msgctxt "@info:status"
  5360. #~ msgid "Connected over the network. No access to control the printer."
  5361. #~ msgstr "Über Netzwerk verbunden. Kein Zugriff auf die Druckerverwaltung."
  5362. #~ msgctxt "@info:status"
  5363. #~ msgid "Access to the printer requested. Please approve the request on the printer"
  5364. #~ msgstr "Zugriff auf Drucker erforderlich. Bestätigen Sie den Zugriff auf den Drucker"
  5365. #~ msgctxt "@info:title"
  5366. #~ msgid "Authentication status"
  5367. #~ msgstr "Authentifizierungsstatus"
  5368. #~ msgctxt "@info:title"
  5369. #~ msgid "Authentication Status"
  5370. #~ msgstr "Authentifizierungsstatus"
  5371. #~ msgctxt "@info:tooltip"
  5372. #~ msgid "Re-send the access request"
  5373. #~ msgstr "Zugriffanforderung erneut senden"
  5374. #~ msgctxt "@info:status"
  5375. #~ msgid "Access to the printer accepted"
  5376. #~ msgstr "Zugriff auf den Drucker genehmigt"
  5377. #~ msgctxt "@info:status"
  5378. #~ msgid "No access to print with this printer. Unable to send print job."
  5379. #~ msgstr "Kein Zugriff auf das Drucken mit diesem Drucker. Druckauftrag kann nicht gesendet werden."
  5380. #~ msgctxt "@action:button"
  5381. #~ msgid "Request Access"
  5382. #~ msgstr "Zugriff anfordern"
  5383. #~ msgctxt "@info:tooltip"
  5384. #~ msgid "Send access request to the printer"
  5385. #~ msgstr "Zugriffsanforderung für den Drucker senden"
  5386. #~ msgctxt "@label"
  5387. #~ msgid "Unable to start a new print job."
  5388. #~ msgstr "Es kann kein neuer Druckauftrag gestartet werden."
  5389. #~ msgctxt "@label"
  5390. #~ msgid "There is an issue with the configuration of your Ultimaker, which makes it impossible to start the print. Please resolve this issues before continuing."
  5391. #~ msgstr "Es liegt ein Problem mit der Konfiguration Ihres Ultimaker vor, das den Druckstart verhindert. Lösen Sie dieses Problem bitte, bevor Sie fortfahren."
  5392. #~ msgctxt "@window:title"
  5393. #~ msgid "Mismatched configuration"
  5394. #~ msgstr "Konfiguration nicht übereinstimmend"
  5395. #~ msgctxt "@label"
  5396. #~ msgid "Are you sure you wish to print with the selected configuration?"
  5397. #~ msgstr "Möchten Sie wirklich mit der gewählten Konfiguration drucken?"
  5398. #~ msgctxt "@label"
  5399. #~ msgid "There is a mismatch between the configuration or calibration of the printer and Cura. For the best result, always slice for the PrintCores and materials that are inserted in your printer."
  5400. #~ msgstr "Anforderungen zwischen der Druckerkonfiguration oder -kalibrierung und Cura stimmen nicht überein. Für optimale Ergebnisse schneiden Sie stets für die PrintCores und Materialien, die in Ihren Drucker eingelegt wurden."
  5401. #~ msgctxt "@info:status"
  5402. #~ msgid "Sending new jobs (temporarily) blocked, still sending the previous print job."
  5403. #~ msgstr "Das Senden neuer Aufträge ist (vorübergehend) blockiert; der vorherige Druckauftrag wird noch gesendet."
  5404. #~ msgctxt "@info:status"
  5405. #~ msgid "Sending data to printer"
  5406. #~ msgstr "Daten werden zum Drucker gesendet"
  5407. #~ msgctxt "@info:title"
  5408. #~ msgid "Sending Data"
  5409. #~ msgstr "Daten werden gesendet"
  5410. #~ msgctxt "@info:status"
  5411. #~ msgid "No Printcore loaded in slot {slot_number}"
  5412. #~ msgstr "Kein PrintCore geladen in Steckplatz {slot_number}"
  5413. #~ msgctxt "@info:status"
  5414. #~ msgid "No material loaded in slot {slot_number}"
  5415. #~ msgstr "Kein Material geladen in Steckplatz {slot_number}"
  5416. #~ msgctxt "@label"
  5417. #~ msgid "Different PrintCore (Cura: {cura_printcore_name}, Printer: {remote_printcore_name}) selected for extruder {extruder_id}"
  5418. #~ msgstr "Abweichender PrintCore (Cura: {cura_printcore_name}, Printer: {remote_printcore_name}) für Extruder gewählt {extruder_id}"
  5419. #~ msgctxt "@label"
  5420. #~ msgid "Different material (Cura: {0}, Printer: {1}) selected for extruder {2}"
  5421. #~ msgstr "Abweichendes Material (Cura: {0}, Drucker: {1}) für Extruder {2} gewählt"
  5422. #~ msgctxt "@window:title"
  5423. #~ msgid "Sync with your printer"
  5424. #~ msgstr "Synchronisieren Ihres Druckers"
  5425. #~ msgctxt "@label"
  5426. #~ msgid "Would you like to use your current printer configuration in Cura?"
  5427. #~ msgstr "Möchten Sie Ihre aktuelle Druckerkonfiguration in Cura verwenden?"
  5428. #~ msgctxt "@label"
  5429. #~ msgid "The PrintCores and/or materials on your printer differ from those within your current project. For the best result, always slice for the PrintCores and materials that are inserted in your printer."
  5430. #~ msgstr "Die PrintCores und/oder Materialien auf Ihrem Drucker unterscheiden sich von denen Ihres aktuellen Projekts. Für optimale Ergebnisse schneiden Sie stets für die PrintCores und Materialien, die in Ihren Drucker eingelegt wurden."
  5431. #~ msgctxt "@action:button"
  5432. #~ msgid "View in Monitor"
  5433. #~ msgstr "In Monitor überwachen"
  5434. #~ msgctxt "@info:status"
  5435. #~ msgid "Printer '{printer_name}' has finished printing '{job_name}'."
  5436. #~ msgstr "Drucker '{printer_name}' hat '{job_name}' vollständig gedrückt."
  5437. #~ msgctxt "@info:status"
  5438. #~ msgid "The print job '{job_name}' was finished."
  5439. #~ msgstr "Der Druckauftrag '{job_name}' wurde ausgeführt."
  5440. #~ msgctxt "@info:status"
  5441. #~ msgid "Print finished"
  5442. #~ msgstr "Druck vollendet"
  5443. #~ msgctxt "@label:material"
  5444. #~ msgid "Empty"
  5445. #~ msgstr "Leer"
  5446. #~ msgctxt "@label:material"
  5447. #~ msgid "Unknown"
  5448. #~ msgstr "Unbekannt"
  5449. #~ msgctxt "@info:title"
  5450. #~ msgid "Cloud error"
  5451. #~ msgstr "Cloudfehler"
  5452. #~ msgctxt "@info:status"
  5453. #~ msgid "Could not export print job."
  5454. #~ msgstr "Druckauftrag konnte nicht exportiert werden."
  5455. #~ msgctxt "@info:description"
  5456. #~ msgid "There was an error connecting to the cloud."
  5457. #~ msgstr "Es liegt ein Fehler beim Verbinden mit der Cloud vor."
  5458. #~ msgctxt "@info:status"
  5459. #~ msgid "Uploading via Ultimaker Cloud"
  5460. #~ msgstr "Über Ultimaker Cloud hochladen"
  5461. #~ msgctxt "@info:status Ultimaker Cloud is a brand name and shouldn't be translated."
  5462. #~ msgid "Connect to Ultimaker Cloud"
  5463. #~ msgstr "Verbinden mit Ultimaker Cloud"
  5464. #~ msgctxt "@action"
  5465. #~ msgid "Don't ask me again for this printer."
  5466. #~ msgstr "Nicht mehr für diesen Drucker nachfragen."
  5467. #~ msgctxt "@info:status"
  5468. #~ msgid "You can now send and monitor print jobs from anywhere using your Ultimaker account."
  5469. #~ msgstr "Sie können jetzt Druckaufträge mithilfe Ihres Ultimaker-Kontos von einem anderen Ort aus senden und überwachen."
  5470. #~ msgctxt "@info:status"
  5471. #~ msgid "Connected!"
  5472. #~ msgstr "Verbunden!"
  5473. #~ msgctxt "@action"
  5474. #~ msgid "Review your connection"
  5475. #~ msgstr "Ihre Verbindung überprüfen"
  5476. #~ msgctxt "@info:status Don't translate the XML tags <filename>!"
  5477. #~ msgid "The machine defined in profile <filename>{0}</filename> ({1}) doesn't match with your current machine ({2}), could not import it."
  5478. #~ msgstr "Die Maschine, die im Profil <filename>{0}</filename> ({1}) definiert wurde, entspricht nicht Ihrer derzeitigen Maschine ({2}). Importieren nicht möglich."
  5479. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  5480. #~ msgid "Failed to import profile from <filename>{0}</filename>:"
  5481. #~ msgstr "Import des Profils aus Datei <filename>{0}</filename> fehlgeschlagen:"
  5482. #~ msgctxt "@window:title"
  5483. #~ msgid "Existing Connection"
  5484. #~ msgstr "Vorhandene Verbindung"
  5485. #~ msgctxt "@message:text"
  5486. #~ msgid "This printer/group is already added to Cura. Please select another printer/group."
  5487. #~ msgstr "Diese/r Drucker/Gruppe wurde bereits zu Cura hinzugefügt. Wählen Sie bitte eine/n andere/n Drucker/Gruppe."
  5488. #~ msgctxt "@label"
  5489. #~ msgid "Enter the IP address or hostname of your printer on the network."
  5490. #~ msgstr "Geben Sie die IP-Adresse oder den Hostnamen Ihres Druckers auf dem Netzwerk ein."
  5491. #~ msgctxt "@info:tooltip"
  5492. #~ msgid "Connect to a printer"
  5493. #~ msgstr "Mit einem Drucker verbinden"
  5494. #~ msgctxt "@title"
  5495. #~ msgid "Cura Settings Guide"
  5496. #~ msgstr "Anleitung für Cura-Einstellungen"
  5497. #~ msgctxt "@info:tooltip"
  5498. #~ msgid "Zooming towards the mouse is not supported in the orthogonal perspective."
  5499. #~ msgstr "Das Zoomen in Mausrichtung wird in der Orthogonalansicht nicht unterstützt."
  5500. #~ msgid "Orthogonal"
  5501. #~ msgstr "Orthogonal"
  5502. #~ msgctxt "description"
  5503. #~ msgid "Manages network connections to Ultimaker 3 printers."
  5504. #~ msgstr "Verwaltet Netzwerkverbindungen zu Ultimaker 3-Druckern."
  5505. #~ msgctxt "name"
  5506. #~ msgid "UM3 Network Connection"
  5507. #~ msgstr "UM3-Netzwerkverbindung"
  5508. #~ msgctxt "description"
  5509. #~ msgid "Provides extra information and explanations about settings in Cura, with images and animations."
  5510. #~ msgstr "Bietet zusätzliche Informationen und Erklärungen zu den Einstellungen in Cura mit Abbildungen und Animationen."
  5511. #~ msgctxt "name"
  5512. #~ msgid "Settings Guide"
  5513. #~ msgstr "Anleitung für Einstellungen"
  5514. #~ msgctxt "@item:inmenu"
  5515. #~ msgid "Cura Settings Guide"
  5516. #~ msgstr "Anleitung für Cura-Einstellungen"
  5517. #~ msgctxt "@info:generic"
  5518. #~ msgid "Settings have been changed to match the current availability of extruders: [%s]"
  5519. #~ msgstr "Die Einstellungen wurden passend für die aktuelle Verfügbarkeit der Extruder geändert: [%s]"
  5520. #~ msgctxt "@title:groupbox"
  5521. #~ msgid "User description"
  5522. #~ msgstr "Benutzerbeschreibung"
  5523. #~ msgctxt "@info"
  5524. #~ msgid "These options are not available because you are monitoring a cloud printer."
  5525. #~ msgstr "Diese Optionen sind nicht verfügbar, weil Sie einen Cloud-Drucker überwachen."
  5526. #~ msgctxt "@label link to connect manager"
  5527. #~ msgid "Go to Cura Connect"
  5528. #~ msgstr "Gehe zu Cura Connect"
  5529. #~ msgctxt "@info"
  5530. #~ msgid "All jobs are printed."
  5531. #~ msgstr "Alle Aufträge wurden gedruckt."
  5532. #~ msgctxt "@label link to connect manager"
  5533. #~ msgid "View print history"
  5534. #~ msgstr "Druckauftragshistorie anzeigen"
  5535. #~ msgctxt "@label"
  5536. #~ msgid ""
  5537. #~ "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.\n"
  5538. #~ "\n"
  5539. #~ "Select your printer from the list below:"
  5540. #~ msgstr ""
  5541. #~ "Um über das Netzwerk direkt auf Ihrem Drucker zu drucken, stellen Sie bitte sicher, dass der Drucker mit dem Netzwerkkabel verbunden ist oder verbinden Sie Ihren Drucker mit Ihrem WLAN-Netzwerk. Wenn Sie Cura nicht mit Ihrem Drucker verbinden, können Sie dennoch ein USB-Laufwerk für die Übertragung von G-Code-Dateien auf Ihren Drucker verwenden.\n"
  5542. #~ "\n"
  5543. #~ "Wählen Sie Ihren Drucker aus der folgenden Liste:"
  5544. #~ msgctxt "@info"
  5545. #~ msgid ""
  5546. #~ "Please make sure your printer has a connection:\n"
  5547. #~ "- Check if the printer is turned on.\n"
  5548. #~ "- Check if the printer is connected to the network."
  5549. #~ msgstr ""
  5550. #~ "Stellen Sie bitte sicher, dass Ihr Drucker verbunden ist:\n"
  5551. #~ "- Prüfen Sie, ob Ihr Drucker eingeschaltet ist.\n"
  5552. #~ "- Prüfen Sie, ob der Drucker mit dem Netzwerk verbunden ist."
  5553. #~ msgctxt "@option:check"
  5554. #~ msgid "See only current build plate"
  5555. #~ msgstr "Nur aktuelle Druckplatte anzeigen"
  5556. #~ msgctxt "@action:button"
  5557. #~ msgid "Arrange to all build plates"
  5558. #~ msgstr "An allen Druckplatten ausrichten"
  5559. #~ msgctxt "@action:button"
  5560. #~ msgid "Arrange current build plate"
  5561. #~ msgstr "An aktueller Druckplatte ausrichten"
  5562. #~ msgctxt "description"
  5563. #~ msgid "Allows saving the resulting slice as an X3G file, to support printers that read this format (Malyan, Makerbot and other Sailfish-based printers)."
  5564. #~ msgstr "Ermöglicht das Speichern des resultierenden Slices als X3G-Datei, um Drucker zu unterstützen, die dieses Format lesen (Malyan, Makerbot und andere Sailfish-basierte Drucker)."
  5565. #~ msgctxt "name"
  5566. #~ msgid "X3GWriter"
  5567. #~ msgstr "X3G-Writer"
  5568. #~ msgctxt "description"
  5569. #~ msgid "Reads SVG files as toolpaths, for debugging printer movements."
  5570. #~ msgstr "Liest SVG-Dateien als Werkzeugwege für die Fehlersuche bei Druckerbewegungen."
  5571. #~ msgctxt "name"
  5572. #~ msgid "SVG Toolpath Reader"
  5573. #~ msgstr "SVG-Werkzeugweg-Reader"
  5574. #~ msgctxt "@item:inmenu"
  5575. #~ msgid "Changelog"
  5576. #~ msgstr "Änderungsprotokoll"
  5577. #~ msgctxt "@item:inmenu"
  5578. #~ msgid "Show Changelog"
  5579. #~ msgstr "Änderungsprotokoll anzeigen"
  5580. #~ msgctxt "@info:status"
  5581. #~ msgid "Sending data to remote cluster"
  5582. #~ msgstr "Daten werden zu Remote-Cluster gesendet"
  5583. #~ msgctxt "@info:status"
  5584. #~ msgid "Connect to Ultimaker Cloud"
  5585. #~ msgstr "Verbinden mit Ultimaker Cloud"
  5586. #~ msgctxt "@info"
  5587. #~ msgid "Cura collects anonymized usage statistics."
  5588. #~ msgstr "Cura erfasst anonymisierte Nutzungsstatistiken."
  5589. #~ msgctxt "@info:title"
  5590. #~ msgid "Collecting Data"
  5591. #~ msgstr "Daten werden erfasst"
  5592. #~ msgctxt "@action:button"
  5593. #~ msgid "More info"
  5594. #~ msgstr "Mehr Infos"
  5595. #~ msgctxt "@action:tooltip"
  5596. #~ msgid "See more information on what data Cura sends."
  5597. #~ msgstr "Siehe mehr Informationen dazu, was Cura sendet."
  5598. #~ msgctxt "@action:button"
  5599. #~ msgid "Allow"
  5600. #~ msgstr "Zulassen"
  5601. #~ msgctxt "@action:tooltip"
  5602. #~ msgid "Allow Cura to send anonymized usage statistics to help prioritize future improvements to Cura. Some of your preferences and settings are sent, the Cura version and a hash of the models you're slicing."
  5603. #~ msgstr "Damit lassen Sie zu, dass Cura anonymisierte Nutzungsstatistiken sendet, um zukünftige Verbesserungen für Cura zu definieren. Einige Ihrer Präferenzen und Einstellungen, die Cura-Version und ein Hash der Modelle, die Sie slicen, werden gesendet."
  5604. #~ msgctxt "@item:inmenu"
  5605. #~ msgid "Evaluation"
  5606. #~ msgstr "Bewertung"
  5607. #~ msgctxt "@info:title"
  5608. #~ msgid "Network enabled printers"
  5609. #~ msgstr "Netzwerkfähige Drucker"
  5610. #~ msgctxt "@info:title"
  5611. #~ msgid "Local printers"
  5612. #~ msgstr "Lokale Drucker"
  5613. #~ msgctxt "@info:backup_failed"
  5614. #~ msgid "Tried to restore a Cura backup that does not match your current version."
  5615. #~ msgstr "Versucht, ein Cura-Backup zu erstellen, das nicht Ihrer aktuellen Version entspricht."
  5616. #~ msgctxt "@title"
  5617. #~ msgid "Machine Settings"
  5618. #~ msgstr "Geräteeinstellungen"
  5619. #~ msgctxt "@label"
  5620. #~ msgid "Printer Settings"
  5621. #~ msgstr "Druckereinstellungen"
  5622. #~ msgctxt "@option:check"
  5623. #~ msgid "Origin at center"
  5624. #~ msgstr "Ausgang in Mitte"
  5625. #~ msgctxt "@option:check"
  5626. #~ msgid "Heated bed"
  5627. #~ msgstr "Heizbares Bett"
  5628. #~ msgctxt "@label"
  5629. #~ msgid "Printhead Settings"
  5630. #~ msgstr "Druckkopfeinstellungen"
  5631. #~ msgctxt "@tooltip"
  5632. #~ msgid "Distance from the left of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"."
  5633. #~ msgstr "Abstand von der linken Seite des Druckkopfes zur Düsenmitte. Wird verwendet, um Kollisionen zwischen vorherigen Drucken und dem Druckkopf während des Druckmodus „Nacheinander“ zu vermeiden."
  5634. #~ msgctxt "@tooltip"
  5635. #~ msgid "Distance from the front of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"."
  5636. #~ msgstr "Abstand von der Vorderseite des Druckkopfes zur Düsenmitte. Wird verwendet, um Kollisionen zwischen vorherigen Drucken und dem Druckkopf während des Druckmodus „Nacheinander“ zu vermeiden."
  5637. #~ msgctxt "@tooltip"
  5638. #~ msgid "Distance from the right of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"."
  5639. #~ msgstr "Abstand von der rechten Seite des Druckkopfes zur Düsenmitte. Wird verwendet, um Kollisionen zwischen vorherigen Drucken und dem Druckkopf während des Druckmodus „Nacheinander“ zu vermeiden."
  5640. #~ msgctxt "@tooltip"
  5641. #~ msgid "Distance from the rear of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"."
  5642. #~ msgstr "Abstand von der Rückseite des Druckkopfes zur Düsenmitte. Wird verwendet, um Kollisionen zwischen vorherigen Drucken und dem Druckkopf während des Druckmodus „Nacheinander“ zu vermeiden."
  5643. #~ msgctxt "@label"
  5644. #~ msgid "Gantry height"
  5645. #~ msgstr "Brückenhöhe"
  5646. #~ msgctxt "@tooltip"
  5647. #~ msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes). Used to prevent collisions between previous prints and the gantry when printing \"One at a Time\"."
  5648. #~ msgstr "Der Höhenunterschied zwischen der Düsenspitze und dem Brückensystem (X- und Y-Achsen). Wird verwendet, um Kollisionen zwischen vorherigen Drucken und der Brücke zu verhindern, wenn im Modus „Nacheinander“ gedruckt wird."
  5649. #~ msgctxt "@label"
  5650. #~ msgid "Start G-code"
  5651. #~ msgstr "Start G-code"
  5652. #~ msgctxt "@tooltip"
  5653. #~ msgid "G-code commands to be executed at the very start."
  5654. #~ msgstr "G-Code-Befehle, die zum Start ausgeführt werden sollen."
  5655. #~ msgctxt "@label"
  5656. #~ msgid "End G-code"
  5657. #~ msgstr "Ende G-code"
  5658. #~ msgctxt "@tooltip"
  5659. #~ msgid "G-code commands to be executed at the very end."
  5660. #~ msgstr "G-Code-Befehle, die am Ende ausgeführt werden sollen."
  5661. #~ msgctxt "@label"
  5662. #~ msgid "Nozzle Settings"
  5663. #~ msgstr "Düseneinstellungen"
  5664. #~ msgctxt "@tooltip"
  5665. #~ msgid "The nominal diameter of filament supported by the printer. The exact diameter will be overridden by the material and/or the profile."
  5666. #~ msgstr "Der Nenndurchmesser des durch den Drucker unterstützten Filaments. Der exakte Durchmesser wird durch das Material und/oder das Profil überschrieben."
  5667. #~ msgctxt "@label"
  5668. #~ msgid "Extruder Start G-code"
  5669. #~ msgstr "G-Code Extruder-Start"
  5670. #~ msgctxt "@label"
  5671. #~ msgid "Extruder End G-code"
  5672. #~ msgstr "G-Code Extruder-Ende"
  5673. #~ msgctxt "@label"
  5674. #~ msgid "Changelog"
  5675. #~ msgstr "Änderungsprotokoll"
  5676. #~ msgctxt "@title:window"
  5677. #~ msgid "User Agreement"
  5678. #~ msgstr "Benutzervereinbarung"
  5679. #~ msgctxt "@alabel"
  5680. #~ msgid "Enter the IP address or hostname of your printer on the network."
  5681. #~ msgstr "Geben Sie die IP-Adresse oder den Hostnamen Ihres Druckers auf dem Netzwerk ein."
  5682. #~ msgctxt "@info"
  5683. #~ msgid "Please select a network connected printer to monitor."
  5684. #~ msgstr "Bitte einen mit dem Netzwerk verbunden Drucker für die Überwachung wählen."
  5685. #~ msgctxt "@info"
  5686. #~ msgid "Please connect your Ultimaker printer to your local network."
  5687. #~ msgstr "Verbinden Sie Ihren Ultimaker-Drucker bitte mit Ihrem lokalen Netzwerk."
  5688. #~ msgctxt "@text:window"
  5689. #~ msgid "Cura sends anonymous data to Ultimaker in order to improve the print quality and user experience. Below is an example of all the data that is sent."
  5690. #~ msgstr "Cura sendet anonyme Daten an Ultimaker, um die Druckqualität und Benutzererfahrung zu steigern. Nachfolgend ist ein Beispiel aller Daten, die gesendet werden."
  5691. #~ msgctxt "@text:window"
  5692. #~ msgid "I don't want to send this data"
  5693. #~ msgstr "Ich möchte diese Daten nicht senden"
  5694. #~ msgctxt "@text:window"
  5695. #~ msgid "Allow sending this data to Ultimaker and help us improve Cura"
  5696. #~ msgstr "Ich erlaube das Senden der Daten an Ultimaker, um Cura zu verbessern"
  5697. #~ msgctxt "@label"
  5698. #~ msgid "No print selected"
  5699. #~ msgstr "Kein Druck ausgewählt"
  5700. #~ msgctxt "@info:tooltip"
  5701. #~ msgid "By default, white pixels represent high points on the mesh and black pixels represent low points on the mesh. Change this option to reverse the behavior such that black pixels represent high points on the mesh and white pixels represent low points on the mesh."
  5702. #~ msgstr "Standardmäßig repräsentieren weiße Pixel hohe Punkte im Netz und schwarze Pixel repräsentieren niedrige Punkte im Netz. Ändern Sie diese Option um das Verhalten so umzukehren, dass schwarze Pixel hohe Punkte im Netz darstellen und weiße Pixel niedrige Punkte im Netz."
  5703. #~ msgctxt "@title"
  5704. #~ msgid "Select Printer Upgrades"
  5705. #~ msgstr "Drucker-Upgrades wählen"
  5706. #~ msgctxt "@label"
  5707. #~ msgid "Select which extruder to use for support. This will build up supporting structures below the model to prevent the model from sagging or printing in mid air."
  5708. #~ msgstr "Wählen Sie, welcher Extruder für die Unterstützung verwendet wird. Dient zum Konstruieren von Stützstrukturen unter dem Modell, damit dieses nicht absinkt oder frei schwebend gedruckt wird."
  5709. #~ msgctxt "@tooltip"
  5710. #~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile"
  5711. #~ msgstr "Dieses Qualitätsprofil ist für Ihr aktuelles Material und Ihre derzeitige Düsenkonfiguration nicht verfügbar. Bitte ändern Sie diese, um das Qualitätsprofil zu aktivieren."
  5712. #~ msgctxt "@label shown when we load a Gcode file"
  5713. #~ msgid "Print setup disabled. G code file can not be modified."
  5714. #~ msgstr "Druckeinrichtung ist deaktiviert. G-Code kann nicht geändert werden."
  5715. #~ msgctxt "@label"
  5716. #~ msgid "See the material compatibility chart"
  5717. #~ msgstr "Siehe Materialkompatibilitätstabelle"
  5718. #~ msgctxt "@label"
  5719. #~ msgid "View types"
  5720. #~ msgstr "Typen anzeigen"
  5721. #~ msgctxt "@label"
  5722. #~ msgid "Hi "
  5723. #~ msgstr "Hallo "
  5724. #~ msgctxt "@text"
  5725. #~ msgid ""
  5726. #~ "- Send print jobs to Ultimaker printers outside your local network\n"
  5727. #~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n"
  5728. #~ "- Get exclusive access to material profiles from leading brands"
  5729. #~ msgstr ""
  5730. #~ "- Aufträge an Ultimaker-Drucker außerhalb Ihres lokalen Netzwerks senden\n"
  5731. #~ "- Ihre Ultimaker Cura-Einstellungen für die Verwendung andernorts an die Cloud senden\n"
  5732. #~ "- Exklusiven Zugang zu Materialprofilen von führenden Marken erhalten"
  5733. #~ msgctxt "@label:PrintjobStatus"
  5734. #~ msgid "Unable to Slice"
  5735. #~ msgstr "Slicing nicht möglich"
  5736. #~ msgctxt "@label"
  5737. #~ msgid "Time specification"
  5738. #~ msgstr "Zeitangabe"
  5739. #~ msgctxt "@label"
  5740. #~ msgid "Material specification"
  5741. #~ msgstr "Materialangabe"
  5742. #~ msgctxt "@title:tab"
  5743. #~ msgid "Add a printer to Cura"
  5744. #~ msgstr "Fügen Sie einen Drucker zu Cura hinzu"
  5745. #~ msgctxt "@title:tab"
  5746. #~ msgid ""
  5747. #~ "Select the printer you want to use from the list below.\n"
  5748. #~ "\n"
  5749. #~ "If your printer is not in the list, use the \"Custom FFF Printer\" from the \"Custom\" category and adjust the settings to match your printer in the next dialog."
  5750. #~ msgstr ""
  5751. #~ "Wählen Sie den zu verwendenden Drucker aus der nachfolgenden Liste.\n"
  5752. #~ "\n"
  5753. #~ "Wenn Ihr Drucker nicht in der Liste aufgeführt ist, verwenden Sie „Benutzerdefinierter FFF-Drucker“ aus der Kategorie „Benutzerdefiniert“ und passen Sie die Einstellungen im folgenden Dialog passend für Ihren Drucker an."
  5754. #~ msgctxt "@label"
  5755. #~ msgid "Printer Name"
  5756. #~ msgstr "Druckername"
  5757. #~ msgctxt "@action:button"
  5758. #~ msgid "Add Printer"
  5759. #~ msgstr "Drucker hinzufügen"
  5760. #~ msgid "Modify G-Code"
  5761. #~ msgstr "G-Code ändern"
  5762. #~ msgctxt "@info:status"
  5763. #~ msgid "Nothing to slice because none of the models fit the build volume. Please scale or rotate models to fit."
  5764. #~ msgstr "Es ist kein Objekt zum Schneiden vorhanden, da keines der Modelle der Druckabmessung entspricht. Bitte die Modelle passend skalieren oder drehen."
  5765. #~ msgctxt "@info:status"
  5766. #~ msgid "The selected material is incompatible with the selected machine or configuration."
  5767. #~ msgstr "Das gewählte Material ist mit der gewählten Maschine oder Konfiguration nicht kompatibel."
  5768. #~ msgctxt "@info:title"
  5769. #~ msgid "Incompatible Material"
  5770. #~ msgstr "Material nicht kompatibel"
  5771. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  5772. #~ msgid "Failed to import profile from <filename>{0}</filename>: <message>{1}</message>"
  5773. #~ msgstr "Import des Profils aus Datei <filename>{0}</filename> fehlgeschlagen: <message>{1}</message>"
  5774. #~ msgctxt "@title"
  5775. #~ msgid "Toolbox"
  5776. #~ msgstr "Toolbox"
  5777. #~ msgctxt "@label"
  5778. #~ msgid "Not available"
  5779. #~ msgstr "Nicht verfügbar"
  5780. #~ msgctxt "@label"
  5781. #~ msgid "Unreachable"
  5782. #~ msgstr "Nicht erreichbar"
  5783. #~ msgctxt "@label"
  5784. #~ msgid "Available"
  5785. #~ msgstr "Verfügbar"
  5786. #~ msgctxt "@label:status"
  5787. #~ msgid "Preparing"
  5788. #~ msgstr "Vorbereitung"
  5789. #~ msgctxt "@label:status"
  5790. #~ msgid "Pausing"
  5791. #~ msgstr "Wird pausiert"
  5792. #~ msgctxt "@label:status"
  5793. #~ msgid "Resuming"
  5794. #~ msgstr "Wird fortgesetzt"
  5795. #~ msgctxt "@label"
  5796. #~ msgid "Waiting for: Unavailable printer"
  5797. #~ msgstr "Warten auf: Drucker nicht verfügbar"
  5798. #~ msgctxt "@label"
  5799. #~ msgid "Waiting for: First available"
  5800. #~ msgstr "Warten auf: Ersten verfügbaren"
  5801. #~ msgctxt "@label"
  5802. #~ msgid "Waiting for: "
  5803. #~ msgstr "Warten auf: "
  5804. #~ msgctxt "@label"
  5805. #~ msgid "Configuration change"
  5806. #~ msgstr "Konfigurationsänderung"
  5807. #~ msgctxt "@label"
  5808. #~ msgid "The assigned printer, %1, requires the following configuration change(s):"
  5809. #~ msgstr "Der zugewiesene Drucker %1 erfordert die folgende(n) Konfigurationsänderung(en):"
  5810. #~ msgctxt "@label"
  5811. #~ msgid "Override"
  5812. #~ msgstr "Überschreiben"
  5813. #~ msgctxt "@label"
  5814. #~ msgid "Starting a print job with an incompatible configuration could damage your 3D printer. Are you sure you want to override the configuration and print %1?"
  5815. #~ msgstr "Das Starten eines Druckauftrags mit einer inkompatiblen Konfiguration kann Ihren 3D-Drucker beschädigen. Möchten Sie die Konfiguration wirklich überschreiben und %1 drucken?"
  5816. #~ msgctxt "@window:title"
  5817. #~ msgid "Override configuration configuration and start print"
  5818. #~ msgstr "Konfiguration überschreiben und Druck starten"
  5819. #~ msgctxt "@label link to connect manager"
  5820. #~ msgid "Manage queue"
  5821. #~ msgstr "Warteschlange verwalten"
  5822. #~ msgctxt "@label"
  5823. #~ msgid "Printing"
  5824. #~ msgstr "Drucken"
  5825. #~ msgctxt "@label link to connect manager"
  5826. #~ msgid "Manage printers"
  5827. #~ msgstr "Drucker verwalten"
  5828. #~ msgctxt "@action:button"
  5829. #~ msgid "Activate Configuration"
  5830. #~ msgstr "Konfiguration aktivieren"
  5831. #~ msgctxt "@info:tooltip"
  5832. #~ msgid "Load the configuration of the printer into Cura"
  5833. #~ msgstr "Die Druckerkonfiguration in Cura laden"
  5834. #~ msgctxt "@label"
  5835. #~ msgid "Show Travels"
  5836. #~ msgstr "Bewegungen anzeigen"
  5837. #~ msgctxt "@label"
  5838. #~ msgid "Show Helpers"
  5839. #~ msgstr "Helfer anzeigen"
  5840. #~ msgctxt "@label"
  5841. #~ msgid "Show Shell"
  5842. #~ msgstr "Gehäuse anzeigen"
  5843. #~ msgctxt "@label"
  5844. #~ msgid "Show Infill"
  5845. #~ msgstr "Füllung anzeigen"
  5846. #~ msgctxt "@text:window"
  5847. #~ msgid "I don't want to send these data"
  5848. #~ msgstr "Ich möchte diese Daten nicht senden"
  5849. #~ msgctxt "@text:window"
  5850. #~ msgid "Allow sending these data to Ultimaker and help us improve Cura"
  5851. #~ msgstr "Ich erlaube das Senden dieser Daten an Ultimaker, um Cura zu verbessern"
  5852. #~ msgctxt "@label"
  5853. #~ msgid "Printer type:"
  5854. #~ msgstr "Druckertyp:"
  5855. #~ msgctxt "@label"
  5856. #~ msgid "Connection:"
  5857. #~ msgstr "Verbindung:"
  5858. #~ msgctxt "@label"
  5859. #~ msgid "State:"
  5860. #~ msgstr "Status:"
  5861. #~ msgctxt "@label:MonitorStatus"
  5862. #~ msgid "Waiting for a printjob"
  5863. #~ msgstr "Warten auf einen Druckauftrag"
  5864. #~ msgctxt "@label:MonitorStatus"
  5865. #~ msgid "Waiting for someone to clear the build plate"
  5866. #~ msgstr "Warten auf Räumen des Druckbeets"
  5867. #~ msgctxt "@label:MonitorStatus"
  5868. #~ msgid "Aborting print..."
  5869. #~ msgstr "Drucken wird abgebrochen..."
  5870. #~ msgctxt "@label"
  5871. #~ msgid "Protected profiles"
  5872. #~ msgstr "Geschützte Profile"
  5873. #~ msgctxt "@label"
  5874. #~ msgid "Printer Name:"
  5875. #~ msgstr "Druckername:"
  5876. #~ msgctxt "@label"
  5877. #~ msgid "Profile:"
  5878. #~ msgstr "Profil:"
  5879. #~ msgctxt "@label:textbox"
  5880. #~ msgid "Search..."
  5881. #~ msgstr "Suchen..."
  5882. #~ msgctxt "@action:inmenu"
  5883. #~ msgid "Collapse All"
  5884. #~ msgstr "Alle verkleinern"
  5885. #~ msgctxt "@action:inmenu"
  5886. #~ msgid "Expand All"
  5887. #~ msgstr "Alle vergrößern"
  5888. #~ msgctxt "@label:header configurations"
  5889. #~ msgid "Available configurations"
  5890. #~ msgstr "Verfügbare Konfigurationen"
  5891. #~ msgctxt "@label:extruder label"
  5892. #~ msgid "Extruder"
  5893. #~ msgstr "Extruder"
  5894. #~ msgctxt "@label:extruder label"
  5895. #~ msgid "Yes"
  5896. #~ msgstr "Ja"
  5897. #~ msgctxt "@label:extruder label"
  5898. #~ msgid "No"
  5899. #~ msgstr "Nein"
  5900. #~ msgctxt "@label:listbox"
  5901. #~ msgid "Print Setup"
  5902. #~ msgstr "Druckeinrichtung"
  5903. #~ msgctxt "@label:listbox"
  5904. #~ msgid ""
  5905. #~ "Print Setup disabled\n"
  5906. #~ "G-code files cannot be modified"
  5907. #~ msgstr ""
  5908. #~ "Druckeinrichtung deaktiviert\n"
  5909. #~ "G-Code-Dateien können nicht geändert werden"
  5910. #~ msgctxt "@label Hours and minutes"
  5911. #~ msgid "00h 00min"
  5912. #~ msgstr "00 Stunden 00 Minuten"
  5913. #~ msgctxt "@tooltip"
  5914. #~ msgid "Time specification"
  5915. #~ msgstr "Zeitangabe"
  5916. #~ msgctxt "@label"
  5917. #~ msgid "Cost specification"
  5918. #~ msgstr "Kostenangabe"
  5919. #~ msgctxt "@label"
  5920. #~ msgid "Total:"
  5921. #~ msgstr "Insgesamt:"
  5922. #~ msgctxt "@tooltip"
  5923. #~ msgid "<b>Recommended Print Setup</b><br/><br/>Print with the recommended settings for the selected printer, material and quality."
  5924. #~ msgstr "<b>Empfohlene Druckeinrichtung</b><br/><br/>Drucken mit den empfohlenen Einstellungen für den gewählten Drucker, das gewählte Material und die gewählte Qualität."
  5925. #~ msgctxt "@tooltip"
  5926. #~ msgid "<b>Custom Print Setup</b><br/><br/>Print with finegrained control over every last bit of the slicing process."
  5927. #~ msgstr "<b>Benutzerdefinierte Druckeinrichtung</b><br/><br/>Druck mit Feineinstellung über jedem einzelnen Bereich des Schneidvorgangs."
  5928. #~ msgctxt "@action:inmenu menubar:help"
  5929. #~ msgid "Show Engine &Log..."
  5930. #~ msgstr "Engine-&Protokoll anzeigen..."
  5931. #~ msgctxt "@action:menu"
  5932. #~ msgid "Browse packages..."
  5933. #~ msgstr "Pakete durchsuchen..."
  5934. #~ msgctxt "@action:inmenu menubar:view"
  5935. #~ msgid "Expand/Collapse Sidebar"
  5936. #~ msgstr "Seitenleiste vergrößern/verkleinern"
  5937. #~ msgctxt "@label:PrintjobStatus"
  5938. #~ msgid "Please load a 3D model"
  5939. #~ msgstr "Bitte laden Sie ein 3D-Modell"
  5940. #~ msgctxt "@label:PrintjobStatus"
  5941. #~ msgid "Ready to slice"
  5942. #~ msgstr "Bereit zum Slicen (Schneiden)"
  5943. #~ msgctxt "@label:PrintjobStatus %1 is target operation"
  5944. #~ msgid "Ready to %1"
  5945. #~ msgstr "Bereit zum %1"
  5946. #~ msgctxt "@label:PrintjobStatus"
  5947. #~ msgid "Slicing unavailable"
  5948. #~ msgstr "Slicing ist nicht verfügbar"
  5949. #~ msgctxt "@info:tooltip"
  5950. #~ msgid "Slice current printjob"
  5951. #~ msgstr "Aktuellen Druckauftrag slicen"
  5952. #~ msgctxt "@info:tooltip"
  5953. #~ msgid "Cancel slicing process"
  5954. #~ msgstr "Slicing-Vorgang abbrechen"
  5955. #~ msgctxt "@label:Printjob"
  5956. #~ msgid "Prepare"
  5957. #~ msgstr "Vorbereiten"
  5958. #~ msgctxt "@label:Printjob"
  5959. #~ msgid "Cancel"
  5960. #~ msgstr "Abbrechen"
  5961. #~ msgctxt "@info:tooltip"
  5962. #~ msgid "Select the active output device"
  5963. #~ msgstr "Wählen Sie das aktive Ausgabegerät"
  5964. #~ msgctxt "@title:menu"
  5965. #~ msgid "&View"
  5966. #~ msgstr "&Ansicht"
  5967. #~ msgctxt "@title:menu"
  5968. #~ msgid "&Settings"
  5969. #~ msgstr "&Konfiguration"
  5970. #~ msgctxt "@title:menu menubar:toplevel"
  5971. #~ msgid "&Toolbox"
  5972. #~ msgstr "&Toolbox"
  5973. #~ msgctxt "@action:button"
  5974. #~ msgid "Open File"
  5975. #~ msgstr "Datei öffnen"
  5976. #~ msgctxt "@tooltip"
  5977. #~ msgid "This quality profile is not available for you current material and nozzle configuration. Please change these to enable this quality profile"
  5978. #~ msgstr "Dieses Qualitätsprofil ist für Ihr aktuelles Material und Ihre derzeitige Düsenkonfiguration nicht verfügbar. Bitte ändern Sie diese, um dieses Qualitätsprofil zu aktivieren"
  5979. #~ msgctxt "@label"
  5980. #~ msgid "Print Speed"
  5981. #~ msgstr "Druckgeschwindigkeit"
  5982. #~ msgctxt "@label"
  5983. #~ msgid "Slower"
  5984. #~ msgstr "Langsamer"
  5985. #~ msgctxt "@label"
  5986. #~ msgid "Faster"
  5987. #~ msgstr "Schneller"
  5988. #~ msgctxt "@label"
  5989. #~ msgid "Enable gradual"
  5990. #~ msgstr "Graduell aktivieren"
  5991. #~ msgctxt "@label"
  5992. #~ msgid "Generate Support"
  5993. #~ msgstr "Stützstruktur generieren"
  5994. #~ msgctxt "@label"
  5995. #~ msgid "Build Plate Adhesion"
  5996. #~ msgstr "Druckplattenhaftung"
  5997. #~ msgctxt "@label"
  5998. #~ msgid "Need help improving your prints?<br>Read the <a href='%1'>Ultimaker Troubleshooting Guides</a>"
  5999. #~ msgstr "Sie benötigen Hilfe für Ihre Drucke?<br>Lesen Sie die <a href='%1'>Ultimaker Anleitungen für Fehlerbehebung</a>>"
  6000. #~ msgctxt "@title:window"
  6001. #~ msgid "Engine Log"
  6002. #~ msgstr "Engine-Protokoll"
  6003. #~ msgctxt "@label"
  6004. #~ msgid "Printer type"
  6005. #~ msgstr "Druckertyp"
  6006. #~ msgctxt "@label"
  6007. #~ msgid "Use glue with this material combination"
  6008. #~ msgstr "Für diese Materialkombination Kleber verwenden"
  6009. #~ msgctxt "@label"
  6010. #~ msgid "Check compatibility"
  6011. #~ msgstr "Kompatibilität prüfen"
  6012. #~ msgctxt "@tooltip"
  6013. #~ msgid "Click to check the material compatibility on Ultimaker.com."
  6014. #~ msgstr "Klicken Sie, um die Materialkompatibilität auf Ultimaker.com zu prüfen."
  6015. #~ msgctxt "description"
  6016. #~ msgid "Shows changes since latest checked version."
  6017. #~ msgstr "Zeigt die Änderungen seit der letzten geprüften Version an."
  6018. #~ msgctxt "name"
  6019. #~ msgid "Changelog"
  6020. #~ msgstr "Änderungsprotokoll"
  6021. #~ msgctxt "description"
  6022. #~ msgid "Create a flattend quality changes profile."
  6023. #~ msgstr "Erstellt eine geglättete Qualität, verändert das Profil."
  6024. #~ msgctxt "name"
  6025. #~ msgid "Profile flatener"
  6026. #~ msgstr "Profilglättfunktion"
  6027. #~ msgctxt "description"
  6028. #~ msgid "Ask the user once if he/she agrees with our license."
  6029. #~ msgstr "Den Benutzer einmalig fragen, ob er unsere Lizenz akzeptiert."
  6030. #~ msgctxt "name"
  6031. #~ msgid "UserAgreement"
  6032. #~ msgstr "UserAgreement"
  6033. #~ msgctxt "@warning:status"
  6034. #~ msgid "Please generate G-code before saving."
  6035. #~ msgstr "Generieren Sie vor dem Speichern bitte einen G-Code."
  6036. #~ msgctxt "@action"
  6037. #~ msgid "Upgrade Firmware"
  6038. #~ msgstr "Firmware aktualisieren"
  6039. #~ msgctxt "@label unknown material"
  6040. #~ msgid "Unknown"
  6041. #~ msgstr "Unbekannt"
  6042. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  6043. #~ msgid "No custom profile to import in file <filename>{0}</filename>"
  6044. #~ msgstr "Kein benutzerdefiniertes Profil für das Importieren in Datei <filename>{0}</filename>"
  6045. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  6046. #~ msgid "This profile <filename>{0}</filename> contains incorrect data, could not import it."
  6047. #~ msgstr "Dieses Profil <filename>{0}</filename> enthält falsche Daten, Importieren nicht möglich."
  6048. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  6049. #~ msgid "The machine defined in profile <filename>{0}</filename> ({1}) doesn't match with your current machine ({2}), could not import it."
  6050. #~ msgstr "Die Maschine, die im Profil <filename>{0}</filename> ({1}) definiert wurde, entspricht nicht Ihrer derzeitigen Maschine ({2}). Importieren nicht möglich."
  6051. #~ msgctxt "@title:window"
  6052. #~ msgid "Confirm uninstall "
  6053. #~ msgstr "Deinstallieren bestätigen "
  6054. #~ msgctxt "@label Print estimates: m for meters, g for grams, %4 is currency and %3 is print cost"
  6055. #~ msgid "%1m / ~ %2g / ~ %4 %3"
  6056. #~ msgstr "%1m / ~ %2g / ~ %4 %3"
  6057. #~ msgctxt "@label Print estimates: m for meters, g for grams"
  6058. #~ msgid "%1m / ~ %2g"
  6059. #~ msgstr "%1m / ~ %2g"
  6060. #~ msgctxt "@title"
  6061. #~ msgid "Upgrade Firmware"
  6062. #~ msgstr "Firmware aktualisieren"
  6063. #~ msgctxt "@action:button"
  6064. #~ msgid "Print with Doodle3D WiFi-Box"
  6065. #~ msgstr "Mit Doodle3D WLAN-Box drucken"
  6066. #~ msgctxt "@properties:tooltip"
  6067. #~ msgid "Print with Doodle3D WiFi-Box"
  6068. #~ msgstr "Mit Doodle3D WLAN-Box drucken"
  6069. #~ msgctxt "@info:status"
  6070. #~ msgid "Connecting to Doodle3D Connect"
  6071. #~ msgstr "Zu Doodle3D Connect verbinden"
  6072. #~ msgctxt "@info:status"
  6073. #~ msgid "Sending data to Doodle3D Connect"
  6074. #~ msgstr "Daten werden zu Doodle3D Connect gesendet"
  6075. #~ msgctxt "@info:status"
  6076. #~ msgid "Unable to send data to Doodle3D Connect. Is another job still active?"
  6077. #~ msgstr "Daten können nicht zu Doodle3D Connect gesendet werden. Ist noch ein weiterer Auftrag in Bearbeitung?"
  6078. #~ msgctxt "@info:status"
  6079. #~ msgid "Storing data on Doodle3D Connect"
  6080. #~ msgstr "Daten werden auf Doodle3D Connect gespeichert"
  6081. #~ msgctxt "@info:status"
  6082. #~ msgid "File sent to Doodle3D Connect"
  6083. #~ msgstr "Datei wurde zu Doodle3D Connect gesendet"
  6084. #~ msgctxt "@action:button"
  6085. #~ msgid "Open Connect..."
  6086. #~ msgstr "Connect wird geöffnet ..."
  6087. #~ msgctxt "@info:tooltip"
  6088. #~ msgid "Open the Doodle3D Connect web interface"
  6089. #~ msgstr "Doodle3D Connect Web-Schnittstelle öffnen"
  6090. #~ msgctxt "@item:inlistbox"
  6091. #~ msgid "Blender file"
  6092. #~ msgstr "Blender-Datei"
  6093. #~ msgctxt "@info:status"
  6094. #~ msgid ""
  6095. #~ "Could not export using \"{}\" quality!\n"
  6096. #~ "Felt back to \"{}\"."
  6097. #~ msgstr ""
  6098. #~ "Exportieren in \"{}\" Qualität nicht möglich!\n"
  6099. #~ "Zurückgeschaltet auf \"{}\"."
  6100. #~ msgctxt "@label"
  6101. #~ msgid "Contact"
  6102. #~ msgstr "Kontakt"
  6103. #~ msgctxt "@label"
  6104. #~ msgid "This printer is not set up to host a group of Ultimaker 3 printers."
  6105. #~ msgstr "Dieser Drucker ist nicht eingerichtet um eine Gruppe von Ultimaker 3 Druckern anzusteuern."
  6106. #~ msgctxt "@label"
  6107. #~ msgid "This printer is the host for a group of %1 Ultimaker 3 printers."
  6108. #~ msgstr "Dieser Drucker steuert eine Gruppe von %1 Ultimaker 3 Druckern an."
  6109. #~ msgctxt "@label: arg 1 is group name"
  6110. #~ msgid "%1 is not set up to host a group of connected Ultimaker 3 printers"
  6111. #~ msgstr "%1 ist nicht für das Hosten einer Gruppe verbundener Ultimaker 3-Drucker eingerichtet"
  6112. #~ msgctxt "@label link to connect manager"
  6113. #~ msgid "Add/Remove printers"
  6114. #~ msgstr "Drucker hinzufügen/entfernen"
  6115. #~ msgctxt "@info:tooltip"
  6116. #~ msgid "Opens the print jobs page with your default web browser."
  6117. #~ msgstr "Öffnet die Seite für Druckaufträge mit Ihrem Standard-Webbrowser."
  6118. #~ msgctxt "@action:button"
  6119. #~ msgid "View print jobs"
  6120. #~ msgstr "Druckaufträge anzeigen"
  6121. #~ msgctxt "@label:status"
  6122. #~ msgid "Preparing to print"
  6123. #~ msgstr "Vorb. für den Druck"
  6124. #~ msgctxt "@label:status"
  6125. #~ msgid "Available"
  6126. #~ msgstr "Verfügbar"
  6127. #~ msgctxt "@label:status"
  6128. #~ msgid "Lost connection with the printer"
  6129. #~ msgstr "Verbindung zum Drucker wurde unterbrochen"
  6130. #~ msgctxt "@label:status"
  6131. #~ msgid "Unknown"
  6132. #~ msgstr "Unbekannt"
  6133. #~ msgctxt "@label:status"
  6134. #~ msgid "Disabled"
  6135. #~ msgstr "Deaktiviert"
  6136. #~ msgctxt "@label:status"
  6137. #~ msgid "Reserved"
  6138. #~ msgstr "Reserviert"
  6139. #~ msgctxt "@label"
  6140. #~ msgid "Preparing to print"
  6141. #~ msgstr "Vorbereitung für den Druck"
  6142. #~ msgctxt "@label:status"
  6143. #~ msgid "Print aborted"
  6144. #~ msgstr "Drucken wurde abgebrochen"
  6145. #~ msgctxt "@label"
  6146. #~ msgid "Not accepting print jobs"
  6147. #~ msgstr "Akzeptiert keine Druckaufträge"
  6148. #~ msgctxt "@label"
  6149. #~ msgid "Finishes at: "
  6150. #~ msgstr "Endet um: "
  6151. #~ msgctxt "@label"
  6152. #~ msgid "Clear build plate"
  6153. #~ msgstr "Druckplatte räumen"
  6154. #~ msgctxt "@label"
  6155. #~ msgid "Waiting for configuration change"
  6156. #~ msgstr "Warten auf eine Konfigurationsänderung"
  6157. #~ msgctxt "@title"
  6158. #~ msgid "Print jobs"
  6159. #~ msgstr "Druckaufträge"
  6160. #~ msgctxt "@label:title"
  6161. #~ msgid "Printers"
  6162. #~ msgstr "Drucker"
  6163. #~ msgctxt "@action:button"
  6164. #~ msgid "View printers"
  6165. #~ msgstr "Drucker anzeigen"
  6166. #~ msgctxt "@label:"
  6167. #~ msgid "Pause"
  6168. #~ msgstr "Pausieren"
  6169. #~ msgctxt "@label:"
  6170. #~ msgid "Resume"
  6171. #~ msgstr "Zurückkehren"
  6172. #~ msgctxt "@label:"
  6173. #~ msgid "Abort Print"
  6174. #~ msgstr "Drucken abbrechen"
  6175. #~ msgctxt "@option:openProject"
  6176. #~ msgid "Always ask"
  6177. #~ msgstr "Immer nachfragen"
  6178. #~ msgctxt "@label"
  6179. #~ msgid "Override Profile"
  6180. #~ msgstr "Profil überschreiben"
  6181. #~ msgctxt "@info:tooltip"
  6182. #~ msgid "Should newly loaded models be arranged on the build plate? Used in conjunction with multi build plate (EXPERIMENTAL)"
  6183. #~ msgstr "Sollen neu geladene Modelle auf der Druckplatte angeordnet werden? In Verbindung mit Mehrfach-Druckplatte verwenden (EXPERIMENTELL)"
  6184. #~ msgctxt "@option:check"
  6185. #~ msgid "Do not arrange objects on load"
  6186. #~ msgstr "Keine Objekte beim Laden anordnen"
  6187. #~ msgctxt "@action:inmenu menubar:file"
  6188. #~ msgid "&Save Selection to File"
  6189. #~ msgstr "Auswahl als Datei &speichern"
  6190. #~ msgctxt "@title:menu menubar:file"
  6191. #~ msgid "Save &As..."
  6192. #~ msgstr "Speichern &Als"
  6193. #~ msgctxt "@title:menu menubar:file"
  6194. #~ msgid "Save &Project..."
  6195. #~ msgstr "&Projekt speichern..."
  6196. # Added after the string freeze.
  6197. #~ msgctxt "@label"
  6198. #~ msgid "Use adhesion sheet or glue with this material combination"
  6199. #~ msgstr "Verwenden Sie eiene Klebefolie oder Klebstoff mit dieser Materialcombination"
  6200. #~ msgctxt "description"
  6201. #~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box."
  6202. #~ msgstr "Akzeptiert den G-Code und sendet diesen über WLAN an eine Doodle3D WLAN-Box."
  6203. #~ msgctxt "name"
  6204. #~ msgid "Doodle3D WiFi-Box"
  6205. #~ msgstr "Doodle3D WLAN-Box"
  6206. #~ msgctxt "description"
  6207. #~ msgid "Provides an edit window for direct script editing."
  6208. #~ msgstr "Bietet ein Bearbeitungsfenster für direkte Skriptbearbeitung."
  6209. #~ msgctxt "name"
  6210. #~ msgid "Live scripting tool"
  6211. #~ msgstr "Live-Scripting-Tool"
  6212. #~ msgctxt "description"
  6213. #~ msgid "Helps to open Blender files directly in Cura."
  6214. #~ msgstr "Unterstützt das Öffnen der Blender-Dateien direkt in Cura."
  6215. #~ msgctxt "name"
  6216. #~ msgid "Blender Integration (experimental)"
  6217. #~ msgstr "Blender-Integration (experimentell)"
  6218. #~ msgctxt "@info:title"
  6219. #~ msgid "Model Checker Warning"
  6220. #~ msgstr "Warnhinweis Modell-Prüfer"
  6221. #~ msgctxt "@info:status"
  6222. #~ msgid ""
  6223. #~ "Some models may not be printed optimally due to object size and chosen material for models: {model_names}.\n"
  6224. #~ "Tips that may be useful to improve the print quality:\n"
  6225. #~ "1) Use rounded corners.\n"
  6226. #~ "2) Turn the fan off (only if there are no tiny details on the model).\n"
  6227. #~ "3) Use a different material."
  6228. #~ msgstr ""
  6229. #~ "Einige Modelle können aufgrund der Objektgröße und des gewählten Materials für Modelle möglicherweise nicht optimal gedruckt werden: {model_names}.\n"
  6230. #~ "Tipps, die für eine bessere Druckqualität hilfreich sein können:\n"
  6231. #~ "1) Verwenden Sie abgerundete Ecken.\n"
  6232. #~ "2) Schalten Sie den Lüfter aus (nur wenn keine sehr kleinen Details am Modell vorhanden sind).\n"
  6233. #~ "3) Verwenden Sie ein anderes Material."
  6234. #~ msgctxt "@info:status"
  6235. #~ msgid "SolidWorks reported errors while opening your file. We recommend to solve these issues inside SolidWorks itself."
  6236. #~ msgstr "SolidWorks hat beim Öffnen Ihrer Datei Fehler gemeldet. Wir empfehlen, diese Probleme direkt in SolidWorks zu lösen."
  6237. #~ msgctxt "@info:status"
  6238. #~ msgid ""
  6239. #~ "Found no models inside your drawing. Could you please check its content again and make sure one part or assembly is inside?\n"
  6240. #~ "\n"
  6241. #~ "Thanks!"
  6242. #~ msgstr ""
  6243. #~ "Keine Modelle in Ihrer Zeichnung gefunden. Bitte überprüfen Sie den Inhalt erneut und stellen Sie sicher, dass ein Teil oder eine Baugruppe enthalten ist.\n"
  6244. #~ "\n"
  6245. #~ "Danke!"
  6246. #~ msgctxt "@info:status"
  6247. #~ msgid ""
  6248. #~ "Found more than one part or assembly inside your drawing. We currently only support drawings with exactly one part or assembly inside.\n"
  6249. #~ "\n"
  6250. #~ "Sorry!"
  6251. #~ msgstr ""
  6252. #~ "Es wurde mehr als ein Teil oder eine Baugruppe in Ihrer Zeichnung gefunden. Wir unterstützen derzeit nur Zeichnungen mit exakt einem Teil oder einer Baugruppe.\n"
  6253. #~ "\n"
  6254. #~ "Es tut uns leid!"
  6255. #~ msgctxt "@item:inlistbox"
  6256. #~ msgid "SolidWorks part file"
  6257. #~ msgstr "SolidWorks Teiledatei"
  6258. #~ msgctxt "@item:inlistbox"
  6259. #~ msgid "SolidWorks assembly file"
  6260. #~ msgstr "SolidWorks Einbaudatei"
  6261. #~ msgctxt "@item:inlistbox"
  6262. #~ msgid "SolidWorks drawing file"
  6263. #~ msgstr "SolidWorks Zeichnungsdatei"
  6264. #~ msgctxt "@info:status"
  6265. #~ msgid ""
  6266. #~ "Dear customer,\n"
  6267. #~ "We could not find a valid installation of SolidWorks on your system. That means that either SolidWorks is not installed or you don't own an valid license. Please make sure that running SolidWorks itself works without issues and/or contact your ICT.\n"
  6268. #~ "\n"
  6269. #~ "With kind regards\n"
  6270. #~ " - Thomas Karl Pietrowski"
  6271. #~ msgstr ""
  6272. #~ "Sehr geehrter Kunde,\n"
  6273. #~ "wir konnten keine gültige Installation von SolidWorks auf Ihrem System finden. Das bedeutet, dass SolidWorks entweder nicht installiert ist oder sie keine gültige Lizenz besitzen. Stellen Sie bitte sicher, dass SolidWorks problemlos läuft und/oder wenden Sie sich an Ihre ICT-Abteilung.\n"
  6274. #~ "\n"
  6275. #~ "Mit freundlichen Grüßen\n"
  6276. #~ " - Thomas Karl Pietrowski"
  6277. #~ msgctxt "@info:status"
  6278. #~ msgid ""
  6279. #~ "Dear customer,\n"
  6280. #~ "You are currently running this plugin on an operating system other than Windows. This plugin will only work on Windows with SolidWorks installed, including an valid license. Please install this plugin on a Windows machine with SolidWorks installed.\n"
  6281. #~ "\n"
  6282. #~ "With kind regards\n"
  6283. #~ " - Thomas Karl Pietrowski"
  6284. #~ msgstr ""
  6285. #~ "Sehr geehrter Kunde,\n"
  6286. #~ "Sie verwenden dieses Plugin derzeit auf einem anderen Betriebssystem als Windows. Dieses Plugin funktioniert nur auf Windows mit installiertem SolidWorks und einer gültigen Lizenz. Installieren Sie dieses Plugin bitte auf einem Windows-Rechner mit installiertem SolidWorks.\n"
  6287. #~ "\n"
  6288. #~ "Mit freundlichen Grüßen\n"
  6289. #~ " - Thomas Karl Pietrowski"
  6290. #~ msgid "Configure"
  6291. #~ msgstr "Konfigurieren"
  6292. #~ msgid "Installation guide for SolidWorks macro"
  6293. #~ msgstr "Installationsanleitung für SolidWorks Makro"
  6294. #~ msgctxt "@action:button"
  6295. #~ msgid "Disable"
  6296. #~ msgstr "Deaktivieren"
  6297. #~ msgctxt "@action:tooltip"
  6298. #~ msgid "Don't allow Cura to send anonymized usage statistics. You can enable it again in the preferences."
  6299. #~ msgstr "Damit wird Cura die Erlaubnis zum Senden von anonymisierten Nutzungsstatistiken entzogen. Sie können die Erlaubnis in den Einstellungen erneut aktivieren."
  6300. #~ msgid "Install"
  6301. #~ msgstr "Installieren"
  6302. #~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR. It is not set to a directory."
  6303. #~ msgstr "Siemens NX Plugin-Dateien konnten nicht kopiert werden. Überprüfen Sie Ihr UGII_USER_DIR. Sie ist keinem Verzeichnis zugeordnet."
  6304. #~ msgid "Successfully installed Siemens NX Cura plugin."
  6305. #~ msgstr "Siemens NX Cura Plugin wurde erfolgreich installiert."
  6306. #~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR."
  6307. #~ msgstr "Siemens NX Plugin-Dateien konnten nicht kopiert werden. Überprüfen Sie Ihr UGII_USER_DIR."
  6308. #~ msgid "Failed to install Siemens NX plugin. Could not set environment variable UGII_USER_DIR for Siemens NX."
  6309. #~ msgstr "Siemens NX Plugin konnte nicht installiert werden. Umgebungsvariable UGII_USER_DIR für Siemens NX konnte nicht zugewiesen werden."
  6310. #~ msgctxt "@info:status"
  6311. #~ msgid "Failed to get plugin ID from <filename>{0}</filename>"
  6312. #~ msgstr "Plugin-ID von <filename>{0}</filename> wurde nicht erhalten"
  6313. #~ msgctxt "@info:tile"
  6314. #~ msgid "Warning"
  6315. #~ msgstr "Warnhinweis"
  6316. #~ msgctxt "@window:title"
  6317. #~ msgid "Plugin browser"
  6318. #~ msgstr "Plugin-Browser"
  6319. #~ msgctxt "@label"
  6320. #~ msgid "Ultimaker 3"
  6321. #~ msgstr "Ultimaker 3"
  6322. #~ msgctxt "@label"
  6323. #~ msgid "Ultimaker 3 Extended"
  6324. #~ msgstr "Ultimaker 3 Extended"
  6325. #~ msgctxt "@title:window"
  6326. #~ msgid "SolidWorks: Export wizard"
  6327. #~ msgstr "SolidWorks: Exportassistent"
  6328. #~ msgctxt "@action:label"
  6329. #~ msgid "Quality:"
  6330. #~ msgstr "Qualität:"
  6331. #~ msgctxt "@option:curaSolidworksStlQuality"
  6332. #~ msgid "Fine (3D-printing)"
  6333. #~ msgstr "Fein (3D-Druck)"
  6334. #~ msgctxt "@option:curaSolidworksStlQuality"
  6335. #~ msgid "Coarse (3D-printing)"
  6336. #~ msgstr "Grob (3D-Druck)"
  6337. #~ msgctxt "@option:curaSolidworksStlQuality"
  6338. #~ msgid "Fine (SolidWorks)"
  6339. #~ msgstr "Fein (SolidWorks)"
  6340. #~ msgctxt "@option:curaSolidworksStlQuality"
  6341. #~ msgid "Coarse (SolidWorks)"
  6342. #~ msgstr "Grob (SolidWorks)"
  6343. #~ msgctxt "@text:window"
  6344. #~ msgid "Show this dialog again"
  6345. #~ msgstr "Diesen Dialog erneut anzeigen"
  6346. #~ msgctxt "@action:button"
  6347. #~ msgid "Continue"
  6348. #~ msgstr "Weiter"
  6349. #~ msgctxt "@action:button"
  6350. #~ msgid "Abort"
  6351. #~ msgstr "Abbrechen"
  6352. #~ msgctxt "@title:window"
  6353. #~ msgid "How to install Cura SolidWorks macro"
  6354. #~ msgstr "Installieren von Cura SolidWorks Makro"
  6355. #~ msgctxt "@description:label"
  6356. #~ msgid "Steps:"
  6357. #~ msgstr "Schritte:"
  6358. #~ msgctxt "@action:button"
  6359. #~ msgid ""
  6360. #~ "Open the directory\n"
  6361. #~ "with macro and icon"
  6362. #~ msgstr ""
  6363. #~ "Verzeichnis\n"
  6364. #~ "mit Makro und Symbol öffnen"
  6365. #~ msgctxt "@description:label"
  6366. #~ msgid "Instructions:"
  6367. #~ msgstr "Anweisungen:"
  6368. #~ msgctxt "@action:playpause"
  6369. #~ msgid "Play"
  6370. #~ msgstr "Wiedergeben"
  6371. #~ msgctxt "@action:playpause"
  6372. #~ msgid "Pause"
  6373. #~ msgstr "Pausieren"
  6374. #~ msgctxt "@action:button"
  6375. #~ msgid "Previous Step"
  6376. #~ msgstr "Vorheriger Schritt"
  6377. #~ msgctxt "@action:button"
  6378. #~ msgid "Done"
  6379. #~ msgstr "Fertig"
  6380. #~ msgctxt "@action:button"
  6381. #~ msgid "Next Step"
  6382. #~ msgstr "Nächster Schritt"
  6383. #~ msgctxt "@title:window"
  6384. #~ msgid "SolidWorks plugin: Configuration"
  6385. #~ msgstr "SolidWorks Plugin: Konfiguration"
  6386. #~ msgctxt "@title:tab"
  6387. #~ msgid "Conversion settings"
  6388. #~ msgstr "Konvertierungseinstellungen"
  6389. #~ msgctxt "@label"
  6390. #~ msgid "First choice:"
  6391. #~ msgstr "Erste Wahl:"
  6392. #~ msgctxt "@text:menu"
  6393. #~ msgid "Latest installed version (Recommended)"
  6394. #~ msgstr "Aktuelle installierte Version (Empfohlen)"
  6395. #~ msgctxt "@text:menu"
  6396. #~ msgid "Default version"
  6397. #~ msgstr "Standardversion"
  6398. #~ msgctxt "@label"
  6399. #~ msgid "Show wizard before opening SolidWorks files"
  6400. #~ msgstr "Assistent vor dem Öffnen von SolidWorks-Dateien anzeigen"
  6401. #~ msgctxt "@label"
  6402. #~ msgid "Automatically rotate opened file into normed orientation"
  6403. #~ msgstr "Geöffnete Datei automatisch in normale Ausrichtung drehen"
  6404. #~ msgctxt "@title:tab"
  6405. #~ msgid "Installation(s)"
  6406. #~ msgstr "Installation(en)"
  6407. #~ msgctxt "@label"
  6408. #~ msgid "COM service found"
  6409. #~ msgstr "COM-Service gefunden"
  6410. #~ msgctxt "@label"
  6411. #~ msgid "Executable found"
  6412. #~ msgstr "Ausführbare Datei gefunden"
  6413. #~ msgctxt "@label"
  6414. #~ msgid "COM starting"
  6415. #~ msgstr "COM wird gestartet"
  6416. #~ msgctxt "@label"
  6417. #~ msgid "Revision number"
  6418. #~ msgstr "Revisionsnummer"
  6419. #~ msgctxt "@label"
  6420. #~ msgid "Functions available"
  6421. #~ msgstr "Verfügbare Funktionen"
  6422. #~ msgctxt "@label (%1 is object name)"
  6423. #~ msgid "The new material diameter is set to %1 mm, which is not compatible to the current machine. Do you wish to continue?"
  6424. #~ msgstr "Der neue Materialdurchmesser wurde auf %1 mm eingestellt, was nicht kompatibel mit dem aktuellen Gerät ist. Möchten Sie fortfahren?"
  6425. #~ msgctxt "@action:menu"
  6426. #~ msgid "Browse plugins..."
  6427. #~ msgstr "Plugins durchsuchen..."
  6428. #~ msgctxt "@title:menu menubar:toplevel"
  6429. #~ msgid "P&lugins"
  6430. #~ msgstr "&Plugins"
  6431. #~ msgctxt "@window:title"
  6432. #~ msgid "Install Plugin"
  6433. #~ msgstr "Plugin installieren"
  6434. #~ msgctxt "description"
  6435. #~ msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc)"
  6436. #~ msgstr "Beschreibt die Durchführung der Geräteeinstellung (z. B. Druckabmessung, Düsengröße usw.)"
  6437. #~ msgctxt "description"
  6438. #~ msgid "Manages network connections to Ultimaker 3 printers"
  6439. #~ msgstr "Verwaltet Netzwerkverbindungen zu Ultimaker 3-Druckern"
  6440. #~ msgctxt "description"
  6441. #~ msgid "Gives you the possibility to open certain files using SolidWorks itself. Conversion is done by this plugin and additional optimizations."
  6442. #~ msgstr "Bietet Ihnen die Möglichkeit, bestimmte Dateien über SolidWorks selbst zu öffnen. Die Konvertierung erfolgt über dieses Plugin und zusätzliche Optimierungen."
  6443. #~ msgctxt "name"
  6444. #~ msgid "SolidWorks Integration"
  6445. #~ msgstr "SolidWorks Integration"
  6446. #~ msgctxt "description"
  6447. #~ msgid "Automatically saves Preferences, Machines and Profiles after changes."
  6448. #~ msgstr "Speichert automatisch Einstellungen, Geräte und Profile nach Änderungen."
  6449. #~ msgctxt "name"
  6450. #~ msgid "Auto Save"
  6451. #~ msgstr "Automatisches Speichern"
  6452. #~ msgctxt "description"
  6453. #~ msgid "Helps you to install an 'export to Cura' button in Siemens NX."
  6454. #~ msgstr "Unterstützt die Installation der Schaltfläche „Zu Cura exportieren“ in Siemens NX."
  6455. #~ msgctxt "name"
  6456. #~ msgid "Siemens NX Integration"
  6457. #~ msgstr "Siemens NX Integration"
  6458. #~ msgctxt "description"
  6459. #~ msgid "Find, manage and install new plugins."
  6460. #~ msgstr "Neue Plugins finden, verwalten und installieren."
  6461. #~ msgctxt "name"
  6462. #~ msgid "Plugin Browser"
  6463. #~ msgstr "Plugin-Browser"
  6464. #~ msgctxt "description"
  6465. #~ msgid "Ask the user once if he/she agrees with our license"
  6466. #~ msgstr "Den Benutzer einmalig fragen, ob er unsere Lizenz akzeptiert."
  6467. #~ msgctxt "description"
  6468. #~ msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc)"
  6469. #~ msgstr "Ermöglicht Maschinenabläufe für Ultimaker-Maschinen (z. B. Assistent für Bettnivellierung, Auswahl von Upgrades usw.)"
  6470. #~ msgctxt "@item:inlistbox"
  6471. #~ msgid "GCode File"
  6472. #~ msgstr "G-Code-Datei"
  6473. #~ msgctxt "@info:status"
  6474. #~ msgid "Unable to start a new job because the printer is busy or not connected."
  6475. #~ msgstr "Es kann kein neuer Auftrag gestartet werden, da der Drucker beschäftigt oder nicht angeschlossen ist."
  6476. #~ msgctxt "@info:title"
  6477. #~ msgid "Printer Unavailable"
  6478. #~ msgstr "Drucker nicht verfügbar"
  6479. #~ msgctxt "@info:status"
  6480. #~ msgid "This printer does not support USB printing because it uses UltiGCode flavor."
  6481. #~ msgstr "Der Drucker unterstützt keinen USB-Druck, da er UltiGCode verwendet."
  6482. #~ msgctxt "@info:title"
  6483. #~ msgid "USB Printing"
  6484. #~ msgstr "USB-Drucken"
  6485. #~ msgctxt "@info:status"
  6486. #~ msgid "Unable to start a new job because the printer does not support usb printing."
  6487. #~ msgstr "Es kann kein neuer Auftrag gestartet werden, da der Drucker keinen Druck über USB unterstützt."
  6488. #~ msgctxt "@info"
  6489. #~ msgid "Unable to update firmware because there are no printers connected."
  6490. #~ msgstr "Die Firmware kann nicht aktualisiert werden, da keine Drucker angeschlossen sind."
  6491. #~ msgctxt "@info"
  6492. #~ msgid "Could not find firmware required for the printer at %s."
  6493. #~ msgstr "Die für den Drucker unter %s erforderliche Firmware wurde nicht gefunden."
  6494. #~ msgctxt "@info:title"
  6495. #~ msgid "Printer Firmware"
  6496. #~ msgstr "Drucker-Firmware"
  6497. #~ msgctxt "@info:title"
  6498. #~ msgid "Connection status"
  6499. #~ msgstr "Verbindungsstatus"
  6500. #~ msgctxt "@info:title"
  6501. #~ msgid "Connection Status"
  6502. #~ msgstr "Verbindungsstatus"
  6503. #~ msgctxt "@info:status"
  6504. #~ msgid "Access request was denied on the printer."
  6505. #~ msgstr "Zugriffsanforderung auf den Drucker wurde abgelehnt."
  6506. #~ msgctxt "@info:status"
  6507. #~ msgid "Access request failed due to a timeout."
  6508. #~ msgstr "Zugriffsanforderungen aufgrund von Zeitüberschreitung fehlgeschlagen."
  6509. #~ msgctxt "@info:status"
  6510. #~ msgid "The connection with the network was lost."
  6511. #~ msgstr "Die Verbindung zum Netzwerk ist verlorengegangen."
  6512. #~ msgctxt "@info:status"
  6513. #~ msgid "The connection with the printer was lost. Check your printer to see if it is connected."
  6514. #~ msgstr "Die Verbindung zum Drucker ist verlorengegangen. Überprüfen Sie Ihren Drucker, um festzustellen, ob er verbunden ist."
  6515. #~ msgctxt "@info:status"
  6516. #~ msgid "Unable to start a new print job, printer is busy. Current printer status is %s."
  6517. #~ msgstr "Es kann kein neuer Druckauftrag gestartet werden, da der Drucker beschäftigt ist. Der aktuelle Druckerstatus lautet %s."
  6518. #~ msgctxt "@info:title"
  6519. #~ msgid "Printer Status"
  6520. #~ msgstr "Druckerstatus"
  6521. #~ msgctxt "@info:status"
  6522. #~ msgid "Unable to start a new print job. No Printcore loaded in slot {0}"
  6523. #~ msgstr "Es kann kein neuer Druckauftrag gestartet werden. Kein PrintCore in Steckplatz {0} geladen."
  6524. #~ msgctxt "@info:status"
  6525. #~ msgid "Unable to start a new print job. No material loaded in slot {0}"
  6526. #~ msgstr "Es kann kein neuer Druckauftrag gestartet werden. Kein Material in Steckplatz {0} geladen."
  6527. #~ msgctxt "@label"
  6528. #~ msgid "Not enough material for spool {0}."
  6529. #~ msgstr "Material für Spule {0} unzureichend."
  6530. #~ msgctxt "@label"
  6531. #~ msgid "Different PrintCore (Cura: {0}, Printer: {1}) selected for extruder {2}"
  6532. #~ msgstr "Abweichender PrintCore (Cura: {0}, Drucker: {1}) für Extruder {2} gewählt"
  6533. #~ msgctxt "@label"
  6534. #~ msgid "PrintCore {0} is not properly calibrated. XY calibration needs to be performed on the printer."
  6535. #~ msgstr "PrintCore {0} ist nicht korrekt kalibriert. XY-Kalibrierung muss auf dem Drucker ausgeführt werden."
  6536. #~ msgctxt "@info:status"
  6537. #~ msgid "Unable to send data to printer. Is another job still active?"
  6538. #~ msgstr "Daten können nicht zum Drucker gesendet werden. Ist noch ein weiterer Auftrag in Bearbeitung?"
  6539. #~ msgctxt "@label:MonitorStatus"
  6540. #~ msgid "Print aborted. Please check the printer"
  6541. #~ msgstr "Drucken wurde abgebrochen. Den Drucker überprüfen"
  6542. #~ msgctxt "@label:MonitorStatus"
  6543. #~ msgid "Pausing print..."
  6544. #~ msgstr "Drucken wird pausiert..."
  6545. #~ msgctxt "@label:MonitorStatus"
  6546. #~ msgid "Resuming print..."
  6547. #~ msgstr "Drucken wird fortgesetzt..."
  6548. #~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers."
  6549. #~ msgstr "Dieser Drucker ist nicht für das Hosten einer Gruppe verbundener Ultimaker 3-Drucker eingerichtet."
  6550. #~ msgctxt "Count is number of printers."
  6551. #~ msgid "This printer is the host for a group of {count} connected Ultimaker 3 printers."
  6552. #~ msgstr "Dieser Drucker ist der Host für eine Gruppe von {count} verbundenen Ultimaker 3-Druckern."
  6553. #~ msgid "{printer_name} has finished printing '{job_name}'. Please collect the print and confirm clearing the build plate."
  6554. #~ msgstr "{printer_name} hat den Druck von '{job_name}‘ beendet. Bitte holen Sie den Druck ab und bestätigen Sie das Räumen des Druckbetts."
  6555. #~ msgid "{printer_name} is reserved to print '{job_name}'. Please change the printer's configuration to match the job, for it to start printing."
  6556. #~ msgstr "{printer_name} ist für das Drucken von '{job_name}‘ reserviert. Bitte ändern Sie die Druckerkonfiguration passend für den Auftrag, um mit dem Drucken zu beginnen."
  6557. #~ msgctxt "@info:status"
  6558. #~ msgid "Unable to send new print job: this 3D printer is not (yet) set up to host a group of connected Ultimaker 3 printers."
  6559. #~ msgstr "Es kann kein neuer Druckauftrag gesendet werden: Dieser 3D-Drucker ist (noch) nicht für das Hosten einer Gruppe verbundener Ultimaker 3-Drucker eingerichtet."
  6560. #~ msgctxt "@info:status"
  6561. #~ msgid "Unable to send print job to group {cluster_name}."
  6562. #~ msgstr "Es können keine Druckaufträge an die Gruppe {cluster_name} gesendet werden."
  6563. #~ msgctxt "@info:status"
  6564. #~ msgid "Sent {file_name} to group {cluster_name}."
  6565. #~ msgstr "{file_name} wurde an Gruppe {cluster_name} gesendet."
  6566. #~ msgctxt "@action:button"
  6567. #~ msgid "Show print jobs"
  6568. #~ msgstr "Druckaufträge anzeigen"
  6569. #~ msgctxt "@info:tooltip"
  6570. #~ msgid "Opens the print jobs interface in your browser."
  6571. #~ msgstr "Öffnet die Schaltfläche für Druckaufträge in Ihrem Browser."
  6572. #~ msgctxt "@label Printer name"
  6573. #~ msgid "Unknown"
  6574. #~ msgstr "Unbekannt"
  6575. #~ msgctxt "@info:progress"
  6576. #~ msgid "Sending <filename>{file_name}</filename> to group {cluster_name}"
  6577. #~ msgstr "<filename>{file_name}</filename> wird an Gruppe {cluster_name} gesendet"
  6578. #~ msgctxt "@info:status"
  6579. #~ msgid "SolidWorks reported errors, while opening your file. We recommend to solve these issues inside SolidWorks itself."
  6580. #~ msgstr "SolidWorks hat beim Öffnen Ihrer Datei Fehler gemeldet. Wir empfehlen, diese Probleme direkt in SolidWorks zu lösen."
  6581. #~ msgctxt "@info:status"
  6582. #~ msgid ""
  6583. #~ "Found no models inside your drawing. Could you please check it's content again and make sure one part or assembly is inside?\n"
  6584. #~ "\n"
  6585. #~ " Thanks!."
  6586. #~ msgstr ""
  6587. #~ "Keine Modelle in Ihrer Zeichnung gefunden. Bitte überprüfen Sie den Inhalt erneut und stellen Sie sicher, dass ein Teil oder eine Baugruppe enthalten ist.\n"
  6588. #~ "\n"
  6589. #~ " Danke!"
  6590. #~ msgctxt "@info:status"
  6591. #~ msgid ""
  6592. #~ "Found more then one part or assembly inside your drawing. We currently only support drawings with exactly one part or assembly inside.\n"
  6593. #~ "\n"
  6594. #~ "Sorry!"
  6595. #~ msgstr ""
  6596. #~ "Es wurde mehr als ein Teil oder eine Baugruppe in Ihrer Zeichnung gefunden. Wir unterstützen derzeit nur Zeichnungen mit exakt einem Teil oder einer Baugruppe.\n"
  6597. #~ "\n"
  6598. #~ "Es tut uns leid!"
  6599. #~ msgctxt "@item:material"
  6600. #~ msgid "No material loaded"
  6601. #~ msgstr "Kein Material geladen"
  6602. #~ msgctxt "@item:material"
  6603. #~ msgid "Unknown material"
  6604. #~ msgstr "Unbekanntes Material"
  6605. #~ msgctxt "@info:status Has a cancel button next to it."
  6606. #~ msgid "The selected material diameter causes the material to become incompatible with the current printer."
  6607. #~ msgstr "Durch den ausgewählten Materialdurchmesser wird das Material mit dem aktuellen Drucker inkompatibel."
  6608. #~ msgctxt "@action:button"
  6609. #~ msgid "Undo"
  6610. #~ msgstr "Rückgängig machen"
  6611. #~ msgctxt "@action"
  6612. #~ msgid "Undo changing the material diameter."
  6613. #~ msgstr "Änderung des Materialdurchmessers rückgängig machen"
  6614. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  6615. #~ msgid "The machine defined in profile <filename>{0}</filename> doesn't match with your current machine, could not import it."
  6616. #~ msgstr "Die Maschine, die im Profil <filename>{0}</filename> definiert wurde, entspricht nicht Ihrer derzeitigen Maschine. Importieren nicht möglich."
  6617. #~ msgctxt "@label crash message"
  6618. #~ msgid ""
  6619. #~ "<p><b>A fatal error has occurred. Please send us this Crash Report to fix the problem</p></b>\n"
  6620. #~ " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  6621. #~ " "
  6622. #~ msgstr ""
  6623. #~ "<p><b>Ein schwerer Fehler ist aufgetreten. Senden Sie uns diesen Absturzbericht, um das Problem zu beheben</p></b>\n"
  6624. #~ " <p>Verwenden Sie bitte die Schaltfläche „Bericht senden“, um den Fehlerbericht automatisch an unsere Server zu senden</p>\n"
  6625. #~ " "
  6626. #~ msgctxt "@label"
  6627. #~ msgid "not yet initialised<br/>"
  6628. #~ msgstr "noch nicht initialisiert<br/>"
  6629. #~ msgctxt "@label"
  6630. #~ msgid "Gcode flavor"
  6631. #~ msgstr "G-Code-Variante"
  6632. #~ msgctxt "@label"
  6633. #~ msgid "Start Gcode"
  6634. #~ msgstr "G-Code starten"
  6635. #~ msgctxt "@tooltip"
  6636. #~ msgid "Gcode commands to be executed at the very start."
  6637. #~ msgstr "G-Code-Befehle, die zum Start ausgeführt werden sollen."
  6638. #~ msgctxt "@label"
  6639. #~ msgid "End Gcode"
  6640. #~ msgstr "G-Code beenden"
  6641. #~ msgctxt "@tooltip"
  6642. #~ msgid "Gcode commands to be executed at the very end."
  6643. #~ msgstr "G-Code-Befehle, die am Ende ausgeführt werden sollen."
  6644. #~ msgctxt "@label"
  6645. #~ msgid "Extruder Start Gcode"
  6646. #~ msgstr "G-Code Extruder-Start"
  6647. #~ msgctxt "@label"
  6648. #~ msgid "Extruder End Gcode"
  6649. #~ msgstr "G-Code Extruder-Ende"
  6650. #~ msgctxt "@label"
  6651. #~ msgid "Starting firmware update, this may take a while."
  6652. #~ msgstr "Das Firmware-Aktualisierung wird gestartet. Dies kann eine Weile dauern."
  6653. #~ msgctxt "@label"
  6654. #~ msgid "Unknown error code: %1"
  6655. #~ msgstr "Unbekannter Fehlercode: %1"
  6656. #~ msgctxt "@label Printer name"
  6657. #~ msgid "Ultimaker 3"
  6658. #~ msgstr "Ultimaker 3"
  6659. #~ msgctxt "@label Printer name"
  6660. #~ msgid "Ultimaker 3 Extended"
  6661. #~ msgstr "Ultimaker 3 Extended"
  6662. #~ msgctxt "@label Printer status"
  6663. #~ msgid "Unknown"
  6664. #~ msgstr "Unbekannt"
  6665. #~ msgctxt "@title:window"
  6666. #~ msgid "Find & Update plugins"
  6667. #~ msgstr "Plugins finden und aktualisieren"
  6668. #~ msgctxt "@label"
  6669. #~ msgid "Here you can find a list of Third Party plugins."
  6670. #~ msgstr "Hier finden Sie eine Liste mit Plugins von Fremdanbietern."
  6671. #~ msgctxt "@action:button"
  6672. #~ msgid "Upgrade"
  6673. #~ msgstr "Aktualisierung"
  6674. #~ msgctxt "@action:button"
  6675. #~ msgid "Download"
  6676. #~ msgstr "Download"
  6677. #~ msgctxt "@info:tooltip"
  6678. #~ msgid "Show caution message in gcode reader."
  6679. #~ msgstr "Warnmeldung im G-Code-Reader anzeigen."
  6680. #~ msgctxt "@option:check"
  6681. #~ msgid "Caution message in gcode reader"
  6682. #~ msgstr "Warnmeldung in G-Code-Reader"
  6683. #~ msgctxt "@window:title"
  6684. #~ msgid "Import Profile"
  6685. #~ msgstr "Profil importieren"
  6686. #~ msgctxt "@action:label %1 is printer name, %2 is how this printer names variants, %3 is variant name"
  6687. #~ msgid "Printer: %1, %2: %3"
  6688. #~ msgstr "Drucker: %1, %2: %3"
  6689. #~ msgctxt "@action:label %1 is printer name"
  6690. #~ msgid "Printer: %1"
  6691. #~ msgstr "Drucker: %1"
  6692. #~ msgctxt "@label"
  6693. #~ msgid "GCode generator"
  6694. #~ msgstr "G-Code-Generator"
  6695. #~ msgctxt "@action:menu"
  6696. #~ msgid "Configure setting visiblity..."
  6697. #~ msgstr "Sichtbarkeit der Einstellung wird konfiguriert..."
  6698. #~ msgctxt "@title:menuitem %1 is the automatically selected material"
  6699. #~ msgid "Automatic: %1"
  6700. #~ msgstr "Automatisch: %1"
  6701. #~ msgctxt "@title:menuitem %1 is the nozzle currently loaded in the printer"
  6702. #~ msgid "Automatic: %1"
  6703. #~ msgstr "Automatisch: %1"
  6704. #~ msgctxt "@info:status"
  6705. #~ msgid "No printer connected"
  6706. #~ msgstr "Es ist kein Drucker verbunden"
  6707. #~ msgctxt "@tooltip"
  6708. #~ msgid "The current temperature of this extruder."
  6709. #~ msgstr "Die aktuelle Temperatur dieses Extruders."
  6710. #~ msgctxt "@action:menu"
  6711. #~ msgid "Installed plugins..."
  6712. #~ msgstr "Installierte plugins..."
  6713. #~ msgctxt "@label"
  6714. #~ msgid "Support Extruder"
  6715. #~ msgstr "Extruder für Stützstruktur"
  6716. #~ msgctxt "description"
  6717. #~ msgid "Writes GCode to a file."
  6718. #~ msgstr "Schreibt G-Code in eine Datei."
  6719. #~ msgctxt "name"
  6720. #~ msgid "GCode Writer"
  6721. #~ msgstr "G-Code-Writer"
  6722. #~ msgctxt "name"
  6723. #~ msgid "GCode Profile Reader"
  6724. #~ msgstr "G-Code-Profil-Reader"
  6725. #~ msgctxt "@info:status"
  6726. #~ msgid "Errors appeared while opening your SolidWorks file! Please check, whether it is possible to open your file in SolidWorks itself without any problems as well!"
  6727. #~ msgstr "Beim Öffnen Ihrer SolidWorks Datei trat ein Fehler auf! Überprüfen Sie bitte, ob sich Ihre Datei in SolidWorks ohne Probleme öffnen lässt!"
  6728. #~ msgctxt "@info:status"
  6729. #~ msgid "Error while starting %s!"
  6730. #~ msgstr "Fehler beim Starten %s!"
  6731. #~ msgctxt "@item:inlistbox"
  6732. #~ msgid "Simulation view"
  6733. #~ msgstr "Simulationsansicht"
  6734. #~ msgctxt "@info"
  6735. #~ msgid "Cura collects anonymised slicing statistics. You can disable this in the preferences."
  6736. #~ msgstr "Cura erfasst anonymisierte Slice-Informationen. Sie können dies in den Einstellungen deaktivieren."
  6737. #~ msgctxt "@action:button"
  6738. #~ msgid "Dismiss"
  6739. #~ msgstr "Verwerfen"
  6740. #~ msgctxt "@menuitem"
  6741. #~ msgid "Global"
  6742. #~ msgstr "Global"
  6743. #~ msgctxt "@label crash message"
  6744. #~ msgid ""
  6745. #~ "<p><b>A fatal exception has occurred. Please send us this Crash Report to fix the problem</p></b>\n"
  6746. #~ " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  6747. #~ " "
  6748. #~ msgstr ""
  6749. #~ "<p><b>Ein schwerer Ausnahmefehler ist aufgetreten. Senden Sie uns diesen Absturzbericht, um das Problem zu beheben</p></b>\n"
  6750. #~ " <p>Verwenden Sie bitte die Schaltfläche „Bericht senden“, um den Fehlerbericht automatisch an unsere Server zu senden</p>\n"
  6751. #~ " "
  6752. #~ msgctxt "@label Cura version"
  6753. #~ msgid "<b>Cura version:</b> {version}<br/>"
  6754. #~ msgstr "<b>Cura-Version:</b> {version}<br/>"
  6755. #~ msgctxt "@label Platform"
  6756. #~ msgid "<b>Platform:</b> {platform}<br/>"
  6757. #~ msgstr "<b>Plattform:</b> {platform}<br/>"
  6758. #~ msgctxt "@label Qt version"
  6759. #~ msgid "<b>Qt version:</b> {qt}<br/>"
  6760. #~ msgstr "<b>Qt-Version:</b> {qt}<br/>"
  6761. #~ msgctxt "@label PyQt version"
  6762. #~ msgid "<b>PyQt version:</b> {pyqt}<br/>"
  6763. #~ msgstr "<b>PyQt-Version:</b> {pyqt}<br/>"
  6764. #~ msgctxt "@label OpenGL"
  6765. #~ msgid "<b>OpenGL:</b> {opengl}<br/>"
  6766. #~ msgstr "<b>OpenGL:</b> {opengl}<br/>"
  6767. #~ msgctxt "@title:groupbox"
  6768. #~ msgid "Exception traceback"
  6769. #~ msgstr "Ausnahme-Rückverfolgung"
  6770. #~ msgctxt "@label"
  6771. #~ msgid "Material diameter"
  6772. #~ msgstr "Materialdurchmesser"
  6773. #~ msgctxt "@title:window"
  6774. #~ msgid "Cura SolidWorks Plugin Configuration"
  6775. #~ msgstr "Cura SolidWorks Plugin-Konfiguration"
  6776. #~ msgctxt "@action:label"
  6777. #~ msgid "Default quality of the exported STL:"
  6778. #~ msgstr "Standardqualität des exportierten STL:"
  6779. #~ msgctxt "@option:curaSolidworksStlQuality"
  6780. #~ msgid "Always ask"
  6781. #~ msgstr "Immer nachfragen"
  6782. #~ msgctxt "@option:curaSolidworksStlQuality"
  6783. #~ msgid "Always use Fine quality"
  6784. #~ msgstr "Immer Qualität „Fein“ verwenden"
  6785. #~ msgctxt "@option:curaSolidworksStlQuality"
  6786. #~ msgid "Always use Coarse quality"
  6787. #~ msgstr "Immer Qualität „Grob“ verwenden"
  6788. #~ msgctxt "@title:window"
  6789. #~ msgid "Import SolidWorks File as STL..."
  6790. #~ msgstr "SolidWorks-Datei importieren als STL ..."
  6791. #~ msgctxt "@info:tooltip"
  6792. #~ msgid "Quality of the Exported STL"
  6793. #~ msgstr "Qualität des exportierten STL"
  6794. #~ msgctxt "@action:label"
  6795. #~ msgid "Quality"
  6796. #~ msgstr "Qualität"
  6797. #~ msgctxt "@option:curaSolidworksStlQuality"
  6798. #~ msgid "Coarse"
  6799. #~ msgstr "Grob"
  6800. #~ msgctxt "@option:curaSolidworksStlQuality"
  6801. #~ msgid "Fine"
  6802. #~ msgstr "Fein"
  6803. #~ msgctxt "@"
  6804. #~ msgid "No Profile Available"
  6805. #~ msgstr "Kein Profil verfügbar"
  6806. #~ msgctxt "@label"
  6807. #~ msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders"
  6808. #~ msgstr "Diese Einstellung wird stets zwischen allen Extrudern geteilt. Eine Änderung ändert den Wert für alle Extruder"
  6809. #~ msgctxt "@tooltip"
  6810. #~ msgid "<b>Time specification</b><br/><table>"
  6811. #~ msgstr "<b>Zeitangabe</b><br/><table>"
  6812. #~ msgctxt "@action:inmenu menubar:view"
  6813. #~ msgid "&Reset camera position"
  6814. #~ msgstr "&Kameraposition zurücksetzen"
  6815. #~ msgctxt "@title:menu menubar:file"
  6816. #~ msgid "Save project"
  6817. #~ msgstr "Projekt speichern"
  6818. #~ msgctxt "@title:tab"
  6819. #~ msgid "Prepare"
  6820. #~ msgstr "Vorbereiten"
  6821. #~ msgctxt "@title:tab"
  6822. #~ msgid "Monitor"
  6823. #~ msgstr "Überwachen"
  6824. #~ msgctxt "@label"
  6825. #~ msgid "<a href='%1'>Check compatibility</a>"
  6826. #~ msgstr "<a href=‘%1‘>Kompatibilität prüfen</a>"
  6827. #~ msgctxt "description"
  6828. #~ msgid "Gives you the possibility to open certain files via SolidWorks itself. These are then converted and loaded into Cura"
  6829. #~ msgstr "Bietet Ihnen die Möglichkeit, bestimmte Dateien über SolidWorks selbst zu öffnen. Diese werden anschließend konvertiert und in Cura geladen."
  6830. #~ msgctxt "@label:status"
  6831. #~ msgid "Blocked"
  6832. #~ msgstr "Blockiert"
  6833. #~ msgctxt "@label:status"
  6834. #~ msgid "Can't start print"
  6835. #~ msgstr "Druck startet nicht"
  6836. #~ msgctxt "@action:button"
  6837. #~ msgid "Open Connect.."
  6838. #~ msgstr "Connect wird geöffnet ..."
  6839. #~ msgctxt "@info:title"
  6840. #~ msgid "Print Details"
  6841. #~ msgstr "Druckdetails"
  6842. #~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  6843. #~ msgid "To ensure that your {machine_name} is equipped with the latest features it is recommended to update the firmware regularly. This can be done on the {machine_name} (when connected to the network) or via USB."
  6844. #~ msgstr "Um sicherzustellen, dass Ihr {machine_name} mit den neuesten Funktionen ausgestattet ist, wird empfohlen, die Firmware regelmäßig zu aktualisieren Dies kann auf dem {machine_name} (bei Anschluss an ein Netzwerk) oder über USB erfolgen."
  6845. #~ msgctxt "@info:title"
  6846. #~ msgid "Layer View"
  6847. #~ msgstr "Schichtenansicht"
  6848. #~ msgctxt "@menuitem"
  6849. #~ msgid "Browse plugins"
  6850. #~ msgstr "Plugins durchsuchen"
  6851. #~ msgctxt "@info:title"
  6852. #~ msgid "Export Details"
  6853. #~ msgstr "Exportdetails"
  6854. #~ msgctxt "@label"
  6855. #~ msgid ""
  6856. #~ "<p>A fatal exception has occurred that we could not recover from!</p>\n"
  6857. #~ " <p>Please use the information below to post a bug report at <a href=\"http://github.com/Ultimaker/Cura/issues\">http://github.com/Ultimaker/Cura/issues</a></p>\n"
  6858. #~ " "
  6859. #~ msgstr ""
  6860. #~ "<p>Ein schwerer Ausnahmezustand ist aufgetreten, den wir nicht beseitigen konnten!</p>\n"
  6861. #~ " <p>Bitte senden Sie einen Fehlerbericht an folgende URL <a href=\"http://github.com/Ultimaker/Cura/issues\">http://github.com/Ultimaker/Cura/issues</a></p>\n"
  6862. #~ " "
  6863. #~ msgctxt "@action:button"
  6864. #~ msgid "Open Web Page"
  6865. #~ msgstr "Webseite öffnen"
  6866. #~ msgctxt "@action:button"
  6867. #~ msgid "Ok"
  6868. #~ msgstr "Ok"
  6869. #~ msgctxt "@label"
  6870. #~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers"
  6871. #~ msgstr "Dieser Drucker ist nicht für das Hosten einer Gruppe verbundener Ultimaker 3-Drucker eingerichtet"
  6872. #~ msgctxt "@label"
  6873. #~ msgid "This printer is the host for a group of %1 connected Ultimaker 3 printers"
  6874. #~ msgstr "Dieser Drucker ist der Host für eine Gruppe von %1 verbundenen Ultimaker 3-Druckern"
  6875. #~ msgctxt "@label"
  6876. #~ msgid "Completed on: "
  6877. #~ msgstr "Fertiggestellt am: "
  6878. #~ msgctxt "@info:tooltip"
  6879. #~ msgid "Opens the print jobs page with your default web browser."
  6880. #~ msgstr "Öffnet die Seite für Druckaufträge mit Ihrem Standard-Webbrowser."
  6881. #~ msgctxt "@label"
  6882. #~ msgid "PRINTER GROUP"
  6883. #~ msgstr "DRUCKERGRUPPE"
  6884. #~ msgctxt "@action:warning"
  6885. #~ msgid "Loading a project will clear all models on the buildplate"
  6886. #~ msgstr "Das Laden eines Projekts entfernt alle Modelle von der Druckplatte"
  6887. #~ msgctxt "@label"
  6888. #~ msgid ""
  6889. #~ " plugin contains a license.\n"
  6890. #~ "You need to accept this license to install this plugin.\n"
  6891. #~ "Do you agree with the terms below?"
  6892. #~ msgstr ""
  6893. #~ " Das Plugin enthält eine Lizenz.\n"
  6894. #~ "Sie müssen diese Lizenz akzeptieren, um das Plugin zu installieren.\n"
  6895. #~ "Stimmen Sie den nachfolgenden Bedingungen zu?"
  6896. #~ msgctxt "@label"
  6897. #~ msgid "00h 00min"
  6898. #~ msgstr "00 St. 00 M."
  6899. #~ msgctxt "@tooltip"
  6900. #~ msgid "<b>Time information</b>"
  6901. #~ msgstr "<b>Zeitangaben</b>"
  6902. #~ msgctxt "@description"
  6903. #~ msgid "Print time"
  6904. #~ msgstr "Druckzeit"
  6905. #~ msgctxt "@label"
  6906. #~ msgid "%1m / ~ %2g / ~ %4 %3"
  6907. #~ msgstr "%1m / ~ %2g / ~ %4 %3"
  6908. #~ msgctxt "@label"
  6909. #~ msgid "%1m / ~ %2g"
  6910. #~ msgstr "%1m / ~ %2g"
  6911. #~ msgctxt "@title:window"
  6912. #~ msgid "Cura"
  6913. #~ msgstr "Cura"
  6914. #~ msgctxt "@label"
  6915. #~ msgid "<a href='%1'>Check material compatibility</a>"
  6916. #~ msgstr "<a href='%1'>Materialkompatibilität prüfen</a>"
  6917. #~ msgctxt "name"
  6918. #~ msgid "UM3 Network Connection (Cluster)"
  6919. #~ msgstr "UM3-Netzwerkverbindung (Cluster)"
  6920. #~ msgctxt "description"
  6921. #~ msgid "Provides the Layer view."
  6922. #~ msgstr "Bietet eine Schichtenansicht."
  6923. #~ msgctxt "name"
  6924. #~ msgid "Layer View"
  6925. #~ msgstr "Schichtenansicht"
  6926. #~ msgctxt "@item:inlistbox"
  6927. #~ msgid "X-Ray"
  6928. #~ msgstr "Röntgen"
  6929. #~ msgctxt "@label"
  6930. #~ msgid "Doodle3D"
  6931. #~ msgstr "Doodle3D"
  6932. #~ msgctxt "@info:whatsthis"
  6933. #~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box."
  6934. #~ msgstr "Akzeptiert den G-Code und sendet diesen über WiFi an eine Doodle3D WiFi-Box."
  6935. #~ msgctxt "@item:inmenu"
  6936. #~ msgid "Doodle3D printing"
  6937. #~ msgstr "Doodle3D-Drucken"
  6938. #~ msgctxt "@action:button"
  6939. #~ msgid "Print with Doodle3D"
  6940. #~ msgstr "Mit Doodle3D drucken"
  6941. #~ msgctxt "@info:tooltip"
  6942. #~ msgid "Print with "
  6943. #~ msgstr "Drucken mit"
  6944. #~ msgctxt "@title:menu"
  6945. #~ msgid "Doodle3D"
  6946. #~ msgstr "Doodle3D"
  6947. #~ msgctxt "@item:inlistbox"
  6948. #~ msgid "Enable Scan devices..."
  6949. #~ msgstr "Scan-Geräte aktivieren..."
  6950. #~ msgctxt "@info:progress"
  6951. #~ msgid "Saving to Removable Drive <filename>{0}</filename>"
  6952. #~ msgstr "Wird auf Datenträger gespeichert <filename>{0}</filename>"
  6953. #~ msgctxt "@info:status"
  6954. #~ msgid "Could not save to <filename>{0}</filename>: <message>{1}</message>"
  6955. #~ msgstr "Konnte nicht als <filename>{0}</filename> gespeichert werden: <message>{1}</message>"
  6956. #~ msgctxt "@info:status"
  6957. #~ msgid "Please keep in mind, that you have to reopen your SolidWorks file manually! Reloading the model won't work!"
  6958. #~ msgstr "Beachten Sie bitte, dass Sie Ihre SolidWorks Datei manuell erneut öffnen müssen! Das erneute Laden des Modells funktioniert nicht!"
  6959. #~ msgctxt "@item:inlistbox"
  6960. #~ msgid "Layers"
  6961. #~ msgstr "Schichten"
  6962. #~ msgid "Browse plugins"
  6963. #~ msgstr "Plugins durchsuchen"
  6964. #~ msgctxt "@item:inmenu"
  6965. #~ msgid "Solid"
  6966. #~ msgstr "Solide"
  6967. #~ msgctxt "@label"
  6968. #~ msgid "The file <filename>{0}</filename> already exists. Are you sure you want to overwrite it?"
  6969. #~ msgstr "Die Datei <filename>{0}</filename> ist bereits vorhanden. Soll die Datei wirklich überschrieben werden?"
  6970. #~ msgctxt "@info:status"
  6971. #~ msgid "Failed to export profile to <filename>{0}</filename>: <message>{1}</message>"
  6972. #~ msgstr "Export des Profils nach <filename>{0}</filename> fehlgeschlagen: <message>{1}</message>"
  6973. #~ msgctxt "@info:status"
  6974. #~ msgid "Failed to export profile to <filename>{0}</filename>: Writer plugin reported failure."
  6975. #~ msgstr "Export des Profils nach <filename>{0}</filename> fehlgeschlagen: Fehlermeldung von Writer-Plugin"
  6976. #~ msgctxt "@info:status"
  6977. #~ msgid "Exported profile to <filename>{0}</filename>"
  6978. #~ msgstr "Profil wurde nach <filename>{0}</filename> exportiert"
  6979. #~ msgctxt "@info:status"
  6980. #~ msgid "Failed to import profile from <filename>{0}</filename>: <message>{1}</message>"
  6981. #~ msgstr "Import des Profils aus Datei <filename>{0}</filename> fehlgeschlagen: <message>{1}</message>"
  6982. #~ msgctxt "@title:window"
  6983. #~ msgid "Doodle3D Settings"
  6984. #~ msgstr "Doodle3D-Einstellungen"
  6985. #~ msgctxt "@title:window"
  6986. #~ msgid "Print to: %1"
  6987. #~ msgstr "Drucken auf: %1"
  6988. #~ msgctxt "@label"
  6989. #~ msgid "Extruder Temperature: %1/%2°C"
  6990. #~ msgstr "Extruder-Temperatur %1/%2 °C"
  6991. #~ msgctxt "@label"
  6992. #~ msgid "Bed Temperature: %1/%2°C"
  6993. #~ msgstr "Bett-Temperatur %1/%2 °C"
  6994. #~ msgctxt "@label"
  6995. #~ msgid "%1"
  6996. #~ msgstr "%1"
  6997. #~ msgctxt "@label"
  6998. #~ msgid "View Mode: Layers"
  6999. #~ msgstr "Ansichtsmodus: Schichten"
  7000. #~ msgctxt "@info:status"
  7001. #~ msgid "Could not import material <filename>%1</filename>: <message>%2</message>"
  7002. #~ msgstr "Material konnte nicht importiert werden <filename>%1</filename>: <message>%2</message>"
  7003. #~ msgctxt "@info:status"
  7004. #~ msgid "Successfully imported material <filename>%1</filename>"
  7005. #~ msgstr "Material wurde erfolgreich importiert <filename>%1</filename>"
  7006. #~ msgctxt "@info:status"
  7007. #~ msgid "Failed to export material to <filename>%1</filename>: <message>%2</message>"
  7008. #~ msgstr "Exportieren des Materials nach <filename>%1</filename>: <message>%2</message> schlug fehl"
  7009. #~ msgctxt "@info:status"
  7010. #~ msgid "Successfully exported material to <filename>%1</filename>"
  7011. #~ msgstr "Material erfolgreich nach <filename>%1</filename> exportiert"
  7012. #~ msgctxt "@label"
  7013. #~ msgid "%1 m / ~ %2 g / ~ %4 %3"
  7014. #~ msgstr "%1 m / ~ %2 g / ~ %4 %3"
  7015. #~ msgctxt "@label"
  7016. #~ msgid "%1 m / ~ %2 g"
  7017. #~ msgstr "%1 m / ~ %2 g"
  7018. #~ msgctxt "@label"
  7019. #~ msgid "Hotend"
  7020. #~ msgstr "Heißes Ende"
  7021. #~ msgctxt "@action:button"
  7022. #~ msgid "View Mode"
  7023. #~ msgstr "Ansichtsmodus"
  7024. #~ msgctxt "@title:tab"
  7025. #~ msgid "Print"
  7026. #~ msgstr "Drucken"
  7027. #~ msgctxt "@label"
  7028. #~ msgid "0%"
  7029. #~ msgstr "0 %"
  7030. #~ msgctxt "@label"
  7031. #~ msgid "Empty infill will leave your model hollow with low strength."
  7032. #~ msgstr "Bei fehlender Füllung bleibt Ihr Modell hohl, mit einer geringen Festigkeit."
  7033. #~ msgctxt "@label"
  7034. #~ msgid "20%"
  7035. #~ msgstr "20 %"
  7036. #~ msgctxt "@label"
  7037. #~ msgid "Light (20%) infill will give your model an average strength."
  7038. #~ msgstr "Eine dünne (20 %) Füllung gibt Ihrem Modell eine durchschnittliche Festigkeit."
  7039. #~ msgctxt "@label"
  7040. #~ msgid "50%"
  7041. #~ msgstr "50 %"
  7042. #~ msgctxt "@label"
  7043. #~ msgid "Dense (50%) infill will give your model an above average strength."
  7044. #~ msgstr "Eine dichte (50 %) Füllung gibt Ihrem Modell eine überdurchschnittliche Festigkeit"
  7045. #~ msgctxt "@label"
  7046. #~ msgid "100%"
  7047. #~ msgstr "100 %"
  7048. #~ msgctxt "@label"
  7049. #~ msgid "Solid (100%) infill will make your model completely solid."
  7050. #~ msgstr "Eine solide (100 %) Füllung macht Ihr Modell vollständig massiv."
  7051. #~ msgctxt "@label"
  7052. #~ msgid "Gradual"
  7053. #~ msgstr "Graduell"
  7054. #~ msgctxt "description"
  7055. #~ msgid "Provides support for writing X3G files"
  7056. #~ msgstr "Bietet Unterstützung für das Schreiben von X3G-Dateien"
  7057. #~ msgctxt "name"
  7058. #~ msgid "X3G Writer"
  7059. #~ msgstr "X3G-Writer"
  7060. #~ msgctxt "@label"
  7061. #~ msgid "Machine Settings action"
  7062. #~ msgstr "Beschreibung Geräteeinstellungen"
  7063. #~ msgctxt "@info:whatsthis"
  7064. #~ msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc)"
  7065. #~ msgstr "Beschreibt die Durchführung der Geräteeinstellung (z. B. Druckabmessung, Düsengröße usw.)"
  7066. #~ msgctxt "@label"
  7067. #~ msgid "X-Ray View"
  7068. #~ msgstr "Röntgen-Ansicht"
  7069. #~ msgctxt "@info:whatsthis"
  7070. #~ msgid "Provides the X-Ray view."
  7071. #~ msgstr "Stellt die Röntgen-Ansicht bereit."
  7072. #~ msgctxt "@label"
  7073. #~ msgid "X3D Reader"
  7074. #~ msgstr "X3D-Reader"
  7075. #~ msgctxt "@info:whatsthis"
  7076. #~ msgid "Provides support for reading X3D files."
  7077. #~ msgstr "Bietet Unterstützung für das Lesen von X3D-Dateien."
  7078. #~ msgctxt "@label"
  7079. #~ msgid "GCode Writer"
  7080. #~ msgstr "G-Code-Writer"
  7081. #~ msgctxt "@info:whatsthis"
  7082. #~ msgid "Writes GCode to a file."
  7083. #~ msgstr "Schreibt G-Code in eine Datei."
  7084. #~ msgctxt "@action:button Preceded by 'Ready to'."
  7085. #~ msgid "Print with Doodle3D"
  7086. #~ msgstr "Mit Doodle3D drucken"
  7087. #~ msgctxt "@info:whatsthis"
  7088. #~ msgid "Shows changes since latest checked version."
  7089. #~ msgstr "Zeigt die Änderungen seit der letzten geprüften Version an."
  7090. #~ msgctxt "@label"
  7091. #~ msgid "Profile flatener"
  7092. #~ msgstr "Profilglättfunktion"
  7093. #~ msgctxt "@info:whatsthis"
  7094. #~ msgid "Create a flattend quality changes profile."
  7095. #~ msgstr "Erstellt eine geglättete Qualität, verändert das Profil."
  7096. #~ msgctxt "@label"
  7097. #~ msgid "USB printing"
  7098. #~ msgstr "USB-Drucken"
  7099. #~ msgctxt "@info:whatsthis"
  7100. #~ msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
  7101. #~ msgstr "Akzeptiert den G-Code und sendet diesen an einen Drucker. Das Plugin kann auch die Firmware aktualisieren."
  7102. #~ msgctxt "X3G Writer Plugin Description"
  7103. #~ msgid "Writes X3G to a file"
  7104. #~ msgstr "Schreibt X3G in eine Datei"
  7105. #~ msgctxt "@label"
  7106. #~ msgid "Removable Drive Output Device Plugin"
  7107. #~ msgstr "Ausgabegerät-Plugin für Datenträger"
  7108. #~ msgctxt "@info:whatsthis"
  7109. #~ msgid "Provides removable drive hotplugging and writing support."
  7110. #~ msgstr "Ermöglicht Hotplugging des Datenträgers und Beschreiben."
  7111. #~ msgctxt "@info:whatsthis"
  7112. #~ msgid "Manages network connections to Ultimaker 3 printers"
  7113. #~ msgstr "Verwaltet Netzwerkverbindungen zu Ultimaker 3 Druckern"
  7114. #~ msgctxt "@label"
  7115. #~ msgid "Different print core (Cura: {0}, Printer: {1}) selected for extruder {2}"
  7116. #~ msgstr "Abweichender Druckkopf (Cura: {0}, Drucker: {1}) für Extruder {2} gewählt"
  7117. #~ msgctxt "@label"
  7118. #~ msgid "Print core {0} is not properly calibrated. XY calibration needs to be performed on the printer."
  7119. #~ msgstr "Druckkern {0} ist nicht korrekt kalibriert. XY-Kalibrierung muss auf dem Drucker ausgeführt werden."
  7120. #~ msgctxt "@label"
  7121. #~ msgid "The print cores and/or materials on your printer differ from those within your current project. For the best result, always slice for the print cores and materials that are inserted in your printer."
  7122. #~ msgstr "Die PrintCores und/oder Materialien auf Ihrem Drucker unterscheiden sich von denen Ihres aktuellen Projekts. Für optimale Ergebnisse schneiden Sie stets für die PrintCores und Materialien, die in Ihren Drucker eingelegt wurden."
  7123. #~ msgctxt "@label"
  7124. #~ msgid "Post Processing"
  7125. #~ msgstr "Nachbearbeitung"
  7126. #~ msgctxt "Description of plugin"
  7127. #~ msgid "Extension that allows for user created scripts for post processing"
  7128. #~ msgstr "Erweiterung, die eine Nachbearbeitung von Skripten ermöglicht, die von Benutzern erstellt wurden."
  7129. #~ msgctxt "@label"
  7130. #~ msgid "Auto Save"
  7131. #~ msgstr "Automatisches Speichern"
  7132. #~ msgctxt "@info:whatsthis"
  7133. #~ msgid "Automatically saves Preferences, Machines and Profiles after changes."
  7134. #~ msgstr "Speichert automatisch Einstellungen, Geräte und Profile nach Änderungen."
  7135. #~ msgctxt "@label"
  7136. #~ msgid "Slice info"
  7137. #~ msgstr "Slice-Informationen"
  7138. #~ msgctxt "@info:whatsthis"
  7139. #~ msgid "Submits anonymous slice info. Can be disabled through preferences."
  7140. #~ msgstr "Sendet anonymisierte Slice-Informationen. Kann in den Einstellungen deaktiviert werden."
  7141. #~ msgctxt "@info"
  7142. #~ msgid "Cura collects anonymised slicing statistics. You can disable this in preferences"
  7143. #~ msgstr "Cura erfasst automatisch anonymisierte Slice-Informationen. Sie können dies in den Einstellungen deaktivieren."
  7144. #~ msgctxt "@label"
  7145. #~ msgid "Material Profiles"
  7146. #~ msgstr "Materialprofile"
  7147. #~ msgctxt "@info:whatsthis"
  7148. #~ msgid "Provides capabilities to read and write XML-based material profiles."
  7149. #~ msgstr "Bietet Möglichkeiten, um XML-basierte Materialprofile zu lesen und zu schreiben."
  7150. #~ msgctxt "@label"
  7151. #~ msgid "Legacy Cura Profile Reader"
  7152. #~ msgstr "Cura-Vorgängerprofil-Reader"
  7153. #~ msgctxt "@info:whatsthis"
  7154. #~ msgid "Provides support for importing profiles from legacy Cura versions."
  7155. #~ msgstr "Bietet Unterstützung für den Import von Profilen der Vorgängerversionen von Cura."
  7156. #~ msgctxt "@label"
  7157. #~ msgid "GCode Profile Reader"
  7158. #~ msgstr "G-Code-Writer"
  7159. #~ msgctxt "@info:whatsthis"
  7160. #~ msgid "Provides support for importing profiles from g-code files."
  7161. #~ msgstr "Ermöglicht das Importieren von Profilen aus G-Code-Dateien."
  7162. #~ msgctxt "@label"
  7163. #~ msgid "Layer View"
  7164. #~ msgstr "Schichtenansicht"
  7165. #~ msgctxt "@info:whatsthis"
  7166. #~ msgid "Provides the Layer view."
  7167. #~ msgstr "Bietet eine Schichtenansicht."
  7168. #~ msgctxt "@label"
  7169. #~ msgid "Version Upgrade 2.5 to 2.6"
  7170. #~ msgstr "Upgrade von Version 2.5 auf 2.6"
  7171. #~ msgctxt "@info:whatsthis"
  7172. #~ msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
  7173. #~ msgstr "Aktualisiert Konfigurationen von Cura 2.5 auf Cura 2.6."
  7174. #~ msgctxt "@label"
  7175. #~ msgid "Version Upgrade 2.1 to 2.2"
  7176. #~ msgstr "Upgrade von Version 2.1 auf 2.2"
  7177. #~ msgctxt "@info:whatsthis"
  7178. #~ msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
  7179. #~ msgstr "Aktualisiert Konfigurationen von Cura 2.1 auf Cura 2.2."
  7180. #~ msgctxt "@label"
  7181. #~ msgid "Version Upgrade 2.2 to 2.4"
  7182. #~ msgstr "Upgrade von Version 2.2 auf 2.4"
  7183. #~ msgctxt "@info:whatsthis"
  7184. #~ msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
  7185. #~ msgstr "Aktualisiert Konfigurationen von Cura 2.2 auf Cura 2.4."
  7186. #~ msgctxt "@label"
  7187. #~ msgid "Image Reader"
  7188. #~ msgstr "Bild-Reader"
  7189. #~ msgctxt "@info:whatsthis"
  7190. #~ msgid "Enables ability to generate printable geometry from 2D image files."
  7191. #~ msgstr "Ermöglicht Erstellung von druckbarer Geometrie aus einer 2D-Bilddatei."
  7192. #~ msgctxt "@label"
  7193. #~ msgid "CuraEngine Backend"
  7194. #~ msgstr "CuraEngine Backend"
  7195. #~ msgctxt "@info:whatsthis"
  7196. #~ msgid "Provides the link to the CuraEngine slicing backend."
  7197. #~ msgstr "Stellt die Verbindung zum Slicing-Backend der CuraEngine her."
  7198. #~ msgctxt "@label"
  7199. #~ msgid "Per Model Settings Tool"
  7200. #~ msgstr "Werkzeug „Einstellungen pro Objekt“"
  7201. #~ msgctxt "@info:whatsthis"
  7202. #~ msgid "Provides the Per Model Settings."
  7203. #~ msgstr "Ermöglicht die Einstellungen pro Objekt."
  7204. #~ msgctxt "@label"
  7205. #~ msgid "3MF Reader"
  7206. #~ msgstr "3MF-Reader"
  7207. #~ msgctxt "@info:whatsthis"
  7208. #~ msgid "Provides support for reading 3MF files."
  7209. #~ msgstr "Ermöglicht das Lesen von 3MF-Dateien."
  7210. #~ msgctxt "@label"
  7211. #~ msgid "Solid View"
  7212. #~ msgstr "Solide Ansicht"
  7213. #~ msgctxt "@info:whatsthis"
  7214. #~ msgid "Provides a normal solid mesh view."
  7215. #~ msgstr "Bietet eine normale, solide Netzansicht."
  7216. #~ msgctxt "@label"
  7217. #~ msgid "G-code Reader"
  7218. #~ msgstr "G-Code-Reader"
  7219. #~ msgctxt "@info:whatsthis"
  7220. #~ msgid "Allows loading and displaying G-code files."
  7221. #~ msgstr "Ermöglicht das Laden und Anzeigen von G-Code-Dateien."
  7222. #~ msgctxt "@label"
  7223. #~ msgid "Cura Profile Writer"
  7224. #~ msgstr "Cura-Profil-Writer"
  7225. #~ msgctxt "@info:whatsthis"
  7226. #~ msgid "Provides support for exporting Cura profiles."
  7227. #~ msgstr "Ermöglicht das Exportieren von Cura-Profilen."
  7228. #~ msgctxt "@label"
  7229. #~ msgid "3MF Writer"
  7230. #~ msgstr "3MF-Writer"
  7231. #~ msgctxt "@info:whatsthis"
  7232. #~ msgid "Provides support for writing 3MF files."
  7233. #~ msgstr "Bietet Unterstützung für das Schreiben von 3MF-Dateien."
  7234. #~ msgctxt "@label"
  7235. #~ msgid "Ultimaker machine actions"
  7236. #~ msgstr "Ultimaker Maschinenabläufe"
  7237. #~ msgctxt "@info:whatsthis"
  7238. #~ msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc)"
  7239. #~ msgstr "Ermöglicht Maschinenabläufe für Ultimaker Maschinen (z. B. Assistent für Bettnivellierung, Auswahl von Upgrades usw.)"
  7240. #~ msgctxt "@label"
  7241. #~ msgid "Cura Profile Reader"
  7242. #~ msgstr "Cura-Profil-Reader"
  7243. #~ msgctxt "@info:whatsthis"
  7244. #~ msgid "Provides support for importing Cura profiles."
  7245. #~ msgstr "Ermöglicht das Importieren von Cura-Profilen."
  7246. #~ msgctxt "@info"
  7247. #~ msgid "%(width).1f x %(depth).1f x %(height).1f mm"
  7248. #~ msgstr "%(width).1f x %(depth).1f x %(height).1f mm"
  7249. #~ msgctxt "@label"
  7250. #~ msgid "Build Plate Shape"
  7251. #~ msgstr "Druckbettform"
  7252. #~ msgctxt "@option:check"
  7253. #~ msgid "Machine Center is Zero"
  7254. #~ msgstr "Maschinenmitte ist Null"
  7255. #~ msgctxt "@option:check"
  7256. #~ msgid "Heated Bed"
  7257. #~ msgstr "Heizbares Bett"
  7258. #~ msgctxt "@label"
  7259. #~ msgid "GCode Flavor"
  7260. #~ msgstr "G-Code-Variante"
  7261. #~ msgctxt "@label"
  7262. #~ msgid "Material Diameter"
  7263. #~ msgstr "Materialdurchmesser"
  7264. #~ msgctxt "@label"
  7265. #~ msgid "If your printer is not listed, read the <a href='%1'>network-printing troubleshooting guide</a>"
  7266. #~ msgstr "Wenn Ihr Drucker nicht aufgeführt ist, lesen Sie die <a href=‘%1‘>Anleitung für Fehlerbehebung für Netzwerkdruck</a>"
  7267. #~ msgctxt "@item:inlistbox"
  7268. #~ msgid "Ultimaker"
  7269. #~ msgstr "Ultimaker"
  7270. #~ msgctxt "@label"
  7271. #~ msgid "Support library for scientific computing "
  7272. #~ msgstr "Support-Bibliothek für wissenschaftliche Berechnung "
  7273. #~ msgctxt "@tooltip"
  7274. #~ msgid "<b>Print Setup</b><br/><br/>Edit or review the settings for the active print job."
  7275. #~ msgstr "<b>Druckeinrichtung</b><br/><br/>Bearbeiten oder Überprüfen der Einstellungen für den aktiven Druckauftrag."
  7276. #~ msgctxt "@tooltip"
  7277. #~ msgid "<b>Print Monitor</b><br/><br/>Monitor the state of the connected printer and the print job in progress."
  7278. #~ msgstr "<b>Drucküberwachung</b><br/><br/>Statusüberwachung des verbundenen Druckers und des Druckauftrags, der ausgeführt wird."
  7279. #~ msgctxt "@title:menuitem %1 is the value from the printer"
  7280. #~ msgid "Automatic: %1"
  7281. #~ msgstr "Automatisch: %1"
  7282. #~ msgctxt "@label:PrintjobStatus"
  7283. #~ msgid "Please load a 3d model"
  7284. #~ msgstr "Bitte laden Sie ein 3D-Modell"
  7285. #~ msgctxt "@label"
  7286. #~ msgid "Print Selected Model with %1"
  7287. #~ msgid_plural "Print Selected Models With %1"
  7288. #~ msgstr[0] "Ausgewähltes Modell drucken mit %1"
  7289. #~ msgstr[1] "Ausgewählte Modelle drucken mit %1"
  7290. #~ msgctxt "@info:status"
  7291. #~ msgid "Unable to start a new print job. No PrinterCore loaded in slot {0}"
  7292. #~ msgstr "Es kann kein neuer Druckauftrag gestartet werden. Kein PrinterCore in Steckplatz {0} geladen."
  7293. #~ msgctxt "@label"
  7294. #~ msgid "Version Upgrade 2.4 to 2.5"
  7295. #~ msgstr "Upgrade von Version 2.4 auf 2.5"
  7296. #~ msgctxt "@info:whatsthis"
  7297. #~ msgid "Upgrades configurations from Cura 2.4 to Cura 2.5."
  7298. #~ msgstr "Aktualisiert Konfigurationen von Cura 2.4 auf Cura 2.5."
  7299. #~ msgctxt "@info:status"
  7300. #~ msgid "Unable to find a quality profile for this combination. Default settings will be used instead."
  7301. #~ msgstr "Für diese Kombination konnte kein Qualitätsprofil gefunden werden. Daher werden die Standardeinstellungen verwendet."
  7302. #~ msgctxt "@title:window"
  7303. #~ msgid "Oops!"
  7304. #~ msgstr "Hoppla!"
  7305. #~ msgctxt "@label"
  7306. #~ msgid ""
  7307. #~ "<p>A fatal exception has occurred that we could not recover from!</p>\n"
  7308. #~ " <p>We hope this picture of a kitten helps you recover from the shock.</p>\n"
  7309. #~ " <p>Please use the information below to post a bug report at <a href=\"http://github.com/Ultimaker/Cura/issues\">http://github.com/Ultimaker/Cura/issues</a></p>\n"
  7310. #~ " "
  7311. #~ msgstr ""
  7312. #~ "<p>Ein schwerer Ausnahmezustand ist aufgetreten, den wir nicht beseitigen konnten!</p>\n"
  7313. #~ " <p>Wir hoffen, dass dieses Bild eines Kätzchens Ihren Schock etwas abschwächt.</p>\n"
  7314. #~ " <p>Verwenden Sie bitte die nachstehenden Informationen, um einen Fehlerbericht an folgende URL zu senden: <a href=\"http://github.com/Ultimaker/Cura/issues\">http://github.com/Ultimaker/Cura/issues</a></p>\n"
  7315. #~ " "
  7316. #~ msgctxt "@label"
  7317. #~ msgid "Please enter the correct settings for your printer below:"
  7318. #~ msgstr "Geben Sie nachfolgend bitte die korrekten Einstellungen für Ihren Drucker an:"
  7319. #~ msgctxt "@label"
  7320. #~ msgid "Extruder %1"
  7321. #~ msgstr "Extruder %1"
  7322. #~ msgctxt "@label Followed by extruder selection drop-down."
  7323. #~ msgid "Print model with"
  7324. #~ msgstr "Modell drucken mit"
  7325. #~ msgctxt "@label"
  7326. #~ msgid "You will need to restart the application for language changes to have effect."
  7327. #~ msgstr "Die Anwendung muss neu gestartet werden, um die Spracheinstellungen zu übernehmen."
  7328. #~ msgctxt "@info:tooltip"
  7329. #~ msgid "Moves the camera so the model is in the center of the view when an model is selected"
  7330. #~ msgstr "Bewegen Sie die Kamera bis sich das Modell im Mittelpunkt der Ansicht befindet, wenn ein Modell ausgewählt ist"
  7331. #~ msgctxt "@action:inmenu menubar:edit"
  7332. #~ msgid "Delete &Selection"
  7333. #~ msgstr "&Auswahl löschen"
  7334. #~ msgctxt "@action:inmenu menubar:file"
  7335. #~ msgid "&Open File..."
  7336. #~ msgstr "&Datei öffnen..."
  7337. #~ msgctxt "@action:inmenu menubar:file"
  7338. #~ msgid "&Open Project..."
  7339. #~ msgstr "&Projekt öffnen..."
  7340. #~ msgctxt "@title:window"
  7341. #~ msgid "Multiply Model"
  7342. #~ msgstr "Modell multiplizieren"
  7343. #~ msgctxt "@title:menu menubar:file"
  7344. #~ msgid "Save &All"
  7345. #~ msgstr "&Alles speichern"
  7346. #~ msgctxt "@title:window"
  7347. #~ msgid "Open file"
  7348. #~ msgstr "Datei öffnen"
  7349. #~ msgctxt "@title:window"
  7350. #~ msgid "Open workspace"
  7351. #~ msgstr "Arbeitsbereich öffnen"
  7352. #~ msgctxt "@label"
  7353. #~ msgid "Hollow"
  7354. #~ msgstr "Hohl"
  7355. #~ msgctxt "@label"
  7356. #~ msgid "No (0%) infill will leave your model hollow at the cost of low strength"
  7357. #~ msgstr "Bei keiner (0 %) Füllung bleibt Ihr Modell hohl, was allerdings eine niedrige Festigkeit zur Folge hat"
  7358. #~ msgctxt "@label"
  7359. #~ msgid "Light"
  7360. #~ msgstr "Dünn"
  7361. #~ msgctxt "@label"
  7362. #~ msgid "Light (20%) infill will give your model an average strength"
  7363. #~ msgstr "Eine dünne (20 %) Füllung gibt Ihrem Modell eine durchschnittliche Festigkeit"
  7364. #~ msgctxt "@label"
  7365. #~ msgid "Dense"
  7366. #~ msgstr "Dicht"
  7367. #~ msgctxt "@label"
  7368. #~ msgid "Dense (50%) infill will give your model an above average strength"
  7369. #~ msgstr "Eine dichte (50 %) Füllung gibt Ihrem Modell eine überdurchschnittliche Festigkeit"
  7370. #~ msgctxt "@label"
  7371. #~ msgid "Solid"
  7372. #~ msgstr "Solide"
  7373. #~ msgctxt "@label"
  7374. #~ msgid "Solid (100%) infill will make your model completely solid"
  7375. #~ msgstr "Eine solide (100 %) Füllung macht Ihr Modell vollständig massiv"
  7376. #~ msgctxt "@label"
  7377. #~ msgid "Enable Support"
  7378. #~ msgstr "Stützstruktur aktivieren"
  7379. #~ msgctxt "@label"
  7380. #~ msgid "Enable support structures. These structures support parts of the model with severe overhangs."
  7381. #~ msgstr "Aktivierung von Stützstrukturen. Diese Strukturen stützen Teile des Modells mit großen Überhängen."
  7382. #~ msgctxt "@label"
  7383. #~ msgid "Need help improving your prints? Read the <a href='%1'>Ultimaker Troubleshooting Guides</a>"
  7384. #~ msgstr "Sie benötigen Hilfe für Ihre Drucke? Lesen Sie die <a href='%1'>Ultimaker Anleitung für Fehlerbehebung</a>"
  7385. #~ msgctxt "@info:status"
  7386. #~ msgid "Connected over the network to {0}. Please approve the access request on the printer."
  7387. #~ msgstr "Über Netzwerk verbunden mit {0}. Geben Sie die Zugriffsanforderung für den Drucker frei."
  7388. #~ msgctxt "@info:status"
  7389. #~ msgid "Connected over the network to {0}."
  7390. #~ msgstr "Über Netzwerk verbunden mit {0}."
  7391. #~ msgctxt "@info:status"
  7392. #~ msgid "Connected over the network to {0}. No access to control the printer."
  7393. #~ msgstr "Über Netzwerk verbunden mit {0}. Kein Zugriff auf die Druckerverwaltung."
  7394. #~ msgctxt "@info:status"
  7395. #~ msgid "Unable to start a new print job because the printer is busy. Please check the printer."
  7396. #~ msgstr "Es kann kein neuer Druckauftrag gestartet werden, da der Drucker beschäftigt ist. Überprüfen Sie den Drucker."
  7397. #~ msgctxt "@label"
  7398. #~ msgid "You made changes to the following setting(s)/override(s):"
  7399. #~ msgstr "Sie haben an der/den folgenden Einstellung(en)/Überschreibung(en) Änderungen vorgenommen:"
  7400. #~ msgctxt "@window:title"
  7401. #~ msgid "Switched profiles"
  7402. #~ msgstr "Getauschte Profile"
  7403. #~ msgctxt "@label"
  7404. #~ msgid "Do you want to transfer your %d changed setting(s)/override(s) to this profile?"
  7405. #~ msgstr "Möchten Sie Ihre %d geänderte(n) Einstellung(en)/Überschreibung(en) auf dieses Profil übertragen?"
  7406. #~ msgctxt "@label"
  7407. #~ msgid "If you transfer your settings they will override settings in the profile. If you don't transfer these settings, they will be lost."
  7408. #~ msgstr "Wenn Sie Ihre Einstellungen übertragen, werden die Profileinstellungen damit überschrieben. Wenn Sie diese Einstellungen nicht übertragen, gehen sie verloren."
  7409. #~ msgctxt "@label"
  7410. #~ msgid "Cost per Meter (Approx.)"
  7411. #~ msgstr "Kosten pro Meter (circa)"
  7412. #~ msgctxt "@label"
  7413. #~ msgid "%1/m"
  7414. #~ msgstr "%1/m"
  7415. #~ msgctxt "@info:tooltip"
  7416. #~ msgid "Display 5 top layers in layer view or only the top-most layer. Rendering 5 layers takes longer, but may show more information."
  7417. #~ msgstr "5 oberste Schichten in der Schichtenansicht oder nur die oberste Schicht anzeigen. Das Rendern von 5 Schichten dauert länger, zeigt jedoch mehr Informationen an."
  7418. #~ msgctxt "@action:button"
  7419. #~ msgid "Display five top layers in layer view"
  7420. #~ msgstr "Die fünf obersten Schichten in der Schichtenansicht anzeigen"
  7421. #~ msgctxt "@info:tooltip"
  7422. #~ msgid "Should only the top layers be displayed in layerview?"
  7423. #~ msgstr "Sollen nur die obersten Schichten in der Schichtenansicht angezeigt werden?"
  7424. #~ msgctxt "@option:check"
  7425. #~ msgid "Only display top layer(s) in layer view"
  7426. #~ msgstr "Nur die oberste(n) Schicht(en) in der Schichtenansicht anzeigen"
  7427. #~ msgctxt "@label"
  7428. #~ msgid "Opening files"
  7429. #~ msgstr "Dateien werden geöffnet"
  7430. #~ msgctxt "@label"
  7431. #~ msgid "Printer Monitor"
  7432. #~ msgstr "Druckerbildschirm"
  7433. #~ msgctxt "@label"
  7434. #~ msgid "Temperatures"
  7435. #~ msgstr "Temperaturen"
  7436. #~ msgctxt "@label:PrintjobStatus"
  7437. #~ msgid "Preparing to slice..."
  7438. #~ msgstr "Slicing vorbereiten..."
  7439. #~ msgctxt "@window:title"
  7440. #~ msgid "Changes on the Printer"
  7441. #~ msgstr "Änderungen auf dem Drucker"
  7442. #~ msgctxt "@action:inmenu"
  7443. #~ msgid "&Duplicate Model"
  7444. #~ msgstr "Modell &duplizieren"
  7445. #~ msgctxt "@label"
  7446. #~ msgid "Helper Parts:"
  7447. #~ msgstr "Helferteile:"
  7448. #~ msgctxt "@label"
  7449. #~ msgid "Enable printing support structures. This will build up supporting structures below the model to prevent the model from sagging or printing in mid air."
  7450. #~ msgstr "Drucken einer Stützstruktur aktivieren. Dient zum Konstruieren von Stützstrukturen unter dem Modell, damit dieses nicht absinkt oder frei schwebend gedruckt wird."
  7451. #~ msgctxt "@label"
  7452. #~ msgid "Don't print support"
  7453. #~ msgstr "Stütze nicht drucken"
  7454. #~ msgctxt "@label"
  7455. #~ msgid "Print support using %1"
  7456. #~ msgstr "Stütze mit %1 drucken"
  7457. #~ msgctxt "@label:listbox"
  7458. #~ msgid "Printer:"
  7459. #~ msgstr "Drucker:"
  7460. #~ msgctxt "@info:status"
  7461. #~ msgid "Successfully imported profiles {0}"
  7462. #~ msgstr "Profile erfolgreich importiert {0}"
  7463. #~ msgctxt "@label"
  7464. #~ msgid "Scripts"
  7465. #~ msgstr "Skripte"
  7466. #~ msgctxt "@label"
  7467. #~ msgid "Active Scripts"
  7468. #~ msgstr "Aktive Skripte"
  7469. #~ msgctxt "@label"
  7470. #~ msgid "Done"
  7471. #~ msgstr "Fertig"
  7472. #~ msgctxt "@item:inlistbox"
  7473. #~ msgid "English"
  7474. #~ msgstr "Englisch"
  7475. #~ msgctxt "@item:inlistbox"
  7476. #~ msgid "Finnish"
  7477. #~ msgstr "Finnisch"
  7478. #~ msgctxt "@item:inlistbox"
  7479. #~ msgid "French"
  7480. #~ msgstr "Französisch"
  7481. #~ msgctxt "@item:inlistbox"
  7482. #~ msgid "German"
  7483. #~ msgstr "Deutsch"
  7484. #~ msgctxt "@item:inlistbox"
  7485. #~ msgid "Italian"
  7486. #~ msgstr "Italienisch"
  7487. #~ msgctxt "@item:inlistbox"
  7488. #~ msgid "Dutch"
  7489. #~ msgstr "Niederländisch"
  7490. #~ msgctxt "@item:inlistbox"
  7491. #~ msgid "Spanish"
  7492. #~ msgstr "Spanisch"
  7493. #~ msgctxt "@label"
  7494. #~ msgid "Do you want to change the PrintCores and materials in Cura to match your printer?"
  7495. #~ msgstr "Möchten Sie die PrintCores und Materialien in Cura passend für Ihren Drucker ändern?"
  7496. #~ msgctxt "@label:"
  7497. #~ msgid "Print Again"
  7498. #~ msgstr "Erneut drucken"