fdmprinter.def.json.po 264 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700
  1. msgid ""
  2. msgstr ""
  3. "Project-Id-Version: PACKAGE VERSION\n"
  4. "Report-Msgid-Bugs-To: \n"
  5. "POT-Creation-Date: 2024-03-13 09:02+0100\n"
  6. "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
  7. "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  8. "Language-Team: LANGUAGE <LL@li.org>\n"
  9. "Language: zh_CN\n"
  10. "MIME-Version: 1.0\n"
  11. "Content-Type: text/plain; charset=UTF-8\n"
  12. "Content-Transfer-Encoding: 8bit\n"
  13. "Plural-Forms: nplurals=1; plural=0;\n"
  14. msgctxt "machine_settings label"
  15. msgid "Machine"
  16. msgstr "机器"
  17. msgctxt "machine_settings description"
  18. msgid "Machine specific settings"
  19. msgstr "机器详细设置"
  20. msgctxt "machine_name label"
  21. msgid "Machine Type"
  22. msgstr "机器类型"
  23. msgctxt "machine_name description"
  24. msgid "The name of your 3D printer model."
  25. msgstr "您的 3D 打印机型号的名称。"
  26. msgctxt "machine_show_variants label"
  27. msgid "Show Machine Variants"
  28. msgstr "显示打印机变体"
  29. msgctxt "machine_show_variants description"
  30. msgid "Whether to show the different variants of this machine, which are described in separate json files."
  31. msgstr "这台打印机是否需要显示它在不同的 JSON 文件中所描述的不同变化。"
  32. msgctxt "machine_start_gcode label"
  33. msgid "Start G-code"
  34. msgstr "开始 G-code"
  35. msgctxt "machine_start_gcode description"
  36. msgid "G-code commands to be executed at the very start - separated by \n."
  37. msgstr "在开始时执行的 G-code 命令 - 以 "
  38. " 分行。"
  39. msgctxt "machine_end_gcode label"
  40. msgid "End G-code"
  41. msgstr "结束 G-code"
  42. msgctxt "machine_end_gcode description"
  43. msgid "G-code commands to be executed at the very end - separated by \n."
  44. msgstr "在结束前执行的 G-code 命令 - 以 "
  45. " 分行。"
  46. msgctxt "material_guid label"
  47. msgid "Material GUID"
  48. msgstr "材料 GUID"
  49. msgctxt "material_guid description"
  50. msgid "GUID of the material. This is set automatically."
  51. msgstr "材料 GUID,此项为自动设置。"
  52. msgctxt "material_type label"
  53. msgid "Material Type"
  54. msgstr "材料种类"
  55. msgctxt "material_type description"
  56. msgid "The type of material used."
  57. msgstr "所用的材料类型。"
  58. msgctxt "material_brand label"
  59. msgid "Material Brand"
  60. msgstr "材料品牌"
  61. msgctxt "material_brand description"
  62. msgid "The brand of material used."
  63. msgstr "所用材料的品牌。"
  64. msgctxt "material_diameter label"
  65. msgid "Diameter"
  66. msgstr "直径"
  67. msgctxt "material_diameter description"
  68. msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament."
  69. msgstr "调整所用耗材的直径。 将此值与所用耗材的直径匹配。"
  70. msgctxt "material_bed_temp_wait label"
  71. msgid "Wait for Build Plate Heatup"
  72. msgstr "等待打印平台加热"
  73. msgctxt "material_bed_temp_wait description"
  74. msgid "Whether to insert a command to wait until the build plate temperature is reached at the start."
  75. msgstr "是否插入一条命令,等待开始时达到打印平台温度。"
  76. msgctxt "material_print_temp_wait label"
  77. msgid "Wait for Nozzle Heatup"
  78. msgstr "等待喷嘴加热"
  79. msgctxt "material_print_temp_wait description"
  80. msgid "Whether to wait until the nozzle temperature is reached at the start."
  81. msgstr "是否等待开始时达到喷嘴温度。"
  82. msgctxt "material_print_temp_prepend label"
  83. msgid "Include Material Temperatures"
  84. msgstr "包含材料温度"
  85. msgctxt "material_print_temp_prepend description"
  86. 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."
  87. msgstr "是否在 gcode 开始部分包含喷嘴温度命令。 当 start_gcode 已包含喷嘴温度命令时,Cura 前端将自动禁用此设置。"
  88. msgctxt "material_bed_temp_prepend label"
  89. msgid "Include Build Plate Temperature"
  90. msgstr "包含打印平台温度"
  91. msgctxt "material_bed_temp_prepend description"
  92. 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."
  93. msgstr "是否需要在 G-code 开始部分包含检查热床温度的命令。当 start_gcode 包含热床温度命令时,Cura 前端将自动禁用此设置。"
  94. msgctxt "machine_width label"
  95. msgid "Machine Width"
  96. msgstr "机器宽度"
  97. msgctxt "machine_width description"
  98. msgid "The width (X-direction) of the printable area."
  99. msgstr "机器可打印区域宽度(X 坐标)"
  100. msgctxt "machine_depth label"
  101. msgid "Machine Depth"
  102. msgstr "机器深度"
  103. msgctxt "machine_depth description"
  104. msgid "The depth (Y-direction) of the printable area."
  105. msgstr "机器可打印区域深度(Y 坐标)"
  106. msgctxt "machine_height label"
  107. msgid "Machine Height"
  108. msgstr "机器高度"
  109. msgctxt "machine_height description"
  110. msgid "The height (Z-direction) of the printable area."
  111. msgstr "机器可打印区域高度(Z 坐标)"
  112. msgctxt "machine_shape label"
  113. msgid "Build Plate Shape"
  114. msgstr "打印平台形状"
  115. msgctxt "machine_shape description"
  116. msgid "The shape of the build plate without taking unprintable areas into account."
  117. msgstr "打印平台形状(不考虑不可打印区域)。"
  118. msgctxt "machine_shape option rectangular"
  119. msgid "Rectangular"
  120. msgstr "矩形"
  121. msgctxt "machine_shape option elliptic"
  122. msgid "Elliptic"
  123. msgstr "类圆形"
  124. msgctxt "machine_buildplate_type label"
  125. msgid "Build Plate Material"
  126. msgstr "打印平台材料"
  127. msgctxt "machine_buildplate_type description"
  128. msgid "The material of the build plate installed on the printer."
  129. msgstr "打印平台材料已安装在打印机上。"
  130. msgctxt "machine_buildplate_type option glass"
  131. msgid "Glass"
  132. msgstr "玻璃"
  133. msgctxt "machine_buildplate_type option aluminum"
  134. msgid "Aluminum"
  135. msgstr "铝"
  136. msgctxt "machine_heated_bed label"
  137. msgid "Has Heated Build Plate"
  138. msgstr "有加热打印平台"
  139. msgctxt "machine_heated_bed description"
  140. msgid "Whether the machine has a heated build plate present."
  141. msgstr "机器是否有加热打印平台。"
  142. msgctxt "machine_heated_build_volume label"
  143. msgid "Has Build Volume Temperature Stabilization"
  144. msgstr "具有构建体积温度稳定性"
  145. msgctxt "machine_heated_build_volume description"
  146. msgid "Whether the machine is able to stabilize the build volume temperature."
  147. msgstr "机器是否能够稳定构建体积温度。"
  148. msgctxt "machine_always_write_active_tool label"
  149. msgid "Always Write Active Tool"
  150. msgstr "始终写入活动工具"
  151. msgctxt "machine_always_write_active_tool description"
  152. 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."
  153. msgstr "将临时命令发送到非活动工具后写入活动工具。用 Smoothie 或其他具有模态工具命令的固件进行的双挤出器打印需要此项。"
  154. msgctxt "machine_center_is_zero label"
  155. msgid "Is Center Origin"
  156. msgstr "位于中心"
  157. msgctxt "machine_center_is_zero description"
  158. msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area."
  159. msgstr "打印机零位的 X/Y 坐标是否位于可打印区域的中心。"
  160. msgctxt "machine_extruder_count label"
  161. msgid "Number of Extruders"
  162. msgstr "挤出机数目"
  163. msgctxt "machine_extruder_count description"
  164. msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle."
  165. msgstr "挤出机组数目。 挤出机组是指进料装置、鲍登管和喷嘴的组合。"
  166. msgctxt "extruders_enabled_count label"
  167. msgid "Number of Extruders That Are Enabled"
  168. msgstr "已启用的挤出机数目"
  169. msgctxt "extruders_enabled_count description"
  170. msgid "Number of extruder trains that are enabled; automatically set in software"
  171. msgstr "已启用的挤出机组数目;软件自动设置"
  172. msgctxt "machine_nozzle_tip_outer_diameter label"
  173. msgid "Outer Nozzle Diameter"
  174. msgstr "喷嘴外径"
  175. msgctxt "machine_nozzle_tip_outer_diameter description"
  176. msgid "The outer diameter of the tip of the nozzle."
  177. msgstr "喷嘴尖端的外径。"
  178. msgctxt "machine_nozzle_head_distance label"
  179. msgid "Nozzle Length"
  180. msgstr "喷嘴长度"
  181. msgctxt "machine_nozzle_head_distance description"
  182. msgid "The height difference between the tip of the nozzle and the lowest part of the print head."
  183. msgstr "喷嘴尖端与打印头最低部分之间的高度差。"
  184. msgctxt "machine_nozzle_expansion_angle label"
  185. msgid "Nozzle Angle"
  186. msgstr "喷嘴角度"
  187. msgctxt "machine_nozzle_expansion_angle description"
  188. msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle."
  189. msgstr "水平面与喷嘴尖端上部圆锥形之间的角度。"
  190. msgctxt "machine_heat_zone_length label"
  191. msgid "Heat Zone Length"
  192. msgstr "加热区长度"
  193. msgctxt "machine_heat_zone_length description"
  194. msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament."
  195. msgstr "与喷嘴尖端的距离,喷嘴产生的热量在这段距离内传递到耗材中。"
  196. msgctxt "machine_nozzle_temp_enabled label"
  197. msgid "Enable Nozzle Temperature Control"
  198. msgstr "启用喷嘴温度控制"
  199. msgctxt "machine_nozzle_temp_enabled description"
  200. msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura."
  201. msgstr "是否从 Cura 控制温度。 关闭此选项,从 Cura 外部控制喷嘴温度。"
  202. msgctxt "machine_nozzle_heat_up_speed label"
  203. msgid "Heat Up Speed"
  204. msgstr "升温速度"
  205. msgctxt "machine_nozzle_heat_up_speed description"
  206. msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature."
  207. msgstr "喷嘴升温到平均超过正常打印温度和待机温度范围的速度 (°C/s)。"
  208. msgctxt "machine_nozzle_cool_down_speed label"
  209. msgid "Cool Down Speed"
  210. msgstr "冷却速度"
  211. msgctxt "machine_nozzle_cool_down_speed description"
  212. msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature."
  213. msgstr "喷嘴冷却到平均超过正常打印温度和待机温度范围的速度 (°C/s)。"
  214. msgctxt "machine_min_cool_heat_time_window label"
  215. msgid "Minimal Time Standby Temperature"
  216. msgstr "最短时间待机温度"
  217. msgctxt "machine_min_cool_heat_time_window description"
  218. 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."
  219. msgstr "挤出机必须保持不活动以便喷嘴冷却的最短时间。 挤出机必须不使用此时间以上,才可以冷却到待机温度。"
  220. msgctxt "machine_gcode_flavor label"
  221. msgid "G-code Flavor"
  222. msgstr "G-code 风格"
  223. msgctxt "machine_gcode_flavor description"
  224. msgid "The type of g-code to be generated."
  225. msgstr "需要生成的 G-code 类型。"
  226. msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)"
  227. msgid "Marlin"
  228. msgstr "Marlin"
  229. msgctxt "machine_gcode_flavor option RepRap (Volumetric)"
  230. msgid "Marlin (Volumetric)"
  231. msgstr "Marlin(容积)"
  232. msgctxt "machine_gcode_flavor option RepRap (RepRap)"
  233. msgid "RepRap"
  234. msgstr "RepRap"
  235. msgctxt "machine_gcode_flavor option UltiGCode"
  236. msgid "Ultimaker 2"
  237. msgstr "Ultimaker 2"
  238. msgctxt "machine_gcode_flavor option Griffin"
  239. msgid "Griffin"
  240. msgstr "Griffin"
  241. msgctxt "machine_gcode_flavor option Makerbot"
  242. msgid "Makerbot"
  243. msgstr "Makerbot"
  244. msgctxt "machine_gcode_flavor option BFB"
  245. msgid "Bits from Bytes"
  246. msgstr "Bits from Bytes"
  247. msgctxt "machine_gcode_flavor option MACH3"
  248. msgid "Mach3"
  249. msgstr "Mach3"
  250. msgctxt "machine_gcode_flavor option Repetier"
  251. msgid "Repetier"
  252. msgstr "Repetier"
  253. msgctxt "machine_firmware_retract label"
  254. msgid "Firmware Retraction"
  255. msgstr "固件收回"
  256. msgctxt "machine_firmware_retract description"
  257. msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material."
  258. msgstr "是否使用固件收回命令 (G10/G11) 而不是使用 G1 命令中的 E 属性来收回材料。"
  259. msgctxt "machine_extruders_share_heater label"
  260. msgid "Extruders Share Heater"
  261. msgstr "挤出器共用加热器"
  262. msgctxt "machine_extruders_share_heater description"
  263. msgid "Whether the extruders share a single heater rather than each extruder having its own heater."
  264. msgstr "挤出器是否共用一个加热器,而不是每个挤出器都有自己的加热器。"
  265. msgctxt "machine_extruders_share_nozzle label"
  266. msgid "Extruders Share Nozzle"
  267. msgstr "挤出器共用喷嘴"
  268. msgctxt "machine_extruders_share_nozzle description"
  269. 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."
  270. msgstr "挤出器是否共用一个喷嘴,而不是每个挤出器都有自己的喷嘴。当设置为 true 时,预计打印机启动 gcode 脚本会将所有挤出器正确设置为已知且相互兼容的初始缩回状态 (零根或一根细丝未缩回);在这种情况下,会通过“machine_extruders_shared_nozzle_initial_retraction”参数描述每个挤出器的初始缩回状态。"
  271. msgctxt "machine_extruders_shared_nozzle_initial_retraction label"
  272. msgid "Shared Nozzle Initial Retraction"
  273. msgstr "共用喷嘴初始缩回"
  274. msgctxt "machine_extruders_shared_nozzle_initial_retraction description"
  275. 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."
  276. msgstr "假定在打印机启动 gcode 脚本完成后,每个挤出器的细丝从共用喷嘴头缩回多少;该值应等于或大于喷嘴导管公共部分的长度。"
  277. msgctxt "machine_disallowed_areas label"
  278. msgid "Disallowed Areas"
  279. msgstr "不允许区域"
  280. msgctxt "machine_disallowed_areas description"
  281. msgid "A list of polygons with areas the print head is not allowed to enter."
  282. msgstr "包含不允许打印头进入区域的多边形列表。"
  283. msgctxt "nozzle_disallowed_areas label"
  284. msgid "Nozzle Disallowed Areas"
  285. msgstr "喷嘴不允许区域"
  286. msgctxt "nozzle_disallowed_areas description"
  287. msgid "A list of polygons with areas the nozzle is not allowed to enter."
  288. msgstr "包含不允许喷嘴进入区域的多边形列表。"
  289. msgctxt "machine_head_with_fans_polygon label"
  290. msgid "Machine Head & Fan Polygon"
  291. msgstr "机器头和风扇多边形"
  292. msgctxt "machine_head_with_fans_polygon description"
  293. 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."
  294. msgstr "打印头的形状。这些是相对于打印头位置的坐标,打印头通常是其第一个挤出器的位置。打印头左侧和前方的尺寸必须采用负坐标。"
  295. msgctxt "gantry_height label"
  296. msgid "Gantry Height"
  297. msgstr "十字轴高度"
  298. msgctxt "gantry_height description"
  299. msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)."
  300. msgstr "喷嘴尖端与十字轴系统(X 轴和 Y 轴)之间的高度差。"
  301. msgctxt "machine_nozzle_id label"
  302. msgid "Nozzle ID"
  303. msgstr "喷嘴 ID"
  304. msgctxt "machine_nozzle_id description"
  305. msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"."
  306. msgstr "挤出机组的喷嘴 ID,比如\"AA 0.4\"和\"BB 0.8\"。"
  307. msgctxt "machine_nozzle_size label"
  308. msgid "Nozzle Diameter"
  309. msgstr "喷嘴直径"
  310. msgctxt "machine_nozzle_size description"
  311. msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size."
  312. msgstr "喷嘴内径,在使用非标准喷嘴尺寸时需更改此设置。"
  313. msgctxt "machine_use_extruder_offset_to_offset_coords label"
  314. msgid "Offset with Extruder"
  315. msgstr "挤出机偏移量"
  316. msgctxt "machine_use_extruder_offset_to_offset_coords description"
  317. msgid "Apply the extruder offset to the coordinate system. Affects all extruders."
  318. msgstr "将挤出器偏移量应用到坐标轴系统。影响所有挤出器。"
  319. msgctxt "extruder_prime_pos_z label"
  320. msgid "Extruder Prime Z Position"
  321. msgstr "挤出机初始 Z 轴位置"
  322. msgctxt "extruder_prime_pos_z description"
  323. msgid "The Z coordinate of the position where the nozzle primes at the start of printing."
  324. msgstr "打印开始时,喷头在 Z 轴坐标上的起始位置."
  325. msgctxt "extruder_prime_pos_abs label"
  326. msgid "Absolute Extruder Prime Position"
  327. msgstr "绝对挤出机主要位置"
  328. msgctxt "extruder_prime_pos_abs description"
  329. msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head."
  330. msgstr "使挤出机主要位置为绝对值,而不是与上一已知打印头位置的相对值。"
  331. msgctxt "machine_max_feedrate_x label"
  332. msgid "Maximum Speed X"
  333. msgstr "X 轴最大速度"
  334. msgctxt "machine_max_feedrate_x description"
  335. msgid "The maximum speed for the motor of the X-direction."
  336. msgstr "X 轴方向电机的最大速度。"
  337. msgctxt "machine_max_feedrate_y label"
  338. msgid "Maximum Speed Y"
  339. msgstr "Y 轴最大速度"
  340. msgctxt "machine_max_feedrate_y description"
  341. msgid "The maximum speed for the motor of the Y-direction."
  342. msgstr "Y 轴方向电机的最大速度。"
  343. msgctxt "machine_max_feedrate_z label"
  344. msgid "Maximum Speed Z"
  345. msgstr "Z 轴最大速度"
  346. msgctxt "machine_max_feedrate_z description"
  347. msgid "The maximum speed for the motor of the Z-direction."
  348. msgstr "Z 轴方向电机的最大速度。"
  349. msgctxt "machine_max_feedrate_e label"
  350. msgid "Maximum Speed E"
  351. msgstr "E 轴最大速度"
  352. msgctxt "machine_max_feedrate_e description"
  353. msgid "The maximum speed of the filament."
  354. msgstr "耗材的最大速度。"
  355. msgctxt "machine_max_acceleration_x label"
  356. msgid "Maximum Acceleration X"
  357. msgstr "X 轴最大加速度"
  358. msgctxt "machine_max_acceleration_x description"
  359. msgid "Maximum acceleration for the motor of the X-direction"
  360. msgstr "X 轴方向电机的最大加速度"
  361. msgctxt "machine_max_acceleration_y label"
  362. msgid "Maximum Acceleration Y"
  363. msgstr "轴最大加速度"
  364. msgctxt "machine_max_acceleration_y description"
  365. msgid "Maximum acceleration for the motor of the Y-direction."
  366. msgstr "Y 轴方向电机的最大加速度。"
  367. msgctxt "machine_max_acceleration_z label"
  368. msgid "Maximum Acceleration Z"
  369. msgstr "Z 轴最大加速度"
  370. msgctxt "machine_max_acceleration_z description"
  371. msgid "Maximum acceleration for the motor of the Z-direction."
  372. msgstr "Z 轴方向电机的最大加速度。"
  373. msgctxt "machine_max_acceleration_e label"
  374. msgid "Maximum Filament Acceleration"
  375. msgstr "挤出电机最大加速度"
  376. msgctxt "machine_max_acceleration_e description"
  377. msgid "Maximum acceleration for the motor of the filament."
  378. msgstr "耗材电机的最大加速度。"
  379. msgctxt "machine_acceleration label"
  380. msgid "Default Acceleration"
  381. msgstr "默认加速度"
  382. msgctxt "machine_acceleration description"
  383. msgid "The default acceleration of print head movement."
  384. msgstr "打印头移动的默认加速度。"
  385. msgctxt "machine_max_jerk_xy label"
  386. msgid "Default X-Y Jerk"
  387. msgstr "默认 X-Y 平面抖动速度(Jerk)"
  388. msgctxt "machine_max_jerk_xy description"
  389. msgid "Default jerk for movement in the horizontal plane."
  390. msgstr "水平面移动的默认抖动速度。"
  391. msgctxt "machine_max_jerk_z label"
  392. msgid "Default Z Jerk"
  393. msgstr "默认 Z 轴抖动速度(Jerk)"
  394. msgctxt "machine_max_jerk_z description"
  395. msgid "Default jerk for the motor of the Z-direction."
  396. msgstr "Z 轴方向电机的默认抖动速度。"
  397. msgctxt "machine_max_jerk_e label"
  398. msgid "Default Filament Jerk"
  399. msgstr "默认挤出电机 Jerk"
  400. msgctxt "machine_max_jerk_e description"
  401. msgid "Default jerk for the motor of the filament."
  402. msgstr "耗材电机的默认抖动速度。"
  403. msgctxt "machine_steps_per_mm_x label"
  404. msgid "Steps per Millimeter (X)"
  405. msgstr "每毫米步数 (X)"
  406. msgctxt "machine_steps_per_mm_x description"
  407. msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction."
  408. msgstr "步进电机前进多少步将导致在 X 方向移动一毫米。"
  409. msgctxt "machine_steps_per_mm_y label"
  410. msgid "Steps per Millimeter (Y)"
  411. msgstr "每毫米步数 (Y)"
  412. msgctxt "machine_steps_per_mm_y description"
  413. msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction."
  414. msgstr "步进电机前进多少步将导致在 Y 方向移动一毫米。"
  415. msgctxt "machine_steps_per_mm_z label"
  416. msgid "Steps per Millimeter (Z)"
  417. msgstr "每毫米步数 (Z)"
  418. msgctxt "machine_steps_per_mm_z description"
  419. msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction."
  420. msgstr "步进电机前进多少步将导致在 Z 方向移动一毫米。"
  421. msgctxt "machine_steps_per_mm_e label"
  422. msgid "Steps per Millimeter (E)"
  423. msgstr "每毫米步数 (E)"
  424. msgctxt "machine_steps_per_mm_e description"
  425. msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference."
  426. msgstr "步进电机前进多少步将导致进料器轮绕其周长移动一毫米。"
  427. msgctxt "machine_endstop_positive_direction_x label"
  428. msgid "X Endstop in Positive Direction"
  429. msgstr "正向 X 限位开关"
  430. msgctxt "machine_endstop_positive_direction_x description"
  431. msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)."
  432. msgstr "指定 X 轴的限位开关位于正向(高 X 轴坐标)还是负向(低 X 轴坐标)。"
  433. msgctxt "machine_endstop_positive_direction_y label"
  434. msgid "Y Endstop in Positive Direction"
  435. msgstr "正向 Y 限位开关"
  436. msgctxt "machine_endstop_positive_direction_y description"
  437. msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)."
  438. msgstr "指定 Y 轴的限位开关位于正向(高 Y 轴坐标)还是负向(低 Y 轴坐标)。"
  439. msgctxt "machine_endstop_positive_direction_z label"
  440. msgid "Z Endstop in Positive Direction"
  441. msgstr "正向 Z 限位开关"
  442. msgctxt "machine_endstop_positive_direction_z description"
  443. msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)."
  444. msgstr "指定 Z 轴的限位开关位于正向(高 Z 轴坐标)还是负向(低 Z 轴坐标)。"
  445. msgctxt "machine_minimum_feedrate label"
  446. msgid "Minimum Feedrate"
  447. msgstr "最小进料速率"
  448. msgctxt "machine_minimum_feedrate description"
  449. msgid "The minimal movement speed of the print head."
  450. msgstr "打印头的最低移动速度。"
  451. msgctxt "machine_feeder_wheel_diameter label"
  452. msgid "Feeder Wheel Diameter"
  453. msgstr "进料装置驱动轮的直径"
  454. msgctxt "machine_feeder_wheel_diameter description"
  455. msgid "The diameter of the wheel that drives the material in the feeder."
  456. msgstr "进料装置中材料驱动轮的直径。"
  457. msgctxt "machine_scale_fan_speed_zero_to_one label"
  458. msgid "Scale Fan Speed To 0-1"
  459. msgstr "在 0 到 1 范围内设置风扇速度"
  460. msgctxt "machine_scale_fan_speed_zero_to_one description"
  461. msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256."
  462. msgstr "在 0 到 1 范围内设置风扇速度,而不是 0 到 256 之间。"
  463. msgctxt "resolution label"
  464. msgid "Quality"
  465. msgstr "质量"
  466. msgctxt "resolution description"
  467. msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)"
  468. msgstr "影响打印分辨率的所有设置。 这些设置会对质量(和打印时间)产生显著影响"
  469. msgctxt "layer_height label"
  470. msgid "Layer Height"
  471. msgstr "层高"
  472. msgctxt "layer_height description"
  473. msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution."
  474. msgstr "每层的高度(以毫米为单位)。值越高,则打印速度越快,分辨率越低;值越低,则打印速度越慢,分辨率越高。"
  475. msgctxt "layer_height_0 label"
  476. msgid "Initial Layer Height"
  477. msgstr "起始层高"
  478. msgctxt "layer_height_0 description"
  479. msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier."
  480. msgstr "起始层高(以毫米为单位)。起始层越厚,与打印平台的粘着越轻松。"
  481. msgctxt "line_width label"
  482. msgid "Line Width"
  483. msgstr "走线宽度"
  484. msgctxt "line_width description"
  485. 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."
  486. msgstr "单一走线宽度。 一般而言,每条走线的宽度应与喷嘴的宽度对应。 但是,稍微降低此值可以产生更好的打印成果。"
  487. msgctxt "wall_line_width label"
  488. msgid "Wall Line Width"
  489. msgstr "走线宽度(壁)"
  490. msgctxt "wall_line_width description"
  491. msgid "Width of a single wall line."
  492. msgstr "单一壁线宽度。"
  493. msgctxt "wall_line_width_0 label"
  494. msgid "Outer Wall Line Width"
  495. msgstr "走线宽度(外壁)"
  496. msgctxt "wall_line_width_0 description"
  497. msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed."
  498. msgstr "最外壁线宽度。 降低此值,可打印出更高水平的细节。"
  499. msgctxt "wall_line_width_x label"
  500. msgid "Inner Wall(s) Line Width"
  501. msgstr "走线宽度(内壁)"
  502. msgctxt "wall_line_width_x description"
  503. msgid "Width of a single wall line for all wall lines except the outermost one."
  504. msgstr "适用于所有壁线(最外壁线除外)的单一壁线宽度。"
  505. msgctxt "skin_line_width label"
  506. msgid "Top/Bottom Line Width"
  507. msgstr "走线宽度(顶层 / 底层)"
  508. msgctxt "skin_line_width description"
  509. msgid "Width of a single top/bottom line."
  510. msgstr "单一顶层/底层走线宽度。"
  511. msgctxt "infill_line_width label"
  512. msgid "Infill Line Width"
  513. msgstr "走线宽度(填充)"
  514. msgctxt "infill_line_width description"
  515. msgid "Width of a single infill line."
  516. msgstr "单一填充走线宽度。"
  517. msgctxt "skirt_brim_line_width label"
  518. msgid "Skirt/Brim Line Width"
  519. msgstr "走线宽度(Skirt / Brim)"
  520. msgctxt "skirt_brim_line_width description"
  521. msgid "Width of a single skirt or brim line."
  522. msgstr "单一 skirt(裙摆)或 brim(边缘)走线宽度。"
  523. msgctxt "support_line_width label"
  524. msgid "Support Line Width"
  525. msgstr "走线宽度(支撑结构)"
  526. msgctxt "support_line_width description"
  527. msgid "Width of a single support structure line."
  528. msgstr "单一支撑结构走线宽度。"
  529. msgctxt "support_interface_line_width label"
  530. msgid "Support Interface Line Width"
  531. msgstr "走线宽度(支撑接触面)"
  532. msgctxt "support_interface_line_width description"
  533. msgid "Width of a single line of support roof or floor."
  534. msgstr "支撑顶板或底板单一走线宽度。"
  535. msgctxt "support_roof_line_width label"
  536. msgid "Support Roof Line Width"
  537. msgstr "支撑顶板走线宽度"
  538. msgctxt "support_roof_line_width description"
  539. msgid "Width of a single support roof line."
  540. msgstr "单一支撑顶板走线宽度。"
  541. msgctxt "support_bottom_line_width label"
  542. msgid "Support Floor Line Width"
  543. msgstr "支撑底板走线宽度"
  544. msgctxt "support_bottom_line_width description"
  545. msgid "Width of a single support floor line."
  546. msgstr "单一支撑底板走线宽度。"
  547. msgctxt "prime_tower_line_width label"
  548. msgid "Prime Tower Line Width"
  549. msgstr "装填塔走线宽度"
  550. msgctxt "prime_tower_line_width description"
  551. msgid "Width of a single prime tower line."
  552. msgstr "单一装填走线宽度。"
  553. msgctxt "initial_layer_line_width_factor label"
  554. msgid "Initial Layer Line Width"
  555. msgstr "起始层走线宽度"
  556. msgctxt "initial_layer_line_width_factor description"
  557. msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion."
  558. msgstr "第一层走线宽度乘数。 增大此乘数可改善热床粘着。"
  559. msgctxt "shell label"
  560. msgid "Walls"
  561. msgstr "墙"
  562. msgctxt "shell description"
  563. msgid "Shell"
  564. msgstr "外壳"
  565. msgctxt "wall_extruder_nr label"
  566. msgid "Wall Extruder"
  567. msgstr "壁挤出机"
  568. msgctxt "wall_extruder_nr description"
  569. msgid "The extruder train used for printing the walls. This is used in multi-extrusion."
  570. msgstr "用于打印壁的挤出机组。 用于多重挤出。"
  571. msgctxt "wall_0_extruder_nr label"
  572. msgid "Outer Wall Extruder"
  573. msgstr "外壁挤出机"
  574. msgctxt "wall_0_extruder_nr description"
  575. msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion."
  576. msgstr "用于打印外壁的挤出机组。 用于多重挤出。"
  577. msgctxt "wall_x_extruder_nr label"
  578. msgid "Inner Wall Extruder"
  579. msgstr "内壁挤出机"
  580. msgctxt "wall_x_extruder_nr description"
  581. msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion."
  582. msgstr "用于打印内壁的挤出机组。 用于多重挤出。"
  583. msgctxt "wall_thickness label"
  584. msgid "Wall Thickness"
  585. msgstr "壁厚"
  586. msgctxt "wall_thickness description"
  587. msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls."
  588. msgstr "水平方向的壁厚度。 此值除以壁线宽度定义壁数量。"
  589. msgctxt "wall_line_count label"
  590. msgid "Wall Line Count"
  591. msgstr "壁走线次数"
  592. msgctxt "wall_line_count description"
  593. msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number."
  594. msgstr "壁数量。 在按壁厚计算时,该值舍入为整数。"
  595. msgctxt "wall_transition_length label"
  596. msgid "Wall Transition Length"
  597. msgstr "壁过渡长度"
  598. msgctxt "wall_transition_length description"
  599. 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."
  600. msgstr "当随着零件变薄而在不同数量的壁之间过渡时,会分配一定数量的间距来分割或连接壁走线。"
  601. msgctxt "wall_distribution_count label"
  602. msgid "Wall Distribution Count"
  603. msgstr "壁分派次数"
  604. msgctxt "wall_distribution_count description"
  605. 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."
  606. msgstr "从中心开始计数的壁数量,需要在这些壁上传播变化。较小的值意味着不更改外壁的宽度。"
  607. msgctxt "wall_transition_angle label"
  608. msgid "Wall Transitioning Threshold Angle"
  609. msgstr "壁过渡阈值角度"
  610. msgctxt "wall_transition_angle description"
  611. 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."
  612. msgstr "在奇数和偶数壁之间创建过渡时。角度大于此设置的楔形将没有过渡,并且不会在中心打印壁来填充剩余空间。减少此设置会减少这些中心壁的数量和长度,但可能会留下空隙或挤出过多。"
  613. msgctxt "wall_transition_filter_distance label"
  614. msgid "Wall Transitioning Filter Distance"
  615. msgstr "壁过渡筛选距离"
  616. msgctxt "wall_transition_filter_distance description"
  617. 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."
  618. msgstr "如果要在不同数量的壁之间快速连续地来回过渡,那么根本不要过渡。如果这些过渡的距离之和小于此距离,则移除过渡。"
  619. msgctxt "wall_transition_filter_deviation label"
  620. msgid "Wall Transitioning Filter Margin"
  621. msgstr "壁过渡筛选边距"
  622. msgctxt "wall_transition_filter_deviation description"
  623. 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."
  624. msgstr "防止在多一个壁和少一个壁之间来回过渡。此边距扩展走线宽度的范围,介于 [最小壁走线宽度 - 边距,2 * 最小壁走线宽度 + 边距] 之间。增加此边距将减少过渡数量,从而减少挤出启动/停止次数和行程时间。但是,较大的走线宽度变化会导致挤出不足或挤出过多的问题。"
  625. msgctxt "wall_0_wipe_dist label"
  626. msgid "Outer Wall Wipe Distance"
  627. msgstr "外壁擦嘴长度"
  628. msgctxt "wall_0_wipe_dist description"
  629. msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better."
  630. msgstr "插入外壁后的空驶距离,旨在更好地隐藏 Z 缝。"
  631. msgctxt "wall_0_inset label"
  632. msgid "Outer Wall Inset"
  633. msgstr "外壁嵌入"
  634. msgctxt "wall_0_inset description"
  635. 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."
  636. msgstr "应用在外壁路径上的嵌入。 如果外壁小于喷嘴,并且在内壁之后打印,则使用该偏移量来使喷嘴中的孔与内壁而不是模型外部重叠。"
  637. msgctxt "optimize_wall_printing_order label"
  638. msgid "Optimize Wall Printing Order"
  639. msgstr "优化壁打印顺序"
  640. msgctxt "optimize_wall_printing_order description"
  641. 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."
  642. msgstr "优化墙壁印刷的顺序,以减少回撤的数量和旅行的距离。大多数部件会从启用这个功能中受益,但有些可能会花费更长的时间,所以请将打印时间估算与不优化进行比较。第一层在选择边缘作为构建板附着力类型时没有进行优化。"
  643. msgctxt "inset_direction label"
  644. msgid "Wall Ordering"
  645. msgstr "壁顺序"
  646. msgctxt "inset_direction description"
  647. 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."
  648. msgstr "确定打印壁的顺序。先打印外壁有助于提高尺寸精度,因为内壁的误差不会传播到外壁。不过,在打印悬垂对象时,后打印外壁可以实现更好的堆叠。当总内壁数量不均匀时,“中心最后线”总是最后打印。"
  649. msgctxt "inset_direction option inside_out"
  650. msgid "Inside To Outside"
  651. msgstr "从内到外"
  652. msgctxt "inset_direction option outside_in"
  653. msgid "Outside To Inside"
  654. msgstr "从外到内"
  655. msgctxt "alternate_extra_perimeter label"
  656. msgid "Alternate Extra Wall"
  657. msgstr "交替备用壁"
  658. msgctxt "alternate_extra_perimeter description"
  659. msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
  660. msgstr "每隔一层打印一个额外的壁。 通过这种方法,填充物会卡在这些额外的壁之间,从而产生更强韧的打印质量。"
  661. msgctxt "min_wall_line_width label"
  662. msgid "Minimum Wall Line Width"
  663. msgstr "最小壁走线宽度"
  664. msgctxt "min_wall_line_width description"
  665. 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."
  666. msgstr "对于一倍或两倍于喷嘴孔径的薄结构,需要更改走线宽度以遵循模型的厚度。此设置控制壁允许的最小走线宽度。同样,最小走线宽度内在地决定了最大走线宽度,因为我们在某些几何厚度中从 N 壁过渡到 N+1 壁时,N 壁宽而 N+1 壁窄。允许的最大壁走线宽度是最小壁走线宽度的两倍。"
  667. msgctxt "min_even_wall_line_width label"
  668. msgid "Minimum Even Wall Line Width"
  669. msgstr "最小偶数壁走线宽度"
  670. msgctxt "min_even_wall_line_width description"
  671. 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."
  672. msgstr "普通多边形墙的最小走线宽度。此设置确定我们从打印单根薄壁走线切换到打印两根壁走线时的模型厚度。更高的最小偶数壁走线宽度会带来更高的最大奇数壁走线宽度。最大偶数壁走线宽度计算方法是:外壁走线宽度 + 0.5 * 最小奇数壁走线宽度。"
  673. msgctxt "min_odd_wall_line_width label"
  674. msgid "Minimum Odd Wall Line Width"
  675. msgstr "最小奇数壁走线宽度"
  676. msgctxt "min_odd_wall_line_width description"
  677. 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."
  678. msgstr "中间走线空隙填料多线壁的最小走线宽度。此设置确定在什么模型厚度下,我们从打印两根壁走线切换到打印两个外壁并在中间打印一个中心壁。更高的最小奇数壁走线宽度会带来更高的最大偶数壁走线宽度。最大奇数壁走线宽度计算方法是:2 * 最小偶数壁走线宽度。"
  679. msgctxt "fill_outline_gaps label"
  680. msgid "Print Thin Walls"
  681. msgstr "打印薄壁"
  682. msgctxt "fill_outline_gaps description"
  683. msgid "Print pieces of the model which are horizontally thinner than the nozzle size."
  684. msgstr "打印在水平面上比喷嘴尺寸更薄的模型部件。"
  685. msgctxt "min_feature_size label"
  686. msgid "Minimum Feature Size"
  687. msgstr "最小特征尺寸"
  688. msgctxt "min_feature_size description"
  689. 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."
  690. msgstr "薄特征的最小厚度。将不打印比此值更薄的模型特征,而比最小特征尺寸更厚的特征将加宽到最小壁走线宽度。"
  691. msgctxt "min_bead_width label"
  692. msgid "Minimum Thin Wall Line Width"
  693. msgstr "最小薄壁走线宽度"
  694. msgctxt "min_bead_width description"
  695. 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."
  696. msgstr "用于替换模型薄特征(根据最小特征尺寸)的壁的宽度。如果最小壁走线宽度比特征的厚度要薄,则壁将与特征本身一样厚。"
  697. msgctxt "xy_offset label"
  698. msgid "Horizontal Expansion"
  699. msgstr "水平扩展"
  700. msgctxt "xy_offset description"
  701. 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."
  702. msgstr "应用到每一层所有多边形的偏移量。 正数值可以补偿过大的孔洞;负数值可以补偿过小的孔洞。"
  703. msgctxt "xy_offset_layer_0 label"
  704. msgid "Initial Layer Horizontal Expansion"
  705. msgstr "起始层水平扩展"
  706. msgctxt "xy_offset_layer_0 description"
  707. 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\"."
  708. msgstr "应用到第一层所有多边形的偏移量。 负数值可以补偿第一层的压扁量(被称为“象脚”)。"
  709. msgctxt "hole_xy_offset label"
  710. msgid "Hole Horizontal Expansion"
  711. msgstr "孔洞水平扩展"
  712. msgctxt "hole_xy_offset description"
  713. msgid "When greater than zero, the Hole Horizontal Expansion is the 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. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter."
  714. msgstr "当大于零时,“孔水平膨胀”是应用于每层所有孔的偏移量。正值会增加孔的大小,负值会减少孔的大小。当此设置启用时,可以使用“孔水平膨胀最大直径”进一步细化。"
  715. msgctxt "hole_xy_offset_max_diameter label"
  716. msgid "Hole Horizontal Expansion Max Diameter"
  717. msgstr "孔洞水平扩展最大直径"
  718. msgctxt "hole_xy_offset_max_diameter description"
  719. 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."
  720. msgstr "大于零时,孔洞水平扩展会逐渐适应小孔洞(小孔洞可以扩展更多)。设为零时,孔洞水平扩展可以应用于所有孔洞。大于孔洞水平扩展最大直径时,孔洞不会被扩展。"
  721. msgctxt "z_seam_type label"
  722. msgid "Z Seam Alignment"
  723. msgstr "Z 缝对齐"
  724. msgctxt "z_seam_type description"
  725. 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."
  726. msgstr "一层中每条路径的起点。 当连续多层的路径从相同点开始时,则打印物上会显示一条垂直缝隙。 如果将这些路径靠近一个用户指定的位置对齐,则缝隙最容易移除。 如果随机放置,则路径起点的不精准度将较不明显。 采用最短的路径时,打印将更为快速。"
  727. msgctxt "z_seam_type option back"
  728. msgid "User Specified"
  729. msgstr "用户指定"
  730. msgctxt "z_seam_type option shortest"
  731. msgid "Shortest"
  732. msgstr "最短"
  733. msgctxt "z_seam_type option random"
  734. msgid "Random"
  735. msgstr "随机"
  736. msgctxt "z_seam_type option sharpest_corner"
  737. msgid "Sharpest Corner"
  738. msgstr "最尖角"
  739. msgctxt "z_seam_position label"
  740. msgid "Z Seam Position"
  741. msgstr "Z 缝位置"
  742. msgctxt "z_seam_position description"
  743. msgid "The position near where to start printing each part in a layer."
  744. msgstr "在该位置附近开始打印层中各个部分。"
  745. msgctxt "z_seam_position option backleft"
  746. msgid "Back Left"
  747. msgstr "左后方"
  748. msgctxt "z_seam_position option back"
  749. msgid "Back"
  750. msgstr "返回"
  751. msgctxt "z_seam_position option backright"
  752. msgid "Back Right"
  753. msgstr "右后方"
  754. msgctxt "z_seam_position option right"
  755. msgid "Right"
  756. msgstr "右侧"
  757. msgctxt "z_seam_position option frontright"
  758. msgid "Front Right"
  759. msgstr "右前方"
  760. msgctxt "z_seam_position option front"
  761. msgid "Front"
  762. msgstr "前方"
  763. msgctxt "z_seam_position option frontleft"
  764. msgid "Front Left"
  765. msgstr "左前方"
  766. msgctxt "z_seam_position option left"
  767. msgid "Left"
  768. msgstr "左侧"
  769. msgctxt "z_seam_x label"
  770. msgid "Z Seam X"
  771. msgstr "Z 缝 X"
  772. msgctxt "z_seam_x description"
  773. msgid "The X coordinate of the position near where to start printing each part in a layer."
  774. msgstr "位置的 X 轴坐标,在该位置附近开始打印层中各个部分。"
  775. msgctxt "z_seam_y label"
  776. msgid "Z Seam Y"
  777. msgstr "Z 缝 Y"
  778. msgctxt "z_seam_y description"
  779. msgid "The Y coordinate of the position near where to start printing each part in a layer."
  780. msgstr "位置的 Y 轴坐标,在该位置附近开始打印层中各个部分。"
  781. msgctxt "z_seam_corner label"
  782. msgid "Seam Corner Preference"
  783. msgstr "缝隙角偏好设置"
  784. msgctxt "z_seam_corner description"
  785. 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."
  786. msgstr "控制模型轮廓上的角是否影响缝隙的位置。“无”表示各个角不影响缝隙位置。“隐藏缝隙”会使缝隙更可能出现在内侧角上。“外露缝隙”会使缝隙更可能出现在外侧角上。“隐藏或外露缝隙”会使缝隙更可能出现在内侧或外侧角上。“智能隐藏”允许缝隙出现在内侧和外侧角上,如适当,会更多地出现在内侧角上。"
  787. msgctxt "z_seam_corner option z_seam_corner_none"
  788. msgid "None"
  789. msgstr "无"
  790. msgctxt "z_seam_corner option z_seam_corner_inner"
  791. msgid "Hide Seam"
  792. msgstr "隐藏缝隙"
  793. msgctxt "z_seam_corner option z_seam_corner_outer"
  794. msgid "Expose Seam"
  795. msgstr "外露缝隙"
  796. msgctxt "z_seam_corner option z_seam_corner_any"
  797. msgid "Hide or Expose Seam"
  798. msgstr "隐藏或外露缝隙"
  799. msgctxt "z_seam_corner option z_seam_corner_weighted"
  800. msgid "Smart Hiding"
  801. msgstr "智能隐藏"
  802. msgctxt "z_seam_relative label"
  803. msgid "Z Seam Relative"
  804. msgstr "Z 缝相对"
  805. msgctxt "z_seam_relative description"
  806. 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."
  807. msgstr "启用时,Z 缝坐标为相对于各个部分中心的值。 禁用时,坐标定义打印平台上的一个绝对位置。"
  808. msgctxt "top_bottom label"
  809. msgid "Top/Bottom"
  810. msgstr "顶 / 底层"
  811. msgctxt "top_bottom description"
  812. msgid "Top/Bottom"
  813. msgstr "顶 / 底层"
  814. msgctxt "roofing_extruder_nr label"
  815. msgid "Top Surface Skin Extruder"
  816. msgstr "顶部皮肤挤出机"
  817. msgctxt "roofing_extruder_nr description"
  818. msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion."
  819. msgstr "用于打印最顶部皮肤的挤出机组。 用于多重挤出。"
  820. msgctxt "roofing_layer_count label"
  821. msgid "Top Surface Skin Layers"
  822. msgstr "顶部表面皮肤层"
  823. msgctxt "roofing_layer_count description"
  824. msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces."
  825. msgstr "最顶部皮肤层数。 通常只需一层最顶层就足以生成较高质量的顶部表面。"
  826. msgctxt "roofing_line_width label"
  827. msgid "Top Surface Skin Line Width"
  828. msgstr "顶部表面皮肤线宽"
  829. msgctxt "roofing_line_width description"
  830. msgid "Width of a single line of the areas at the top of the print."
  831. msgstr "打印顶部区域单一走线宽度。"
  832. msgctxt "roofing_pattern label"
  833. msgid "Top Surface Skin Pattern"
  834. msgstr "顶部表面皮肤图案"
  835. msgctxt "roofing_pattern description"
  836. msgid "The pattern of the top most layers."
  837. msgstr "最顶层图案。"
  838. msgctxt "roofing_pattern option lines"
  839. msgid "Lines"
  840. msgstr "走线"
  841. msgctxt "roofing_pattern option concentric"
  842. msgid "Concentric"
  843. msgstr "同心"
  844. msgctxt "roofing_pattern option zigzag"
  845. msgid "Zig Zag"
  846. msgstr "锯齿形"
  847. msgctxt "roofing_monotonic label"
  848. msgid "Monotonic Top Surface Order"
  849. msgstr "单调顶部表面顺序"
  850. msgctxt "roofing_monotonic description"
  851. 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."
  852. msgstr "按照一定的顺序打印顶部表面走线,使它们始终在一个方向上与相邻的走线重叠。这需要更长一些的打印时间,但会使平面看起来更一致。"
  853. msgctxt "roofing_angles label"
  854. msgid "Top Surface Skin Line Directions"
  855. msgstr "顶部表面皮肤走线方向"
  856. msgctxt "roofing_angles description"
  857. 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)."
  858. msgstr "当顶部表面皮肤层采用线条或锯齿状图案时使用的整数走线方向的列表。 列表中的元素随层的进度依次使用,当达到列表末尾时,它将从头开始。 列表项以逗号分隔,整个列表包含在方括号中。 默认是一个空列表,即意味着使用传统的默认角度(45 和 135 度)。"
  859. msgctxt "top_bottom_extruder_nr label"
  860. msgid "Top/Bottom Extruder"
  861. msgstr "顶部/底部挤出机"
  862. msgctxt "top_bottom_extruder_nr description"
  863. msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion."
  864. msgstr "用于打印顶部和底部皮肤的挤出机组。 用于多重挤出。"
  865. msgctxt "top_bottom_thickness label"
  866. msgid "Top/Bottom Thickness"
  867. msgstr "顶层 / 底层厚度"
  868. msgctxt "top_bottom_thickness description"
  869. 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."
  870. msgstr "打印品中顶层/底层的厚度。 该值除以层高定义顶层/底层的数量。"
  871. msgctxt "top_thickness label"
  872. msgid "Top Thickness"
  873. msgstr "顶层厚度"
  874. msgctxt "top_thickness description"
  875. msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers."
  876. msgstr "打印品中顶层的厚度。 该值除以层高定义顶层的数量。"
  877. msgctxt "top_layers label"
  878. msgid "Top Layers"
  879. msgstr "顶部层数"
  880. msgctxt "top_layers description"
  881. msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number."
  882. msgstr "顶层的数量。 在按顶层厚度计算时,该值舍入为整数。"
  883. msgctxt "bottom_thickness label"
  884. msgid "Bottom Thickness"
  885. msgstr "底层厚度"
  886. msgctxt "bottom_thickness description"
  887. msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers."
  888. msgstr "打印品中底层的厚度。 此值除以层高定义底层数量。"
  889. msgctxt "bottom_layers label"
  890. msgid "Bottom Layers"
  891. msgstr "底部层数"
  892. msgctxt "bottom_layers description"
  893. msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number."
  894. msgstr "底层的数量。 在按底层厚度计算时,该值舍入为整数。"
  895. msgctxt "initial_bottom_layers label"
  896. msgid "Initial Bottom Layers"
  897. msgstr "初始底层数"
  898. msgctxt "initial_bottom_layers description"
  899. 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."
  900. msgstr "从构建板向上算起的初始底层数。在按底层厚度计算时,该值四舍五入为整数。"
  901. msgctxt "top_bottom_pattern label"
  902. msgid "Top/Bottom Pattern"
  903. msgstr "顶部 / 底部走线图案"
  904. msgctxt "top_bottom_pattern description"
  905. msgid "The pattern of the top/bottom layers."
  906. msgstr "顶层/底层图案。"
  907. msgctxt "top_bottom_pattern option lines"
  908. msgid "Lines"
  909. msgstr "直线"
  910. msgctxt "top_bottom_pattern option concentric"
  911. msgid "Concentric"
  912. msgstr "同心圆"
  913. msgctxt "top_bottom_pattern option zigzag"
  914. msgid "Zig Zag"
  915. msgstr "锯齿状"
  916. msgctxt "top_bottom_pattern_0 label"
  917. msgid "Bottom Pattern Initial Layer"
  918. msgstr "底层图案起始层"
  919. msgctxt "top_bottom_pattern_0 description"
  920. msgid "The pattern on the bottom of the print on the first layer."
  921. msgstr "打印品底部第一层上的图案。"
  922. msgctxt "top_bottom_pattern_0 option lines"
  923. msgid "Lines"
  924. msgstr "直线"
  925. msgctxt "top_bottom_pattern_0 option concentric"
  926. msgid "Concentric"
  927. msgstr "同心圆"
  928. msgctxt "top_bottom_pattern_0 option zigzag"
  929. msgid "Zig Zag"
  930. msgstr "锯齿状"
  931. msgctxt "connect_skin_polygons label"
  932. msgid "Connect Top/Bottom Polygons"
  933. msgstr "连接顶部/底部多边形"
  934. msgctxt "connect_skin_polygons description"
  935. 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."
  936. msgstr "在顶部/底部皮肤路径互相紧靠运行的地方连接它们。对于同心图案,启用此设置可大大减少空驶时间,但由于连接可在填充中途发生,此功能可能会降低顶部表面质量。"
  937. msgctxt "skin_monotonic label"
  938. msgid "Monotonic Top/Bottom Order"
  939. msgstr "单调顶部/底部顺序"
  940. msgctxt "skin_monotonic description"
  941. 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."
  942. msgstr "按照一定的顺序打印顶部/底部走线,使它们始终在一个方向上与相邻的走线重叠。这需要更长一些的打印时间,但会使平面看起来更一致。"
  943. msgctxt "skin_angles label"
  944. msgid "Top/Bottom Line Directions"
  945. msgstr "顶层/底层走线方向"
  946. msgctxt "skin_angles description"
  947. 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)."
  948. msgstr "当顶层/底层采用线条或锯齿状图案时使用的整数走线方向的列表。 列表中的元素随层的进度依次使用,当达到列表末尾时,它将从头开始。 列表项以逗号分隔,整个列表包含在方括号中。 默认是一个空列表,即意味着使用传统的默认角度(45 和 135 度)。"
  949. msgctxt "small_skin_width label"
  950. msgid "Small Top/Bottom Width"
  951. msgstr "顶宽/底宽较小"
  952. msgctxt "small_skin_width description"
  953. msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')."
  954. msgstr "顶部/底部小区域用墙壁填充,而不是默认顶部/底部图案。这有助于避免剧烈运动。最顶层(暴露在空气中)默认关闭此选项(见“表面顶部/底部小区域”)。"
  955. msgctxt "small_skin_on_surface label"
  956. msgid "Small Top/Bottom On Surface"
  957. msgstr "表面顶部/底部小区域"
  958. msgctxt "small_skin_on_surface description"
  959. msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern."
  960. msgstr "使最顶层蒙皮图层(暴露在空气中)的小区域(最多“小顶部/底部宽度”)用墙壁填充,而不是默认图案。"
  961. msgctxt "skin_no_small_gaps_heuristic label"
  962. msgid "No Skin in Z Gaps"
  963. msgstr "Z 间隙内无表层"
  964. msgctxt "skin_no_small_gaps_heuristic description"
  965. 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."
  966. msgstr "当模型中只有几个分层有微小垂直间隙时,通常狭窄空间的分层周围应有表层。如果垂直间隙非常小,则启用此设置不生成表层。这缩短了打印时间和切片时间,但从技术方面看,会使填充物暴露在空气中。"
  967. msgctxt "skin_outline_count label"
  968. msgid "Extra Skin Wall Count"
  969. msgstr "额外皮肤壁计数"
  970. msgctxt "skin_outline_count description"
  971. 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."
  972. msgstr "用多个同心线代替顶部/底部图案的最外面部分。 使用一条或两条线改善从填充材料开始的顶板。"
  973. msgctxt "ironing_enabled label"
  974. msgid "Enable Ironing"
  975. msgstr "启用熨平"
  976. msgctxt "ironing_enabled description"
  977. 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."
  978. msgstr "再次经过顶部表面,但这次挤出的材料非常少。这意味着将进一步熔化顶部的塑料,形成更平滑的表面。喷嘴室中的压力保持很高,确保表面折痕中也能填充材料,以保证细节。"
  979. msgctxt "ironing_only_highest_layer label"
  980. msgid "Iron Only Highest Layer"
  981. msgstr "仅熨平最高层"
  982. msgctxt "ironing_only_highest_layer description"
  983. 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."
  984. msgstr "仅在网格的最后一层执行熨平。 如果较低的层不需要平滑的表面效果,这将节省时间。"
  985. msgctxt "ironing_pattern label"
  986. msgid "Ironing Pattern"
  987. msgstr "熨平图案"
  988. msgctxt "ironing_pattern description"
  989. msgid "The pattern to use for ironing top surfaces."
  990. msgstr "用于熨平顶部表面的图案。"
  991. msgctxt "ironing_pattern option concentric"
  992. msgid "Concentric"
  993. msgstr "同心"
  994. msgctxt "ironing_pattern option zigzag"
  995. msgid "Zig Zag"
  996. msgstr "锯齿形"
  997. msgctxt "ironing_monotonic label"
  998. msgid "Monotonic Ironing Order"
  999. msgstr "单调熨平顺序"
  1000. msgctxt "ironing_monotonic description"
  1001. 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."
  1002. msgstr "按照一定的顺序打印熨平走线,使它们始终在一个方向上与相邻的走线重叠。这需要更长一些的打印时间,但会使平面看起来更一致。"
  1003. msgctxt "ironing_line_spacing label"
  1004. msgid "Ironing Line Spacing"
  1005. msgstr "熨平走线间距"
  1006. msgctxt "ironing_line_spacing description"
  1007. msgid "The distance between the lines of ironing."
  1008. msgstr "熨平走线之间的距离。"
  1009. msgctxt "ironing_flow label"
  1010. msgid "Ironing Flow"
  1011. msgstr "熨平流量"
  1012. msgctxt "ironing_flow description"
  1013. 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."
  1014. msgstr "熨平期间相对于正常皮肤走线的挤出材料量。 保持喷嘴填充状态有助于填充顶层表面的一些缝隙,但如填充过多则会导致表面上过度挤出和光点。"
  1015. msgctxt "ironing_inset label"
  1016. msgid "Ironing Inset"
  1017. msgstr "熨平嵌入"
  1018. msgctxt "ironing_inset description"
  1019. 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."
  1020. msgstr "与模型边缘保持的距离。 一直熨平至网格的边缘可能导致打印品出现锯齿状边缘。"
  1021. msgctxt "speed_ironing label"
  1022. msgid "Ironing Speed"
  1023. msgstr "熨平速度"
  1024. msgctxt "speed_ironing description"
  1025. msgid "The speed at which to pass over the top surface."
  1026. msgstr "通过顶部表面的速度。"
  1027. msgctxt "acceleration_ironing label"
  1028. msgid "Ironing Acceleration"
  1029. msgstr "熨平加速度"
  1030. msgctxt "acceleration_ironing description"
  1031. msgid "The acceleration with which ironing is performed."
  1032. msgstr "执行熨平的加速度。"
  1033. msgctxt "jerk_ironing label"
  1034. msgid "Ironing Jerk"
  1035. msgstr "熨平抖动速度"
  1036. msgctxt "jerk_ironing description"
  1037. msgid "The maximum instantaneous velocity change while performing ironing."
  1038. msgstr "执行熨平时的最大瞬时速度变化。"
  1039. msgctxt "skin_overlap label"
  1040. msgid "Skin Overlap Percentage"
  1041. msgstr "皮肤重叠百分比"
  1042. msgctxt "skin_overlap description"
  1043. 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."
  1044. msgstr "调整壁和皮肤中心线的(端点)之间的重叠量,以皮肤线走线和最内壁的线宽度的百分比表示。稍微重叠可让各个壁与皮肤牢固连接。请注意,对于相等的皮肤和壁线宽度,任何超过 50% 的百分比可能已经导致任何皮肤越过壁,因为在该点,皮肤挤出机的喷嘴位置可能已经达到越过壁中间的位置。"
  1045. msgctxt "skin_overlap_mm label"
  1046. msgid "Skin Overlap"
  1047. msgstr "皮肤重叠"
  1048. msgctxt "skin_overlap_mm description"
  1049. 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."
  1050. msgstr "调整壁和皮肤中心线的(端点)之间的重叠量。稍微重叠可让各个壁与皮肤牢固连接。请注意,对于相等的皮肤和壁线宽度,任何超过壁宽度一半的值可能已经导致任何皮肤越过壁,因为在该点,皮肤挤出机的喷嘴位置可能已经达到越过壁中间的位置。"
  1051. msgctxt "skin_preshrink label"
  1052. msgid "Skin Removal Width"
  1053. msgstr "肤移除宽度"
  1054. msgctxt "skin_preshrink description"
  1055. 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."
  1056. msgstr "将被移除的皮肤区域的最大宽度。 小于此值的所有皮肤区域都将消失。 这有助于限制在模型的倾斜表面打印顶部/底部皮肤时所耗用的时间和材料。"
  1057. msgctxt "top_skin_preshrink label"
  1058. msgid "Top Skin Removal Width"
  1059. msgstr "顶部皮肤移除宽度"
  1060. msgctxt "top_skin_preshrink description"
  1061. 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."
  1062. msgstr "将被移除的顶部皮肤区域的最大宽度。 小于此值的所有皮肤区域都将消失。 这有助于限制在模型的倾斜表面打印顶部皮肤时所耗用的时间和材料。"
  1063. msgctxt "bottom_skin_preshrink label"
  1064. msgid "Bottom Skin Removal Width"
  1065. msgstr "底部皮肤移除宽度"
  1066. msgctxt "bottom_skin_preshrink description"
  1067. 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."
  1068. msgstr "将被移除的底部皮肤区域的最大宽度。 小于此值的所有皮肤区域都将消失。 这有助于限制在模型的倾斜表面打印底部皮肤时所耗用的时间和材料。"
  1069. msgctxt "expand_skins_expand_distance label"
  1070. msgid "Skin Expand Distance"
  1071. msgstr "皮肤扩展距离"
  1072. msgctxt "expand_skins_expand_distance description"
  1073. 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."
  1074. msgstr "皮肤扩展到填充物中的距离。 值越大会让皮肤与填充图案更好地附着,并让相邻层的层壁与皮肤更好地粘着。 较低的值将节省所用的材料量。"
  1075. msgctxt "top_skin_expand_distance label"
  1076. msgid "Top Skin Expand Distance"
  1077. msgstr "顶部皮肤扩展距离"
  1078. msgctxt "top_skin_expand_distance description"
  1079. 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."
  1080. msgstr "顶部皮肤扩展到填充物中的距离。 值越大会让皮肤与填充图案更好地附着,并让上方层的层壁与皮肤更好地粘着。 较低的值将节省所用的材料量。"
  1081. msgctxt "bottom_skin_expand_distance label"
  1082. msgid "Bottom Skin Expand Distance"
  1083. msgstr "底部皮肤扩展距离"
  1084. msgctxt "bottom_skin_expand_distance description"
  1085. 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."
  1086. msgstr "底部皮肤扩展到填充物中的距离。 值越大会让皮肤与填充图案更好地附着,并让皮肤与下面层的壁更好地粘着。 较低的值将节省所用的材料量。"
  1087. msgctxt "max_skin_angle_for_expansion label"
  1088. msgid "Maximum Skin Angle for Expansion"
  1089. msgstr "最大扩展皮肤角度"
  1090. msgctxt "max_skin_angle_for_expansion description"
  1091. 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."
  1092. msgstr "如果对象的顶部和/或底部表面的角度大于此设置,则不要扩展其顶部/底部皮肤。这会避免扩展在模型表面有接近垂直的坡度时所形成的狭窄皮肤区域。0° 的角为水平,将导致不扩展任何皮肤,而 90° 的角为垂直,将导致扩展所有皮肤。"
  1093. msgctxt "min_skin_width_for_expansion label"
  1094. msgid "Minimum Skin Width for Expansion"
  1095. msgstr "最小扩展皮肤宽度"
  1096. msgctxt "min_skin_width_for_expansion description"
  1097. 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."
  1098. msgstr "如果皮肤区域宽度小于此值,则不会扩展。 这会避免扩展在模型表面的坡度接近垂直时所形成的狭窄皮肤区域。"
  1099. msgctxt "infill label"
  1100. msgid "Infill"
  1101. msgstr "填充"
  1102. msgctxt "infill description"
  1103. msgid "Infill"
  1104. msgstr "填充"
  1105. msgctxt "infill_extruder_nr label"
  1106. msgid "Infill Extruder"
  1107. msgstr "填充挤出机"
  1108. msgctxt "infill_extruder_nr description"
  1109. msgid "The extruder train used for printing infill. This is used in multi-extrusion."
  1110. msgstr "用于打印填充的挤出机组。 用于多重挤出。"
  1111. msgctxt "infill_sparse_density label"
  1112. msgid "Infill Density"
  1113. msgstr "填充密度"
  1114. msgctxt "infill_sparse_density description"
  1115. msgid "Adjusts the density of infill of the print."
  1116. msgstr "调整打印填充的密度。"
  1117. msgctxt "infill_line_distance label"
  1118. msgid "Infill Line Distance"
  1119. msgstr "填充走线距离"
  1120. msgctxt "infill_line_distance description"
  1121. msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width."
  1122. msgstr "打印填充走线之间的距离。 该设置是通过填充密度和填充线宽度计算。"
  1123. msgctxt "infill_pattern label"
  1124. msgid "Infill Pattern"
  1125. msgstr "填充图案"
  1126. msgctxt "infill_pattern description"
  1127. 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."
  1128. msgstr "打印的填充材料的图案。直线和锯齿形填充交替在各层上变换方向,从而降低材料成本。每层都完整地打印网格、三角形、三六边形、立方体、八角形、四分之一立方体、十字和同心图案。螺旋二十四面体、立方体、四分之一立方体和八角形填充随每层变化,以使各方向的强度分布更均衡。闪电形填充尝试通过仅支撑物体顶部,将填充程度降至最低。"
  1129. msgctxt "infill_pattern option grid"
  1130. msgid "Grid"
  1131. msgstr "网格"
  1132. msgctxt "infill_pattern option lines"
  1133. msgid "Lines"
  1134. msgstr "直线"
  1135. msgctxt "infill_pattern option triangles"
  1136. msgid "Triangles"
  1137. msgstr "三角形"
  1138. msgctxt "infill_pattern option trihexagon"
  1139. msgid "Tri-Hexagon"
  1140. msgstr "内六角"
  1141. msgctxt "infill_pattern option cubic"
  1142. msgid "Cubic"
  1143. msgstr "立方体"
  1144. msgctxt "infill_pattern option cubicsubdiv"
  1145. msgid "Cubic Subdivision"
  1146. msgstr "立方体分区"
  1147. msgctxt "infill_pattern option tetrahedral"
  1148. msgid "Octet"
  1149. msgstr "八角形"
  1150. msgctxt "infill_pattern option quarter_cubic"
  1151. msgid "Quarter Cubic"
  1152. msgstr "四面体"
  1153. msgctxt "infill_pattern option concentric"
  1154. msgid "Concentric"
  1155. msgstr "同心圆"
  1156. msgctxt "infill_pattern option zigzag"
  1157. msgid "Zig Zag"
  1158. msgstr "锯齿状"
  1159. msgctxt "infill_pattern option cross"
  1160. msgid "Cross"
  1161. msgstr "交叉"
  1162. msgctxt "infill_pattern option cross_3d"
  1163. msgid "Cross 3D"
  1164. msgstr "交叉 3D"
  1165. msgctxt "infill_pattern option gyroid"
  1166. msgid "Gyroid"
  1167. msgstr "螺旋二十四面体"
  1168. msgctxt "infill_pattern option lightning"
  1169. msgid "Lightning"
  1170. msgstr "闪电形"
  1171. msgctxt "zig_zaggify_infill label"
  1172. msgid "Connect Infill Lines"
  1173. msgstr "连接填充走线"
  1174. msgctxt "zig_zaggify_infill description"
  1175. 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."
  1176. msgstr "使用沿内壁形状的走线连接填充图案与内壁相接的各端。启用此设置会使填充更好地粘着在壁上,减少填充物效果对垂直表面质量的影响。禁用此设置可减少使用的材料量。"
  1177. msgctxt "connect_infill_polygons label"
  1178. msgid "Connect Infill Polygons"
  1179. msgstr "连接填充多边形"
  1180. msgctxt "connect_infill_polygons description"
  1181. 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."
  1182. msgstr "在填充路径互相紧靠运行的地方连接它们。对于包含若干闭合多边形的填充图案,启用此设置可大大减少空驶时间。"
  1183. msgctxt "infill_angles label"
  1184. msgid "Infill Line Directions"
  1185. msgstr "填充走线方向"
  1186. msgctxt "infill_angles description"
  1187. 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)."
  1188. msgstr "要使用的整数走线方向列表。 列表中的元素随层的进度依次使用,当达到列表末尾时,它将从头开始。 列表项以逗号分隔,整个列表包含在方括号中。 默认是一个空列表,即意味着使用传统的默认角度(线条和锯齿形图案为 45 和 135 度,其他所有图案为 45 度)。"
  1189. msgctxt "infill_offset_x label"
  1190. msgid "Infill X Offset"
  1191. msgstr "填充 X 轴偏移量"
  1192. msgctxt "infill_offset_x description"
  1193. msgid "The infill pattern is moved this distance along the X axis."
  1194. msgstr "填充图案沿 X 轴移动此距离。"
  1195. msgctxt "infill_offset_y label"
  1196. msgid "Infill Y Offset"
  1197. msgstr "填充 Y 轴偏移量"
  1198. msgctxt "infill_offset_y description"
  1199. msgid "The infill pattern is moved this distance along the Y axis."
  1200. msgstr "填充图案沿 Y 轴移动此距离。"
  1201. msgctxt "infill_randomize_start_location label"
  1202. msgid "Randomize Infill Start"
  1203. msgstr "开始随机化填充"
  1204. msgctxt "infill_randomize_start_location description"
  1205. 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."
  1206. msgstr "先随机化打印哪条填充线。这可以防止一个部分变强,但会导致一次额外的空驶。"
  1207. msgctxt "infill_multiplier label"
  1208. msgid "Infill Line Multiplier"
  1209. msgstr "填充走线乘数"
  1210. msgctxt "infill_multiplier description"
  1211. 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."
  1212. msgstr "将每个填充走线转换成这种多重走线。额外走线互相不交叉,而是互相避开。这使得填充更严格,但会增加打印时间和材料使用。"
  1213. msgctxt "infill_wall_line_count label"
  1214. msgid "Extra Infill Wall Count"
  1215. msgstr "额外填充壁计数"
  1216. msgctxt "infill_wall_line_count description"
  1217. msgid "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.\nThis 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."
  1218. msgstr "在填充区域周围添加额外壁。此类壁可减少顶部/底部皮肤走线,这意味着只要付出一些额外的材料就可以使用更少的顶部/底部皮肤层达到相同的质量。"
  1219. "在适当配置的情况下,此功能可结合连接填充多边形以将所有填充物连接到单一挤出路径而无需空驶或回抽。"
  1220. msgctxt "sub_div_rad_add label"
  1221. msgid "Cubic Subdivision Shell"
  1222. msgstr "立方体分区外壳"
  1223. msgctxt "sub_div_rad_add description"
  1224. 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."
  1225. msgstr "从每个立方体的中心对半径进行添加,以检查模型的边界,进而决定是否应对此立方体进行分区。 值越大则模型边界附近的小型立方体外壳越厚。"
  1226. msgctxt "infill_overlap label"
  1227. msgid "Infill Overlap Percentage"
  1228. msgstr "填充重叠百分比"
  1229. msgctxt "infill_overlap description"
  1230. 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."
  1231. msgstr "填充物和壁之间的重叠量占填充走线宽度的百分比。稍微重叠可让各个壁与填充物牢固连接。"
  1232. msgctxt "infill_overlap_mm label"
  1233. msgid "Infill Overlap"
  1234. msgstr "填充重叠"
  1235. msgctxt "infill_overlap_mm description"
  1236. msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill."
  1237. msgstr "填充物和壁之间的重叠量。 稍微重叠可让各个壁与填充物牢固连接。"
  1238. msgctxt "infill_wipe_dist label"
  1239. msgid "Infill Wipe Distance"
  1240. msgstr "填充物擦拭距离"
  1241. msgctxt "infill_wipe_dist description"
  1242. 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."
  1243. msgstr "每条填充走线后插入的空驶距离,让填充物更好地粘着到壁上。 此选项与填充重叠类似,但没有挤出,且仅位于填充走线的一端。"
  1244. msgctxt "infill_sparse_thickness label"
  1245. msgid "Infill Layer Thickness"
  1246. msgstr "填充层厚度"
  1247. msgctxt "infill_sparse_thickness description"
  1248. msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded."
  1249. msgstr "填充材料每层的厚度。 该值应始终为层高的乘数,否则应进行舍入。"
  1250. msgctxt "gradual_infill_steps label"
  1251. msgid "Gradual Infill Steps"
  1252. msgstr "渐进填充步阶"
  1253. msgctxt "gradual_infill_steps description"
  1254. 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."
  1255. msgstr "在进入顶部表面以下时,将填充密度减少一半的次数。 越靠近顶面的区域密度越高,最高达到填充密度。"
  1256. msgctxt "gradual_infill_step_height label"
  1257. msgid "Gradual Infill Step Height"
  1258. msgstr "渐进填充步阶高度"
  1259. msgctxt "gradual_infill_step_height description"
  1260. msgid "The height of infill of a given density before switching to half the density."
  1261. msgstr "在切换至密度的一半前指定密度的填充高度。"
  1262. msgctxt "infill_before_walls label"
  1263. msgid "Infill Before Walls"
  1264. msgstr "先填充物后壁"
  1265. msgctxt "infill_before_walls description"
  1266. 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."
  1267. msgstr "打印壁前先打印填充物。 先打印壁可能产生更精确的壁,但悬垂打印质量会较差。 先打印填充会产生更牢固的壁,但有时候填充图案会透过表面显现出来。"
  1268. msgctxt "min_infill_area label"
  1269. msgid "Minimum Infill Area"
  1270. msgstr "最小填充区域"
  1271. msgctxt "min_infill_area description"
  1272. msgid "Don't generate areas of infill smaller than this (use skin instead)."
  1273. msgstr "不要生成小于此面积的填充区域(使用皮肤取代)。"
  1274. msgctxt "infill_support_enabled label"
  1275. msgid "Infill Support"
  1276. msgstr "填充支撑"
  1277. msgctxt "infill_support_enabled description"
  1278. 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."
  1279. msgstr "只在模型的顶部支持打印填充结构。这样可以减少打印时间和材料的使用,但是会导致不一致的对象强度。"
  1280. msgctxt "infill_support_angle label"
  1281. msgid "Infill Overhang Angle"
  1282. msgstr "填充悬垂角"
  1283. msgctxt "infill_support_angle description"
  1284. 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."
  1285. msgstr "添加内填充的内部覆盖的最小角度。在一个0的值中,完全填满了填充,90将不提供任何填充。"
  1286. msgctxt "skin_edge_support_thickness label"
  1287. msgid "Skin Edge Support Thickness"
  1288. msgstr "皮肤边缘支撑厚度"
  1289. msgctxt "skin_edge_support_thickness description"
  1290. msgid "The thickness of the extra infill that supports skin edges."
  1291. msgstr "支撑皮肤边缘的额外填充物的厚度。"
  1292. msgctxt "skin_edge_support_layers label"
  1293. msgid "Skin Edge Support Layers"
  1294. msgstr "皮肤边缘支撑层数"
  1295. msgctxt "skin_edge_support_layers description"
  1296. msgid "The number of infill layers that supports skin edges."
  1297. msgstr "支撑皮肤边缘的填充物的层数。"
  1298. msgctxt "lightning_infill_support_angle label"
  1299. msgid "Lightning Infill Support Angle"
  1300. msgstr "闪电形填充支撑角"
  1301. msgctxt "lightning_infill_support_angle description"
  1302. msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer."
  1303. msgstr "决定闪电形填充层何时必须支撑其上方的任何物体。在给定的层厚度下测得的角度。"
  1304. msgctxt "lightning_infill_overhang_angle label"
  1305. msgid "Lightning Infill Overhang Angle"
  1306. msgstr "闪电形填充悬垂角"
  1307. msgctxt "lightning_infill_overhang_angle description"
  1308. msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness."
  1309. msgstr "决定闪电形填充层何时必须支撑其上方的模型。在给定的厚度下测得的角度。"
  1310. msgctxt "lightning_infill_prune_angle label"
  1311. msgid "Lightning Infill Prune Angle"
  1312. msgstr "闪电形填充修剪角"
  1313. msgctxt "lightning_infill_prune_angle description"
  1314. 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."
  1315. msgstr "为节省材料,填充线的端点将被缩短。此设置为这些线的端点形成的悬垂角度。"
  1316. msgctxt "lightning_infill_straightening_angle label"
  1317. msgid "Lightning Infill Straightening Angle"
  1318. msgstr "闪电形填充矫直角"
  1319. msgctxt "lightning_infill_straightening_angle description"
  1320. 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."
  1321. msgstr "为节省打印时间,填充线将被拉直。这是整条填充线上允许的最大悬垂角度。"
  1322. msgctxt "material label"
  1323. msgid "Material"
  1324. msgstr "材料"
  1325. msgctxt "material description"
  1326. msgid "Material"
  1327. msgstr "材料"
  1328. msgctxt "default_material_print_temperature label"
  1329. msgid "Default Printing Temperature"
  1330. msgstr "默认打印温度"
  1331. msgctxt "default_material_print_temperature description"
  1332. 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"
  1333. msgstr "用于打印的默认温度。 应为材料的\"基本\"温度。 所有其他打印温度均应使用基于此值的偏移量"
  1334. msgctxt "build_volume_temperature label"
  1335. msgid "Build Volume Temperature"
  1336. msgstr "打印体积温度"
  1337. msgctxt "build_volume_temperature description"
  1338. msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted."
  1339. msgstr "打印环境温度。若为 0,将不会调整构建体积温度。"
  1340. msgctxt "material_print_temperature label"
  1341. msgid "Printing Temperature"
  1342. msgstr "打印温度"
  1343. msgctxt "material_print_temperature description"
  1344. msgid "The temperature used for printing."
  1345. msgstr "用于打印的温度。"
  1346. msgctxt "material_print_temperature_layer_0 label"
  1347. msgid "Printing Temperature Initial Layer"
  1348. msgstr "打印温度起始层"
  1349. msgctxt "material_print_temperature_layer_0 description"
  1350. msgid "The temperature used for printing the first layer."
  1351. msgstr "打印第一层时使用的温度。"
  1352. msgctxt "material_initial_print_temperature label"
  1353. msgid "Initial Printing Temperature"
  1354. msgstr "起始打印温度"
  1355. msgctxt "material_initial_print_temperature description"
  1356. msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start."
  1357. msgstr "加热到可以开始打印的打印温度时的最低温度。"
  1358. msgctxt "material_final_print_temperature label"
  1359. msgid "Final Printing Temperature"
  1360. msgstr "最终打印温度"
  1361. msgctxt "material_final_print_temperature description"
  1362. msgid "The temperature to which to already start cooling down just before the end of printing."
  1363. msgstr "打印结束前开始冷却的温度。"
  1364. msgctxt "material_extrusion_cool_down_speed label"
  1365. msgid "Extrusion Cool Down Speed Modifier"
  1366. msgstr "挤出冷却速度调节器"
  1367. msgctxt "material_extrusion_cool_down_speed description"
  1368. 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."
  1369. msgstr "挤出时喷嘴冷却的额外速度。 使用相同的值表示挤出过程中进行加热时的加热速度损失。"
  1370. msgctxt "default_material_bed_temperature label"
  1371. msgid "Default Build Plate Temperature"
  1372. msgstr "默认打印平台温度"
  1373. msgctxt "default_material_bed_temperature description"
  1374. 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"
  1375. msgstr "用于加热打印平台的默认温度。这应该作为打印平台的“基础”温度。所有其他打印温度均应基于此值进行调整"
  1376. msgctxt "material_bed_temperature label"
  1377. msgid "Build Plate Temperature"
  1378. msgstr "打印平台温度"
  1379. msgctxt "material_bed_temperature description"
  1380. msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated."
  1381. msgstr "用于加热构建板的温度。如果此项为 0,则保持不加热构建板。"
  1382. msgctxt "material_bed_temperature_layer_0 label"
  1383. msgid "Build Plate Temperature Initial Layer"
  1384. msgstr "打印平台温度起始层"
  1385. msgctxt "material_bed_temperature_layer_0 description"
  1386. 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."
  1387. msgstr "打印第一层时用于加热构建板的温度。如果此项为 0,则在打印第一层期间保持不加热构建板。"
  1388. msgctxt "material_adhesion_tendency label"
  1389. msgid "Adhesion Tendency"
  1390. msgstr "附着倾向"
  1391. msgctxt "material_adhesion_tendency description"
  1392. msgid "Surface adhesion tendency."
  1393. msgstr "表面附着倾向。"
  1394. msgctxt "material_surface_energy label"
  1395. msgid "Surface Energy"
  1396. msgstr "表面能"
  1397. msgctxt "material_surface_energy description"
  1398. msgid "Surface energy."
  1399. msgstr "表面能。"
  1400. msgctxt "material_shrinkage_percentage label"
  1401. msgid "Scaling Factor Shrinkage Compensation"
  1402. msgstr "缩放因子收缩补偿"
  1403. msgctxt "material_shrinkage_percentage description"
  1404. msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor."
  1405. msgstr "为了补偿材料在冷却时的收缩,将用此因子缩放模型。"
  1406. msgctxt "material_shrinkage_percentage_xy label"
  1407. msgid "Horizontal Scaling Factor Shrinkage Compensation"
  1408. msgstr "水平缩放因子收缩补偿"
  1409. msgctxt "material_shrinkage_percentage_xy description"
  1410. 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)."
  1411. msgstr "为了补偿材料在冷却时的收缩,将用此因子在 XY 方向(水平)上缩放模型。"
  1412. msgctxt "material_shrinkage_percentage_z label"
  1413. msgid "Vertical Scaling Factor Shrinkage Compensation"
  1414. msgstr "垂直缩放因子收缩补偿"
  1415. msgctxt "material_shrinkage_percentage_z description"
  1416. 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)."
  1417. msgstr "为了补偿材料在冷却时的收缩,将用此因子在 Z 方向(垂直)上缩放模型。"
  1418. msgctxt "material_crystallinity label"
  1419. msgid "Crystalline Material"
  1420. msgstr "晶体材料"
  1421. msgctxt "material_crystallinity description"
  1422. 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)?"
  1423. msgstr "该材料为受热后脱落干净的类型(晶体),还是会产生长交织状聚合物链的类型(非晶体)?"
  1424. msgctxt "material_anti_ooze_retracted_position label"
  1425. msgid "Anti-ooze Retracted Position"
  1426. msgstr "防渗出回抽位置"
  1427. msgctxt "material_anti_ooze_retracted_position description"
  1428. msgid "How far the material needs to be retracted before it stops oozing."
  1429. msgstr "材料在停止渗出前所需的回抽长度。"
  1430. msgctxt "material_anti_ooze_retraction_speed label"
  1431. msgid "Anti-ooze Retraction Speed"
  1432. msgstr "防渗出回抽速度"
  1433. msgctxt "material_anti_ooze_retraction_speed description"
  1434. msgid "How fast the material needs to be retracted during a filament switch to prevent oozing."
  1435. msgstr "在耗材用于防渗出过程中材料所需的回抽速率。"
  1436. msgctxt "material_break_preparation_retracted_position label"
  1437. msgid "Break Preparation Retracted Position"
  1438. msgstr "断裂缓冲期回抽位置"
  1439. msgctxt "material_break_preparation_retracted_position description"
  1440. msgid "How far the filament can be stretched before it breaks, while heated."
  1441. msgstr "耗材受热拉伸但不断裂的极限长度。"
  1442. msgctxt "material_break_preparation_speed label"
  1443. msgid "Break Preparation Retraction Speed"
  1444. msgstr "断裂缓冲期回抽速度"
  1445. msgctxt "material_break_preparation_speed description"
  1446. msgid "How fast the filament needs to be retracted just before breaking it off in a retraction."
  1447. msgstr "耗材在回抽过程中恰好折断的回抽速率。"
  1448. msgctxt "material_break_preparation_temperature label"
  1449. msgid "Break Preparation Temperature"
  1450. msgstr "断裂缓冲期温度"
  1451. msgctxt "material_break_preparation_temperature description"
  1452. msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature."
  1453. msgstr "用于清除材料的温度,应大致等于可达到的最高打印温度。"
  1454. msgctxt "material_break_retracted_position label"
  1455. msgid "Break Retracted Position"
  1456. msgstr "断裂回抽位置"
  1457. msgctxt "material_break_retracted_position description"
  1458. msgid "How far to retract the filament in order to break it cleanly."
  1459. msgstr "为完全脱落耗材而抽回耗材的长度。"
  1460. msgctxt "material_break_speed label"
  1461. msgid "Break Retraction Speed"
  1462. msgstr "断裂回抽速度"
  1463. msgctxt "material_break_speed description"
  1464. msgid "The speed at which to retract the filament in order to break it cleanly."
  1465. msgstr "为完全脱落耗材而抽回耗材的速度。"
  1466. msgctxt "material_break_temperature label"
  1467. msgid "Break Temperature"
  1468. msgstr "折断温度"
  1469. msgctxt "material_break_temperature description"
  1470. msgid "The temperature at which the filament is broken for a clean break."
  1471. msgstr "耗材在完全脱落时的温度。"
  1472. msgctxt "material_flush_purge_speed label"
  1473. msgid "Flush Purge Speed"
  1474. msgstr "冲洗清除速度"
  1475. msgctxt "material_flush_purge_speed description"
  1476. msgid "How fast to prime the material after switching to a different material."
  1477. msgstr "切换到其他材料后,装填材料的速度如何。"
  1478. msgctxt "material_flush_purge_length label"
  1479. msgid "Flush Purge Length"
  1480. msgstr "冲洗清除长度"
  1481. msgctxt "material_flush_purge_length description"
  1482. 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."
  1483. msgstr "切换到其他材料时,需要使用多少材料从喷嘴中清除之前的材料(以长丝长度计)。"
  1484. msgctxt "material_end_of_filament_purge_speed label"
  1485. msgid "End of Filament Purge Speed"
  1486. msgstr "耗材末端清除速度"
  1487. msgctxt "material_end_of_filament_purge_speed description"
  1488. msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material."
  1489. msgstr "将空线轴替换为使用相同材料的新线轴后,装填材料的速度如何。"
  1490. msgctxt "material_end_of_filament_purge_length label"
  1491. msgid "End of Filament Purge Length"
  1492. msgstr "耗材末端清除长度"
  1493. msgctxt "material_end_of_filament_purge_length description"
  1494. 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."
  1495. msgstr "将空线轴替换为使用相同材料的新线轴后,需要使用多少材料从喷嘴中清除之前的材料(以长丝长度计)。"
  1496. msgctxt "material_maximum_park_duration label"
  1497. msgid "Maximum Park Duration"
  1498. msgstr "最长停放持续时间"
  1499. msgctxt "material_maximum_park_duration description"
  1500. msgid "How long the material can be kept out of dry storage safely."
  1501. msgstr "材料能在干燥存储区之外安全存放多长时间。"
  1502. msgctxt "material_no_load_move_factor label"
  1503. msgid "No Load Move Factor"
  1504. msgstr "空载移动系数"
  1505. msgctxt "material_no_load_move_factor description"
  1506. 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."
  1507. msgstr "表示长丝在进料器和喷嘴室之间被压缩多少的系数,用于确定针对长丝开关将材料移动的距离。"
  1508. msgctxt "material_flow label"
  1509. msgid "Flow"
  1510. msgstr "流量"
  1511. msgctxt "material_flow description"
  1512. msgid "Flow compensation: the amount of material extruded is multiplied by this value."
  1513. msgstr "流量补偿:挤出的材料量乘以此值。"
  1514. msgctxt "wall_material_flow label"
  1515. msgid "Wall Flow"
  1516. msgstr "壁流量"
  1517. msgctxt "wall_material_flow description"
  1518. msgid "Flow compensation on wall lines."
  1519. msgstr "壁走线的流量补偿。"
  1520. msgctxt "wall_0_material_flow label"
  1521. msgid "Outer Wall Flow"
  1522. msgstr "外壁流量"
  1523. msgctxt "wall_0_material_flow description"
  1524. msgid "Flow compensation on the outermost wall line."
  1525. msgstr "最外壁走线的流量补偿。"
  1526. msgctxt "wall_x_material_flow label"
  1527. msgid "Inner Wall(s) Flow"
  1528. msgstr "内壁流量"
  1529. msgctxt "wall_x_material_flow description"
  1530. msgid "Flow compensation on wall lines for all wall lines except the outermost one."
  1531. msgstr "适用于所有壁走线(最外壁走线除外)的流量补偿。"
  1532. msgctxt "wall_0_material_flow_roofing label"
  1533. msgid "Top Surface Outer Wall Flow"
  1534. msgstr "顶面外壁挤出量"
  1535. msgctxt "wall_0_material_flow_roofing description"
  1536. msgid "Flow compensation on the top surface outermost wall line."
  1537. msgstr "在顶面最外墙线挤出量补偿。"
  1538. msgctxt "wall_x_material_flow_roofing label"
  1539. msgid "Top Surface Inner Wall(s) Flow"
  1540. msgstr "顶面内壁挤出量"
  1541. msgctxt "wall_x_material_flow_roofing description"
  1542. msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one."
  1543. msgstr "除最外层墙线之外,在所有墙线的顶面墙线挤出量补偿。"
  1544. msgctxt "skin_material_flow label"
  1545. msgid "Top/Bottom Flow"
  1546. msgstr "顶部/底部流量"
  1547. msgctxt "skin_material_flow description"
  1548. msgid "Flow compensation on top/bottom lines."
  1549. msgstr "顶部/底部走线的流量补偿。"
  1550. msgctxt "roofing_material_flow label"
  1551. msgid "Top Surface Skin Flow"
  1552. msgstr "顶部表层流量"
  1553. msgctxt "roofing_material_flow description"
  1554. msgid "Flow compensation on lines of the areas at the top of the print."
  1555. msgstr "打印顶部区域走线的流量补偿。"
  1556. msgctxt "infill_material_flow label"
  1557. msgid "Infill Flow"
  1558. msgstr "填充流量"
  1559. msgctxt "infill_material_flow description"
  1560. msgid "Flow compensation on infill lines."
  1561. msgstr "填充走线的流量补偿。"
  1562. msgctxt "skirt_brim_material_flow label"
  1563. msgid "Skirt/Brim Flow"
  1564. msgstr "裙边/边缘流量"
  1565. msgctxt "skirt_brim_material_flow description"
  1566. msgid "Flow compensation on skirt or brim lines."
  1567. msgstr "裙边或边缘走线的流量补偿。"
  1568. msgctxt "support_material_flow label"
  1569. msgid "Support Flow"
  1570. msgstr "支撑流量"
  1571. msgctxt "support_material_flow description"
  1572. msgid "Flow compensation on support structure lines."
  1573. msgstr "支撑结构走线的流量补偿。"
  1574. msgctxt "support_interface_material_flow label"
  1575. msgid "Support Interface Flow"
  1576. msgstr "支撑接触面流量"
  1577. msgctxt "support_interface_material_flow description"
  1578. msgid "Flow compensation on lines of support roof or floor."
  1579. msgstr "支撑顶板或底板走线的流量补偿。"
  1580. msgctxt "support_roof_material_flow label"
  1581. msgid "Support Roof Flow"
  1582. msgstr "支撑顶板流量"
  1583. msgctxt "support_roof_material_flow description"
  1584. msgid "Flow compensation on support roof lines."
  1585. msgstr "支撑顶板走线的流量补偿。"
  1586. msgctxt "support_bottom_material_flow label"
  1587. msgid "Support Floor Flow"
  1588. msgstr "支撑底板流量"
  1589. msgctxt "support_bottom_material_flow description"
  1590. msgid "Flow compensation on support floor lines."
  1591. msgstr "支撑底板走线的流量补偿。"
  1592. msgctxt "prime_tower_flow label"
  1593. msgid "Prime Tower Flow"
  1594. msgstr "装填塔流量"
  1595. msgctxt "prime_tower_flow description"
  1596. msgid "Flow compensation on prime tower lines."
  1597. msgstr "装填塔走线的流量补偿。"
  1598. msgctxt "material_flow_layer_0 label"
  1599. msgid "Initial Layer Flow"
  1600. msgstr "起始层流量"
  1601. msgctxt "material_flow_layer_0 description"
  1602. msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value."
  1603. msgstr "第一层的流量补偿:起始层挤出的材料量乘以此值。"
  1604. msgctxt "wall_x_material_flow_layer_0 label"
  1605. msgid "Initial Layer Inner Wall Flow"
  1606. msgstr "起始层内壁流量"
  1607. msgctxt "wall_x_material_flow_layer_0 description"
  1608. msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer"
  1609. msgstr "适用于所有壁走线(最外壁走线除外)的流量补偿,但仅适用于第一层。"
  1610. msgctxt "wall_0_material_flow_layer_0 label"
  1611. msgid "Initial Layer Outer Wall Flow"
  1612. msgstr "起始层外壁流量"
  1613. msgctxt "wall_0_material_flow_layer_0 description"
  1614. msgid "Flow compensation on the outermost wall line of the first layer."
  1615. msgstr "第一层最外壁走线的流量补偿。"
  1616. msgctxt "skin_material_flow_layer_0 label"
  1617. msgid "Initial Layer Bottom Flow"
  1618. msgstr "起始层底部流量"
  1619. msgctxt "skin_material_flow_layer_0 description"
  1620. msgid "Flow compensation on bottom lines of the first layer"
  1621. msgstr "第一层底部走线的流量补偿"
  1622. msgctxt "material_standby_temperature label"
  1623. msgid "Standby Temperature"
  1624. msgstr "待机温度"
  1625. msgctxt "material_standby_temperature description"
  1626. msgid "The temperature of the nozzle when another nozzle is currently used for printing."
  1627. msgstr "当另一个喷嘴正用于打印时该喷嘴的温度。"
  1628. msgctxt "material_is_support_material label"
  1629. msgid "Is support material"
  1630. msgstr "支撑材料"
  1631. msgctxt "material_is_support_material description"
  1632. msgid "Is this material typically used as a support material during printing."
  1633. msgstr "这种材料通常被用作打印的支撑材料吗"
  1634. msgctxt "speed label"
  1635. msgid "Speed"
  1636. msgstr "速度"
  1637. msgctxt "speed description"
  1638. msgid "Speed"
  1639. msgstr "速度"
  1640. msgctxt "speed_print label"
  1641. msgid "Print Speed"
  1642. msgstr "打印速度"
  1643. msgctxt "speed_print description"
  1644. msgid "The speed at which printing happens."
  1645. msgstr "打印发生的速度。"
  1646. msgctxt "speed_infill label"
  1647. msgid "Infill Speed"
  1648. msgstr "填充速度"
  1649. msgctxt "speed_infill description"
  1650. msgid "The speed at which infill is printed."
  1651. msgstr "打印填充的速度。"
  1652. msgctxt "speed_wall label"
  1653. msgid "Wall Speed"
  1654. msgstr "速度(壁)"
  1655. msgctxt "speed_wall description"
  1656. msgid "The speed at which the walls are printed."
  1657. msgstr "打印壁的速度。"
  1658. msgctxt "speed_wall_0 label"
  1659. msgid "Outer Wall Speed"
  1660. msgstr "速度(外壁)"
  1661. msgctxt "speed_wall_0 description"
  1662. 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."
  1663. msgstr "打印最外壁的速度。 以较低速度打印外壁可改善最终皮肤质量。 但是,如果内壁速度和外壁速度差距过大,则将对质量产生负面影响。"
  1664. msgctxt "speed_wall_x label"
  1665. msgid "Inner Wall Speed"
  1666. msgstr "速度(内壁)"
  1667. msgctxt "speed_wall_x description"
  1668. 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."
  1669. msgstr "打印所有内壁的速度。 以比外壁更快的速度打印内壁将减少打印时间。 将该值设为外壁速度和填充速度之间也可行。"
  1670. msgctxt "speed_wall_0_roofing label"
  1671. msgid "Top Surface Outer Wall Speed"
  1672. msgstr "顶面外壁速度"
  1673. msgctxt "speed_wall_0_roofing description"
  1674. msgid "The speed at which the top surface outermost wall is printed."
  1675. msgstr "顶面最外壁打印完成后的速度"
  1676. msgctxt "speed_wall_x_roofing label"
  1677. msgid "Top Surface Inner Wall Speed"
  1678. msgstr "顶面内壁速度"
  1679. msgctxt "speed_wall_x_roofing description"
  1680. msgid "The speed at which the top surface inner walls are printed."
  1681. msgstr "顶面内壁打印完成后的速度"
  1682. msgctxt "speed_roofing label"
  1683. msgid "Top Surface Skin Speed"
  1684. msgstr "顶部表面皮肤速度"
  1685. msgctxt "speed_roofing description"
  1686. msgid "The speed at which top surface skin layers are printed."
  1687. msgstr "打印顶部表面皮肤层的速度。"
  1688. msgctxt "speed_topbottom label"
  1689. msgid "Top/Bottom Speed"
  1690. msgstr "速度(顶部 / 底部)"
  1691. msgctxt "speed_topbottom description"
  1692. msgid "The speed at which top/bottom layers are printed."
  1693. msgstr "打印顶部/底部层的速度。"
  1694. msgctxt "speed_support label"
  1695. msgid "Support Speed"
  1696. msgstr "速度(支撑结构)"
  1697. msgctxt "speed_support description"
  1698. 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."
  1699. msgstr "打印支撑结构的速度。 以更高的速度打印支撑可极大地缩短打印时间。 支撑结构的表面质量并不重要,因为在打印后会将其移除。"
  1700. msgctxt "speed_support_infill label"
  1701. msgid "Support Infill Speed"
  1702. msgstr "速度(支撑填充)"
  1703. msgctxt "speed_support_infill description"
  1704. msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability."
  1705. msgstr "打印支撑填充物的速度。 以较低的速度打印填充物可改善稳定性。"
  1706. msgctxt "speed_support_interface label"
  1707. msgid "Support Interface Speed"
  1708. msgstr "支撑接触面速度"
  1709. msgctxt "speed_support_interface description"
  1710. msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality."
  1711. msgstr "打印支撑顶板和底板的速度。 以较低的速度打印可以改善悬垂质量。"
  1712. msgctxt "speed_support_roof label"
  1713. msgid "Support Roof Speed"
  1714. msgstr "支撑顶板速度"
  1715. msgctxt "speed_support_roof description"
  1716. msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality."
  1717. msgstr "打印支撑顶板的速度。 以较低的速度打印可以改善悬垂质量。"
  1718. msgctxt "speed_support_bottom label"
  1719. msgid "Support Floor Speed"
  1720. msgstr "支撑底板速度"
  1721. msgctxt "speed_support_bottom description"
  1722. 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."
  1723. msgstr "打印支撑底板的速度。 以较低的速度打印可以改善支撑在模型顶部的粘着。"
  1724. msgctxt "speed_prime_tower label"
  1725. msgid "Prime Tower Speed"
  1726. msgstr "装填塔速度"
  1727. msgctxt "speed_prime_tower description"
  1728. 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."
  1729. msgstr "打印装填塔的速度。 以较慢速度打印装填塔可以在不同耗材之间的粘着欠佳时使其更加稳定。"
  1730. msgctxt "speed_travel label"
  1731. msgid "Travel Speed"
  1732. msgstr "空驶速度"
  1733. msgctxt "speed_travel description"
  1734. msgid "The speed at which travel moves are made."
  1735. msgstr "进行空驶的速度。"
  1736. msgctxt "speed_layer_0 label"
  1737. msgid "Initial Layer Speed"
  1738. msgstr "起始层速度"
  1739. msgctxt "speed_layer_0 description"
  1740. 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."
  1741. msgstr "起始层的速度。建议采用较低的值以便改善与构建板的粘着。不会影响构建板自身的粘着结构,如边沿和筏。"
  1742. msgctxt "speed_print_layer_0 label"
  1743. msgid "Initial Layer Print Speed"
  1744. msgstr "起始层打印速度"
  1745. msgctxt "speed_print_layer_0 description"
  1746. msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate."
  1747. msgstr "打印起始层的速度。 建议采用较低的值以便改善与打印平台的粘着。"
  1748. msgctxt "speed_travel_layer_0 label"
  1749. msgid "Initial Layer Travel Speed"
  1750. msgstr "起始层空驶速度"
  1751. msgctxt "speed_travel_layer_0 description"
  1752. 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."
  1753. msgstr "起始层中的空驶速度。 建议采用较低的值,以防止将之前打印的部分从打印平台上拉离。 该设置的值可以根据空驶速度和打印速度的比率自动计算得出。"
  1754. msgctxt "skirt_brim_speed label"
  1755. msgid "Skirt/Brim Speed"
  1756. msgstr "Skirt/Brim 速度"
  1757. msgctxt "skirt_brim_speed description"
  1758. 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."
  1759. msgstr "打印 skirt 和 brim 的速度。 一般情况是以起始层速度打印这些部分,但有时候您可能想要以不同速度来打印 skirt 或 brim。"
  1760. msgctxt "speed_z_hop label"
  1761. msgid "Z Hop Speed"
  1762. msgstr "Z 抬升速度"
  1763. msgctxt "speed_z_hop description"
  1764. 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."
  1765. msgstr "Z 垂直移动实现抬升的速度。一般小于打印速度,因为打印平台或打印机的十字轴较难移动。"
  1766. msgctxt "speed_slowdown_layers label"
  1767. msgid "Number of Slower Layers"
  1768. msgstr "较慢层的数量"
  1769. msgctxt "speed_slowdown_layers description"
  1770. 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."
  1771. msgstr "前几层的打印速度比模型的其他层慢,以便实现与打印平台的更好粘着,并改善整体的打印成功率。 该速度在这些层中会逐渐增加。"
  1772. msgctxt "speed_equalize_flow_width_factor label"
  1773. msgid "Flow Equalization Ratio"
  1774. msgstr "流量均衡比"
  1775. msgctxt "speed_equalize_flow_width_factor description"
  1776. 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."
  1777. msgstr "基于速度校正系数的挤出宽度。在 0% 时,移动速度保持在打印速度不变。在 100% 时,将调整移动速度以使流量(以 mm³/s 为单位)保持恒定,即以两倍的速度打印正常线宽一半的线条,以一半的速度打印两倍宽的线条。大于 100% 的值有助于为挤出宽线所需的更高压力提供补偿。"
  1778. msgctxt "acceleration_enabled label"
  1779. msgid "Enable Acceleration Control"
  1780. msgstr "启用加速度控制"
  1781. msgctxt "acceleration_enabled description"
  1782. msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality."
  1783. msgstr "启用调整打印头加速度。 提高加速度可以通过以打印质量为代价来缩短打印时间。"
  1784. msgctxt "acceleration_travel_enabled label"
  1785. msgid "Enable Travel Acceleration"
  1786. msgstr "启用空驶加速度"
  1787. msgctxt "acceleration_travel_enabled description"
  1788. 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."
  1789. msgstr "空驶时使用单独的加速度。如果禁用,空驶将使用打印线在目的地的加速度值。"
  1790. msgctxt "acceleration_print label"
  1791. msgid "Print Acceleration"
  1792. msgstr "打印加速度"
  1793. msgctxt "acceleration_print description"
  1794. msgid "The acceleration with which printing happens."
  1795. msgstr "打印发生的加速度。"
  1796. msgctxt "acceleration_infill label"
  1797. msgid "Infill Acceleration"
  1798. msgstr "填充加速度"
  1799. msgctxt "acceleration_infill description"
  1800. msgid "The acceleration with which infill is printed."
  1801. msgstr "打印填充物的加速度。"
  1802. msgctxt "acceleration_wall label"
  1803. msgid "Wall Acceleration"
  1804. msgstr "壁加速度"
  1805. msgctxt "acceleration_wall description"
  1806. msgid "The acceleration with which the walls are printed."
  1807. msgstr "打印壁的加速度。"
  1808. msgctxt "acceleration_wall_0 label"
  1809. msgid "Outer Wall Acceleration"
  1810. msgstr "外壁加速度"
  1811. msgctxt "acceleration_wall_0 description"
  1812. msgid "The acceleration with which the outermost walls are printed."
  1813. msgstr "打印最外壁的加速度。"
  1814. msgctxt "acceleration_wall_x label"
  1815. msgid "Inner Wall Acceleration"
  1816. msgstr "内壁加速度"
  1817. msgctxt "acceleration_wall_x description"
  1818. msgid "The acceleration with which all inner walls are printed."
  1819. msgstr "打印所有内壁的加速度。"
  1820. msgctxt "acceleration_wall_0_roofing label"
  1821. msgid "Top Surface Outer Wall Acceleration"
  1822. msgstr "顶面外壁加速度"
  1823. msgctxt "acceleration_wall_0_roofing description"
  1824. msgid "The acceleration with which the top surface outermost walls are printed."
  1825. msgstr "顶面最外壁打印完成后的加速度"
  1826. msgctxt "acceleration_wall_x_roofing label"
  1827. msgid "Top Surface Inner Wall Acceleration"
  1828. msgstr "顶面内壁加速度"
  1829. msgctxt "acceleration_wall_x_roofing description"
  1830. msgid "The acceleration with which the top surface inner walls are printed."
  1831. msgstr "顶面内壁打印完成后的加速度"
  1832. msgctxt "acceleration_roofing label"
  1833. msgid "Top Surface Skin Acceleration"
  1834. msgstr "顶部表面皮肤加速度"
  1835. msgctxt "acceleration_roofing description"
  1836. msgid "The acceleration with which top surface skin layers are printed."
  1837. msgstr "打印顶部表面皮肤层的加速度。"
  1838. msgctxt "acceleration_topbottom label"
  1839. msgid "Top/Bottom Acceleration"
  1840. msgstr "顶部/底部加速度"
  1841. msgctxt "acceleration_topbottom description"
  1842. msgid "The acceleration with which top/bottom layers are printed."
  1843. msgstr "打印顶部/底部层的加速度。"
  1844. msgctxt "acceleration_support label"
  1845. msgid "Support Acceleration"
  1846. msgstr "支撑加速度"
  1847. msgctxt "acceleration_support description"
  1848. msgid "The acceleration with which the support structure is printed."
  1849. msgstr "打印支撑结构的加速度。"
  1850. msgctxt "acceleration_support_infill label"
  1851. msgid "Support Infill Acceleration"
  1852. msgstr "支撑填充加速度"
  1853. msgctxt "acceleration_support_infill description"
  1854. msgid "The acceleration with which the infill of support is printed."
  1855. msgstr "打印支撑填充物的加速度。"
  1856. msgctxt "acceleration_support_interface label"
  1857. msgid "Support Interface Acceleration"
  1858. msgstr "支撑接触面加速度"
  1859. msgctxt "acceleration_support_interface description"
  1860. msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality."
  1861. msgstr "打印支撑顶板和底板的加速度。 以较低的加速度打印可以改善悬垂质量。"
  1862. msgctxt "acceleration_support_roof label"
  1863. msgid "Support Roof Acceleration"
  1864. msgstr "支撑顶板加速度"
  1865. msgctxt "acceleration_support_roof description"
  1866. msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality."
  1867. msgstr "打印支撑顶板的加速度。 以较低的加速度打印可以改善悬垂质量。"
  1868. msgctxt "acceleration_support_bottom label"
  1869. msgid "Support Floor Acceleration"
  1870. msgstr "支撑底板加速度"
  1871. msgctxt "acceleration_support_bottom description"
  1872. 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."
  1873. msgstr "打印支撑底板的加速度。 以较低的加速度打印可以改善支撑在模型顶部的粘着。"
  1874. msgctxt "acceleration_prime_tower label"
  1875. msgid "Prime Tower Acceleration"
  1876. msgstr "装填塔加速度"
  1877. msgctxt "acceleration_prime_tower description"
  1878. msgid "The acceleration with which the prime tower is printed."
  1879. msgstr "打印装填塔的加速度。"
  1880. msgctxt "acceleration_travel label"
  1881. msgid "Travel Acceleration"
  1882. msgstr "空驶加速度"
  1883. msgctxt "acceleration_travel description"
  1884. msgid "The acceleration with which travel moves are made."
  1885. msgstr "进行空驶的加速度。"
  1886. msgctxt "acceleration_layer_0 label"
  1887. msgid "Initial Layer Acceleration"
  1888. msgstr "起始层加速度"
  1889. msgctxt "acceleration_layer_0 description"
  1890. msgid "The acceleration for the initial layer."
  1891. msgstr "起始层的加速度。"
  1892. msgctxt "acceleration_print_layer_0 label"
  1893. msgid "Initial Layer Print Acceleration"
  1894. msgstr "起始层打印加速度"
  1895. msgctxt "acceleration_print_layer_0 description"
  1896. msgid "The acceleration during the printing of the initial layer."
  1897. msgstr "打印起始层时的加速度。"
  1898. msgctxt "acceleration_travel_layer_0 label"
  1899. msgid "Initial Layer Travel Acceleration"
  1900. msgstr "起始层空驶加速度"
  1901. msgctxt "acceleration_travel_layer_0 description"
  1902. msgid "The acceleration for travel moves in the initial layer."
  1903. msgstr "起始层中的空驶加速度。"
  1904. msgctxt "acceleration_skirt_brim label"
  1905. msgid "Skirt/Brim Acceleration"
  1906. msgstr "Skirt/Brim 加速度"
  1907. msgctxt "acceleration_skirt_brim description"
  1908. 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."
  1909. msgstr "打印 skirt 和 brim 的加速度。 一般情况是以起始层加速度打印这些部分,但有时候您可能想要以不同加速度来打印 skirt 或 brim。"
  1910. msgctxt "jerk_enabled label"
  1911. msgid "Enable Jerk Control"
  1912. msgstr "启用抖动速度控制"
  1913. msgctxt "jerk_enabled description"
  1914. 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."
  1915. msgstr "启用当 X 或 Y 轴的速度变化时调整打印头的抖动速度。 提高抖动速度可以通过以打印质量为代价来缩短打印时间。"
  1916. msgctxt "jerk_travel_enabled label"
  1917. msgid "Enable Travel Jerk"
  1918. msgstr "启用空驶抖动速度"
  1919. msgctxt "jerk_travel_enabled description"
  1920. 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."
  1921. msgstr "空驶时使用单独的抖动速度。如果禁用,空驶将使用打印线在目的地的抖动速度值。"
  1922. msgctxt "jerk_print label"
  1923. msgid "Print Jerk"
  1924. msgstr "打印抖动速度"
  1925. msgctxt "jerk_print description"
  1926. msgid "The maximum instantaneous velocity change of the print head."
  1927. msgstr "打印头的最大瞬时速度变化。"
  1928. msgctxt "jerk_infill label"
  1929. msgid "Infill Jerk"
  1930. msgstr "填充抖动速度"
  1931. msgctxt "jerk_infill description"
  1932. msgid "The maximum instantaneous velocity change with which infill is printed."
  1933. msgstr "打印填充物时的最大瞬时速度变化。"
  1934. msgctxt "jerk_wall label"
  1935. msgid "Wall Jerk"
  1936. msgstr "壁抖动速度"
  1937. msgctxt "jerk_wall description"
  1938. msgid "The maximum instantaneous velocity change with which the walls are printed."
  1939. msgstr "打印壁时的最大瞬时速度变化。"
  1940. msgctxt "jerk_wall_0 label"
  1941. msgid "Outer Wall Jerk"
  1942. msgstr "外壁抖动速度"
  1943. msgctxt "jerk_wall_0 description"
  1944. msgid "The maximum instantaneous velocity change with which the outermost walls are printed."
  1945. msgstr "打印最外壁时的最大瞬时速度变化。"
  1946. msgctxt "jerk_wall_x label"
  1947. msgid "Inner Wall Jerk"
  1948. msgstr "内壁抖动速度"
  1949. msgctxt "jerk_wall_x description"
  1950. msgid "The maximum instantaneous velocity change with which all inner walls are printed."
  1951. msgstr "打印所有内壁时的最大瞬时速度变化。"
  1952. msgctxt "jerk_wall_0_roofing label"
  1953. msgid "Top Surface Outer Wall Jerk"
  1954. msgstr "顶面外壁冲击力"
  1955. msgctxt "jerk_wall_0_roofing description"
  1956. msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed."
  1957. msgstr "打印顶面最外壁时的最大瞬时速度变化。"
  1958. msgctxt "jerk_wall_x_roofing label"
  1959. msgid "Top Surface Inner Wall Jerk"
  1960. msgstr "顶面内壁冲击力"
  1961. msgctxt "jerk_wall_x_roofing description"
  1962. msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed."
  1963. msgstr "打印顶面内壁时的最大瞬时速度变化。"
  1964. msgctxt "jerk_roofing label"
  1965. msgid "Top Surface Skin Jerk"
  1966. msgstr "顶部表面皮肤抖动速度"
  1967. msgctxt "jerk_roofing description"
  1968. msgid "The maximum instantaneous velocity change with which top surface skin layers are printed."
  1969. msgstr "打印顶部表面皮肤层时的最大瞬时速度变化。"
  1970. msgctxt "jerk_topbottom label"
  1971. msgid "Top/Bottom Jerk"
  1972. msgstr "顶部/底部抖动速度"
  1973. msgctxt "jerk_topbottom description"
  1974. msgid "The maximum instantaneous velocity change with which top/bottom layers are printed."
  1975. msgstr "打印顶部/底部层时的最大瞬时速度变化。"
  1976. msgctxt "jerk_support label"
  1977. msgid "Support Jerk"
  1978. msgstr "支撑抖动速度"
  1979. msgctxt "jerk_support description"
  1980. msgid "The maximum instantaneous velocity change with which the support structure is printed."
  1981. msgstr "打印支撑结构时的最大瞬时速度变化。"
  1982. msgctxt "jerk_support_infill label"
  1983. msgid "Support Infill Jerk"
  1984. msgstr "支撑填充抖动速度"
  1985. msgctxt "jerk_support_infill description"
  1986. msgid "The maximum instantaneous velocity change with which the infill of support is printed."
  1987. msgstr "打印支撑填充物时的最大瞬时速度变化。"
  1988. msgctxt "jerk_support_interface label"
  1989. msgid "Support Interface Jerk"
  1990. msgstr "支撑接触面抖动速度"
  1991. msgctxt "jerk_support_interface description"
  1992. msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed."
  1993. msgstr "打印支撑顶板和底板的最大瞬时速度变化。"
  1994. msgctxt "jerk_support_roof label"
  1995. msgid "Support Roof Jerk"
  1996. msgstr "支撑顶板抖动速度"
  1997. msgctxt "jerk_support_roof description"
  1998. msgid "The maximum instantaneous velocity change with which the roofs of support are printed."
  1999. msgstr "打印支撑顶板的最大瞬时速度变化。"
  2000. msgctxt "jerk_support_bottom label"
  2001. msgid "Support Floor Jerk"
  2002. msgstr "支撑底板抖动速度"
  2003. msgctxt "jerk_support_bottom description"
  2004. msgid "The maximum instantaneous velocity change with which the floors of support are printed."
  2005. msgstr "打印支撑底板时的最大瞬时速度变化。"
  2006. msgctxt "jerk_prime_tower label"
  2007. msgid "Prime Tower Jerk"
  2008. msgstr "装填塔抖动速度"
  2009. msgctxt "jerk_prime_tower description"
  2010. msgid "The maximum instantaneous velocity change with which the prime tower is printed."
  2011. msgstr "打印装填塔时的最大瞬时速度变化。"
  2012. msgctxt "jerk_travel label"
  2013. msgid "Travel Jerk"
  2014. msgstr "空驶抖动速度"
  2015. msgctxt "jerk_travel description"
  2016. msgid "The maximum instantaneous velocity change with which travel moves are made."
  2017. msgstr "进行空驶时的最大瞬时速度变化。"
  2018. msgctxt "jerk_layer_0 label"
  2019. msgid "Initial Layer Jerk"
  2020. msgstr "起始层抖动速度"
  2021. msgctxt "jerk_layer_0 description"
  2022. msgid "The print maximum instantaneous velocity change for the initial layer."
  2023. msgstr "起始层的打印最大瞬时速度变化。"
  2024. msgctxt "jerk_print_layer_0 label"
  2025. msgid "Initial Layer Print Jerk"
  2026. msgstr "起始层打印抖动速度"
  2027. msgctxt "jerk_print_layer_0 description"
  2028. msgid "The maximum instantaneous velocity change during the printing of the initial layer."
  2029. msgstr "打印起始层时的最大瞬时速度变化。"
  2030. msgctxt "jerk_travel_layer_0 label"
  2031. msgid "Initial Layer Travel Jerk"
  2032. msgstr "起始层空驶抖动速度"
  2033. msgctxt "jerk_travel_layer_0 description"
  2034. msgid "The acceleration for travel moves in the initial layer."
  2035. msgstr "起始层中的空驶加速度。"
  2036. msgctxt "jerk_skirt_brim label"
  2037. msgid "Skirt/Brim Jerk"
  2038. msgstr "Skirt/Brim 抖动速度"
  2039. msgctxt "jerk_skirt_brim description"
  2040. msgid "The maximum instantaneous velocity change with which the skirt and brim are printed."
  2041. msgstr "打印 skirt 和 brim 时的最大瞬时速度变化。"
  2042. msgctxt "travel label"
  2043. msgid "Travel"
  2044. msgstr "移动"
  2045. msgctxt "travel description"
  2046. msgid "travel"
  2047. msgstr "空驶"
  2048. msgctxt "retraction_enable label"
  2049. msgid "Enable Retraction"
  2050. msgstr "启用回抽"
  2051. msgctxt "retraction_enable description"
  2052. msgid "Retract the filament when the nozzle is moving over a non-printed area."
  2053. msgstr "当喷嘴移动到非打印区域上方时回抽耗材。"
  2054. msgctxt "retract_at_layer_change label"
  2055. msgid "Retract at Layer Change"
  2056. msgstr "层变化时回抽"
  2057. msgctxt "retract_at_layer_change description"
  2058. msgid "Retract the filament when the nozzle is moving to the next layer."
  2059. msgstr "当喷嘴移动到下一层时回抽耗材。"
  2060. msgctxt "retraction_amount label"
  2061. msgid "Retraction Distance"
  2062. msgstr "回抽距离"
  2063. msgctxt "retraction_amount description"
  2064. msgid "The length of material retracted during a retraction move."
  2065. msgstr "回抽移动期间回抽的材料长度。"
  2066. msgctxt "retraction_speed label"
  2067. msgid "Retraction Speed"
  2068. msgstr "回抽速度"
  2069. msgctxt "retraction_speed description"
  2070. msgid "The speed at which the filament is retracted and primed during a retraction move."
  2071. msgstr "回抽移动期间耗材回抽和装填的速度。"
  2072. msgctxt "retraction_retract_speed label"
  2073. msgid "Retraction Retract Speed"
  2074. msgstr "回抽速度"
  2075. msgctxt "retraction_retract_speed description"
  2076. msgid "The speed at which the filament is retracted during a retraction move."
  2077. msgstr "回抽移动期间耗材回抽的速度。"
  2078. msgctxt "retraction_prime_speed label"
  2079. msgid "Retraction Prime Speed"
  2080. msgstr "回抽装填速度"
  2081. msgctxt "retraction_prime_speed description"
  2082. msgid "The speed at which the filament is primed during a retraction move."
  2083. msgstr "回抽移动期间耗材装填的速度。"
  2084. msgctxt "retraction_extra_prime_amount label"
  2085. msgid "Retraction Extra Prime Amount"
  2086. msgstr "回抽额外装填量"
  2087. msgctxt "retraction_extra_prime_amount description"
  2088. msgid "Some material can ooze away during a travel move, which can be compensated for here."
  2089. msgstr "有些材料可能会在空驶过程中渗出,可以在这里对其进行补偿。"
  2090. msgctxt "retraction_min_travel label"
  2091. msgid "Retraction Minimum Travel"
  2092. msgstr "回抽最小空驶"
  2093. msgctxt "retraction_min_travel description"
  2094. msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area."
  2095. msgstr "回抽发生所需的最小空驶距离。 这有助于在较小区域内实现更少的回抽。"
  2096. msgctxt "retraction_count_max label"
  2097. msgid "Maximum Retraction Count"
  2098. msgstr "最大回抽计数"
  2099. msgctxt "retraction_count_max description"
  2100. 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."
  2101. msgstr "此设置限制在最小挤出距离范围内发生的回抽数。 此范围内的额外回抽将会忽略。 这避免了在同一件耗材上重复回抽,从而导致耗材变扁并引起磨损问题。"
  2102. msgctxt "retraction_extrusion_window label"
  2103. msgid "Minimum Extrusion Distance Window"
  2104. msgstr "最小挤出距离范围"
  2105. msgctxt "retraction_extrusion_window description"
  2106. 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."
  2107. msgstr "执行最大回抽计数的范围。 该值应与回抽距离大致相同,以便一次回抽通过同一块材料的次数得到有效限制。"
  2108. msgctxt "retraction_combing label"
  2109. msgid "Combing Mode"
  2110. msgstr "梳理模式"
  2111. msgctxt "retraction_combing description"
  2112. 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."
  2113. msgstr "梳理可在空驶时让喷嘴保持在已打印区域内。这会使空驶距离稍微延长,但可减少回抽需求。如果关闭梳理,则材料将回抽,且喷嘴沿着直线移动到下一个点。也可以避免顶部/底部皮肤区域的梳理或仅在填充物内进行梳理。"
  2114. msgctxt "retraction_combing option off"
  2115. msgid "Off"
  2116. msgstr "关"
  2117. msgctxt "retraction_combing option all"
  2118. msgid "All"
  2119. msgstr "所有"
  2120. msgctxt "retraction_combing option no_outer_surfaces"
  2121. msgid "Not on Outer Surface"
  2122. msgstr "不在外表面上"
  2123. msgctxt "retraction_combing option noskin"
  2124. msgid "Not in Skin"
  2125. msgstr "除了皮肤"
  2126. msgctxt "retraction_combing option infill"
  2127. msgid "Within Infill"
  2128. msgstr "在填充物内"
  2129. msgctxt "retraction_combing_max_distance label"
  2130. msgid "Max Comb Distance With No Retract"
  2131. msgstr "最大梳距,无收缩"
  2132. msgctxt "retraction_combing_max_distance description"
  2133. 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."
  2134. msgstr "当大于零时,比这段距离更长的梳理空驶将会使用回抽。如果设置为零,则没有最大值,梳理空驶将不会使用回抽。"
  2135. msgctxt "travel_retract_before_outer_wall label"
  2136. msgid "Retract Before Outer Wall"
  2137. msgstr "在外壁前回抽"
  2138. msgctxt "travel_retract_before_outer_wall description"
  2139. msgid "Always retract when moving to start an outer wall."
  2140. msgstr "在移动开始打印外壁时始终回抽。"
  2141. msgctxt "travel_avoid_other_parts label"
  2142. msgid "Avoid Printed Parts When Traveling"
  2143. msgstr "空驶时避开已打印部分"
  2144. msgctxt "travel_avoid_other_parts description"
  2145. msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled."
  2146. msgstr "喷嘴会在空驶时避开已打印的部分。 此选项仅在启用梳理功能时可用。"
  2147. msgctxt "travel_avoid_supports label"
  2148. msgid "Avoid Supports When Traveling"
  2149. msgstr "避免移动时支撑"
  2150. msgctxt "travel_avoid_supports description"
  2151. msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled."
  2152. msgstr "在空走时,喷嘴避免了已打印的支撑。只有在启用了梳理时才可以使用此选项。"
  2153. msgctxt "travel_avoid_distance label"
  2154. msgid "Travel Avoid Distance"
  2155. msgstr "空驶避让距离"
  2156. msgctxt "travel_avoid_distance description"
  2157. msgid "The distance between the nozzle and already printed parts when avoiding during travel moves."
  2158. msgstr "喷嘴和已打印部分之间在空驶时避让的距离。"
  2159. msgctxt "layer_start_x label"
  2160. msgid "Layer Start X"
  2161. msgstr "层开始 X"
  2162. msgctxt "layer_start_x description"
  2163. msgid "The X coordinate of the position near where to find the part to start printing each layer."
  2164. msgstr "位置的 X 轴坐标,在该位置附近找到开始打印每层的部分。"
  2165. msgctxt "layer_start_y label"
  2166. msgid "Layer Start Y"
  2167. msgstr "层开始 Y"
  2168. msgctxt "layer_start_y description"
  2169. msgid "The Y coordinate of the position near where to find the part to start printing each layer."
  2170. msgstr "位置的 Y 轴坐标,在该位置附近找到开始打印每层的部分。"
  2171. msgctxt "retraction_hop_enabled label"
  2172. msgid "Z Hop When Retracted"
  2173. msgstr "回抽时 Z 抬升"
  2174. msgctxt "retraction_hop_enabled description"
  2175. 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."
  2176. msgstr "每当回抽完成时,打印平台会降低以便在喷嘴和打印品之间形成空隙。 它可以防止喷嘴在空驶过程中撞到打印品,降低将打印品从打印平台撞掉的几率。"
  2177. msgctxt "retraction_hop_only_when_collides label"
  2178. msgid "Z Hop Only Over Printed Parts"
  2179. msgstr "仅在已打印部分上 Z 抬升"
  2180. msgctxt "retraction_hop_only_when_collides description"
  2181. msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling."
  2182. msgstr "仅在移动到无法通过“空驶时避开已打印部分”选项的水平操作避开的已打印部分上方时执行 Z 抬升。"
  2183. msgctxt "retraction_hop label"
  2184. msgid "Z Hop Height"
  2185. msgstr "Z 抬升高度"
  2186. msgctxt "retraction_hop description"
  2187. msgid "The height difference when performing a Z Hop."
  2188. msgstr "执行 Z 抬升的高度差。"
  2189. msgctxt "retraction_hop_after_extruder_switch label"
  2190. msgid "Z Hop After Extruder Switch"
  2191. msgstr "挤出机切换后的 Z 抬升"
  2192. msgctxt "retraction_hop_after_extruder_switch description"
  2193. 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."
  2194. msgstr "当机器从一个挤出机切换到另一个时,打印平台会降低以便在喷嘴和打印品之间形成空隙。 这将防止喷嘴在打印品外部留下渗出物。"
  2195. msgctxt "retraction_hop_after_extruder_switch_height label"
  2196. msgid "Z Hop After Extruder Switch Height"
  2197. msgstr "挤出机切换后的 Z 抬升高度"
  2198. msgctxt "retraction_hop_after_extruder_switch_height description"
  2199. msgid "The height difference when performing a Z Hop after extruder switch."
  2200. msgstr "挤出机切换后执行 Z 抬升的高度差。"
  2201. msgctxt "cooling label"
  2202. msgid "Cooling"
  2203. msgstr "冷却"
  2204. msgctxt "cooling description"
  2205. msgid "Cooling"
  2206. msgstr "冷却"
  2207. msgctxt "cool_fan_enabled label"
  2208. msgid "Enable Print Cooling"
  2209. msgstr "开启打印冷却"
  2210. msgctxt "cool_fan_enabled description"
  2211. msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs."
  2212. msgstr "打印时启用打印冷却风扇。 风扇可以在层时间较短和有桥接/悬垂的层上提高打印质量。"
  2213. msgctxt "cool_fan_speed label"
  2214. msgid "Fan Speed"
  2215. msgstr "风扇速度"
  2216. msgctxt "cool_fan_speed description"
  2217. msgid "The speed at which the print cooling fans spin."
  2218. msgstr "打印冷却风扇旋转的速度。"
  2219. msgctxt "cool_fan_speed_min label"
  2220. msgid "Regular Fan Speed"
  2221. msgstr "正常风扇速度"
  2222. msgctxt "cool_fan_speed_min description"
  2223. 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."
  2224. msgstr "风扇旋转达到阈值前的速度。 当一层的打印速度超过阈值时,风扇速度逐渐朝最大风扇速度增加。"
  2225. msgctxt "cool_fan_speed_max label"
  2226. msgid "Maximum Fan Speed"
  2227. msgstr "最大风扇速度"
  2228. msgctxt "cool_fan_speed_max description"
  2229. 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."
  2230. msgstr "风扇在最小层时间上旋转的速度。 当达到阈值时,风扇速度在正常风扇速度和最大风扇速度之间逐渐增加。"
  2231. msgctxt "cool_min_layer_time_fan_speed_max label"
  2232. msgid "Regular/Maximum Fan Speed Threshold"
  2233. msgstr "正常/最大风扇速度阈值"
  2234. msgctxt "cool_min_layer_time_fan_speed_max description"
  2235. 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."
  2236. msgstr "设定正常风扇速度和最大风扇速度之间阈值的层时间。 打印速度低于此时间的层使用正常风扇速度。 对于更快的层,风扇速度逐渐增加到最大风扇速度。"
  2237. msgctxt "cool_fan_speed_0 label"
  2238. msgid "Initial Fan Speed"
  2239. msgstr "起始风扇速度"
  2240. msgctxt "cool_fan_speed_0 description"
  2241. 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."
  2242. msgstr "风扇在打印开始时旋转的速度。 在随后的层中,风扇速度逐渐增加到对应“正常风扇速度(高度)”的水平。"
  2243. msgctxt "cool_fan_full_at_height label"
  2244. msgid "Regular Fan Speed at Height"
  2245. msgstr "正常风扇速度(高度)"
  2246. msgctxt "cool_fan_full_at_height description"
  2247. 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."
  2248. msgstr "风扇以正常速度旋转的高度。 在下方的层中,风扇速度逐渐从起始风扇速度增加到正常风扇速度。"
  2249. msgctxt "cool_fan_full_layer label"
  2250. msgid "Regular Fan Speed at Layer"
  2251. msgstr "正常风扇速度(层)"
  2252. msgctxt "cool_fan_full_layer description"
  2253. 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."
  2254. msgstr "风扇以正常风扇速度旋转的层。 如果设置了正常风扇速度(高度),则该值将被计算并舍入为整数。"
  2255. msgctxt "cool_min_layer_time label"
  2256. msgid "Minimum Layer Time"
  2257. msgstr "最短单层冷却时间"
  2258. msgctxt "cool_min_layer_time description"
  2259. 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."
  2260. msgstr "在层中花费的最少时间。 这会迫使打印机减速,以便至少在一层中消耗此处所规定的时间。 这会让已打印材料充分冷却后再打印下一层。 如果提升头被禁用,且如果不这么做会违反“最小速度“,则层所花时间可能仍会少于最小层时间。"
  2261. msgctxt "cool_min_speed label"
  2262. msgid "Minimum Speed"
  2263. msgstr "最小风扇速度"
  2264. msgctxt "cool_min_speed description"
  2265. 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."
  2266. msgstr "最低打印速度,排除因最短层时间而减速。 当打印机减速过多时,喷嘴中的压力将过低并导致较差的打印质量。"
  2267. msgctxt "cool_lift_head label"
  2268. msgid "Lift Head"
  2269. msgstr "打印头提升"
  2270. msgctxt "cool_lift_head description"
  2271. 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."
  2272. msgstr "当因最低层时间达到最低速度时,将打印头从打印品上提升,并等候达到最低层时间。"
  2273. msgctxt "cool_min_temperature label"
  2274. msgid "Small Layer Printing Temperature"
  2275. msgstr "小型层打印温度"
  2276. msgctxt "cool_min_temperature description"
  2277. msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time."
  2278. msgstr "当由于最短印层时间而导致打印速度降低时,温度将逐渐降低至该温度。"
  2279. msgctxt "support label"
  2280. msgid "Support"
  2281. msgstr "支撑"
  2282. msgctxt "support description"
  2283. msgid "Support"
  2284. msgstr "支撑"
  2285. msgctxt "support_enable label"
  2286. msgid "Generate Support"
  2287. msgstr "生成支撑"
  2288. msgctxt "support_enable description"
  2289. msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing."
  2290. msgstr "在模型的悬垂(Overhangs)部分生成支撑结构。若不这样做,这些部分在打印时将倒塌。"
  2291. msgctxt "support_extruder_nr label"
  2292. msgid "Support Extruder"
  2293. msgstr "支撑用挤出机"
  2294. msgctxt "support_extruder_nr description"
  2295. msgid "The extruder train to use for printing the support. This is used in multi-extrusion."
  2296. msgstr "用于打印支撑的挤出机组。 用于多重挤出。"
  2297. msgctxt "support_infill_extruder_nr label"
  2298. msgid "Support Infill Extruder"
  2299. msgstr "支撑填充挤出机"
  2300. msgctxt "support_infill_extruder_nr description"
  2301. msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion."
  2302. msgstr "用于打印支撑填充物的挤出机组。 用于多重挤出。"
  2303. msgctxt "support_extruder_nr_layer_0 label"
  2304. msgid "First Layer Support Extruder"
  2305. msgstr "第一层支撑挤出机"
  2306. msgctxt "support_extruder_nr_layer_0 description"
  2307. msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion."
  2308. msgstr "用于打印支撑填充物第一层的挤出机组。 用于多重挤出。"
  2309. msgctxt "support_interface_extruder_nr label"
  2310. msgid "Support Interface Extruder"
  2311. msgstr "支撑接触面挤出机"
  2312. msgctxt "support_interface_extruder_nr description"
  2313. msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion."
  2314. msgstr "用于打印支撑顶板和底板的挤出机组。 用于多重挤出。"
  2315. msgctxt "support_roof_extruder_nr label"
  2316. msgid "Support Roof Extruder"
  2317. msgstr "支撑顶板挤出机"
  2318. msgctxt "support_roof_extruder_nr description"
  2319. msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion."
  2320. msgstr "用于打印支撑顶板的挤出机组。 用于多重挤出。"
  2321. msgctxt "support_bottom_extruder_nr label"
  2322. msgid "Support Floor Extruder"
  2323. msgstr "支撑底板挤出机"
  2324. msgctxt "support_bottom_extruder_nr description"
  2325. msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion."
  2326. msgstr "用于打印支撑底板的挤出机组。 用于多重挤出。"
  2327. msgctxt "support_structure label"
  2328. msgid "Support Structure"
  2329. msgstr "支撑结构"
  2330. msgctxt "support_structure description"
  2331. 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."
  2332. msgstr "在可用于产生支撑的方法之间进行选择。“普通”支撑在悬垂部分正下方形成一个支撑结构,并直接垂下这些区域。“树形”支撑形成一些分支,它们朝向在这些分支的尖端上支撑模型的悬垂区域,并使这些分支可缠绕在模型周围以尽可能多地从构建板上支撑它。"
  2333. msgctxt "support_structure option normal"
  2334. msgid "Normal"
  2335. msgstr "正常"
  2336. msgctxt "support_structure option tree"
  2337. msgid "Tree"
  2338. msgstr "树形"
  2339. msgctxt "support_tree_angle label"
  2340. msgid "Maximum Branch Angle"
  2341. msgstr "最大分支角度"
  2342. msgctxt "support_tree_angle description"
  2343. 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."
  2344. msgstr "围绕模型扩大时,分支的最大角度。使用较小的角度可增加垂直度和稳定性。使用较大的角度可支撑更多结构。"
  2345. msgctxt "support_tree_branch_diameter label"
  2346. msgid "Branch Diameter"
  2347. msgstr "分支直径"
  2348. msgctxt "support_tree_branch_diameter description"
  2349. msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this."
  2350. msgstr "树形支撑最细分支的直径。较粗的分支更坚固。接近基础的分支会比这更粗。"
  2351. msgctxt "support_tree_max_diameter label"
  2352. msgid "Trunk Diameter"
  2353. msgstr "主干直径"
  2354. msgctxt "support_tree_max_diameter description"
  2355. 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."
  2356. msgstr "树形支撑最粗分支的直径。较粗的主干更坚固;较细主干在构建板上占据的空间较小。"
  2357. msgctxt "support_tree_branch_diameter_angle label"
  2358. msgid "Branch Diameter Angle"
  2359. msgstr "分支直径角度"
  2360. msgctxt "support_tree_branch_diameter_angle description"
  2361. 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."
  2362. msgstr "随着分支朝底部逐渐变粗,分支直径的角度。角度为 0 表明分支全长具有均匀的粗细度。稍微有些角度可以增加树形支撑的稳定性。"
  2363. msgctxt "support_type label"
  2364. msgid "Support Placement"
  2365. msgstr "支撑放置"
  2366. msgctxt "support_type option buildplate"
  2367. msgid "Touching Buildplate"
  2368. msgstr "支撑打印平台"
  2369. msgctxt "support_type option everywhere"
  2370. msgid "Everywhere"
  2371. msgstr "全部支撑"
  2372. msgctxt "support_tree_angle_slow label"
  2373. msgid "Preferred Branch Angle"
  2374. msgstr "偏好分支角度"
  2375. msgctxt "support_tree_angle_slow description"
  2376. 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."
  2377. msgstr "不必避开模型时,分支的偏好角度。使用较小的角度可增加垂直度和稳定性。使用较大的角度可以更快合并分支。"
  2378. msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label"
  2379. msgid "Diameter Increase To Model"
  2380. msgstr "扩大直径以匹配模型"
  2381. msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description"
  2382. 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"
  2383. msgstr "与接触打印平台的分支合并时,模型必连分支的最大直径可能会扩大。扩大直径可减少打印时间,但会增加模型上的支撑区域"
  2384. msgctxt "support_tree_min_height_to_model label"
  2385. msgid "Minimum Height To Model"
  2386. msgstr "模型的最小高度"
  2387. msgctxt "support_tree_min_height_to_model description"
  2388. 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."
  2389. msgstr "将分支放在模型上时,分支的必要高度。防止出现小的支撑光点。分支支撑着支撑顶板时,此设置将被忽略。"
  2390. msgctxt "support_tree_bp_diameter label"
  2391. msgid "Initial Layer Diameter"
  2392. msgstr "起始层直径"
  2393. msgctxt "support_tree_bp_diameter description"
  2394. msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion."
  2395. msgstr "接触打印平台时,每个分支可能达到的直径。提高床附着力。"
  2396. msgctxt "support_tree_top_rate label"
  2397. msgid "Branch Density"
  2398. msgstr "分支密度"
  2399. msgctxt "support_tree_top_rate description"
  2400. 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."
  2401. msgstr "调整用于生成分支顶端的支撑结构的密度。高数值可以确保悬垂质量更好,但支撑结构会更难去除。用支撑顶板获取极高数值,或者确保顶层的支撑密度同样高。"
  2402. msgctxt "support_tree_tip_diameter label"
  2403. msgid "Tip Diameter"
  2404. msgstr "顶端直径"
  2405. msgctxt "support_tree_tip_diameter description"
  2406. msgid "The diameter of the top of the tip of the branches of tree support."
  2407. msgstr "树形支撑的分支顶端的直径。"
  2408. msgctxt "support_tree_limit_branch_reach label"
  2409. msgid "Limit Branch Reach"
  2410. msgstr "限制分支长度"
  2411. msgctxt "support_tree_limit_branch_reach description"
  2412. 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)"
  2413. msgstr "限制每个分支从其支撑点移动的距离。这样可以使支撑更坚固,但会增加分支的数量(进而增加材料的使用/打印时间)"
  2414. msgctxt "support_tree_branch_reach_limit label"
  2415. msgid "Optimal Branch Range"
  2416. msgstr "最佳分支范围"
  2417. msgctxt "support_tree_branch_reach_limit description"
  2418. 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) "
  2419. msgstr "建议分支离从其支撑点移动的距离。分支可以违反此值以到达其目的地(打印平台或模型的平面部分)。降低此值可以使支撑更坚固,但会增加分支数量(进而增加材料的使用/打印时间)"
  2420. msgctxt "support_tree_rest_preference label"
  2421. msgid "Rest Preference"
  2422. msgstr "停留偏好"
  2423. msgctxt "support_tree_rest_preference description"
  2424. 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."
  2425. msgstr "支撑结构的偏好位置。只要结构不在偏好位置,它们就可能被放在其他区域,即使这意味着它们可能被放在模型上。"
  2426. msgctxt "support_tree_rest_preference option buildplate"
  2427. msgid "On buildplate when possible"
  2428. msgstr "在打印平台上(如可能)"
  2429. msgctxt "support_tree_rest_preference option graceful"
  2430. msgid "On model if required"
  2431. msgstr "在模型上(如需要)"
  2432. msgctxt "support_angle label"
  2433. msgid "Support Overhang Angle"
  2434. msgstr "支撑悬垂角度"
  2435. msgctxt "support_angle description"
  2436. 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."
  2437. msgstr "添加支撑的最小悬垂角度。 当角度为 0° 时,将支撑所有悬垂,当角度为 90° 时,不提供任何支撑。"
  2438. msgctxt "support_pattern label"
  2439. msgid "Support Pattern"
  2440. msgstr "支撑图案"
  2441. msgctxt "support_pattern description"
  2442. msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support."
  2443. msgstr "打印品支撑结构的图案。 提供的不同选项可实现或牢固或易于拆除的支撑。"
  2444. msgctxt "support_pattern option lines"
  2445. msgid "Lines"
  2446. msgstr "走线"
  2447. msgctxt "support_pattern option grid"
  2448. msgid "Grid"
  2449. msgstr "网格"
  2450. msgctxt "support_pattern option triangles"
  2451. msgid "Triangles"
  2452. msgstr "三角形"
  2453. msgctxt "support_pattern option concentric"
  2454. msgid "Concentric"
  2455. msgstr "同心"
  2456. msgctxt "support_pattern option zigzag"
  2457. msgid "Zig Zag"
  2458. msgstr "锯齿形"
  2459. msgctxt "support_pattern option cross"
  2460. msgid "Cross"
  2461. msgstr "交叉"
  2462. msgctxt "support_pattern option gyroid"
  2463. msgid "Gyroid"
  2464. msgstr "螺旋二十四面体"
  2465. msgctxt "support_wall_count label"
  2466. msgid "Support Wall Line Count"
  2467. msgstr "支撑墙行数"
  2468. msgctxt "support_wall_count description"
  2469. 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."
  2470. msgstr "包围支撑的墙的数量。添加一堵墙可以使支持打印更加可靠,并且可以更好地支持挂起,但增加了打印时间和使用的材料。"
  2471. msgctxt "support_interface_wall_count label"
  2472. msgid "Support Interface Wall Line Count"
  2473. msgstr "支撑接触面墙线条数"
  2474. msgctxt "support_interface_wall_count description"
  2475. 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."
  2476. msgstr "包围支撑接触面的墙的数量。添加墙可以使支持打印更加可靠,并且可以更好地支持悬垂对象,但增加了打印时间和使用的材料。"
  2477. msgctxt "support_roof_wall_count label"
  2478. msgid "Support Roof Wall Line Count"
  2479. msgstr "支撑顶板墙线条数"
  2480. msgctxt "support_roof_wall_count description"
  2481. 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."
  2482. msgstr "包围支撑接触面顶板的墙的数量。添加墙可以使支持打印更加可靠,并且可以更好地支持悬垂对象,但增加了打印时间和使用的材料。"
  2483. msgctxt "support_bottom_wall_count label"
  2484. msgid "Support Bottom Wall Line Count"
  2485. msgstr "支撑底层墙线条数"
  2486. msgctxt "support_bottom_wall_count description"
  2487. 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."
  2488. msgstr "包围支撑接触面底板的墙的数量。添加墙可以使支持打印更加可靠,并且可以更好地支持悬垂对象,但增加了打印时间和使用的材料。"
  2489. msgctxt "zig_zaggify_support label"
  2490. msgid "Connect Support Lines"
  2491. msgstr "连接支撑线"
  2492. msgctxt "zig_zaggify_support description"
  2493. 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."
  2494. msgstr "将支撑线尾端连接在一起。启用此设置会让支撑更为牢固并减少挤出不足,但需要更多材料。"
  2495. msgctxt "support_connect_zigzags label"
  2496. msgid "Connect Support ZigZags"
  2497. msgstr "连接支撑锯齿形"
  2498. msgctxt "support_connect_zigzags description"
  2499. msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure."
  2500. msgstr "连接锯齿形。 这将增加锯齿形支撑结构的强度。"
  2501. msgctxt "support_infill_rate label"
  2502. msgid "Support Density"
  2503. msgstr "支撑密度"
  2504. msgctxt "support_infill_rate description"
  2505. msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  2506. msgstr "调整支撑结构的密度。 较高的值会实现更好的悬垂,但支撑将更加难以移除。"
  2507. msgctxt "support_line_distance label"
  2508. msgid "Support Line Distance"
  2509. msgstr "支撑走线距离"
  2510. msgctxt "support_line_distance description"
  2511. msgid "Distance between the printed support structure lines. This setting is calculated by the support density."
  2512. msgstr "已打印支撑结构走线之间的距离。 该设置通过支撑密度计算。"
  2513. msgctxt "support_initial_layer_line_distance label"
  2514. msgid "Initial Layer Support Line Distance"
  2515. msgstr "起始层支撑走线距离"
  2516. msgctxt "support_initial_layer_line_distance description"
  2517. msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density."
  2518. msgstr "已打印起始层支撑结构走线之间的距离。该设置通过支撑密度计算。"
  2519. msgctxt "support_infill_angles label"
  2520. msgid "Support Infill Line Directions"
  2521. msgstr "支撑填充走线方向"
  2522. msgctxt "support_infill_angles description"
  2523. 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."
  2524. msgstr "要使用的整数走线方向列表。列表中的元素随层的进度依次使用,当达到列表末尾时将从头开始。列表项以逗号分隔,整个列表包含在方括号中。“默认“是一个空列表,即意味着使用默认角度 0 度。"
  2525. msgctxt "support_brim_enable label"
  2526. msgid "Enable Support Brim"
  2527. msgstr "启用支撑 Brim"
  2528. msgctxt "support_brim_enable description"
  2529. 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."
  2530. msgstr "在第一层的支撑填充区域内生成一个 Brim。此 Brim 在支撑下方打印,而非周围。启用此设置会增强支撑与打印平台的附着。"
  2531. msgctxt "support_brim_width label"
  2532. msgid "Support Brim Width"
  2533. msgstr "支撑 Brim 宽度"
  2534. msgctxt "support_brim_width description"
  2535. 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."
  2536. msgstr "在支撑下方要打印的 Brim 的宽度。较大的 Brim 可增强与打印平台的附着,但也会增加一些额外材料成本。"
  2537. msgctxt "support_brim_line_count label"
  2538. msgid "Support Brim Line Count"
  2539. msgstr "支撑 Brim 走线次数"
  2540. msgctxt "support_brim_line_count description"
  2541. 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."
  2542. msgstr "用于支撑 Brim 的走线数量。更多 Brim 走线可增强与打印平台的附着,但也会增加一些额外材料成本。"
  2543. msgctxt "support_z_distance label"
  2544. msgid "Support Z Distance"
  2545. msgstr "支撑 Z 距离"
  2546. msgctxt "support_z_distance description"
  2547. 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. The topmost support layer below the model might be a fraction of regular layers."
  2548. msgstr "支撑结构顶部/底部到打印物的距离。这个间隙提供了清除模型打印后支撑的空间。模型下方的最顶层支撑层可能是常规层的一小部分。"
  2549. msgctxt "support_top_distance label"
  2550. msgid "Support Top Distance"
  2551. msgstr "支撑顶部距离"
  2552. msgctxt "support_top_distance description"
  2553. msgid "Distance from the top of the support to the print."
  2554. msgstr "从支撑顶部到打印品的距离。"
  2555. msgctxt "support_bottom_distance label"
  2556. msgid "Support Bottom Distance"
  2557. msgstr "支撑底部距离"
  2558. msgctxt "support_bottom_distance description"
  2559. msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height."
  2560. msgstr "从打印物到支撑底部的距离。注意这个会上调到下一个层高。"
  2561. msgctxt "support_xy_distance label"
  2562. msgid "Support X/Y Distance"
  2563. msgstr "支撑 X/Y 距离"
  2564. msgctxt "support_xy_distance description"
  2565. msgid "Distance of the support structure from the print in the X/Y directions."
  2566. msgstr "支撑结构在 X/Y 方向距打印品的距离。"
  2567. msgctxt "support_xy_overrides_z label"
  2568. msgid "Support Distance Priority"
  2569. msgstr "支撑距离优先级"
  2570. msgctxt "support_xy_overrides_z description"
  2571. 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."
  2572. msgstr "支撑 X/Y 距离是否覆盖支撑 Z 距离或反之。 当 X/Y 覆盖 Z 时,X/Y 距离可将支撑从模型上推离,影响与悬垂之间的实际 Z 距离。 我们可以通过不在悬垂周围应用 X/Y 距离来禁用此选项。"
  2573. msgctxt "support_xy_overrides_z option xy_overrides_z"
  2574. msgid "X/Y overrides Z"
  2575. msgstr "X/Y 覆盖 Z"
  2576. msgctxt "support_xy_overrides_z option z_overrides_xy"
  2577. msgid "Z overrides X/Y"
  2578. msgstr "Z 覆盖 X/Y"
  2579. msgctxt "support_xy_distance_overhang label"
  2580. msgid "Minimum Support X/Y Distance"
  2581. msgstr "最小支撑 X/Y 距离"
  2582. msgctxt "support_xy_distance_overhang description"
  2583. msgid "Distance of the support structure from the overhang in the X/Y directions."
  2584. msgstr "支撑结构在 X/Y 方向距悬垂的距离。"
  2585. msgctxt "support_bottom_stair_step_height label"
  2586. msgid "Support Stair Step Height"
  2587. msgstr "支撑梯步阶高度"
  2588. msgctxt "support_bottom_stair_step_height description"
  2589. 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."
  2590. msgstr "停留在模型上的支撑阶梯状底部的步阶高度。 较低的值会使支撑更难于移除,但过高的值可能导致不稳定的支撑结构。 设为零可以关闭阶梯状行为。"
  2591. msgctxt "support_bottom_stair_step_width label"
  2592. msgid "Support Stair Step Maximum Width"
  2593. msgstr "支撑梯步阶最大宽度"
  2594. msgctxt "support_bottom_stair_step_width description"
  2595. 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."
  2596. msgstr "停留在模型上的支撑阶梯状底部的最大步阶宽度。 较低的值会使支撑更难于移除,但过高的值可能导致不稳定的支撑结构。"
  2597. msgctxt "support_bottom_stair_step_min_slope label"
  2598. msgid "Support Stair Step Minimum Slope Angle"
  2599. msgstr "支撑阶梯最小坡度角"
  2600. msgctxt "support_bottom_stair_step_min_slope description"
  2601. 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."
  2602. msgstr "使阶梯生效的区域最小坡度。该值较小可在较浅的坡度上更容易去除支撑,但该值过小可能会在模型的其他部分上产生某些很反常的结果。"
  2603. msgctxt "support_join_distance label"
  2604. msgid "Support Join Distance"
  2605. msgstr "支撑结合部距离"
  2606. msgctxt "support_join_distance description"
  2607. 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."
  2608. msgstr "支撑结构间在 X/Y 方向的最大距离。当分离结构之间的距离小于此值时,这些结构将合并为一体。"
  2609. msgctxt "support_offset label"
  2610. msgid "Support Horizontal Expansion"
  2611. msgstr "支撑水平扩展"
  2612. msgctxt "support_offset description"
  2613. 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."
  2614. msgstr "应用到每一层所有支撑多边形的偏移量。 正值可以让支撑区域更平滑,并产生更为牢固的支撑。"
  2615. msgctxt "support_infill_sparse_thickness label"
  2616. msgid "Support Infill Layer Thickness"
  2617. msgstr "支撑填充层厚度"
  2618. msgctxt "support_infill_sparse_thickness description"
  2619. msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded."
  2620. msgstr "支撑填充材料每层的厚度。 该值应始终为层高的乘数,否则应进行舍入。"
  2621. msgctxt "gradual_support_infill_steps label"
  2622. msgid "Gradual Support Infill Steps"
  2623. msgstr "渐进支撑填充步阶"
  2624. msgctxt "gradual_support_infill_steps description"
  2625. 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."
  2626. msgstr "在进入顶层以下时,将支撑填充密度减少一半的次数。 越靠近顶面的区域密度越高,最高达到支撑填充密度。"
  2627. msgctxt "gradual_support_infill_step_height label"
  2628. msgid "Gradual Support Infill Step Height"
  2629. msgstr "渐进支撑填充步阶高度"
  2630. msgctxt "gradual_support_infill_step_height description"
  2631. msgid "The height of support infill of a given density before switching to half the density."
  2632. msgstr "在切换至密度的一半前指定密度的支撑填充高度。"
  2633. msgctxt "minimum_support_area label"
  2634. msgid "Minimum Support Area"
  2635. msgstr "最小支撑面积"
  2636. msgctxt "minimum_support_area description"
  2637. msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated."
  2638. msgstr "支撑多边形的最小面积。将不会生成面积小于此值的多边形。"
  2639. msgctxt "support_interface_enable label"
  2640. msgid "Enable Support Interface"
  2641. msgstr "启用支撑接触面"
  2642. msgctxt "support_interface_enable description"
  2643. 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."
  2644. msgstr "在模型和支撑之间生成一个密集的接触面。 这会在打印模型所在的支撑顶部和模型停放的支撑底部创建一个皮肤。"
  2645. msgctxt "support_roof_enable label"
  2646. msgid "Enable Support Roof"
  2647. msgstr "启用支撑顶板"
  2648. msgctxt "support_roof_enable description"
  2649. 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."
  2650. msgstr "在支撑顶部和模型之间生成一个密集的材料板。 这会在模型和支撑之间形成一个皮肤。"
  2651. msgctxt "support_bottom_enable label"
  2652. msgid "Enable Support Floor"
  2653. msgstr "启用支撑底板"
  2654. msgctxt "support_bottom_enable description"
  2655. 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."
  2656. msgstr "在支撑底部和模型之间生成一个密集的材料板。 这会在模型和支撑之间形成一个皮肤。"
  2657. msgctxt "support_interface_height label"
  2658. msgid "Support Interface Thickness"
  2659. msgstr "支撑接触面厚度"
  2660. msgctxt "support_interface_height description"
  2661. msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top."
  2662. msgstr "支撑与模型在底部或顶部接触的接触面厚度。"
  2663. msgctxt "support_roof_height label"
  2664. msgid "Support Roof Thickness"
  2665. msgstr "支撑顶板厚度"
  2666. msgctxt "support_roof_height description"
  2667. 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."
  2668. msgstr "支撑顶板的厚度。 这会控制模型所停放的支撑顶部密集层的数量。"
  2669. msgctxt "support_bottom_height label"
  2670. msgid "Support Floor Thickness"
  2671. msgstr "支撑底板厚度"
  2672. msgctxt "support_bottom_height description"
  2673. 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."
  2674. msgstr "支撑底板的厚度。 这会控制支撑所停放的模型顶部区域所打印的密集层数量。"
  2675. msgctxt "support_interface_density label"
  2676. msgid "Support Interface Density"
  2677. msgstr "支撑接触面密度"
  2678. msgctxt "support_interface_density description"
  2679. 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."
  2680. msgstr "调整支撑结构顶板和底板的密度。 较高的值会实现更好的悬垂,但支撑将更加难以移除。"
  2681. msgctxt "support_roof_density label"
  2682. msgid "Support Roof Density"
  2683. msgstr "支撑顶板密度"
  2684. msgctxt "support_roof_density description"
  2685. msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  2686. msgstr "支撑结构顶板的密度。 较高的值会实现更好的悬垂,但支撑将更加难以移除。"
  2687. msgctxt "support_roof_line_distance label"
  2688. msgid "Support Roof Line Distance"
  2689. msgstr "支撑顶板走线距离"
  2690. msgctxt "support_roof_line_distance description"
  2691. msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately."
  2692. msgstr "已打印支撑顶板走线之间的距离。 该设置是通过支撑顶板密度计算,但可以单独调整。"
  2693. msgctxt "support_bottom_density label"
  2694. msgid "Support Floor Density"
  2695. msgstr "支撑底板密度"
  2696. msgctxt "support_bottom_density description"
  2697. 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."
  2698. msgstr "支撑结构底板的密度。 较高的值会在模型顶部产生更好的支撑粘着。"
  2699. msgctxt "support_bottom_line_distance label"
  2700. msgid "Support Floor Line Distance"
  2701. msgstr "支撑底板走线距离"
  2702. msgctxt "support_bottom_line_distance description"
  2703. msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately."
  2704. msgstr "已打印支撑底板走线之间的距离。 该设置是通过支撑底板密度计算,但可以单独调整。"
  2705. msgctxt "support_interface_pattern label"
  2706. msgid "Support Interface Pattern"
  2707. msgstr "支撑接触面图案"
  2708. msgctxt "support_interface_pattern description"
  2709. msgid "The pattern with which the interface of the support with the model is printed."
  2710. msgstr "支撑与模型之间接触面的打印图案。"
  2711. msgctxt "support_interface_pattern option lines"
  2712. msgid "Lines"
  2713. msgstr "走线"
  2714. msgctxt "support_interface_pattern option grid"
  2715. msgid "Grid"
  2716. msgstr "网格"
  2717. msgctxt "support_interface_pattern option triangles"
  2718. msgid "Triangles"
  2719. msgstr "三角形"
  2720. msgctxt "support_interface_pattern option concentric"
  2721. msgid "Concentric"
  2722. msgstr "同心"
  2723. msgctxt "support_interface_pattern option zigzag"
  2724. msgid "Zig Zag"
  2725. msgstr "锯齿形"
  2726. msgctxt "support_roof_pattern label"
  2727. msgid "Support Roof Pattern"
  2728. msgstr "支撑顶板图案"
  2729. msgctxt "support_roof_pattern description"
  2730. msgid "The pattern with which the roofs of the support are printed."
  2731. msgstr "打印支撑顶板的图案。"
  2732. msgctxt "support_roof_pattern option lines"
  2733. msgid "Lines"
  2734. msgstr "直线"
  2735. msgctxt "support_roof_pattern option grid"
  2736. msgid "Grid"
  2737. msgstr "网格"
  2738. msgctxt "support_roof_pattern option triangles"
  2739. msgid "Triangles"
  2740. msgstr "三角形"
  2741. msgctxt "support_roof_pattern option concentric"
  2742. msgid "Concentric"
  2743. msgstr "同心圆"
  2744. msgctxt "support_roof_pattern option zigzag"
  2745. msgid "Zig Zag"
  2746. msgstr "锯齿状"
  2747. msgctxt "support_bottom_pattern label"
  2748. msgid "Support Floor Pattern"
  2749. msgstr "支撑底板图案"
  2750. msgctxt "support_bottom_pattern description"
  2751. msgid "The pattern with which the floors of the support are printed."
  2752. msgstr "打印支撑底板的图案。"
  2753. msgctxt "support_bottom_pattern option lines"
  2754. msgid "Lines"
  2755. msgstr "走线"
  2756. msgctxt "support_bottom_pattern option grid"
  2757. msgid "Grid"
  2758. msgstr "网格"
  2759. msgctxt "support_bottom_pattern option triangles"
  2760. msgid "Triangles"
  2761. msgstr "三角形"
  2762. msgctxt "support_bottom_pattern option concentric"
  2763. msgid "Concentric"
  2764. msgstr "同心"
  2765. msgctxt "support_bottom_pattern option zigzag"
  2766. msgid "Zig Zag"
  2767. msgstr "锯齿形"
  2768. msgctxt "minimum_interface_area label"
  2769. msgid "Minimum Support Interface Area"
  2770. msgstr "最小支撑接触面面积"
  2771. msgctxt "minimum_interface_area description"
  2772. msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support."
  2773. msgstr "支撑接触面多边形的最小面积。面积小于此值的多边形将打印为一般支撑。"
  2774. msgctxt "minimum_roof_area label"
  2775. msgid "Minimum Support Roof Area"
  2776. msgstr "最小支撑顶板面积"
  2777. msgctxt "minimum_roof_area description"
  2778. 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."
  2779. msgstr "支撑顶板的最小面积。面积小于此值的多边形将打印为一般支撑。"
  2780. msgctxt "minimum_bottom_area label"
  2781. msgid "Minimum Support Floor Area"
  2782. msgstr "最小支撑底板面积"
  2783. msgctxt "minimum_bottom_area description"
  2784. 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."
  2785. msgstr "支撑底板的最小面积。面积小于此值的多边形将打印为一般支撑。"
  2786. msgctxt "support_interface_offset label"
  2787. msgid "Support Interface Horizontal Expansion"
  2788. msgstr "支撑接触面水平扩展"
  2789. msgctxt "support_interface_offset description"
  2790. msgid "Amount of offset applied to the support interface polygons."
  2791. msgstr "应用到支撑接触面多边形的偏移量。"
  2792. msgctxt "support_roof_offset label"
  2793. msgid "Support Roof Horizontal Expansion"
  2794. msgstr "支撑顶板水平扩展"
  2795. msgctxt "support_roof_offset description"
  2796. msgid "Amount of offset applied to the roofs of the support."
  2797. msgstr "应用到支撑顶板的偏移量。"
  2798. msgctxt "support_bottom_offset label"
  2799. msgid "Support Floor Horizontal Expansion"
  2800. msgstr "支撑底板水平扩展"
  2801. msgctxt "support_bottom_offset description"
  2802. msgid "Amount of offset applied to the floors of the support."
  2803. msgstr "应用到支撑底板的偏移量。"
  2804. msgctxt "support_interface_priority label"
  2805. msgid "Support Interface Priority"
  2806. msgstr "支撑接触面优先级"
  2807. msgctxt "support_interface_priority description"
  2808. msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof."
  2809. msgstr "重叠时支撑接触面和支撑的交互方式。目前仅对支撑顶板实施。"
  2810. msgctxt "support_interface_priority option support_area_overwrite_interface_area"
  2811. msgid "Support preferred"
  2812. msgstr "偏好支撑"
  2813. msgctxt "support_interface_priority option interface_area_overwrite_support_area"
  2814. msgid "Interface preferred"
  2815. msgstr "偏好接触面"
  2816. msgctxt "support_interface_priority option support_lines_overwrite_interface_area"
  2817. msgid "Support lines preferred"
  2818. msgstr "偏好支撑线"
  2819. msgctxt "support_interface_priority option interface_lines_overwrite_support_area"
  2820. msgid "Interface lines preferred"
  2821. msgstr "偏好接触面走线"
  2822. msgctxt "support_interface_priority option nothing"
  2823. msgid "Both overlap"
  2824. msgstr "两者重叠"
  2825. msgctxt "support_interface_angles label"
  2826. msgid "Support Interface Line Directions"
  2827. msgstr "支撑接触面走线方向"
  2828. msgctxt "support_interface_angles description"
  2829. 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)."
  2830. msgstr "要使用的整数走线方向列表。列表中的元素随层的进度依次使用,当达到列表末尾时将从头开始。列表项以逗号分隔,整个列表包含在方括号中。“默认“为一个空列表,即意味着使用默认角度(如果接触面很厚或为 90 度,则在 45 度和 135 度之间交替)。"
  2831. msgctxt "support_roof_angles label"
  2832. msgid "Support Roof Line Directions"
  2833. msgstr "支撑顶板走线方向"
  2834. msgctxt "support_roof_angles description"
  2835. 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)."
  2836. msgstr "要使用的整数走线方向列表。列表中的元素随层的进度依次使用,当达到列表末尾时将从头开始。列表项以逗号分隔,整个列表包含在方括号中。“默认“为一个空列表,即意味着使用默认角度(如果接触面很厚或为 90 度,则在 45 度和 135 度之间交替)。"
  2837. msgctxt "support_bottom_angles label"
  2838. msgid "Support Floor Line Directions"
  2839. msgstr "支撑底板走线方向"
  2840. msgctxt "support_bottom_angles description"
  2841. 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)."
  2842. msgstr "要使用的整数走线方向列表。列表中的元素随层的进度依次使用,当达到列表末尾时将从头开始。列表项以逗号分隔,整个列表包含在方括号中。“默认“为一个空列表,即意味着使用默认角度(如果接触面很厚或为 90 度,则在 45 度和 135 度之间交替)。"
  2843. msgctxt "support_fan_enable label"
  2844. msgid "Fan Speed Override"
  2845. msgstr "风扇速度覆盖"
  2846. msgctxt "support_fan_enable description"
  2847. msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support."
  2848. msgstr "启用时,会为支撑正上方的表面区域更改打印冷却风扇速度。"
  2849. msgctxt "support_supported_skin_fan_speed label"
  2850. msgid "Supported Skin Fan Speed"
  2851. msgstr "支撑的表面风扇速度"
  2852. msgctxt "support_supported_skin_fan_speed description"
  2853. 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."
  2854. msgstr "打印支撑正上方表面区域时使用的风扇百分比速度。使用高风扇速度可能使支撑更容易移除。"
  2855. msgctxt "support_use_towers label"
  2856. msgid "Use Towers"
  2857. msgstr "使用塔"
  2858. msgctxt "support_use_towers description"
  2859. 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."
  2860. msgstr "使用专门的塔来支撑较小的悬垂区域。 这些塔的直径比它们所支撑的区域要大。 在靠近悬垂物时,塔的直径减小,形成顶板。"
  2861. msgctxt "support_tower_diameter label"
  2862. msgid "Tower Diameter"
  2863. msgstr "塔直径"
  2864. msgctxt "support_tower_diameter description"
  2865. msgid "The diameter of a special tower."
  2866. msgstr "特殊塔的直径。"
  2867. msgctxt "support_tower_maximum_supported_diameter label"
  2868. msgid "Maximum Tower-Supported Diameter"
  2869. msgstr "最大塔支撑直径"
  2870. msgctxt "support_tower_maximum_supported_diameter description"
  2871. msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower."
  2872. msgstr "将由专门的支撑塔支撑的小区域 X/Y 轴方向的最大直径。"
  2873. msgctxt "support_tower_roof_angle label"
  2874. msgid "Tower Roof Angle"
  2875. msgstr "塔顶板角度"
  2876. msgctxt "support_tower_roof_angle description"
  2877. 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."
  2878. msgstr "塔顶角度。 该值越高,塔顶越尖,值越低,塔顶越平。"
  2879. msgctxt "support_mesh_drop_down label"
  2880. msgid "Drop Down Support Mesh"
  2881. msgstr "下拉式支撑网格"
  2882. msgctxt "support_mesh_drop_down description"
  2883. msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh."
  2884. msgstr "在支撑网格下方的所有位置进行支撑,让支撑网格中没有悬垂。"
  2885. msgctxt "support_meshes_present label"
  2886. msgid "Scene Has Support Meshes"
  2887. msgstr "场景具有支撑网格"
  2888. msgctxt "support_meshes_present description"
  2889. msgid "There are support meshes present in the scene. This setting is controlled by Cura."
  2890. msgstr "场景中存在支撑网格。此设置受 Cura 控制。"
  2891. msgctxt "platform_adhesion label"
  2892. msgid "Build Plate Adhesion"
  2893. msgstr "打印平台附着"
  2894. msgctxt "platform_adhesion description"
  2895. msgid "Adhesion"
  2896. msgstr "附着"
  2897. msgctxt "prime_blob_enable label"
  2898. msgid "Enable Prime Blob"
  2899. msgstr "启用装填光点"
  2900. msgctxt "prime_blob_enable description"
  2901. 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."
  2902. msgstr "打印前是否装填有光点的耗材。 开启此设置将确保打印前挤出机的喷嘴处已准备好材料。 打印 Brim 或 Skirt 也可作为装填用途,这种情况下关闭此设置可以节省时间。"
  2903. msgctxt "extruder_prime_pos_x label"
  2904. msgid "Extruder Prime X Position"
  2905. msgstr "挤出机 X 轴坐标"
  2906. msgctxt "extruder_prime_pos_x description"
  2907. msgid "The X coordinate of the position where the nozzle primes at the start of printing."
  2908. msgstr "打印开始时,喷头在 X 轴上初始位置。"
  2909. msgctxt "extruder_prime_pos_y label"
  2910. msgid "Extruder Prime Y Position"
  2911. msgstr "挤出机 Y 轴起始位置"
  2912. msgctxt "extruder_prime_pos_y description"
  2913. msgid "The Y coordinate of the position where the nozzle primes at the start of printing."
  2914. msgstr "打印开始时,喷头在 Y 轴坐标上初始位置。"
  2915. msgctxt "adhesion_type label"
  2916. msgid "Build Plate Adhesion Type"
  2917. msgstr "打印平台附着类型"
  2918. msgctxt "adhesion_type description"
  2919. 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."
  2920. msgstr "帮助改善挤出装填以及与打印平台附着的不同选项。 Brim 会在模型基座周围添加单层平面区域,以防止卷翘。 Raft 会在模型下添加一个有顶板的厚网格。 Skirt 是在模型四周打印的一条线,但并不与模型连接。"
  2921. msgctxt "adhesion_type option skirt"
  2922. msgid "Skirt"
  2923. msgstr "Skirt"
  2924. msgctxt "adhesion_type option brim"
  2925. msgid "Brim"
  2926. msgstr "Brim"
  2927. msgctxt "adhesion_type option raft"
  2928. msgid "Raft"
  2929. msgstr "Raft"
  2930. msgctxt "adhesion_type option none"
  2931. msgid "None"
  2932. msgstr "无"
  2933. msgctxt "adhesion_extruder_nr label"
  2934. msgid "Build Plate Adhesion Extruder"
  2935. msgstr "打印平台附着挤出机"
  2936. msgctxt "adhesion_extruder_nr description"
  2937. msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion."
  2938. msgstr "用于打印 skirt/brim/raft 的挤出机组。 用于多重挤出。"
  2939. msgctxt "skirt_brim_extruder_nr label"
  2940. msgid "Skirt/Brim Extruder"
  2941. msgstr "Skirt/Brim 挤出器"
  2942. msgctxt "skirt_brim_extruder_nr description"
  2943. msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion."
  2944. msgstr "用于打印 Skirt 或 Brim 的挤出机组。用于多重挤出。"
  2945. msgctxt "raft_base_extruder_nr label"
  2946. msgid "Raft Base Extruder"
  2947. msgstr "Raft 底层挤出器"
  2948. msgctxt "raft_base_extruder_nr description"
  2949. msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion."
  2950. msgstr "用于打印 Raft 第一层的挤出器组。用于多重挤出。"
  2951. msgctxt "raft_interface_extruder_nr label"
  2952. msgid "Raft Middle Extruder"
  2953. msgstr "Raft 中间挤出器"
  2954. msgctxt "raft_interface_extruder_nr description"
  2955. msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion."
  2956. msgstr "用于打印 Raft 中间层的挤出器组。用于多重挤出。"
  2957. msgctxt "raft_surface_extruder_nr label"
  2958. msgid "Raft Top Extruder"
  2959. msgstr "Raft 顶层挤出器"
  2960. msgctxt "raft_surface_extruder_nr description"
  2961. msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion."
  2962. msgstr "用于打印 Raft 顶层的挤出器组。用于多重挤出。"
  2963. msgctxt "skirt_line_count label"
  2964. msgid "Skirt Line Count"
  2965. msgstr "Skirt 走线计数"
  2966. msgctxt "skirt_line_count description"
  2967. msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt."
  2968. msgstr "多个 Skirt 走线帮助为小型模型更好地装填您的挤出部分。 将其设为 0 将禁用 skirt。"
  2969. msgctxt "skirt_height label"
  2970. msgid "Skirt Height"
  2971. msgstr "裙边高度"
  2972. msgctxt "skirt_height description"
  2973. msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt."
  2974. msgstr "多层打印最内层裙边走线,便于移除裙边。"
  2975. msgctxt "skirt_gap label"
  2976. msgid "Skirt Distance"
  2977. msgstr "Skirt 距离"
  2978. msgctxt "skirt_gap description"
  2979. msgid "The horizontal distance between the skirt and the first layer of the print.\nThis is the minimum distance. Multiple skirt lines will extend outwards from this distance."
  2980. msgstr "skirt 和打印第一层之间的水平距离。"
  2981. "这是最小距离。多个 skirt 走线将从此距离向外延伸。"
  2982. msgctxt "skirt_brim_minimal_length label"
  2983. msgid "Skirt/Brim Minimum Length"
  2984. msgstr "Skirt/Brim 最小长度"
  2985. msgctxt "skirt_brim_minimal_length description"
  2986. 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."
  2987. msgstr "skirt 或 brim 的最小长度。 如果所有 skirt 或 brim 走线之和都没有达到此长度,则将添加更多 skirt 或 brim 走线直至达到最小长度。 注意: 如果走线计数设为 0,则将忽略此选项。"
  2988. msgctxt "brim_width label"
  2989. msgid "Brim Width"
  2990. msgstr "Brim 宽度"
  2991. msgctxt "brim_width description"
  2992. 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."
  2993. msgstr "模型到最外侧 brim 线的距离。 较大的 brim 可增强与打印平台的附着,但也会减少有效打印区域。"
  2994. msgctxt "brim_line_count label"
  2995. msgid "Brim Line Count"
  2996. msgstr "Brim 走线计数"
  2997. msgctxt "brim_line_count description"
  2998. 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."
  2999. msgstr "brim 所用走线数量。 更多 brim 走线可增强与打印平台的附着,但也会减少有效打印区域。"
  3000. msgctxt "brim_gap label"
  3001. msgid "Brim Distance"
  3002. msgstr "边沿距离"
  3003. msgctxt "brim_gap description"
  3004. 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."
  3005. msgstr "第一条边沿线与打印件第一层轮廓之间的水平距离。较小的间隙可使边沿更容易去除,同时在散热方面仍有优势。"
  3006. msgctxt "brim_replaces_support label"
  3007. msgid "Brim Replaces Support"
  3008. msgstr "Brim 替换支撑"
  3009. msgctxt "brim_replaces_support description"
  3010. 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."
  3011. msgstr "强制围绕模型打印 Brim,即使该空间本该由支撑占据。此操作会将第一层的某些支撑区域替换为 Brim 区域。"
  3012. msgctxt "brim_location label"
  3013. msgid "Brim Location"
  3014. msgstr "裙边位置"
  3015. msgctxt "brim_location description"
  3016. msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion."
  3017. msgstr "在模型的外侧,内侧或两侧同时打印裙边。根据模型的不同,这有助于减少随后需要去除的裙边量,同时保证所需的底座附着力。"
  3018. msgctxt "brim_location option outside"
  3019. msgid "Outside Only"
  3020. msgstr "仅外侧"
  3021. msgctxt "brim_location option inside"
  3022. msgid "Inside Only"
  3023. msgstr "仅内侧"
  3024. msgctxt "brim_location option everywhere"
  3025. msgid "Everywhere"
  3026. msgstr "各处"
  3027. msgctxt "brim_inside_margin label"
  3028. msgid "Brim Avoid Margin"
  3029. msgstr "裙边邻避边距"
  3030. msgctxt "brim_inside_margin description"
  3031. msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models."
  3032. msgstr "模型周围的裙边可能会触及您不希望接触到的其他模型。此操作会将与其他无裙边的模型小于特定距离的裙边打印区域删除。"
  3033. msgctxt "brim_smart_ordering label"
  3034. msgid "Smart Brim"
  3035. msgstr "智能边缘"
  3036. msgctxt "brim_smart_ordering description"
  3037. msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal."
  3038. msgstr "变换最内层和第二内层侧裙走线的打印顺序。这样可改善侧裙移除。"
  3039. msgctxt "raft_margin label"
  3040. msgid "Raft Extra Margin"
  3041. msgstr "Raft 留白"
  3042. msgctxt "raft_margin description"
  3043. 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."
  3044. msgstr "如果启用了 raft,则这是指也被提供了 raft 的模型周围的额外 raft 区域。 增加此留白将创建强度更大的 raft,但会使用更多材料,为打印品留下的空间更少。"
  3045. msgctxt "raft_base_margin label"
  3046. msgid "Raft Base Extra Margin"
  3047. msgstr "筏层基段额外边距"
  3048. msgctxt "raft_base_margin description"
  3049. msgid "If the raft base 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."
  3050. msgstr "如果设置了筏层基段扩展,这将会是模型周围扩展出的打印区域,并同时打印筏层。增加此边距会使筏层更为坚固,但也会使用更多材料并占用更多的打印空间。"
  3051. msgctxt "raft_interface_margin label"
  3052. msgid "Raft Middle Extra Margin"
  3053. msgstr "筏层中段额外边距"
  3054. msgctxt "raft_interface_margin description"
  3055. msgid "If the raft middle 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."
  3056. msgstr "如果设置了筏层中段扩展,这将会是模型周围扩展出的打印区域,并同时打印筏层。增加此边距会使筏层更为坚固,但也会使用更多材料并占用更多的打印空间。"
  3057. msgctxt "raft_surface_margin label"
  3058. msgid "Raft Top Extra Margin"
  3059. msgstr "筏层顶段额外边距"
  3060. msgctxt "raft_surface_margin description"
  3061. msgid "If the raft top 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."
  3062. msgstr "如果设置了筏层顶段扩展,这将会是模型周围扩展出的打印区域,并同时打印筏层。增加此边距会使筏层更为坚固,但也会使用更多材料并占用更多的打印空间。"
  3063. msgctxt "raft_remove_inside_corners label"
  3064. msgid "Remove Raft Inside Corners"
  3065. msgstr "移除 Raft 内侧角"
  3066. msgctxt "raft_remove_inside_corners description"
  3067. msgid "Remove inside corners from the raft, causing the raft to become convex."
  3068. msgstr "从 Raft 上移除内侧角,这会使 Raft 变得凸出。"
  3069. msgctxt "raft_base_remove_inside_corners label"
  3070. msgid "Remove Raft Base Inside Corners"
  3071. msgstr "移除筏层基段内角"
  3072. msgctxt "raft_base_remove_inside_corners description"
  3073. msgid "Remove inside corners from the raft base, causing the raft to become convex."
  3074. msgstr "移除筏层基段的内角,会使筏层凸起"
  3075. msgctxt "raft_interface_remove_inside_corners label"
  3076. msgid "Remove Raft Middle Inside Corners"
  3077. msgstr "移除中段内角"
  3078. msgctxt "raft_interface_remove_inside_corners description"
  3079. msgid "Remove inside corners from the raft middle part, causing the raft to become convex."
  3080. msgstr "移除筏层中段的内角,会使筏层凸起。"
  3081. msgctxt "raft_surface_remove_inside_corners label"
  3082. msgid "Remove Raft Top Inside Corners"
  3083. msgstr "移除筏层顶段内角"
  3084. msgctxt "raft_surface_remove_inside_corners description"
  3085. msgid "Remove inside corners from the raft top part, causing the raft to become convex."
  3086. msgstr "移除筏层顶段的内角,会使筏层凸起。"
  3087. msgctxt "raft_smoothing label"
  3088. msgid "Raft Smoothing"
  3089. msgstr "Raft 平滑度"
  3090. msgctxt "raft_smoothing description"
  3091. 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."
  3092. msgstr "该设置控制 Raft 轮廓中的内角呈圆形的程度。内向角被设置为半圆形,半径等于此处的值。此设置还会移除 raft 轮廓中小于此半圆形的孔。"
  3093. msgctxt "raft_base_smoothing label"
  3094. msgid "Raft Base Smoothing"
  3095. msgstr "平滑筏层基段"
  3096. msgctxt "raft_base_smoothing description"
  3097. msgid "This setting controls how much inner corners in the raft base 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."
  3098. msgstr "此设置用于调整筏层基段轮廓线内角的倒圆角大小。"
  3099. "内角被倒角为半圆,其半径等于此处给出的值。此设置还会移除筏层轮廓线中面积小于此半径值圆的孔。"
  3100. msgctxt "raft_interface_smoothing label"
  3101. msgid "Raft Middle Smoothing"
  3102. msgstr "平滑筏层中段"
  3103. msgctxt "raft_interface_smoothing description"
  3104. msgid "This setting controls how much inner corners in the raft middle 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."
  3105. msgstr "此设置用于调整筏层中段轮廓线内角的倒圆角大小。"
  3106. "内角被倒角为半圆,其半径等于此处给出的值。此设置还会移除筏层轮廓线中面积小于此半径值圆的孔。"
  3107. msgctxt "raft_surface_smoothing label"
  3108. msgid "Raft Top Smoothing"
  3109. msgstr "平滑筏层顶段"
  3110. msgctxt "raft_surface_smoothing description"
  3111. msgid "This setting controls how much inner corners in the raft top 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."
  3112. msgstr "此设置用于调整筏层顶段轮廓线内角的倒圆角大小。"
  3113. "内角被倒角为半圆,其半径等于此处给出的值。此设置还会移除筏层轮廓线中面积小于此半径值圆的孔。"
  3114. msgctxt "raft_airgap label"
  3115. msgid "Raft Air Gap"
  3116. msgstr "Raft 空隙"
  3117. msgctxt "raft_airgap description"
  3118. 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."
  3119. msgstr "模型最后的 raft 层与第一层之间的间隙。 只有第一层被提高了这个量,以便降低 raft 层和模型之间的附着。 让 raft 更容易剥离。"
  3120. msgctxt "layer_0_z_overlap label"
  3121. msgid "Initial Layer Z Overlap"
  3122. msgstr "起始层 Z 重叠"
  3123. msgctxt "layer_0_z_overlap description"
  3124. 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.\nIt may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior"
  3125. msgstr "使模型打印的第一层和第二层在 Z 方向上重叠,以补偿气隙中损失的丝材。模型的第一层上方的所有部分都将向下移动此量。\n您可能会发现,进行此设置后,有时第二层会打印在初始层下方。这是正常的"
  3126. msgctxt "raft_base_thickness label"
  3127. msgid "Raft Base Thickness"
  3128. msgstr "Raft 基础厚度"
  3129. msgctxt "raft_base_thickness description"
  3130. msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate."
  3131. msgstr "基础 Raft 层的层厚度。 该层应为与打印机打印平台牢固粘着的厚层。"
  3132. msgctxt "raft_base_line_width label"
  3133. msgid "Raft Base Line Width"
  3134. msgstr "Raft 基础走线宽度"
  3135. msgctxt "raft_base_line_width description"
  3136. msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion."
  3137. msgstr "基础 Raft 层的走线宽度。 这些走线应该是粗线,以便协助打印平台附着。"
  3138. msgctxt "raft_base_line_spacing label"
  3139. msgid "Raft Base Line Spacing"
  3140. msgstr "Raft 基础走线间距"
  3141. msgctxt "raft_base_line_spacing description"
  3142. 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."
  3143. msgstr "基础 Raft 层的 Raft 走线之间的距离。 宽间距方便将 Raft 从打印平台移除。"
  3144. msgctxt "raft_interface_layers label"
  3145. msgid "Raft Middle Layers"
  3146. msgstr "Raft 中间层"
  3147. msgctxt "raft_interface_layers description"
  3148. 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."
  3149. msgstr "Raft 的底层和表面之间的层数。这些层组成了 Raft 的主要厚度。增加此值会创建一个更厚、更坚固的 Raft。"
  3150. msgctxt "raft_interface_thickness label"
  3151. msgid "Raft Middle Thickness"
  3152. msgstr "Raft 中间厚度"
  3153. msgctxt "raft_interface_thickness description"
  3154. msgid "Layer thickness of the middle raft layer."
  3155. msgstr "中间 Raft 层的层厚度。"
  3156. msgctxt "raft_interface_line_width label"
  3157. msgid "Raft Middle Line Width"
  3158. msgstr "Raft 中间线宽度"
  3159. msgctxt "raft_interface_line_width description"
  3160. 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."
  3161. msgstr "中间 Raft 层的走线宽度。 让第二层挤出更多会导致走线粘着在打印平台上。"
  3162. msgctxt "raft_interface_line_spacing label"
  3163. msgid "Raft Middle Spacing"
  3164. msgstr "Raft 中间间距"
  3165. msgctxt "raft_interface_line_spacing description"
  3166. 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."
  3167. msgstr "中间 Raft 层的 Raft 走线之间的距离。 中间的间距应足够宽,同时也要足够密集,以便支撑顶部 Raft 层。"
  3168. msgctxt "raft_surface_layers label"
  3169. msgid "Raft Top Layers"
  3170. msgstr "Raft 顶层"
  3171. msgctxt "raft_surface_layers description"
  3172. 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."
  3173. msgstr "第 2 个 raft 层上方的顶层数量。 这些是模型所在的完全填充层。 第二层会产生比第一层更平滑的顶部表面。"
  3174. msgctxt "raft_surface_thickness label"
  3175. msgid "Raft Top Layer Thickness"
  3176. msgstr "Raft 顶层厚度"
  3177. msgctxt "raft_surface_thickness description"
  3178. msgid "Layer thickness of the top raft layers."
  3179. msgstr "顶部 Raft 层的层厚度。"
  3180. msgctxt "raft_surface_line_width label"
  3181. msgid "Raft Top Line Width"
  3182. msgstr "Raft 顶线宽度"
  3183. msgctxt "raft_surface_line_width description"
  3184. 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."
  3185. msgstr "Raft 顶部表面的走线宽度。 这些走线可以是细线,以便实现平滑的 Raft 顶部。"
  3186. msgctxt "raft_surface_line_spacing label"
  3187. msgid "Raft Top Spacing"
  3188. msgstr "Raft 顶部间距"
  3189. msgctxt "raft_surface_line_spacing description"
  3190. 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."
  3191. msgstr "顶部 Raft 层的 Raft 走线之间的距离。 间距应等于走线宽度,以便打造坚固表面。"
  3192. msgctxt "raft_surface_monotonic label"
  3193. msgid "Monotonic Raft Top Surface Order"
  3194. msgstr "单调递增的筏顶面顺序"
  3195. msgctxt "raft_surface_monotonic description"
  3196. msgid "Print raft 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 the surface look more consistent, which is also visible on the model bottom surface."
  3197. msgstr "按顺序打印筏层顶段表面线,使它们始终与单个方向上的相邻线重叠。这会花费稍微长一点的打印时间,但会使表面看起来更加一致,在模型底面上可以看出。"
  3198. msgctxt "raft_wall_count label"
  3199. msgid "Raft Wall Count"
  3200. msgstr "筏层壁圈数"
  3201. msgctxt "raft_wall_count description"
  3202. msgid "The number of contours to print around the linear pattern of the raft."
  3203. msgstr "围绕筏层的线性图案打印的轮廓圈数。"
  3204. msgctxt "raft_base_wall_count label"
  3205. msgid "Raft Base Wall Count"
  3206. msgstr "Raft 底板壁数"
  3207. msgctxt "raft_base_wall_count description"
  3208. msgid "The number of contours to print around the linear pattern in the base layer of the raft."
  3209. msgstr "在 Raft 的底板层中,围绕线型图案打印轮廓的次数。"
  3210. msgctxt "raft_interface_wall_count label"
  3211. msgid "Raft Middle Wall Count"
  3212. msgstr "筏层中段壁圈数"
  3213. msgctxt "raft_interface_wall_count description"
  3214. msgid "The number of contours to print around the linear pattern in the middle layers of the raft."
  3215. msgstr "围绕筏层中段的线性图案打印的轮廓圈数。"
  3216. msgctxt "raft_surface_wall_count label"
  3217. msgid "Raft Top Wall Count"
  3218. msgstr "筏层顶段壁圈数"
  3219. msgctxt "raft_surface_wall_count description"
  3220. msgid "The number of contours to print around the linear pattern in the top layers of the raft."
  3221. msgstr "围绕筏层顶段的线性图案打印的轮廓圈数。"
  3222. msgctxt "raft_speed label"
  3223. msgid "Raft Print Speed"
  3224. msgstr "Raft 打印速度"
  3225. msgctxt "raft_speed description"
  3226. msgid "The speed at which the raft is printed."
  3227. msgstr "打印 Raft 的速度。"
  3228. msgctxt "raft_base_speed label"
  3229. msgid "Raft Base Print Speed"
  3230. msgstr "Raft 基础打印速度"
  3231. msgctxt "raft_base_speed description"
  3232. 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."
  3233. msgstr "打印基础 Raft 层的速度。 该层应以很慢的速度打印,因为喷嘴所出的材料量非常高。"
  3234. msgctxt "raft_interface_speed label"
  3235. msgid "Raft Middle Print Speed"
  3236. msgstr "Raft 中间打印速度"
  3237. msgctxt "raft_interface_speed description"
  3238. 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."
  3239. msgstr "打印中间 Raft 层的速度。 该层应以很慢的速度打印,因为喷嘴所出的材料量非常高。"
  3240. msgctxt "raft_surface_speed label"
  3241. msgid "Raft Top Print Speed"
  3242. msgstr "Raft 顶部打印速度"
  3243. msgctxt "raft_surface_speed description"
  3244. 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."
  3245. msgstr "打印顶部 Raft 层的速度。 这些层应以较慢的速度打印,以便喷嘴缓慢地整平临近的表面走线。"
  3246. msgctxt "raft_acceleration label"
  3247. msgid "Raft Print Acceleration"
  3248. msgstr "Raft 打印加速度"
  3249. msgctxt "raft_acceleration description"
  3250. msgid "The acceleration with which the raft is printed."
  3251. msgstr "打印 Raft 的加速度。"
  3252. msgctxt "raft_base_acceleration label"
  3253. msgid "Raft Base Print Acceleration"
  3254. msgstr "Raft 基础打印加速度"
  3255. msgctxt "raft_base_acceleration description"
  3256. msgid "The acceleration with which the base raft layer is printed."
  3257. msgstr "打印基础 Raft 层的加速度。"
  3258. msgctxt "raft_interface_acceleration label"
  3259. msgid "Raft Middle Print Acceleration"
  3260. msgstr "Raft 中间打印加速度"
  3261. msgctxt "raft_interface_acceleration description"
  3262. msgid "The acceleration with which the middle raft layer is printed."
  3263. msgstr "打印中间 Raft 层的加速度。"
  3264. msgctxt "raft_surface_acceleration label"
  3265. msgid "Raft Top Print Acceleration"
  3266. msgstr "Raft 顶部打印加速度"
  3267. msgctxt "raft_surface_acceleration description"
  3268. msgid "The acceleration with which the top raft layers are printed."
  3269. msgstr "打印顶部 Raft 层的加速度。"
  3270. msgctxt "raft_jerk label"
  3271. msgid "Raft Print Jerk"
  3272. msgstr "Raft 打印抖动速度"
  3273. msgctxt "raft_jerk description"
  3274. msgid "The jerk with which the raft is printed."
  3275. msgstr "打印 Raft 的抖动速度。"
  3276. msgctxt "raft_base_jerk label"
  3277. msgid "Raft Base Print Jerk"
  3278. msgstr "Raft 基础打印抖动速度"
  3279. msgctxt "raft_base_jerk description"
  3280. msgid "The jerk with which the base raft layer is printed."
  3281. msgstr "打印基础 Raft 层的抖动速度。"
  3282. msgctxt "raft_interface_jerk label"
  3283. msgid "Raft Middle Print Jerk"
  3284. msgstr "Raft 中间打印抖动速度"
  3285. msgctxt "raft_interface_jerk description"
  3286. msgid "The jerk with which the middle raft layer is printed."
  3287. msgstr "打印中间 Raft 层的抖动速度。"
  3288. msgctxt "raft_surface_jerk label"
  3289. msgid "Raft Top Print Jerk"
  3290. msgstr "Raft 顶部打印抖动速度"
  3291. msgctxt "raft_surface_jerk description"
  3292. msgid "The jerk with which the top raft layers are printed."
  3293. msgstr "打印顶部 Raft 层的抖动速度。"
  3294. msgctxt "raft_fan_speed label"
  3295. msgid "Raft Fan Speed"
  3296. msgstr "Raft 风扇速度"
  3297. msgctxt "raft_fan_speed description"
  3298. msgid "The fan speed for the raft."
  3299. msgstr "Raft 的风扇速度。"
  3300. msgctxt "raft_base_fan_speed label"
  3301. msgid "Raft Base Fan Speed"
  3302. msgstr "Raft 基础风扇速度"
  3303. msgctxt "raft_base_fan_speed description"
  3304. msgid "The fan speed for the base raft layer."
  3305. msgstr "基础 Raft 层的风扇速度。"
  3306. msgctxt "raft_interface_fan_speed label"
  3307. msgid "Raft Middle Fan Speed"
  3308. msgstr "Raft 中间风扇速度"
  3309. msgctxt "raft_interface_fan_speed description"
  3310. msgid "The fan speed for the middle raft layer."
  3311. msgstr "中间 Raft 层的风扇速度。"
  3312. msgctxt "raft_surface_fan_speed label"
  3313. msgid "Raft Top Fan Speed"
  3314. msgstr "Raft 顶部风扇速度"
  3315. msgctxt "raft_surface_fan_speed description"
  3316. msgid "The fan speed for the top raft layers."
  3317. msgstr "顶部 Raft 层的风扇速度。"
  3318. msgctxt "dual label"
  3319. msgid "Dual Extrusion"
  3320. msgstr "双重挤出"
  3321. msgctxt "dual description"
  3322. msgid "Settings used for printing with multiple extruders."
  3323. msgstr "利用多个挤出机进行打印所用的设置。"
  3324. msgctxt "prime_tower_enable label"
  3325. msgid "Enable Prime Tower"
  3326. msgstr "启用装填塔"
  3327. msgctxt "prime_tower_enable description"
  3328. msgid "Print a tower next to the print which serves to prime the material after each nozzle switch."
  3329. msgstr "在打印品相邻处打印一个塔,用于在每个喷嘴切换后装填材料。"
  3330. msgctxt "prime_tower_mode label"
  3331. msgid "Prime Tower Type"
  3332. msgstr "主塔类型"
  3333. msgctxt "prime_tower_mode description"
  3334. msgid "<html>How to generate the prime tower:<ul><li><b>Normal:</b> create a bucket in which secondary materials are primed</li><li><b>Interleaved:</b> create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other</li></ul></html>"
  3335. msgstr "<html>如何空心主塔:<ul><li><b>通常的:</b>创建一个桶状结构,在其中填充辅助材料</li><li><b>交错的:</b> 创建一个尽可能稀疏的主塔。这将节省时间和丝材,但只有当所用材料粘附在每个部件上时才有可能</li></ul></html>"
  3336. msgctxt "prime_tower_mode option normal"
  3337. msgid "Normal"
  3338. msgstr "通常的"
  3339. msgctxt "prime_tower_mode option interleaved"
  3340. msgid "Interleaved"
  3341. msgstr "交错的"
  3342. msgctxt "prime_tower_size label"
  3343. msgid "Prime Tower Size"
  3344. msgstr "装填塔尺寸"
  3345. msgctxt "prime_tower_size description"
  3346. msgid "The width of the prime tower."
  3347. msgstr "装填塔的宽度。"
  3348. msgctxt "prime_tower_min_volume label"
  3349. msgid "Prime Tower Minimum Volume"
  3350. msgstr "装填塔最小体积"
  3351. msgctxt "prime_tower_min_volume description"
  3352. msgid "The minimum volume for each layer of the prime tower in order to purge enough material."
  3353. msgstr "为了清除足够的材料,装填塔每层的最小体积。"
  3354. msgctxt "prime_tower_max_bridging_distance label"
  3355. msgid "Prime Tower Maximum Bridging Distance"
  3356. msgstr "主塔最大桥接距离"
  3357. msgctxt "prime_tower_max_bridging_distance description"
  3358. msgid "The maximum length of the branches which may be printed over the air."
  3359. msgstr "可以跨空打印分支的最大长度。"
  3360. msgctxt "prime_tower_position_x label"
  3361. msgid "Prime Tower X Position"
  3362. msgstr "装填塔 X 位置"
  3363. msgctxt "prime_tower_position_x description"
  3364. msgid "The x coordinate of the position of the prime tower."
  3365. msgstr "装填塔位置的 X 坐标。"
  3366. msgctxt "prime_tower_position_y label"
  3367. msgid "Prime Tower Y Position"
  3368. msgstr "装填塔 Y 位置"
  3369. msgctxt "prime_tower_position_y description"
  3370. msgid "The y coordinate of the position of the prime tower."
  3371. msgstr "装填塔位置的 y 坐标。"
  3372. msgctxt "prime_tower_wipe_enabled label"
  3373. msgid "Wipe Inactive Nozzle on Prime Tower"
  3374. msgstr "擦拭装填塔上的不活动喷嘴"
  3375. msgctxt "prime_tower_wipe_enabled description"
  3376. msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower."
  3377. msgstr "在用一个喷嘴打印装填塔后,从装填塔上的另一个喷嘴擦去渗出的材料。"
  3378. msgctxt "prime_tower_brim_enable label"
  3379. msgid "Prime Tower Base"
  3380. msgstr "底漆塔座"
  3381. msgctxt "prime_tower_brim_enable description"
  3382. msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height."
  3383. msgstr "启用此设置将为您的 prime tower 添加一个边缘,即使您的模型中原本没有。如果您希望高塔有更坚固的基座,可以增加底座高度。"
  3384. msgctxt "prime_tower_base_size label"
  3385. msgid "Prime Tower Base Size"
  3386. msgstr "底漆塔座尺寸"
  3387. msgctxt "prime_tower_base_size description"
  3388. msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area."
  3389. msgstr "Prime tower 边缘/底座的宽度。更大的底座可以增强对打印板的粘附力,但也会减少有效打印区域。"
  3390. msgctxt "prime_tower_base_height label"
  3391. msgid "Prime Tower Base Height"
  3392. msgstr "底漆塔座高度"
  3393. msgctxt "prime_tower_base_height description"
  3394. msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base."
  3395. msgstr "Prime tower 底座的高度。增加这个值将使 prime tower 更加坚固,因为底座会更宽。如果这个设置过低,prime tower 将没有坚固的底座。"
  3396. msgctxt "prime_tower_base_curve_magnitude label"
  3397. msgid "Prime Tower Base Slope"
  3398. msgstr "Prime Tower 底座斜度"
  3399. msgctxt "prime_tower_base_curve_magnitude description"
  3400. msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker."
  3401. msgstr "用于 prime tower 底座斜度的幅度因子。如果您增加这个值,底座会变得更细。如果减小它,底座会变得更厚。"
  3402. msgctxt "prime_tower_raft_base_line_spacing label"
  3403. msgid "Prime Tower Raft Line Spacing"
  3404. msgstr "底漆塔筏线间距"
  3405. msgctxt "prime_tower_raft_base_line_spacing description"
  3406. msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate."
  3407. msgstr "底漆塔独有的筏层之间筏线的距离。宽间距可以轻松地将筏从打印板上移除。"
  3408. msgctxt "ooze_shield_enabled label"
  3409. msgid "Enable Ooze Shield"
  3410. msgstr "启用渗出罩"
  3411. msgctxt "ooze_shield_enabled description"
  3412. 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."
  3413. msgstr "启用外部渗出罩。 这将在模型周围创建一个外壳,如果与第一个喷嘴处于相同的高度,则可能会擦拭第二个喷嘴。"
  3414. msgctxt "ooze_shield_angle label"
  3415. msgid "Ooze Shield Angle"
  3416. msgstr "渗出罩角度"
  3417. msgctxt "ooze_shield_angle description"
  3418. 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."
  3419. msgstr "渗出罩中的一个部件将具备的最大角度。 角度 0 度时为垂直,角度 90 度时为水平。 较小的角度会降低渗出罩失效次数,但会耗费更多材料。"
  3420. msgctxt "ooze_shield_dist label"
  3421. msgid "Ooze Shield Distance"
  3422. msgstr "渗出罩距离"
  3423. msgctxt "ooze_shield_dist description"
  3424. msgid "Distance of the ooze shield from the print, in the X/Y directions."
  3425. msgstr "渗出罩在 X/Y 方向距打印品的距离。"
  3426. msgctxt "switch_extruder_retraction_amount label"
  3427. msgid "Nozzle Switch Retraction Distance"
  3428. msgstr "喷嘴切换回抽距离"
  3429. msgctxt "switch_extruder_retraction_amount description"
  3430. 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."
  3431. msgstr "切换挤出机时的回抽量。设为 0,不进行任何回抽。该值通常应与加热区的长度相同。"
  3432. msgctxt "switch_extruder_retraction_speeds label"
  3433. msgid "Nozzle Switch Retraction Speed"
  3434. msgstr "喷嘴切换回抽速度"
  3435. msgctxt "switch_extruder_retraction_speeds description"
  3436. 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."
  3437. msgstr "回抽耗材的速度。 较高的回抽速度效果较好,但回抽速度过高可能导致耗材磨损。"
  3438. msgctxt "switch_extruder_retraction_speed label"
  3439. msgid "Nozzle Switch Retract Speed"
  3440. msgstr "喷嘴切换回抽速度"
  3441. msgctxt "switch_extruder_retraction_speed description"
  3442. msgid "The speed at which the filament is retracted during a nozzle switch retract."
  3443. msgstr "喷嘴切换回抽期间耗材回抽的速度。"
  3444. msgctxt "switch_extruder_prime_speed label"
  3445. msgid "Nozzle Switch Prime Speed"
  3446. msgstr "喷嘴切换装填速度"
  3447. msgctxt "switch_extruder_prime_speed description"
  3448. msgid "The speed at which the filament is pushed back after a nozzle switch retraction."
  3449. msgstr "喷嘴切换回抽后耗材被推回的速度。"
  3450. msgctxt "switch_extruder_extra_prime_amount label"
  3451. msgid "Nozzle Switch Extra Prime Amount"
  3452. msgstr "喷嘴切换额外装填量"
  3453. msgctxt "switch_extruder_extra_prime_amount description"
  3454. msgid "Extra material to prime after nozzle switching."
  3455. msgstr "喷嘴切换后的额外装填材料。"
  3456. msgctxt "meshfix label"
  3457. msgid "Mesh Fixes"
  3458. msgstr "网格修复"
  3459. msgctxt "meshfix description"
  3460. msgid "Make the meshes more suited for 3D printing."
  3461. msgstr "使网格更适合 3D 打印。"
  3462. msgctxt "meshfix_union_all label"
  3463. msgid "Union Overlapping Volumes"
  3464. msgstr "联合覆盖体积"
  3465. msgctxt "meshfix_union_all description"
  3466. 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."
  3467. msgstr "忽略由网格内的重叠体积产生的内部几何,并将多个部分作为一个打印。 这可能会导致意外的内部孔洞消失。"
  3468. msgctxt "meshfix_union_all_remove_holes label"
  3469. msgid "Remove All Holes"
  3470. msgstr "移除所有孔洞"
  3471. msgctxt "meshfix_union_all_remove_holes description"
  3472. 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."
  3473. msgstr "移除每层的孔洞,仅保留外部形状。 这会忽略任何不可见的内部几何。 但是,也会忽略可从上方或下方看到的层孔洞。"
  3474. msgctxt "meshfix_extensive_stitching label"
  3475. msgid "Extensive Stitching"
  3476. msgstr "广泛缝合"
  3477. msgctxt "meshfix_extensive_stitching description"
  3478. 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."
  3479. msgstr "广泛缝合尝试通过接触多边形来闭合孔洞,以此缝合网格中的开孔。 此选项可能会产生大量的处理时间。"
  3480. msgctxt "meshfix_keep_open_polygons label"
  3481. msgid "Keep Disconnected Faces"
  3482. msgstr "保留断开连接的面"
  3483. msgctxt "meshfix_keep_open_polygons description"
  3484. 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."
  3485. msgstr "一般情况下,Cura 会尝试缝合网格中的小孔,并移除层中有大孔的部分。启用此选项将保留那些无法缝合的部分。当其他所有方法都无法产生正确的 G-code 时,最后才应考虑该选项。"
  3486. msgctxt "multiple_mesh_overlap label"
  3487. msgid "Merged Meshes Overlap"
  3488. msgstr "合并网格重叠"
  3489. msgctxt "multiple_mesh_overlap description"
  3490. msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better."
  3491. msgstr "让彼此接触的网格略微重叠。 这会让它们更好地粘合在一起。"
  3492. msgctxt "carve_multiple_volumes label"
  3493. msgid "Remove Mesh Intersection"
  3494. msgstr "移除网格交叉"
  3495. msgctxt "carve_multiple_volumes description"
  3496. msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other."
  3497. msgstr "移除多个网格互相重叠的区域。 如果合并的双材料模型彼此重叠,此选项可能适用。"
  3498. msgctxt "alternate_carve_order label"
  3499. msgid "Alternate Mesh Removal"
  3500. msgstr "交替网格移除"
  3501. msgctxt "alternate_carve_order description"
  3502. 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."
  3503. msgstr "切换为与每个层相交的网格相交体积,以便重叠的网格交织在一起。 关闭此设置将使其中一个网格获得重叠中的所有体积,同时将其从其他网格中移除。"
  3504. msgctxt "remove_empty_first_layers label"
  3505. msgid "Remove Empty First Layers"
  3506. msgstr "移除空白第一层"
  3507. msgctxt "remove_empty_first_layers description"
  3508. 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."
  3509. msgstr "移除第一个打印层下方的空白层(如果存在)。如果“切片公差”设置被设为“独占”或“中间”,禁用此设置可能导致空白第一层。"
  3510. msgctxt "meshfix_maximum_resolution label"
  3511. msgid "Maximum Resolution"
  3512. msgstr "最大分辨率"
  3513. msgctxt "meshfix_maximum_resolution description"
  3514. 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."
  3515. msgstr "走线部分在切片后的最小尺寸。如果提高此值,网格的分辨率将降低。这可让打印机保持处理 g-code 所需的速度,并将通过移除无法处理的网格细节提高切片速度。"
  3516. msgctxt "meshfix_maximum_travel_resolution label"
  3517. msgid "Maximum Travel Resolution"
  3518. msgstr "空走的最大分辨率"
  3519. msgctxt "meshfix_maximum_travel_resolution description"
  3520. 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."
  3521. msgstr "切片后的旅行线路段的最小尺寸。如果你增加了这个,旅行的移动就会变得不那么平滑了。这可能使打印机能够跟上它处理g代码的速度,但是它可能导致模型的避免变得不那么准确。"
  3522. msgctxt "meshfix_maximum_deviation label"
  3523. msgid "Maximum Deviation"
  3524. msgstr "最大偏移量"
  3525. msgctxt "meshfix_maximum_deviation description"
  3526. 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."
  3527. msgstr "降低“最大分辨率”设置的分辨率时允许的最大偏移量。如果增加该值,打印作业的准确性将降低,但 g-code 将减小。“最大偏移量”是“最大分辨率”的限制,因此如果两者冲突,则“最大偏移量”将始终保持有效。"
  3528. msgctxt "meshfix_maximum_extrusion_area_deviation label"
  3529. msgid "Maximum Extrusion Area Deviation"
  3530. msgstr "最大挤出面积偏移量"
  3531. msgctxt "meshfix_maximum_extrusion_area_deviation description"
  3532. 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."
  3533. msgstr "从直线中移除中间点时允许的最大挤出面积偏移量。在长直线中,中间点可以用作宽度变化点。因此,如果移除该点,这会使得线条具有均匀的宽度,进而导致失去(或增加)一点挤出面积。如果增加此值,您可能会注意到平行直壁之间的挤出不足(或过多),因为将允许移除更多的中间宽度变化点。打印作业的准确性将降低,但 g-code 将减小。"
  3534. msgctxt "meshfix_fluid_motion_enabled label"
  3535. msgid "Enable Fluid Motion"
  3536. msgstr "启用流体运动"
  3537. msgctxt "meshfix_fluid_motion_enabled description"
  3538. msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions."
  3539. msgstr "当启用时,对具有平滑运动规划器的打印机进行刀具路径校正。对偏离一般刀具轨迹方向的小运动进行平滑,改善流体运动。"
  3540. msgctxt "meshfix_fluid_motion_shift_distance label"
  3541. msgid "Fluid Motion Shift Distance"
  3542. msgstr "流体运动移动距离"
  3543. msgctxt "meshfix_fluid_motion_shift_distance description"
  3544. msgid "Distance points are shifted to smooth the path"
  3545. msgstr "移动距离点,使路径平滑"
  3546. msgctxt "meshfix_fluid_motion_small_distance label"
  3547. msgid "Fluid Motion Small Distance"
  3548. msgstr "流体运动小距离"
  3549. msgctxt "meshfix_fluid_motion_small_distance description"
  3550. msgid "Distance points are shifted to smooth the path"
  3551. msgstr "移动距离点,使路径平滑"
  3552. msgctxt "meshfix_fluid_motion_angle label"
  3553. msgid "Fluid Motion Angle"
  3554. msgstr "流体运动角"
  3555. msgctxt "meshfix_fluid_motion_angle description"
  3556. msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed."
  3557. msgstr "如果刀具路径段偏离一般运动的角度大于这个角度,使路径平滑。"
  3558. msgctxt "blackmagic label"
  3559. msgid "Special Modes"
  3560. msgstr "特殊模式"
  3561. msgctxt "blackmagic description"
  3562. msgid "Non-traditional ways to print your models."
  3563. msgstr "打印模型的非传统方式。"
  3564. msgctxt "print_sequence label"
  3565. msgid "Print Sequence"
  3566. msgstr "打印序列"
  3567. msgctxt "print_sequence description"
  3568. 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."
  3569. msgstr "是要一次一层地打印所有模型,还是要等待打印完一个模型后再继续打印下一个。如果 a) 仅启用了一个挤出器,并且 b) 分离所有模型的方式使得整个打印头可在这些模型间移动,并且所有模型都低于喷嘴与 X/Y 轴之间的距离,则可使用排队打印模式。"
  3570. msgctxt "print_sequence option all_at_once"
  3571. msgid "All at Once"
  3572. msgstr "同时打印"
  3573. msgctxt "print_sequence option one_at_a_time"
  3574. msgid "One at a Time"
  3575. msgstr "排队打印"
  3576. msgctxt "user_defined_print_order_enabled label"
  3577. msgid "Set Print Sequence Manually"
  3578. msgstr "手动设置打印顺序"
  3579. msgctxt "user_defined_print_order_enabled description"
  3580. msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first."
  3581. msgstr "允许您对对象列表进行排序以手动设置打印顺序。列表中的第一个对象将首先打印。"
  3582. msgctxt "infill_mesh label"
  3583. msgid "Infill Mesh"
  3584. msgstr "填充网格"
  3585. msgctxt "infill_mesh description"
  3586. 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."
  3587. msgstr "使用此网格修改与其重叠的其他网格的填充物。 利用此网格的区域替换其他网格的填充区域。 建议仅为此网格打印一个壁,而不打印顶部/底部皮肤。"
  3588. msgctxt "infill_mesh_order label"
  3589. msgid "Mesh Processing Rank"
  3590. msgstr "网格处理等级"
  3591. msgctxt "infill_mesh_order description"
  3592. 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."
  3593. msgstr "在考虑多个重叠的填充网格时确定此网格的优先级。其中有多个填充网格重叠的区域将采用等级最高的网格的设置。具有较高等级的填充网格将修改具有较低等级的填充网格和普通网格的填充。"
  3594. msgctxt "cutting_mesh label"
  3595. msgid "Cutting Mesh"
  3596. msgstr "切割网格"
  3597. msgctxt "cutting_mesh description"
  3598. 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."
  3599. msgstr "将此网格的体积限制在其他网格内。 您可以使用它来制作采用不同的设置以及完全不同的挤出机的网格打印的特定区域。"
  3600. msgctxt "mold_enabled label"
  3601. msgid "Mold"
  3602. msgstr "模具"
  3603. msgctxt "mold_enabled description"
  3604. msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate."
  3605. msgstr "将模型作为模具打印,可进行铸造,以便获取与打印平台上的模型类似的模型。"
  3606. msgctxt "mold_width label"
  3607. msgid "Minimal Mold Width"
  3608. msgstr "最小模具宽度"
  3609. msgctxt "mold_width description"
  3610. msgid "The minimal distance between the outside of the mold and the outside of the model."
  3611. msgstr "模具外侧与模型外侧之间的最短距离。"
  3612. msgctxt "mold_roof_height label"
  3613. msgid "Mold Roof Height"
  3614. msgstr "模具顶板高度"
  3615. msgctxt "mold_roof_height description"
  3616. msgid "The height above horizontal parts in your model which to print mold."
  3617. msgstr "用于打印模具的模型水平部分上方的高度。"
  3618. msgctxt "mold_angle label"
  3619. msgid "Mold Angle"
  3620. msgstr "模具角度"
  3621. msgctxt "mold_angle description"
  3622. 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."
  3623. msgstr "为模具创建的外壁的悬垂角度。 0° 将使模具的外壳垂直,而 90° 将使模型的外部遵循模型的轮廓。"
  3624. msgctxt "support_mesh label"
  3625. msgid "Support Mesh"
  3626. msgstr "支撑网格"
  3627. msgctxt "support_mesh description"
  3628. msgid "Use this mesh to specify support areas. This can be used to generate support structure."
  3629. msgstr "使用此网格指定支撑区域。 可用于生成支撑结构。"
  3630. msgctxt "anti_overhang_mesh label"
  3631. msgid "Anti Overhang Mesh"
  3632. msgstr "防悬网格"
  3633. msgctxt "anti_overhang_mesh description"
  3634. 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."
  3635. msgstr "使用此网格指定模型的任何部分不应被检测为悬垂的区域。 可用于移除不需要的支撑结构。"
  3636. msgctxt "magic_mesh_surface_mode label"
  3637. msgid "Surface Mode"
  3638. msgstr "表面模式"
  3639. msgctxt "magic_mesh_surface_mode description"
  3640. 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."
  3641. msgstr "将模型作为仅表面、一个空间或多个具有松散表面的空间处理。 正常打印模式仅打印封闭的空间。 “表面”打印跟踪网格表面的单个壁,没有填充物,也没有顶部/底部皮肤。 \"两者都\"将封闭空间正常打印,并将任何剩余多边形作为表面打印。"
  3642. msgctxt "magic_mesh_surface_mode option normal"
  3643. msgid "Normal"
  3644. msgstr "正常"
  3645. msgctxt "magic_mesh_surface_mode option surface"
  3646. msgid "Surface"
  3647. msgstr "表面"
  3648. msgctxt "magic_mesh_surface_mode option both"
  3649. msgid "Both"
  3650. msgstr "两者都"
  3651. msgctxt "magic_spiralize label"
  3652. msgid "Spiralize Outer Contour"
  3653. msgstr "螺旋打印外轮廓"
  3654. msgctxt "magic_spiralize description"
  3655. 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."
  3656. msgstr "螺旋打印实现外部边缘的平滑 Z 移动。 这会在整个打印上建立一个稳定的 Z 增量。 该功能会将一个实心模型转变为具有实体底部的单壁打印。 只有在当每一层仅包含一个部分时才应启用此功能。"
  3657. msgctxt "smooth_spiralized_contours label"
  3658. msgid "Smooth Spiralized Contours"
  3659. msgstr "平滑螺旋轮廓"
  3660. msgctxt "smooth_spiralized_contours description"
  3661. 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."
  3662. msgstr "平滑螺旋轮廓以减少 Z 缝的可见性(Z 缝于打印品上几乎不可见,但在层视图中仍然可见)。注意:平滑操作将模糊精细的表面细节。"
  3663. msgctxt "relative_extrusion label"
  3664. msgid "Relative Extrusion"
  3665. msgstr "相对挤出"
  3666. msgctxt "relative_extrusion description"
  3667. 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."
  3668. msgstr "使用相对挤出而不是绝对挤出。使用相对 E 步阶,以便对 G-code 进行更轻松的后期处理。但是,并非所有打印机均支持此功能,而且与绝对 E 步阶相比,此功能在沉积材料量上会产生非常轻微的偏差。不论是否启用此设置,挤出模式将始终在设置为绝对挤出后才输出任何 G-code 脚本。"
  3669. msgctxt "experimental label"
  3670. msgid "Experimental"
  3671. msgstr "实验性"
  3672. msgctxt "experimental description"
  3673. msgid "Features that haven't completely been fleshed out yet."
  3674. msgstr "尚未完全充实的功能。"
  3675. msgctxt "slicing_tolerance label"
  3676. msgid "Slicing Tolerance"
  3677. msgstr "切片公差"
  3678. msgctxt "slicing_tolerance description"
  3679. 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."
  3680. msgstr "切片层的垂直公差。一般通过穿过每层厚度的中间截取横截面而产生该层的轮廓(中间)。此外,每层均可有一些区域,这些区域落入体积内部并遍布该层的整个厚度(排除),或层具有一些区域,这些区域落入该层内的任意位置(包含)。“包含”保留最多的细节,“排除”有利于最佳贴合,而“中间”保持最接近原始表面。"
  3681. msgctxt "slicing_tolerance option middle"
  3682. msgid "Middle"
  3683. msgstr "Middle"
  3684. msgctxt "slicing_tolerance option exclusive"
  3685. msgid "Exclusive"
  3686. msgstr "不包含"
  3687. msgctxt "slicing_tolerance option inclusive"
  3688. msgid "Inclusive"
  3689. msgstr "包含"
  3690. msgctxt "infill_enable_travel_optimization label"
  3691. msgid "Infill Travel Optimization"
  3692. msgstr "填充物空驶优化"
  3693. msgctxt "infill_enable_travel_optimization description"
  3694. 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."
  3695. msgstr "启用后,可优化打印填充走线的顺序,缩短空驶距离。空驶时间的缩短很大程度上取决于被切割的模型、填充图案、密度等。请注意,对于具有许多小填充区域的一些模型,分割模型的时间可能会大幅增加。"
  3696. msgctxt "material_flow_temp_graph label"
  3697. msgid "Flow Temperature Graph"
  3698. msgstr "流量温度图"
  3699. msgctxt "material_flow_temp_graph description"
  3700. msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)."
  3701. msgstr "数据连接材料流量(mm3/s)到温度(摄氏度)。"
  3702. msgctxt "minimum_polygon_circumference label"
  3703. msgid "Minimum Polygon Circumference"
  3704. msgstr "最小多边形周长"
  3705. msgctxt "minimum_polygon_circumference description"
  3706. 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."
  3707. msgstr "切片层中周长小于此数值的多边形将被滤除。以切片时间为代价,较低的值可实现较高分辨率的网格。它主要用于高分辨率 SLA 打印机和包含大量细节的极小 3D 模型。"
  3708. msgctxt "interlocking_enable label"
  3709. msgid "Generate Interlocking Structure"
  3710. msgstr "生成互锁结构"
  3711. msgctxt "interlocking_enable description"
  3712. msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials."
  3713. msgstr "在模型接触的位置,生成互锁梁结构。这改善了模型之间的粘合力,特别是用不同材料打印的模型。"
  3714. msgctxt "interlocking_beam_width label"
  3715. msgid "Interlocking Beam Width"
  3716. msgstr "互锁梁宽度"
  3717. msgctxt "interlocking_beam_width description"
  3718. msgid "The width of the interlocking structure beams."
  3719. msgstr "互锁结构梁的宽度。"
  3720. msgctxt "interlocking_orientation label"
  3721. msgid "Interlocking Structure Orientation"
  3722. msgstr "互锁结构方向"
  3723. msgctxt "interlocking_orientation description"
  3724. msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects."
  3725. msgstr "互锁结构梁的高度,以层数衡量。层数越少越坚固,但更容易出现缺陷。"
  3726. msgctxt "interlocking_beam_layer_count label"
  3727. msgid "Interlocking Beam Layer Count"
  3728. msgstr "互锁梁层数"
  3729. msgctxt "interlocking_beam_layer_count description"
  3730. msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects."
  3731. msgstr "互锁结构梁的高度,以层数衡量。层数越少越坚固,但更容易出现缺陷。"
  3732. msgctxt "interlocking_depth label"
  3733. msgid "Interlocking Depth"
  3734. msgstr "互锁深度"
  3735. msgctxt "interlocking_depth description"
  3736. msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion."
  3737. msgstr "从模型之间的边界到生成互锁结构的距离,以单元格衡量。单元格太少会导致粘附不良。"
  3738. msgctxt "interlocking_boundary_avoidance label"
  3739. msgid "Interlocking Boundary Avoidance"
  3740. msgstr "互锁边界回避"
  3741. msgctxt "interlocking_boundary_avoidance description"
  3742. msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells."
  3743. msgstr "与不会生成互锁结构的模型外部的距离,以单元格衡量。"
  3744. msgctxt "support_skip_some_zags label"
  3745. msgid "Break Up Support In Chunks"
  3746. msgstr "将支撑结构分拆成块状"
  3747. msgctxt "support_skip_some_zags description"
  3748. 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."
  3749. msgstr "跳过部分支撑线连接,让支撑结构更容易脱离。 此设置适用于锯齿形支撑结构填充图案。"
  3750. msgctxt "support_skip_zag_per_mm label"
  3751. msgid "Support Chunk Size"
  3752. msgstr "支撑块大小"
  3753. msgctxt "support_skip_zag_per_mm description"
  3754. msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away."
  3755. msgstr "每隔 N 毫米在支撑线之间略去一个连接,让支撑结构更容易脱离。"
  3756. msgctxt "support_zag_skip_count label"
  3757. msgid "Support Chunk Line Count"
  3758. msgstr "支撑块走线数"
  3759. msgctxt "support_zag_skip_count description"
  3760. msgid "Skip one in every N connection lines to make the support structure easier to break away."
  3761. msgstr "每隔 N 个连接线跳过一个连接,让支撑结构更容易脱离。"
  3762. msgctxt "draft_shield_enabled label"
  3763. msgid "Enable Draft Shield"
  3764. msgstr "启用防风罩"
  3765. msgctxt "draft_shield_enabled description"
  3766. 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."
  3767. msgstr "这将在模型周围创建一个壁,该壁会吸住(热)空气并遮住外部气流。 对于容易卷曲的材料尤为有用。"
  3768. msgctxt "draft_shield_dist label"
  3769. msgid "Draft Shield X/Y Distance"
  3770. msgstr "防风罩 X/Y 距离"
  3771. msgctxt "draft_shield_dist description"
  3772. msgid "Distance of the draft shield from the print, in the X/Y directions."
  3773. msgstr "防风罩在 X/Y 方向与打印品的距离。"
  3774. msgctxt "draft_shield_height_limitation label"
  3775. msgid "Draft Shield Limitation"
  3776. msgstr "防风罩限制"
  3777. msgctxt "draft_shield_height_limitation description"
  3778. 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."
  3779. msgstr "设置防风罩的高度。 选择在模型的完整高度或有限高度处打印防风罩。"
  3780. msgctxt "draft_shield_height_limitation option full"
  3781. msgid "Full"
  3782. msgstr "完整"
  3783. msgctxt "draft_shield_height_limitation option limited"
  3784. msgid "Limited"
  3785. msgstr "有限"
  3786. msgctxt "draft_shield_height label"
  3787. msgid "Draft Shield Height"
  3788. msgstr "防风罩高度"
  3789. msgctxt "draft_shield_height description"
  3790. msgid "Height limitation of the draft shield. Above this height no draft shield will be printed."
  3791. msgstr "防风罩的高度限制。 在此高度以上不会打印任何防风罩。"
  3792. msgctxt "conical_overhang_enabled label"
  3793. msgid "Make Overhang Printable"
  3794. msgstr "使悬垂可打印"
  3795. msgctxt "conical_overhang_enabled description"
  3796. 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."
  3797. msgstr "更改打印模型的几何,以最大程度减少需要的支撑。 陡峭的悬垂物将变浅。 悬垂区域将下降变得更垂直。"
  3798. msgctxt "conical_overhang_angle label"
  3799. msgid "Maximum Model Angle"
  3800. msgstr "最大模型角度"
  3801. msgctxt "conical_overhang_angle description"
  3802. 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."
  3803. msgstr "在悬垂变得可打印后悬垂的最大角度。 当该值为 0° 时,所有悬垂将被与打印平台连接的模型的一个部分替代,如果为 90° 时,不会以任何方式更改模型。"
  3804. msgctxt "conical_overhang_hole_size label"
  3805. msgid "Maximum Overhang Hole Area"
  3806. msgstr "最大悬垂孔面积"
  3807. msgctxt "conical_overhang_hole_size description"
  3808. 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."
  3809. msgstr "在“使悬垂对象可打印”将其删除之前,模型底部的孔的最大面积。小于此面积的孔将会保留。值 0 mm² 将填充模型底部的所有孔。"
  3810. msgctxt "coasting_enable label"
  3811. msgid "Enable Coasting"
  3812. msgstr "启用滑行"
  3813. msgctxt "coasting_enable description"
  3814. 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."
  3815. msgstr "滑行会用一个空驶路径替代挤出路径的最后部分。 渗出材料用于打印挤出路径的最后部分,以便减少串接。"
  3816. msgctxt "coasting_volume label"
  3817. msgid "Coasting Volume"
  3818. msgstr "滑行体积"
  3819. msgctxt "coasting_volume description"
  3820. msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed."
  3821. msgstr "该体积如不进行滑行则会渗出。 该值一般应接近喷嘴立方直径。"
  3822. msgctxt "coasting_min_volume label"
  3823. msgid "Minimum Volume Before Coasting"
  3824. msgstr "滑行前最小体积"
  3825. msgctxt "coasting_min_volume description"
  3826. 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."
  3827. msgstr "挤出路径在可以进行滑行前应拥有的最小体积。 对于较小的挤出路径,鲍登管内累积的压力较少,因此滑行空间采用线性扩展。 该值应始终大于滑行空间。"
  3828. msgctxt "coasting_speed label"
  3829. msgid "Coasting Speed"
  3830. msgstr "滑行速度"
  3831. msgctxt "coasting_speed description"
  3832. 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."
  3833. msgstr "滑行期间的移动速度,相对于挤出路径的速度。 建议采用略低于 100% 的值,因为在滑行移动期间鲍登管中的压力会下降。"
  3834. msgctxt "cross_infill_pocket_size label"
  3835. msgid "Cross 3D Pocket Size"
  3836. msgstr "交叉 3D 气槽大小"
  3837. msgctxt "cross_infill_pocket_size description"
  3838. msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself."
  3839. msgstr "交叉 3D 图案的四向交叉处的气槽大小,高度为图案与自身接触的位置。"
  3840. msgctxt "cross_infill_density_image label"
  3841. msgid "Cross Infill Density Image"
  3842. msgstr "交叉加密图像密度"
  3843. msgctxt "cross_infill_density_image description"
  3844. 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."
  3845. msgstr "在打印的填充中,亮度值决定了相应位置的最小密度的图像的文件位置。"
  3846. msgctxt "cross_support_density_image label"
  3847. msgid "Cross Fill Density Image for Support"
  3848. msgstr "交叉填充密度图象"
  3849. msgctxt "cross_support_density_image description"
  3850. msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support."
  3851. msgstr "一个图像的文件位置,在这个图像中,亮度值决定了在支持中相应位置的最小密度。"
  3852. msgctxt "support_conical_enabled label"
  3853. msgid "Enable Conical Support"
  3854. msgstr "启用锥形支撑"
  3855. msgctxt "support_conical_enabled description"
  3856. msgid "Make support areas smaller at the bottom than at the overhang."
  3857. msgstr "使底部的支撑区域小于悬垂处的支撑区域。"
  3858. msgctxt "support_conical_angle label"
  3859. msgid "Conical Support Angle"
  3860. msgstr "锥形支撑角度"
  3861. msgctxt "support_conical_angle description"
  3862. 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."
  3863. msgstr "锥形支撑的倾斜角度。 角度 0 度时为垂直,角度 90 度时为水平。 较小的角度会让支撑更为牢固,但需要更多材料。 负角会让支撑底座比顶部宽。"
  3864. msgctxt "support_conical_min_width label"
  3865. msgid "Conical Support Minimum Width"
  3866. msgstr "锥形支撑最小宽度"
  3867. msgctxt "support_conical_min_width description"
  3868. msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures."
  3869. msgstr "锥形支撑区域底部被缩小至的最小宽度。 宽度较小可导致不稳定的支撑结构。"
  3870. msgctxt "magic_fuzzy_skin_enabled label"
  3871. msgid "Fuzzy Skin"
  3872. msgstr "模糊皮肤"
  3873. msgctxt "magic_fuzzy_skin_enabled description"
  3874. msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look."
  3875. msgstr "在打印外墙时随机抖动,使表面具有粗糙和模糊的外观。"
  3876. msgctxt "magic_fuzzy_skin_outside_only label"
  3877. msgid "Fuzzy Skin Outside Only"
  3878. msgstr "仅外部模糊皮肤"
  3879. msgctxt "magic_fuzzy_skin_outside_only description"
  3880. msgid "Jitter only the parts' outlines and not the parts' holes."
  3881. msgstr "仅抖动部件的轮廓,而不抖动部件的孔。"
  3882. msgctxt "magic_fuzzy_skin_thickness label"
  3883. msgid "Fuzzy Skin Thickness"
  3884. msgstr "模糊皮肤厚度"
  3885. msgctxt "magic_fuzzy_skin_thickness description"
  3886. msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered."
  3887. msgstr "在其中进行抖动的宽度。 建议让此值低于外壁宽度,因为内壁不会更改。"
  3888. msgctxt "magic_fuzzy_skin_point_density label"
  3889. msgid "Fuzzy Skin Density"
  3890. msgstr "模糊皮肤密度"
  3891. msgctxt "magic_fuzzy_skin_point_density description"
  3892. 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."
  3893. msgstr "在一层中的每个多边形上引入的点的平均密度。 注意,多边形的原始点被舍弃,因此低密度导致分辨率降低。"
  3894. msgctxt "magic_fuzzy_skin_point_dist label"
  3895. msgid "Fuzzy Skin Point Distance"
  3896. msgstr "模糊皮肤点距离"
  3897. msgctxt "magic_fuzzy_skin_point_dist description"
  3898. 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."
  3899. msgstr "在每个走线部分引入的随机点之间的平均距离。 注意,多边形的原始点被舍弃,因此高平滑度导致分辨率降低。 该值必须大于模糊皮肤厚度的一半。"
  3900. msgctxt "flow_rate_max_extrusion_offset label"
  3901. msgid "Flow Rate Compensation Max Extrusion Offset"
  3902. msgstr "流量补偿最大挤出偏移值"
  3903. msgctxt "flow_rate_max_extrusion_offset description"
  3904. msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate."
  3905. msgstr "移动线材以补偿流量变化的最大距离(以毫米为单位)。"
  3906. msgctxt "flow_rate_extrusion_offset_factor label"
  3907. msgid "Flow Rate Compensation Factor"
  3908. msgstr "流量补偿因子"
  3909. msgctxt "flow_rate_extrusion_offset_factor description"
  3910. 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."
  3911. msgstr "为补偿流量变化而将线材移动的距离,在挤出一秒钟的情况下占线材移动距离的百分比。"
  3912. msgctxt "adaptive_layer_height_enabled label"
  3913. msgid "Use Adaptive Layers"
  3914. msgstr "使用自适应图层"
  3915. msgctxt "adaptive_layer_height_enabled description"
  3916. msgid "Adaptive layers computes the layer heights depending on the shape of the model."
  3917. msgstr "自适应图层根据模型形状计算图层高度。"
  3918. msgctxt "adaptive_layer_height_variation label"
  3919. msgid "Adaptive Layers Maximum Variation"
  3920. msgstr "自适应图层最大变化"
  3921. msgctxt "adaptive_layer_height_variation description"
  3922. msgid "The maximum allowed height different from the base layer height."
  3923. msgstr "最大允许高度与基层高度不同。"
  3924. msgctxt "adaptive_layer_height_variation_step label"
  3925. msgid "Adaptive Layers Variation Step Size"
  3926. msgstr "自适应图层变化步长"
  3927. msgctxt "adaptive_layer_height_variation_step description"
  3928. msgid "The difference in height of the next layer height compared to the previous one."
  3929. msgstr "下一层与前一层的高度差。"
  3930. msgctxt "adaptive_layer_height_threshold label"
  3931. msgid "Adaptive Layers Topography Size"
  3932. msgstr "自适应图层地形尺寸"
  3933. msgctxt "adaptive_layer_height_threshold description"
  3934. 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."
  3935. msgstr "两个相邻图层之间的目标水平距离。减小此设置的值会使要使用的图层变薄,从而使图层的边缘距离更近。"
  3936. msgctxt "wall_overhang_angle label"
  3937. msgid "Overhanging Wall Angle"
  3938. msgstr "悬垂壁角度"
  3939. msgctxt "wall_overhang_angle description"
  3940. 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."
  3941. msgstr "悬垂超过此角度的壁将使用悬垂壁设置打印。该值为 90 时,不会将任何壁视为悬垂。受到支撑支持的悬垂也不会被视为悬垂。"
  3942. msgctxt "wall_overhang_speed_factor label"
  3943. msgid "Overhanging Wall Speed"
  3944. msgstr "悬垂壁速度"
  3945. msgctxt "wall_overhang_speed_factor description"
  3946. msgid "Overhanging walls will be printed at this percentage of their normal print speed."
  3947. msgstr "悬垂壁将以其正常打印速度的此百分比打印。"
  3948. msgctxt "bridge_settings_enabled label"
  3949. msgid "Enable Bridge Settings"
  3950. msgstr "启用连桥设置"
  3951. msgctxt "bridge_settings_enabled description"
  3952. msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed."
  3953. msgstr "在打印连桥时,检测连桥并修改打印速度、流量和风扇设置。"
  3954. msgctxt "bridge_wall_min_length label"
  3955. msgid "Minimum Bridge Wall Length"
  3956. msgstr "最小桥壁长度"
  3957. msgctxt "bridge_wall_min_length description"
  3958. 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."
  3959. msgstr "将使用正常壁设置打印短于此长度且没有支撑的壁。将使用桥壁设置打印长于此长度且没有支撑的壁。"
  3960. msgctxt "bridge_skin_support_threshold label"
  3961. msgid "Bridge Skin Support Threshold"
  3962. msgstr "连桥表面支撑阈值"
  3963. msgctxt "bridge_skin_support_threshold description"
  3964. 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."
  3965. msgstr "如果受支撑的表面区域小于整个区域的这一百分比,则使用连桥设置打印。否则,使用正常表面设置打印。"
  3966. msgctxt "bridge_sparse_infill_max_density label"
  3967. msgid "Bridge Sparse Infill Max Density"
  3968. msgstr "连桥稀疏填充物最大密度"
  3969. msgctxt "bridge_sparse_infill_max_density description"
  3970. 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."
  3971. msgstr "填充物的最大密度被视为稀疏。稀疏填充物表面被视为不受支持,因此可被视为连桥表面。"
  3972. msgctxt "bridge_wall_coast label"
  3973. msgid "Bridge Wall Coasting"
  3974. msgstr "桥壁滑行"
  3975. msgctxt "bridge_wall_coast description"
  3976. 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."
  3977. msgstr "此参数用于控制挤出机在开始打印桥壁前应该滑行的距离。在开始打印连桥之前滑行,可以降低喷嘴中的压力,并保证打印出平滑的连桥。"
  3978. msgctxt "bridge_wall_speed label"
  3979. msgid "Bridge Wall Speed"
  3980. msgstr "桥壁速度"
  3981. msgctxt "bridge_wall_speed description"
  3982. msgid "The speed at which the bridge walls are printed."
  3983. msgstr "打印桥壁的速度。"
  3984. msgctxt "bridge_wall_material_flow label"
  3985. msgid "Bridge Wall Flow"
  3986. msgstr "桥壁流量"
  3987. msgctxt "bridge_wall_material_flow description"
  3988. msgid "When printing bridge walls, the amount of material extruded is multiplied by this value."
  3989. msgstr "打印桥壁时,将挤出的材料量乘以此值。"
  3990. msgctxt "bridge_skin_speed label"
  3991. msgid "Bridge Skin Speed"
  3992. msgstr "连桥表面速度"
  3993. msgctxt "bridge_skin_speed description"
  3994. msgid "The speed at which bridge skin regions are printed."
  3995. msgstr "打印连桥表面区域的速度。"
  3996. msgctxt "bridge_skin_material_flow label"
  3997. msgid "Bridge Skin Flow"
  3998. msgstr "连桥表面流量"
  3999. msgctxt "bridge_skin_material_flow description"
  4000. msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
  4001. msgstr "打印连桥表面区域时,将挤出的材料量乘以此值。"
  4002. msgctxt "bridge_skin_density label"
  4003. msgid "Bridge Skin Density"
  4004. msgstr "连桥表面密度"
  4005. msgctxt "bridge_skin_density description"
  4006. msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  4007. msgstr "连桥表面层的密度。此值若小于 100 则会增大表面线条的缝隙。"
  4008. msgctxt "bridge_fan_speed label"
  4009. msgid "Bridge Fan Speed"
  4010. msgstr "连桥风扇速度"
  4011. msgctxt "bridge_fan_speed description"
  4012. msgid "Percentage fan speed to use when printing bridge walls and skin."
  4013. msgstr "打印连桥表面和桥壁时使用的风扇百分比速度。"
  4014. msgctxt "bridge_enable_more_layers label"
  4015. msgid "Bridge Has Multiple Layers"
  4016. msgstr "连桥有多层"
  4017. msgctxt "bridge_enable_more_layers description"
  4018. 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."
  4019. msgstr "如果启用此选项,则使用以下设置打印净空区域上方第二层和第三层。否则,将使用正常设置打印这些层。"
  4020. msgctxt "bridge_skin_speed_2 label"
  4021. msgid "Bridge Second Skin Speed"
  4022. msgstr "连桥第二层表面速度"
  4023. msgctxt "bridge_skin_speed_2 description"
  4024. msgid "Print speed to use when printing the second bridge skin layer."
  4025. msgstr "打印桥梁第二层表面时使用的打印速度。"
  4026. msgctxt "bridge_skin_material_flow_2 label"
  4027. msgid "Bridge Second Skin Flow"
  4028. msgstr "连桥第二层表面流量"
  4029. msgctxt "bridge_skin_material_flow_2 description"
  4030. msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value."
  4031. msgstr "打印连桥第二层表面时,将挤出的材料量乘以此值。"
  4032. msgctxt "bridge_skin_density_2 label"
  4033. msgid "Bridge Second Skin Density"
  4034. msgstr "连桥第二层表面密度"
  4035. msgctxt "bridge_skin_density_2 description"
  4036. msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  4037. msgstr "连桥第二层表面的密度。此值若小于 100 则会增大表面线条的缝隙。"
  4038. msgctxt "bridge_fan_speed_2 label"
  4039. msgid "Bridge Second Skin Fan Speed"
  4040. msgstr "连桥第二层表面风扇速度"
  4041. msgctxt "bridge_fan_speed_2 description"
  4042. msgid "Percentage fan speed to use when printing the second bridge skin layer."
  4043. msgstr "打印桥梁第二层表面时使用的风扇百分比速度。"
  4044. msgctxt "bridge_skin_speed_3 label"
  4045. msgid "Bridge Third Skin Speed"
  4046. msgstr "连桥第三层表面速度"
  4047. msgctxt "bridge_skin_speed_3 description"
  4048. msgid "Print speed to use when printing the third bridge skin layer."
  4049. msgstr "打印桥梁第三层表面时使用的打印速度。"
  4050. msgctxt "bridge_skin_material_flow_3 label"
  4051. msgid "Bridge Third Skin Flow"
  4052. msgstr "连桥第三层表面流量"
  4053. msgctxt "bridge_skin_material_flow_3 description"
  4054. msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value."
  4055. msgstr "打印连桥第三层表面时,将挤出的材料量乘以此值。"
  4056. msgctxt "bridge_skin_density_3 label"
  4057. msgid "Bridge Third Skin Density"
  4058. msgstr "连桥第三层表面密度"
  4059. msgctxt "bridge_skin_density_3 description"
  4060. msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  4061. msgstr "连桥第三层表面的密度。此值若小于 100 则会增大表面线条的缝隙。"
  4062. msgctxt "bridge_fan_speed_3 label"
  4063. msgid "Bridge Third Skin Fan Speed"
  4064. msgstr "连桥第三层表面风扇速度"
  4065. msgctxt "bridge_fan_speed_3 description"
  4066. msgid "Percentage fan speed to use when printing the third bridge skin layer."
  4067. msgstr "打印桥梁第三层表面时使用的风扇百分比速度。"
  4068. msgctxt "clean_between_layers label"
  4069. msgid "Wipe Nozzle Between Layers"
  4070. msgstr "图层切换后擦拭喷嘴"
  4071. msgctxt "clean_between_layers description"
  4072. 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."
  4073. msgstr "是否包括图层切换后擦拭喷嘴的 G-Code(每层最多 1 个)。启用此设置可能会影响图层变化时的回抽。请使用“擦拭回抽”设置来控制擦拭脚本将在其中工作的图层回抽。"
  4074. msgctxt "max_extrusion_before_wipe label"
  4075. msgid "Material Volume Between Wipes"
  4076. msgstr "擦拭之间的材料量"
  4077. msgctxt "max_extrusion_before_wipe description"
  4078. 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."
  4079. msgstr "在开始下一轮喷嘴擦拭之前可挤出的最大材料量。如果此值小于层中所需的材料量,则该设置在此层中无效,即每层仅限擦拭一次。"
  4080. msgctxt "wipe_retraction_enable label"
  4081. msgid "Wipe Retraction Enable"
  4082. msgstr "启用擦拭回抽"
  4083. msgctxt "wipe_retraction_enable description"
  4084. msgid "Retract the filament when the nozzle is moving over a non-printed area."
  4085. msgstr "当喷嘴移动到非打印区域上方时回抽耗材。"
  4086. msgctxt "wipe_retraction_amount label"
  4087. msgid "Wipe Retraction Distance"
  4088. msgstr "擦拭回抽距离"
  4089. msgctxt "wipe_retraction_amount description"
  4090. msgid "Amount to retract the filament so it does not ooze during the wipe sequence."
  4091. msgstr "耗材回抽量,可避免耗材在擦拭期间渗出。"
  4092. msgctxt "wipe_retraction_extra_prime_amount label"
  4093. msgid "Wipe Retraction Extra Prime Amount"
  4094. msgstr "擦拭回抽额外装填量"
  4095. msgctxt "wipe_retraction_extra_prime_amount description"
  4096. msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here."
  4097. msgstr "有些材料可能会在擦拭空驶过程中渗出,可以在这里进行补偿。"
  4098. msgctxt "wipe_retraction_speed label"
  4099. msgid "Wipe Retraction Speed"
  4100. msgstr "擦拭回抽速度"
  4101. msgctxt "wipe_retraction_speed description"
  4102. msgid "The speed at which the filament is retracted and primed during a wipe retraction move."
  4103. msgstr "擦拭回抽移动期间耗材回抽和装填的速度。"
  4104. msgctxt "wipe_retraction_retract_speed label"
  4105. msgid "Wipe Retraction Retract Speed"
  4106. msgstr "擦拭回抽期间的回抽速度"
  4107. msgctxt "wipe_retraction_retract_speed description"
  4108. msgid "The speed at which the filament is retracted during a wipe retraction move."
  4109. msgstr "擦拭回抽移动期间耗材回抽的速度。"
  4110. msgctxt "wipe_retraction_prime_speed label"
  4111. msgid "Wipe Retraction Prime Speed"
  4112. msgstr "擦拭回抽装填速度"
  4113. msgctxt "wipe_retraction_prime_speed description"
  4114. msgid "The speed at which the filament is primed during a wipe retraction move."
  4115. msgstr "擦拭回抽移动期间耗材装填的速度。"
  4116. msgctxt "wipe_pause label"
  4117. msgid "Wipe Pause"
  4118. msgstr "擦拭暂停"
  4119. msgctxt "wipe_pause description"
  4120. msgid "Pause after the unretract."
  4121. msgstr "在未回抽后暂停。"
  4122. msgctxt "wipe_hop_enable label"
  4123. msgid "Wipe Z Hop"
  4124. msgstr "擦拭 Z 抬升"
  4125. msgctxt "wipe_hop_enable description"
  4126. 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."
  4127. msgstr "在擦拭时,构建板会降低以在喷嘴与打印件之间形成间隙。这样可防止喷嘴在行程中撞击打印件,降低从构建板上撞掉打印件的可能性。"
  4128. msgctxt "wipe_hop_amount label"
  4129. msgid "Wipe Z Hop Height"
  4130. msgstr "擦拭 Z 抬升高度"
  4131. msgctxt "wipe_hop_amount description"
  4132. msgid "The height difference when performing a Z Hop."
  4133. msgstr "执行 Z 抬升的高度差。"
  4134. msgctxt "wipe_hop_speed label"
  4135. msgid "Wipe Hop Speed"
  4136. msgstr "擦拭抬升速度"
  4137. msgctxt "wipe_hop_speed description"
  4138. msgid "Speed to move the z-axis during the hop."
  4139. msgstr "抬升期间移动 Z 轴的速度。"
  4140. msgctxt "wipe_brush_pos_x label"
  4141. msgid "Wipe Brush X Position"
  4142. msgstr "擦拭刷 X 轴坐标"
  4143. msgctxt "wipe_brush_pos_x description"
  4144. msgid "X location where wipe script will start."
  4145. msgstr "擦拭开始处的 X 轴坐标。"
  4146. msgctxt "wipe_repeat_count label"
  4147. msgid "Wipe Repeat Count"
  4148. msgstr "擦拭重复计数"
  4149. msgctxt "wipe_repeat_count description"
  4150. msgid "Number of times to move the nozzle across the brush."
  4151. msgstr "在擦拭刷上移动喷嘴的次数。"
  4152. msgctxt "wipe_move_distance label"
  4153. msgid "Wipe Move Distance"
  4154. msgstr "擦拭移动距离"
  4155. msgctxt "wipe_move_distance description"
  4156. msgid "The distance to move the head back and forth across the brush."
  4157. msgstr "在擦拭刷上来回移动喷嘴头的距离。"
  4158. msgctxt "small_hole_max_size label"
  4159. msgid "Small Hole Max Size"
  4160. msgstr "小孔最大尺寸"
  4161. msgctxt "small_hole_max_size description"
  4162. msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
  4163. msgstr "将使用微小特征速度打印直径小于此尺寸的孔和零件轮廓。"
  4164. msgctxt "small_feature_max_length label"
  4165. msgid "Small Feature Max Length"
  4166. msgstr "微小特征最大长度"
  4167. msgctxt "small_feature_max_length description"
  4168. msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed."
  4169. msgstr "将使用微小特征速度打印小于此长度的特征轮廓。"
  4170. msgctxt "small_feature_speed_factor label"
  4171. msgid "Small Feature Speed"
  4172. msgstr "微小特征速度"
  4173. msgctxt "small_feature_speed_factor description"
  4174. msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
  4175. msgstr "微小特征将按正常打印速度的百分比进行打印。缓慢打印有助于粘合和提高准确性。"
  4176. msgctxt "small_feature_speed_factor_0 label"
  4177. msgid "Small Feature Initial Layer Speed"
  4178. msgstr "微小特征初始层速度"
  4179. msgctxt "small_feature_speed_factor_0 description"
  4180. 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."
  4181. msgstr "第一层的微小特征将按正常打印速度的百分比进行打印。缓慢打印有助于粘合和提高准确性。"
  4182. msgctxt "material_alternate_walls label"
  4183. msgid "Alternate Wall Directions"
  4184. msgstr "交替壁方向"
  4185. msgctxt "material_alternate_walls description"
  4186. msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing."
  4187. msgstr "在每一层或嵌入上交替壁方向。这适用于会产生应力的材料,例如在金属打印中。"
  4188. msgctxt "group_outer_walls label"
  4189. msgid "Group Outer Walls"
  4190. msgstr "外墙编组"
  4191. msgctxt "group_outer_walls description"
  4192. msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped."
  4193. msgstr "同一层不同组件的外墙依次进行打印。当启用此功能时,由于每次只打印一种类型的外壁,挤出量变化的数量受到限制;当禁用时,由于同一组件内的外壁被分组,组件之间的行进次数会减少。"
  4194. msgctxt "ppr label"
  4195. msgid "Print Process Reporting"
  4196. msgstr "打印过程报告"
  4197. msgctxt "ppr description"
  4198. msgid "Reporting events that go out of set thresholds"
  4199. msgstr "报告超出设定阈值的事件"
  4200. msgctxt "ppr_enable label"
  4201. msgid "Enable Print Process Reporting"
  4202. msgstr "启用打印过程报告"
  4203. msgctxt "ppr_enable description"
  4204. msgid "Enable print process reporting for setting threshold values for possible fault detection."
  4205. msgstr "启用打印过程报告以设置可能的故障检测的阈值。"
  4206. msgctxt "flow_warn_limit label"
  4207. msgid "Flow Warning"
  4208. msgstr "挤出量警告"
  4209. msgctxt "flow_warn_limit description"
  4210. msgid "Limit on the flow warning for detection."
  4211. msgstr "检测的挤出量警告限制。"
  4212. msgctxt "flow_anomaly_limit label"
  4213. msgid "Flow Limit"
  4214. msgstr "挤出量限制"
  4215. msgctxt "flow_anomaly_limit description"
  4216. msgid "Limit on flow anomaly for detection."
  4217. msgstr "检测的挤出量异常限制。"
  4218. msgctxt "print_temp_warn_limit label"
  4219. msgid "Print temperature Warning"
  4220. msgstr "打印温度警告"
  4221. msgctxt "print_temp_warn_limit description"
  4222. msgid "Limit on Print temperature warning for detection."
  4223. msgstr "检测的打印温度警告限制。"
  4224. msgctxt "print_temp_anomaly_limit label"
  4225. msgid "Print temperature Limit"
  4226. msgstr "打印温度限制"
  4227. msgctxt "print_temp_anomaly_limit description"
  4228. msgid "Limit on Print Temperature anomaly for detection."
  4229. msgstr "检测的打印温度异常限制。"
  4230. msgctxt "bv_temp_warn_limit label"
  4231. msgid "Build Volume temperature Warning"
  4232. msgstr "打印体积温度警告"
  4233. msgctxt "bv_temp_warn_limit description"
  4234. msgid "Limit on Build Volume Temperature warning for detection."
  4235. msgstr "检测的打印体积温度警告限制。"
  4236. msgctxt "bv_temp_anomaly_limit label"
  4237. msgid "Build Volume temperature Limit"
  4238. msgstr "打印体积温度限制"
  4239. msgctxt "bv_temp_anomaly_limit description"
  4240. msgid "Limit on Build Volume temperature Anomaly for detection."
  4241. msgstr "检测的打印体积温度异常限制。"
  4242. msgctxt "command_line_settings label"
  4243. msgid "Command Line Settings"
  4244. msgstr "命令行设置"
  4245. msgctxt "command_line_settings description"
  4246. msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend."
  4247. msgstr "未从 Cura 前端调用 CuraEngine 时使用的设置。"
  4248. msgctxt "center_object label"
  4249. msgid "Center Object"
  4250. msgstr "中心点"
  4251. msgctxt "center_object description"
  4252. 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."
  4253. msgstr "是否将模型放置在打印平台中心 (0,0),而不是使用模型在其中保存的坐标系统。"
  4254. msgctxt "mesh_position_x label"
  4255. msgid "Mesh Position X"
  4256. msgstr "网格X位置"
  4257. msgctxt "mesh_position_x description"
  4258. msgid "Offset applied to the object in the x direction."
  4259. msgstr "应用在模型 x 方向上的偏移量。"
  4260. msgctxt "mesh_position_y label"
  4261. msgid "Mesh Position Y"
  4262. msgstr "网格Y位置"
  4263. msgctxt "mesh_position_y description"
  4264. msgid "Offset applied to the object in the y direction."
  4265. msgstr "应用在模型 y 方向上的偏移量。"
  4266. msgctxt "mesh_position_z label"
  4267. msgid "Mesh Position Z"
  4268. msgstr "网格Z位置"
  4269. msgctxt "mesh_position_z description"
  4270. msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'."
  4271. msgstr "应用在模型 z 方向上的偏移量。 利用此选项,您可以执行过去被称为“模型沉降”的操作。"
  4272. msgctxt "mesh_rotation_matrix label"
  4273. msgid "Mesh Rotation Matrix"
  4274. msgstr "网格旋转矩阵"
  4275. msgctxt "mesh_rotation_matrix description"
  4276. msgid "Transformation matrix to be applied to the model when loading it from file."
  4277. msgstr "在将模型从文件中载入时应用在模型上的转换矩阵。"
  4278. msgctxt "support_type description"
  4279. 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."
  4280. msgstr "调整支撑结构的放置。 放置可以设置为支撑打印平台或全部支撑。 当设置为全部支撑时,支撑结构也将在模型上打印。"