fdmprinter.def.json.po 250 KB

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