fdmprinter.def.json.po 287 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908
  1. #, fuzzy
  2. msgid ""
  3. msgstr ""
  4. "Project-Id-Version: Uranium json setting files\n"
  5. "Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
  6. "POT-Creation-Date: 2023-04-28 10:03+0000\n"
  7. "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
  8. "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  9. "Language-Team: LANGUAGE\n"
  10. "Language: \n"
  11. "MIME-Version: 1.0\n"
  12. "Content-Type: text/plain; charset=UTF-8\n"
  13. "Content-Transfer-Encoding: 8bit\n"
  14. #: fdmprinter.def.json
  15. msgctxt "ironing_inset description"
  16. msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print."
  17. msgstr "与模型边缘保持的距离。 一直熨平至网格的边缘可能导致打印品出现锯齿状边缘。"
  18. #: fdmprinter.def.json
  19. msgctxt "material_no_load_move_factor description"
  20. msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch."
  21. msgstr "表示长丝在进料器和喷嘴室之间被压缩多少的系数,用于确定针对长丝开关将材料移动的距离。"
  22. #: fdmprinter.def.json
  23. msgctxt "roofing_angles description"
  24. msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)."
  25. msgstr "当顶部表面皮肤层采用线条或锯齿状图案时使用的整数走线方向的列表。 列表中的元素随层的进度依次使用,当达到列表末尾时,它将从头开始。 列表项以逗号分隔,整个列表包含在方括号中。 默认是一个空列表,即意味着使用传统的默认角度(45 和 135 度)。"
  26. #: fdmprinter.def.json
  27. msgctxt "skin_angles description"
  28. msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)."
  29. msgstr "当顶层/底层采用线条或锯齿状图案时使用的整数走线方向的列表。 列表中的元素随层的进度依次使用,当达到列表末尾时,它将从头开始。 列表项以逗号分隔,整个列表包含在方括号中。 默认是一个空列表,即意味着使用传统的默认角度(45 和 135 度)。"
  30. #: fdmprinter.def.json
  31. msgctxt "support_infill_angles description"
  32. msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees."
  33. msgstr "要使用的整数走线方向列表。列表中的元素随层的进度依次使用,当达到列表末尾时将从头开始。列表项以逗号分隔,整个列表包含在方括号中。“默认“是一个空列表,即意味着使用默认角度 0 度。"
  34. #: fdmprinter.def.json
  35. msgctxt "support_bottom_angles description"
  36. msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)."
  37. msgstr "要使用的整数走线方向列表。列表中的元素随层的进度依次使用,当达到列表末尾时将从头开始。列表项以逗号分隔,整个列表包含在方括号中。“默认“为一个空列表,即意味着使用默认角度(如果接触面很厚或为 90 度,则在 45 度和 135 度之间交替)。"
  38. #: fdmprinter.def.json
  39. msgctxt "support_interface_angles description"
  40. msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)."
  41. msgstr "要使用的整数走线方向列表。列表中的元素随层的进度依次使用,当达到列表末尾时将从头开始。列表项以逗号分隔,整个列表包含在方括号中。“默认“为一个空列表,即意味着使用默认角度(如果接触面很厚或为 90 度,则在 45 度和 135 度之间交替)。"
  42. #: fdmprinter.def.json
  43. msgctxt "support_roof_angles description"
  44. msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)."
  45. msgstr "要使用的整数走线方向列表。列表中的元素随层的进度依次使用,当达到列表末尾时将从头开始。列表项以逗号分隔,整个列表包含在方括号中。“默认“为一个空列表,即意味着使用默认角度(如果接触面很厚或为 90 度,则在 45 度和 135 度之间交替)。"
  46. #: fdmprinter.def.json
  47. msgctxt "infill_angles description"
  48. msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)."
  49. msgstr "要使用的整数走线方向列表。 列表中的元素随层的进度依次使用,当达到列表末尾时,它将从头开始。 列表项以逗号分隔,整个列表包含在方括号中。 默认是一个空列表,即意味着使用传统的默认角度(线条和锯齿形图案为 45 和 135 度,其他所有图案为 45 度)。"
  50. #: fdmprinter.def.json
  51. msgctxt "nozzle_disallowed_areas description"
  52. msgid "A list of polygons with areas the nozzle is not allowed to enter."
  53. msgstr "包含不允许喷嘴进入区域的多边形列表。"
  54. #: fdmprinter.def.json
  55. msgctxt "machine_disallowed_areas description"
  56. msgid "A list of polygons with areas the print head is not allowed to enter."
  57. msgstr "包含不允许打印头进入区域的多边形列表。"
  58. #: fdmprinter.def.json
  59. msgctxt "brim_inside_margin description"
  60. msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes."
  61. msgstr "一个零件完全封闭在另一个零件内部会生成与另一个零件内部相接触的边沿。这可从内孔移除此距离内的所有边沿。"
  62. #: fdmprinter.def.json
  63. msgctxt "support_tree_branch_reach_limit description"
  64. msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) "
  65. msgstr ""
  66. #: fdmprinter.def.json
  67. msgctxt "extruder_prime_pos_abs label"
  68. msgid "Absolute Extruder Prime Position"
  69. msgstr "绝对挤出机主要位置"
  70. #: fdmprinter.def.json
  71. msgctxt "adaptive_layer_height_variation label"
  72. msgid "Adaptive Layers Maximum Variation"
  73. msgstr "自适应图层最大变化"
  74. #: fdmprinter.def.json
  75. msgctxt "adaptive_layer_height_threshold label"
  76. msgid "Adaptive Layers Topography Size"
  77. msgstr "自适应图层地形尺寸"
  78. #: fdmprinter.def.json
  79. msgctxt "adaptive_layer_height_variation_step label"
  80. msgid "Adaptive Layers Variation Step Size"
  81. msgstr "自适应图层变化步长"
  82. #: fdmprinter.def.json
  83. msgctxt "adaptive_layer_height_enabled description"
  84. msgid "Adaptive layers computes the layer heights depending on the shape of the model."
  85. msgstr "自适应图层根据模型形状计算图层高度。"
  86. #: fdmprinter.def.json
  87. msgctxt "infill_wall_line_count description"
  88. msgid ""
  89. "Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\n"
  90. "This feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right."
  91. msgstr ""
  92. "在填充区域周围添加额外壁。此类壁可减少顶部/底部皮肤走线,这意味着只要付出一些额外的材料就可以使用更少的顶部/底部皮肤层达到相同的质量。\n"
  93. "在适当配置的情况下,此功能可结合连接填充多边形以将所有填充物连接到单一挤出路径而无需空驶或回抽。"
  94. #: fdmprinter.def.json
  95. msgctxt "platform_adhesion description"
  96. msgid "Adhesion"
  97. msgstr "附着"
  98. #: fdmprinter.def.json
  99. msgctxt "material_adhesion_tendency label"
  100. msgid "Adhesion Tendency"
  101. msgstr "附着倾向"
  102. #: fdmprinter.def.json
  103. msgctxt "skin_overlap description"
  104. msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall."
  105. msgstr "调整壁和皮肤中心线的(端点)之间的重叠量,以皮肤线走线和最内壁的线宽度的百分比表示。稍微重叠可让各个壁与皮肤牢固连接。请注意,对于相等的皮肤和壁线宽度,任何超过 50% 的百分比可能已经导致任何皮肤越过壁,因为在该点,皮肤挤出机的喷嘴位置可能已经达到越过壁中间的位置。"
  106. #: fdmprinter.def.json
  107. msgctxt "skin_overlap_mm description"
  108. msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall."
  109. msgstr "调整壁和皮肤中心线的(端点)之间的重叠量。稍微重叠可让各个壁与皮肤牢固连接。请注意,对于相等的皮肤和壁线宽度,任何超过壁宽度一半的值可能已经导致任何皮肤越过壁,因为在该点,皮肤挤出机的喷嘴位置可能已经达到越过壁中间的位置。"
  110. #: fdmprinter.def.json
  111. msgctxt "infill_sparse_density description"
  112. msgid "Adjusts the density of infill of the print."
  113. msgstr "调整打印填充的密度。"
  114. #: fdmprinter.def.json
  115. msgctxt "support_interface_density description"
  116. msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  117. msgstr "调整支撑结构顶板和底板的密度。 较高的值会实现更好的悬垂,但支撑将更加难以移除。"
  118. #: fdmprinter.def.json
  119. msgctxt "support_tree_top_rate description"
  120. msgid "Adjusts the density of the support structure used to generate the tips of the branches. A higher value results in better overhangs, but the supports are harder to remove. Use Support Roof for very high values or ensure support density is similarly high at the top."
  121. msgstr ""
  122. #: fdmprinter.def.json
  123. msgctxt "support_infill_rate description"
  124. msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  125. msgstr "调整支撑结构的密度。 较高的值会实现更好的悬垂,但支撑将更加难以移除。"
  126. #: fdmprinter.def.json
  127. msgctxt "material_diameter description"
  128. msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament."
  129. msgstr "调整所用耗材的直径。 将此值与所用耗材的直径匹配。"
  130. #: fdmprinter.def.json
  131. msgctxt "support_type description"
  132. msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model."
  133. msgstr "调整支撑结构的放置。 放置可以设置为支撑打印平台或全部支撑。 当设置为全部支撑时,支撑结构也将在模型上打印。"
  134. #: fdmprinter.def.json
  135. msgctxt "prime_tower_wipe_enabled description"
  136. msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower."
  137. msgstr "在用一个喷嘴打印装填塔后,从装填塔上的另一个喷嘴擦去渗出的材料。"
  138. #: fdmprinter.def.json
  139. msgctxt "retraction_hop_after_extruder_switch description"
  140. msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print."
  141. msgstr "当机器从一个挤出机切换到另一个时,打印平台会降低以便在喷嘴和打印品之间形成空隙。 这将防止喷嘴在打印品外部留下渗出物。"
  142. #: fdmprinter.def.json
  143. msgctxt "retraction_combing option all"
  144. msgid "All"
  145. msgstr "所有"
  146. #: fdmprinter.def.json
  147. msgctxt "print_sequence option all_at_once"
  148. msgid "All at Once"
  149. msgstr "同时打印"
  150. #: fdmprinter.def.json
  151. msgctxt "resolution description"
  152. msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)"
  153. msgstr "影响打印分辨率的所有设置。 这些设置会对质量(和打印时间)产生显著影响"
  154. #: fdmprinter.def.json
  155. msgctxt "alternate_extra_perimeter label"
  156. msgid "Alternate Extra Wall"
  157. msgstr "交替备用壁"
  158. #: fdmprinter.def.json
  159. msgctxt "alternate_carve_order label"
  160. msgid "Alternate Mesh Removal"
  161. msgstr "交替网格移除"
  162. #: fdmprinter.def.json
  163. msgctxt "material_alternate_walls label"
  164. msgid "Alternate Wall Directions"
  165. msgstr "交替壁方向"
  166. #: fdmprinter.def.json
  167. msgctxt "material_alternate_walls description"
  168. msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing."
  169. msgstr "在每一层或嵌入上交替壁方向。这适用于会产生应力的材料,例如在金属打印中。"
  170. #: fdmprinter.def.json
  171. msgctxt "machine_buildplate_type option aluminum"
  172. msgid "Aluminum"
  173. msgstr "铝"
  174. #: fdmprinter.def.json
  175. msgctxt "machine_always_write_active_tool label"
  176. msgid "Always Write Active Tool"
  177. msgstr "始终写入活动工具"
  178. #: fdmprinter.def.json
  179. msgctxt "travel_retract_before_outer_wall description"
  180. msgid "Always retract when moving to start an outer wall."
  181. msgstr "在移动开始打印外壁时始终回抽。"
  182. #: fdmprinter.def.json
  183. msgctxt "hole_xy_offset description"
  184. msgid "Amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes."
  185. msgstr "应用到每一层中所有孔洞的偏移量。正数值可以补偿过大的孔洞,负数值可以补偿过小的孔洞。"
  186. #: fdmprinter.def.json
  187. msgctxt "xy_offset description"
  188. msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes."
  189. msgstr "应用到每一层所有多边形的偏移量。 正数值可以补偿过大的孔洞;负数值可以补偿过小的孔洞。"
  190. #: fdmprinter.def.json
  191. msgctxt "xy_offset_layer_0 description"
  192. msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"."
  193. msgstr "应用到第一层所有多边形的偏移量。 负数值可以补偿第一层的压扁量(被称为“象脚”)。"
  194. #: fdmprinter.def.json
  195. msgctxt "support_offset description"
  196. msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support."
  197. msgstr "应用到每一层所有支撑多边形的偏移量。 正值可以让支撑区域更平滑,并产生更为牢固的支撑。"
  198. #: fdmprinter.def.json
  199. msgctxt "support_bottom_offset description"
  200. msgid "Amount of offset applied to the floors of the support."
  201. msgstr "应用到支撑底板的偏移量。"
  202. #: fdmprinter.def.json
  203. msgctxt "support_roof_offset description"
  204. msgid "Amount of offset applied to the roofs of the support."
  205. msgstr "应用到支撑顶板的偏移量。"
  206. #: fdmprinter.def.json
  207. msgctxt "support_interface_offset description"
  208. msgid "Amount of offset applied to the support interface polygons."
  209. msgstr "应用到支撑接触面多边形的偏移量。"
  210. #: fdmprinter.def.json
  211. msgctxt "wipe_retraction_amount description"
  212. msgid "Amount to retract the filament so it does not ooze during the wipe sequence."
  213. msgstr "耗材回抽量,可避免耗材在擦拭期间渗出。"
  214. #: fdmprinter.def.json
  215. msgctxt "sub_div_rad_add description"
  216. msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model."
  217. msgstr "从每个立方体的中心对半径进行添加,以检查模型的边界,进而决定是否应对此立方体进行分区。 值越大则模型边界附近的小型立方体外壳越厚。"
  218. #: fdmprinter.def.json
  219. msgctxt "anti_overhang_mesh label"
  220. msgid "Anti Overhang Mesh"
  221. msgstr "防悬网格"
  222. #: fdmprinter.def.json
  223. msgctxt "material_anti_ooze_retracted_position label"
  224. msgid "Anti-ooze Retracted Position"
  225. msgstr "防渗出回抽位置"
  226. #: fdmprinter.def.json
  227. msgctxt "material_anti_ooze_retraction_speed label"
  228. msgid "Anti-ooze Retraction Speed"
  229. msgstr "防渗出回抽速度"
  230. #: fdmprinter.def.json
  231. msgctxt "machine_use_extruder_offset_to_offset_coords description"
  232. msgid "Apply the extruder offset to the coordinate system. Affects all extruders."
  233. msgstr "将挤出器偏移量应用到坐标轴系统。影响所有挤出器。"
  234. #: fdmprinter.def.json
  235. msgctxt "interlocking_enable description"
  236. msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials."
  237. msgstr "在模型接触的位置,生成互锁梁结构。这改善了模型之间的粘合力,特别是用不同材料打印的模型。"
  238. #: fdmprinter.def.json
  239. msgctxt "travel_avoid_other_parts label"
  240. msgid "Avoid Printed Parts When Traveling"
  241. msgstr "空驶时避开已打印部分"
  242. #: fdmprinter.def.json
  243. msgctxt "travel_avoid_supports label"
  244. msgid "Avoid Supports When Traveling"
  245. msgstr "避免移动时支撑"
  246. #: fdmprinter.def.json
  247. msgctxt "z_seam_position option back"
  248. msgid "Back"
  249. msgstr "返回"
  250. #: fdmprinter.def.json
  251. msgctxt "z_seam_position option backleft"
  252. msgid "Back Left"
  253. msgstr "左后方"
  254. #: fdmprinter.def.json
  255. msgctxt "z_seam_position option backright"
  256. msgid "Back Right"
  257. msgstr "右后方"
  258. #: fdmprinter.def.json
  259. msgctxt "machine_gcode_flavor option BFB"
  260. msgid "Bits from Bytes"
  261. msgstr "Bits from Bytes"
  262. #: fdmprinter.def.json
  263. msgctxt "magic_mesh_surface_mode option both"
  264. msgid "Both"
  265. msgstr "两者都"
  266. #: fdmprinter.def.json
  267. msgctxt "support_interface_priority option nothing"
  268. msgid "Both overlap"
  269. msgstr ""
  270. #: fdmprinter.def.json
  271. msgctxt "bottom_layers label"
  272. msgid "Bottom Layers"
  273. msgstr "底部层数"
  274. #: fdmprinter.def.json
  275. msgctxt "top_bottom_pattern_0 label"
  276. msgid "Bottom Pattern Initial Layer"
  277. msgstr "底层图案起始层"
  278. #: fdmprinter.def.json
  279. msgctxt "bottom_skin_expand_distance label"
  280. msgid "Bottom Skin Expand Distance"
  281. msgstr "底部皮肤扩展距离"
  282. #: fdmprinter.def.json
  283. msgctxt "bottom_skin_preshrink label"
  284. msgid "Bottom Skin Removal Width"
  285. msgstr "底部皮肤移除宽度"
  286. #: fdmprinter.def.json
  287. msgctxt "bottom_thickness label"
  288. msgid "Bottom Thickness"
  289. msgstr "底层厚度"
  290. #: fdmprinter.def.json
  291. msgctxt "support_tree_top_rate label"
  292. msgid "Branch Density"
  293. msgstr ""
  294. #: fdmprinter.def.json
  295. msgctxt "support_tree_branch_diameter label"
  296. msgid "Branch Diameter"
  297. msgstr ""
  298. #: fdmprinter.def.json
  299. msgctxt "support_tree_branch_diameter_angle label"
  300. msgid "Branch Diameter Angle"
  301. msgstr ""
  302. #: fdmprinter.def.json
  303. msgctxt "material_break_preparation_retracted_position label"
  304. msgid "Break Preparation Retracted Position"
  305. msgstr "断裂缓冲期回抽位置"
  306. #: fdmprinter.def.json
  307. msgctxt "material_break_preparation_speed label"
  308. msgid "Break Preparation Retraction Speed"
  309. msgstr "断裂缓冲期回抽速度"
  310. #: fdmprinter.def.json
  311. msgctxt "material_break_preparation_temperature label"
  312. msgid "Break Preparation Temperature"
  313. msgstr "断裂缓冲期温度"
  314. #: fdmprinter.def.json
  315. msgctxt "material_break_retracted_position label"
  316. msgid "Break Retracted Position"
  317. msgstr "断裂回抽位置"
  318. #: fdmprinter.def.json
  319. msgctxt "material_break_speed label"
  320. msgid "Break Retraction Speed"
  321. msgstr "断裂回抽速度"
  322. #: fdmprinter.def.json
  323. msgctxt "material_break_temperature label"
  324. msgid "Break Temperature"
  325. msgstr "折断温度"
  326. #: fdmprinter.def.json
  327. msgctxt "support_skip_some_zags label"
  328. msgid "Break Up Support In Chunks"
  329. msgstr "将支撑结构分拆成块状"
  330. #: fdmprinter.def.json
  331. msgctxt "bridge_fan_speed label"
  332. msgid "Bridge Fan Speed"
  333. msgstr "连桥风扇速度"
  334. #: fdmprinter.def.json
  335. msgctxt "bridge_enable_more_layers label"
  336. msgid "Bridge Has Multiple Layers"
  337. msgstr "连桥有多层"
  338. #: fdmprinter.def.json
  339. msgctxt "bridge_skin_density_2 label"
  340. msgid "Bridge Second Skin Density"
  341. msgstr "连桥第二层表面密度"
  342. #: fdmprinter.def.json
  343. msgctxt "bridge_fan_speed_2 label"
  344. msgid "Bridge Second Skin Fan Speed"
  345. msgstr "连桥第二层表面风扇速度"
  346. #: fdmprinter.def.json
  347. msgctxt "bridge_skin_material_flow_2 label"
  348. msgid "Bridge Second Skin Flow"
  349. msgstr "连桥第二层表面流量"
  350. #: fdmprinter.def.json
  351. msgctxt "bridge_skin_speed_2 label"
  352. msgid "Bridge Second Skin Speed"
  353. msgstr "连桥第二层表面速度"
  354. #: fdmprinter.def.json
  355. msgctxt "bridge_skin_density label"
  356. msgid "Bridge Skin Density"
  357. msgstr "连桥表面密度"
  358. #: fdmprinter.def.json
  359. msgctxt "bridge_skin_material_flow label"
  360. msgid "Bridge Skin Flow"
  361. msgstr "连桥表面流量"
  362. #: fdmprinter.def.json
  363. msgctxt "bridge_skin_speed label"
  364. msgid "Bridge Skin Speed"
  365. msgstr "连桥表面速度"
  366. #: fdmprinter.def.json
  367. msgctxt "bridge_skin_support_threshold label"
  368. msgid "Bridge Skin Support Threshold"
  369. msgstr "连桥表面支撑阈值"
  370. #: fdmprinter.def.json
  371. msgctxt "bridge_sparse_infill_max_density label"
  372. msgid "Bridge Sparse Infill Max Density"
  373. msgstr "连桥稀疏填充物最大密度"
  374. #: fdmprinter.def.json
  375. msgctxt "bridge_skin_density_3 label"
  376. msgid "Bridge Third Skin Density"
  377. msgstr "连桥第三层表面密度"
  378. #: fdmprinter.def.json
  379. msgctxt "bridge_fan_speed_3 label"
  380. msgid "Bridge Third Skin Fan Speed"
  381. msgstr "连桥第三层表面风扇速度"
  382. #: fdmprinter.def.json
  383. msgctxt "bridge_skin_material_flow_3 label"
  384. msgid "Bridge Third Skin Flow"
  385. msgstr "连桥第三层表面流量"
  386. #: fdmprinter.def.json
  387. msgctxt "bridge_skin_speed_3 label"
  388. msgid "Bridge Third Skin Speed"
  389. msgstr "连桥第三层表面速度"
  390. #: fdmprinter.def.json
  391. msgctxt "bridge_wall_coast label"
  392. msgid "Bridge Wall Coasting"
  393. msgstr "桥壁滑行"
  394. #: fdmprinter.def.json
  395. msgctxt "bridge_wall_material_flow label"
  396. msgid "Bridge Wall Flow"
  397. msgstr "桥壁流量"
  398. #: fdmprinter.def.json
  399. msgctxt "bridge_wall_speed label"
  400. msgid "Bridge Wall Speed"
  401. msgstr "桥壁速度"
  402. #: fdmprinter.def.json
  403. msgctxt "adhesion_type option brim"
  404. msgid "Brim"
  405. msgstr "Brim"
  406. #: fdmprinter.def.json
  407. msgctxt "brim_gap label"
  408. msgid "Brim Distance"
  409. msgstr "边沿距离"
  410. #: fdmprinter.def.json
  411. msgctxt "brim_inside_margin label"
  412. msgid "Brim Inside Avoid Margin"
  413. msgstr "修剪内部对象避免留白"
  414. #: fdmprinter.def.json
  415. msgctxt "brim_line_count label"
  416. msgid "Brim Line Count"
  417. msgstr "Brim 走线计数"
  418. #: fdmprinter.def.json
  419. msgctxt "brim_outside_only label"
  420. msgid "Brim Only on Outside"
  421. msgstr "仅在外部打印 Brim"
  422. #: fdmprinter.def.json
  423. msgctxt "brim_replaces_support label"
  424. msgid "Brim Replaces Support"
  425. msgstr "Brim 替换支撑"
  426. #: fdmprinter.def.json
  427. msgctxt "brim_width label"
  428. msgid "Brim Width"
  429. msgstr "Brim 宽度"
  430. #: fdmprinter.def.json
  431. msgctxt "platform_adhesion label"
  432. msgid "Build Plate Adhesion"
  433. msgstr "打印平台附着"
  434. #: fdmprinter.def.json
  435. msgctxt "adhesion_extruder_nr label"
  436. msgid "Build Plate Adhesion Extruder"
  437. msgstr "打印平台附着挤出机"
  438. #: fdmprinter.def.json
  439. msgctxt "adhesion_type label"
  440. msgid "Build Plate Adhesion Type"
  441. msgstr "打印平台附着类型"
  442. #: fdmprinter.def.json
  443. msgctxt "machine_buildplate_type label"
  444. msgid "Build Plate Material"
  445. msgstr "打印平台材料"
  446. #: fdmprinter.def.json
  447. msgctxt "machine_shape label"
  448. msgid "Build Plate Shape"
  449. msgstr "打印平台形状"
  450. #: fdmprinter.def.json
  451. msgctxt "material_bed_temperature label"
  452. msgid "Build Plate Temperature"
  453. msgstr "打印平台温度"
  454. #: fdmprinter.def.json
  455. msgctxt "material_bed_temperature_layer_0 label"
  456. msgid "Build Plate Temperature Initial Layer"
  457. msgstr "打印平台温度起始层"
  458. #: fdmprinter.def.json
  459. msgctxt "build_volume_temperature label"
  460. msgid "Build Volume Temperature"
  461. msgstr "打印体积温度"
  462. #: fdmprinter.def.json
  463. msgctxt "center_object label"
  464. msgid "Center Object"
  465. msgstr "中心点"
  466. #: fdmprinter.def.json
  467. msgctxt "conical_overhang_enabled description"
  468. msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical."
  469. msgstr "更改打印模型的几何,以最大程度减少需要的支撑。 陡峭的悬垂物将变浅。 悬垂区域将下降变得更垂直。"
  470. #: fdmprinter.def.json
  471. msgctxt "support_structure description"
  472. msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible."
  473. msgstr "在可用于产生支撑的方法之间进行选择。“普通”支撑在悬垂部分正下方形成一个支撑结构,并直接垂下这些区域。“树形”支撑形成一些分支,它们朝向在这些分支的尖端上支撑模型的悬垂区域,并使这些分支可缠绕在模型周围以尽可能多地从构建板上支撑它。"
  474. #: fdmprinter.def.json
  475. msgctxt "coasting_speed label"
  476. msgid "Coasting Speed"
  477. msgstr "滑行速度"
  478. #: fdmprinter.def.json
  479. msgctxt "coasting_volume label"
  480. msgid "Coasting Volume"
  481. msgstr "滑行体积"
  482. #: fdmprinter.def.json
  483. msgctxt "coasting_enable description"
  484. msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing."
  485. msgstr "滑行会用一个空驶路径替代挤出路径的最后部分。 渗出材料用于打印挤出路径的最后部分,以便减少串接。"
  486. #: fdmprinter.def.json
  487. msgctxt "retraction_combing label"
  488. msgid "Combing Mode"
  489. msgstr "梳理模式"
  490. #: fdmprinter.def.json
  491. msgctxt "retraction_combing description"
  492. msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill."
  493. msgstr "梳理可在空驶时让喷嘴保持在已打印区域内。这会使空驶距离稍微延长,但可减少回抽需求。如果关闭梳理,则材料将回抽,且喷嘴沿着直线移动到下一个点。也可以避免顶部/底部皮肤区域的梳理或仅在填充物内进行梳理。"
  494. #: fdmprinter.def.json
  495. msgctxt "command_line_settings label"
  496. msgid "Command Line Settings"
  497. msgstr "命令行设置"
  498. #: fdmprinter.def.json
  499. msgctxt "infill_pattern option concentric"
  500. msgid "Concentric"
  501. msgstr "同心圆"
  502. #: fdmprinter.def.json
  503. msgctxt "ironing_pattern option concentric"
  504. msgid "Concentric"
  505. msgstr "同心"
  506. #: fdmprinter.def.json
  507. msgctxt "roofing_pattern option concentric"
  508. msgid "Concentric"
  509. msgstr "同心"
  510. #: fdmprinter.def.json
  511. msgctxt "support_bottom_pattern option concentric"
  512. msgid "Concentric"
  513. msgstr "同心"
  514. #: fdmprinter.def.json
  515. msgctxt "support_interface_pattern option concentric"
  516. msgid "Concentric"
  517. msgstr "同心"
  518. #: fdmprinter.def.json
  519. msgctxt "support_pattern option concentric"
  520. msgid "Concentric"
  521. msgstr "同心"
  522. #: fdmprinter.def.json
  523. msgctxt "support_roof_pattern option concentric"
  524. msgid "Concentric"
  525. msgstr "同心圆"
  526. #: fdmprinter.def.json
  527. msgctxt "top_bottom_pattern option concentric"
  528. msgid "Concentric"
  529. msgstr "同心圆"
  530. #: fdmprinter.def.json
  531. msgctxt "top_bottom_pattern_0 option concentric"
  532. msgid "Concentric"
  533. msgstr "同心圆"
  534. #: fdmprinter.def.json
  535. msgctxt "support_conical_angle label"
  536. msgid "Conical Support Angle"
  537. msgstr "锥形支撑角度"
  538. #: fdmprinter.def.json
  539. msgctxt "support_conical_min_width label"
  540. msgid "Conical Support Minimum Width"
  541. msgstr "锥形支撑最小宽度"
  542. #: fdmprinter.def.json
  543. msgctxt "zig_zaggify_infill label"
  544. msgid "Connect Infill Lines"
  545. msgstr "连接填充走线"
  546. #: fdmprinter.def.json
  547. msgctxt "connect_infill_polygons label"
  548. msgid "Connect Infill Polygons"
  549. msgstr "连接填充多边形"
  550. #: fdmprinter.def.json
  551. msgctxt "zig_zaggify_support label"
  552. msgid "Connect Support Lines"
  553. msgstr "连接支撑线"
  554. #: fdmprinter.def.json
  555. msgctxt "support_connect_zigzags label"
  556. msgid "Connect Support ZigZags"
  557. msgstr "连接支撑锯齿形"
  558. #: fdmprinter.def.json
  559. msgctxt "connect_skin_polygons label"
  560. msgid "Connect Top/Bottom Polygons"
  561. msgstr "连接顶部/底部多边形"
  562. #: fdmprinter.def.json
  563. msgctxt "connect_infill_polygons description"
  564. msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time."
  565. msgstr "在填充路径互相紧靠运行的地方连接它们。对于包含若干闭合多边形的填充图案,启用此设置可大大减少空驶时间。"
  566. #: fdmprinter.def.json
  567. msgctxt "support_connect_zigzags description"
  568. msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure."
  569. msgstr "连接锯齿形。 这将增加锯齿形支撑结构的强度。"
  570. #: fdmprinter.def.json
  571. msgctxt "zig_zaggify_support description"
  572. msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material."
  573. msgstr "将支撑线尾端连接在一起。启用此设置会让支撑更为牢固并减少挤出不足,但需要更多材料。"
  574. #: fdmprinter.def.json
  575. msgctxt "zig_zaggify_infill description"
  576. msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used."
  577. msgstr "使用沿内壁形状的走线连接填充图案与内壁相接的各端。启用此设置会使填充更好地粘着在壁上,减少填充物效果对垂直表面质量的影响。禁用此设置可减少使用的材料量。"
  578. #: fdmprinter.def.json
  579. msgctxt "connect_skin_polygons description"
  580. msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality."
  581. msgstr "在顶部/底部皮肤路径互相紧靠运行的地方连接它们。对于同心图案,启用此设置可大大减少空驶时间,但由于连接可在填充中途发生,此功能可能会降低顶部表面质量。"
  582. #: fdmprinter.def.json
  583. msgctxt "z_seam_corner description"
  584. msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate."
  585. msgstr "控制模型轮廓上的角是否影响缝隙的位置。“无”表示各个角不影响缝隙位置。“隐藏缝隙”会使缝隙更可能出现在内侧角上。“外露缝隙”会使缝隙更可能出现在外侧角上。“隐藏或外露缝隙”会使缝隙更可能出现在内侧或外侧角上。“智能隐藏”允许缝隙出现在内侧和外侧角上,如适当,会更多地出现在内侧角上。"
  586. #: fdmprinter.def.json
  587. msgctxt "infill_multiplier description"
  588. msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage."
  589. msgstr "将每个填充走线转换成这种多重走线。额外走线互相不交叉,而是互相避开。这使得填充更严格,但会增加打印时间和材料使用。"
  590. #: fdmprinter.def.json
  591. msgctxt "machine_nozzle_cool_down_speed label"
  592. msgid "Cool Down Speed"
  593. msgstr "冷却速度"
  594. #: fdmprinter.def.json
  595. msgctxt "cooling description"
  596. msgid "Cooling"
  597. msgstr "冷却"
  598. #: fdmprinter.def.json
  599. msgctxt "cooling label"
  600. msgid "Cooling"
  601. msgstr "冷却"
  602. #: fdmprinter.def.json
  603. msgctxt "infill_pattern option cross"
  604. msgid "Cross"
  605. msgstr "交叉"
  606. #: fdmprinter.def.json
  607. msgctxt "support_pattern option cross"
  608. msgid "Cross"
  609. msgstr "交叉"
  610. #: fdmprinter.def.json
  611. msgctxt "infill_pattern option cross_3d"
  612. msgid "Cross 3D"
  613. msgstr "交叉 3D"
  614. #: fdmprinter.def.json
  615. msgctxt "cross_infill_pocket_size label"
  616. msgid "Cross 3D Pocket Size"
  617. msgstr "交叉 3D 气槽大小"
  618. #: fdmprinter.def.json
  619. msgctxt "cross_support_density_image label"
  620. msgid "Cross Fill Density Image for Support"
  621. msgstr "交叉填充密度图象"
  622. #: fdmprinter.def.json
  623. msgctxt "cross_infill_density_image label"
  624. msgid "Cross Infill Density Image"
  625. msgstr "交叉加密图像密度"
  626. #: fdmprinter.def.json
  627. msgctxt "material_crystallinity label"
  628. msgid "Crystalline Material"
  629. msgstr "晶体材料"
  630. #: fdmprinter.def.json
  631. msgctxt "infill_pattern option cubic"
  632. msgid "Cubic"
  633. msgstr "立方体"
  634. #: fdmprinter.def.json
  635. msgctxt "infill_pattern option cubicsubdiv"
  636. msgid "Cubic Subdivision"
  637. msgstr "立方体分区"
  638. #: fdmprinter.def.json
  639. msgctxt "sub_div_rad_add label"
  640. msgid "Cubic Subdivision Shell"
  641. msgstr "立方体分区外壳"
  642. #: fdmprinter.def.json
  643. msgctxt "cutting_mesh label"
  644. msgid "Cutting Mesh"
  645. msgstr "切割网格"
  646. #: fdmprinter.def.json
  647. msgctxt "material_flow_temp_graph description"
  648. msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)."
  649. msgstr "数据连接材料流量(mm3/s)到温度(摄氏度)。"
  650. #: fdmprinter.def.json
  651. msgctxt "machine_acceleration label"
  652. msgid "Default Acceleration"
  653. msgstr "默认加速度"
  654. #: fdmprinter.def.json
  655. msgctxt "default_material_bed_temperature label"
  656. msgid "Default Build Plate Temperature"
  657. msgstr "默认打印平台温度"
  658. #: fdmprinter.def.json
  659. msgctxt "machine_max_jerk_e label"
  660. msgid "Default Filament Jerk"
  661. msgstr "默认挤出电机 Jerk"
  662. #: fdmprinter.def.json
  663. msgctxt "default_material_print_temperature label"
  664. msgid "Default Printing Temperature"
  665. msgstr "默认打印温度"
  666. #: fdmprinter.def.json
  667. msgctxt "machine_max_jerk_xy label"
  668. msgid "Default X-Y Jerk"
  669. msgstr "默认 X-Y 平面抖动速度(Jerk)"
  670. #: fdmprinter.def.json
  671. msgctxt "machine_max_jerk_z label"
  672. msgid "Default Z Jerk"
  673. msgstr "默认 Z 轴抖动速度(Jerk)"
  674. #: fdmprinter.def.json
  675. msgctxt "machine_max_jerk_xy description"
  676. msgid "Default jerk for movement in the horizontal plane."
  677. msgstr "水平面移动的默认抖动速度。"
  678. #: fdmprinter.def.json
  679. msgctxt "machine_max_jerk_z description"
  680. msgid "Default jerk for the motor of the Z-direction."
  681. msgstr "Z 轴方向电机的默认抖动速度。"
  682. #: fdmprinter.def.json
  683. msgctxt "machine_max_jerk_e description"
  684. msgid "Default jerk for the motor of the filament."
  685. msgstr "耗材电机的默认抖动速度。"
  686. #: fdmprinter.def.json
  687. msgctxt "bridge_settings_enabled description"
  688. msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed."
  689. msgstr "在打印连桥时,检测连桥并修改打印速度、流量和风扇设置。"
  690. #: fdmprinter.def.json
  691. msgctxt "inset_direction description"
  692. msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last."
  693. msgstr "确定打印壁的顺序。先打印外壁有助于提高尺寸精度,因为内壁的误差不会传播到外壁。不过,在打印悬垂对象时,后打印外壁可以实现更好的堆叠。当总内壁数量不均匀时,“中心最后线”总是最后打印。"
  694. #: fdmprinter.def.json
  695. msgctxt "infill_mesh_order description"
  696. msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes."
  697. msgstr "在考虑多个重叠的填充网格时确定此网格的优先级。其中有多个填充网格重叠的区域将采用等级最高的网格的设置。具有较高等级的填充网格将修改具有较低等级的填充网格和普通网格的填充。"
  698. #: fdmprinter.def.json
  699. msgctxt "lightning_infill_support_angle description"
  700. msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer."
  701. msgstr "决定闪电形填充层何时必须支撑其上方的任何物体。在给定的层厚度下测得的角度。"
  702. #: fdmprinter.def.json
  703. msgctxt "lightning_infill_overhang_angle description"
  704. msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness."
  705. msgstr "决定闪电形填充层何时必须支撑其上方的模型。在给定的厚度下测得的角度。"
  706. #: fdmprinter.def.json
  707. msgctxt "material_diameter label"
  708. msgid "Diameter"
  709. msgstr "直径"
  710. #: fdmprinter.def.json
  711. msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label"
  712. msgid "Diameter Increase To Model"
  713. msgstr ""
  714. #: fdmprinter.def.json
  715. msgctxt "support_tree_bp_diameter description"
  716. msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion."
  717. msgstr ""
  718. #: fdmprinter.def.json
  719. msgctxt "adhesion_type description"
  720. msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model."
  721. msgstr "帮助改善挤出装填以及与打印平台附着的不同选项。 Brim 会在模型基座周围添加单层平面区域,以防止卷翘。 Raft 会在模型下添加一个有顶板的厚网格。 Skirt 是在模型四周打印的一条线,但并不与模型连接。"
  722. #: fdmprinter.def.json
  723. msgctxt "machine_disallowed_areas label"
  724. msgid "Disallowed Areas"
  725. msgstr "不允许区域"
  726. #: fdmprinter.def.json
  727. msgctxt "infill_line_distance description"
  728. msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width."
  729. msgstr "打印填充走线之间的距离。 该设置是通过填充密度和填充线宽度计算。"
  730. #: fdmprinter.def.json
  731. msgctxt "support_initial_layer_line_distance description"
  732. msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density."
  733. msgstr "已打印起始层支撑结构走线之间的距离。该设置通过支撑密度计算。"
  734. #: fdmprinter.def.json
  735. msgctxt "support_bottom_line_distance description"
  736. msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately."
  737. msgstr "已打印支撑底板走线之间的距离。 该设置是通过支撑底板密度计算,但可以单独调整。"
  738. #: fdmprinter.def.json
  739. msgctxt "support_roof_line_distance description"
  740. msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately."
  741. msgstr "已打印支撑顶板走线之间的距离。 该设置是通过支撑顶板密度计算,但可以单独调整。"
  742. #: fdmprinter.def.json
  743. msgctxt "support_line_distance description"
  744. msgid "Distance between the printed support structure lines. This setting is calculated by the support density."
  745. msgstr "已打印支撑结构走线之间的距离。 该设置通过支撑密度计算。"
  746. #: fdmprinter.def.json
  747. msgctxt "support_bottom_distance description"
  748. msgid "Distance from the print to the bottom of the support."
  749. msgstr "从打印品到支撑底部的距离。"
  750. #: fdmprinter.def.json
  751. msgctxt "support_top_distance description"
  752. msgid "Distance from the top of the support to the print."
  753. msgstr "从支撑顶部到打印品的距离。"
  754. #: fdmprinter.def.json
  755. msgctxt "support_z_distance description"
  756. msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height."
  757. msgstr "支撑结构顶部/底部到打印品之间的距离。 该间隙提供了在模型打印完成后移除支撑的空隙。 该值舍入为层高的倍数。"
  758. #: fdmprinter.def.json
  759. msgctxt "infill_wipe_dist description"
  760. msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line."
  761. msgstr "每条填充走线后插入的空驶距离,让填充物更好地粘着到壁上。 此选项与填充重叠类似,但没有挤出,且仅位于填充走线的一端。"
  762. #: fdmprinter.def.json
  763. msgctxt "wall_0_wipe_dist description"
  764. msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better."
  765. msgstr "插入外壁后的空驶距离,旨在更好地隐藏 Z 缝。"
  766. #: fdmprinter.def.json
  767. msgctxt "draft_shield_dist description"
  768. msgid "Distance of the draft shield from the print, in the X/Y directions."
  769. msgstr "防风罩在 X/Y 方向与打印品的距离。"
  770. #: fdmprinter.def.json
  771. msgctxt "ooze_shield_dist description"
  772. msgid "Distance of the ooze shield from the print, in the X/Y directions."
  773. msgstr "渗出罩在 X/Y 方向距打印品的距离。"
  774. #: fdmprinter.def.json
  775. msgctxt "support_xy_distance_overhang description"
  776. msgid "Distance of the support structure from the overhang in the X/Y directions."
  777. msgstr "支撑结构在 X/Y 方向距悬垂的距离。"
  778. #: fdmprinter.def.json
  779. msgctxt "support_xy_distance description"
  780. msgid "Distance of the support structure from the print in the X/Y directions."
  781. msgstr "支撑结构在 X/Y 方向距打印品的距离。"
  782. #: fdmprinter.def.json
  783. msgctxt "min_infill_area description"
  784. msgid "Don't generate areas of infill smaller than this (use skin instead)."
  785. msgstr "不要生成小于此面积的填充区域(使用皮肤取代)。"
  786. #: fdmprinter.def.json
  787. msgctxt "draft_shield_height label"
  788. msgid "Draft Shield Height"
  789. msgstr "防风罩高度"
  790. #: fdmprinter.def.json
  791. msgctxt "draft_shield_height_limitation label"
  792. msgid "Draft Shield Limitation"
  793. msgstr "防风罩限制"
  794. #: fdmprinter.def.json
  795. msgctxt "draft_shield_dist label"
  796. msgid "Draft Shield X/Y Distance"
  797. msgstr "防风罩 X/Y 距离"
  798. #: fdmprinter.def.json
  799. msgctxt "support_mesh_drop_down label"
  800. msgid "Drop Down Support Mesh"
  801. msgstr "下拉式支撑网格"
  802. #: fdmprinter.def.json
  803. msgctxt "dual label"
  804. msgid "Dual Extrusion"
  805. msgstr "双重挤出"
  806. #: fdmprinter.def.json
  807. msgctxt "machine_shape option elliptic"
  808. msgid "Elliptic"
  809. msgstr "类圆形"
  810. #: fdmprinter.def.json
  811. msgctxt "acceleration_enabled label"
  812. msgid "Enable Acceleration Control"
  813. msgstr "启用加速度控制"
  814. #: fdmprinter.def.json
  815. msgctxt "bridge_settings_enabled label"
  816. msgid "Enable Bridge Settings"
  817. msgstr "启用连桥设置"
  818. #: fdmprinter.def.json
  819. msgctxt "coasting_enable label"
  820. msgid "Enable Coasting"
  821. msgstr "启用滑行"
  822. #: fdmprinter.def.json
  823. msgctxt "support_conical_enabled label"
  824. msgid "Enable Conical Support"
  825. msgstr "启用锥形支撑"
  826. #: fdmprinter.def.json
  827. msgctxt "draft_shield_enabled label"
  828. msgid "Enable Draft Shield"
  829. msgstr "启用防风罩"
  830. #: fdmprinter.def.json
  831. msgctxt "ironing_enabled label"
  832. msgid "Enable Ironing"
  833. msgstr "启用熨平"
  834. #: fdmprinter.def.json
  835. msgctxt "jerk_enabled label"
  836. msgid "Enable Jerk Control"
  837. msgstr "启用抖动速度控制"
  838. #: fdmprinter.def.json
  839. msgctxt "machine_nozzle_temp_enabled label"
  840. msgid "Enable Nozzle Temperature Control"
  841. msgstr "启用喷嘴温度控制"
  842. #: fdmprinter.def.json
  843. msgctxt "ooze_shield_enabled label"
  844. msgid "Enable Ooze Shield"
  845. msgstr "启用渗出罩"
  846. #: fdmprinter.def.json
  847. msgctxt "prime_blob_enable label"
  848. msgid "Enable Prime Blob"
  849. msgstr "启用装填光点"
  850. #: fdmprinter.def.json
  851. msgctxt "prime_tower_enable label"
  852. msgid "Enable Prime Tower"
  853. msgstr "启用装填塔"
  854. #: fdmprinter.def.json
  855. msgctxt "cool_fan_enabled label"
  856. msgid "Enable Print Cooling"
  857. msgstr "开启打印冷却"
  858. #: fdmprinter.def.json
  859. msgctxt "retraction_enable label"
  860. msgid "Enable Retraction"
  861. msgstr "启用回抽"
  862. #: fdmprinter.def.json
  863. msgctxt "support_brim_enable label"
  864. msgid "Enable Support Brim"
  865. msgstr "启用支撑 Brim"
  866. #: fdmprinter.def.json
  867. msgctxt "support_bottom_enable label"
  868. msgid "Enable Support Floor"
  869. msgstr "启用支撑底板"
  870. #: fdmprinter.def.json
  871. msgctxt "support_interface_enable label"
  872. msgid "Enable Support Interface"
  873. msgstr "启用支撑接触面"
  874. #: fdmprinter.def.json
  875. msgctxt "support_roof_enable label"
  876. msgid "Enable Support Roof"
  877. msgstr "启用支撑顶板"
  878. #: fdmprinter.def.json
  879. msgctxt "acceleration_travel_enabled label"
  880. msgid "Enable Travel Acceleration"
  881. msgstr "启用空驶加速度"
  882. #: fdmprinter.def.json
  883. msgctxt "jerk_travel_enabled label"
  884. msgid "Enable Travel Jerk"
  885. msgstr "启用空驶抖动速度"
  886. #: fdmprinter.def.json
  887. msgctxt "ooze_shield_enabled description"
  888. msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle."
  889. msgstr "启用外部渗出罩。 这将在模型周围创建一个外壳,如果与第一个喷嘴处于相同的高度,则可能会擦拭第二个喷嘴。"
  890. #: fdmprinter.def.json
  891. msgctxt "jerk_enabled description"
  892. msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality."
  893. msgstr "启用当 X 或 Y 轴的速度变化时调整打印头的抖动速度。 提高抖动速度可以通过以打印质量为代价来缩短打印时间。"
  894. #: fdmprinter.def.json
  895. msgctxt "acceleration_enabled description"
  896. msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality."
  897. msgstr "启用调整打印头加速度。 提高加速度可以通过以打印质量为代价来缩短打印时间。"
  898. #: fdmprinter.def.json
  899. msgctxt "cool_fan_enabled description"
  900. msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs."
  901. msgstr "打印时启用打印冷却风扇。 风扇可以在层时间较短和有桥接/悬垂的层上提高打印质量。"
  902. #: fdmprinter.def.json
  903. msgctxt "machine_end_gcode label"
  904. msgid "End G-code"
  905. msgstr "结束 G-code"
  906. #: fdmprinter.def.json
  907. msgctxt "material_end_of_filament_purge_length label"
  908. msgid "End of Filament Purge Length"
  909. msgstr "耗材末端清除长度"
  910. #: fdmprinter.def.json
  911. msgctxt "material_end_of_filament_purge_speed label"
  912. msgid "End of Filament Purge Speed"
  913. msgstr "耗材末端清除速度"
  914. #: fdmprinter.def.json
  915. msgctxt "brim_replaces_support description"
  916. msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions."
  917. msgstr "强制围绕模型打印 Brim,即使该空间本该由支撑占据。此操作会将第一层的某些支撑区域替换为 Brim 区域。"
  918. #: fdmprinter.def.json
  919. msgctxt "support_type option everywhere"
  920. msgid "Everywhere"
  921. msgstr "全部支撑"
  922. #: fdmprinter.def.json
  923. msgctxt "slicing_tolerance option exclusive"
  924. msgid "Exclusive"
  925. msgstr ""
  926. #: fdmprinter.def.json
  927. msgctxt "experimental label"
  928. msgid "Experimental"
  929. msgstr "实验性"
  930. #: fdmprinter.def.json
  931. msgctxt "z_seam_corner option z_seam_corner_outer"
  932. msgid "Expose Seam"
  933. msgstr "外露缝隙"
  934. #: fdmprinter.def.json
  935. msgctxt "meshfix_extensive_stitching label"
  936. msgid "Extensive Stitching"
  937. msgstr "广泛缝合"
  938. #: fdmprinter.def.json
  939. msgctxt "meshfix_extensive_stitching description"
  940. msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time."
  941. msgstr "广泛缝合尝试通过接触多边形来闭合孔洞,以此缝合网格中的开孔。 此选项可能会产生大量的处理时间。"
  942. #: fdmprinter.def.json
  943. msgctxt "infill_wall_line_count label"
  944. msgid "Extra Infill Wall Count"
  945. msgstr "额外填充壁计数"
  946. #: fdmprinter.def.json
  947. msgctxt "skin_outline_count label"
  948. msgid "Extra Skin Wall Count"
  949. msgstr "额外皮肤壁计数"
  950. #: fdmprinter.def.json
  951. msgctxt "switch_extruder_extra_prime_amount description"
  952. msgid "Extra material to prime after nozzle switching."
  953. msgstr "喷嘴切换后的额外装填材料。"
  954. #: fdmprinter.def.json
  955. msgctxt "extruder_prime_pos_x label"
  956. msgid "Extruder Prime X Position"
  957. msgstr "挤出机 X 轴坐标"
  958. #: fdmprinter.def.json
  959. msgctxt "extruder_prime_pos_y label"
  960. msgid "Extruder Prime Y Position"
  961. msgstr "挤出机 Y 轴起始位置"
  962. #: fdmprinter.def.json
  963. msgctxt "extruder_prime_pos_z label"
  964. msgid "Extruder Prime Z Position"
  965. msgstr "挤出机初始 Z 轴位置"
  966. #: fdmprinter.def.json
  967. msgctxt "machine_extruders_share_heater label"
  968. msgid "Extruders Share Heater"
  969. msgstr "挤出器共用加热器"
  970. #: fdmprinter.def.json
  971. msgctxt "machine_extruders_share_nozzle label"
  972. msgid "Extruders Share Nozzle"
  973. msgstr "挤出器共用喷嘴"
  974. #: fdmprinter.def.json
  975. msgctxt "material_extrusion_cool_down_speed label"
  976. msgid "Extrusion Cool Down Speed Modifier"
  977. msgstr "挤出冷却速度调节器"
  978. #: fdmprinter.def.json
  979. msgctxt "speed_equalize_flow_width_factor description"
  980. msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines."
  981. msgstr "基于速度校正系数的挤出宽度。在 0% 时,移动速度保持在打印速度不变。在 100% 时,将调整移动速度以使流量(以 mm³/s 为单位)保持恒定,即以两倍的速度打印正常线宽一半的线条,以一半的速度打印两倍宽的线条。大于 100% 的值有助于为挤出宽线所需的更高压力提供补偿。"
  982. #: fdmprinter.def.json
  983. msgctxt "cool_fan_speed label"
  984. msgid "Fan Speed"
  985. msgstr "风扇速度"
  986. #: fdmprinter.def.json
  987. msgctxt "support_fan_enable label"
  988. msgid "Fan Speed Override"
  989. msgstr "风扇速度覆盖"
  990. #: fdmprinter.def.json
  991. msgctxt "small_feature_max_length description"
  992. msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed."
  993. msgstr "将使用微小特征速度打印小于此长度的特征轮廓。"
  994. #: fdmprinter.def.json
  995. msgctxt "experimental description"
  996. msgid "Features that haven't completely been fleshed out yet."
  997. msgstr "尚未完全充实的功能。"
  998. #: fdmprinter.def.json
  999. msgctxt "machine_feeder_wheel_diameter label"
  1000. msgid "Feeder Wheel Diameter"
  1001. msgstr "进料装置驱动轮的直径"
  1002. #: fdmprinter.def.json
  1003. msgctxt "material_final_print_temperature label"
  1004. msgid "Final Printing Temperature"
  1005. msgstr "最终打印温度"
  1006. #: fdmprinter.def.json
  1007. msgctxt "machine_firmware_retract label"
  1008. msgid "Firmware Retraction"
  1009. msgstr "固件收回"
  1010. #: fdmprinter.def.json
  1011. msgctxt "support_extruder_nr_layer_0 label"
  1012. msgid "First Layer Support Extruder"
  1013. msgstr "第一层支撑挤出机"
  1014. #: fdmprinter.def.json
  1015. msgctxt "material_flow label"
  1016. msgid "Flow"
  1017. msgstr "流量"
  1018. #: fdmprinter.def.json
  1019. msgctxt "speed_equalize_flow_width_factor label"
  1020. msgid "Flow Equalization Ratio"
  1021. msgstr "流量均衡比"
  1022. #: fdmprinter.def.json
  1023. msgctxt "flow_rate_extrusion_offset_factor label"
  1024. msgid "Flow Rate Compensation Factor"
  1025. msgstr "流量补偿因子"
  1026. #: fdmprinter.def.json
  1027. msgctxt "flow_rate_max_extrusion_offset label"
  1028. msgid "Flow Rate Compensation Max Extrusion Offset"
  1029. msgstr "流量补偿最大挤出偏移值"
  1030. #: fdmprinter.def.json
  1031. msgctxt "material_flow_temp_graph label"
  1032. msgid "Flow Temperature Graph"
  1033. msgstr "流量温度图"
  1034. #: fdmprinter.def.json
  1035. msgctxt "material_flow_layer_0 description"
  1036. msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value."
  1037. msgstr "第一层的流量补偿:起始层挤出的材料量乘以此值。"
  1038. #: fdmprinter.def.json
  1039. msgctxt "skin_material_flow_layer_0 description"
  1040. msgid "Flow compensation on bottom lines of the first layer"
  1041. msgstr "第一层底部走线的流量补偿"
  1042. #: fdmprinter.def.json
  1043. msgctxt "infill_material_flow description"
  1044. msgid "Flow compensation on infill lines."
  1045. msgstr "填充走线的流量补偿。"
  1046. #: fdmprinter.def.json
  1047. msgctxt "support_interface_material_flow description"
  1048. msgid "Flow compensation on lines of support roof or floor."
  1049. msgstr "支撑顶板或底板走线的流量补偿。"
  1050. #: fdmprinter.def.json
  1051. msgctxt "roofing_material_flow description"
  1052. msgid "Flow compensation on lines of the areas at the top of the print."
  1053. msgstr "打印顶部区域走线的流量补偿。"
  1054. #: fdmprinter.def.json
  1055. msgctxt "prime_tower_flow description"
  1056. msgid "Flow compensation on prime tower lines."
  1057. msgstr "装填塔走线的流量补偿。"
  1058. #: fdmprinter.def.json
  1059. msgctxt "skirt_brim_material_flow description"
  1060. msgid "Flow compensation on skirt or brim lines."
  1061. msgstr "裙边或边缘走线的流量补偿。"
  1062. #: fdmprinter.def.json
  1063. msgctxt "support_bottom_material_flow description"
  1064. msgid "Flow compensation on support floor lines."
  1065. msgstr "支撑底板走线的流量补偿。"
  1066. #: fdmprinter.def.json
  1067. msgctxt "support_roof_material_flow description"
  1068. msgid "Flow compensation on support roof lines."
  1069. msgstr "支撑顶板走线的流量补偿。"
  1070. #: fdmprinter.def.json
  1071. msgctxt "support_material_flow description"
  1072. msgid "Flow compensation on support structure lines."
  1073. msgstr "支撑结构走线的流量补偿。"
  1074. #: fdmprinter.def.json
  1075. msgctxt "wall_0_material_flow_layer_0 description"
  1076. msgid "Flow compensation on the outermost wall line of the first layer."
  1077. msgstr "第一层最外壁走线的流量补偿。"
  1078. #: fdmprinter.def.json
  1079. msgctxt "wall_0_material_flow description"
  1080. msgid "Flow compensation on the outermost wall line."
  1081. msgstr "最外壁走线的流量补偿。"
  1082. #: fdmprinter.def.json
  1083. msgctxt "skin_material_flow description"
  1084. msgid "Flow compensation on top/bottom lines."
  1085. msgstr "顶部/底部走线的流量补偿。"
  1086. #: fdmprinter.def.json
  1087. msgctxt "wall_x_material_flow_layer_0 description"
  1088. msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer"
  1089. msgstr "适用于所有壁走线(最外壁走线除外)的流量补偿,但仅适用于第一层。"
  1090. #: fdmprinter.def.json
  1091. msgctxt "wall_x_material_flow description"
  1092. msgid "Flow compensation on wall lines for all wall lines except the outermost one."
  1093. msgstr "适用于所有壁走线(最外壁走线除外)的流量补偿。"
  1094. #: fdmprinter.def.json
  1095. msgctxt "wall_material_flow description"
  1096. msgid "Flow compensation on wall lines."
  1097. msgstr "壁走线的流量补偿。"
  1098. #: fdmprinter.def.json
  1099. msgctxt "material_flow description"
  1100. msgid "Flow compensation: the amount of material extruded is multiplied by this value."
  1101. msgstr "流量补偿:挤出的材料量乘以此值。"
  1102. #: fdmprinter.def.json
  1103. msgctxt "material_flush_purge_length label"
  1104. msgid "Flush Purge Length"
  1105. msgstr "冲洗清除长度"
  1106. #: fdmprinter.def.json
  1107. msgctxt "material_flush_purge_speed label"
  1108. msgid "Flush Purge Speed"
  1109. msgstr "冲洗清除速度"
  1110. #: fdmprinter.def.json
  1111. msgctxt "min_wall_line_width description"
  1112. msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width."
  1113. msgstr "对于一倍或两倍于喷嘴孔径的薄结构,需要更改走线宽度以遵循模型的厚度。此设置控制壁允许的最小走线宽度。同样,最小走线宽度内在地决定了最大走线宽度,因为我们在某些几何厚度中从 N 壁过渡到 N+1 壁时,N 壁宽而 N+1 壁窄。允许的最大壁走线宽度是最小壁走线宽度的两倍。"
  1114. #: fdmprinter.def.json
  1115. msgctxt "support_tree_rest_preference option buildplate"
  1116. msgid "Force Only Buildplate"
  1117. msgstr ""
  1118. #: fdmprinter.def.json
  1119. msgctxt "z_seam_position option front"
  1120. msgid "Front"
  1121. msgstr "前方"
  1122. #: fdmprinter.def.json
  1123. msgctxt "z_seam_position option frontleft"
  1124. msgid "Front Left"
  1125. msgstr "左前方"
  1126. #: fdmprinter.def.json
  1127. msgctxt "z_seam_position option frontright"
  1128. msgid "Front Right"
  1129. msgstr "右前方"
  1130. #: fdmprinter.def.json
  1131. msgctxt "draft_shield_height_limitation option full"
  1132. msgid "Full"
  1133. msgstr "完整"
  1134. #: fdmprinter.def.json
  1135. msgctxt "magic_fuzzy_skin_enabled label"
  1136. msgid "Fuzzy Skin"
  1137. msgstr "模糊皮肤"
  1138. #: fdmprinter.def.json
  1139. msgctxt "magic_fuzzy_skin_point_density label"
  1140. msgid "Fuzzy Skin Density"
  1141. msgstr "模糊皮肤密度"
  1142. #: fdmprinter.def.json
  1143. msgctxt "magic_fuzzy_skin_outside_only label"
  1144. msgid "Fuzzy Skin Outside Only"
  1145. msgstr "仅外部模糊皮肤"
  1146. #: fdmprinter.def.json
  1147. msgctxt "magic_fuzzy_skin_point_dist label"
  1148. msgid "Fuzzy Skin Point Distance"
  1149. msgstr "模糊皮肤点距离"
  1150. #: fdmprinter.def.json
  1151. msgctxt "magic_fuzzy_skin_thickness label"
  1152. msgid "Fuzzy Skin Thickness"
  1153. msgstr "模糊皮肤厚度"
  1154. #: fdmprinter.def.json
  1155. msgctxt "machine_gcode_flavor label"
  1156. msgid "G-code Flavor"
  1157. msgstr "G-code 风格"
  1158. #: fdmprinter.def.json
  1159. msgctxt "machine_end_gcode description"
  1160. msgid ""
  1161. "G-code commands to be executed at the very end - separated by \n"
  1162. "."
  1163. msgstr ""
  1164. "在结束前执行的 G-code 命令 - 以 \n"
  1165. " 分行。"
  1166. #: fdmprinter.def.json
  1167. msgctxt "machine_start_gcode description"
  1168. msgid ""
  1169. "G-code commands to be executed at the very start - separated by \n"
  1170. "."
  1171. msgstr ""
  1172. "在开始时执行的 G-code 命令 - 以 \n"
  1173. " 分行。"
  1174. #: fdmprinter.def.json
  1175. msgctxt "material_guid description"
  1176. msgid "GUID of the material. This is set automatically."
  1177. msgstr "材料 GUID,此项为自动设置。"
  1178. #: fdmprinter.def.json
  1179. msgctxt "gantry_height label"
  1180. msgid "Gantry Height"
  1181. msgstr "十字轴高度"
  1182. #: fdmprinter.def.json
  1183. msgctxt "interlocking_enable label"
  1184. msgid "Generate Interlocking Structure"
  1185. msgstr "生成互锁结构"
  1186. #: fdmprinter.def.json
  1187. msgctxt "support_enable label"
  1188. msgid "Generate Support"
  1189. msgstr "生成支撑"
  1190. #: fdmprinter.def.json
  1191. msgctxt "support_brim_enable description"
  1192. msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate."
  1193. msgstr "在第一层的支撑填充区域内生成一个 Brim。此 Brim 在支撑下方打印,而非周围。启用此设置会增强支撑与打印平台的附着。"
  1194. #: fdmprinter.def.json
  1195. msgctxt "support_interface_enable description"
  1196. msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model."
  1197. msgstr "在模型和支撑之间生成一个密集的接触面。 这会在打印模型所在的支撑顶部和模型停放的支撑底部创建一个皮肤。"
  1198. #: fdmprinter.def.json
  1199. msgctxt "support_bottom_enable description"
  1200. msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support."
  1201. msgstr "在支撑底部和模型之间生成一个密集的材料板。 这会在模型和支撑之间形成一个皮肤。"
  1202. #: fdmprinter.def.json
  1203. msgctxt "support_roof_enable description"
  1204. msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support."
  1205. msgstr "在支撑顶部和模型之间生成一个密集的材料板。 这会在模型和支撑之间形成一个皮肤。"
  1206. #: fdmprinter.def.json
  1207. msgctxt "support_enable description"
  1208. msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing."
  1209. msgstr "在模型的悬垂(Overhangs)部分生成支撑结构。若不这样做,这些部分在打印时将倒塌。"
  1210. #: fdmprinter.def.json
  1211. msgctxt "machine_buildplate_type option glass"
  1212. msgid "Glass"
  1213. msgstr "玻璃"
  1214. #: fdmprinter.def.json
  1215. msgctxt "ironing_enabled description"
  1216. msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material."
  1217. msgstr "再次经过顶部表面,但这次挤出的材料非常少。这意味着将进一步熔化顶部的塑料,形成更平滑的表面。喷嘴室中的压力保持很高,确保表面折痕中也能填充材料,以保证细节。"
  1218. #: fdmprinter.def.json
  1219. msgctxt "gradual_infill_step_height label"
  1220. msgid "Gradual Infill Step Height"
  1221. msgstr "渐进填充步阶高度"
  1222. #: fdmprinter.def.json
  1223. msgctxt "gradual_infill_steps label"
  1224. msgid "Gradual Infill Steps"
  1225. msgstr "渐进填充步阶"
  1226. #: fdmprinter.def.json
  1227. msgctxt "gradual_support_infill_step_height label"
  1228. msgid "Gradual Support Infill Step Height"
  1229. msgstr "渐进支撑填充步阶高度"
  1230. #: fdmprinter.def.json
  1231. msgctxt "gradual_support_infill_steps label"
  1232. msgid "Gradual Support Infill Steps"
  1233. msgstr "渐进支撑填充步阶"
  1234. #: fdmprinter.def.json
  1235. msgctxt "cool_min_temperature description"
  1236. msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time."
  1237. msgstr "当由于最短印层时间而导致打印速度降低时,温度将逐渐降低至该温度。"
  1238. #: fdmprinter.def.json
  1239. msgctxt "infill_pattern option grid"
  1240. msgid "Grid"
  1241. msgstr "网格"
  1242. #: fdmprinter.def.json
  1243. msgctxt "support_bottom_pattern option grid"
  1244. msgid "Grid"
  1245. msgstr "网格"
  1246. #: fdmprinter.def.json
  1247. msgctxt "support_interface_pattern option grid"
  1248. msgid "Grid"
  1249. msgstr "网格"
  1250. #: fdmprinter.def.json
  1251. msgctxt "support_pattern option grid"
  1252. msgid "Grid"
  1253. msgstr "网格"
  1254. #: fdmprinter.def.json
  1255. msgctxt "support_roof_pattern option grid"
  1256. msgid "Grid"
  1257. msgstr "网格"
  1258. #: fdmprinter.def.json
  1259. msgctxt "machine_gcode_flavor option Griffin"
  1260. msgid "Griffin"
  1261. msgstr "Griffin"
  1262. #: fdmprinter.def.json
  1263. msgctxt "infill_pattern option gyroid"
  1264. msgid "Gyroid"
  1265. msgstr "螺旋二十四面体"
  1266. #: fdmprinter.def.json
  1267. msgctxt "support_pattern option gyroid"
  1268. msgid "Gyroid"
  1269. msgstr "螺旋二十四面体"
  1270. #: fdmprinter.def.json
  1271. msgctxt "machine_heated_build_volume label"
  1272. msgid "Has Build Volume Temperature Stabilization"
  1273. msgstr "具有构建体积温度稳定性"
  1274. #: fdmprinter.def.json
  1275. msgctxt "machine_heated_bed label"
  1276. msgid "Has Heated Build Plate"
  1277. msgstr "有加热打印平台"
  1278. #: fdmprinter.def.json
  1279. msgctxt "machine_nozzle_heat_up_speed label"
  1280. msgid "Heat Up Speed"
  1281. msgstr "升温速度"
  1282. #: fdmprinter.def.json
  1283. msgctxt "machine_heat_zone_length label"
  1284. msgid "Heat Zone Length"
  1285. msgstr "加热区长度"
  1286. #: fdmprinter.def.json
  1287. msgctxt "draft_shield_height description"
  1288. msgid "Height limitation of the draft shield. Above this height no draft shield will be printed."
  1289. msgstr "防风罩的高度限制。 在此高度以上不会打印任何防风罩。"
  1290. #: fdmprinter.def.json
  1291. msgctxt "z_seam_corner option z_seam_corner_inner"
  1292. msgid "Hide Seam"
  1293. msgstr "隐藏缝隙"
  1294. #: fdmprinter.def.json
  1295. msgctxt "z_seam_corner option z_seam_corner_any"
  1296. msgid "Hide or Expose Seam"
  1297. msgstr "隐藏或外露缝隙"
  1298. #: fdmprinter.def.json
  1299. msgctxt "hole_xy_offset label"
  1300. msgid "Hole Horizontal Expansion"
  1301. msgstr "孔洞水平扩展"
  1302. #: fdmprinter.def.json
  1303. msgctxt "hole_xy_offset_max_diameter label"
  1304. msgid "Hole Horizontal Expansion Max Diameter"
  1305. msgstr ""
  1306. #: fdmprinter.def.json
  1307. msgctxt "small_hole_max_size description"
  1308. msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
  1309. msgstr "将使用微小特征速度打印直径小于此尺寸的孔和零件轮廓。"
  1310. #: fdmprinter.def.json
  1311. msgctxt "xy_offset label"
  1312. msgid "Horizontal Expansion"
  1313. msgstr "水平扩展"
  1314. #: fdmprinter.def.json
  1315. msgctxt "material_shrinkage_percentage_xy label"
  1316. msgid "Horizontal Scaling Factor Shrinkage Compensation"
  1317. msgstr "水平缩放因子收缩补偿"
  1318. #: fdmprinter.def.json
  1319. msgctxt "material_break_preparation_retracted_position description"
  1320. msgid "How far the filament can be stretched before it breaks, while heated."
  1321. msgstr "耗材受热拉伸但不断裂的极限长度。"
  1322. #: fdmprinter.def.json
  1323. msgctxt "material_anti_ooze_retracted_position description"
  1324. msgid "How far the material needs to be retracted before it stops oozing."
  1325. msgstr "材料在停止渗出前所需的回抽长度。"
  1326. #: fdmprinter.def.json
  1327. msgctxt "flow_rate_extrusion_offset_factor description"
  1328. msgid "How far to move the filament in order to compensate for changes in flow rate, as a percentage of how far the filament would move in one second of extrusion."
  1329. msgstr "为补偿流量变化而将线材移动的距离,在挤出一秒钟的情况下占线材移动距离的百分比。"
  1330. #: fdmprinter.def.json
  1331. msgctxt "material_break_retracted_position description"
  1332. msgid "How far to retract the filament in order to break it cleanly."
  1333. msgstr "为完全脱落耗材而抽回耗材的长度。"
  1334. #: fdmprinter.def.json
  1335. msgctxt "material_break_preparation_speed description"
  1336. msgid "How fast the filament needs to be retracted just before breaking it off in a retraction."
  1337. msgstr "耗材在回抽过程中恰好折断的回抽速率。"
  1338. #: fdmprinter.def.json
  1339. msgctxt "material_anti_ooze_retraction_speed description"
  1340. msgid "How fast the material needs to be retracted during a filament switch to prevent oozing."
  1341. msgstr "在耗材用于防渗出过程中材料所需的回抽速率。"
  1342. #: fdmprinter.def.json
  1343. msgctxt "material_end_of_filament_purge_speed description"
  1344. msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material."
  1345. msgstr "将空线轴替换为使用相同材料的新线轴后,装填材料的速度如何。"
  1346. #: fdmprinter.def.json
  1347. msgctxt "material_flush_purge_speed description"
  1348. msgid "How fast to prime the material after switching to a different material."
  1349. msgstr "切换到其他材料后,装填材料的速度如何。"
  1350. #: fdmprinter.def.json
  1351. msgctxt "material_maximum_park_duration description"
  1352. msgid "How long the material can be kept out of dry storage safely."
  1353. msgstr "材料能在干燥存储区之外安全存放多长时间。"
  1354. #: fdmprinter.def.json
  1355. msgctxt "machine_steps_per_mm_x description"
  1356. msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction."
  1357. msgstr "步进电机前进多少步将导致在 X 方向移动一毫米。"
  1358. #: fdmprinter.def.json
  1359. msgctxt "machine_steps_per_mm_y description"
  1360. msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction."
  1361. msgstr "步进电机前进多少步将导致在 Y 方向移动一毫米。"
  1362. #: fdmprinter.def.json
  1363. msgctxt "machine_steps_per_mm_z description"
  1364. msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction."
  1365. msgstr "步进电机前进多少步将导致在 Z 方向移动一毫米。"
  1366. #: fdmprinter.def.json
  1367. msgctxt "machine_steps_per_mm_e description"
  1368. msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference."
  1369. msgstr "步进电机前进多少步将导致进料器轮绕其周长移动一毫米。"
  1370. #: fdmprinter.def.json
  1371. msgctxt "material_end_of_filament_purge_length description"
  1372. msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material."
  1373. msgstr "将空线轴替换为使用相同材料的新线轴后,需要使用多少材料从喷嘴中清除之前的材料(以长丝长度计)。"
  1374. #: fdmprinter.def.json
  1375. msgctxt "material_flush_purge_length description"
  1376. msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material."
  1377. msgstr "切换到其他材料时,需要使用多少材料从喷嘴中清除之前的材料(以长丝长度计)。"
  1378. #: fdmprinter.def.json
  1379. msgctxt "machine_extruders_shared_nozzle_initial_retraction description"
  1380. msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts."
  1381. msgstr "假定在打印机启动 gcode 脚本完成后,每个挤出器的细丝从共用喷嘴头缩回多少;该值应等于或大于喷嘴导管公共部分的长度。"
  1382. #: fdmprinter.def.json
  1383. msgctxt "support_interface_priority description"
  1384. msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof."
  1385. msgstr ""
  1386. #: fdmprinter.def.json
  1387. msgctxt "support_tree_min_height_to_model description"
  1388. msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof."
  1389. msgstr ""
  1390. #: fdmprinter.def.json
  1391. msgctxt "bridge_skin_support_threshold description"
  1392. msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings."
  1393. msgstr "如果受支撑的表面区域小于整个区域的这一百分比,则使用连桥设置打印。否则,使用正常表面设置打印。"
  1394. #: fdmprinter.def.json
  1395. msgctxt "bridge_enable_more_layers description"
  1396. msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings."
  1397. msgstr "如果启用此选项,则使用以下设置打印净空区域上方第二层和第三层。否则,将使用正常设置打印这些层。"
  1398. #: fdmprinter.def.json
  1399. msgctxt "wall_transition_filter_distance description"
  1400. msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance."
  1401. msgstr "如果要在不同数量的壁之间快速连续地来回过渡,那么根本不要过渡。如果这些过渡的距离之和小于此距离,则移除过渡。"
  1402. #: fdmprinter.def.json
  1403. msgctxt "raft_margin description"
  1404. msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print."
  1405. msgstr "如果启用了 raft,则这是指也被提供了 raft 的模型周围的额外 raft 区域。 增加此留白将创建强度更大的 raft,但会使用更多材料,为打印品留下的空间更少。"
  1406. #: fdmprinter.def.json
  1407. msgctxt "meshfix_union_all description"
  1408. msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear."
  1409. msgstr "忽略由网格内的重叠体积产生的内部几何,并将多个部分作为一个打印。 这可能会导致意外的内部孔洞消失。"
  1410. #: fdmprinter.def.json
  1411. msgctxt "material_bed_temp_prepend label"
  1412. msgid "Include Build Plate Temperature"
  1413. msgstr "包含打印平台温度"
  1414. #: fdmprinter.def.json
  1415. msgctxt "material_print_temp_prepend label"
  1416. msgid "Include Material Temperatures"
  1417. msgstr "包含材料温度"
  1418. #: fdmprinter.def.json
  1419. msgctxt "slicing_tolerance option inclusive"
  1420. msgid "Inclusive"
  1421. msgstr ""
  1422. #: fdmprinter.def.json
  1423. msgctxt "infill description"
  1424. msgid "Infill"
  1425. msgstr "填充"
  1426. #: fdmprinter.def.json
  1427. msgctxt "infill label"
  1428. msgid "Infill"
  1429. msgstr "填充"
  1430. #: fdmprinter.def.json
  1431. msgctxt "acceleration_infill label"
  1432. msgid "Infill Acceleration"
  1433. msgstr "填充加速度"
  1434. #: fdmprinter.def.json
  1435. msgctxt "infill_before_walls label"
  1436. msgid "Infill Before Walls"
  1437. msgstr "先填充物后壁"
  1438. #: fdmprinter.def.json
  1439. msgctxt "infill_sparse_density label"
  1440. msgid "Infill Density"
  1441. msgstr "填充密度"
  1442. #: fdmprinter.def.json
  1443. msgctxt "infill_extruder_nr label"
  1444. msgid "Infill Extruder"
  1445. msgstr "填充挤出机"
  1446. #: fdmprinter.def.json
  1447. msgctxt "infill_material_flow label"
  1448. msgid "Infill Flow"
  1449. msgstr "填充流量"
  1450. #: fdmprinter.def.json
  1451. msgctxt "jerk_infill label"
  1452. msgid "Infill Jerk"
  1453. msgstr "填充抖动速度"
  1454. #: fdmprinter.def.json
  1455. msgctxt "infill_sparse_thickness label"
  1456. msgid "Infill Layer Thickness"
  1457. msgstr "填充层厚度"
  1458. #: fdmprinter.def.json
  1459. msgctxt "infill_angles label"
  1460. msgid "Infill Line Directions"
  1461. msgstr "填充走线方向"
  1462. #: fdmprinter.def.json
  1463. msgctxt "infill_line_distance label"
  1464. msgid "Infill Line Distance"
  1465. msgstr "填充走线距离"
  1466. #: fdmprinter.def.json
  1467. msgctxt "infill_multiplier label"
  1468. msgid "Infill Line Multiplier"
  1469. msgstr "填充走线乘数"
  1470. #: fdmprinter.def.json
  1471. msgctxt "infill_line_width label"
  1472. msgid "Infill Line Width"
  1473. msgstr "走线宽度(填充)"
  1474. #: fdmprinter.def.json
  1475. msgctxt "infill_mesh label"
  1476. msgid "Infill Mesh"
  1477. msgstr "填充网格"
  1478. #: fdmprinter.def.json
  1479. msgctxt "infill_support_angle label"
  1480. msgid "Infill Overhang Angle"
  1481. msgstr "填充悬垂角"
  1482. #: fdmprinter.def.json
  1483. msgctxt "infill_overlap_mm label"
  1484. msgid "Infill Overlap"
  1485. msgstr "填充重叠"
  1486. #: fdmprinter.def.json
  1487. msgctxt "infill_overlap label"
  1488. msgid "Infill Overlap Percentage"
  1489. msgstr "填充重叠百分比"
  1490. #: fdmprinter.def.json
  1491. msgctxt "infill_pattern label"
  1492. msgid "Infill Pattern"
  1493. msgstr "填充图案"
  1494. #: fdmprinter.def.json
  1495. msgctxt "speed_infill label"
  1496. msgid "Infill Speed"
  1497. msgstr "填充速度"
  1498. #: fdmprinter.def.json
  1499. msgctxt "infill_support_enabled label"
  1500. msgid "Infill Support"
  1501. msgstr "填充支撑"
  1502. #: fdmprinter.def.json
  1503. msgctxt "infill_enable_travel_optimization label"
  1504. msgid "Infill Travel Optimization"
  1505. msgstr "填充物空驶优化"
  1506. #: fdmprinter.def.json
  1507. msgctxt "infill_wipe_dist label"
  1508. msgid "Infill Wipe Distance"
  1509. msgstr "填充物擦拭距离"
  1510. #: fdmprinter.def.json
  1511. msgctxt "infill_offset_x label"
  1512. msgid "Infill X Offset"
  1513. msgstr "填充 X 轴偏移量"
  1514. #: fdmprinter.def.json
  1515. msgctxt "infill_offset_y label"
  1516. msgid "Infill Y Offset"
  1517. msgstr "填充 Y 轴偏移量"
  1518. #: fdmprinter.def.json
  1519. msgctxt "initial_bottom_layers label"
  1520. msgid "Initial Bottom Layers"
  1521. msgstr "初始底层数"
  1522. #: fdmprinter.def.json
  1523. msgctxt "cool_fan_speed_0 label"
  1524. msgid "Initial Fan Speed"
  1525. msgstr "起始风扇速度"
  1526. #: fdmprinter.def.json
  1527. msgctxt "acceleration_layer_0 label"
  1528. msgid "Initial Layer Acceleration"
  1529. msgstr "起始层加速度"
  1530. #: fdmprinter.def.json
  1531. msgctxt "skin_material_flow_layer_0 label"
  1532. msgid "Initial Layer Bottom Flow"
  1533. msgstr "起始层底部流量"
  1534. #: fdmprinter.def.json
  1535. msgctxt "support_tree_bp_diameter label"
  1536. msgid "Initial Layer Diameter"
  1537. msgstr ""
  1538. #: fdmprinter.def.json
  1539. msgctxt "material_flow_layer_0 label"
  1540. msgid "Initial Layer Flow"
  1541. msgstr "起始层流量"
  1542. #: fdmprinter.def.json
  1543. msgctxt "layer_height_0 label"
  1544. msgid "Initial Layer Height"
  1545. msgstr "起始层高"
  1546. #: fdmprinter.def.json
  1547. msgctxt "xy_offset_layer_0 label"
  1548. msgid "Initial Layer Horizontal Expansion"
  1549. msgstr "起始层水平扩展"
  1550. #: fdmprinter.def.json
  1551. msgctxt "wall_x_material_flow_layer_0 label"
  1552. msgid "Initial Layer Inner Wall Flow"
  1553. msgstr "起始层内壁流量"
  1554. #: fdmprinter.def.json
  1555. msgctxt "jerk_layer_0 label"
  1556. msgid "Initial Layer Jerk"
  1557. msgstr "起始层抖动速度"
  1558. #: fdmprinter.def.json
  1559. msgctxt "initial_layer_line_width_factor label"
  1560. msgid "Initial Layer Line Width"
  1561. msgstr "起始层走线宽度"
  1562. #: fdmprinter.def.json
  1563. msgctxt "wall_0_material_flow_layer_0 label"
  1564. msgid "Initial Layer Outer Wall Flow"
  1565. msgstr "起始层外壁流量"
  1566. #: fdmprinter.def.json
  1567. msgctxt "acceleration_print_layer_0 label"
  1568. msgid "Initial Layer Print Acceleration"
  1569. msgstr "起始层打印加速度"
  1570. #: fdmprinter.def.json
  1571. msgctxt "jerk_print_layer_0 label"
  1572. msgid "Initial Layer Print Jerk"
  1573. msgstr "起始层打印抖动速度"
  1574. #: fdmprinter.def.json
  1575. msgctxt "speed_print_layer_0 label"
  1576. msgid "Initial Layer Print Speed"
  1577. msgstr "起始层打印速度"
  1578. #: fdmprinter.def.json
  1579. msgctxt "speed_layer_0 label"
  1580. msgid "Initial Layer Speed"
  1581. msgstr "起始层速度"
  1582. #: fdmprinter.def.json
  1583. msgctxt "support_initial_layer_line_distance label"
  1584. msgid "Initial Layer Support Line Distance"
  1585. msgstr "起始层支撑走线距离"
  1586. #: fdmprinter.def.json
  1587. msgctxt "acceleration_travel_layer_0 label"
  1588. msgid "Initial Layer Travel Acceleration"
  1589. msgstr "起始层空驶加速度"
  1590. #: fdmprinter.def.json
  1591. msgctxt "jerk_travel_layer_0 label"
  1592. msgid "Initial Layer Travel Jerk"
  1593. msgstr "起始层空驶抖动速度"
  1594. #: fdmprinter.def.json
  1595. msgctxt "speed_travel_layer_0 label"
  1596. msgid "Initial Layer Travel Speed"
  1597. msgstr "起始层空驶速度"
  1598. #: fdmprinter.def.json
  1599. msgctxt "layer_0_z_overlap label"
  1600. msgid "Initial Layer Z Overlap"
  1601. msgstr "起始层 Z 重叠"
  1602. #: fdmprinter.def.json
  1603. msgctxt "material_initial_print_temperature label"
  1604. msgid "Initial Printing Temperature"
  1605. msgstr "起始打印温度"
  1606. #: fdmprinter.def.json
  1607. msgctxt "acceleration_wall_x label"
  1608. msgid "Inner Wall Acceleration"
  1609. msgstr "内壁加速度"
  1610. #: fdmprinter.def.json
  1611. msgctxt "wall_x_extruder_nr label"
  1612. msgid "Inner Wall Extruder"
  1613. msgstr "内壁挤出机"
  1614. #: fdmprinter.def.json
  1615. msgctxt "jerk_wall_x label"
  1616. msgid "Inner Wall Jerk"
  1617. msgstr "内壁抖动速度"
  1618. #: fdmprinter.def.json
  1619. msgctxt "speed_wall_x label"
  1620. msgid "Inner Wall Speed"
  1621. msgstr "速度(内壁)"
  1622. #: fdmprinter.def.json
  1623. msgctxt "wall_x_material_flow label"
  1624. msgid "Inner Wall(s) Flow"
  1625. msgstr "内壁流量"
  1626. #: fdmprinter.def.json
  1627. msgctxt "wall_line_width_x label"
  1628. msgid "Inner Wall(s) Line Width"
  1629. msgstr "走线宽度(内壁)"
  1630. #: fdmprinter.def.json
  1631. msgctxt "wall_0_inset description"
  1632. msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model."
  1633. msgstr "应用在外壁路径上的嵌入。 如果外壁小于喷嘴,并且在内壁之后打印,则使用该偏移量来使喷嘴中的孔与内壁而不是模型外部重叠。"
  1634. #: fdmprinter.def.json
  1635. msgctxt "inset_direction option inside_out"
  1636. msgid "Inside To Outside"
  1637. msgstr "从内到外"
  1638. #: fdmprinter.def.json
  1639. msgctxt "support_interface_priority option interface_lines_overwrite_support_area"
  1640. msgid "Interface lines preferred"
  1641. msgstr ""
  1642. #: fdmprinter.def.json
  1643. msgctxt "support_interface_priority option interface_area_overwrite_support_area"
  1644. msgid "Interface preferred"
  1645. msgstr ""
  1646. #: fdmprinter.def.json
  1647. msgctxt "interlocking_beam_layer_count label"
  1648. msgid "Interlocking Beam Layer Count"
  1649. msgstr "互锁梁层数"
  1650. #: fdmprinter.def.json
  1651. msgctxt "interlocking_beam_width label"
  1652. msgid "Interlocking Beam Width"
  1653. msgstr "互锁梁宽度"
  1654. #: fdmprinter.def.json
  1655. msgctxt "interlocking_boundary_avoidance label"
  1656. msgid "Interlocking Boundary Avoidance"
  1657. msgstr "互锁边界回避"
  1658. #: fdmprinter.def.json
  1659. msgctxt "interlocking_depth label"
  1660. msgid "Interlocking Depth"
  1661. msgstr "互锁深度"
  1662. #: fdmprinter.def.json
  1663. msgctxt "interlocking_orientation label"
  1664. msgid "Interlocking Structure Orientation"
  1665. msgstr "互锁结构方向"
  1666. #: fdmprinter.def.json
  1667. msgctxt "ironing_only_highest_layer label"
  1668. msgid "Iron Only Highest Layer"
  1669. msgstr "仅熨平最高层"
  1670. #: fdmprinter.def.json
  1671. msgctxt "acceleration_ironing label"
  1672. msgid "Ironing Acceleration"
  1673. msgstr "熨平加速度"
  1674. #: fdmprinter.def.json
  1675. msgctxt "ironing_flow label"
  1676. msgid "Ironing Flow"
  1677. msgstr "熨平流量"
  1678. #: fdmprinter.def.json
  1679. msgctxt "ironing_inset label"
  1680. msgid "Ironing Inset"
  1681. msgstr "熨平嵌入"
  1682. #: fdmprinter.def.json
  1683. msgctxt "jerk_ironing label"
  1684. msgid "Ironing Jerk"
  1685. msgstr "熨平抖动速度"
  1686. #: fdmprinter.def.json
  1687. msgctxt "ironing_line_spacing label"
  1688. msgid "Ironing Line Spacing"
  1689. msgstr "熨平走线间距"
  1690. #: fdmprinter.def.json
  1691. msgctxt "ironing_pattern label"
  1692. msgid "Ironing Pattern"
  1693. msgstr "熨平图案"
  1694. #: fdmprinter.def.json
  1695. msgctxt "speed_ironing label"
  1696. msgid "Ironing Speed"
  1697. msgstr "熨平速度"
  1698. #: fdmprinter.def.json
  1699. msgctxt "machine_center_is_zero label"
  1700. msgid "Is Center Origin"
  1701. msgstr "位于中心"
  1702. #: fdmprinter.def.json
  1703. msgctxt "material_crystallinity description"
  1704. msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?"
  1705. msgstr "该材料为受热后脱落干净的类型(晶体),还是会产生长交织状聚合物链的类型(非晶体)?"
  1706. #: fdmprinter.def.json
  1707. msgctxt "magic_fuzzy_skin_outside_only description"
  1708. msgid "Jitter only the parts' outlines and not the parts' holes."
  1709. msgstr "仅抖动部件的轮廓,而不抖动部件的孔。"
  1710. #: fdmprinter.def.json
  1711. msgctxt "meshfix_keep_open_polygons label"
  1712. msgid "Keep Disconnected Faces"
  1713. msgstr "保留断开连接的面"
  1714. #: fdmprinter.def.json
  1715. msgctxt "layer_height label"
  1716. msgid "Layer Height"
  1717. msgstr "层高"
  1718. #: fdmprinter.def.json
  1719. msgctxt "layer_start_x label"
  1720. msgid "Layer Start X"
  1721. msgstr "层开始 X"
  1722. #: fdmprinter.def.json
  1723. msgctxt "layer_start_y label"
  1724. msgid "Layer Start Y"
  1725. msgstr "层开始 Y"
  1726. #: fdmprinter.def.json
  1727. msgctxt "raft_base_thickness description"
  1728. msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate."
  1729. msgstr "基础 Raft 层的层厚度。 该层应为与打印机打印平台牢固粘着的厚层。"
  1730. #: fdmprinter.def.json
  1731. msgctxt "raft_interface_thickness description"
  1732. msgid "Layer thickness of the middle raft layer."
  1733. msgstr "中间 Raft 层的层厚度。"
  1734. #: fdmprinter.def.json
  1735. msgctxt "raft_surface_thickness description"
  1736. msgid "Layer thickness of the top raft layers."
  1737. msgstr "顶部 Raft 层的层厚度。"
  1738. #: fdmprinter.def.json
  1739. msgctxt "support_skip_zag_per_mm description"
  1740. msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away."
  1741. msgstr "每隔 N 毫米在支撑线之间略去一个连接,让支撑结构更容易脱离。"
  1742. #: fdmprinter.def.json
  1743. msgctxt "z_seam_position option left"
  1744. msgid "Left"
  1745. msgstr "左侧"
  1746. #: fdmprinter.def.json
  1747. msgctxt "cool_lift_head label"
  1748. msgid "Lift Head"
  1749. msgstr "打印头提升"
  1750. #: fdmprinter.def.json
  1751. msgctxt "infill_pattern option lightning"
  1752. msgid "Lightning"
  1753. msgstr "闪电形"
  1754. #: fdmprinter.def.json
  1755. msgctxt "lightning_infill_overhang_angle label"
  1756. msgid "Lightning Infill Overhang Angle"
  1757. msgstr "闪电形填充悬垂角"
  1758. #: fdmprinter.def.json
  1759. msgctxt "lightning_infill_prune_angle label"
  1760. msgid "Lightning Infill Prune Angle"
  1761. msgstr "闪电形填充修剪角"
  1762. #: fdmprinter.def.json
  1763. msgctxt "lightning_infill_straightening_angle label"
  1764. msgid "Lightning Infill Straightening Angle"
  1765. msgstr "闪电形填充矫直角"
  1766. #: fdmprinter.def.json
  1767. msgctxt "lightning_infill_support_angle label"
  1768. msgid "Lightning Infill Support Angle"
  1769. msgstr "闪电形填充支撑角"
  1770. #: fdmprinter.def.json
  1771. msgctxt "support_tree_limit_branch_reach label"
  1772. msgid "Limit Branch Reach"
  1773. msgstr ""
  1774. #: fdmprinter.def.json
  1775. msgctxt "support_tree_limit_branch_reach description"
  1776. msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)"
  1777. msgstr ""
  1778. #: fdmprinter.def.json
  1779. msgctxt "cutting_mesh description"
  1780. msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder."
  1781. msgstr "将此网格的体积限制在其他网格内。 您可以使用它来制作采用不同的设置以及完全不同的挤出机的网格打印的特定区域。"
  1782. #: fdmprinter.def.json
  1783. msgctxt "draft_shield_height_limitation option limited"
  1784. msgid "Limited"
  1785. msgstr "有限"
  1786. #: fdmprinter.def.json
  1787. msgctxt "line_width label"
  1788. msgid "Line Width"
  1789. msgstr "走线宽度"
  1790. #: fdmprinter.def.json
  1791. msgctxt "infill_pattern option lines"
  1792. msgid "Lines"
  1793. msgstr "直线"
  1794. #: fdmprinter.def.json
  1795. msgctxt "roofing_pattern option lines"
  1796. msgid "Lines"
  1797. msgstr "走线"
  1798. #: fdmprinter.def.json
  1799. msgctxt "support_bottom_pattern option lines"
  1800. msgid "Lines"
  1801. msgstr "走线"
  1802. #: fdmprinter.def.json
  1803. msgctxt "support_interface_pattern option lines"
  1804. msgid "Lines"
  1805. msgstr "走线"
  1806. #: fdmprinter.def.json
  1807. msgctxt "support_pattern option lines"
  1808. msgid "Lines"
  1809. msgstr "走线"
  1810. #: fdmprinter.def.json
  1811. msgctxt "support_roof_pattern option lines"
  1812. msgid "Lines"
  1813. msgstr "直线"
  1814. #: fdmprinter.def.json
  1815. msgctxt "top_bottom_pattern option lines"
  1816. msgid "Lines"
  1817. msgstr "直线"
  1818. #: fdmprinter.def.json
  1819. msgctxt "top_bottom_pattern_0 option lines"
  1820. msgid "Lines"
  1821. msgstr "直线"
  1822. #: fdmprinter.def.json
  1823. msgctxt "machine_gcode_flavor option MACH3"
  1824. msgid "Mach3"
  1825. msgstr "Mach3"
  1826. #: fdmprinter.def.json
  1827. msgctxt "machine_settings label"
  1828. msgid "Machine"
  1829. msgstr "机器"
  1830. #: fdmprinter.def.json
  1831. msgctxt "machine_depth label"
  1832. msgid "Machine Depth"
  1833. msgstr "机器深度"
  1834. #: fdmprinter.def.json
  1835. msgctxt "machine_head_with_fans_polygon label"
  1836. msgid "Machine Head & Fan Polygon"
  1837. msgstr "机器头和风扇多边形"
  1838. #: fdmprinter.def.json
  1839. msgctxt "machine_height label"
  1840. msgid "Machine Height"
  1841. msgstr "机器高度"
  1842. #: fdmprinter.def.json
  1843. msgctxt "machine_name label"
  1844. msgid "Machine Type"
  1845. msgstr "机器类型"
  1846. #: fdmprinter.def.json
  1847. msgctxt "machine_width label"
  1848. msgid "Machine Width"
  1849. msgstr "机器宽度"
  1850. #: fdmprinter.def.json
  1851. msgctxt "machine_settings description"
  1852. msgid "Machine specific settings"
  1853. msgstr "机器详细设置"
  1854. #: fdmprinter.def.json
  1855. msgctxt "conical_overhang_enabled label"
  1856. msgid "Make Overhang Printable"
  1857. msgstr "使悬垂可打印"
  1858. #: fdmprinter.def.json
  1859. msgctxt "multiple_mesh_overlap description"
  1860. msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better."
  1861. msgstr "让彼此接触的网格略微重叠。 这会让它们更好地粘合在一起。"
  1862. #: fdmprinter.def.json
  1863. msgctxt "support_conical_enabled description"
  1864. msgid "Make support areas smaller at the bottom than at the overhang."
  1865. msgstr "使底部的支撑区域小于悬垂处的支撑区域。"
  1866. #: fdmprinter.def.json
  1867. msgctxt "support_mesh_drop_down description"
  1868. msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh."
  1869. msgstr "在支撑网格下方的所有位置进行支撑,让支撑网格中没有悬垂。"
  1870. #: fdmprinter.def.json
  1871. msgctxt "extruder_prime_pos_abs description"
  1872. msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head."
  1873. msgstr "使挤出机主要位置为绝对值,而不是与上一已知打印头位置的相对值。"
  1874. #: fdmprinter.def.json
  1875. msgctxt "layer_0_z_overlap description"
  1876. msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount."
  1877. msgstr "使模型的第一层和第二层在 Z 方向上重叠以补偿在空隙中损失的耗材。 第一个模型层上方的所有模型将向下移动此重叠量。"
  1878. #: fdmprinter.def.json
  1879. msgctxt "meshfix description"
  1880. msgid "Make the meshes more suited for 3D printing."
  1881. msgstr "使网格更适合 3D 打印。"
  1882. #: fdmprinter.def.json
  1883. msgctxt "machine_gcode_flavor option Makerbot"
  1884. msgid "Makerbot"
  1885. msgstr "Makerbot"
  1886. #: fdmprinter.def.json
  1887. msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)"
  1888. msgid "Marlin"
  1889. msgstr "Marlin"
  1890. #: fdmprinter.def.json
  1891. msgctxt "machine_gcode_flavor option RepRap (Volumetric)"
  1892. msgid "Marlin (Volumetric)"
  1893. msgstr "Marlin(容积)"
  1894. #: fdmprinter.def.json
  1895. msgctxt "material description"
  1896. msgid "Material"
  1897. msgstr "材料"
  1898. #: fdmprinter.def.json
  1899. msgctxt "material label"
  1900. msgid "Material"
  1901. msgstr "材料"
  1902. #: fdmprinter.def.json
  1903. msgctxt "material_guid label"
  1904. msgid "Material GUID"
  1905. msgstr "材料 GUID"
  1906. #: fdmprinter.def.json
  1907. msgctxt "max_extrusion_before_wipe label"
  1908. msgid "Material Volume Between Wipes"
  1909. msgstr "擦拭之间的材料量"
  1910. #: fdmprinter.def.json
  1911. msgctxt "retraction_combing_max_distance label"
  1912. msgid "Max Comb Distance With No Retract"
  1913. msgstr "最大梳距,无收缩"
  1914. #: fdmprinter.def.json
  1915. msgctxt "machine_max_acceleration_x label"
  1916. msgid "Maximum Acceleration X"
  1917. msgstr "X 轴最大加速度"
  1918. #: fdmprinter.def.json
  1919. msgctxt "machine_max_acceleration_y label"
  1920. msgid "Maximum Acceleration Y"
  1921. msgstr "轴最大加速度"
  1922. #: fdmprinter.def.json
  1923. msgctxt "machine_max_acceleration_z label"
  1924. msgid "Maximum Acceleration Z"
  1925. msgstr "Z 轴最大加速度"
  1926. #: fdmprinter.def.json
  1927. msgctxt "support_tree_angle label"
  1928. msgid "Maximum Branch Angle"
  1929. msgstr ""
  1930. #: fdmprinter.def.json
  1931. msgctxt "meshfix_maximum_deviation label"
  1932. msgid "Maximum Deviation"
  1933. msgstr "最大偏移量"
  1934. #: fdmprinter.def.json
  1935. msgctxt "meshfix_maximum_extrusion_area_deviation label"
  1936. msgid "Maximum Extrusion Area Deviation"
  1937. msgstr "最大挤出面积偏移量"
  1938. #: fdmprinter.def.json
  1939. msgctxt "cool_fan_speed_max label"
  1940. msgid "Maximum Fan Speed"
  1941. msgstr "最大风扇速度"
  1942. #: fdmprinter.def.json
  1943. msgctxt "machine_max_acceleration_e label"
  1944. msgid "Maximum Filament Acceleration"
  1945. msgstr "挤出电机最大加速度"
  1946. #: fdmprinter.def.json
  1947. msgctxt "conical_overhang_angle label"
  1948. msgid "Maximum Model Angle"
  1949. msgstr "最大模型角度"
  1950. #: fdmprinter.def.json
  1951. msgctxt "conical_overhang_hole_size label"
  1952. msgid "Maximum Overhang Hole Area"
  1953. msgstr "最大悬垂孔面积"
  1954. #: fdmprinter.def.json
  1955. msgctxt "material_maximum_park_duration label"
  1956. msgid "Maximum Park Duration"
  1957. msgstr "最长停放持续时间"
  1958. #: fdmprinter.def.json
  1959. msgctxt "meshfix_maximum_resolution label"
  1960. msgid "Maximum Resolution"
  1961. msgstr "最大分辨率"
  1962. #: fdmprinter.def.json
  1963. msgctxt "retraction_count_max label"
  1964. msgid "Maximum Retraction Count"
  1965. msgstr "最大回抽计数"
  1966. #: fdmprinter.def.json
  1967. msgctxt "max_skin_angle_for_expansion label"
  1968. msgid "Maximum Skin Angle for Expansion"
  1969. msgstr "最大扩展皮肤角度"
  1970. #: fdmprinter.def.json
  1971. msgctxt "machine_max_feedrate_e label"
  1972. msgid "Maximum Speed E"
  1973. msgstr "E 轴最大速度"
  1974. #: fdmprinter.def.json
  1975. msgctxt "machine_max_feedrate_x label"
  1976. msgid "Maximum Speed X"
  1977. msgstr "X 轴最大速度"
  1978. #: fdmprinter.def.json
  1979. msgctxt "machine_max_feedrate_y label"
  1980. msgid "Maximum Speed Y"
  1981. msgstr "Y 轴最大速度"
  1982. #: fdmprinter.def.json
  1983. msgctxt "machine_max_feedrate_z label"
  1984. msgid "Maximum Speed Z"
  1985. msgstr "Z 轴最大速度"
  1986. #: fdmprinter.def.json
  1987. msgctxt "support_tower_maximum_supported_diameter label"
  1988. msgid "Maximum Tower-Supported Diameter"
  1989. msgstr "最大塔支撑直径"
  1990. #: fdmprinter.def.json
  1991. msgctxt "meshfix_maximum_travel_resolution label"
  1992. msgid "Maximum Travel Resolution"
  1993. msgstr "空走的最大分辨率"
  1994. #: fdmprinter.def.json
  1995. msgctxt "machine_max_acceleration_x description"
  1996. msgid "Maximum acceleration for the motor of the X-direction"
  1997. msgstr "X 轴方向电机的最大加速度"
  1998. #: fdmprinter.def.json
  1999. msgctxt "machine_max_acceleration_y description"
  2000. msgid "Maximum acceleration for the motor of the Y-direction."
  2001. msgstr "Y 轴方向电机的最大加速度。"
  2002. #: fdmprinter.def.json
  2003. msgctxt "machine_max_acceleration_z description"
  2004. msgid "Maximum acceleration for the motor of the Z-direction."
  2005. msgstr "Z 轴方向电机的最大加速度。"
  2006. #: fdmprinter.def.json
  2007. msgctxt "machine_max_acceleration_e description"
  2008. msgid "Maximum acceleration for the motor of the filament."
  2009. msgstr "耗材电机的最大加速度。"
  2010. #: fdmprinter.def.json
  2011. msgctxt "bridge_sparse_infill_max_density description"
  2012. msgid "Maximum density of infill considered to be sparse. Skin over sparse infill is considered to be unsupported and so may be treated as a bridge skin."
  2013. msgstr "填充物的最大密度被视为稀疏。稀疏填充物表面被视为不受支持,因此可被视为连桥表面。"
  2014. #: fdmprinter.def.json
  2015. msgctxt "support_tower_maximum_supported_diameter description"
  2016. msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower."
  2017. msgstr "将由专门的支撑塔支撑的小区域 X/Y 轴方向的最大直径。"
  2018. #: fdmprinter.def.json
  2019. msgctxt "max_extrusion_before_wipe description"
  2020. msgid "Maximum material that can be extruded before another nozzle wipe is initiated. If this value is less than the volume of material required in a layer, the setting has no effect in this layer, i.e. it is limited to one wipe per layer."
  2021. msgstr "在开始下一轮喷嘴擦拭之前可挤出的最大材料量。如果此值小于层中所需的材料量,则该设置在此层中无效,即每层仅限擦拭一次。"
  2022. #: fdmprinter.def.json
  2023. msgctxt "multiple_mesh_overlap label"
  2024. msgid "Merged Meshes Overlap"
  2025. msgstr "合并网格重叠"
  2026. #: fdmprinter.def.json
  2027. msgctxt "meshfix label"
  2028. msgid "Mesh Fixes"
  2029. msgstr "网格修复"
  2030. #: fdmprinter.def.json
  2031. msgctxt "mesh_position_x label"
  2032. msgid "Mesh Position X"
  2033. msgstr "网格X位置"
  2034. #: fdmprinter.def.json
  2035. msgctxt "mesh_position_y label"
  2036. msgid "Mesh Position Y"
  2037. msgstr "网格Y位置"
  2038. #: fdmprinter.def.json
  2039. msgctxt "mesh_position_z label"
  2040. msgid "Mesh Position Z"
  2041. msgstr "网格Z位置"
  2042. #: fdmprinter.def.json
  2043. msgctxt "infill_mesh_order label"
  2044. msgid "Mesh Processing Rank"
  2045. msgstr "网格处理等级"
  2046. #: fdmprinter.def.json
  2047. msgctxt "mesh_rotation_matrix label"
  2048. msgid "Mesh Rotation Matrix"
  2049. msgstr "网格旋转矩阵"
  2050. #: fdmprinter.def.json
  2051. msgctxt "slicing_tolerance option middle"
  2052. msgid "Middle"
  2053. msgstr "Middle"
  2054. #: fdmprinter.def.json
  2055. msgctxt "mold_width label"
  2056. msgid "Minimal Mold Width"
  2057. msgstr "最小模具宽度"
  2058. #: fdmprinter.def.json
  2059. msgctxt "machine_min_cool_heat_time_window label"
  2060. msgid "Minimal Time Standby Temperature"
  2061. msgstr "最短时间待机温度"
  2062. #: fdmprinter.def.json
  2063. msgctxt "bridge_wall_min_length label"
  2064. msgid "Minimum Bridge Wall Length"
  2065. msgstr "最小桥壁长度"
  2066. #: fdmprinter.def.json
  2067. msgctxt "min_even_wall_line_width label"
  2068. msgid "Minimum Even Wall Line Width"
  2069. msgstr "最小偶数壁走线宽度"
  2070. #: fdmprinter.def.json
  2071. msgctxt "retraction_extrusion_window label"
  2072. msgid "Minimum Extrusion Distance Window"
  2073. msgstr "最小挤出距离范围"
  2074. #: fdmprinter.def.json
  2075. msgctxt "min_feature_size label"
  2076. msgid "Minimum Feature Size"
  2077. msgstr "最小特征尺寸"
  2078. #: fdmprinter.def.json
  2079. msgctxt "machine_minimum_feedrate label"
  2080. msgid "Minimum Feedrate"
  2081. msgstr "最小进料速率"
  2082. #: fdmprinter.def.json
  2083. msgctxt "support_tree_min_height_to_model label"
  2084. msgid "Minimum Height To Model"
  2085. msgstr ""
  2086. #: fdmprinter.def.json
  2087. msgctxt "min_infill_area label"
  2088. msgid "Minimum Infill Area"
  2089. msgstr "最小填充区域"
  2090. #: fdmprinter.def.json
  2091. msgctxt "cool_min_layer_time label"
  2092. msgid "Minimum Layer Time"
  2093. msgstr "最短单层冷却时间"
  2094. #: fdmprinter.def.json
  2095. msgctxt "min_odd_wall_line_width label"
  2096. msgid "Minimum Odd Wall Line Width"
  2097. msgstr "最小奇数壁走线宽度"
  2098. #: fdmprinter.def.json
  2099. msgctxt "minimum_polygon_circumference label"
  2100. msgid "Minimum Polygon Circumference"
  2101. msgstr "最小多边形周长"
  2102. #: fdmprinter.def.json
  2103. msgctxt "min_skin_width_for_expansion label"
  2104. msgid "Minimum Skin Width for Expansion"
  2105. msgstr "最小扩展皮肤宽度"
  2106. #: fdmprinter.def.json
  2107. msgctxt "cool_min_speed label"
  2108. msgid "Minimum Speed"
  2109. msgstr "最小风扇速度"
  2110. #: fdmprinter.def.json
  2111. msgctxt "minimum_support_area label"
  2112. msgid "Minimum Support Area"
  2113. msgstr "最小支撑面积"
  2114. #: fdmprinter.def.json
  2115. msgctxt "minimum_bottom_area label"
  2116. msgid "Minimum Support Floor Area"
  2117. msgstr "最小支撑底板面积"
  2118. #: fdmprinter.def.json
  2119. msgctxt "minimum_interface_area label"
  2120. msgid "Minimum Support Interface Area"
  2121. msgstr "最小支撑接触面面积"
  2122. #: fdmprinter.def.json
  2123. msgctxt "minimum_roof_area label"
  2124. msgid "Minimum Support Roof Area"
  2125. msgstr "最小支撑顶板面积"
  2126. #: fdmprinter.def.json
  2127. msgctxt "support_xy_distance_overhang label"
  2128. msgid "Minimum Support X/Y Distance"
  2129. msgstr "最小支撑 X/Y 距离"
  2130. #: fdmprinter.def.json
  2131. msgctxt "min_bead_width label"
  2132. msgid "Minimum Thin Wall Line Width"
  2133. msgstr "最小薄壁走线宽度"
  2134. #: fdmprinter.def.json
  2135. msgctxt "coasting_min_volume label"
  2136. msgid "Minimum Volume Before Coasting"
  2137. msgstr "滑行前最小体积"
  2138. #: fdmprinter.def.json
  2139. msgctxt "min_wall_line_width label"
  2140. msgid "Minimum Wall Line Width"
  2141. msgstr "最小壁走线宽度"
  2142. #: fdmprinter.def.json
  2143. msgctxt "minimum_interface_area description"
  2144. msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support."
  2145. msgstr "支撑接触面多边形的最小面积。面积小于此值的多边形将打印为一般支撑。"
  2146. #: fdmprinter.def.json
  2147. msgctxt "minimum_support_area description"
  2148. msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated."
  2149. msgstr "支撑多边形的最小面积。将不会生成面积小于此值的多边形。"
  2150. #: fdmprinter.def.json
  2151. msgctxt "minimum_bottom_area description"
  2152. msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will be printed as normal support."
  2153. msgstr "支撑底板的最小面积。面积小于此值的多边形将打印为一般支撑。"
  2154. #: fdmprinter.def.json
  2155. msgctxt "minimum_roof_area description"
  2156. msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will be printed as normal support."
  2157. msgstr "支撑顶板的最小面积。面积小于此值的多边形将打印为一般支撑。"
  2158. #: fdmprinter.def.json
  2159. msgctxt "min_feature_size description"
  2160. msgid "Minimum thickness of thin features. Model features that are thinner than this value will not be printed, while features thicker than the Minimum Feature Size will be widened to the Minimum Wall Line Width."
  2161. msgstr "薄特征的最小厚度。将不打印比此值更薄的模型特征,而比最小特征尺寸更厚的特征将加宽到最小壁走线宽度。"
  2162. #: fdmprinter.def.json
  2163. msgctxt "support_conical_min_width description"
  2164. msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures."
  2165. msgstr "锥形支撑区域底部被缩小至的最小宽度。 宽度较小可导致不稳定的支撑结构。"
  2166. #: fdmprinter.def.json
  2167. msgctxt "mold_enabled label"
  2168. msgid "Mold"
  2169. msgstr "模具"
  2170. #: fdmprinter.def.json
  2171. msgctxt "mold_angle label"
  2172. msgid "Mold Angle"
  2173. msgstr "模具角度"
  2174. #: fdmprinter.def.json
  2175. msgctxt "mold_roof_height label"
  2176. msgid "Mold Roof Height"
  2177. msgstr "模具顶板高度"
  2178. #: fdmprinter.def.json
  2179. msgctxt "ironing_monotonic label"
  2180. msgid "Monotonic Ironing Order"
  2181. msgstr "单调熨平顺序"
  2182. #: fdmprinter.def.json
  2183. msgctxt "roofing_monotonic label"
  2184. msgid "Monotonic Top Surface Order"
  2185. msgstr "单调顶部表面顺序"
  2186. #: fdmprinter.def.json
  2187. msgctxt "skin_monotonic label"
  2188. msgid "Monotonic Top/Bottom Order"
  2189. msgstr "单调顶部/底部顺序"
  2190. #: fdmprinter.def.json
  2191. msgctxt "skirt_line_count description"
  2192. msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt."
  2193. msgstr "多个 Skirt 走线帮助为小型模型更好地装填您的挤出部分。 将其设为 0 将禁用 skirt。"
  2194. #: fdmprinter.def.json
  2195. msgctxt "initial_layer_line_width_factor description"
  2196. msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion."
  2197. msgstr "第一层走线宽度乘数。 增大此乘数可改善热床粘着。"
  2198. #: fdmprinter.def.json
  2199. msgctxt "material_no_load_move_factor label"
  2200. msgid "No Load Move Factor"
  2201. msgstr "空载移动系数"
  2202. #: fdmprinter.def.json
  2203. msgctxt "skin_no_small_gaps_heuristic label"
  2204. msgid "No Skin in Z Gaps"
  2205. msgstr "Z 间隙内无表层"
  2206. #: fdmprinter.def.json
  2207. msgctxt "blackmagic description"
  2208. msgid "Non-traditional ways to print your models."
  2209. msgstr "打印模型的非传统方式。"
  2210. #: fdmprinter.def.json
  2211. msgctxt "adhesion_type option none"
  2212. msgid "None"
  2213. msgstr "无"
  2214. #: fdmprinter.def.json
  2215. msgctxt "z_seam_corner option z_seam_corner_none"
  2216. msgid "None"
  2217. msgstr "无"
  2218. #: fdmprinter.def.json
  2219. msgctxt "magic_mesh_surface_mode option normal"
  2220. msgid "Normal"
  2221. msgstr "正常"
  2222. #: fdmprinter.def.json
  2223. msgctxt "support_structure option normal"
  2224. msgid "Normal"
  2225. msgstr "正常"
  2226. #: fdmprinter.def.json
  2227. msgctxt "meshfix_keep_open_polygons description"
  2228. msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code."
  2229. msgstr "一般情况下,Cura 会尝试缝合网格中的小孔,并移除层中有大孔的部分。启用此选项将保留那些无法缝合的部分。当其他所有方法都无法产生正确的 G-code 时,最后才应考虑该选项。"
  2230. #: fdmprinter.def.json
  2231. msgctxt "retraction_combing option noskin"
  2232. msgid "Not in Skin"
  2233. msgstr "除了皮肤"
  2234. #: fdmprinter.def.json
  2235. msgctxt "retraction_combing option no_outer_surfaces"
  2236. msgid "Not on Outer Surface"
  2237. msgstr "不在外表面上"
  2238. #: fdmprinter.def.json
  2239. msgctxt "machine_nozzle_expansion_angle label"
  2240. msgid "Nozzle Angle"
  2241. msgstr "喷嘴角度"
  2242. #: fdmprinter.def.json
  2243. msgctxt "machine_nozzle_size label"
  2244. msgid "Nozzle Diameter"
  2245. msgstr "喷嘴直径"
  2246. #: fdmprinter.def.json
  2247. msgctxt "nozzle_disallowed_areas label"
  2248. msgid "Nozzle Disallowed Areas"
  2249. msgstr "喷嘴不允许区域"
  2250. #: fdmprinter.def.json
  2251. msgctxt "machine_nozzle_id label"
  2252. msgid "Nozzle ID"
  2253. msgstr "喷嘴 ID"
  2254. #: fdmprinter.def.json
  2255. msgctxt "machine_nozzle_head_distance label"
  2256. msgid "Nozzle Length"
  2257. msgstr "喷嘴长度"
  2258. #: fdmprinter.def.json
  2259. msgctxt "switch_extruder_extra_prime_amount label"
  2260. msgid "Nozzle Switch Extra Prime Amount"
  2261. msgstr "喷嘴切换额外装填量"
  2262. #: fdmprinter.def.json
  2263. msgctxt "switch_extruder_prime_speed label"
  2264. msgid "Nozzle Switch Prime Speed"
  2265. msgstr "喷嘴切换装填速度"
  2266. #: fdmprinter.def.json
  2267. msgctxt "switch_extruder_retraction_speed label"
  2268. msgid "Nozzle Switch Retract Speed"
  2269. msgstr "喷嘴切换回抽速度"
  2270. #: fdmprinter.def.json
  2271. msgctxt "switch_extruder_retraction_amount label"
  2272. msgid "Nozzle Switch Retraction Distance"
  2273. msgstr "喷嘴切换回抽距离"
  2274. #: fdmprinter.def.json
  2275. msgctxt "switch_extruder_retraction_speeds label"
  2276. msgid "Nozzle Switch Retraction Speed"
  2277. msgstr "喷嘴切换回抽速度"
  2278. #: fdmprinter.def.json
  2279. msgctxt "machine_extruder_count label"
  2280. msgid "Number of Extruders"
  2281. msgstr "挤出机数目"
  2282. #: fdmprinter.def.json
  2283. msgctxt "extruders_enabled_count label"
  2284. msgid "Number of Extruders That Are Enabled"
  2285. msgstr "已启用的挤出机数目"
  2286. #: fdmprinter.def.json
  2287. msgctxt "speed_slowdown_layers label"
  2288. msgid "Number of Slower Layers"
  2289. msgstr "较慢层的数量"
  2290. #: fdmprinter.def.json
  2291. msgctxt "extruders_enabled_count description"
  2292. msgid "Number of extruder trains that are enabled; automatically set in software"
  2293. msgstr "已启用的挤出机组数目;软件自动设置"
  2294. #: fdmprinter.def.json
  2295. msgctxt "machine_extruder_count description"
  2296. msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle."
  2297. msgstr "挤出机组数目。 挤出机组是指进料装置、鲍登管和喷嘴的组合。"
  2298. #: fdmprinter.def.json
  2299. msgctxt "wipe_repeat_count description"
  2300. msgid "Number of times to move the nozzle across the brush."
  2301. msgstr "在擦拭刷上移动喷嘴的次数。"
  2302. #: fdmprinter.def.json
  2303. msgctxt "gradual_infill_steps description"
  2304. msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density."
  2305. msgstr "在进入顶部表面以下时,将填充密度减少一半的次数。 越靠近顶面的区域密度越高,最高达到填充密度。"
  2306. #: fdmprinter.def.json
  2307. msgctxt "gradual_support_infill_steps description"
  2308. msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density."
  2309. msgstr "在进入顶层以下时,将支撑填充密度减少一半的次数。 越靠近顶面的区域密度越高,最高达到支撑填充密度。"
  2310. #: fdmprinter.def.json
  2311. msgctxt "infill_pattern option tetrahedral"
  2312. msgid "Octet"
  2313. msgstr "八角形"
  2314. #: fdmprinter.def.json
  2315. msgctxt "retraction_combing option off"
  2316. msgid "Off"
  2317. msgstr "关"
  2318. #: fdmprinter.def.json
  2319. msgctxt "mesh_position_x description"
  2320. msgid "Offset applied to the object in the x direction."
  2321. msgstr "应用在模型 x 方向上的偏移量。"
  2322. #: fdmprinter.def.json
  2323. msgctxt "mesh_position_y description"
  2324. msgid "Offset applied to the object in the y direction."
  2325. msgstr "应用在模型 y 方向上的偏移量。"
  2326. #: fdmprinter.def.json
  2327. msgctxt "mesh_position_z description"
  2328. msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'."
  2329. msgstr "应用在模型 z 方向上的偏移量。 利用此选项,您可以执行过去被称为“模型沉降”的操作。"
  2330. #: fdmprinter.def.json
  2331. msgctxt "machine_use_extruder_offset_to_offset_coords label"
  2332. msgid "Offset with Extruder"
  2333. msgstr "挤出机偏移量"
  2334. #: fdmprinter.def.json
  2335. msgctxt "support_tree_rest_preference option graceful"
  2336. msgid "On Model If Necessary"
  2337. msgstr ""
  2338. #: fdmprinter.def.json
  2339. msgctxt "print_sequence option one_at_a_time"
  2340. msgid "One at a Time"
  2341. msgstr "排队打印"
  2342. #: fdmprinter.def.json
  2343. msgctxt "retraction_hop_only_when_collides description"
  2344. msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling."
  2345. msgstr "仅在移动到无法通过“空驶时避开已打印部分”选项的水平操作避开的已打印部分上方时执行 Z 抬升。"
  2346. #: fdmprinter.def.json
  2347. msgctxt "ironing_only_highest_layer description"
  2348. msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish."
  2349. msgstr "仅在网格的最后一层执行熨平。 如果较低的层不需要平滑的表面效果,这将节省时间。"
  2350. #: fdmprinter.def.json
  2351. msgctxt "brim_outside_only description"
  2352. msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much."
  2353. msgstr "仅在模型外部打印 brim。 这会减少您之后需要移除的 brim 量,而不会过度影响热床附着。"
  2354. #: fdmprinter.def.json
  2355. msgctxt "ooze_shield_angle label"
  2356. msgid "Ooze Shield Angle"
  2357. msgstr "渗出罩角度"
  2358. #: fdmprinter.def.json
  2359. msgctxt "ooze_shield_dist label"
  2360. msgid "Ooze Shield Distance"
  2361. msgstr "渗出罩距离"
  2362. #: fdmprinter.def.json
  2363. msgctxt "support_tree_branch_reach_limit label"
  2364. msgid "Optimal Branch Range"
  2365. msgstr ""
  2366. #: fdmprinter.def.json
  2367. msgctxt "optimize_wall_printing_order label"
  2368. msgid "Optimize Wall Printing Order"
  2369. msgstr "优化壁打印顺序"
  2370. #: fdmprinter.def.json
  2371. msgctxt "optimize_wall_printing_order description"
  2372. msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type."
  2373. msgstr "优化墙壁印刷的顺序,以减少回撤的数量和旅行的距离。大多数部件会从启用这个功能中受益,但有些可能会花费更长的时间,所以请将打印时间估算与不优化进行比较。第一层在选择边缘作为构建板附着力类型时没有进行优化。"
  2374. #: fdmprinter.def.json
  2375. msgctxt "machine_nozzle_tip_outer_diameter label"
  2376. msgid "Outer Nozzle Diameter"
  2377. msgstr "喷嘴外径"
  2378. #: fdmprinter.def.json
  2379. msgctxt "acceleration_wall_0 label"
  2380. msgid "Outer Wall Acceleration"
  2381. msgstr "外壁加速度"
  2382. #: fdmprinter.def.json
  2383. msgctxt "wall_0_extruder_nr label"
  2384. msgid "Outer Wall Extruder"
  2385. msgstr "外壁挤出机"
  2386. #: fdmprinter.def.json
  2387. msgctxt "wall_0_material_flow label"
  2388. msgid "Outer Wall Flow"
  2389. msgstr "外壁流量"
  2390. #: fdmprinter.def.json
  2391. msgctxt "wall_0_inset label"
  2392. msgid "Outer Wall Inset"
  2393. msgstr "外壁嵌入"
  2394. #: fdmprinter.def.json
  2395. msgctxt "jerk_wall_0 label"
  2396. msgid "Outer Wall Jerk"
  2397. msgstr "外壁抖动速度"
  2398. #: fdmprinter.def.json
  2399. msgctxt "wall_line_width_0 label"
  2400. msgid "Outer Wall Line Width"
  2401. msgstr "走线宽度(外壁)"
  2402. #: fdmprinter.def.json
  2403. msgctxt "speed_wall_0 label"
  2404. msgid "Outer Wall Speed"
  2405. msgstr "速度(外壁)"
  2406. #: fdmprinter.def.json
  2407. msgctxt "wall_0_wipe_dist label"
  2408. msgid "Outer Wall Wipe Distance"
  2409. msgstr "外壁擦嘴长度"
  2410. #: fdmprinter.def.json
  2411. msgctxt "inset_direction option outside_in"
  2412. msgid "Outside To Inside"
  2413. msgstr "从外到内"
  2414. #: fdmprinter.def.json
  2415. msgctxt "wall_overhang_angle label"
  2416. msgid "Overhanging Wall Angle"
  2417. msgstr "悬垂壁角度"
  2418. #: fdmprinter.def.json
  2419. msgctxt "wall_overhang_speed_factor label"
  2420. msgid "Overhanging Wall Speed"
  2421. msgstr "悬垂壁速度"
  2422. #: fdmprinter.def.json
  2423. msgctxt "wall_overhang_speed_factor description"
  2424. msgid "Overhanging walls will be printed at this percentage of their normal print speed."
  2425. msgstr "悬垂壁将以其正常打印速度的此百分比打印。"
  2426. #: fdmprinter.def.json
  2427. msgctxt "wipe_pause description"
  2428. msgid "Pause after the unretract."
  2429. msgstr "在未回抽后暂停。"
  2430. #: fdmprinter.def.json
  2431. msgctxt "bridge_fan_speed description"
  2432. msgid "Percentage fan speed to use when printing bridge walls and skin."
  2433. msgstr "打印连桥表面和桥壁时使用的风扇百分比速度。"
  2434. #: fdmprinter.def.json
  2435. msgctxt "bridge_fan_speed_2 description"
  2436. msgid "Percentage fan speed to use when printing the second bridge skin layer."
  2437. msgstr "打印桥梁第二层表面时使用的风扇百分比速度。"
  2438. #: fdmprinter.def.json
  2439. msgctxt "support_supported_skin_fan_speed description"
  2440. msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove."
  2441. msgstr "打印支撑正上方表面区域时使用的风扇百分比速度。使用高风扇速度可能使支撑更容易移除。"
  2442. #: fdmprinter.def.json
  2443. msgctxt "bridge_fan_speed_3 description"
  2444. msgid "Percentage fan speed to use when printing the third bridge skin layer."
  2445. msgstr "打印桥梁第三层表面时使用的风扇百分比速度。"
  2446. #: fdmprinter.def.json
  2447. msgctxt "minimum_polygon_circumference description"
  2448. msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details."
  2449. msgstr "切片层中周长小于此数值的多边形将被滤除。以切片时间为代价,较低的值可实现较高分辨率的网格。它主要用于高分辨率 SLA 打印机和包含大量细节的极小 3D 模型。"
  2450. #: fdmprinter.def.json
  2451. msgctxt "support_tree_angle_slow label"
  2452. msgid "Preferred Branch Angle"
  2453. msgstr ""
  2454. #: fdmprinter.def.json
  2455. msgctxt "wall_transition_filter_deviation description"
  2456. msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems."
  2457. msgstr "防止在多一个壁和少一个壁之间来回过渡。此边距扩展走线宽度的范围,介于 [最小壁走线宽度 - 边距,2 * 最小壁走线宽度 + 边距] 之间。增加此边距将减少过渡数量,从而减少挤出启动/停止次数和行程时间。但是,较大的走线宽度变化会导致挤出不足或挤出过多的问题。"
  2458. #: fdmprinter.def.json
  2459. msgctxt "acceleration_prime_tower label"
  2460. msgid "Prime Tower Acceleration"
  2461. msgstr "装填塔加速度"
  2462. #: fdmprinter.def.json
  2463. msgctxt "prime_tower_brim_enable label"
  2464. msgid "Prime Tower Brim"
  2465. msgstr "装填塔 Brim"
  2466. #: fdmprinter.def.json
  2467. msgctxt "prime_tower_flow label"
  2468. msgid "Prime Tower Flow"
  2469. msgstr "装填塔流量"
  2470. #: fdmprinter.def.json
  2471. msgctxt "jerk_prime_tower label"
  2472. msgid "Prime Tower Jerk"
  2473. msgstr "装填塔抖动速度"
  2474. #: fdmprinter.def.json
  2475. msgctxt "prime_tower_line_width label"
  2476. msgid "Prime Tower Line Width"
  2477. msgstr "装填塔走线宽度"
  2478. #: fdmprinter.def.json
  2479. msgctxt "prime_tower_min_volume label"
  2480. msgid "Prime Tower Minimum Volume"
  2481. msgstr "装填塔最小体积"
  2482. #: fdmprinter.def.json
  2483. msgctxt "prime_tower_size label"
  2484. msgid "Prime Tower Size"
  2485. msgstr "装填塔尺寸"
  2486. #: fdmprinter.def.json
  2487. msgctxt "speed_prime_tower label"
  2488. msgid "Prime Tower Speed"
  2489. msgstr "装填塔速度"
  2490. #: fdmprinter.def.json
  2491. msgctxt "prime_tower_position_x label"
  2492. msgid "Prime Tower X Position"
  2493. msgstr "装填塔 X 位置"
  2494. #: fdmprinter.def.json
  2495. msgctxt "prime_tower_position_y label"
  2496. msgid "Prime Tower Y Position"
  2497. msgstr "装填塔 Y 位置"
  2498. #: fdmprinter.def.json
  2499. msgctxt "prime_tower_brim_enable description"
  2500. msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type."
  2501. msgstr "装填塔可能需要 Brim 提供额外附着力,无论模型是否需要。目前不可与 'Raft' 附着类型配合使用。"
  2502. #: fdmprinter.def.json
  2503. msgctxt "acceleration_print label"
  2504. msgid "Print Acceleration"
  2505. msgstr "打印加速度"
  2506. #: fdmprinter.def.json
  2507. msgctxt "jerk_print label"
  2508. msgid "Print Jerk"
  2509. msgstr "打印抖动速度"
  2510. #: fdmprinter.def.json
  2511. msgctxt "print_sequence label"
  2512. msgid "Print Sequence"
  2513. msgstr "打印序列"
  2514. #: fdmprinter.def.json
  2515. msgctxt "speed_print label"
  2516. msgid "Print Speed"
  2517. msgstr "打印速度"
  2518. #: fdmprinter.def.json
  2519. msgctxt "fill_outline_gaps label"
  2520. msgid "Print Thin Walls"
  2521. msgstr "打印薄壁"
  2522. #: fdmprinter.def.json
  2523. msgctxt "prime_tower_enable description"
  2524. msgid "Print a tower next to the print which serves to prime the material after each nozzle switch."
  2525. msgstr "在打印品相邻处打印一个塔,用于在每个喷嘴切换后装填材料。"
  2526. #: fdmprinter.def.json
  2527. msgctxt "infill_support_enabled description"
  2528. msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength."
  2529. msgstr "只在模型的顶部支持打印填充结构。这样可以减少打印时间和材料的使用,但是会导致不一致的对象强度。"
  2530. #: fdmprinter.def.json
  2531. msgctxt "ironing_monotonic description"
  2532. msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
  2533. msgstr "按照一定的顺序打印熨平走线,使它们始终在一个方向上与相邻的走线重叠。这需要更长一些的打印时间,但会使平面看起来更一致。"
  2534. #: fdmprinter.def.json
  2535. msgctxt "mold_enabled description"
  2536. msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate."
  2537. msgstr "将模型作为模具打印,可进行铸造,以便获取与打印平台上的模型类似的模型。"
  2538. #: fdmprinter.def.json
  2539. msgctxt "fill_outline_gaps description"
  2540. msgid "Print pieces of the model which are horizontally thinner than the nozzle size."
  2541. msgstr "打印在水平面上比喷嘴尺寸更薄的模型部件。"
  2542. #: fdmprinter.def.json
  2543. msgctxt "bridge_skin_speed_2 description"
  2544. msgid "Print speed to use when printing the second bridge skin layer."
  2545. msgstr "打印桥梁第二层表面时使用的打印速度。"
  2546. #: fdmprinter.def.json
  2547. msgctxt "bridge_skin_speed_3 description"
  2548. msgid "Print speed to use when printing the third bridge skin layer."
  2549. msgstr "打印桥梁第三层表面时使用的打印速度。"
  2550. #: fdmprinter.def.json
  2551. msgctxt "infill_before_walls description"
  2552. msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface."
  2553. msgstr "打印壁前先打印填充物。 先打印壁可能产生更精确的壁,但悬垂打印质量会较差。 先打印填充会产生更牢固的壁,但有时候填充图案会透过表面显现出来。"
  2554. #: fdmprinter.def.json
  2555. msgctxt "roofing_monotonic description"
  2556. msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
  2557. msgstr "按照一定的顺序打印顶部表面走线,使它们始终在一个方向上与相邻的走线重叠。这需要更长一些的打印时间,但会使平面看起来更一致。"
  2558. #: fdmprinter.def.json
  2559. msgctxt "skin_monotonic description"
  2560. msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
  2561. msgstr "按照一定的顺序打印顶部/底部走线,使它们始终在一个方向上与相邻的走线重叠。这需要更长一些的打印时间,但会使平面看起来更一致。"
  2562. #: fdmprinter.def.json
  2563. msgctxt "material_print_temperature label"
  2564. msgid "Printing Temperature"
  2565. msgstr "打印温度"
  2566. #: fdmprinter.def.json
  2567. msgctxt "material_print_temperature_layer_0 label"
  2568. msgid "Printing Temperature Initial Layer"
  2569. msgstr "打印温度起始层"
  2570. #: fdmprinter.def.json
  2571. msgctxt "skirt_height description"
  2572. msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt."
  2573. msgstr ""
  2574. #: fdmprinter.def.json
  2575. msgctxt "alternate_extra_perimeter description"
  2576. msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
  2577. msgstr "每隔一层打印一个额外的壁。 通过这种方法,填充物会卡在这些额外的壁之间,从而产生更强韧的打印质量。"
  2578. #: fdmprinter.def.json
  2579. msgctxt "resolution label"
  2580. msgid "Quality"
  2581. msgstr "质量"
  2582. #: fdmprinter.def.json
  2583. msgctxt "infill_pattern option quarter_cubic"
  2584. msgid "Quarter Cubic"
  2585. msgstr "四面体"
  2586. #: fdmprinter.def.json
  2587. msgctxt "adhesion_type option raft"
  2588. msgid "Raft"
  2589. msgstr "Raft"
  2590. #: fdmprinter.def.json
  2591. msgctxt "raft_airgap label"
  2592. msgid "Raft Air Gap"
  2593. msgstr "Raft 空隙"
  2594. #: fdmprinter.def.json
  2595. msgctxt "raft_base_extruder_nr label"
  2596. msgid "Raft Base Extruder"
  2597. msgstr "Raft 底层挤出器"
  2598. #: fdmprinter.def.json
  2599. msgctxt "raft_base_fan_speed label"
  2600. msgid "Raft Base Fan Speed"
  2601. msgstr "Raft 基础风扇速度"
  2602. #: fdmprinter.def.json
  2603. msgctxt "raft_base_line_spacing label"
  2604. msgid "Raft Base Line Spacing"
  2605. msgstr "Raft 基础走线间距"
  2606. #: fdmprinter.def.json
  2607. msgctxt "raft_base_line_width label"
  2608. msgid "Raft Base Line Width"
  2609. msgstr "Raft 基础走线宽度"
  2610. #: fdmprinter.def.json
  2611. msgctxt "raft_base_acceleration label"
  2612. msgid "Raft Base Print Acceleration"
  2613. msgstr "Raft 基础打印加速度"
  2614. #: fdmprinter.def.json
  2615. msgctxt "raft_base_jerk label"
  2616. msgid "Raft Base Print Jerk"
  2617. msgstr "Raft 基础打印抖动速度"
  2618. #: fdmprinter.def.json
  2619. msgctxt "raft_base_speed label"
  2620. msgid "Raft Base Print Speed"
  2621. msgstr "Raft 基础打印速度"
  2622. #: fdmprinter.def.json
  2623. msgctxt "raft_base_thickness label"
  2624. msgid "Raft Base Thickness"
  2625. msgstr "Raft 基础厚度"
  2626. #: fdmprinter.def.json
  2627. msgctxt "raft_base_wall_count label"
  2628. msgid "Raft Base Wall Count"
  2629. msgstr "Raft 底板壁数"
  2630. #: fdmprinter.def.json
  2631. msgctxt "raft_margin label"
  2632. msgid "Raft Extra Margin"
  2633. msgstr "Raft 留白"
  2634. #: fdmprinter.def.json
  2635. msgctxt "raft_fan_speed label"
  2636. msgid "Raft Fan Speed"
  2637. msgstr "Raft 风扇速度"
  2638. #: fdmprinter.def.json
  2639. msgctxt "raft_interface_extruder_nr label"
  2640. msgid "Raft Middle Extruder"
  2641. msgstr "Raft 中间挤出器"
  2642. #: fdmprinter.def.json
  2643. msgctxt "raft_interface_fan_speed label"
  2644. msgid "Raft Middle Fan Speed"
  2645. msgstr "Raft 中间风扇速度"
  2646. #: fdmprinter.def.json
  2647. msgctxt "raft_interface_layers label"
  2648. msgid "Raft Middle Layers"
  2649. msgstr "Raft 中间层"
  2650. #: fdmprinter.def.json
  2651. msgctxt "raft_interface_line_width label"
  2652. msgid "Raft Middle Line Width"
  2653. msgstr "Raft 中间线宽度"
  2654. #: fdmprinter.def.json
  2655. msgctxt "raft_interface_acceleration label"
  2656. msgid "Raft Middle Print Acceleration"
  2657. msgstr "Raft 中间打印加速度"
  2658. #: fdmprinter.def.json
  2659. msgctxt "raft_interface_jerk label"
  2660. msgid "Raft Middle Print Jerk"
  2661. msgstr "Raft 中间打印抖动速度"
  2662. #: fdmprinter.def.json
  2663. msgctxt "raft_interface_speed label"
  2664. msgid "Raft Middle Print Speed"
  2665. msgstr "Raft 中间打印速度"
  2666. #: fdmprinter.def.json
  2667. msgctxt "raft_interface_line_spacing label"
  2668. msgid "Raft Middle Spacing"
  2669. msgstr "Raft 中间间距"
  2670. #: fdmprinter.def.json
  2671. msgctxt "raft_interface_thickness label"
  2672. msgid "Raft Middle Thickness"
  2673. msgstr "Raft 中间厚度"
  2674. #: fdmprinter.def.json
  2675. msgctxt "raft_acceleration label"
  2676. msgid "Raft Print Acceleration"
  2677. msgstr "Raft 打印加速度"
  2678. #: fdmprinter.def.json
  2679. msgctxt "raft_jerk label"
  2680. msgid "Raft Print Jerk"
  2681. msgstr "Raft 打印抖动速度"
  2682. #: fdmprinter.def.json
  2683. msgctxt "raft_speed label"
  2684. msgid "Raft Print Speed"
  2685. msgstr "Raft 打印速度"
  2686. #: fdmprinter.def.json
  2687. msgctxt "raft_smoothing label"
  2688. msgid "Raft Smoothing"
  2689. msgstr "Raft 平滑度"
  2690. #: fdmprinter.def.json
  2691. msgctxt "raft_surface_extruder_nr label"
  2692. msgid "Raft Top Extruder"
  2693. msgstr "Raft 顶层挤出器"
  2694. #: fdmprinter.def.json
  2695. msgctxt "raft_surface_fan_speed label"
  2696. msgid "Raft Top Fan Speed"
  2697. msgstr "Raft 顶部风扇速度"
  2698. #: fdmprinter.def.json
  2699. msgctxt "raft_surface_thickness label"
  2700. msgid "Raft Top Layer Thickness"
  2701. msgstr "Raft 顶层厚度"
  2702. #: fdmprinter.def.json
  2703. msgctxt "raft_surface_layers label"
  2704. msgid "Raft Top Layers"
  2705. msgstr "Raft 顶层"
  2706. #: fdmprinter.def.json
  2707. msgctxt "raft_surface_line_width label"
  2708. msgid "Raft Top Line Width"
  2709. msgstr "Raft 顶线宽度"
  2710. #: fdmprinter.def.json
  2711. msgctxt "raft_surface_acceleration label"
  2712. msgid "Raft Top Print Acceleration"
  2713. msgstr "Raft 顶部打印加速度"
  2714. #: fdmprinter.def.json
  2715. msgctxt "raft_surface_jerk label"
  2716. msgid "Raft Top Print Jerk"
  2717. msgstr "Raft 顶部打印抖动速度"
  2718. #: fdmprinter.def.json
  2719. msgctxt "raft_surface_speed label"
  2720. msgid "Raft Top Print Speed"
  2721. msgstr "Raft 顶部打印速度"
  2722. #: fdmprinter.def.json
  2723. msgctxt "raft_surface_line_spacing label"
  2724. msgid "Raft Top Spacing"
  2725. msgstr "Raft 顶部间距"
  2726. #: fdmprinter.def.json
  2727. msgctxt "z_seam_type option random"
  2728. msgid "Random"
  2729. msgstr "随机"
  2730. #: fdmprinter.def.json
  2731. msgctxt "infill_randomize_start_location label"
  2732. msgid "Randomize Infill Start"
  2733. msgstr "开始随机化填充"
  2734. #: fdmprinter.def.json
  2735. msgctxt "infill_randomize_start_location description"
  2736. msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move."
  2737. msgstr "先随机化打印哪条填充线。这可以防止一个部分变强,但会导致一次额外的空驶。"
  2738. #: fdmprinter.def.json
  2739. msgctxt "magic_fuzzy_skin_enabled description"
  2740. msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look."
  2741. msgstr "在打印外墙时随机抖动,使表面具有粗糙和模糊的外观。"
  2742. #: fdmprinter.def.json
  2743. msgctxt "machine_shape option rectangular"
  2744. msgid "Rectangular"
  2745. msgstr "矩形"
  2746. #: fdmprinter.def.json
  2747. msgctxt "cool_fan_speed_min label"
  2748. msgid "Regular Fan Speed"
  2749. msgstr "正常风扇速度"
  2750. #: fdmprinter.def.json
  2751. msgctxt "cool_fan_full_at_height label"
  2752. msgid "Regular Fan Speed at Height"
  2753. msgstr "正常风扇速度(高度)"
  2754. #: fdmprinter.def.json
  2755. msgctxt "cool_fan_full_layer label"
  2756. msgid "Regular Fan Speed at Layer"
  2757. msgstr "正常风扇速度(层)"
  2758. #: fdmprinter.def.json
  2759. msgctxt "cool_min_layer_time_fan_speed_max label"
  2760. msgid "Regular/Maximum Fan Speed Threshold"
  2761. msgstr "正常/最大风扇速度阈值"
  2762. #: fdmprinter.def.json
  2763. msgctxt "relative_extrusion label"
  2764. msgid "Relative Extrusion"
  2765. msgstr "相对挤出"
  2766. #: fdmprinter.def.json
  2767. msgctxt "meshfix_union_all_remove_holes label"
  2768. msgid "Remove All Holes"
  2769. msgstr "移除所有孔洞"
  2770. #: fdmprinter.def.json
  2771. msgctxt "remove_empty_first_layers label"
  2772. msgid "Remove Empty First Layers"
  2773. msgstr "移除空白第一层"
  2774. #: fdmprinter.def.json
  2775. msgctxt "carve_multiple_volumes label"
  2776. msgid "Remove Mesh Intersection"
  2777. msgstr "移除网格交叉"
  2778. #: fdmprinter.def.json
  2779. msgctxt "raft_remove_inside_corners label"
  2780. msgid "Remove Raft Inside Corners"
  2781. msgstr "移除 Raft 内侧角"
  2782. #: fdmprinter.def.json
  2783. msgctxt "carve_multiple_volumes description"
  2784. msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other."
  2785. msgstr "移除多个网格互相重叠的区域。 如果合并的双材料模型彼此重叠,此选项可能适用。"
  2786. #: fdmprinter.def.json
  2787. msgctxt "remove_empty_first_layers description"
  2788. msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle."
  2789. msgstr "移除第一个打印层下方的空白层(如果存在)。如果“切片公差”设置被设为“独占”或“中间”,禁用此设置可能导致空白第一层。"
  2790. #: fdmprinter.def.json
  2791. msgctxt "raft_remove_inside_corners description"
  2792. msgid "Remove inside corners from the raft, causing the raft to become convex."
  2793. msgstr "从 Raft 上移除内侧角,这会使 Raft 变得凸出。"
  2794. #: fdmprinter.def.json
  2795. msgctxt "meshfix_union_all_remove_holes description"
  2796. msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below."
  2797. msgstr "移除每层的孔洞,仅保留外部形状。 这会忽略任何不可见的内部几何。 但是,也会忽略可从上方或下方看到的层孔洞。"
  2798. #: fdmprinter.def.json
  2799. msgctxt "machine_gcode_flavor option RepRap (RepRap)"
  2800. msgid "RepRap"
  2801. msgstr "RepRap"
  2802. #: fdmprinter.def.json
  2803. msgctxt "machine_gcode_flavor option Repetier"
  2804. msgid "Repetier"
  2805. msgstr "Repetier"
  2806. #: fdmprinter.def.json
  2807. msgctxt "skin_outline_count description"
  2808. msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material."
  2809. msgstr "用多个同心线代替顶部/底部图案的最外面部分。 使用一条或两条线改善从填充材料开始的顶板。"
  2810. #: fdmprinter.def.json
  2811. msgctxt "support_tree_rest_preference label"
  2812. msgid "Rest Preference"
  2813. msgstr ""
  2814. #: fdmprinter.def.json
  2815. msgctxt "travel_retract_before_outer_wall label"
  2816. msgid "Retract Before Outer Wall"
  2817. msgstr "在外壁前回抽"
  2818. #: fdmprinter.def.json
  2819. msgctxt "retract_at_layer_change label"
  2820. msgid "Retract at Layer Change"
  2821. msgstr "层变化时回抽"
  2822. #: fdmprinter.def.json
  2823. msgctxt "retraction_enable description"
  2824. msgid "Retract the filament when the nozzle is moving over a non-printed area."
  2825. msgstr "当喷嘴移动到非打印区域上方时回抽耗材。"
  2826. #: fdmprinter.def.json
  2827. msgctxt "wipe_retraction_enable description"
  2828. msgid "Retract the filament when the nozzle is moving over a non-printed area."
  2829. msgstr "当喷嘴移动到非打印区域上方时回抽耗材。"
  2830. #: fdmprinter.def.json
  2831. msgctxt "retract_at_layer_change description"
  2832. msgid "Retract the filament when the nozzle is moving to the next layer."
  2833. msgstr "当喷嘴移动到下一层时回抽耗材。"
  2834. #: fdmprinter.def.json
  2835. msgctxt "retraction_amount label"
  2836. msgid "Retraction Distance"
  2837. msgstr "回抽距离"
  2838. #: fdmprinter.def.json
  2839. msgctxt "retraction_extra_prime_amount label"
  2840. msgid "Retraction Extra Prime Amount"
  2841. msgstr "回抽额外装填量"
  2842. #: fdmprinter.def.json
  2843. msgctxt "retraction_min_travel label"
  2844. msgid "Retraction Minimum Travel"
  2845. msgstr "回抽最小空驶"
  2846. #: fdmprinter.def.json
  2847. msgctxt "retraction_prime_speed label"
  2848. msgid "Retraction Prime Speed"
  2849. msgstr "回抽装填速度"
  2850. #: fdmprinter.def.json
  2851. msgctxt "retraction_retract_speed label"
  2852. msgid "Retraction Retract Speed"
  2853. msgstr "回抽速度"
  2854. #: fdmprinter.def.json
  2855. msgctxt "retraction_speed label"
  2856. msgid "Retraction Speed"
  2857. msgstr "回抽速度"
  2858. #: fdmprinter.def.json
  2859. msgctxt "z_seam_position option right"
  2860. msgid "Right"
  2861. msgstr "右侧"
  2862. #: fdmprinter.def.json
  2863. msgctxt "machine_scale_fan_speed_zero_to_one label"
  2864. msgid "Scale Fan Speed To 0-1"
  2865. msgstr "在 0 到 1 范围内设置风扇速度"
  2866. #: fdmprinter.def.json
  2867. msgctxt "machine_scale_fan_speed_zero_to_one description"
  2868. msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256."
  2869. msgstr "在 0 到 1 范围内设置风扇速度,而不是 0 到 256 之间。"
  2870. #: fdmprinter.def.json
  2871. msgctxt "material_shrinkage_percentage label"
  2872. msgid "Scaling Factor Shrinkage Compensation"
  2873. msgstr "缩放因子收缩补偿"
  2874. #: fdmprinter.def.json
  2875. msgctxt "support_meshes_present label"
  2876. msgid "Scene Has Support Meshes"
  2877. msgstr "场景具有支撑网格"
  2878. #: fdmprinter.def.json
  2879. msgctxt "z_seam_corner label"
  2880. msgid "Seam Corner Preference"
  2881. msgstr "缝隙角偏好设置"
  2882. #: fdmprinter.def.json
  2883. msgctxt "draft_shield_height_limitation description"
  2884. msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height."
  2885. msgstr "设置防风罩的高度。 选择在模型的完整高度或有限高度处打印防风罩。"
  2886. #: fdmprinter.def.json
  2887. msgctxt "dual description"
  2888. msgid "Settings used for printing with multiple extruders."
  2889. msgstr "利用多个挤出机进行打印所用的设置。"
  2890. #: fdmprinter.def.json
  2891. msgctxt "command_line_settings description"
  2892. msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend."
  2893. msgstr "未从 Cura 前端调用 CuraEngine 时使用的设置。"
  2894. #: fdmprinter.def.json
  2895. msgctxt "machine_extruders_shared_nozzle_initial_retraction label"
  2896. msgid "Shared Nozzle Initial Retraction"
  2897. msgstr "共用喷嘴初始缩回"
  2898. #: fdmprinter.def.json
  2899. msgctxt "z_seam_type option sharpest_corner"
  2900. msgid "Sharpest Corner"
  2901. msgstr "最尖角"
  2902. #: fdmprinter.def.json
  2903. msgctxt "shell description"
  2904. msgid "Shell"
  2905. msgstr "外壳"
  2906. #: fdmprinter.def.json
  2907. msgctxt "z_seam_type option shortest"
  2908. msgid "Shortest"
  2909. msgstr "最短"
  2910. #: fdmprinter.def.json
  2911. msgctxt "machine_show_variants label"
  2912. msgid "Show Machine Variants"
  2913. msgstr "显示打印机变体"
  2914. #: fdmprinter.def.json
  2915. msgctxt "skin_edge_support_layers label"
  2916. msgid "Skin Edge Support Layers"
  2917. msgstr "皮肤边缘支撑层数"
  2918. #: fdmprinter.def.json
  2919. msgctxt "skin_edge_support_thickness label"
  2920. msgid "Skin Edge Support Thickness"
  2921. msgstr "皮肤边缘支撑厚度"
  2922. #: fdmprinter.def.json
  2923. msgctxt "expand_skins_expand_distance label"
  2924. msgid "Skin Expand Distance"
  2925. msgstr "皮肤扩展距离"
  2926. #: fdmprinter.def.json
  2927. msgctxt "skin_overlap_mm label"
  2928. msgid "Skin Overlap"
  2929. msgstr "皮肤重叠"
  2930. #: fdmprinter.def.json
  2931. msgctxt "skin_overlap label"
  2932. msgid "Skin Overlap Percentage"
  2933. msgstr "皮肤重叠百分比"
  2934. #: fdmprinter.def.json
  2935. msgctxt "skin_preshrink label"
  2936. msgid "Skin Removal Width"
  2937. msgstr "肤移除宽度"
  2938. #: fdmprinter.def.json
  2939. msgctxt "min_skin_width_for_expansion description"
  2940. msgid "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical."
  2941. msgstr "如果皮肤区域宽度小于此值,则不会扩展。 这会避免扩展在模型表面的坡度接近垂直时所形成的狭窄皮肤区域。"
  2942. #: fdmprinter.def.json
  2943. msgctxt "support_zag_skip_count description"
  2944. msgid "Skip one in every N connection lines to make the support structure easier to break away."
  2945. msgstr "每隔 N 个连接线跳过一个连接,让支撑结构更容易脱离。"
  2946. #: fdmprinter.def.json
  2947. msgctxt "support_skip_some_zags description"
  2948. msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern."
  2949. msgstr "跳过部分支撑线连接,让支撑结构更容易脱离。 此设置适用于锯齿形支撑结构填充图案。"
  2950. #: fdmprinter.def.json
  2951. msgctxt "adhesion_type option skirt"
  2952. msgid "Skirt"
  2953. msgstr "Skirt"
  2954. #: fdmprinter.def.json
  2955. msgctxt "skirt_gap label"
  2956. msgid "Skirt Distance"
  2957. msgstr "Skirt 距离"
  2958. #: fdmprinter.def.json
  2959. msgctxt "skirt_height label"
  2960. msgid "Skirt Height"
  2961. msgstr ""
  2962. #: fdmprinter.def.json
  2963. msgctxt "skirt_line_count label"
  2964. msgid "Skirt Line Count"
  2965. msgstr "Skirt 走线计数"
  2966. #: fdmprinter.def.json
  2967. msgctxt "acceleration_skirt_brim label"
  2968. msgid "Skirt/Brim Acceleration"
  2969. msgstr "Skirt/Brim 加速度"
  2970. #: fdmprinter.def.json
  2971. msgctxt "skirt_brim_extruder_nr label"
  2972. msgid "Skirt/Brim Extruder"
  2973. msgstr "Skirt/Brim 挤出器"
  2974. #: fdmprinter.def.json
  2975. msgctxt "skirt_brim_material_flow label"
  2976. msgid "Skirt/Brim Flow"
  2977. msgstr "裙边/边缘流量"
  2978. #: fdmprinter.def.json
  2979. msgctxt "jerk_skirt_brim label"
  2980. msgid "Skirt/Brim Jerk"
  2981. msgstr "Skirt/Brim 抖动速度"
  2982. #: fdmprinter.def.json
  2983. msgctxt "skirt_brim_line_width label"
  2984. msgid "Skirt/Brim Line Width"
  2985. msgstr "走线宽度(Skirt / Brim)"
  2986. #: fdmprinter.def.json
  2987. msgctxt "skirt_brim_minimal_length label"
  2988. msgid "Skirt/Brim Minimum Length"
  2989. msgstr "Skirt/Brim 最小长度"
  2990. #: fdmprinter.def.json
  2991. msgctxt "skirt_brim_speed label"
  2992. msgid "Skirt/Brim Speed"
  2993. msgstr "Skirt/Brim 速度"
  2994. #: fdmprinter.def.json
  2995. msgctxt "slicing_tolerance label"
  2996. msgid "Slicing Tolerance"
  2997. msgstr "切片公差"
  2998. #: fdmprinter.def.json
  2999. msgctxt "small_feature_speed_factor_0 label"
  3000. msgid "Small Feature Initial Layer Speed"
  3001. msgstr "微小特征初始层速度"
  3002. #: fdmprinter.def.json
  3003. msgctxt "small_feature_max_length label"
  3004. msgid "Small Feature Max Length"
  3005. msgstr "微小特征最大长度"
  3006. #: fdmprinter.def.json
  3007. msgctxt "small_feature_speed_factor label"
  3008. msgid "Small Feature Speed"
  3009. msgstr "微小特征速度"
  3010. #: fdmprinter.def.json
  3011. msgctxt "small_hole_max_size label"
  3012. msgid "Small Hole Max Size"
  3013. msgstr "小孔最大尺寸"
  3014. #: fdmprinter.def.json
  3015. msgctxt "cool_min_temperature label"
  3016. msgid "Small Layer Printing Temperature"
  3017. msgstr "小型层打印温度"
  3018. #: fdmprinter.def.json
  3019. msgctxt "small_skin_width label"
  3020. msgid "Small Top/Bottom Width"
  3021. msgstr ""
  3022. #: fdmprinter.def.json
  3023. msgctxt "small_feature_speed_factor_0 description"
  3024. msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
  3025. msgstr "第一层的微小特征将按正常打印速度的百分比进行打印。缓慢打印有助于粘合和提高准确性。"
  3026. #: fdmprinter.def.json
  3027. msgctxt "small_feature_speed_factor description"
  3028. msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
  3029. msgstr "微小特征将按正常打印速度的百分比进行打印。缓慢打印有助于粘合和提高准确性。"
  3030. #: fdmprinter.def.json
  3031. msgctxt "small_skin_width description"
  3032. msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions."
  3033. msgstr ""
  3034. #: fdmprinter.def.json
  3035. msgctxt "brim_smart_ordering label"
  3036. msgid "Smart Brim"
  3037. msgstr ""
  3038. #: fdmprinter.def.json
  3039. msgctxt "z_seam_corner option z_seam_corner_weighted"
  3040. msgid "Smart Hiding"
  3041. msgstr "智能隐藏"
  3042. #: fdmprinter.def.json
  3043. msgctxt "smooth_spiralized_contours label"
  3044. msgid "Smooth Spiralized Contours"
  3045. msgstr "平滑螺旋轮廓"
  3046. #: fdmprinter.def.json
  3047. msgctxt "smooth_spiralized_contours description"
  3048. msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details."
  3049. msgstr "平滑螺旋轮廓以减少 Z 缝的可见性(Z 缝于打印品上几乎不可见,但在层视图中仍然可见)。注意:平滑操作将模糊精细的表面细节。"
  3050. #: fdmprinter.def.json
  3051. msgctxt "retraction_extra_prime_amount description"
  3052. msgid "Some material can ooze away during a travel move, which can be compensated for here."
  3053. msgstr "有些材料可能会在空驶过程中渗出,可以在这里对其进行补偿。"
  3054. #: fdmprinter.def.json
  3055. msgctxt "wipe_retraction_extra_prime_amount description"
  3056. msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here."
  3057. msgstr "有些材料可能会在擦拭空驶过程中渗出,可以在这里进行补偿。"
  3058. #: fdmprinter.def.json
  3059. msgctxt "blackmagic label"
  3060. msgid "Special Modes"
  3061. msgstr "特殊模式"
  3062. #: fdmprinter.def.json
  3063. msgctxt "speed description"
  3064. msgid "Speed"
  3065. msgstr "速度"
  3066. #: fdmprinter.def.json
  3067. msgctxt "speed label"
  3068. msgid "Speed"
  3069. msgstr "速度"
  3070. #: fdmprinter.def.json
  3071. msgctxt "wipe_hop_speed description"
  3072. msgid "Speed to move the z-axis during the hop."
  3073. msgstr "抬升期间移动 Z 轴的速度。"
  3074. #: fdmprinter.def.json
  3075. msgctxt "magic_spiralize label"
  3076. msgid "Spiralize Outer Contour"
  3077. msgstr "螺旋打印外轮廓"
  3078. #: fdmprinter.def.json
  3079. msgctxt "magic_spiralize description"
  3080. msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part."
  3081. msgstr "螺旋打印实现外部边缘的平滑 Z 移动。 这会在整个打印上建立一个稳定的 Z 增量。 该功能会将一个实心模型转变为具有实体底部的单壁打印。 只有在当每一层仅包含一个部分时才应启用此功能。"
  3082. #: fdmprinter.def.json
  3083. msgctxt "material_standby_temperature label"
  3084. msgid "Standby Temperature"
  3085. msgstr "待机温度"
  3086. #: fdmprinter.def.json
  3087. msgctxt "machine_start_gcode label"
  3088. msgid "Start G-code"
  3089. msgstr "开始 G-code"
  3090. #: fdmprinter.def.json
  3091. msgctxt "z_seam_type description"
  3092. msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker."
  3093. msgstr "一层中每条路径的起点。 当连续多层的路径从相同点开始时,则打印物上会显示一条垂直缝隙。 如果将这些路径靠近一个用户指定的位置对齐,则缝隙最容易移除。 如果随机放置,则路径起点的不精准度将较不明显。 采用最短的路径时,打印将更为快速。"
  3094. #: fdmprinter.def.json
  3095. msgctxt "machine_steps_per_mm_e label"
  3096. msgid "Steps per Millimeter (E)"
  3097. msgstr "每毫米步数 (E)"
  3098. #: fdmprinter.def.json
  3099. msgctxt "machine_steps_per_mm_x label"
  3100. msgid "Steps per Millimeter (X)"
  3101. msgstr "每毫米步数 (X)"
  3102. #: fdmprinter.def.json
  3103. msgctxt "machine_steps_per_mm_y label"
  3104. msgid "Steps per Millimeter (Y)"
  3105. msgstr "每毫米步数 (Y)"
  3106. #: fdmprinter.def.json
  3107. msgctxt "machine_steps_per_mm_z label"
  3108. msgid "Steps per Millimeter (Z)"
  3109. msgstr "每毫米步数 (Z)"
  3110. #: fdmprinter.def.json
  3111. msgctxt "support description"
  3112. msgid "Support"
  3113. msgstr "支撑"
  3114. #: fdmprinter.def.json
  3115. msgctxt "support label"
  3116. msgid "Support"
  3117. msgstr "支撑"
  3118. #: fdmprinter.def.json
  3119. msgctxt "acceleration_support label"
  3120. msgid "Support Acceleration"
  3121. msgstr "支撑加速度"
  3122. #: fdmprinter.def.json
  3123. msgctxt "support_bottom_distance label"
  3124. msgid "Support Bottom Distance"
  3125. msgstr "支撑底部距离"
  3126. #: fdmprinter.def.json
  3127. msgctxt "support_bottom_wall_count label"
  3128. msgid "Support Bottom Wall Line Count"
  3129. msgstr "支撑底层墙线条数"
  3130. #: fdmprinter.def.json
  3131. msgctxt "support_brim_line_count label"
  3132. msgid "Support Brim Line Count"
  3133. msgstr "支撑 Brim 走线次数"
  3134. #: fdmprinter.def.json
  3135. msgctxt "support_brim_width label"
  3136. msgid "Support Brim Width"
  3137. msgstr "支撑 Brim 宽度"
  3138. #: fdmprinter.def.json
  3139. msgctxt "support_zag_skip_count label"
  3140. msgid "Support Chunk Line Count"
  3141. msgstr "支撑块走线数"
  3142. #: fdmprinter.def.json
  3143. msgctxt "support_skip_zag_per_mm label"
  3144. msgid "Support Chunk Size"
  3145. msgstr "支撑块大小"
  3146. #: fdmprinter.def.json
  3147. msgctxt "support_infill_rate label"
  3148. msgid "Support Density"
  3149. msgstr "支撑密度"
  3150. #: fdmprinter.def.json
  3151. msgctxt "support_xy_overrides_z label"
  3152. msgid "Support Distance Priority"
  3153. msgstr "支撑距离优先级"
  3154. #: fdmprinter.def.json
  3155. msgctxt "support_extruder_nr label"
  3156. msgid "Support Extruder"
  3157. msgstr "支撑用挤出机"
  3158. #: fdmprinter.def.json
  3159. msgctxt "acceleration_support_bottom label"
  3160. msgid "Support Floor Acceleration"
  3161. msgstr "支撑底板加速度"
  3162. #: fdmprinter.def.json
  3163. msgctxt "support_bottom_density label"
  3164. msgid "Support Floor Density"
  3165. msgstr "支撑底板密度"
  3166. #: fdmprinter.def.json
  3167. msgctxt "support_bottom_extruder_nr label"
  3168. msgid "Support Floor Extruder"
  3169. msgstr "支撑底板挤出机"
  3170. #: fdmprinter.def.json
  3171. msgctxt "support_bottom_material_flow label"
  3172. msgid "Support Floor Flow"
  3173. msgstr "支撑底板流量"
  3174. #: fdmprinter.def.json
  3175. msgctxt "support_bottom_offset label"
  3176. msgid "Support Floor Horizontal Expansion"
  3177. msgstr "支撑底板水平扩展"
  3178. #: fdmprinter.def.json
  3179. msgctxt "jerk_support_bottom label"
  3180. msgid "Support Floor Jerk"
  3181. msgstr "支撑底板抖动速度"
  3182. #: fdmprinter.def.json
  3183. msgctxt "support_bottom_angles label"
  3184. msgid "Support Floor Line Directions"
  3185. msgstr "支撑底板走线方向"
  3186. #: fdmprinter.def.json
  3187. msgctxt "support_bottom_line_distance label"
  3188. msgid "Support Floor Line Distance"
  3189. msgstr "支撑底板走线距离"
  3190. #: fdmprinter.def.json
  3191. msgctxt "support_bottom_line_width label"
  3192. msgid "Support Floor Line Width"
  3193. msgstr "支撑底板走线宽度"
  3194. #: fdmprinter.def.json
  3195. msgctxt "support_bottom_pattern label"
  3196. msgid "Support Floor Pattern"
  3197. msgstr "支撑底板图案"
  3198. #: fdmprinter.def.json
  3199. msgctxt "speed_support_bottom label"
  3200. msgid "Support Floor Speed"
  3201. msgstr "支撑底板速度"
  3202. #: fdmprinter.def.json
  3203. msgctxt "support_bottom_height label"
  3204. msgid "Support Floor Thickness"
  3205. msgstr "支撑底板厚度"
  3206. #: fdmprinter.def.json
  3207. msgctxt "support_material_flow label"
  3208. msgid "Support Flow"
  3209. msgstr "支撑流量"
  3210. #: fdmprinter.def.json
  3211. msgctxt "support_offset label"
  3212. msgid "Support Horizontal Expansion"
  3213. msgstr "支撑水平扩展"
  3214. #: fdmprinter.def.json
  3215. msgctxt "acceleration_support_infill label"
  3216. msgid "Support Infill Acceleration"
  3217. msgstr "支撑填充加速度"
  3218. #: fdmprinter.def.json
  3219. msgctxt "support_infill_extruder_nr label"
  3220. msgid "Support Infill Extruder"
  3221. msgstr "支撑填充挤出机"
  3222. #: fdmprinter.def.json
  3223. msgctxt "jerk_support_infill label"
  3224. msgid "Support Infill Jerk"
  3225. msgstr "支撑填充抖动速度"
  3226. #: fdmprinter.def.json
  3227. msgctxt "support_infill_sparse_thickness label"
  3228. msgid "Support Infill Layer Thickness"
  3229. msgstr "支撑填充层厚度"
  3230. #: fdmprinter.def.json
  3231. msgctxt "support_infill_angles label"
  3232. msgid "Support Infill Line Directions"
  3233. msgstr "支撑填充走线方向"
  3234. #: fdmprinter.def.json
  3235. msgctxt "speed_support_infill label"
  3236. msgid "Support Infill Speed"
  3237. msgstr "速度(支撑填充)"
  3238. #: fdmprinter.def.json
  3239. msgctxt "acceleration_support_interface label"
  3240. msgid "Support Interface Acceleration"
  3241. msgstr "支撑接触面加速度"
  3242. #: fdmprinter.def.json
  3243. msgctxt "support_interface_density label"
  3244. msgid "Support Interface Density"
  3245. msgstr "支撑接触面密度"
  3246. #: fdmprinter.def.json
  3247. msgctxt "support_interface_extruder_nr label"
  3248. msgid "Support Interface Extruder"
  3249. msgstr "支撑接触面挤出机"
  3250. #: fdmprinter.def.json
  3251. msgctxt "support_interface_material_flow label"
  3252. msgid "Support Interface Flow"
  3253. msgstr "支撑接触面流量"
  3254. #: fdmprinter.def.json
  3255. msgctxt "support_interface_offset label"
  3256. msgid "Support Interface Horizontal Expansion"
  3257. msgstr "支撑接触面水平扩展"
  3258. #: fdmprinter.def.json
  3259. msgctxt "jerk_support_interface label"
  3260. msgid "Support Interface Jerk"
  3261. msgstr "支撑接触面抖动速度"
  3262. #: fdmprinter.def.json
  3263. msgctxt "support_interface_angles label"
  3264. msgid "Support Interface Line Directions"
  3265. msgstr "支撑接触面走线方向"
  3266. #: fdmprinter.def.json
  3267. msgctxt "support_interface_line_width label"
  3268. msgid "Support Interface Line Width"
  3269. msgstr "走线宽度(支撑接触面)"
  3270. #: fdmprinter.def.json
  3271. msgctxt "support_interface_pattern label"
  3272. msgid "Support Interface Pattern"
  3273. msgstr "支撑接触面图案"
  3274. #: fdmprinter.def.json
  3275. msgctxt "support_interface_priority label"
  3276. msgid "Support Interface Priority"
  3277. msgstr ""
  3278. #: fdmprinter.def.json
  3279. msgctxt "support_interface_skip_height label"
  3280. msgid "Support Interface Resolution"
  3281. msgstr "支撑接触面分辨率"
  3282. #: fdmprinter.def.json
  3283. msgctxt "speed_support_interface label"
  3284. msgid "Support Interface Speed"
  3285. msgstr "支撑接触面速度"
  3286. #: fdmprinter.def.json
  3287. msgctxt "support_interface_height label"
  3288. msgid "Support Interface Thickness"
  3289. msgstr "支撑接触面厚度"
  3290. #: fdmprinter.def.json
  3291. msgctxt "support_interface_wall_count label"
  3292. msgid "Support Interface Wall Line Count"
  3293. msgstr "支撑接触面墙线条数"
  3294. #: fdmprinter.def.json
  3295. msgctxt "jerk_support label"
  3296. msgid "Support Jerk"
  3297. msgstr "支撑抖动速度"
  3298. #: fdmprinter.def.json
  3299. msgctxt "support_join_distance label"
  3300. msgid "Support Join Distance"
  3301. msgstr "支撑结合部距离"
  3302. #: fdmprinter.def.json
  3303. msgctxt "support_line_distance label"
  3304. msgid "Support Line Distance"
  3305. msgstr "支撑走线距离"
  3306. #: fdmprinter.def.json
  3307. msgctxt "support_line_width label"
  3308. msgid "Support Line Width"
  3309. msgstr "走线宽度(支撑结构)"
  3310. #: fdmprinter.def.json
  3311. msgctxt "support_mesh label"
  3312. msgid "Support Mesh"
  3313. msgstr "支撑网格"
  3314. #: fdmprinter.def.json
  3315. msgctxt "support_angle label"
  3316. msgid "Support Overhang Angle"
  3317. msgstr "支撑悬垂角度"
  3318. #: fdmprinter.def.json
  3319. msgctxt "support_pattern label"
  3320. msgid "Support Pattern"
  3321. msgstr "支撑图案"
  3322. #: fdmprinter.def.json
  3323. msgctxt "support_type label"
  3324. msgid "Support Placement"
  3325. msgstr "支撑放置"
  3326. #: fdmprinter.def.json
  3327. msgctxt "acceleration_support_roof label"
  3328. msgid "Support Roof Acceleration"
  3329. msgstr "支撑顶板加速度"
  3330. #: fdmprinter.def.json
  3331. msgctxt "support_roof_density label"
  3332. msgid "Support Roof Density"
  3333. msgstr "支撑顶板密度"
  3334. #: fdmprinter.def.json
  3335. msgctxt "support_roof_extruder_nr label"
  3336. msgid "Support Roof Extruder"
  3337. msgstr "支撑顶板挤出机"
  3338. #: fdmprinter.def.json
  3339. msgctxt "support_roof_material_flow label"
  3340. msgid "Support Roof Flow"
  3341. msgstr "支撑顶板流量"
  3342. #: fdmprinter.def.json
  3343. msgctxt "support_roof_offset label"
  3344. msgid "Support Roof Horizontal Expansion"
  3345. msgstr "支撑顶板水平扩展"
  3346. #: fdmprinter.def.json
  3347. msgctxt "jerk_support_roof label"
  3348. msgid "Support Roof Jerk"
  3349. msgstr "支撑顶板抖动速度"
  3350. #: fdmprinter.def.json
  3351. msgctxt "support_roof_angles label"
  3352. msgid "Support Roof Line Directions"
  3353. msgstr "支撑顶板走线方向"
  3354. #: fdmprinter.def.json
  3355. msgctxt "support_roof_line_distance label"
  3356. msgid "Support Roof Line Distance"
  3357. msgstr "支撑顶板走线距离"
  3358. #: fdmprinter.def.json
  3359. msgctxt "support_roof_line_width label"
  3360. msgid "Support Roof Line Width"
  3361. msgstr "支撑顶板走线宽度"
  3362. #: fdmprinter.def.json
  3363. msgctxt "support_roof_pattern label"
  3364. msgid "Support Roof Pattern"
  3365. msgstr "支撑顶板图案"
  3366. #: fdmprinter.def.json
  3367. msgctxt "speed_support_roof label"
  3368. msgid "Support Roof Speed"
  3369. msgstr "支撑顶板速度"
  3370. #: fdmprinter.def.json
  3371. msgctxt "support_roof_height label"
  3372. msgid "Support Roof Thickness"
  3373. msgstr "支撑顶板厚度"
  3374. #: fdmprinter.def.json
  3375. msgctxt "support_roof_wall_count label"
  3376. msgid "Support Roof Wall Line Count"
  3377. msgstr "支撑顶板墙线条数"
  3378. #: fdmprinter.def.json
  3379. msgctxt "speed_support label"
  3380. msgid "Support Speed"
  3381. msgstr "速度(支撑结构)"
  3382. #: fdmprinter.def.json
  3383. msgctxt "support_bottom_stair_step_height label"
  3384. msgid "Support Stair Step Height"
  3385. msgstr "支撑梯步阶高度"
  3386. #: fdmprinter.def.json
  3387. msgctxt "support_bottom_stair_step_width label"
  3388. msgid "Support Stair Step Maximum Width"
  3389. msgstr "支撑梯步阶最大宽度"
  3390. #: fdmprinter.def.json
  3391. msgctxt "support_bottom_stair_step_min_slope label"
  3392. msgid "Support Stair Step Minimum Slope Angle"
  3393. msgstr "支撑阶梯最小坡度角"
  3394. #: fdmprinter.def.json
  3395. msgctxt "support_structure label"
  3396. msgid "Support Structure"
  3397. msgstr "支撑结构"
  3398. #: fdmprinter.def.json
  3399. msgctxt "support_top_distance label"
  3400. msgid "Support Top Distance"
  3401. msgstr "支撑顶部距离"
  3402. #: fdmprinter.def.json
  3403. msgctxt "support_wall_count label"
  3404. msgid "Support Wall Line Count"
  3405. msgstr "支撑墙行数"
  3406. #: fdmprinter.def.json
  3407. msgctxt "support_xy_distance label"
  3408. msgid "Support X/Y Distance"
  3409. msgstr "支撑 X/Y 距离"
  3410. #: fdmprinter.def.json
  3411. msgctxt "support_z_distance label"
  3412. msgid "Support Z Distance"
  3413. msgstr "支撑 Z 距离"
  3414. #: fdmprinter.def.json
  3415. msgctxt "support_interface_priority option support_lines_overwrite_interface_area"
  3416. msgid "Support lines preferred"
  3417. msgstr ""
  3418. #: fdmprinter.def.json
  3419. msgctxt "support_interface_priority option support_area_overwrite_interface_area"
  3420. msgid "Support preferred"
  3421. msgstr ""
  3422. #: fdmprinter.def.json
  3423. msgctxt "support_supported_skin_fan_speed label"
  3424. msgid "Supported Skin Fan Speed"
  3425. msgstr "支撑的表面风扇速度"
  3426. #: fdmprinter.def.json
  3427. msgctxt "magic_mesh_surface_mode option surface"
  3428. msgid "Surface"
  3429. msgstr "表面"
  3430. #: fdmprinter.def.json
  3431. msgctxt "material_surface_energy label"
  3432. msgid "Surface Energy"
  3433. msgstr "表面能"
  3434. #: fdmprinter.def.json
  3435. msgctxt "magic_mesh_surface_mode label"
  3436. msgid "Surface Mode"
  3437. msgstr "表面模式"
  3438. #: fdmprinter.def.json
  3439. msgctxt "material_adhesion_tendency description"
  3440. msgid "Surface adhesion tendency."
  3441. msgstr "表面附着倾向。"
  3442. #: fdmprinter.def.json
  3443. msgctxt "material_surface_energy description"
  3444. msgid "Surface energy."
  3445. msgstr "表面能。"
  3446. #: fdmprinter.def.json
  3447. msgctxt "brim_smart_ordering description"
  3448. msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal."
  3449. msgstr ""
  3450. #: fdmprinter.def.json
  3451. msgctxt "alternate_carve_order description"
  3452. msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes."
  3453. msgstr "切换为与每个层相交的网格相交体积,以便重叠的网格交织在一起。 关闭此设置将使其中一个网格获得重叠中的所有体积,同时将其从其他网格中移除。"
  3454. #: fdmprinter.def.json
  3455. msgctxt "adaptive_layer_height_threshold description"
  3456. msgid "Target horizontal distance between two adjacent layers. Reducing this setting causes thinner layers to be used to bring the edges of the layers closer together."
  3457. msgstr "两个相邻图层之间的目标水平距离。减小此设置的值会使要使用的图层变薄,从而使图层的边缘距离更近。"
  3458. #: fdmprinter.def.json
  3459. msgctxt "layer_start_x description"
  3460. msgid "The X coordinate of the position near where to find the part to start printing each layer."
  3461. msgstr "位置的 X 轴坐标,在该位置附近找到开始打印每层的部分。"
  3462. #: fdmprinter.def.json
  3463. msgctxt "z_seam_x description"
  3464. msgid "The X coordinate of the position near where to start printing each part in a layer."
  3465. msgstr "位置的 X 轴坐标,在该位置附近开始打印层中各个部分。"
  3466. #: fdmprinter.def.json
  3467. msgctxt "extruder_prime_pos_x description"
  3468. msgid "The X coordinate of the position where the nozzle primes at the start of printing."
  3469. msgstr "打印开始时,喷头在 X 轴上初始位置。"
  3470. #: fdmprinter.def.json
  3471. msgctxt "layer_start_y description"
  3472. msgid "The Y coordinate of the position near where to find the part to start printing each layer."
  3473. msgstr "位置的 Y 轴坐标,在该位置附近找到开始打印每层的部分。"
  3474. #: fdmprinter.def.json
  3475. msgctxt "z_seam_y description"
  3476. msgid "The Y coordinate of the position near where to start printing each part in a layer."
  3477. msgstr "位置的 Y 轴坐标,在该位置附近开始打印层中各个部分。"
  3478. #: fdmprinter.def.json
  3479. msgctxt "extruder_prime_pos_y description"
  3480. msgid "The Y coordinate of the position where the nozzle primes at the start of printing."
  3481. msgstr "打印开始时,喷头在 Y 轴坐标上初始位置。"
  3482. #: fdmprinter.def.json
  3483. msgctxt "extruder_prime_pos_z description"
  3484. msgid "The Z coordinate of the position where the nozzle primes at the start of printing."
  3485. msgstr "打印开始时,喷头在 Z 轴坐标上的起始位置."
  3486. #: fdmprinter.def.json
  3487. msgctxt "acceleration_print_layer_0 description"
  3488. msgid "The acceleration during the printing of the initial layer."
  3489. msgstr "打印起始层时的加速度。"
  3490. #: fdmprinter.def.json
  3491. msgctxt "acceleration_layer_0 description"
  3492. msgid "The acceleration for the initial layer."
  3493. msgstr "起始层的加速度。"
  3494. #: fdmprinter.def.json
  3495. msgctxt "acceleration_travel_layer_0 description"
  3496. msgid "The acceleration for travel moves in the initial layer."
  3497. msgstr "起始层中的空驶加速度。"
  3498. #: fdmprinter.def.json
  3499. msgctxt "jerk_travel_layer_0 description"
  3500. msgid "The acceleration for travel moves in the initial layer."
  3501. msgstr "起始层中的空驶加速度。"
  3502. #: fdmprinter.def.json
  3503. msgctxt "acceleration_wall_x description"
  3504. msgid "The acceleration with which all inner walls are printed."
  3505. msgstr "打印所有内壁的加速度。"
  3506. #: fdmprinter.def.json
  3507. msgctxt "acceleration_infill description"
  3508. msgid "The acceleration with which infill is printed."
  3509. msgstr "打印填充物的加速度。"
  3510. #: fdmprinter.def.json
  3511. msgctxt "acceleration_ironing description"
  3512. msgid "The acceleration with which ironing is performed."
  3513. msgstr "执行熨平的加速度。"
  3514. #: fdmprinter.def.json
  3515. msgctxt "acceleration_print description"
  3516. msgid "The acceleration with which printing happens."
  3517. msgstr "打印发生的加速度。"
  3518. #: fdmprinter.def.json
  3519. msgctxt "raft_base_acceleration description"
  3520. msgid "The acceleration with which the base raft layer is printed."
  3521. msgstr "打印基础 Raft 层的加速度。"
  3522. #: fdmprinter.def.json
  3523. msgctxt "acceleration_support_bottom description"
  3524. msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model."
  3525. msgstr "打印支撑底板的加速度。 以较低的加速度打印可以改善支撑在模型顶部的粘着。"
  3526. #: fdmprinter.def.json
  3527. msgctxt "acceleration_support_infill description"
  3528. msgid "The acceleration with which the infill of support is printed."
  3529. msgstr "打印支撑填充物的加速度。"
  3530. #: fdmprinter.def.json
  3531. msgctxt "raft_interface_acceleration description"
  3532. msgid "The acceleration with which the middle raft layer is printed."
  3533. msgstr "打印中间 Raft 层的加速度。"
  3534. #: fdmprinter.def.json
  3535. msgctxt "acceleration_wall_0 description"
  3536. msgid "The acceleration with which the outermost walls are printed."
  3537. msgstr "打印最外壁的加速度。"
  3538. #: fdmprinter.def.json
  3539. msgctxt "acceleration_prime_tower description"
  3540. msgid "The acceleration with which the prime tower is printed."
  3541. msgstr "打印装填塔的加速度。"
  3542. #: fdmprinter.def.json
  3543. msgctxt "raft_acceleration description"
  3544. msgid "The acceleration with which the raft is printed."
  3545. msgstr "打印 Raft 的加速度。"
  3546. #: fdmprinter.def.json
  3547. msgctxt "acceleration_support_interface description"
  3548. msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality."
  3549. msgstr "打印支撑顶板和底板的加速度。 以较低的加速度打印可以改善悬垂质量。"
  3550. #: fdmprinter.def.json
  3551. msgctxt "acceleration_support_roof description"
  3552. msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality."
  3553. msgstr "打印支撑顶板的加速度。 以较低的加速度打印可以改善悬垂质量。"
  3554. #: fdmprinter.def.json
  3555. msgctxt "acceleration_skirt_brim description"
  3556. msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration."
  3557. msgstr "打印 skirt 和 brim 的加速度。 一般情况是以起始层加速度打印这些部分,但有时候您可能想要以不同加速度来打印 skirt 或 brim。"
  3558. #: fdmprinter.def.json
  3559. msgctxt "acceleration_support description"
  3560. msgid "The acceleration with which the support structure is printed."
  3561. msgstr "打印支撑结构的加速度。"
  3562. #: fdmprinter.def.json
  3563. msgctxt "raft_surface_acceleration description"
  3564. msgid "The acceleration with which the top raft layers are printed."
  3565. msgstr "打印顶部 Raft 层的加速度。"
  3566. #: fdmprinter.def.json
  3567. msgctxt "acceleration_wall description"
  3568. msgid "The acceleration with which the walls are printed."
  3569. msgstr "打印壁的加速度。"
  3570. #: fdmprinter.def.json
  3571. msgctxt "acceleration_roofing description"
  3572. msgid "The acceleration with which top surface skin layers are printed."
  3573. msgstr "打印顶部表面皮肤层的加速度。"
  3574. #: fdmprinter.def.json
  3575. msgctxt "acceleration_topbottom description"
  3576. msgid "The acceleration with which top/bottom layers are printed."
  3577. msgstr "打印顶部/底部层的加速度。"
  3578. #: fdmprinter.def.json
  3579. msgctxt "acceleration_travel description"
  3580. msgid "The acceleration with which travel moves are made."
  3581. msgstr "进行空驶的加速度。"
  3582. #: fdmprinter.def.json
  3583. msgctxt "ironing_flow description"
  3584. msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface."
  3585. msgstr "熨平期间相对于正常皮肤走线的挤出材料量。 保持喷嘴填充状态有助于填充顶层表面的一些缝隙,但如填充过多则会导致表面上过度挤出和光点。"
  3586. #: fdmprinter.def.json
  3587. msgctxt "infill_overlap description"
  3588. msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill."
  3589. msgstr "填充物和壁之间的重叠量占填充走线宽度的百分比。稍微重叠可让各个壁与填充物牢固连接。"
  3590. #: fdmprinter.def.json
  3591. msgctxt "infill_overlap_mm description"
  3592. msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill."
  3593. msgstr "填充物和壁之间的重叠量。 稍微重叠可让各个壁与填充物牢固连接。"
  3594. #: fdmprinter.def.json
  3595. msgctxt "switch_extruder_retraction_amount description"
  3596. msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone."
  3597. msgstr "切换挤出机时的回抽量。设为 0,不进行任何回抽。该值通常应与加热区的长度相同。"
  3598. #: fdmprinter.def.json
  3599. msgctxt "machine_nozzle_expansion_angle description"
  3600. msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle."
  3601. msgstr "水平面与喷嘴尖端上部圆锥形之间的角度。"
  3602. #: fdmprinter.def.json
  3603. msgctxt "support_tower_roof_angle description"
  3604. msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs."
  3605. msgstr "塔顶角度。 该值越高,塔顶越尖,值越低,塔顶越平。"
  3606. #: fdmprinter.def.json
  3607. msgctxt "mold_angle description"
  3608. msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model."
  3609. msgstr "为模具创建的外壁的悬垂角度。 0° 将使模具的外壳垂直,而 90° 将使模型的外部遵循模型的轮廓。"
  3610. #: fdmprinter.def.json
  3611. msgctxt "support_tree_branch_diameter_angle description"
  3612. msgid "The angle of the branches' diameter as they gradually become thicker towards the bottom. An angle of 0 will cause the branches to have uniform thickness over their length. A bit of an angle can increase stability of the tree support."
  3613. msgstr "随着分支朝底部逐渐变粗,分支直径的角度。角度为 0 表明分支全长具有均匀的粗细度。稍微有些角度可以增加树形支撑的稳定性。"
  3614. #: fdmprinter.def.json
  3615. msgctxt "support_conical_angle description"
  3616. msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top."
  3617. msgstr "锥形支撑的倾斜角度。 角度 0 度时为垂直,角度 90 度时为水平。 较小的角度会让支撑更为牢固,但需要更多材料。 负角会让支撑底座比顶部宽。"
  3618. #: fdmprinter.def.json
  3619. msgctxt "magic_fuzzy_skin_point_density description"
  3620. msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution."
  3621. msgstr "在一层中的每个多边形上引入的点的平均密度。 注意,多边形的原始点被舍弃,因此低密度导致分辨率降低。"
  3622. #: fdmprinter.def.json
  3623. msgctxt "magic_fuzzy_skin_point_dist description"
  3624. msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness."
  3625. msgstr "在每个走线部分引入的随机点之间的平均距离。 注意,多边形的原始点被舍弃,因此高平滑度导致分辨率降低。 该值必须大于模糊皮肤厚度的一半。"
  3626. #: fdmprinter.def.json
  3627. msgctxt "machine_acceleration description"
  3628. msgid "The default acceleration of print head movement."
  3629. msgstr "打印头移动的默认加速度。"
  3630. #: fdmprinter.def.json
  3631. msgctxt "default_material_print_temperature description"
  3632. msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value"
  3633. msgstr "用于打印的默认温度。 应为材料的\"基本\"温度。 所有其他打印温度均应使用基于此值的偏移量"
  3634. #: fdmprinter.def.json
  3635. msgctxt "default_material_bed_temperature description"
  3636. msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value"
  3637. msgstr "用于加热打印平台的默认温度。这应该作为打印平台的“基础”温度。所有其他打印温度均应基于此值进行调整"
  3638. #: fdmprinter.def.json
  3639. msgctxt "bridge_skin_density description"
  3640. msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  3641. msgstr "连桥表面层的密度。此值若小于 100 则会增大表面线条的缝隙。"
  3642. #: fdmprinter.def.json
  3643. msgctxt "support_bottom_density description"
  3644. msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model."
  3645. msgstr "支撑结构底板的密度。 较高的值会在模型顶部产生更好的支撑粘着。"
  3646. #: fdmprinter.def.json
  3647. msgctxt "support_roof_density description"
  3648. msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  3649. msgstr "支撑结构顶板的密度。 较高的值会实现更好的悬垂,但支撑将更加难以移除。"
  3650. #: fdmprinter.def.json
  3651. msgctxt "bridge_skin_density_2 description"
  3652. msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  3653. msgstr "连桥第二层表面的密度。此值若小于 100 则会增大表面线条的缝隙。"
  3654. #: fdmprinter.def.json
  3655. msgctxt "bridge_skin_density_3 description"
  3656. msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  3657. msgstr "连桥第三层表面的密度。此值若小于 100 则会增大表面线条的缝隙。"
  3658. #: fdmprinter.def.json
  3659. msgctxt "machine_depth description"
  3660. msgid "The depth (Y-direction) of the printable area."
  3661. msgstr "机器可打印区域深度(Y 坐标)"
  3662. #: fdmprinter.def.json
  3663. msgctxt "support_tower_diameter description"
  3664. msgid "The diameter of a special tower."
  3665. msgstr "特殊塔的直径。"
  3666. #: fdmprinter.def.json
  3667. msgctxt "support_tree_branch_diameter description"
  3668. msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this."
  3669. msgstr "树形支撑最细分支的直径。较粗的分支更坚固。接近基础的分支会比这更粗。"
  3670. #: fdmprinter.def.json
  3671. msgctxt "support_tree_tip_diameter description"
  3672. msgid "The diameter of the top of the tip of the branches of tree support."
  3673. msgstr ""
  3674. #: fdmprinter.def.json
  3675. msgctxt "machine_feeder_wheel_diameter description"
  3676. msgid "The diameter of the wheel that drives the material in the feeder."
  3677. msgstr "进料装置中材料驱动轮的直径。"
  3678. #: fdmprinter.def.json
  3679. msgctxt "support_tree_max_diameter description"
  3680. msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate."
  3681. msgstr "树形支撑最粗分支的直径。较粗的主干更坚固;较细主干在构建板上占据的空间较小。"
  3682. #: fdmprinter.def.json
  3683. msgctxt "adaptive_layer_height_variation_step description"
  3684. msgid "The difference in height of the next layer height compared to the previous one."
  3685. msgstr "下一层与前一层的高度差。"
  3686. #: fdmprinter.def.json
  3687. msgctxt "ironing_line_spacing description"
  3688. msgid "The distance between the lines of ironing."
  3689. msgstr "熨平走线之间的距离。"
  3690. #: fdmprinter.def.json
  3691. msgctxt "travel_avoid_distance description"
  3692. msgid "The distance between the nozzle and already printed parts when avoiding during travel moves."
  3693. msgstr "喷嘴和已打印部分之间在空驶时避让的距离。"
  3694. #: fdmprinter.def.json
  3695. msgctxt "raft_base_line_spacing description"
  3696. msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate."
  3697. msgstr "基础 Raft 层的 Raft 走线之间的距离。 宽间距方便将 Raft 从打印平台移除。"
  3698. #: fdmprinter.def.json
  3699. msgctxt "raft_interface_line_spacing description"
  3700. msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers."
  3701. msgstr "中间 Raft 层的 Raft 走线之间的距离。 中间的间距应足够宽,同时也要足够密集,以便支撑顶部 Raft 层。"
  3702. #: fdmprinter.def.json
  3703. msgctxt "raft_surface_line_spacing description"
  3704. msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid."
  3705. msgstr "顶部 Raft 层的 Raft 走线之间的距离。 间距应等于走线宽度,以便打造坚固表面。"
  3706. #: fdmprinter.def.json
  3707. msgctxt "interlocking_depth description"
  3708. msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion."
  3709. msgstr "从模型之间的边界到生成互锁结构的距离,以单元格衡量。单元格太少会导致粘附不良。"
  3710. #: fdmprinter.def.json
  3711. msgctxt "brim_width description"
  3712. msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area."
  3713. msgstr "模型到最外侧 brim 线的距离。 较大的 brim 可增强与打印平台的附着,但也会减少有效打印区域。"
  3714. #: fdmprinter.def.json
  3715. msgctxt "interlocking_boundary_avoidance description"
  3716. msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells."
  3717. msgstr "与不会生成互锁结构的模型外部的距离,以单元格衡量。"
  3718. #: fdmprinter.def.json
  3719. msgctxt "machine_heat_zone_length description"
  3720. msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament."
  3721. msgstr "与喷嘴尖端的距离,喷嘴产生的热量在这段距离内传递到耗材中。"
  3722. #: fdmprinter.def.json
  3723. msgctxt "bottom_skin_expand_distance description"
  3724. msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used."
  3725. msgstr "底部皮肤扩展到填充物中的距离。 值越大会让皮肤与填充图案更好地附着,并让皮肤与下面层的壁更好地粘着。 较低的值将节省所用的材料量。"
  3726. #: fdmprinter.def.json
  3727. msgctxt "expand_skins_expand_distance description"
  3728. msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used."
  3729. msgstr "皮肤扩展到填充物中的距离。 值越大会让皮肤与填充图案更好地附着,并让相邻层的层壁与皮肤更好地粘着。 较低的值将节省所用的材料量。"
  3730. #: fdmprinter.def.json
  3731. msgctxt "top_skin_expand_distance description"
  3732. msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used."
  3733. msgstr "顶部皮肤扩展到填充物中的距离。 值越大会让皮肤与填充图案更好地附着,并让上方层的层壁与皮肤更好地粘着。 较低的值将节省所用的材料量。"
  3734. #: fdmprinter.def.json
  3735. msgctxt "wipe_move_distance description"
  3736. msgid "The distance to move the head back and forth across the brush."
  3737. msgstr "在擦拭刷上来回移动喷嘴头的距离。"
  3738. #: fdmprinter.def.json
  3739. msgctxt "lightning_infill_prune_angle description"
  3740. msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines."
  3741. msgstr "为节省材料,填充线的端点将被缩短。此设置为这些线的端点形成的悬垂角度。"
  3742. #: fdmprinter.def.json
  3743. msgctxt "material_extrusion_cool_down_speed description"
  3744. msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding."
  3745. msgstr "挤出时喷嘴冷却的额外速度。 使用相同的值表示挤出过程中进行加热时的加热速度损失。"
  3746. #: fdmprinter.def.json
  3747. msgctxt "support_extruder_nr_layer_0 description"
  3748. msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion."
  3749. msgstr "用于打印支撑填充物第一层的挤出机组。 用于多重挤出。"
  3750. #: fdmprinter.def.json
  3751. msgctxt "raft_base_extruder_nr description"
  3752. msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion."
  3753. msgstr "用于打印 Raft 第一层的挤出器组。用于多重挤出。"
  3754. #: fdmprinter.def.json
  3755. msgctxt "support_bottom_extruder_nr description"
  3756. msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion."
  3757. msgstr "用于打印支撑底板的挤出机组。 用于多重挤出。"
  3758. #: fdmprinter.def.json
  3759. msgctxt "support_infill_extruder_nr description"
  3760. msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion."
  3761. msgstr "用于打印支撑填充物的挤出机组。 用于多重挤出。"
  3762. #: fdmprinter.def.json
  3763. msgctxt "raft_interface_extruder_nr description"
  3764. msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion."
  3765. msgstr "用于打印 Raft 中间层的挤出器组。用于多重挤出。"
  3766. #: fdmprinter.def.json
  3767. msgctxt "support_interface_extruder_nr description"
  3768. msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion."
  3769. msgstr "用于打印支撑顶板和底板的挤出机组。 用于多重挤出。"
  3770. #: fdmprinter.def.json
  3771. msgctxt "support_roof_extruder_nr description"
  3772. msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion."
  3773. msgstr "用于打印支撑顶板的挤出机组。 用于多重挤出。"
  3774. #: fdmprinter.def.json
  3775. msgctxt "skirt_brim_extruder_nr description"
  3776. msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion."
  3777. msgstr "用于打印 Skirt 或 Brim 的挤出机组。用于多重挤出。"
  3778. #: fdmprinter.def.json
  3779. msgctxt "adhesion_extruder_nr description"
  3780. msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion."
  3781. msgstr "用于打印 skirt/brim/raft 的挤出机组。 用于多重挤出。"
  3782. #: fdmprinter.def.json
  3783. msgctxt "support_extruder_nr description"
  3784. msgid "The extruder train to use for printing the support. This is used in multi-extrusion."
  3785. msgstr "用于打印支撑的挤出机组。 用于多重挤出。"
  3786. #: fdmprinter.def.json
  3787. msgctxt "raft_surface_extruder_nr description"
  3788. msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion."
  3789. msgstr "用于打印 Raft 顶层的挤出器组。用于多重挤出。"
  3790. #: fdmprinter.def.json
  3791. msgctxt "infill_extruder_nr description"
  3792. msgid "The extruder train used for printing infill. This is used in multi-extrusion."
  3793. msgstr "用于打印填充的挤出机组。 用于多重挤出。"
  3794. #: fdmprinter.def.json
  3795. msgctxt "wall_x_extruder_nr description"
  3796. msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion."
  3797. msgstr "用于打印内壁的挤出机组。 用于多重挤出。"
  3798. #: fdmprinter.def.json
  3799. msgctxt "wall_0_extruder_nr description"
  3800. msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion."
  3801. msgstr "用于打印外壁的挤出机组。 用于多重挤出。"
  3802. #: fdmprinter.def.json
  3803. msgctxt "top_bottom_extruder_nr description"
  3804. msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion."
  3805. msgstr "用于打印顶部和底部皮肤的挤出机组。 用于多重挤出。"
  3806. #: fdmprinter.def.json
  3807. msgctxt "roofing_extruder_nr description"
  3808. msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion."
  3809. msgstr "用于打印最顶部皮肤的挤出机组。 用于多重挤出。"
  3810. #: fdmprinter.def.json
  3811. msgctxt "wall_extruder_nr description"
  3812. msgid "The extruder train used for printing the walls. This is used in multi-extrusion."
  3813. msgstr "用于打印壁的挤出机组。 用于多重挤出。"
  3814. #: fdmprinter.def.json
  3815. msgctxt "raft_base_fan_speed description"
  3816. msgid "The fan speed for the base raft layer."
  3817. msgstr "基础 Raft 层的风扇速度。"
  3818. #: fdmprinter.def.json
  3819. msgctxt "raft_interface_fan_speed description"
  3820. msgid "The fan speed for the middle raft layer."
  3821. msgstr "中间 Raft 层的风扇速度。"
  3822. #: fdmprinter.def.json
  3823. msgctxt "raft_fan_speed description"
  3824. msgid "The fan speed for the raft."
  3825. msgstr "Raft 的风扇速度。"
  3826. #: fdmprinter.def.json
  3827. msgctxt "raft_surface_fan_speed description"
  3828. msgid "The fan speed for the top raft layers."
  3829. msgstr "顶部 Raft 层的风扇速度。"
  3830. #: fdmprinter.def.json
  3831. msgctxt "cross_infill_density_image description"
  3832. msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print."
  3833. msgstr "在打印的填充中,亮度值决定了相应位置的最小密度的图像的文件位置。"
  3834. #: fdmprinter.def.json
  3835. msgctxt "cross_support_density_image description"
  3836. msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support."
  3837. msgstr "一个图像的文件位置,在这个图像中,亮度值决定了在支持中相应位置的最小密度。"
  3838. #: fdmprinter.def.json
  3839. msgctxt "speed_slowdown_layers description"
  3840. msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers."
  3841. msgstr "前几层的打印速度比模型的其他层慢,以便实现与打印平台的更好粘着,并改善整体的打印成功率。 该速度在这些层中会逐渐增加。"
  3842. #: fdmprinter.def.json
  3843. msgctxt "raft_airgap description"
  3844. msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft."
  3845. msgstr "模型最后的 raft 层与第一层之间的间隙。 只有第一层被提高了这个量,以便降低 raft 层和模型之间的附着。 让 raft 更容易剥离。"
  3846. #: fdmprinter.def.json
  3847. msgctxt "machine_height description"
  3848. msgid "The height (Z-direction) of the printable area."
  3849. msgstr "机器可打印区域高度(Z 坐标)"
  3850. #: fdmprinter.def.json
  3851. msgctxt "mold_roof_height description"
  3852. msgid "The height above horizontal parts in your model which to print mold."
  3853. msgstr "用于打印模具的模型水平部分上方的高度。"
  3854. #: fdmprinter.def.json
  3855. msgctxt "cool_fan_full_at_height description"
  3856. msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed."
  3857. msgstr "风扇以正常速度旋转的高度。 在下方的层中,风扇速度逐渐从起始风扇速度增加到正常风扇速度。"
  3858. #: fdmprinter.def.json
  3859. msgctxt "gantry_height description"
  3860. msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)."
  3861. msgstr "喷嘴尖端与十字轴系统(X 轴和 Y 轴)之间的高度差。"
  3862. #: fdmprinter.def.json
  3863. msgctxt "machine_nozzle_head_distance description"
  3864. msgid "The height difference between the tip of the nozzle and the lowest part of the print head."
  3865. msgstr "喷嘴尖端与打印头最低部分之间的高度差。"
  3866. #: fdmprinter.def.json
  3867. msgctxt "retraction_hop_after_extruder_switch_height description"
  3868. msgid "The height difference when performing a Z Hop after extruder switch."
  3869. msgstr "挤出机切换后执行 Z 抬升的高度差。"
  3870. #: fdmprinter.def.json
  3871. msgctxt "retraction_hop description"
  3872. msgid "The height difference when performing a Z Hop."
  3873. msgstr "执行 Z 抬升的高度差。"
  3874. #: fdmprinter.def.json
  3875. msgctxt "wipe_hop_amount description"
  3876. msgid "The height difference when performing a Z Hop."
  3877. msgstr "执行 Z 抬升的高度差。"
  3878. #: fdmprinter.def.json
  3879. msgctxt "layer_height description"
  3880. msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution."
  3881. msgstr "每层的高度(以毫米为单位)。值越高,则打印速度越快,分辨率越低;值越低,则打印速度越慢,分辨率越高。"
  3882. #: fdmprinter.def.json
  3883. msgctxt "gradual_infill_step_height description"
  3884. msgid "The height of infill of a given density before switching to half the density."
  3885. msgstr "在切换至密度的一半前指定密度的填充高度。"
  3886. #: fdmprinter.def.json
  3887. msgctxt "gradual_support_infill_step_height description"
  3888. msgid "The height of support infill of a given density before switching to half the density."
  3889. msgstr "在切换至密度的一半前指定密度的支撑填充高度。"
  3890. #: fdmprinter.def.json
  3891. msgctxt "interlocking_beam_layer_count description"
  3892. msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects."
  3893. msgstr "互锁结构梁的高度,以层数衡量。层数越少越坚固,但更容易出现缺陷。"
  3894. #: fdmprinter.def.json
  3895. msgctxt "interlocking_orientation description"
  3896. msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects."
  3897. msgstr "互锁结构梁的高度,以层数衡量。层数越少越坚固,但更容易出现缺陷。"
  3898. #: fdmprinter.def.json
  3899. msgctxt "layer_height_0 description"
  3900. msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier."
  3901. msgstr "起始层高(以毫米为单位)。起始层越厚,与打印平台的粘着越轻松。"
  3902. #: fdmprinter.def.json
  3903. msgctxt "support_bottom_stair_step_height description"
  3904. msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour."
  3905. msgstr "停留在模型上的支撑阶梯状底部的步阶高度。 较低的值会使支撑更难于移除,但过高的值可能导致不稳定的支撑结构。 设为零可以关闭阶梯状行为。"
  3906. #: fdmprinter.def.json
  3907. msgctxt "brim_gap description"
  3908. msgid "The horizontal distance between the first brim line and the outline of the first layer of the print. A small gap can make the brim easier to remove while still providing the thermal benefits."
  3909. msgstr "第一条边沿线与打印件第一层轮廓之间的水平距离。较小的间隙可使边沿更容易去除,同时在散热方面仍有优势。"
  3910. #: fdmprinter.def.json
  3911. msgctxt "skirt_gap description"
  3912. msgid ""
  3913. "The horizontal distance between the skirt and the first layer of the print.\n"
  3914. "This is the minimum distance. Multiple skirt lines will extend outwards from this distance."
  3915. msgstr ""
  3916. "skirt 和打印第一层之间的水平距离。\n"
  3917. "这是最小距离。多个 skirt 走线将从此距离向外延伸。"
  3918. #: fdmprinter.def.json
  3919. msgctxt "lightning_infill_straightening_angle description"
  3920. msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line."
  3921. msgstr "为节省打印时间,填充线将被拉直。这是整条填充线上允许的最大悬垂角度。"
  3922. #: fdmprinter.def.json
  3923. msgctxt "infill_offset_x description"
  3924. msgid "The infill pattern is moved this distance along the X axis."
  3925. msgstr "填充图案沿 X 轴移动此距离。"
  3926. #: fdmprinter.def.json
  3927. msgctxt "infill_offset_y description"
  3928. msgid "The infill pattern is moved this distance along the Y axis."
  3929. msgstr "填充图案沿 Y 轴移动此距离。"
  3930. #: fdmprinter.def.json
  3931. msgctxt "machine_nozzle_size description"
  3932. msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size."
  3933. msgstr "喷嘴内径,在使用非标准喷嘴尺寸时需更改此设置。"
  3934. #: fdmprinter.def.json
  3935. msgctxt "raft_base_jerk description"
  3936. msgid "The jerk with which the base raft layer is printed."
  3937. msgstr "打印基础 Raft 层的抖动速度。"
  3938. #: fdmprinter.def.json
  3939. msgctxt "raft_interface_jerk description"
  3940. msgid "The jerk with which the middle raft layer is printed."
  3941. msgstr "打印中间 Raft 层的抖动速度。"
  3942. #: fdmprinter.def.json
  3943. msgctxt "raft_jerk description"
  3944. msgid "The jerk with which the raft is printed."
  3945. msgstr "打印 Raft 的抖动速度。"
  3946. #: fdmprinter.def.json
  3947. msgctxt "raft_surface_jerk description"
  3948. msgid "The jerk with which the top raft layers are printed."
  3949. msgstr "打印顶部 Raft 层的抖动速度。"
  3950. #: fdmprinter.def.json
  3951. msgctxt "bottom_skin_preshrink description"
  3952. msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model."
  3953. msgstr "将被移除的底部皮肤区域的最大宽度。 小于此值的所有皮肤区域都将消失。 这有助于限制在模型的倾斜表面打印底部皮肤时所耗用的时间和材料。"
  3954. #: fdmprinter.def.json
  3955. msgctxt "skin_preshrink description"
  3956. msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model."
  3957. msgstr "将被移除的皮肤区域的最大宽度。 小于此值的所有皮肤区域都将消失。 这有助于限制在模型的倾斜表面打印顶部/底部皮肤时所耗用的时间和材料。"
  3958. #: fdmprinter.def.json
  3959. msgctxt "top_skin_preshrink description"
  3960. msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model."
  3961. msgstr "将被移除的顶部皮肤区域的最大宽度。 小于此值的所有皮肤区域都将消失。 这有助于限制在模型的倾斜表面打印顶部皮肤时所耗用的时间和材料。"
  3962. #: fdmprinter.def.json
  3963. msgctxt "cool_fan_full_layer description"
  3964. msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number."
  3965. msgstr "风扇以正常风扇速度旋转的层。 如果设置了正常风扇速度(高度),则该值将被计算并舍入为整数。"
  3966. #: fdmprinter.def.json
  3967. msgctxt "cool_min_layer_time_fan_speed_max description"
  3968. msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed."
  3969. msgstr "设定正常风扇速度和最大风扇速度之间阈值的层时间。 打印速度低于此时间的层使用正常风扇速度。 对于更快的层,风扇速度逐渐增加到最大风扇速度。"
  3970. #: fdmprinter.def.json
  3971. msgctxt "retraction_amount description"
  3972. msgid "The length of material retracted during a retraction move."
  3973. msgstr "回抽移动期间回抽的材料长度。"
  3974. #: fdmprinter.def.json
  3975. msgctxt "machine_buildplate_type description"
  3976. msgid "The material of the build plate installed on the printer."
  3977. msgstr "打印平台材料已安装在打印机上。"
  3978. #: fdmprinter.def.json
  3979. msgctxt "adaptive_layer_height_variation description"
  3980. msgid "The maximum allowed height different from the base layer height."
  3981. msgstr "最大允许高度与基层高度不同。"
  3982. #: fdmprinter.def.json
  3983. msgctxt "ooze_shield_angle description"
  3984. msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material."
  3985. msgstr "渗出罩中的一个部件将具备的最大角度。 角度 0 度时为垂直,角度 90 度时为水平。 较小的角度会降低渗出罩失效次数,但会耗费更多材料。"
  3986. #: fdmprinter.def.json
  3987. msgctxt "conical_overhang_angle description"
  3988. msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way."
  3989. msgstr "在悬垂变得可打印后悬垂的最大角度。 当该值为 0° 时,所有悬垂将被与打印平台连接的模型的一个部分替代,如果为 90° 时,不会以任何方式更改模型。"
  3990. #: fdmprinter.def.json
  3991. msgctxt "support_tree_angle description"
  3992. msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach."
  3993. msgstr ""
  3994. #: fdmprinter.def.json
  3995. msgctxt "conical_overhang_hole_size description"
  3996. msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base."
  3997. msgstr "在“使悬垂对象可打印”将其删除之前,模型底部的孔的最大面积。小于此面积的孔将会保留。值 0 mm² 将填充模型底部的所有孔。"
  3998. #: fdmprinter.def.json
  3999. msgctxt "meshfix_maximum_deviation description"
  4000. msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true."
  4001. msgstr "降低“最大分辨率”设置的分辨率时允许的最大偏移量。如果增加该值,打印作业的准确性将降低,但 g-code 将减小。“最大偏移量”是“最大分辨率”的限制,因此如果两者冲突,则“最大偏移量”将始终保持有效。"
  4002. #: fdmprinter.def.json
  4003. msgctxt "support_join_distance description"
  4004. msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one."
  4005. msgstr "支撑结构间在 X/Y 方向的最大距离。当分离结构之间的距离小于此值时,这些结构将合并为一体。"
  4006. #: fdmprinter.def.json
  4007. msgctxt "flow_rate_max_extrusion_offset description"
  4008. msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate."
  4009. msgstr "移动线材以补偿流量变化的最大距离(以毫米为单位)。"
  4010. #: fdmprinter.def.json
  4011. msgctxt "meshfix_maximum_extrusion_area_deviation description"
  4012. msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller."
  4013. msgstr "从直线中移除中间点时允许的最大挤出面积偏移量。在长直线中,中间点可以用作宽度变化点。因此,如果移除该点,这会使得线条具有均匀的宽度,进而导致失去(或增加)一点挤出面积。如果增加此值,您可能会注意到平行直壁之间的挤出不足(或过多),因为将允许移除更多的中间宽度变化点。打印作业的准确性将降低,但 g-code 将减小。"
  4014. #: fdmprinter.def.json
  4015. msgctxt "jerk_print_layer_0 description"
  4016. msgid "The maximum instantaneous velocity change during the printing of the initial layer."
  4017. msgstr "打印起始层时的最大瞬时速度变化。"
  4018. #: fdmprinter.def.json
  4019. msgctxt "jerk_print description"
  4020. msgid "The maximum instantaneous velocity change of the print head."
  4021. msgstr "打印头的最大瞬时速度变化。"
  4022. #: fdmprinter.def.json
  4023. msgctxt "jerk_ironing description"
  4024. msgid "The maximum instantaneous velocity change while performing ironing."
  4025. msgstr "执行熨平时的最大瞬时速度变化。"
  4026. #: fdmprinter.def.json
  4027. msgctxt "jerk_wall_x description"
  4028. msgid "The maximum instantaneous velocity change with which all inner walls are printed."
  4029. msgstr "打印所有内壁时的最大瞬时速度变化。"
  4030. #: fdmprinter.def.json
  4031. msgctxt "jerk_infill description"
  4032. msgid "The maximum instantaneous velocity change with which infill is printed."
  4033. msgstr "打印填充物时的最大瞬时速度变化。"
  4034. #: fdmprinter.def.json
  4035. msgctxt "jerk_support_bottom description"
  4036. msgid "The maximum instantaneous velocity change with which the floors of support are printed."
  4037. msgstr "打印支撑底板时的最大瞬时速度变化。"
  4038. #: fdmprinter.def.json
  4039. msgctxt "jerk_support_infill description"
  4040. msgid "The maximum instantaneous velocity change with which the infill of support is printed."
  4041. msgstr "打印支撑填充物时的最大瞬时速度变化。"
  4042. #: fdmprinter.def.json
  4043. msgctxt "jerk_wall_0 description"
  4044. msgid "The maximum instantaneous velocity change with which the outermost walls are printed."
  4045. msgstr "打印最外壁时的最大瞬时速度变化。"
  4046. #: fdmprinter.def.json
  4047. msgctxt "jerk_prime_tower description"
  4048. msgid "The maximum instantaneous velocity change with which the prime tower is printed."
  4049. msgstr "打印装填塔时的最大瞬时速度变化。"
  4050. #: fdmprinter.def.json
  4051. msgctxt "jerk_support_interface description"
  4052. msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed."
  4053. msgstr "打印支撑顶板和底板的最大瞬时速度变化。"
  4054. #: fdmprinter.def.json
  4055. msgctxt "jerk_support_roof description"
  4056. msgid "The maximum instantaneous velocity change with which the roofs of support are printed."
  4057. msgstr "打印支撑顶板的最大瞬时速度变化。"
  4058. #: fdmprinter.def.json
  4059. msgctxt "jerk_skirt_brim description"
  4060. msgid "The maximum instantaneous velocity change with which the skirt and brim are printed."
  4061. msgstr "打印 skirt 和 brim 时的最大瞬时速度变化。"
  4062. #: fdmprinter.def.json
  4063. msgctxt "jerk_support description"
  4064. msgid "The maximum instantaneous velocity change with which the support structure is printed."
  4065. msgstr "打印支撑结构时的最大瞬时速度变化。"
  4066. #: fdmprinter.def.json
  4067. msgctxt "jerk_wall description"
  4068. msgid "The maximum instantaneous velocity change with which the walls are printed."
  4069. msgstr "打印壁时的最大瞬时速度变化。"
  4070. #: fdmprinter.def.json
  4071. msgctxt "jerk_roofing description"
  4072. msgid "The maximum instantaneous velocity change with which top surface skin layers are printed."
  4073. msgstr "打印顶部表面皮肤层时的最大瞬时速度变化。"
  4074. #: fdmprinter.def.json
  4075. msgctxt "jerk_topbottom description"
  4076. msgid "The maximum instantaneous velocity change with which top/bottom layers are printed."
  4077. msgstr "打印顶部/底部层时的最大瞬时速度变化。"
  4078. #: fdmprinter.def.json
  4079. msgctxt "jerk_travel description"
  4080. msgid "The maximum instantaneous velocity change with which travel moves are made."
  4081. msgstr "进行空驶时的最大瞬时速度变化。"
  4082. #: fdmprinter.def.json
  4083. msgctxt "machine_max_feedrate_x description"
  4084. msgid "The maximum speed for the motor of the X-direction."
  4085. msgstr "X 轴方向电机的最大速度。"
  4086. #: fdmprinter.def.json
  4087. msgctxt "machine_max_feedrate_y description"
  4088. msgid "The maximum speed for the motor of the Y-direction."
  4089. msgstr "Y 轴方向电机的最大速度。"
  4090. #: fdmprinter.def.json
  4091. msgctxt "machine_max_feedrate_z description"
  4092. msgid "The maximum speed for the motor of the Z-direction."
  4093. msgstr "Z 轴方向电机的最大速度。"
  4094. #: fdmprinter.def.json
  4095. msgctxt "machine_max_feedrate_e description"
  4096. msgid "The maximum speed of the filament."
  4097. msgstr "耗材的最大速度。"
  4098. #: fdmprinter.def.json
  4099. msgctxt "support_bottom_stair_step_width description"
  4100. msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures."
  4101. msgstr "停留在模型上的支撑阶梯状底部的最大步阶宽度。 较低的值会使支撑更难于移除,但过高的值可能导致不稳定的支撑结构。"
  4102. #: fdmprinter.def.json
  4103. msgctxt "mold_width description"
  4104. msgid "The minimal distance between the outside of the mold and the outside of the model."
  4105. msgstr "模具外侧与模型外侧之间的最短距离。"
  4106. #: fdmprinter.def.json
  4107. msgctxt "machine_minimum_feedrate description"
  4108. msgid "The minimal movement speed of the print head."
  4109. msgstr "打印头的最低移动速度。"
  4110. #: fdmprinter.def.json
  4111. msgctxt "material_initial_print_temperature description"
  4112. msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start."
  4113. msgstr "加热到可以开始打印的打印温度时的最低温度。"
  4114. #: fdmprinter.def.json
  4115. msgctxt "machine_min_cool_heat_time_window description"
  4116. msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature."
  4117. msgstr "挤出机必须保持不活动以便喷嘴冷却的最短时间。 挤出机必须不使用此时间以上,才可以冷却到待机温度。"
  4118. #: fdmprinter.def.json
  4119. msgctxt "infill_support_angle description"
  4120. msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill."
  4121. msgstr "添加内填充的内部覆盖的最小角度。在一个0的值中,完全填满了填充,90将不提供任何填充。"
  4122. #: fdmprinter.def.json
  4123. msgctxt "support_angle description"
  4124. msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support."
  4125. msgstr "添加支撑的最小悬垂角度。 当角度为 0° 时,将支撑所有悬垂,当角度为 90° 时,不提供任何支撑。"
  4126. #: fdmprinter.def.json
  4127. msgctxt "retraction_min_travel description"
  4128. msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area."
  4129. msgstr "回抽发生所需的最小空驶距离。 这有助于在较小区域内实现更少的回抽。"
  4130. #: fdmprinter.def.json
  4131. msgctxt "skirt_brim_minimal_length description"
  4132. msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored."
  4133. msgstr "skirt 或 brim 的最小长度。 如果所有 skirt 或 brim 走线之和都没有达到此长度,则将添加更多 skirt 或 brim 走线直至达到最小长度。 注意: 如果走线计数设为 0,则将忽略此选项。"
  4134. #: fdmprinter.def.json
  4135. msgctxt "min_odd_wall_line_width description"
  4136. msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width."
  4137. msgstr "中间走线空隙填料多线壁的最小走线宽度。此设置确定在什么模型厚度下,我们从打印两根壁走线切换到打印两个外壁并在中间打印一个中心壁。更高的最小奇数壁走线宽度会带来更高的最大偶数壁走线宽度。最大奇数壁走线宽度计算方法是:2 * 最小偶数壁走线宽度。"
  4138. #: fdmprinter.def.json
  4139. msgctxt "min_even_wall_line_width description"
  4140. msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width."
  4141. msgstr "普通多边形墙的最小走线宽度。此设置确定我们从打印单根薄壁走线切换到打印两根壁走线时的模型厚度。更高的最小偶数壁走线宽度会带来更高的最大奇数壁走线宽度。最大偶数壁走线宽度计算方法是:外壁走线宽度 + 0.5 * 最小奇数壁走线宽度。"
  4142. #: fdmprinter.def.json
  4143. msgctxt "cool_min_speed description"
  4144. msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality."
  4145. msgstr "最低打印速度,排除因最短层时间而减速。 当打印机减速过多时,喷嘴中的压力将过低并导致较差的打印质量。"
  4146. #: fdmprinter.def.json
  4147. msgctxt "meshfix_maximum_resolution description"
  4148. msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway."
  4149. msgstr "走线部分在切片后的最小尺寸。如果提高此值,网格的分辨率将降低。这可让打印机保持处理 g-code 所需的速度,并将通过移除无法处理的网格细节提高切片速度。"
  4150. #: fdmprinter.def.json
  4151. msgctxt "meshfix_maximum_travel_resolution description"
  4152. msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate."
  4153. msgstr "切片后的旅行线路段的最小尺寸。如果你增加了这个,旅行的移动就会变得不那么平滑了。这可能使打印机能够跟上它处理g代码的速度,但是它可能导致模型的避免变得不那么准确。"
  4154. #: fdmprinter.def.json
  4155. msgctxt "support_bottom_stair_step_min_slope description"
  4156. msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model."
  4157. msgstr "使阶梯生效的区域最小坡度。该值较小可在较浅的坡度上更容易去除支撑,但该值过小可能会在模型的其他部分上产生某些很反常的结果。"
  4158. #: fdmprinter.def.json
  4159. msgctxt "cool_min_layer_time description"
  4160. msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated."
  4161. msgstr "在层中花费的最少时间。 这会迫使打印机减速,以便至少在一层中消耗此处所规定的时间。 这会让已打印材料充分冷却后再打印下一层。 如果提升头被禁用,且如果不这么做会违反“最小速度“,则层所花时间可能仍会少于最小层时间。"
  4162. #: fdmprinter.def.json
  4163. msgctxt "prime_tower_min_volume description"
  4164. msgid "The minimum volume for each layer of the prime tower in order to purge enough material."
  4165. msgstr "为了清除足够的材料,装填塔每层的最小体积。"
  4166. #: fdmprinter.def.json
  4167. msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description"
  4168. msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model"
  4169. msgstr ""
  4170. #: fdmprinter.def.json
  4171. msgctxt "machine_name description"
  4172. msgid "The name of your 3D printer model."
  4173. msgstr "您的 3D 打印机型号的名称。"
  4174. #: fdmprinter.def.json
  4175. msgctxt "machine_nozzle_id description"
  4176. msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"."
  4177. msgstr "挤出机组的喷嘴 ID,比如\"AA 0.4\"和\"BB 0.8\"。"
  4178. #: fdmprinter.def.json
  4179. msgctxt "travel_avoid_other_parts description"
  4180. msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled."
  4181. msgstr "喷嘴会在空驶时避开已打印的部分。 此选项仅在启用梳理功能时可用。"
  4182. #: fdmprinter.def.json
  4183. msgctxt "travel_avoid_supports description"
  4184. msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled."
  4185. msgstr "在空走时,喷嘴避免了已打印的支撑。只有在启用了梳理时才可以使用此选项。"
  4186. #: fdmprinter.def.json
  4187. msgctxt "bottom_layers description"
  4188. msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number."
  4189. msgstr "底层的数量。 在按底层厚度计算时,该值舍入为整数。"
  4190. #: fdmprinter.def.json
  4191. msgctxt "raft_base_wall_count description"
  4192. msgid "The number of contours to print around the linear pattern in the base layer of the raft."
  4193. msgstr "在 Raft 的底板层中,围绕线型图案打印轮廓的次数。"
  4194. #: fdmprinter.def.json
  4195. msgctxt "skin_edge_support_layers description"
  4196. msgid "The number of infill layers that supports skin edges."
  4197. msgstr "支撑皮肤边缘的填充物的层数。"
  4198. #: fdmprinter.def.json
  4199. msgctxt "initial_bottom_layers description"
  4200. msgid "The number of initial bottom layers, from the build-plate upwards. When calculated by the bottom thickness, this value is rounded to a whole number."
  4201. msgstr "从构建板向上算起的初始底层数。在按底层厚度计算时,该值四舍五入为整数。"
  4202. #: fdmprinter.def.json
  4203. msgctxt "raft_interface_layers description"
  4204. msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft."
  4205. msgstr "Raft 的底层和表面之间的层数。这些层组成了 Raft 的主要厚度。增加此值会创建一个更厚、更坚固的 Raft。"
  4206. #: fdmprinter.def.json
  4207. msgctxt "brim_line_count description"
  4208. msgid "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area."
  4209. msgstr "brim 所用走线数量。 更多 brim 走线可增强与打印平台的附着,但也会减少有效打印区域。"
  4210. #: fdmprinter.def.json
  4211. msgctxt "support_brim_line_count description"
  4212. msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material."
  4213. msgstr "用于支撑 Brim 的走线数量。更多 Brim 走线可增强与打印平台的附着,但也会增加一些额外材料成本。"
  4214. #: fdmprinter.def.json
  4215. msgctxt "raft_surface_layers description"
  4216. msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1."
  4217. msgstr "第 2 个 raft 层上方的顶层数量。 这些是模型所在的完全填充层。 第二层会产生比第一层更平滑的顶部表面。"
  4218. #: fdmprinter.def.json
  4219. msgctxt "top_layers description"
  4220. msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number."
  4221. msgstr "顶层的数量。 在按顶层厚度计算时,该值舍入为整数。"
  4222. #: fdmprinter.def.json
  4223. msgctxt "roofing_layer_count description"
  4224. msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces."
  4225. msgstr "最顶部皮肤层数。 通常只需一层最顶层就足以生成较高质量的顶部表面。"
  4226. #: fdmprinter.def.json
  4227. msgctxt "support_wall_count description"
  4228. msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used."
  4229. msgstr "包围支撑的墙的数量。添加一堵墙可以使支持打印更加可靠,并且可以更好地支持挂起,但增加了打印时间和使用的材料。"
  4230. #: fdmprinter.def.json
  4231. msgctxt "support_bottom_wall_count description"
  4232. msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used."
  4233. msgstr "包围支撑接触面底板的墙的数量。添加墙可以使支持打印更加可靠,并且可以更好地支持悬垂对象,但增加了打印时间和使用的材料。"
  4234. #: fdmprinter.def.json
  4235. msgctxt "support_roof_wall_count description"
  4236. msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used."
  4237. msgstr "包围支撑接触面顶板的墙的数量。添加墙可以使支持打印更加可靠,并且可以更好地支持悬垂对象,但增加了打印时间和使用的材料。"
  4238. #: fdmprinter.def.json
  4239. msgctxt "support_interface_wall_count description"
  4240. msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used."
  4241. msgstr "包围支撑接触面的墙的数量。添加墙可以使支持打印更加可靠,并且可以更好地支持悬垂对象,但增加了打印时间和使用的材料。"
  4242. #: fdmprinter.def.json
  4243. msgctxt "wall_distribution_count description"
  4244. msgid "The number of walls, counted from the center, over which the variation needs to be spread. Lower values mean that the outer walls don't change in width."
  4245. msgstr "从中心开始计数的壁数量,需要在这些壁上传播变化。较小的值意味着不更改外壁的宽度。"
  4246. #: fdmprinter.def.json
  4247. msgctxt "wall_line_count description"
  4248. msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number."
  4249. msgstr "壁数量。 在按壁厚计算时,该值舍入为整数。"
  4250. #: fdmprinter.def.json
  4251. msgctxt "machine_nozzle_tip_outer_diameter description"
  4252. msgid "The outer diameter of the tip of the nozzle."
  4253. msgstr "喷嘴尖端的外径。"
  4254. #: fdmprinter.def.json
  4255. msgctxt "infill_pattern description"
  4256. msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object."
  4257. msgstr "打印的填充材料的图案。直线和锯齿形填充交替在各层上变换方向,从而降低材料成本。每层都完整地打印网格、三角形、三六边形、立方体、八角形、四分之一立方体、十字和同心图案。螺旋二十四面体、立方体、四分之一立方体和八角形填充随每层变化,以使各方向的强度分布更均衡。闪电形填充尝试通过仅支撑物体顶部,将填充程度降至最低。"
  4258. #: fdmprinter.def.json
  4259. msgctxt "support_pattern description"
  4260. msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support."
  4261. msgstr "打印品支撑结构的图案。 提供的不同选项可实现或牢固或易于拆除的支撑。"
  4262. #: fdmprinter.def.json
  4263. msgctxt "roofing_pattern description"
  4264. msgid "The pattern of the top most layers."
  4265. msgstr "最顶层图案。"
  4266. #: fdmprinter.def.json
  4267. msgctxt "top_bottom_pattern description"
  4268. msgid "The pattern of the top/bottom layers."
  4269. msgstr "顶层/底层图案。"
  4270. #: fdmprinter.def.json
  4271. msgctxt "top_bottom_pattern_0 description"
  4272. msgid "The pattern on the bottom of the print on the first layer."
  4273. msgstr "打印品底部第一层上的图案。"
  4274. #: fdmprinter.def.json
  4275. msgctxt "ironing_pattern description"
  4276. msgid "The pattern to use for ironing top surfaces."
  4277. msgstr "用于熨平顶部表面的图案。"
  4278. #: fdmprinter.def.json
  4279. msgctxt "support_bottom_pattern description"
  4280. msgid "The pattern with which the floors of the support are printed."
  4281. msgstr "打印支撑底板的图案。"
  4282. #: fdmprinter.def.json
  4283. msgctxt "support_interface_pattern description"
  4284. msgid "The pattern with which the interface of the support with the model is printed."
  4285. msgstr "支撑与模型之间接触面的打印图案。"
  4286. #: fdmprinter.def.json
  4287. msgctxt "support_roof_pattern description"
  4288. msgid "The pattern with which the roofs of the support are printed."
  4289. msgstr "打印支撑顶板的图案。"
  4290. #: fdmprinter.def.json
  4291. msgctxt "z_seam_position description"
  4292. msgid "The position near where to start printing each part in a layer."
  4293. msgstr "在该位置附近开始打印层中各个部分。"
  4294. #: fdmprinter.def.json
  4295. msgctxt "support_tree_angle_slow description"
  4296. msgid "The preferred angle of the branches, when they do not have to avoid the model. Use a lower angle to make them more vertical and more stable. Use a higher angle for branches to merge faster."
  4297. msgstr ""
  4298. #: fdmprinter.def.json
  4299. msgctxt "support_tree_rest_preference description"
  4300. msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model."
  4301. msgstr ""
  4302. #: fdmprinter.def.json
  4303. msgctxt "jerk_layer_0 description"
  4304. msgid "The print maximum instantaneous velocity change for the initial layer."
  4305. msgstr "起始层的打印最大瞬时速度变化。"
  4306. #: fdmprinter.def.json
  4307. msgctxt "machine_shape description"
  4308. msgid "The shape of the build plate without taking unprintable areas into account."
  4309. msgstr "打印平台形状(不考虑不可打印区域)。"
  4310. #: fdmprinter.def.json
  4311. msgctxt "machine_head_with_fans_polygon description"
  4312. msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates."
  4313. msgstr "打印头的形状。这些是相对于打印头位置的坐标,打印头通常是其第一个挤出器的位置。打印头左侧和前方的尺寸必须采用负坐标。"
  4314. #: fdmprinter.def.json
  4315. msgctxt "cross_infill_pocket_size description"
  4316. msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself."
  4317. msgstr "交叉 3D 图案的四向交叉处的气槽大小,高度为图案与自身接触的位置。"
  4318. #: fdmprinter.def.json
  4319. msgctxt "coasting_min_volume description"
  4320. msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume."
  4321. msgstr "挤出路径在可以进行滑行前应拥有的最小体积。 对于较小的挤出路径,鲍登管内累积的压力较少,因此滑行空间采用线性扩展。 该值应始终大于滑行空间。"
  4322. #: fdmprinter.def.json
  4323. msgctxt "machine_nozzle_cool_down_speed description"
  4324. msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature."
  4325. msgstr "喷嘴冷却到平均超过正常打印温度和待机温度范围的速度 (°C/s)。"
  4326. #: fdmprinter.def.json
  4327. msgctxt "machine_nozzle_heat_up_speed description"
  4328. msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature."
  4329. msgstr "喷嘴升温到平均超过正常打印温度和待机温度范围的速度 (°C/s)。"
  4330. #: fdmprinter.def.json
  4331. msgctxt "speed_wall_x description"
  4332. msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed."
  4333. msgstr "打印所有内壁的速度。 以比外壁更快的速度打印内壁将减少打印时间。 将该值设为外壁速度和填充速度之间也可行。"
  4334. #: fdmprinter.def.json
  4335. msgctxt "bridge_skin_speed description"
  4336. msgid "The speed at which bridge skin regions are printed."
  4337. msgstr "打印连桥表面区域的速度。"
  4338. #: fdmprinter.def.json
  4339. msgctxt "speed_infill description"
  4340. msgid "The speed at which infill is printed."
  4341. msgstr "打印填充的速度。"
  4342. #: fdmprinter.def.json
  4343. msgctxt "speed_print description"
  4344. msgid "The speed at which printing happens."
  4345. msgstr "打印发生的速度。"
  4346. #: fdmprinter.def.json
  4347. msgctxt "raft_base_speed description"
  4348. msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high."
  4349. msgstr "打印基础 Raft 层的速度。 该层应以很慢的速度打印,因为喷嘴所出的材料量非常高。"
  4350. #: fdmprinter.def.json
  4351. msgctxt "bridge_wall_speed description"
  4352. msgid "The speed at which the bridge walls are printed."
  4353. msgstr "打印桥壁的速度。"
  4354. #: fdmprinter.def.json
  4355. msgctxt "cool_fan_speed_0 description"
  4356. msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height."
  4357. msgstr "风扇在打印开始时旋转的速度。 在随后的层中,风扇速度逐渐增加到对应“正常风扇速度(高度)”的水平。"
  4358. #: fdmprinter.def.json
  4359. msgctxt "cool_fan_speed_min description"
  4360. msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed."
  4361. msgstr "风扇旋转达到阈值前的速度。 当一层的打印速度超过阈值时,风扇速度逐渐朝最大风扇速度增加。"
  4362. #: fdmprinter.def.json
  4363. msgctxt "cool_fan_speed_max description"
  4364. msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit."
  4365. msgstr "风扇在最小层时间上旋转的速度。 当达到阈值时,风扇速度在正常风扇速度和最大风扇速度之间逐渐增加。"
  4366. #: fdmprinter.def.json
  4367. msgctxt "retraction_prime_speed description"
  4368. msgid "The speed at which the filament is primed during a retraction move."
  4369. msgstr "回抽移动期间耗材装填的速度。"
  4370. #: fdmprinter.def.json
  4371. msgctxt "wipe_retraction_prime_speed description"
  4372. msgid "The speed at which the filament is primed during a wipe retraction move."
  4373. msgstr "擦拭回抽移动期间耗材装填的速度。"
  4374. #: fdmprinter.def.json
  4375. msgctxt "switch_extruder_prime_speed description"
  4376. msgid "The speed at which the filament is pushed back after a nozzle switch retraction."
  4377. msgstr "喷嘴切换回抽后耗材被推回的速度。"
  4378. #: fdmprinter.def.json
  4379. msgctxt "retraction_speed description"
  4380. msgid "The speed at which the filament is retracted and primed during a retraction move."
  4381. msgstr "回抽移动期间耗材回抽和装填的速度。"
  4382. #: fdmprinter.def.json
  4383. msgctxt "wipe_retraction_speed description"
  4384. msgid "The speed at which the filament is retracted and primed during a wipe retraction move."
  4385. msgstr "擦拭回抽移动期间耗材回抽和装填的速度。"
  4386. #: fdmprinter.def.json
  4387. msgctxt "switch_extruder_retraction_speed description"
  4388. msgid "The speed at which the filament is retracted during a nozzle switch retract."
  4389. msgstr "喷嘴切换回抽期间耗材回抽的速度。"
  4390. #: fdmprinter.def.json
  4391. msgctxt "retraction_retract_speed description"
  4392. msgid "The speed at which the filament is retracted during a retraction move."
  4393. msgstr "回抽移动期间耗材回抽的速度。"
  4394. #: fdmprinter.def.json
  4395. msgctxt "wipe_retraction_retract_speed description"
  4396. msgid "The speed at which the filament is retracted during a wipe retraction move."
  4397. msgstr "擦拭回抽移动期间耗材回抽的速度。"
  4398. #: fdmprinter.def.json
  4399. msgctxt "switch_extruder_retraction_speeds description"
  4400. msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding."
  4401. msgstr "回抽耗材的速度。 较高的回抽速度效果较好,但回抽速度过高可能导致耗材磨损。"
  4402. #: fdmprinter.def.json
  4403. msgctxt "speed_support_bottom description"
  4404. msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model."
  4405. msgstr "打印支撑底板的速度。 以较低的速度打印可以改善支撑在模型顶部的粘着。"
  4406. #: fdmprinter.def.json
  4407. msgctxt "speed_support_infill description"
  4408. msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability."
  4409. msgstr "打印支撑填充物的速度。 以较低的速度打印填充物可改善稳定性。"
  4410. #: fdmprinter.def.json
  4411. msgctxt "raft_interface_speed description"
  4412. msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high."
  4413. msgstr "打印中间 Raft 层的速度。 该层应以很慢的速度打印,因为喷嘴所出的材料量非常高。"
  4414. #: fdmprinter.def.json
  4415. msgctxt "speed_wall_0 description"
  4416. msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way."
  4417. msgstr "打印最外壁的速度。 以较低速度打印外壁可改善最终皮肤质量。 但是,如果内壁速度和外壁速度差距过大,则将对质量产生负面影响。"
  4418. #: fdmprinter.def.json
  4419. msgctxt "speed_prime_tower description"
  4420. msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal."
  4421. msgstr "打印装填塔的速度。 以较慢速度打印装填塔可以在不同耗材之间的粘着欠佳时使其更加稳定。"
  4422. #: fdmprinter.def.json
  4423. msgctxt "cool_fan_speed description"
  4424. msgid "The speed at which the print cooling fans spin."
  4425. msgstr "打印冷却风扇旋转的速度。"
  4426. #: fdmprinter.def.json
  4427. msgctxt "raft_speed description"
  4428. msgid "The speed at which the raft is printed."
  4429. msgstr "打印 Raft 的速度。"
  4430. #: fdmprinter.def.json
  4431. msgctxt "speed_support_interface description"
  4432. msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality."
  4433. msgstr "打印支撑顶板和底板的速度。 以较低的速度打印可以改善悬垂质量。"
  4434. #: fdmprinter.def.json
  4435. msgctxt "speed_support_roof description"
  4436. msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality."
  4437. msgstr "打印支撑顶板的速度。 以较低的速度打印可以改善悬垂质量。"
  4438. #: fdmprinter.def.json
  4439. msgctxt "skirt_brim_speed description"
  4440. msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed."
  4441. msgstr "打印 skirt 和 brim 的速度。 一般情况是以起始层速度打印这些部分,但有时候您可能想要以不同速度来打印 skirt 或 brim。"
  4442. #: fdmprinter.def.json
  4443. msgctxt "speed_support description"
  4444. msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing."
  4445. msgstr "打印支撑结构的速度。 以更高的速度打印支撑可极大地缩短打印时间。 支撑结构的表面质量并不重要,因为在打印后会将其移除。"
  4446. #: fdmprinter.def.json
  4447. msgctxt "raft_surface_speed description"
  4448. msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines."
  4449. msgstr "打印顶部 Raft 层的速度。 这些层应以较慢的速度打印,以便喷嘴缓慢地整平临近的表面走线。"
  4450. #: fdmprinter.def.json
  4451. msgctxt "speed_z_hop description"
  4452. msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move."
  4453. msgstr "Z 垂直移动实现抬升的速度。一般小于打印速度,因为打印平台或打印机的十字轴较难移动。"
  4454. #: fdmprinter.def.json
  4455. msgctxt "speed_wall description"
  4456. msgid "The speed at which the walls are printed."
  4457. msgstr "打印壁的速度。"
  4458. #: fdmprinter.def.json
  4459. msgctxt "speed_ironing description"
  4460. msgid "The speed at which to pass over the top surface."
  4461. msgstr "通过顶部表面的速度。"
  4462. #: fdmprinter.def.json
  4463. msgctxt "material_break_speed description"
  4464. msgid "The speed at which to retract the filament in order to break it cleanly."
  4465. msgstr "为完全脱落耗材而抽回耗材的速度。"
  4466. #: fdmprinter.def.json
  4467. msgctxt "speed_roofing description"
  4468. msgid "The speed at which top surface skin layers are printed."
  4469. msgstr "打印顶部表面皮肤层的速度。"
  4470. #: fdmprinter.def.json
  4471. msgctxt "speed_topbottom description"
  4472. msgid "The speed at which top/bottom layers are printed."
  4473. msgstr "打印顶部/底部层的速度。"
  4474. #: fdmprinter.def.json
  4475. msgctxt "speed_travel description"
  4476. msgid "The speed at which travel moves are made."
  4477. msgstr "进行空驶的速度。"
  4478. #: fdmprinter.def.json
  4479. msgctxt "coasting_speed description"
  4480. msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops."
  4481. msgstr "滑行期间的移动速度,相对于挤出路径的速度。 建议采用略低于 100% 的值,因为在滑行移动期间鲍登管中的压力会下降。"
  4482. #: fdmprinter.def.json
  4483. msgctxt "speed_layer_0 description"
  4484. msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft."
  4485. msgstr "起始层的速度。建议采用较低的值以便改善与构建板的粘着。不会影响构建板自身的粘着结构,如边沿和筏。"
  4486. #: fdmprinter.def.json
  4487. msgctxt "speed_print_layer_0 description"
  4488. msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate."
  4489. msgstr "打印起始层的速度。 建议采用较低的值以便改善与打印平台的粘着。"
  4490. #: fdmprinter.def.json
  4491. msgctxt "speed_travel_layer_0 description"
  4492. msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed."
  4493. msgstr "起始层中的空驶速度。 建议采用较低的值,以防止将之前打印的部分从打印平台上拉离。 该设置的值可以根据空驶速度和打印速度的比率自动计算得出。"
  4494. #: fdmprinter.def.json
  4495. msgctxt "material_break_temperature description"
  4496. msgid "The temperature at which the filament is broken for a clean break."
  4497. msgstr "耗材在完全脱落时的温度。"
  4498. #: fdmprinter.def.json
  4499. msgctxt "build_volume_temperature description"
  4500. msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted."
  4501. msgstr "打印环境温度。若为 0,将不会调整构建体积温度。"
  4502. #: fdmprinter.def.json
  4503. msgctxt "material_standby_temperature description"
  4504. msgid "The temperature of the nozzle when another nozzle is currently used for printing."
  4505. msgstr "当另一个喷嘴正用于打印时该喷嘴的温度。"
  4506. #: fdmprinter.def.json
  4507. msgctxt "material_final_print_temperature description"
  4508. msgid "The temperature to which to already start cooling down just before the end of printing."
  4509. msgstr "打印结束前开始冷却的温度。"
  4510. #: fdmprinter.def.json
  4511. msgctxt "material_print_temperature_layer_0 description"
  4512. msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer."
  4513. msgstr "用于打印第一层的温度。 设为 0 即禁用对起始层的特别处理。"
  4514. #: fdmprinter.def.json
  4515. msgctxt "material_print_temperature description"
  4516. msgid "The temperature used for printing."
  4517. msgstr "用于打印的温度。"
  4518. #: fdmprinter.def.json
  4519. msgctxt "material_bed_temperature_layer_0 description"
  4520. msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer."
  4521. msgstr "打印第一层时用于加热构建板的温度。如果此项为 0,则在打印第一层期间保持不加热构建板。"
  4522. #: fdmprinter.def.json
  4523. msgctxt "material_bed_temperature description"
  4524. msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated."
  4525. msgstr "用于加热构建板的温度。如果此项为 0,则保持不加热构建板。"
  4526. #: fdmprinter.def.json
  4527. msgctxt "material_break_preparation_temperature description"
  4528. msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature."
  4529. msgstr "用于清除材料的温度,应大致等于可达到的最高打印温度。"
  4530. #: fdmprinter.def.json
  4531. msgctxt "bottom_thickness description"
  4532. msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers."
  4533. msgstr "打印品中底层的厚度。 此值除以层高定义底层数量。"
  4534. #: fdmprinter.def.json
  4535. msgctxt "skin_edge_support_thickness description"
  4536. msgid "The thickness of the extra infill that supports skin edges."
  4537. msgstr "支撑皮肤边缘的额外填充物的厚度。"
  4538. #: fdmprinter.def.json
  4539. msgctxt "support_interface_height description"
  4540. msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top."
  4541. msgstr "支撑与模型在底部或顶部接触的接触面厚度。"
  4542. #: fdmprinter.def.json
  4543. msgctxt "support_bottom_height description"
  4544. msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests."
  4545. msgstr "支撑底板的厚度。 这会控制支撑所停放的模型顶部区域所打印的密集层数量。"
  4546. #: fdmprinter.def.json
  4547. msgctxt "support_roof_height description"
  4548. msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests."
  4549. msgstr "支撑顶板的厚度。 这会控制模型所停放的支撑顶部密集层的数量。"
  4550. #: fdmprinter.def.json
  4551. msgctxt "top_thickness description"
  4552. msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers."
  4553. msgstr "打印品中顶层的厚度。 该值除以层高定义顶层的数量。"
  4554. #: fdmprinter.def.json
  4555. msgctxt "top_bottom_thickness description"
  4556. msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers."
  4557. msgstr "打印品中顶层/底层的厚度。 该值除以层高定义顶层/底层的数量。"
  4558. #: fdmprinter.def.json
  4559. msgctxt "wall_thickness description"
  4560. msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls."
  4561. msgstr "水平方向的壁厚度。 此值除以壁线宽度定义壁数量。"
  4562. #: fdmprinter.def.json
  4563. msgctxt "infill_sparse_thickness description"
  4564. msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded."
  4565. msgstr "填充材料每层的厚度。 该值应始终为层高的乘数,否则应进行舍入。"
  4566. #: fdmprinter.def.json
  4567. msgctxt "support_infill_sparse_thickness description"
  4568. msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded."
  4569. msgstr "支撑填充材料每层的厚度。 该值应始终为层高的乘数,否则应进行舍入。"
  4570. #: fdmprinter.def.json
  4571. msgctxt "machine_gcode_flavor description"
  4572. msgid "The type of g-code to be generated."
  4573. msgstr "需要生成的 G-code 类型。"
  4574. #: fdmprinter.def.json
  4575. msgctxt "coasting_volume description"
  4576. msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed."
  4577. msgstr "该体积如不进行滑行则会渗出。 该值一般应接近喷嘴立方直径。"
  4578. #: fdmprinter.def.json
  4579. msgctxt "machine_width description"
  4580. msgid "The width (X-direction) of the printable area."
  4581. msgstr "机器可打印区域宽度(X 坐标)"
  4582. #: fdmprinter.def.json
  4583. msgctxt "support_brim_width description"
  4584. msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material."
  4585. msgstr "在支撑下方要打印的 Brim 的宽度。较大的 Brim 可增强与打印平台的附着,但也会增加一些额外材料成本。"
  4586. #: fdmprinter.def.json
  4587. msgctxt "interlocking_beam_width description"
  4588. msgid "The width of the interlocking structure beams."
  4589. msgstr "互锁结构梁的宽度。"
  4590. #: fdmprinter.def.json
  4591. msgctxt "prime_tower_size description"
  4592. msgid "The width of the prime tower."
  4593. msgstr "装填塔的宽度。"
  4594. #: fdmprinter.def.json
  4595. msgctxt "magic_fuzzy_skin_thickness description"
  4596. msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered."
  4597. msgstr "在其中进行抖动的宽度。 建议让此值低于外壁宽度,因为内壁不会更改。"
  4598. #: fdmprinter.def.json
  4599. msgctxt "retraction_extrusion_window description"
  4600. msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited."
  4601. msgstr "执行最大回抽计数的范围。 该值应与回抽距离大致相同,以便一次回抽通过同一块材料的次数得到有效限制。"
  4602. #: fdmprinter.def.json
  4603. msgctxt "prime_tower_position_x description"
  4604. msgid "The x coordinate of the position of the prime tower."
  4605. msgstr "装填塔位置的 X 坐标。"
  4606. #: fdmprinter.def.json
  4607. msgctxt "prime_tower_position_y description"
  4608. msgid "The y coordinate of the position of the prime tower."
  4609. msgstr "装填塔位置的 y 坐标。"
  4610. #: fdmprinter.def.json
  4611. msgctxt "support_meshes_present description"
  4612. msgid "There are support meshes present in the scene. This setting is controlled by Cura."
  4613. msgstr "场景中存在支撑网格。此设置受 Cura 控制。"
  4614. #: fdmprinter.def.json
  4615. msgctxt "bridge_wall_coast description"
  4616. msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge."
  4617. msgstr "此参数用于控制挤出机在开始打印桥壁前应该滑行的距离。在开始打印连桥之前滑行,可以降低喷嘴中的压力,并保证打印出平滑的连桥。"
  4618. #: fdmprinter.def.json
  4619. msgctxt "raft_smoothing description"
  4620. msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle."
  4621. msgstr "该设置控制 Raft 轮廓中的内角呈圆形的程度。内向角被设置为半圆形,半径等于此处的值。此设置还会移除 raft 轮廓中小于此半圆形的孔。"
  4622. #: fdmprinter.def.json
  4623. msgctxt "retraction_count_max description"
  4624. msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues."
  4625. msgstr "此设置限制在最小挤出距离范围内发生的回抽数。 此范围内的额外回抽将会忽略。 这避免了在同一件耗材上重复回抽,从而导致耗材变扁并引起磨损问题。"
  4626. #: fdmprinter.def.json
  4627. msgctxt "draft_shield_enabled description"
  4628. msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily."
  4629. msgstr "这将在模型周围创建一个壁,该壁会吸住(热)空气并遮住外部气流。 对于容易卷曲的材料尤为有用。"
  4630. #: fdmprinter.def.json
  4631. msgctxt "support_tree_tip_diameter label"
  4632. msgid "Tip Diameter"
  4633. msgstr ""
  4634. #: fdmprinter.def.json
  4635. msgctxt "material_shrinkage_percentage_xy description"
  4636. msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)."
  4637. msgstr "为了补偿材料在冷却时的收缩,将用此因子在 XY 方向(水平)上缩放模型。"
  4638. #: fdmprinter.def.json
  4639. msgctxt "material_shrinkage_percentage_z description"
  4640. msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)."
  4641. msgstr "为了补偿材料在冷却时的收缩,将用此因子在 Z 方向(垂直)上缩放模型。"
  4642. #: fdmprinter.def.json
  4643. msgctxt "material_shrinkage_percentage description"
  4644. msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor."
  4645. msgstr "为了补偿材料在冷却时的收缩,将用此因子缩放模型。"
  4646. #: fdmprinter.def.json
  4647. msgctxt "top_layers label"
  4648. msgid "Top Layers"
  4649. msgstr "顶部层数"
  4650. #: fdmprinter.def.json
  4651. msgctxt "top_skin_expand_distance label"
  4652. msgid "Top Skin Expand Distance"
  4653. msgstr "顶部皮肤扩展距离"
  4654. #: fdmprinter.def.json
  4655. msgctxt "top_skin_preshrink label"
  4656. msgid "Top Skin Removal Width"
  4657. msgstr "顶部皮肤移除宽度"
  4658. #: fdmprinter.def.json
  4659. msgctxt "acceleration_roofing label"
  4660. msgid "Top Surface Skin Acceleration"
  4661. msgstr "顶部表面皮肤加速度"
  4662. #: fdmprinter.def.json
  4663. msgctxt "roofing_extruder_nr label"
  4664. msgid "Top Surface Skin Extruder"
  4665. msgstr "顶部皮肤挤出机"
  4666. #: fdmprinter.def.json
  4667. msgctxt "roofing_material_flow label"
  4668. msgid "Top Surface Skin Flow"
  4669. msgstr "顶部表层流量"
  4670. #: fdmprinter.def.json
  4671. msgctxt "jerk_roofing label"
  4672. msgid "Top Surface Skin Jerk"
  4673. msgstr "顶部表面皮肤抖动速度"
  4674. #: fdmprinter.def.json
  4675. msgctxt "roofing_layer_count label"
  4676. msgid "Top Surface Skin Layers"
  4677. msgstr "顶部表面皮肤层"
  4678. #: fdmprinter.def.json
  4679. msgctxt "roofing_angles label"
  4680. msgid "Top Surface Skin Line Directions"
  4681. msgstr "顶部表面皮肤走线方向"
  4682. #: fdmprinter.def.json
  4683. msgctxt "roofing_line_width label"
  4684. msgid "Top Surface Skin Line Width"
  4685. msgstr "顶部表面皮肤线宽"
  4686. #: fdmprinter.def.json
  4687. msgctxt "roofing_pattern label"
  4688. msgid "Top Surface Skin Pattern"
  4689. msgstr "顶部表面皮肤图案"
  4690. #: fdmprinter.def.json
  4691. msgctxt "speed_roofing label"
  4692. msgid "Top Surface Skin Speed"
  4693. msgstr "顶部表面皮肤速度"
  4694. #: fdmprinter.def.json
  4695. msgctxt "top_thickness label"
  4696. msgid "Top Thickness"
  4697. msgstr "顶层厚度"
  4698. #: fdmprinter.def.json
  4699. msgctxt "max_skin_angle_for_expansion description"
  4700. msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded."
  4701. msgstr "如果对象的顶部和/或底部表面的角度大于此设置,则不要扩展其顶部/底部皮肤。这会避免扩展在模型表面有接近垂直的坡度时所形成的狭窄皮肤区域。0° 的角为水平,将导致不扩展任何皮肤,而 90° 的角为垂直,将导致扩展所有皮肤。"
  4702. #: fdmprinter.def.json
  4703. msgctxt "top_bottom description"
  4704. msgid "Top/Bottom"
  4705. msgstr "顶 / 底层"
  4706. #: fdmprinter.def.json
  4707. msgctxt "top_bottom label"
  4708. msgid "Top/Bottom"
  4709. msgstr "顶 / 底层"
  4710. #: fdmprinter.def.json
  4711. msgctxt "acceleration_topbottom label"
  4712. msgid "Top/Bottom Acceleration"
  4713. msgstr "顶部/底部加速度"
  4714. #: fdmprinter.def.json
  4715. msgctxt "top_bottom_extruder_nr label"
  4716. msgid "Top/Bottom Extruder"
  4717. msgstr "顶部/底部挤出机"
  4718. #: fdmprinter.def.json
  4719. msgctxt "skin_material_flow label"
  4720. msgid "Top/Bottom Flow"
  4721. msgstr "顶部/底部流量"
  4722. #: fdmprinter.def.json
  4723. msgctxt "jerk_topbottom label"
  4724. msgid "Top/Bottom Jerk"
  4725. msgstr "顶部/底部抖动速度"
  4726. #: fdmprinter.def.json
  4727. msgctxt "skin_angles label"
  4728. msgid "Top/Bottom Line Directions"
  4729. msgstr "顶层/底层走线方向"
  4730. #: fdmprinter.def.json
  4731. msgctxt "skin_line_width label"
  4732. msgid "Top/Bottom Line Width"
  4733. msgstr "走线宽度(顶层 / 底层)"
  4734. #: fdmprinter.def.json
  4735. msgctxt "top_bottom_pattern label"
  4736. msgid "Top/Bottom Pattern"
  4737. msgstr "顶部 / 底部走线图案"
  4738. #: fdmprinter.def.json
  4739. msgctxt "speed_topbottom label"
  4740. msgid "Top/Bottom Speed"
  4741. msgstr "速度(顶部 / 底部)"
  4742. #: fdmprinter.def.json
  4743. msgctxt "top_bottom_thickness label"
  4744. msgid "Top/Bottom Thickness"
  4745. msgstr "顶层 / 底层厚度"
  4746. #: fdmprinter.def.json
  4747. msgctxt "support_type option buildplate"
  4748. msgid "Touching Buildplate"
  4749. msgstr "支撑打印平台"
  4750. #: fdmprinter.def.json
  4751. msgctxt "support_tower_diameter label"
  4752. msgid "Tower Diameter"
  4753. msgstr "塔直径"
  4754. #: fdmprinter.def.json
  4755. msgctxt "support_tower_roof_angle label"
  4756. msgid "Tower Roof Angle"
  4757. msgstr "塔顶板角度"
  4758. #: fdmprinter.def.json
  4759. msgctxt "mesh_rotation_matrix description"
  4760. msgid "Transformation matrix to be applied to the model when loading it from file."
  4761. msgstr "在将模型从文件中载入时应用在模型上的转换矩阵。"
  4762. #: fdmprinter.def.json
  4763. msgctxt "travel label"
  4764. msgid "Travel"
  4765. msgstr "移动"
  4766. #: fdmprinter.def.json
  4767. msgctxt "acceleration_travel label"
  4768. msgid "Travel Acceleration"
  4769. msgstr "空驶加速度"
  4770. #: fdmprinter.def.json
  4771. msgctxt "travel_avoid_distance label"
  4772. msgid "Travel Avoid Distance"
  4773. msgstr "空驶避让距离"
  4774. #: fdmprinter.def.json
  4775. msgctxt "jerk_travel label"
  4776. msgid "Travel Jerk"
  4777. msgstr "空驶抖动速度"
  4778. #: fdmprinter.def.json
  4779. msgctxt "speed_travel label"
  4780. msgid "Travel Speed"
  4781. msgstr "空驶速度"
  4782. #: fdmprinter.def.json
  4783. msgctxt "magic_mesh_surface_mode description"
  4784. msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces."
  4785. msgstr "将模型作为仅表面、一个空间或多个具有松散表面的空间处理。 正常打印模式仅打印封闭的空间。 “表面”打印跟踪网格表面的单个壁,没有填充物,也没有顶部/底部皮肤。 \"两者都\"将封闭空间正常打印,并将任何剩余多边形作为表面打印。"
  4786. #: fdmprinter.def.json
  4787. msgctxt "support_structure option tree"
  4788. msgid "Tree"
  4789. msgstr "树形"
  4790. #: fdmprinter.def.json
  4791. msgctxt "infill_pattern option trihexagon"
  4792. msgid "Tri-Hexagon"
  4793. msgstr "内六角"
  4794. #: fdmprinter.def.json
  4795. msgctxt "infill_pattern option triangles"
  4796. msgid "Triangles"
  4797. msgstr "三角形"
  4798. #: fdmprinter.def.json
  4799. msgctxt "support_bottom_pattern option triangles"
  4800. msgid "Triangles"
  4801. msgstr "三角形"
  4802. #: fdmprinter.def.json
  4803. msgctxt "support_interface_pattern option triangles"
  4804. msgid "Triangles"
  4805. msgstr "三角形"
  4806. #: fdmprinter.def.json
  4807. msgctxt "support_pattern option triangles"
  4808. msgid "Triangles"
  4809. msgstr "三角形"
  4810. #: fdmprinter.def.json
  4811. msgctxt "support_roof_pattern option triangles"
  4812. msgid "Triangles"
  4813. msgstr "三角形"
  4814. #: fdmprinter.def.json
  4815. msgctxt "support_tree_max_diameter label"
  4816. msgid "Trunk Diameter"
  4817. msgstr ""
  4818. #: fdmprinter.def.json
  4819. msgctxt "machine_gcode_flavor option UltiGCode"
  4820. msgid "Ultimaker 2"
  4821. msgstr "Ultimaker 2"
  4822. #: fdmprinter.def.json
  4823. msgctxt "meshfix_union_all label"
  4824. msgid "Union Overlapping Volumes"
  4825. msgstr "联合覆盖体积"
  4826. #: fdmprinter.def.json
  4827. msgctxt "bridge_wall_min_length description"
  4828. msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings."
  4829. msgstr "将使用正常壁设置打印短于此长度且没有支撑的壁。将使用桥壁设置打印长于此长度且没有支撑的壁。"
  4830. #: fdmprinter.def.json
  4831. msgctxt "adaptive_layer_height_enabled label"
  4832. msgid "Use Adaptive Layers"
  4833. msgstr "使用自适应图层"
  4834. #: fdmprinter.def.json
  4835. msgctxt "support_use_towers label"
  4836. msgid "Use Towers"
  4837. msgstr "使用塔"
  4838. #: fdmprinter.def.json
  4839. msgctxt "acceleration_travel_enabled description"
  4840. msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination."
  4841. msgstr "空驶时使用单独的加速度。如果禁用,空驶将使用打印线在目的地的加速度值。"
  4842. #: fdmprinter.def.json
  4843. msgctxt "jerk_travel_enabled description"
  4844. msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination."
  4845. msgstr "空驶时使用单独的抖动速度。如果禁用,空驶将使用打印线在目的地的抖动速度值。"
  4846. #: fdmprinter.def.json
  4847. msgctxt "relative_extrusion description"
  4848. msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output."
  4849. msgstr "使用相对挤出而不是绝对挤出。使用相对 E 步阶,以便对 G-code 进行更轻松的后期处理。但是,并非所有打印机均支持此功能,而且与绝对 E 步阶相比,此功能在沉积材料量上会产生非常轻微的偏差。不论是否启用此设置,挤出模式将始终在设置为绝对挤出后才输出任何 G-code 脚本。"
  4850. #: fdmprinter.def.json
  4851. msgctxt "support_use_towers description"
  4852. msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof."
  4853. msgstr "使用专门的塔来支撑较小的悬垂区域。 这些塔的直径比它们所支撑的区域要大。 在靠近悬垂物时,塔的直径减小,形成顶板。"
  4854. #: fdmprinter.def.json
  4855. msgctxt "infill_mesh description"
  4856. msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh."
  4857. msgstr "使用此网格修改与其重叠的其他网格的填充物。 利用此网格的区域替换其他网格的填充区域。 建议仅为此网格打印一个壁,而不打印顶部/底部皮肤。"
  4858. #: fdmprinter.def.json
  4859. msgctxt "support_mesh description"
  4860. msgid "Use this mesh to specify support areas. This can be used to generate support structure."
  4861. msgstr "使用此网格指定支撑区域。 可用于生成支撑结构。"
  4862. #: fdmprinter.def.json
  4863. msgctxt "anti_overhang_mesh description"
  4864. msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure."
  4865. msgstr "使用此网格指定模型的任何部分不应被检测为悬垂的区域。 可用于移除不需要的支撑结构。"
  4866. #: fdmprinter.def.json
  4867. msgctxt "z_seam_type option back"
  4868. msgid "User Specified"
  4869. msgstr "用户指定"
  4870. #: fdmprinter.def.json
  4871. msgctxt "material_shrinkage_percentage_z label"
  4872. msgid "Vertical Scaling Factor Shrinkage Compensation"
  4873. msgstr "垂直缩放因子收缩补偿"
  4874. #: fdmprinter.def.json
  4875. msgctxt "slicing_tolerance description"
  4876. msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface."
  4877. msgstr "切片层的垂直公差。一般通过穿过每层厚度的中间截取横截面而产生该层的轮廓(中间)。此外,每层均可有一些区域,这些区域落入体积内部并遍布该层的整个厚度(排除),或层具有一些区域,这些区域落入该层内的任意位置(包含)。“包含”保留最多的细节,“排除”有利于最佳贴合,而“中间”保持最接近原始表面。"
  4878. #: fdmprinter.def.json
  4879. msgctxt "material_bed_temp_wait label"
  4880. msgid "Wait for Build Plate Heatup"
  4881. msgstr "等待打印平台加热"
  4882. #: fdmprinter.def.json
  4883. msgctxt "material_print_temp_wait label"
  4884. msgid "Wait for Nozzle Heatup"
  4885. msgstr "等待喷嘴加热"
  4886. #: fdmprinter.def.json
  4887. msgctxt "acceleration_wall label"
  4888. msgid "Wall Acceleration"
  4889. msgstr "壁加速度"
  4890. #: fdmprinter.def.json
  4891. msgctxt "wall_distribution_count label"
  4892. msgid "Wall Distribution Count"
  4893. msgstr "壁分派次数"
  4894. #: fdmprinter.def.json
  4895. msgctxt "wall_extruder_nr label"
  4896. msgid "Wall Extruder"
  4897. msgstr "壁挤出机"
  4898. #: fdmprinter.def.json
  4899. msgctxt "wall_material_flow label"
  4900. msgid "Wall Flow"
  4901. msgstr "壁流量"
  4902. #: fdmprinter.def.json
  4903. msgctxt "jerk_wall label"
  4904. msgid "Wall Jerk"
  4905. msgstr "壁抖动速度"
  4906. #: fdmprinter.def.json
  4907. msgctxt "wall_line_count label"
  4908. msgid "Wall Line Count"
  4909. msgstr "壁走线次数"
  4910. #: fdmprinter.def.json
  4911. msgctxt "wall_line_width label"
  4912. msgid "Wall Line Width"
  4913. msgstr "走线宽度(壁)"
  4914. #: fdmprinter.def.json
  4915. msgctxt "inset_direction label"
  4916. msgid "Wall Ordering"
  4917. msgstr "壁顺序"
  4918. #: fdmprinter.def.json
  4919. msgctxt "speed_wall label"
  4920. msgid "Wall Speed"
  4921. msgstr "速度(壁)"
  4922. #: fdmprinter.def.json
  4923. msgctxt "wall_thickness label"
  4924. msgid "Wall Thickness"
  4925. msgstr "壁厚"
  4926. #: fdmprinter.def.json
  4927. msgctxt "wall_transition_length label"
  4928. msgid "Wall Transition Length"
  4929. msgstr "壁过渡长度"
  4930. #: fdmprinter.def.json
  4931. msgctxt "wall_transition_filter_distance label"
  4932. msgid "Wall Transitioning Filter Distance"
  4933. msgstr "壁过渡筛选距离"
  4934. #: fdmprinter.def.json
  4935. msgctxt "wall_transition_filter_deviation label"
  4936. msgid "Wall Transitioning Filter Margin"
  4937. msgstr "壁过渡筛选边距"
  4938. #: fdmprinter.def.json
  4939. msgctxt "wall_transition_angle label"
  4940. msgid "Wall Transitioning Threshold Angle"
  4941. msgstr "壁过渡阈值角度"
  4942. #: fdmprinter.def.json
  4943. msgctxt "shell label"
  4944. msgid "Walls"
  4945. msgstr "墙"
  4946. #: fdmprinter.def.json
  4947. msgctxt "wall_overhang_angle description"
  4948. msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either."
  4949. msgstr "悬垂超过此角度的壁将使用悬垂壁设置打印。该值为 90 时,不会将任何壁视为悬垂。受到支撑支持的悬垂也不会被视为悬垂。"
  4950. #: fdmprinter.def.json
  4951. msgctxt "support_interface_skip_height description"
  4952. msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface."
  4953. msgstr "在检查支撑上方或下方是否有模型时,采用指定高度的步阶。 值越低切片速度越慢,而较高的值会导致在部分应有支撑接触面的位置打印一般的支撑。"
  4954. #: fdmprinter.def.json
  4955. msgctxt "infill_enable_travel_optimization description"
  4956. msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased."
  4957. msgstr "启用后,可优化打印填充走线的顺序,缩短空驶距离。空驶时间的缩短很大程度上取决于被切割的模型、填充图案、密度等。请注意,对于具有许多小填充区域的一些模型,分割模型的时间可能会大幅增加。"
  4958. #: fdmprinter.def.json
  4959. msgctxt "support_fan_enable description"
  4960. msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support."
  4961. msgstr "启用时,会为支撑正上方的表面区域更改打印冷却风扇速度。"
  4962. #: fdmprinter.def.json
  4963. msgctxt "z_seam_relative description"
  4964. msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate."
  4965. msgstr "启用时,Z 缝坐标为相对于各个部分中心的值。 禁用时,坐标定义打印平台上的一个绝对位置。"
  4966. #: fdmprinter.def.json
  4967. msgctxt "retraction_combing_max_distance description"
  4968. msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
  4969. msgstr "当大于零时,比这段距离更长的梳理空驶将会使用回抽。如果设置为零,则没有最大值,梳理空驶将不会使用回抽。"
  4970. #: fdmprinter.def.json
  4971. msgctxt "hole_xy_offset_max_diameter description"
  4972. msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded."
  4973. msgstr ""
  4974. #: fdmprinter.def.json
  4975. msgctxt "bridge_skin_material_flow description"
  4976. msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
  4977. msgstr "打印连桥表面区域时,将挤出的材料量乘以此值。"
  4978. #: fdmprinter.def.json
  4979. msgctxt "bridge_wall_material_flow description"
  4980. msgid "When printing bridge walls, the amount of material extruded is multiplied by this value."
  4981. msgstr "打印桥壁时,将挤出的材料量乘以此值。"
  4982. #: fdmprinter.def.json
  4983. msgctxt "bridge_skin_material_flow_2 description"
  4984. msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value."
  4985. msgstr "打印连桥第二层表面时,将挤出的材料量乘以此值。"
  4986. #: fdmprinter.def.json
  4987. msgctxt "bridge_skin_material_flow_3 description"
  4988. msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value."
  4989. msgstr "打印连桥第三层表面时,将挤出的材料量乘以此值。"
  4990. #: fdmprinter.def.json
  4991. msgctxt "cool_lift_head description"
  4992. msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached."
  4993. msgstr "当因最低层时间达到最低速度时,将打印头从打印品上提升,并等候达到最低层时间。"
  4994. #: fdmprinter.def.json
  4995. msgctxt "skin_no_small_gaps_heuristic description"
  4996. msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air."
  4997. msgstr "当模型中只有几个分层有微小垂直间隙时,通常狭窄空间的分层周围应有表层。如果垂直间隙非常小,则启用此设置不生成表层。这缩短了打印时间和切片时间,但从技术方面看,会使填充物暴露在空气中。"
  4998. #: fdmprinter.def.json
  4999. msgctxt "wall_transition_angle description"
  5000. msgid "When to create transitions between even and odd numbers of walls. A wedge shape with an angle greater than this setting will not have transitions and no walls will be printed in the center to fill the remaining space. Reducing this setting reduces the number and length of these center walls, but may leave gaps or overextrude."
  5001. msgstr "在奇数和偶数壁之间创建过渡时。角度大于此设置的楔形将没有过渡,并且不会在中心打印壁来填充剩余空间。减少此设置会减少这些中心壁的数量和长度,但可能会留下空隙或挤出过多。"
  5002. #: fdmprinter.def.json
  5003. msgctxt "wall_transition_length description"
  5004. msgid "When transitioning between different numbers of walls as the part becomes thinner, a certain amount of space is allotted to split or join the wall lines."
  5005. msgstr "当随着零件变薄而在不同数量的壁之间过渡时,会分配一定数量的间距来分割或连接壁走线。"
  5006. #: fdmprinter.def.json
  5007. msgctxt "wipe_hop_enable description"
  5008. msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate."
  5009. msgstr "在擦拭时,构建板会降低以在喷嘴与打印件之间形成间隙。这样可防止喷嘴在行程中撞击打印件,降低从构建板上撞掉打印件的可能性。"
  5010. #: fdmprinter.def.json
  5011. msgctxt "retraction_hop_enabled description"
  5012. msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate."
  5013. msgstr "每当回抽完成时,打印平台会降低以便在喷嘴和打印品之间形成空隙。 它可以防止喷嘴在空驶过程中撞到打印品,降低将打印品从打印平台撞掉的几率。"
  5014. #: fdmprinter.def.json
  5015. msgctxt "support_xy_overrides_z description"
  5016. msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs."
  5017. msgstr "支撑 X/Y 距离是否覆盖支撑 Z 距离或反之。 当 X/Y 覆盖 Z 时,X/Y 距离可将支撑从模型上推离,影响与悬垂之间的实际 Z 距离。 我们可以通过不在悬垂周围应用 X/Y 距离来禁用此选项。"
  5018. #: fdmprinter.def.json
  5019. msgctxt "machine_center_is_zero description"
  5020. msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area."
  5021. msgstr "打印机零位的 X/Y 坐标是否位于可打印区域的中心。"
  5022. #: fdmprinter.def.json
  5023. msgctxt "machine_endstop_positive_direction_x description"
  5024. msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)."
  5025. msgstr "指定 X 轴的限位开关位于正向(高 X 轴坐标)还是负向(低 X 轴坐标)。"
  5026. #: fdmprinter.def.json
  5027. msgctxt "machine_endstop_positive_direction_y description"
  5028. msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)."
  5029. msgstr "指定 Y 轴的限位开关位于正向(高 Y 轴坐标)还是负向(低 Y 轴坐标)。"
  5030. #: fdmprinter.def.json
  5031. msgctxt "machine_endstop_positive_direction_z description"
  5032. msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)."
  5033. msgstr "指定 Z 轴的限位开关位于正向(高 Z 轴坐标)还是负向(低 Z 轴坐标)。"
  5034. #: fdmprinter.def.json
  5035. msgctxt "machine_extruders_share_heater description"
  5036. msgid "Whether the extruders share a single heater rather than each extruder having its own heater."
  5037. msgstr "挤出器是否共用一个加热器,而不是每个挤出器都有自己的加热器。"
  5038. #: fdmprinter.def.json
  5039. msgctxt "machine_extruders_share_nozzle description"
  5040. msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter."
  5041. msgstr "挤出器是否共用一个喷嘴,而不是每个挤出器都有自己的喷嘴。当设置为 true 时,预计打印机启动 gcode 脚本会将所有挤出器正确设置为已知且相互兼容的初始缩回状态 (零根或一根细丝未缩回);在这种情况下,会通过“machine_extruders_shared_nozzle_initial_retraction”参数描述每个挤出器的初始缩回状态。"
  5042. #: fdmprinter.def.json
  5043. msgctxt "machine_heated_bed description"
  5044. msgid "Whether the machine has a heated build plate present."
  5045. msgstr "机器是否有加热打印平台。"
  5046. #: fdmprinter.def.json
  5047. msgctxt "machine_heated_build_volume description"
  5048. msgid "Whether the machine is able to stabilize the build volume temperature."
  5049. msgstr "机器是否能够稳定构建体积温度。"
  5050. #: fdmprinter.def.json
  5051. msgctxt "center_object description"
  5052. msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved."
  5053. msgstr "是否将模型放置在打印平台中心 (0,0),而不是使用模型在其中保存的坐标系统。"
  5054. #: fdmprinter.def.json
  5055. msgctxt "machine_nozzle_temp_enabled description"
  5056. msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura."
  5057. msgstr "是否从 Cura 控制温度。 关闭此选项,从 Cura 外部控制喷嘴温度。"
  5058. #: fdmprinter.def.json
  5059. msgctxt "material_bed_temp_prepend description"
  5060. msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting."
  5061. msgstr "是否需要在 G-code 开始部分包含检查热床温度的命令。当 start_gcode 包含热床温度命令时,Cura 前端将自动禁用此设置。"
  5062. #: fdmprinter.def.json
  5063. msgctxt "material_print_temp_prepend description"
  5064. msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting."
  5065. msgstr "是否在 gcode 开始部分包含喷嘴温度命令。 当 start_gcode 已包含喷嘴温度命令时,Cura 前端将自动禁用此设置。"
  5066. #: fdmprinter.def.json
  5067. msgctxt "clean_between_layers description"
  5068. msgid "Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working."
  5069. msgstr "是否包括图层切换后擦拭喷嘴的 G-Code(每层最多 1 个)。启用此设置可能会影响图层变化时的回抽。请使用“擦拭回抽”设置来控制擦拭脚本将在其中工作的图层回抽。"
  5070. #: fdmprinter.def.json
  5071. msgctxt "material_bed_temp_wait description"
  5072. msgid "Whether to insert a command to wait until the build plate temperature is reached at the start."
  5073. msgstr "是否插入一条命令,等待开始时达到打印平台温度。"
  5074. #: fdmprinter.def.json
  5075. msgctxt "prime_blob_enable description"
  5076. msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time."
  5077. msgstr "打印前是否装填有光点的耗材。 开启此设置将确保打印前挤出机的喷嘴处已准备好材料。 打印 Brim 或 Skirt 也可作为装填用途,这种情况下关闭此设置可以节省时间。"
  5078. #: fdmprinter.def.json
  5079. msgctxt "print_sequence description"
  5080. msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes."
  5081. msgstr "是要一次一层地打印所有模型,还是要等待打印完一个模型后再继续打印下一个。如果 a) 仅启用了一个挤出器,并且 b) 分离所有模型的方式使得整个打印头可在这些模型间移动,并且所有模型都低于喷嘴与 X/Y 轴之间的距离,则可使用排队打印模式。"
  5082. #: fdmprinter.def.json
  5083. msgctxt "machine_show_variants description"
  5084. msgid "Whether to show the different variants of this machine, which are described in separate json files."
  5085. msgstr "这台打印机是否需要显示它在不同的 JSON 文件中所描述的不同变化。"
  5086. #: fdmprinter.def.json
  5087. msgctxt "machine_firmware_retract description"
  5088. msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material."
  5089. msgstr "是否使用固件收回命令 (G10/G11) 而不是使用 G1 命令中的 E 属性来收回材料。"
  5090. #: fdmprinter.def.json
  5091. msgctxt "material_print_temp_wait description"
  5092. msgid "Whether to wait until the nozzle temperature is reached at the start."
  5093. msgstr "是否等待开始时达到喷嘴温度。"
  5094. #: fdmprinter.def.json
  5095. msgctxt "infill_line_width description"
  5096. msgid "Width of a single infill line."
  5097. msgstr "单一填充走线宽度。"
  5098. #: fdmprinter.def.json
  5099. msgctxt "support_interface_line_width description"
  5100. msgid "Width of a single line of support roof or floor."
  5101. msgstr "支撑顶板或底板单一走线宽度。"
  5102. #: fdmprinter.def.json
  5103. msgctxt "roofing_line_width description"
  5104. msgid "Width of a single line of the areas at the top of the print."
  5105. msgstr "打印顶部区域单一走线宽度。"
  5106. #: fdmprinter.def.json
  5107. msgctxt "line_width description"
  5108. msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints."
  5109. msgstr "单一走线宽度。 一般而言,每条走线的宽度应与喷嘴的宽度对应。 但是,稍微降低此值可以产生更好的打印成果。"
  5110. #: fdmprinter.def.json
  5111. msgctxt "prime_tower_line_width description"
  5112. msgid "Width of a single prime tower line."
  5113. msgstr "单一装填走线宽度。"
  5114. #: fdmprinter.def.json
  5115. msgctxt "skirt_brim_line_width description"
  5116. msgid "Width of a single skirt or brim line."
  5117. msgstr "单一 skirt(裙摆)或 brim(边缘)走线宽度。"
  5118. #: fdmprinter.def.json
  5119. msgctxt "support_bottom_line_width description"
  5120. msgid "Width of a single support floor line."
  5121. msgstr "单一支撑底板走线宽度。"
  5122. #: fdmprinter.def.json
  5123. msgctxt "support_roof_line_width description"
  5124. msgid "Width of a single support roof line."
  5125. msgstr "单一支撑顶板走线宽度。"
  5126. #: fdmprinter.def.json
  5127. msgctxt "support_line_width description"
  5128. msgid "Width of a single support structure line."
  5129. msgstr "单一支撑结构走线宽度。"
  5130. #: fdmprinter.def.json
  5131. msgctxt "skin_line_width description"
  5132. msgid "Width of a single top/bottom line."
  5133. msgstr "单一顶层/底层走线宽度。"
  5134. #: fdmprinter.def.json
  5135. msgctxt "wall_line_width_x description"
  5136. msgid "Width of a single wall line for all wall lines except the outermost one."
  5137. msgstr "适用于所有壁线(最外壁线除外)的单一壁线宽度。"
  5138. #: fdmprinter.def.json
  5139. msgctxt "wall_line_width description"
  5140. msgid "Width of a single wall line."
  5141. msgstr "单一壁线宽度。"
  5142. #: fdmprinter.def.json
  5143. msgctxt "raft_base_line_width description"
  5144. msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion."
  5145. msgstr "基础 Raft 层的走线宽度。 这些走线应该是粗线,以便协助打印平台附着。"
  5146. #: fdmprinter.def.json
  5147. msgctxt "raft_interface_line_width description"
  5148. msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate."
  5149. msgstr "中间 Raft 层的走线宽度。 让第二层挤出更多会导致走线粘着在打印平台上。"
  5150. #: fdmprinter.def.json
  5151. msgctxt "raft_surface_line_width description"
  5152. msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth."
  5153. msgstr "Raft 顶部表面的走线宽度。 这些走线可以是细线,以便实现平滑的 Raft 顶部。"
  5154. #: fdmprinter.def.json
  5155. msgctxt "wall_line_width_0 description"
  5156. msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed."
  5157. msgstr "最外壁线宽度。 降低此值,可打印出更高水平的细节。"
  5158. #: fdmprinter.def.json
  5159. msgctxt "min_bead_width description"
  5160. msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself."
  5161. msgstr "用于替换模型薄特征(根据最小特征尺寸)的壁的宽度。如果最小壁走线宽度比特征的厚度要薄,则壁将与特征本身一样厚。"
  5162. #: fdmprinter.def.json
  5163. msgctxt "wipe_brush_pos_x label"
  5164. msgid "Wipe Brush X Position"
  5165. msgstr "擦拭刷 X 轴坐标"
  5166. #: fdmprinter.def.json
  5167. msgctxt "wipe_hop_speed label"
  5168. msgid "Wipe Hop Speed"
  5169. msgstr "擦拭抬升速度"
  5170. #: fdmprinter.def.json
  5171. msgctxt "prime_tower_wipe_enabled label"
  5172. msgid "Wipe Inactive Nozzle on Prime Tower"
  5173. msgstr "擦拭装填塔上的不活动喷嘴"
  5174. #: fdmprinter.def.json
  5175. msgctxt "wipe_move_distance label"
  5176. msgid "Wipe Move Distance"
  5177. msgstr "擦拭移动距离"
  5178. #: fdmprinter.def.json
  5179. msgctxt "clean_between_layers label"
  5180. msgid "Wipe Nozzle Between Layers"
  5181. msgstr "图层切换后擦拭喷嘴"
  5182. #: fdmprinter.def.json
  5183. msgctxt "wipe_pause label"
  5184. msgid "Wipe Pause"
  5185. msgstr "擦拭暂停"
  5186. #: fdmprinter.def.json
  5187. msgctxt "wipe_repeat_count label"
  5188. msgid "Wipe Repeat Count"
  5189. msgstr "擦拭重复计数"
  5190. #: fdmprinter.def.json
  5191. msgctxt "wipe_retraction_amount label"
  5192. msgid "Wipe Retraction Distance"
  5193. msgstr "擦拭回抽距离"
  5194. #: fdmprinter.def.json
  5195. msgctxt "wipe_retraction_enable label"
  5196. msgid "Wipe Retraction Enable"
  5197. msgstr "启用擦拭回抽"
  5198. #: fdmprinter.def.json
  5199. msgctxt "wipe_retraction_extra_prime_amount label"
  5200. msgid "Wipe Retraction Extra Prime Amount"
  5201. msgstr "擦拭回抽额外装填量"
  5202. #: fdmprinter.def.json
  5203. msgctxt "wipe_retraction_prime_speed label"
  5204. msgid "Wipe Retraction Prime Speed"
  5205. msgstr "擦拭回抽装填速度"
  5206. #: fdmprinter.def.json
  5207. msgctxt "wipe_retraction_retract_speed label"
  5208. msgid "Wipe Retraction Retract Speed"
  5209. msgstr "擦拭回抽期间的回抽速度"
  5210. #: fdmprinter.def.json
  5211. msgctxt "wipe_retraction_speed label"
  5212. msgid "Wipe Retraction Speed"
  5213. msgstr "擦拭回抽速度"
  5214. #: fdmprinter.def.json
  5215. msgctxt "wipe_hop_enable label"
  5216. msgid "Wipe Z Hop"
  5217. msgstr "擦拭 Z 抬升"
  5218. #: fdmprinter.def.json
  5219. msgctxt "wipe_hop_amount label"
  5220. msgid "Wipe Z Hop Height"
  5221. msgstr "擦拭 Z 抬升高度"
  5222. #: fdmprinter.def.json
  5223. msgctxt "retraction_combing option infill"
  5224. msgid "Within Infill"
  5225. msgstr "在填充物内"
  5226. #: fdmprinter.def.json
  5227. msgctxt "machine_always_write_active_tool description"
  5228. msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands."
  5229. msgstr "将临时命令发送到非活动工具后写入活动工具。用 Smoothie 或其他具有模态工具命令的固件进行的双挤出器打印需要此项。"
  5230. #: fdmprinter.def.json
  5231. msgctxt "machine_endstop_positive_direction_x label"
  5232. msgid "X Endstop in Positive Direction"
  5233. msgstr "正向 X 限位开关"
  5234. #: fdmprinter.def.json
  5235. msgctxt "wipe_brush_pos_x description"
  5236. msgid "X location where wipe script will start."
  5237. msgstr "擦拭开始处的 X 轴坐标。"
  5238. #: fdmprinter.def.json
  5239. msgctxt "support_xy_overrides_z option xy_overrides_z"
  5240. msgid "X/Y overrides Z"
  5241. msgstr "X/Y 覆盖 Z"
  5242. #: fdmprinter.def.json
  5243. msgctxt "machine_endstop_positive_direction_y label"
  5244. msgid "Y Endstop in Positive Direction"
  5245. msgstr "正向 Y 限位开关"
  5246. #: fdmprinter.def.json
  5247. msgctxt "machine_endstop_positive_direction_z label"
  5248. msgid "Z Endstop in Positive Direction"
  5249. msgstr "正向 Z 限位开关"
  5250. #: fdmprinter.def.json
  5251. msgctxt "retraction_hop_after_extruder_switch label"
  5252. msgid "Z Hop After Extruder Switch"
  5253. msgstr "挤出机切换后的 Z 抬升"
  5254. #: fdmprinter.def.json
  5255. msgctxt "retraction_hop_after_extruder_switch_height label"
  5256. msgid "Z Hop After Extruder Switch Height"
  5257. msgstr "挤出机切换后的 Z 抬升高度"
  5258. #: fdmprinter.def.json
  5259. msgctxt "retraction_hop label"
  5260. msgid "Z Hop Height"
  5261. msgstr "Z 抬升高度"
  5262. #: fdmprinter.def.json
  5263. msgctxt "retraction_hop_only_when_collides label"
  5264. msgid "Z Hop Only Over Printed Parts"
  5265. msgstr "仅在已打印部分上 Z 抬升"
  5266. #: fdmprinter.def.json
  5267. msgctxt "speed_z_hop label"
  5268. msgid "Z Hop Speed"
  5269. msgstr "Z 抬升速度"
  5270. #: fdmprinter.def.json
  5271. msgctxt "retraction_hop_enabled label"
  5272. msgid "Z Hop When Retracted"
  5273. msgstr "回抽时 Z 抬升"
  5274. #: fdmprinter.def.json
  5275. msgctxt "z_seam_type label"
  5276. msgid "Z Seam Alignment"
  5277. msgstr "Z 缝对齐"
  5278. #: fdmprinter.def.json
  5279. msgctxt "z_seam_position label"
  5280. msgid "Z Seam Position"
  5281. msgstr "Z 缝位置"
  5282. #: fdmprinter.def.json
  5283. msgctxt "z_seam_relative label"
  5284. msgid "Z Seam Relative"
  5285. msgstr "Z 缝相对"
  5286. #: fdmprinter.def.json
  5287. msgctxt "z_seam_x label"
  5288. msgid "Z Seam X"
  5289. msgstr "Z 缝 X"
  5290. #: fdmprinter.def.json
  5291. msgctxt "z_seam_y label"
  5292. msgid "Z Seam Y"
  5293. msgstr "Z 缝 Y"
  5294. #: fdmprinter.def.json
  5295. msgctxt "support_xy_overrides_z option z_overrides_xy"
  5296. msgid "Z overrides X/Y"
  5297. msgstr "Z 覆盖 X/Y"
  5298. #: fdmprinter.def.json
  5299. msgctxt "infill_pattern option zigzag"
  5300. msgid "Zig Zag"
  5301. msgstr "锯齿状"
  5302. #: fdmprinter.def.json
  5303. msgctxt "ironing_pattern option zigzag"
  5304. msgid "Zig Zag"
  5305. msgstr "锯齿形"
  5306. #: fdmprinter.def.json
  5307. msgctxt "roofing_pattern option zigzag"
  5308. msgid "Zig Zag"
  5309. msgstr "锯齿形"
  5310. #: fdmprinter.def.json
  5311. msgctxt "support_bottom_pattern option zigzag"
  5312. msgid "Zig Zag"
  5313. msgstr "锯齿形"
  5314. #: fdmprinter.def.json
  5315. msgctxt "support_interface_pattern option zigzag"
  5316. msgid "Zig Zag"
  5317. msgstr "锯齿形"
  5318. #: fdmprinter.def.json
  5319. msgctxt "support_pattern option zigzag"
  5320. msgid "Zig Zag"
  5321. msgstr "锯齿形"
  5322. #: fdmprinter.def.json
  5323. msgctxt "support_roof_pattern option zigzag"
  5324. msgid "Zig Zag"
  5325. msgstr "锯齿状"
  5326. #: fdmprinter.def.json
  5327. msgctxt "top_bottom_pattern option zigzag"
  5328. msgid "Zig Zag"
  5329. msgstr "锯齿状"
  5330. #: fdmprinter.def.json
  5331. msgctxt "top_bottom_pattern_0 option zigzag"
  5332. msgid "Zig Zag"
  5333. msgstr "锯齿状"
  5334. #: fdmprinter.def.json
  5335. msgctxt "travel description"
  5336. msgid "travel"
  5337. msgstr "空驶"
  5338. #~ msgctxt "wireframe_strategy option compensate"
  5339. #~ msgid "Compensate"
  5340. #~ msgstr "补偿"
  5341. #~ msgctxt "wireframe_top_jump description"
  5342. #~ msgid "Creates a small knot at the top of an upward line, so that the consecutive horizontal layer has a better chance to connect to it. Only applies to Wire Printing."
  5343. #~ msgstr "在上行走线的顶部创建一个小纽结,使连续的水平层有更好的机会与其连接。 仅应用于单线打印。"
  5344. #~ msgctxt "wireframe_bottom_delay description"
  5345. #~ msgid "Delay time after a downward move. Only applies to Wire Printing."
  5346. #~ msgstr "向下移动后的延迟时间。 仅应用于单线打印。"
  5347. #~ msgctxt "wireframe_top_delay description"
  5348. #~ msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing."
  5349. #~ msgstr "向上移动后的延迟时间,以便上行走线硬化。 仅应用于单线打印。"
  5350. #~ msgctxt "wireframe_flat_delay description"
  5351. #~ msgid "Delay time between two horizontal segments. Introducing such a delay can cause better adhesion to previous layers at the connection points, while too long delays cause sagging. Only applies to Wire Printing."
  5352. #~ msgstr "两个水平部分之间的延迟时间。 引入这样的延迟可以在连接点处与先前的层产生更好的附着,而太长的延迟会引起下垂。 仅应用于单线打印。"
  5353. #~ msgctxt "wireframe_nozzle_clearance description"
  5354. #~ msgid "Distance between the nozzle and horizontally downward lines. Larger clearance results in diagonally downward lines with a less steep angle, which in turn results in less upward connections with the next layer. Only applies to Wire Printing."
  5355. #~ msgstr "喷嘴和水平下行线之间的距离。 较大的间隙会让斜下行线角度较平缓,进而使第二层的上行连接较少。 仅应用于单线打印。"
  5356. #~ msgctxt "wireframe_up_half_speed description"
  5357. #~ msgid ""
  5358. #~ "Distance of an upward move which is extruded with half speed.\n"
  5359. #~ "This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing."
  5360. #~ msgstr ""
  5361. #~ "以半速挤出的上行移动的距离。\n"
  5362. #~ "这会与之前的层产生更好的附着,而不会将这些层中的材料过度加热。 仅应用于单线打印。"
  5363. #~ msgctxt "wireframe_fall_down description"
  5364. #~ msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing."
  5365. #~ msgstr "材料在向上挤出后倒塌的距离。 将对此距离进行补偿。 仅应用于单线打印。"
  5366. #~ msgctxt "wireframe_drag_along description"
  5367. #~ msgid "Distance with which the material of an upward extrusion is dragged along with the diagonally downward extrusion. This distance is compensated for. Only applies to Wire Printing."
  5368. #~ msgstr "向上挤出材料与斜向下挤出一起拖动的距离。 将对此距离进行补偿。 仅应用于单线打印。"
  5369. #~ msgctxt "wireframe_flow_connection description"
  5370. #~ msgid "Flow compensation when going up or down. Only applies to Wire Printing."
  5371. #~ msgstr "向上或向下时的流量补偿。 仅应用于单线打印。"
  5372. #~ msgctxt "wireframe_flow_flat description"
  5373. #~ msgid "Flow compensation when printing flat lines. Only applies to Wire Printing."
  5374. #~ msgstr "打印平面走线时的流量补偿。 仅应用于单线打印。"
  5375. #~ msgctxt "wireframe_flow description"
  5376. #~ msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing."
  5377. #~ msgstr "流量补偿:挤出的材料量乘以此值。 仅应用于单线打印。"
  5378. #~ msgctxt "support_tree_branch_distance description"
  5379. #~ msgid "How far apart the branches need to be when they touch the model. Making this distance small will cause the tree support to touch the model at more points, causing better overhang but making support harder to remove."
  5380. #~ msgstr "在支撑模型时,分支之间需要多大的间距。缩小这一间距会使树形支撑与模型之间有更多接触点,带来更好的悬垂,但会使支撑更难以拆除。"
  5381. #~ msgctxt "wireframe_strategy option knot"
  5382. #~ msgid "Knot"
  5383. #~ msgstr "纽结"
  5384. #~ msgctxt "wireframe_straight_before_down description"
  5385. #~ msgid "Percentage of a diagonally downward line which is covered by a horizontal line piece. This can prevent sagging of the top most point of upward lines. Only applies to Wire Printing."
  5386. #~ msgstr "水平走线部分所覆盖的斜下行走线的百分比。 这可以防止上行线最顶端点下垂。 仅应用于单线打印。"
  5387. #~ msgctxt "wireframe_enabled description"
  5388. #~ msgid "Print only the outside surface with a sparse webbed structure, printing 'in thin air'. This is realized by horizontally printing the contours of the model at given Z intervals which are connected via upward and diagonally downward lines."
  5389. #~ msgstr "只打印一个具有稀疏网状结构的外表面,在“稀薄的空气中”打印。 这是通过在给定的 Z 间隔水平打印模型的轮廓来实现的,这些间隔通过上行线和下行斜线连接。"
  5390. #~ msgctxt "support_tree_collision_resolution description"
  5391. #~ msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically."
  5392. #~ msgstr "用于计算碰撞的分辨率,目的在于避免碰撞模型。将此设置得较低将产生更准确且通常较少失败的树,但是会大幅增加切片时间。"
  5393. #~ msgctxt "wireframe_strategy option retract"
  5394. #~ msgid "Retract"
  5395. #~ msgstr "回抽"
  5396. #~ msgctxt "wireframe_printspeed description"
  5397. #~ msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing."
  5398. #~ msgstr "挤出材料时喷嘴移动的速度。 仅应用于单线打印。"
  5399. #~ msgctxt "wireframe_printspeed_down description"
  5400. #~ msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing."
  5401. #~ msgstr "打印下行斜线的速度。 仅应用于单线打印。"
  5402. #~ msgctxt "wireframe_printspeed_up description"
  5403. #~ msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing."
  5404. #~ msgstr "“在稀薄空气中”向上打印走线的速度。 仅应用于单线打印。"
  5405. #~ msgctxt "wireframe_printspeed_bottom description"
  5406. #~ msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing."
  5407. #~ msgstr "打印第一层的速度,该层是唯一接触打印平台的层。 仅应用于单线打印。"
  5408. #~ msgctxt "wireframe_printspeed_flat description"
  5409. #~ msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing."
  5410. #~ msgstr "打印模型水平轮廓的速度。 仅应用于单线打印。"
  5411. #~ msgctxt "wireframe_strategy description"
  5412. #~ msgid "Strategy for making sure two consecutive layers connect at each connection point. Retraction lets the upward lines harden in the right position, but may cause filament grinding. A knot can be made at the end of an upward line to heighten the chance of connecting to it and to let the line cool; however, it may require slow printing speeds. Another strategy is to compensate for the sagging of the top of an upward line; however, the lines won't always fall down as predicted."
  5413. #~ msgstr "用于确定两个连续层在每个连接点连接的策略。 回抽可让上行走线在正确的位置硬化,但可能导致耗材磨损。 可以在上行走线的尾端进行打结以便提高与其连接的几率,并让走线冷却;但这会需要较慢的打印速度。 另一种策略是补偿上行走线顶部的下垂;然而,线条不会总是如预期的那样下降。"
  5414. #~ msgctxt "support_tree_angle description"
  5415. #~ msgid "The angle of the branches. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach."
  5416. #~ msgstr "分支的角度。使用较小的角度可增加垂直度和稳定性。使用较大的角度可支撑更大范围。"
  5417. #~ msgctxt "wireframe_roof_inset description"
  5418. #~ msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing."
  5419. #~ msgstr "在从顶板轮廓向内进行连接时所覆盖的距离。 仅应用于单线打印。"
  5420. #~ msgctxt "wireframe_roof_drag_along description"
  5421. #~ msgid "The distance of the end piece of an inward line which gets dragged along when going back to the outer outline of the roof. This distance is compensated for. Only applies to Wire Printing."
  5422. #~ msgstr "向内线的端部在返回至顶板外部轮廓时被拖行的距离。 将对此距离进行补偿。 仅应用于单线打印。"
  5423. #~ msgctxt "wireframe_roof_fall_down description"
  5424. #~ msgid "The distance which horizontal roof lines printed 'in thin air' fall down when being printed. This distance is compensated for. Only applies to Wire Printing."
  5425. #~ msgstr "打印时,在“稀薄空气中”打印的水平顶板走线倒塌的距离。 将对此距离进行补偿。 仅应用于单线打印。"
  5426. #~ msgctxt "wireframe_height description"
  5427. #~ msgid "The height of the upward and diagonally downward lines between two horizontal parts. This determines the overall density of the net structure. Only applies to Wire Printing."
  5428. #~ msgstr "两个水平部分之间上行线和下行斜线的高度。 这决定网结构的整体密度。 仅应用于单线打印。"
  5429. #~ msgctxt "wireframe_roof_outer_delay description"
  5430. #~ msgid "Time spent at the outer perimeters of hole which is to become a roof. Longer times can ensure a better connection. Only applies to Wire Printing."
  5431. #~ msgstr "在成为顶板的孔的外围花费的时间。 较长的时间可确保更好的连接。 仅应用于单线打印。"
  5432. #~ msgctxt "support_tree_angle label"
  5433. #~ msgid "Tree Support Branch Angle"
  5434. #~ msgstr "树形支撑分支角度"
  5435. #~ msgctxt "support_tree_branch_diameter label"
  5436. #~ msgid "Tree Support Branch Diameter"
  5437. #~ msgstr "树形支撑分支直径"
  5438. #~ msgctxt "support_tree_branch_diameter_angle label"
  5439. #~ msgid "Tree Support Branch Diameter Angle"
  5440. #~ msgstr "树形支撑分支直径角度"
  5441. #~ msgctxt "support_tree_branch_distance label"
  5442. #~ msgid "Tree Support Branch Distance"
  5443. #~ msgstr "树形支撑分支间距"
  5444. #~ msgctxt "support_tree_collision_resolution label"
  5445. #~ msgid "Tree Support Collision Resolution"
  5446. #~ msgstr "树形支撑碰撞分辨率"
  5447. #~ msgctxt "support_tree_max_diameter label"
  5448. #~ msgid "Tree Support Trunk Diameter"
  5449. #~ msgstr "树形支撑主干直径"
  5450. #~ msgctxt "wireframe_bottom_delay label"
  5451. #~ msgid "WP Bottom Delay"
  5452. #~ msgstr "WP 底部延迟"
  5453. #~ msgctxt "wireframe_printspeed_bottom label"
  5454. #~ msgid "WP Bottom Printing Speed"
  5455. #~ msgstr "WP 底部打印速度"
  5456. #~ msgctxt "wireframe_flow_connection label"
  5457. #~ msgid "WP Connection Flow"
  5458. #~ msgstr "WP 连接流量"
  5459. #~ msgctxt "wireframe_height label"
  5460. #~ msgid "WP Connection Height"
  5461. #~ msgstr "WP 连接高度"
  5462. #~ msgctxt "wireframe_printspeed_down label"
  5463. #~ msgid "WP Downward Printing Speed"
  5464. #~ msgstr "WP 下降打印速度"
  5465. #~ msgctxt "wireframe_drag_along label"
  5466. #~ msgid "WP Drag Along"
  5467. #~ msgstr "WP 拖行"
  5468. #~ msgctxt "wireframe_up_half_speed label"
  5469. #~ msgid "WP Ease Upward"
  5470. #~ msgstr "WP 轻松上行"
  5471. #~ msgctxt "wireframe_fall_down label"
  5472. #~ msgid "WP Fall Down"
  5473. #~ msgstr "WP 倒塌"
  5474. #~ msgctxt "wireframe_flat_delay label"
  5475. #~ msgid "WP Flat Delay"
  5476. #~ msgstr "WP 平面延迟"
  5477. #~ msgctxt "wireframe_flow_flat label"
  5478. #~ msgid "WP Flat Flow"
  5479. #~ msgstr "WP 平面流量"
  5480. #~ msgctxt "wireframe_flow label"
  5481. #~ msgid "WP Flow"
  5482. #~ msgstr "WP 打印流量"
  5483. #~ msgctxt "wireframe_printspeed_flat label"
  5484. #~ msgid "WP Horizontal Printing Speed"
  5485. #~ msgstr "WP 水平打印速度"
  5486. #~ msgctxt "wireframe_top_jump label"
  5487. #~ msgid "WP Knot Size"
  5488. #~ msgstr "WP 纽结大小"
  5489. #~ msgctxt "wireframe_nozzle_clearance label"
  5490. #~ msgid "WP Nozzle Clearance"
  5491. #~ msgstr "WP 喷嘴间隙"
  5492. #~ msgctxt "wireframe_roof_drag_along label"
  5493. #~ msgid "WP Roof Drag Along"
  5494. #~ msgstr "WP 顶板拖行"
  5495. #~ msgctxt "wireframe_roof_fall_down label"
  5496. #~ msgid "WP Roof Fall Down"
  5497. #~ msgstr "WP 顶板倒塌"
  5498. #~ msgctxt "wireframe_roof_inset label"
  5499. #~ msgid "WP Roof Inset Distance"
  5500. #~ msgstr "WP 顶板嵌入距离"
  5501. #~ msgctxt "wireframe_roof_outer_delay label"
  5502. #~ msgid "WP Roof Outer Delay"
  5503. #~ msgstr "WP 顶板外部延迟"
  5504. #~ msgctxt "wireframe_printspeed label"
  5505. #~ msgid "WP Speed"
  5506. #~ msgstr "WP 速度"
  5507. #~ msgctxt "wireframe_straight_before_down label"
  5508. #~ msgid "WP Straighten Downward Lines"
  5509. #~ msgstr "WP 拉直下行走线"
  5510. #~ msgctxt "wireframe_strategy label"
  5511. #~ msgid "WP Strategy"
  5512. #~ msgstr "WP 使用策略"
  5513. #~ msgctxt "wireframe_top_delay label"
  5514. #~ msgid "WP Top Delay"
  5515. #~ msgstr "WP 顶部延迟"
  5516. #~ msgctxt "wireframe_printspeed_up label"
  5517. #~ msgid "WP Upward Printing Speed"
  5518. #~ msgstr "WP 上升打印速度"
  5519. #~ msgctxt "wireframe_enabled label"
  5520. #~ msgid "Wire Printing"
  5521. #~ msgstr "单线打印(以下简称 WP)"