cura.po 155 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597
  1. msgid ""
  2. msgstr ""
  3. "Project-Id-Version: PACKAGE VERSION\n"
  4. "Report-Msgid-Bugs-To: \n"
  5. "POT-Creation-Date: 2024-03-13 09:02+0100\n"
  6. "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
  7. "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  8. "Language-Team: LANGUAGE <LL@li.org>\n"
  9. "Language: zh_CN\n"
  10. "MIME-Version: 1.0\n"
  11. "Content-Type: text/plain; charset=UTF-8\n"
  12. "Content-Transfer-Encoding: 8bit\n"
  13. "Plural-Forms: nplurals=1; plural=0;\n"
  14. msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm."
  15. msgid "%(width).1f x %(depth).1f x %(height).1f mm"
  16. msgstr "%(width).1f x %(depth).1f x %(height).1f mm"
  17. msgctxt "@action:label"
  18. msgid "%1 & material"
  19. msgstr "%1 & 材料"
  20. msgctxt "@action:label"
  21. msgid "%1 out of %2"
  22. msgstr "%1 / %2"
  23. msgctxt "@action:label"
  24. msgid "%1 override"
  25. msgid_plural "%1 overrides"
  26. msgstr[0] "%1 重写"
  27. msgctxt "@action:label"
  28. msgid "%1, %2 override"
  29. msgid_plural "%1, %2 overrides"
  30. msgstr[0] "%1, %2 重写"
  31. msgctxt "@label g for grams"
  32. msgid "%1g"
  33. msgstr "%1g"
  34. msgctxt "@label m for meter"
  35. msgid "%1m"
  36. msgstr "%1m"
  37. msgctxt "@action:inmenu menubar:printer"
  38. msgid "&Add Printer..."
  39. msgstr "新增打印机(&A)..."
  40. msgctxt "@action:inmenu menubar:view"
  41. msgid "&Camera position"
  42. msgstr "摄像头位置(&C)"
  43. msgctxt "@action:inmenu menubar:profile"
  44. msgid "&Create profile from current settings/overrides..."
  45. msgstr "从当前设置 / 重写值创建配置文件(&C)..."
  46. msgctxt "@action:inmenu menubar:profile"
  47. msgid "&Discard current changes"
  48. msgstr "舍弃当前更改(&D)"
  49. msgctxt "@title:menu menubar:toplevel"
  50. msgid "&Edit"
  51. msgstr "编辑(&E)"
  52. msgctxt "@title:menu menubar:file"
  53. msgid "&Export..."
  54. msgstr "导出(&E)..."
  55. msgctxt "@title:menu menubar:toplevel"
  56. msgid "&File"
  57. msgstr "文件(&F)"
  58. msgctxt "@action:inmenu menubar:edit"
  59. msgid "&Group Models"
  60. msgstr "绑定模型(&G)"
  61. msgctxt "@title:menu menubar:toplevel"
  62. msgid "&Help"
  63. msgstr "帮助(&H)"
  64. msgctxt "@title:menu"
  65. msgid "&Material"
  66. msgstr "材料(&M)"
  67. msgctxt "@action:inmenu menubar:edit"
  68. msgid "&Merge Models"
  69. msgstr "合并模型(&M)"
  70. msgctxt "@action:inmenu"
  71. msgid "&Multiply Model..."
  72. msgstr "复制模型(&M)…"
  73. msgctxt "@action:inmenu menubar:file"
  74. msgid "&New Project..."
  75. msgstr "新建项目(&N)..."
  76. msgctxt "@action:inmenu menubar:file"
  77. msgid "&Open File(s)..."
  78. msgstr "打开文件(&O)..."
  79. msgctxt "@title:menu menubar:settings"
  80. msgid "&Printer"
  81. msgstr "打印机(&P)"
  82. msgctxt "@action:inmenu menubar:file"
  83. msgid "&Quit"
  84. msgstr "退出(&Q)"
  85. msgctxt "@action:inmenu menubar:edit"
  86. msgid "&Redo"
  87. msgstr "重做(&R)"
  88. msgctxt "@title:menu menubar:file"
  89. msgid "&Save Project..."
  90. msgstr "保存项目(&S)..."
  91. msgctxt "@title:menu menubar:file Don't translate 'Universal Cura Project'"
  92. msgid "&Save Universal Cura Project..."
  93. msgstr "& 保存 Universal Cura Project……"
  94. msgctxt "@title:menu menubar:toplevel"
  95. msgid "&Settings"
  96. msgstr "设置(&S)"
  97. msgctxt "@action:inmenu menubar:edit"
  98. msgid "&Undo"
  99. msgstr "撤销(&U)"
  100. msgctxt "@action:inmenu menubar:profile"
  101. msgid "&Update profile with current settings/overrides"
  102. msgstr "使用当前设置 / 重写值更新配置文件(&U)"
  103. msgctxt "@title:menu menubar:toplevel"
  104. msgid "&View"
  105. msgstr "视图(&V)"
  106. msgctxt "@label"
  107. msgid "*You will need to restart the application for these changes to have effect."
  108. msgstr "*需重新启动该应用程序,这些更改才能生效。"
  109. msgctxt "@text"
  110. msgid "- Add material profiles and plug-ins from the Marketplace\n- Back-up and sync your material profiles and plug-ins\n- Share ideas and get help from 48,000+ users in the UltiMaker community"
  111. msgstr "- 从 Marketplace 添加材料配置文件和插件"
  112. "- 备份和同步材料配置文件和插件"
  113. "- 在 Ultimaker 社区分享观点并获取 48,000 多名用户的帮助"
  114. msgctxt "@heading"
  115. msgid "-- incomplete --"
  116. msgstr "-- 不完整 --"
  117. msgctxt "@action:label"
  118. msgid "1mm Transmittance (%)"
  119. msgstr "1 毫米透射率 (%)"
  120. msgctxt "@info:title"
  121. msgid "3D Model Assistant"
  122. msgstr "三维模型的助理"
  123. msgctxt "@action:inmenu menubar:view"
  124. msgid "3D View"
  125. msgstr "3D 视图"
  126. msgctxt "@info:tooltip"
  127. msgid "3D View"
  128. msgstr "3D 视图"
  129. msgctxt "@item:inlistbox"
  130. msgid "3MF File"
  131. msgstr "3MF 文件"
  132. msgctxt "@error:zip"
  133. msgid "3MF Writer plug-in is corrupt."
  134. msgstr "3MF 编写器插件已损坏。"
  135. msgctxt "@item:inlistbox"
  136. msgid "3MF file"
  137. msgstr "3MF 文件"
  138. msgctxt "@info, %1 is the name of the custom profile"
  139. msgid "<b>%1</b> custom profile is active and you overwrote some settings."
  140. msgstr "<b>%1</b> 自定义配置文件处于活动状态,并且已覆盖某些设置。"
  141. msgctxt "@info, %1 is the name of the custom profile"
  142. msgid "<b>%1</b> custom profile is overriding some settings."
  143. msgstr "<b>%1</b> 自定义配置文件正在覆盖某些设置。"
  144. msgctxt "@label %i will be replaced with a profile name"
  145. msgid "<b>Only user changed settings will be saved in the custom profile.</b><br/>For materials that support it, the new custom profile will inherit properties from <b>%1</b>."
  146. msgstr "<b>只有用户更改的设置才会保存在自定义配置文件中。</b><br/>对于支持材料,新的自定义配置文件将从 <b>%1</b> 继承属性。"
  147. msgctxt "@label OpenGL renderer"
  148. msgid "<li>OpenGL Renderer: {renderer}</li>"
  149. msgstr "<li>OpenGL 渲染器: {renderer}</li>"
  150. msgctxt "@label OpenGL vendor"
  151. msgid "<li>OpenGL Vendor: {vendor}</li>"
  152. msgstr "<li>OpenGL 供应商: {vendor}</li>"
  153. msgctxt "@label OpenGL version"
  154. msgid "<li>OpenGL Version: {version}</li>"
  155. msgstr "<li>OpenGL 版本: {version}</li>"
  156. msgctxt "@label crash message"
  157. msgid "<p><b>A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem</p></b>\n <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n "
  158. msgstr ""
  159. "<p><b>Cura 发生了严重错误。请将这份错误报告发送给我们以便修复问题</p></b>\n"
  160. " <p>请使用“发送报告”按钮将错误报告自动发送到我们的服务器</p>\n"
  161. " "
  162. msgctxt "@label crash message"
  163. msgid "<p><b>Oops, UltiMaker Cura has encountered something that doesn't seem right.</p></b>\n <p>We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.</p>\n <p>Backups can be found in the configuration folder.</p>\n <p>Please send us this Crash Report to fix the problem.</p>\n "
  164. msgstr "<p><b>糟糕,Ultimaker Cura 似乎遇到了问题。</p></b>"
  165. " <p>在启动时发生了不可修复的错误。这可能是因某些配置文件出错导致的。建议您备份并重置配置。</p>"
  166. " <p>您可在配置文件夹中找到备份。</p>"
  167. " <p>请向我们发送此错误报告,以便解决问题。</p>"
  168. " "
  169. msgctxt "@info:status"
  170. msgid "<p>One or more 3D models may not print optimally due to the model size and material configuration:</p>\n<p>{model_names}</p>\n<p>Find out how to ensure the best possible print quality and reliability.</p>\n<p><a href=\"https://ultimaker.com/3D-model-assistant\">View print quality guide</a></p>"
  171. msgstr "<p>由于模型的大小和材质的配置,一个或多个3D模型可能无法最优地打印:</p>"
  172. "<p>{model_names}</p>"
  173. "<p>找到确保最好的打印质量与可靠性的方法.</p>\n"
  174. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">查看打印质量指南</a></p>"
  175. msgctxt "@label"
  176. msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?"
  177. msgstr "正在进行 USB 打印,关闭 Cura 将停止此打印。您确定吗?"
  178. msgctxt "info:status"
  179. msgid "A cloud connection is not available for a printer"
  180. msgid_plural "A cloud connection is not available for some printers"
  181. msgstr[0] "某些打印机无云连接可用"
  182. msgctxt "@text"
  183. msgid "A highly dense and strong part but at a slower print time. Great for functional parts."
  184. msgstr "高密度和高强度的部件,但打印时间较慢。非常适合用于功能部件。"
  185. msgctxt "@message"
  186. msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed."
  187. msgstr "正在进行打印在上一次打印完成之前,Cura 无法通过 USB 启动另一次打印。"
  188. msgctxt "@item:inlistbox"
  189. msgid "AMF File"
  190. msgstr "AMF 文件"
  191. msgctxt "@label"
  192. msgid "Abort"
  193. msgstr "中止"
  194. msgctxt "@label"
  195. msgid "Abort Print"
  196. msgstr "中止打印"
  197. msgctxt "@window:title"
  198. msgid "Abort print"
  199. msgstr "中止打印"
  200. msgctxt "@label:status"
  201. msgid "Aborted"
  202. msgstr "已中止"
  203. msgctxt "@label"
  204. msgid "Aborting..."
  205. msgstr "正在中止..."
  206. msgctxt "@label:status"
  207. msgid "Aborting..."
  208. msgstr "正在中止..."
  209. msgctxt "@title:window The argument is the application name."
  210. msgid "About %1"
  211. msgstr "关于 %1"
  212. msgctxt "@action:inmenu menubar:help"
  213. msgid "About..."
  214. msgstr "关于..."
  215. msgctxt "@button"
  216. msgid "Accept"
  217. msgstr "接受"
  218. msgctxt "@label"
  219. msgid "Account synced"
  220. msgstr "帐户已同步"
  221. msgctxt "@label:status"
  222. msgid "Action required"
  223. msgstr "需要采取行动"
  224. msgctxt "@action:button"
  225. msgid "Activate"
  226. msgstr "激活"
  227. msgctxt "@label"
  228. msgid "Active print"
  229. msgstr "正在打印"
  230. msgctxt "@action:button"
  231. msgid "Add"
  232. msgstr "添加"
  233. msgctxt "@button"
  234. msgid "Add"
  235. msgstr "添加"
  236. msgctxt "@action:button"
  237. msgid "Add New"
  238. msgstr "新增"
  239. msgctxt "@title:window"
  240. msgid "Add Printer"
  241. msgstr "新增打印机"
  242. msgctxt "@button"
  243. msgid "Add UltiMaker printer via Digital Factory"
  244. msgstr "通过 Digital Factory 添加 UltiMaker 打印机"
  245. msgctxt "@label"
  246. msgid "Add a Cloud printer"
  247. msgstr "添加云打印机"
  248. msgctxt "@label"
  249. msgid "Add a networked printer"
  250. msgstr "添加已联网打印机"
  251. msgctxt "@label"
  252. msgid "Add a non-networked printer"
  253. msgstr "添加未联网打印机"
  254. msgctxt "@action"
  255. msgid "Add a script"
  256. msgstr "添加一个脚本"
  257. msgctxt "@option:check"
  258. msgid "Add icon to system tray *"
  259. msgstr "在系统托盘中添加图标 *"
  260. msgctxt "@button"
  261. msgid "Add local printer"
  262. msgstr "添加本地打印机"
  263. msgctxt "@option:check"
  264. msgid "Add machine prefix to job name"
  265. msgstr "将机器前缀添加到作业名称中"
  266. msgctxt "@text"
  267. msgid "Add material settings and plugins from the Marketplace"
  268. msgstr "从 Marketplace 添加材料设置和插件"
  269. msgctxt "@action:inmenu Marketplace is a brand name of UltiMaker's, so don't translate."
  270. msgid "Add more materials from Marketplace"
  271. msgstr "从市场添加更多材料"
  272. msgctxt "@button"
  273. msgid "Add printer"
  274. msgstr "添加打印机"
  275. msgctxt "@label"
  276. msgid "Add printer"
  277. msgstr "添加打印机"
  278. msgctxt "@label"
  279. msgid "Add printer by IP"
  280. msgstr "按 IP 添加打印机"
  281. msgctxt "@label"
  282. msgid "Add printer by IP address"
  283. msgstr "按 IP 地址添加打印机"
  284. msgctxt "@button"
  285. msgid "Add printer manually"
  286. msgstr "手动添加打印机"
  287. msgctxt "info:status Filled in with printer name and printer model."
  288. msgid "Adding printer {name} ({model}) from your account"
  289. msgstr "正在从您的帐户添加打印机 {name} ({model})"
  290. msgctxt "@label"
  291. msgid "Address"
  292. msgstr "地址"
  293. msgctxt "@label"
  294. msgid "Adhesion"
  295. msgstr "附着"
  296. msgctxt "@label"
  297. msgid "Adhesion Information"
  298. msgstr "粘附信息"
  299. msgctxt "@label"
  300. msgid "Adjusts the density of infill of the print."
  301. msgstr "调整打印填充的密度。"
  302. msgctxt "support_type description"
  303. 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."
  304. msgstr "调整支撑结构的放置。 放置可以设置为支撑打印平台或全部支撑。 当设置为全部支撑时,支撑结构也将在模型上打印。"
  305. msgctxt "@label Header for list of settings."
  306. msgid "Affected By"
  307. msgstr "受影响项目"
  308. msgctxt "@label Header for list of settings."
  309. msgid "Affects"
  310. msgstr "影响"
  311. msgctxt "@button"
  312. msgid "Agree"
  313. msgstr "同意"
  314. msgctxt "@item:inlistbox"
  315. msgid "All Files (*)"
  316. msgstr "所有文件 (*)"
  317. msgctxt "@item:inlistbox"
  318. msgid "All Supported Types ({0})"
  319. msgstr "所有支持的文件类型 ({0})"
  320. msgctxt "@text:window"
  321. msgid "Allow sending anonymous data"
  322. msgstr "允许发送匿名数据"
  323. msgctxt "@option:discardOrKeep"
  324. msgid "Always ask me this"
  325. msgstr "总是询问"
  326. msgctxt "@option:openProject"
  327. msgid "Always ask me this"
  328. msgstr "总是询问"
  329. msgctxt "@option:discardOrKeep"
  330. msgid "Always discard changed settings"
  331. msgstr "总是舍失更改的设置"
  332. msgctxt "@option:openProject"
  333. msgid "Always import models"
  334. msgstr "始终导入模型"
  335. msgctxt "@option:openProject"
  336. msgid "Always open as a project"
  337. msgstr "始终作为一个项目打开"
  338. msgctxt "@option:discardOrKeep"
  339. msgid "Always transfer changed settings to new profile"
  340. msgstr "总是将更改的设置传输至新配置文件"
  341. msgctxt "@info:tooltip"
  342. msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?"
  343. msgstr "当模型以米而不是毫米为单位时,模型可能会在打印平台中显得非常小。在此情况下是否进行放大?"
  344. msgctxt "@label"
  345. msgid "Annealing"
  346. msgstr "退火"
  347. msgctxt "@label"
  348. msgid "Anonymous"
  349. msgstr "匿名"
  350. msgctxt "@option:radio"
  351. msgid "Anonymous crash reports"
  352. msgstr "匿名崩溃报告"
  353. msgctxt "@label Description for application component"
  354. msgid "Application framework"
  355. msgstr "应用框架"
  356. msgctxt "@title:column"
  357. msgid "Applies on"
  358. msgstr "适用于"
  359. msgctxt "@label"
  360. msgid "Apply Extruder offsets to GCode"
  361. msgstr "将挤出器偏移量应用于 GCode"
  362. msgctxt "@info:title"
  363. msgid "Are you ready for cloud printing?"
  364. msgstr "是否进行云打印?"
  365. msgctxt "@label %1 is the name of a print job."
  366. msgid "Are you sure you want to abort %1?"
  367. msgstr "您确定要中止 %1 吗?"
  368. msgctxt "@label"
  369. msgid "Are you sure you want to abort the print?"
  370. msgstr "您确定要中止打印吗?"
  371. msgctxt "@label %1 is the name of a print job."
  372. msgid "Are you sure you want to delete %1?"
  373. msgstr "您确定要删除 %1 吗?"
  374. msgctxt "@dialog:info"
  375. msgid "Are you sure you want to delete this backup? This cannot be undone."
  376. msgstr "您确定要删除此备份吗?此操作无法撤销。"
  377. msgctxt "@label %1 is the application name"
  378. msgid "Are you sure you want to exit %1?"
  379. msgstr "您确定要退出 %1 吗?"
  380. msgctxt "@label %1 is the name of a print job."
  381. msgid "Are you sure you want to move %1 to the top of the queue?"
  382. msgstr "您确定要将 %1 移至队列顶部吗?"
  383. msgctxt "@message {printer_name} is replaced with the name of the printer"
  384. msgid "Are you sure you want to remove {printer_name} temporarily?"
  385. msgstr "是否确实要暂时删除 {printer_name}?"
  386. msgctxt "@info:question"
  387. msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings."
  388. msgstr "你确定要开始一个新项目吗?这将清除打印平台及任何未保存的设置。"
  389. msgctxt "@label (%1 is object name)"
  390. msgid "Are you sure you wish to remove %1? This cannot be undone!"
  391. msgstr "您确认要删除 %1?该操作无法恢复!"
  392. msgctxt "@label {0} is the name of a printer that's about to be deleted."
  393. msgid "Are you sure you wish to remove {0}? This cannot be undone!"
  394. msgstr "是否确实要删除 {0}?此操作无法撤消!"
  395. msgctxt "@action:inmenu menubar:edit"
  396. msgid "Arrange All Models"
  397. msgstr "编位所有的模型"
  398. msgctxt "@action:inmenu menubar:edit"
  399. msgid "Arrange All Models in a grid"
  400. msgstr "排列网格中的所有模型"
  401. msgctxt "@action:inmenu menubar:edit"
  402. msgid "Arrange Selection"
  403. msgstr "排列选择"
  404. msgctxt "@label:button"
  405. msgid "Ask a question"
  406. msgstr "提问"
  407. msgctxt "@checkbox:description"
  408. msgid "Auto Backup"
  409. msgstr "自动备份"
  410. msgctxt "@checkbox:description"
  411. msgid "Automatically create a backup each day that Cura is started."
  412. msgstr "在 Cura 每天启动时自动创建备份。"
  413. msgctxt "@option:check"
  414. msgid "Automatically drop models to the build plate"
  415. msgstr "自动下降模型到打印平台"
  416. msgctxt "@action:button"
  417. msgid "Automatically upgrade Firmware"
  418. msgstr "自动升级固件"
  419. msgctxt "@label"
  420. msgid "Available networked printers"
  421. msgstr "可用的网络打印机"
  422. msgctxt "@item:inlistbox"
  423. msgid "BMP Image"
  424. msgstr "BMP 图像"
  425. msgctxt "@button"
  426. msgid "Back"
  427. msgstr "返回"
  428. msgctxt "@button:tooltip"
  429. msgid "Back"
  430. msgstr "返回"
  431. msgctxt "@info:title"
  432. msgid "Backup"
  433. msgstr "备份"
  434. msgctxt "@button"
  435. msgid "Backup Now"
  436. msgstr "立即备份"
  437. msgctxt "@action:button"
  438. msgid "Backup and Reset Configuration"
  439. msgstr "备份并重置配置"
  440. msgctxt "@text"
  441. msgid "Backup and sync your material settings and plugins"
  442. msgstr "备份和同步材料设置和插件"
  443. msgctxt "@description"
  444. msgid "Backup and synchronize your Cura settings."
  445. msgstr "备份并同步您的 Cura 设置。"
  446. msgctxt "@info:title"
  447. msgid "Backups"
  448. msgstr "备份"
  449. msgctxt "@label"
  450. msgid "Balanced"
  451. msgstr "平衡"
  452. msgctxt "@action:label"
  453. msgid "Base (mm)"
  454. msgstr "底板 (mm)"
  455. msgctxt "@action:inmenu menubar:view"
  456. msgid "Bottom View"
  457. msgstr "仰视图"
  458. msgctxt "@label"
  459. msgid "Brand"
  460. msgstr "品牌"
  461. msgctxt "@title"
  462. msgid "Build Plate Leveling"
  463. msgstr "打印平台调平"
  464. msgctxt "@info:title"
  465. msgid "Build Volume"
  466. msgstr "成形空间体积"
  467. msgctxt "@label"
  468. msgid "Build plate"
  469. msgstr "打印平台"
  470. msgctxt "@label"
  471. msgid "Build plate shape"
  472. msgstr "打印平台形状"
  473. msgctxt "@label"
  474. msgid "Bundled Materials"
  475. msgstr "已捆绑的材料"
  476. msgctxt "@label"
  477. msgid "Bundled Plugins"
  478. msgstr "已捆绑的插件"
  479. msgctxt "@button"
  480. msgid "Buy spool"
  481. msgstr "购买线轴"
  482. msgctxt "@label Is followed by the name of an author"
  483. msgid "By"
  484. msgstr "由"
  485. msgctxt "@label Description for application dependency"
  486. msgid "C/C++ Binding library"
  487. msgstr "C / C++ 绑定库"
  488. msgctxt "@item:inlistbox"
  489. msgid "COLLADA Digital Asset Exchange"
  490. msgstr "COLLADA 数据资源交换"
  491. msgctxt "@info:status"
  492. msgid "Calculated"
  493. msgstr "已计算"
  494. msgctxt "@window:text"
  495. msgid "Camera navigation:"
  496. msgstr "导航相机:"
  497. msgctxt "@window:text"
  498. msgid "Camera rendering:"
  499. msgstr "摄像头渲染:"
  500. msgctxt "@action:inmenu menubar:view"
  501. msgid "Camera view"
  502. msgstr "摄像头视图"
  503. msgctxt "@info:title"
  504. msgid "Can't Find Location"
  505. msgstr "找不到位置"
  506. msgctxt "@info:title"
  507. msgid "Can't Open Project File"
  508. msgstr "无法打开项目文件"
  509. msgctxt "@label"
  510. msgid "Can't connect to your UltiMaker printer?"
  511. msgstr "无法连接到 UltiMaker 打印机?"
  512. msgctxt "@info:status Don't translate the XML tags <filename>!"
  513. msgid "Can't import profile from <filename>{0}</filename> before a printer is added."
  514. msgstr "无法在添加打印机前从 <filename>{0}</filename> 导入配置文件。"
  515. msgctxt "@info:status"
  516. msgid "Can't open any other file if G-code is loading. Skipped importing {0}"
  517. msgstr "如果加载 G-code,则无法打开其他任何文件。{0} 已跳过导入"
  518. msgctxt "@info:error"
  519. msgid "Can't write to UFP file:"
  520. msgstr "无法写入到 UFP 文件:"
  521. msgctxt "@action:button"
  522. msgid "Cancel"
  523. msgstr "取消"
  524. msgctxt "@button"
  525. msgid "Cancel"
  526. msgstr "取消"
  527. msgctxt "@button Cancel pre-heating"
  528. msgid "Cancel"
  529. msgstr "取消"
  530. msgctxt "@option:check"
  531. msgid "Caution message in g-code reader"
  532. msgstr "G-code 读取器中的警告信息"
  533. msgctxt "@action:inmenu"
  534. msgid "Ce&nter Model on Platform"
  535. msgstr "使模型居于平台中央(&N)"
  536. msgctxt "@action:inmenu menubar:edit"
  537. msgid "Center Selected"
  538. msgstr "居中所选项"
  539. msgctxt "@action:button"
  540. msgid "Center camera when item is selected"
  541. msgstr "当项目被选中时,自动对中视角"
  542. msgctxt "@info:tooltip"
  543. msgid "Change active post-processing scripts."
  544. msgstr "更改处于活动状态的后期处理脚本。"
  545. msgctxt "@label"
  546. msgid "Change material %1 from %2 to %3."
  547. msgstr "将材料 %1 从 %2 更改为 %3。"
  548. msgctxt "@label"
  549. msgid "Change print core %1 from %2 to %3."
  550. msgstr "将 Print Core %1 从 %2 更改为 %3。"
  551. msgctxt "@info:title"
  552. msgid "Changes detected from your UltiMaker account"
  553. msgstr "检测到您的 UltiMaker 帐户有更改"
  554. msgctxt "@title"
  555. msgid "Changes from your account"
  556. msgstr "您的帐户有更改"
  557. msgctxt "@label:textbox"
  558. msgid "Check all"
  559. msgstr "全部勾选"
  560. msgctxt "@button"
  561. msgid "Check for account updates"
  562. msgstr "检查是否存在帐户更新"
  563. msgctxt "@option:check"
  564. msgid "Check for updates on start"
  565. msgstr "启动时检查更新"
  566. msgctxt "@label"
  567. msgid "Checking..."
  568. msgstr "正在检查..."
  569. msgctxt "@label"
  570. msgid "Chooses between the techniques available to generate support. \n\n\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n\n\"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."
  571. msgstr "在可用于产生支撑的方法之间进行选择。“普通”支撑在悬垂部分正下方形成一个支撑结构,并直接垂下这些区域。“树形”支撑形成一些分支,它们朝向在这些分支的尖端上支撑模型的悬垂区域,并使这些分支可缠绕在模型周围以尽可能多地从构建板上支撑它。"
  572. msgctxt "@action:inmenu menubar:edit"
  573. msgid "Clear Build Plate"
  574. msgstr "清空打印平台"
  575. msgctxt "@option:check"
  576. msgid "Clear buildplate before loading model into the single instance"
  577. msgstr "在清理构建板后再将模型加载到单个实例中"
  578. msgctxt "@text"
  579. msgid "Click the export material archive button."
  580. msgstr "单击导出材料存档按钮。"
  581. msgctxt "@action:button"
  582. msgid "Close"
  583. msgstr "关闭"
  584. msgctxt "@title:window %1 is the application name"
  585. msgid "Closing %1"
  586. msgstr "正在关闭 %1"
  587. msgctxt "@action:inmenu"
  588. msgid "Collapse All Categories"
  589. msgstr "折叠所有类别"
  590. msgctxt "@label"
  591. msgid "Color"
  592. msgstr "颜色"
  593. msgctxt "@action:label"
  594. msgid "Color Model"
  595. msgstr "颜色模型"
  596. msgctxt "@label"
  597. msgid "Color scheme"
  598. msgstr "颜色方案"
  599. msgctxt "@info"
  600. msgid "Compare and save."
  601. msgstr "比较并保存。"
  602. msgctxt "@label"
  603. msgid "Compatibility Mode"
  604. msgstr "兼容模式"
  605. msgctxt "@label Description for application dependency"
  606. msgid "Compatibility between Python 2 and 3"
  607. msgstr "Python 2 和 3 之间的兼容性"
  608. msgctxt "@title:label"
  609. msgid "Compatible Printers"
  610. msgstr "兼容的打印机"
  611. msgctxt "@label"
  612. msgid "Compatible material diameter"
  613. msgstr "兼容的材料直径"
  614. msgctxt "@header"
  615. msgid "Compatible printers"
  616. msgstr "兼容的打印机"
  617. msgctxt "@header"
  618. msgid "Compatible support materials"
  619. msgstr "兼容的支撑材料"
  620. msgctxt "@header"
  621. msgid "Compatible with Material Station"
  622. msgstr "与 Material Station 兼容"
  623. msgctxt "@item:inlistbox"
  624. msgid "Compressed COLLADA Digital Asset Exchange"
  625. msgstr "压缩 COLLADA 数据资源交换"
  626. msgctxt "@item:inlistbox"
  627. msgid "Compressed G-code File"
  628. msgstr "压缩 G-code 文件"
  629. msgctxt "@title:window"
  630. msgid "Configuration Changes"
  631. msgstr "配置更改"
  632. msgctxt "@error"
  633. msgid "Configuration not supported"
  634. msgstr "配置不受支持"
  635. msgctxt "@header"
  636. msgid "Configurations"
  637. msgstr "配置"
  638. msgctxt "@label"
  639. msgid "Configurations"
  640. msgstr "配置"
  641. msgctxt "@action:inmenu"
  642. msgid "Configure Cura..."
  643. msgstr "配置 Cura..."
  644. msgctxt "@info:tooltip"
  645. msgid "Configure Per Model Settings"
  646. msgstr "设置对每个模型的单独设定"
  647. msgctxt "@action"
  648. msgid "Configure group"
  649. msgstr "配置组"
  650. msgctxt "@action:menu"
  651. msgid "Configure setting visibility..."
  652. msgstr "配置设定可见性..."
  653. msgctxt "@title:window"
  654. msgid "Confirm Diameter Change"
  655. msgstr "确认直径更改"
  656. msgctxt "@title:window"
  657. msgid "Confirm Remove"
  658. msgstr "确认删除"
  659. msgctxt "@action:button"
  660. msgid "Connect"
  661. msgstr "连接"
  662. msgctxt "@button"
  663. msgid "Connect"
  664. msgstr "连接"
  665. msgctxt "@title:window"
  666. msgid "Connect to Networked Printer"
  667. msgstr "连接到网络打印机"
  668. msgctxt "@action"
  669. msgid "Connect via Network"
  670. msgstr "通过网络连接"
  671. msgctxt "@info:status"
  672. msgid "Connected over the network"
  673. msgstr "已通过网络连接"
  674. msgctxt "@label"
  675. msgid "Connected printers"
  676. msgstr "已连接的打印机"
  677. msgctxt "@info:status"
  678. msgid "Connected via USB"
  679. msgstr "通过 USB 连接"
  680. msgctxt "@info:status"
  681. msgid "Connected via cloud"
  682. msgstr "通过云连接"
  683. msgctxt "@tooltip:button"
  684. msgid "Consult the UltiMaker Community."
  685. msgstr "咨询 UltiMaker 社区。"
  686. msgctxt "@title:window"
  687. msgid "Convert Image"
  688. msgstr "转换图像"
  689. msgctxt "@label"
  690. msgid "Cooling Fan Number"
  691. msgstr "冷却风扇数量"
  692. msgctxt "@action:menu"
  693. msgid "Copy all changed values to all extruders"
  694. msgstr "将所有修改值复制到所有挤出机"
  695. msgctxt "@action:inmenu menubar:edit"
  696. msgid "Copy to clipboard"
  697. msgstr "复制到剪贴板"
  698. msgctxt "@action:menu"
  699. msgid "Copy value to all extruders"
  700. msgstr "将值复制到所有挤出机"
  701. msgctxt "@label"
  702. msgid "Cost per Meter"
  703. msgstr "每米成本"
  704. msgctxt "@info"
  705. msgid "Could not access update information."
  706. msgstr "无法获取更新信息。"
  707. msgctxt "@label"
  708. msgid "Could not connect to device."
  709. msgstr "无法连接到设备。"
  710. msgctxt "@info:backup_failed"
  711. msgid "Could not create archive from user data directory: {}"
  712. msgstr "不能从用户数据目录创建存档: {}"
  713. msgctxt "@info:status Don't translate the tag {device}!"
  714. msgid "Could not find a file name when trying to write to {device}."
  715. msgstr "尝试写入到 {device} 时找不到文件名。"
  716. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  717. msgid "Could not import material <filename>%1</filename>: <message>%2</message>"
  718. msgstr "无法导入材料 <filename>%1</filename>: <message>%2</message>"
  719. msgctxt "@info:error"
  720. msgid "Could not interpret the server's response."
  721. msgstr "无法解释服务器的响应。"
  722. msgctxt "@error:load"
  723. msgid "Could not load GCodeWriter plugin. Try to re-enable the plugin."
  724. msgstr "无法加载 GCodeWriter 插件。尝试重新启用插件。"
  725. msgctxt "@info:error"
  726. msgid "Could not reach Marketplace."
  727. msgstr "无法连接到市场。"
  728. msgctxt "@message"
  729. msgid "Could not read response."
  730. msgstr "无法读取响应。"
  731. msgctxt "@message:text"
  732. msgid "Could not save material archive to {}:"
  733. msgstr "未能将材料存档保存到 {}:"
  734. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  735. msgid "Could not save to <filename>{0}</filename>: <message>{1}</message>"
  736. msgstr "无法保存到 <filename>{0}</filename>:<message>{1}</message>"
  737. msgctxt "@info:status"
  738. msgid "Could not save to removable drive {0}: {1}"
  739. msgstr "无法保存到可移动磁盘 {0}:{1}"
  740. msgctxt "@info:text"
  741. msgid "Could not upload the data to the printer."
  742. msgstr "无法将数据上传到打印机。"
  743. msgctxt "@info:plugin_failed"
  744. msgid "Couldn't start EnginePlugin: {self._plugin_id}\nNo permission to execute process."
  745. msgstr "无法启用 EnginePlugin:{self._plugin_id}"
  746. "没有执行进程的权限。"
  747. msgctxt "@info:plugin_failed"
  748. msgid "Couldn't start EnginePlugin: {self._plugin_id}\nOperating system is blocking it (antivirus?)"
  749. msgstr "无法启用 EnginePlugin:{self._plugin_id}"
  750. "操作系统正在阻止它(杀毒软件?)"
  751. msgctxt "@info:plugin_failed"
  752. msgid "Couldn't start EnginePlugin: {self._plugin_id}\nResource is temporarily unavailable"
  753. msgstr "无法启用 EnginePlugin:{self._plugin_id}"
  754. "资源暂时不可用"
  755. msgctxt "@title:window"
  756. msgid "Crash Report"
  757. msgstr "错误报告"
  758. msgctxt "@title:window"
  759. msgid "Create Profile"
  760. msgstr "创建配置文件"
  761. msgctxt "@text"
  762. msgid "Create a free UltiMaker Account"
  763. msgstr "创建免费的 UltiMaker 帐户"
  764. msgctxt "@button"
  765. msgid "Create a free UltiMaker account"
  766. msgstr "创建免费的 UltiMaker 帐户"
  767. msgctxt "@info:tooltip"
  768. msgid "Create a volume in which supports are not printed."
  769. msgstr "创建一个不打印支撑的体积。"
  770. msgctxt "@action:ComboBox Save settings in a new profile"
  771. msgid "Create new"
  772. msgstr "新建"
  773. msgctxt "@action:button"
  774. msgid "Create new"
  775. msgstr "新建"
  776. msgctxt "@button"
  777. msgid "Create new"
  778. msgstr "新建"
  779. msgctxt "@action:tooltip"
  780. msgid "Create new profile from current settings/overrides"
  781. msgstr "使用当前设置/重写值创建新的配置文件"
  782. msgctxt "@tooltip:button"
  783. msgid "Create print projects in Digital Library."
  784. msgstr "在 Digital Library 中创建打印项目。"
  785. msgctxt "@info:backup_status"
  786. msgid "Creating your backup..."
  787. msgstr "正在创建您的备份..."
  788. msgctxt "@item:inlistbox"
  789. msgid "Cura 15.04 profiles"
  790. msgstr "Cura 15.04 配置文件"
  791. msgctxt "@title:window"
  792. msgid "Cura Backups"
  793. msgstr "Cura 备份"
  794. msgctxt "@item:inlistbox"
  795. msgid "Cura Profile"
  796. msgstr "Cura 配置文件"
  797. msgctxt "@item:inlistbox"
  798. msgid "Cura Project 3MF file"
  799. msgstr "Cura 项目 3MF 文件"
  800. msgctxt "@backuplist:label"
  801. msgid "Cura Version"
  802. msgstr "Cura 版本"
  803. msgctxt "@title:window"
  804. msgid "Cura can't start"
  805. msgstr "Cura 无法启动"
  806. msgctxt "@info:status"
  807. msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}."
  808. msgstr "Cura 已检测到材料配置文件尚未安装到组 {0} 中的主机打印机上。"
  809. msgctxt "@info:credit"
  810. msgid "Cura is developed by UltiMaker in cooperation with the community.\nCura proudly uses the following open source projects:"
  811. msgstr "Cura 由 Ultimaker B.V. 与社区合作开发。"
  812. "Cura 使用以下开源项目:"
  813. msgctxt "@label"
  814. msgid "Cura language"
  815. msgstr "Cura 语言"
  816. msgctxt "@label Cura version number"
  817. msgid "Cura version"
  818. msgstr "Cura 版本"
  819. msgctxt "@label"
  820. msgid "Currency:"
  821. msgstr "币种:"
  822. msgctxt "@title:column"
  823. msgid "Current"
  824. msgstr "当前"
  825. msgctxt "@title:column"
  826. msgid "Current changes"
  827. msgstr "当前更改"
  828. msgctxt "@header"
  829. msgid "Custom"
  830. msgstr "自定义"
  831. msgctxt "@label"
  832. msgid "Custom"
  833. msgstr "自定义"
  834. msgctxt "@title:tab"
  835. msgid "Custom"
  836. msgstr "自定义"
  837. msgctxt "@label"
  838. msgid "Custom Material"
  839. msgstr "自定义材料"
  840. msgctxt "@label"
  841. msgid "Custom profile"
  842. msgstr "自定义配置文件"
  843. msgctxt "@info"
  844. msgid "Custom profile name:"
  845. msgstr "自定义配置文件名称:"
  846. msgctxt "@label"
  847. msgid "Custom profiles"
  848. msgstr "自定义配置文件"
  849. msgctxt "@label:header"
  850. msgid "Custom profiles"
  851. msgstr "自定义配置文件"
  852. msgctxt "@action:inmenu menubar:edit"
  853. msgid "Cut"
  854. msgstr "剪切"
  855. msgctxt "@item:inlistbox"
  856. msgid "Cutting mesh"
  857. msgstr "切割网格"
  858. msgctxt "@item:inlistbox"
  859. msgid "Darker is higher"
  860. msgstr "颜色越深厚度越大"
  861. msgctxt "@info:title"
  862. msgid "Data Sent"
  863. msgstr "数据已发送"
  864. msgctxt "@label Description for application dependency"
  865. msgid "Data interchange format"
  866. msgstr "数据交换格式"
  867. msgctxt "@button"
  868. msgid "Decline"
  869. msgstr "拒绝"
  870. msgctxt "@button"
  871. msgid "Decline and close"
  872. msgstr "拒绝并关闭"
  873. msgctxt "@button"
  874. msgid "Decline and remove from account"
  875. msgstr "拒绝并从帐户中删除"
  876. msgctxt "@info:No intent profile selected"
  877. msgid "Default"
  878. msgstr "默认"
  879. msgctxt "@window:text"
  880. msgid "Default behavior for changed setting values when switching to a different profile: "
  881. msgstr "切换到不同配置文件时对设置值更改的默认操作: "
  882. msgctxt "@info:tooltip"
  883. msgid "Default behavior when opening a project file"
  884. msgstr "打开项目文件时的默认行为"
  885. msgctxt "@window:text"
  886. msgid "Default behavior when opening a project file: "
  887. msgstr "打开项目文件时的默认行为: "
  888. msgctxt "@action:button"
  889. msgid "Defaults"
  890. msgstr "默认"
  891. msgctxt "@label"
  892. msgid "Defines the thickness of your part side walls, roof and floor."
  893. msgstr "定义零件侧壁、顶和底板的厚度。"
  894. msgctxt "@label"
  895. msgid "Delete"
  896. msgstr "删除"
  897. msgctxt "@dialog:title"
  898. msgid "Delete Backup"
  899. msgstr "删除备份"
  900. msgctxt "@action:inmenu"
  901. msgid "Delete Model"
  902. msgstr "删除模型"
  903. msgctxt "@action:inmenu menubar:edit"
  904. msgid "Delete Selected"
  905. msgstr "删除所选项"
  906. msgctxt "@window:title"
  907. msgid "Delete print job"
  908. msgstr "删除打印作业"
  909. msgctxt "@label"
  910. msgid "Density"
  911. msgstr "密度"
  912. msgctxt "@label Description for development tool"
  913. msgid "Dependency and package manager"
  914. msgstr "依赖性和程序包管理器"
  915. msgctxt "@action:label"
  916. msgid "Depth (mm)"
  917. msgstr "深度 (mm)"
  918. msgctxt "@action:label"
  919. msgid "Derivative from"
  920. msgstr "衍生自"
  921. msgctxt "@header"
  922. msgid "Description"
  923. msgstr "描述"
  924. msgctxt "@label"
  925. msgid "Description"
  926. msgstr "描述"
  927. msgctxt "@action:button"
  928. msgid "Details"
  929. msgstr "详细信息"
  930. msgctxt "@label"
  931. msgid "Diameter"
  932. msgstr "直径"
  933. msgctxt "@button"
  934. msgid "Disable"
  935. msgstr "禁用"
  936. msgctxt "@action:inmenu"
  937. msgid "Disable Extruder"
  938. msgstr "禁用挤出机"
  939. msgctxt "@option:discardOrKeep"
  940. msgid "Discard and never ask again"
  941. msgstr "舍弃更改,并不再询问此问题"
  942. msgctxt "@action:button"
  943. msgid "Discard changes"
  944. msgstr "舍弃更改"
  945. msgctxt "@action:button"
  946. msgid "Discard current changes"
  947. msgstr "舍弃当前更改"
  948. msgctxt "@title:window"
  949. msgid "Discard or Keep changes"
  950. msgstr "舍弃或保留更改"
  951. msgctxt "@button"
  952. msgid "Dismiss"
  953. msgstr "解除"
  954. msgctxt "@label"
  955. msgid "Display Name"
  956. msgstr "显示名称"
  957. msgctxt "@option:check"
  958. msgid "Display model errors"
  959. msgstr "显示模型错误"
  960. msgctxt "@option:check"
  961. msgid "Display overhang"
  962. msgstr "显示悬垂(Overhang)"
  963. msgctxt "@info:option_text"
  964. msgid "Do not show this message again"
  965. msgstr "不再显示此消息"
  966. msgctxt "@info:generic"
  967. msgid "Do you want to sync material and software packages with your account?"
  968. msgstr "是否要与您的帐户同步材料和软件包?"
  969. msgctxt "@action:label"
  970. msgid "Don't show project summary on save again"
  971. msgstr "保存时不再显示项目摘要"
  972. msgctxt "@action:menu"
  973. msgid "Don't show this setting"
  974. msgstr "不再显示此设置"
  975. msgctxt "@label"
  976. msgid "Don't support overlaps"
  977. msgstr "不支持重叠"
  978. msgctxt "@button"
  979. msgid "Done"
  980. msgstr "完成"
  981. msgctxt "@button"
  982. msgid "Downgrade"
  983. msgstr "降级"
  984. msgctxt "@button"
  985. msgid "Downgrading..."
  986. msgstr "正在降级..."
  987. msgctxt "@label"
  988. msgid "Draft"
  989. msgstr "草稿"
  990. msgctxt "@action:inmenu menubar:edit"
  991. msgid "Drop All Models to buildplate"
  992. msgstr "将所有模型拖放到构建板"
  993. msgctxt "@action:button"
  994. msgid "Duplicate"
  995. msgstr "复制"
  996. msgctxt "@title:window"
  997. msgid "Duplicate Profile"
  998. msgstr "复制配置文件"
  999. msgctxt "@backup_limit_info"
  1000. msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones."
  1001. msgstr "在预览阶段,将限制为 5 个可见备份。移除一个备份以查看更早的备份。"
  1002. msgctxt "@title:menu menubar:toplevel"
  1003. msgid "E&xtensions"
  1004. msgstr "扩展(&X)"
  1005. msgctxt "@action:button"
  1006. msgid "Edit"
  1007. msgstr "编辑"
  1008. msgctxt "@action:button"
  1009. msgid "Eject"
  1010. msgstr "弹出"
  1011. msgctxt "@action"
  1012. msgid "Eject removable device {0}"
  1013. msgstr "弹出可移动设备 {0}"
  1014. msgctxt "@info:status"
  1015. msgid "Ejected {0}. You can now safely remove the drive."
  1016. msgstr "已弹出 {0}。现在,您可以安全地拔出磁盘。"
  1017. msgctxt "@label"
  1018. msgid "Empty"
  1019. msgstr "空"
  1020. msgctxt "@button"
  1021. msgid "Enable"
  1022. msgstr "启用"
  1023. msgctxt "@action:inmenu"
  1024. msgid "Enable Extruder"
  1025. msgstr "启用挤出机"
  1026. msgctxt "@label"
  1027. msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards. Disabling it results in a skirt around object by default."
  1028. msgstr "启用打印边缘或浮边。这将在物体周围或下面添加一个平坦区域,方便之后切断。默认情况下,禁用它会在对象周围形成一个裙边。"
  1029. msgctxt "@label"
  1030. msgid "Enabled"
  1031. msgstr "已启用"
  1032. msgctxt "@title:label"
  1033. msgid "End G-code"
  1034. msgstr "结束 G-code"
  1035. msgctxt "@label"
  1036. msgid "End-to-end solution for fused filament 3D printing."
  1037. msgstr "熔丝 3D 打印技术的的端对端解决方案。"
  1038. msgctxt "@info:title"
  1039. msgid "EnginePlugin"
  1040. msgstr "EnginePlugin"
  1041. msgctxt "@label"
  1042. msgid "Engineering"
  1043. msgstr "工程"
  1044. msgctxt "@option:check"
  1045. msgid "Ensure models are kept apart"
  1046. msgstr "确保每个模型都保持分离"
  1047. msgctxt "@label"
  1048. msgid "Enter the IP address of your printer on the network."
  1049. msgstr "请输入打印机在网络上的 IP 地址。"
  1050. msgctxt "@text"
  1051. msgid "Enter your printer's IP address."
  1052. msgstr "输入您打印机的 IP 地址。"
  1053. msgctxt "@info:title"
  1054. msgid "Error"
  1055. msgstr "错误"
  1056. msgctxt "@title:groupbox"
  1057. msgid "Error traceback"
  1058. msgstr "错误追溯"
  1059. msgctxt "@label"
  1060. msgid "Estimated time left"
  1061. msgstr "预计剩余时间"
  1062. msgctxt "@action:inmenu"
  1063. msgid "Exit Full Screen"
  1064. msgstr "退出全屏"
  1065. msgctxt "@label"
  1066. msgid "Experimental"
  1067. msgstr "实验性"
  1068. msgctxt "@action:button"
  1069. msgid "Export"
  1070. msgstr "导出"
  1071. msgctxt "@title:window"
  1072. msgid "Export All Materials"
  1073. msgstr "导出所有材料"
  1074. msgctxt "@title:window"
  1075. msgid "Export Material"
  1076. msgstr "导出材料"
  1077. msgctxt "@title:window"
  1078. msgid "Export Profile"
  1079. msgstr "导出配置文件"
  1080. msgctxt "@action:inmenu menubar:file"
  1081. msgid "Export Selection..."
  1082. msgstr "导出选择..."
  1083. msgctxt "@title:window Don't translate 'Universal Cura Project'"
  1084. msgid "Export Universal Cura Project"
  1085. msgstr "导出 Universal Cura Project"
  1086. msgctxt "@button"
  1087. msgid "Export material archive"
  1088. msgstr "导出材料存档"
  1089. msgctxt "@info:title"
  1090. msgid "Export succeeded"
  1091. msgstr "导出成功"
  1092. msgctxt "@info:status Don't translate the XML tag <filename>!"
  1093. msgid "Exported profile to <filename>{0}</filename>"
  1094. msgstr "配置文件已导出至:<filename> {0} </filename>"
  1095. msgctxt "@tooltip:button"
  1096. msgid "Extend UltiMaker Cura with plugins and material profiles."
  1097. msgstr "用插件和材料配置文件扩展 UltiMaker Cura。"
  1098. msgctxt "@label"
  1099. msgid "Extruder"
  1100. msgstr "挤出机"
  1101. msgctxt "@action:label"
  1102. msgid "Extruder %1"
  1103. msgstr "挤出机 %1"
  1104. msgctxt "@title:label"
  1105. msgid "Extruder End G-code"
  1106. msgstr "挤出机的结束 G-code"
  1107. msgctxt "@label"
  1108. msgid "Extruder End G-code duration"
  1109. msgstr "推料器结束 G 代码持续时间"
  1110. msgctxt "@title:label"
  1111. msgid "Extruder Start G-code"
  1112. msgstr "挤出机的开始 G-code"
  1113. msgctxt "@label"
  1114. msgid "Extruder Start G-code duration"
  1115. msgstr "推料器开始 G 代码持续时间"
  1116. msgctxt "@label"
  1117. msgid "Extruder {0}"
  1118. msgstr "推料器{0}"
  1119. msgctxt "@info:title"
  1120. msgid "Extruder(s) Disabled"
  1121. msgstr "挤出机已禁用"
  1122. msgctxt "@label:status"
  1123. msgid "Failed"
  1124. msgstr "失败"
  1125. msgctxt "@text:error"
  1126. msgid "Failed to connect to Digital Factory to sync materials with some of the printers."
  1127. msgstr "无法连接 Digital Factory,不能与某些打印机同步材料。"
  1128. msgctxt "@text:error"
  1129. msgid "Failed to connect to Digital Factory."
  1130. msgstr "无法连接至 Digital Factory。"
  1131. msgctxt "@text:error"
  1132. msgid "Failed to create archive of materials to sync with printers."
  1133. msgstr "无法创建材料存档以与打印机同步。"
  1134. msgctxt "@info:status"
  1135. msgid "Failed to eject {0}. Another program may be using the drive."
  1136. msgstr "无法弹出 {0},另一个程序可能正在使用磁盘。"
  1137. msgctxt "@info:status Don't translate the XML tags <filename> and <message>!"
  1138. msgid "Failed to export material to <filename>%1</filename>: <message>%2</message>"
  1139. msgstr "无法导出材料至 <filename>%1</filename>: <message>%2</message>"
  1140. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  1141. msgid "Failed to export profile to <filename>{0}</filename>: <message>{1}</message>"
  1142. msgstr "无法将配置文件导出至<filename> {0} </filename>: <message>{1}</message>"
  1143. msgctxt "@info:status Don't translate the XML tag <filename>!"
  1144. msgid "Failed to export profile to <filename>{0}</filename>: Writer plugin reported failure."
  1145. msgstr "无法将配置文件导出至<filename> {0} </filename>: 写入器插件报告故障。"
  1146. msgctxt "@info:status Don't translate the XML tag <filename>!"
  1147. msgid "Failed to import profile from <filename>{0}</filename>:"
  1148. msgstr "无法从 <filename>{0}</filename> 导入配置文件:"
  1149. msgctxt "@info:status Don't translate the XML tags <filename>!"
  1150. msgid "Failed to import profile from <filename>{0}</filename>:"
  1151. msgstr "无法从 <filename>{0}</filename> 导入配置文件:"
  1152. msgctxt "@info:status Don't translate the XML tags <filename>!"
  1153. msgid "Failed to import profile from <filename>{0}</filename>: {1}"
  1154. msgstr "无法从 <filename>{0}</filename> 导入配置文件:{1}"
  1155. msgctxt "@button"
  1156. msgid "Failed to load packages:"
  1157. msgstr "无法加载包:"
  1158. msgctxt "@text:error"
  1159. msgid "Failed to load the archive of materials to sync it with printers."
  1160. msgstr "无法加载材料存档以与打印机同步。"
  1161. msgctxt "@message:title"
  1162. msgid "Failed to save material archive"
  1163. msgstr "未能保存材料存档"
  1164. msgctxt "@info:status"
  1165. msgid "Failed writing to specific cloud printer: {0} not in remote clusters."
  1166. msgstr "无法写入特定云打印机:{0} 不在远程集群中。"
  1167. msgctxt "@label:category menu label"
  1168. msgid "Favorites"
  1169. msgstr "收藏"
  1170. msgctxt "@label"
  1171. msgid "Filament Cost"
  1172. msgstr "耗材成本"
  1173. msgctxt "@label"
  1174. msgid "Filament length"
  1175. msgstr "耗材长度"
  1176. msgctxt "@label"
  1177. msgid "Filament weight"
  1178. msgstr "耗材重量"
  1179. msgctxt "@title:window"
  1180. msgid "File Already Exists"
  1181. msgstr "文件已存在"
  1182. msgctxt "@info:title"
  1183. msgid "File Saved"
  1184. msgstr "文件已保存"
  1185. msgctxt "@info:status"
  1186. msgid "File {0} does not contain any valid profile."
  1187. msgstr "文件 {0} 不包含任何有效的配置文件。"
  1188. msgctxt "@label:textbox"
  1189. msgid "Filter..."
  1190. msgstr "筛选..."
  1191. msgctxt "@info:title"
  1192. msgid "Finding Location"
  1193. msgstr "正在寻找位置"
  1194. msgctxt "@info:status"
  1195. msgid "Finding new location for objects"
  1196. msgstr "正在为模型寻找新位置"
  1197. msgctxt "@action:button"
  1198. msgid "Finish"
  1199. msgstr "完成"
  1200. msgctxt "@label:status"
  1201. msgid "Finished"
  1202. msgstr "已完成"
  1203. msgctxt "@label:status"
  1204. msgid "Finishes %1 at %2"
  1205. msgstr "完成 %1 于 %2"
  1206. msgctxt "@title:window"
  1207. msgid "Firmware Update"
  1208. msgstr "固件升级"
  1209. msgctxt "@label"
  1210. msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware."
  1211. msgstr "与打印机间的连接不支持固件更新,因此无法更新固件。"
  1212. msgctxt "@label"
  1213. msgid "Firmware can not be updated because there is no connection with the printer."
  1214. msgstr "未连接打印机,无法更新固件。"
  1215. msgctxt "@label"
  1216. msgid "Firmware is the piece of software running directly on your 3D printer. This firmware controls the step motors, regulates the temperature and ultimately makes your printer work."
  1217. msgstr "固件是直接在 3D 打印机上运行的一个软件。此固件控制步进电机,调节温度并最终使打印机正常工作。"
  1218. msgctxt "@label"
  1219. msgid "Firmware update completed."
  1220. msgstr "固件更新已完成。"
  1221. msgctxt "@label"
  1222. msgid "Firmware update failed due to an communication error."
  1223. msgstr "由于通信错误,导致固件升级失败。"
  1224. msgctxt "@label"
  1225. msgid "Firmware update failed due to an input/output error."
  1226. msgstr "由于输入/输出错误,导致固件升级失败。"
  1227. msgctxt "@label"
  1228. msgid "Firmware update failed due to an unknown error."
  1229. msgstr "由于未知错误,固件更新失败。"
  1230. msgctxt "@label"
  1231. msgid "Firmware update failed due to missing firmware."
  1232. msgstr "由于固件丢失,导致固件升级失败。"
  1233. msgctxt "@label"
  1234. msgid "Firmware version"
  1235. msgstr "固件版本"
  1236. msgctxt "@label"
  1237. msgid "First available"
  1238. msgstr "第一个可用"
  1239. msgctxt "@label:listbox"
  1240. msgid "Flow"
  1241. msgstr "流量"
  1242. msgctxt "@text In the UI this is followed by a list of steps the user needs to take."
  1243. msgid "Follow the following steps to load the new material profiles to your printer."
  1244. msgstr "请遵循以下步骤将新材料配置文件加载到打印机。"
  1245. msgctxt "@info"
  1246. msgid "Follow the procedure to add a new printer"
  1247. msgstr "按照步骤添加新打印机"
  1248. msgctxt "@text"
  1249. msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers."
  1250. msgstr "只需遵循几个简单步骤,您就可以将所有材料配置文件与打印机同步。"
  1251. msgctxt "@label"
  1252. msgid "Font"
  1253. msgstr "字体"
  1254. msgctxt "@label"
  1255. msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle."
  1256. msgstr "在打印头停止的每一个位置下方插入一张纸,并调整平台高度。当纸张恰好被喷嘴的尖端轻微压住时,此时打印平台的高度已被正确校准。"
  1257. msgctxt "@info:tooltip"
  1258. msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly."
  1259. msgstr "对于隐雕,提供一个用于半透明的简单对数模型。对于高度图,像素值与高度线性对应。"
  1260. msgctxt "@info:tooltip"
  1261. msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model."
  1262. msgstr "在影像浮雕中,为了阻挡更多光源通过,深色像素应对应于较厚的位置。在高度图中,浅色像素代表着更高的地形,因此浅色像素对应于生成的 3D 模型中较厚的位置。"
  1263. msgctxt "@option:check"
  1264. msgid "Force layer view compatibility mode (restart required)"
  1265. msgstr "强制层视图兼容模式(需要重新启动)"
  1266. msgid "FreeCAD trackpad"
  1267. msgstr "FreeCAD 触控板"
  1268. msgctxt "@action:inmenu menubar:view"
  1269. msgid "Front View"
  1270. msgstr "正视图"
  1271. msgctxt "@info:tooltip"
  1272. msgid "Front View"
  1273. msgstr "正视图"
  1274. msgctxt "@item:inlistbox"
  1275. msgid "G File"
  1276. msgstr "G 文件"
  1277. msgctxt "@info:title"
  1278. msgid "G-code Details"
  1279. msgstr "G-code 详细信息"
  1280. msgctxt "@item:inlistbox"
  1281. msgid "G-code File"
  1282. msgstr "GCode 文件"
  1283. msgctxt "@label"
  1284. msgid "G-code flavor"
  1285. msgstr "G-code 风格"
  1286. msgctxt "@label Description for application component"
  1287. msgid "G-code generator"
  1288. msgstr "G-code 生成器"
  1289. msgctxt "@error:not supported"
  1290. msgid "GCodeGzWriter does not support text mode."
  1291. msgstr "GCodeGzWriter 不支持文本模式。"
  1292. msgctxt "@error:not supported"
  1293. msgid "GCodeWriter does not support non-text mode."
  1294. msgstr "GCodeWriter 不支持非文本模式。"
  1295. msgctxt "@item:inlistbox"
  1296. msgid "GIF Image"
  1297. msgstr "GIF 图像"
  1298. msgctxt "@label Description for application dependency"
  1299. msgid "GUI framework"
  1300. msgstr "GUI 框架"
  1301. msgctxt "@label Description for application dependency"
  1302. msgid "GUI framework bindings"
  1303. msgstr "GUI 框架绑定"
  1304. msgctxt "@label"
  1305. msgid "Gantry Height"
  1306. msgstr "十字轴高度"
  1307. msgctxt "@title:tab"
  1308. msgid "General"
  1309. msgstr "基本"
  1310. msgctxt "@label"
  1311. msgid "Generate structures to support parts of the model which have overhangs. Without these structures, these parts would collapse during printing."
  1312. msgstr "在模型的悬垂(Overhangs)部分生成支撑结构。若不这样做,这些部分在打印时将倒塌。"
  1313. msgctxt "@label Description for development tool"
  1314. msgid "Generating Windows installers"
  1315. msgstr "生成 Windows 安装程序"
  1316. msgctxt "@label:category menu label"
  1317. msgid "Generic"
  1318. msgstr "通用"
  1319. msgctxt "@option:check"
  1320. msgid "Get notifications for plugin updates"
  1321. msgstr "获取插件更新通知"
  1322. msgctxt "@action"
  1323. msgid "Get started"
  1324. msgstr "开始"
  1325. msgctxt "@label"
  1326. msgid "Global"
  1327. msgstr "全球"
  1328. msgctxt "@title:tab"
  1329. msgid "Global Settings"
  1330. msgstr "全局设置"
  1331. msgctxt "@label Description for application component"
  1332. msgid "Graphical user interface"
  1333. msgstr "图形用户界面"
  1334. msgctxt "@label"
  1335. msgid "Grid Placement"
  1336. msgstr "网格放置"
  1337. msgctxt "@label"
  1338. msgid "Group #{group_nr}"
  1339. msgstr "组 #{group_nr}"
  1340. msgctxt "@tooltip of pre-heat"
  1341. msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print."
  1342. msgstr "打印前请预热热床。您可以在热床加热时继续调整相关项,让您在准备打印时不必等待热床加热完毕。"
  1343. msgctxt "@tooltip of pre-heat"
  1344. msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print."
  1345. msgstr "打印前请预热热端。您可以在热端加热时继续调整打印机,而不必等待热端加热完毕再做好打印准备。"
  1346. msgctxt "@label"
  1347. msgid "Heated Build Plate (official kit or self-built)"
  1348. msgstr "热床(官方版本或自制)"
  1349. msgctxt "@label"
  1350. msgid "Heated bed"
  1351. msgstr "热床"
  1352. msgctxt "@label"
  1353. msgid "Heated build volume"
  1354. msgstr "加热的构建体积"
  1355. msgctxt "@action:label"
  1356. msgid "Height (mm)"
  1357. msgstr "高度 (mm)"
  1358. msgctxt "@label"
  1359. msgid "Helpers"
  1360. msgstr "打印辅助结构"
  1361. msgctxt "@label"
  1362. msgid "Hide all connected printers"
  1363. msgstr "隐藏所有连接的打印机"
  1364. msgctxt "@action:button"
  1365. msgid "Hide settings"
  1366. msgstr "隐藏设置"
  1367. msgctxt "@action:menu"
  1368. msgid "Hide this setting"
  1369. msgstr "隐藏此设置"
  1370. msgctxt "@info:tooltip"
  1371. msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry."
  1372. msgstr "使用警告标志突出显示模型缺少或多余的表面。刀具路径常常是要打印的几何结构缺少的部分。"
  1373. msgctxt "@info:tooltip"
  1374. msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly."
  1375. msgstr "以红色突出显示模型需要增加支撑结构的区域。没有支撑,这些区域将无法正确打印。"
  1376. msgctxt "@button"
  1377. msgid "How to load new material profiles to my printer"
  1378. msgstr "如何将新材料配置文件加载到打印机"
  1379. msgctxt "@action:button"
  1380. msgid "How to update"
  1381. msgstr "如何更新"
  1382. msgctxt "@text:window"
  1383. msgid "I don't want to send anonymous data"
  1384. msgstr "我不想发送匿名数据"
  1385. msgctxt "@label:status"
  1386. msgid "Idle"
  1387. msgstr "空闲"
  1388. msgctxt "@label"
  1389. msgid "If you are trying to add a new UltiMaker printer to Cura"
  1390. msgstr "如果您想向 Cura 添加一台新的 UltiMaker 打印机"
  1391. msgctxt "@label"
  1392. msgid "If your printer is not listed, read the <a href='%1'>network printing troubleshooting guide</a>"
  1393. msgstr "如果您的打印机未列出,请阅读<a href='%1'>网络打印故障排除指南</a>"
  1394. msgctxt "@action:button"
  1395. msgid "Import"
  1396. msgstr "导入"
  1397. msgctxt "@title:window"
  1398. msgid "Import Material"
  1399. msgstr "导入配置"
  1400. msgctxt "@title:window"
  1401. msgid "Import Profile"
  1402. msgstr "导入配置文件"
  1403. msgctxt "@action:button"
  1404. msgid "Import all as models"
  1405. msgstr "导入所有模型"
  1406. msgctxt "@action:button"
  1407. msgid "Import models"
  1408. msgstr "导入模型"
  1409. msgctxt "@label:MonitorStatus"
  1410. msgid "In maintenance. Please check the printer"
  1411. msgstr "维护中。请检查打印机"
  1412. msgctxt "@info"
  1413. msgid "In order to monitor your print from Cura, please connect the printer."
  1414. msgstr "为了从 Cura 监控您的打印,请连接打印机。"
  1415. msgctxt "@label"
  1416. msgid "In order to start using Cura you will need to configure a printer."
  1417. msgstr "要开始使用 Cura,您需要配置一台打印机。"
  1418. msgctxt "@button"
  1419. msgid "In order to use the package you will need to restart Cura"
  1420. msgstr "要使用该包,您需要重新启动 Cura"
  1421. msgctxt "@option:radio"
  1422. msgid "Include UltiMaker account name"
  1423. msgstr "包含 UltiMaker 账户名"
  1424. msgctxt "@label"
  1425. msgid "Infill"
  1426. msgstr "填充"
  1427. msgctxt "@tooltip"
  1428. msgid "Infill"
  1429. msgstr "填充"
  1430. msgctxt "infill_sparse_density description"
  1431. msgid "Infill Density"
  1432. msgstr "填充密度"
  1433. msgctxt "@action:label"
  1434. msgid "Infill Pattern"
  1435. msgstr "填充图案"
  1436. msgctxt "@item:inlistbox"
  1437. msgid "Infill mesh only"
  1438. msgstr "仅填充网格"
  1439. msgctxt "@label"
  1440. msgid "Infill overlapping with this model is modified."
  1441. msgstr "修改了与该模型重叠的填充。"
  1442. msgctxt "@info:title"
  1443. msgid "Information"
  1444. msgstr "信息"
  1445. msgctxt "@title"
  1446. msgid "Information"
  1447. msgstr "信息"
  1448. msgctxt "@info:progress"
  1449. msgid "Initializing Active Machine..."
  1450. msgstr "正在初始化当前机器..."
  1451. msgctxt "@info:progress"
  1452. msgid "Initializing build volume..."
  1453. msgstr "正在初始化成形空间体积..."
  1454. msgctxt "@info:progress"
  1455. msgid "Initializing engine..."
  1456. msgstr "正在初始化引擎..."
  1457. msgctxt "@info:progress"
  1458. msgid "Initializing machine manager..."
  1459. msgstr "正在初始化机器管理器..."
  1460. msgctxt "@label"
  1461. msgid "Inner Wall"
  1462. msgstr "内壁"
  1463. msgctxt "@tooltip"
  1464. msgid "Inner Walls"
  1465. msgstr "内壁"
  1466. msgctxt "@text"
  1467. msgid "Insert the USB stick into your printer and launch the procedure to load new material profiles."
  1468. msgstr "将 U 盘插入打印机,并启动程序以加载新材料配置文件。"
  1469. msgctxt "@button"
  1470. msgid "Install"
  1471. msgstr "安装"
  1472. msgctxt "@header"
  1473. msgid "Install Materials"
  1474. msgstr "安装材料"
  1475. msgctxt "@window:title"
  1476. msgid "Install Package"
  1477. msgstr "安装包"
  1478. msgctxt "@action:button"
  1479. msgid "Install Packages"
  1480. msgstr "安装程序包"
  1481. msgctxt "@header"
  1482. msgid "Install Packages"
  1483. msgstr "安装程序包"
  1484. msgctxt "@header"
  1485. msgid "Install Plugins"
  1486. msgstr "安装插件"
  1487. msgctxt "@action:button"
  1488. msgid "Install missing packages"
  1489. msgstr "安装缺失程序包"
  1490. msgctxt "@title"
  1491. msgid "Install missing packages"
  1492. msgstr "安装缺失程序包"
  1493. msgctxt "@label"
  1494. msgid "Install missing packages from project file."
  1495. msgstr "安装项目文件缺失的程序包。"
  1496. msgctxt "@button"
  1497. msgid "Install pending updates"
  1498. msgstr "安装挂起的更新"
  1499. msgctxt "@label"
  1500. msgid "Installed Materials"
  1501. msgstr "已安装的材料"
  1502. msgctxt "@label"
  1503. msgid "Installed Plugins"
  1504. msgstr "已安装的插件"
  1505. msgctxt "@button"
  1506. msgid "Installing..."
  1507. msgstr "正在安装..."
  1508. msgctxt "@action:label"
  1509. msgid "Intent"
  1510. msgstr "目的"
  1511. msgctxt "@label"
  1512. msgid "Interface"
  1513. msgstr "接口"
  1514. msgctxt "@label Description for application component"
  1515. msgid "Interprocess communication library"
  1516. msgstr "进程间通信交互使用库"
  1517. msgctxt "@title:window"
  1518. msgid "Invalid IP address"
  1519. msgstr "IP 地址无效"
  1520. msgctxt "@info:status"
  1521. msgid "Invalid file URL:"
  1522. msgstr "文件 URL 无效:"
  1523. msgctxt "@action:button"
  1524. msgid "Invert the direction of camera zoom."
  1525. msgstr "反转视角变焦方向。"
  1526. msgctxt "@label"
  1527. msgid "Is printed as support."
  1528. msgstr "打印为支撑。"
  1529. msgctxt "@text"
  1530. msgid "It seems like you don't have any compatible printers connected to Digital Factory. Make sure your printer is connected and it's running the latest firmware."
  1531. msgstr "您似乎没有任何兼容打印机连接到 Digital Factory。请确保打印机已连接并运行最新固件。"
  1532. msgctxt "@item:inlistbox"
  1533. msgid "JPEG Image"
  1534. msgstr "JPEG 图像"
  1535. msgctxt "@item:inlistbox"
  1536. msgid "JPG Image"
  1537. msgstr "JPG 图像"
  1538. msgctxt "@label Description for application dependency"
  1539. msgid "JSON parser"
  1540. msgstr "JSON 解析器"
  1541. msgctxt "@label"
  1542. msgid "Job Name"
  1543. msgstr "作业名"
  1544. msgctxt "@label"
  1545. msgid "Jog Distance"
  1546. msgstr "垛齐距离"
  1547. msgctxt "@label"
  1548. msgid "Jog Position"
  1549. msgstr "垛齐位置"
  1550. msgctxt "@option:discardOrKeep"
  1551. msgid "Keep and never ask again"
  1552. msgstr "保留更改,并不再询问此问题"
  1553. msgctxt "@action:button"
  1554. msgid "Keep changes"
  1555. msgstr "保留更改"
  1556. msgctxt "@action:button"
  1557. msgid "Keep printer configurations"
  1558. msgstr "保留打印机配置"
  1559. msgctxt "@action:menu"
  1560. msgid "Keep this setting visible"
  1561. msgstr "保持此设置可见"
  1562. msgctxt "@label The argument is a timestamp"
  1563. msgid "Last update: %1"
  1564. msgstr "上次更新时间:%1"
  1565. msgctxt "@label:listbox"
  1566. msgid "Layer Thickness"
  1567. msgstr "层厚度"
  1568. msgctxt "@item:inlistbox"
  1569. msgid "Layer view"
  1570. msgstr "分层视图"
  1571. msgctxt "@button:label"
  1572. msgid "Learn More"
  1573. msgstr "详细了解"
  1574. msgctxt "@button"
  1575. msgid "Learn how to connect your printer to Digital Factory"
  1576. msgstr "了解如何将打印机连接到 Digital Factory"
  1577. msgctxt "@tooltip:button"
  1578. msgid "Learn how to get started with UltiMaker Cura."
  1579. msgstr "了解如何开始使用 UltiMaker Cura。"
  1580. msgctxt "@action"
  1581. msgid "Learn more"
  1582. msgstr "了解详情"
  1583. msgctxt "@action:button"
  1584. msgid "Learn more"
  1585. msgstr "详细了解"
  1586. msgctxt "@button"
  1587. msgid "Learn more"
  1588. msgstr "详细了解"
  1589. msgctxt "@button:label"
  1590. msgid "Learn more"
  1591. msgstr "了解详情"
  1592. msgctxt "@action:button"
  1593. msgid "Learn more about Cura print profiles"
  1594. msgstr "了解有关 Cura 打印配置文件的更多信息"
  1595. msgctxt "@button"
  1596. msgid "Learn more about adding printers to Cura"
  1597. msgstr "了解有关将打印机添加到 Cura 的更多信息"
  1598. msgctxt "@label"
  1599. msgid "Learn more about project packages."
  1600. msgstr "详细了解项目程序包。"
  1601. msgctxt "@action:inmenu menubar:view"
  1602. msgid "Left Side View"
  1603. msgstr "左视图"
  1604. msgctxt "@info:tooltip"
  1605. msgid "Left View"
  1606. msgstr "左视图"
  1607. msgctxt "@tooltip:button"
  1608. msgid "Let developers know that something is going wrong."
  1609. msgstr "向开发人员报错。"
  1610. msgctxt "@action"
  1611. msgid "Level build plate"
  1612. msgstr "调平打印平台"
  1613. msgctxt "@item:inlistbox"
  1614. msgid "Lighter is higher"
  1615. msgstr "颜色越浅厚度越大"
  1616. msgctxt "@label:listbox"
  1617. msgid "Line Type"
  1618. msgstr "走线类型"
  1619. msgctxt "@label:listbox"
  1620. msgid "Line Width"
  1621. msgstr "走线宽度"
  1622. msgctxt "@item:inlistbox"
  1623. msgid "Linear"
  1624. msgstr "线性"
  1625. msgctxt "@label Description for development tool"
  1626. msgid "Linux cross-distribution application deployment"
  1627. msgstr "Linux 交叉分布应用程序部署"
  1628. msgctxt "@label"
  1629. msgid "Load %3 as material %1 (This cannot be overridden)."
  1630. msgstr "将 %3 作为材料 %1 进行加载(此操作无法覆盖)。"
  1631. msgctxt "@button"
  1632. msgid "Load more"
  1633. msgstr "加载更多"
  1634. msgctxt "@button"
  1635. msgid "Loading"
  1636. msgstr "加载"
  1637. msgctxt "@action:warning"
  1638. msgid "Loading a project will clear all models on the build plate."
  1639. msgstr "加载项目将清除打印平台上的所有模型。"
  1640. msgctxt "@label"
  1641. msgid "Loading available configurations from the printer..."
  1642. msgstr "正在从打印机加载可用配置..."
  1643. msgctxt "@info:progress"
  1644. msgid "Loading interface..."
  1645. msgstr "正在载入界面..."
  1646. msgctxt "@info:progress"
  1647. msgid "Loading machines..."
  1648. msgstr "正在载入打印机..."
  1649. msgctxt "@label:status"
  1650. msgid "Loading..."
  1651. msgstr "正在加载..."
  1652. msgctxt "@title"
  1653. msgid "Loading..."
  1654. msgstr "正在加载..."
  1655. msgctxt "@label:category menu label"
  1656. msgid "Local printers"
  1657. msgstr "本地打印机"
  1658. msgctxt "@info:title"
  1659. msgid "Log-in failed"
  1660. msgstr "登录失败"
  1661. msgctxt "@info:title"
  1662. msgid "Login failed"
  1663. msgstr "登录失败"
  1664. msgctxt "@title:groupbox"
  1665. msgid "Logs"
  1666. msgstr "日志"
  1667. msgctxt "@label:MonitorStatus"
  1668. msgid "Lost connection with the printer"
  1669. msgstr "与打印机的连接中断"
  1670. msgctxt "@action"
  1671. msgid "Machine Settings"
  1672. msgstr "打印机设置"
  1673. msgctxt "@backuplist:label"
  1674. msgid "Machines"
  1675. msgstr "机器"
  1676. msgctxt "@text"
  1677. msgid "Make sure all your printers are turned ON and connected to Digital Factory."
  1678. msgstr "请确保所有打印机都已打开并连接到 Digital Factory。"
  1679. msgctxt "@info:generic"
  1680. msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate."
  1681. msgstr "发送文件之前,请确保 G-code 适用于当前打印机和打印机配置。当前 G-code 文件可能不准确。"
  1682. msgctxt "@item:inlistbox"
  1683. msgid "Makerbot Printfile"
  1684. msgstr "Makerbot 打印文件"
  1685. msgctxt "@error"
  1686. msgid "MakerbotWriter could not save to the designated path."
  1687. msgstr "MakerbotWriter 无法保存至指定路径。"
  1688. msgctxt "@error:not supported"
  1689. msgid "MakerbotWriter does not support text mode."
  1690. msgstr "MakerbotWriter 不支持文本模式。"
  1691. msgctxt "@action:inmenu"
  1692. msgid "Manage Materials..."
  1693. msgstr "管理材料..."
  1694. msgctxt "@action:inmenu menubar:printer"
  1695. msgid "Manage Pr&inters..."
  1696. msgstr "管理打印机(&I)..."
  1697. msgctxt "@action:inmenu menubar:profile"
  1698. msgid "Manage Profiles..."
  1699. msgstr "管理配置文件.."
  1700. msgctxt "@action:inmenu"
  1701. msgid "Manage Setting Visibility..."
  1702. msgstr "管理设置可见性..."
  1703. msgctxt "@item:inmenu"
  1704. msgid "Manage backups"
  1705. msgstr "管理备份"
  1706. msgctxt "@label link to connect manager"
  1707. msgid "Manage in browser"
  1708. msgstr "请于浏览器中进行管理"
  1709. msgctxt "@header"
  1710. msgid "Manage packages"
  1711. msgstr "管理包"
  1712. msgctxt "@info:tooltip"
  1713. msgid "Manage packages"
  1714. msgstr "管理包"
  1715. msgctxt "@action"
  1716. msgid "Manage print jobs"
  1717. msgstr "管理打印作业"
  1718. msgctxt "@label link to Connect and Cloud interfaces"
  1719. msgid "Manage printer"
  1720. msgstr "管理打印机"
  1721. msgctxt "@button"
  1722. msgid "Manage printers"
  1723. msgstr "管理打印机"
  1724. msgctxt "@text"
  1725. msgid "Manage your UltiMaker Cura plugins and material profiles here. Make sure to keep your plugins up to date and backup your setup regularly."
  1726. msgstr "在此处管理您的 UltiMaker Cura 插件和材料配置文件。请确保将插件保持为最新,并定期备份设置。"
  1727. msgctxt "@label"
  1728. msgid "Manufacturer"
  1729. msgstr "制造商"
  1730. msgctxt "@action:button"
  1731. msgid "Marketplace"
  1732. msgstr "市场"
  1733. msgctxt "@label"
  1734. msgid "Marketplace"
  1735. msgstr "市场"
  1736. msgctxt "@action:label"
  1737. msgid "Material"
  1738. msgstr "材料"
  1739. msgctxt "@label"
  1740. msgid "Material"
  1741. msgstr "材料"
  1742. msgctxt "@label:category menu label"
  1743. msgid "Material"
  1744. msgstr "材料"
  1745. msgctxt "@label:listbox"
  1746. msgid "Material Color"
  1747. msgstr "材料颜色"
  1748. msgctxt "@label"
  1749. msgid "Material Type"
  1750. msgstr "材料类型"
  1751. msgctxt "@title"
  1752. msgid "Material color picker"
  1753. msgstr "材料颜色选取器"
  1754. msgctxt "@label"
  1755. msgid "Material estimation"
  1756. msgstr "预计材料"
  1757. msgctxt "@title:header"
  1758. msgid "Material profiles successfully synced with the following printers:"
  1759. msgstr "材料配置文件与以下打印机成功同步:"
  1760. msgctxt "@action:label"
  1761. msgid "Material settings"
  1762. msgstr "材料设置"
  1763. msgctxt "@backuplist:label"
  1764. msgid "Materials"
  1765. msgstr "材料"
  1766. msgctxt "@button"
  1767. msgid "Materials"
  1768. msgstr "材料"
  1769. msgctxt "@title:tab"
  1770. msgid "Materials"
  1771. msgstr "材料"
  1772. msgctxt "@label"
  1773. msgid "Materials compatible with active printer:"
  1774. msgstr "与处于活动状态的打印机兼容的材料:"
  1775. msgctxt "@label"
  1776. msgid "Mesh Type"
  1777. msgstr "网格类型"
  1778. msgctxt "@action:label"
  1779. msgid "Mode"
  1780. msgstr "模式"
  1781. msgctxt "@info:title"
  1782. msgid "Model Errors"
  1783. msgstr "模型错误"
  1784. msgctxt "@item:inmenu"
  1785. msgid "Modify G-Code"
  1786. msgstr "修改 G-Code"
  1787. msgctxt "@label"
  1788. msgid "Modify settings for overlaps"
  1789. msgstr "修改重叠设置"
  1790. msgctxt "@item:inmenu"
  1791. msgid "Monitor"
  1792. msgstr "监控"
  1793. msgctxt "@action:button"
  1794. msgid "Monitor print"
  1795. msgstr "监控打印"
  1796. msgctxt "@tooltip:button"
  1797. msgid "Monitor print jobs and reprint from your print history."
  1798. msgstr "监控打印作业并从打印历史记录重新打印。"
  1799. msgctxt "@tooltip:button"
  1800. msgid "Monitor printers in Ultimaker Digital Factory."
  1801. msgstr "在 Ultimaker Digital Factory 中监控打印机。"
  1802. msgctxt "@info"
  1803. msgid "Monitor your printers from everywhere using Ultimaker Digital Factory"
  1804. msgstr "使用 UltiMaker Digital Factory 随时随地监控您的打印机"
  1805. msgctxt "@title:window"
  1806. msgid "More information on anonymous data collection"
  1807. msgstr "更多关于匿名数据收集的信息"
  1808. msgctxt "@window:title"
  1809. msgid "Move print job to top"
  1810. msgstr "将打印作业移至顶部"
  1811. msgctxt "@action:button"
  1812. msgid "Move to Next Position"
  1813. msgstr "移动到下一个位置"
  1814. msgctxt "@label"
  1815. msgid "Move to top"
  1816. msgstr "移至顶部"
  1817. msgctxt "@info:tooltip"
  1818. msgid "Moves the camera so the model is in the center of the view when a model is selected"
  1819. msgstr "当模型被选中时,视角将自动调整到最合适的观察位置(模型处于正中央)"
  1820. msgctxt "@action:inmenu menubar:edit"
  1821. msgid "Multiply Selected"
  1822. msgstr "复制所选项"
  1823. msgctxt "@title:window"
  1824. msgid "Multiply Selected Model"
  1825. msgid_plural "Multiply Selected Models"
  1826. msgstr[0] "复制所选模型"
  1827. msgctxt "@info"
  1828. msgid "Multiply selected item and place them in a grid of build plate."
  1829. msgstr "选择多项,将它们放置在构建板的网格中。"
  1830. msgctxt "@info:status"
  1831. msgid "Multiplying and placing objects"
  1832. msgstr "复制并放置模型"
  1833. msgctxt "@title"
  1834. msgid "My Backups"
  1835. msgstr "我的备份"
  1836. msgctxt "@label:button"
  1837. msgid "My printers"
  1838. msgstr "我的打印机"
  1839. msgctxt "@action:label"
  1840. msgid "Name"
  1841. msgstr "名字"
  1842. msgctxt "@label:category menu label"
  1843. msgid "Network enabled printers"
  1844. msgstr "网络打印机"
  1845. msgctxt "@info:title"
  1846. msgid "Network error"
  1847. msgstr "网络错误"
  1848. msgctxt "@info:title The %s gets replaced with the printer name."
  1849. msgid "New %s stable firmware available"
  1850. msgstr "新 %s 稳定版固件可用"
  1851. msgctxt "@textfield:placeholder"
  1852. msgid "New Custom Profile"
  1853. msgstr "新建自定义配置文件"
  1854. msgctxt "@label"
  1855. msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely."
  1856. msgstr "新的 UltiMaker 打印机可连接到 Digital Factory,用户可对其进行远程监控。"
  1857. msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  1858. msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}."
  1859. msgstr "您的 {machine_name} 可能有新功能或错误修复可用!如果打印机上的固件还不是最新版本,建议将其更新为 {latest_version} 版。"
  1860. msgctxt "@action:button"
  1861. msgid "New materials installed"
  1862. msgstr "新材料已装载"
  1863. msgctxt "info:status"
  1864. msgid "New printer detected from your Ultimaker account"
  1865. msgid_plural "New printers detected from your Ultimaker account"
  1866. msgstr[0] "从您的 Ultimaker 帐户中检测到新的打印机"
  1867. msgctxt "@title:window"
  1868. msgid "New project"
  1869. msgstr "新建项目"
  1870. msgctxt "@action:button"
  1871. msgid "Next"
  1872. msgstr "下一步"
  1873. msgctxt "@button"
  1874. msgid "Next"
  1875. msgstr "下一步"
  1876. msgctxt "@info:title"
  1877. msgid "Nightly build"
  1878. msgstr "夜间构建"
  1879. msgctxt "@info"
  1880. msgid "No"
  1881. msgstr "否"
  1882. msgctxt "@info"
  1883. msgid "No compatibility information"
  1884. msgstr "无兼容性信息"
  1885. msgctxt "@description"
  1886. msgid "No compatible printers, that are currently online, were found."
  1887. msgstr "没有找到当前联机的兼容打印机。"
  1888. msgctxt "@label"
  1889. msgid "No cost estimation available"
  1890. msgstr "无可用成本估计"
  1891. msgctxt "@info:status Don't translate the XML tags <filename>!"
  1892. msgid "No custom profile to import in file <filename>{0}</filename>"
  1893. msgstr "没有可导入文件 <filename>{0}</filename> 的自定义配置文件"
  1894. msgctxt "@label"
  1895. msgid "No items to select from"
  1896. msgstr "没有可供选择的项目"
  1897. msgctxt "@info:title"
  1898. msgid "No layers to show"
  1899. msgstr "无层可显示"
  1900. msgctxt "@message"
  1901. msgid "No more results to load"
  1902. msgstr "没有更多的结果要加载"
  1903. msgctxt "@error:zip"
  1904. msgid "No permission to write the workspace here."
  1905. msgstr "没有在此处写入工作区的权限。"
  1906. msgctxt "@title:header"
  1907. msgid "No printers found"
  1908. msgstr "未找到打印机"
  1909. msgctxt "@label"
  1910. msgid "No printers found in your account?"
  1911. msgstr "在您的帐户中未找到任何打印机?"
  1912. msgctxt "@message:text %1 is the name the printer uses for 'nozzle'."
  1913. msgid "No profiles are available for the selected material/%1 configuration. Please change your configuration."
  1914. msgstr "对于所选材料/%1 配置,无可用的配置文件。请更改配置。"
  1915. msgctxt "@message"
  1916. msgid "No results found with current filter"
  1917. msgstr "当前筛选没有任何结果"
  1918. msgctxt "@label"
  1919. msgid "No specific value has been set"
  1920. msgstr "未设置具体值"
  1921. msgctxt "@label"
  1922. msgid "No time estimation available"
  1923. msgstr "无可用时间估计"
  1924. msgctxt "@button"
  1925. msgid "Non UltiMaker printer"
  1926. msgstr "非 UltiMaker 打印机"
  1927. msgctxt "@info No materials"
  1928. msgid "None"
  1929. msgstr "无"
  1930. msgctxt "@label"
  1931. msgid "Normal model"
  1932. msgstr "正常模式"
  1933. msgctxt "@info:title"
  1934. msgid "Not a group host"
  1935. msgstr "非位于组中的主机"
  1936. msgctxt "@label:MonitorStatus"
  1937. msgid "Not connected to a printer"
  1938. msgstr "未连接至打印机"
  1939. msgctxt "@action:label"
  1940. msgid "Not in profile"
  1941. msgstr "不在配置文件中"
  1942. msgctxt "@menuitem"
  1943. msgid "Not overridden"
  1944. msgstr "未覆盖"
  1945. msgctxt "@info:not supported profile"
  1946. msgid "Not supported"
  1947. msgstr "不支持"
  1948. msgctxt "@label"
  1949. msgid "Not yet initialized"
  1950. msgstr "尚未初始化"
  1951. msgctxt "@info:status"
  1952. msgid "Nothing is shown because you need to slice first."
  1953. msgstr "由于需要先切片,因此未显示任何内容。"
  1954. msgctxt "@label"
  1955. msgid "Nozzle"
  1956. msgstr "喷嘴"
  1957. msgctxt "@title:label"
  1958. msgid "Nozzle Settings"
  1959. msgstr "喷嘴设置"
  1960. msgctxt "@label"
  1961. msgid "Nozzle offset X"
  1962. msgstr "喷嘴偏移 X"
  1963. msgctxt "@label"
  1964. msgid "Nozzle offset Y"
  1965. msgstr "喷嘴偏移 Y"
  1966. msgctxt "@label"
  1967. msgid "Nozzle size"
  1968. msgstr "喷嘴孔径"
  1969. msgctxt "@label"
  1970. msgid "Number of Copies"
  1971. msgstr "复制个数"
  1972. msgctxt "@label"
  1973. msgid "Number of Extruders"
  1974. msgstr "挤出机数目"
  1975. msgctxt "@action:button"
  1976. msgid "OK"
  1977. msgstr "确定"
  1978. msgctxt "@label"
  1979. msgid "OS language"
  1980. msgstr "操作系统语言"
  1981. msgctxt "@label"
  1982. msgid "Object list"
  1983. msgstr "对象列表"
  1984. msgctxt "@label:Should be short"
  1985. msgid "Off"
  1986. msgstr "关"
  1987. msgctxt "@label:Should be short"
  1988. msgid "On"
  1989. msgstr "开"
  1990. msgctxt "@label"
  1991. msgid "Only Show Top Layers"
  1992. msgstr "只显示顶层"
  1993. msgctxt "@info:status"
  1994. msgid "Only one G-code file can be loaded at a time. Skipped importing {0}"
  1995. msgstr "一次只能加载一个 G-code 文件。{0} 已跳过导入"
  1996. msgctxt "@message"
  1997. msgid "Oops! We encountered an unexpected error during your slicing process. Rest assured, we've automatically received the crash logs for analysis, if you have not disabled data sharing in your preferences. To assist us further, consider sharing your project details on our issue tracker."
  1998. msgstr "哎呀!在您的切片过程中我们遇到了意外错误。请放心,如果您没有在首选项中禁用数据共享,我们已自动收集崩溃日志进行分析。为给我们提供进一步帮助,请考虑在我们的问题跟踪器上分享您的项目详细信息。"
  1999. msgctxt "@action:button"
  2000. msgid "Open"
  2001. msgstr "打开"
  2002. msgctxt "@title:menu menubar:file"
  2003. msgid "Open &Recent"
  2004. msgstr "打开最近使用过的文件(&R)"
  2005. msgctxt "@item:inlistbox 'Open' is part of the name of this file format."
  2006. msgid "Open Compressed Triangle Mesh"
  2007. msgstr "打开压缩三角网格"
  2008. msgctxt "@title:window"
  2009. msgid "Open File(s)"
  2010. msgstr "打开文件"
  2011. msgctxt "@title:menu menubar:file"
  2012. msgid "Open File(s)..."
  2013. msgstr "打开文件..."
  2014. msgctxt "@title:window"
  2015. msgid "Open Project"
  2016. msgstr "打开项目"
  2017. msgctxt "@info:title"
  2018. msgid "Open Project File"
  2019. msgstr "打开项目文件"
  2020. msgctxt "@title:window Don't translate 'Universal Cura Project'"
  2021. msgid "Open Universal Cura Project (UCP)"
  2022. msgstr "打开 Universal Cura Project(UCP)"
  2023. msgctxt "@title:window Don't translate 'Universal Cura Project'"
  2024. msgid "Open Universal Cura Project (UCP) file"
  2025. msgstr "打开 Universal Cura Project(UCP)文件"
  2026. msgctxt "@action:label"
  2027. msgid "Open With"
  2028. msgstr "打开方式"
  2029. msgctxt "@action:button"
  2030. msgid "Open as UCP"
  2031. msgstr "以 UCP 打开"
  2032. msgctxt "@action:button"
  2033. msgid "Open as project"
  2034. msgstr "作为项目打开"
  2035. msgctxt "@title:window"
  2036. msgid "Open file(s)"
  2037. msgstr "打开文件"
  2038. msgctxt "@action:button"
  2039. msgid "Open project anyway"
  2040. msgstr "仍要打开项目"
  2041. msgctxt "@title:window"
  2042. msgid "Open project file"
  2043. msgstr "打开项目文件"
  2044. msgctxt "@label OpenGL version"
  2045. msgid "OpenGL"
  2046. msgstr "OpenGL"
  2047. msgctxt "@label"
  2048. msgid "Opening and saving files"
  2049. msgstr "打开并保存文件"
  2050. msgctxt "@header"
  2051. msgid "Optimized for Air Manager"
  2052. msgstr "已针对 Air Manager 优化"
  2053. msgctxt "@label"
  2054. msgid "Origin at center"
  2055. msgstr "置中"
  2056. msgid "Orthographic"
  2057. msgstr "正交"
  2058. msgctxt "@action:inmenu menubar:view"
  2059. msgid "Orthographic"
  2060. msgstr "正交"
  2061. msgctxt "@tooltip"
  2062. msgid "Other"
  2063. msgstr "其它"
  2064. msgctxt "@label"
  2065. msgid "Other models overlapping with this model are modified."
  2066. msgstr "修改了与此模型重叠的其他模型。"
  2067. msgctxt "@label"
  2068. msgid "Other printers"
  2069. msgstr "其他打印机"
  2070. msgctxt "@tooltip"
  2071. msgid "Outer Wall"
  2072. msgstr "外壁"
  2073. msgctxt "@label"
  2074. msgid "Overlaps with this model are not supported."
  2075. msgstr "不支持与此模型重叠。"
  2076. msgctxt "@action:button"
  2077. msgid "Override"
  2078. msgstr "覆盖"
  2079. msgctxt "@label"
  2080. msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print."
  2081. msgstr "覆盖将使用包含现有打印机配置的指定设置。这可能会导致打印失败。"
  2082. msgctxt "@label %1 is the number of settings it overrides."
  2083. msgid "Overrides %1 setting."
  2084. msgid_plural "Overrides %1 settings."
  2085. msgstr[0] "覆盖 %1 设置。"
  2086. msgctxt "@title:menu menubar:toplevel"
  2087. msgid "P&references"
  2088. msgstr "偏好设置(&R)"
  2089. msgctxt "@item:inlistbox"
  2090. msgid "PNG Image"
  2091. msgstr "PNG 图像"
  2092. msgctxt "@header"
  2093. msgid "Package details"
  2094. msgstr "包详情"
  2095. msgctxt "@label Description for development tool"
  2096. msgid "Packaging Python-applications"
  2097. msgstr "打包 Python 应用"
  2098. msgctxt "@info:status"
  2099. msgid "Parsing G-code"
  2100. msgstr "解析 G-code"
  2101. msgctxt "@action:inmenu menubar:edit"
  2102. msgid "Paste from clipboard"
  2103. msgstr "从剪贴板粘贴"
  2104. msgctxt "@label"
  2105. msgid "Pause"
  2106. msgstr "暂停"
  2107. msgctxt "@label:MonitorStatus"
  2108. msgid "Paused"
  2109. msgstr "已暂停"
  2110. msgctxt "@label:status"
  2111. msgid "Paused"
  2112. msgstr "已暂停"
  2113. msgctxt "@label"
  2114. msgid "Pausing..."
  2115. msgstr "正在暂停..."
  2116. msgctxt "@label:status"
  2117. msgid "Pausing..."
  2118. msgstr "正在暂停..."
  2119. msgctxt "@label"
  2120. msgid "Per Model Settings"
  2121. msgstr "单一模型设置"
  2122. msgid "Perspective"
  2123. msgstr "透视"
  2124. msgctxt "@action:inmenu menubar:view"
  2125. msgid "Perspective"
  2126. msgstr "透视"
  2127. msgctxt "@action:label"
  2128. msgid "Placement"
  2129. msgstr "放置"
  2130. msgctxt "@info:title"
  2131. msgid "Placing Object"
  2132. msgstr "放置模型"
  2133. msgctxt "@info:title"
  2134. msgid "Placing Objects"
  2135. msgstr "放置模型"
  2136. msgctxt "@label Type of platform"
  2137. msgid "Platform"
  2138. msgstr "平台"
  2139. msgctxt "@info"
  2140. msgid "Please connect your printer to the network."
  2141. msgstr "请将打印机连接到网络。"
  2142. msgctxt "@text"
  2143. msgid "Please enter a valid IP address."
  2144. msgstr "请输入有效的 IP 地址。"
  2145. msgctxt "@message"
  2146. msgid "Please give the required permissions when authorizing this application."
  2147. msgstr "在授权此应用程序时,须提供所需权限。"
  2148. msgctxt "@info"
  2149. msgid "Please make sure your printer has a connection:\n- Check if the printer is turned on.\n- Check if the printer is connected to the network.\n- Check if you are signed in to discover cloud-connected printers."
  2150. msgstr "请确保您的打印机已连接:"
  2151. "- 检查打印机是否已启动。"
  2152. "- 检查打印机是否连接至网络。"
  2153. "- 检查您是否已登录查找云连接的打印机。"
  2154. msgctxt "@text"
  2155. msgid "Please name your printer"
  2156. msgstr "请为您的打印机命名"
  2157. msgctxt "@warning:status"
  2158. msgid "Please prepare G-code before exporting."
  2159. msgstr "导出前请先准备 G-code。"
  2160. msgctxt "@info"
  2161. msgid "Please provide a name for this profile."
  2162. msgstr "请为此配置文件提供名称。"
  2163. msgctxt "@info"
  2164. msgid "Please provide a new name."
  2165. msgstr "请提供一个新名称。"
  2166. msgctxt "@text"
  2167. msgid "Please read and agree with the plugin licence."
  2168. msgstr "请阅读并同意插件许可。"
  2169. msgctxt "@label:MonitorStatus"
  2170. msgid "Please remove the print"
  2171. msgstr "请取出打印件"
  2172. msgctxt "@info:status"
  2173. msgid "Please review settings and check if your models:\n- Fit within the build volume\n- Are assigned to an enabled extruder\n- Are not all set as modifier meshes"
  2174. msgstr "请检查设置并检查您的模型是否:"
  2175. "- 适合构建体积"
  2176. "- 分配给了已启用的挤出器"
  2177. "- 尚未全部设置为修改器网格"
  2178. msgctxt "@label"
  2179. msgid "Please select any upgrades made to this UltiMaker Original"
  2180. msgstr "请选择适用于 UltiMaker Original 的升级文件"
  2181. msgctxt "@description"
  2182. msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise"
  2183. msgstr "请登录以获取经验证适用于 UltiMaker Cura Enterprise 的插件和材料"
  2184. msgctxt "@info:tooltip"
  2185. msgid "Please sign in to your UltiMaker account to allow sending non-anonymous data."
  2186. msgstr "请登录您的 UltiMaker 账户以允许发送非匿名数据。"
  2187. msgctxt "@action:button"
  2188. msgid "Please sync the material profiles with your printers before starting to print."
  2189. msgstr "请在开始打印之前将材料配置文件与您的打印机同步。"
  2190. msgctxt "@info"
  2191. msgid "Please update your printer's firmware to manage the queue remotely."
  2192. msgstr "请及时更新打印机固件以远程管理打印队列。"
  2193. msgctxt "@info:status"
  2194. msgid "Please wait until the current job has been sent."
  2195. msgstr "请等待当前作业完成发送。"
  2196. msgctxt "@title:window"
  2197. msgid "Plugin License Agreement"
  2198. msgstr "插件许可协议"
  2199. msgctxt "@button"
  2200. msgid "Plugin license agreement"
  2201. msgstr "插件许可协议"
  2202. msgctxt "@backuplist:label"
  2203. msgid "Plugins"
  2204. msgstr "插件"
  2205. msgctxt "@button"
  2206. msgid "Plugins"
  2207. msgstr "插件"
  2208. msgctxt "@label Description for application dependency"
  2209. msgid "Polygon clipping library"
  2210. msgstr "多边形剪辑库"
  2211. msgctxt "@label Description for application component"
  2212. msgid "Polygon packing library, developed by Prusa Research"
  2213. msgstr "Prusa Research 开发的多边形打包库"
  2214. msgctxt "@item:inmenu"
  2215. msgid "Post Processing"
  2216. msgstr "后期处理"
  2217. msgctxt "@title:window"
  2218. msgid "Post Processing Plugin"
  2219. msgstr "后期处理插件"
  2220. msgctxt "@label"
  2221. msgid "Post Processing Scripts"
  2222. msgstr "后期处理脚本"
  2223. msgctxt "@button"
  2224. msgid "Pre-heat"
  2225. msgstr "预热"
  2226. msgctxt "@item:inmenu"
  2227. msgid "Prepare"
  2228. msgstr "准备"
  2229. msgctxt "@label:MonitorStatus"
  2230. msgid "Preparing..."
  2231. msgstr "初始化中..."
  2232. msgctxt "@label:status"
  2233. msgid "Preparing..."
  2234. msgstr "正在准备..."
  2235. msgctxt "@label"
  2236. msgid "Preset printers"
  2237. msgstr "预设打印机"
  2238. msgctxt "@button"
  2239. msgid "Preview"
  2240. msgstr "预览"
  2241. msgctxt "@item:inmenu"
  2242. msgid "Preview"
  2243. msgstr "预览"
  2244. msgctxt "@tooltip"
  2245. msgid "Prime Tower"
  2246. msgstr "装填塔"
  2247. msgctxt "@action:button"
  2248. msgid "Print"
  2249. msgstr "打印"
  2250. msgctxt "@action:inmenu menubar:edit"
  2251. msgid "Print After"
  2252. msgstr "打印后"
  2253. msgctxt "@action:inmenu menubar:edit"
  2254. msgid "Print Before"
  2255. msgstr "打印前"
  2256. msgctxt "@label"
  2257. msgid "Print Selected Model With:"
  2258. msgid_plural "Print Selected Models With:"
  2259. msgstr[0] "打印所选模型:"
  2260. msgctxt "@label %1 is filled in with the name of an extruder"
  2261. msgid "Print Selected Model with %1"
  2262. msgid_plural "Print Selected Models with %1"
  2263. msgstr[0] "用 %1 打印所选模型"
  2264. msgctxt "@label"
  2265. msgid "Print as support"
  2266. msgstr "打印为支撑"
  2267. msgctxt "@info:title"
  2268. msgid "Print error"
  2269. msgstr "打印错误"
  2270. msgctxt "@message"
  2271. msgid "Print in Progress"
  2272. msgstr "正在进行打印"
  2273. msgctxt "@info:status"
  2274. msgid "Print job queue is full. The printer can't accept a new job."
  2275. msgstr "打印作业队列已满。打印机无法接受新作业。"
  2276. msgctxt "@info:status"
  2277. msgid "Print job was successfully sent to the printer."
  2278. msgstr "打印作业已成功发送到打印机。"
  2279. msgctxt "@label"
  2280. msgid "Print jobs"
  2281. msgstr "打印作业"
  2282. msgctxt "@label:button"
  2283. msgid "Print jobs"
  2284. msgstr "打印作业"
  2285. msgctxt "@action:button Preceded by 'Ready to'."
  2286. msgid "Print over network"
  2287. msgstr "通过网络打印"
  2288. msgctxt "@properties:tooltip"
  2289. msgid "Print over network"
  2290. msgstr "通过网络打印"
  2291. msgctxt "@title:window"
  2292. msgid "Print over network"
  2293. msgstr "通过网络打印"
  2294. msgctxt "@label"
  2295. msgid "Print settings"
  2296. msgstr "打印设置"
  2297. msgctxt "@label shown when we load a Gcode file"
  2298. msgid "Print setup disabled. G-code file can not be modified."
  2299. msgstr "打印设置已禁用。无法修改 G code 文件。"
  2300. msgctxt "@action:button Preceded by 'Ready to'."
  2301. msgid "Print via USB"
  2302. msgstr "通过 USB 联机打印"
  2303. msgctxt "@info:tooltip"
  2304. msgid "Print via USB"
  2305. msgstr "通过 USB 联机打印"
  2306. msgctxt "@action:button"
  2307. msgid "Print via cloud"
  2308. msgstr "通过云打印"
  2309. msgctxt "@properties:tooltip"
  2310. msgid "Print via cloud"
  2311. msgstr "通过云打印"
  2312. msgctxt "@action:label"
  2313. msgid "Print with"
  2314. msgstr "打印方式"
  2315. msgctxt "@title:tab"
  2316. msgid "Printer"
  2317. msgstr "打印机"
  2318. msgctxt "@title:window"
  2319. msgid "Printer Address"
  2320. msgstr "打印机网络地址"
  2321. msgctxt "@action:label"
  2322. msgid "Printer Group"
  2323. msgstr "打印机组"
  2324. msgctxt "@title:label"
  2325. msgid "Printer Settings"
  2326. msgstr "打印机设置"
  2327. msgctxt "@label"
  2328. msgid "Printer control"
  2329. msgstr "打印机控制"
  2330. msgctxt "@label:MonitorStatus"
  2331. msgid "Printer does not accept commands"
  2332. msgstr "打印机不接受命令"
  2333. msgctxt "@label"
  2334. msgid "Printer name"
  2335. msgstr "打印机名称"
  2336. msgctxt "@label"
  2337. msgid "Printer selection"
  2338. msgstr "打印机选择"
  2339. msgctxt "@action:label"
  2340. msgid "Printer settings"
  2341. msgstr "打印机设置"
  2342. msgctxt "@info:tooltip"
  2343. msgid "Printer settings will be updated to match the settings saved with the project."
  2344. msgstr "打印机设置将更新,以便与项目一起保存的设置相一致。"
  2345. msgctxt "@title:tab"
  2346. msgid "Printers"
  2347. msgstr "打印机"
  2348. msgctxt "info:status"
  2349. msgid "Printers added from Digital Factory:"
  2350. msgstr "从 Digital Factory 添加的打印机:"
  2351. msgctxt "@text Asking the user whether printers are missing in a list."
  2352. msgid "Printers missing?"
  2353. msgstr "缺少打印机?"
  2354. msgctxt "@title:label"
  2355. msgid "Printhead Settings"
  2356. msgstr "打印头设置"
  2357. msgctxt "@label:status"
  2358. msgid "Printing"
  2359. msgstr "打印"
  2360. msgctxt "@label"
  2361. msgid "Printing Time"
  2362. msgstr "打印时间"
  2363. msgctxt "@label:MonitorStatus"
  2364. msgid "Printing..."
  2365. msgstr "打印中..."
  2366. msgctxt "@label"
  2367. msgid "Privacy"
  2368. msgstr "隐私"
  2369. msgctxt "@button"
  2370. msgid "Processing"
  2371. msgstr "正在处理中"
  2372. msgctxt "@info:status"
  2373. msgid "Processing Layers"
  2374. msgstr "正在处理层"
  2375. msgctxt "@label"
  2376. msgid "Profile"
  2377. msgstr "配置文件"
  2378. msgctxt "@title:column"
  2379. msgid "Profile"
  2380. msgstr "配置文件"
  2381. msgctxt "@label"
  2382. msgid "Profile author"
  2383. msgstr "配置文件作者"
  2384. msgctxt "@info:status"
  2385. msgid "Profile is missing a quality type."
  2386. msgstr "配置文件缺少打印质量类型定义。"
  2387. msgctxt "@action:label"
  2388. msgid "Profile settings"
  2389. msgstr "配置文件设置"
  2390. msgctxt "@title:column"
  2391. msgid "Profile settings"
  2392. msgstr "配置文件设置"
  2393. msgctxt "@info:status"
  2394. msgid "Profile {0} has an unknown file type or is corrupted."
  2395. msgstr "配置 {0} 文件类型未知或已损坏。"
  2396. msgctxt "@backuplist:label"
  2397. msgid "Profiles"
  2398. msgstr "配置文件"
  2399. msgctxt "@label"
  2400. msgid "Profiles"
  2401. msgstr "配置文件"
  2402. msgctxt "@title:tab"
  2403. msgid "Profiles"
  2404. msgstr "配置文件"
  2405. msgctxt "@label"
  2406. msgid "Profiles compatible with active printer:"
  2407. msgstr "与处于活动状态的打印机兼容的配置文件:"
  2408. msgctxt "@label Description for application dependency"
  2409. msgid "Programming language"
  2410. msgstr "编程语言"
  2411. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  2412. msgid "Project file <filename>{0}</filename> contains an unknown machine type <message>{1}</message>. Cannot import the machine. Models will be imported instead."
  2413. msgstr "项目文件 <filename>{0}</filename> 包含未知机器类型 <message>{1}</message>。无法导入机器。将改为导入模型。"
  2414. msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
  2415. msgid "Project file <filename>{0}</filename> is corrupt: <message>{1}</message>."
  2416. msgstr "项目文件 <filename>{0}</filename> 损坏: <message>{1}</message>。"
  2417. msgctxt "@info:error Don't translate the XML tag <filename>!"
  2418. msgid "Project file <filename>{0}</filename> is made using profiles that are unknown to this version of UltiMaker Cura."
  2419. msgstr "项目文件 <filename>{0}</filename> 是用此 UltiMaker Cura 版本未识别的配置文件制作的。"
  2420. msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
  2421. msgid "Project file <filename>{0}</filename> is suddenly inaccessible: <message>{1}</message>."
  2422. msgstr "突然无法访问项目文件 <filename>{0}</filename>:<message>{1}</message>。"
  2423. msgctxt "@label"
  2424. msgid "Properties"
  2425. msgstr "属性"
  2426. msgctxt "@label"
  2427. msgid "PyQt version"
  2428. msgstr "PyQt 版本"
  2429. msgctxt "@Label Description for application dependency"
  2430. msgid "Python Error tracking library"
  2431. msgstr "Python 错误跟踪库"
  2432. msgctxt "@label Description for application dependency"
  2433. msgid "Python bindings for Clipper"
  2434. msgstr "Clipper 的 Python 绑定"
  2435. msgctxt "@label Description for application component"
  2436. msgid "Python bindings for libnest2d"
  2437. msgstr "libnest2d 的 Python 绑定"
  2438. msgctxt "@label"
  2439. msgid "Qt version"
  2440. msgstr "Qt 版本"
  2441. msgctxt "@info:status"
  2442. msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'."
  2443. msgstr "质量类型“{0}”与当前有效的机器定义“{1}”不兼容。"
  2444. msgctxt "@info:title"
  2445. msgid "Queue Full"
  2446. msgstr "队列已满"
  2447. msgctxt "@label"
  2448. msgid "Queued"
  2449. msgstr "已排队"
  2450. msgctxt "@info:button, %1 is the application name"
  2451. msgid "Quit %1"
  2452. msgstr "退出 %1"
  2453. msgctxt "@button"
  2454. msgid "Recommended"
  2455. msgstr "推荐"
  2456. msgctxt "@title:tab"
  2457. msgid "Recommended"
  2458. msgstr "推荐"
  2459. msgctxt "@label"
  2460. msgid "Recommended print settings"
  2461. msgstr "建议的打印设置"
  2462. msgctxt "@info %1 is the name of a profile"
  2463. msgid "Recommended settings (for <b>%1</b>) were altered."
  2464. msgstr "建议的设置(适用于 <b>%1</b>)已更改。"
  2465. msgctxt "@action:button"
  2466. msgid "Refresh"
  2467. msgstr "刷新"
  2468. msgctxt "@button"
  2469. msgid "Refresh"
  2470. msgstr "刷新"
  2471. msgctxt "@label"
  2472. msgid "Refresh"
  2473. msgstr "刷新"
  2474. msgctxt "@button"
  2475. msgid "Refresh List"
  2476. msgstr "刷新列表"
  2477. msgctxt "@button"
  2478. msgid "Refreshing..."
  2479. msgstr "正在刷新..."
  2480. msgctxt "@label"
  2481. msgid "Release Notes"
  2482. msgstr "版本说明"
  2483. msgctxt "@action:inmenu menubar:file"
  2484. msgid "Reload All Models"
  2485. msgstr "重新载入所有模型"
  2486. msgctxt "@text:window"
  2487. msgid "Remember my choice"
  2488. msgstr "记住我的选择"
  2489. msgctxt "@item:intext"
  2490. msgid "Removable Drive"
  2491. msgstr "可移动磁盘"
  2492. msgctxt "@action:button"
  2493. msgid "Remove"
  2494. msgstr "删除"
  2495. msgctxt "@action:button"
  2496. msgid "Remove printers"
  2497. msgstr "删除打印机"
  2498. msgctxt "@title:window"
  2499. msgid "Remove printers?"
  2500. msgstr "是否删除打印机?"
  2501. msgctxt "@action:button"
  2502. msgid "Rename"
  2503. msgstr "重命名"
  2504. msgctxt "@title:window"
  2505. msgid "Rename"
  2506. msgstr "重命名"
  2507. msgctxt "@title:window"
  2508. msgid "Rename Profile"
  2509. msgstr "重命名配置文件"
  2510. msgctxt "@action:inmenu menubar:help"
  2511. msgid "Report a &Bug"
  2512. msgstr "BUG 反馈(&B)"
  2513. msgctxt "@label:button"
  2514. msgid "Report a bug"
  2515. msgstr "报告错误"
  2516. msgctxt "@message:button"
  2517. msgid "Report a bug"
  2518. msgstr "报告错误"
  2519. msgctxt "@message:description"
  2520. msgid "Report a bug on UltiMaker Cura's issue tracker."
  2521. msgstr "在 UltiMaker Cura 问题跟踪器上报告错误。"
  2522. msgctxt "@label:status"
  2523. msgid "Requires configuration changes"
  2524. msgstr "需要更改配置"
  2525. msgctxt "@action:inmenu menubar:edit"
  2526. msgid "Reset All Model Positions"
  2527. msgstr "复位所有模型的位置"
  2528. msgctxt "@action:inmenu menubar:edit"
  2529. msgid "Reset All Model Transformations"
  2530. msgstr "复位所有模型的变动"
  2531. msgctxt "@info"
  2532. msgid "Reset to defaults."
  2533. msgstr "重置为默认值。"
  2534. msgctxt "@label"
  2535. msgid "Resolution"
  2536. msgstr "分辨率"
  2537. msgctxt "@button"
  2538. msgid "Restore"
  2539. msgstr "恢复"
  2540. msgctxt "@dialog:title"
  2541. msgid "Restore Backup"
  2542. msgstr "恢复备份"
  2543. msgctxt "@option:check"
  2544. msgid "Restore window position on start"
  2545. msgstr "恢复初始窗口位置"
  2546. msgctxt "@label"
  2547. msgid "Resume"
  2548. msgstr "恢复"
  2549. msgctxt "@label"
  2550. msgid "Resuming..."
  2551. msgstr "正在恢复..."
  2552. msgctxt "@label:status"
  2553. msgid "Resuming..."
  2554. msgstr "正在恢复..."
  2555. msgctxt "@tooltip"
  2556. msgid "Retractions"
  2557. msgstr "回抽"
  2558. msgctxt "@button"
  2559. msgid "Retry?"
  2560. msgstr "是否重试?"
  2561. msgctxt "@action:inmenu menubar:view"
  2562. msgid "Right Side View"
  2563. msgstr "右视图"
  2564. msgctxt "@info:tooltip"
  2565. msgid "Right View"
  2566. msgstr "右视图"
  2567. msgctxt "@label Description for application dependency"
  2568. msgid "Root Certificates for validating SSL trustworthiness"
  2569. msgstr "用于验证 SSL 可信度的根证书"
  2570. msgctxt "@info:title"
  2571. msgid "Safely Remove Hardware"
  2572. msgstr "安全移除硬件"
  2573. msgctxt "@button"
  2574. msgid "Safety datasheet"
  2575. msgstr "安全数据表"
  2576. msgctxt "@action:button"
  2577. msgid "Save"
  2578. msgstr "保存"
  2579. msgctxt "@option"
  2580. msgid "Save Cura project"
  2581. msgstr "保存 Cura 项目"
  2582. msgctxt "@option"
  2583. msgid "Save Cura project and .makerbot print file"
  2584. msgstr "保存 Cura 项目和 .makerbot 打印文件"
  2585. msgctxt "@option"
  2586. msgid "Save Cura project and .ufp print file"
  2587. msgstr "保存 Cura 项目和 .ufp 打印文件"
  2588. msgctxt "@title:window"
  2589. msgid "Save Custom Profile"
  2590. msgstr "保存自定义配置文件"
  2591. msgctxt "@title:window"
  2592. msgid "Save Project"
  2593. msgstr "保存项目"
  2594. msgctxt "@title:menu menubar:file"
  2595. msgid "Save Project..."
  2596. msgstr "保存项目..."
  2597. msgctxt "@action:button"
  2598. msgid "Save as new custom profile"
  2599. msgstr "另存为新自定义配置文件"
  2600. msgctxt "@action:button"
  2601. msgid "Save changes"
  2602. msgstr "保存更改"
  2603. msgctxt "@button"
  2604. msgid "Save new profile"
  2605. msgstr "保存新配置文件"
  2606. msgctxt "@action:button"
  2607. msgid "Save project"
  2608. msgstr "保存项目"
  2609. msgctxt "@text"
  2610. msgid "Save the .umm file on a USB stick."
  2611. msgstr "将 .umm文件保存到 U 盘。"
  2612. msgctxt "@action:button Preceded by 'Ready to'."
  2613. msgid "Save to Removable Drive"
  2614. msgstr "保存至可移动磁盘"
  2615. msgctxt "@item:inlistbox"
  2616. msgid "Save to Removable Drive {0}"
  2617. msgstr "保存到可移动磁盘 {0}"
  2618. msgctxt "@info:status"
  2619. msgid "Saved to Removable Drive {0} as {1}"
  2620. msgstr "保存到可移动磁盘 {0} :{1}"
  2621. msgctxt "@info:title"
  2622. msgid "Saving"
  2623. msgstr "正在保存"
  2624. msgctxt "@info:progress Don't translate the XML tags <filename>!"
  2625. msgid "Saving to Removable Drive <filename>{0}</filename>"
  2626. msgstr "保存到可移动磁盘 <filename> {0} </filename>"
  2627. msgctxt "@option:check"
  2628. msgid "Scale extremely small models"
  2629. msgstr "放大过小模型"
  2630. msgctxt "@option:check"
  2631. msgid "Scale large models"
  2632. msgstr "缩小过大模型"
  2633. msgctxt "@placeholder"
  2634. msgid "Search"
  2635. msgstr "搜索"
  2636. msgctxt "@info"
  2637. msgid "Search in the browser"
  2638. msgstr "在浏览器中搜索"
  2639. msgctxt "@label:textbox"
  2640. msgid "Search settings"
  2641. msgstr "搜索设置"
  2642. msgctxt "@action:inmenu menubar:edit"
  2643. msgid "Select All Models"
  2644. msgstr "选择所有模型"
  2645. msgctxt "@title:window"
  2646. msgid "Select Printer"
  2647. msgstr "选择打印机"
  2648. msgctxt "@title:window"
  2649. msgid "Select Settings to Customize for this model"
  2650. msgstr "选择对此模型的自定义设置"
  2651. msgctxt "@text"
  2652. msgid "Select and install material profiles optimised for your UltiMaker 3D printers."
  2653. msgstr "选择并安装针对您的 UltiMaker 3D 打印机经过优化的材料配置文件。"
  2654. msgctxt "@label"
  2655. msgid "Select configuration"
  2656. msgstr "选择配置"
  2657. msgctxt "@title:window"
  2658. msgid "Select custom firmware"
  2659. msgstr "选择自定义固件"
  2660. msgctxt "@option:check"
  2661. msgid "Select models when loaded"
  2662. msgstr "选择模型时加载"
  2663. msgctxt "@action:button"
  2664. msgid "Select settings"
  2665. msgstr "选择设置"
  2666. msgctxt "@action"
  2667. msgid "Select upgrades"
  2668. msgstr "选择升级"
  2669. msgctxt "@label"
  2670. msgid "Select your printer from the list below:"
  2671. msgstr "请从以下列表中选择您的打印机:"
  2672. msgctxt "@option:check"
  2673. msgid "Send (anonymous) print information"
  2674. msgstr "(匿名)发送打印信息"
  2675. msgctxt "@label"
  2676. msgid "Send G-code"
  2677. msgstr "发送 G-code"
  2678. msgctxt "@tooltip of G-code command input"
  2679. msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command."
  2680. msgstr "向连接的打印机发送自定义 G-code 命令。按“Enter”发送命令。"
  2681. msgctxt "@action:button"
  2682. msgid "Send crash report to UltiMaker"
  2683. msgstr "向 UltiMaker 发送错误报告"
  2684. msgctxt "@info:tooltip"
  2685. msgid "Send crash reports with your registered UltiMaker account name and the project name to UltiMaker Sentry. No actual model data is being send."
  2686. msgstr "将包含您注册的 UltiMaker 账户名和项目名称的崩溃报告发送到 UltiMaker Sentry。发送内容不包括实际模型数据。"
  2687. msgctxt "@info:tooltip"
  2688. msgid "Send crash reports without any personally identifiable information or models data to UltiMaker."
  2689. msgstr "将不带任何个人身份信息或模型数据的崩溃报告发送至 UltiMaker。"
  2690. msgctxt "@option:check"
  2691. msgid "Send engine crash reports"
  2692. msgstr "发送引擎崩溃报告"
  2693. msgctxt "@action:button"
  2694. msgid "Send report"
  2695. msgstr "发送报告"
  2696. msgctxt "@info:status"
  2697. msgid "Sending Print Job"
  2698. msgstr "发送打印作业"
  2699. msgctxt "@info:title"
  2700. msgid "Sending materials to printer"
  2701. msgstr "正在将材料发送到打印机"
  2702. msgctxt "@label Description for application dependency"
  2703. msgid "Serial communication library"
  2704. msgstr "串口通讯库"
  2705. msgctxt "@action:inmenu"
  2706. msgid "Set as Active Extruder"
  2707. msgstr "设为主要挤出机"
  2708. msgctxt "@title:column"
  2709. msgid "Setting"
  2710. msgstr "设置"
  2711. msgctxt "@title:tab"
  2712. msgid "Setting Visibility"
  2713. msgstr "设置可见性"
  2714. msgctxt "@info:progress"
  2715. msgid "Setting up preferences..."
  2716. msgstr "正在设置偏好设置..."
  2717. msgctxt "@info:progress"
  2718. msgid "Setting up scene..."
  2719. msgstr "正在设置场景..."
  2720. msgctxt "@action:label"
  2721. msgid "Setting visibility"
  2722. msgstr "设置可见性"
  2723. msgctxt "@label"
  2724. msgid "Settings"
  2725. msgstr "设置"
  2726. msgctxt "@title:tab"
  2727. msgid "Settings"
  2728. msgstr "设置"
  2729. msgctxt "@action:label"
  2730. msgid "Settings Loaded from UCP file"
  2731. msgstr "从 UCP 文件加载的设置"
  2732. msgctxt "@info:message Followed by a list of settings."
  2733. msgid "Settings have been changed to match the current availability of extruders:"
  2734. msgstr "已根据挤出机的当前可用性更改设置:"
  2735. msgctxt "@info:title"
  2736. msgid "Settings updated"
  2737. msgstr "设置已更新"
  2738. msgctxt "@text"
  2739. msgid "Share ideas and get help from 48,000+ users in the UltiMaker Community"
  2740. msgstr "在 UltiMaker 社区分享观点并获取 48,000 多名用户的帮助"
  2741. msgctxt "@label"
  2742. msgid "Shell"
  2743. msgstr "外壳"
  2744. msgctxt "@action:label"
  2745. msgid "Shell Thickness"
  2746. msgstr "外壳厚度"
  2747. msgctxt "@info:tooltip"
  2748. msgid "Should Cura check for updates when the program is started?"
  2749. msgstr "当 Cura 启动时,是否自动检查更新?"
  2750. msgctxt "@info:tooltip"
  2751. msgid "Should Cura open at the location it was closed?"
  2752. msgstr "Cura 是否应该在关闭的位置打开?"
  2753. msgctxt "@info:tooltip"
  2754. msgid "Should a prefix based on the printer name be added to the print job name automatically?"
  2755. msgstr "打印机名是否自动作为打印作业名称的前缀?"
  2756. msgctxt "@info:tooltip"
  2757. msgid "Should a summary be shown when saving a project file?"
  2758. msgstr "保存项目文件时是否显示摘要?"
  2759. msgctxt "@info:tooltip"
  2760. msgid "Should an automatic check for new plugins be done every time Cura is started? It is highly recommended that you do not disable this!"
  2761. msgstr "是否应在每次启动 Cura 时自动检查新插件?强烈建议您不要禁用此功能!"
  2762. msgctxt "@info:tooltip"
  2763. msgid "Should anonymous data about your print be sent to UltiMaker? Note, no models, IP addresses or other personally identifiable information is sent or stored."
  2764. msgstr "您愿意将关于您的打印数据以匿名形式发送到 UltiMaker 吗?注意:我们不会记录/发送任何模型、IP 地址或其他私人数据。"
  2765. msgctxt "@info:tooltip"
  2766. msgid "Should layer be forced into compatibility mode?"
  2767. msgstr "层视图要强制进入兼容模式吗?"
  2768. msgctxt "@info:tooltip"
  2769. msgid "Should models be scaled to the build volume if they are too large?"
  2770. msgstr "当模型的尺寸过大时,是否将模型自动缩小至成形空间体积?"
  2771. msgctxt "@info:tooltip"
  2772. msgid "Should models be selected after they are loaded?"
  2773. msgstr "模型是否应该在加载后被选中?"
  2774. msgctxt "@info:tooltip"
  2775. msgid "Should models on the platform be moved down to touch the build plate?"
  2776. msgstr "需要转动模型,使它们接触打印平台吗?"
  2777. msgctxt "@info:tooltip"
  2778. msgid "Should models on the platform be moved so that they no longer intersect?"
  2779. msgstr "需要移动平台上的模型,使它们不再相交吗?"
  2780. msgctxt "@info:tooltip"
  2781. msgid "Should opening files from the desktop or external applications open in the same instance of Cura?"
  2782. msgstr "应从桌面打开文件还是在同一 Cura 实例中打开外部应用程序?"
  2783. msgctxt "@info:tooltip"
  2784. msgid "Should slicing crashes be automatically reported to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored, unless you give explicit permission."
  2785. msgstr "切片崩溃是否会被自动报告给 Ultimaker?请注意,除非获得您的明确许可,否则我们不会发送或存储任何模型,IP 地址或其他个人身份信息。"
  2786. msgctxt "@info:tooltip"
  2787. msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?"
  2788. msgstr "是否应在清理构建板后再将新模型加载到单个 Cura 实例中?"
  2789. msgctxt "@info:tooltip"
  2790. msgid "Should the default zoom behavior of cura be inverted?"
  2791. msgstr "需要令 Cura 的默认缩放操作反转吗?"
  2792. msgctxt "@info:tooltip"
  2793. msgid "Should zooming move in the direction of the mouse?"
  2794. msgstr "是否跟随鼠标方向进行缩放?"
  2795. msgctxt "@label"
  2796. msgid "Show 5 Detailed Layers On Top"
  2797. msgstr "在顶部显示 5 层打印细节"
  2798. msgctxt "@action:inmenu menubar:help"
  2799. msgid "Show Configuration Folder"
  2800. msgstr "显示配置文件夹"
  2801. msgctxt "@button"
  2802. msgid "Show Custom"
  2803. msgstr "显示自定义"
  2804. msgctxt "@action:inmenu menubar:help"
  2805. msgid "Show Online &Documentation"
  2806. msgstr "显示在线文档(&D)"
  2807. msgctxt "@action:inmenu"
  2808. msgid "Show Online Troubleshooting"
  2809. msgstr "显示联机故障排除"
  2810. msgctxt "@label:checkbox"
  2811. msgid "Show all"
  2812. msgstr "显示全部"
  2813. msgctxt "@label"
  2814. msgid "Show all connected printers"
  2815. msgstr "显示所有连接的打印机"
  2816. msgctxt "@info:tooltip"
  2817. msgid "Show an icon and notifications in the system notification area."
  2818. msgstr "在系统通知区域中显示图标和通知。"
  2819. msgctxt "@info:tooltip"
  2820. msgid "Show caution message in g-code reader."
  2821. msgstr "在 G-code 读取器中显示警告信息。"
  2822. msgctxt "@action:button"
  2823. msgid "Show configuration folder"
  2824. msgstr "显示配置文件夹"
  2825. msgctxt "@action:button"
  2826. msgid "Show detailed crash report"
  2827. msgstr "显示详细的错误报告"
  2828. msgctxt "@action:button"
  2829. msgid "Show settings"
  2830. msgstr "显示设置"
  2831. msgctxt "@option:check"
  2832. msgid "Show summary dialog when saving project"
  2833. msgstr "保存项目时显示摘要对话框"
  2834. msgctxt "@tooltip:button"
  2835. msgid "Show your support for Cura with a donation."
  2836. msgstr "通过捐赠表达您对 Cura 的支持。"
  2837. msgctxt "@button"
  2838. msgid "Sign Out"
  2839. msgstr "注销"
  2840. msgctxt "@action:button"
  2841. msgid "Sign in"
  2842. msgstr "登录"
  2843. msgctxt "@button"
  2844. msgid "Sign in"
  2845. msgstr "登录"
  2846. msgctxt "@title:header"
  2847. msgid "Sign in"
  2848. msgstr "登录"
  2849. msgctxt "@info"
  2850. msgid "Sign in into UltiMaker Digital Factory"
  2851. msgstr "登录 UltiMaker Digital Factory"
  2852. msgctxt "@button"
  2853. msgid "Sign in to Digital Factory"
  2854. msgstr "登录 Digital Factory"
  2855. msgctxt "@label"
  2856. msgid "Sign in to the UltiMaker platform"
  2857. msgstr "登录 UltiMaker 平台"
  2858. msgctxt "@tooltip"
  2859. msgid "Skin"
  2860. msgstr "表层"
  2861. msgctxt "@action:button"
  2862. msgid "Skip"
  2863. msgstr "跳过"
  2864. msgctxt "@button"
  2865. msgid "Skip"
  2866. msgstr "跳过"
  2867. msgctxt "@tooltip"
  2868. msgid "Skirt"
  2869. msgstr "Skirt"
  2870. msgctxt "@button"
  2871. msgid "Slice"
  2872. msgstr "切片"
  2873. msgctxt "@option:check"
  2874. msgid "Slice automatically"
  2875. msgstr "自动切片"
  2876. msgctxt "@info:tooltip"
  2877. msgid "Slice automatically when changing settings."
  2878. msgstr "当设置被更改时自动进行切片。"
  2879. msgctxt "@message:title"
  2880. msgid "Slicing failed"
  2881. msgstr "切片失败"
  2882. msgctxt "@label:PrintjobStatus"
  2883. msgid "Slicing..."
  2884. msgstr "正在切片..."
  2885. msgctxt "@action:label"
  2886. msgid "Smoothing"
  2887. msgstr "平滑"
  2888. msgctxt "@label"
  2889. msgid "Solid"
  2890. msgstr "固体"
  2891. msgctxt "@item:inmenu"
  2892. msgid "Solid view"
  2893. msgstr "实体视图"
  2894. msgctxt "@label"
  2895. msgid "Some hidden settings use values different from their normal calculated value.\n\nClick to make these settings visible."
  2896. msgstr "一些隐藏设置正在使用有别于一般设置的计算值。"
  2897. "单击以使这些设置可见。"
  2898. msgctxt "@info:status"
  2899. msgid "Some of the packages used in the project file are currently not installed in Cura, this might produce undesirable print results. We highly recommend installing the all required packages from the Marketplace."
  2900. msgstr "Cura 目前未安装项目中使用的一些程序包,这可能产生不理想的打印效果。我们强烈建议从 Marketplace 安装所有必需包。"
  2901. msgctxt "@info:title"
  2902. msgid "Some required packages are not installed"
  2903. msgstr "一些必需程序包未安装"
  2904. msgctxt "@info %1 is the name of a profile"
  2905. msgid "Some setting-values defined in <b>%1</b> were overridden."
  2906. msgstr "在 <b>%1</b> 中定义的一些设置值已被覆盖。"
  2907. msgctxt "@tooltip"
  2908. msgid "Some setting/override values are different from the values stored in the profile.\n\nClick to open the profile manager."
  2909. msgstr "某些设置/重写值与存储在配置文件中的值不同。"
  2910. "点击打开配置文件管理器。"
  2911. msgctxt "@action:label"
  2912. msgid "Some settings from current profile were overwritten."
  2913. msgstr "当前配置文件的一些设置已经重写。"
  2914. msgctxt "@message"
  2915. msgid "Something unexpected happened when trying to log in, please try again."
  2916. msgstr "尝试登录时出现意外情况,请重试。"
  2917. msgctxt "@title:header"
  2918. msgid "Something went wrong when sending the materials to the printers."
  2919. msgstr "向打印机发送材料时出错。"
  2920. msgctxt "@label"
  2921. msgid "Something went wrong..."
  2922. msgstr "发生了错误..."
  2923. msgctxt "@label:listbox"
  2924. msgid "Speed"
  2925. msgstr "速度"
  2926. msgctxt "@action:inmenu"
  2927. msgid "Sponsor Cura"
  2928. msgstr "赞助 Cura"
  2929. msgctxt "@label:button"
  2930. msgid "Sponsor Cura"
  2931. msgstr "赞助 Cura"
  2932. msgctxt "@option:radio"
  2933. msgid "Stable and Beta releases"
  2934. msgstr "稳定版和测试版"
  2935. msgctxt "@option:radio"
  2936. msgid "Stable releases only"
  2937. msgstr "仅限稳定版"
  2938. msgctxt "@item:inlistbox"
  2939. msgid "Stanford Triangle Format"
  2940. msgstr "斯坦福三角格式"
  2941. msgctxt "@button"
  2942. msgid "Start"
  2943. msgstr "开始"
  2944. msgctxt "@action:button"
  2945. msgid "Start Build Plate Leveling"
  2946. msgstr "开始进行打印平台调平"
  2947. msgctxt "@title:label"
  2948. msgid "Start G-code"
  2949. msgstr "开始 G-code"
  2950. msgctxt "@label"
  2951. msgid "Start the slicing process"
  2952. msgstr "开始切片流程"
  2953. msgctxt "@label"
  2954. msgid "Starts"
  2955. msgstr "开始"
  2956. msgctxt "@text"
  2957. msgid "Streamline your workflow and customize your UltiMaker Cura experience with plugins contributed by our amazing community of users."
  2958. msgstr "使用由我们卓越的用户社区提供的插件,简化您的工作流程并自定义 UltiMaker Cura 体验。"
  2959. msgctxt "@label"
  2960. msgid "Strength"
  2961. msgstr "强度"
  2962. msgctxt "@info:status Don't translate the XML tag <filename>!"
  2963. msgid "Successfully exported material to <filename>%1</filename>"
  2964. msgstr "成功导出材料至: <filename>%1</filename>"
  2965. msgctxt "@info:status Don't translate the XML tag <filename>!"
  2966. msgid "Successfully imported material <filename>%1</filename>"
  2967. msgstr "成功导入材料 <filename>%1</filename>"
  2968. msgctxt "@info:status"
  2969. msgid "Successfully imported profile {0}."
  2970. msgstr "已成功导入配置文件 {0}。"
  2971. msgctxt "@action:label"
  2972. msgid "Suggested Material settings"
  2973. msgstr "推荐的材料设置"
  2974. msgctxt "@action:label"
  2975. msgid "Suggested Profile settings"
  2976. msgstr "推荐的配置文件设置"
  2977. msgctxt "@action:title"
  2978. msgid "Summary - Cura Project"
  2979. msgstr "摘要 - Cura 项目"
  2980. msgctxt "@action:title Don't translate 'Universal Cura Project'"
  2981. msgid "Summary - Open Universal Cura Project (UCP)"
  2982. msgstr "概要—打开 Universal Cura Project(UCP)"
  2983. msgctxt "@action:title Don't translate 'Universal Cura Project'"
  2984. msgid "Summary - Universal Cura Project"
  2985. msgstr "概要—Universal Cura Project"
  2986. msgctxt "@label"
  2987. msgid "Support"
  2988. msgstr "支持"
  2989. msgctxt "@tooltip"
  2990. msgid "Support"
  2991. msgstr "支撑"
  2992. msgctxt "@label"
  2993. msgid "Support Blocker"
  2994. msgstr "支撑拦截器"
  2995. msgctxt "@tooltip"
  2996. msgid "Support Infill"
  2997. msgstr "支撑填充"
  2998. msgctxt "@tooltip"
  2999. msgid "Support Interface"
  3000. msgstr "支撑接触面"
  3001. msgctxt "@action:label"
  3002. msgid "Support Type"
  3003. msgstr "支撑类型"
  3004. msgctxt "@label Description for application dependency"
  3005. msgid "Support library for faster math"
  3006. msgstr "高速运算支持库"
  3007. msgctxt "@label Description for application component"
  3008. msgid "Support library for file metadata and streaming"
  3009. msgstr "用于文件元数据和流媒体的支持库"
  3010. msgctxt "@label Description for application component"
  3011. msgid "Support library for handling 3MF files"
  3012. msgstr "用于处理 3MF 文件的支持库"
  3013. msgctxt "@label Description for application dependency"
  3014. msgid "Support library for handling STL files"
  3015. msgstr "用于处理 STL 文件的支持库"
  3016. msgctxt "@label Description for application dependency"
  3017. msgid "Support library for handling triangular meshes"
  3018. msgstr "用于处理三角网格的支持库"
  3019. msgctxt "@label Description for application dependency"
  3020. msgid "Support library for scientific computing"
  3021. msgstr "科学计算支持库"
  3022. msgctxt "@label Description for application dependency"
  3023. msgid "Support library for system keyring access"
  3024. msgstr "支持系统密钥环访问库"
  3025. msgctxt "@action:button"
  3026. msgid "Sync"
  3027. msgstr "同步"
  3028. msgctxt "@button"
  3029. msgid "Sync"
  3030. msgstr "同步"
  3031. msgctxt "@title:header"
  3032. msgid "Sync material profiles via USB"
  3033. msgstr "通过 USB 同步材料配置文件"
  3034. msgctxt "@action:button"
  3035. msgid "Sync materials"
  3036. msgstr "同步材料"
  3037. msgctxt "@button"
  3038. msgid "Sync materials with USB"
  3039. msgstr "使用 USB 同步材料"
  3040. msgctxt "@title:header"
  3041. msgid "Sync materials with printers"
  3042. msgstr "匹配材料和打印机"
  3043. msgctxt "@title:window"
  3044. msgid "Sync materials with printers"
  3045. msgstr "匹配材料和打印机"
  3046. msgctxt "@action:button"
  3047. msgid "Sync with Printers"
  3048. msgstr "与打印机同步"
  3049. msgctxt "@button"
  3050. msgid "Syncing"
  3051. msgstr "正在同步"
  3052. msgctxt "@info:generic"
  3053. msgid "Syncing..."
  3054. msgstr "正在同步..."
  3055. msgctxt "@title:groupbox"
  3056. msgid "System information"
  3057. msgstr "系统信息"
  3058. msgctxt "@button"
  3059. msgid "Technical datasheet"
  3060. msgstr "技术数据表"
  3061. msgctxt "@info:tooltip"
  3062. msgid "The amount of smoothing to apply to the image."
  3063. msgstr "要应用到图像的平滑量。"
  3064. msgctxt "@text"
  3065. msgid "The annealing profile requires post-processing in an oven after the print is finished. This profile retains the dimensional accuracy of the printed part after annealing and improves strength, stiffness, and thermal resistance."
  3066. msgstr "退火轮廓需要在打印完成后在烘箱中进行后处理。这种轮廓可在退火后保留打印部件的尺寸精度,提高强度、刚度和耐热性。"
  3067. msgctxt "@label"
  3068. msgid "The assigned printer, %1, requires the following configuration change:"
  3069. msgid_plural "The assigned printer, %1, requires the following configuration changes:"
  3070. msgstr[0] "分配的打印机 %1 需要以下配置更改:"
  3071. msgctxt "@error:file_size"
  3072. msgid "The backup exceeds the maximum file size."
  3073. msgstr "备份超过了最大文件大小。"
  3074. msgctxt "@text"
  3075. msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy."
  3076. msgstr "平衡配置旨在在生产力、表面质量、机械性能和尺寸精度之間取得平衡。"
  3077. msgctxt "@info:tooltip"
  3078. msgid "The base height from the build plate in millimeters."
  3079. msgstr "距离打印平台的底板高度,以毫米为单位。"
  3080. msgctxt "@info:status"
  3081. msgid "The build volume height has been reduced due to the value of the \"Print Sequence\" setting to prevent the gantry from colliding with printed models."
  3082. msgstr "由于“打印序列”设置的值,成形空间体积高度已被减少,以防止十字轴与打印模型相冲突。"
  3083. msgctxt "@status"
  3084. msgid "The cloud connection is currently unavailable. Please check your internet connection."
  3085. msgstr "云连接当前不可用。请检查您的 Internet 连接。"
  3086. msgctxt "@status"
  3087. msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer."
  3088. msgstr "云连接当前不可用。请登录以连接到云打印机。"
  3089. msgctxt "@status"
  3090. msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet."
  3091. msgstr "云打印机离线。请检查打印机是否已开启并连接到 Internet。"
  3092. msgctxt "@tooltip"
  3093. msgid "The colour of the material in this extruder."
  3094. msgstr "该挤出机中材料的颜色。"
  3095. msgctxt "@tooltip"
  3096. msgid "The configuration of this extruder is not allowed, and prohibits slicing."
  3097. msgstr "不允许此挤出器的配置并禁止切片。"
  3098. msgctxt "@label"
  3099. msgid "The configurations are not available because the printer is disconnected."
  3100. msgstr "该配置不可用,因为打印机已断开连接。"
  3101. msgctxt "@tooltip"
  3102. msgid "The current temperature of the heated bed."
  3103. msgstr "热床当前温度。"
  3104. msgctxt "@tooltip"
  3105. msgid "The current temperature of this hotend."
  3106. msgstr "该热端的当前温度。"
  3107. msgctxt "@info:tooltip"
  3108. msgid "The depth in millimeters on the build plate"
  3109. msgstr "打印平台深度,以毫米为单位"
  3110. msgctxt "@text"
  3111. msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction."
  3112. msgstr "草稿配置文件用于打印初始原型和概念验证,可大大缩短打印时间。"
  3113. msgctxt "@text"
  3114. msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances."
  3115. msgstr "工程參数是设计來打印較高精度和較小公差的功能性原型和实际使用零件。"
  3116. msgctxt "@label"
  3117. msgid "The extruder train to use for printing the support. This is used in multi-extrusion."
  3118. msgstr "用于打印支撑的挤出机组。 用于多重挤出。"
  3119. msgctxt "@label Don't translate the XML tag <filename>!"
  3120. msgid "The file <filename>{0}</filename> already exists. Are you sure you want to overwrite it?"
  3121. msgstr "文件 <filename>{0}</filename> 已存在。您确定要覆盖它吗?"
  3122. msgctxt "@label"
  3123. msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements."
  3124. msgstr "新打印机出厂配备的固件完全可以正常使用,但新版本往往具有更多的新功能和改进。"
  3125. msgctxt "@info:backup_failed"
  3126. msgid "The following error occurred while trying to restore a Cura backup:"
  3127. msgstr "尝试恢复 Cura 备份时出现以下错误:"
  3128. msgctxt "@label"
  3129. msgid "The following packages can not be installed because of an incompatible Cura version:"
  3130. msgstr "由于 Cura 版本不兼容,无法安装以下程序包:"
  3131. msgctxt "@label"
  3132. msgid "The following packages will be added:"
  3133. msgstr "将添加以下程序包:"
  3134. msgctxt "@label"
  3135. msgid "The following printers in your account have been added in Cura:"
  3136. msgstr "您帐户中的以下打印机已添加到 Cura 中:"
  3137. msgctxt "@title:header"
  3138. msgid "The following printers will receive the new material profiles:"
  3139. msgstr "以下打印机将收到新的材料配置文件:"
  3140. msgctxt "@info:tooltip"
  3141. msgid "The following script is active:"
  3142. msgid_plural "The following scripts are active:"
  3143. msgstr[0] "以下脚本处于活动状态:"
  3144. msgctxt "@label"
  3145. msgid "The following settings define the strength of your part."
  3146. msgstr "以下设置定义零件的强度。"
  3147. msgctxt "@info:status"
  3148. msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura."
  3149. msgstr "突出显示的区域指示缺少或多余的表面。修复模型,并再次在 Cura 中打开。"
  3150. msgctxt "@tooltip"
  3151. msgid "The material in this extruder."
  3152. msgstr "该挤出机中的材料。"
  3153. msgctxt "@label:label Ultimaker Marketplace is a brand name, don't translate"
  3154. msgid "The material package associated with the Cura project could not be found on the Ultimaker Marketplace. Use the partial material profile definition stored in the Cura project file at your own risk."
  3155. msgstr "在 Ultimaker Marketplace 上找不到与 Cura 项目相关的材料包。使用存储在 Cura 项目文件中的部分材料配置文件定义,风险自负。"
  3156. msgctxt "@info:tooltip"
  3157. msgid "The maximum distance of each pixel from \"Base.\""
  3158. msgstr "每个像素与底板的最大距离"
  3159. msgctxt "@label (%1 is a number)"
  3160. msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?"
  3161. msgstr "新的灯丝直径被设置为%1毫米,这与当前的挤出机不兼容。你想继续吗?"
  3162. msgctxt "@tooltip"
  3163. msgid "The nozzle inserted in this extruder."
  3164. msgstr "该挤出机所使用的喷嘴。"
  3165. msgctxt "@label"
  3166. msgid "The pattern of the infill material of the print:\n\nFor quick prints of non functional model choose line, zig zag or lightning infill.\n\nFor functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n\nFor functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid."
  3167. msgstr "打印的填充材料的图案:"
  3168. "对于非功能模型快速打印,请选择线条、锯齿状或闪电型填充。 "
  3169. "对于承压不太大的功能性零件,我们建议使用网格、三角形或三角形与六边形组合图案。"
  3170. "对于在多个方向上需要高强度承受力的功能性 3D 打印,请使用立方体、立方体细分、四分之一立方体、八面体和螺旋形。"
  3171. msgctxt "@info:tooltip"
  3172. msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image."
  3173. msgstr "穿透 1 毫米厚的打印件的光线百分比。降低此值将增大图像暗区中的对比度并减小图像亮区中的对比度。"
  3174. msgctxt "@label:label Ultimaker Marketplace is a brand name, don't translate"
  3175. msgid "The plugin associated with the Cura project could not be found on the Ultimaker Marketplace. As the plugin may be required to slice the project it might not be possible to correctly slice the file."
  3176. msgstr "在 Ultimaker Marketplace 上找不到与 Cura 项目关联的插件。由于可能需要插件对项目进行切片,因此可能无法正确切片文件。"
  3177. msgctxt "@info:title"
  3178. msgid "The print job was successfully submitted"
  3179. msgstr "打印作业已成功提交"
  3180. msgctxt "@label"
  3181. msgid "The printer %1 is assigned, but the job contains an unknown material configuration."
  3182. msgstr "已向打印机 %1 分配作业,但作业包含未知的材料配置。"
  3183. msgctxt "@label"
  3184. msgid "The printer at this address has not responded yet."
  3185. msgstr "该网络地址的打印机尚未响应。"
  3186. msgctxt "@label"
  3187. msgid "The printer at this address has not yet responded."
  3188. msgstr "该网络地址的打印机尚未响应。"
  3189. msgctxt "@info:status"
  3190. msgid "The printer is not connected."
  3191. msgstr "尚未连接到打印机。"
  3192. msgctxt "@label"
  3193. msgid "The printer(s) below cannot be connected because they are part of a group"
  3194. msgstr "无法连接到下列打印机,因为这些打印机已在组中"
  3195. msgctxt "@message"
  3196. msgid "The provided state is not correct."
  3197. msgstr "所提供的状态不正确。"
  3198. msgctxt "@text:window"
  3199. msgid "The release notes could not be opened."
  3200. msgstr "无法打开版本说明。"
  3201. msgctxt "@text:error"
  3202. msgid "The response from Digital Factory appears to be corrupted."
  3203. msgstr "来自 Digital Factory 的响应似乎已损坏。"
  3204. msgctxt "@text:error"
  3205. msgid "The response from Digital Factory is missing important information."
  3206. msgstr "来自 Digital Factory 的响应缺少重要信息。"
  3207. msgctxt "@tooltip"
  3208. msgid "The target temperature of the heated bed. The bed will heat up or cool down towards this temperature. If this is 0, the bed heating is turned off."
  3209. msgstr "热床的目标温度。热床将加热或冷却至此温度。若设置为 0,则不使用热床。"
  3210. msgctxt "@tooltip"
  3211. msgid "The target temperature of the hotend. The hotend will heat up or cool down towards this temperature. If this is 0, the hotend heating is turned off."
  3212. msgstr "热端的目标温度。 热端将加热或冷却至此温度。 如果目标温度为 0,则热端加热将关闭。"
  3213. msgctxt "@tooltip of temperature input"
  3214. msgid "The temperature to pre-heat the bed to."
  3215. msgstr "热床的预热温度。"
  3216. msgctxt "@tooltip of temperature input"
  3217. msgid "The temperature to pre-heat the hotend to."
  3218. msgstr "热端的预热温度。"
  3219. msgctxt "@text"
  3220. msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality."
  3221. msgstr "视觉配置文件用于打印视觉原型和模型,可实现出色的视觉效果和表面质量。"
  3222. msgctxt "@info:tooltip"
  3223. msgid "The width in millimeters on the build plate"
  3224. msgstr "构建板宽度,以毫米为单位"
  3225. msgctxt "@label: Please keep the asterix, it's to indicate that a restart is needed."
  3226. msgid "Theme*:"
  3227. msgstr "主题*:"
  3228. msgctxt "@info:status"
  3229. msgid "There are no file formats available to write with!"
  3230. msgstr "没有可进行写入的文件格式!"
  3231. msgctxt "@label"
  3232. msgid "There are no print jobs in the queue. Slice and send a job to add one."
  3233. msgstr "队列中无打印任务。可通过切片和发送添加任务。"
  3234. msgctxt "@tooltip"
  3235. msgid "There are no profiles matching the configuration of this extruder."
  3236. msgstr "没有与此挤出器的配置匹配的配置文件。"
  3237. msgctxt "@info:status"
  3238. msgid "There is no active printer yet."
  3239. msgstr "尚无处于活动状态的打印机。"
  3240. msgctxt "@label"
  3241. msgid "There is no printer found over your network."
  3242. msgstr "未找到网络内打印机。"
  3243. msgctxt "@error"
  3244. msgid "There is no workspace yet to write. Please add a printer first."
  3245. msgstr "没有可写入的工作区。请先添加打印机。"
  3246. msgctxt "@info:backup_status"
  3247. msgid "There was an error trying to restore your backup."
  3248. msgstr "尝试恢复您的备份时出错。"
  3249. msgctxt "@info:backup_status"
  3250. msgid "There was an error while creating your backup."
  3251. msgstr "创建您的备份时出错。"
  3252. msgctxt "@info:backup_status"
  3253. msgid "There was an error while uploading your backup."
  3254. msgstr "上传您的备份时出错。"
  3255. msgctxt "@label"
  3256. msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile."
  3257. msgstr "此配置不可用,因为 %1 未被识别。请访问 %2 以下载正确的材料配置文件。"
  3258. msgctxt "@text:window"
  3259. msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?"
  3260. msgstr "这是 Cura Universal 项目文件。您想将其作为 Cura 项目或 Cura Universal Project 打开还是从中导入模型?"
  3261. msgctxt "@text:window"
  3262. msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?"
  3263. msgstr "这是一个 Cura 项目文件。您想将其作为一个项目打开还是从中导入模型?"
  3264. msgctxt "@label"
  3265. msgid "This material is linked to %1 and shares some of its properties."
  3266. msgstr "此材料与 %1 相关联,并共享其某些属性。"
  3267. msgctxt "@label"
  3268. msgid "This package will be installed after restarting."
  3269. msgstr "这个包将在重新启动后安装。"
  3270. msgctxt "@label"
  3271. msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group."
  3272. msgstr "由于是未知打印机或不是组内主机,无法添加该打印机。"
  3273. msgctxt "info:status"
  3274. msgid "This printer is not linked to the Digital Factory:"
  3275. msgid_plural "These printers are not linked to the Digital Factory:"
  3276. msgstr[0] "这些打印机未链接到 Digital Factory:"
  3277. msgctxt "@status"
  3278. msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection."
  3279. msgstr "此打印机未链接到您的帐户。请访问 Ultimaker Digital Factory 以建立连接。"
  3280. msgctxt "@label"
  3281. msgid "This printer is not set up to host a group of printers."
  3282. msgstr "这台打印机未设置为运行一组打印机。"
  3283. msgctxt "@label"
  3284. msgid "This printer is the host for a group of %1 printers."
  3285. msgstr "这台打印机是一组共 %1 台打印机的主机。"
  3286. msgctxt "@info:status Don't translate the XML tags <filename>!"
  3287. msgid "This profile <filename>{0}</filename> contains incorrect data, could not import it."
  3288. msgstr "此配置文件 <filename>{0}</filename> 包含错误数据,无法导入。"
  3289. msgctxt "@action:label"
  3290. msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below."
  3291. msgstr "此配置文件使用打印机指定的默认值,因此在下面的列表中没有此设置项。"
  3292. msgctxt "@label"
  3293. msgid "This project contains materials or plugins that are currently not installed in Cura.<br/>Install the missing packages and reopen the project."
  3294. msgstr "此项目包含 Cura 目前未安装的材料或插件。<br/>请安装缺失程序包,然后重新打开项目。"
  3295. msgctxt "@label"
  3296. msgid "This setting has a value that is different from the profile.\n\nClick to restore the value of the profile."
  3297. msgstr "此设置的值与配置文件不同。"
  3298. "单击以恢复配置文件的值。"
  3299. msgctxt "@item:tooltip"
  3300. msgid "This setting has been hidden by the active machine and will not be visible."
  3301. msgstr "该设置已被当前机器所隐藏并不可见。"
  3302. msgctxt "@item:tooltip %1 is list of setting names"
  3303. msgid "This setting has been hidden by the value of %1. Change the value of that setting to make this setting visible."
  3304. msgid_plural "This setting has been hidden by the values of %1. Change the values of those settings to make this setting visible."
  3305. msgstr[0] "该设置已被 %1 的值所隐藏,若需显示,更改此值可使设置项重新可见。"
  3306. msgctxt "@label"
  3307. msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders."
  3308. msgstr "此设置始终在所有挤出机之间共享。在此处更改它将改变所有挤出机的值。"
  3309. msgctxt "@label"
  3310. msgid "This setting is normally calculated, but it currently has an absolute value set.\n\nClick to restore the calculated value."
  3311. msgstr "此设置通常可被自动计算,但其当前已被绝对定义。"
  3312. "单击以恢复自动计算的值。"
  3313. msgctxt "@label"
  3314. msgid "This setting is not used because all the settings that it influences are overridden."
  3315. msgstr "未使用此设置,因为受其影响的所有设置均已覆盖。"
  3316. msgctxt "@label"
  3317. msgid "This setting is resolved from conflicting extruder-specific values:"
  3318. msgstr "此设置与挤出器特定值不同:"
  3319. msgctxt "@tooltip Don't translate 'Universal Cura Project'"
  3320. msgid "This setting may not perform well while exporting to Universal Cura Project, Users are asked to add it at their own risk."
  3321. msgstr "导出为 Universal Cura Project 项目时,此设置可能无法正常运行,请用户自行承担添加此设置的风险。"
  3322. msgctxt "@tooltip Don't translate 'Universal Cura Project'"
  3323. msgid "This setting may not perform well while exporting to Universal Cura Project. Users are asked to add it at their own risk."
  3324. msgstr "导出为 Universal Cura Project 项目时,此设置可能无法正常运行。请用户自行承担添加此设置的风险。"
  3325. msgctxt "@info:warning"
  3326. msgid "This version is not intended for production use. If you encounter any issues, please report them on our GitHub page, mentioning the full version {self.getVersion()}"
  3327. msgstr "此版本不用作生产用途。如果您遇到任何问题,请在我们的 GitHub 页面报告,并注明完整版本 {self.getVersion()}"
  3328. msgctxt "@label"
  3329. msgid "Time estimation"
  3330. msgstr "预计时间"
  3331. msgctxt "@message"
  3332. msgid "Timeout when authenticating with the account server."
  3333. msgstr "使用帐户服务器进行身份验证超时。"
  3334. msgctxt "@text"
  3335. msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura."
  3336. msgstr "要自动将材料配置文件与连接到 Digital Factory 的所有打印机同步,您需要登录 Cura。"
  3337. msgctxt "info:status"
  3338. msgid "To establish a connection, please visit the {website_link}"
  3339. msgstr "要建立连接,请访问 {website_link}"
  3340. msgctxt "@label"
  3341. msgid "To make sure your prints will come out great, you can now adjust your buildplate. When you click 'Move to Next Position' the nozzle will move to the different positions that can be adjusted."
  3342. msgstr "为了确保打印质量出色,您现在可以开始调整您的打印平台。当您点击「移动到下一个位置」时,喷嘴将移动到可以调节的不同位置。"
  3343. msgctxt "@label"
  3344. msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer."
  3345. msgstr "欲通过网络向打印机发送打印请求,请确保您的打印机已通过网线或 WIFI 连接至网络。若不能连接 Cura 与打印机,亦可通过使用 USB 设备将 G-code 文件传输到打印机。"
  3346. msgctxt "@message {printer_name} is replaced with the name of the printer"
  3347. msgid "To remove {printer_name} permanently, visit {digital_factory_link}"
  3348. msgstr "要永久删除 {printer_name},请访问 {digital_factory_link}"
  3349. msgctxt "@action:inmenu"
  3350. msgid "Toggle Full Screen"
  3351. msgstr "切换全屏"
  3352. msgctxt "@label"
  3353. msgid "Top / Bottom"
  3354. msgstr "顶 / 底层"
  3355. msgctxt "@action:inmenu menubar:view"
  3356. msgid "Top View"
  3357. msgstr "顶视图"
  3358. msgctxt "@info:tooltip"
  3359. msgid "Top View"
  3360. msgstr "顶视图"
  3361. msgctxt "@label"
  3362. msgid "Total print time"
  3363. msgstr "总打印时间"
  3364. msgctxt "@action:tooltip"
  3365. msgid "Track the print in Ultimaker Digital Factory"
  3366. msgstr "在 Ultimaker Digital Factory 中跟踪打印"
  3367. msgctxt "@item:inlistbox"
  3368. msgid "Translucency"
  3369. msgstr "半透明"
  3370. msgctxt "@tooltip"
  3371. msgid "Travel"
  3372. msgstr "移动"
  3373. msgctxt "@label"
  3374. msgid "Travels"
  3375. msgstr "空驶"
  3376. msgctxt "@info:backup_failed"
  3377. msgid "Tried to restore a Cura backup that is higher than the current version."
  3378. msgstr "尝试从高于当前版本的 Cura 备份恢复。"
  3379. msgctxt "@info:backup_failed"
  3380. msgid "Tried to restore a Cura backup without having proper data or meta data."
  3381. msgstr "尝试在没有适当数据或元数据的情况下恢复Cura备份。"
  3382. msgctxt "@button"
  3383. msgid "Troubleshooting"
  3384. msgstr "故障排除"
  3385. msgctxt "@label"
  3386. msgid "Troubleshooting"
  3387. msgstr "故障排除"
  3388. msgctxt "@button"
  3389. msgid "Try again"
  3390. msgstr "再试一次"
  3391. msgctxt "@action:label"
  3392. msgid "Type"
  3393. msgstr "类型"
  3394. msgctxt "@label"
  3395. msgid "Type"
  3396. msgstr "类型"
  3397. msgctxt "@item:inmenu"
  3398. msgid "USB printing"
  3399. msgstr "USB 联机打印"
  3400. msgctxt "@button"
  3401. msgid "UltiMaker Account"
  3402. msgstr "UltiMaker 帐户"
  3403. msgctxt "@info"
  3404. msgid "UltiMaker Certified Material"
  3405. msgstr "UltiMaker 认证材料"
  3406. msgctxt "@text:window"
  3407. msgid "UltiMaker Cura collects anonymous data in order to improve the print quality and user experience. Below is an example of all the data that is shared:"
  3408. msgstr "为了改善打印质量和用户体验,UltiMaker Cura 会收集匿名数据。以下是所有数据分享的示例:"
  3409. msgctxt "@item:inlistbox"
  3410. msgid "UltiMaker Format Package"
  3411. msgstr "UltiMaker 格式包"
  3412. msgctxt "@info"
  3413. msgid "UltiMaker Verified Package"
  3414. msgstr "UltiMaker 验证包"
  3415. msgctxt "@info"
  3416. msgid "UltiMaker Verified Plug-in"
  3417. msgstr "UltiMaker 验证插件"
  3418. msgctxt "@button"
  3419. msgid "UltiMaker printer"
  3420. msgstr "UltiMaker 打印机"
  3421. msgctxt "@label:button"
  3422. msgid "UltiMaker support"
  3423. msgstr "UltiMaker 支持"
  3424. msgctxt "info:name"
  3425. msgid "Ultimaker Digital Factory"
  3426. msgstr "Ultimaker Digital Factory"
  3427. msgctxt "@info:status"
  3428. msgid "Unable to add the profile."
  3429. msgstr "无法添加配置文件。"
  3430. msgctxt "@info:status"
  3431. msgid "Unable to find a location within the build volume for all objects"
  3432. msgstr "无法在成形空间体积内放下全部模型"
  3433. msgctxt "@info:plugin_failed"
  3434. msgid "Unable to find local EnginePlugin server executable for: {self._plugin_id}"
  3435. msgstr "无法为以下对象找到本地 EnginePlugin 服务器可执行文件:{self._plugin_id}"
  3436. msgctxt "@info:plugin_failed"
  3437. msgid "Unable to kill running EnginePlugin: {self._plugin_id}\nAccess is denied."
  3438. msgstr "无法关闭正在运行的 EnginePlugin:{self._plugin_id}"
  3439. "访问被拒。"
  3440. msgctxt "@info"
  3441. msgid "Unable to reach the UltiMaker account server."
  3442. msgstr "无法连接 UltiMaker 帐户服务器。"
  3443. msgctxt "@text"
  3444. msgid "Unable to read example data file."
  3445. msgstr "无法读取示例数据文件。"
  3446. msgctxt "@info:title"
  3447. msgid "Unable to slice"
  3448. msgstr "无法切片"
  3449. msgctxt "@label:PrintjobStatus"
  3450. msgid "Unable to slice"
  3451. msgstr "无法切片"
  3452. msgctxt "@info:status"
  3453. msgid "Unable to slice because the prime tower or prime position(s) are invalid."
  3454. msgstr "无法切片(原因:主塔或主位置无效)。"
  3455. msgctxt "@info:status"
  3456. msgid "Unable to slice because there are objects associated with disabled Extruder %s."
  3457. msgstr "无法切片,因为存在与已禁用挤出机 %s 相关联的对象。"
  3458. msgctxt "@info:status"
  3459. msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}"
  3460. msgstr "因部分特定模型设置而无法切片。 以下设置在一个或多个模型上存在错误: {error_labels}"
  3461. msgctxt "@info:status"
  3462. msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration."
  3463. msgstr "无法使用当前材料进行切片,因为该材料与所选机器或配置不兼容。"
  3464. msgctxt "@info:status"
  3465. msgid "Unable to slice with the current settings. The following settings have errors: {0}"
  3466. msgstr "无法使用当前设置进行切片。以下设置存在错误:{0}"
  3467. msgctxt "@info"
  3468. msgid "Unable to start a new sign in process. Check if another sign in attempt is still active."
  3469. msgstr "无法开始新的登录过程。请检查是否仍在尝试进行另一登录。"
  3470. msgctxt "@info:error"
  3471. msgid "Unable to write to file: {0}"
  3472. msgstr "无法写入文件:{0}"
  3473. msgctxt "@label:status"
  3474. msgid "Unavailable"
  3475. msgstr "不可用"
  3476. msgctxt "@label"
  3477. msgid "Unavailable printer"
  3478. msgstr "不可用的打印机"
  3479. msgctxt "@action:inmenu menubar:edit"
  3480. msgid "Ungroup Models"
  3481. msgstr "拆分模型"
  3482. msgctxt "@button"
  3483. msgid "Uninstall"
  3484. msgstr "卸载"
  3485. msgctxt "@title:column Unit of measurement"
  3486. msgid "Unit"
  3487. msgstr "单位"
  3488. msgctxt "@item:inlistbox"
  3489. msgid "Universal Cura Project"
  3490. msgstr "Universal Cura Project"
  3491. msgctxt "@action:description Don't translate 'Universal Cura Project'"
  3492. msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing."
  3493. msgstr "Universal Cura Project 文件可以在不同的 3D 打印机上打印,同时保留位置数据和选定的设置。导出时,构建板上显示的所有模型都将包含其当前位置,方向和比例。您还可以选择需要保留哪个推料器预设置或模型预设置,以确保正确打印。"
  3494. msgctxt "@label Description for development tool"
  3495. msgid "Universal build system configuration"
  3496. msgstr "通用构建系统配置"
  3497. msgctxt "@label"
  3498. msgid "Unknown"
  3499. msgstr "未知"
  3500. msgctxt "@label unknown version of Cura"
  3501. msgid "Unknown"
  3502. msgstr "未知"
  3503. msgctxt "@label:property"
  3504. msgid "Unknown Author"
  3505. msgstr "未知作者"
  3506. msgctxt "@label:property"
  3507. msgid "Unknown Package"
  3508. msgstr "未知包"
  3509. msgctxt "@error:send"
  3510. msgid "Unknown error code when uploading print job: {0}"
  3511. msgstr "上传打印作业时出现未知错误代码:{0}"
  3512. msgctxt "@text"
  3513. msgid "Unknown error."
  3514. msgstr "未知错误。"
  3515. msgctxt "@label"
  3516. msgid "Unlink Material"
  3517. msgstr "解绑材料"
  3518. msgctxt "@label:status"
  3519. msgid "Unreachable"
  3520. msgstr "无法连接"
  3521. msgctxt "@label"
  3522. msgid "Untitled"
  3523. msgstr "未命名"
  3524. msgctxt "@text Print job name"
  3525. msgid "Untitled"
  3526. msgstr "未命名"
  3527. msgctxt "@button"
  3528. msgid "Update"
  3529. msgstr "更新"
  3530. msgctxt "@action"
  3531. msgid "Update Firmware"
  3532. msgstr "更新固件"
  3533. msgctxt "@title"
  3534. msgid "Update Firmware"
  3535. msgstr "更新固件"
  3536. msgctxt "@action:ComboBox Update/override existing profile"
  3537. msgid "Update existing"
  3538. msgstr "更新已有配置"
  3539. msgctxt "@action:tooltip"
  3540. msgid "Update profile with current settings/overrides"
  3541. msgstr "使用当前设置 / 重写值更新配置文件"
  3542. msgctxt "@action:button"
  3543. msgid "Update profile."
  3544. msgstr "更新配置文件。"
  3545. msgctxt "@info:title"
  3546. msgid "Update your printer"
  3547. msgstr "请更新升级打印机"
  3548. msgctxt "@label"
  3549. msgid "Updates"
  3550. msgstr "更新"
  3551. msgctxt "@label"
  3552. msgid "Updating firmware."
  3553. msgstr "更新固件中..."
  3554. msgctxt "@button"
  3555. msgid "Updating..."
  3556. msgstr "正在更新..."
  3557. msgctxt "@action:button"
  3558. msgid "Upload custom Firmware"
  3559. msgstr "上传自定义固件"
  3560. msgctxt "@info:status"
  3561. msgid "Uploading print job to printer."
  3562. msgstr "正在将打印作业上传至打印机。"
  3563. msgctxt "@info:backup_status"
  3564. msgid "Uploading your backup..."
  3565. msgstr "正在上传您的备份..."
  3566. msgctxt "@option:check"
  3567. msgid "Use a single instance of Cura"
  3568. msgstr "使用单个 Cura 实例"
  3569. msgctxt "@label"
  3570. msgid "Use glue for better adhesion with this material combination."
  3571. msgstr "用胶粘和此材料组合以产生更好的附着。"
  3572. msgctxt "@label"
  3573. msgid "User Agreement"
  3574. msgstr "用户协议"
  3575. msgctxt "@label Description for application dependency"
  3576. msgid "Utility functions, including an image loader"
  3577. msgstr "实用程序函数,包括图像加载器"
  3578. msgctxt "@label Description for application dependency"
  3579. msgid "Utility library, including Voronoi generation"
  3580. msgstr "实用程序库,包括 Voronoi 图生成"
  3581. msgctxt "@title:column"
  3582. msgid "Value"
  3583. msgstr "值"
  3584. msgctxt "@button"
  3585. msgid "View printers in Digital Factory"
  3586. msgstr "在 Digital Factory 中查看打印机"
  3587. msgctxt "@label"
  3588. msgid "View type"
  3589. msgstr "查看类型"
  3590. msgctxt "@label link to technical assistance"
  3591. msgid "View user manuals online"
  3592. msgstr "查看联机用户手册"
  3593. msgctxt "@label"
  3594. msgid "Viewport behavior"
  3595. msgstr "视区行为"
  3596. msgctxt "@action:inmenu"
  3597. msgid "Visible Settings"
  3598. msgstr "可见设置"
  3599. msgctxt "@button"
  3600. msgid "Visit plug-in website"
  3601. msgstr "访问插件网站"
  3602. msgctxt "@tooltip:button"
  3603. msgid "Visit the UltiMaker website."
  3604. msgstr "访问 UltiMaker 网站。"
  3605. msgctxt "@label"
  3606. msgid "Visual"
  3607. msgstr "视觉"
  3608. msgctxt "@label"
  3609. msgid "Waiting for"
  3610. msgstr "等待"
  3611. msgctxt "@label"
  3612. msgid "Waiting for Cloud response"
  3613. msgstr "等待云响应"
  3614. msgctxt "@button"
  3615. msgid "Waiting for new printers"
  3616. msgstr "等待新打印机"
  3617. msgctxt "@button"
  3618. msgid "Want more?"
  3619. msgstr "想要更多?"
  3620. msgctxt "@info:title"
  3621. msgid "Warning"
  3622. msgstr "警告"
  3623. msgctxt "@info:status"
  3624. msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type."
  3625. msgstr "警告:配置文件不可见,因为其质量类型“{0}”对当前配置不可用。请切换到可使用此质量类型的材料/喷嘴组合。"
  3626. msgctxt "@text:window"
  3627. msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one."
  3628. msgstr "我们已经在您选择的文件中找到一个或多个 G-Code 文件。您一次只能打开一个 G-Code 文件。若需打开 G-Code 文件,请仅选择一个。"
  3629. msgctxt "@text:window"
  3630. msgid "We have found one or more project file(s) within the files you have selected. You can open only one project file at a time. We suggest to only import models from those files. Would you like to proceed?"
  3631. msgstr "我们已经在您所选择的文件中找到一个或多个项目文件,但一次只能打开一个项目文件。我们建议只从那些文件中导入模型而不打开项目。您要继续操作吗?"
  3632. msgctxt "@info"
  3633. msgid "Webcam feeds for cloud printers cannot be viewed from UltiMaker Cura. Click \"Manage printer\" to visit Ultimaker Digital Factory and view this webcam."
  3634. msgstr "无法从 UltiMaker Cura 中查看云打印机的网络摄像头的反馈数据。请单击“管理打印机”以访问 UltiMaker Digital Factory 并查看此网络摄像头。"
  3635. msgctxt "@button"
  3636. msgid "Website"
  3637. msgstr "网站"
  3638. msgctxt "@label"
  3639. msgid "What printer would you like to setup?"
  3640. msgstr "您要设置什么打印机?"
  3641. msgctxt "@info:tooltip"
  3642. msgid "What type of camera navigation should be used?"
  3643. msgstr "应使用什么类型的导航相机?"
  3644. msgctxt "@info:tooltip"
  3645. msgid "What type of camera rendering should be used?"
  3646. msgstr "应使用哪种类型的摄像头进行渲染?"
  3647. msgctxt "@action:inmenu menubar:help"
  3648. msgid "What's New"
  3649. msgstr "新增功能"
  3650. msgctxt "@label"
  3651. msgid "What's New"
  3652. msgstr "新增功能"
  3653. msgctxt "@title:window"
  3654. msgid "What's New"
  3655. msgstr "新增功能"
  3656. msgctxt "@info:tooltip"
  3657. msgid "When checking for updates, check for both stable and for beta releases."
  3658. msgstr "在检查更新时,同时检查稳定版和测试版。"
  3659. msgctxt "@info:tooltip"
  3660. msgid "When checking for updates, only check for stable releases."
  3661. msgstr "在检查更新时,只检查稳定版。"
  3662. msgctxt "@info:tooltip"
  3663. msgid "When you have made changes to a profile and switched to a different one, a dialog will be shown asking whether you want to keep your modifications or not, or you can choose a default behaviour and never show that dialog again."
  3664. msgstr "当您对配置文件进行更改并切换到其他配置文件时将显示一个对话框,询问您是否要保留修改。您也可以选择一个默认行为并令其不再显示该对话框。"
  3665. msgctxt "@button"
  3666. msgid "Why do I need to sync material profiles?"
  3667. msgstr "为什么需要同步材料配置文件?"
  3668. msgctxt "@action:label"
  3669. msgid "Width (mm)"
  3670. msgstr "宽度 (mm)"
  3671. msgctxt "@label"
  3672. msgid "X (Width)"
  3673. msgstr "X (宽度)"
  3674. msgctxt "@label"
  3675. msgid "X max"
  3676. msgstr "X 最大值"
  3677. msgctxt "@label"
  3678. msgid "X min"
  3679. msgstr "X 最小值"
  3680. msgctxt "@item:inlistbox"
  3681. msgid "X-Ray view"
  3682. msgstr "透视视图"
  3683. msgctxt "@label"
  3684. msgid "X/Y"
  3685. msgstr "X/Y"
  3686. msgctxt "@item:inlistbox"
  3687. msgid "X3D File"
  3688. msgstr "X3D 文件"
  3689. msgctxt "@label"
  3690. msgid "Y (Depth)"
  3691. msgstr "Y (深度)"
  3692. msgctxt "@label"
  3693. msgid "Y max"
  3694. msgstr "Y 最大值"
  3695. msgctxt "@label"
  3696. msgid "Y min"
  3697. msgstr "Y 最小值"
  3698. msgctxt "@info"
  3699. msgid "Yes"
  3700. msgstr "是"
  3701. msgctxt "@label"
  3702. msgid "You are about to remove all printers from Cura. This action cannot be undone.\nAre you sure you want to continue?"
  3703. msgstr "您即将从 Cura 中删除所有打印机。此操作无法撤消。"
  3704. "是否确定继续?"
  3705. msgctxt "@label"
  3706. msgid "You are about to remove {0} printer from Cura. This action cannot be undone.\nAre you sure you want to continue?"
  3707. msgid_plural "You are about to remove {0} printers from Cura. This action cannot be undone.\nAre you sure you want to continue?"
  3708. msgstr[0] "您即将从 Cura 中删除 {0} 台打印机。此操作无法撤消。\n是否确实要继续?"
  3709. msgctxt "@info:status"
  3710. msgid "You are attempting to connect to a printer that is not running UltiMaker Connect. Please update the printer to the latest firmware."
  3711. msgstr "您正在尝试连接未运行 UltiMaker Connect 的打印机。请将打印机升级到最新固件。"
  3712. msgctxt "@info:status"
  3713. msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host."
  3714. msgstr "您正在尝试连接到 {0},但它不是组中的主机。您可以访问网页,将其配置为组主机。"
  3715. msgctxt "@empty_state"
  3716. msgid "You don't have any backups currently. Use the 'Backup Now' button to create one."
  3717. msgstr "您目前没有任何备份。使用“立即备份”按钮创建一个备份。"
  3718. msgctxt "@text:window, %1 is a profile name"
  3719. msgid "You have customized some profile settings. Would you like to Keep these changed settings after switching profiles? Alternatively, you can discard the changes to load the defaults from '%1'."
  3720. msgstr "您已经自定义了若干配置文件设置。"
  3721. "是否要在切换配置文件后保留这些更改的设置?"
  3722. "或者,也可舍弃更改以从“%1”加载默认值。"
  3723. msgctxt "@label"
  3724. msgid "You need to accept the license to install the package"
  3725. msgstr "需要接受许可证才能安装该程序包"
  3726. msgctxt "@info:generic"
  3727. msgid "You need to quit and restart {} before changes have effect."
  3728. msgstr "需要退出并重新启动 {},然后更改才能生效。"
  3729. msgctxt "@dialog:info"
  3730. msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?"
  3731. msgstr "您需要重新启动 Cura 才能恢复备份。您要立即关闭 Cura 吗?"
  3732. msgctxt "@info:status"
  3733. msgid "You will receive a confirmation via email when the print job is approved"
  3734. msgstr "打印作业获得批准后,您将收到电子邮件确认信息"
  3735. msgctxt "@info:backup_status"
  3736. msgid "Your backup has finished uploading."
  3737. msgstr "您的备份已完成上传。"
  3738. msgctxt "@action:label"
  3739. msgid "Your current settings match the selected profile."
  3740. msgstr "您当前的设置与选定的配置文件相匹配。"
  3741. msgctxt "@info"
  3742. msgid "Your new printer will automatically appear in Cura"
  3743. msgstr "新打印机将自动出现在 Cura 中"
  3744. msgctxt "@info:status"
  3745. msgid "Your printer <b>{printer_name}</b> could be connected via cloud.\n Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory"
  3746. msgstr "未能通过云连接您的打印机 <b>{printer_name}</b>。"
  3747. "只需将您的打印机连接到 Digital Factory,即可随时随地管理您的打印作业队列并监控您的打印结果"
  3748. msgctxt "@label"
  3749. msgid "Z"
  3750. msgstr "Z"
  3751. msgctxt "@label"
  3752. msgid "Z (Height)"
  3753. msgstr "Z (高度)"
  3754. msgctxt "@label Description for application dependency"
  3755. msgid "ZeroConf discovery library"
  3756. msgstr "ZeroConf 发现库"
  3757. msgctxt "@action:button"
  3758. msgid "Zoom toward mouse direction"
  3759. msgstr "跟随鼠标方向缩放"
  3760. msgctxt "@info:tooltip"
  3761. msgid "Zooming towards the mouse is not supported in the orthographic perspective."
  3762. msgstr "正交透视不支持通过鼠标进行缩放。"
  3763. msgctxt "@text Placeholder for the username if it has been deleted"
  3764. msgid "deleted user"
  3765. msgstr "已删除的用户"
  3766. msgctxt "@item:inlistbox"
  3767. msgid "glTF Binary"
  3768. msgstr "glTF 二进制"
  3769. msgctxt "@item:inlistbox"
  3770. msgid "glTF Embedded JSON"
  3771. msgstr "glTF 嵌入式 JSON"
  3772. msgctxt "@label"
  3773. msgid "max"
  3774. msgstr "最大"
  3775. msgctxt "@label"
  3776. msgid "min"
  3777. msgstr "最小"
  3778. msgctxt "@label"
  3779. msgid "mm"
  3780. msgstr "mm"
  3781. msgctxt "@label"
  3782. msgid "s"
  3783. msgstr "s"
  3784. msgctxt "@info:status"
  3785. msgid "today"
  3786. msgstr "今天"
  3787. msgctxt "@info:status"
  3788. msgid "tomorrow"
  3789. msgstr "明天"
  3790. msgctxt "@label"
  3791. msgid "version: %1"
  3792. msgstr "版本: %1"
  3793. msgctxt "@message {printer_name} is replaced with the name of the printer"
  3794. msgid "{printer_name} will be removed until the next account sync."
  3795. msgstr "将删除 {printer_name},直到下次帐户同步为止。"
  3796. msgctxt "@info:generic"
  3797. msgid "{} plugins failed to download"
  3798. msgstr "{} 个插件下载失败"
  3799. msgctxt "description"
  3800. msgid "Manages network connections to UltiMaker networked printers."
  3801. msgstr "管理与 UltiMaker 网络打印机的网络连接。"
  3802. msgctxt "name"
  3803. msgid "UltiMaker Network Connection"
  3804. msgstr "UltiMaker 网络连接"
  3805. msgctxt "description"
  3806. msgid "Provides support for importing profiles from g-code files."
  3807. msgstr "提供了从 GCode 文件中导入配置文件的支持。"
  3808. msgctxt "name"
  3809. msgid "G-code Profile Reader"
  3810. msgstr "G-code 配置文件读取器"
  3811. msgctxt "description"
  3812. msgid "Provides a normal solid mesh view."
  3813. msgstr "提供一个基本的实体网格视图。"
  3814. msgctxt "name"
  3815. msgid "Solid View"
  3816. msgstr "实体视图"
  3817. msgctxt "description"
  3818. msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps"
  3819. msgstr "通过逐渐平滑流量来限制高流量跳变的 CuraEngine 插件"
  3820. msgctxt "name"
  3821. msgid "CuraEngineGradualFlow"
  3822. msgstr "CuraEngineGradualFlow"
  3823. msgctxt "description"
  3824. msgid "Provides support for reading 3MF files."
  3825. msgstr "提供对读取 3MF 格式文件的支持。"
  3826. msgctxt "name"
  3827. msgid "3MF Reader"
  3828. msgstr "3MF 读取器"
  3829. msgctxt "description"
  3830. msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
  3831. msgstr "接受 G-Code 并将其发送到一台打印机。 插件也可以更新固件。"
  3832. msgctxt "name"
  3833. msgid "USB printing"
  3834. msgstr "USB 联机打印"
  3835. msgctxt "description"
  3836. msgid "Checks for firmware updates."
  3837. msgstr "检查以进行固件更新。"
  3838. msgctxt "name"
  3839. msgid "Firmware Update Checker"
  3840. msgstr "固件更新检查程序"
  3841. msgctxt "description"
  3842. msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website."
  3843. msgstr "管理应用程序扩展,允许从 UltiMaker 网站浏览扩展。"
  3844. msgctxt "name"
  3845. msgid "Marketplace"
  3846. msgstr "市场"
  3847. msgctxt "description"
  3848. msgid "Backup and restore your configuration."
  3849. msgstr "备份和还原配置。"
  3850. msgctxt "name"
  3851. msgid "Cura Backups"
  3852. msgstr "Cura 备份"
  3853. msgctxt "description"
  3854. msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)."
  3855. msgstr "提供一种改变机器设置的方法(如构建体积、喷嘴大小等)。"
  3856. msgctxt "name"
  3857. msgid "Machine Settings Action"
  3858. msgstr "打印机设置操作"
  3859. msgctxt "description"
  3860. msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
  3861. msgstr "将配置从 Cura 2.5 版本升级至 2.6 版本。"
  3862. msgctxt "name"
  3863. msgid "Version Upgrade 2.5 to 2.6"
  3864. msgstr "版本自 2.5 升级到 2.6"
  3865. msgctxt "description"
  3866. msgid "Upgrades configurations from Cura 4.7 to Cura 4.8."
  3867. msgstr "将配置从 Cura 4.7 升级到 Cura 4.8。"
  3868. msgctxt "name"
  3869. msgid "Version Upgrade 4.7 to 4.8"
  3870. msgstr "将版本从 4.7 升级到 4.8"
  3871. msgctxt "description"
  3872. msgid "Upgrades configurations from Cura 4.4 to Cura 4.5."
  3873. msgstr "将配置从 Cura 4.4 升级至 Cura 4.5。"
  3874. msgctxt "name"
  3875. msgid "Version Upgrade 4.4 to 4.5"
  3876. msgstr "版本从 4.4 升级至 4.5"
  3877. msgctxt "description"
  3878. msgid "Upgrades configurations from Cura 3.0 to Cura 3.1."
  3879. msgstr "将配置从 Cura 3.0 版本升级至 3.1 版本。"
  3880. msgctxt "name"
  3881. msgid "Version Upgrade 3.0 to 3.1"
  3882. msgstr "版本自 3.0 升级到 3.1"
  3883. msgctxt "description"
  3884. msgid "Upgrades configurations from Cura 4.11 to Cura 4.12."
  3885. msgstr "将配置从 Cura 4.11 升级到 Cura 4.12。"
  3886. msgctxt "name"
  3887. msgid "Version Upgrade 4.11 to 4.12"
  3888. msgstr "版本从 4.11 升级到 4.12"
  3889. msgctxt "description"
  3890. msgid "Upgrades configurations from Cura 4.1 to Cura 4.2."
  3891. msgstr "请将配置从 Cura 4.1 升级至 Cura 4.2。"
  3892. msgctxt "name"
  3893. msgid "Version Upgrade 4.1 to 4.2"
  3894. msgstr "版本自 4.1 升级到 4.2"
  3895. msgctxt "description"
  3896. msgid "Upgrades configurations from Cura 2.6 to Cura 2.7."
  3897. msgstr "将配置从 Cura 2.6 版本升级至 2.7 版本。"
  3898. msgctxt "name"
  3899. msgid "Version Upgrade 2.6 to 2.7"
  3900. msgstr "版本自 2.6 升级到 2.7"
  3901. msgctxt "description"
  3902. msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2."
  3903. msgstr "将配置从 Cura 4.6.0 升级到 Cura 4.6.2。"
  3904. msgctxt "name"
  3905. msgid "Version Upgrade 4.6.0 to 4.6.2"
  3906. msgstr "版本从 4.6.0 升级到 4.6.2"
  3907. msgctxt "description"
  3908. msgid "Upgrades configurations from Cura 3.3 to Cura 3.4."
  3909. msgstr "从Cura 3.3升级到Cura 3.4。"
  3910. msgctxt "name"
  3911. msgid "Version Upgrade 3.3 to 3.4"
  3912. msgstr "版本升级3.3到3.4"
  3913. msgctxt "description"
  3914. msgid "Upgrades configurations from Cura 4.8 to Cura 4.9."
  3915. msgstr "将配置从 Cura 4.8 升级到 Cura 4.9。"
  3916. msgctxt "name"
  3917. msgid "Version Upgrade 4.8 to 4.9"
  3918. msgstr "版本从 4.8 升级到 4.9"
  3919. msgctxt "description"
  3920. msgid "Upgrades configurations from Cura 4.5 to Cura 4.6."
  3921. msgstr "将配置从 Cura 4.5 升级至 Cura 4.6。"
  3922. msgctxt "name"
  3923. msgid "Version Upgrade 4.5 to 4.6"
  3924. msgstr "版本从 4.5 升级至 4.6"
  3925. msgctxt "description"
  3926. msgid "Upgrades configurations from Cura 4.2 to Cura 4.3."
  3927. msgstr "请将配置从 Cura 4.2 升级至 Cura 4.3。"
  3928. msgctxt "name"
  3929. msgid "Version Upgrade 4.2 to 4.3"
  3930. msgstr "版本自 4.2 升级至 4.3"
  3931. msgctxt "description"
  3932. msgid "Upgrades configurations from Cura 3.2 to Cura 3.3."
  3933. msgstr "将配置从 Cura 3.2 版本升级至 3.3 版本。"
  3934. msgctxt "name"
  3935. msgid "Version Upgrade 3.2 to 3.3"
  3936. msgstr "版本自 3.2 升级到 3.3"
  3937. msgctxt "description"
  3938. msgid "Upgrades configurations from Cura 4.3 to Cura 4.4."
  3939. msgstr "将配置从 Cura 4.3 升级至 Cura 4.4。"
  3940. msgctxt "name"
  3941. msgid "Version Upgrade 4.3 to 4.4"
  3942. msgstr "版本自 4.3 升级至 4.4"
  3943. msgctxt "description"
  3944. msgid "Upgrades configurations from Cura 5.6 to Cura 5.7."
  3945. msgstr "将配置从 Cura 5.6 升级到 Cura 5.7。"
  3946. msgctxt "name"
  3947. msgid "Version Upgrade 5.6 to 5.7"
  3948. msgstr "升级版本 5.6 至 5.7"
  3949. msgctxt "description"
  3950. msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
  3951. msgstr "将配置从 Cura 2.1 版本升级至 2.2 版本。"
  3952. msgctxt "name"
  3953. msgid "Version Upgrade 2.1 to 2.2"
  3954. msgstr "版本自 2.1 升级到 2.2"
  3955. msgctxt "description"
  3956. msgid "Upgrades configurations from Cura 5.3 to Cura 5.4."
  3957. msgstr "将配置从 Cura 5.3 升级到 Cura 5.4。"
  3958. msgctxt "name"
  3959. msgid "Version Upgrade 5.3 to 5.4"
  3960. msgstr "版本 5.3 升级到 5.4"
  3961. msgctxt "description"
  3962. msgid "Upgrades configurations from Cura 4.9 to Cura 4.10."
  3963. msgstr "将配置从 Cura 4.9 升级到 Cura 4.10。"
  3964. msgctxt "name"
  3965. msgid "Version Upgrade 4.9 to 4.10"
  3966. msgstr "版本从 4.9 升级到 4.10"
  3967. msgctxt "description"
  3968. msgid "Upgrades configurations from Cura 2.7 to Cura 3.0."
  3969. msgstr "将配置从 Cura 2.7 版本升级至 3.0 版本。"
  3970. msgctxt "name"
  3971. msgid "Version Upgrade 2.7 to 3.0"
  3972. msgstr "版本自 2.7 升级到 3.0"
  3973. msgctxt "description"
  3974. msgid "Upgrades configurations from Cura 3.5 to Cura 4.0."
  3975. msgstr "将配置从 Cura 3.5 版本升级至 4.0 版本。"
  3976. msgctxt "name"
  3977. msgid "Version Upgrade 3.5 to 4.0"
  3978. msgstr "版本自 3.5 升级到 4.0"
  3979. msgctxt "description"
  3980. msgid "Upgrades configurations from Cura 5.2 to Cura 5.3."
  3981. msgstr "将配置从 Cura 5.2 版本升级至 5.3 版本。"
  3982. msgctxt "name"
  3983. msgid "Version Upgrade 5.2 to 5.3"
  3984. msgstr "版本自 5.2 升级到 5.3"
  3985. msgctxt "description"
  3986. msgid "Upgrades configurations from Cura 4.0 to Cura 4.1."
  3987. msgstr "将配置从 Cura 4.0 版本升级至 4.1 版本。"
  3988. msgctxt "name"
  3989. msgid "Version Upgrade 4.0 to 4.1"
  3990. msgstr "版本自 4.0 升级到 4.1"
  3991. msgctxt "description"
  3992. msgid "Upgrades configurations from Cura 4.13 to Cura 5.0."
  3993. msgstr "将配置从 Cura 4.13 升级至 Cura 5.0。"
  3994. msgctxt "name"
  3995. msgid "Version Upgrade 4.13 to 5.0"
  3996. msgstr "版本从 4.13 升级到 5.0"
  3997. msgctxt "description"
  3998. msgid "Upgrades configurations from Cura 3.4 to Cura 3.5."
  3999. msgstr "将配置从 Cura 3.4 版本升级至 3.5 版本。"
  4000. msgctxt "name"
  4001. msgid "Version Upgrade 3.4 to 3.5"
  4002. msgstr "版本自 3.4 升级到 3.5"
  4003. msgctxt "description"
  4004. msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
  4005. msgstr "将配置从 Cura 2.2 版本升级至 2.4 版本。"
  4006. msgctxt "name"
  4007. msgid "Version Upgrade 2.2 to 2.4"
  4008. msgstr "版本自 2.2 升级到 2.4"
  4009. msgctxt "description"
  4010. msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7."
  4011. msgstr "将配置从 Cura 4.6.2 升级到 Cura 4.7。"
  4012. msgctxt "name"
  4013. msgid "Version Upgrade 4.6.2 to 4.7"
  4014. msgstr "版本从 4.6.2 升级到 4.7"
  4015. msgctxt "description"
  4016. msgid "Upgrades configurations from Cura 5.4 to Cura 5.5."
  4017. msgstr "将配置从 Cura 5.4 升级到 Cura 5.5。"
  4018. msgctxt "name"
  4019. msgid "Version Upgrade 5.4 to 5.5"
  4020. msgstr "版本 5.4 升级到 5.5"
  4021. msgctxt "description"
  4022. msgid "Allows loading and displaying G-code files."
  4023. msgstr "允许加载和显示 G-code 文件。"
  4024. msgctxt "name"
  4025. msgid "G-code Reader"
  4026. msgstr "G-code 读取器"
  4027. msgctxt "description"
  4028. msgid "Submits anonymous slice info. Can be disabled through preferences."
  4029. msgstr "提交匿名切片信息。 可以通过偏好设置禁用。"
  4030. msgctxt "name"
  4031. msgid "Slice info"
  4032. msgstr "切片信息"
  4033. msgctxt "description"
  4034. msgid "Provides removable drive hotplugging and writing support."
  4035. msgstr "提供可移动磁盘热插拔和写入文件的支持。"
  4036. msgctxt "name"
  4037. msgid "Removable Drive Output Device Plugin"
  4038. msgstr "可移动磁盘输出设备插件"
  4039. msgctxt "description"
  4040. msgid "Creates an eraser mesh to block the printing of support in certain places"
  4041. msgstr "创建橡皮擦网格,以便阻止在某些位置打印支撑"
  4042. msgctxt "name"
  4043. msgid "Support Eraser"
  4044. msgstr "支持橡皮擦"
  4045. msgctxt "description"
  4046. msgid "Checks models and print configuration for possible printing issues and give suggestions."
  4047. msgstr "检查模型和打印配置,以了解潜在的打印问题并给出建议。"
  4048. msgctxt "name"
  4049. msgid "Model Checker"
  4050. msgstr "模型检查器"
  4051. msgctxt "description"
  4052. msgid "Provides a prepare stage in Cura."
  4053. msgstr "在 Cura 中提供准备阶段。"
  4054. msgctxt "name"
  4055. msgid "Prepare Stage"
  4056. msgstr "准备阶段"
  4057. msgctxt "description"
  4058. msgid "Provides the preview of sliced layerdata."
  4059. msgstr "提供切片层数据的预览。"
  4060. msgctxt "name"
  4061. msgid "Simulation View"
  4062. msgstr "仿真视图"
  4063. msgctxt "description"
  4064. msgid "Provides support for reading AMF files."
  4065. msgstr "提供对读取 AMF 文件的支持。"
  4066. msgctxt "name"
  4067. msgid "AMF Reader"
  4068. msgstr "AMF 读取器"
  4069. msgctxt "description"
  4070. msgid "Provides the X-Ray view."
  4071. msgstr "提供透视视图。"
  4072. msgctxt "name"
  4073. msgid "X-Ray View"
  4074. msgstr "透视视图"
  4075. msgctxt "description"
  4076. msgid "Provides a machine actions for updating firmware."
  4077. msgstr "为固件更新提供操作选项。"
  4078. msgctxt "name"
  4079. msgid "Firmware Updater"
  4080. msgstr "固件更新程序"
  4081. msgctxt "description"
  4082. msgid "Provides support for importing profiles from legacy Cura versions."
  4083. msgstr "支持从 Cura 旧版本导入配置文件。"
  4084. msgctxt "name"
  4085. msgid "Legacy Cura Profile Reader"
  4086. msgstr "旧版 Cura 配置文件读取器"
  4087. msgctxt "description"
  4088. msgid "Extension that allows for user created scripts for post processing"
  4089. msgstr "扩展程序(允许用户创建脚本进行后期处理)"
  4090. msgctxt "name"
  4091. msgid "Post Processing"
  4092. msgstr "后期处理"
  4093. msgctxt "description"
  4094. msgid "Logs certain events so that they can be used by the crash reporter"
  4095. msgstr "记录某些事件,以使其可供崩溃报告器使用"
  4096. msgctxt "name"
  4097. msgid "Sentry Logger"
  4098. msgstr "Sentry 日志记录"
  4099. msgctxt "description"
  4100. msgid "Provides support for writing MakerBot Format Packages."
  4101. msgstr "提供对写入 MakerBot 格式包的支持。"
  4102. msgctxt "name"
  4103. msgid "Makerbot Printfile Writer"
  4104. msgstr "Makerbot 打印文件编写器"
  4105. msgctxt "description"
  4106. msgid "Provides support for importing Cura profiles."
  4107. msgstr "提供了对导入 Cura 配置文件的支持。"
  4108. msgctxt "name"
  4109. msgid "Cura Profile Reader"
  4110. msgstr "Cura 配置文件读取器"
  4111. msgctxt "description"
  4112. msgid "Provides support for reading Ultimaker Format Packages."
  4113. msgstr "为读取 Ultimaker 格式包提供支持。"
  4114. msgctxt "name"
  4115. msgid "UFP Reader"
  4116. msgstr "UFP 读取器"
  4117. msgctxt "description"
  4118. msgid "Enables ability to generate printable geometry from 2D image files."
  4119. msgstr "支持从 2D 图像文件生成可打印几何模型的能力。"
  4120. msgctxt "name"
  4121. msgid "Image Reader"
  4122. msgstr "图像读取器"
  4123. msgctxt "description"
  4124. msgid "Provides the link to the CuraEngine slicing backend."
  4125. msgstr "提供 CuraEngine 切片后端的路径。"
  4126. msgctxt "name"
  4127. msgid "CuraEngine Backend"
  4128. msgstr "CuraEngine 后端"
  4129. msgctxt "description"
  4130. msgid "Writes g-code to a compressed archive."
  4131. msgstr "将 G-code 写入至压缩存档文件。"
  4132. msgctxt "name"
  4133. msgid "Compressed G-code Writer"
  4134. msgstr "压缩 G-code 写入器"
  4135. msgctxt "description"
  4136. msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)."
  4137. msgstr "为 Ultimaker 车床提供机器操作(例如车床调平向导、选择升级等)。"
  4138. msgctxt "name"
  4139. msgid "UltiMaker machine actions"
  4140. msgstr "UltiMaker 车床操作"
  4141. msgctxt "description"
  4142. msgid "Reads g-code from a compressed archive."
  4143. msgstr "从压缩存档文件读取 G-code。"
  4144. msgctxt "name"
  4145. msgid "Compressed G-code Reader"
  4146. msgstr "压缩 G-code 读取器"
  4147. msgctxt "description"
  4148. msgid "Provides a preview stage in Cura."
  4149. msgstr "在 Cura 中提供预览阶段。"
  4150. msgctxt "name"
  4151. msgid "Preview Stage"
  4152. msgstr "预览阶段"
  4153. msgctxt "description"
  4154. msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library."
  4155. msgstr "连接到 Digital Library,以允许 Cura 从 Digital Library 打开文件并将文件保存到其中。"
  4156. msgctxt "name"
  4157. msgid "Ultimaker Digital Library"
  4158. msgstr "Ultimaker Digital Library"
  4159. msgctxt "description"
  4160. msgid "Provides support for exporting Cura profiles."
  4161. msgstr "提供了对导出 Cura 配置文件的支持。"
  4162. msgctxt "name"
  4163. msgid "Cura Profile Writer"
  4164. msgstr "Cura 配置文件写入器"
  4165. msgctxt "description"
  4166. msgid "Provides support for reading X3D files."
  4167. msgstr "支持读取 X3D 文件。"
  4168. msgctxt "name"
  4169. msgid "X3D Reader"
  4170. msgstr "X3D 读取器"
  4171. msgctxt "description"
  4172. msgid "Provides support for reading model files."
  4173. msgstr "提供对读取模型文件的支持。"
  4174. msgctxt "name"
  4175. msgid "Trimesh Reader"
  4176. msgstr "Trimesh 阅读器"
  4177. msgctxt "description"
  4178. msgid "Provides a monitor stage in Cura."
  4179. msgstr "在 Cura 中提供监视阶段。"
  4180. msgctxt "name"
  4181. msgid "Monitor Stage"
  4182. msgstr "监视阶段"
  4183. msgctxt "description"
  4184. msgid "Provides the Per Model Settings."
  4185. msgstr "提供对每个模型的单独设置。"
  4186. msgctxt "name"
  4187. msgid "Per Model Settings Tool"
  4188. msgstr "单一模型设置工具"
  4189. msgctxt "description"
  4190. msgid "Provides capabilities to read and write XML-based material profiles."
  4191. msgstr "提供读取和写入基于 XML 的材料配置文件的功能。"
  4192. msgctxt "name"
  4193. msgid "Material Profiles"
  4194. msgstr "材料配置文件"
  4195. msgctxt "description"
  4196. msgid "Provides support for writing 3MF and UCP files."
  4197. msgstr "支持写为 3MF 和 UCP 文件。"
  4198. msgctxt "name"
  4199. msgid "3MF Writer"
  4200. msgstr "3MF 写入器"
  4201. msgctxt "description"
  4202. msgid "Provides support for writing Ultimaker Format Packages."
  4203. msgstr "为写入 Ultimaker 格式包提供支持。"
  4204. msgctxt "name"
  4205. msgid "UFP Writer"
  4206. msgstr "UFP 写入器"
  4207. msgctxt "description"
  4208. msgid "Writes g-code to a file."
  4209. msgstr "将 G-code 写入至文件。"
  4210. msgctxt "name"
  4211. msgid "G-code Writer"
  4212. msgstr "G-code 写入器"