cura.po 364 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295
  1. # Cura
  2. # Copyright (C) 2022 Ultimaker B.V.
  3. # This file is distributed under the same license as the Cura package.
  4. #
  5. msgid ""
  6. msgstr ""
  7. "Project-Id-Version: Cura 5.1\n"
  8. "Report-Msgid-Bugs-To: \n"
  9. "POT-Creation-Date: 2022-09-27 14:50+0200\n"
  10. "PO-Revision-Date: 2022-07-15 11:06+0200\n"
  11. "Last-Translator: \n"
  12. "Language-Team: \n"
  13. "Language: zh_CN\n"
  14. "MIME-Version: 1.0\n"
  15. "Content-Type: text/plain; charset=UTF-8\n"
  16. "Content-Transfer-Encoding: 8bit\n"
  17. "Plural-Forms: nplurals=1; plural=0;\n"
  18. "X-Generator: Poedit 3.1.1\n"
  19. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/PrintInformation.py:87
  20. msgctxt "@tooltip"
  21. msgid "Outer Wall"
  22. msgstr "外壁"
  23. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/PrintInformation.py:88
  24. msgctxt "@tooltip"
  25. msgid "Inner Walls"
  26. msgstr "内壁"
  27. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/PrintInformation.py:89
  28. msgctxt "@tooltip"
  29. msgid "Skin"
  30. msgstr "表层"
  31. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/PrintInformation.py:90
  32. msgctxt "@tooltip"
  33. msgid "Infill"
  34. msgstr "填充"
  35. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/PrintInformation.py:91
  36. msgctxt "@tooltip"
  37. msgid "Support Infill"
  38. msgstr "支撑填充"
  39. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/PrintInformation.py:92
  40. msgctxt "@tooltip"
  41. msgid "Support Interface"
  42. msgstr "支撑接触面"
  43. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/PrintInformation.py:93
  44. msgctxt "@tooltip"
  45. msgid "Support"
  46. msgstr "支撑"
  47. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/PrintInformation.py:94
  48. msgctxt "@tooltip"
  49. msgid "Skirt"
  50. msgstr "Skirt"
  51. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/PrintInformation.py:95
  52. msgctxt "@tooltip"
  53. msgid "Prime Tower"
  54. msgstr "装填塔"
  55. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/PrintInformation.py:96
  56. msgctxt "@tooltip"
  57. msgid "Travel"
  58. msgstr "移动"
  59. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/PrintInformation.py:97
  60. msgctxt "@tooltip"
  61. msgid "Retractions"
  62. msgstr "回抽"
  63. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/PrintInformation.py:98
  64. msgctxt "@tooltip"
  65. msgid "Other"
  66. msgstr "其它"
  67. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/TextManager.py:37
  68. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/TextManager.py:63
  69. msgctxt "@text:window"
  70. msgid "The release notes could not be opened."
  71. msgstr "无法打开版本说明。"
  72. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/ObjectsModel.py:69
  73. #, python-brace-format
  74. msgctxt "@label"
  75. msgid "Group #{group_nr}"
  76. msgstr "组 #{group_nr}"
  77. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/WelcomePagesModel.py:57
  78. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/WelcomePagesModel.py:277
  79. msgctxt "@action:button"
  80. msgid "Next"
  81. msgstr "下一步"
  82. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/WelcomePagesModel.py:286
  83. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/WhatsNewPagesModel.py:68
  84. msgctxt "@action:button"
  85. msgid "Skip"
  86. msgstr "跳过"
  87. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/WelcomePagesModel.py:290
  88. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/AddPrinterPagesModel.py:26
  89. msgctxt "@action:button"
  90. msgid "Finish"
  91. msgstr "完成"
  92. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/AddPrinterPagesModel.py:17
  93. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:61
  94. msgctxt "@action:button"
  95. msgid "Add"
  96. msgstr "添加"
  97. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/AddPrinterPagesModel.py:33
  98. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:323
  99. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:43
  100. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27
  101. #: /Users/c.lamboo/ultimaker/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:147
  102. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:509
  103. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/RenameDialog.qml:74
  104. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59
  105. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:293
  106. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ColorDialog.qml:139
  107. msgctxt "@action:button"
  108. msgid "Cancel"
  109. msgstr "取消"
  110. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/WhatsNewPagesModel.py:76
  111. #: /Users/c.lamboo/ultimaker/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:444
  112. #: /Users/c.lamboo/ultimaker/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:135
  113. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:175
  114. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:188
  115. msgctxt "@action:button"
  116. msgid "Close"
  117. msgstr "关闭"
  118. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/ContainerManager.py:207
  119. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:140
  120. msgctxt "@title:window"
  121. msgid "File Already Exists"
  122. msgstr "文件已存在"
  123. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/ContainerManager.py:208
  124. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:141
  125. #, python-brace-format
  126. msgctxt "@label Don't translate the XML tag <filename>!"
  127. msgid "The file <filename>{0}</filename> already exists. Are you sure you want to overwrite it?"
  128. msgstr "文件 <filename>{0}</filename> 已存在。您确定要覆盖它吗?"
  129. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/ContainerManager.py:459
  130. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/ContainerManager.py:462
  131. msgctxt "@info:status"
  132. msgid "Invalid file URL:"
  133. msgstr "文件 URL 无效:"
  134. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/cura_empty_instance_containers.py:36
  135. msgctxt "@info:not supported profile"
  136. msgid "Not supported"
  137. msgstr "不支持"
  138. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/cura_empty_instance_containers.py:55
  139. msgctxt "@info:No intent profile selected"
  140. msgid "Default"
  141. msgstr "Default"
  142. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/MachineManager.py:745
  143. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:219
  144. msgctxt "@label"
  145. msgid "Nozzle"
  146. msgstr "喷嘴"
  147. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/MachineManager.py:889
  148. msgctxt "@info:message Followed by a list of settings."
  149. msgid "Settings have been changed to match the current availability of extruders:"
  150. msgstr "已根据挤出机的当前可用性更改设置:"
  151. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/MachineManager.py:890
  152. msgctxt "@info:title"
  153. msgid "Settings updated"
  154. msgstr "设置已更新"
  155. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/MachineManager.py:1512
  156. msgctxt "@info:title"
  157. msgid "Extruder(s) Disabled"
  158. msgstr "挤出机已禁用"
  159. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:153
  160. #, python-brace-format
  161. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  162. msgid "Failed to export profile to <filename>{0}</filename>: <message>{1}</message>"
  163. msgstr "无法将配置文件导出至<filename> {0} </filename>: <message>{1}</message>"
  164. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:156
  165. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:166
  166. #: /Users/c.lamboo/ultimaker/Cura/cura/CuraApplication.py:1829
  167. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153
  168. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173
  169. msgctxt "@info:title"
  170. msgid "Error"
  171. msgstr "错误"
  172. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:163
  173. #, python-brace-format
  174. msgctxt "@info:status Don't translate the XML tag <filename>!"
  175. msgid "Failed to export profile to <filename>{0}</filename>: Writer plugin reported failure."
  176. msgstr "无法将配置文件导出至<filename> {0} </filename>: 写入器插件报告故障。"
  177. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:171
  178. #, python-brace-format
  179. msgctxt "@info:status Don't translate the XML tag <filename>!"
  180. msgid "Exported profile to <filename>{0}</filename>"
  181. msgstr "配置文件已导出至:<filename> {0} </filename>"
  182. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:173
  183. msgctxt "@info:title"
  184. msgid "Export succeeded"
  185. msgstr "导出成功"
  186. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:205
  187. #, python-brace-format
  188. msgctxt "@info:status Don't translate the XML tags <filename>!"
  189. msgid "Failed to import profile from <filename>{0}</filename>: {1}"
  190. msgstr "无法从 <filename>{0}</filename> 导入配置文件:{1}"
  191. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:209
  192. #, python-brace-format
  193. msgctxt "@info:status Don't translate the XML tags <filename>!"
  194. msgid "Can't import profile from <filename>{0}</filename> before a printer is added."
  195. msgstr "无法在添加打印机前从 <filename>{0}</filename> 导入配置文件。"
  196. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:224
  197. #, python-brace-format
  198. msgctxt "@info:status Don't translate the XML tags <filename>!"
  199. msgid "No custom profile to import in file <filename>{0}</filename>"
  200. msgstr "没有可导入文件 <filename>{0}</filename> 的自定义配置文件"
  201. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:228
  202. #, python-brace-format
  203. msgctxt "@info:status Don't translate the XML tags <filename>!"
  204. msgid "Failed to import profile from <filename>{0}</filename>:"
  205. msgstr "无法从 <filename>{0}</filename> 导入配置文件:"
  206. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:252
  207. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:262
  208. #, python-brace-format
  209. msgctxt "@info:status Don't translate the XML tags <filename>!"
  210. msgid "This profile <filename>{0}</filename> contains incorrect data, could not import it."
  211. msgstr "此配置文件 <filename>{0}</filename> 包含错误数据,无法导入。"
  212. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:355
  213. #, python-brace-format
  214. msgctxt "@info:status Don't translate the XML tag <filename>!"
  215. msgid "Failed to import profile from <filename>{0}</filename>:"
  216. msgstr "无法从 <filename>{0}</filename> 导入配置文件:"
  217. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:359
  218. #, python-brace-format
  219. msgctxt "@info:status"
  220. msgid "Successfully imported profile {0}."
  221. msgstr "已成功导入配置文件 {0}。"
  222. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:366
  223. #, python-brace-format
  224. msgctxt "@info:status"
  225. msgid "File {0} does not contain any valid profile."
  226. msgstr "文件 {0} 不包含任何有效的配置文件。"
  227. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:369
  228. #, python-brace-format
  229. msgctxt "@info:status"
  230. msgid "Profile {0} has an unknown file type or is corrupted."
  231. msgstr "配置 {0} 文件类型未知或已损坏。"
  232. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:443
  233. msgctxt "@label"
  234. msgid "Custom profile"
  235. msgstr "自定义配置文件"
  236. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:459
  237. msgctxt "@info:status"
  238. msgid "Profile is missing a quality type."
  239. msgstr "配置文件缺少打印质量类型定义。"
  240. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:463
  241. msgctxt "@info:status"
  242. msgid "There is no active printer yet."
  243. msgstr "尚无处于活动状态的打印机。"
  244. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:469
  245. msgctxt "@info:status"
  246. msgid "Unable to add the profile."
  247. msgstr "无法添加配置文件。"
  248. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:483
  249. #, python-brace-format
  250. msgctxt "@info:status"
  251. msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'."
  252. msgstr "质量类型“{0}”与当前有效的机器定义“{1}”不兼容。"
  253. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:488
  254. #, python-brace-format
  255. msgctxt "@info:status"
  256. 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."
  257. msgstr "警告:配置文件不可见,因为其质量类型“{0}”对当前配置不可用。请切换到可使用此质量类型的材料/喷嘴组合。"
  258. #: /Users/c.lamboo/ultimaker/Cura/cura/MultiplyObjectsJob.py:30
  259. msgctxt "@info:status"
  260. msgid "Multiplying and placing objects"
  261. msgstr "复制并放置模型"
  262. #: /Users/c.lamboo/ultimaker/Cura/cura/MultiplyObjectsJob.py:32
  263. msgctxt "@info:title"
  264. msgid "Placing Objects"
  265. msgstr "放置模型"
  266. #: /Users/c.lamboo/ultimaker/Cura/cura/MultiplyObjectsJob.py:99
  267. #: /Users/c.lamboo/ultimaker/Cura/cura/Arranging/ArrangeObjectsJob.py:42
  268. msgctxt "@info:status"
  269. msgid "Unable to find a location within the build volume for all objects"
  270. msgstr "无法在成形空间体积内放下全部模型"
  271. #: /Users/c.lamboo/ultimaker/Cura/cura/MultiplyObjectsJob.py:100
  272. msgctxt "@info:title"
  273. msgid "Placing Object"
  274. msgstr "放置模型"
  275. #: /Users/c.lamboo/ultimaker/Cura/cura/CuraApplication.py:540
  276. msgctxt "@info:progress"
  277. msgid "Loading machines..."
  278. msgstr "正在载入打印机..."
  279. #: /Users/c.lamboo/ultimaker/Cura/cura/CuraApplication.py:547
  280. msgctxt "@info:progress"
  281. msgid "Setting up preferences..."
  282. msgstr "正在设置偏好设置..."
  283. #: /Users/c.lamboo/ultimaker/Cura/cura/CuraApplication.py:692
  284. msgctxt "@info:progress"
  285. msgid "Initializing Active Machine..."
  286. msgstr "正在初始化当前机器..."
  287. #: /Users/c.lamboo/ultimaker/Cura/cura/CuraApplication.py:838
  288. msgctxt "@info:progress"
  289. msgid "Initializing machine manager..."
  290. msgstr "正在初始化机器管理器..."
  291. #: /Users/c.lamboo/ultimaker/Cura/cura/CuraApplication.py:852
  292. msgctxt "@info:progress"
  293. msgid "Initializing build volume..."
  294. msgstr "正在初始化成形空间体积..."
  295. #: /Users/c.lamboo/ultimaker/Cura/cura/CuraApplication.py:920
  296. msgctxt "@info:progress"
  297. msgid "Setting up scene..."
  298. msgstr "正在设置场景..."
  299. #: /Users/c.lamboo/ultimaker/Cura/cura/CuraApplication.py:956
  300. msgctxt "@info:progress"
  301. msgid "Loading interface..."
  302. msgstr "正在载入界面..."
  303. #: /Users/c.lamboo/ultimaker/Cura/cura/CuraApplication.py:961
  304. msgctxt "@info:progress"
  305. msgid "Initializing engine..."
  306. msgstr "正在初始化引擎..."
  307. #: /Users/c.lamboo/ultimaker/Cura/cura/CuraApplication.py:1289
  308. #, python-format
  309. msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm."
  310. msgid "%(width).1f x %(depth).1f x %(height).1f mm"
  311. msgstr "%(width).1f x %(depth).1f x %(height).1f mm"
  312. #: /Users/c.lamboo/ultimaker/Cura/cura/CuraApplication.py:1815
  313. #, python-brace-format
  314. msgctxt "@info:status"
  315. msgid "Only one G-code file can be loaded at a time. Skipped importing {0}"
  316. msgstr "一次只能加载一个 G-code 文件。{0} 已跳过导入"
  317. #: /Users/c.lamboo/ultimaker/Cura/cura/CuraApplication.py:1817
  318. #: /Users/c.lamboo/ultimaker/Cura/cura/OAuth2/AuthorizationService.py:217
  319. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:189
  320. msgctxt "@info:title"
  321. msgid "Warning"
  322. msgstr "警告"
  323. #: /Users/c.lamboo/ultimaker/Cura/cura/CuraApplication.py:1827
  324. #, python-brace-format
  325. msgctxt "@info:status"
  326. msgid "Can't open any other file if G-code is loading. Skipped importing {0}"
  327. msgstr "如果加载 G-code,则无法打开其他任何文件。{0} 已跳过导入"
  328. #: /Users/c.lamboo/ultimaker/Cura/cura/OAuth2/AuthorizationHelpers.py:89
  329. msgctxt "@message"
  330. msgid "Could not read response."
  331. msgstr "无法读取响应。"
  332. #: /Users/c.lamboo/ultimaker/Cura/cura/OAuth2/AuthorizationRequestHandler.py:75
  333. msgctxt "@message"
  334. msgid "The provided state is not correct."
  335. msgstr "所提供的状态不正确。"
  336. #: /Users/c.lamboo/ultimaker/Cura/cura/OAuth2/AuthorizationRequestHandler.py:80
  337. msgctxt "@message"
  338. msgid "Timeout when authenticating with the account server."
  339. msgstr "使用帐户服务器进行身份验证超时。"
  340. #: /Users/c.lamboo/ultimaker/Cura/cura/OAuth2/AuthorizationRequestHandler.py:97
  341. msgctxt "@message"
  342. msgid "Please give the required permissions when authorizing this application."
  343. msgstr "在授权此应用程序时,须提供所需权限。"
  344. #: /Users/c.lamboo/ultimaker/Cura/cura/OAuth2/AuthorizationRequestHandler.py:104
  345. msgctxt "@message"
  346. msgid "Something unexpected happened when trying to log in, please try again."
  347. msgstr "尝试登录时出现意外情况,请重试。"
  348. #: /Users/c.lamboo/ultimaker/Cura/cura/OAuth2/AuthorizationService.py:216
  349. msgctxt "@info"
  350. msgid "Unable to start a new sign in process. Check if another sign in attempt is still active."
  351. msgstr "无法开始新的登录过程。请检查是否仍在尝试进行另一登录。"
  352. #: /Users/c.lamboo/ultimaker/Cura/cura/OAuth2/AuthorizationService.py:277
  353. msgctxt "@info"
  354. msgid "Unable to reach the Ultimaker account server."
  355. msgstr "无法连接 Ultimaker 帐户服务器。"
  356. #: /Users/c.lamboo/ultimaker/Cura/cura/OAuth2/AuthorizationService.py:278
  357. msgctxt "@info:title"
  358. msgid "Log-in failed"
  359. msgstr "登录失败"
  360. #: /Users/c.lamboo/ultimaker/Cura/cura/Arranging/ArrangeObjectsJob.py:25
  361. msgctxt "@info:status"
  362. msgid "Finding new location for objects"
  363. msgstr "正在为模型寻找新位置"
  364. #: /Users/c.lamboo/ultimaker/Cura/cura/Arranging/ArrangeObjectsJob.py:29
  365. msgctxt "@info:title"
  366. msgid "Finding Location"
  367. msgstr "正在寻找位置"
  368. #: /Users/c.lamboo/ultimaker/Cura/cura/Arranging/ArrangeObjectsJob.py:43
  369. msgctxt "@info:title"
  370. msgid "Can't Find Location"
  371. msgstr "找不到位置"
  372. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/ExtrudersModel.py:219
  373. msgctxt "@menuitem"
  374. msgid "Not overridden"
  375. msgstr "未覆盖"
  376. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/IntentTranslations.py:11
  377. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/IntentCategoryModel.py:42
  378. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/QualityManagementModel.py:338
  379. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/IntentSelectionModel.py:61
  380. msgctxt "@label"
  381. msgid "Default"
  382. msgstr "Default"
  383. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/IntentTranslations.py:14
  384. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/IntentCategoryModel.py:45
  385. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/IntentSelectionModel.py:65
  386. msgctxt "@label"
  387. msgid "Visual"
  388. msgstr "视觉"
  389. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/IntentTranslations.py:15
  390. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/IntentCategoryModel.py:46
  391. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/IntentSelectionModel.py:66
  392. msgctxt "@text"
  393. msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality."
  394. msgstr "视觉配置文件用于打印视觉原型和模型,可实现出色的视觉效果和表面质量。"
  395. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/IntentTranslations.py:18
  396. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/IntentCategoryModel.py:49
  397. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/IntentSelectionModel.py:70
  398. msgctxt "@label"
  399. msgid "Engineering"
  400. msgstr "Engineering"
  401. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/IntentTranslations.py:19
  402. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/IntentCategoryModel.py:50
  403. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/IntentSelectionModel.py:71
  404. msgctxt "@text"
  405. msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances."
  406. msgstr "工程配置文件用于打印功能性原型和最终用途部件,可提高准确性和减小公差。"
  407. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/IntentTranslations.py:22
  408. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/IntentCategoryModel.py:53
  409. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/IntentSelectionModel.py:75
  410. msgctxt "@label"
  411. msgid "Draft"
  412. msgstr "草稿"
  413. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/IntentTranslations.py:23
  414. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/IntentCategoryModel.py:54
  415. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/IntentSelectionModel.py:76
  416. msgctxt "@text"
  417. msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction."
  418. msgstr "草稿配置文件用于打印初始原型和概念验证,可大大缩短打印时间。"
  419. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/QualitySettingsModel.py:182
  420. msgctxt "@info:status"
  421. msgid "Calculated"
  422. msgstr "已计算"
  423. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/QualityManagementModel.py:391
  424. msgctxt "@label"
  425. msgid "Custom profiles"
  426. msgstr "自定义配置文件"
  427. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/QualityManagementModel.py:426
  428. #, python-brace-format
  429. msgctxt "@item:inlistbox"
  430. msgid "All Supported Types ({0})"
  431. msgstr "所有支持的文件类型 ({0})"
  432. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/QualityManagementModel.py:427
  433. msgctxt "@item:inlistbox"
  434. msgid "All Files (*)"
  435. msgstr "所有文件 (*)"
  436. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83
  437. msgctxt "@label"
  438. msgid "Unknown"
  439. msgstr "未知"
  440. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113
  441. msgctxt "@label"
  442. msgid "The printer(s) below cannot be connected because they are part of a group"
  443. msgstr "无法连接到下列打印机,因为这些打印机已在组中"
  444. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115
  445. msgctxt "@label"
  446. msgid "Available networked printers"
  447. msgstr "可用的网络打印机"
  448. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/GlobalStacksModel.py:160
  449. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:24
  450. msgctxt "@label"
  451. msgid "Connected printers"
  452. msgstr "已连接的打印机"
  453. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/GlobalStacksModel.py:160
  454. msgctxt "@label"
  455. msgid "Preset printers"
  456. msgstr "预设打印机"
  457. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/GlobalStacksModel.py:165
  458. #, python-brace-format
  459. msgctxt "@label {0} is the name of a printer that's about to be deleted."
  460. msgid "Are you sure you wish to remove {0}? This cannot be undone!"
  461. msgstr "是否确实要删除 {0}?此操作无法撤消!"
  462. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/MaterialManagementModel.py:232
  463. msgctxt "@label"
  464. msgid "Custom Material"
  465. msgstr "自定义材料"
  466. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/MaterialManagementModel.py:233
  467. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:340
  468. msgctxt "@label"
  469. msgid "Custom"
  470. msgstr "自定义"
  471. #: /Users/c.lamboo/ultimaker/Cura/cura/API/Account.py:199
  472. msgctxt "@info:title"
  473. msgid "Login failed"
  474. msgstr "登录失败"
  475. #: /Users/c.lamboo/ultimaker/Cura/cura/UltimakerCloud/CloudMaterialSync.py:66
  476. msgctxt "@action:button"
  477. msgid "Please sync the material profiles with your printers before starting to print."
  478. msgstr "请在开始打印之前将材料配置文件与您的打印机同步。"
  479. #: /Users/c.lamboo/ultimaker/Cura/cura/UltimakerCloud/CloudMaterialSync.py:67
  480. msgctxt "@action:button"
  481. msgid "New materials installed"
  482. msgstr "新材料已装载"
  483. #: /Users/c.lamboo/ultimaker/Cura/cura/UltimakerCloud/CloudMaterialSync.py:74
  484. msgctxt "@action:button"
  485. msgid "Sync materials"
  486. msgstr "同步材料"
  487. #: /Users/c.lamboo/ultimaker/Cura/cura/UltimakerCloud/CloudMaterialSync.py:82
  488. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.py:397
  489. #: /Users/c.lamboo/ultimaker/Cura/plugins/SolidView/SolidView.py:80
  490. msgctxt "@action:button"
  491. msgid "Learn more"
  492. msgstr "详细了解"
  493. #: /Users/c.lamboo/ultimaker/Cura/cura/UltimakerCloud/CloudMaterialSync.py:135
  494. msgctxt "@message:text"
  495. msgid "Could not save material archive to {}:"
  496. msgstr "未能将材料存档保存到 {}:"
  497. #: /Users/c.lamboo/ultimaker/Cura/cura/UltimakerCloud/CloudMaterialSync.py:136
  498. msgctxt "@message:title"
  499. msgid "Failed to save material archive"
  500. msgstr "未能保存材料存档"
  501. #: /Users/c.lamboo/ultimaker/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188
  502. msgctxt "@text"
  503. msgid "Unknown error."
  504. msgstr "未知错误。"
  505. #: /Users/c.lamboo/ultimaker/Cura/cura/PrinterOutput/UploadMaterialsJob.py:104
  506. msgctxt "@text:error"
  507. msgid "Failed to create archive of materials to sync with printers."
  508. msgstr "无法创建材料存档以与打印机同步。"
  509. #: /Users/c.lamboo/ultimaker/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111
  510. #: /Users/c.lamboo/ultimaker/Cura/cura/PrinterOutput/UploadMaterialsJob.py:165
  511. msgctxt "@text:error"
  512. msgid "Failed to load the archive of materials to sync it with printers."
  513. msgstr "无法加载材料存档以与打印机同步。"
  514. #: /Users/c.lamboo/ultimaker/Cura/cura/PrinterOutput/UploadMaterialsJob.py:143
  515. msgctxt "@text:error"
  516. msgid "The response from Digital Factory appears to be corrupted."
  517. msgstr "来自 Digital Factory 的响应似乎已损坏。"
  518. #: /Users/c.lamboo/ultimaker/Cura/cura/PrinterOutput/UploadMaterialsJob.py:147
  519. #: /Users/c.lamboo/ultimaker/Cura/cura/PrinterOutput/UploadMaterialsJob.py:151
  520. #: /Users/c.lamboo/ultimaker/Cura/cura/PrinterOutput/UploadMaterialsJob.py:155
  521. msgctxt "@text:error"
  522. msgid "The response from Digital Factory is missing important information."
  523. msgstr "来自 Digital Factory 的响应缺少重要信息。"
  524. #: /Users/c.lamboo/ultimaker/Cura/cura/PrinterOutput/UploadMaterialsJob.py:218
  525. msgctxt "@text:error"
  526. msgid "Failed to connect to Digital Factory to sync materials with some of the printers."
  527. msgstr "Failed to connect to Digital Factory to sync materials with some of the printers."
  528. #: /Users/c.lamboo/ultimaker/Cura/cura/PrinterOutput/UploadMaterialsJob.py:232
  529. msgctxt "@text:error"
  530. msgid "Failed to connect to Digital Factory."
  531. msgstr "无法连接至 Digital Factory。"
  532. #: /Users/c.lamboo/ultimaker/Cura/cura/BuildVolume.py:100
  533. msgctxt "@info:status"
  534. 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."
  535. msgstr "由于“打印序列”设置的值,成形空间体积高度已被减少,以防止十字轴与打印模型相冲突。"
  536. #: /Users/c.lamboo/ultimaker/Cura/cura/BuildVolume.py:103
  537. msgctxt "@info:title"
  538. msgid "Build Volume"
  539. msgstr "成形空间体积"
  540. #: /Users/c.lamboo/ultimaker/Cura/cura/Backups/Backup.py:115
  541. msgctxt "@info:backup_failed"
  542. msgid "Could not create archive from user data directory: {}"
  543. msgstr "不能从用户数据目录创建存档: {}"
  544. #: /Users/c.lamboo/ultimaker/Cura/cura/Backups/Backup.py:122
  545. #: /Users/c.lamboo/ultimaker/Cura/cura/Backups/Backup.py:159
  546. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:118
  547. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:126
  548. msgctxt "@info:title"
  549. msgid "Backup"
  550. msgstr "备份"
  551. #: /Users/c.lamboo/ultimaker/Cura/cura/Backups/Backup.py:134
  552. msgctxt "@info:backup_failed"
  553. msgid "Tried to restore a Cura backup without having proper data or meta data."
  554. msgstr "试图在没有适当数据或元数据的情况下恢复Cura备份。"
  555. #: /Users/c.lamboo/ultimaker/Cura/cura/Backups/Backup.py:145
  556. msgctxt "@info:backup_failed"
  557. msgid "Tried to restore a Cura backup that is higher than the current version."
  558. msgstr "尝试恢复的 Cura 备份版本高于当前版本。"
  559. #: /Users/c.lamboo/ultimaker/Cura/cura/Backups/Backup.py:158
  560. msgctxt "@info:backup_failed"
  561. msgid "The following error occurred while trying to restore a Cura backup:"
  562. msgstr "尝试恢复 Cura 备份时出现以下错误:"
  563. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:107
  564. msgctxt "@title:window"
  565. msgid "Cura can't start"
  566. msgstr "Cura 无法启动"
  567. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:113
  568. msgctxt "@label crash message"
  569. msgid ""
  570. "<p><b>Oops, Ultimaker Cura has encountered something that doesn't seem right.</p></b>\n"
  571. " <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"
  572. " <p>Backups can be found in the configuration folder.</p>\n"
  573. " <p>Please send us this Crash Report to fix the problem.</p>\n"
  574. " "
  575. msgstr ""
  576. "<p><b>糟糕,Ultimaker Cura 似乎遇到了问题。</p></b>\n"
  577. " <p>在启动时发生了不可修复的错误。这可能是因某些配置文件出错导致的。建议您备份并重置配置。</p>\n"
  578. " <p>您可在配置文件夹中找到备份。</p>\n"
  579. " <p>请向我们发送此错误报告,以便解决问题。</p>\n"
  580. " "
  581. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:122
  582. msgctxt "@action:button"
  583. msgid "Send crash report to Ultimaker"
  584. msgstr "向 Ultimaker 发送错误报告"
  585. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:125
  586. msgctxt "@action:button"
  587. msgid "Show detailed crash report"
  588. msgstr "显示详细的错误报告"
  589. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:129
  590. msgctxt "@action:button"
  591. msgid "Show configuration folder"
  592. msgstr "显示配置文件夹"
  593. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:140
  594. msgctxt "@action:button"
  595. msgid "Backup and Reset Configuration"
  596. msgstr "备份并重置配置"
  597. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:171
  598. msgctxt "@title:window"
  599. msgid "Crash Report"
  600. msgstr "错误报告"
  601. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:190
  602. msgctxt "@label crash message"
  603. msgid ""
  604. "<p><b>A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem</p></b>\n"
  605. " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  606. " "
  607. msgstr ""
  608. "<p><b>Cura 发生了严重错误。请将这份错误报告发送给我们以便修复问题</p></b>\n"
  609. " <p>请使用“发送报告”按钮将错误报告自动发布到我们的服务器</p>\n"
  610. " "
  611. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:198
  612. msgctxt "@title:groupbox"
  613. msgid "System information"
  614. msgstr "系统信息"
  615. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:207
  616. msgctxt "@label unknown version of Cura"
  617. msgid "Unknown"
  618. msgstr "未知"
  619. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:228
  620. msgctxt "@label Cura version number"
  621. msgid "Cura version"
  622. msgstr "Cura 版本"
  623. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:229
  624. msgctxt "@label"
  625. msgid "Cura language"
  626. msgstr "Cura 语言"
  627. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:230
  628. msgctxt "@label"
  629. msgid "OS language"
  630. msgstr "操作系统语言"
  631. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:231
  632. msgctxt "@label Type of platform"
  633. msgid "Platform"
  634. msgstr "平台"
  635. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:232
  636. msgctxt "@label"
  637. msgid "Qt version"
  638. msgstr "Qt 版本"
  639. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:233
  640. msgctxt "@label"
  641. msgid "PyQt version"
  642. msgstr "PyQt 版本"
  643. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:234
  644. msgctxt "@label OpenGL version"
  645. msgid "OpenGL"
  646. msgstr "OpenGL"
  647. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:264
  648. msgctxt "@label"
  649. msgid "Not yet initialized"
  650. msgstr "尚未初始化"
  651. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:267
  652. #, python-brace-format
  653. msgctxt "@label OpenGL version"
  654. msgid "<li>OpenGL Version: {version}</li>"
  655. msgstr "<li>OpenGL 版本: {version}</li>"
  656. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:268
  657. #, python-brace-format
  658. msgctxt "@label OpenGL vendor"
  659. msgid "<li>OpenGL Vendor: {vendor}</li>"
  660. msgstr "<li>OpenGL 供应商: {vendor}</li>"
  661. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:269
  662. #, python-brace-format
  663. msgctxt "@label OpenGL renderer"
  664. msgid "<li>OpenGL Renderer: {renderer}</li>"
  665. msgstr "<li>OpenGL 渲染器: {renderer}</li>"
  666. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:304
  667. msgctxt "@title:groupbox"
  668. msgid "Error traceback"
  669. msgstr "错误追溯"
  670. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:390
  671. msgctxt "@title:groupbox"
  672. msgid "Logs"
  673. msgstr "日志"
  674. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:418
  675. msgctxt "@action:button"
  676. msgid "Send report"
  677. msgstr "发送报告"
  678. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32
  679. msgctxt "@action"
  680. msgid "Machine Settings"
  681. msgstr "打印机设置"
  682. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/__init__.py:14
  683. msgctxt "@item:inlistbox"
  684. msgid "JPG Image"
  685. msgstr "JPG 图像"
  686. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/__init__.py:18
  687. msgctxt "@item:inlistbox"
  688. msgid "JPEG Image"
  689. msgstr "JPEG 图像"
  690. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/__init__.py:22
  691. msgctxt "@item:inlistbox"
  692. msgid "PNG Image"
  693. msgstr "PNG 图像"
  694. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/__init__.py:26
  695. msgctxt "@item:inlistbox"
  696. msgid "BMP Image"
  697. msgstr "BMP 图像"
  698. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/__init__.py:30
  699. msgctxt "@item:inlistbox"
  700. msgid "GIF Image"
  701. msgstr "GIF 图像"
  702. #: /Users/c.lamboo/ultimaker/Cura/plugins/XRayView/__init__.py:12
  703. msgctxt "@item:inlistbox"
  704. msgid "X-Ray view"
  705. msgstr "透视视图"
  706. #: /Users/c.lamboo/ultimaker/Cura/plugins/X3DReader/__init__.py:13
  707. msgctxt "@item:inlistbox"
  708. msgid "X3D File"
  709. msgstr "X3D 文件"
  710. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraProfileReader/__init__.py:14
  711. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraProfileWriter/__init__.py:14
  712. msgctxt "@item:inlistbox"
  713. msgid "Cura Profile"
  714. msgstr "Cura 配置文件"
  715. #: /Users/c.lamboo/ultimaker/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35
  716. msgctxt "@item:inmenu"
  717. msgid "Post Processing"
  718. msgstr "后期处理"
  719. #: /Users/c.lamboo/ultimaker/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36
  720. msgctxt "@item:inmenu"
  721. msgid "Modify G-Code"
  722. msgstr "修改 G-Code"
  723. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118
  724. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66
  725. msgctxt "@info:status"
  726. msgid "There are no file formats available to write with!"
  727. msgstr "没有可进行写入的文件格式!"
  728. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16
  729. msgctxt "@info:status"
  730. msgid "Print job queue is full. The printer can't accept a new job."
  731. msgstr "打印作业队列已满。打印机无法接受新作业。"
  732. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17
  733. msgctxt "@info:title"
  734. msgid "Queue Full"
  735. msgstr "队列已满"
  736. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15
  737. msgctxt "@info:text"
  738. msgid "Could not upload the data to the printer."
  739. msgstr "无法将数据上传到打印机。"
  740. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16
  741. msgctxt "@info:title"
  742. msgid "Network error"
  743. msgstr "网络错误"
  744. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:13
  745. msgctxt "info:status"
  746. msgid "New printer detected from your Ultimaker account"
  747. msgid_plural "New printers detected from your Ultimaker account"
  748. msgstr[0] "从您的 Ultimaker 帐户中检测到新的打印机"
  749. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:29
  750. #, python-brace-format
  751. msgctxt "info:status Filled in with printer name and printer model."
  752. msgid "Adding printer {name} ({model}) from your account"
  753. msgstr "正在从您的帐户添加打印机 {name} ({model})"
  754. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:48
  755. #, python-brace-format
  756. msgctxt "info:{0} gets replaced by a number of printers"
  757. msgid "... and {0} other"
  758. msgid_plural "... and {0} others"
  759. msgstr[0] "... 和另外 {0} 台"
  760. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:57
  761. msgctxt "info:status"
  762. msgid "Printers added from Digital Factory:"
  763. msgstr "从 Digital Factory 添加的打印机:"
  764. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15
  765. msgctxt "@info:status"
  766. msgid "Please wait until the current job has been sent."
  767. msgstr "请等待当前作业完成发送。"
  768. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16
  769. msgctxt "@info:title"
  770. msgid "Print error"
  771. msgstr "打印错误"
  772. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25
  773. #, python-brace-format
  774. msgctxt "@info:status"
  775. msgid ""
  776. "Your printer <b>{printer_name}</b> could be connected via cloud.\n"
  777. " Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory"
  778. msgstr ""
  779. "未能通过云连接您的打印机 <b>{printer_name}</b>。\n"
  780. "只需将您的打印机连接到 Digital Factory,即可随时随地管理您的打印作业队列并监控您的打印结果"
  781. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26
  782. msgctxt "@info:title"
  783. msgid "Are you ready for cloud printing?"
  784. msgstr "是否进行云打印?"
  785. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30
  786. msgctxt "@action"
  787. msgid "Get started"
  788. msgstr "开始"
  789. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31
  790. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:24
  791. msgctxt "@action"
  792. msgid "Learn more"
  793. msgstr "了解详情"
  794. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:18
  795. msgctxt "@info:status"
  796. msgid "You will receive a confirmation via email when the print job is approved"
  797. msgstr "打印作业获得批准后,您将收到确认电子邮件"
  798. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:19
  799. msgctxt "@info:title"
  800. msgid "The print job was successfully submitted"
  801. msgstr "打印作业已成功提交"
  802. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:22
  803. msgctxt "@action"
  804. msgid "Manage print jobs"
  805. msgstr "管理打印作业"
  806. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15
  807. msgctxt "@info:status"
  808. msgid "Sending Print Job"
  809. msgstr "发送打印作业"
  810. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16
  811. msgctxt "@info:status"
  812. msgid "Uploading print job to printer."
  813. msgstr "正在将打印作业上传至打印机。"
  814. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24
  815. #, python-brace-format
  816. msgctxt "@info:status"
  817. msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}."
  818. msgstr "Cura 已检测到材料配置文件尚未安装到组 {0} 中的主机打印机上。"
  819. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26
  820. msgctxt "@info:title"
  821. msgid "Sending materials to printer"
  822. msgstr "正在将材料发送到打印机"
  823. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27
  824. #, python-brace-format
  825. msgctxt "@info:status"
  826. 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."
  827. msgstr "您正在尝试连接到 {0},但它不是组中的主机。您可以访问网页,将其配置为组主机。"
  828. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30
  829. msgctxt "@info:title"
  830. msgid "Not a group host"
  831. msgstr "非组中的主机"
  832. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36
  833. msgctxt "@action"
  834. msgid "Configure group"
  835. msgstr "配置组"
  836. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:16
  837. msgctxt "info:status"
  838. msgid "This printer is not linked to the Digital Factory:"
  839. msgid_plural "These printers are not linked to the Digital Factory:"
  840. msgstr[0] "这些打印机未链接到 Digital Factory:"
  841. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:22
  842. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:422
  843. msgctxt "info:name"
  844. msgid "Ultimaker Digital Factory"
  845. msgstr "Ultimaker Digital Factory"
  846. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:28
  847. #, python-brace-format
  848. msgctxt "info:status"
  849. msgid "To establish a connection, please visit the {website_link}"
  850. msgstr "要建立连接,请访问 {website_link}"
  851. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:32
  852. msgctxt "info:status"
  853. msgid "A cloud connection is not available for a printer"
  854. msgid_plural "A cloud connection is not available for some printers"
  855. msgstr[0] "某些打印机无云连接可用"
  856. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:40
  857. msgctxt "@action:button"
  858. msgid "Keep printer configurations"
  859. msgstr "保留打印机配置"
  860. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:45
  861. msgctxt "@action:button"
  862. msgid "Remove printers"
  863. msgstr "删除打印机"
  864. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18
  865. msgctxt "@info:status"
  866. msgid "You are attempting to connect to a printer that is not running Ultimaker Connect. Please update the printer to the latest firmware."
  867. msgstr "您正在尝试连接未运行 Ultimaker Connect 的打印机。请将打印机更新至最新固件。"
  868. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21
  869. msgctxt "@info:title"
  870. msgid "Update your printer"
  871. msgstr "请更新升级打印机"
  872. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15
  873. msgctxt "@info:status"
  874. msgid "Print job was successfully sent to the printer."
  875. msgstr "打印作业已成功发送到打印机。"
  876. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16
  877. msgctxt "@info:title"
  878. msgid "Data Sent"
  879. msgstr "数据已发送"
  880. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:62
  881. msgctxt "@action:button Preceded by 'Ready to'."
  882. msgid "Print over network"
  883. msgstr "通过网络打印"
  884. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:63
  885. msgctxt "@properties:tooltip"
  886. msgid "Print over network"
  887. msgstr "通过网络打印"
  888. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:64
  889. msgctxt "@info:status"
  890. msgid "Connected over the network"
  891. msgstr "已通过网络连接"
  892. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27
  893. msgctxt "@info:status"
  894. msgid "tomorrow"
  895. msgstr "明天"
  896. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30
  897. msgctxt "@info:status"
  898. msgid "today"
  899. msgstr "今天"
  900. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28
  901. msgctxt "@action"
  902. msgid "Connect via Network"
  903. msgstr "通过网络连接"
  904. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:80
  905. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:162
  906. msgctxt "@action:button"
  907. msgid "Print via cloud"
  908. msgstr "通过云打印"
  909. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:81
  910. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:163
  911. msgctxt "@properties:tooltip"
  912. msgid "Print via cloud"
  913. msgstr "通过云打印"
  914. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:82
  915. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:164
  916. msgctxt "@info:status"
  917. msgid "Connected via cloud"
  918. msgstr "通过云连接"
  919. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:425
  920. #, python-brace-format
  921. msgctxt "@message {printer_name} is replaced with the name of the printer"
  922. msgid "{printer_name} will be removed until the next account sync."
  923. msgstr "将删除 {printer_name},直到下次帐户同步为止。"
  924. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:426
  925. #, python-brace-format
  926. msgctxt "@message {printer_name} is replaced with the name of the printer"
  927. msgid "To remove {printer_name} permanently, visit {digital_factory_link}"
  928. msgstr "要永久删除 {printer_name},请访问 {digital_factory_link}"
  929. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:427
  930. #, python-brace-format
  931. msgctxt "@message {printer_name} is replaced with the name of the printer"
  932. msgid "Are you sure you want to remove {printer_name} temporarily?"
  933. msgstr "是否确实要暂时删除 {printer_name}?"
  934. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:474
  935. msgctxt "@title:window"
  936. msgid "Remove printers?"
  937. msgstr "是否删除打印机?"
  938. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:477
  939. #, python-brace-format
  940. msgctxt "@label"
  941. msgid ""
  942. "You are about to remove {0} printer from Cura. This action cannot be undone.\n"
  943. "Are you sure you want to continue?"
  944. msgid_plural ""
  945. "You are about to remove {0} printers from Cura. This action cannot be undone.\n"
  946. "Are you sure you want to continue?"
  947. msgstr[0] ""
  948. "您即将从 Cura 中删除 {0} 台打印机。此操作无法撤消。\n"
  949. "是否确实要继续?"
  950. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:484
  951. msgctxt "@label"
  952. msgid ""
  953. "You are about to remove all printers from Cura. This action cannot be undone.\n"
  954. "Are you sure you want to continue?"
  955. msgstr ""
  956. "您即将从 Cura 中删除所有打印机。此操作无法撤消。\n"
  957. "是否确定继续?"
  958. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:276
  959. msgctxt "@action:button"
  960. msgid "Monitor print"
  961. msgstr "监控打印"
  962. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:278
  963. msgctxt "@action:tooltip"
  964. msgid "Track the print in Ultimaker Digital Factory"
  965. msgstr "在 Ultimaker Digital Factory 中跟踪打印"
  966. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:298
  967. #, python-brace-format
  968. msgctxt "@error:send"
  969. msgid "Unknown error code when uploading print job: {0}"
  970. msgstr "上传打印作业时出现未知错误代码:{0}"
  971. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFWriter/__init__.py:28
  972. msgctxt "@item:inlistbox"
  973. msgid "3MF file"
  974. msgstr "3MF 文件"
  975. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFWriter/__init__.py:36
  976. msgctxt "@item:inlistbox"
  977. msgid "Cura Project 3MF file"
  978. msgstr "Cura 项目 3MF 文件"
  979. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFWriter/ThreeMFWriter.py:240
  980. msgctxt "@error:zip"
  981. msgid "Error writing 3mf file."
  982. msgstr "写入 3mf 文件时出错。"
  983. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31
  984. msgctxt "@error:zip"
  985. msgid "3MF Writer plug-in is corrupt."
  986. msgstr "3MF 编写器插件已损坏。"
  987. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37
  988. msgctxt "@error"
  989. msgid "There is no workspace yet to write. Please add a printer first."
  990. msgstr "没有可写入的工作区。请先添加打印机。"
  991. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64
  992. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97
  993. msgctxt "@error:zip"
  994. msgid "No permission to write the workspace here."
  995. msgstr "没有在此处写入工作区的权限。"
  996. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:101
  997. msgctxt "@error:zip"
  998. msgid "The operating system does not allow saving a project file to this location or with this file name."
  999. msgstr "操作系统不允许向此位置或用此文件名保存项目文件。"
  1000. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/DriveApiService.py:86
  1001. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26
  1002. msgctxt "@info:backup_status"
  1003. msgid "There was an error trying to restore your backup."
  1004. msgstr "尝试恢复您的备份时出错。"
  1005. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:69
  1006. msgctxt "@item:inmenu"
  1007. msgid "Manage backups"
  1008. msgstr "管理备份"
  1009. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/CreateBackupJob.py:25
  1010. msgctxt "@info:title"
  1011. msgid "Backups"
  1012. msgstr "备份"
  1013. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26
  1014. msgctxt "@info:backup_status"
  1015. msgid "There was an error while uploading your backup."
  1016. msgstr "上传您的备份时出错。"
  1017. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/CreateBackupJob.py:46
  1018. msgctxt "@info:backup_status"
  1019. msgid "Creating your backup..."
  1020. msgstr "正在创建您的备份..."
  1021. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/CreateBackupJob.py:55
  1022. msgctxt "@info:backup_status"
  1023. msgid "There was an error while creating your backup."
  1024. msgstr "创建您的备份时出错。"
  1025. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/CreateBackupJob.py:59
  1026. msgctxt "@info:backup_status"
  1027. msgid "Uploading your backup..."
  1028. msgstr "正在上传您的备份..."
  1029. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/CreateBackupJob.py:69
  1030. msgctxt "@info:backup_status"
  1031. msgid "Your backup has finished uploading."
  1032. msgstr "您的备份已完成上传。"
  1033. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/CreateBackupJob.py:103
  1034. msgctxt "@error:file_size"
  1035. msgid "The backup exceeds the maximum file size."
  1036. msgstr "备份超过了最大文件大小。"
  1037. #: /Users/c.lamboo/ultimaker/Cura/plugins/SliceInfoPlugin/SliceInfo.py:95
  1038. msgctxt "@text"
  1039. msgid "Unable to read example data file."
  1040. msgstr "无法读取示例数据文件。"
  1041. #: /Users/c.lamboo/ultimaker/Cura/plugins/UFPWriter/UFPWriter.py:62
  1042. #: /Users/c.lamboo/ultimaker/Cura/plugins/UFPWriter/UFPWriter.py:78
  1043. #: /Users/c.lamboo/ultimaker/Cura/plugins/UFPWriter/UFPWriter.py:91
  1044. #: /Users/c.lamboo/ultimaker/Cura/plugins/UFPWriter/UFPWriter.py:113
  1045. #: /Users/c.lamboo/ultimaker/Cura/plugins/UFPWriter/UFPWriter.py:168
  1046. #: /Users/c.lamboo/ultimaker/Cura/plugins/UFPWriter/UFPWriter.py:178
  1047. msgctxt "@info:error"
  1048. msgid "Can't write to UFP file:"
  1049. msgstr "无法写入到 UFP 文件:"
  1050. #: /Users/c.lamboo/ultimaker/Cura/plugins/UFPWriter/__init__.py:28
  1051. #: /Users/c.lamboo/ultimaker/Cura/plugins/UFPReader/__init__.py:22
  1052. msgctxt "@item:inlistbox"
  1053. msgid "Ultimaker Format Package"
  1054. msgstr "Ultimaker 格式包"
  1055. #: /Users/c.lamboo/ultimaker/Cura/plugins/DigitalLibrary/src/DigitalFactoryProjectResponse.py:19
  1056. msgctxt "@text Placeholder for the username if it has been deleted"
  1057. msgid "deleted user"
  1058. msgstr "已删除的用户"
  1059. #: /Users/c.lamboo/ultimaker/Cura/plugins/GCodeProfileReader/__init__.py:14
  1060. #: /Users/c.lamboo/ultimaker/Cura/plugins/GCodeReader/__init__.py:14
  1061. #: /Users/c.lamboo/ultimaker/Cura/plugins/GCodeWriter/__init__.py:16
  1062. msgctxt "@item:inlistbox"
  1063. msgid "G-code File"
  1064. msgstr "GCode 文件"
  1065. #: /Users/c.lamboo/ultimaker/Cura/plugins/GCodeReader/FlavorParser.py:350
  1066. msgctxt "@info:status"
  1067. msgid "Parsing G-code"
  1068. msgstr "解析 G-code"
  1069. #: /Users/c.lamboo/ultimaker/Cura/plugins/GCodeReader/FlavorParser.py:352
  1070. #: /Users/c.lamboo/ultimaker/Cura/plugins/GCodeReader/FlavorParser.py:506
  1071. msgctxt "@info:title"
  1072. msgid "G-code Details"
  1073. msgstr "G-code 详细信息"
  1074. #: /Users/c.lamboo/ultimaker/Cura/plugins/GCodeReader/FlavorParser.py:504
  1075. msgctxt "@info:generic"
  1076. 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."
  1077. msgstr "发送文件之前,请确保 G-code 适用于当前打印机和打印机配置。当前 G-code 文件可能不准确。"
  1078. #: /Users/c.lamboo/ultimaker/Cura/plugins/GCodeReader/__init__.py:18
  1079. msgctxt "@item:inlistbox"
  1080. msgid "G File"
  1081. msgstr "G 文件"
  1082. #: /Users/c.lamboo/ultimaker/Cura/plugins/TrimeshReader/__init__.py:15
  1083. msgctxt "@item:inlistbox 'Open' is part of the name of this file format."
  1084. msgid "Open Compressed Triangle Mesh"
  1085. msgstr "打开压缩三角网格"
  1086. #: /Users/c.lamboo/ultimaker/Cura/plugins/TrimeshReader/__init__.py:19
  1087. msgctxt "@item:inlistbox"
  1088. msgid "COLLADA Digital Asset Exchange"
  1089. msgstr "COLLADA 数据资源交换"
  1090. #: /Users/c.lamboo/ultimaker/Cura/plugins/TrimeshReader/__init__.py:23
  1091. msgctxt "@item:inlistbox"
  1092. msgid "glTF Binary"
  1093. msgstr "glTF 二进制"
  1094. #: /Users/c.lamboo/ultimaker/Cura/plugins/TrimeshReader/__init__.py:27
  1095. msgctxt "@item:inlistbox"
  1096. msgid "glTF Embedded JSON"
  1097. msgstr "glTF 嵌入式 JSON"
  1098. #: /Users/c.lamboo/ultimaker/Cura/plugins/TrimeshReader/__init__.py:36
  1099. msgctxt "@item:inlistbox"
  1100. msgid "Stanford Triangle Format"
  1101. msgstr "斯坦福三角格式"
  1102. #: /Users/c.lamboo/ultimaker/Cura/plugins/TrimeshReader/__init__.py:40
  1103. msgctxt "@item:inlistbox"
  1104. msgid "Compressed COLLADA Digital Asset Exchange"
  1105. msgstr "压缩 COLLADA 数据资源交换"
  1106. #: /Users/c.lamboo/ultimaker/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24
  1107. msgctxt "@action"
  1108. msgid "Level build plate"
  1109. msgstr "调平打印平台"
  1110. #: /Users/c.lamboo/ultimaker/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21
  1111. msgctxt "@action"
  1112. msgid "Select upgrades"
  1113. msgstr "选择升级"
  1114. #: /Users/c.lamboo/ultimaker/Cura/plugins/GCodeGzReader/__init__.py:17
  1115. #: /Users/c.lamboo/ultimaker/Cura/plugins/GCodeGzWriter/__init__.py:17
  1116. msgctxt "@item:inlistbox"
  1117. msgid "Compressed G-code File"
  1118. msgstr "压缩 G-code 文件"
  1119. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/RemotePackageList.py:117
  1120. msgctxt "@info:error"
  1121. msgid "Could not interpret the server's response."
  1122. msgstr "无法解释服务器的响应。"
  1123. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/RemotePackageList.py:148
  1124. msgctxt "@info:error"
  1125. msgid "Could not reach Marketplace."
  1126. msgstr "无法连接到市场。"
  1127. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/CloudSync/LicensePresenter.py:42
  1128. msgctxt "@button"
  1129. msgid "Decline and remove from account"
  1130. msgstr "拒绝并从帐户中删除"
  1131. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/CloudSync/LicenseModel.py:12
  1132. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:79
  1133. msgctxt "@button"
  1134. msgid "Decline"
  1135. msgstr "拒绝"
  1136. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/CloudSync/LicenseModel.py:13
  1137. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:53
  1138. msgctxt "@button"
  1139. msgid "Agree"
  1140. msgstr "同意"
  1141. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/CloudSync/LicenseModel.py:77
  1142. msgctxt "@title:window"
  1143. msgid "Plugin License Agreement"
  1144. msgstr "插件许可协议"
  1145. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/CloudSync/CloudPackageChecker.py:144
  1146. msgctxt "@info:generic"
  1147. msgid "Do you want to sync material and software packages with your account?"
  1148. msgstr "是否要与您的帐户同步材料和软件包?"
  1149. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/CloudSync/CloudPackageChecker.py:145
  1150. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/CloudSync/DownloadPresenter.py:95
  1151. msgctxt "@info:title"
  1152. msgid "Changes detected from your Ultimaker account"
  1153. msgstr "检测到您的 Ultimaker 帐户有更改"
  1154. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/CloudSync/CloudPackageChecker.py:147
  1155. msgctxt "@action:button"
  1156. msgid "Sync"
  1157. msgstr "同步"
  1158. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/CloudSync/RestartApplicationPresenter.py:22
  1159. msgctxt "@info:generic"
  1160. msgid "You need to quit and restart {} before changes have effect."
  1161. msgstr "需要退出并重新启动 {},然后更改才能生效。"
  1162. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/CloudSync/DownloadPresenter.py:91
  1163. msgctxt "@info:generic"
  1164. msgid "Syncing..."
  1165. msgstr "正在同步..."
  1166. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/CloudSync/SyncOrchestrator.py:79
  1167. msgctxt "@info:generic"
  1168. msgid "{} plugins failed to download"
  1169. msgstr "{} 个插件下载失败"
  1170. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/LocalPackageList.py:28
  1171. msgctxt "@label"
  1172. msgid "Installed Plugins"
  1173. msgstr "已安装的插件"
  1174. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/LocalPackageList.py:29
  1175. msgctxt "@label"
  1176. msgid "Installed Materials"
  1177. msgstr "已安装的材料"
  1178. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/LocalPackageList.py:33
  1179. msgctxt "@label"
  1180. msgid "Bundled Plugins"
  1181. msgstr "已捆绑的插件"
  1182. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/LocalPackageList.py:34
  1183. msgctxt "@label"
  1184. msgid "Bundled Materials"
  1185. msgstr "已捆绑的材料"
  1186. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/PackageModel.py:43
  1187. msgctxt "@label:property"
  1188. msgid "Unknown Package"
  1189. msgstr "未知包"
  1190. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/PackageModel.py:66
  1191. msgctxt "@label:property"
  1192. msgid "Unknown Author"
  1193. msgstr "未知作者"
  1194. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76
  1195. msgctxt "@item:intext"
  1196. msgid "Removable Drive"
  1197. msgstr "可移动磁盘"
  1198. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23
  1199. msgctxt "@action:button Preceded by 'Ready to'."
  1200. msgid "Save to Removable Drive"
  1201. msgstr "保存至可移动磁盘"
  1202. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24
  1203. #, python-brace-format
  1204. msgctxt "@item:inlistbox"
  1205. msgid "Save to Removable Drive {0}"
  1206. msgstr "保存到可移动磁盘 {0}"
  1207. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109
  1208. #, python-brace-format
  1209. msgctxt "@info:progress Don't translate the XML tags <filename>!"
  1210. msgid "Saving to Removable Drive <filename>{0}</filename>"
  1211. msgstr "保存到可移动磁盘 <filename> {0} </filename>"
  1212. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:110
  1213. msgctxt "@info:title"
  1214. msgid "Saving"
  1215. msgstr "正在保存"
  1216. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:120
  1217. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:123
  1218. #, python-brace-format
  1219. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  1220. msgid "Could not save to <filename>{0}</filename>: <message>{1}</message>"
  1221. msgstr "无法保存到 <filename>{0}</filename>:<message>{1}</message>"
  1222. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139
  1223. #, python-brace-format
  1224. msgctxt "@info:status Don't translate the tag {device}!"
  1225. msgid "Could not find a file name when trying to write to {device}."
  1226. msgstr "尝试写入到 {device} 时找不到文件名。"
  1227. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:152
  1228. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:171
  1229. #, python-brace-format
  1230. msgctxt "@info:status"
  1231. msgid "Could not save to removable drive {0}: {1}"
  1232. msgstr "无法保存到可移动磁盘 {0}:{1}"
  1233. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:162
  1234. #, python-brace-format
  1235. msgctxt "@info:status"
  1236. msgid "Saved to Removable Drive {0} as {1}"
  1237. msgstr "保存到可移动磁盘 {0} :{1}"
  1238. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163
  1239. msgctxt "@info:title"
  1240. msgid "File Saved"
  1241. msgstr "文件已保存"
  1242. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165
  1243. msgctxt "@action:button"
  1244. msgid "Eject"
  1245. msgstr "弹出"
  1246. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165
  1247. #, python-brace-format
  1248. msgctxt "@action"
  1249. msgid "Eject removable device {0}"
  1250. msgstr "弹出可移动设备 {0}"
  1251. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:184
  1252. #, python-brace-format
  1253. msgctxt "@info:status"
  1254. msgid "Ejected {0}. You can now safely remove the drive."
  1255. msgstr "已弹出 {0}。现在,您可以安全地拔出磁盘。"
  1256. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:185
  1257. msgctxt "@info:title"
  1258. msgid "Safely Remove Hardware"
  1259. msgstr "安全移除硬件"
  1260. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:188
  1261. #, python-brace-format
  1262. msgctxt "@info:status"
  1263. msgid "Failed to eject {0}. Another program may be using the drive."
  1264. msgstr "无法弹出 {0},另一个程序可能正在使用磁盘。"
  1265. #: /Users/c.lamboo/ultimaker/Cura/plugins/MonitorStage/__init__.py:14
  1266. msgctxt "@item:inmenu"
  1267. msgid "Monitor"
  1268. msgstr "监控"
  1269. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162
  1270. msgctxt "@message"
  1271. msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker."
  1272. msgstr "发生意外错误,切片失败。请于问题跟踪器上报告错误。"
  1273. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:163
  1274. msgctxt "@message:title"
  1275. msgid "Slicing failed"
  1276. msgstr "切片失败"
  1277. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:168
  1278. msgctxt "@message:button"
  1279. msgid "Report a bug"
  1280. msgstr "报告错误"
  1281. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:169
  1282. msgctxt "@message:description"
  1283. msgid "Report a bug on Ultimaker Cura's issue tracker."
  1284. msgstr "在 Ultimaker Cura 问题跟踪器上报告错误。"
  1285. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:401
  1286. msgctxt "@info:status"
  1287. msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration."
  1288. msgstr "无法使用当前材料进行切片,因为该材料与所选机器或配置不兼容。"
  1289. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:402
  1290. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:435
  1291. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:462
  1292. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:474
  1293. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:486
  1294. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:499
  1295. msgctxt "@info:title"
  1296. msgid "Unable to slice"
  1297. msgstr "无法切片"
  1298. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:434
  1299. #, python-brace-format
  1300. msgctxt "@info:status"
  1301. msgid "Unable to slice with the current settings. The following settings have errors: {0}"
  1302. msgstr "无法使用当前设置进行切片。以下设置存在错误:{0}"
  1303. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:461
  1304. #, python-brace-format
  1305. msgctxt "@info:status"
  1306. msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}"
  1307. msgstr "因部分特定模型设置而无法切片。 以下设置在一个或多个模型上存在错误: {error_labels}"
  1308. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:473
  1309. msgctxt "@info:status"
  1310. msgid "Unable to slice because the prime tower or prime position(s) are invalid."
  1311. msgstr "无法切片(原因:主塔或主位置无效)。"
  1312. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:485
  1313. #, python-format
  1314. msgctxt "@info:status"
  1315. msgid "Unable to slice because there are objects associated with disabled Extruder %s."
  1316. msgstr "无法切片,因为存在与已禁用挤出机 %s 相关联的对象。"
  1317. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:495
  1318. msgctxt "@info:status"
  1319. msgid ""
  1320. "Please review settings and check if your models:\n"
  1321. "- Fit within the build volume\n"
  1322. "- Are assigned to an enabled extruder\n"
  1323. "- Are not all set as modifier meshes"
  1324. msgstr ""
  1325. "请检查设置并检查您的模型是否:\n"
  1326. "- 适合构建体积\n"
  1327. "- 分配给了已启用的挤出器\n"
  1328. "- 尚未全部设置为修改器网格"
  1329. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52
  1330. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260
  1331. msgctxt "@info:status"
  1332. msgid "Processing Layers"
  1333. msgstr "正在处理层"
  1334. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261
  1335. msgctxt "@info:title"
  1336. msgid "Information"
  1337. msgstr "信息"
  1338. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/__init__.py:27
  1339. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/__init__.py:33
  1340. msgctxt "@item:inlistbox"
  1341. msgid "3MF File"
  1342. msgstr "3MF 文件"
  1343. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.py:212
  1344. msgctxt "@title:tab"
  1345. msgid "Recommended"
  1346. msgstr "推荐"
  1347. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.py:214
  1348. msgctxt "@title:tab"
  1349. msgid "Custom"
  1350. msgstr "自定义"
  1351. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.py:390
  1352. msgctxt "@info:status"
  1353. msgid "The material used in this project relies on some material definitions not available in Cura, this might produce undesirable print results. We highly recommend installing the full material package from the Marketplace."
  1354. msgstr "此项目使用的材料依赖于一些 Cura 中不存在的材料定义,这可能会造成打印效果不如预期。强烈建议安装从 Marketplace 获得的完整材料包。"
  1355. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.py:392
  1356. msgctxt "@info:title"
  1357. msgid "Material profiles not installed"
  1358. msgstr "材料配置文件未安装"
  1359. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.py:405
  1360. msgctxt "@action:button"
  1361. msgid "Install Materials"
  1362. msgstr "安装材料"
  1363. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:545
  1364. #, python-brace-format
  1365. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  1366. msgid "Project file <filename>{0}</filename> contains an unknown machine type <message>{1}</message>. Cannot import the machine. Models will be imported instead."
  1367. msgstr "项目文件 <filename>{0}</filename> 包含未知机器类型 <message>{1}</message>。无法导入机器。将改为导入模型。"
  1368. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:548
  1369. msgctxt "@info:title"
  1370. msgid "Open Project File"
  1371. msgstr "打开项目文件"
  1372. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:650
  1373. #, python-brace-format
  1374. msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
  1375. msgid "Project file <filename>{0}</filename> is suddenly inaccessible: <message>{1}</message>."
  1376. msgstr "突然无法访问项目文件 <filename>{0}</filename>:<message>{1}</message>。"
  1377. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:651
  1378. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:659
  1379. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:678
  1380. msgctxt "@info:title"
  1381. msgid "Can't Open Project File"
  1382. msgstr "无法打开项目文件"
  1383. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:658
  1384. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:676
  1385. #, python-brace-format
  1386. msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
  1387. msgid "Project file <filename>{0}</filename> is corrupt: <message>{1}</message>."
  1388. msgstr "项目文件 <filename>{0}</filename> 损坏: <message>{1}</message>。"
  1389. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:723
  1390. #, python-brace-format
  1391. msgctxt "@info:error Don't translate the XML tag <filename>!"
  1392. msgid "Project file <filename>{0}</filename> is made using profiles that are unknown to this version of Ultimaker Cura."
  1393. msgstr "项目文件 <filename>{0}</filename> 是用此 Ultimaker Cura 版本未识别的配置文件制作的。"
  1394. #: /Users/c.lamboo/ultimaker/Cura/plugins/PerObjectSettingsTool/__init__.py:14
  1395. msgctxt "@label"
  1396. msgid "Per Model Settings"
  1397. msgstr "单一模型设置"
  1398. #: /Users/c.lamboo/ultimaker/Cura/plugins/PerObjectSettingsTool/__init__.py:15
  1399. msgctxt "@info:tooltip"
  1400. msgid "Configure Per Model Settings"
  1401. msgstr "设置对每个模型的单独设定"
  1402. #: /Users/c.lamboo/ultimaker/Cura/plugins/ModelChecker/ModelChecker.py:31
  1403. msgctxt "@info:title"
  1404. msgid "3D Model Assistant"
  1405. msgstr "三维模型的助理"
  1406. #: /Users/c.lamboo/ultimaker/Cura/plugins/ModelChecker/ModelChecker.py:97
  1407. #, python-brace-format
  1408. msgctxt "@info:status"
  1409. msgid ""
  1410. "<p>One or more 3D models may not print optimally due to the model size and material configuration:</p>\n"
  1411. "<p>{model_names}</p>\n"
  1412. "<p>Find out how to ensure the best possible print quality and reliability.</p>\n"
  1413. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">View print quality guide</a></p>"
  1414. msgstr ""
  1415. "<p>由于模型的大小和材质的配置,一个或多个3D模型可能无法最优地打印:</p>\n"
  1416. "<p>{model_names}</p>\n"
  1417. "<p>找出如何确保最好的打印质量和可靠性.</p>\n"
  1418. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">查看打印质量指南</a></p>"
  1419. #: /Users/c.lamboo/ultimaker/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42
  1420. msgctxt "@item:inmenu"
  1421. msgid "USB printing"
  1422. msgstr "USB 联机打印"
  1423. #: /Users/c.lamboo/ultimaker/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43
  1424. msgctxt "@action:button Preceded by 'Ready to'."
  1425. msgid "Print via USB"
  1426. msgstr "通过 USB 联机打印"
  1427. #: /Users/c.lamboo/ultimaker/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44
  1428. msgctxt "@info:tooltip"
  1429. msgid "Print via USB"
  1430. msgstr "通过 USB 联机打印"
  1431. #: /Users/c.lamboo/ultimaker/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80
  1432. msgctxt "@info:status"
  1433. msgid "Connected via USB"
  1434. msgstr "通过 USB 连接"
  1435. #: /Users/c.lamboo/ultimaker/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110
  1436. msgctxt "@label"
  1437. msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?"
  1438. msgstr "正在进行 USB 打印,关闭 Cura 将停止此打印。您确定吗?"
  1439. #: /Users/c.lamboo/ultimaker/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:135
  1440. msgctxt "@message"
  1441. msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed."
  1442. msgstr "正在进行打印在上一次打印完成之前,Cura 无法通过 USB 启动另一次打印。"
  1443. #: /Users/c.lamboo/ultimaker/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136
  1444. msgctxt "@message"
  1445. msgid "Print in Progress"
  1446. msgstr "正在进行打印"
  1447. #: /Users/c.lamboo/ultimaker/Cura/plugins/PreviewStage/__init__.py:13
  1448. msgctxt "@item:inmenu"
  1449. msgid "Preview"
  1450. msgstr "预览"
  1451. #: /Users/c.lamboo/ultimaker/Cura/plugins/GCodeWriter/GCodeWriter.py:75
  1452. msgctxt "@error:not supported"
  1453. msgid "GCodeWriter does not support non-text mode."
  1454. msgstr "GCodeWriter 不支持非文本模式。"
  1455. #: /Users/c.lamboo/ultimaker/Cura/plugins/GCodeWriter/GCodeWriter.py:81
  1456. #: /Users/c.lamboo/ultimaker/Cura/plugins/GCodeWriter/GCodeWriter.py:97
  1457. msgctxt "@warning:status"
  1458. msgid "Please prepare G-code before exporting."
  1459. msgstr "导出前请先准备 G-code。"
  1460. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27
  1461. msgctxt "@action"
  1462. msgid "Update Firmware"
  1463. msgstr "更新固件"
  1464. #: /Users/c.lamboo/ultimaker/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43
  1465. msgctxt "@error:not supported"
  1466. msgid "GCodeGzWriter does not support text mode."
  1467. msgstr "GCodeGzWriter 不支持文本模式。"
  1468. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/__init__.py:15
  1469. msgctxt "@item:inlistbox"
  1470. msgid "Layer view"
  1471. msgstr "分层视图"
  1472. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationView.py:129
  1473. msgctxt "@info:status"
  1474. msgid "Cura does not accurately display layers when Wire Printing is enabled."
  1475. msgstr "启用“单线打印”后,Cura 将无法准确地显示打印层。"
  1476. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationView.py:130
  1477. msgctxt "@info:title"
  1478. msgid "Simulation View"
  1479. msgstr "仿真视图"
  1480. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationView.py:133
  1481. msgctxt "@info:status"
  1482. msgid "Nothing is shown because you need to slice first."
  1483. msgstr "由于需要先切片,因此未显示任何内容。"
  1484. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationView.py:134
  1485. msgctxt "@info:title"
  1486. msgid "No layers to show"
  1487. msgstr "无层可显示"
  1488. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationView.py:136
  1489. #: /Users/c.lamboo/ultimaker/Cura/plugins/SolidView/SolidView.py:74
  1490. msgctxt "@info:option_text"
  1491. msgid "Do not show this message again"
  1492. msgstr "不再显示此消息"
  1493. #: /Users/c.lamboo/ultimaker/Cura/plugins/LegacyProfileReader/__init__.py:14
  1494. msgctxt "@item:inlistbox"
  1495. msgid "Cura 15.04 profiles"
  1496. msgstr "Cura 15.04 配置文件"
  1497. #: /Users/c.lamboo/ultimaker/Cura/plugins/AMFReader/__init__.py:15
  1498. msgctxt "@item:inlistbox"
  1499. msgid "AMF File"
  1500. msgstr "AMF 文件"
  1501. #: /Users/c.lamboo/ultimaker/Cura/plugins/SolidView/SolidView.py:71
  1502. msgctxt "@info:status"
  1503. msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura."
  1504. msgstr "突出显示的区域指示缺少或多余的表面。修复模型,并再次在 Cura 中打开。"
  1505. #: /Users/c.lamboo/ultimaker/Cura/plugins/SolidView/SolidView.py:73
  1506. msgctxt "@info:title"
  1507. msgid "Model Errors"
  1508. msgstr "模型错误"
  1509. #: /Users/c.lamboo/ultimaker/Cura/plugins/SolidView/__init__.py:12
  1510. msgctxt "@item:inmenu"
  1511. msgid "Solid view"
  1512. msgstr "实体视图"
  1513. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17
  1514. #, python-brace-format
  1515. msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  1516. 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}."
  1517. msgstr "您的 {machine_name} 可能有新功能或错误修复可用!如果打印机上的固件还不是最新版本,建议将其更新为 {latest_version} 版。"
  1518. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22
  1519. #, python-format
  1520. msgctxt "@info:title The %s gets replaced with the printer name."
  1521. msgid "New %s stable firmware available"
  1522. msgstr "新 %s 稳定固件可用"
  1523. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28
  1524. msgctxt "@action:button"
  1525. msgid "How to update"
  1526. msgstr "如何更新"
  1527. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127
  1528. msgctxt "@info"
  1529. msgid "Could not access update information."
  1530. msgstr "无法获取更新信息。"
  1531. #: /Users/c.lamboo/ultimaker/Cura/plugins/SupportEraser/__init__.py:12
  1532. msgctxt "@label"
  1533. msgid "Support Blocker"
  1534. msgstr "支撑拦截器"
  1535. #: /Users/c.lamboo/ultimaker/Cura/plugins/SupportEraser/__init__.py:13
  1536. msgctxt "@info:tooltip"
  1537. msgid "Create a volume in which supports are not printed."
  1538. msgstr "创建一个不打印支撑的体积。"
  1539. #: /Users/c.lamboo/ultimaker/Cura/plugins/PrepareStage/__init__.py:12
  1540. msgctxt "@item:inmenu"
  1541. msgid "Prepare"
  1542. msgstr "准备"
  1543. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56
  1544. msgctxt "@title:label"
  1545. msgid "Printer Settings"
  1546. msgstr "打印机设置"
  1547. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:68
  1548. msgctxt "@label"
  1549. msgid "X (Width)"
  1550. msgstr "X (宽度)"
  1551. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:72
  1552. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:87
  1553. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:102
  1554. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201
  1555. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221
  1556. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241
  1557. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261
  1558. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279
  1559. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:78
  1560. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:92
  1561. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:108
  1562. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:123
  1563. msgctxt "@label"
  1564. msgid "mm"
  1565. msgstr "mm"
  1566. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:83
  1567. msgctxt "@label"
  1568. msgid "Y (Depth)"
  1569. msgstr "Y (深度)"
  1570. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:98
  1571. msgctxt "@label"
  1572. msgid "Z (Height)"
  1573. msgstr "Z (高度)"
  1574. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:112
  1575. msgctxt "@label"
  1576. msgid "Build plate shape"
  1577. msgstr "打印平台形状"
  1578. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:125
  1579. msgctxt "@label"
  1580. msgid "Origin at center"
  1581. msgstr "置中"
  1582. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:137
  1583. msgctxt "@label"
  1584. msgid "Heated bed"
  1585. msgstr "加热床"
  1586. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:149
  1587. msgctxt "@label"
  1588. msgid "Heated build volume"
  1589. msgstr "加热的构建体积"
  1590. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:161
  1591. msgctxt "@label"
  1592. msgid "G-code flavor"
  1593. msgstr "G-code 风格"
  1594. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:185
  1595. msgctxt "@title:label"
  1596. msgid "Printhead Settings"
  1597. msgstr "打印头设置"
  1598. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:197
  1599. msgctxt "@label"
  1600. msgid "X min"
  1601. msgstr "X 最小值"
  1602. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:217
  1603. msgctxt "@label"
  1604. msgid "Y min"
  1605. msgstr "Y 最小值"
  1606. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:237
  1607. msgctxt "@label"
  1608. msgid "X max"
  1609. msgstr "X 最大值"
  1610. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:257
  1611. msgctxt "@label"
  1612. msgid "Y max"
  1613. msgstr "Y 最大值"
  1614. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:275
  1615. msgctxt "@label"
  1616. msgid "Gantry Height"
  1617. msgstr "十字轴高度"
  1618. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:289
  1619. msgctxt "@label"
  1620. msgid "Number of Extruders"
  1621. msgstr "挤出机数目"
  1622. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:341
  1623. msgctxt "@label"
  1624. msgid "Apply Extruder offsets to GCode"
  1625. msgstr "将挤出器偏移量应用于 GCode"
  1626. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:389
  1627. msgctxt "@title:label"
  1628. msgid "Start G-code"
  1629. msgstr "开始 G-code"
  1630. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:400
  1631. msgctxt "@title:label"
  1632. msgid "End G-code"
  1633. msgstr "结束 G-code"
  1634. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42
  1635. msgctxt "@title:tab"
  1636. msgid "Printer"
  1637. msgstr "打印机"
  1638. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63
  1639. msgctxt "@title:label"
  1640. msgid "Nozzle Settings"
  1641. msgstr "喷嘴设置"
  1642. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:74
  1643. msgctxt "@label"
  1644. msgid "Nozzle size"
  1645. msgstr "喷嘴孔径"
  1646. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:88
  1647. msgctxt "@label"
  1648. msgid "Compatible material diameter"
  1649. msgstr "兼容的材料直径"
  1650. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:104
  1651. msgctxt "@label"
  1652. msgid "Nozzle offset X"
  1653. msgstr "喷嘴偏移 X"
  1654. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:119
  1655. msgctxt "@label"
  1656. msgid "Nozzle offset Y"
  1657. msgstr "喷嘴偏移 Y"
  1658. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:134
  1659. msgctxt "@label"
  1660. msgid "Cooling Fan Number"
  1661. msgstr "冷却风扇数量"
  1662. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:162
  1663. msgctxt "@title:label"
  1664. msgid "Extruder Start G-code"
  1665. msgstr "挤出机的开始 G-code"
  1666. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:176
  1667. msgctxt "@title:label"
  1668. msgid "Extruder End G-code"
  1669. msgstr "挤出机的结束 G-code"
  1670. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:14
  1671. msgctxt "@title:window"
  1672. msgid "Convert Image"
  1673. msgstr "转换图像"
  1674. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:33
  1675. msgctxt "@action:label"
  1676. msgid "Height (mm)"
  1677. msgstr "高度 (mm)"
  1678. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:56
  1679. msgctxt "@info:tooltip"
  1680. msgid "The maximum distance of each pixel from \"Base.\""
  1681. msgstr "每个像素与底板的最大距离"
  1682. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:66
  1683. msgctxt "@action:label"
  1684. msgid "Base (mm)"
  1685. msgstr "底板 (mm)"
  1686. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:90
  1687. msgctxt "@info:tooltip"
  1688. msgid "The base height from the build plate in millimeters."
  1689. msgstr "距离打印平台的底板高度,以毫米为单位。"
  1690. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:100
  1691. msgctxt "@action:label"
  1692. msgid "Width (mm)"
  1693. msgstr "宽度 (mm)"
  1694. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:124
  1695. msgctxt "@info:tooltip"
  1696. msgid "The width in millimeters on the build plate"
  1697. msgstr "构建板宽度,以毫米为单位"
  1698. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:134
  1699. msgctxt "@action:label"
  1700. msgid "Depth (mm)"
  1701. msgstr "深度 (mm)"
  1702. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:158
  1703. msgctxt "@info:tooltip"
  1704. msgid "The depth in millimeters on the build plate"
  1705. msgstr "打印平台深度,以毫米为单位"
  1706. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:187
  1707. msgctxt "@item:inlistbox"
  1708. msgid "Darker is higher"
  1709. msgstr "颜色越深厚度越大"
  1710. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:188
  1711. msgctxt "@item:inlistbox"
  1712. msgid "Lighter is higher"
  1713. msgstr "颜色越浅厚度越大"
  1714. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:195
  1715. msgctxt "@info:tooltip"
  1716. 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."
  1717. msgstr "在影像浮雕中,为了阻挡更多光源通过,深色像素应对应于较厚的位置。在高度图中,浅色像素代表着更高的地形,因此浅色像素对应于生成的 3D 模型中较厚的位置。"
  1718. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:205
  1719. msgctxt "@action:label"
  1720. msgid "Color Model"
  1721. msgstr "颜色模型"
  1722. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:224
  1723. msgctxt "@item:inlistbox"
  1724. msgid "Linear"
  1725. msgstr "线性"
  1726. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:225
  1727. msgctxt "@item:inlistbox"
  1728. msgid "Translucency"
  1729. msgstr "半透明"
  1730. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:232
  1731. msgctxt "@info:tooltip"
  1732. msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly."
  1733. msgstr "对于隐雕,提供一个用于半透明的简单对数模型。对于高度图,像素值与高度线性对应。"
  1734. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:242
  1735. msgctxt "@action:label"
  1736. msgid "1mm Transmittance (%)"
  1737. msgstr "1 毫米透射率 (%)"
  1738. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:263
  1739. msgctxt "@info:tooltip"
  1740. 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."
  1741. msgstr "穿透 1 毫米厚的打印件的光线百分比。降低此值将增大图像暗区中的对比度并减小图像亮区中的对比度。"
  1742. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:274
  1743. msgctxt "@action:label"
  1744. msgid "Smoothing"
  1745. msgstr "平滑"
  1746. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:298
  1747. msgctxt "@info:tooltip"
  1748. msgid "The amount of smoothing to apply to the image."
  1749. msgstr "要应用到图像的平滑量。"
  1750. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:329
  1751. #: /Users/c.lamboo/ultimaker/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:136
  1752. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/RenameDialog.qml:80
  1753. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ColorDialog.qml:143
  1754. msgctxt "@action:button"
  1755. msgid "OK"
  1756. msgstr "确定"
  1757. #: /Users/c.lamboo/ultimaker/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:17
  1758. msgctxt "@title:window"
  1759. msgid "Post Processing Plugin"
  1760. msgstr "后期处理插件"
  1761. #: /Users/c.lamboo/ultimaker/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57
  1762. msgctxt "@label"
  1763. msgid "Post Processing Scripts"
  1764. msgstr "后期处理脚本"
  1765. #: /Users/c.lamboo/ultimaker/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:215
  1766. msgctxt "@action"
  1767. msgid "Add a script"
  1768. msgstr "添加一个脚本"
  1769. #: /Users/c.lamboo/ultimaker/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:251
  1770. msgctxt "@label"
  1771. msgid "Settings"
  1772. msgstr "设置"
  1773. #: /Users/c.lamboo/ultimaker/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:460
  1774. msgctxt "@info:tooltip"
  1775. msgid "Change active post-processing scripts."
  1776. msgstr "更改处于活动状态的后期处理脚本。"
  1777. #: /Users/c.lamboo/ultimaker/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:464
  1778. msgctxt "@info:tooltip"
  1779. msgid "The following script is active:"
  1780. msgid_plural "The following scripts are active:"
  1781. msgstr[0] "以下脚本处于活动状态:"
  1782. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144
  1783. msgctxt "@label"
  1784. msgid "Move to top"
  1785. msgstr "移至顶部"
  1786. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:155
  1787. msgctxt "@label"
  1788. msgid "Delete"
  1789. msgstr "删除"
  1790. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:186
  1791. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/MonitorButton.qml:284
  1792. msgctxt "@label"
  1793. msgid "Resume"
  1794. msgstr "恢复"
  1795. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:188
  1796. msgctxt "@label"
  1797. msgid "Pausing..."
  1798. msgstr "正在暂停..."
  1799. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:190
  1800. msgctxt "@label"
  1801. msgid "Resuming..."
  1802. msgstr "正在恢复..."
  1803. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:192
  1804. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/MonitorButton.qml:279
  1805. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/MonitorButton.qml:288
  1806. msgctxt "@label"
  1807. msgid "Pause"
  1808. msgstr "暂停"
  1809. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:206
  1810. msgctxt "@label"
  1811. msgid "Aborting..."
  1812. msgstr "正在中止..."
  1813. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:206
  1814. msgctxt "@label"
  1815. msgid "Abort"
  1816. msgstr "中止"
  1817. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:218
  1818. msgctxt "@label %1 is the name of a print job."
  1819. msgid "Are you sure you want to move %1 to the top of the queue?"
  1820. msgstr "您确定要将 %1 移至队列顶部吗?"
  1821. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:219
  1822. msgctxt "@window:title"
  1823. msgid "Move print job to top"
  1824. msgstr "将打印作业移至顶部"
  1825. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:227
  1826. msgctxt "@label %1 is the name of a print job."
  1827. msgid "Are you sure you want to delete %1?"
  1828. msgstr "您确定要删除 %1 吗?"
  1829. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:228
  1830. msgctxt "@window:title"
  1831. msgid "Delete print job"
  1832. msgstr "删除打印作业"
  1833. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:236
  1834. msgctxt "@label %1 is the name of a print job."
  1835. msgid "Are you sure you want to abort %1?"
  1836. msgstr "您确定要中止 %1 吗?"
  1837. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:237
  1838. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/MonitorButton.qml:326
  1839. msgctxt "@window:title"
  1840. msgid "Abort print"
  1841. msgstr "中止打印"
  1842. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:12
  1843. msgctxt "@title:window"
  1844. msgid "Print over network"
  1845. msgstr "通过网络打印"
  1846. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:53
  1847. msgctxt "@action:button"
  1848. msgid "Print"
  1849. msgstr "打印"
  1850. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:81
  1851. msgctxt "@label"
  1852. msgid "Printer selection"
  1853. msgstr "打印机选择"
  1854. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20
  1855. msgctxt "@title:window"
  1856. msgid "Configuration Changes"
  1857. msgstr "配置更改"
  1858. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:36
  1859. msgctxt "@action:button"
  1860. msgid "Override"
  1861. msgstr "覆盖"
  1862. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:83
  1863. msgctxt "@label"
  1864. msgid "The assigned printer, %1, requires the following configuration change:"
  1865. msgid_plural "The assigned printer, %1, requires the following configuration changes:"
  1866. msgstr[0] "分配的打印机 %1 需要以下配置更改:"
  1867. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:87
  1868. msgctxt "@label"
  1869. msgid "The printer %1 is assigned, but the job contains an unknown material configuration."
  1870. msgstr "已向打印机 %1 分配作业,但作业包含未知的材料配置。"
  1871. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:97
  1872. msgctxt "@label"
  1873. msgid "Change material %1 from %2 to %3."
  1874. msgstr "将材料 %1 从 %2 更改为 %3。"
  1875. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:100
  1876. msgctxt "@label"
  1877. msgid "Load %3 as material %1 (This cannot be overridden)."
  1878. msgstr "将 %3 作为材料 %1 进行加载(此操作无法覆盖)。"
  1879. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:103
  1880. msgctxt "@label"
  1881. msgid "Change print core %1 from %2 to %3."
  1882. msgstr "将 Print Core %1 从 %2 更改为 %3。"
  1883. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:106
  1884. msgctxt "@label"
  1885. msgid "Change build plate to %1 (This cannot be overridden)."
  1886. msgstr "将打印平台更改为 %1(此操作无法覆盖)。"
  1887. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:113
  1888. msgctxt "@label"
  1889. msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print."
  1890. msgstr "覆盖将使用包含现有打印机配置的指定设置。这可能会导致打印失败。"
  1891. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:151
  1892. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:181
  1893. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:178
  1894. msgctxt "@label"
  1895. msgid "Glass"
  1896. msgstr "玻璃"
  1897. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:154
  1898. msgctxt "@label"
  1899. msgid "Aluminum"
  1900. msgstr "铝"
  1901. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:148
  1902. msgctxt "@label link to Connect and Cloud interfaces"
  1903. msgid "Manage printer"
  1904. msgstr "管理打印机"
  1905. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:253
  1906. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:479
  1907. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250
  1908. msgctxt "@info"
  1909. msgid "Please update your printer's firmware to manage the queue remotely."
  1910. msgstr "请及时更新打印机固件以远程管理打印队列。"
  1911. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:287
  1912. msgctxt "@info"
  1913. msgid "Webcam feeds for cloud printers cannot be viewed from Ultimaker Cura. Click \"Manage printer\" to visit Ultimaker Digital Factory and view this webcam."
  1914. msgstr "无法从 Ultimaker Cura 中查看云打印机的网络摄像头馈送。请单击“管理打印机”以访问 Ultimaker Digital Factory 并查看此网络摄像头。"
  1915. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:347
  1916. msgctxt "@label:status"
  1917. msgid "Loading..."
  1918. msgstr "正在加载..."
  1919. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:351
  1920. msgctxt "@label:status"
  1921. msgid "Unavailable"
  1922. msgstr "不可用"
  1923. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:355
  1924. msgctxt "@label:status"
  1925. msgid "Unreachable"
  1926. msgstr "无法连接"
  1927. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:359
  1928. msgctxt "@label:status"
  1929. msgid "Idle"
  1930. msgstr "空闲"
  1931. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:363
  1932. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76
  1933. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78
  1934. msgctxt "@label:status"
  1935. msgid "Preparing..."
  1936. msgstr "正在准备..."
  1937. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:368
  1938. msgctxt "@label:status"
  1939. msgid "Printing"
  1940. msgstr "打印"
  1941. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:409
  1942. msgctxt "@label"
  1943. msgid "Untitled"
  1944. msgstr "未命名"
  1945. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:424
  1946. msgctxt "@label"
  1947. msgid "Anonymous"
  1948. msgstr "匿名"
  1949. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:445
  1950. msgctxt "@label:status"
  1951. msgid "Requires configuration changes"
  1952. msgstr "需要更改配置"
  1953. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:459
  1954. msgctxt "@action:button"
  1955. msgid "Details"
  1956. msgstr "详细信息"
  1957. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:126
  1958. msgctxt "@label"
  1959. msgid "Unavailable printer"
  1960. msgstr "不可用的打印机"
  1961. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:128
  1962. msgctxt "@label"
  1963. msgid "First available"
  1964. msgstr "第一个可用"
  1965. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorStage.qml:117
  1966. msgctxt "@info"
  1967. msgid "Monitor your printers from everywhere using Ultimaker Digital Factory"
  1968. msgstr "使用 Ultimaker Digital Factory 从任意位置监控打印机"
  1969. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorStage.qml:129
  1970. msgctxt "@button"
  1971. msgid "View printers in Digital Factory"
  1972. msgstr "查看 Digital Factory 中的打印机"
  1973. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:44
  1974. msgctxt "@title:window"
  1975. msgid "Connect to Networked Printer"
  1976. msgstr "连接到网络打印机"
  1977. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51
  1978. msgctxt "@label"
  1979. 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."
  1980. msgstr "欲通过网络向打印机发送打印请求,请确保您的打印机已通过网线或 WIFI 连接至网络。若不能连接 Cura 与打印机,亦可通过使用 USB 设备将 G-code 文件传输到打印机。"
  1981. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51
  1982. msgctxt "@label"
  1983. msgid "Select your printer from the list below:"
  1984. msgstr "请从以下列表中选择您的打印机:"
  1985. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:71
  1986. msgctxt "@action:button"
  1987. msgid "Edit"
  1988. msgstr "编辑"
  1989. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:82
  1990. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:186
  1991. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/MachinesPage.qml:148
  1992. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:321
  1993. msgctxt "@action:button"
  1994. msgid "Remove"
  1995. msgstr "删除"
  1996. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:90
  1997. msgctxt "@action:button"
  1998. msgid "Refresh"
  1999. msgstr "刷新"
  2000. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:161
  2001. msgctxt "@label"
  2002. msgid "If your printer is not listed, read the <a href='%1'>network printing troubleshooting guide</a>"
  2003. msgstr "如果您的打印机未列出,请阅读<a href='%1'>网络打印故障排除指南</a>"
  2004. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:186
  2005. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:247
  2006. msgctxt "@label"
  2007. msgid "Type"
  2008. msgstr "类型"
  2009. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:202
  2010. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:256
  2011. msgctxt "@label"
  2012. msgid "Firmware version"
  2013. msgstr "固件版本"
  2014. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:212
  2015. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:266
  2016. msgctxt "@label"
  2017. msgid "Address"
  2018. msgstr "地址"
  2019. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:232
  2020. msgctxt "@label"
  2021. msgid "This printer is not set up to host a group of printers."
  2022. msgstr "这台打印机未设置为运行一组打印机。"
  2023. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:236
  2024. msgctxt "@label"
  2025. msgid "This printer is the host for a group of %1 printers."
  2026. msgstr "这台打印机是一组共 %1 台打印机的主机。"
  2027. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:245
  2028. msgctxt "@label"
  2029. msgid "The printer at this address has not yet responded."
  2030. msgstr "该网络地址的打印机尚未响应。"
  2031. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:250
  2032. msgctxt "@action:button"
  2033. msgid "Connect"
  2034. msgstr "连接"
  2035. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:261
  2036. msgctxt "@title:window"
  2037. msgid "Invalid IP address"
  2038. msgstr "IP 地址无效"
  2039. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:262
  2040. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:141
  2041. msgctxt "@text"
  2042. msgid "Please enter a valid IP address."
  2043. msgstr "请输入有效的 IP 地址。"
  2044. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:272
  2045. msgctxt "@title:window"
  2046. msgid "Printer Address"
  2047. msgstr "打印机网络地址"
  2048. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297
  2049. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:97
  2050. msgctxt "@label"
  2051. msgid "Enter the IP address of your printer on the network."
  2052. msgstr "请输入打印机在网络上的 IP 地址。"
  2053. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:29
  2054. msgctxt "@label"
  2055. msgid "Queued"
  2056. msgstr "已排队"
  2057. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:64
  2058. msgctxt "@label link to connect manager"
  2059. msgid "Manage in browser"
  2060. msgstr "请于浏览器中进行管理"
  2061. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:91
  2062. msgctxt "@label"
  2063. msgid "There are no print jobs in the queue. Slice and send a job to add one."
  2064. msgstr "队列中无打印任务。可通过切片和发送添加任务。"
  2065. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99
  2066. msgctxt "@label"
  2067. msgid "Print jobs"
  2068. msgstr "打印作业"
  2069. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:108
  2070. msgctxt "@label"
  2071. msgid "Total print time"
  2072. msgstr "总打印时间"
  2073. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:117
  2074. msgctxt "@label"
  2075. msgid "Waiting for"
  2076. msgstr "等待"
  2077. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:70
  2078. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82
  2079. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84
  2080. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86
  2081. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88
  2082. msgctxt "@label:status"
  2083. msgid "Aborted"
  2084. msgstr "已中止"
  2085. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:72
  2086. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:74
  2087. msgctxt "@label:status"
  2088. msgid "Finished"
  2089. msgstr "已完成"
  2090. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80
  2091. msgctxt "@label:status"
  2092. msgid "Aborting..."
  2093. msgstr "正在中止..."
  2094. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90
  2095. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92
  2096. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94
  2097. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96
  2098. msgctxt "@label:status"
  2099. msgid "Failed"
  2100. msgstr "失败"
  2101. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98
  2102. msgctxt "@label:status"
  2103. msgid "Pausing..."
  2104. msgstr "正在暂停..."
  2105. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100
  2106. msgctxt "@label:status"
  2107. msgid "Paused"
  2108. msgstr "已暂停"
  2109. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102
  2110. msgctxt "@label:status"
  2111. msgid "Resuming..."
  2112. msgstr "正在恢复..."
  2113. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104
  2114. msgctxt "@label:status"
  2115. msgid "Action required"
  2116. msgstr "需要采取行动"
  2117. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106
  2118. msgctxt "@label:status"
  2119. msgid "Finishes %1 at %2"
  2120. msgstr "完成 %1 于 %2"
  2121. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/main.qml:25
  2122. msgctxt "@title:window"
  2123. msgid "Cura Backups"
  2124. msgstr "Cura 备份"
  2125. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21
  2126. msgctxt "@backuplist:label"
  2127. msgid "Cura Version"
  2128. msgstr "Cura 版本"
  2129. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29
  2130. msgctxt "@backuplist:label"
  2131. msgid "Machines"
  2132. msgstr "机器"
  2133. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37
  2134. msgctxt "@backuplist:label"
  2135. msgid "Materials"
  2136. msgstr "材料"
  2137. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45
  2138. msgctxt "@backuplist:label"
  2139. msgid "Profiles"
  2140. msgstr "配置文件"
  2141. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53
  2142. msgctxt "@backuplist:label"
  2143. msgid "Plugins"
  2144. msgstr "插件"
  2145. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22
  2146. msgctxt "@button"
  2147. msgid "Want more?"
  2148. msgstr "想要更多?"
  2149. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31
  2150. msgctxt "@button"
  2151. msgid "Backup Now"
  2152. msgstr "立即备份"
  2153. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43
  2154. msgctxt "@checkbox:description"
  2155. msgid "Auto Backup"
  2156. msgstr "自动备份"
  2157. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44
  2158. msgctxt "@checkbox:description"
  2159. msgid "Automatically create a backup each day that Cura is started."
  2160. msgstr "在 Cura 每天启动时自动创建备份。"
  2161. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:64
  2162. msgctxt "@button"
  2163. msgid "Restore"
  2164. msgstr "恢复"
  2165. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:93
  2166. msgctxt "@dialog:title"
  2167. msgid "Delete Backup"
  2168. msgstr "删除备份"
  2169. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:94
  2170. msgctxt "@dialog:info"
  2171. msgid "Are you sure you want to delete this backup? This cannot be undone."
  2172. msgstr "您确定要删除此备份吗?此操作无法撤销。"
  2173. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:102
  2174. msgctxt "@dialog:title"
  2175. msgid "Restore Backup"
  2176. msgstr "恢复备份"
  2177. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:103
  2178. msgctxt "@dialog:info"
  2179. msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?"
  2180. msgstr "您需要重新启动 Cura 才能恢复备份。您要立即关闭 Cura 吗?"
  2181. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28
  2182. msgctxt "@title"
  2183. msgid "My Backups"
  2184. msgstr "我的备份"
  2185. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:36
  2186. msgctxt "@empty_state"
  2187. msgid "You don't have any backups currently. Use the 'Backup Now' button to create one."
  2188. msgstr "您目前没有任何备份。使用“立即备份”按钮创建一个备份。"
  2189. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:55
  2190. msgctxt "@backup_limit_info"
  2191. msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones."
  2192. msgstr "在预览阶段,将限制为 5 个可见备份。移除一个备份以查看更早的备份。"
  2193. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34
  2194. msgctxt "@description"
  2195. msgid "Backup and synchronize your Cura settings."
  2196. msgstr "备份并同步您的 Cura 设置。"
  2197. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:47
  2198. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:180
  2199. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/CloudContent.qml:212
  2200. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Account/GeneralOperations.qml:49
  2201. msgctxt "@button"
  2202. msgid "Sign in"
  2203. msgstr "登录"
  2204. #: /Users/c.lamboo/ultimaker/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:16
  2205. msgctxt "@title:window"
  2206. msgid "More information on anonymous data collection"
  2207. msgstr "更多关于匿名数据收集的信息"
  2208. #: /Users/c.lamboo/ultimaker/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:73
  2209. msgctxt "@text:window"
  2210. 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:"
  2211. msgstr "为了改善打印质量和用户体验,Ultimaker Cura 会收集匿名数据。以下是所有数据分享的示例:"
  2212. #: /Users/c.lamboo/ultimaker/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:107
  2213. msgctxt "@text:window"
  2214. msgid "I don't want to send anonymous data"
  2215. msgstr "我不想发送匿名数据"
  2216. #: /Users/c.lamboo/ultimaker/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:116
  2217. msgctxt "@text:window"
  2218. msgid "Allow sending anonymous data"
  2219. msgstr "允许发送匿名数据"
  2220. #: /Users/c.lamboo/ultimaker/Cura/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:216
  2221. msgctxt "@option"
  2222. msgid "Save Cura project and print file"
  2223. msgstr "保存 Cura 项目并打印文件"
  2224. #: /Users/c.lamboo/ultimaker/Cura/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:217
  2225. msgctxt "@option"
  2226. msgid "Save Cura project"
  2227. msgstr "保存 Cura 项目"
  2228. #: /Users/c.lamboo/ultimaker/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30
  2229. msgctxt "@label"
  2230. msgid "Please select any upgrades made to this Ultimaker Original"
  2231. msgstr "请选择适用于 Ultimaker Original 的升级文件"
  2232. #: /Users/c.lamboo/ultimaker/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:39
  2233. msgctxt "@label"
  2234. msgid "Heated Build Plate (official kit or self-built)"
  2235. msgstr "热床(官方版本或自制)"
  2236. #: /Users/c.lamboo/ultimaker/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30
  2237. msgctxt "@title"
  2238. msgid "Build Plate Leveling"
  2239. msgstr "打印平台调平"
  2240. #: /Users/c.lamboo/ultimaker/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:42
  2241. msgctxt "@label"
  2242. 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."
  2243. msgstr "为了确保打印质量出色,您现在可以开始调整您的打印平台。当您点击「移动到下一个位置」时,喷嘴将移动到可以调节的不同位置。"
  2244. #: /Users/c.lamboo/ultimaker/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:52
  2245. msgctxt "@label"
  2246. 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."
  2247. msgstr "在打印头停止的每一个位置下方插入一张纸,并调整平台高度。当纸张恰好被喷嘴的尖端轻微压住时,此时打印平台的高度已被正确校准。"
  2248. #: /Users/c.lamboo/ultimaker/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:67
  2249. msgctxt "@action:button"
  2250. msgid "Start Build Plate Leveling"
  2251. msgstr "开始进行打印平台调平"
  2252. #: /Users/c.lamboo/ultimaker/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:79
  2253. msgctxt "@action:button"
  2254. msgid "Move to Next Position"
  2255. msgstr "移动到下一个位置"
  2256. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:172
  2257. msgctxt "@label Is followed by the name of an author"
  2258. msgid "By"
  2259. msgstr "由"
  2260. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:207
  2261. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/OnboardBanner.qml:101
  2262. msgctxt "@button:label"
  2263. msgid "Learn More"
  2264. msgstr "详细了解"
  2265. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226
  2266. msgctxt "@button"
  2267. msgid "Enable"
  2268. msgstr "启用"
  2269. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226
  2270. msgctxt "@button"
  2271. msgid "Disable"
  2272. msgstr "禁用"
  2273. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:244
  2274. msgctxt "@button"
  2275. msgid "Downgrading..."
  2276. msgstr "正在降级..."
  2277. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:245
  2278. msgctxt "@button"
  2279. msgid "Downgrade"
  2280. msgstr "降级"
  2281. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:249
  2282. msgctxt "@button"
  2283. msgid "Installing..."
  2284. msgstr "正在安装..."
  2285. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:250
  2286. msgctxt "@button"
  2287. msgid "Install"
  2288. msgstr "安装"
  2289. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:254
  2290. msgctxt "@button"
  2291. msgid "Uninstall"
  2292. msgstr "卸载"
  2293. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:269
  2294. msgctxt "@button"
  2295. msgid "Updating..."
  2296. msgstr "正在更新..."
  2297. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:269
  2298. msgctxt "@button"
  2299. msgid "Update"
  2300. msgstr "更新"
  2301. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/Plugins.qml:8
  2302. msgctxt "@header"
  2303. msgid "Install Plugins"
  2304. msgstr "安装插件"
  2305. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/Plugins.qml:12
  2306. msgctxt "@text"
  2307. msgid "Streamline your workflow and customize your Ultimaker Cura experience with plugins contributed by our amazing community of users."
  2308. msgstr "使用由我们卓越的用户社区提供的插件,简化您的工作流程并自定义 Ultimaker Cura 体验。"
  2309. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:15
  2310. msgctxt "@title"
  2311. msgid "Changes from your account"
  2312. msgstr "您的帐户有更改"
  2313. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24
  2314. msgctxt "@button"
  2315. msgid "Dismiss"
  2316. msgstr "解除"
  2317. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24
  2318. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:76
  2319. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:175
  2320. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:118
  2321. msgctxt "@button"
  2322. msgid "Next"
  2323. msgstr "下一步"
  2324. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:52
  2325. msgctxt "@label"
  2326. msgid "The following packages will be added:"
  2327. msgstr "将添加以下程序包:"
  2328. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:94
  2329. msgctxt "@label"
  2330. msgid "The following packages can not be installed because of an incompatible Cura version:"
  2331. msgstr "由于 Cura 版本不兼容,无法安装以下程序包:"
  2332. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/MultipleLicenseDialog.qml:35
  2333. msgctxt "@label"
  2334. msgid "You need to accept the license to install the package"
  2335. msgstr "需要接受许可证才能安装该程序包"
  2336. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:15
  2337. msgctxt "@button"
  2338. msgid "Plugin license agreement"
  2339. msgstr "插件许可协议"
  2340. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:47
  2341. msgctxt "@text"
  2342. msgid "Please read and agree with the plugin licence."
  2343. msgstr "请阅读并同意插件许可。"
  2344. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:70
  2345. msgctxt "@button"
  2346. msgid "Accept"
  2347. msgstr "接受"
  2348. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/Materials.qml:8
  2349. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/MissingPackages.qml:8
  2350. msgctxt "@header"
  2351. msgid "Install Materials"
  2352. msgstr "安装材料"
  2353. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/Materials.qml:12
  2354. msgctxt "@text"
  2355. msgid "Select and install material profiles optimised for your Ultimaker 3D printers."
  2356. msgstr "选择并安装针对您的 Ultimaker 3D 打印机经过优化的材料配置文件。"
  2357. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/ManagePackagesButton.qml:32
  2358. msgctxt "@info:tooltip"
  2359. msgid "Manage packages"
  2360. msgstr "管理包"
  2361. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:81
  2362. msgctxt "@header"
  2363. msgid "Description"
  2364. msgstr "描述"
  2365. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:110
  2366. msgctxt "@header"
  2367. msgid "Compatible printers"
  2368. msgstr "兼容的打印机"
  2369. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:134
  2370. msgctxt "@info"
  2371. msgid "No compatibility information"
  2372. msgstr "无兼容性信息"
  2373. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:152
  2374. msgctxt "@header"
  2375. msgid "Compatible support materials"
  2376. msgstr "兼容的支撑材料"
  2377. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:176
  2378. msgctxt "@info No materials"
  2379. msgid "None"
  2380. msgstr "无"
  2381. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:193
  2382. msgctxt "@header"
  2383. msgid "Compatible with Material Station"
  2384. msgstr "与 Material Station 兼容"
  2385. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:202
  2386. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:228
  2387. msgctxt "@info"
  2388. msgid "Yes"
  2389. msgstr "是"
  2390. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:202
  2391. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:228
  2392. msgctxt "@info"
  2393. msgid "No"
  2394. msgstr "否"
  2395. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:219
  2396. msgctxt "@header"
  2397. msgid "Optimized for Air Manager"
  2398. msgstr "已针对 Air Manager 优化"
  2399. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:243
  2400. msgctxt "@button"
  2401. msgid "Visit plug-in website"
  2402. msgstr "访问插件网站"
  2403. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:243
  2404. msgctxt "@button"
  2405. msgid "Website"
  2406. msgstr "网站"
  2407. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:252
  2408. msgctxt "@button"
  2409. msgid "Buy spool"
  2410. msgstr "购买线轴"
  2411. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:261
  2412. msgctxt "@button"
  2413. msgid "Safety datasheet"
  2414. msgstr "安全数据表"
  2415. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:270
  2416. msgctxt "@button"
  2417. msgid "Technical datasheet"
  2418. msgstr "技术数据表"
  2419. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:15
  2420. msgctxt "@header"
  2421. msgid "Package details"
  2422. msgstr "包详情"
  2423. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:40
  2424. msgctxt "@button:tooltip"
  2425. msgid "Back"
  2426. msgstr "返回"
  2427. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/Packages.qml:151
  2428. msgctxt "@button"
  2429. msgid "Failed to load packages:"
  2430. msgstr "无法加载包:"
  2431. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/Packages.qml:151
  2432. msgctxt "@button"
  2433. msgid "Retry?"
  2434. msgstr "是否重试?"
  2435. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/Packages.qml:167
  2436. msgctxt "@button"
  2437. msgid "Loading"
  2438. msgstr "加载"
  2439. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/Packages.qml:183
  2440. msgctxt "@message"
  2441. msgid "No more results to load"
  2442. msgstr "没有更多的结果要加载"
  2443. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/Packages.qml:183
  2444. msgctxt "@message"
  2445. msgid "No results found with current filter"
  2446. msgstr "当前筛选没有任何结果"
  2447. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/Packages.qml:226
  2448. msgctxt "@button"
  2449. msgid "Load more"
  2450. msgstr "加载更多"
  2451. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:21
  2452. msgctxt "@info"
  2453. msgid "Ultimaker Verified Plug-in"
  2454. msgstr "Ultimaker 验证插件"
  2455. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:22
  2456. msgctxt "@info"
  2457. msgid "Ultimaker Certified Material"
  2458. msgstr "Ultimaker 认证材料"
  2459. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:23
  2460. msgctxt "@info"
  2461. msgid "Ultimaker Verified Package"
  2462. msgstr "Ultimaker 验证包"
  2463. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/ManagedPackages.qml:11
  2464. msgctxt "@header"
  2465. msgid "Manage packages"
  2466. msgstr "管理包"
  2467. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/ManagedPackages.qml:15
  2468. msgctxt "@text"
  2469. msgid "Manage your Ultimaker Cura plugins and material profiles here. Make sure to keep your plugins up to date and backup your setup regularly."
  2470. msgstr "在此处管理您的 Ultimaker Cura 插件和材料配置文件。请确保将插件保持为最新,并定期备份设置。"
  2471. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/InstallMissingPackagesDialog.qml:15
  2472. msgctxt "@title"
  2473. msgid "Install missing Materials"
  2474. msgstr "安装缺少的材料"
  2475. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:87
  2476. msgctxt "@title"
  2477. msgid "Loading..."
  2478. msgstr "正在加载..."
  2479. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:148
  2480. msgctxt "@button"
  2481. msgid "Plugins"
  2482. msgstr "插件"
  2483. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:156
  2484. msgctxt "@button"
  2485. msgid "Materials"
  2486. msgstr "材料"
  2487. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:193
  2488. msgctxt "@info"
  2489. msgid "Search in the browser"
  2490. msgstr "在浏览器中搜索"
  2491. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:271
  2492. msgctxt "@button"
  2493. msgid "In order to use the package you will need to restart Cura"
  2494. msgstr "要使用该包,您需要重新启动 Cura"
  2495. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:279
  2496. msgctxt "@info:button, %1 is the application name"
  2497. msgid "Quit %1"
  2498. msgstr "退出 %1"
  2499. #: /Users/c.lamboo/ultimaker/Cura/plugins/MonitorStage/MonitorMain.qml:100
  2500. msgctxt "@info"
  2501. msgid ""
  2502. "Please make sure your printer has a connection:\n"
  2503. "- Check if the printer is turned on.\n"
  2504. "- Check if the printer is connected to the network.\n"
  2505. "- Check if you are signed in to discover cloud-connected printers."
  2506. msgstr ""
  2507. "请确保您的打印机已连接:\n"
  2508. "- 检查打印机是否已启动。\n"
  2509. "- 检查打印机是否连接至网络。\n"
  2510. "- 检查您是否已登录查找云连接的打印机。"
  2511. #: /Users/c.lamboo/ultimaker/Cura/plugins/MonitorStage/MonitorMain.qml:113
  2512. msgctxt "@info"
  2513. msgid "Please connect your printer to the network."
  2514. msgstr "请将打印机连接到网络。"
  2515. #: /Users/c.lamboo/ultimaker/Cura/plugins/MonitorStage/MonitorMain.qml:148
  2516. msgctxt "@label link to technical assistance"
  2517. msgid "View user manuals online"
  2518. msgstr "查看联机用户手册"
  2519. #: /Users/c.lamboo/ultimaker/Cura/plugins/MonitorStage/MonitorMain.qml:164
  2520. msgctxt "@info"
  2521. msgid "In order to monitor your print from Cura, please connect the printer."
  2522. msgstr "为了从 Cura 监控您的打印,请连接打印机。"
  2523. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:15
  2524. msgctxt "@title:window"
  2525. msgid "Open Project"
  2526. msgstr "打开项目"
  2527. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:64
  2528. msgctxt "@action:ComboBox Update/override existing profile"
  2529. msgid "Update existing"
  2530. msgstr "更新已有配置"
  2531. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:65
  2532. msgctxt "@action:ComboBox Save settings in a new profile"
  2533. msgid "Create new"
  2534. msgstr "新建"
  2535. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:83
  2536. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:61
  2537. msgctxt "@action:title"
  2538. msgid "Summary - Cura Project"
  2539. msgstr "摘要 - Cura 项目"
  2540. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:109
  2541. msgctxt "@info:tooltip"
  2542. msgid "How should the conflict in the machine be resolved?"
  2543. msgstr "机器的设置冲突应如何解决?"
  2544. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:165
  2545. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:97
  2546. msgctxt "@action:label"
  2547. msgid "Printer settings"
  2548. msgstr "打印机设置"
  2549. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:176
  2550. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:106
  2551. msgctxt "@action:label"
  2552. msgid "Type"
  2553. msgstr "类型"
  2554. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:193
  2555. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:121
  2556. msgctxt "@action:label"
  2557. msgid "Printer Group"
  2558. msgstr "打印机组"
  2559. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:218
  2560. msgctxt "@info:tooltip"
  2561. msgid "How should the conflict in the profile be resolved?"
  2562. msgstr "配置文件中的冲突如何解决?"
  2563. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:240
  2564. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:222
  2565. msgctxt "@action:label"
  2566. msgid "Profile settings"
  2567. msgstr "配置文件设置"
  2568. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:251
  2569. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:376
  2570. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:121
  2571. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:246
  2572. msgctxt "@action:label"
  2573. msgid "Name"
  2574. msgstr "名字"
  2575. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:269
  2576. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:263
  2577. msgctxt "@action:label"
  2578. msgid "Intent"
  2579. msgstr "Intent"
  2580. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:287
  2581. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:230
  2582. msgctxt "@action:label"
  2583. msgid "Not in profile"
  2584. msgstr "不在配置文件中"
  2585. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:293
  2586. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:235
  2587. msgctxt "@action:label"
  2588. msgid "%1 override"
  2589. msgid_plural "%1 overrides"
  2590. msgstr[0] "%1 重写"
  2591. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:306
  2592. msgctxt "@action:label"
  2593. msgid "Derivative from"
  2594. msgstr "衍生自"
  2595. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:312
  2596. msgctxt "@action:label"
  2597. msgid "%1, %2 override"
  2598. msgid_plural "%1, %2 overrides"
  2599. msgstr[0] "%1, %2 重写"
  2600. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:334
  2601. msgctxt "@info:tooltip"
  2602. msgid "How should the conflict in the material be resolved?"
  2603. msgstr "材料的设置冲突应如何解决?"
  2604. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:361
  2605. msgctxt "@action:label"
  2606. msgid "Material settings"
  2607. msgstr "材料设置"
  2608. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:397
  2609. msgctxt "@action:label"
  2610. msgid "Setting visibility"
  2611. msgstr "设置可见性"
  2612. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:406
  2613. msgctxt "@action:label"
  2614. msgid "Mode"
  2615. msgstr "模式"
  2616. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:422
  2617. msgctxt "@action:label"
  2618. msgid "Visible settings:"
  2619. msgstr "可见设置:"
  2620. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:427
  2621. msgctxt "@action:label"
  2622. msgid "%1 out of %2"
  2623. msgstr "%1 / %2"
  2624. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:448
  2625. msgctxt "@action:warning"
  2626. msgid "Loading a project will clear all models on the build plate."
  2627. msgstr "加载项目将清除打印平台上的所有模型。"
  2628. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:490
  2629. msgctxt "@label"
  2630. msgid "The material used in this project is currently not installed in Cura.<br/>Install the material profile and reopen the project."
  2631. msgstr "此项目中使用的材料当前未安装在 Cura 中。<br/>安装材料配置文件并重新打开项目。"
  2632. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:515
  2633. msgctxt "@action:button"
  2634. msgid "Open"
  2635. msgstr "打开"
  2636. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:521
  2637. msgctxt "@action:button"
  2638. msgid "Open project anyway"
  2639. msgstr "仍要打开项目"
  2640. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:530
  2641. msgctxt "@action:button"
  2642. msgid "Install missing material"
  2643. msgstr "安装缺少的材料"
  2644. #: /Users/c.lamboo/ultimaker/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:41
  2645. msgctxt "@label"
  2646. msgid "Mesh Type"
  2647. msgstr "网格类型"
  2648. #: /Users/c.lamboo/ultimaker/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:81
  2649. msgctxt "@label"
  2650. msgid "Normal model"
  2651. msgstr "正常模式"
  2652. #: /Users/c.lamboo/ultimaker/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:96
  2653. msgctxt "@label"
  2654. msgid "Print as support"
  2655. msgstr "打印为支撑"
  2656. #: /Users/c.lamboo/ultimaker/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:111
  2657. msgctxt "@label"
  2658. msgid "Modify settings for overlaps"
  2659. msgstr "修改重叠设置"
  2660. #: /Users/c.lamboo/ultimaker/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:126
  2661. msgctxt "@label"
  2662. msgid "Don't support overlaps"
  2663. msgstr "不支持重叠"
  2664. #: /Users/c.lamboo/ultimaker/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:159
  2665. msgctxt "@item:inlistbox"
  2666. msgid "Infill mesh only"
  2667. msgstr "仅填充网格"
  2668. #: /Users/c.lamboo/ultimaker/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:160
  2669. msgctxt "@item:inlistbox"
  2670. msgid "Cutting mesh"
  2671. msgstr "切割网格"
  2672. #: /Users/c.lamboo/ultimaker/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:385
  2673. msgctxt "@action:button"
  2674. msgid "Select settings"
  2675. msgstr "选择设置"
  2676. #: /Users/c.lamboo/ultimaker/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:17
  2677. msgctxt "@title:window"
  2678. msgid "Select Settings to Customize for this model"
  2679. msgstr "选择对此模型的自定义设置"
  2680. #: /Users/c.lamboo/ultimaker/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:61
  2681. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:102
  2682. msgctxt "@label:textbox"
  2683. msgid "Filter..."
  2684. msgstr "筛选..."
  2685. #: /Users/c.lamboo/ultimaker/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:75
  2686. msgctxt "@label:checkbox"
  2687. msgid "Show all"
  2688. msgstr "显示全部"
  2689. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31
  2690. msgctxt "@title"
  2691. msgid "Update Firmware"
  2692. msgstr "更新固件"
  2693. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:37
  2694. msgctxt "@label"
  2695. 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."
  2696. msgstr "固件是直接在 3D 打印机上运行的一个软件。此固件控制步进电机,调节温度并最终使打印机正常工作。"
  2697. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:43
  2698. msgctxt "@label"
  2699. msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements."
  2700. msgstr "新打印机出厂配备的固件完全可以正常使用,但新版本往往具有更多的新功能和改进。"
  2701. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:55
  2702. msgctxt "@action:button"
  2703. msgid "Automatically upgrade Firmware"
  2704. msgstr "自动升级固件"
  2705. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:66
  2706. msgctxt "@action:button"
  2707. msgid "Upload custom Firmware"
  2708. msgstr "上传自定义固件"
  2709. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:79
  2710. msgctxt "@label"
  2711. msgid "Firmware can not be updated because there is no connection with the printer."
  2712. msgstr "未连接打印机,无法更新固件。"
  2713. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:86
  2714. msgctxt "@label"
  2715. msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware."
  2716. msgstr "与打印机间的连接不支持固件更新,因此无法更新固件。"
  2717. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:93
  2718. msgctxt "@title:window"
  2719. msgid "Select custom firmware"
  2720. msgstr "选择自定义固件"
  2721. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:113
  2722. msgctxt "@title:window"
  2723. msgid "Firmware Update"
  2724. msgstr "固件升级"
  2725. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:137
  2726. msgctxt "@label"
  2727. msgid "Updating firmware."
  2728. msgstr "更新固件中..."
  2729. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:139
  2730. msgctxt "@label"
  2731. msgid "Firmware update completed."
  2732. msgstr "固件更新已完成。"
  2733. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:141
  2734. msgctxt "@label"
  2735. msgid "Firmware update failed due to an unknown error."
  2736. msgstr "由于未知错误,固件更新失败。"
  2737. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143
  2738. msgctxt "@label"
  2739. msgid "Firmware update failed due to an communication error."
  2740. msgstr "由于通信错误,导致固件升级失败。"
  2741. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145
  2742. msgctxt "@label"
  2743. msgid "Firmware update failed due to an input/output error."
  2744. msgstr "由于输入/输出错误,导致固件升级失败。"
  2745. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147
  2746. msgctxt "@label"
  2747. msgid "Firmware update failed due to missing firmware."
  2748. msgstr "由于固件丢失,导致固件升级失败。"
  2749. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:18
  2750. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:47
  2751. msgctxt "@label"
  2752. msgid "Color scheme"
  2753. msgstr "颜色方案"
  2754. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:104
  2755. msgctxt "@label:listbox"
  2756. msgid "Material Color"
  2757. msgstr "材料颜色"
  2758. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:108
  2759. msgctxt "@label:listbox"
  2760. msgid "Line Type"
  2761. msgstr "走线类型"
  2762. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:112
  2763. msgctxt "@label:listbox"
  2764. msgid "Speed"
  2765. msgstr "速度"
  2766. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:116
  2767. msgctxt "@label:listbox"
  2768. msgid "Layer Thickness"
  2769. msgstr "层厚度"
  2770. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:120
  2771. msgctxt "@label:listbox"
  2772. msgid "Line Width"
  2773. msgstr "走线宽度"
  2774. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:124
  2775. msgctxt "@label:listbox"
  2776. msgid "Flow"
  2777. msgstr "流量"
  2778. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:164
  2779. msgctxt "@label"
  2780. msgid "Compatibility Mode"
  2781. msgstr "兼容模式"
  2782. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:231
  2783. msgctxt "@label"
  2784. msgid "Travels"
  2785. msgstr "空驶"
  2786. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:237
  2787. msgctxt "@label"
  2788. msgid "Helpers"
  2789. msgstr "打印辅助结构"
  2790. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:243
  2791. msgctxt "@label"
  2792. msgid "Shell"
  2793. msgstr "外壳"
  2794. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:249
  2795. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:74
  2796. msgctxt "@label"
  2797. msgid "Infill"
  2798. msgstr "填充"
  2799. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257
  2800. msgctxt "@label"
  2801. msgid "Starts"
  2802. msgstr "开始"
  2803. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:304
  2804. msgctxt "@label"
  2805. msgid "Only Show Top Layers"
  2806. msgstr "只显示顶层"
  2807. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:313
  2808. msgctxt "@label"
  2809. msgid "Show 5 Detailed Layers On Top"
  2810. msgstr "在顶部显示 5 层打印细节"
  2811. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:326
  2812. msgctxt "@label"
  2813. msgid "Top / Bottom"
  2814. msgstr "顶 / 底层"
  2815. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:330
  2816. msgctxt "@label"
  2817. msgid "Inner Wall"
  2818. msgstr "内壁"
  2819. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:397
  2820. msgctxt "@label"
  2821. msgid "min"
  2822. msgstr "最小"
  2823. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:462
  2824. msgctxt "@label"
  2825. msgid "max"
  2826. msgstr "最大"
  2827. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/SearchBar.qml:17
  2828. msgctxt "@placeholder"
  2829. msgid "Search"
  2830. msgstr "搜索"
  2831. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Settings/SettingItem.qml:84
  2832. msgctxt "@label"
  2833. msgid "This setting is not used because all the settings that it influences are overridden."
  2834. msgstr "未使用此设置,因为受其影响的所有设置均已覆盖。"
  2835. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Settings/SettingItem.qml:89
  2836. msgctxt "@label Header for list of settings."
  2837. msgid "Affects"
  2838. msgstr "影响"
  2839. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Settings/SettingItem.qml:94
  2840. msgctxt "@label Header for list of settings."
  2841. msgid "Affected By"
  2842. msgstr "受影响项目"
  2843. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Settings/SettingItem.qml:190
  2844. msgctxt "@label"
  2845. msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders."
  2846. msgstr "此设置始终在所有挤出机之间共享。在此处更改它将改变所有挤出机的值。"
  2847. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Settings/SettingItem.qml:194
  2848. msgctxt "@label"
  2849. msgid "This setting is resolved from conflicting extruder-specific values:"
  2850. msgstr "此设置与挤出器特定值不同:"
  2851. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Settings/SettingItem.qml:234
  2852. msgctxt "@label"
  2853. msgid ""
  2854. "This setting has a value that is different from the profile.\n"
  2855. "\n"
  2856. "Click to restore the value of the profile."
  2857. msgstr ""
  2858. "此设置的值与配置文件不同。\n"
  2859. "\n"
  2860. "单击以恢复配置文件的值。"
  2861. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Settings/SettingItem.qml:334
  2862. msgctxt "@label"
  2863. msgid ""
  2864. "This setting is normally calculated, but it currently has an absolute value set.\n"
  2865. "\n"
  2866. "Click to restore the calculated value."
  2867. msgstr ""
  2868. "此设置通常可被自动计算,但其当前已被绝对定义。\n"
  2869. "\n"
  2870. "单击以恢复自动计算的值。"
  2871. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Settings/SettingView.qml:48
  2872. msgctxt "@label:textbox"
  2873. msgid "Search settings"
  2874. msgstr "搜索设置"
  2875. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Settings/SettingView.qml:395
  2876. msgctxt "@action:menu"
  2877. msgid "Copy value to all extruders"
  2878. msgstr "将值复制到所有挤出机"
  2879. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Settings/SettingView.qml:404
  2880. msgctxt "@action:menu"
  2881. msgid "Copy all changed values to all extruders"
  2882. msgstr "将所有修改值复制到所有挤出机"
  2883. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Settings/SettingView.qml:440
  2884. msgctxt "@action:menu"
  2885. msgid "Hide this setting"
  2886. msgstr "隐藏此设置"
  2887. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Settings/SettingView.qml:453
  2888. msgctxt "@action:menu"
  2889. msgid "Don't show this setting"
  2890. msgstr "不再显示此设置"
  2891. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Settings/SettingView.qml:457
  2892. msgctxt "@action:menu"
  2893. msgid "Keep this setting visible"
  2894. msgstr "保持此设置可见"
  2895. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Settings/SettingView.qml:476
  2896. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:467
  2897. msgctxt "@action:menu"
  2898. msgid "Configure setting visibility..."
  2899. msgstr "配置设定可见性..."
  2900. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Settings/SettingCategory.qml:115
  2901. msgctxt "@label"
  2902. msgid ""
  2903. "Some hidden settings use values different from their normal calculated value.\n"
  2904. "\n"
  2905. "Click to make these settings visible."
  2906. msgstr ""
  2907. "一些隐藏设置正在使用有别于一般设置的计算值。\n"
  2908. "\n"
  2909. "单击以使这些设置可见。"
  2910. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/MainWindow/MainWindowHeader.qml:135
  2911. msgctxt "@action:button"
  2912. msgid "Marketplace"
  2913. msgstr "市场"
  2914. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/MainWindow/ApplicationMenu.qml:63
  2915. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/SettingsMenu.qml:13
  2916. msgctxt "@title:menu menubar:toplevel"
  2917. msgid "&Settings"
  2918. msgstr "设置(&S)"
  2919. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/MainWindow/ApplicationMenu.qml:87
  2920. msgctxt "@title:window"
  2921. msgid "New project"
  2922. msgstr "新建项目"
  2923. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/MainWindow/ApplicationMenu.qml:88
  2924. msgctxt "@info:question"
  2925. msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings."
  2926. msgstr "你确定要开始一个新项目吗?这将清除打印平台及任何未保存的设置。"
  2927. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:13
  2928. msgctxt "@title:tab"
  2929. msgid "Setting Visibility"
  2930. msgstr "设置可见性"
  2931. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:24
  2932. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:134
  2933. msgctxt "@action:button"
  2934. msgid "Defaults"
  2935. msgstr "默认"
  2936. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:55
  2937. msgctxt "@label:textbox"
  2938. msgid "Check all"
  2939. msgstr "全部勾选"
  2940. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:18
  2941. msgctxt "@title:window"
  2942. msgid "Sync materials with printers"
  2943. msgstr "匹配材料和打印机"
  2944. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:49
  2945. msgctxt "@title:header"
  2946. msgid "Sync materials with printers"
  2947. msgstr "匹配材料和打印机"
  2948. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:55
  2949. msgctxt "@text"
  2950. msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers."
  2951. msgstr "只需遵循几个简单步骤,您就可以将所有材料配置文件与打印机同步。"
  2952. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77
  2953. msgctxt "@button"
  2954. msgid "Why do I need to sync material profiles?"
  2955. msgstr "为什么需要同步材料配置文件?"
  2956. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:86
  2957. msgctxt "@button"
  2958. msgid "Start"
  2959. msgstr "开始"
  2960. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:144
  2961. msgctxt "@title:header"
  2962. msgid "Sign in"
  2963. msgstr "登录"
  2964. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:150
  2965. msgctxt "@text"
  2966. msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura."
  2967. msgstr "要自动将材料配置文件与连接到 Digital Factory 的所有打印机同步,您需要登录 Cura。"
  2968. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:174
  2969. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:462
  2970. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:602
  2971. msgctxt "@button"
  2972. msgid "Sync materials with USB"
  2973. msgstr "使用 USB 同步材料"
  2974. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:207
  2975. msgctxt "@title:header"
  2976. msgid "The following printers will receive the new material profiles:"
  2977. msgstr "以下打印机将收到新的材料配置文件:"
  2978. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:214
  2979. msgctxt "@title:header"
  2980. msgid "Something went wrong when sending the materials to the printers."
  2981. msgstr "向打印机发送材料时出错。"
  2982. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:221
  2983. msgctxt "@title:header"
  2984. msgid "Material profiles successfully synced with the following printers:"
  2985. msgstr "材料配置文件与以下打印机成功同步:"
  2986. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:258
  2987. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:445
  2988. msgctxt "@button"
  2989. msgid "Troubleshooting"
  2990. msgstr "故障排除"
  2991. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:422
  2992. msgctxt "@text Asking the user whether printers are missing in a list."
  2993. msgid "Printers missing?"
  2994. msgstr "缺少打印机?"
  2995. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:424
  2996. msgctxt "@text"
  2997. msgid "Make sure all your printers are turned ON and connected to Digital Factory."
  2998. msgstr "请确保所有打印机都已打开并连接到 Digital Factory。"
  2999. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:433
  3000. msgctxt "@button"
  3001. msgid "Refresh List"
  3002. msgstr "刷新列表"
  3003. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:473
  3004. msgctxt "@button"
  3005. msgid "Try again"
  3006. msgstr "再试一次"
  3007. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:477
  3008. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:712
  3009. msgctxt "@button"
  3010. msgid "Done"
  3011. msgstr "完成"
  3012. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:479
  3013. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:622
  3014. msgctxt "@button"
  3015. msgid "Sync"
  3016. msgstr "同步"
  3017. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:535
  3018. msgctxt "@button"
  3019. msgid "Syncing"
  3020. msgstr "正在同步"
  3021. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:553
  3022. msgctxt "@title:header"
  3023. msgid "No printers found"
  3024. msgstr "未找到打印机"
  3025. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:574
  3026. msgctxt "@text"
  3027. 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."
  3028. msgstr "您似乎没有任何兼容打印机连接到 Digital Factory。请确保打印机已连接并运行最新固件。"
  3029. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:585
  3030. msgctxt "@button"
  3031. msgid "Learn how to connect your printer to Digital Factory"
  3032. msgstr "了解如何将打印机连接到 Digital Factory"
  3033. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:613
  3034. msgctxt "@button"
  3035. msgid "Refresh"
  3036. msgstr "刷新"
  3037. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:642
  3038. msgctxt "@title:header"
  3039. msgid "Sync material profiles via USB"
  3040. msgstr "通过 USB 同步材料配置文件"
  3041. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:648
  3042. msgctxt "@text In the UI this is followed by a list of steps the user needs to take."
  3043. msgid "Follow the following steps to load the new material profiles to your printer."
  3044. msgstr "请遵循以下步骤将新材料配置文件加载到打印机。"
  3045. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:679
  3046. msgctxt "@text"
  3047. msgid "Click the export material archive button."
  3048. msgstr "单击导出材料存档按钮。"
  3049. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:680
  3050. msgctxt "@text"
  3051. msgid "Save the .umm file on a USB stick."
  3052. msgstr "将 .umm文件保存到 U 盘。"
  3053. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:681
  3054. msgctxt "@text"
  3055. msgid "Insert the USB stick into your printer and launch the procedure to load new material profiles."
  3056. msgstr "将 U 盘插入打印机,并启动程序以加载新材料配置文件。"
  3057. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:689
  3058. msgctxt "@button"
  3059. msgid "How to load new material profiles to my printer"
  3060. msgstr "如何将新材料配置文件加载到打印机"
  3061. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:703
  3062. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:299
  3063. msgctxt "@button"
  3064. msgid "Back"
  3065. msgstr "返回"
  3066. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:712
  3067. msgctxt "@button"
  3068. msgid "Export material archive"
  3069. msgstr "导出材料存档"
  3070. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:747
  3071. msgctxt "@title:window"
  3072. msgid "Export All Materials"
  3073. msgstr "导出所有材料"
  3074. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:121
  3075. msgctxt "@title:window"
  3076. msgid "Confirm Diameter Change"
  3077. msgstr "确认直径更改"
  3078. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:122
  3079. msgctxt "@label (%1 is a number)"
  3080. msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?"
  3081. msgstr "新的灯丝直径被设置为%1毫米,这与当前的挤出机不兼容。你想继续吗?"
  3082. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:152
  3083. msgctxt "@label"
  3084. msgid "Display Name"
  3085. msgstr "显示名称"
  3086. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:171
  3087. msgctxt "@label"
  3088. msgid "Brand"
  3089. msgstr "品牌"
  3090. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:190
  3091. msgctxt "@label"
  3092. msgid "Material Type"
  3093. msgstr "材料类型"
  3094. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210
  3095. msgctxt "@label"
  3096. msgid "Color"
  3097. msgstr "颜色"
  3098. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:262
  3099. msgctxt "@title"
  3100. msgid "Material color picker"
  3101. msgstr "材料颜色选取器"
  3102. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:275
  3103. msgctxt "@label"
  3104. msgid "Properties"
  3105. msgstr "属性"
  3106. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:286
  3107. msgctxt "@label"
  3108. msgid "Density"
  3109. msgstr "密度"
  3110. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:319
  3111. msgctxt "@label"
  3112. msgid "Diameter"
  3113. msgstr "直径"
  3114. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:369
  3115. msgctxt "@label"
  3116. msgid "Filament Cost"
  3117. msgstr "耗材成本"
  3118. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:401
  3119. msgctxt "@label"
  3120. msgid "Filament weight"
  3121. msgstr "耗材重量"
  3122. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:433
  3123. msgctxt "@label"
  3124. msgid "Filament length"
  3125. msgstr "耗材长度"
  3126. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:451
  3127. msgctxt "@label"
  3128. msgid "Cost per Meter"
  3129. msgstr "每米成本"
  3130. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:465
  3131. msgctxt "@label"
  3132. msgid "This material is linked to %1 and shares some of its properties."
  3133. msgstr "此材料与 %1 相关联,并共享其某些属性。"
  3134. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:472
  3135. msgctxt "@label"
  3136. msgid "Unlink Material"
  3137. msgstr "解绑材料"
  3138. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:485
  3139. msgctxt "@label"
  3140. msgid "Description"
  3141. msgstr "描述"
  3142. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:503
  3143. msgctxt "@label"
  3144. msgid "Adhesion Information"
  3145. msgstr "粘附信息"
  3146. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:642
  3147. msgctxt "@title"
  3148. msgid "Information"
  3149. msgstr "信息"
  3150. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:647
  3151. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:82
  3152. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:18
  3153. msgctxt "@label"
  3154. msgid "Print settings"
  3155. msgstr "打印设置"
  3156. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:70
  3157. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Cura.qml:468
  3158. msgctxt "@title:tab"
  3159. msgid "Materials"
  3160. msgstr "材料"
  3161. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:72
  3162. msgctxt "@label"
  3163. msgid "Materials compatible with active printer:"
  3164. msgstr "与处于活动状态的打印机兼容的材料:"
  3165. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:78
  3166. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:94
  3167. msgctxt "@action:button"
  3168. msgid "Create new"
  3169. msgstr "新建"
  3170. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:90
  3171. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:88
  3172. msgctxt "@action:button"
  3173. msgid "Import"
  3174. msgstr "导入"
  3175. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:101
  3176. msgctxt "@action:button"
  3177. msgid "Sync with Printers"
  3178. msgstr "与打印机同步"
  3179. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:160
  3180. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/MachinesPage.qml:142
  3181. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:294
  3182. msgctxt "@action:button"
  3183. msgid "Activate"
  3184. msgstr "激活"
  3185. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:174
  3186. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:311
  3187. msgctxt "@action:button"
  3188. msgid "Duplicate"
  3189. msgstr "复制"
  3190. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:198
  3191. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:342
  3192. msgctxt "@action:button"
  3193. msgid "Export"
  3194. msgstr "导出"
  3195. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:212
  3196. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:392
  3197. msgctxt "@title:window"
  3198. msgid "Confirm Remove"
  3199. msgstr "确认删除"
  3200. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:215
  3201. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:393
  3202. msgctxt "@label (%1 is object name)"
  3203. msgid "Are you sure you wish to remove %1? This cannot be undone!"
  3204. msgstr "您确认要删除 %1?该操作无法恢复!"
  3205. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:228
  3206. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:238
  3207. msgctxt "@title:window"
  3208. msgid "Import Material"
  3209. msgstr "导入配置"
  3210. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:242
  3211. msgctxt "@info:status Don't translate the XML tag <filename>!"
  3212. msgid "Successfully imported material <filename>%1</filename>"
  3213. msgstr "成功导入材料 <filename>%1</filename>"
  3214. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:245
  3215. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  3216. msgid "Could not import material <filename>%1</filename>: <message>%2</message>"
  3217. msgstr "无法导入材料 <filename>%1</filename>: <message>%2</message>"
  3218. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:256
  3219. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:267
  3220. msgctxt "@title:window"
  3221. msgid "Export Material"
  3222. msgstr "导出材料"
  3223. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:272
  3224. msgctxt "@info:status Don't translate the XML tags <filename> and <message>!"
  3225. msgid "Failed to export material to <filename>%1</filename>: <message>%2</message>"
  3226. msgstr "无法导出材料至 <filename>%1</filename>: <message>%2</message>"
  3227. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:275
  3228. msgctxt "@info:status Don't translate the XML tag <filename>!"
  3229. msgid "Successfully exported material to <filename>%1</filename>"
  3230. msgstr "成功导出材料至: <filename>%1</filename>"
  3231. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/SettingVisibilityItem.qml:56
  3232. msgctxt "@item:tooltip"
  3233. msgid "This setting has been hidden by the active machine and will not be visible."
  3234. msgstr "该设置已被当前机器所隐藏并不可见。"
  3235. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/SettingVisibilityItem.qml:73
  3236. msgctxt "@item:tooltip %1 is list of setting names"
  3237. msgid "This setting has been hidden by the value of %1. Change the value of that setting to make this setting visible."
  3238. msgid_plural "This setting has been hidden by the values of %1. Change the values of those settings to make this setting visible."
  3239. msgstr[0] "该设置已被 %1 的值所隐藏,若需显示,更改此值可使设置项重新可见。"
  3240. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:14
  3241. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Cura.qml:461
  3242. msgctxt "@title:tab"
  3243. msgid "General"
  3244. msgstr "基本"
  3245. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:172
  3246. msgctxt "@label"
  3247. msgid "Interface"
  3248. msgstr "接口"
  3249. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:215
  3250. msgctxt "@heading"
  3251. msgid "-- incomplete --"
  3252. msgstr "-- 不完整 --"
  3253. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:261
  3254. msgctxt "@label"
  3255. msgid "Currency:"
  3256. msgstr "币种:"
  3257. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:277
  3258. msgctxt "@label: Please keep the asterix, it's to indicate that a restart is needed."
  3259. msgid "Theme*:"
  3260. msgstr "主题*:"
  3261. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:323
  3262. msgctxt "@info:tooltip"
  3263. msgid "Slice automatically when changing settings."
  3264. msgstr "当设置被更改时自动进行切片。"
  3265. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:331
  3266. msgctxt "@option:check"
  3267. msgid "Slice automatically"
  3268. msgstr "自动切片"
  3269. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:340
  3270. msgctxt "@info:tooltip"
  3271. msgid "Show an icon and notifications in the system notification area."
  3272. msgstr "在系统通知区域中显示图标和通知。"
  3273. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:348
  3274. msgctxt "@option:check"
  3275. msgid "Add icon to system tray *"
  3276. msgstr "在系统托盘中添加图标 *"
  3277. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:357
  3278. msgctxt "@label"
  3279. msgid "*You will need to restart the application for these changes to have effect."
  3280. msgstr "*需重新启动该应用程序,这些更改才能生效。"
  3281. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:373
  3282. msgctxt "@label"
  3283. msgid "Viewport behavior"
  3284. msgstr "视区行为"
  3285. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:381
  3286. msgctxt "@info:tooltip"
  3287. msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly."
  3288. msgstr "以红色突出显示模型需要增加支撑结构的区域。没有支撑,这些区域将无法正确打印。"
  3289. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:390
  3290. msgctxt "@option:check"
  3291. msgid "Display overhang"
  3292. msgstr "显示悬垂(Overhang)"
  3293. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:400
  3294. msgctxt "@info:tooltip"
  3295. msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry."
  3296. msgstr "使用警告标志突出显示模型缺少或多余的表面。刀具路径常常是要打印的几何结构缺少的部分。"
  3297. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:409
  3298. msgctxt "@option:check"
  3299. msgid "Display model errors"
  3300. msgstr "显示模型错误"
  3301. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:417
  3302. msgctxt "@info:tooltip"
  3303. msgid "Moves the camera so the model is in the center of the view when a model is selected"
  3304. msgstr "当模型被选中时,视角将自动调整到最合适的观察位置(模型处于正中央)"
  3305. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:422
  3306. msgctxt "@action:button"
  3307. msgid "Center camera when item is selected"
  3308. msgstr "当项目被选中时,自动对中视角"
  3309. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:432
  3310. msgctxt "@info:tooltip"
  3311. msgid "Should the default zoom behavior of cura be inverted?"
  3312. msgstr "需要令 Cura 的默认缩放操作反转吗?"
  3313. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:437
  3314. msgctxt "@action:button"
  3315. msgid "Invert the direction of camera zoom."
  3316. msgstr "反转视角变焦方向。"
  3317. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:453
  3318. msgctxt "@info:tooltip"
  3319. msgid "Should zooming move in the direction of the mouse?"
  3320. msgstr "是否跟随鼠标方向进行缩放?"
  3321. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:453
  3322. msgctxt "@info:tooltip"
  3323. msgid "Zooming towards the mouse is not supported in the orthographic perspective."
  3324. msgstr "正交透视不支持通过鼠标进行缩放。"
  3325. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:458
  3326. msgctxt "@action:button"
  3327. msgid "Zoom toward mouse direction"
  3328. msgstr "跟随鼠标方向缩放"
  3329. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:484
  3330. msgctxt "@info:tooltip"
  3331. msgid "Should models on the platform be moved so that they no longer intersect?"
  3332. msgstr "需要移动平台上的模型,使它们不再相交吗?"
  3333. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:489
  3334. msgctxt "@option:check"
  3335. msgid "Ensure models are kept apart"
  3336. msgstr "确保每个模型都保持分离"
  3337. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:498
  3338. msgctxt "@info:tooltip"
  3339. msgid "Should models on the platform be moved down to touch the build plate?"
  3340. msgstr "需要转动模型,使它们接触打印平台吗?"
  3341. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:503
  3342. msgctxt "@option:check"
  3343. msgid "Automatically drop models to the build plate"
  3344. msgstr "自动下降模型到打印平台"
  3345. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:515
  3346. msgctxt "@info:tooltip"
  3347. msgid "Show caution message in g-code reader."
  3348. msgstr "在 G-code 读取器中显示警告信息。"
  3349. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:524
  3350. msgctxt "@option:check"
  3351. msgid "Caution message in g-code reader"
  3352. msgstr "G-code 读取器中的警告信息"
  3353. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:532
  3354. msgctxt "@info:tooltip"
  3355. msgid "Should layer be forced into compatibility mode?"
  3356. msgstr "层视图要强制进入兼容模式吗?"
  3357. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:537
  3358. msgctxt "@option:check"
  3359. msgid "Force layer view compatibility mode (restart required)"
  3360. msgstr "强制层视图兼容模式(需要重新启动)"
  3361. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:547
  3362. msgctxt "@info:tooltip"
  3363. msgid "Should Cura open at the location it was closed?"
  3364. msgstr "Cura 是否应该在关闭的位置打开?"
  3365. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:552
  3366. msgctxt "@option:check"
  3367. msgid "Restore window position on start"
  3368. msgstr "恢复初始窗口位置"
  3369. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:562
  3370. msgctxt "@info:tooltip"
  3371. msgid "What type of camera rendering should be used?"
  3372. msgstr "应使用哪种类型的摄像头进行渲染?"
  3373. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:569
  3374. msgctxt "@window:text"
  3375. msgid "Camera rendering:"
  3376. msgstr "摄像头渲染:"
  3377. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:576
  3378. msgid "Perspective"
  3379. msgstr "透视"
  3380. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:577
  3381. msgid "Orthographic"
  3382. msgstr "正交"
  3383. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:617
  3384. msgctxt "@label"
  3385. msgid "Opening and saving files"
  3386. msgstr "打开并保存文件"
  3387. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:624
  3388. msgctxt "@info:tooltip"
  3389. msgid "Should opening files from the desktop or external applications open in the same instance of Cura?"
  3390. msgstr "应从桌面打开文件还是在同一 Cura 实例中打开外部应用程序?"
  3391. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:629
  3392. msgctxt "@option:check"
  3393. msgid "Use a single instance of Cura"
  3394. msgstr "使用单个 Cura 实例"
  3395. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:640
  3396. msgctxt "@info:tooltip"
  3397. msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?"
  3398. msgstr "是否应在清理构建板后再将新模型加载到单个 Cura 实例中?"
  3399. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:646
  3400. msgctxt "@option:check"
  3401. msgid "Clear buildplate before loading model into the single instance"
  3402. msgstr "在清理构建板后再将模型加载到单个实例中"
  3403. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:656
  3404. msgctxt "@info:tooltip"
  3405. msgid "Should models be scaled to the build volume if they are too large?"
  3406. msgstr "当模型的尺寸过大时,是否将模型自动缩小至成形空间体积?"
  3407. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:661
  3408. msgctxt "@option:check"
  3409. msgid "Scale large models"
  3410. msgstr "缩小过大模型"
  3411. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:671
  3412. msgctxt "@info:tooltip"
  3413. msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?"
  3414. msgstr "当模型以米而不是毫米为单位时,模型可能会在打印平台中显得非常小。在此情况下是否进行放大?"
  3415. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:676
  3416. msgctxt "@option:check"
  3417. msgid "Scale extremely small models"
  3418. msgstr "放大过小模型"
  3419. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:686
  3420. msgctxt "@info:tooltip"
  3421. msgid "Should models be selected after they are loaded?"
  3422. msgstr "模型是否应该在加载后被选中?"
  3423. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:691
  3424. msgctxt "@option:check"
  3425. msgid "Select models when loaded"
  3426. msgstr "选择模型时加载"
  3427. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:701
  3428. msgctxt "@info:tooltip"
  3429. msgid "Should a prefix based on the printer name be added to the print job name automatically?"
  3430. msgstr "打印机名是否自动作为打印作业名称的前缀?"
  3431. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:706
  3432. msgctxt "@option:check"
  3433. msgid "Add machine prefix to job name"
  3434. msgstr "将机器前缀添加到作业名称中"
  3435. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:716
  3436. msgctxt "@info:tooltip"
  3437. msgid "Should a summary be shown when saving a project file?"
  3438. msgstr "保存项目文件时是否显示摘要?"
  3439. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:720
  3440. msgctxt "@option:check"
  3441. msgid "Show summary dialog when saving project"
  3442. msgstr "保存项目时显示摘要对话框"
  3443. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:730
  3444. msgctxt "@info:tooltip"
  3445. msgid "Default behavior when opening a project file"
  3446. msgstr "打开项目文件时的默认行为"
  3447. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:738
  3448. msgctxt "@window:text"
  3449. msgid "Default behavior when opening a project file: "
  3450. msgstr "打开项目文件时的默认行为: "
  3451. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:753
  3452. msgctxt "@option:openProject"
  3453. msgid "Always ask me this"
  3454. msgstr "总是询问"
  3455. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:754
  3456. msgctxt "@option:openProject"
  3457. msgid "Always open as a project"
  3458. msgstr "始终作为一个项目打开"
  3459. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:755
  3460. msgctxt "@option:openProject"
  3461. msgid "Always import models"
  3462. msgstr "始终导入模型"
  3463. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:792
  3464. msgctxt "@info:tooltip"
  3465. 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."
  3466. msgstr "当您对配置文件进行更改并切换到其他配置文件时将显示一个对话框,询问您是否要保留修改。您也可以选择一个默认行为并令其不再显示该对话框。"
  3467. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:801
  3468. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:36
  3469. msgctxt "@label"
  3470. msgid "Profiles"
  3471. msgstr "配置文件"
  3472. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:806
  3473. msgctxt "@window:text"
  3474. msgid "Default behavior for changed setting values when switching to a different profile: "
  3475. msgstr "切换到不同配置文件时对设置值更改的默认操作: "
  3476. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:820
  3477. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:115
  3478. msgctxt "@option:discardOrKeep"
  3479. msgid "Always ask me this"
  3480. msgstr "总是询问"
  3481. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:821
  3482. msgctxt "@option:discardOrKeep"
  3483. msgid "Always discard changed settings"
  3484. msgstr "总是舍失更改的设置"
  3485. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:822
  3486. msgctxt "@option:discardOrKeep"
  3487. msgid "Always transfer changed settings to new profile"
  3488. msgstr "总是将更改的设置传输至新配置文件"
  3489. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:856
  3490. msgctxt "@label"
  3491. msgid "Privacy"
  3492. msgstr "隐私"
  3493. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:862
  3494. msgctxt "@info:tooltip"
  3495. 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."
  3496. msgstr "您愿意将关于您的打印数据以匿名形式发送到 Ultimaker 吗?注意:我们不会记录/发送任何模型、IP 地址或其他私人数据。"
  3497. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:867
  3498. msgctxt "@option:check"
  3499. msgid "Send (anonymous) print information"
  3500. msgstr "(匿名)发送打印信息"
  3501. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:897
  3502. msgctxt "@label"
  3503. msgid "Updates"
  3504. msgstr "更新"
  3505. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:904
  3506. msgctxt "@info:tooltip"
  3507. msgid "Should Cura check for updates when the program is started?"
  3508. msgstr "当 Cura 启动时,是否自动检查更新?"
  3509. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:909
  3510. msgctxt "@option:check"
  3511. msgid "Check for updates on start"
  3512. msgstr "启动时检查更新"
  3513. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:925
  3514. msgctxt "@info:tooltip"
  3515. msgid "When checking for updates, only check for stable releases."
  3516. msgstr "在检查更新时,只检查稳定版。"
  3517. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:931
  3518. msgctxt "@option:radio"
  3519. msgid "Stable releases only"
  3520. msgstr "仅限稳定版"
  3521. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:941
  3522. msgctxt "@info:tooltip"
  3523. msgid "When checking for updates, check for both stable and for beta releases."
  3524. msgstr "在检查更新时,同时检查稳定版和测试版。"
  3525. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:947
  3526. msgctxt "@option:radio"
  3527. msgid "Stable and Beta releases"
  3528. msgstr "稳定版和测试版"
  3529. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:957
  3530. msgctxt "@info:tooltip"
  3531. 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!"
  3532. msgstr "是否应在每次启动 Cura 时自动检查新插件?强烈建议您不要禁用此功能!"
  3533. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:962
  3534. msgctxt "@option:check"
  3535. msgid "Get notifications for plugin updates"
  3536. msgstr "获取插件更新通知"
  3537. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/RenameDialog.qml:22
  3538. msgctxt "@title:window"
  3539. msgid "Rename"
  3540. msgstr "重命名"
  3541. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/RenameDialog.qml:23
  3542. msgctxt "@info"
  3543. msgid "Please provide a new name."
  3544. msgstr "请提供新名称。"
  3545. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/MachinesPage.qml:17
  3546. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Cura.qml:466
  3547. msgctxt "@title:tab"
  3548. msgid "Printers"
  3549. msgstr "打印机"
  3550. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/MachinesPage.qml:50
  3551. msgctxt "@action:button"
  3552. msgid "Add New"
  3553. msgstr "新增"
  3554. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/MachinesPage.qml:154
  3555. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:331
  3556. msgctxt "@action:button"
  3557. msgid "Rename"
  3558. msgstr "重命名"
  3559. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:57
  3560. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Cura.qml:470
  3561. msgctxt "@title:tab"
  3562. msgid "Profiles"
  3563. msgstr "配置文件"
  3564. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:59
  3565. msgctxt "@label"
  3566. msgid "Profiles compatible with active printer:"
  3567. msgstr "与处于活动状态的打印机兼容的配置文件:"
  3568. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:98
  3569. msgctxt "@action:tooltip"
  3570. msgid "Create new profile from current settings/overrides"
  3571. msgstr "使用当前设置/重写值创建新的配置文件"
  3572. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:125
  3573. msgctxt "@action:label"
  3574. msgid "Some settings from current profile were overwritten."
  3575. msgstr "当前配置文件的一些设置已经重写。"
  3576. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:140
  3577. msgctxt "@action:button"
  3578. msgid "Update profile."
  3579. msgstr "更新配置文件。"
  3580. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:143
  3581. msgctxt "@action:tooltip"
  3582. msgid "Update profile with current settings/overrides"
  3583. msgstr "使用当前设置 / 重写值更新配置文件"
  3584. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:148
  3585. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:256
  3586. msgctxt "@action:button"
  3587. msgid "Discard current changes"
  3588. msgstr "舍弃当前更改"
  3589. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:158
  3590. msgctxt "@action:label"
  3591. msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below."
  3592. msgstr "此配置文件使用打印机指定的默认值,因此在下面的列表中没有此设置项。"
  3593. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:165
  3594. msgctxt "@action:label"
  3595. msgid "Your current settings match the selected profile."
  3596. msgstr "您当前的设置与选定的配置文件相匹配。"
  3597. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:175
  3598. msgctxt "@title:tab"
  3599. msgid "Global Settings"
  3600. msgstr "全局设置"
  3601. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:278
  3602. msgctxt "@title:window"
  3603. msgid "Create Profile"
  3604. msgstr "创建配置文件"
  3605. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:280
  3606. msgctxt "@info"
  3607. msgid "Please provide a name for this profile."
  3608. msgstr "请为此配置文件提供名称。"
  3609. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:352
  3610. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:368
  3611. msgctxt "@title:window"
  3612. msgid "Export Profile"
  3613. msgstr "导出配置文件"
  3614. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:382
  3615. msgctxt "@title:window"
  3616. msgid "Duplicate Profile"
  3617. msgstr "复制配置文件"
  3618. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:409
  3619. msgctxt "@title:window"
  3620. msgid "Rename Profile"
  3621. msgstr "重命名配置文件"
  3622. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:422
  3623. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:429
  3624. msgctxt "@title:window"
  3625. msgid "Import Profile"
  3626. msgstr "导入配置文件"
  3627. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ViewsSelector.qml:50
  3628. msgctxt "@label"
  3629. msgid "View type"
  3630. msgstr "查看类型"
  3631. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ViewOrientationControls.qml:25
  3632. msgctxt "@info:tooltip"
  3633. msgid "3D View"
  3634. msgstr "3D 视图"
  3635. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ViewOrientationControls.qml:38
  3636. msgctxt "@info:tooltip"
  3637. msgid "Front View"
  3638. msgstr "正视图"
  3639. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ViewOrientationControls.qml:51
  3640. msgctxt "@info:tooltip"
  3641. msgid "Top View"
  3642. msgstr "顶视图"
  3643. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ViewOrientationControls.qml:64
  3644. msgctxt "@info:tooltip"
  3645. msgid "Left View"
  3646. msgstr "左视图"
  3647. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ViewOrientationControls.qml:77
  3648. msgctxt "@info:tooltip"
  3649. msgid "Right View"
  3650. msgstr "右视图"
  3651. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ObjectItemButton.qml:109
  3652. msgctxt "@label"
  3653. msgid "Is printed as support."
  3654. msgstr "打印为支撑。"
  3655. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ObjectItemButton.qml:112
  3656. msgctxt "@label"
  3657. msgid "Other models overlapping with this model are modified."
  3658. msgstr "修改了与此模型重叠的其他模型。"
  3659. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ObjectItemButton.qml:115
  3660. msgctxt "@label"
  3661. msgid "Infill overlapping with this model is modified."
  3662. msgstr "修改了与该模型重叠的填充。"
  3663. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ObjectItemButton.qml:118
  3664. msgctxt "@label"
  3665. msgid "Overlaps with this model are not supported."
  3666. msgstr "不支持与此模型重叠。"
  3667. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ObjectItemButton.qml:125
  3668. msgctxt "@label %1 is the number of settings it overrides."
  3669. msgid "Overrides %1 setting."
  3670. msgid_plural "Overrides %1 settings."
  3671. msgstr[0] "覆盖 %1 设置。"
  3672. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintMonitor.qml:156
  3673. msgctxt "@label"
  3674. msgid "Active print"
  3675. msgstr "正在打印"
  3676. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintMonitor.qml:164
  3677. msgctxt "@label"
  3678. msgid "Job Name"
  3679. msgstr "作业名"
  3680. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintMonitor.qml:172
  3681. msgctxt "@label"
  3682. msgid "Printing Time"
  3683. msgstr "打印时间"
  3684. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintMonitor.qml:180
  3685. msgctxt "@label"
  3686. msgid "Estimated time left"
  3687. msgstr "预计剩余时间"
  3688. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24
  3689. msgctxt "@label"
  3690. msgid "Add a printer"
  3691. msgstr "添加打印机"
  3692. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:38
  3693. msgctxt "@label"
  3694. msgid "Add a networked printer"
  3695. msgstr "添加已联网打印机"
  3696. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:87
  3697. msgctxt "@label"
  3698. msgid "Add a non-networked printer"
  3699. msgstr "添加未联网打印机"
  3700. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:28
  3701. msgctxt "@label"
  3702. msgid "What's New"
  3703. msgstr "新增功能"
  3704. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:203
  3705. msgctxt "@label"
  3706. msgid "Manufacturer"
  3707. msgstr "制造商"
  3708. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214
  3709. msgctxt "@label"
  3710. msgid "Profile author"
  3711. msgstr "配置文件作者"
  3712. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:226
  3713. msgctxt "@label"
  3714. msgid "Printer name"
  3715. msgstr "打印机名称"
  3716. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:232
  3717. msgctxt "@text"
  3718. msgid "Please name your printer"
  3719. msgstr "请为您的打印机命名"
  3720. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24
  3721. msgctxt "@label"
  3722. msgid "Release Notes"
  3723. msgstr "版本说明"
  3724. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43
  3725. msgctxt "@label"
  3726. msgid "There is no printer found over your network."
  3727. msgstr "未找到网络内打印机。"
  3728. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:162
  3729. msgctxt "@label"
  3730. msgid "Refresh"
  3731. msgstr "刷新"
  3732. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:173
  3733. msgctxt "@label"
  3734. msgid "Add printer by IP"
  3735. msgstr "按 IP 添加打印机"
  3736. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:184
  3737. msgctxt "@label"
  3738. msgid "Add cloud printer"
  3739. msgstr "添加云打印机"
  3740. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:220
  3741. msgctxt "@label"
  3742. msgid "Troubleshooting"
  3743. msgstr "故障排除"
  3744. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/CloudContent.qml:64
  3745. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Account/GeneralOperations.qml:19
  3746. msgctxt "@label"
  3747. msgid "Sign in to the Ultimaker platform"
  3748. msgstr "登录 Ultimaker 平台"
  3749. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/CloudContent.qml:123
  3750. msgctxt "@text"
  3751. msgid "Add material settings and plugins from the Marketplace"
  3752. msgstr "从 Marketplace 添加材料设置和插件"
  3753. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/CloudContent.qml:149
  3754. msgctxt "@text"
  3755. msgid "Backup and sync your material settings and plugins"
  3756. msgstr "备份和同步材料设置和插件"
  3757. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/CloudContent.qml:175
  3758. msgctxt "@text"
  3759. msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community"
  3760. msgstr "在 Ultimaker 社区分享观点并获取 48,000 多名用户的帮助"
  3761. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/CloudContent.qml:189
  3762. msgctxt "@button"
  3763. msgid "Skip"
  3764. msgstr "跳过"
  3765. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/CloudContent.qml:201
  3766. msgctxt "@text"
  3767. msgid "Create a free Ultimaker Account"
  3768. msgstr "创建免费的 Ultimaker 帐户"
  3769. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24
  3770. msgctxt "@label"
  3771. msgid "Help us to improve Ultimaker Cura"
  3772. msgstr "帮助我们改进 Ultimaker Cura"
  3773. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:56
  3774. msgctxt "@text"
  3775. msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:"
  3776. msgstr "为了改善打印质量和用户体验,Ultimaker Cura 会收集匿名数据,这些数据包括:"
  3777. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:68
  3778. msgctxt "@text"
  3779. msgid "Machine types"
  3780. msgstr "机器类型"
  3781. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:74
  3782. msgctxt "@text"
  3783. msgid "Material usage"
  3784. msgstr "材料使用"
  3785. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:80
  3786. msgctxt "@text"
  3787. msgid "Number of slices"
  3788. msgstr "切片数量"
  3789. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:86
  3790. msgctxt "@text"
  3791. msgid "Print settings"
  3792. msgstr "打印设置"
  3793. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:99
  3794. msgctxt "@text"
  3795. msgid "Data collected by Ultimaker Cura will not contain any personal information."
  3796. msgstr "Ultimaker Cura 收集的数据不会包含任何个人信息。"
  3797. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:100
  3798. msgctxt "@text"
  3799. msgid "More information"
  3800. msgstr "更多信息"
  3801. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93
  3802. msgctxt "@label"
  3803. msgid "Empty"
  3804. msgstr "空"
  3805. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47
  3806. msgctxt "@label"
  3807. msgid "Add a Cloud printer"
  3808. msgstr "添加云打印机"
  3809. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:73
  3810. msgctxt "@label"
  3811. msgid "Waiting for Cloud response"
  3812. msgstr "等待云响应"
  3813. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:83
  3814. msgctxt "@label"
  3815. msgid "No printers found in your account?"
  3816. msgstr "在您的帐户中未找到任何打印机?"
  3817. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:117
  3818. msgctxt "@label"
  3819. msgid "The following printers in your account have been added in Cura:"
  3820. msgstr "您帐户中的以下打印机已添加到 Cura 中:"
  3821. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:186
  3822. msgctxt "@button"
  3823. msgid "Add printer manually"
  3824. msgstr "手动添加打印机"
  3825. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23
  3826. msgctxt "@label"
  3827. msgid "User Agreement"
  3828. msgstr "用户协议"
  3829. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:67
  3830. msgctxt "@button"
  3831. msgid "Decline and close"
  3832. msgstr "拒绝并关闭"
  3833. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70
  3834. msgctxt "@label"
  3835. msgid "Add printer by IP address"
  3836. msgstr "按 IP 地址添加打印机"
  3837. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:128
  3838. msgctxt "@text"
  3839. msgid "Enter your printer's IP address."
  3840. msgstr "输入您打印机的 IP 地址。"
  3841. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:150
  3842. msgctxt "@button"
  3843. msgid "Add"
  3844. msgstr "添加"
  3845. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:195
  3846. msgctxt "@label"
  3847. msgid "Could not connect to device."
  3848. msgstr "无法连接到设备。"
  3849. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:196
  3850. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:201
  3851. msgctxt "@label"
  3852. msgid "Can't connect to your Ultimaker printer?"
  3853. msgstr "无法连接到 Ultimaker 打印机?"
  3854. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:200
  3855. msgctxt "@label"
  3856. msgid "The printer at this address has not responded yet."
  3857. msgstr "该网络地址的打印机尚未响应。"
  3858. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:231
  3859. msgctxt "@label"
  3860. msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group."
  3861. msgstr "由于是未知打印机或不是组内主机,无法添加该打印机。"
  3862. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:312
  3863. msgctxt "@button"
  3864. msgid "Connect"
  3865. msgstr "连接"
  3866. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56
  3867. msgctxt "@label"
  3868. msgid "Welcome to Ultimaker Cura"
  3869. msgstr "欢迎使用 Ultimaker Cura"
  3870. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/WelcomeContent.qml:67
  3871. msgctxt "@text"
  3872. msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments."
  3873. msgstr ""
  3874. "请按照以下步骤设置\n"
  3875. "Ultimaker Cura。此操作只需要几分钟时间。"
  3876. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/WelcomeContent.qml:82
  3877. msgctxt "@button"
  3878. msgid "Get started"
  3879. msgstr "开始"
  3880. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ObjectSelector.qml:59
  3881. msgctxt "@label"
  3882. msgid "Object list"
  3883. msgstr "对象列表"
  3884. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:81
  3885. msgctxt "@action:inmenu"
  3886. msgid "Show Online Troubleshooting"
  3887. msgstr "显示联机故障排除"
  3888. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:88
  3889. msgctxt "@action:inmenu"
  3890. msgid "Toggle Full Screen"
  3891. msgstr "切换全屏"
  3892. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:96
  3893. msgctxt "@action:inmenu"
  3894. msgid "Exit Full Screen"
  3895. msgstr "退出全屏"
  3896. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:103
  3897. msgctxt "@action:inmenu menubar:edit"
  3898. msgid "&Undo"
  3899. msgstr "撤销(&U)"
  3900. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:113
  3901. msgctxt "@action:inmenu menubar:edit"
  3902. msgid "&Redo"
  3903. msgstr "重做(&R)"
  3904. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:131
  3905. msgctxt "@action:inmenu menubar:file"
  3906. msgid "&Quit"
  3907. msgstr "退出(&Q)"
  3908. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:139
  3909. msgctxt "@action:inmenu menubar:view"
  3910. msgid "3D View"
  3911. msgstr "3D 视图"
  3912. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:146
  3913. msgctxt "@action:inmenu menubar:view"
  3914. msgid "Front View"
  3915. msgstr "正视图"
  3916. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:153
  3917. msgctxt "@action:inmenu menubar:view"
  3918. msgid "Top View"
  3919. msgstr "顶视图"
  3920. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:160
  3921. msgctxt "@action:inmenu menubar:view"
  3922. msgid "Bottom View"
  3923. msgstr "仰视图"
  3924. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:167
  3925. msgctxt "@action:inmenu menubar:view"
  3926. msgid "Left Side View"
  3927. msgstr "左视图"
  3928. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:174
  3929. msgctxt "@action:inmenu menubar:view"
  3930. msgid "Right Side View"
  3931. msgstr "右视图"
  3932. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:188
  3933. msgctxt "@action:inmenu"
  3934. msgid "Configure Cura..."
  3935. msgstr "配置 Cura..."
  3936. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:195
  3937. msgctxt "@action:inmenu menubar:printer"
  3938. msgid "&Add Printer..."
  3939. msgstr "新增打印机(&A)..."
  3940. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:201
  3941. msgctxt "@action:inmenu menubar:printer"
  3942. msgid "Manage Pr&inters..."
  3943. msgstr "管理打印机(&I)..."
  3944. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:208
  3945. msgctxt "@action:inmenu"
  3946. msgid "Manage Materials..."
  3947. msgstr "管理材料..."
  3948. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:216
  3949. msgctxt "@action:inmenu Marketplace is a brand name of Ultimaker's, so don't translate."
  3950. msgid "Add more materials from Marketplace"
  3951. msgstr "从市场添加更多材料"
  3952. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:223
  3953. msgctxt "@action:inmenu menubar:profile"
  3954. msgid "&Update profile with current settings/overrides"
  3955. msgstr "使用当前设置 / 重写值更新配置文件(&U)"
  3956. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:231
  3957. msgctxt "@action:inmenu menubar:profile"
  3958. msgid "&Discard current changes"
  3959. msgstr "舍弃当前更改(&D)"
  3960. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:243
  3961. msgctxt "@action:inmenu menubar:profile"
  3962. msgid "&Create profile from current settings/overrides..."
  3963. msgstr "从当前设置 / 重写值创建配置文件(&C)..."
  3964. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:249
  3965. msgctxt "@action:inmenu menubar:profile"
  3966. msgid "Manage Profiles..."
  3967. msgstr "管理配置文件.."
  3968. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:257
  3969. msgctxt "@action:inmenu menubar:help"
  3970. msgid "Show Online &Documentation"
  3971. msgstr "显示在线文档(&D)"
  3972. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:265
  3973. msgctxt "@action:inmenu menubar:help"
  3974. msgid "Report a &Bug"
  3975. msgstr "BUG 反馈(&B)"
  3976. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:273
  3977. msgctxt "@action:inmenu menubar:help"
  3978. msgid "What's New"
  3979. msgstr "新增功能"
  3980. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:287
  3981. msgctxt "@action:inmenu menubar:help"
  3982. msgid "About..."
  3983. msgstr "关于..."
  3984. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:294
  3985. msgctxt "@action:inmenu menubar:edit"
  3986. msgid "Delete Selected"
  3987. msgstr "删除所选项"
  3988. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:304
  3989. msgctxt "@action:inmenu menubar:edit"
  3990. msgid "Center Selected"
  3991. msgstr "居中所选项"
  3992. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:313
  3993. msgctxt "@action:inmenu menubar:edit"
  3994. msgid "Multiply Selected"
  3995. msgstr "复制所选项"
  3996. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:322
  3997. msgctxt "@action:inmenu"
  3998. msgid "Delete Model"
  3999. msgstr "删除模型"
  4000. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:330
  4001. msgctxt "@action:inmenu"
  4002. msgid "Ce&nter Model on Platform"
  4003. msgstr "使模型居于平台中央(&N)"
  4004. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:336
  4005. msgctxt "@action:inmenu menubar:edit"
  4006. msgid "&Group Models"
  4007. msgstr "绑定模型(&G)"
  4008. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:356
  4009. msgctxt "@action:inmenu menubar:edit"
  4010. msgid "Ungroup Models"
  4011. msgstr "拆分模型"
  4012. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:366
  4013. msgctxt "@action:inmenu menubar:edit"
  4014. msgid "&Merge Models"
  4015. msgstr "合并模型(&M)"
  4016. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:376
  4017. msgctxt "@action:inmenu"
  4018. msgid "&Multiply Model..."
  4019. msgstr "复制模型(&M)…"
  4020. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:383
  4021. msgctxt "@action:inmenu menubar:edit"
  4022. msgid "Select All Models"
  4023. msgstr "选择所有模型"
  4024. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:393
  4025. msgctxt "@action:inmenu menubar:edit"
  4026. msgid "Clear Build Plate"
  4027. msgstr "清空打印平台"
  4028. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:403
  4029. msgctxt "@action:inmenu menubar:file"
  4030. msgid "Reload All Models"
  4031. msgstr "重新载入所有模型"
  4032. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:412
  4033. msgctxt "@action:inmenu menubar:edit"
  4034. msgid "Arrange All Models"
  4035. msgstr "编位所有的模型"
  4036. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:420
  4037. msgctxt "@action:inmenu menubar:edit"
  4038. msgid "Arrange Selection"
  4039. msgstr "为所选模型编位"
  4040. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:427
  4041. msgctxt "@action:inmenu menubar:edit"
  4042. msgid "Reset All Model Positions"
  4043. msgstr "复位所有模型的位置"
  4044. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:434
  4045. msgctxt "@action:inmenu menubar:edit"
  4046. msgid "Reset All Model Transformations"
  4047. msgstr "复位所有模型的变动"
  4048. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:443
  4049. msgctxt "@action:inmenu menubar:file"
  4050. msgid "&Open File(s)..."
  4051. msgstr "打开文件(&O)..."
  4052. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:453
  4053. msgctxt "@action:inmenu menubar:file"
  4054. msgid "&New Project..."
  4055. msgstr "新建项目(&N)..."
  4056. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:460
  4057. msgctxt "@action:inmenu menubar:help"
  4058. msgid "Show Configuration Folder"
  4059. msgstr "显示配置文件夹"
  4060. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ExtruderButton.qml:16
  4061. msgctxt "@label %1 is filled in with the name of an extruder"
  4062. msgid "Print Selected Model with %1"
  4063. msgid_plural "Print Selected Models with %1"
  4064. msgstr[0] "用 %1 打印所选模型"
  4065. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/MonitorButton.qml:115
  4066. msgctxt "@label:MonitorStatus"
  4067. msgid "Not connected to a printer"
  4068. msgstr "未连接至打印机"
  4069. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/MonitorButton.qml:119
  4070. msgctxt "@label:MonitorStatus"
  4071. msgid "Printer does not accept commands"
  4072. msgstr "打印机不接受命令"
  4073. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/MonitorButton.qml:129
  4074. msgctxt "@label:MonitorStatus"
  4075. msgid "In maintenance. Please check the printer"
  4076. msgstr "维护中。请检查打印机"
  4077. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/MonitorButton.qml:140
  4078. msgctxt "@label:MonitorStatus"
  4079. msgid "Lost connection with the printer"
  4080. msgstr "与打印机的连接中断"
  4081. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/MonitorButton.qml:142
  4082. msgctxt "@label:MonitorStatus"
  4083. msgid "Printing..."
  4084. msgstr "打印中..."
  4085. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/MonitorButton.qml:145
  4086. msgctxt "@label:MonitorStatus"
  4087. msgid "Paused"
  4088. msgstr "已暂停"
  4089. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/MonitorButton.qml:148
  4090. msgctxt "@label:MonitorStatus"
  4091. msgid "Preparing..."
  4092. msgstr "初始化中..."
  4093. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/MonitorButton.qml:150
  4094. msgctxt "@label:MonitorStatus"
  4095. msgid "Please remove the print"
  4096. msgstr "请取出打印件"
  4097. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/MonitorButton.qml:318
  4098. msgctxt "@label"
  4099. msgid "Abort Print"
  4100. msgstr "中止打印"
  4101. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/MonitorButton.qml:327
  4102. msgctxt "@label"
  4103. msgid "Are you sure you want to abort the print?"
  4104. msgstr "您确定要中止打印吗?"
  4105. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ProfileOverview.qml:36
  4106. msgctxt "@title:column"
  4107. msgid "Setting"
  4108. msgstr "设置"
  4109. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ProfileOverview.qml:37
  4110. msgctxt "@title:column"
  4111. msgid "Profile"
  4112. msgstr "配置文件"
  4113. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ProfileOverview.qml:38
  4114. msgctxt "@title:column"
  4115. msgid "Current"
  4116. msgstr "当前"
  4117. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ProfileOverview.qml:39
  4118. msgctxt "@title:column Unit of measurement"
  4119. msgid "Unit"
  4120. msgstr "单位"
  4121. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/SettingsMenu.qml:34
  4122. msgctxt "@title:menu"
  4123. msgid "&Material"
  4124. msgstr "材料(&M)"
  4125. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/SettingsMenu.qml:49
  4126. msgctxt "@action:inmenu"
  4127. msgid "Set as Active Extruder"
  4128. msgstr "设为主要挤出机"
  4129. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/SettingsMenu.qml:55
  4130. msgctxt "@action:inmenu"
  4131. msgid "Enable Extruder"
  4132. msgstr "启用挤出机"
  4133. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/SettingsMenu.qml:63
  4134. msgctxt "@action:inmenu"
  4135. msgid "Disable Extruder"
  4136. msgstr "禁用挤出机"
  4137. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/FileMenu.qml:13
  4138. msgctxt "@title:menu menubar:toplevel"
  4139. msgid "&File"
  4140. msgstr "文件(&F)"
  4141. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/FileMenu.qml:45
  4142. msgctxt "@title:menu menubar:file"
  4143. msgid "&Save Project..."
  4144. msgstr "保存项目(&S)..."
  4145. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/FileMenu.qml:78
  4146. msgctxt "@title:menu menubar:file"
  4147. msgid "&Export..."
  4148. msgstr "导出(&E)..."
  4149. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/FileMenu.qml:89
  4150. msgctxt "@action:inmenu menubar:file"
  4151. msgid "Export Selection..."
  4152. msgstr "导出选择..."
  4153. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/MaterialMenu.qml:13
  4154. msgctxt "@label:category menu label"
  4155. msgid "Material"
  4156. msgstr "材料"
  4157. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/MaterialMenu.qml:53
  4158. msgctxt "@label:category menu label"
  4159. msgid "Favorites"
  4160. msgstr "收藏"
  4161. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/MaterialMenu.qml:78
  4162. msgctxt "@label:category menu label"
  4163. msgid "Generic"
  4164. msgstr "通用"
  4165. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/PrinterMenu.qml:13
  4166. msgctxt "@title:menu menubar:settings"
  4167. msgid "&Printer"
  4168. msgstr "打印机(&P)"
  4169. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/PrinterMenu.qml:17
  4170. msgctxt "@label:category menu label"
  4171. msgid "Network enabled printers"
  4172. msgstr "网络打印机"
  4173. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/PrinterMenu.qml:50
  4174. msgctxt "@label:category menu label"
  4175. msgid "Local printers"
  4176. msgstr "本地打印机"
  4177. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ExtensionMenu.qml:13
  4178. msgctxt "@title:menu menubar:toplevel"
  4179. msgid "E&xtensions"
  4180. msgstr "扩展(&X)"
  4181. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/OpenFilesMenu.qml:15
  4182. msgctxt "@title:menu menubar:file"
  4183. msgid "Open File(s)..."
  4184. msgstr "打开文件..."
  4185. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/PreferencesMenu.qml:21
  4186. msgctxt "@title:menu menubar:toplevel"
  4187. msgid "P&references"
  4188. msgstr "偏好设置(&R)"
  4189. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18
  4190. msgctxt "@header"
  4191. msgid "Configurations"
  4192. msgstr "配置"
  4193. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:27
  4194. msgctxt "@header"
  4195. msgid "Custom"
  4196. msgstr "自定义"
  4197. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:173
  4198. msgctxt "@label"
  4199. msgid "Enabled"
  4200. msgstr "已启用"
  4201. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:222
  4202. msgctxt "@label"
  4203. msgid "Material"
  4204. msgstr "材料"
  4205. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:348
  4206. msgctxt "@label"
  4207. msgid "Use glue for better adhesion with this material combination."
  4208. msgstr "用胶粘和此材料组合以产生更好的附着。"
  4209. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52
  4210. msgctxt "@label"
  4211. msgid "Loading available configurations from the printer..."
  4212. msgstr "正在从打印机加载可用配置..."
  4213. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53
  4214. msgctxt "@label"
  4215. msgid "The configurations are not available because the printer is disconnected."
  4216. msgstr "该配置不可用,因为打印机已断开连接。"
  4217. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137
  4218. msgctxt "@label"
  4219. msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile."
  4220. msgstr "此配置不可用,因为 %1 未被识别。请访问 %2 以下载正确的材料配置文件。"
  4221. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138
  4222. msgctxt "@label"
  4223. msgid "Marketplace"
  4224. msgstr "市场"
  4225. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106
  4226. msgctxt "@tooltip"
  4227. msgid "The configuration of this extruder is not allowed, and prohibits slicing."
  4228. msgstr "不允许此挤出器的配置并禁止切片。"
  4229. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:110
  4230. msgctxt "@tooltip"
  4231. msgid "There are no profiles matching the configuration of this extruder."
  4232. msgstr "没有与此挤出器的配置匹配的配置文件。"
  4233. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:250
  4234. msgctxt "@label"
  4235. msgid "Select configuration"
  4236. msgstr "选择配置"
  4237. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:358
  4238. msgctxt "@label"
  4239. msgid "Configurations"
  4240. msgstr "配置"
  4241. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/HelpMenu.qml:14
  4242. msgctxt "@title:menu menubar:toplevel"
  4243. msgid "&Help"
  4244. msgstr "帮助(&H)"
  4245. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/SaveProjectMenu.qml:15
  4246. msgctxt "@title:menu menubar:file"
  4247. msgid "Save Project..."
  4248. msgstr "保存项目..."
  4249. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/RecentFilesMenu.qml:15
  4250. msgctxt "@title:menu menubar:file"
  4251. msgid "Open &Recent"
  4252. msgstr "打开最近使用过的文件(&R)"
  4253. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ViewMenu.qml:13
  4254. msgctxt "@title:menu menubar:toplevel"
  4255. msgid "&View"
  4256. msgstr "视图(&V)"
  4257. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ViewMenu.qml:17
  4258. msgctxt "@action:inmenu menubar:view"
  4259. msgid "&Camera position"
  4260. msgstr "摄像头位置(&C)"
  4261. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ViewMenu.qml:30
  4262. msgctxt "@action:inmenu menubar:view"
  4263. msgid "Camera view"
  4264. msgstr "摄像头视图"
  4265. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ViewMenu.qml:48
  4266. msgctxt "@action:inmenu menubar:view"
  4267. msgid "Perspective"
  4268. msgstr "透视"
  4269. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ViewMenu.qml:59
  4270. msgctxt "@action:inmenu menubar:view"
  4271. msgid "Orthographic"
  4272. msgstr "正交"
  4273. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ContextMenu.qml:29
  4274. msgctxt "@label"
  4275. msgid "Print Selected Model With:"
  4276. msgid_plural "Print Selected Models With:"
  4277. msgstr[0] "打印所选模型:"
  4278. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ContextMenu.qml:92
  4279. msgctxt "@title:window"
  4280. msgid "Multiply Selected Model"
  4281. msgid_plural "Multiply Selected Models"
  4282. msgstr[0] "复制所选模型"
  4283. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ContextMenu.qml:123
  4284. msgctxt "@label"
  4285. msgid "Number of Copies"
  4286. msgstr "复制个数"
  4287. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/EditMenu.qml:12
  4288. msgctxt "@title:menu menubar:toplevel"
  4289. msgid "&Edit"
  4290. msgstr "编辑(&E)"
  4291. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16
  4292. msgctxt "@action:inmenu"
  4293. msgid "Visible Settings"
  4294. msgstr "可见设置"
  4295. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:42
  4296. msgctxt "@action:inmenu"
  4297. msgid "Collapse All Categories"
  4298. msgstr "折叠所有类别"
  4299. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:51
  4300. msgctxt "@action:inmenu"
  4301. msgid "Manage Setting Visibility..."
  4302. msgstr "管理设置可见性..."
  4303. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/ChoosePrinterDialog.qml:17
  4304. msgctxt "@title:window"
  4305. msgid "Select Printer"
  4306. msgstr "选择打印机"
  4307. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/ChoosePrinterDialog.qml:54
  4308. msgctxt "@title:label"
  4309. msgid "Compatible Printers"
  4310. msgstr "兼容的打印机"
  4311. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/ChoosePrinterDialog.qml:94
  4312. msgctxt "@description"
  4313. msgid "No compatible printers, that are currently online, where found."
  4314. msgstr "没有找到当前联机的兼容打印机。"
  4315. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:16
  4316. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Cura.qml:635
  4317. msgctxt "@title:window"
  4318. msgid "Open file(s)"
  4319. msgstr "打开文件"
  4320. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:47
  4321. msgctxt "@text:window"
  4322. 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?"
  4323. msgstr "我们已经在您所选择的文件中找到一个或多个项目文件,但一次只能打开一个项目文件。我们建议只从那些文件中导入模型而不打开项目。您要继续操作吗?"
  4324. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:64
  4325. msgctxt "@action:button"
  4326. msgid "Import all as models"
  4327. msgstr "导入所有模型"
  4328. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:17
  4329. msgctxt "@title:window"
  4330. msgid "Open project file"
  4331. msgstr "打开项目文件"
  4332. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:84
  4333. msgctxt "@text:window"
  4334. msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?"
  4335. msgstr "这是一个 Cura 项目文件。您想将其作为一个项目打开还是从中导入模型?"
  4336. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:91
  4337. msgctxt "@text:window"
  4338. msgid "Remember my choice"
  4339. msgstr "记住我的选择"
  4340. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:105
  4341. msgctxt "@action:button"
  4342. msgid "Open as project"
  4343. msgstr "作为项目打开"
  4344. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:110
  4345. msgctxt "@action:button"
  4346. msgid "Import models"
  4347. msgstr "导入模型"
  4348. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:13
  4349. msgctxt "@title:window"
  4350. msgid "Discard or Keep changes"
  4351. msgstr "舍弃或保留更改"
  4352. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:59
  4353. msgctxt "@text:window, %1 is a profile name"
  4354. 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'."
  4355. msgstr ""
  4356. "您已经自定义了若干配置文件设置。\n"
  4357. "是否要在切换配置文件后保留这些更改的设置?\n"
  4358. "或者,也可舍弃更改以从“%1”加载默认值。"
  4359. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:85
  4360. msgctxt "@title:column"
  4361. msgid "Profile settings"
  4362. msgstr "配置文件设置"
  4363. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:87
  4364. msgctxt "@title:column"
  4365. msgid "Current changes"
  4366. msgstr "当前更改"
  4367. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:116
  4368. msgctxt "@option:discardOrKeep"
  4369. msgid "Discard and never ask again"
  4370. msgstr "舍弃更改,并不再询问此问题"
  4371. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:117
  4372. msgctxt "@option:discardOrKeep"
  4373. msgid "Keep and never ask again"
  4374. msgstr "保留更改,并不再询问此问题"
  4375. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:147
  4376. msgctxt "@action:button"
  4377. msgid "Discard changes"
  4378. msgstr "舍弃更改"
  4379. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:153
  4380. msgctxt "@action:button"
  4381. msgid "Keep changes"
  4382. msgstr "保留更改"
  4383. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:14
  4384. msgctxt "@title:window"
  4385. msgid "Save Project"
  4386. msgstr "保存项目"
  4387. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:177
  4388. msgctxt "@action:label"
  4389. msgid "Extruder %1"
  4390. msgstr "挤出机 %1"
  4391. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:193
  4392. msgctxt "@action:label"
  4393. msgid "%1 & material"
  4394. msgstr "%1 & 材料"
  4395. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:195
  4396. msgctxt "@action:label"
  4397. msgid "Material"
  4398. msgstr "材料"
  4399. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:284
  4400. msgctxt "@action:label"
  4401. msgid "Don't show project summary on save again"
  4402. msgstr "保存时不再显示项目摘要"
  4403. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:298
  4404. msgctxt "@action:button"
  4405. msgid "Save"
  4406. msgstr "保存"
  4407. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:15
  4408. msgctxt "@title:window The argument is the application name."
  4409. msgid "About %1"
  4410. msgstr "关于 %1"
  4411. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:59
  4412. msgctxt "@label"
  4413. msgid "version: %1"
  4414. msgstr "版本: %1"
  4415. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:74
  4416. msgctxt "@label"
  4417. msgid "End-to-end solution for fused filament 3D printing."
  4418. msgstr "熔丝 3D 打印技术的的端对端解决方案。"
  4419. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:87
  4420. msgctxt "@info:credit"
  4421. msgid ""
  4422. "Cura is developed by Ultimaker B.V. in cooperation with the community.\n"
  4423. "Cura proudly uses the following open source projects:"
  4424. msgstr ""
  4425. "Cura 由 Ultimaker B.V. 与社区合作开发。\n"
  4426. "Cura 使用以下开源项目:"
  4427. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:138
  4428. msgctxt "@label Description for application component"
  4429. msgid "Graphical user interface"
  4430. msgstr "图形用户界面"
  4431. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:139
  4432. msgctxt "@label Description for application component"
  4433. msgid "Application framework"
  4434. msgstr "应用框架"
  4435. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:140
  4436. msgctxt "@label Description for application component"
  4437. msgid "G-code generator"
  4438. msgstr "G-code 生成器"
  4439. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:141
  4440. msgctxt "@label Description for application component"
  4441. msgid "Interprocess communication library"
  4442. msgstr "进程间通信交互使用库"
  4443. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:142
  4444. msgctxt "@label Description for application component"
  4445. msgid "Python bindings for libnest2d"
  4446. msgstr "libnest2d 的 Python 绑定"
  4447. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:143
  4448. msgctxt "@label Description for application component"
  4449. msgid "Polygon packing library, developed by Prusa Research"
  4450. msgstr "Prusa Research 开发的多边形打包库"
  4451. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:144
  4452. msgctxt "@label Description for application component"
  4453. msgid "Support library for handling 3MF files"
  4454. msgstr "用于处理 3MF 文件的支持库"
  4455. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:145
  4456. msgctxt "@label Description for application component"
  4457. msgid "Support library for file metadata and streaming"
  4458. msgstr "用于文件元数据和流媒体的支持库"
  4459. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:148
  4460. msgctxt "@label Description for application dependency"
  4461. msgid "Programming language"
  4462. msgstr "编程语言"
  4463. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:149
  4464. msgctxt "@label Description for application dependency"
  4465. msgid "GUI framework"
  4466. msgstr "GUI 框架"
  4467. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:150
  4468. msgctxt "@label Description for application dependency"
  4469. msgid "GUI framework bindings"
  4470. msgstr "GUI 框架绑定"
  4471. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:151
  4472. msgctxt "@label Description for application dependency"
  4473. msgid "C/C++ Binding library"
  4474. msgstr "C / C++ 绑定库"
  4475. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:152
  4476. msgctxt "@label Description for application dependency"
  4477. msgid "Data interchange format"
  4478. msgstr "数据交换格式"
  4479. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:153
  4480. msgctxt "@label"
  4481. msgid "Font"
  4482. msgstr "字体"
  4483. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:156
  4484. msgctxt "@label Description for application dependency"
  4485. msgid "Polygon clipping library"
  4486. msgstr "多边形剪辑库"
  4487. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:157
  4488. msgctxt "@label Description for application dependency"
  4489. msgid "JSON parser"
  4490. msgstr "JSON 解析器"
  4491. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:158
  4492. msgctxt "@label Description for application dependency"
  4493. msgid "Utility functions, including an image loader"
  4494. msgstr "实用程序函数,包括图像加载器"
  4495. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:159
  4496. msgctxt "@label Description for application dependency"
  4497. msgid "Utility library, including Voronoi generation"
  4498. msgstr "实用程序库,包括 Voronoi 图生成"
  4499. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:162
  4500. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:163
  4501. msgctxt "@label Description for application dependency"
  4502. msgid "Root Certificates for validating SSL trustworthiness"
  4503. msgstr "用于验证 SSL 可信度的根证书"
  4504. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:164
  4505. msgctxt "@label Description for application dependency"
  4506. msgid "Compatibility between Python 2 and 3"
  4507. msgstr "Python 2 和 3 之间的兼容性"
  4508. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:165
  4509. msgctxt "@label Description for application dependency"
  4510. msgid "Support library for system keyring access"
  4511. msgstr "支持系统密钥环访问库"
  4512. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:166
  4513. msgctxt "@label Description for application dependency"
  4514. msgid "Support library for faster math"
  4515. msgstr "高速运算支持库"
  4516. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:167
  4517. msgctxt "@label Description for application dependency"
  4518. msgid "Support library for handling STL files"
  4519. msgstr "用于处理 STL 文件的支持库"
  4520. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:168
  4521. msgctxt "@label Description for application dependency"
  4522. msgid "Python bindings for Clipper"
  4523. msgstr "Clipper 的 Python 绑定"
  4524. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:169
  4525. msgctxt "@label Description for application dependency"
  4526. msgid "Serial communication library"
  4527. msgstr "串口通讯库"
  4528. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:170
  4529. msgctxt "@label Description for application dependency"
  4530. msgid "Support library for scientific computing"
  4531. msgstr "科学计算支持库"
  4532. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:171
  4533. msgctxt "@Label Description for application dependency"
  4534. msgid "Python Error tracking library"
  4535. msgstr "Python 错误跟踪库"
  4536. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:172
  4537. msgctxt "@label Description for application dependency"
  4538. msgid "Support library for handling triangular meshes"
  4539. msgstr "用于处理三角网格的支持库"
  4540. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:173
  4541. msgctxt "@label Description for application dependency"
  4542. msgid "ZeroConf discovery library"
  4543. msgstr "ZeroConf 发现库"
  4544. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:176
  4545. msgctxt "@label Description for development tool"
  4546. msgid "Universal build system configuration"
  4547. msgstr "通用构建系统配置"
  4548. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:177
  4549. msgctxt "@label Description for development tool"
  4550. msgid "Dependency and package manager"
  4551. msgstr "依赖性和程序包管理器"
  4552. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:178
  4553. msgctxt "@label Description for development tool"
  4554. msgid "Packaging Python-applications"
  4555. msgstr "打包 Python 应用"
  4556. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:179
  4557. msgctxt "@label Description for development tool"
  4558. msgid "Linux cross-distribution application deployment"
  4559. msgstr "Linux 交叉分布应用程序部署"
  4560. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:180
  4561. msgctxt "@label Description for development tool"
  4562. msgid "Generating Windows installers"
  4563. msgstr "生成 Windows 安装程序"
  4564. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ColorDialog.qml:107
  4565. msgctxt "@label"
  4566. msgid "Hex"
  4567. msgstr "六角"
  4568. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32
  4569. msgctxt "@label:button"
  4570. msgid "My printers"
  4571. msgstr "我的打印机"
  4572. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34
  4573. msgctxt "@tooltip:button"
  4574. msgid "Monitor printers in Ultimaker Digital Factory."
  4575. msgstr "在 Ultimaker Digital Factory 中监控打印机。"
  4576. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41
  4577. msgctxt "@tooltip:button"
  4578. msgid "Create print projects in Digital Library."
  4579. msgstr "在 Digital Library 中创建打印项目。"
  4580. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46
  4581. msgctxt "@label:button"
  4582. msgid "Print jobs"
  4583. msgstr "打印作业"
  4584. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48
  4585. msgctxt "@tooltip:button"
  4586. msgid "Monitor print jobs and reprint from your print history."
  4587. msgstr "监控打印作业并从打印历史记录重新打印。"
  4588. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55
  4589. msgctxt "@tooltip:button"
  4590. msgid "Extend Ultimaker Cura with plugins and material profiles."
  4591. msgstr "用插件和材料配置文件扩展 Ultimaker Cura。"
  4592. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62
  4593. msgctxt "@tooltip:button"
  4594. msgid "Become a 3D printing expert with Ultimaker e-learning."
  4595. msgstr "通过 Ultimaker 线上课程教学,成为 3D 打印专家。"
  4596. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67
  4597. msgctxt "@label:button"
  4598. msgid "Ultimaker support"
  4599. msgstr "Ultimaker 支持"
  4600. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69
  4601. msgctxt "@tooltip:button"
  4602. msgid "Learn how to get started with Ultimaker Cura."
  4603. msgstr "了解如何开始使用 Ultimaker Cura。"
  4604. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74
  4605. msgctxt "@label:button"
  4606. msgid "Ask a question"
  4607. msgstr "提问"
  4608. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76
  4609. msgctxt "@tooltip:button"
  4610. msgid "Consult the Ultimaker Community."
  4611. msgstr "咨询 Ultimaker 社区。"
  4612. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81
  4613. msgctxt "@label:button"
  4614. msgid "Report a bug"
  4615. msgstr "报告错误"
  4616. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83
  4617. msgctxt "@tooltip:button"
  4618. msgid "Let developers know that something is going wrong."
  4619. msgstr "向开发人员报错。"
  4620. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90
  4621. msgctxt "@tooltip:button"
  4622. msgid "Visit the Ultimaker website."
  4623. msgstr "访问 Ultimaker 网站。"
  4624. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:40
  4625. msgctxt "@label"
  4626. msgid "Support"
  4627. msgstr "支持"
  4628. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:44
  4629. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:78
  4630. msgctxt "@label"
  4631. msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing."
  4632. msgstr "在模型的悬垂(Overhangs)部分生成支撑结构。若不这样做,这些部分在打印时将倒塌。"
  4633. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:54
  4634. msgctxt "@info, %1 is the name of the custom profile"
  4635. msgid "<b>%1</b> custom profile is active and you overwrote some settings."
  4636. msgstr "<b>%1</b>自定义配置文件处于活动状态,并且已覆盖某些设置。"
  4637. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:68
  4638. msgctxt "@info, %1 is the name of the custom profile"
  4639. msgid "<b>%1</b> custom profile is overriding some settings."
  4640. msgstr "<b>%1</b>自定义配置文件正在覆盖某些设置。"
  4641. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:79
  4642. msgctxt "@info"
  4643. msgid "Some settings were changed."
  4644. msgstr "某些设置已更改。"
  4645. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:78
  4646. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:254
  4647. msgctxt "@label"
  4648. msgid "Gradual infill will gradually increase the amount of infill towards the top."
  4649. msgstr "渐层填充(Gradual infill)将随着打印高度的提升而逐渐加大填充密度。"
  4650. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:216
  4651. msgctxt "@label"
  4652. msgid "Gradual infill"
  4653. msgstr "渐层填充"
  4654. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:31
  4655. msgctxt "@error"
  4656. msgid "Configuration not supported"
  4657. msgstr "配置不受支持"
  4658. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:39
  4659. msgctxt "@message:text %1 is the name the printer uses for 'nozzle'."
  4660. msgid "No profiles are available for the selected material/%1 configuration. Please change your configuration."
  4661. msgstr "对于所选材料/%1 配置,无可用的配置文件。请更改配置。"
  4662. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:47
  4663. msgctxt "@button:label"
  4664. msgid "Learn more"
  4665. msgstr "了解详情"
  4666. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:27
  4667. msgctxt "@label"
  4668. msgid "Adhesion"
  4669. msgstr "附着"
  4670. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:76
  4671. msgctxt "@label"
  4672. 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."
  4673. msgstr "允许打印 Brim 或 Raft。这将在您的对象周围或下方添加一个容易切断的平面区域。"
  4674. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedResolutionSelector.qml:27
  4675. msgctxt "@label"
  4676. msgid "Resolution"
  4677. msgstr "分辨率"
  4678. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:20
  4679. msgctxt "@label shown when we load a Gcode file"
  4680. msgid "Print setup disabled. G-code file can not be modified."
  4681. msgstr "打印设置已禁用。无法修改 G code 文件。"
  4682. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13
  4683. msgctxt "@label:Should be short"
  4684. msgid "On"
  4685. msgstr "开"
  4686. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14
  4687. msgctxt "@label:Should be short"
  4688. msgid "Off"
  4689. msgstr "关"
  4690. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:34
  4691. msgctxt "@label"
  4692. msgid "Experimental"
  4693. msgstr "实验性"
  4694. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:142
  4695. msgctxt "@button"
  4696. msgid "Recommended"
  4697. msgstr "推荐"
  4698. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:156
  4699. msgctxt "@button"
  4700. msgid "Custom"
  4701. msgstr "自定义"
  4702. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:46
  4703. msgctxt "@label"
  4704. msgid "Profile"
  4705. msgstr "配置文件"
  4706. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:145
  4707. msgctxt "@tooltip"
  4708. msgid ""
  4709. "Some setting/override values are different from the values stored in the profile.\n"
  4710. "\n"
  4711. "Click to open the profile manager."
  4712. msgstr ""
  4713. "某些设置/重写值与存储在配置文件中的值不同。\n"
  4714. "\n"
  4715. "点击打开配置文件管理器。"
  4716. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:158
  4717. msgctxt "@label:header"
  4718. msgid "Custom profiles"
  4719. msgstr "自定义配置文件"
  4720. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55
  4721. msgctxt "@info:status"
  4722. msgid "The printer is not connected."
  4723. msgstr "尚未连接到打印机。"
  4724. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:25
  4725. msgctxt "@label"
  4726. msgid "Build plate"
  4727. msgstr "打印平台"
  4728. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:55
  4729. msgctxt "@tooltip"
  4730. 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."
  4731. msgstr "热床的目标温度。热床将加热或冷却至此温度。若设置为 0,则不使用热床。"
  4732. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88
  4733. msgctxt "@tooltip"
  4734. msgid "The current temperature of the heated bed."
  4735. msgstr "热床当前温度。"
  4736. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:162
  4737. msgctxt "@tooltip of temperature input"
  4738. msgid "The temperature to pre-heat the bed to."
  4739. msgstr "热床的预热温度。"
  4740. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:259
  4741. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:271
  4742. msgctxt "@button Cancel pre-heating"
  4743. msgid "Cancel"
  4744. msgstr "取消"
  4745. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:263
  4746. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:274
  4747. msgctxt "@button"
  4748. msgid "Pre-heat"
  4749. msgstr "预热"
  4750. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:286
  4751. msgctxt "@tooltip of pre-heat"
  4752. 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."
  4753. msgstr "打印前请预热热床。您可以在热床加热时继续调整相关项,让您在准备打印时不必等待热床加热完毕。"
  4754. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:40
  4755. msgctxt "@label"
  4756. msgid "Extruder"
  4757. msgstr "挤出机"
  4758. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:70
  4759. msgctxt "@tooltip"
  4760. 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."
  4761. msgstr "热端的目标温度。 热端将加热或冷却至此温度。 如果目标温度为 0,则热端加热将关闭。"
  4762. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:105
  4763. msgctxt "@tooltip"
  4764. msgid "The current temperature of this hotend."
  4765. msgstr "该热端的当前温度。"
  4766. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:182
  4767. msgctxt "@tooltip of temperature input"
  4768. msgid "The temperature to pre-heat the hotend to."
  4769. msgstr "热端的预热温度。"
  4770. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:297
  4771. msgctxt "@tooltip of pre-heat"
  4772. 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."
  4773. msgstr "打印前请预热热端。您可以在热端加热时继续调整打印机,而不必等待热端加热完毕再做好打印准备。"
  4774. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:335
  4775. msgctxt "@tooltip"
  4776. msgid "The colour of the material in this extruder."
  4777. msgstr "该挤出机中材料的颜色。"
  4778. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:367
  4779. msgctxt "@tooltip"
  4780. msgid "The material in this extruder."
  4781. msgstr "该挤出机中的材料。"
  4782. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:400
  4783. msgctxt "@tooltip"
  4784. msgid "The nozzle inserted in this extruder."
  4785. msgstr "该挤出机所使用的喷嘴。"
  4786. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:51
  4787. msgctxt "@label"
  4788. msgid "Printer control"
  4789. msgstr "打印机控制"
  4790. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:66
  4791. msgctxt "@label"
  4792. msgid "Jog Position"
  4793. msgstr "垛齐位置"
  4794. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:82
  4795. msgctxt "@label"
  4796. msgid "X/Y"
  4797. msgstr "X/Y"
  4798. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:162
  4799. msgctxt "@label"
  4800. msgid "Z"
  4801. msgstr "Z"
  4802. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:217
  4803. msgctxt "@label"
  4804. msgid "Jog Distance"
  4805. msgstr "垛齐距离"
  4806. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257
  4807. msgctxt "@label"
  4808. msgid "Send G-code"
  4809. msgstr "发送 G-code"
  4810. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:319
  4811. msgctxt "@tooltip of G-code command input"
  4812. msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command."
  4813. msgstr "向连接的打印机发送自定义 G-code 命令。按“Enter”发送命令。"
  4814. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Cura.qml:250
  4815. msgctxt "@label"
  4816. msgid "This package will be installed after restarting."
  4817. msgstr "这个包将在重新启动后安装。"
  4818. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Cura.qml:464
  4819. msgctxt "@title:tab"
  4820. msgid "Settings"
  4821. msgstr "设置"
  4822. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Cura.qml:587
  4823. msgctxt "@title:window %1 is the application name"
  4824. msgid "Closing %1"
  4825. msgstr "正在关闭 %1"
  4826. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Cura.qml:588
  4827. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Cura.qml:597
  4828. msgctxt "@label %1 is the application name"
  4829. msgid "Are you sure you want to exit %1?"
  4830. msgstr "您确定要退出 %1 吗?"
  4831. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Cura.qml:740
  4832. msgctxt "@window:title"
  4833. msgid "Install Package"
  4834. msgstr "安装包"
  4835. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Cura.qml:747
  4836. msgctxt "@title:window"
  4837. msgid "Open File(s)"
  4838. msgstr "打开文件"
  4839. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Cura.qml:749
  4840. msgctxt "@text:window"
  4841. 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."
  4842. msgstr "我们已经在您选择的文件中找到一个或多个 G-Code 文件。您一次只能打开一个 G-Code 文件。若需打开 G-Code 文件,请仅选择一个。"
  4843. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Cura.qml:829
  4844. msgctxt "@title:window"
  4845. msgid "Add Printer"
  4846. msgstr "新增打印机"
  4847. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Cura.qml:837
  4848. msgctxt "@title:window"
  4849. msgid "What's New"
  4850. msgstr "新增功能"
  4851. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Account/GeneralOperations.qml:39
  4852. msgctxt "@text"
  4853. msgid ""
  4854. "- Add material profiles and plug-ins from the Marketplace\n"
  4855. "- Back-up and sync your material profiles and plug-ins\n"
  4856. "- Share ideas and get help from 48,000+ users in the Ultimaker community"
  4857. msgstr ""
  4858. "- 从 Marketplace 添加材料配置文件和插件\n"
  4859. "- 备份和同步材料配置文件和插件\n"
  4860. "- 在 Ultimaker 社区分享观点并获取 48,000 多名用户的帮助"
  4861. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Account/GeneralOperations.qml:58
  4862. msgctxt "@button"
  4863. msgid "Create a free Ultimaker account"
  4864. msgstr "创建免费的 Ultimaker 帐户"
  4865. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Account/AccountWidget.qml:24
  4866. msgctxt "@action:button"
  4867. msgid "Sign in"
  4868. msgstr "登录"
  4869. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Account/UserOperations.qml:78
  4870. msgctxt "@label The argument is a timestamp"
  4871. msgid "Last update: %1"
  4872. msgstr "上次更新时间:%1"
  4873. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Account/UserOperations.qml:107
  4874. msgctxt "@button"
  4875. msgid "Ultimaker Account"
  4876. msgstr "Ultimaker 帐户"
  4877. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Account/UserOperations.qml:126
  4878. msgctxt "@button"
  4879. msgid "Sign Out"
  4880. msgstr "注销"
  4881. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Account/SyncState.qml:35
  4882. msgctxt "@label"
  4883. msgid "Checking..."
  4884. msgstr "正在检查..."
  4885. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Account/SyncState.qml:42
  4886. msgctxt "@label"
  4887. msgid "Account synced"
  4888. msgstr "帐户已同步"
  4889. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Account/SyncState.qml:49
  4890. msgctxt "@label"
  4891. msgid "Something went wrong..."
  4892. msgstr "发生了错误..."
  4893. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Account/SyncState.qml:102
  4894. msgctxt "@button"
  4895. msgid "Install pending updates"
  4896. msgstr "安装挂起的更新"
  4897. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Account/SyncState.qml:123
  4898. msgctxt "@button"
  4899. msgid "Check for account updates"
  4900. msgstr "检查是否存在帐户更新"
  4901. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47
  4902. msgctxt "@status"
  4903. msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet."
  4904. msgstr "云打印机离线。请检查打印机是否已开启并连接到 Internet。"
  4905. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51
  4906. msgctxt "@status"
  4907. msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection."
  4908. msgstr "此打印机未链接到您的帐户。请访问 Ultimaker Digital Factory 以建立连接。"
  4909. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56
  4910. msgctxt "@status"
  4911. msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer."
  4912. msgstr "云连接当前不可用。请登录以连接到云打印机。"
  4913. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60
  4914. msgctxt "@status"
  4915. msgid "The cloud connection is currently unavailable. Please check your internet connection."
  4916. msgstr "云连接当前不可用。请检查您的 Internet 连接。"
  4917. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterSelector/MachineSelector.qml:237
  4918. msgctxt "@button"
  4919. msgid "Add printer"
  4920. msgstr "添加打印机"
  4921. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterSelector/MachineSelector.qml:254
  4922. msgctxt "@button"
  4923. msgid "Manage printers"
  4924. msgstr "管理打印机"
  4925. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterSelector/MachineListButton.qml:34
  4926. msgctxt "@label"
  4927. msgid "Hide all connected printers"
  4928. msgstr "隐藏所有连接的打印机"
  4929. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterSelector/MachineListButton.qml:47
  4930. msgctxt "@label"
  4931. msgid "Show all connected printers"
  4932. msgstr "显示所有连接的打印机"
  4933. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:24
  4934. msgctxt "@label"
  4935. msgid "Other printers"
  4936. msgstr "其他打印机"
  4937. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:54
  4938. msgctxt "@label:PrintjobStatus"
  4939. msgid "Slicing..."
  4940. msgstr "正在切片..."
  4941. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:78
  4942. msgctxt "@label:PrintjobStatus"
  4943. msgid "Unable to slice"
  4944. msgstr "无法切片"
  4945. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:114
  4946. msgctxt "@button"
  4947. msgid "Processing"
  4948. msgstr "正在处理中"
  4949. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:114
  4950. msgctxt "@button"
  4951. msgid "Slice"
  4952. msgstr "切片"
  4953. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:115
  4954. msgctxt "@label"
  4955. msgid "Start the slicing process"
  4956. msgstr "开始切片流程"
  4957. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:132
  4958. msgctxt "@button"
  4959. msgid "Cancel"
  4960. msgstr "取消"
  4961. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31
  4962. msgctxt "@label"
  4963. msgid "Time estimation"
  4964. msgstr "预计时间"
  4965. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:107
  4966. msgctxt "@label"
  4967. msgid "Material estimation"
  4968. msgstr "预计材料"
  4969. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:156
  4970. msgctxt "@label m for meter"
  4971. msgid "%1m"
  4972. msgstr "%1m"
  4973. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:157
  4974. msgctxt "@label g for grams"
  4975. msgid "%1g"
  4976. msgstr "%1g"
  4977. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59
  4978. msgctxt "@label"
  4979. msgid "No time estimation available"
  4980. msgstr "无可用时间估计"
  4981. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77
  4982. msgctxt "@label"
  4983. msgid "No cost estimation available"
  4984. msgstr "无可用成本估计"
  4985. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127
  4986. msgctxt "@button"
  4987. msgid "Preview"
  4988. msgstr "预览"
  4989. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/JobSpecs.qml:93
  4990. msgctxt "@text Print job name"
  4991. msgid "Untitled"
  4992. msgstr "未命名"
  4993. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Widgets/ComboBox.qml:18
  4994. msgctxt "@label"
  4995. msgid "No items to select from"
  4996. msgstr "没有可供选择的项目"
  4997. #: /MachineSettingsAction/plugin.json
  4998. msgctxt "description"
  4999. msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)."
  5000. msgstr "提供一种改变机器设置的方法(如构建体积、喷嘴大小等)。"
  5001. #: /MachineSettingsAction/plugin.json
  5002. msgctxt "name"
  5003. msgid "Machine Settings Action"
  5004. msgstr "打印机设置操作"
  5005. #: /ImageReader/plugin.json
  5006. msgctxt "description"
  5007. msgid "Enables ability to generate printable geometry from 2D image files."
  5008. msgstr "支持从 2D 图像文件生成可打印几何模型的能力。"
  5009. #: /ImageReader/plugin.json
  5010. msgctxt "name"
  5011. msgid "Image Reader"
  5012. msgstr "图像读取器"
  5013. #: /XRayView/plugin.json
  5014. msgctxt "description"
  5015. msgid "Provides the X-Ray view."
  5016. msgstr "提供透视视图。"
  5017. #: /XRayView/plugin.json
  5018. msgctxt "name"
  5019. msgid "X-Ray View"
  5020. msgstr "透视视图"
  5021. #: /X3DReader/plugin.json
  5022. msgctxt "description"
  5023. msgid "Provides support for reading X3D files."
  5024. msgstr "支持读取 X3D 文件。"
  5025. #: /X3DReader/plugin.json
  5026. msgctxt "name"
  5027. msgid "X3D Reader"
  5028. msgstr "X3D 读取器"
  5029. #: /CuraProfileReader/plugin.json
  5030. msgctxt "description"
  5031. msgid "Provides support for importing Cura profiles."
  5032. msgstr "提供了对导入 Cura 配置文件的支持。"
  5033. #: /CuraProfileReader/plugin.json
  5034. msgctxt "name"
  5035. msgid "Cura Profile Reader"
  5036. msgstr "Cura 配置文件读取器"
  5037. #: /PostProcessingPlugin/plugin.json
  5038. msgctxt "description"
  5039. msgid "Extension that allows for user created scripts for post processing"
  5040. msgstr "扩展程序(允许用户创建脚本进行后期处理)"
  5041. #: /PostProcessingPlugin/plugin.json
  5042. msgctxt "name"
  5043. msgid "Post Processing"
  5044. msgstr "后期处理"
  5045. #: /UM3NetworkPrinting/plugin.json
  5046. msgctxt "description"
  5047. msgid "Manages network connections to Ultimaker networked printers."
  5048. msgstr "管理与 Ultimaker 网络打印机的网络连接。"
  5049. #: /UM3NetworkPrinting/plugin.json
  5050. msgctxt "name"
  5051. msgid "Ultimaker Network Connection"
  5052. msgstr "Ultimaker 网络连接"
  5053. #: /3MFWriter/plugin.json
  5054. msgctxt "description"
  5055. msgid "Provides support for writing 3MF files."
  5056. msgstr "提供对写入 3MF 文件的支持。"
  5057. #: /3MFWriter/plugin.json
  5058. msgctxt "name"
  5059. msgid "3MF Writer"
  5060. msgstr "3MF 写入器"
  5061. #: /CuraDrive/plugin.json
  5062. msgctxt "description"
  5063. msgid "Backup and restore your configuration."
  5064. msgstr "备份和还原配置。"
  5065. #: /CuraDrive/plugin.json
  5066. msgctxt "name"
  5067. msgid "Cura Backups"
  5068. msgstr "Cura 备份"
  5069. #: /SliceInfoPlugin/plugin.json
  5070. msgctxt "description"
  5071. msgid "Submits anonymous slice info. Can be disabled through preferences."
  5072. msgstr "提交匿名切片信息。 可以通过偏好设置禁用。"
  5073. #: /SliceInfoPlugin/plugin.json
  5074. msgctxt "name"
  5075. msgid "Slice info"
  5076. msgstr "切片信息"
  5077. #: /UFPWriter/plugin.json
  5078. msgctxt "description"
  5079. msgid "Provides support for writing Ultimaker Format Packages."
  5080. msgstr "支持写入 Ultimaker 格式包。"
  5081. #: /UFPWriter/plugin.json
  5082. msgctxt "name"
  5083. msgid "UFP Writer"
  5084. msgstr "UFP 写入器"
  5085. #: /DigitalLibrary/plugin.json
  5086. msgctxt "description"
  5087. msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library."
  5088. msgstr "连接到 Digital Library,以允许 Cura 从 Digital Library 打开文件并将文件保存到其中。"
  5089. #: /DigitalLibrary/plugin.json
  5090. msgctxt "name"
  5091. msgid "Ultimaker Digital Library"
  5092. msgstr "Ultimaker Digital Library"
  5093. #: /GCodeProfileReader/plugin.json
  5094. msgctxt "description"
  5095. msgid "Provides support for importing profiles from g-code files."
  5096. msgstr "提供了从 GCode 文件中导入配置文件的支持。"
  5097. #: /GCodeProfileReader/plugin.json
  5098. msgctxt "name"
  5099. msgid "G-code Profile Reader"
  5100. msgstr "G-code 配置文件读取器"
  5101. #: /GCodeReader/plugin.json
  5102. msgctxt "description"
  5103. msgid "Allows loading and displaying G-code files."
  5104. msgstr "允许加载和显示 G-code 文件。"
  5105. #: /GCodeReader/plugin.json
  5106. msgctxt "name"
  5107. msgid "G-code Reader"
  5108. msgstr "G-code 读取器"
  5109. #: /TrimeshReader/plugin.json
  5110. msgctxt "description"
  5111. msgid "Provides support for reading model files."
  5112. msgstr "提供对读取模型文件的支持。"
  5113. #: /TrimeshReader/plugin.json
  5114. msgctxt "name"
  5115. msgid "Trimesh Reader"
  5116. msgstr "Trimesh 阅读器"
  5117. #: /UltimakerMachineActions/plugin.json
  5118. msgctxt "description"
  5119. msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)."
  5120. msgstr "为最后的机器提供机器操作(例如,热床调平向导,选择升级等)。"
  5121. #: /UltimakerMachineActions/plugin.json
  5122. msgctxt "name"
  5123. msgid "Ultimaker machine actions"
  5124. msgstr "Ultimaker 打印机操作"
  5125. #: /GCodeGzReader/plugin.json
  5126. msgctxt "description"
  5127. msgid "Reads g-code from a compressed archive."
  5128. msgstr "从压缩存档文件读取 G-code。"
  5129. #: /GCodeGzReader/plugin.json
  5130. msgctxt "name"
  5131. msgid "Compressed G-code Reader"
  5132. msgstr "压缩 G-code 读取器"
  5133. #: /Marketplace/plugin.json
  5134. msgctxt "description"
  5135. msgid "Manages extensions to the application and allows browsing extensions from the Ultimaker website."
  5136. msgstr "管理对应用程序的扩展并允许从 Ultimaker 网站浏览扩展。"
  5137. #: /Marketplace/plugin.json
  5138. msgctxt "name"
  5139. msgid "Marketplace"
  5140. msgstr "市场"
  5141. #: /RemovableDriveOutputDevice/plugin.json
  5142. msgctxt "description"
  5143. msgid "Provides removable drive hotplugging and writing support."
  5144. msgstr "提供可移动磁盘热插拔和写入文件的支持。"
  5145. #: /RemovableDriveOutputDevice/plugin.json
  5146. msgctxt "name"
  5147. msgid "Removable Drive Output Device Plugin"
  5148. msgstr "可移动磁盘输出设备插件"
  5149. #: /MonitorStage/plugin.json
  5150. msgctxt "description"
  5151. msgid "Provides a monitor stage in Cura."
  5152. msgstr "在 Cura 中提供监视阶段。"
  5153. #: /MonitorStage/plugin.json
  5154. msgctxt "name"
  5155. msgid "Monitor Stage"
  5156. msgstr "监视阶段"
  5157. #: /VersionUpgrade/VersionUpgrade25to26/plugin.json
  5158. msgctxt "description"
  5159. msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
  5160. msgstr "将配置从 Cura 2.5 版本升级至 2.6 版本。"
  5161. #: /VersionUpgrade/VersionUpgrade25to26/plugin.json
  5162. msgctxt "name"
  5163. msgid "Version Upgrade 2.5 to 2.6"
  5164. msgstr "版本自 2.5 升级到 2.6"
  5165. #: /VersionUpgrade/VersionUpgrade26to27/plugin.json
  5166. msgctxt "description"
  5167. msgid "Upgrades configurations from Cura 2.6 to Cura 2.7."
  5168. msgstr "将配置从 Cura 2.6 版本升级至 2.7 版本。"
  5169. #: /VersionUpgrade/VersionUpgrade26to27/plugin.json
  5170. msgctxt "name"
  5171. msgid "Version Upgrade 2.6 to 2.7"
  5172. msgstr "版本自 2.6 升级到 2.7"
  5173. #: /VersionUpgrade/VersionUpgrade413to50/plugin.json
  5174. msgctxt "description"
  5175. msgid "Upgrades configurations from Cura 4.13 to Cura 5.0."
  5176. msgstr "将配置从 Cura 4.13 升级至 Cura 5.0。"
  5177. #: /VersionUpgrade/VersionUpgrade413to50/plugin.json
  5178. msgctxt "name"
  5179. msgid "Version Upgrade 4.13 to 5.0"
  5180. msgstr "版本从 4.13 升级到 5.0"
  5181. #: /VersionUpgrade/VersionUpgrade48to49/plugin.json
  5182. msgctxt "description"
  5183. msgid "Upgrades configurations from Cura 4.8 to Cura 4.9."
  5184. msgstr "将配置从 Cura 4.8 升级到 Cura 4.9。"
  5185. #: /VersionUpgrade/VersionUpgrade48to49/plugin.json
  5186. msgctxt "name"
  5187. msgid "Version Upgrade 4.8 to 4.9"
  5188. msgstr "版本从 4.8 升级到 4.9"
  5189. #: /VersionUpgrade/VersionUpgrade34to35/plugin.json
  5190. msgctxt "description"
  5191. msgid "Upgrades configurations from Cura 3.4 to Cura 3.5."
  5192. msgstr "将配置从 Cura 3.4 版本升级至 3.5 版本。"
  5193. #: /VersionUpgrade/VersionUpgrade34to35/plugin.json
  5194. msgctxt "name"
  5195. msgid "Version Upgrade 3.4 to 3.5"
  5196. msgstr "版本自 3.4 升级到 3.5"
  5197. #: /VersionUpgrade/VersionUpgrade44to45/plugin.json
  5198. msgctxt "description"
  5199. msgid "Upgrades configurations from Cura 4.4 to Cura 4.5."
  5200. msgstr "将配置从 Cura 4.4 升级至 Cura 4.5。"
  5201. #: /VersionUpgrade/VersionUpgrade44to45/plugin.json
  5202. msgctxt "name"
  5203. msgid "Version Upgrade 4.4 to 4.5"
  5204. msgstr "版本从 4.4 升级至 4.5"
  5205. #: /VersionUpgrade/VersionUpgrade43to44/plugin.json
  5206. msgctxt "description"
  5207. msgid "Upgrades configurations from Cura 4.3 to Cura 4.4."
  5208. msgstr "将配置从 Cura 4.3 升级至 Cura 4.4。"
  5209. #: /VersionUpgrade/VersionUpgrade43to44/plugin.json
  5210. msgctxt "name"
  5211. msgid "Version Upgrade 4.3 to 4.4"
  5212. msgstr "版本自 4.3 升级至 4.4"
  5213. #: /VersionUpgrade/VersionUpgrade32to33/plugin.json
  5214. msgctxt "description"
  5215. msgid "Upgrades configurations from Cura 3.2 to Cura 3.3."
  5216. msgstr "将配置从 Cura 3.2 版本升级至 3.3 版本。"
  5217. #: /VersionUpgrade/VersionUpgrade32to33/plugin.json
  5218. msgctxt "name"
  5219. msgid "Version Upgrade 3.2 to 3.3"
  5220. msgstr "版本自 3.2 升级到 3.3"
  5221. #: /VersionUpgrade/VersionUpgrade33to34/plugin.json
  5222. msgctxt "description"
  5223. msgid "Upgrades configurations from Cura 3.3 to Cura 3.4."
  5224. msgstr "从Cura 3.3升级到Cura 3.4。"
  5225. #: /VersionUpgrade/VersionUpgrade33to34/plugin.json
  5226. msgctxt "name"
  5227. msgid "Version Upgrade 3.3 to 3.4"
  5228. msgstr "版本升级3.3到3.4"
  5229. #: /VersionUpgrade/VersionUpgrade41to42/plugin.json
  5230. msgctxt "description"
  5231. msgid "Upgrades configurations from Cura 4.1 to Cura 4.2."
  5232. msgstr "请将配置从 Cura 4.1 升级至 Cura 4.2。"
  5233. #: /VersionUpgrade/VersionUpgrade41to42/plugin.json
  5234. msgctxt "name"
  5235. msgid "Version Upgrade 4.1 to 4.2"
  5236. msgstr "版本自 4.1 升级到 4.2"
  5237. #: /VersionUpgrade/VersionUpgrade42to43/plugin.json
  5238. msgctxt "description"
  5239. msgid "Upgrades configurations from Cura 4.2 to Cura 4.3."
  5240. msgstr "请将配置从 Cura 4.2 升级至 Cura 4.3。"
  5241. #: /VersionUpgrade/VersionUpgrade42to43/plugin.json
  5242. msgctxt "name"
  5243. msgid "Version Upgrade 4.2 to 4.3"
  5244. msgstr "版本自 4.2 升级至 4.3"
  5245. #: /VersionUpgrade/VersionUpgrade462to47/plugin.json
  5246. msgctxt "description"
  5247. msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7."
  5248. msgstr "将配置从 Cura 4.6.2 升级到 Cura 4.7。"
  5249. #: /VersionUpgrade/VersionUpgrade462to47/plugin.json
  5250. msgctxt "name"
  5251. msgid "Version Upgrade 4.6.2 to 4.7"
  5252. msgstr "版本从 4.6.2 升级到 4.7"
  5253. #: /VersionUpgrade/VersionUpgrade35to40/plugin.json
  5254. msgctxt "description"
  5255. msgid "Upgrades configurations from Cura 3.5 to Cura 4.0."
  5256. msgstr "将配置从 Cura 3.5 版本升级至 4.0 版本。"
  5257. #: /VersionUpgrade/VersionUpgrade35to40/plugin.json
  5258. msgctxt "name"
  5259. msgid "Version Upgrade 3.5 to 4.0"
  5260. msgstr "版本自 3.5 升级到 4.0"
  5261. #: /VersionUpgrade/VersionUpgrade22to24/plugin.json
  5262. msgctxt "description"
  5263. msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
  5264. msgstr "将配置从 Cura 2.2 版本升级至 2.4 版本。"
  5265. #: /VersionUpgrade/VersionUpgrade22to24/plugin.json
  5266. msgctxt "name"
  5267. msgid "Version Upgrade 2.2 to 2.4"
  5268. msgstr "版本自 2.2 升级到 2.4"
  5269. #: /VersionUpgrade/VersionUpgrade21to22/plugin.json
  5270. msgctxt "description"
  5271. msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
  5272. msgstr "将配置从 Cura 2.1 版本升级至 2.2 版本。"
  5273. #: /VersionUpgrade/VersionUpgrade21to22/plugin.json
  5274. msgctxt "name"
  5275. msgid "Version Upgrade 2.1 to 2.2"
  5276. msgstr "版本自 2.1 升级到 2.2"
  5277. #: /VersionUpgrade/VersionUpgrade460to462/plugin.json
  5278. msgctxt "description"
  5279. msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2."
  5280. msgstr "将配置从 Cura 4.6.0 升级到 Cura 4.6.2。"
  5281. #: /VersionUpgrade/VersionUpgrade460to462/plugin.json
  5282. msgctxt "name"
  5283. msgid "Version Upgrade 4.6.0 to 4.6.2"
  5284. msgstr "版本从 4.6.0 升级到 4.6.2"
  5285. #: /VersionUpgrade/VersionUpgrade47to48/plugin.json
  5286. msgctxt "description"
  5287. msgid "Upgrades configurations from Cura 4.7 to Cura 4.8."
  5288. msgstr "将配置从 Cura 4.7 升级到 Cura 4.8。"
  5289. #: /VersionUpgrade/VersionUpgrade47to48/plugin.json
  5290. msgctxt "name"
  5291. msgid "Version Upgrade 4.7 to 4.8"
  5292. msgstr "将版本从 4.7 升级到 4.8"
  5293. #: /VersionUpgrade/VersionUpgrade49to410/plugin.json
  5294. msgctxt "description"
  5295. msgid "Upgrades configurations from Cura 4.9 to Cura 4.10."
  5296. msgstr "将配置从 Cura 4.9 升级到 Cura 4.10。"
  5297. #: /VersionUpgrade/VersionUpgrade49to410/plugin.json
  5298. msgctxt "name"
  5299. msgid "Version Upgrade 4.9 to 4.10"
  5300. msgstr "版本从 4.9 升级到 4.10"
  5301. #: /VersionUpgrade/VersionUpgrade45to46/plugin.json
  5302. msgctxt "description"
  5303. msgid "Upgrades configurations from Cura 4.5 to Cura 4.6."
  5304. msgstr "将配置从 Cura 4.5 升级至 Cura 4.6。"
  5305. #: /VersionUpgrade/VersionUpgrade45to46/plugin.json
  5306. msgctxt "name"
  5307. msgid "Version Upgrade 4.5 to 4.6"
  5308. msgstr "版本从 4.5 升级至 4.6"
  5309. #: /VersionUpgrade/VersionUpgrade27to30/plugin.json
  5310. msgctxt "description"
  5311. msgid "Upgrades configurations from Cura 2.7 to Cura 3.0."
  5312. msgstr "将配置从 Cura 2.7 版本升级至 3.0 版本。"
  5313. #: /VersionUpgrade/VersionUpgrade27to30/plugin.json
  5314. msgctxt "name"
  5315. msgid "Version Upgrade 2.7 to 3.0"
  5316. msgstr "版本自 2.7 升级到 3.0"
  5317. #: /VersionUpgrade/VersionUpgrade30to31/plugin.json
  5318. msgctxt "description"
  5319. msgid "Upgrades configurations from Cura 3.0 to Cura 3.1."
  5320. msgstr "将配置从 Cura 3.0 版本升级至 3.1 版本。"
  5321. #: /VersionUpgrade/VersionUpgrade30to31/plugin.json
  5322. msgctxt "name"
  5323. msgid "Version Upgrade 3.0 to 3.1"
  5324. msgstr "版本自 3.0 升级到 3.1"
  5325. #: /VersionUpgrade/VersionUpgrade411to412/plugin.json
  5326. msgctxt "description"
  5327. msgid "Upgrades configurations from Cura 4.11 to Cura 4.12."
  5328. msgstr "将配置从 Cura 4.11 升级到 Cura 4.12。"
  5329. #: /VersionUpgrade/VersionUpgrade411to412/plugin.json
  5330. msgctxt "name"
  5331. msgid "Version Upgrade 4.11 to 4.12"
  5332. msgstr "版本从 4.11 升级到 4.12"
  5333. #: /VersionUpgrade/VersionUpgrade40to41/plugin.json
  5334. msgctxt "description"
  5335. msgid "Upgrades configurations from Cura 4.0 to Cura 4.1."
  5336. msgstr "将配置从 Cura 4.0 版本升级至 4.1 版本。"
  5337. #: /VersionUpgrade/VersionUpgrade40to41/plugin.json
  5338. msgctxt "name"
  5339. msgid "Version Upgrade 4.0 to 4.1"
  5340. msgstr "版本自 4.0 升级到 4.1"
  5341. #: /CuraEngineBackend/plugin.json
  5342. msgctxt "description"
  5343. msgid "Provides the link to the CuraEngine slicing backend."
  5344. msgstr "提供 CuraEngine 切片后端的路径。"
  5345. #: /CuraEngineBackend/plugin.json
  5346. msgctxt "name"
  5347. msgid "CuraEngine Backend"
  5348. msgstr "CuraEngine 后端"
  5349. #: /3MFReader/plugin.json
  5350. msgctxt "description"
  5351. msgid "Provides support for reading 3MF files."
  5352. msgstr "提供对读取 3MF 格式文件的支持。"
  5353. #: /3MFReader/plugin.json
  5354. msgctxt "name"
  5355. msgid "3MF Reader"
  5356. msgstr "3MF 读取器"
  5357. #: /PerObjectSettingsTool/plugin.json
  5358. msgctxt "description"
  5359. msgid "Provides the Per Model Settings."
  5360. msgstr "提供对每个模型的单独设置。"
  5361. #: /PerObjectSettingsTool/plugin.json
  5362. msgctxt "name"
  5363. msgid "Per Model Settings Tool"
  5364. msgstr "单一模型设置工具"
  5365. #: /XmlMaterialProfile/plugin.json
  5366. msgctxt "description"
  5367. msgid "Provides capabilities to read and write XML-based material profiles."
  5368. msgstr "提供读取和写入基于 XML 的材料配置文件的功能。"
  5369. #: /XmlMaterialProfile/plugin.json
  5370. msgctxt "name"
  5371. msgid "Material Profiles"
  5372. msgstr "材料配置文件"
  5373. #: /CuraProfileWriter/plugin.json
  5374. msgctxt "description"
  5375. msgid "Provides support for exporting Cura profiles."
  5376. msgstr "提供了对导出 Cura 配置文件的支持。"
  5377. #: /CuraProfileWriter/plugin.json
  5378. msgctxt "name"
  5379. msgid "Cura Profile Writer"
  5380. msgstr "Cura 配置文件写入器"
  5381. #: /ModelChecker/plugin.json
  5382. msgctxt "description"
  5383. msgid "Checks models and print configuration for possible printing issues and give suggestions."
  5384. msgstr "检查模型和打印配置,以了解潜在的打印问题并给出建议。"
  5385. #: /ModelChecker/plugin.json
  5386. msgctxt "name"
  5387. msgid "Model Checker"
  5388. msgstr "模型检查器"
  5389. #: /USBPrinting/plugin.json
  5390. msgctxt "description"
  5391. msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
  5392. msgstr "接受 G-Code 并将其发送到一台打印机。 插件也可以更新固件。"
  5393. #: /USBPrinting/plugin.json
  5394. msgctxt "name"
  5395. msgid "USB printing"
  5396. msgstr "USB 联机打印"
  5397. #: /PreviewStage/plugin.json
  5398. msgctxt "description"
  5399. msgid "Provides a preview stage in Cura."
  5400. msgstr "在 Cura 中提供预览阶段。"
  5401. #: /PreviewStage/plugin.json
  5402. msgctxt "name"
  5403. msgid "Preview Stage"
  5404. msgstr "预览阶段"
  5405. #: /GCodeWriter/plugin.json
  5406. msgctxt "description"
  5407. msgid "Writes g-code to a file."
  5408. msgstr "将 G-code 写入至文件。"
  5409. #: /GCodeWriter/plugin.json
  5410. msgctxt "name"
  5411. msgid "G-code Writer"
  5412. msgstr "G-code 写入器"
  5413. #: /UFPReader/plugin.json
  5414. msgctxt "description"
  5415. msgid "Provides support for reading Ultimaker Format Packages."
  5416. msgstr "支持读取 Ultimaker 格式包。"
  5417. #: /UFPReader/plugin.json
  5418. msgctxt "name"
  5419. msgid "UFP Reader"
  5420. msgstr "UFP 读取器"
  5421. #: /FirmwareUpdater/plugin.json
  5422. msgctxt "description"
  5423. msgid "Provides a machine actions for updating firmware."
  5424. msgstr "为固件更新提供操作选项。"
  5425. #: /FirmwareUpdater/plugin.json
  5426. msgctxt "name"
  5427. msgid "Firmware Updater"
  5428. msgstr "固件更新程序"
  5429. #: /GCodeGzWriter/plugin.json
  5430. msgctxt "description"
  5431. msgid "Writes g-code to a compressed archive."
  5432. msgstr "将 G-code 写入至压缩存档文件。"
  5433. #: /GCodeGzWriter/plugin.json
  5434. msgctxt "name"
  5435. msgid "Compressed G-code Writer"
  5436. msgstr "压缩 G-code 写入器"
  5437. #: /SimulationView/plugin.json
  5438. msgctxt "description"
  5439. msgid "Provides the preview of sliced layerdata."
  5440. msgstr "提供切片层数据的预览。"
  5441. #: /SimulationView/plugin.json
  5442. msgctxt "name"
  5443. msgid "Simulation View"
  5444. msgstr "仿真视图"
  5445. #: /LegacyProfileReader/plugin.json
  5446. msgctxt "description"
  5447. msgid "Provides support for importing profiles from legacy Cura versions."
  5448. msgstr "支持从 Cura 旧版本导入配置文件。"
  5449. #: /LegacyProfileReader/plugin.json
  5450. msgctxt "name"
  5451. msgid "Legacy Cura Profile Reader"
  5452. msgstr "旧版 Cura 配置文件读取器"
  5453. #: /AMFReader/plugin.json
  5454. msgctxt "description"
  5455. msgid "Provides support for reading AMF files."
  5456. msgstr "提供对读取 AMF 文件的支持。"
  5457. #: /AMFReader/plugin.json
  5458. msgctxt "name"
  5459. msgid "AMF Reader"
  5460. msgstr "AMF 读取器"
  5461. #: /SolidView/plugin.json
  5462. msgctxt "description"
  5463. msgid "Provides a normal solid mesh view."
  5464. msgstr "提供一个基本的实体网格视图。"
  5465. #: /SolidView/plugin.json
  5466. msgctxt "name"
  5467. msgid "Solid View"
  5468. msgstr "实体视图"
  5469. #: /FirmwareUpdateChecker/plugin.json
  5470. msgctxt "description"
  5471. msgid "Checks for firmware updates."
  5472. msgstr "检查以进行固件更新。"
  5473. #: /FirmwareUpdateChecker/plugin.json
  5474. msgctxt "name"
  5475. msgid "Firmware Update Checker"
  5476. msgstr "固件更新检查程序"
  5477. #: /SentryLogger/plugin.json
  5478. msgctxt "description"
  5479. msgid "Logs certain events so that they can be used by the crash reporter"
  5480. msgstr "记录某些事件,以使其可供崩溃报告器使用"
  5481. #: /SentryLogger/plugin.json
  5482. msgctxt "name"
  5483. msgid "Sentry Logger"
  5484. msgstr "Sentry 日志记录"
  5485. #: /SupportEraser/plugin.json
  5486. msgctxt "description"
  5487. msgid "Creates an eraser mesh to block the printing of support in certain places"
  5488. msgstr "创建橡皮擦网格,以便阻止在某些位置打印支撑"
  5489. #: /SupportEraser/plugin.json
  5490. msgctxt "name"
  5491. msgid "Support Eraser"
  5492. msgstr "支持橡皮擦"
  5493. #: /PrepareStage/plugin.json
  5494. msgctxt "description"
  5495. msgid "Provides a prepare stage in Cura."
  5496. msgstr "在 Cura 中提供准备阶段。"
  5497. #: /PrepareStage/plugin.json
  5498. msgctxt "name"
  5499. msgid "Prepare Stage"
  5500. msgstr "准备阶段"
  5501. #, python-brace-format
  5502. #~ msgctxt "@error:material"
  5503. #~ msgid "It was not possible to store material package information in project file: {material}. This project may not open correctly on other systems."
  5504. #~ msgstr "项目文件中无法存储材料包信息:{material}。此项目在其他系统上可能无法正确打开。"
  5505. #~ msgctxt "@info:title"
  5506. #~ msgid "Failed to save material package information"
  5507. #~ msgstr "未能保存材料包信息"
  5508. #~ msgctxt "@label Description for application dependency"
  5509. #~ msgid "Python Error tracking library"
  5510. #~ msgstr "Python 错误跟踪库"
  5511. #~ msgctxt "@label"
  5512. #~ msgid "Printer"
  5513. #~ msgstr "打印机"
  5514. #~ msgctxt "@info"
  5515. #~ msgid "custom profile is active and you overwrote some settings."
  5516. #~ msgstr "自定义配置文件处于活动状态,并且已覆盖某些设置。"
  5517. #~ msgctxt "@info"
  5518. #~ msgid "custom profile is overriding some settings."
  5519. #~ msgstr "自定义配置文件正在覆盖某些设置。"
  5520. #~ msgctxt "@label"
  5521. #~ msgid "Not yet initialized<br/>"
  5522. #~ msgstr "尚未初始化<br/>"
  5523. #~ msgctxt "@label"
  5524. #~ msgid "By"
  5525. #~ msgstr "由:"
  5526. #~ msgctxt "@Label"
  5527. #~ msgid "Static type checker for Python"
  5528. #~ msgstr "适用于 Python 的静态类型检查器"
  5529. #~ msgctxt "@Label"
  5530. #~ msgid "Root Certificates for validating SSL trustworthiness"
  5531. #~ msgstr "用于验证 SSL 可信度的根证书"
  5532. #~ msgctxt "@label"
  5533. #~ msgid "Python extensions for Microsoft Windows"
  5534. #~ msgstr "适用于 Microsoft Windows 的 Python 扩展"
  5535. #~ msgctxt "@label"
  5536. #~ msgid "SVG icons"
  5537. #~ msgstr "SVG 图标"
  5538. #~ msgctxt "@label %1 is filled in with the type of a profile. %2 is filled with a list of numbers (eg '1' or '1, 2')"
  5539. #~ msgid "There is no %1 profile for the configuration in extruder %2. The default intent will be used instead"
  5540. #~ msgid_plural "There is no %1 profile for the configurations in extruders %2. The default intent will be used instead"
  5541. #~ msgstr[0] "没有 %1 配置文件可用于挤出器 %2 中的配置。将改为使用默认意图"
  5542. #~ msgctxt "@tooltip"
  5543. #~ msgid "You have modified some profile settings. If you want to change these go to custom mode."
  5544. #~ msgstr "您已修改部分配置文件设置。 如果您想对其进行更改,请转至自定义模式。"
  5545. #~ msgctxt "@action:button"
  5546. #~ msgid "Sync materials with printers"
  5547. #~ msgstr "同步材料与打印机"
  5548. #~ msgctxt "@title:window"
  5549. #~ msgid "Convert Image..."
  5550. #~ msgstr "转换图像..."
  5551. #~ msgctxt "@info:tooltip"
  5552. #~ msgid "The width in millimeters on the build plate."
  5553. #~ msgstr "打印平台宽度,以毫米为单位。"
  5554. #~ msgctxt "@title"
  5555. #~ msgid "Marketplace"
  5556. #~ msgstr "市场"
  5557. #~ msgctxt "@info"
  5558. #~ msgid "You will need to restart Cura before changes in packages have effect."
  5559. #~ msgstr "在包装更改生效之前,您需要重新启动Cura。"
  5560. #~ msgctxt "@action:button"
  5561. #~ msgid "Install"
  5562. #~ msgstr "安装"
  5563. #~ msgctxt "@action:button"
  5564. #~ msgid "Installed"
  5565. #~ msgstr "已安装"
  5566. #~ msgctxt "@label"
  5567. #~ msgid "Premium"
  5568. #~ msgstr "高级"
  5569. #~ msgctxt "@info:tooltip"
  5570. #~ msgid "Go to Web Marketplace"
  5571. #~ msgstr "前往网上市场"
  5572. #~ msgctxt "@label"
  5573. #~ msgid "Search materials"
  5574. #~ msgstr "搜索材料"
  5575. #~ msgctxt "@label"
  5576. #~ msgid "Compatibility"
  5577. #~ msgstr "兼容性"
  5578. #~ msgctxt "@label:table_header"
  5579. #~ msgid "Machine"
  5580. #~ msgstr "机器"
  5581. #~ msgctxt "@label:table_header"
  5582. #~ msgid "Build Plate"
  5583. #~ msgstr "打印平台"
  5584. #~ msgctxt "@label:table_header"
  5585. #~ msgid "Support"
  5586. #~ msgstr "支持"
  5587. #~ msgctxt "@label:table_header"
  5588. #~ msgid "Quality"
  5589. #~ msgstr "质量"
  5590. #~ msgctxt "@action:label"
  5591. #~ msgid "Technical Data Sheet"
  5592. #~ msgstr "技术数据表"
  5593. #~ msgctxt "@action:label"
  5594. #~ msgid "Safety Data Sheet"
  5595. #~ msgstr "安全数据表"
  5596. #~ msgctxt "@action:label"
  5597. #~ msgid "Printing Guidelines"
  5598. #~ msgstr "打印指南"
  5599. #~ msgctxt "@action:label"
  5600. #~ msgid "Website"
  5601. #~ msgstr "网站"
  5602. #~ msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  5603. #~ msgid "<a href='%1'>Log in</a> is required to install or update"
  5604. #~ msgstr "安装或更新需要<a href='%1'>登录</a>"
  5605. #~ msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  5606. #~ msgid "<a href='%1'>Buy material spools</a>"
  5607. #~ msgstr "<a href='%1'>购买材料线轴</a>"
  5608. #~ msgctxt "@action:button"
  5609. #~ msgid "Update"
  5610. #~ msgstr "更新"
  5611. #~ msgctxt "@action:button"
  5612. #~ msgid "Updating"
  5613. #~ msgstr "更新"
  5614. #~ msgctxt "@action:button"
  5615. #~ msgid "Updated"
  5616. #~ msgstr "更新"
  5617. #~ msgctxt "@action:button"
  5618. #~ msgid "Back"
  5619. #~ msgstr "背部"
  5620. #~ msgctxt "@title:tab"
  5621. #~ msgid "Plugins"
  5622. #~ msgstr "插件"
  5623. #~ msgctxt "@title:tab"
  5624. #~ msgid "Installed"
  5625. #~ msgstr "安装"
  5626. #~ msgctxt "@label"
  5627. #~ msgid "Will install upon restarting"
  5628. #~ msgstr "将安装后重新启动"
  5629. #~ msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  5630. #~ msgid "<a href='%1'>Log in</a> is required to update"
  5631. #~ msgstr "更新需要<a href='%1'>登录</a>"
  5632. #~ msgctxt "@action:button"
  5633. #~ msgid "Downgrade"
  5634. #~ msgstr "降级"
  5635. #~ msgctxt "@action:button"
  5636. #~ msgid "Uninstall"
  5637. #~ msgstr "卸载"
  5638. #~ msgctxt "@label"
  5639. #~ msgid "Community Contributions"
  5640. #~ msgstr "社区贡献"
  5641. #~ msgctxt "@label"
  5642. #~ msgid "Community Plugins"
  5643. #~ msgstr "社区插件"
  5644. #~ msgctxt "@label"
  5645. #~ msgid "Generic Materials"
  5646. #~ msgstr "通用材料"
  5647. #~ msgctxt "@info"
  5648. #~ msgid "Fetching packages..."
  5649. #~ msgstr "获取包..."
  5650. #~ msgctxt "@label"
  5651. #~ msgid "Website"
  5652. #~ msgstr "网站"
  5653. #~ msgctxt "@label"
  5654. #~ msgid "Email"
  5655. #~ msgstr "电子邮件"
  5656. #~ msgctxt "@description"
  5657. #~ msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise"
  5658. #~ msgstr "请登录以获取经验证适用于 Ultimaker Cura Enterprise 的插件和材料"
  5659. #~ msgctxt "@label"
  5660. #~ msgid "Version"
  5661. #~ msgstr "版本"
  5662. #~ msgctxt "@label"
  5663. #~ msgid "Last updated"
  5664. #~ msgstr "更新日期"
  5665. #~ msgctxt "@label"
  5666. #~ msgid "Downloads"
  5667. #~ msgstr "下载项"
  5668. #~ msgctxt "@title:tab"
  5669. #~ msgid "Installed plugins"
  5670. #~ msgstr "已安装的插件"
  5671. #~ msgctxt "@info"
  5672. #~ msgid "No plugin has been installed."
  5673. #~ msgstr "尚未安装任何插件。"
  5674. #~ msgctxt "@title:tab"
  5675. #~ msgid "Installed materials"
  5676. #~ msgstr "已安装的材料"
  5677. #~ msgctxt "@info"
  5678. #~ msgid "No material has been installed."
  5679. #~ msgstr "尚未安装任何材料。"
  5680. #~ msgctxt "@title:tab"
  5681. #~ msgid "Bundled plugins"
  5682. #~ msgstr "已捆绑的插件"
  5683. #~ msgctxt "@title:tab"
  5684. #~ msgid "Bundled materials"
  5685. #~ msgstr "已捆绑的材料"
  5686. #~ msgctxt "@info"
  5687. #~ msgid "Could not connect to the Cura Package database. Please check your connection."
  5688. #~ msgstr "无法连接到Cura包数据库。请检查您的连接。"
  5689. #~ msgctxt "@title:window"
  5690. #~ msgid "Confirm uninstall"
  5691. #~ msgstr "确认卸载"
  5692. #~ msgctxt "@text:window"
  5693. #~ msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults."
  5694. #~ msgstr "您正在卸载仍在使用的材料和/或配置文件。确认会将以下材料/配置文件重置为默认值。"
  5695. #~ msgctxt "@text:window"
  5696. #~ msgid "Materials"
  5697. #~ msgstr "材料"
  5698. #~ msgctxt "@text:window"
  5699. #~ msgid "Profiles"
  5700. #~ msgstr "配置文件"
  5701. #~ msgctxt "@action:button"
  5702. #~ msgid "Confirm"
  5703. #~ msgstr "确认"
  5704. #~ msgctxt "@info:tooltip"
  5705. #~ msgid "Some things could be problematic in this print. Click to see tips for adjustment."
  5706. #~ msgstr "此次打印可能出现了某些问题。点击查看调整提示。"
  5707. #~ msgctxt "@label"
  5708. #~ msgid "Support library for handling planar objects"
  5709. #~ msgstr "用于处理平面对象的支持库"
  5710. #~ msgctxt "@text:window, %1 is a profile name"
  5711. #~ msgid ""
  5712. #~ "You have customized some profile settings.\n"
  5713. #~ "Would you like to Keep these changed settings after switching profiles?\n"
  5714. #~ "Alternatively, you can discard the changes to load the defaults from '%1'."
  5715. #~ msgstr ""
  5716. #~ "您已经自定义了若干配置文件设置。\n"
  5717. #~ "是否要在切换配置文件后保留这些更改的设置?\n"
  5718. #~ "或者,也可舍弃更改以从“%1”加载默认值。"
  5719. #~ msgctxt "@action:inmenu menubar:view"
  5720. #~ msgid "&Build plate"
  5721. #~ msgstr "打印平台(&B)"
  5722. #~ msgctxt "@label"
  5723. #~ msgid "Create"
  5724. #~ msgstr "创建"
  5725. #~ msgctxt "@label"
  5726. #~ msgid "Duplicate"
  5727. #~ msgstr "复制"
  5728. #~ msgctxt "@label %1 is printer name"
  5729. #~ msgid "Printer: %1"
  5730. #~ msgstr "打印机:%1"
  5731. #~ msgctxt "@action:button"
  5732. #~ msgid "Update profile with current settings/overrides"
  5733. #~ msgstr "使用当前设置 / 重写值更新配置文件"
  5734. #~ msgctxt "@label"
  5735. #~ msgid "Theme:"
  5736. #~ msgstr "主题:"
  5737. #~ msgctxt "@label"
  5738. #~ msgid "You will need to restart the application for these changes to have effect."
  5739. #~ msgstr "需重新启动 Cura,新的设置才能生效。"
  5740. #~ msgctxt "@action:button"
  5741. #~ msgid "More information"
  5742. #~ msgstr "详细信息"
  5743. #~ msgctxt "@action:button"
  5744. #~ msgid "Create"
  5745. #~ msgstr "创建"
  5746. #~ msgctxt "@action:button Sending materials to printers"
  5747. #~ msgid "Sync with Printers"
  5748. #~ msgstr "与打印机同步"
  5749. #~ msgctxt "@action:label"
  5750. #~ msgid "Printer"
  5751. #~ msgstr "打印机"
  5752. #~ msgctxt "@title:column"
  5753. #~ msgid "Unit"
  5754. #~ msgstr "单位"
  5755. #~ msgctxt "@action:inmenu"
  5756. #~ msgid "Show Online Troubleshooting Guide"
  5757. #~ msgstr "显示联机故障排除指南"
  5758. #~ msgctxt "@action:inmenu"
  5759. #~ msgid "Add more materials from Marketplace"
  5760. #~ msgstr "从市场添加更多材料"
  5761. #~ msgctxt "@action:inmenu menubar:edit"
  5762. #~ msgid "Arrange All Models To All Build Plates"
  5763. #~ msgstr "将所有模型编位到所有打印平台"
  5764. #~ msgctxt "@action:menu"
  5765. #~ msgid "&Marketplace"
  5766. #~ msgstr "市场(&M)"
  5767. #~ msgctxt "description"
  5768. #~ msgid "Find, manage and install new Cura packages."
  5769. #~ msgstr "查找、管理和安装新的Cura包。"
  5770. #~ msgctxt "name"
  5771. #~ msgid "Toolbox"
  5772. #~ msgstr "工具箱"
  5773. #~ msgctxt "description"
  5774. #~ msgid "Provides the Simulation view."
  5775. #~ msgstr "提供仿真视图。"
  5776. #~ msgctxt "@info:status"
  5777. #~ msgid "Send and monitor print jobs from anywhere using your Ultimaker account."
  5778. #~ msgstr "使用您的 Ultimaker account 帐户从任何地方发送和监控打印作业。"
  5779. #~ msgctxt "@info:status Ultimaker Cloud should not be translated."
  5780. #~ msgid "Connect to Ultimaker Digital Factory"
  5781. #~ msgstr "连接到 Ultimaker Digital Factory"
  5782. #~ msgctxt "@info"
  5783. #~ msgid "Webcam feeds for cloud printers cannot be viewed from Ultimaker Cura."
  5784. #~ msgstr "无法从 Ultimaker Cura 中查看云打印机的网络摄像头馈送。"
  5785. #~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  5786. #~ msgid "New features or bug-fixes may be available for your {machine_name}! If not already at the latest version, it is recommended to update the firmware on your printer to version {latest_version}."
  5787. #~ msgstr "您的 {machine_name} 可能有新功能或错误修复可用!如果打印机上的固件还不是最新版本,建议将它更新为 {latest_version} 版。"
  5788. #~ msgctxt "@info:title The %s gets replaced with the printer name."
  5789. #~ msgid "New %s firmware available"
  5790. #~ msgstr "新 %s 固件可用"
  5791. #~ msgctxt "@info:status"
  5792. #~ msgid "Global stack is missing."
  5793. #~ msgstr "缺少全局堆栈。"
  5794. #~ msgctxt "@info:status"
  5795. #~ msgid "Your model is not manifold. The highlighted areas indicate either missing or extraneous surfaces."
  5796. #~ msgstr "您的模型不是流形。突出显示的区域指示缺少或多余的表面。"
  5797. #~ msgctxt "@info:title"
  5798. #~ msgid "Model errors"
  5799. #~ msgstr "模型错误"
  5800. #~ msgctxt "@label:listbox"
  5801. #~ msgid "Layer thickness"
  5802. #~ msgstr "层厚度"
  5803. #~ msgctxt "@label"
  5804. #~ msgid "Your key to connected 3D printing"
  5805. #~ msgstr "互连 3D 打印的特点"
  5806. #~ msgctxt "@text"
  5807. #~ msgid ""
  5808. #~ "- Customize your experience with more print profiles and plugins\n"
  5809. #~ "- Stay flexible by syncing your setup and loading it anywhere\n"
  5810. #~ "- Increase efficiency with a remote workflow on Ultimaker printers"
  5811. #~ msgstr ""
  5812. #~ "- 借助更多的打印配置文件和插件定制您的体验\n"
  5813. #~ "- 通过同步设置并将其加载到任何位置保持灵活性\n"
  5814. #~ "- 使用 Ultimaker 打印机上的远程工作流提高效率"
  5815. #~ msgctxt "@button"
  5816. #~ msgid "Create account"
  5817. #~ msgstr "创建账户"
  5818. #~ msgctxt "@action:inmenu menubar:edit"
  5819. #~ msgid "Delete Selected Model"
  5820. #~ msgid_plural "Delete Selected Models"
  5821. #~ msgstr[0] "删除所选模型"
  5822. #~ msgctxt "@action:inmenu menubar:edit"
  5823. #~ msgid "Center Selected Model"
  5824. #~ msgid_plural "Center Selected Models"
  5825. #~ msgstr[0] "居中所选模型"
  5826. #~ msgctxt "@action:inmenu menubar:edit"
  5827. #~ msgid "Multiply Selected Model"
  5828. #~ msgid_plural "Multiply Selected Models"
  5829. #~ msgstr[0] "复制所选模型"
  5830. #~ msgctxt "@button"
  5831. #~ msgid "Finish"
  5832. #~ msgstr "完成"
  5833. #~ msgctxt "@label"
  5834. #~ msgid "Ultimaker Account"
  5835. #~ msgstr "Ultimaker 帐户"
  5836. #~ msgctxt "@text"
  5837. #~ msgid "Your key to connected 3D printing"
  5838. #~ msgstr "互连 3D 打印的特点"
  5839. #~ msgctxt "@text"
  5840. #~ msgid "- Customize your experience with more print profiles and plugins"
  5841. #~ msgstr "- 借助更多的打印配置文件和插件定制您的体验"
  5842. #~ msgctxt "@text"
  5843. #~ msgid "- Stay flexible by syncing your setup and loading it anywhere"
  5844. #~ msgstr "- 通过同步设置并将其加载到任何位置保持灵活性"
  5845. #~ msgctxt "@text"
  5846. #~ msgid "- Increase efficiency with a remote workflow on Ultimaker printers"
  5847. #~ msgstr "- 使用 Ultimaker 打印机上的远程工作流提高效率"
  5848. #~ msgctxt "@text"
  5849. #~ msgid ""
  5850. #~ "Please follow these steps to set up\n"
  5851. #~ "Ultimaker Cura. This will only take a few moments."
  5852. #~ msgstr ""
  5853. #~ "请按照以下步骤设置\n"
  5854. #~ "Ultimaker Cura。此操作只需要几分钟时间。"
  5855. #~ msgctxt "@label"
  5856. #~ msgid "What's new in Ultimaker Cura"
  5857. #~ msgstr "Ultimaker Cura 新增功能"
  5858. #~ msgctxt "@label ({} is object name)"
  5859. #~ msgid "Are you sure you wish to remove {}? This cannot be undone!"
  5860. #~ msgstr "是否确实要删除 {}?此操作无法撤消!"
  5861. #~ msgctxt "@info:status"
  5862. #~ msgid "The selected model was too small to load."
  5863. #~ msgstr "所选模型过小,无法加载。"
  5864. #~ msgctxt "@info:status"
  5865. #~ msgid "Successfully imported profile {0}"
  5866. #~ msgstr "已成功导入配置文件 {0}"
  5867. #~ msgctxt "@info:status"
  5868. #~ msgid "Could not find a quality type {0} for the current configuration."
  5869. #~ msgstr "无法为当前配置找到质量类型 {0}。"
  5870. #~ msgctxt "info:status"
  5871. #~ msgid "Adding printer {} ({}) from your account"
  5872. #~ msgstr "正在从您的帐户添加打印机 {} ({})"
  5873. #~ msgctxt "info:hidden list items"
  5874. #~ msgid "<li>... and {} others</li>"
  5875. #~ msgstr "<li>... 和另外 {} 台</li>"
  5876. #~ msgctxt "info:status"
  5877. #~ msgid "Printers added from Digital Factory:<ul>{}</ul>"
  5878. #~ msgstr "从 Digital Factory 添加的打印机:<ul>{}</ul>"
  5879. #~ msgctxt "info:status"
  5880. #~ msgid "<ul>{}</ul>To establish a connection, please visit the <a href='https://mycloud.ultimaker.com/'>Ultimaker Digital Factory</a>."
  5881. #~ msgstr "<ul>{}</ul>要建立连接,请访问 <a href='https://mycloud.ultimaker.com/'>Ultimaker Digital Factory</a>。"
  5882. #~ msgctxt "@label ({} is printer name)"
  5883. #~ msgid "{} will be removed until the next account sync. <br> To remove {} permanently, visit <a href='https://mycloud.ultimaker.com/'>Ultimaker Digital Factory</a>. <br><br>Are you sure you want to remove {} temporarily?"
  5884. #~ msgstr "{} 将被删除,直至下次帐户同步为止。<br>要永久删除 {},请访问 <a href='https://mycloud.ultimaker.com/'>Ultimaker Digital Factory</a>。<br><br>是否确实要暂时删除 {}?"
  5885. #~ msgctxt "@label"
  5886. #~ msgid ""
  5887. #~ "You are about to remove {} printer(s) from Cura. This action cannot be undone. \n"
  5888. #~ "Are you sure you want to continue?"
  5889. #~ msgstr ""
  5890. #~ "您即将从 Cura 中删除 {} 台打印机。此操作无法撤消。\n"
  5891. #~ "是否确实要继续?"
  5892. #~ msgctxt "@label"
  5893. #~ msgid ""
  5894. #~ "You are about to remove all printers from Cura. This action cannot be undone. \n"
  5895. #~ "Are you sure you want to continue?"
  5896. #~ msgstr ""
  5897. #~ "您即将从 Cura 中删除所有打印机。此操作无法撤消。\n"
  5898. #~ "是否确实要继续?"
  5899. #~ msgctxt "@action:ComboBox option"
  5900. #~ msgid "Update"
  5901. #~ msgstr "更新"
  5902. #~ msgctxt "@action:ComboBox option"
  5903. #~ msgid "Create new"
  5904. #~ msgstr "新建"
  5905. #~ msgctxt "@label"
  5906. #~ msgid "Shared Heater"
  5907. #~ msgstr "共用加热器"
  5908. #~ msgctxt "@info"
  5909. #~ msgid "The webcam is not available because you are monitoring a cloud printer."
  5910. #~ msgstr "网络摄像头不可用,因为您正在监控云打印机。"
  5911. #~ msgctxt "@button"
  5912. #~ msgid "Ultimaker Digital Factory"
  5913. #~ msgstr "Ultimaker Digital Factory"
  5914. #~ msgctxt "@text:window, %1 is a profile name"
  5915. #~ msgid ""
  5916. #~ "You have customized some profile settings.\n"
  5917. #~ "Would you like to Keep these changed settings after switching profiles?\n"
  5918. #~ "Alternatively, you can Discard the changes to load the defaults from '%1'."
  5919. #~ msgstr ""
  5920. #~ "您已经自定义了一些配置文件设置。\n"
  5921. #~ "是否要在切换配置文件后保留这些更改的设置?\n"
  5922. #~ "或者,也可舍弃更改以从“%1”加载默认值。"
  5923. #~ msgctxt "@label"
  5924. #~ msgid "Overrides %1 setting."
  5925. #~ msgid_plural "Overrides %1 settings."
  5926. #~ msgstr[0] "覆盖 %1 设置。"
  5927. #~ msgctxt "@text"
  5928. #~ msgid "Please give your printer a name"
  5929. #~ msgstr "请指定打印机名称"
  5930. #~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  5931. #~ msgid "New features are available for your {machine_name}! It is recommended to update the firmware on your printer."
  5932. #~ msgstr "您的 {machine_name} 有新功能可用! 建议您更新打印机上的固件。"
  5933. #~ msgctxt "@action:button"
  5934. #~ msgid "Print via Cloud"
  5935. #~ msgstr "通过云打印"
  5936. #~ msgctxt "@properties:tooltip"
  5937. #~ msgid "Print via Cloud"
  5938. #~ msgstr "通过云打印"
  5939. #~ msgctxt "@info:status"
  5940. #~ msgid "Connected via Cloud"
  5941. #~ msgstr "通过云连接"
  5942. #~ msgctxt "@info:status Ultimaker Cloud should not be translated."
  5943. #~ msgid "Connect to Ultimaker Cloud"
  5944. #~ msgstr "连接到 Ultimaker Cloud"
  5945. #~ msgctxt "@label"
  5946. #~ msgid "You need to login first before you can rate"
  5947. #~ msgstr "您需要登录才能评分"
  5948. #~ msgctxt "@label"
  5949. #~ msgid "You need to install the package before you can rate"
  5950. #~ msgstr "您需要安装程序包才能评分"
  5951. #~ msgctxt "@label"
  5952. #~ msgid "ratings"
  5953. #~ msgstr "评分"
  5954. #~ msgctxt "@label"
  5955. #~ msgid "Featured"
  5956. #~ msgstr "精选"
  5957. #~ msgctxt "@label"
  5958. #~ msgid "Your rating"
  5959. #~ msgstr "您的评分"
  5960. #~ msgctxt "@label"
  5961. #~ msgid "Author"
  5962. #~ msgstr "作者"
  5963. #~ msgctxt "@description"
  5964. #~ msgid "Get plugins and materials verified by Ultimaker"
  5965. #~ msgstr "获取经过 Ultimaker 验证的插件和材料"
  5966. #~ msgctxt "@label The argument is a username."
  5967. #~ msgid "Hi %1"
  5968. #~ msgstr "%1,您好"
  5969. #~ msgctxt "@button"
  5970. #~ msgid "Ultimaker account"
  5971. #~ msgstr "Ultimaker 帐户"
  5972. #~ msgctxt "@button"
  5973. #~ msgid "Sign out"
  5974. #~ msgstr "注销"
  5975. #~ msgctxt "@label"
  5976. #~ msgid "Support library for analysis of complex networks"
  5977. #~ msgstr "用于分析复杂网络的支持库"
  5978. #~ msgctxt "@Label"
  5979. #~ msgid "Python HTTP library"
  5980. #~ msgstr "Python HTTP 库"
  5981. #~ msgctxt "@text:window"
  5982. #~ msgid ""
  5983. #~ "You have customized some profile settings.\n"
  5984. #~ "Would you like to keep or discard those settings?"
  5985. #~ msgstr ""
  5986. #~ "您已自定义某些配置文件设置。\n"
  5987. #~ "您想保留或舍弃这些设置吗?"
  5988. #~ msgctxt "@title:column"
  5989. #~ msgid "Default"
  5990. #~ msgstr "默认"
  5991. #~ msgctxt "@title:column"
  5992. #~ msgid "Customized"
  5993. #~ msgstr "自定义"
  5994. #~ msgctxt "@action:button"
  5995. #~ msgid "Discard"
  5996. #~ msgstr "舍弃"
  5997. #~ msgctxt "@action:button"
  5998. #~ msgid "Keep"
  5999. #~ msgstr "保留"
  6000. #~ msgctxt "@action:button"
  6001. #~ msgid "Create New Profile"
  6002. #~ msgstr "创建新配置文件"
  6003. #~ msgctxt "@title:menu menubar:file"
  6004. #~ msgid "&Save..."
  6005. #~ msgstr "保存(&S)..."
  6006. #~ msgctxt "@text"
  6007. #~ msgid "Place enter your printer's IP address."
  6008. #~ msgstr "打印机 IP 地址输入栏。"
  6009. #~ msgctxt "@button"
  6010. #~ msgid "Create an account"
  6011. #~ msgstr "创建帐户"
  6012. #~ msgctxt "@info:generic"
  6013. #~ msgid ""
  6014. #~ "\n"
  6015. #~ "Do you want to sync material and software packages with your account?"
  6016. #~ msgstr ""
  6017. #~ "\n"
  6018. #~ "是否要与您的帐户同步材料和软件包?"
  6019. #~ msgctxt "@info:generic"
  6020. #~ msgid ""
  6021. #~ "\n"
  6022. #~ "Syncing..."
  6023. #~ msgstr ""
  6024. #~ "\n"
  6025. #~ "正在同步..."
  6026. #~ msgctxt "@info:status"
  6027. #~ msgid "Nothing to slice because none of the models fit the build volume or are assigned to a disabled extruder. Please scale or rotate models to fit, or enable an extruder."
  6028. #~ msgstr "无法切片,因为没有一个模型适合成形空间体积或被分配至已禁用的挤出机。请缩放或旋转模型以匹配,或启用挤出机。"
  6029. #~ msgctxt "@info:backup_status"
  6030. #~ msgid "There was an error listing your backups."
  6031. #~ msgstr "列出您的备份时出错。"
  6032. #~ msgctxt "@title:groupbox"
  6033. #~ msgid "User description (Note: Developers may not speak your language, please use English if possible)"
  6034. #~ msgstr "用户说明(注意:为避免开发人员可能不熟悉您的语言,请尽量使用英语)"
  6035. #~ msgctxt "@title:window"
  6036. #~ msgid "Closing Cura"
  6037. #~ msgstr "关闭 Cura"
  6038. #~ msgctxt "@label"
  6039. #~ msgid "Are you sure you want to exit Cura?"
  6040. #~ msgstr "您确定要退出 Cura 吗?"
  6041. #~ msgctxt "@label"
  6042. #~ msgid "Language:"
  6043. #~ msgstr "语言:"
  6044. #~ msgctxt "@label"
  6045. #~ msgid "Ultimaker Cloud"
  6046. #~ msgstr "Ultimaker Cloud"
  6047. #~ msgctxt "@text"
  6048. #~ msgid "The next generation 3D printing workflow"
  6049. #~ msgstr "下一代 3D 打印工作流程"
  6050. #~ msgctxt "@text"
  6051. #~ msgid "- Send print jobs to Ultimaker printers outside your local network"
  6052. #~ msgstr "- 将打印作业发送到局域网外的 Ultimaker 打印机"
  6053. #~ msgctxt "@text"
  6054. #~ msgid "- Store your Ultimaker Cura settings in the cloud for use anywhere"
  6055. #~ msgstr "- 将 Ultimaker Cura 设置存储到云以便在任何地方使用"
  6056. #~ msgctxt "@text"
  6057. #~ msgid "- Get exclusive access to print profiles from leading brands"
  6058. #~ msgstr "- 获得来自领先品牌的打印配置文件的独家访问权限"
  6059. #~ msgctxt "@label"
  6060. #~ msgid "The value is resolved from per-extruder values "
  6061. #~ msgstr "该值将会根据每一个挤出机的设置而确定 "
  6062. #~ msgctxt "@label"
  6063. #~ msgid "The next generation 3D printing workflow"
  6064. #~ msgstr "下一代 3D 打印工作流程"
  6065. #~ msgctxt "@text"
  6066. #~ msgid ""
  6067. #~ "- Send print jobs to Ultimaker printers outside your local network\n"
  6068. #~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n"
  6069. #~ "- Get exclusive access to print profiles from leading brands"
  6070. #~ msgstr ""
  6071. #~ "- 将打印作业发送到局域网外的 Ultimaker 打印机\n"
  6072. #~ "- 将 Ultimaker Cura 设置存储到云以便在任何地方使用\n"
  6073. #~ "- 获得来自领先品牌的打印配置文件的独家访问权限"
  6074. #~ msgctxt "@title:window"
  6075. #~ msgid "About "
  6076. #~ msgstr "关于 "
  6077. #~ msgctxt "@info:button"
  6078. #~ msgid "Quit Cura"
  6079. #~ msgstr "退出 Cura"
  6080. #~ msgctxt "@action:checkbox"
  6081. #~ msgid "Infill only"
  6082. #~ msgstr "仅填充"
  6083. #~ msgctxt "@info:tooltip"
  6084. #~ msgid "Change active post-processing scripts"
  6085. #~ msgstr "更改目前启用的后期处理脚本"
  6086. #~ msgctxt "@label:listbox"
  6087. #~ msgid "Feedrate"
  6088. #~ msgstr "进给速度"
  6089. #~ msgctxt "name"
  6090. #~ msgid "Machine Settings action"
  6091. #~ msgstr "打印机设置操作"
  6092. #~ msgctxt "@info:title"
  6093. #~ msgid "New cloud printers found"
  6094. #~ msgstr "发现新的云打印机"
  6095. #~ msgctxt "@info:message"
  6096. #~ msgid "New printers have been found connected to your account, you can find them in your list of discovered printers."
  6097. #~ msgstr "发现有新打印机连接到您的帐户。您可以在已发现的打印机列表中查找新连接的打印机。"
  6098. #~ msgctxt "@info:status"
  6099. #~ msgid "Cura does not accurately display layers when Wire Printing is enabled"
  6100. #~ msgstr "当单线打印(Wire Printing)功能开启时,Cura 将无法准确地显示打印层(Layers)"
  6101. #~ msgctxt "@label"
  6102. #~ msgid "Pre-sliced file {0}"
  6103. #~ msgstr "预切片文件 {0}"
  6104. #~ msgctxt "@label"
  6105. #~ msgid ""
  6106. #~ "This plugin contains a license.\n"
  6107. #~ "You need to accept this license to install this plugin.\n"
  6108. #~ "Do you agree with the terms below?"
  6109. #~ msgstr ""
  6110. #~ "该插件包含一个许可。\n"
  6111. #~ "您需要接受此许可才能安装此插件。\n"
  6112. #~ "是否同意下列条款?"
  6113. #~ msgctxt "@action:button"
  6114. #~ msgid "Accept"
  6115. #~ msgstr "接受"
  6116. #~ msgctxt "@action:button"
  6117. #~ msgid "Decline"
  6118. #~ msgstr "拒绝"
  6119. #~ msgctxt "@action:inmenu"
  6120. #~ msgid "Show All Settings"
  6121. #~ msgstr "显示所有设置"
  6122. #~ msgctxt "@title:window"
  6123. #~ msgid "Ultimaker Cura"
  6124. #~ msgstr "Ultimaker Cura"
  6125. #~ msgctxt "@title:window"
  6126. #~ msgid "About Cura"
  6127. #~ msgstr "关于 Cura"
  6128. #~ msgctxt "@item:inmenu"
  6129. #~ msgid "Flatten active settings"
  6130. #~ msgstr "合并有效设置"
  6131. #~ msgctxt "@info:status"
  6132. #~ msgid "Profile has been flattened & activated."
  6133. #~ msgstr "配置文件已被合并并激活。"
  6134. #~ msgctxt "X3g Writer Plugin Description"
  6135. #~ msgid "Writes X3g to files"
  6136. #~ msgstr "写入 X3g 到文件"
  6137. #~ msgctxt "X3g Writer File Description"
  6138. #~ msgid "X3g File"
  6139. #~ msgstr "X3g 文件"
  6140. #~ msgctxt "X3G Writer File Description"
  6141. #~ msgid "X3G File"
  6142. #~ msgstr "X3G 文件"
  6143. #~ msgctxt "@item:inlistbox"
  6144. #~ msgid "Open Compressed Triangle Mesh"
  6145. #~ msgstr "打开压缩三角网格"
  6146. #~ msgctxt "@item:inmenu"
  6147. #~ msgid "Profile Assistant"
  6148. #~ msgstr "配置文件助手"
  6149. #~ msgctxt "@item:inlistbox"
  6150. #~ msgid "Profile Assistant"
  6151. #~ msgstr "配置文件助手"
  6152. #~ msgctxt "@action:button"
  6153. #~ msgid "Retry"
  6154. #~ msgstr "重试"
  6155. #~ msgctxt "@label:table_header"
  6156. #~ msgid "Print Core"
  6157. #~ msgstr "打印芯"
  6158. #~ msgctxt "@label"
  6159. #~ msgid "Don't support overlap with other models"
  6160. #~ msgstr "不支持与其他模型重叠"
  6161. #~ msgctxt "@label"
  6162. #~ msgid "Modify settings for overlap with other models"
  6163. #~ msgstr "修改与其他模型重叠的设置"
  6164. #~ msgctxt "@label"
  6165. #~ msgid "Modify settings for infill of other models"
  6166. #~ msgstr "修改其他模型填充物的设置"
  6167. #~ msgctxt "@action:ComboBox option"
  6168. #~ msgid "Update existing"
  6169. #~ msgstr "更新已有配置"
  6170. #~ msgctxt "@label"
  6171. #~ msgid "Not supported"
  6172. #~ msgstr "不支持"
  6173. #~ msgctxt "@action:button"
  6174. #~ msgid "Previous"
  6175. #~ msgstr "上一步"
  6176. #~ msgctxt "@label"
  6177. #~ msgid "Tip"
  6178. #~ msgstr "提示"
  6179. #~ msgctxt "@label"
  6180. #~ msgid "Print experiment"
  6181. #~ msgstr "打印试验"
  6182. #~ msgctxt "@label"
  6183. #~ msgid "Checklist"
  6184. #~ msgstr "检查表"
  6185. #~ msgctxt "@label"
  6186. #~ msgid "Please select any upgrades made to this Ultimaker 2."
  6187. #~ msgstr "请选择适用于 Ultimaker 2 的升级文件。"
  6188. #~ msgctxt "@label"
  6189. #~ msgid "Olsson Block"
  6190. #~ msgstr "Olsson Block"
  6191. #~ msgctxt "@window:text"
  6192. #~ msgid "Camera rendering: "
  6193. #~ msgstr "摄像头渲染: "
  6194. #~ msgctxt "@info:tooltip"
  6195. #~ msgid "Use multi build plate functionality"
  6196. #~ msgstr "使用多打印平台功能"
  6197. #~ msgctxt "@option:check"
  6198. #~ msgid "Use multi build plate functionality (restart required)"
  6199. #~ msgstr "使用多打印平台功能(需要重启)"
  6200. #~ msgctxt "@label"
  6201. #~ msgid "Default profiles"
  6202. #~ msgstr "默认配置文件"
  6203. #~ msgctxt "@label:textbox"
  6204. #~ msgid "search settings"
  6205. #~ msgstr "搜索设置"
  6206. #~ msgctxt "@label"
  6207. #~ msgid "Layer Height"
  6208. #~ msgstr "层高"
  6209. #~ msgctxt "@tooltip"
  6210. #~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile."
  6211. #~ msgstr "此质量配置文件不适用于当前材料和喷嘴配置。请进行更改以便启用此质量配置文件。"
  6212. #~ msgctxt "@tooltip"
  6213. #~ msgid "A custom profile is currently active. To enable the quality slider, choose a default quality profile in Custom tab"
  6214. #~ msgstr "自定义配置文件目前处于活动状态。 如要启用质量滑块,请在“自定义”选项卡中选择一个默认质量配置文件"
  6215. #~ msgctxt "@title:menu"
  6216. #~ msgid "&Build plate"
  6217. #~ msgstr "打印平台(&B)"
  6218. #~ msgctxt "@title:settings"
  6219. #~ msgid "&Profile"
  6220. #~ msgstr "配置文件(&P)"
  6221. #~ msgctxt "@action:label"
  6222. #~ msgid "Build plate"
  6223. #~ msgstr "打印平台"
  6224. #~ msgctxt "description"
  6225. #~ msgid "Dump the contents of all settings to a HTML file."
  6226. #~ msgstr "将所有设置内容转储至 HTML 文件。"
  6227. #~ msgctxt "name"
  6228. #~ msgid "God Mode"
  6229. #~ msgstr "God 模式"
  6230. #~ msgctxt "description"
  6231. #~ msgid "Create a flattened quality changes profile."
  6232. #~ msgstr "创建一份合并质量变化配置文件。"
  6233. #~ msgctxt "name"
  6234. #~ msgid "Profile Flattener"
  6235. #~ msgstr "配置文件合并器"
  6236. #~ msgctxt "description"
  6237. #~ msgid "Allows material manufacturers to create new material and quality profiles using a drop-in UI."
  6238. #~ msgstr "允许材料制造商使用下拉式 UI 创建新的材料和质量配置文件。"
  6239. #~ msgctxt "name"
  6240. #~ msgid "Print Profile Assistant"
  6241. #~ msgstr "打印配置文件助手"
  6242. #~ msgctxt "@info:status"
  6243. #~ msgid "Connected over the network."
  6244. #~ msgstr "已通过网络连接。"
  6245. #~ msgctxt "@info:status"
  6246. #~ msgid "Connected over the network. Please approve the access request on the printer."
  6247. #~ msgstr "已通过网络连接。请在打印机上接受访问请求。"
  6248. #~ msgctxt "@info:status"
  6249. #~ msgid "Connected over the network. No access to control the printer."
  6250. #~ msgstr "已通过网络连接,但没有打印机的控制权限。"
  6251. #~ msgctxt "@info:status"
  6252. #~ msgid "Access to the printer requested. Please approve the request on the printer"
  6253. #~ msgstr "已发送打印机访问请求,请在打印机上批准该请求"
  6254. #~ msgctxt "@info:title"
  6255. #~ msgid "Authentication status"
  6256. #~ msgstr "身份验证状态"
  6257. #~ msgctxt "@info:title"
  6258. #~ msgid "Authentication Status"
  6259. #~ msgstr "身份验证状态"
  6260. #~ msgctxt "@info:tooltip"
  6261. #~ msgid "Re-send the access request"
  6262. #~ msgstr "重新发送访问请求"
  6263. #~ msgctxt "@info:status"
  6264. #~ msgid "Access to the printer accepted"
  6265. #~ msgstr "打印机接受了访问请求"
  6266. #~ msgctxt "@info:status"
  6267. #~ msgid "No access to print with this printer. Unable to send print job."
  6268. #~ msgstr "无法使用本打印机进行打印,无法发送打印作业。"
  6269. #~ msgctxt "@action:button"
  6270. #~ msgid "Request Access"
  6271. #~ msgstr "请求访问"
  6272. #~ msgctxt "@info:tooltip"
  6273. #~ msgid "Send access request to the printer"
  6274. #~ msgstr "向打印机发送访问请求"
  6275. #~ msgctxt "@label"
  6276. #~ msgid "Unable to start a new print job."
  6277. #~ msgstr "无法启动新的打印作业。"
  6278. #~ msgctxt "@label"
  6279. #~ msgid "There is an issue with the configuration of your Ultimaker, which makes it impossible to start the print. Please resolve this issues before continuing."
  6280. #~ msgstr "Ultimaker 配置存在问题,导致无法开始打印。请解决此问题,然后再继续。"
  6281. #~ msgctxt "@window:title"
  6282. #~ msgid "Mismatched configuration"
  6283. #~ msgstr "配置不匹配"
  6284. #~ msgctxt "@label"
  6285. #~ msgid "Are you sure you wish to print with the selected configuration?"
  6286. #~ msgstr "您确定要使用所选配置进行打印吗?"
  6287. #~ msgctxt "@label"
  6288. #~ msgid "There is a mismatch between the configuration or calibration of the printer and Cura. For the best result, always slice for the PrintCores and materials that are inserted in your printer."
  6289. #~ msgstr "打印机的配置或校准与 Cura 之间不匹配。为了获得最佳打印效果,请务必切换打印头和打印机中插入的材料。"
  6290. #~ msgctxt "@info:status"
  6291. #~ msgid "Sending new jobs (temporarily) blocked, still sending the previous print job."
  6292. #~ msgstr "发送新作业(暂时)受阻,仍在发送前一份打印作业。"
  6293. #~ msgctxt "@info:status"
  6294. #~ msgid "Sending data to printer"
  6295. #~ msgstr "向打印机发送数据"
  6296. #~ msgctxt "@info:title"
  6297. #~ msgid "Sending Data"
  6298. #~ msgstr "正在发送数据"
  6299. #~ msgctxt "@info:status"
  6300. #~ msgid "No Printcore loaded in slot {slot_number}"
  6301. #~ msgstr "插槽 {slot_number} 中未加载 Printcore"
  6302. #~ msgctxt "@info:status"
  6303. #~ msgid "No material loaded in slot {slot_number}"
  6304. #~ msgstr "插槽 {slot_number} 中未加载材料"
  6305. #~ msgctxt "@label"
  6306. #~ msgid "Different PrintCore (Cura: {cura_printcore_name}, Printer: {remote_printcore_name}) selected for extruder {extruder_id}"
  6307. #~ msgstr "为挤出机 {extruder_id} 选择了不同的 PrintCore(Cura: {cura_printcore_name},打印机:{remote_printcore_name})"
  6308. #~ msgctxt "@label"
  6309. #~ msgid "Different material (Cura: {0}, Printer: {1}) selected for extruder {2}"
  6310. #~ msgstr "您为挤出机 {2} 选择了不同的材料(Cura:{0},打印机:{1})"
  6311. #~ msgctxt "@window:title"
  6312. #~ msgid "Sync with your printer"
  6313. #~ msgstr "与您的打印机同步"
  6314. #~ msgctxt "@label"
  6315. #~ msgid "Would you like to use your current printer configuration in Cura?"
  6316. #~ msgstr "您想在 Cura 中使用当前的打印机配置吗?"
  6317. #~ msgctxt "@label"
  6318. #~ msgid "The PrintCores and/or materials on your printer differ from those within your current project. For the best result, always slice for the PrintCores and materials that are inserted in your printer."
  6319. #~ msgstr "打印机上的打印头和/或材料与当前项目中的不同。 为获得最佳打印效果,请始终使用已插入打印机的打印头和材料进行切片。"
  6320. #~ msgctxt "@action:button"
  6321. #~ msgid "View in Monitor"
  6322. #~ msgstr "在监控器中查看"
  6323. #~ msgctxt "@info:status"
  6324. #~ msgid "Printer '{printer_name}' has finished printing '{job_name}'."
  6325. #~ msgstr "打印机 '{printer_name}' 完成了打印任务 '{job_name}'。"
  6326. #~ msgctxt "@info:status"
  6327. #~ msgid "The print job '{job_name}' was finished."
  6328. #~ msgstr "打印作业 '{job_name}' 已完成。"
  6329. #~ msgctxt "@info:status"
  6330. #~ msgid "Print finished"
  6331. #~ msgstr "打印完成"
  6332. #~ msgctxt "@label:material"
  6333. #~ msgid "Empty"
  6334. #~ msgstr "空"
  6335. #~ msgctxt "@label:material"
  6336. #~ msgid "Unknown"
  6337. #~ msgstr "未知"
  6338. #~ msgctxt "@info:title"
  6339. #~ msgid "Cloud error"
  6340. #~ msgstr "云错误"
  6341. #~ msgctxt "@info:status"
  6342. #~ msgid "Could not export print job."
  6343. #~ msgstr "无法导出打印作业。"
  6344. #~ msgctxt "@info:description"
  6345. #~ msgid "There was an error connecting to the cloud."
  6346. #~ msgstr "连接到云时出错。"
  6347. #~ msgctxt "@info:status"
  6348. #~ msgid "Uploading via Ultimaker Cloud"
  6349. #~ msgstr "通过 Ultimaker Cloud 上传"
  6350. #~ msgctxt "@info:status Ultimaker Cloud is a brand name and shouldn't be translated."
  6351. #~ msgid "Connect to Ultimaker Cloud"
  6352. #~ msgstr "连接到 Ultimaker Cloud"
  6353. #~ msgctxt "@action"
  6354. #~ msgid "Don't ask me again for this printer."
  6355. #~ msgstr "对此打印机不再询问。"
  6356. #~ msgctxt "@info:status"
  6357. #~ msgid "You can now send and monitor print jobs from anywhere using your Ultimaker account."
  6358. #~ msgstr "您现在可以使用您的 Ultimaker account 帐户从任何地方发送和监控打印作业。"
  6359. #~ msgctxt "@info:status"
  6360. #~ msgid "Connected!"
  6361. #~ msgstr "已连接!"
  6362. #~ msgctxt "@action"
  6363. #~ msgid "Review your connection"
  6364. #~ msgstr "查看您的连接"
  6365. #~ msgctxt "@info:status Don't translate the XML tags <filename>!"
  6366. #~ msgid "The machine defined in profile <filename>{0}</filename> ({1}) doesn't match with your current machine ({2}), could not import it."
  6367. #~ msgstr "配置文件 <filename>{0}</filename> ({1}) 中定义的机器与当前机器 ({2}) 不匹配,无法导入。"
  6368. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  6369. #~ msgid "Failed to import profile from <filename>{0}</filename>:"
  6370. #~ msgstr "无法从 <filename>{0}</filename> 导入配置文件:"
  6371. #~ msgctxt "@window:title"
  6372. #~ msgid "Existing Connection"
  6373. #~ msgstr "现有连接"
  6374. #~ msgctxt "@message:text"
  6375. #~ msgid "This printer/group is already added to Cura. Please select another printer/group."
  6376. #~ msgstr "此打印机/打印机组已添加到 Cura。请选择其他打印机/打印机组。"
  6377. #~ msgctxt "@label"
  6378. #~ msgid "Enter the IP address or hostname of your printer on the network."
  6379. #~ msgstr "输入打印机在网络上的 IP 地址或主机名。"
  6380. #~ msgctxt "@info:tooltip"
  6381. #~ msgid "Connect to a printer"
  6382. #~ msgstr "连接到打印机"
  6383. #~ msgctxt "@title"
  6384. #~ msgid "Cura Settings Guide"
  6385. #~ msgstr "Cura 设置向导"
  6386. #~ msgctxt "@info:tooltip"
  6387. #~ msgid "Zooming towards the mouse is not supported in the orthogonal perspective."
  6388. #~ msgstr "正交透视中不支持通过鼠标缩放。"
  6389. #~ msgid "Orthogonal"
  6390. #~ msgstr "正交"
  6391. #~ msgctxt "description"
  6392. #~ msgid "Manages network connections to Ultimaker 3 printers."
  6393. #~ msgstr "管理与最后的3个打印机的网络连接。"
  6394. #~ msgctxt "name"
  6395. #~ msgid "UM3 Network Connection"
  6396. #~ msgstr "UM3 网络连接"
  6397. #~ msgctxt "description"
  6398. #~ msgid "Provides extra information and explanations about settings in Cura, with images and animations."
  6399. #~ msgstr "提供关于 Cura 设置的额外信息和说明,并附上图片及动画。"
  6400. #~ msgctxt "name"
  6401. #~ msgid "Settings Guide"
  6402. #~ msgstr "设置向导"
  6403. #~ msgctxt "@item:inmenu"
  6404. #~ msgid "Cura Settings Guide"
  6405. #~ msgstr "Cura 设置向导"
  6406. #~ msgctxt "@info:generic"
  6407. #~ msgid "Settings have been changed to match the current availability of extruders: [%s]"
  6408. #~ msgstr "已根据挤出机的当前可用性更改设置:[%s]"
  6409. #~ msgctxt "@title:groupbox"
  6410. #~ msgid "User description"
  6411. #~ msgstr "用户说明"
  6412. #~ msgctxt "@info"
  6413. #~ msgid "These options are not available because you are monitoring a cloud printer."
  6414. #~ msgstr "这些选项不可用,因为您正在监控云打印机。"
  6415. #~ msgctxt "@label link to connect manager"
  6416. #~ msgid "Go to Cura Connect"
  6417. #~ msgstr "转到 Cura Connect"
  6418. #~ msgctxt "@info"
  6419. #~ msgid "All jobs are printed."
  6420. #~ msgstr "已完成所有打印工作。"
  6421. #~ msgctxt "@label link to connect manager"
  6422. #~ msgid "View print history"
  6423. #~ msgstr "查看打印历史"
  6424. #~ msgctxt "@label"
  6425. #~ msgid ""
  6426. #~ "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer.\n"
  6427. #~ "\n"
  6428. #~ "Select your printer from the list below:"
  6429. #~ msgstr ""
  6430. #~ "要通过网络向打印机发送打印请求,请确保您的打印机已通过网线或 WIFI 连接到网络。若您不能连接 Cura 与打印机,您仍然可以使用 USB 设备将 G-code 文件传输到打印机。\n"
  6431. #~ "\n"
  6432. #~ "从以下列表中选择您的打印机:"
  6433. #~ msgctxt "@info"
  6434. #~ msgid ""
  6435. #~ "Please make sure your printer has a connection:\n"
  6436. #~ "- Check if the printer is turned on.\n"
  6437. #~ "- Check if the printer is connected to the network."
  6438. #~ msgstr ""
  6439. #~ "请确保您的打印机已连接:\n"
  6440. #~ "- 检查打印机是否已启动。\n"
  6441. #~ "- 检查打印机是否连接到网络。"
  6442. #~ msgctxt "@option:check"
  6443. #~ msgid "See only current build plate"
  6444. #~ msgstr "只能看到当前的打印平台"
  6445. #~ msgctxt "@action:button"
  6446. #~ msgid "Arrange to all build plates"
  6447. #~ msgstr "编位到所有打印平台"
  6448. #~ msgctxt "@action:button"
  6449. #~ msgid "Arrange current build plate"
  6450. #~ msgstr "编位当前打印平台"
  6451. #~ msgctxt "description"
  6452. #~ msgid "Allows saving the resulting slice as an X3G file, to support printers that read this format (Malyan, Makerbot and other Sailfish-based printers)."
  6453. #~ msgstr "允许将产生的切片保存为X3G文件,以支持读取此格式的打印机(Malyan、Makerbot和其他基于sailfish打印机的打印机)。"
  6454. #~ msgctxt "name"
  6455. #~ msgid "X3GWriter"
  6456. #~ msgstr "X3G写"
  6457. #~ msgctxt "description"
  6458. #~ msgid "Reads SVG files as toolpaths, for debugging printer movements."
  6459. #~ msgstr "读取 SVG 文件的刀具路径,调试打印机活动。"
  6460. #~ msgctxt "name"
  6461. #~ msgid "SVG Toolpath Reader"
  6462. #~ msgstr "SVG 刀具路径读取器"
  6463. #~ msgctxt "@item:inmenu"
  6464. #~ msgid "Changelog"
  6465. #~ msgstr "更新日志"
  6466. #~ msgctxt "@item:inmenu"
  6467. #~ msgid "Show Changelog"
  6468. #~ msgstr "显示更新日志"
  6469. #~ msgctxt "@info:status"
  6470. #~ msgid "Sending data to remote cluster"
  6471. #~ msgstr "发送数据至远程群集"
  6472. #~ msgctxt "@info:status"
  6473. #~ msgid "Connect to Ultimaker Cloud"
  6474. #~ msgstr "连接到 Ultimaker Cloud"
  6475. #~ msgctxt "@info"
  6476. #~ msgid "Cura collects anonymized usage statistics."
  6477. #~ msgstr "Cura 将收集匿名的使用统计数据。"
  6478. #~ msgctxt "@info:title"
  6479. #~ msgid "Collecting Data"
  6480. #~ msgstr "正在收集数据"
  6481. #~ msgctxt "@action:button"
  6482. #~ msgid "More info"
  6483. #~ msgstr "详细信息"
  6484. #~ msgctxt "@action:tooltip"
  6485. #~ msgid "See more information on what data Cura sends."
  6486. #~ msgstr "请参阅更多关于Cura发送的数据的信息。"
  6487. #~ msgctxt "@action:button"
  6488. #~ msgid "Allow"
  6489. #~ msgstr "允许"
  6490. #~ msgctxt "@action:tooltip"
  6491. #~ msgid "Allow Cura to send anonymized usage statistics to help prioritize future improvements to Cura. Some of your preferences and settings are sent, the Cura version and a hash of the models you're slicing."
  6492. #~ msgstr "允许 Cura 发送匿名的使用统计数据,以帮助确定将来 Cura 的改进优先顺序。已发送您的一些偏好和设置,Cura 版本和您正在切片的模型的散列值。"
  6493. #~ msgctxt "@item:inmenu"
  6494. #~ msgid "Evaluation"
  6495. #~ msgstr "评估"
  6496. #~ msgctxt "@info:title"
  6497. #~ msgid "Network enabled printers"
  6498. #~ msgstr "网络打印机"
  6499. #~ msgctxt "@info:title"
  6500. #~ msgid "Local printers"
  6501. #~ msgstr "本地打印机"
  6502. #~ msgctxt "@info:backup_failed"
  6503. #~ msgid "Tried to restore a Cura backup that does not match your current version."
  6504. #~ msgstr "试图恢复与您当前版本不匹配的Cura备份。"
  6505. #~ msgctxt "@title"
  6506. #~ msgid "Machine Settings"
  6507. #~ msgstr "打印机设置"
  6508. #~ msgctxt "@label"
  6509. #~ msgid "Printer Settings"
  6510. #~ msgstr "打印机设置"
  6511. #~ msgctxt "@option:check"
  6512. #~ msgid "Origin at center"
  6513. #~ msgstr "置中"
  6514. #~ msgctxt "@option:check"
  6515. #~ msgid "Heated bed"
  6516. #~ msgstr "加热床"
  6517. #~ msgctxt "@label"
  6518. #~ msgid "Printhead Settings"
  6519. #~ msgstr "打印头设置"
  6520. #~ msgctxt "@tooltip"
  6521. #~ msgid "Distance from the left of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"."
  6522. #~ msgstr "打印头左侧至喷嘴中心的距离。 用于防止“排队”打印时之前的打印品与打印头发生碰撞。"
  6523. #~ msgctxt "@tooltip"
  6524. #~ msgid "Distance from the front of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"."
  6525. #~ msgstr "打印头前端至喷嘴中心的距离。 用于防止“排队”打印时之前的打印品与打印头发生碰撞。"
  6526. #~ msgctxt "@tooltip"
  6527. #~ msgid "Distance from the right of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"."
  6528. #~ msgstr "打印头右侧至喷嘴中心的距离。 用于防止“排队”打印时之前的打印品与打印头发生碰撞。"
  6529. #~ msgctxt "@tooltip"
  6530. #~ msgid "Distance from the rear of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"."
  6531. #~ msgstr "打印头后部至喷嘴中心的距离。 用于防止“排队”打印时之前的打印品与打印头发生碰撞。"
  6532. #~ msgctxt "@label"
  6533. #~ msgid "Gantry height"
  6534. #~ msgstr "十字轴高度"
  6535. #~ msgctxt "@tooltip"
  6536. #~ msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes). Used to prevent collisions between previous prints and the gantry when printing \"One at a Time\"."
  6537. #~ msgstr "喷嘴尖端与十字轴系统(X 轴和 Y 轴)之间的高度差。 用于防止“排队”打印时之前的打印品与十字轴发生碰撞。"
  6538. #~ msgctxt "@label"
  6539. #~ msgid "Start G-code"
  6540. #~ msgstr "开始 G-code"
  6541. #~ msgctxt "@tooltip"
  6542. #~ msgid "G-code commands to be executed at the very start."
  6543. #~ msgstr "将在开始时执行的 G-code 命令。"
  6544. #~ msgctxt "@label"
  6545. #~ msgid "End G-code"
  6546. #~ msgstr "结束 G-code"
  6547. #~ msgctxt "@tooltip"
  6548. #~ msgid "G-code commands to be executed at the very end."
  6549. #~ msgstr "将在结束时执行的 G-code 命令。"
  6550. #~ msgctxt "@label"
  6551. #~ msgid "Nozzle Settings"
  6552. #~ msgstr "喷嘴设置"
  6553. #~ msgctxt "@tooltip"
  6554. #~ msgid "The nominal diameter of filament supported by the printer. The exact diameter will be overridden by the material and/or the profile."
  6555. #~ msgstr "打印机所支持耗材的公称直径。 材料和/或配置文件将覆盖精确直径。"
  6556. #~ msgctxt "@label"
  6557. #~ msgid "Extruder Start G-code"
  6558. #~ msgstr "挤出机的开始 G-code"
  6559. #~ msgctxt "@label"
  6560. #~ msgid "Extruder End G-code"
  6561. #~ msgstr "挤出机的结束 G-code"
  6562. #~ msgctxt "@label"
  6563. #~ msgid "Changelog"
  6564. #~ msgstr "更新日志"
  6565. #~ msgctxt "@title:window"
  6566. #~ msgid "User Agreement"
  6567. #~ msgstr "用户协议"
  6568. #~ msgctxt "@alabel"
  6569. #~ msgid "Enter the IP address or hostname of your printer on the network."
  6570. #~ msgstr "输入打印机在网络上的 IP 地址或主机名。"
  6571. #~ msgctxt "@info"
  6572. #~ msgid "Please select a network connected printer to monitor."
  6573. #~ msgstr "请选择已连接网络的打印机进行监控。"
  6574. #~ msgctxt "@info"
  6575. #~ msgid "Please connect your Ultimaker printer to your local network."
  6576. #~ msgstr "请将 Ultimaker 打印机连接到您的局域网。"
  6577. #~ msgctxt "@text:window"
  6578. #~ msgid "Cura sends anonymous data to Ultimaker in order to improve the print quality and user experience. Below is an example of all the data that is sent."
  6579. #~ msgstr "Cura向最终用户发送匿名数据,以提高打印质量和用户体验。下面是发送的所有数据的一个示例。"
  6580. #~ msgctxt "@text:window"
  6581. #~ msgid "I don't want to send this data"
  6582. #~ msgstr "我不想发送此数据"
  6583. #~ msgctxt "@text:window"
  6584. #~ msgid "Allow sending this data to Ultimaker and help us improve Cura"
  6585. #~ msgstr "允许向 Ultimaker 发送此数据并帮助我们改善 Cura"
  6586. #~ msgctxt "@label"
  6587. #~ msgid "No print selected"
  6588. #~ msgstr "未选择打印"
  6589. #~ msgctxt "@info:tooltip"
  6590. #~ msgid "By default, white pixels represent high points on the mesh and black pixels represent low points on the mesh. Change this option to reverse the behavior such that black pixels represent high points on the mesh and white pixels represent low points on the mesh."
  6591. #~ msgstr "默认情况下,白色像素表示网格上的高点,黑色像素表示网格上的低点。若更改此选项将反其道而行之,相当于图像编辑软件中的「反相」操作。"
  6592. #~ msgctxt "@title"
  6593. #~ msgid "Select Printer Upgrades"
  6594. #~ msgstr "选择打印机升级"
  6595. #~ msgctxt "@label"
  6596. #~ msgid "Select which extruder to use for support. This will build up supporting structures below the model to prevent the model from sagging or printing in mid air."
  6597. #~ msgstr "选择用于支撑的挤出机。该挤出机将在模型之下建立支撑结构,以防止模型下垂或在空中打印。"
  6598. #~ msgctxt "@tooltip"
  6599. #~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile"
  6600. #~ msgstr "此质量配置文件不适用于当前材料和喷嘴配置。请更改配置以便启用此配置文件"
  6601. #~ msgctxt "@label shown when we load a Gcode file"
  6602. #~ msgid "Print setup disabled. G code file can not be modified."
  6603. #~ msgstr "打印设置已禁用。无法修改 G code 文件。"
  6604. #~ msgctxt "@label"
  6605. #~ msgid "See the material compatibility chart"
  6606. #~ msgstr "查看材料兼容性图表"
  6607. #~ msgctxt "@label"
  6608. #~ msgid "View types"
  6609. #~ msgstr "查看类型"
  6610. #~ msgctxt "@label"
  6611. #~ msgid "Hi "
  6612. #~ msgstr "您好 "
  6613. #~ msgctxt "@text"
  6614. #~ msgid ""
  6615. #~ "- Send print jobs to Ultimaker printers outside your local network\n"
  6616. #~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n"
  6617. #~ "- Get exclusive access to material profiles from leading brands"
  6618. #~ msgstr ""
  6619. #~ "- 发送打印作业到局域网外的 Ultimaker 打印机\n"
  6620. #~ "- 将 Ultimaker Cura 设置存储到云以便在任何地方使用\n"
  6621. #~ "- 获得来自领先品牌的材料配置文件的独家访问权限"
  6622. #~ msgctxt "@label:PrintjobStatus"
  6623. #~ msgid "Unable to Slice"
  6624. #~ msgstr "无法切片"
  6625. #~ msgctxt "@label"
  6626. #~ msgid "Time specification"
  6627. #~ msgstr "时间规格"
  6628. #~ msgctxt "@label"
  6629. #~ msgid "Material specification"
  6630. #~ msgstr "材料规格"
  6631. #~ msgctxt "@title:tab"
  6632. #~ msgid "Add a printer to Cura"
  6633. #~ msgstr "添加打印机到 Cura"
  6634. #~ msgctxt "@title:tab"
  6635. #~ msgid ""
  6636. #~ "Select the printer you want to use from the list below.\n"
  6637. #~ "\n"
  6638. #~ "If your printer is not in the list, use the \"Custom FFF Printer\" from the \"Custom\" category and adjust the settings to match your printer in the next dialog."
  6639. #~ msgstr ""
  6640. #~ "从以下列表中选择您要使用的打印机。\n"
  6641. #~ "\n"
  6642. #~ "如果您的打印机不在列表中,使用“自定义”类别中的“自定义 FFF 打印机”,并在下一个对话框中调整设置以匹配您的打印机。"
  6643. #~ msgctxt "@label"
  6644. #~ msgid "Printer Name"
  6645. #~ msgstr "打印机名称"
  6646. #~ msgctxt "@action:button"
  6647. #~ msgid "Add Printer"
  6648. #~ msgstr "新增打印机"
  6649. #~ msgid "Modify G-Code"
  6650. #~ msgstr "修改 G-Code 文件"
  6651. #~ msgctxt "@info:status"
  6652. #~ msgid "Nothing to slice because none of the models fit the build volume. Please scale or rotate models to fit."
  6653. #~ msgstr "无法执行,因为没有一个模型符合成形空间体积。请缩放或旋转模型以适应打印平台。"
  6654. #~ msgctxt "@info:status"
  6655. #~ msgid "The selected material is incompatible with the selected machine or configuration."
  6656. #~ msgstr "所选材料与所选机器或配置不兼容。"
  6657. #~ msgctxt "@info:title"
  6658. #~ msgid "Incompatible Material"
  6659. #~ msgstr "不兼容材料"
  6660. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  6661. #~ msgid "Failed to import profile from <filename>{0}</filename>: <message>{1}</message>"
  6662. #~ msgstr "无法从 <filename> {0} </filename> 导入配置文件: <message>{1}</message>"
  6663. #~ msgctxt "@title"
  6664. #~ msgid "Toolbox"
  6665. #~ msgstr "工具箱"
  6666. #~ msgctxt "@label"
  6667. #~ msgid "Not available"
  6668. #~ msgstr "不可用"
  6669. #~ msgctxt "@label"
  6670. #~ msgid "Unreachable"
  6671. #~ msgstr "无法连接"
  6672. #~ msgctxt "@label"
  6673. #~ msgid "Available"
  6674. #~ msgstr "可用"
  6675. #~ msgctxt "@label:status"
  6676. #~ msgid "Preparing"
  6677. #~ msgstr "准备"
  6678. #~ msgctxt "@label:status"
  6679. #~ msgid "Pausing"
  6680. #~ msgstr "暂停"
  6681. #~ msgctxt "@label:status"
  6682. #~ msgid "Resuming"
  6683. #~ msgstr "恢复"
  6684. #~ msgctxt "@label"
  6685. #~ msgid "Waiting for: Unavailable printer"
  6686. #~ msgstr "等待:不可用的打印机"
  6687. #~ msgctxt "@label"
  6688. #~ msgid "Waiting for: First available"
  6689. #~ msgstr "等待:第一个可用的"
  6690. #~ msgctxt "@label"
  6691. #~ msgid "Waiting for: "
  6692. #~ msgstr "等待: "
  6693. #~ msgctxt "@label"
  6694. #~ msgid "Configuration change"
  6695. #~ msgstr "配置更改"
  6696. #~ msgctxt "@label"
  6697. #~ msgid "The assigned printer, %1, requires the following configuration change(s):"
  6698. #~ msgstr "分配的打印机 %1 需要以下配置更改:"
  6699. #~ msgctxt "@label"
  6700. #~ msgid "Override"
  6701. #~ msgstr "覆盖"
  6702. #~ msgctxt "@label"
  6703. #~ msgid "Starting a print job with an incompatible configuration could damage your 3D printer. Are you sure you want to override the configuration and print %1?"
  6704. #~ msgstr "使用不兼容的配置启动打印作业可能会损坏 3D 打印机。您确定要覆盖配置并打印 %1 吗?"
  6705. #~ msgctxt "@window:title"
  6706. #~ msgid "Override configuration configuration and start print"
  6707. #~ msgstr "覆盖配置并开始打印"
  6708. #~ msgctxt "@label link to connect manager"
  6709. #~ msgid "Manage queue"
  6710. #~ msgstr "管理队列"
  6711. #~ msgctxt "@label"
  6712. #~ msgid "Printing"
  6713. #~ msgstr "打印"
  6714. #~ msgctxt "@label link to connect manager"
  6715. #~ msgid "Manage printers"
  6716. #~ msgstr "管理打印机"
  6717. #~ msgctxt "@action:button"
  6718. #~ msgid "Activate Configuration"
  6719. #~ msgstr "应用配置"
  6720. #~ msgctxt "@info:tooltip"
  6721. #~ msgid "Load the configuration of the printer into Cura"
  6722. #~ msgstr "将打印机配置导入 Cura"
  6723. #~ msgctxt "@label"
  6724. #~ msgid "Show Travels"
  6725. #~ msgstr "显示移动轨迹"
  6726. #~ msgctxt "@label"
  6727. #~ msgid "Show Helpers"
  6728. #~ msgstr "显示打印辅助结构"
  6729. #~ msgctxt "@label"
  6730. #~ msgid "Show Shell"
  6731. #~ msgstr "显示外壳"
  6732. #~ msgctxt "@label"
  6733. #~ msgid "Show Infill"
  6734. #~ msgstr "显示填充"
  6735. #~ msgctxt "@text:window"
  6736. #~ msgid "I don't want to send these data"
  6737. #~ msgstr "我不想发送这些数据"
  6738. #~ msgctxt "@text:window"
  6739. #~ msgid "Allow sending these data to Ultimaker and help us improve Cura"
  6740. #~ msgstr "允许将这些数据发送到最后一个,帮助我们改进Cura"
  6741. #~ msgctxt "@label"
  6742. #~ msgid "Printer type:"
  6743. #~ msgstr "打印机类型:"
  6744. #~ msgctxt "@label"
  6745. #~ msgid "Connection:"
  6746. #~ msgstr "连接:"
  6747. #~ msgctxt "@label"
  6748. #~ msgid "State:"
  6749. #~ msgstr "状态:"
  6750. #~ msgctxt "@label:MonitorStatus"
  6751. #~ msgid "Waiting for a printjob"
  6752. #~ msgstr "等待打印作业"
  6753. #~ msgctxt "@label:MonitorStatus"
  6754. #~ msgid "Waiting for someone to clear the build plate"
  6755. #~ msgstr "等待清理打印平台"
  6756. #~ msgctxt "@label:MonitorStatus"
  6757. #~ msgid "Aborting print..."
  6758. #~ msgstr "中止打印..."
  6759. #~ msgctxt "@label"
  6760. #~ msgid "Protected profiles"
  6761. #~ msgstr "受保护的配置文件"
  6762. #~ msgctxt "@label"
  6763. #~ msgid "Printer Name:"
  6764. #~ msgstr "打印机名称:"
  6765. #~ msgctxt "@label"
  6766. #~ msgid "Profile:"
  6767. #~ msgstr "配置文件:"
  6768. #~ msgctxt "@label:textbox"
  6769. #~ msgid "Search..."
  6770. #~ msgstr "搜索..."
  6771. #~ msgctxt "@action:inmenu"
  6772. #~ msgid "Collapse All"
  6773. #~ msgstr "全部折叠"
  6774. #~ msgctxt "@action:inmenu"
  6775. #~ msgid "Expand All"
  6776. #~ msgstr "全部展开"
  6777. #~ msgctxt "@label:header configurations"
  6778. #~ msgid "Available configurations"
  6779. #~ msgstr "可用配置"
  6780. #~ msgctxt "@label:extruder label"
  6781. #~ msgid "Extruder"
  6782. #~ msgstr "挤出机"
  6783. #~ msgctxt "@label:extruder label"
  6784. #~ msgid "Yes"
  6785. #~ msgstr "是"
  6786. #~ msgctxt "@label:extruder label"
  6787. #~ msgid "No"
  6788. #~ msgstr "不是"
  6789. #~ msgctxt "@label:listbox"
  6790. #~ msgid "Print Setup"
  6791. #~ msgstr "打印设置"
  6792. #~ msgctxt "@label:listbox"
  6793. #~ msgid ""
  6794. #~ "Print Setup disabled\n"
  6795. #~ "G-code files cannot be modified"
  6796. #~ msgstr ""
  6797. #~ "打印设置已禁用\n"
  6798. #~ "G-code 文件无法被修改"
  6799. #~ msgctxt "@label Hours and minutes"
  6800. #~ msgid "00h 00min"
  6801. #~ msgstr "00 小时 00 分"
  6802. #~ msgctxt "@tooltip"
  6803. #~ msgid "Time specification"
  6804. #~ msgstr "时间规格"
  6805. #~ msgctxt "@label"
  6806. #~ msgid "Cost specification"
  6807. #~ msgstr "成本规定"
  6808. #~ msgctxt "@label"
  6809. #~ msgid "Total:"
  6810. #~ msgstr "总计:"
  6811. #~ msgctxt "@tooltip"
  6812. #~ msgid "<b>Recommended Print Setup</b><br/><br/>Print with the recommended settings for the selected printer, material and quality."
  6813. #~ msgstr "<b>推荐的打印设置</b> <br/> <br/>使用针对所选打印机、材料和质量的推荐设置进行打印。"
  6814. #~ msgctxt "@tooltip"
  6815. #~ msgid "<b>Custom Print Setup</b><br/><br/>Print with finegrained control over every last bit of the slicing process."
  6816. #~ msgstr "<b>自定义打印设置</b><br/><br/>对切片过程中的每一个细节进行精细控制。"
  6817. #~ msgctxt "@action:inmenu menubar:help"
  6818. #~ msgid "Show Engine &Log..."
  6819. #~ msgstr "显示引擎日志(&L)..."
  6820. #~ msgctxt "@action:menu"
  6821. #~ msgid "Browse packages..."
  6822. #~ msgstr "浏览包……"
  6823. #~ msgctxt "@action:inmenu menubar:view"
  6824. #~ msgid "Expand/Collapse Sidebar"
  6825. #~ msgstr "展开/折叠侧边栏"
  6826. #~ msgctxt "@label:PrintjobStatus"
  6827. #~ msgid "Please load a 3D model"
  6828. #~ msgstr "请载入一个 3D 模型"
  6829. #~ msgctxt "@label:PrintjobStatus"
  6830. #~ msgid "Ready to slice"
  6831. #~ msgstr "切片已准备就绪"
  6832. #~ msgctxt "@label:PrintjobStatus %1 is target operation"
  6833. #~ msgid "Ready to %1"
  6834. #~ msgstr "%1 已准备就绪"
  6835. #~ msgctxt "@label:PrintjobStatus"
  6836. #~ msgid "Slicing unavailable"
  6837. #~ msgstr "切片不可用"
  6838. #~ msgctxt "@info:tooltip"
  6839. #~ msgid "Slice current printjob"
  6840. #~ msgstr "分割当前打印作业"
  6841. #~ msgctxt "@info:tooltip"
  6842. #~ msgid "Cancel slicing process"
  6843. #~ msgstr "取消切片流程"
  6844. #~ msgctxt "@label:Printjob"
  6845. #~ msgid "Prepare"
  6846. #~ msgstr "准备"
  6847. #~ msgctxt "@label:Printjob"
  6848. #~ msgid "Cancel"
  6849. #~ msgstr "取消"
  6850. #~ msgctxt "@info:tooltip"
  6851. #~ msgid "Select the active output device"
  6852. #~ msgstr "选择活动的输出装置"
  6853. #~ msgctxt "@title:menu"
  6854. #~ msgid "&View"
  6855. #~ msgstr "视图(&V)"
  6856. #~ msgctxt "@title:menu"
  6857. #~ msgid "&Settings"
  6858. #~ msgstr "设置(&S)"
  6859. #~ msgctxt "@title:menu menubar:toplevel"
  6860. #~ msgid "&Toolbox"
  6861. #~ msgstr "&工具箱"
  6862. #~ msgctxt "@action:button"
  6863. #~ msgid "Open File"
  6864. #~ msgstr "打开文件"
  6865. #~ msgctxt "@tooltip"
  6866. #~ msgid "This quality profile is not available for you current material and nozzle configuration. Please change these to enable this quality profile"
  6867. #~ msgstr "此质量配置文件不适用于当前材料和喷嘴配置。请更改配置以便启用此配置文件"
  6868. #~ msgctxt "@label"
  6869. #~ msgid "Print Speed"
  6870. #~ msgstr "打印速度"
  6871. #~ msgctxt "@label"
  6872. #~ msgid "Slower"
  6873. #~ msgstr "更慢"
  6874. #~ msgctxt "@label"
  6875. #~ msgid "Faster"
  6876. #~ msgstr "更快"
  6877. #~ msgctxt "@label"
  6878. #~ msgid "Enable gradual"
  6879. #~ msgstr "启用渐层"
  6880. #~ msgctxt "@label"
  6881. #~ msgid "Generate Support"
  6882. #~ msgstr "生成支撑"
  6883. #~ msgctxt "@label"
  6884. #~ msgid "Build Plate Adhesion"
  6885. #~ msgstr "打印平台附着"
  6886. #~ msgctxt "@label"
  6887. #~ msgid "Need help improving your prints?<br>Read the <a href='%1'>Ultimaker Troubleshooting Guides</a>"
  6888. #~ msgstr "需要帮助改善您的打印?<br>阅读 <a href=‘%1’>Ultimaker 故障排除指南</a>"
  6889. #~ msgctxt "@title:window"
  6890. #~ msgid "Engine Log"
  6891. #~ msgstr "引擎日志"
  6892. #~ msgctxt "@label"
  6893. #~ msgid "Printer type"
  6894. #~ msgstr "打印机类型"
  6895. #~ msgctxt "@label"
  6896. #~ msgid "Use glue with this material combination"
  6897. #~ msgstr "用胶粘和此材料组合"
  6898. #~ msgctxt "@label"
  6899. #~ msgid "Check compatibility"
  6900. #~ msgstr "检查兼容性"
  6901. #~ msgctxt "@tooltip"
  6902. #~ msgid "Click to check the material compatibility on Ultimaker.com."
  6903. #~ msgstr "点击查看 Ultimaker.com 上的材料兼容情况。"
  6904. #~ msgctxt "description"
  6905. #~ msgid "Shows changes since latest checked version."
  6906. #~ msgstr "显示最新版本改动。"
  6907. #~ msgctxt "name"
  6908. #~ msgid "Changelog"
  6909. #~ msgstr "更新日志"
  6910. #~ msgctxt "description"
  6911. #~ msgid "Create a flattend quality changes profile."
  6912. #~ msgstr "创建一份合并质量变化配置文件。"
  6913. #~ msgctxt "name"
  6914. #~ msgid "Profile flatener"
  6915. #~ msgstr "配置文件合并器"
  6916. #~ msgctxt "description"
  6917. #~ msgid "Ask the user once if he/she agrees with our license."
  6918. #~ msgstr "询问用户是否同意我们的许可证。"
  6919. #~ msgctxt "name"
  6920. #~ msgid "UserAgreement"
  6921. #~ msgstr "用户协议"
  6922. #~ msgctxt "@warning:status"
  6923. #~ msgid "Please generate G-code before saving."
  6924. #~ msgstr "保存之前,请生成 G-code。"
  6925. #~ msgctxt "@action"
  6926. #~ msgid "Upgrade Firmware"
  6927. #~ msgstr "升级固件"
  6928. #~ msgctxt "@label unknown material"
  6929. #~ msgid "Unknown"
  6930. #~ msgstr "未知"
  6931. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  6932. #~ msgid "No custom profile to import in file <filename>{0}</filename>"
  6933. #~ msgstr "没有可供导入文件 <filename>{0}</filename> 的自定义配置文件"
  6934. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  6935. #~ msgid "This profile <filename>{0}</filename> contains incorrect data, could not import it."
  6936. #~ msgstr "此配置文件<filename> {0} </filename>包含错误数据,无法导入。"
  6937. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  6938. #~ msgid "The machine defined in profile <filename>{0}</filename> ({1}) doesn't match with your current machine ({2}), could not import it."
  6939. #~ msgstr "配置文件 <filename>{0}</filename> ({1}) 中定义的机器与当前机器 ({2}) 不匹配,无法导入。"
  6940. #~ msgctxt "@title:window"
  6941. #~ msgid "Confirm uninstall "
  6942. #~ msgstr "确认卸载 "
  6943. #~ msgctxt "@label Print estimates: m for meters, g for grams, %4 is currency and %3 is print cost"
  6944. #~ msgid "%1m / ~ %2g / ~ %4 %3"
  6945. #~ msgstr "%1m / ~ %2g / ~ %4 %3"
  6946. #~ msgctxt "@label Print estimates: m for meters, g for grams"
  6947. #~ msgid "%1m / ~ %2g"
  6948. #~ msgstr "%1m / ~ %2g"
  6949. #~ msgctxt "@title"
  6950. #~ msgid "Upgrade Firmware"
  6951. #~ msgstr "升级固件"
  6952. #~ msgctxt "@action:button"
  6953. #~ msgid "Print with Doodle3D WiFi-Box"
  6954. #~ msgstr "使用 Doodle3D WiFi-Box 打印"
  6955. #~ msgctxt "@properties:tooltip"
  6956. #~ msgid "Print with Doodle3D WiFi-Box"
  6957. #~ msgstr "使用 Doodle3D WiFi-Box 打印"
  6958. #~ msgctxt "@info:status"
  6959. #~ msgid "Connecting to Doodle3D Connect"
  6960. #~ msgstr "连接至 Doodle3D Connect"
  6961. #~ msgctxt "@info:status"
  6962. #~ msgid "Sending data to Doodle3D Connect"
  6963. #~ msgstr "发送数据至 Doodle3D Connect"
  6964. #~ msgctxt "@info:status"
  6965. #~ msgid "Unable to send data to Doodle3D Connect. Is another job still active?"
  6966. #~ msgstr "无法发送数据至 Doodle3D Connect。 是否有另一项作业仍在进行?"
  6967. #~ msgctxt "@info:status"
  6968. #~ msgid "Storing data on Doodle3D Connect"
  6969. #~ msgstr "在 Doodle3D Connect 中存储数据"
  6970. #~ msgctxt "@info:status"
  6971. #~ msgid "File sent to Doodle3D Connect"
  6972. #~ msgstr "已发送至 Doodle3D Connect 的文件"
  6973. #~ msgctxt "@action:button"
  6974. #~ msgid "Open Connect..."
  6975. #~ msgstr "打开 链接..."
  6976. #~ msgctxt "@info:tooltip"
  6977. #~ msgid "Open the Doodle3D Connect web interface"
  6978. #~ msgstr "打开 Doodle3D Connect Web 界面"
  6979. #~ msgctxt "@item:inlistbox"
  6980. #~ msgid "Blender file"
  6981. #~ msgstr "Blender 文件"
  6982. #~ msgctxt "@info:status"
  6983. #~ msgid ""
  6984. #~ "Could not export using \"{}\" quality!\n"
  6985. #~ "Felt back to \"{}\"."
  6986. #~ msgstr ""
  6987. #~ "无法使用 \"{}\" 导出质量!\n"
  6988. #~ "返回 \"{}\"。"
  6989. #~ msgctxt "@label"
  6990. #~ msgid "Contact"
  6991. #~ msgstr "联系方式"
  6992. #~ msgctxt "@label"
  6993. #~ msgid "This printer is not set up to host a group of Ultimaker 3 printers."
  6994. #~ msgstr "这台打印机未设置为运行一组连接的 Ultimaker 3 打印机。"
  6995. #~ msgctxt "@label"
  6996. #~ msgid "This printer is the host for a group of %1 Ultimaker 3 printers."
  6997. #~ msgstr "这台打印机是一组共 %1 台已连接 Ultimaker 3 打印机的主机。"
  6998. #~ msgctxt "@label: arg 1 is group name"
  6999. #~ msgid "%1 is not set up to host a group of connected Ultimaker 3 printers"
  7000. #~ msgstr "%1 未设置为运行一组连接的 Ultimaker 3 打印机"
  7001. #~ msgctxt "@label link to connect manager"
  7002. #~ msgid "Add/Remove printers"
  7003. #~ msgstr "添加/删除打印机"
  7004. #~ msgctxt "@info:tooltip"
  7005. #~ msgid "Opens the print jobs page with your default web browser."
  7006. #~ msgstr "使用默认 Web 浏览器打开打印作业页面。"
  7007. #~ msgctxt "@action:button"
  7008. #~ msgid "View print jobs"
  7009. #~ msgstr "查看打印作业"
  7010. #~ msgctxt "@label:status"
  7011. #~ msgid "Preparing to print"
  7012. #~ msgstr "正在准备打印"
  7013. #~ msgctxt "@label:status"
  7014. #~ msgid "Available"
  7015. #~ msgstr "可用"
  7016. #~ msgctxt "@label:status"
  7017. #~ msgid "Lost connection with the printer"
  7018. #~ msgstr "与打印机的连接中断"
  7019. #~ msgctxt "@label:status"
  7020. #~ msgid "Unknown"
  7021. #~ msgstr "未知"
  7022. #~ msgctxt "@label:status"
  7023. #~ msgid "Disabled"
  7024. #~ msgstr "已禁用"
  7025. #~ msgctxt "@label:status"
  7026. #~ msgid "Reserved"
  7027. #~ msgstr "保留"
  7028. #~ msgctxt "@label"
  7029. #~ msgid "Preparing to print"
  7030. #~ msgstr "正在准备打印"
  7031. #~ msgctxt "@label:status"
  7032. #~ msgid "Print aborted"
  7033. #~ msgstr "打印已中止"
  7034. #~ msgctxt "@label"
  7035. #~ msgid "Not accepting print jobs"
  7036. #~ msgstr "不接受打印作业"
  7037. #~ msgctxt "@label"
  7038. #~ msgid "Finishes at: "
  7039. #~ msgstr "完成时间:"
  7040. #~ msgctxt "@label"
  7041. #~ msgid "Clear build plate"
  7042. #~ msgstr "清空打印平台"
  7043. #~ msgctxt "@label"
  7044. #~ msgid "Waiting for configuration change"
  7045. #~ msgstr "正在等待配置更改"
  7046. #~ msgctxt "@title"
  7047. #~ msgid "Print jobs"
  7048. #~ msgstr "打印作业"
  7049. #~ msgctxt "@label:title"
  7050. #~ msgid "Printers"
  7051. #~ msgstr "打印机"
  7052. #~ msgctxt "@action:button"
  7053. #~ msgid "View printers"
  7054. #~ msgstr "查看打印机"
  7055. #~ msgctxt "@label:"
  7056. #~ msgid "Pause"
  7057. #~ msgstr "暂停"
  7058. #~ msgctxt "@label:"
  7059. #~ msgid "Resume"
  7060. #~ msgstr "恢复"
  7061. #~ msgctxt "@label:"
  7062. #~ msgid "Abort Print"
  7063. #~ msgstr "中止打印"
  7064. #~ msgctxt "@option:openProject"
  7065. #~ msgid "Always ask"
  7066. #~ msgstr "总是询问"
  7067. #~ msgctxt "@label"
  7068. #~ msgid "Override Profile"
  7069. #~ msgstr "重写配置文件"
  7070. #~ msgctxt "@info:tooltip"
  7071. #~ msgid "Should newly loaded models be arranged on the build plate? Used in conjunction with multi build plate (EXPERIMENTAL)"
  7072. #~ msgstr "是否在打印平台上编位新加载的模型?与多打印平台结合使用(实验性)"
  7073. #~ msgctxt "@option:check"
  7074. #~ msgid "Do not arrange objects on load"
  7075. #~ msgstr "不要编位加载的对象"
  7076. #~ msgctxt "@action:inmenu menubar:file"
  7077. #~ msgid "&Save Selection to File"
  7078. #~ msgstr "保存到文件(&S)"
  7079. #~ msgctxt "@title:menu menubar:file"
  7080. #~ msgid "Save &As..."
  7081. #~ msgstr "另存为(&A)…"
  7082. #~ msgctxt "@title:menu menubar:file"
  7083. #~ msgid "Save &Project..."
  7084. #~ msgstr "保存项目(&P)..."
  7085. #~ msgctxt "@label"
  7086. #~ msgid "Use adhesion sheet or glue with this material combination"
  7087. #~ msgstr "在此材料组合的情况下,请使用附着垫片或者胶水"
  7088. #~ msgctxt "description"
  7089. #~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box."
  7090. #~ msgstr "接受 G-Code 并通过 WiFi 将其发送到 Doodle3D WiFi-Box。"
  7091. #~ msgctxt "name"
  7092. #~ msgid "Doodle3D WiFi-Box"
  7093. #~ msgstr "Doodle3D WiFi-Box"
  7094. #~ msgctxt "description"
  7095. #~ msgid "Provides an edit window for direct script editing."
  7096. #~ msgstr "提供直接脚本编辑的编辑窗口。"
  7097. #~ msgctxt "name"
  7098. #~ msgid "Live scripting tool"
  7099. #~ msgstr "实时脚本工具"
  7100. #~ msgctxt "description"
  7101. #~ msgid "Helps to open Blender files directly in Cura."
  7102. #~ msgstr "帮助直接在 Cura 中打开 Blender 文件。"
  7103. #~ msgctxt "name"
  7104. #~ msgid "Blender Integration (experimental)"
  7105. #~ msgstr "Blender 集成(实验性)"
  7106. #~ msgctxt "@info:title"
  7107. #~ msgid "Model Checker Warning"
  7108. #~ msgstr "模型检查器警告"
  7109. #~ msgctxt "@info:status"
  7110. #~ msgid ""
  7111. #~ "Some models may not be printed optimally due to object size and chosen material for models: {model_names}.\n"
  7112. #~ "Tips that may be useful to improve the print quality:\n"
  7113. #~ "1) Use rounded corners.\n"
  7114. #~ "2) Turn the fan off (only if there are no tiny details on the model).\n"
  7115. #~ "3) Use a different material."
  7116. #~ msgstr ""
  7117. #~ "由于模型的对象大小和所选材质,某些模型可能无法打印出最佳效果:{Model_names}。\n"
  7118. #~ "可以借鉴一些实用技巧来改善打印质量:\n"
  7119. #~ "1) 使用圆角。\n"
  7120. #~ "2) 关闭风扇(仅在模型没有微小细节时)。\n"
  7121. #~ "3) 使用其他材质。"
  7122. #~ msgctxt "@info:status"
  7123. #~ msgid "SolidWorks reported errors while opening your file. We recommend to solve these issues inside SolidWorks itself."
  7124. #~ msgstr "打开文件时,SolidWorks 报错。我们建议在 SolidWorks 内部解决这些问题。"
  7125. #~ msgctxt "@info:status"
  7126. #~ msgid ""
  7127. #~ "Found no models inside your drawing. Could you please check its content again and make sure one part or assembly is inside?\n"
  7128. #~ "\n"
  7129. #~ "Thanks!"
  7130. #~ msgstr ""
  7131. #~ "在图纸中找不到模型。请再次检查图纸内容,确保里面有一个零件或组件?\n"
  7132. #~ "\n"
  7133. #~ "谢谢!"
  7134. #~ msgctxt "@info:status"
  7135. #~ msgid ""
  7136. #~ "Found more than one part or assembly inside your drawing. We currently only support drawings with exactly one part or assembly inside.\n"
  7137. #~ "\n"
  7138. #~ "Sorry!"
  7139. #~ msgstr ""
  7140. #~ "在图纸中找到一个以上的零件或组件。我们目前只支持里面正好有一个零件或组件的图纸。\n"
  7141. #~ "\n"
  7142. #~ "很抱歉!"
  7143. #~ msgctxt "@item:inlistbox"
  7144. #~ msgid "SolidWorks part file"
  7145. #~ msgstr "SolidWorks 零件文件"
  7146. #~ msgctxt "@item:inlistbox"
  7147. #~ msgid "SolidWorks assembly file"
  7148. #~ msgstr "SolidWorks 组件文件"
  7149. #~ msgctxt "@item:inlistbox"
  7150. #~ msgid "SolidWorks drawing file"
  7151. #~ msgstr "SolidWorks 图纸文件"
  7152. #~ msgctxt "@info:status"
  7153. #~ msgid ""
  7154. #~ "Dear customer,\n"
  7155. #~ "We could not find a valid installation of SolidWorks on your system. That means that either SolidWorks is not installed or you don't own an valid license. Please make sure that running SolidWorks itself works without issues and/or contact your ICT.\n"
  7156. #~ "\n"
  7157. #~ "With kind regards\n"
  7158. #~ " - Thomas Karl Pietrowski"
  7159. #~ msgstr ""
  7160. #~ "尊敬的客户:\n"
  7161. #~ "我们无法在您的系统中找到有效的 SolidWorks 软件。这意味着您的系统中没有安装 SolidWorks,或者您没有获得有效的许可。请确保 SolidWorks 的运行没有任何问题并/或联系您的 ICT。\n"
  7162. #~ "\n"
  7163. #~ "此致\n"
  7164. #~ " - Thomas Karl Pietrowski"
  7165. #~ msgctxt "@info:status"
  7166. #~ msgid ""
  7167. #~ "Dear customer,\n"
  7168. #~ "You are currently running this plugin on an operating system other than Windows. This plugin will only work on Windows with SolidWorks installed, including an valid license. Please install this plugin on a Windows machine with SolidWorks installed.\n"
  7169. #~ "\n"
  7170. #~ "With kind regards\n"
  7171. #~ " - Thomas Karl Pietrowski"
  7172. #~ msgstr ""
  7173. #~ "尊敬的客户:\n"
  7174. #~ "您当前正在非 Windows 操作系统上运行此插件。此插件只能在装有 SolidWorks 且拥有有效许可的 Windows 系统上运行。请在装有 SolidWorks 的 Windows 计算机上安装此插件。\n"
  7175. #~ "\n"
  7176. #~ "此致\n"
  7177. #~ " - Thomas Karl Pietrowski"
  7178. #~ msgid "Configure"
  7179. #~ msgstr "配置"
  7180. #~ msgid "Installation guide for SolidWorks macro"
  7181. #~ msgstr "SolidWorks 宏的安装指南"
  7182. #~ msgctxt "@action:button"
  7183. #~ msgid "Disable"
  7184. #~ msgstr "禁用"
  7185. #~ msgctxt "@action:tooltip"
  7186. #~ msgid "Don't allow Cura to send anonymized usage statistics. You can enable it again in the preferences."
  7187. #~ msgstr "不允许 Cura 发送匿名的使用统计数据。您可以在偏好中再次启用。"
  7188. #~ msgid "Install"
  7189. #~ msgstr "安装"
  7190. #~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR. It is not set to a directory."
  7191. #~ msgstr "复制 Siemens NX 插件文件失败。 请检查您的 UGII_USER_DIR。 未将其设置到目录中。"
  7192. #~ msgid "Successfully installed Siemens NX Cura plugin."
  7193. #~ msgstr "已成功安装 Siemens NX Cura 插件。"
  7194. #~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR."
  7195. #~ msgstr "复制 Siemens NX 插件文件失败。 请检查您的 UGII_USER_DIR。"
  7196. #~ msgid "Failed to install Siemens NX plugin. Could not set environment variable UGII_USER_DIR for Siemens NX."
  7197. #~ msgstr "安装 Siemens NX 插件失败。 无法为 Siemens NX 设置环境变量 UGII_USER_DIR。"
  7198. #~ msgctxt "@info:status"
  7199. #~ msgid "Failed to get plugin ID from <filename>{0}</filename>"
  7200. #~ msgstr "无法从 <filename>{0}</filename> 获取插件 ID"
  7201. #~ msgctxt "@info:tile"
  7202. #~ msgid "Warning"
  7203. #~ msgstr "警告"
  7204. #~ msgctxt "@window:title"
  7205. #~ msgid "Plugin browser"
  7206. #~ msgstr "插件浏览器"
  7207. #~ msgctxt "@label"
  7208. #~ msgid "Ultimaker 3"
  7209. #~ msgstr "Ultimaker 3"
  7210. #~ msgctxt "@label"
  7211. #~ msgid "Ultimaker 3 Extended"
  7212. #~ msgstr "Ultimaker 3 Extended"
  7213. #~ msgctxt "@title:window"
  7214. #~ msgid "SolidWorks: Export wizard"
  7215. #~ msgstr "SolidWorks:导出向导"
  7216. #~ msgctxt "@action:label"
  7217. #~ msgid "Quality:"
  7218. #~ msgstr "质量:"
  7219. #~ msgctxt "@option:curaSolidworksStlQuality"
  7220. #~ msgid "Fine (3D-printing)"
  7221. #~ msgstr "精细(3D 打印)"
  7222. #~ msgctxt "@option:curaSolidworksStlQuality"
  7223. #~ msgid "Coarse (3D-printing)"
  7224. #~ msgstr "粗糙(3D 打印)"
  7225. #~ msgctxt "@option:curaSolidworksStlQuality"
  7226. #~ msgid "Fine (SolidWorks)"
  7227. #~ msgstr "精细 (SolidWorks)"
  7228. #~ msgctxt "@option:curaSolidworksStlQuality"
  7229. #~ msgid "Coarse (SolidWorks)"
  7230. #~ msgstr "粗糙 (SolidWorks)"
  7231. #~ msgctxt "@text:window"
  7232. #~ msgid "Show this dialog again"
  7233. #~ msgstr "再次显示此对话框"
  7234. #~ msgctxt "@action:button"
  7235. #~ msgid "Continue"
  7236. #~ msgstr "继续"
  7237. #~ msgctxt "@action:button"
  7238. #~ msgid "Abort"
  7239. #~ msgstr "中止"
  7240. #~ msgctxt "@title:window"
  7241. #~ msgid "How to install Cura SolidWorks macro"
  7242. #~ msgstr "如何安装 Cura SolidWorks 宏"
  7243. #~ msgctxt "@description:label"
  7244. #~ msgid "Steps:"
  7245. #~ msgstr "步骤:"
  7246. #~ msgctxt "@action:button"
  7247. #~ msgid ""
  7248. #~ "Open the directory\n"
  7249. #~ "with macro and icon"
  7250. #~ msgstr ""
  7251. #~ "打开宏和图标\n"
  7252. #~ "所在的目录"
  7253. #~ msgctxt "@description:label"
  7254. #~ msgid "Instructions:"
  7255. #~ msgstr "说明:"
  7256. #~ msgctxt "@action:playpause"
  7257. #~ msgid "Play"
  7258. #~ msgstr "播放"
  7259. #~ msgctxt "@action:playpause"
  7260. #~ msgid "Pause"
  7261. #~ msgstr "暂停"
  7262. #~ msgctxt "@action:button"
  7263. #~ msgid "Previous Step"
  7264. #~ msgstr "上一步"
  7265. #~ msgctxt "@action:button"
  7266. #~ msgid "Done"
  7267. #~ msgstr "完成"
  7268. #~ msgctxt "@action:button"
  7269. #~ msgid "Next Step"
  7270. #~ msgstr "下一步"
  7271. #~ msgctxt "@title:window"
  7272. #~ msgid "SolidWorks plugin: Configuration"
  7273. #~ msgstr "SolidWorks 插件:配置"
  7274. #~ msgctxt "@title:tab"
  7275. #~ msgid "Conversion settings"
  7276. #~ msgstr "转换设置"
  7277. #~ msgctxt "@label"
  7278. #~ msgid "First choice:"
  7279. #~ msgstr "首选:"
  7280. #~ msgctxt "@text:menu"
  7281. #~ msgid "Latest installed version (Recommended)"
  7282. #~ msgstr "最新安装的版本(推荐)"
  7283. #~ msgctxt "@text:menu"
  7284. #~ msgid "Default version"
  7285. #~ msgstr "默认版本"
  7286. #~ msgctxt "@label"
  7287. #~ msgid "Show wizard before opening SolidWorks files"
  7288. #~ msgstr "在打开 SolidWorks 文件前显示向导"
  7289. #~ msgctxt "@label"
  7290. #~ msgid "Automatically rotate opened file into normed orientation"
  7291. #~ msgstr "自动将打开的文件旋转到标准方向"
  7292. #~ msgctxt "@title:tab"
  7293. #~ msgid "Installation(s)"
  7294. #~ msgstr "装置"
  7295. #~ msgctxt "@label"
  7296. #~ msgid "COM service found"
  7297. #~ msgstr "发现 COM 服务"
  7298. #~ msgctxt "@label"
  7299. #~ msgid "Executable found"
  7300. #~ msgstr "发现可执行文件"
  7301. #~ msgctxt "@label"
  7302. #~ msgid "COM starting"
  7303. #~ msgstr "COM 启动"
  7304. #~ msgctxt "@label"
  7305. #~ msgid "Revision number"
  7306. #~ msgstr "版本号"
  7307. #~ msgctxt "@label"
  7308. #~ msgid "Functions available"
  7309. #~ msgstr "可用功能"
  7310. #~ msgctxt "@label (%1 is object name)"
  7311. #~ msgid "The new material diameter is set to %1 mm, which is not compatible to the current machine. Do you wish to continue?"
  7312. #~ msgstr "新的材料直径设置为 %1 mm,与当前机器不兼容。是否要继续?"
  7313. #~ msgctxt "@action:menu"
  7314. #~ msgid "Browse plugins..."
  7315. #~ msgstr "浏览插件..."
  7316. #~ msgctxt "@title:menu menubar:toplevel"
  7317. #~ msgid "P&lugins"
  7318. #~ msgstr "插件"
  7319. #~ msgctxt "@window:title"
  7320. #~ msgid "Install Plugin"
  7321. #~ msgstr "安装插件"
  7322. #~ msgctxt "description"
  7323. #~ msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc)"
  7324. #~ msgstr "提供更改打印机设置(如成形空间体积、喷嘴口径等)的方法"
  7325. #~ msgctxt "description"
  7326. #~ msgid "Manages network connections to Ultimaker 3 printers"
  7327. #~ msgstr "管理与 Ultimaker 3 打印机的网络连接"
  7328. #~ msgctxt "description"
  7329. #~ msgid "Gives you the possibility to open certain files using SolidWorks itself. Conversion is done by this plugin and additional optimizations."
  7330. #~ msgstr "允许您使用 SolidWorks 打开某些文件。转换通过此插件和其他优化完成。"
  7331. #~ msgctxt "name"
  7332. #~ msgid "SolidWorks Integration"
  7333. #~ msgstr "SolidWorks 集成"
  7334. #~ msgctxt "description"
  7335. #~ msgid "Automatically saves Preferences, Machines and Profiles after changes."
  7336. #~ msgstr "更改后自动保存首选项、机器和配置文件。"
  7337. #~ msgctxt "name"
  7338. #~ msgid "Auto Save"
  7339. #~ msgstr "自动保存"
  7340. #~ msgctxt "description"
  7341. #~ msgid "Helps you to install an 'export to Cura' button in Siemens NX."
  7342. #~ msgstr "帮助您在 Siemens NX 中安装一个“导出至 Cura”按钮。"
  7343. #~ msgctxt "name"
  7344. #~ msgid "Siemens NX Integration"
  7345. #~ msgstr "Siemens NX 集成"
  7346. #~ msgctxt "description"
  7347. #~ msgid "Find, manage and install new plugins."
  7348. #~ msgstr "查找、管理和安装新插件。"
  7349. #~ msgctxt "name"
  7350. #~ msgid "Plugin Browser"
  7351. #~ msgstr "插件浏览器"
  7352. #~ msgctxt "description"
  7353. #~ msgid "Ask the user once if he/she agrees with our license"
  7354. #~ msgstr "询问用户一次是否同意我们的许可"
  7355. #~ msgctxt "description"
  7356. #~ msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc)"
  7357. #~ msgstr "为 Ultimaker 打印机提供操作选项(如平台调平向导、选择升级等)"
  7358. #~ msgctxt "@item:inlistbox"
  7359. #~ msgid "GCode File"
  7360. #~ msgstr "GCode 文件"
  7361. #~ msgctxt "@info:status"
  7362. #~ msgid "Unable to start a new job because the printer is busy or not connected."
  7363. #~ msgstr "无法启动新作业,因为打印机处于忙碌状态或未连接。"
  7364. #~ msgctxt "@info:title"
  7365. #~ msgid "Printer Unavailable"
  7366. #~ msgstr "打印机不可用"
  7367. #~ msgctxt "@info:status"
  7368. #~ msgid "This printer does not support USB printing because it uses UltiGCode flavor."
  7369. #~ msgstr "此打印机不支持通过 USB 打印,因为其使用 UltiGCode 类型的 G-code 文件。"
  7370. #~ msgctxt "@info:title"
  7371. #~ msgid "USB Printing"
  7372. #~ msgstr "USB 打印"
  7373. #~ msgctxt "@info:status"
  7374. #~ msgid "Unable to start a new job because the printer does not support usb printing."
  7375. #~ msgstr "无法启动新作业,因为该打印机不支持通过 USB 打印。"
  7376. #~ msgctxt "@info"
  7377. #~ msgid "Unable to update firmware because there are no printers connected."
  7378. #~ msgstr "无法更新固件,因为没有连接打印机。"
  7379. #~ msgctxt "@info"
  7380. #~ msgid "Could not find firmware required for the printer at %s."
  7381. #~ msgstr "在 %s 无法找到打印机所需的固件。"
  7382. #~ msgctxt "@info:title"
  7383. #~ msgid "Printer Firmware"
  7384. #~ msgstr "打印机固件"
  7385. #~ msgctxt "@info:title"
  7386. #~ msgid "Connection status"
  7387. #~ msgstr "连接状态"
  7388. #~ msgctxt "@info:title"
  7389. #~ msgid "Connection Status"
  7390. #~ msgstr "连接状态"
  7391. #~ msgctxt "@info:status"
  7392. #~ msgid "Access request was denied on the printer."
  7393. #~ msgstr "访问请求在打印机上被拒绝。"
  7394. #~ msgctxt "@info:status"
  7395. #~ msgid "Access request failed due to a timeout."
  7396. #~ msgstr "访问请求失败(原因:超时)。"
  7397. #~ msgctxt "@info:status"
  7398. #~ msgid "The connection with the network was lost."
  7399. #~ msgstr "网络连接中断。"
  7400. #~ msgctxt "@info:status"
  7401. #~ msgid "The connection with the printer was lost. Check your printer to see if it is connected."
  7402. #~ msgstr "与打印机的连接中断,请检查打印机是否已连接。"
  7403. #~ msgctxt "@info:status"
  7404. #~ msgid "Unable to start a new print job, printer is busy. Current printer status is %s."
  7405. #~ msgstr "打印机无法启动新的打印作业,当前的打印机状态为 %s。"
  7406. #~ msgctxt "@info:title"
  7407. #~ msgid "Printer Status"
  7408. #~ msgstr "打印机状态"
  7409. #~ msgctxt "@info:status"
  7410. #~ msgid "Unable to start a new print job. No Printcore loaded in slot {0}"
  7411. #~ msgstr "无法启动新的打印作业。插槽 {0} 中未加载打印头。"
  7412. #~ msgctxt "@info:status"
  7413. #~ msgid "Unable to start a new print job. No material loaded in slot {0}"
  7414. #~ msgstr "无法启动新的打印作业。插槽 {0} 中未加载材料。"
  7415. #~ msgctxt "@label"
  7416. #~ msgid "Not enough material for spool {0}."
  7417. #~ msgstr "线轴 {0} 上没有足够的材料。"
  7418. #~ msgctxt "@label"
  7419. #~ msgid "Different PrintCore (Cura: {0}, Printer: {1}) selected for extruder {2}"
  7420. #~ msgstr "不同的打印头(Cura: {0},打印机: 为挤出机 {2} 选择了 {1})"
  7421. #~ msgctxt "@label"
  7422. #~ msgid "PrintCore {0} is not properly calibrated. XY calibration needs to be performed on the printer."
  7423. #~ msgstr "打印头 {0} 未正确校准。 需要在打印机上执行 XY 校准。"
  7424. #~ msgctxt "@info:status"
  7425. #~ msgid "Unable to send data to printer. Is another job still active?"
  7426. #~ msgstr "无法向打印机发送数据。请确认是否有另一项打印任务仍在进行?"
  7427. #~ msgctxt "@label:MonitorStatus"
  7428. #~ msgid "Print aborted. Please check the printer"
  7429. #~ msgstr "打印已中止。请检查打印机"
  7430. #~ msgctxt "@label:MonitorStatus"
  7431. #~ msgid "Pausing print..."
  7432. #~ msgstr "暂停打印..."
  7433. #~ msgctxt "@label:MonitorStatus"
  7434. #~ msgid "Resuming print..."
  7435. #~ msgstr "恢复打印..."
  7436. #~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers."
  7437. #~ msgstr "这台打印机未设置为运行一组连接的 Ultimaker 3 打印机。"
  7438. #~ msgctxt "Count is number of printers."
  7439. #~ msgid "This printer is the host for a group of {count} connected Ultimaker 3 printers."
  7440. #~ msgstr "这台打印机是一组共 {count} 台已连接 Ultimaker 3 打印机的主机。"
  7441. #~ msgid "{printer_name} has finished printing '{job_name}'. Please collect the print and confirm clearing the build plate."
  7442. #~ msgstr "{printer_name} 已完成打印 '{job_name}'。 请收起打印品并确认清空打印平台。"
  7443. #~ msgid "{printer_name} is reserved to print '{job_name}'. Please change the printer's configuration to match the job, for it to start printing."
  7444. #~ msgstr "{printer_name} 已保留用于打印 '{job_name}'。 请更改打印机配置以匹配此项作业,以便开始打印。"
  7445. #~ msgctxt "@info:status"
  7446. #~ msgid "Unable to send new print job: this 3D printer is not (yet) set up to host a group of connected Ultimaker 3 printers."
  7447. #~ msgstr "无法发送新打印作业:此 3D 打印机(尚)未设置为运行一组连接的 Ultimaker 3 打印机。"
  7448. #~ msgctxt "@info:status"
  7449. #~ msgid "Unable to send print job to group {cluster_name}."
  7450. #~ msgstr "无法发送打印作业至组 {cluster_name}。"
  7451. #~ msgctxt "@info:status"
  7452. #~ msgid "Sent {file_name} to group {cluster_name}."
  7453. #~ msgstr "已发送 {file_name} 至组 {cluster_name}。"
  7454. #~ msgctxt "@action:button"
  7455. #~ msgid "Show print jobs"
  7456. #~ msgstr "显示打印作业"
  7457. #~ msgctxt "@info:tooltip"
  7458. #~ msgid "Opens the print jobs interface in your browser."
  7459. #~ msgstr "在您的浏览器中打开打印作业界面。"
  7460. #~ msgctxt "@label Printer name"
  7461. #~ msgid "Unknown"
  7462. #~ msgstr "未知"
  7463. #~ msgctxt "@info:progress"
  7464. #~ msgid "Sending <filename>{file_name}</filename> to group {cluster_name}"
  7465. #~ msgstr "发送 <filename>{file_name}</filename> 至组 {cluster_name}"
  7466. #~ msgctxt "@info:status"
  7467. #~ msgid "SolidWorks reported errors, while opening your file. We recommend to solve these issues inside SolidWorks itself."
  7468. #~ msgstr "打开文件时,SolidWorks 报错。我们建议在 SolidWorks 内部解决这些问题。"
  7469. #~ msgctxt "@info:status"
  7470. #~ msgid ""
  7471. #~ "Found no models inside your drawing. Could you please check it's content again and make sure one part or assembly is inside?\n"
  7472. #~ "\n"
  7473. #~ " Thanks!."
  7474. #~ msgstr ""
  7475. #~ "在您的图纸中找不到模型。请再次检查图纸内容,确保里面有一个零件或组件。\n"
  7476. #~ "\n"
  7477. #~ "谢谢!"
  7478. #~ msgctxt "@info:status"
  7479. #~ msgid ""
  7480. #~ "Found more then one part or assembly inside your drawing. We currently only support drawings with exactly one part or assembly inside.\n"
  7481. #~ "\n"
  7482. #~ "Sorry!"
  7483. #~ msgstr ""
  7484. #~ "在您的图纸中找到一个以上的零件或组件。我们目前只支持里面正好有一个零件或组件的图纸。\n"
  7485. #~ "\n"
  7486. #~ "很抱歉!"
  7487. #~ msgctxt "@item:material"
  7488. #~ msgid "No material loaded"
  7489. #~ msgstr "未加载材料"
  7490. #~ msgctxt "@item:material"
  7491. #~ msgid "Unknown material"
  7492. #~ msgstr "未知材料"
  7493. #~ msgctxt "@info:status Has a cancel button next to it."
  7494. #~ msgid "The selected material diameter causes the material to become incompatible with the current printer."
  7495. #~ msgstr "所选材料直径导致材料与当前打印机不兼容。"
  7496. #~ msgctxt "@action:button"
  7497. #~ msgid "Undo"
  7498. #~ msgstr "撤销"
  7499. #~ msgctxt "@action"
  7500. #~ msgid "Undo changing the material diameter."
  7501. #~ msgstr "撤销更改材料直径。"
  7502. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  7503. #~ msgid "The machine defined in profile <filename>{0}</filename> doesn't match with your current machine, could not import it."
  7504. #~ msgstr "配置文件<filename> {0} </filename>中定义的机器与您当前的机器不匹配,无法导入。"
  7505. #~ msgctxt "@label crash message"
  7506. #~ msgid ""
  7507. #~ "<p><b>A fatal error has occurred. Please send us this Crash Report to fix the problem</p></b>\n"
  7508. #~ " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  7509. #~ " "
  7510. #~ msgstr ""
  7511. #~ "<p><b>发生了致命错误。请将这份错误报告发送给我们以便修复问题</p></b>\n"
  7512. #~ " <p>请使用“发送报告”按钮将错误报告自动发布到我们的服务器</p>\n"
  7513. #~ " "
  7514. #~ msgctxt "@label"
  7515. #~ msgid "not yet initialised<br/>"
  7516. #~ msgstr "尚未初始化<br/>"
  7517. #~ msgctxt "@label"
  7518. #~ msgid "Gcode flavor"
  7519. #~ msgstr "GCode 类型"
  7520. #~ msgctxt "@label"
  7521. #~ msgid "Start Gcode"
  7522. #~ msgstr "GCode 开始部分"
  7523. #~ msgctxt "@tooltip"
  7524. #~ msgid "Gcode commands to be executed at the very start."
  7525. #~ msgstr "将在开始时执行的 Gcode 命令。"
  7526. #~ msgctxt "@label"
  7527. #~ msgid "End Gcode"
  7528. #~ msgstr "GCode 结束部分"
  7529. #~ msgctxt "@tooltip"
  7530. #~ msgid "Gcode commands to be executed at the very end."
  7531. #~ msgstr "将在结束时执行的 Gcode 命令。"
  7532. #~ msgctxt "@label"
  7533. #~ msgid "Extruder Start Gcode"
  7534. #~ msgstr "挤出机 Gcode 开始部分"
  7535. #~ msgctxt "@label"
  7536. #~ msgid "Extruder End Gcode"
  7537. #~ msgstr "挤出机 Gcode 结束部分"
  7538. #~ msgctxt "@label"
  7539. #~ msgid "Starting firmware update, this may take a while."
  7540. #~ msgstr "正在开始固件更新。可能需要花费一些时间,请耐心等待。"
  7541. #~ msgctxt "@label"
  7542. #~ msgid "Unknown error code: %1"
  7543. #~ msgstr "未知错误代码: %1"
  7544. #~ msgctxt "@label Printer name"
  7545. #~ msgid "Ultimaker 3"
  7546. #~ msgstr "Ultimaker 3"
  7547. #~ msgctxt "@label Printer name"
  7548. #~ msgid "Ultimaker 3 Extended"
  7549. #~ msgstr "Ultimaker 3 Extended"
  7550. #~ msgctxt "@label Printer status"
  7551. #~ msgid "Unknown"
  7552. #~ msgstr "未知"
  7553. #~ msgctxt "@title:window"
  7554. #~ msgid "Find & Update plugins"
  7555. #~ msgstr "查找与更新插件"
  7556. #~ msgctxt "@label"
  7557. #~ msgid "Here you can find a list of Third Party plugins."
  7558. #~ msgstr "您可以在这里找到第三方插件列表。"
  7559. #~ msgctxt "@action:button"
  7560. #~ msgid "Upgrade"
  7561. #~ msgstr "升级"
  7562. #~ msgctxt "@action:button"
  7563. #~ msgid "Download"
  7564. #~ msgstr "下载"
  7565. #~ msgctxt "@info:tooltip"
  7566. #~ msgid "Show caution message in gcode reader."
  7567. #~ msgstr "在 G-code 读取器中显示警告信息。"
  7568. #~ msgctxt "@option:check"
  7569. #~ msgid "Caution message in gcode reader"
  7570. #~ msgstr "G-code 读取器中的警告信息"
  7571. #~ msgctxt "@window:title"
  7572. #~ msgid "Import Profile"
  7573. #~ msgstr "导入配置文件"
  7574. #~ msgctxt "@action:label %1 is printer name, %2 is how this printer names variants, %3 is variant name"
  7575. #~ msgid "Printer: %1, %2: %3"
  7576. #~ msgstr "打印机:%1, %2: %3"
  7577. #~ msgctxt "@action:label %1 is printer name"
  7578. #~ msgid "Printer: %1"
  7579. #~ msgstr "打印机:%1"
  7580. #~ msgctxt "@label"
  7581. #~ msgid "GCode generator"
  7582. #~ msgstr "GCode 生成器"
  7583. #~ msgctxt "@action:menu"
  7584. #~ msgid "Configure setting visiblity..."
  7585. #~ msgstr "配置设置可见性..."
  7586. #~ msgctxt "@title:menuitem %1 is the automatically selected material"
  7587. #~ msgid "Automatic: %1"
  7588. #~ msgstr "自动:%1"
  7589. #~ msgctxt "@title:menuitem %1 is the nozzle currently loaded in the printer"
  7590. #~ msgid "Automatic: %1"
  7591. #~ msgstr "自动:%1"
  7592. #~ msgctxt "@info:status"
  7593. #~ msgid "No printer connected"
  7594. #~ msgstr "没有连接打印机"
  7595. #~ msgctxt "@tooltip"
  7596. #~ msgid "The current temperature of this extruder."
  7597. #~ msgstr "该挤出机的当前温度。"
  7598. #~ msgctxt "@action:menu"
  7599. #~ msgid "Installed plugins..."
  7600. #~ msgstr "已安装插件..."
  7601. #~ msgctxt "@label"
  7602. #~ msgid "Support Extruder"
  7603. #~ msgstr "支撑用挤出机"
  7604. #~ msgctxt "description"
  7605. #~ msgid "Writes GCode to a file."
  7606. #~ msgstr "将 GCode 写入至文件。"
  7607. #~ msgctxt "name"
  7608. #~ msgid "GCode Writer"
  7609. #~ msgstr "GCode 写入器"
  7610. #~ msgctxt "name"
  7611. #~ msgid "GCode Profile Reader"
  7612. #~ msgstr "GCode 配置文件读取器"
  7613. #~ msgctxt "@info:status"
  7614. #~ msgid "Errors appeared while opening your SolidWorks file! Please check, whether it is possible to open your file in SolidWorks itself without any problems as well!"
  7615. #~ msgstr "打开 SolidWorks 文件时发生错误! 请检查能否在 SolidWorks 中正常打开文件而不出现任何问题!"
  7616. #~ msgctxt "@info:status"
  7617. #~ msgid "Error while starting %s!"
  7618. #~ msgstr "启动 %s 时发生错误!"
  7619. #~ msgctxt "@item:inlistbox"
  7620. #~ msgid "Simulation view"
  7621. #~ msgstr "仿真视图"
  7622. #~ msgctxt "@info"
  7623. #~ msgid "Cura collects anonymised slicing statistics. You can disable this in the preferences."
  7624. #~ msgstr "Cura 收集匿名切片统计资料。 您可以在偏好设置中禁用此选项。"
  7625. #~ msgctxt "@action:button"
  7626. #~ msgid "Dismiss"
  7627. #~ msgstr "关闭此通知"
  7628. #~ msgctxt "@menuitem"
  7629. #~ msgid "Global"
  7630. #~ msgstr "全局"
  7631. #~ msgctxt "@label crash message"
  7632. #~ msgid ""
  7633. #~ "<p><b>A fatal exception has occurred. Please send us this Crash Report to fix the problem</p></b>\n"
  7634. #~ " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  7635. #~ " "
  7636. #~ msgstr ""
  7637. #~ "<p><b>发生了致命错误。 请将这份错误报告发送给我们以便修复问题</p></b>\n"
  7638. #~ " <p>请使用“发送报告”按钮将错误报告自动发布到我们的服务器</p>\n"
  7639. #~ " "
  7640. #~ msgctxt "@label Cura version"
  7641. #~ msgid "<b>Cura version:</b> {version}<br/>"
  7642. #~ msgstr "<b>Cura 版本:</b> {version}<br/>"
  7643. #~ msgctxt "@label Platform"
  7644. #~ msgid "<b>Platform:</b> {platform}<br/>"
  7645. #~ msgstr "<b>平台:</b> {platform}<br/>"
  7646. #~ msgctxt "@label Qt version"
  7647. #~ msgid "<b>Qt version:</b> {qt}<br/>"
  7648. #~ msgstr "<b>Qt 版本:</b> {qt}<br/>"
  7649. #~ msgctxt "@label PyQt version"
  7650. #~ msgid "<b>PyQt version:</b> {pyqt}<br/>"
  7651. #~ msgstr "<b>PyQt 版本:</b> {pyqt}<br/>"
  7652. #~ msgctxt "@label OpenGL"
  7653. #~ msgid "<b>OpenGL:</b> {opengl}<br/>"
  7654. #~ msgstr "<b>OpenGL:</b> {opengl}<br/>"
  7655. #~ msgctxt "@title:groupbox"
  7656. #~ msgid "Exception traceback"
  7657. #~ msgstr "异常追溯"
  7658. #~ msgctxt "@label"
  7659. #~ msgid "Material diameter"
  7660. #~ msgstr "材料直径"
  7661. #~ msgctxt "@title:window"
  7662. #~ msgid "Cura SolidWorks Plugin Configuration"
  7663. #~ msgstr "Cura SolidWorks 插件配置"
  7664. #~ msgctxt "@action:label"
  7665. #~ msgid "Default quality of the exported STL:"
  7666. #~ msgstr "导出 STL 的默认质量:"
  7667. #~ msgctxt "@option:curaSolidworksStlQuality"
  7668. #~ msgid "Always ask"
  7669. #~ msgstr "总是询问"
  7670. #~ msgctxt "@option:curaSolidworksStlQuality"
  7671. #~ msgid "Always use Fine quality"
  7672. #~ msgstr "总是使用精细品质"
  7673. #~ msgctxt "@option:curaSolidworksStlQuality"
  7674. #~ msgid "Always use Coarse quality"
  7675. #~ msgstr "总是使用粗糙品质"
  7676. #~ msgctxt "@title:window"
  7677. #~ msgid "Import SolidWorks File as STL..."
  7678. #~ msgstr "导入 SolidWorks 文件为 STL..."
  7679. #~ msgctxt "@info:tooltip"
  7680. #~ msgid "Quality of the Exported STL"
  7681. #~ msgstr "导出 STL 的质量"
  7682. #~ msgctxt "@action:label"
  7683. #~ msgid "Quality"
  7684. #~ msgstr "质量"
  7685. #~ msgctxt "@option:curaSolidworksStlQuality"
  7686. #~ msgid "Coarse"
  7687. #~ msgstr "粗糙"
  7688. #~ msgctxt "@option:curaSolidworksStlQuality"
  7689. #~ msgid "Fine"
  7690. #~ msgstr "精细"
  7691. #~ msgctxt "@"
  7692. #~ msgid "No Profile Available"
  7693. #~ msgstr "没有配置文件可用"
  7694. #~ msgctxt "@label"
  7695. #~ msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders"
  7696. #~ msgstr "此设置始终对所有挤出机有效。在此进行更改将影响所有挤出机。"
  7697. #~ msgctxt "@tooltip"
  7698. #~ msgid "<b>Time specification</b><br/><table>"
  7699. #~ msgstr "<b>时间规范</b><br/><table>"
  7700. #~ msgctxt "@action:inmenu menubar:view"
  7701. #~ msgid "&Reset camera position"
  7702. #~ msgstr "重置摄像头位置(&R)"
  7703. #~ msgctxt "@title:menu menubar:file"
  7704. #~ msgid "Save project"
  7705. #~ msgstr "保存项目"
  7706. #~ msgctxt "@title:tab"
  7707. #~ msgid "Prepare"
  7708. #~ msgstr "准备"
  7709. #~ msgctxt "@title:tab"
  7710. #~ msgid "Monitor"
  7711. #~ msgstr "监控"
  7712. #~ msgctxt "@label"
  7713. #~ msgid "<a href='%1'>Check compatibility</a>"
  7714. #~ msgstr "<a href='%1'>检查兼容性</a>"
  7715. #~ msgctxt "description"
  7716. #~ msgid "Gives you the possibility to open certain files via SolidWorks itself. These are then converted and loaded into Cura"
  7717. #~ msgstr "让您可以通过 SolidWorks 自身打开特定文件。 随后会将这些文件进行转换并载入 Cura"
  7718. #~ msgctxt "@label:status"
  7719. #~ msgid "Blocked"
  7720. #~ msgstr "冻结操作"
  7721. #~ msgctxt "@label:status"
  7722. #~ msgid "Can't start print"
  7723. #~ msgstr "不能开始打印"
  7724. #~ msgctxt "@action:button"
  7725. #~ msgid "Open Connect.."
  7726. #~ msgstr "打开 Connect"
  7727. #~ msgctxt "@info:title"
  7728. #~ msgid "Print Details"
  7729. #~ msgstr "打印品详细信息"
  7730. #~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  7731. #~ msgid "To ensure that your {machine_name} is equipped with the latest features it is recommended to update the firmware regularly. This can be done on the {machine_name} (when connected to the network) or via USB."
  7732. #~ msgstr "为确保您的 {machine_name} 具备最新功能,建议定期更新固件。 更新可在 {machine_name} 上(连接至网络时)或通过 USB 进行。"
  7733. #~ msgctxt "@info:title"
  7734. #~ msgid "Layer View"
  7735. #~ msgstr "分层视图"
  7736. #~ msgctxt "@menuitem"
  7737. #~ msgid "Browse plugins"
  7738. #~ msgstr "浏览插件"
  7739. #~ msgctxt "@info:title"
  7740. #~ msgid "Export Details"
  7741. #~ msgstr "导出详细信息"
  7742. #~ msgctxt "@label"
  7743. #~ msgid ""
  7744. #~ "<p>A fatal exception has occurred that we could not recover from!</p>\n"
  7745. #~ " <p>Please use the information below to post a bug report at <a href=\"http://github.com/Ultimaker/Cura/issues\">http://github.com/Ultimaker/Cura/issues</a></p>\n"
  7746. #~ " "
  7747. #~ msgstr ""
  7748. #~ "<p>发生了致命错误,我们无法恢复!</p>\n"
  7749. #~ " <p>请在以下网址中使用下方的信息提交错误报告:<a href=\"http://github.com/Ultimaker/Cura/issues\">http://github.com/Ultimaker/Cura/issues</a></p>"
  7750. #~ msgctxt "@action:button"
  7751. #~ msgid "Open Web Page"
  7752. #~ msgstr "打开网页"
  7753. #~ msgctxt "@action:button"
  7754. #~ msgid "Ok"
  7755. #~ msgstr "确定"
  7756. #~ msgctxt "@label"
  7757. #~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers"
  7758. #~ msgstr "这台打印机未设置为运行一组连接的 Ultimaker 3 打印机"
  7759. #~ msgctxt "@label"
  7760. #~ msgid "This printer is the host for a group of %1 connected Ultimaker 3 printers"
  7761. #~ msgstr "这台打印机是一组 %1 台已连接 Ultimaker 3 打印机的主机"
  7762. #~ msgctxt "@label"
  7763. #~ msgid "Completed on: "
  7764. #~ msgstr "完成时间: "
  7765. #~ msgctxt "@info:tooltip"
  7766. #~ msgid "Opens the print jobs page with your default web browser."
  7767. #~ msgstr "使用默认 Web 浏览器打开打印作业页面。"
  7768. #~ msgctxt "@label"
  7769. #~ msgid "PRINTER GROUP"
  7770. #~ msgstr "打印机组"
  7771. #~ msgctxt "@action:warning"
  7772. #~ msgid "Loading a project will clear all models on the buildplate"
  7773. #~ msgstr "加载项目将清除打印平台上的所有模型"
  7774. #~ msgctxt "@label"
  7775. #~ msgid ""
  7776. #~ " plugin contains a license.\n"
  7777. #~ "You need to accept this license to install this plugin.\n"
  7778. #~ "Do you agree with the terms below?"
  7779. #~ msgstr ""
  7780. #~ " 插件包含一个许可。\n"
  7781. #~ "您需要接受此许可才能安装此插件。\n"
  7782. #~ "是否同意下列条款?"
  7783. #~ msgctxt "@label"
  7784. #~ msgid "00h 00min"
  7785. #~ msgstr "00 小时 00 分"
  7786. #~ msgctxt "@tooltip"
  7787. #~ msgid "<b>Time information</b>"
  7788. #~ msgstr "<b>时间信息</b>"
  7789. #~ msgctxt "@description"
  7790. #~ msgid "Print time"
  7791. #~ msgstr "打印时间"
  7792. #~ msgctxt "@label"
  7793. #~ msgid "%1m / ~ %2g / ~ %4 %3"
  7794. #~ msgstr "%1m / ~ %2g / ~ %4 %3"
  7795. #~ msgctxt "@label"
  7796. #~ msgid "%1m / ~ %2g"
  7797. #~ msgstr "%1m / ~ %2g"
  7798. #~ msgctxt "@title:window"
  7799. #~ msgid "Cura"
  7800. #~ msgstr "Cura"
  7801. #~ msgctxt "@label"
  7802. #~ msgid "<a href='%1'>Check material compatibility</a>"
  7803. #~ msgstr "<a href='%1'>检查材料兼容性</a>"
  7804. #~ msgctxt "name"
  7805. #~ msgid "UM3 Network Connection (Cluster)"
  7806. #~ msgstr "UM3 网络连接(群集)"
  7807. #~ msgctxt "description"
  7808. #~ msgid "Provides the Layer view."
  7809. #~ msgstr "提供分层视图。"
  7810. #~ msgctxt "name"
  7811. #~ msgid "Layer View"
  7812. #~ msgstr "分层视图"
  7813. #~ msgctxt "@item:inlistbox"
  7814. #~ msgid "X-Ray"
  7815. #~ msgstr "透视"
  7816. #~ msgctxt "@label"
  7817. #~ msgid "Doodle3D"
  7818. #~ msgstr "Doodle3D"
  7819. #~ msgctxt "@info:whatsthis"
  7820. #~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box."
  7821. #~ msgstr "接受 G-Code 并通过 WiFi 将其发送到 Doodle3D WiFi-Box。"
  7822. #~ msgctxt "@item:inmenu"
  7823. #~ msgid "Doodle3D printing"
  7824. #~ msgstr "Doodle3D 打印"
  7825. #~ msgctxt "@action:button"
  7826. #~ msgid "Print with Doodle3D"
  7827. #~ msgstr "使用 Doodle3D 打印"
  7828. #~ msgctxt "@info:tooltip"
  7829. #~ msgid "Print with "
  7830. #~ msgstr "使用 "
  7831. #~ msgctxt "@title:menu"
  7832. #~ msgid "Doodle3D"
  7833. #~ msgstr "Doodle3D 打印"
  7834. #~ msgctxt "@item:inlistbox"
  7835. #~ msgid "Enable Scan devices..."
  7836. #~ msgstr "启用扫描设备..."
  7837. #~ msgctxt "@info:progress"
  7838. #~ msgid "Saving to Removable Drive <filename>{0}</filename>"
  7839. #~ msgstr "保存到可移动磁盘 <filename> {0} </filename>"
  7840. #~ msgctxt "@info:status"
  7841. #~ msgid "Could not save to <filename>{0}</filename>: <message>{1}</message>"
  7842. #~ msgstr "无法保存到 <filename>{0}</filename>:<message>{1}</message>"
  7843. #~ msgctxt "@info:status"
  7844. #~ msgid "Please keep in mind, that you have to reopen your SolidWorks file manually! Reloading the model won't work!"
  7845. #~ msgstr "请记住,您必须手动重新打开 SolidWorks 文件! 重新加载模型将无法正常工作!"
  7846. #~ msgctxt "@item:inlistbox"
  7847. #~ msgid "Layers"
  7848. #~ msgstr "层"
  7849. #~ msgid "Browse plugins"
  7850. #~ msgstr "浏览插件"
  7851. #~ msgctxt "@item:inmenu"
  7852. #~ msgid "Solid"
  7853. #~ msgstr "实体"
  7854. #~ msgctxt "@label"
  7855. #~ msgid "The file <filename>{0}</filename> already exists. Are you sure you want to overwrite it?"
  7856. #~ msgstr "文件 <filename>{0}</filename> 已存在。你确定要替换它吗?"
  7857. #~ msgctxt "@info:status"
  7858. #~ msgid "Failed to export profile to <filename>{0}</filename>: <message>{1}</message>"
  7859. #~ msgstr "无法将配置文件导出至<filename> {0} </filename>:<message> {1} </ message>"
  7860. #~ msgctxt "@info:status"
  7861. #~ msgid "Failed to export profile to <filename>{0}</filename>: Writer plugin reported failure."
  7862. #~ msgstr "无法将配置文件导出至<filename> {0} </filename>:写入器插件报告故障。"
  7863. #~ msgctxt "@info:status"
  7864. #~ msgid "Exported profile to <filename>{0}</filename>"
  7865. #~ msgstr "配置文件已导出至:<filename> {0} </filename>"
  7866. #~ msgctxt "@info:status"
  7867. #~ msgid "Failed to import profile from <filename>{0}</filename>: <message>{1}</message>"
  7868. #~ msgstr "无法从 <filename> {0} </filename> 导入配置文件:<message> {1} </message>"
  7869. #~ msgctxt "@title:window"
  7870. #~ msgid "Doodle3D Settings"
  7871. #~ msgstr "Doodle3D 设置"
  7872. #~ msgctxt "@title:window"
  7873. #~ msgid "Print to: %1"
  7874. #~ msgstr "打印至:%1"
  7875. #~ msgctxt "@label"
  7876. #~ msgid "Extruder Temperature: %1/%2°C"
  7877. #~ msgstr "打印头温度:%1/%2 °C"
  7878. #~ msgctxt "@label"
  7879. #~ msgid "Bed Temperature: %1/%2°C"
  7880. #~ msgstr "热床温度:%1/%2°C"
  7881. #~ msgctxt "@label"
  7882. #~ msgid "%1"
  7883. #~ msgstr "%1"
  7884. #~ msgctxt "@label"
  7885. #~ msgid "View Mode: Layers"
  7886. #~ msgstr "视图模式:分层"
  7887. #~ msgctxt "@info:status"
  7888. #~ msgid "Could not import material <filename>%1</filename>: <message>%2</message>"
  7889. #~ msgstr "无法导入材料 <filename>%1</filename>:<message>%2</message>"
  7890. #~ msgctxt "@info:status"
  7891. #~ msgid "Successfully imported material <filename>%1</filename>"
  7892. #~ msgstr "成功导入材料 <filename>%1</filename>"
  7893. #~ msgctxt "@info:status"
  7894. #~ msgid "Failed to export material to <filename>%1</filename>: <message>%2</message>"
  7895. #~ msgstr "无法导出材料至 <filename>%1</filename>:<message>%2</message>"
  7896. #~ msgctxt "@info:status"
  7897. #~ msgid "Successfully exported material to <filename>%1</filename>"
  7898. #~ msgstr "成功导出材料至: <filename>%1</filename>"
  7899. #~ msgctxt "@label"
  7900. #~ msgid "%1 m / ~ %2 g / ~ %4 %3"
  7901. #~ msgstr "%1 m / ~ %2 g / ~ %4 %3"
  7902. #~ msgctxt "@label"
  7903. #~ msgid "%1 m / ~ %2 g"
  7904. #~ msgstr "%1 m / ~ %2 g"
  7905. #~ msgctxt "@label"
  7906. #~ msgid "Hotend"
  7907. #~ msgstr "热端"
  7908. #~ msgctxt "@action:button"
  7909. #~ msgid "View Mode"
  7910. #~ msgstr "视图模式"
  7911. #~ msgctxt "@title:tab"
  7912. #~ msgid "Print"
  7913. #~ msgstr "打印"
  7914. #~ msgctxt "@label"
  7915. #~ msgid "0%"
  7916. #~ msgstr "0%"
  7917. #~ msgctxt "@label"
  7918. #~ msgid "Empty infill will leave your model hollow with low strength."
  7919. #~ msgstr "无填充将使模型处于低强度且保持空心状态。"
  7920. #~ msgctxt "@label"
  7921. #~ msgid "20%"
  7922. #~ msgstr "20%"
  7923. #~ msgctxt "@label"
  7924. #~ msgid "Light (20%) infill will give your model an average strength."
  7925. #~ msgstr "轻度(20%)填充将使打印模型处于中等强度。"
  7926. #~ msgctxt "@label"
  7927. #~ msgid "50%"
  7928. #~ msgstr "50%"
  7929. #~ msgctxt "@label"
  7930. #~ msgid "Dense (50%) infill will give your model an above average strength."
  7931. #~ msgstr "密集(50%)填充将使打印模型高于平均的强度。"
  7932. #~ msgctxt "@label"
  7933. #~ msgid "100%"
  7934. #~ msgstr "100%"
  7935. #~ msgctxt "@label"
  7936. #~ msgid "Solid (100%) infill will make your model completely solid."
  7937. #~ msgstr "完全(100%)填充将使您的模型处于完全实心状态。"
  7938. #~ msgctxt "@label"
  7939. #~ msgid "Gradual"
  7940. #~ msgstr "渐层填充"
  7941. #~ msgctxt "description"
  7942. #~ msgid "Provides support for writing X3G files"
  7943. #~ msgstr "提供对写入 X3G 文件的支持"
  7944. #~ msgctxt "name"
  7945. #~ msgid "X3G Writer"
  7946. #~ msgstr "X3G 写入器"
  7947. #~ msgctxt "@label"
  7948. #~ msgid "Machine Settings action"
  7949. #~ msgstr "打印机设置操作"
  7950. #~ msgctxt "@info:whatsthis"
  7951. #~ msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc)"
  7952. #~ msgstr "提供更改打印机设置(如成形空间体积、喷嘴口径等)的方法"
  7953. #~ msgctxt "@label"
  7954. #~ msgid "X-Ray View"
  7955. #~ msgstr "透视视图"
  7956. #~ msgctxt "@info:whatsthis"
  7957. #~ msgid "Provides the X-Ray view."
  7958. #~ msgstr "提供透视视图。"
  7959. #~ msgctxt "@label"
  7960. #~ msgid "X3D Reader"
  7961. #~ msgstr "X3D 读取器"
  7962. #~ msgctxt "@info:whatsthis"
  7963. #~ msgid "Provides support for reading X3D files."
  7964. #~ msgstr "支持读取 X3D 文件。"
  7965. #~ msgctxt "@label"
  7966. #~ msgid "GCode Writer"
  7967. #~ msgstr "GCode 写入器"
  7968. #~ msgctxt "@info:whatsthis"
  7969. #~ msgid "Writes GCode to a file."
  7970. #~ msgstr "将 GCode 写入至文件。"
  7971. #~ msgctxt "@action:button Preceded by 'Ready to'."
  7972. #~ msgid "Print with Doodle3D"
  7973. #~ msgstr "使用 Doodle3D 打印"
  7974. #~ msgctxt "@info:whatsthis"
  7975. #~ msgid "Shows changes since latest checked version."
  7976. #~ msgstr "显示最新版本改动。"
  7977. #~ msgctxt "@label"
  7978. #~ msgid "Profile flatener"
  7979. #~ msgstr "配置文件合并器"
  7980. #~ msgctxt "@info:whatsthis"
  7981. #~ msgid "Create a flattend quality changes profile."
  7982. #~ msgstr "创建一份合并质量变化配置文件。"
  7983. #~ msgctxt "@label"
  7984. #~ msgid "USB printing"
  7985. #~ msgstr "USB 联机打印"
  7986. #~ msgctxt "@info:whatsthis"
  7987. #~ msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
  7988. #~ msgstr "接受 GCode 并将其发送到打印机。此插件还可以更新固件。"
  7989. #~ msgctxt "X3G Writer Plugin Description"
  7990. #~ msgid "Writes X3G to a file"
  7991. #~ msgstr "将 X3G 写入文件"
  7992. #~ msgctxt "@label"
  7993. #~ msgid "Removable Drive Output Device Plugin"
  7994. #~ msgstr "可移动磁盘输出设备插件"
  7995. #~ msgctxt "@info:whatsthis"
  7996. #~ msgid "Provides removable drive hotplugging and writing support."
  7997. #~ msgstr "提供可移动磁盘热插拔和写入文件的支持。"
  7998. #~ msgctxt "@info:whatsthis"
  7999. #~ msgid "Manages network connections to Ultimaker 3 printers"
  8000. #~ msgstr "管理与 Ultimaker 3 打印机的网络连接"
  8001. #~ msgctxt "@label"
  8002. #~ msgid "Different print core (Cura: {0}, Printer: {1}) selected for extruder {2}"
  8003. #~ msgstr "您为挤出机 {2} 选择了不同的打印头(Cura:{0},打印机:{1})"
  8004. #~ msgctxt "@label"
  8005. #~ msgid "Print core {0} is not properly calibrated. XY calibration needs to be performed on the printer."
  8006. #~ msgstr "打印头 {0} 未正确校准,您需要在打印机上执行 XY 校准。"
  8007. #~ msgctxt "@label"
  8008. #~ msgid "The print cores and/or materials on your printer differ from those within your current project. For the best result, always slice for the print cores and materials that are inserted in your printer."
  8009. #~ msgstr "打印机上的打印头和/或材料与当前项目中的不同。为获得最佳打印效果,请始终使用已插入的打印头和材料配置进行切片。"
  8010. #~ msgctxt "@label"
  8011. #~ msgid "Post Processing"
  8012. #~ msgstr "后期处理"
  8013. #~ msgctxt "Description of plugin"
  8014. #~ msgid "Extension that allows for user created scripts for post processing"
  8015. #~ msgstr "扩展程序(允许用户创建脚本进行后期处理)"
  8016. #~ msgctxt "@label"
  8017. #~ msgid "Auto Save"
  8018. #~ msgstr "自动保存"
  8019. #~ msgctxt "@info:whatsthis"
  8020. #~ msgid "Automatically saves Preferences, Machines and Profiles after changes."
  8021. #~ msgstr "更改后自动保存首选项、机器和配置文件。"
  8022. #~ msgctxt "@label"
  8023. #~ msgid "Slice info"
  8024. #~ msgstr "切片信息"
  8025. #~ msgctxt "@info:whatsthis"
  8026. #~ msgid "Submits anonymous slice info. Can be disabled through preferences."
  8027. #~ msgstr "提交匿名切片信息。此特性可在偏好设置中禁用。"
  8028. #~ msgctxt "@info"
  8029. #~ msgid "Cura collects anonymised slicing statistics. You can disable this in preferences"
  8030. #~ msgstr "Cura 将自动收集匿名的切片统计数据,您可以在偏好设置中禁用此选项。"
  8031. #~ msgctxt "@label"
  8032. #~ msgid "Material Profiles"
  8033. #~ msgstr "材料配置文件"
  8034. #~ msgctxt "@info:whatsthis"
  8035. #~ msgid "Provides capabilities to read and write XML-based material profiles."
  8036. #~ msgstr "提供读取和写入基于 XML 的材料配置文件的功能。"
  8037. #~ msgctxt "@label"
  8038. #~ msgid "Legacy Cura Profile Reader"
  8039. #~ msgstr "旧版 Cura 配置文件读取器"
  8040. #~ msgctxt "@info:whatsthis"
  8041. #~ msgid "Provides support for importing profiles from legacy Cura versions."
  8042. #~ msgstr "支持从 Cura 旧版本导入配置文件。"
  8043. #~ msgctxt "@label"
  8044. #~ msgid "GCode Profile Reader"
  8045. #~ msgstr "GCode 配置读取器"
  8046. #~ msgctxt "@info:whatsthis"
  8047. #~ msgid "Provides support for importing profiles from g-code files."
  8048. #~ msgstr "提供了从 GCode 文件中导入配置文件的支持。"
  8049. #~ msgctxt "@label"
  8050. #~ msgid "Layer View"
  8051. #~ msgstr "分层视图"
  8052. #~ msgctxt "@info:whatsthis"
  8053. #~ msgid "Provides the Layer view."
  8054. #~ msgstr "提供分层视图。"
  8055. #~ msgctxt "@label"
  8056. #~ msgid "Version Upgrade 2.5 to 2.6"
  8057. #~ msgstr "版本自 2.5 升级到 2.6"
  8058. #~ msgctxt "@info:whatsthis"
  8059. #~ msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
  8060. #~ msgstr "将配置从 Cura 2.5 版本升级至 2.6 版本。"
  8061. #~ msgctxt "@label"
  8062. #~ msgid "Version Upgrade 2.1 to 2.2"
  8063. #~ msgstr "版本自 2.1 升级至 2.2"
  8064. #~ msgctxt "@info:whatsthis"
  8065. #~ msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
  8066. #~ msgstr "将配置从 Cura 2.1 版本升级至 2.2 版本。"
  8067. #~ msgctxt "@label"
  8068. #~ msgid "Version Upgrade 2.2 to 2.4"
  8069. #~ msgstr "版本自 2.2 升级到 2.4"
  8070. #~ msgctxt "@info:whatsthis"
  8071. #~ msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
  8072. #~ msgstr "将配置从 Cura 2.2 版本升级至 2.4 版本。"
  8073. #~ msgctxt "@label"
  8074. #~ msgid "Image Reader"
  8075. #~ msgstr "图像读取器"
  8076. #~ msgctxt "@info:whatsthis"
  8077. #~ msgid "Enables ability to generate printable geometry from 2D image files."
  8078. #~ msgstr "支持从 2D 图像文件生成可打印几何模型。"
  8079. #~ msgctxt "@label"
  8080. #~ msgid "CuraEngine Backend"
  8081. #~ msgstr "CuraEngine 后端"
  8082. #~ msgctxt "@info:whatsthis"
  8083. #~ msgid "Provides the link to the CuraEngine slicing backend."
  8084. #~ msgstr "提供 CuraEngine 切片后端的路径"
  8085. #~ msgctxt "@label"
  8086. #~ msgid "Per Model Settings Tool"
  8087. #~ msgstr "单一模型设置工具"
  8088. #~ msgctxt "@info:whatsthis"
  8089. #~ msgid "Provides the Per Model Settings."
  8090. #~ msgstr "提供对每个模型的单独设置。"
  8091. #~ msgctxt "@label"
  8092. #~ msgid "3MF Reader"
  8093. #~ msgstr "3MF 读取器"
  8094. #~ msgctxt "@info:whatsthis"
  8095. #~ msgid "Provides support for reading 3MF files."
  8096. #~ msgstr "提供对读取 3MF 格式文件的支持。"
  8097. #~ msgctxt "@label"
  8098. #~ msgid "Solid View"
  8099. #~ msgstr "实体视图"
  8100. #~ msgctxt "@info:whatsthis"
  8101. #~ msgid "Provides a normal solid mesh view."
  8102. #~ msgstr "提供一个基本的实体网格视图。"
  8103. #~ msgctxt "@label"
  8104. #~ msgid "G-code Reader"
  8105. #~ msgstr "G-code 读取器"
  8106. #~ msgctxt "@info:whatsthis"
  8107. #~ msgid "Allows loading and displaying G-code files."
  8108. #~ msgstr "允许加载和显示 G-code 文件。"
  8109. #~ msgctxt "@label"
  8110. #~ msgid "Cura Profile Writer"
  8111. #~ msgstr "Cura 配置写入器"
  8112. #~ msgctxt "@info:whatsthis"
  8113. #~ msgid "Provides support for exporting Cura profiles."
  8114. #~ msgstr "提供了对导出 Cura 配置文件的支持。"
  8115. #~ msgctxt "@label"
  8116. #~ msgid "3MF Writer"
  8117. #~ msgstr "3MF 写入器"
  8118. #~ msgctxt "@info:whatsthis"
  8119. #~ msgid "Provides support for writing 3MF files."
  8120. #~ msgstr "提供对写入 3MF 文件的支持。"
  8121. #~ msgctxt "@label"
  8122. #~ msgid "Ultimaker machine actions"
  8123. #~ msgstr "Ultimaker 打印机操作"
  8124. #~ msgctxt "@info:whatsthis"
  8125. #~ msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc)"
  8126. #~ msgstr "为 Ultimaker 打印机提供操作选项 (如平台调平向导、选择升级等)"
  8127. #~ msgctxt "@label"
  8128. #~ msgid "Cura Profile Reader"
  8129. #~ msgstr "Cura 配置文件导出"
  8130. #~ msgctxt "@info:whatsthis"
  8131. #~ msgid "Provides support for importing Cura profiles."
  8132. #~ msgstr "提供了对导入 Cura 配置文件的支持。"
  8133. #~ msgctxt "@info"
  8134. #~ msgid "%(width).1f x %(depth).1f x %(height).1f mm"
  8135. #~ msgstr "%(宽).1f x %(深).1f x %(高).1f mm"
  8136. #~ msgctxt "@label"
  8137. #~ msgid "Build Plate Shape"
  8138. #~ msgstr "打印平台形状"
  8139. #~ msgctxt "@option:check"
  8140. #~ msgid "Machine Center is Zero"
  8141. #~ msgstr "机器中心为零点"
  8142. #~ msgctxt "@option:check"
  8143. #~ msgid "Heated Bed"
  8144. #~ msgstr "加热床"
  8145. #~ msgctxt "@label"
  8146. #~ msgid "GCode Flavor"
  8147. #~ msgstr "GCode 类型"
  8148. #~ msgctxt "@label"
  8149. #~ msgid "Material Diameter"
  8150. #~ msgstr "材料直径"
  8151. #~ msgctxt "@label"
  8152. #~ msgid "If your printer is not listed, read the <a href='%1'>network-printing troubleshooting guide</a>"
  8153. #~ msgstr "如果您的打印机未列出,请阅读<a href='%1'>网络打印故障排除指南</a>"
  8154. #~ msgctxt "@item:inlistbox"
  8155. #~ msgid "Ultimaker"
  8156. #~ msgstr "Ultimaker"
  8157. #~ msgctxt "@label"
  8158. #~ msgid "Support library for scientific computing "
  8159. #~ msgstr "科学计算支持库"
  8160. #~ msgctxt "@tooltip"
  8161. #~ msgid "<b>Print Setup</b><br/><br/>Edit or review the settings for the active print job."
  8162. #~ msgstr "<b>打印设置</b> <br/> <br/>编辑或查看活动打印作业的设置。"
  8163. #~ msgctxt "@tooltip"
  8164. #~ msgid "<b>Print Monitor</b><br/><br/>Monitor the state of the connected printer and the print job in progress."
  8165. #~ msgstr "<b>打印监视</b> <br/> <br/>可以监视所连接的打印机和正在进行的打印作业的状态。"
  8166. #~ msgctxt "@title:menuitem %1 is the value from the printer"
  8167. #~ msgid "Automatic: %1"
  8168. #~ msgstr "自动:%1"
  8169. #~ msgctxt "@label:PrintjobStatus"
  8170. #~ msgid "Please load a 3d model"
  8171. #~ msgstr "请载入一个 3D 模型"
  8172. #~ msgctxt "@label"
  8173. #~ msgid "Print Selected Model with %1"
  8174. #~ msgid_plural "Print Selected Models With %1"
  8175. #~ msgstr[0] "用 %1 打印所选模型"